From c410abfa6b2c6f06354d0d0e63156f6075e595a1 Mon Sep 17 00:00:00 2001 From: bruno cuconato Date: Wed, 3 Oct 2018 10:51:16 +0000 Subject: [PATCH 001/172] (ExtendPor) add CompoundN (#31) * (Por) add Str -> V3 paradigm * (Por) small fixes * adjust import list and add Mood to VPS * (Por) add compoundN to ExtendPor --- src/portuguese/ExtendPor.gf | 39 +++++++++++++++++++++++++++++-------- 1 file changed, 31 insertions(+), 8 deletions(-) diff --git a/src/portuguese/ExtendPor.gf b/src/portuguese/ExtendPor.gf index edd347afd..2130689e5 100644 --- a/src/portuguese/ExtendPor.gf +++ b/src/portuguese/ExtendPor.gf @@ -2,10 +2,11 @@ concrete ExtendPor of Extend = CatPor ** ExtendFunctor - - [ - iFem_Pron, weFem_Pron, youFem_Pron, youPlFem_Pron, youPolPl_Pron, youPolFem_Pron, youPolPlFem_Pron, theyFem_Pron, - ProDrop, - PassVPSlash, ExistsNP, VPS + [ + GenNP, GenIP, GenModNP, GenModIP, iFem_Pron, weFem_Pron, youFem_Pron + , youPlFem_Pron, youPolPl_Pron, youPolFem_Pron, youPolPlFem_Pron, theyFem_Pron + , ProDrop, PassVPSlash, ExistsNP, VPS, ListVPS, BaseVPS, ConsVPS, PassVPSlash + , ExistsNP, CompoundN ] -- put the names of your own definitions here with (Grammar = GrammarPor), (Syntax = SyntaxPor) ** @@ -18,14 +19,28 @@ concrete ExtendPor of Extend = ParadigmsPor, (S = StructuralPor) in { + lin + GenNP np = + let denp = (np.s ! ResPor.genitive).ton in { + s = \\_,_,_,_ => [] ; + sp = \\_,_,_ => denp ; + s2 = denp ; + isNeg = False ; + } ; + + GenIP ip = {s = \\_,_,c => ip.s ! c} ; + + GenModNP num np cn = DetCN (DetQuant (GenNP (lin NP np)) num) cn ; + GenModIP num ip cn = IdetCN (IdetQuant (GenIP (lin IP ip)) num) cn ; + lincat - VPS = {s : Agr => Str} ; - [VPS] = {s1,s2 : Agr => Str} ; + VPS = {s : Agr => Mood => Str} ; + [VPS] = {s1,s2 : Agr => Mood => Str} ; -- VPI = {s : VType => Agr => Str } ; lin - BaseVPS = twotable Agr ; - ConsVPS = consrTable Agr comma ; + BaseVPS = twoTable2 Agr Mood ; + ConsVPS = consrTable2 Agr Mood comma ; -- MkVPS t p vp = mkVPS (lin Temp t) (lin Pol p) (lin VP vp) ; --TODO: write mkVPS oper @@ -64,6 +79,14 @@ concrete ExtendPor of Extend = (insertComplement (\\_ => (np.s ! Nom).ton) (predV (mkV "existir"))) ; + lin + CompoundN noun noun2 = { -- order is different because that's needed for correct translation from english + s = \\n => noun2.s ! n + ++ variants {genNumForms "do" "da" "dos" "das" ! noun.g ! n; "de"} + ++ noun.s ! n ; + g = noun2.g + } ; + lin -- Romance iFem_Pron = pronAgr S.i_Pron Fem Sg P1 ; From bd556c77890aca786bb59e725e10ccc971435835 Mon Sep 17 00:00:00 2001 From: kitukb <31066831+kitukb@users.noreply.github.com> Date: Wed, 3 Oct 2018 13:52:48 +0300 Subject: [PATCH 002/172] Adding a bantu Functor (#32) * added Bantu functor * added egekusii language based on Bantu functor * added kikamba language based on Bantu functor * added kiswahili language based on Bantu functor --- src/bantu/AdjectiveBantu.gf | 46 ++++ src/bantu/AdverbBantu.gf | 27 ++ src/bantu/CatBantu.gf | 111 ++++++++ src/bantu/CommonBantu.gf | 30 +++ src/bantu/ConjunctionBantu.gf | 77 ++++++ src/bantu/DiffBantu.gf | 100 +++++++ src/bantu/NounBantu.gf | 169 ++++++++++++ src/bantu/PhraseBantu.gf | 31 +++ src/bantu/QuestionBantu.gf | 118 +++++++++ src/bantu/RelativeBantu.gf | 50 ++++ src/bantu/ResBantu.gf | 93 +++++++ src/bantu/SentenceBantu.gf | 74 ++++++ src/bantu/Symbol10Bantu.gf | 41 +++ src/bantu/Tense10Bantu.gf | 15 ++ src/bantu/VerbBantu.gf | 69 +++++ src/egekusii/AdjectiveGus.gf | 16 ++ src/egekusii/AdverbGus.gf | 13 + src/egekusii/CatGus.gf | 2 + src/egekusii/ConjunctionGus.gf | 2 + src/egekusii/DiffGus.gf | 244 +++++++++++++++++ src/egekusii/GrammarGus.gf | 30 +++ src/egekusii/IdiomGus.gf | 48 ++++ src/egekusii/LangGus.gf | 11 + src/egekusii/LexiconGus.gf | 79 ++++++ src/egekusii/MorphoGus.gf | 446 ++++++++++++++++++++++++++++++++ src/egekusii/NounGus.gf | 2 + src/egekusii/NumeralGus.gf | 86 ++++++ src/egekusii/ParadigmsGus.gf | 437 +++++++++++++++++++++++++++++++ src/egekusii/PhraseGus.gf | 3 + src/egekusii/QuestionGus.gf | 2 + src/egekusii/RelativeGus.gf | 2 + src/egekusii/ResGus.gf | 7 + src/egekusii/SentenceGus.gf | 3 + src/egekusii/StructuralGus.gf | 236 +++++++++++++++++ src/egekusii/VerbGus.gf | 2 + src/kikamba/AdjectiveKam.gf | 1 + src/kikamba/AdverbKam.gf | 2 + src/kikamba/CatKam.gf | 2 + src/kikamba/ConjunctionKam.gf | 2 + src/kikamba/DiffKam.gf | 198 ++++++++++++++ src/kikamba/GrammarKam.gf | 30 +++ src/kikamba/IdiomKam.gf | 48 ++++ src/kikamba/LangKam.gf | 11 + src/kikamba/LexiconKam.gf | 388 +++++++++++++++++++++++++++ src/kikamba/MorphoKam.gf | 434 +++++++++++++++++++++++++++++++ src/kikamba/NounKam.gf | 2 + src/kikamba/NumeralKam.gf | 85 ++++++ src/kikamba/ParadigmsKam.gf | 429 ++++++++++++++++++++++++++++++ src/kikamba/PhraseKam.gf | 3 + src/kikamba/QuestionKam.gf | 2 + src/kikamba/RelativeKam.gf | 2 + src/kikamba/ResKam.gf | 7 + src/kikamba/SentenceKam.gf | 3 + src/kikamba/StructuralKam.gf | 231 +++++++++++++++++ src/kikamba/VerbKam.gf | 2 + src/kiswahili/AdjectiveKis.gf | 16 ++ src/kiswahili/AdverbKis.gf | 13 + src/kiswahili/CatKis.gf | 2 + src/kiswahili/ConjunctionKis.gf | 2 + src/kiswahili/DiffKis.gf | 235 +++++++++++++++++ src/kiswahili/GrammarKis.gf | 30 +++ src/kiswahili/IdiomKis.gf | 48 ++++ src/kiswahili/LangKis.gf | 8 + src/kiswahili/LexiconKis.gf | 373 ++++++++++++++++++++++++++ src/kiswahili/MorphoKis.gf | 351 +++++++++++++++++++++++++ src/kiswahili/NounKis.gf | 2 + src/kiswahili/NumeralKis.gf | 87 +++++++ src/kiswahili/ParadigmsKis.gf | 437 +++++++++++++++++++++++++++++++ src/kiswahili/PhraseKis.gf | 3 + src/kiswahili/QuestionKis.gf | 2 + src/kiswahili/RelativeKis.gf | 2 + src/kiswahili/ResKis.gf | 8 + src/kiswahili/SentenceKis.gf | 3 + src/kiswahili/StructuralKis.gf | 200 ++++++++++++++ src/kiswahili/VerbKis.gf | 2 + 75 files changed, 6428 insertions(+) create mode 100644 src/bantu/AdjectiveBantu.gf create mode 100644 src/bantu/AdverbBantu.gf create mode 100644 src/bantu/CatBantu.gf create mode 100644 src/bantu/CommonBantu.gf create mode 100644 src/bantu/ConjunctionBantu.gf create mode 100644 src/bantu/DiffBantu.gf create mode 100644 src/bantu/NounBantu.gf create mode 100644 src/bantu/PhraseBantu.gf create mode 100644 src/bantu/QuestionBantu.gf create mode 100644 src/bantu/RelativeBantu.gf create mode 100644 src/bantu/ResBantu.gf create mode 100644 src/bantu/SentenceBantu.gf create mode 100644 src/bantu/Symbol10Bantu.gf create mode 100644 src/bantu/Tense10Bantu.gf create mode 100644 src/bantu/VerbBantu.gf create mode 100644 src/egekusii/AdjectiveGus.gf create mode 100644 src/egekusii/AdverbGus.gf create mode 100644 src/egekusii/CatGus.gf create mode 100644 src/egekusii/ConjunctionGus.gf create mode 100644 src/egekusii/DiffGus.gf create mode 100644 src/egekusii/GrammarGus.gf create mode 100644 src/egekusii/IdiomGus.gf create mode 100644 src/egekusii/LangGus.gf create mode 100644 src/egekusii/LexiconGus.gf create mode 100644 src/egekusii/MorphoGus.gf create mode 100644 src/egekusii/NounGus.gf create mode 100644 src/egekusii/NumeralGus.gf create mode 100644 src/egekusii/ParadigmsGus.gf create mode 100644 src/egekusii/PhraseGus.gf create mode 100644 src/egekusii/QuestionGus.gf create mode 100644 src/egekusii/RelativeGus.gf create mode 100644 src/egekusii/ResGus.gf create mode 100644 src/egekusii/SentenceGus.gf create mode 100644 src/egekusii/StructuralGus.gf create mode 100644 src/egekusii/VerbGus.gf create mode 100644 src/kikamba/AdjectiveKam.gf create mode 100644 src/kikamba/AdverbKam.gf create mode 100644 src/kikamba/CatKam.gf create mode 100644 src/kikamba/ConjunctionKam.gf create mode 100644 src/kikamba/DiffKam.gf create mode 100644 src/kikamba/GrammarKam.gf create mode 100644 src/kikamba/IdiomKam.gf create mode 100644 src/kikamba/LangKam.gf create mode 100644 src/kikamba/LexiconKam.gf create mode 100644 src/kikamba/MorphoKam.gf create mode 100644 src/kikamba/NounKam.gf create mode 100644 src/kikamba/NumeralKam.gf create mode 100644 src/kikamba/ParadigmsKam.gf create mode 100644 src/kikamba/PhraseKam.gf create mode 100644 src/kikamba/QuestionKam.gf create mode 100644 src/kikamba/RelativeKam.gf create mode 100644 src/kikamba/ResKam.gf create mode 100644 src/kikamba/SentenceKam.gf create mode 100644 src/kikamba/StructuralKam.gf create mode 100644 src/kikamba/VerbKam.gf create mode 100644 src/kiswahili/AdjectiveKis.gf create mode 100644 src/kiswahili/AdverbKis.gf create mode 100644 src/kiswahili/CatKis.gf create mode 100644 src/kiswahili/ConjunctionKis.gf create mode 100644 src/kiswahili/DiffKis.gf create mode 100644 src/kiswahili/GrammarKis.gf create mode 100644 src/kiswahili/IdiomKis.gf create mode 100644 src/kiswahili/LangKis.gf create mode 100644 src/kiswahili/LexiconKis.gf create mode 100644 src/kiswahili/MorphoKis.gf create mode 100644 src/kiswahili/NounKis.gf create mode 100644 src/kiswahili/NumeralKis.gf create mode 100644 src/kiswahili/ParadigmsKis.gf create mode 100644 src/kiswahili/PhraseKis.gf create mode 100644 src/kiswahili/QuestionKis.gf create mode 100644 src/kiswahili/RelativeKis.gf create mode 100644 src/kiswahili/ResKis.gf create mode 100644 src/kiswahili/SentenceKis.gf create mode 100644 src/kiswahili/StructuralKis.gf create mode 100644 src/kiswahili/VerbKis.gf diff --git a/src/bantu/AdjectiveBantu.gf b/src/bantu/AdjectiveBantu.gf new file mode 100644 index 000000000..6b3ca455b --- /dev/null +++ b/src/bantu/AdjectiveBantu.gf @@ -0,0 +1,46 @@ +incomplete concrete AdjectiveBantu of Adjective = + CatBantu ** open CommonBantu, ResBantu, Prelude in { + flags coding=utf8; + lin + + PositA a = {s = \\g,n => a.s !AAdj g n ;isPre = True } ; + ComparA a np = { + s = \\g,n => a.s !AComp g n ++ conjThan ++ np.s ! npNom ; + isPre = False} ; + + UseComparA a = {s = \\g,n=> a.s !AComp g n;isPre = True}; + + AdjOrd ord = { -- find why it cannot generate tree + s = \\g,n => ord.s ! g ; + isPre = True + } ; + + CAdvAP ad ap np = { + s = \\g,n => ad.s ++ ap.s !g! n ++ ad.p ++ np.s ! npNom ; + isPre = False + } ; + + ComplA2 a np = { + s = \\g,n => a.s !AComp g n ++ a.c2 ++ np.s ! NPAcc; + isPre = False + } ; + ReflA2 a ={ + s = \\g,n => a.s !AAdj g n ++ a.c2 ++ reflPron ! Ag g n P3 ; + } ; + + SentAP ap sc = { + s = \\g,n => ap.s !g! n ++ sc.s ; + isPre = False + } ; + + AdAP ada ap = { + s = \\g,n => ada.s ++ ap.s ! g ! n; + isPre = ap.isPre + } ; + + UseA2 a2 = {s = \\g, n => a2.s !AAdj g n ;isPre = True } ; + + AdvAP ap adv = {s = \\g,n => ap.s ! g ! n ++ adv.s ; isPre = False} ; + + +} diff --git a/src/bantu/AdverbBantu.gf b/src/bantu/AdverbBantu.gf new file mode 100644 index 000000000..2589c0fa0 --- /dev/null +++ b/src/bantu/AdverbBantu.gf @@ -0,0 +1,27 @@ +incomplete concrete AdverbBantu of Adverb = + CatBantu ** open CommonBantu, ResBantu, Prelude in { + + lin + PositAdvAdj a = {s = a.s !AAdj G1 Sg} ; + + ComparAdvAdj cadv a np =let agr = complAgr np.a + in { + s = cadv.s ++ a.s !AComp agr.g agr.n ++ cadv.p ++ np.s ! npNom + } ; + ComparAdvAdjS cadv a s = { + s = cadv.s ++ a.s !AComp G1 Sg ++ cadv.p ++ s.s + } ; + + PrepNP prep np = let agr = complAgr np.a + in {s = prep.s!agr.n!agr.g ++ (np.s ! NPAcc) } ; --s = preOrPost prep.isPre prep.s (np.s ! NPAcc) + + AdAdv = cc2 ; + PositAdAAdj a = {s = a.s !AAdj G1 Sg } ; + + + SubjS = cc2 ; + + AdnCAdv cadv = {s = cadv.s ++ cadv.p} ; + + +} diff --git a/src/bantu/CatBantu.gf b/src/bantu/CatBantu.gf new file mode 100644 index 000000000..7d86007eb --- /dev/null +++ b/src/bantu/CatBantu.gf @@ -0,0 +1,111 @@ +incomplete concrete CatBantu of Cat = + CommonX - [Pol] + ** open ResBantu, Prelude, ParamX in { + + flags optimize=all_subs ; + coding=utf8 ; + + lincat + + Pol = {s : Str ; b : Bool} ; + + S = {s : Str} ; + QS = {s : QForm => Str} ; + RS = {s : Agr => Str ; c : NPCase} ; -- c for it clefts + SSlash = {s : Str ; c2 : Str} ; + +-- Sentence + + -- Cl = {s : Tense => Anteriority => Bool => Str} ; + -- ClSlash = { + -- s : ResKam.Tense => Anteriority => Bool => Str ; +-- } ; +-- +-- Question + + -- QCl = {s : ResKam.Tense => Anteriority => Polarity => QForm => Str} ; + IP = {s : NPCase => Str ; n : Number} ; + IComp = {s : Str} ; + IDet = {s : Str ; n : Number} ; + IQuant = {s : Number => Str} ; + +-- Relative +{-} + RCl = { + s : ResKam.Tense => Anteriority => Polarity => Agr => Str ; + c : NPCase + } ; + RP = {s : RCase => Str ; a : RAgr} ; +-} +-- Verb + + VP = ResBantu.VP ; + VPSlash = ResBantu.SlashVP ; + Comp = {s : Agr => Str} ; + +-- Adjective + AP = {s : Gender => Number => Str }; + +-- Noun + + CN = CNoun; + NP = {s : NPCase => Str ; a : Agr} ; + Pron = {s: PronForm=>Str; a : Agr};-- Pronoun ; + Det = {s : DetForm => Str ; n : Number } ; + Predet = {s : Gender =>Str} ; + Ord = { s : Gender => Str } ; + Num = {s : Gender => Str ; n : Number } ; + Card = {s : Gender => Str ; n : Number} ; + Quant = {s : Number => Gender => Str } ; + DAP = {s : DetForm => Str ; n : Number} ; + +-- Numeral + + Numeral = {s : CardOrd => Gender => Str ; n : Number} ; + + Digits = {s : CardOrd => Gender => Str ; n : Number} ; + +-- Structural + + Conj = {s1,s2 : Str ; n : Number} ; + + Subj = {s : Str} ; + Prep = {s: Number => Gender => Str} ; + +-- Open lexical classes, e.g. Lexicon + V, VS, VQ, VA, V3,V2,VV, V2S, V2Q, V2V,V2A= Verb ; + -- V2, VV, V2S, V2Q = Verb ** {c2 : Str} ; + -- V3, V2V,V2A = Verb ** {c2, c3 : Prep} ; + A = {s : AForm => Str } ; + A2 = {s :AForm => Str }** {c2 : Str} ; + + N = {s : Number => Case => Str ; g : Gender} ; +-- N2 = {s : Number => Case => Str ; g : Gender} ** {c2 : Str} ; + N2 = {s : Number => Case => Str ; g : Gender} ** {c2 : Prep} ; + N3 = {s : Number => Case => Str ; g : Gender} ** {c2,c3 : Prep} ; + PN = {s : Case => Str ; g : Gender} ; + --Tense = {s : Str ; t : ResKam.Tense} ; + + linref + SSlash = \ss -> ss.s ++ ss.c2 ; + -- ClSlash = \cls -> cls.s ! Pres ! Simul ! CPos ! oDir ++ cls.c2 ; + + -- VP = \vp -> infVP VVAux vp Simul CPos (agrP3 Sg) ; + -- VPSlash = \vps -> infVP VVAux vps Simul CPos (agrP3 Sg) ++ vps.c2; +-- + Conj = \conj -> conj.s1 ++ conj.s2 ; + + -- V, VS, VQ, VA = \v -> infVP VVAux (predV v) Simul CPos (agrP3 Sg); + -- V2, V2A, V2Q, V2S = \v -> infVP VVAux (predV v) Simul CPos (agrP3 Sg) ++ v.c2; + -- V3 = \v -> infVP VVAux (predV v) Simul CPos (agrP3 Sg) ++ v.c2 ++ v.c3; + -- VV = \v -> infVP VVAux (predVV v) Simul CPos (agrP3 Sg) ; + -- V2V = \v -> infVP VVAux (predVc v) Simul CPos (agrP3 Sg) ; + Det =\d -> d.s!Obj G1; + CN = \cn -> cn.s!Sg!Nom ++ cn.s2!Sg ; + -- A = \a -> a.s ! AAdj G1 Sg ; + -- A2 = \a -> a.s ! AAdj G1 Sg ++ a.c2 ; + + N = \n -> n.s ! Sg ! Nom ; + N2 = \n -> n.s ! Sg ! Nom ++ n.c2.s!Sg!G1 ; + N3 = \n -> n.s ! Sg ! Nom ++ n.c2.s!Sg!G1 ++ n.c3.s!Sg!G1 ; +} diff --git a/src/bantu/CommonBantu.gf b/src/bantu/CommonBantu.gf new file mode 100644 index 000000000..e2e5007fb --- /dev/null +++ b/src/bantu/CommonBantu.gf @@ -0,0 +1,30 @@ +----1 Auxiliary operations common for Bantu languages +-- +-- This module contains operations that are shared by the Bantu +-- languages. The complete set of auxiliary operations needed to +-- implement [Test Test.html] is defined in [ResBantu ResBantu.html], +-- which depends on [DiffBantu DiffBantu.html]. + +resource CommonBantu = ParamX ** open Prelude in { + + flags optimize=all ; + coding=utf8 ; + + param + Case = Nom | Loc ; + NPCase = NCase Case | NPAcc | NPNomPoss ; + CardOrd = NCard | NOrd ; + + oper + ---- Conjunction Agreements (as fas as indep. of Gender) ---- + conjPPerson : Person -> Person -> Person = \p,q -> + case of { + <_,P1> | <_,P2> => P1 ; + => P1 ; + => P2 ; + => P3 + }; + + artIndef = "" ; + +} diff --git a/src/bantu/ConjunctionBantu.gf b/src/bantu/ConjunctionBantu.gf new file mode 100644 index 000000000..6858c2327 --- /dev/null +++ b/src/bantu/ConjunctionBantu.gf @@ -0,0 +1,77 @@ +incomplete concrete ConjunctionBantu of Conjunction = + CatBantu ** open CommonBantu, ResBantu, Coordination, Prelude in { + + flags optimize=all_subs ; + + lin + + ConjS = conjunctDistrSS ; + + ConjAdv = conjunctDistrSS ; + ConjAdV = conjunctDistrSS ; + + ConjNP conj ss = conjunctDistrTable NPCase conj ss ** { + a = Ag (agrFeatures ss.a).g (conjNumber (agrFeatures ss.a).n conj.n) (agrFeatures ss.a).p ; -- a = conjAgr (agrP3 conj.n) ss.a + } ; + + ConjAP conj ss = conjunctDistrTable2 Gender Number conj ss;-- ** { isPre = ss.isPre } ; + + ConjRS conj ss = conjunctDistrTable Agr conj ss ** { + c = ss.c + } ; + + ConjIAdv = conjunctDistrSS ; + + ConjCN conj cn = { + s = \\num,c => conj.s1 ++ cn.n1.s ! num!c ++ conj.s2 ++ cn.n2.s ! num!c ; + g = conjGender cn.n1.g cn.n2.g ; + s2 = \\num => []; + } ; + ConjDet c xs = { s = table { + Sub => [] ; + Obj g => xs.s1!Sub ++ c.s2 ++ xs.s2 !Obj g} ; + n = xs.n}; + + -- These fun's are generated from the list cat's. + + BaseS = twoSS ; + ConsS = consrSS comma ; + BaseAdv = twoSS ; + ConsAdv = consrSS comma ; + BaseAdV = twoSS ; + ConsAdV = consrSS comma ; + BaseNP x y = twoTable NPCase x y ** {a = conjAgr Sg x.a y.a} ; + ConsNP xs x = consrTable NPCase comma xs x ** {a = conjAgr Sg xs.a x.a} ; + + + BaseAP x y = twoTable2 Gender Number x y ; + ConsAP xs x = consrTable2 Gender Number comma xs x ; + BaseRS x y = twoTable Agr x y ** {c = y.c} ; + ConsRS xs x = consrTable Agr comma xs x ** {c = xs.c} ; + BaseIAdv = twoSS ; + ConsIAdv = consrSS comma ; + BaseCN x y = { n1 = x ; n2 = y } ; + ConsCN xs x = { + n1 = { + s = \\num,c => x.n1.s ! num!c ++ comma ++ x.n2.s ! num !c ; + g = x.n2.g ; + s2 = \\num => [] ; + } ; + n2 = xs ; + } ; + BaseDAP x y = twoTable DetForm x y ** {n = y.n} ; + ConsDAP x xs = consrTable DetForm comma x xs ** {n = xs.n} ; + --BaseDet x y = twoTable DetForm x y ** {n = y.n} ; + --ConsDet xs x = consrTable DetForm comma xs x ** {n = xs.n} ; + lincat + [S] = {s1,s2 : Str} ; + [Adv] = {s1,s2 : Str} ; + [AdV] = {s1,s2 : Str} ; + [IAdv] = {s1,s2 : Str} ; + [NP] = {s1,s2 : NPCase => Str ; a : Agr} ; + [AP] = {s1,s2 : Gender => Number => Str} ; --isPre : Bool} ; + [RS] = {s1,s2 : Agr => Str ; c : NPCase} ; + [CN] = {n1,n2 : CNoun } ; + [DAP] = {s1,s2 : DetForm => Str ; n : Number} ; + +} diff --git a/src/bantu/DiffBantu.gf b/src/bantu/DiffBantu.gf new file mode 100644 index 000000000..2ec12d696 --- /dev/null +++ b/src/bantu/DiffBantu.gf @@ -0,0 +1,100 @@ +--1 Differences between Bantu languages + +interface DiffBantu = open CommonBantu, Prelude in { + flags coding=utf8 ; + +-- HL: everything depending on Gender is not common, so it must not +-- be in CommonBantu, but here in DiffBantu. +oper + Gender : PType ; + firstGender : Gender ; -- G1 + secondGender : Gender ; -- G2 + + Noun : Type = {s : Number => Case => Str ; g : Gender}; + CNoun : Type = {s : Number => Case => Str ; g : Gender; s2 : Number => Str}; + AAgr : Type = {g : Gender ; n : Number} ; + +param + Agr = Ag Gender Number Person ; + +oper +-- AGRE = {g : Gender ; n : Number ; p : Person} ; + Agre : Type = {g : Gender ; n : Number ; p : Person} ; + agre : Gender -> Number -> Person -> Agre = \g,n,p -> {g = g ; n = n ; p = p} ; + + agrFeatures : Agr -> Agre = \a -> case a of {Ag g n p => {g = g ; n = n ; p = p}} ; + getGender : Agr -> Gender = \a -> case a of {Ag g _ _ => g}; + getNumber : Agr -> Number = \a -> case a of {Ag _ n _ => n}; + getPerson : Agr -> Person = \a -> case a of {Ag _ _ p => p}; + + clitAgr : Agr -> {n : Number ; p : Person} = \a -> case a of { + Ag _ n p => {n = n; p = p} + } ; + complAgr : Agr -> {g : Gender ; n : Number} = \a -> case a of { + Ag g n _ => {g = g ; n = n} + } ; + predetAgr : Agr -> {g : Gender} = \a -> case a of { + Ag g _ _ => {g = g} + } ; + verbAgr : Agr -> {g : Gender ; n : Number ; p : Person} = \a -> case a of { + Ag g n p => {g = g ; n = n ; p = p} + } ; -- verbAgr = agrFeatures, why both? HL + + detAgr : Agr -> {g : Gender ; p : Person} = \a -> case a of { + Ag g _ p => {g = g; p = p} + } ; + + agrG1 : Number -> Person -> Agr = \n,p -> + Ag firstGender n p ; + dapagr : Gender -> Person -> Agr = \g,p -> + Ag g Sg p ; + agrP3 : Gender -> Number -> Agr = \g,n -> + Ag g n P3 ; + + aagr : Gender -> Number -> AAgr = \g,n -> + {g = g ; n = n} ; + + ---- Conjunction Agreements---- + + conjAgr : Number -> Agr -> Agr -> Agr = \n,xa,ya -> + let + x = agrFeatures xa ; y = agrFeatures ya + in + Ag (conjGender x.g y.g) (conjNumber (conjNumber x.n y.n) n) + (conjPPerson x.p y.p) ; + + conjGender : Gender -> Gender -> Gender ; + +param + -- AForm = AAdj Gender Number | AComp Gender Number ; + PronForm= Pers | Poss Number Gender; + DetForm = Sub | Obj Gender ; + +-- HL: the above is material removed from CommonBantu and adapted -- + +oper + conjThan : Str ; --one of them in bantu + conjThat : Str ; + superVery : Str ; -- one of bantu + + reflPron : Agr => Str ; -- second of bantu. + +param + VForm ; + DForm ; + AForm; +oper + ProunSgprefix : Gender -> Str ; -- added, HL + ProunPlprefix : Gender -> Str ; -- added, HL + Cardoneprefix : Gender -> Str; + Cardtwoprefix : Gender -> Str; + Allpredetprefix : Gender -> Str; + PrefixPlNom : Gender -> Str; + mkprefix,Ordprefix : Gender -> Str; + Cardprefix : Gender -> Str ; + Mostpredetprefix : Gender -> Str; + Adjpprefix : Gender -> Number -> Str; + VowelAdjprefix: Gender -> Number -> Str; + ConsonantAdjprefix: Gender -> Number -> Str; +} + diff --git a/src/bantu/NounBantu.gf b/src/bantu/NounBantu.gf new file mode 100644 index 000000000..ccca45585 --- /dev/null +++ b/src/bantu/NounBantu.gf @@ -0,0 +1,169 @@ +incomplete concrete NounBantu of Noun = + -- HL: Structural added for part_Prep, possess_Prep; contains Cat + CatBantu ** open Structural, ResBantu, Prelude in { + +flags optimize=all_subs ; coding = utf8 ; + +lin + -- Det -> CN -> NP + -- e.g. 'the man' + + DetCN det cn =let g = cn.g ; n = det.n in { + s = \\c => det.s!Sub ++ cn.s ! det.n !npcase2case c ++ det.s!Obj g ++ cn.s2!det.n; + a =Ag cn.g det.n P3 ; + } ; + + + -- PN -> NP + -- e.g. 'John' + UsePN pn = {s = \\c => pn.s !npcase2case c ; a = Ag pn.g Sg P3 } ; + -- Pron -> NP + -- e.g. 'he' + UsePron pron = let agr = verbAgr pron.a; + n=agr.n; g=agr.g + in {s = table { + NCase c => pron.s!Pers ; + NPAcc => pron.s!Pers ; + NPNomPoss => pron.s!Poss n g }; + a = Ag agr.g agr.n agr.p; + } ; + -- Predet -> NP -> NP + -- e.g. 'only the man' + + PredetNP pred np = + let agr = predetAgr np.a in { + s = \\c => np.s ! NCase Nom ++ pred.s ! agr.g ; + a =Ag agr.g Pl P3 ; + } ; + + {-} PPartNP np v2 = { + s = \\c => np.s ! c ++ v2.s ! VPPart ; + a = np.a + } ; + -} + RelNP np rs = { + s = \\c => np.s ! NCase Nom ++ frontComma ++ rs.s ! np.a ++ finalComma ; + a = np.a + } ; + -- NP -> Adv -> NP + -- e.g. 'Paris today' + AdvNP np adv = { + s = \\c => np.s ! NCase Nom ++ adv.s ; + a = np.a + } ; + + ExtAdvNP np adv = { + s = \\c => np.s ! NCase Nom ++ embedInCommas adv.s ; + a = np.a + } ; + + DetQuant quant num = { s = table{ Sub => []; + Obj g=>quant.s ! num.n! g ++ num.s !g }; + n = num.n } ; + + DetQuantOrd quant num ord ={ s = table{ Sub => []; + Obj g=>quant.s ! num.n! g ++ num.s! g ++ ord.s ! g }; + n = num.n } ; + DetNP det = { s = \\c => det.s!Obj G1 ; + a = agrP3 G1 det.n } ; + + PossPron pron = { s = \\n,g => pron.s!Poss n g } ; + + NumSg = {s = \\_ => []; n = Sg };--; hasCard = False} ; + NumPl = {s = \\_ => []; n = Pl };--; hasCard = False} ; +--b NoOrd = {s = []} ; + + NumCard n = n ;--** {hasCard = True} ; + + NumDigits n = {s = n.s ! NCard ; n = n.n} ; + OrdDigits n = { s = n.s ! NOrd} ; + + NumNumeral numeral = {s = numeral.s ! NCard; n = numeral.n} ; + OrdNumeral numeral = {s = numeral.s ! NOrd} ; + + AdNum adn num = {s = \\g => adn.s ++ num.s!g ; n = num.n} ; + + OrdSuperl a ={s = \\g => a.s! AAdj g Sg ++ superVery} ;-- find how to include plular + + OrdNumeralSuperl n a = {s = \\g => n.s ! NOrd !g ++ a.s !AAdj g Sg } ;--what PL + -- DefArt = { s = \\n,g => []} ; --what PL + IndefArt, DefArt = { s = \\n,g =>[] } ; + --IndefArt = {s = \\ n,g => artIndef } ; + + -- CN -> NP + MassNP cn = let g = cn.g ; n = Sg | Pl in { + s = \\c => cn.s ! n! npcase2case c; + a = Ag g n P3 ; + } ; + UseN n = { s = n.s ; s2 = \\_ => [] ; g = n.g} ; --n + UseN2 n = { s = n.s ; s2 = \\_ => [] ; g = n.g} ;--n ; + UseN3 n = { s = n.s ; s2 = \\_ => [] ; g = n.g} ; --n ; + + Use2N3 f = { + s = \\n,c => f.s ! n ! Nom ; + s2 = \\_ => [] ; + g = f.g ; + c2 = f.c2 + } ; + + Use3N3 f = { + s = \\n,c => f.s ! n ! Nom ; + s2 = \\_ => [] ; + g = f.g ; + c2 = f.c3 + } ; + + ComplN2 n2 np = {s = \\n,c => n2.s ! n ! Nom ++ n2.c2.s!n!n2.g ++ np.s ! NCase Nom ; + s2 = \\_ => [] ; + g = n2.g + }; + ComplN3 n3 np = { + s = \\n,c => n3.s ! n ! Nom ++ n3.c2.s!n!n3.g ++ np.s ! NCase Nom; + g = n3.g ; + c2 = n3.c3 + } ; + + AdjCN ap cn = {s = cn.s ; g = cn.g; + s2 = \\n =>cn.s2! n ++ ap.s ! cn.g ! n} ; + + RelCN cn rs = { + s = \\n,c => cn.s ! n ! Nom ++ rs.s ! Ag cn.g n P3 ; s2 =\\n => []; --another persons + g = cn.g + } ; + -- AP -> CN -> CN + -- e.g. 'big house' + AdvCN cn ad = {s = \\n,c => cn.s ! n ! Nom ++ ad.s ;s2 =\\n => []; g = cn.g} ; + + SentCN cn sc = {s = \\n,c => cn.s ! n ! Nom ++ sc.s ; s2 =\\n => []; g = cn.g} ; + + -- ApposCN cn np = {s = \\n,c => cn.s ! n ! Nom ++ np.s ! NCase Nom ; s2 =\\n => []; g = cn.g} ; + + -- PossNP : CN -> NP -> CN + -- e.g. 'house of Paris', 'house of mine' + PossNP cn np =let agr = detAgr np.a in + {s = \\n,c => cn.s ! n ! Nom ++ possess_Prep.s! n!cn.g ++ np.s ! NPNomPoss; + s2 =\\n => []; g = cn.g} ; + -- PartNP : CN -> NP -> CN + -- e.g. 'glass of wine' + PartNP cn np = {s = \\n,c => cn.s ! n ! Nom ++ part_Prep.s! n!cn.g ++ np.s ! NPAcc ; s2 =\\n => []; g = cn.g} ; + + -- CountNP : Det -> NP -> NP + -- e.g. 'three of them', 'some of the boys' + CountNP det np = let agr = verbAgr np.a + in { + s = \\c => det.s!Obj agr.g ++ part_Prep.s!agr.n!agr.g ++ np.s!c ;--NPAcc was removed + a = Ag agr.g agr.n agr.p + } ; + + + AdjDAP det ap = { s = table{ Sub => [] ; + Obj g =>det.s!Obj g ++ ap.s!g !det.n}; + n = det.n }; + + DetDAP d = { s=d.s; n=d.n }; + + ApposCN cn np = let agr = complAgr np.a in + {s = \\n,c => np.s ! NCase Nom --++ possess_Prep.s!n!agr.g + ++ cn.s !n ! Nom ; s2 =\\n => ""; g = cn.g} ; + +} diff --git a/src/bantu/PhraseBantu.gf b/src/bantu/PhraseBantu.gf new file mode 100644 index 000000000..8bed07332 --- /dev/null +++ b/src/bantu/PhraseBantu.gf @@ -0,0 +1,31 @@ +incomplete concrete PhraseBantu of Phrase = + CatBantu ** open CommonBantu, ResBantu, Prelude in { } +{-} + flags optimize = all_subs ; + + lin + PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ; + + UttS s = {s = s.s ! Indic} ; + UttQS qs = {s = qs.s ! QDir} ; + UttImpSg pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Sg False ! Fem} ; + UttImpPl pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Pl False ! Fem} ; + UttImpPol pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Sg True ! Fem} ; + + UttIP ip = {s = ip.s ! Nom} ; --- Acc also + UttIAdv iadv = iadv ; + UttNP np = {s = (np.s ! Nom).ton} ; + UttVP vp = {s = infVP vp (agrP3 Fem Sg)} ; --- Agr + UttAdv adv = adv ; + UttCN n = {s = n.s ! Sg} ; + UttAP ap = {s = ap.s ! AF Masc Sg} ; + UttCard n = {s = n.s ! Masc} ; + UttInterj i = i ; + + NoPConj = {s = []} ; + PConjConj conj = {s = conj.s2} ; + + NoVoc = {s = []} ; + VocNP np = {s = "," ++ (np.s ! Nom).ton} ; + +-} diff --git a/src/bantu/QuestionBantu.gf b/src/bantu/QuestionBantu.gf new file mode 100644 index 000000000..7a3f31669 --- /dev/null +++ b/src/bantu/QuestionBantu.gf @@ -0,0 +1,118 @@ +incomplete concrete QuestionBantu of Question = + CatBantu ** open CommonBantu, ResBantu, Prelude in { +{- + flags optimize=all_subs ; + + lin + + QuestCl cl = { + s = \\t,a,p => + let cls = cl.s ! DDir ! t ! a ! p ---- DInv? + in table { + QDir => cls ! Indic ; + QIndir => subjIf ++ cls ! Indic + } + } ; + + QuestVP qp vp = { + s = \\t,a,b,_ => + let + cl = mkClause (qp.s ! Nom) False False (agrP3 qp.a.g qp.a.n) vp + in + cl.s ! DDir ! t ! a ! b ! Indic + } ; + + QuestSlash ip slash = { + s = \\t,a,p => + let + cls : Direct -> Str = + \d -> slash.s ! ip.a ! d ! t ! a ! p ! Indic ; + who = slash.c2.s ++ ip.s ! slash.c2.c + in table { + QDir => who ++ cls DInv ; + QIndir => who ++ cls DDir + } + } ; + + QuestIAdv iadv cl = { + s = \\t,a,p,q => + let + ord = case q of { + QDir => iAdvQuestionInv ; + QIndir => iAdvQuestionInv + } ; + cls = cl.s ! ord ! t ! a ! p ! Indic ; + why = iadv.s + in why ++ cls + } ; + + QuestIComp icomp np = { + s = \\t,a,p,_ => + let + vp = predV (selectCopula icomp.cop) ; + cls = (mkClause (np.s ! Nom).comp np.hasClit np.isPol np.a vp).s ! + DInv ! t ! a ! p ! Indic ; + why = icomp.s ! complAgr np.a ; + in why ++ cls + } ; + + PrepIP p ip = { + s = p.s ++ ip.s ! p.c + } ; + + AdvIP ip adv = { + s = \\c => ip.s ! c ++ adv.s ; + a = ip.a + } ; + + IdetCN idet cn = + let + g = cn.g ; + n = idet.n ; + a = aagr g n + in { + s = \\c => idet.s ! g ! c ++ cn.s ! n ; + a = a + } ; + + IdetIP idet = + let + g = Masc ; ---- Fem in Extra + n = idet.n ; + a = aagr g n + in { + s = \\c => idet.s ! g ! c ; + a = a + } ; + + IdetQuant idet num = + let + n = num.n ; + in { + s = \\g,c => idet.s ! n ! g ! c ++ num.s ! g ; + n = n + } ; + + AdvIAdv i a = {s = i.s ++ a.s} ; + + CompIAdv a = {s = \\_ => a.s ; cop = estarCopula} ; + + CompIP p = {s = \\_ => p.s ! Nom ; cop = serCopula} ; + + lincat + QVP = ResBantu.VP ; + lin + ComplSlashIP vp ip = insertObject vp.c2 (heavyNP {s = ip.s ; a = {g = ip.a.g ; n = ip.a.n ; p = P3}}) vp ; + AdvQVP vp adv = insertAdv adv.s vp ; + AddAdvQVP vp adv = insertAdv adv.s vp ; + + QuestQVP qp vp = { + s = \\t,a,b,_ => + let + cl = mkClause (qp.s ! Nom) False False (agrP3 qp.a.g qp.a.n) vp + in + cl.s ! DDir ! t ! a ! b ! Indic + } ; +-} +} + diff --git a/src/bantu/RelativeBantu.gf b/src/bantu/RelativeBantu.gf new file mode 100644 index 000000000..ed85dec8d --- /dev/null +++ b/src/bantu/RelativeBantu.gf @@ -0,0 +1,50 @@ +incomplete concrete RelativeBantu of Relative = + CatBantu ** open Prelude, CommonBantu, ResBantu in { +{- + flags optimize=all_subs ; + + lin + + RelCl cl = { + s = \\ag,t,a,p,m => pronSuch ! complAgr ag ++ conjThat ++ + cl.s ! DDir ! t ! a ! p ! m ; + c = Nom + } ; + + --- more efficient to compile than case inside mkClause; see log.txt + RelVP rp vp = case rp.hasAgr of { + True => {s = \\ag => + (mkClause + (rp.s ! False ! complAgr ag ! Nom) False False + (Ag rp.a.g rp.a.n P3) + vp).s ! DDir ; c = Nom} ; + False => {s = \\ag => + (mkClause + (rp.s ! False ! complAgr ag ! Nom) False False + ag + vp).s ! DDir ; c = Nom + } + } ; + + RelSlash rp slash = { + s = \\ag,t,a,p,m => + let aag = complAgr ag + in + slash.c2.s ++ + rp.s ! False ! aag ! slash.c2.c ++ + slash.s ! aag ! DDir ! t ! a ! p ! m ; --- ragr + c = Acc + } ; + + FunRP p np rp = { + s = \\_,a,c => (np.s ! Nom).ton ++ p.s ++ rp.s ! True ! a ! p.c ; + a = complAgr np.a ; + hasAgr = True + } ; + IdRP = { + s = relPron ; + a = {g = Masc ; n = Sg} ; + hasAgr = False + } ; +-} +} diff --git a/src/bantu/ResBantu.gf b/src/bantu/ResBantu.gf new file mode 100644 index 000000000..b05f0ee29 --- /dev/null +++ b/src/bantu/ResBantu.gf @@ -0,0 +1,93 @@ +--1 Bantu auxiliary operations. + +interface ResBantu = DiffBantu ** open CommonBantu in { + +flags + optimize=all ; + coding=utf8 ; + +--2 Constants uniformly defined in terms of language-dependent constants + +oper + npNom : NPCase = NCase Nom ; + npLoc : NPCase = NCase Loc ; + npcase2case : NPCase -> Case = \nc -> case nc of {NCase c => c ; _ => Nom} ; + + + mkNP : (i,my : Str) -> Gender -> Number -> Person -> + {s : NPCase => Str ; a : Agr} = \i,my,g,n,p -> + { s = table { + NCase Nom => i ; + NPAcc => my ; + NCase Loc | NPNomPoss => my -- works for normal genitives, "whose", etc. + } ; + a = Ag g n p ; + }; + + regNP : Str ->Gender -> Number -> {s : NPCase => Str ; a : Agr} = \that,g, n -> + mkNP that that g n P3 ; + + mkPron: (i, mine : Str) -> Gender -> Number -> Person -> + {s: PronForm => Str ; a : Agr} = \i,mine, g,n,p -> + { s = table { + Pers => i; + Poss n g => case of { + => ProunSgprefix g + mine ; + => ProunPlprefix g + mine} + } ; + a = Ag g n p } ; + + Verb : Type = {s : Bool => VForm => Str} ; + VerbForms : Type = Tense => Anteriority => Bool => Agre => Str; + VP : Type = {s:VerbForms ; obj : Agr => Str}; + SlashVP = VP ** {c2 : Str} ; + + predV : Verb -> VP = \verb -> { + s = \\t,ant,b,agre => + let + inf = verb.s !b! VInf ; + pres = verb.s !True! VPres agre.g agre.n agre.p ; + presn = verb.s !False! VPres agre.g agre.n agre.p ; + past = verb.s !True! VPast agre.g agre.n agre.p ; + pastn = verb.s !False! VPast agre.g agre.n agre.p ; + fut = verb.s !True! VFut agre.g agre.n agre.p ; + futn = verb.s !False! VFut agre.g agre.n agre.p ; + in + case of { + => pres ; + => fut ; --# notpresent + => past ; --# notpresent + => presn ; + => futn ; --# notpresent + => pastn + -- ; <_, _, _> => inf --# notpresent -- never reached + } ; + obj = \\_ => [] }; + + Clause : Type = { + s : Tense => Anteriority => Bool => Str + } ; + + mkClause : Str -> Agre -> VP -> Clause = + \subj,agr,vp -> { + s = \\t,a,b => + let + verb = vp.s ! t ! a ! b ! agr + in + subj ++ verb + } ; + + finalComma : Str = pre {"," | "." => []; "" => SOFT_BIND ++ ","; _ => []} ; + frontComma : Str = SOFT_BIND ++ "," ; +} + +-- insertObject: +-- p -cat=Cl -tr "la femme te l' envoie" +-- PredVP (DetCN (DetSg DefSg NoOrd) (UseN woman_N)) +-- (ComplV3 send_V3 (UsePron he_Pron) (UsePron thou_Pron)) +-- la femme te l' a envoyé +-- +-- p -cat=Cl -tr "la femme te lui envoie" +-- PredVP (DetCN (DetSg DefSg NoOrd) (UseN woman_N)) +-- (ComplV3 send_V3 (UsePron thou_Pron) (UsePron he_Pron)) +-- la femme te lui a envoyée diff --git a/src/bantu/SentenceBantu.gf b/src/bantu/SentenceBantu.gf new file mode 100644 index 000000000..9735f1974 --- /dev/null +++ b/src/bantu/SentenceBantu.gf @@ -0,0 +1,74 @@ +incomplete concrete SentenceBantu of Sentence = + CatBantu ** open Prelude, CommonBantu, ResBantu in { +{- + flags optimize=all_subs ; + coding=utf8 ; + + lin + + + PredVP np vp = mkClause (np.s ! npNom) np.a vp ; + + PredSCVP sc vp = mkClause sc.s (agrP3 Sg) vp ; + + ImpVP vp = { + s = \\pol,n => + let + agr = AgP2 (numImp n) ; + verb = infVP VVAux vp Simul CPos agr ; + dont = case pol of { + CNeg True => "don't" ; + CNeg False => "do" ++ "not" ; + _ => [] + } + in + dont ++ verb + } ; + + SlashVP np vp = + mkClause (np.s ! npNom) np.a vp ** {c2 = vp.c2} ; + + AdvSlash slash adv = { + s = \\t,a,b,o => slash.s ! t ! a ! b ! o ++ adv.s ; + c2 = slash.c2 + } ; + + SlashPrep cl prep = cl ** {c2 = prep.s} ; + + SlashVS np vs slash = + mkClause (np.s ! npNom) np.a + (insertObj (\\_ => conjThat ++ slash.s) (predV vs)) ** + {c2 = slash.c2} ; + + EmbedS s = {s = conjThat ++ s.s} ; + EmbedQS qs = {s = qs.s ! QIndir} ; + EmbedVP vp = {s = infVP VVInf vp Simul CPos (agrP3 Sg)} ; --- agr + UseCl t p cl = { + s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.b } ; + + -- UseCl t p cl = {s = t.s ++ p.s ++ cl.s ! t.t ! p.b} ; + UseQCl t p cl = { + s = \\q => t.s ++ p.s ++ cl.s ! t.t ! t.a ! ctr p.p ! q + } ; + UseRCl t p cl = { + s = \\r => t.s ++ p.s ++ cl.s ! t.t ! t.a ! ctr p.p ! r ; + c = cl.c + } ; + UseSlash t p cl = { + s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! ctr p.p ! oDir ; + c2 = cl.c2 + } ; + + AdvS a s = {s = a.s ++ s.s} ; + ExtAdvS a s = {s = a.s ++ frontComma ++ s.s} ; + + SSubjS a s b = {s = a.s ++ frontComma ++ s.s ++ b.s} ; + + RelS s r = {s = s.s ++ frontComma ++ r.s ! agrP3 Sg} ; + + oper + ctr : CPolarity -> CPolarity = \x -> x ; +--- ctr = contrNeg True ; -- contracted negations +-} + +} diff --git a/src/bantu/Symbol10Bantu.gf b/src/bantu/Symbol10Bantu.gf new file mode 100644 index 000000000..231a9a9d5 --- /dev/null +++ b/src/bantu/Symbol10Bantu.gf @@ -0,0 +1,41 @@ +incomplete concrete SymbolBantu of Symbol = + CatBantu ** open Prelude, CommonBantu, ResBantu in { + +lin + SymbPN i = {s = i.s ; g = Masc} ; + IntPN i = {s = i.s ; g = Masc} ; + FloatPN i = {s = i.s ; g = Masc} ; + NumPN i = {s = i.s!Masc ; g = Masc} ; + + CNIntNP cn i = heavyNP { + s = \\c => prepCase c ++ cn.s ! Sg ++ i.s ; + a = agrP3 cn.g Sg ; + hasClit = False + } ; + CNSymbNP det cn xs = let g = cn.g in heavyNP { + s = \\c => det.s ! g ! c ++ cn.s ! det.n ++ xs.s ; + a = agrP3 g det.n ; + hasClit = False + } ; + CNNumNP cn i = heavyNP { + s = \\c => artDef False cn.g Sg c ++ cn.s ! Sg ++ i.s ! Masc ; + a = agrP3 cn.g Sg ; + hasClit = False + } ; + SymbS sy = {s = \\_ => sy.s} ; + + SymbNum n = {s = \\_ => n.s ; isNum = True ; n = Pl} ; + SymbOrd n = {s = \\_ => n.s ++ BIND ++ "º"} ; -- feminine variant ª, also variants 1.º and 1.ª + +lincat + + Symb, [Symb] = SS ; + +lin + + MkSymb s = s ; + + BaseSymb = infixSS "et" ; ---- + ConsSymb = infixSS "," ; + +} diff --git a/src/bantu/Tense10Bantu.gf b/src/bantu/Tense10Bantu.gf new file mode 100644 index 000000000..42adb1800 --- /dev/null +++ b/src/bantu/Tense10Bantu.gf @@ -0,0 +1,15 @@ +incomplete concrete TenseBantu of Tense = + CatBantu [Tense,Temp], TenseX [Ant,AAnter,ASimul] ** + open ResBantu, CommonBantu, Prelude in { + + lin + TTAnt t a = {s = a.s ++ t.s ; a = a.a ; t = t.t} ; + TPres = {s = []} ** {t = RPres} ; + TPast = {s = []} ** {t = RPast} ; --# notpresent + TFut = {s = []} ** {t = RFut} ; --# notpresent + TCond = {s = []} ** {t = RCond} ; --# notpresent + + PPos = {s = [] ; p = RPos} ; + PNeg = {s = [] ; p = RNeg False} ; + +} diff --git a/src/bantu/VerbBantu.gf b/src/bantu/VerbBantu.gf new file mode 100644 index 000000000..3edc98bd2 --- /dev/null +++ b/src/bantu/VerbBantu.gf @@ -0,0 +1,69 @@ +incomplete concrete VerbBantu of Verb = + CatBantu ** open Prelude, CommonBantu, ResBantu in { +{- + flags optimize=all_subs ; + + lin + UseV = predV ; + + SlashV2a v = predV v ** {c2 = v.c2 ; gapInMiddle = False} ; + Slash2V3 v np = + insertObjc (\\_ => v.c2 ++ np.s ! NPAcc) (predV v ** {c2 = v.c3 ; gapInMiddle = False}) ; + Slash3V3 v np = + insertObjc (\\_ => v.c3 ++ np.s ! NPAcc) (predVc v) ; ---- + + ComplVV v vp = insertObj (\\a => infVP v.typ vp Simul CPos a) (predVV v) ; ---- insertExtra? + ComplVS v s = insertExtra (conjThat ++ s.s) (predV v) ; +--- ComplVS v s = insertObj (variants {\\_ => conjThat ++ s.s; \\_ => s.s}) (predV v) ; + ComplVQ v q = insertExtra (q.s ! QIndir) (predV v) ; + -- ComplVA v ap = insertObj (ap.s (predV v)) ; + + SlashV2V v vp = insertObjc (\\a => v.c3 ++ infVP v.typ vp Simul CPos a) (predVc v) ; + SlashV2S v s = insertExtrac (conjThat ++ s.s) (predVc v) ; ---- insertExtra? +--- SlashV2S v s = insertObjc (variants {\\_ => conjThat ++ s.s; \\_ => s.s}) (predVc v) ; + SlashV2Q v q = insertExtrac (q.s ! QIndir) (predVc v) ; + -- SlashV2A v ap = insertObjc (\\a => ap.s ! a) (predVc v) ; ---- + + ComplSlash vp np = case vp.gapInMiddle of { + True => insertObjPre (\\_ => vp.c2 ++ np.s ! NPAcc) vp ; + False => insertObj (\\_ => vp.c2 ++ np.s ! NPAcc) vp + } ; + SlashVV vv vp = + insertObj (\\a => infVP vv.typ vp Simul CPos a) (predVV vv) ** + {c2 = vp.c2 ; gapInMiddle = vp.gapInMiddle} ; + SlashV2VNP vv np vp = + insertObjPre (\\_ => vv.c2 ++ np.s ! NPAcc) + (insertObjc (\\a => vv.c3 ++ infVP vv.typ vp Simul CPos a) (predVc vv)) ** + {c2 = vp.c2 ; gapInMiddle = vp.gapInMiddle} ; + + UseComp comp = insertObj comp.s (predAux auxBe) ; + + AdvVP vp adv = insertObj (\\_ => adv.s) vp ; + ExtAdvVP vp adv = insertObj (\\_ => frontComma ++ adv.s ++ finalComma) vp ; + AdVVP adv vp = insertAdV adv.s vp ; + + AdvVPSlash vp adv = insertObj (\\_ => adv.s) vp ** {c2 = vp.c2 ; gapInMiddle = vp.gapInMiddle} ; + AdVVPSlash adv vp = insertAdV adv.s vp ** {c2 = vp.c2 ; gapInMiddle = vp.gapInMiddle} ; + + ReflVP v = insertObjPre (\\a => v.c2 ++ reflPron ! a) v ; + + PassV2 v = insertObj (\\_ => v.s ! VPPart ++ v.p) (predAux auxBe) ; + +---b UseVS, UseVQ = \vv -> {s = vv.s ; c2 = [] ; isRefl = vv.isRefl} ; -- no "to" + + + --CompAP ap = ap ; + CompNP np = {s = \\_ => np.s ! NPAcc} ; + CompAdv a = {s = \\_ => a.s} ; + CompCN cn = {s = \\a => case (fromAgr a).n of { + Sg => artIndef ++ cn.s ! Sg ! Nom ; + Pl => cn.s ! Pl ! Nom + } + } ; + + -- UseCopula = auxBe ; + + VPSlashPrep vp p = vp ** {c2 = p.s!Sg!G1 } ; +-} +} + diff --git a/src/egekusii/AdjectiveGus.gf b/src/egekusii/AdjectiveGus.gf new file mode 100644 index 000000000..e30579d32 --- /dev/null +++ b/src/egekusii/AdjectiveGus.gf @@ -0,0 +1,16 @@ +concrete AdjectiveGus of Adjective = CatGus **AdjectiveBantu-[ComparA,UseComparA,ComplA2] +with (ResBantu = ResGus)** open DiffGus in +{ +flags coding=utf8; + lin + ComparA a np = { + s = \\g,n => a.s !AAdj g n ++ conjThan ++ np.s ! npNom ; + isPre = False} ; + + UseComparA a = {s = \\g,n=> a.s !AAdj g n;isPre = True}; + + ComplA2 a np = { + s = \\g,n => a.s !AAdj g n ++ a.c2 ++ np.s ! NPAcc; + isPre = False + } ; + } \ No newline at end of file diff --git a/src/egekusii/AdverbGus.gf b/src/egekusii/AdverbGus.gf new file mode 100644 index 000000000..14df4d77a --- /dev/null +++ b/src/egekusii/AdverbGus.gf @@ -0,0 +1,13 @@ +concrete AdverbGus of Adverb = CatGus **AdverbBantu -[ComparAdvAdj,ComparAdvAdjS] with + (ResBantu = ResGus)** open DiffGus in +{ +flags coding=utf8; + lin + ComparAdvAdj cadv a np =let agr = complAgr np.a + in { + s = cadv.s ++ a.s !AAdj agr.g agr.n ++ cadv.p ++ np.s ! npNom + } ; + ComparAdvAdjS cadv a s = { + s = cadv.s ++ a.s !AAdj G1 Sg ++ cadv.p ++ s.s + } ; + } \ No newline at end of file diff --git a/src/egekusii/CatGus.gf b/src/egekusii/CatGus.gf new file mode 100644 index 000000000..3ec568dd0 --- /dev/null +++ b/src/egekusii/CatGus.gf @@ -0,0 +1,2 @@ +concrete CatGus of Cat = CommonX - [Pol] + ** CatBantu with (ResBantu = ResGus); diff --git a/src/egekusii/ConjunctionGus.gf b/src/egekusii/ConjunctionGus.gf new file mode 100644 index 000000000..e26984628 --- /dev/null +++ b/src/egekusii/ConjunctionGus.gf @@ -0,0 +1,2 @@ +concrete ConjunctionGus of Conjunction = CatGus ** ConjunctionBantu with + (ResBantu = ResGus); \ No newline at end of file diff --git a/src/egekusii/DiffGus.gf b/src/egekusii/DiffGus.gf new file mode 100644 index 000000000..a307aebe9 --- /dev/null +++ b/src/egekusii/DiffGus.gf @@ -0,0 +1,244 @@ +instance DiffGus of DiffBantu = open CommonBantu, Prelude in { + +param + GenderGus = G1 | G2 | G3 |G4| G5|G6|G7|G8|G9|G10 ; +oper + Gender = GenderGus ; + firstGender = G1 ; secondGender = G2 ; + conjThan = "kobua" ; + conjThat = "kobua" ; + + conjGender : Gender -> Gender -> Gender = \m,n -> + case m of { G1 => n ; _ => G2 } ; + reflPron :Agr => Str = \\ag=> case of { + < Ag G1 Sg P1 > => "mimi" ; + < Ag G1 Sg P2 > => "wewe" ; + < Ag G1 Sg P3 > => "yeye" ; + < Ag _ Sg P3 > => "" ; + < Ag G1 Pl P1 > => "sisi" ; + < Ag G1 Pl P2 > => "nyinyi" ; + < Ag G1 Pl P3 > => "wao" ; + < Ag _ _ _ > => "" + + }; + possess_Prepof,mkPrepof : Number => Gender => Str = + table Number { Sg => table { + G1| G2 => "bwo" ; + G3 => "ya"; + G4 => "ria"; + G5 => "kia"; -- + G6 => "rwa"; + G7 => "ka"; + G8 => "bwa"; + G9 => "kwa"; + G10 => "a" + }; + + Pl => table { G1 => "ba" ; + G2 => "ya" ; + G3|G6 => "cia"; + G4 |G8|G9|G10 => "a"; + G5 => "bi"; -- + G7 => "bia"} } ; + + + superVery ="bi"; + +Cardoneprefix : Gender -> Str = \g -> + case of { + =>"oya"; + =>"aka"; + =>"obo"; + =>"eri"; + =>"eye"; + =>"oro"; + =>"oyo"; + =>"eke"; + =>"oko"; + => "a" + } ; +Cardtwoprefix : Gender -> Str = \g -> + case of { + =>"ba"; + | =>"bi"; + | =>"a"; + | =>"i"; + | =>"e"; + < G10> => "" + } ; + + Allpredetprefix : Gender -> Str = \g -> + case of { + => "b" ; + => "y" ; + || => "bi" ; + | | => "" ; + | => "ci" + } ; + + + PrefixPlNom : Gender -> Str = \g -> + case of { + => "aba" ; + => "eme" ; + | => "ci" ; + | | => "ama" ; + | => "ebi"; + => "" + } ; + + mkprefix,Ordprefix : Gender -> Str = \g -> + case of { + | =>"o"; + => "ria"; + => "kia"; + => "ya"; + => "rwa"; + => "ka"; + => "bwa"; + => "kwa"; + < G10> => "a" + } ; + + Cardprefix : Gender -> Str = \g -> + case of { + =>"ba"; + | =>"bi"; + | =>"a"; + | =>"i"; + | =>"e"; + => "" + } ; + + Mostpredetprefix : Gender -> Str = \g -> ""; -- not taken care of + + ConsonantAdjprefix: Gender -> Number -> Str = \n,g -> ""; --not taken care of + {-case of { + => "m" ; + => "wa" ; + => "m" ; + => "mi" ; + => "ma" ; + => "ki" ; + => "vi" ; + => "m" ; + => "m" ; + => "m" ; + => "ma" ; + => "ma" ; + => "pa" ; + => "ku" ; + => "m" ; + <_,_> => "" + } ; -} + + VowelAdjprefix: Gender -> Number -> Str = \n,g ->""; -- not taken care of + {-} case of { + => "mw" ; + => "w" ; + => "mw" ; + => "my" ; + => "j" ; + => "m" ; + => "ch" ; + => "vy" ; + => "ny"; + => "ny"; + => "mw" ; + => "y" ; + => "mw" ; + => "mw" ; + => "mw" ; + => "m" ; + => "m" ; + => "ny" ; + => "p" ; + => "kw" ; + => "mu" ; + <_,_> => "" + } ; -} + + VoweliAdjprefix: Gender -> Number -> Str = \n,g -> ""; -- not taken care of + {-} case of { + => "mwi" ; + => "we" ; + => "mwi" ; + => "mi" ; + => "ji" ; + => "me" ; + => "ki" ; + => "vi" ; + => "zi"; + => "zi"; + => "mwi" ; + => "zi" ; + => "mwi" ; + => "mwi" ; + => "mwi" ; + => "me" ; + => "me" ; + => "zi" ; + => "pe" ; + => "kwi" ; + => "mwi" ; + <_,_> => "" + } ; -} +Adjpprefix : Gender -> Number -> Str = \n,g -> + case of { + => "aba" ; + => "eme" ; + => "e" ; + => "eri" ; + => "ege" ; + => "ebi" ; + => "oro" ; + => "aka" ; + => "ebi"; + => "obo" ; + => "oko" ; + => "aa" ; + | => "omo" ; + | => "ci" ; + | | => "ama" ; + => "" + } ; + ProunSgprefix : Gender -> Str = \g -> + case of { + | =>"o"; + => "ria"; + => "kia"; + => "ya"; + => "rwa"; + => "ka"; + => "bwa"; + => "kwa"; + => "a" + } ; + +ProunPlprefix : Gender -> Str = \g -> + case of { + | =>"ba"; + | =>"a"; + | =>"chia"; + =>"ya"; + =>"bia"; + <_> => "" + } ; + + dfltGender : Gender = G1 ; + dflt2Gender : Gender = G2 ; + + + + param + + VForm = VInf + | VPres Gender Number Person + | VPast Gender Number Person + | VFut Gender Number Person + -- | notpresent + ; + + DForm = unit | teen | ten |hund ; + AForm = AAdj Gender Number; +} diff --git a/src/egekusii/GrammarGus.gf b/src/egekusii/GrammarGus.gf new file mode 100644 index 000000000..19119486c --- /dev/null +++ b/src/egekusii/GrammarGus.gf @@ -0,0 +1,30 @@ +--# -path=.:../abstract:../common:prelude + +concrete GrammarGus of Grammar = + NounGus, + VerbGus, + AdjectiveGus, + AdverbGus, + NumeralGus, + SentenceGus, + QuestionGus, + RelativeGus, + ConjunctionGus, + PhraseGus, + TextX - [Pol,PPos,PNeg,Pres], + StructuralGus, + IdiomGus, + TenseX - [Pol,PPos,PNeg,Pres] + ** { + +flags startcat = Phr ; unlexer = text ; lexer = text; + +--lin + --PPos = {s = [] ; p = CPos} ; + -- PNeg = {s = [] ; p = CNeg True} ; -- contracted: don't + --PPos = {s = [] ; b = True} ; + -- PNeg = {s = [] ; b = False} ; + -- TPres = {s = [] ; t = ResGus.Pres} ; + -- TPast = {s = [] ; t = ResGus.Past }; + -- TFut = {s = [] ; t = ResGus.Fut }; +} ; diff --git a/src/egekusii/IdiomGus.gf b/src/egekusii/IdiomGus.gf new file mode 100644 index 000000000..4582e2281 --- /dev/null +++ b/src/egekusii/IdiomGus.gf @@ -0,0 +1,48 @@ +concrete IdiomGus of Idiom = CatGus ** open Prelude, ResGus in { + + flags optimize=all_subs ; +{- + lin + ImpersCl vp = mkClause "it" (agrP3 Sg) vp ; + GenericCl vp = mkClause "one" (agrP3 Sg) vp ; + + CleftNP np rs = mkClause "it" (agrP3 Sg) + (insertObj (\\_ => rs.s ! np.a) + (insertObj (\\_ => np.s ! rs.c) (predAux auxBe))) ; + + CleftAdv ad s = mkClause "it" (agrP3 Sg) + (insertObj (\\_ => conjThat ++ s.s) + (insertObj (\\_ => ad.s) (predAux auxBe))) ; + + ExistNP np = + mkClause "there" (agrP3 (fromAgr np.a).n) + (insertObj (\\_ => np.s ! NPAcc) (predAux auxBe)) ; + + ExistIP ip = + mkQuestion (ss (ip.s ! npNom)) + (mkClause "there" (agrP3 ip.n) (predAux auxBe)) ; + + ExistNPAdv np adv = + mkClause "there" (agrP3 (fromAgr np.a).n) + (insertObj (\\_ => np.s ! NPAcc ++ adv.s) (predAux auxBe)) ; + + ExistIPAdv ip adv = + mkQuestion (ss (ip.s ! npNom)) + (mkClause "there" (agrP3 ip.n) (insertObj (\\_ => adv.s) (predAux auxBe))) ; + + ProgrVP vp = insertObj (\\a => vp.ad ! a ++ vp.prp ++ vp.p ++ vp.s2 ! a) (predAux auxBe) ; + + ImpPl1 vp = {s = "let's" ++ infVP VVAux vp Simul CPos (AgP1 Pl)} ; + + ImpP3 np vp = {s = "let" ++ np.s ! NPAcc ++ infVP VVAux vp Simul CPos np.a} ; + + SelfAdvVP vp = insertObj reflPron vp ; + SelfAdVVP vp = insertAdVAgr reflPron vp ; + SelfNP np = { + s = \\c => np.s ! c ++ reflPron ! np.a ; + a = np.a + } ; +} -} + +} + diff --git a/src/egekusii/LangGus.gf b/src/egekusii/LangGus.gf new file mode 100644 index 000000000..abf594085 --- /dev/null +++ b/src/egekusii/LangGus.gf @@ -0,0 +1,11 @@ +--# -path=.:../abstract:../common:../api + +concrete LangGus of Lang = + GrammarGus, + LexiconGus +-- ,ConstructionGus + ** { + + + +} ; diff --git a/src/egekusii/LexiconGus.gf b/src/egekusii/LexiconGus.gf new file mode 100644 index 000000000..6bf8b40dc --- /dev/null +++ b/src/egekusii/LexiconGus.gf @@ -0,0 +1,79 @@ +--# -path=.:prelude + +concrete LexiconGus of Lexicon = CatGus ** + open ParadigmsGus,StructuralGus, Prelude in { + +flags + optimize=values ; + +lin +person_N = regN "omonto" omo_aba; + woman_N = regN "omosubati" omo_aba; + house_N = regN "enyomba" e_ci ; + tree_N = regN "omote" omo_eme; + big_A = regA "nene" ; + beautiful_A = regA "muya" ; + black_A = regA "mwamu"; + blue_A = regA "buluu" ; + broad_A = regA "gare" ; + brown_A = regA "maraba" ; + clean_A = iregA "safi" "safi"; + clever_A = regA "ng'aini" ; + cold_A = regA "kundu"; + correct_A = regA "keene" ; + dirty_A = regA "chabu" ; + dry_A = regA "kamoku" ; + full_A = regA "ichire" ; + good_A = regA "ya" ; + green_A = regA "machani" ; + heavy_A = regA "rito" ; + hot_A = regA "morero" ; + important_A = regA "eng'encho" ; + long_A = regA "tambe" ; + narrow_A = regA "nyerere" ; + near_A = regA "ang'e" ; + new_A = regA "nyia" ; + old_A = regA "koro" ; + red_A = regA "bariri" ; + rotten_A = regA "ng'undo" ; + round_A = regA "viringo" ; + sharp_A = regA "oge" ; + short_A = regA "eng'e" ; + small_A = regA "ke" ; + smooth_A = regA "terere" ; + straight_A = regA "ronge" ; + stupid_A = regA "riri" ; + thick_A = regA "netu" ; + thin_A = regA "reu" ; + ugly_A = regA "be"; + warm_A = regA "berera" ; + wet_A = regA "nyiu" ; + white_A = regA "rabu" ; + yellow_A = regA "yaye" ; + young_A = regA "ke" ; + certain_A=regA "maena"; + cow_N = regN "eng'ombe" e_ci ; + doctor_N = regN "omorwaria" omo_aba ; + dog_N = regN "esese" e_ci; + door_N = regN "omorangwa" omo_eme ; + enemy_N = regN "omobisa" omo_aba; + fish_N = regN "enswe" e_ci; + friend_N = regN "omosani" omo_aba; + garden_N = regN "omogondo" omo_eme; + girl_N = regN "omoiseke" omo_aba ; + lamp_N = regN "etaya" e_ci; + man_N = regN "omosacha" omo_aba ; + eye_N = iregN "eriso" "amaiso" eri_ama ; + tooth_N = regN "ero" eri_ama ; + wife_N = regN "omokungu" omo_aba; + +oper + aboutP = mkPrep "juu ya" ; + atP = mkPrep "vala ve" ; + forP = mkPrep "for" ; + fromP = mkPrep "kutoka" ; + inP = mkPrep "ndani" ; + onP = mkPrep "juu" ; + toP = mkPrep "hadi" ; + +} ; diff --git a/src/egekusii/MorphoGus.gf b/src/egekusii/MorphoGus.gf new file mode 100644 index 000000000..1f3063a5f --- /dev/null +++ b/src/egekusii/MorphoGus.gf @@ -0,0 +1,446 @@ +--# -path=.:../../prelude + +--1 Egekusii Resource Morphology + +resource MorphoGus = CommonBantu , +ResGus ** open Prelude, Predef +in { + + flags optimize=all ; + oper + Many_prefix: Gender -> Str = \g -> + case of { + =>"aba"; + || =>"ama"; + | =>"cini"; + =>"eme"; + | =>"ebi"; + => "ani" + } ; + + Few_prefix : Gender -> Str = \g -> + case of { + =>"basi"; + || =>"masi"; + | =>"cisi"; + =>"mesi"; + | =>"bisi"; + => "asi" + } ; + + + Detsomesgprefix : Gender -> Str = \g ->""; + {-} case of { + => "li" ; + => "ki" ; + => "me"; + => "pe" ; + => "kwi" ; + | => "nyi" ; + |||| | => "mwi" + + } ; -} + Some_prefix : Gender -> Str = \g -> + case of { + =>"beke"; + =>"bike"; + =>"make"; + =>"make"; + =>"nke"; + =>"nke"; + =>"mebe"; + =>"bike"; + =>"make"; + => "ake" + } ; + +Detsomeplprefix : Gender -> Str = \g ->""; + {-} case of { + => "we" ; + => "mi" ; + => "nyi" ; + => "pe" ; + => "kwi" ; + => "vi" ; + | => "nye" ; + | => "mwi" ; + | | => "me" + + } ; -} + + mkNum3 : Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, second -> + {s = table { + unit => table {NCard =>\\g => Cardprefix g + two ; + NOrd => \\g => Ordprefix g ++ second} ; + teen => table {NCard =>\\g =>"ikomi na" ++ CardThirteenprefix g + two ; + NOrd => \\g => Ordprefix g ++ "ikomi na" ++ second} ; + ten => table {NCard =>\\g =>"emerongo etato" ; + NOrd => \\g => Ordprefix g ++ "emerongo etato"}; + hund => table {NCard =>\\g =>"amagana atato " ; + NOrd => \\g => Ordprefix g ++ "amagana atato"} + } + } ; + mkNum4 : Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, second -> + {s = table { + unit => table {NCard =>\\g => Cardprefix g + two ; + NOrd => \\g => Ordprefix g ++ second} ; + teen => table {NCard =>\\g =>"ikomi na" ++ Cardfouteenprefix g ; + NOrd => \\g => Ordprefix g ++ "ikomi na" ++ second } ; + ten => table {NCard =>\\g =>"emerongo ene"; + NOrd => \\g => Ordprefix g ++ "emerongo ene"}; + hund => table {NCard =>\\g =>"amagana ane " ; + NOrd => \\g => Ordprefix g ++ "amagana ane"} + } + } ; + mkNum5 : Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, second -> + {s = table { + unit => table {NCard =>\\g => Cardprefix g + two ;-- create table totake care of eci and oroci which is isano not itano + NOrd => \\g => Ordprefix g ++ second} ; + teen => table {NCard =>\\g =>"ikomi na" ++ Cardfifteenprefix g + two ; + NOrd => \\g => Ordprefix g ++ "ikomi na" ++ second } ; + ten => table {NCard =>\\g =>"emerongo etano" ; + NOrd => \\g => Ordprefix g ++ "emerongo etano"}; + hund => table {NCard =>\\g =>"amagana atano " ; + NOrd => \\g => Ordprefix g ++ "amagana atano"} + } + } ; + + mkNum6 : Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, second -> + {s = table { + unit => table {NCard =>\\g => Cardprefix g + two ++Cardsixprefix g + second; + NOrd => \\g => Ordprefix g ++ "ga" + two ++ "ri" + second} ; + teen => table {NCard =>\\g =>"ikomi na" ++ Cardfifteenprefix g + two ++ Cardsixprefix g + second ; + NOrd => \\g => Ordprefix g ++ "ikomi na" ++ "ga" + two ++ "ri" + second} ; + ten => table {NCard =>\\g =>"emerongo etano" ++ Cardsixprefix g + second ; + NOrd => \\g => Ordprefix g ++ "emerongo etato"++ "ri" + second}; + hund => table {NCard =>\\g =>"amagana atano "++ Cardoneprefix g + second ; + NOrd => \\g => Ordprefix g ++ "amagana atano"++ "ri" + second} + } + } ; + + mkNum7 : Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, second -> + {s = table { + unit => table {NCard =>\\g => Cardprefix g + two ++Cardtwoprefix g + second; + NOrd => \\g => Ordprefix g ++ "ga" + two ++ "ka" + second} ; + teen => table {NCard =>\\g =>"ikomi na" ++ Cardfifteenprefix g + two ++ Cardtwoprefix g + second ; + NOrd => \\g => Ordprefix g ++ "ikomi na" ++ "ga" + two ++ "ka" + second} ; + ten => table {NCard =>\\g =>"emerongo etano" ++ Cardtwoprefix g + second ; + NOrd => \\g => Ordprefix g ++ "emerongo etano"++ "ka" + second}; + hund => table {NCard =>\\g =>"amagana atano "++ Cardtwoprefix g + second ; + NOrd => \\g => Ordprefix g ++ "amagana atano"++"ka" + second} + } + } ; + + mkNum8 : Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, second -> + {s = table { + unit => table {NCard =>\\g => Cardprefix g + two ++ Cardprefix g + second; + NOrd => \\g => Ordprefix g ++ "ga" + two ++ "ga" + second} ; + teen => table {NCard =>\\g =>"ikomi na" ++ Cardfifteenprefix g + two ++ Cardprefix g + second ; + NOrd => \\g => Ordprefix g ++ "ikomi na" ++ "ga" + two ++ "ga" + second} ; + ten => table {NCard =>\\g =>"emerongo etano" ++ Cardprefix g + second ; + NOrd => \\g => Ordprefix g ++ "emerongo etano"++ "ga" + second}; + hund => table {NCard =>\\g =>"amagana atano "++ Cardprefix g + second ; + NOrd => \\g => Ordprefix g ++ "amagana atano"++ "ga" + second} + } + } ; + mkNum2 : Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, second -> + {s = table { + unit => table {NCard =>\\g => Cardtwoprefix g + two ; + NOrd => \\g => Ordprefix g ++ second} ; + teen => table {NCard =>\\g =>"ikomi na" ++ Cardtwelveprefix g + two ; + NOrd => \\g => Ordprefix g ++ "ikomi na" ++ Cardtwelveprefix g + two } ; + ten => table {NCard =>\\g =>"emerongo ebere" ; + NOrd => \\g => Ordprefix g ++ "emerongo ebere" }; + hund => table {NCard =>\\g =>"amagana ebere" ; + NOrd => \\g => Ordprefix g ++ "amagana ebere" } + } + } ; + + mkNum1 : Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, second -> + {s = table { + unit => table {NCard =>\\g => Cardoneprefix g + two ; + NOrd => \\g => Ordoneprefix g ++ second} ; + teen => table {NCard =>\\g =>"ikomi nemo" ; + NOrd => \\g => Ordprefix g ++ "ikomi " ++ "nemo"} ; + ten => table {NCard =>\\g =>"ikomi" ; + NOrd => \\g => Ordprefix g ++ "ikomi"}; + hund => table {NCard =>\\g =>"rigana erimo"; + NOrd => \\g => Ordprefix g ++ "rigana erimo" } + } + } ; + + regNum : Str -> {s : DForm => CardOrd => Gender => Str} = + \six -> {s = table { + unit => table {NCard =>\\g => six ; + NOrd => \\g => Ordprefix g ++ six} ; + teen => table {NCard =>\\g =>"ikomi na" ++ six ; + NOrd => \\g => Ordprefix g ++ "ikomi na" ++ six} ; + ten => table {NCard =>\\g =>"emerongo" ++ six ; + NOrd => \\g => Ordprefix g ++ "emerongo" ++ six}; + hund => table {NCard =>\\g =>"amagana " ++ six ; + NOrd => \\g => Ordprefix g ++ "amagana" ++ six} + } } ; + + + regCardOrd : Str -> {s : CardOrd => Gender => Str} = \ten -> + {s = table {NCard => \\g => ten ; + NOrd =>\\g => Ordprefix g ++ ten } } ; + + regCardone : Str -> Str -> {s : CardOrd => Gender => Str} = \ten,one -> + {s = table {NCard => \\g => ten ++ Cardoneprefix g + one ; + NOrd =>\\g => Ordprefix g ++ ten ++ Cardoneprefix g + one } } ; + + mkCard : CardOrd -> Str -> Gender => Str = \o,ten -> + (regCardOrd ten).s ! o ; + + + + + +regN : Str ->Gender -> Noun = \w, g ->let + ndeto= PrefixPlNom g + Predef.drop 3 w; + in case g of { + G4 => {s = table { Sg => table {Nom => w; Loc => ""} ; + Pl=>table{ Nom => "ama" + Predef.drop 2 w; Loc => "" } + }; g = g} ; + G3=> {s = table { Sg => table {Nom => w; Loc => ""} ; + Pl=>table{ Nom => "ci" + Predef.drop 1 w; Loc => "" } + }; g = g} ; + _ => {s = table { Sg => table {Nom => w; Loc => ""} ; + Pl=>table{ Nom => ndeto; Loc => "" } }; + g = g}}; + + iregN :Str-> Str ->Gender -> Noun= \man,men,g -> { + s = table{Sg => table{Nom => man ; Loc=> ""}; + Pl => table{Nom => men ; Loc=> ""}} ; + g = g + } ; + + regA:Str -> {s : AForm => Str} = \seo -> {s = table { + AAdj G1 Sg=>case Predef.take 1 seo of { + "a"|"e"|"i"|"u" => "omu" + seo; + "o" => "omw" + seo; + _ => ConsonantAdjprefix G1 Sg + seo }; + AAdj G1 Pl =>case Predef.take 1 seo of { + _ => ConsonantAdjprefix G1 Pl + seo }; + + + AAdj G2 Sg=>case Predef.take 1 seo of { + "a"|"e"|"i"|"u" => "omu" + seo; + "o" => "omw" + seo; + _ => ConsonantAdjprefix G2 Sg + seo }; + AAdj G2 Pl =>case Predef.take 1 seo of { + "o" => "emi" + seo; + _ => ConsonantAdjprefix G2 Pl + seo }; + + AAdj G3 Sg=>case Predef.take 1 seo of { + "o" |"i" => "eng" + seo; + _ => ConsonantAdjprefix G3 Sg + seo }; + AAdj G3 Pl =>case Predef.take 1 seo of { + "o" |"i" => "ching" + seo; + _ => ConsonantAdjprefix G3 Pl + seo }; + AAdj G4 Sg=>case Predef.take 1 seo of { + "a"|"e"|"i"|"o"|"u" => "rigi" + seo; + _ => ConsonantAdjprefix G4 Sg + seo }; + AAdj G4 Pl =>case Predef.take 1 seo of { + _ => ConsonantAdjprefix G4 Pl + seo }; + AAdj G5 Sg=>case Predef.take 1 seo of { + "i" => "eki" + seo; + _ => ConsonantAdjprefix G5 Sg + seo }; + AAdj G5 Pl =>case Predef.take 1 seo of { + "i" => "ebi" + seo; + _ => ConsonantAdjprefix G5 Pl + seo }; + + AAdj G6 Sg=>case Predef.take 1 seo of { + "i"|"o" => "oru"+ seo; + _ => ConsonantAdjprefix G6 Sg + seo }; + AAdj G6 Pl =>case Predef.take 1 seo of { + "i"|"o" => "ching'"+ seo; + _ => ConsonantAdjprefix G6 Pl + seo }; + AAdj G7 Sg=>case Predef.take 1 seo of { + _ => ConsonantAdjprefix G7 Sg + seo }; + AAdj G7 Pl =>case Predef.take 1 seo of { + _ => ConsonantAdjprefix G7 Pl + seo }; + AAdj G8 Sg=>case Predef.take 1 seo of { + "i"|"o" => "obu"+ seo; + _ => ConsonantAdjprefix G8 Sg + seo }; + AAdj G8 Pl =>case Predef.take 1 seo of { + _ => ConsonantAdjprefix G8 Pl + seo }; + AAdj G9 Sg=>case Predef.take 1 seo of { + "i"|"o" => "oku" + seo; + _ => ConsonantAdjprefix G9 Sg + seo }; + AAdj G9 Pl =>case Predef.take 1 seo of { + _ => ConsonantAdjprefix G9 Pl + seo }; + + AAdj G10 Sg=>case Predef.take 1 seo of { + _ => ConsonantAdjprefix G10 Sg + seo }; + AAdj G10 Pl =>[] }}; + + +lregA : Str-> Str -> {s : AForm => Str} = \seo,seoo -> { + s = table { + AAdj g Sg => ProunSgprefix g + seo ++ seoo; + AAdj g Pl=> ProunPlprefix g + seo ++ seoo + } } ; + +iregA : Str-> Str -> {s : AForm => Str} = \seo,seoo -> { + s = table { + AAdj g Sg=> seo; + AAdj g Pl => seoo} }; + +regV : Str -> Verb = + \vika -> { + s = table{ True => table{ + VInf => vika; + VPres g n p => Verbprefix g n p + vika; + VPast g n p => Verbprefix g n p + init vika + "ie" ; + VFut g n p => Verbfutureprefix g n p + vika + } ; + False =>table { + VInf => "ndi" + vika; + VPres g n p => neg (Ag g n p) False Pres + "na" + vika ; + VPast g n p => neg (Ag g n p) False Past + "ne" + vika ; + VFut g n p => neg (Ag g n p) False Fut + "ka" + vika + } + }; + }; + + neg : Agr -> Bool ->Tense -> Str = \a,b,t -> let + g = getGender a; + n=getNumber a; + p=getPerson a + in case b of {True => [] ; False => negprefix g n t p} ; + + negprefix : Gender -> Number -> Tense -> Person -> Str =\g,n,t,p-> case of { + => "ndi"; + => "ndu"; + => "ndu"; + => "twi"; + => "mwi"; + => "mai"; + => "ndu"; + => "i"; + => "i"; + => "mai"; + => "ki"; + => "i"; + => "kai"; + => "tui"; + => "vai"; + => "kui"; + => "i"; + <_,_,_,_> => "syi" + +}; + + + + + + + Verbprefix : Gender -> Number -> Person -> Str = \g, n, p -> + case of { + => "na" ; + => "wa" ; + => "wa" ; + => "twa" ; + => "mwa" ; + => "ma" ; + => "wa" ; + => "ya" ; + => "kya" ; + => "sya" ; + => "ya" ; + => "ma" ; + => "ka" ; + => "twa" ; + => "va" ; + => "kwa" ; + => "ya" ; + <_,_,_> => "sya" + } ; + + Verbfutureprefix : Gender -> Number -> Person -> Str = \g, n, p -> + case of { + => "nga" ; + => "uka" ; + => "uka" ; + => "tuka" ; + => "muka" ; + => "maka" ; + => "uka" ; + => "ika" ; + => "kika" ; + => "ika" ; + => "ika" ; + => "maka" ; + => "kaka" ; + => "tuka" ; + => "vaka" ; + => "kuka" ; + => "ika" ; + <_,_,_> => "ika" + } ; + + +Cardtwelveprefix : Gender -> Str = \g -> + case of { + =>"ba"; + =>"ne"; + <_> => "i" + } ; + +CardThirteenprefix : Gender -> Str = \g -> + case of { + | |=>"bat"; + | | =>"at"; + | =>"is"; + =>"nit"; + =>"at" + } ; + +Cardsixprefix : Gender -> Str = \g -> + case of { + =>"o"; + |=>"bi"; + | || | | | =>"e" + } ; + + Cardfouteenprefix : Gender -> Str = \g -> + case of { + | |=>"bane"; + | | =>"ane"; + | =>"inye"; + =>"ene"; + =>"ene" + } ; + Cardfifteenprefix : Gender -> Str = \g -> + case of { + =>"ba"; + |=>"bi"; + | | =>"a"; + | =>"es"; + =>"e"; + =>"a" + } ; + Ordoneprefix : Gender -> Str = \g -> + case of { + | =>"omo"; + => "rita"; + => "ege"; + => "en"; + => "oro"; + => "aka"; + => "abo"; + => "oko"; + < G10> => "aa" + } ; + } diff --git a/src/egekusii/NounGus.gf b/src/egekusii/NounGus.gf new file mode 100644 index 000000000..3ef6f3cd4 --- /dev/null +++ b/src/egekusii/NounGus.gf @@ -0,0 +1,2 @@ +concrete NounGus of Noun = + CatGus ** NounBantu with (Structural = StructuralGus), (ResBantu = ResGus); diff --git a/src/egekusii/NumeralGus.gf b/src/egekusii/NumeralGus.gf new file mode 100644 index 000000000..b149a1001 --- /dev/null +++ b/src/egekusii/NumeralGus.gf @@ -0,0 +1,86 @@ +concrete NumeralGus of Numeral = CatGus [Numeral,Digits] ** open Prelude, +DiffGus,MorphoGus in { + +lincat + Digit = {s : DForm => CardOrd => Gender => Str} ; + Sub10 = {s : DForm => CardOrd => Gender => Str ; n : Number} ; + Sub100 = {s : CardOrd => Gender => Str ; n : Number} ; + Sub1000 = {s : CardOrd => Gender => Str ; n : Number} ; + Sub1000000 = {s : CardOrd => Gender => Str ; n : Number} ; + +lin num x = x ; +lin n2 = mkNum2 "bere" "kabere" ; +lin n3 = mkNum3 "ato" "gatatu" ; +lin n4 = mkNum4 "ne" "kane" ; +lin n5 = mkNum5 "tano" "gatano" ; +lin n6 = mkNum6 "tano" "mo"; +lin n7 = mkNum7 "tano" "bere"; +lin n8 = mkNum8 "tano" "tato"; +lin n9 = regNum "kianda" ; + +lin pot01 = mkNum1 "mo" "tang'ani" ** {n = Sg} ; +lin pot0 d = d ** {n = Pl} ; +lin pot110 = regCardOrd "ikomi" ** {n = Pl} ; +lin pot111 = regCardone "ikomi na" "mo" ** {n = Pl} ; -- creat another function to be gender specific +lin pot1to19 d = {s = d.s ! teen} ** {n = Pl} ; +lin pot0as1 n = {s = n.s ! unit} ** {n = n.n} ; +lin pot1 d = {s = d.s ! ten} ** {n = Pl} ; +lin pot1plus d e = { s = table { + NCard => \\g => d.s ! ten ! NCard ! g ++ "na"++ e.s ! unit ! NCard ! g ; + NOrd => \\g =>Ordprefix g++ d.s ! ten ! NCard ! g ++ "na"++ e.s ! unit ! NCard ! g } ; + n = Pl} ; +lin pot1as2 n = n ; +lin pot2 d = {s = d.s ! hund} ** {n = Pl} ; +lin pot2plus d e = {s = table { + NCard => \\g => d.s ! hund ! NCard ! g ++ "na" ++ e.s !NCard ! g ; + NOrd => \\g =>Ordprefix g++ d.s ! hund ! NCard ! g ++ "na" ++ e.s ! NCard ! g } ; + n = Pl} ; + lin pot2as3 n = n ; +lin pot3 n = { s = table { + NCard => \\g => mkCard NCard "chilibu" ! g ++ n.s ! NCard ! g ; + NOrd => \\g =>Ordprefix g++ mkCard NCard "chilibu" ! g ++ n.s ! NCard ! g } ; + n = Pl} ; +lin pot3plus n m = { s = table { + NCard => \\g => "chilibu" ++ n.s ! NCard !g ++ m.s ! NCard ! g ; + NOrd => \\g =>Ordprefix g++ "chilibu" ++ n.s ! NCard !g ++ m.s ! NCard ! g} ; + n = Pl} ; + +-- numerals as sequences of digits0' + + lincat + Dig = TDigit ; + + lin + IDig d = d ; + + IIDig d i = { + --s = \\o,g => d.s ! NCard ! g ++ i.s ! o ! g ; + s = table {NCard => \\g => d.s! NCard ! g ++ BIND ++ i.s ! NCard ! g ; + NOrd => \\g => d.s! NOrd! g ++ BIND ++ i.s !NCard! g } ; + n = Pl + } ; + + D_0 = mkDig "0" ; + D_1 = mk3Dig "1" "1" Sg ; + D_2 = mkDig "2" ; + D_3 = mkDig "3" ; + D_4 = mkDig "4" ; + D_5 = mkDig "5" ; + D_6 = mkDig "6" ; + D_7 = mkDig "7" ; + D_8 = mkDig "8" ; + D_9 = mkDig "9" ; + + oper + mk2Dig : Str -> Str -> TDigit = \c,o -> mk3Dig c o Pl ; + mkDig : Str -> TDigit = \c -> mk2Dig c (c ) ; + + mk3Dig : Str -> Str -> Number -> TDigit = \c,o,n -> { + s = table {NCard => \\g => c ; NOrd => \\g =>Ordprefix g ++ o} ; + n = n} ; + + TDigit = { + n : Number ; + s : CardOrd => Gender => Str + } ; +} diff --git a/src/egekusii/ParadigmsGus.gf b/src/egekusii/ParadigmsGus.gf new file mode 100644 index 000000000..d3fc779a0 --- /dev/null +++ b/src/egekusii/ParadigmsGus.gf @@ -0,0 +1,437 @@ +--# -path=.:../abstract:../../prelude:../common + +resource ParadigmsGus = open + (Predef=Predef), + Prelude, + MorphoGus, + ResGus, + CatGus + in { + +oper + Gender : Type ; + omo_aba : Gender ;--% + omo_eme : Gender ; + e_ci : Gender ; + eri_ama : Gender ; + ege_ebi : Gender ; + oro_ci : Gender ; + aka_ebi : Gender ; --% + abo_ama : Gender ; + oko_ama : Gender ; + aa : Gender ; + +-- To abstract over number names, we define the following. + + Number : Type ; + + singular : Number ; + plural : Number ; + +-- To abstract over case names, we define the following. + + Case : Type ; --% + + nominative : Case ; --% + locative : Case ; --% + + npNumber : NP -> Number ; -- exctract the number of a noun phrase + + +--2 Nouns + +-- Nouns are constructed by the function $mkN$, which takes a varying +-- number of arguments. + + mkN : overload { + mkN : (flash : Str) -> Gender -> N ; --regular plural + mkN : (man,men : Str) ->Gender -> N ; -- irregular plural + mkN : Str -> N -> N -- e.g. baby + boom compound noun + } ; + +--3 Relational nouns + mkN2 : overload { + mkN2 : N -> Prep -> N2 ; + mkN2 : N -> Str -> N2 ; + mkN2 : N -> N2 ; + mkN2 : N -> (Gender => Number => Str)-> N2 ; + } ; + +oper dfltGender : Gender = G1 ; + dfltNumber : Number = Sg ; + +-- Three-place relational nouns ("the connection from x to y") need two prepositions. + + mkN3 : N -> Prep -> Prep -> N3 ; -- e.g. connection from x to y + + + +--3 Proper names and noun phrases +-- +-- Proper names, with a regular genitive, are formed from strings. + + mkPN : overload { + + mkPN : Str ->Gender -> PN ; + +-- Sometimes a common noun can be reused as a proper name, e.g. "Bank" + + mkPN : N -> PN --% + } ; + +--3 Determiners and quantifiers + + mkOrd : Str -> Ord ; --% + +--2 Adjectives + + mkA : overload { + mkA : (happy : Str) -> A ; + --mkA : (happy : Str) -> A ;-- regular adj, + mkA : (fat,fatter : Str) -> A ; -- irreg. + } ; + + +--3 Two-place adjectives + + mkA2 : overload { + mkA2 : A -> Prep -> A2 ; -- absent from + mkA2 : A -> Str -> A2 ; -- absent from --% + mkA2 : Str -> Prep -> A2 ; -- absent from --% + mkA2 : Str -> Str -> A2 -- absent from --% + + } ; + + +--2 Adverbs + +-- Adverbs are not inflected. Most lexical ones have position +-- after the verb. Some can be preverbal (e.g. "always"). + + mkAdv : Str -> Adv ; -- e.g. today + mkAdV : Str -> AdV ; -- e.g. always + +-- Adverbs modifying adjectives and sentences can also be formed. + + mkAdA : Str -> AdA ; -- e.g. quite + +-- Adverbs modifying numerals + + mkAdN : Str -> AdN ; -- e.g. approximately + +--2 Prepositions + + mkPrep : overload { + mkPrep : Str -> Prep ; + -- mkPrep : Str -> Str -> Prep ; + mkPrep : (Gender => Number => Str) -> Prep ; + } ; + + noPrep : Prep ; -- no preposition + +-- (These two functions are synonyms.) + +--2 Conjunctions +-- + + mkConj : overload { + mkConj : Str -> Conj ; -- and (plural agreement) --% + mkConj : Str -> Number -> Conj ; -- or (agrement number given as argument) --% + mkConj : Str -> Str -> Conj ; -- both ... and (plural) --% + mkConj : Str -> Str -> Number -> Conj ; -- either ... or (agrement number given as argument) --% + } ; + +--2 Verbs +-- + +-- Verbs are constructed by the function $mkV$, which takes a varying +-- number of arguments. + + mkV : overload { + mkV : (cry : Str) -> V ; -- regular, incl. cry-cries, kiss-kisses etc + mkV : Str -> V -> V ; -- fix compound, e.g. under+take + }; + + + + +--3 Two-place verbs +-- +-- Two-place verbs need a preposition, except the special case with direct object. +-- (transitive verbs). Notice that a particle comes from the $V$.-} + + mkV2 : overload { + mkV2 : Str -> V2 ; -- kill --% + mkV2 : V -> V2 ; -- transitive, e.g. hit + mkV2 : V -> Prep -> V2 ; -- with preposiiton, e.g. believe in + mkV2 : V -> Str -> V2 ; -- believe in --% + mkV2 : Str -> Prep -> V2 ; -- believe in --% + mkV2 : Str -> Str -> V2 -- believe in --% + }; + +--3 Three-place verbs +-- +-- Three-place (ditransitive) verbs need two prepositions, of which +-- the first one or both can be absent. + + mkV3 : overload { + mkV3 : V -> V3 ; -- ditransitive, e.g. give,_,_ + mkV3 : V -> Prep -> Prep -> V3 ; -- two prepositions, e.g. speak, with, about + mkV3 : V -> Prep -> V3 ; -- give,_,to --% + mkV3 : V -> Str -> V3 ; -- give,_,to --% + mkV3 : Str -> Str -> V3 ; -- give,_,to --% + mkV3 : Str -> V3 ; -- give,_,_ --% + }; + + +--2 Other categories + +mkSubj : Str -> Subj = \s -> lin Subj {s = s} ; --% +mkInterj : Str -> Interj + = \s -> lin Interj (ss s) ; + +--. +--2 Definitions of paradigms +-- +-- The definitions should not bother the user of the API. So they are +-- hidden from the document. + + Gender = MorphoGus.Gender ; + Number = MorphoGus.Number ; + Case = MorphoGus.NPCase ; + omo_aba = G1 ; + omo_eme = G2 ; + e_ci = G3 ; + eri_ama = G4 ; + ege_ebi = G5 ; + oro_ci = G6 ; + aka_ebi = G7 ; + abo_ama = G8 ; + oko_ama = G9 ; + aa = G10 ; + singular = Sg ; + plural = Pl ; + nominative = npNom ; + locative = npLoc ; + + npNumber np = (agrFeatures np.a).n ; + + + + regN = MorphoGus.regN ; + iregN = MorphoGus.iregN ; + + + compoundN s n = lin N {s = \\x,y => s ++ n.s ! x ! y ; g=n.g} ; + + mkPN = overload { + mkPN : Str -> Gender -> PN = regPN; + mkPN : N -> PN = nounPN + } ; + + +mkN2 = overload { + mkN2 : N -> Prep -> N2 = prepN2 ; + mkN2 : N -> Str -> N2 = \n,s -> prepN2 n (mkPrep s); + mkN2 : N -> N2 = \n -> prepN2 n (mkPrep mkPrepof ) ; + mkN2 : N -> (Number =>Gender => Str)-> N2= \n,s -> prepN2 n (mkPrep mkPrepof) ; + } ; + + prepN2 = \n,p -> lin N2 (n ** {c2 = p}) ; + regN2 = \n -> (prepN2 n (mkPrep mkPrepof )) ; + mkN3 = \n,p,q -> lin N3 (n ** {c2 = p ; c3 = q}) ; + mkPrepof : Number => Gender => Str = + table Number { Sg => table { + G1| G2 => "bwo" ; + G3 => "ya"; + G4 => "ria"; + G5 => "kia"; -- + G6 => "rwa"; + G7 => "ka"; + G8 => "bwa"; + G9 => "kwa"; + G10 => "a" + }; + + Pl => table { G1 => "ba" ; + G2 => "ya" ; + G3|G6 => "cia"; + G4 |G8|G9|G10 => "a"; + G5 => "bi"; -- + G7 => "bia"} } ; + + + + + cnN2 : CN -> Prep -> N2 ; + cnN3 : CN -> Prep -> Prep -> N3 ; + +-- This is obsolete. + cnN2 = \n,p -> lin N2 (n ** {c2 = p}) ; + cnN3 = \n,p,q -> lin N3 (n ** {c2 = p ; c3 = q}) ; + + + regPN n g = lin PN {s = table {Loc => "" ; _ => n} ; g = g} ; + + + nounPN n = lin PN {s = n.s ! singular ; g = n.g} ; + + mkOrd : Str -> Ord = \x -> lin Ord { s =\\g => x}; + + + prepA2 a p = lin A2 (a ** {c2 = p.s!Sg!G1}) ; + + mkAdv x = lin Adv (ss x) ; + mkAdV x = lin AdV (ss x) ; + mkAdA x = lin AdA (ss x) ; + mkAdN x = lin AdN (ss x) ; + + mkPrep = overload { + mkPrep : Str -> Prep = \str -> lin Prep {s = \\n,g => str } ; + mkPrep : (Number => Gender => Str) -> Prep = \t ->lin Prep {s = t} ; + } ; + + noPrep = mkPrep [] ; + {-} mkPrep : Str -> Str -> Prep = \p,q -> lin Prep + {s = table{Sg => table{G1 => p; _=> "" }; + Pl => table{G1 => q; _=> ""}}} ; + prepV2 : V -> Prep -> V2 ; + prepV2 = \v,p -> lin V2 (v ** {c2 = p.s!Sg!G1}) ; + dirV2 : V -> V2 = \v -> prepV2 v noPrep ; + + prepPrepV3 v p q = lin V3 (v ** {c2 = p ; c3 = q}) ; + dirV3 v p = prepPrepV3 v noPrep p ; + dirdirV3 v = dirV3 v noPrep ; + + + mkA2V : A -> Prep -> Prep -> A2V; + A2S, A2V : Type = A2 ; + mkA2V v p q = mkA2 v p ** {s3 = q.p2 ; c3 = q.p1 ; lock_A2V = <>} ; + + + mkAV v = v ** { lock_AV = <>} ; + mkAV : A -> AV ; + AS, AV : Type = A ; + + mkAS : A -> AS ; + mkAS v = v ** {lock_AS = <>} ; + + mkVS : V -> VS ; + mkVS v = v ** { lock_VS = <>} ; + + mkVQ : V -> VQ ; + mkVQ v = v ** {lock_VQ = <>} ; + + + -- mkVV : V -> VV ; + -- mkVV v = v ** { lock_VV = <>} ; + + mkVA : V -> VA ; + mkVA v = v ** {lock_VA = <>} ; + + mkV2V : V -> Prep -> Prep -> V2V ; + mkV2V v p q = prepPrepV3 v p q ** {lock_V2V = <>} ; + + mkV2S : V -> Prep -> V2S ; + mkV2S v p = prepV2 v p ** { lock_V2S = <>} ; + + mkV2Q : V -> Prep -> V2Q ; + mkV2Q v p = prepV2 v p ** {lock_V2Q = <>} ; + + mkV2A : V -> Prep -> Prep -> V2A ; + mkV2A v p q = prepPrepV3 v p q ** {lock_V2A = <>} ; + + + mkV0 : V -> V0 ; + V0 : Type ; + V0 : Type = V; + mkV0 v = v ** {lock_V0 = <>} ; +-} +-- pre-overload API and overload definitions + + -- regN : Str ->Gender -> N ; + --iregN : (man,men : Str) ->Gender -> N ; + compoundN : Str -> N -> N ; + + mkN = overload { + mkN : Str ->Gender -> N = \n, g -> lin N (regN n g ); + mkN : (man,men : Str) ->Gender -> N = \s,p,g -> lin N ( iregN s p g) ; + } ; +--mkN : Str -> N -> N = compoundN taken from mkN can be added later if need be +-- Relational nouns ("daughter of x") need a preposition. + + prepN2 : N -> Prep -> N2 ; + +-- The most common preposition is "of", and the following is a +-- shortcut for regular relational nouns with "of". + + regN2 : N -> N2 ; + + + + -- iregA : (free,freely : Str) -> A ; + regA : Str -> A = \s -> lin A (MorphoGus.regA s) ; + -- pregA : Str -> A = \s -> lin A (MorphoGus.pregA s) ; + iregA : (fat,fatter : Str) -> A =\a,b -> lin A (MorphoGus.iregA a b); + mkA = overload { + mkA : Str -> A = \a -> lin A (regA a);-- |lin A (pregA a) ; + mkA : (fat,fatter : Str) -> A =\a,b -> lin A (iregA a b); + } ; + + prepA2 : A -> Prep -> A2 ; + + mkA2 = overload { + mkA2 : A -> Prep -> A2 = prepA2 ; + mkA2 : A -> Str -> A2 = \a,p -> prepA2 a (mkPrep p) ; + mkA2 : Str -> Prep -> A2 = \a,p -> prepA2 (regA a) p; + mkA2 : Str -> Str -> A2 = \a,p -> prepA2 (regA a) (mkPrep p); + } ; + + {-} + regV=MorphoGus.regV ; + + mkV = overload { + mkV : Str -> V =\v ->lin V(regV v) ; + mkV : Str -> V -> V = prefixV + }; + + + prefixV : Str -> V -> V = \p,v -> lin V { s = \\b,vform => p + v.s! b ! vform } ; + mkV2 = overload { + mkV2 : V -> V2 = dirV2 ; + mkV2 : Str -> V2 = \s -> dirV2 (regV s) ; + mkV2 : V -> Prep -> V2 = prepV2; + mkV2 : V -> Str -> V2 = \v,p -> prepV2 v (mkPrep p) ; + mkV2 : Str -> Prep -> V2 = \v,p -> prepV2 (regV v) p ; + mkV2 : Str -> Str -> V2 = \v,p -> prepV2 (regV v) (mkPrep p) + }; + + prepPrepV3 : V -> Prep -> Prep -> V3 ; + dirV3 : V -> Prep -> V3 ; + dirdirV3 : V -> V3 ; + + mkV3 = overload { + mkV3 : V -> Prep -> Prep -> V3 = prepPrepV3 ; + mkV3 : V -> Prep -> V3 = dirV3 ; + mkV3 : V -> Str -> V3 = \v,s -> dirV3 v (mkPrep s); + mkV3 : Str -> Str -> V3 = \v,s -> dirV3 (regV v) (mkPrep s); + mkV3 : V -> V3 = dirdirV3 ; + mkV3 : Str -> V3 = \v -> dirdirV3 (regV v) ; + } ; +-} + mkConj = overload { + mkConj : Str -> Conj = \y -> mk2Conj [] y plural ; + mkConj : Str -> Number -> Conj = \y,n -> mk2Conj [] y n ; + mkConj : Str -> Str -> Conj = \x,y -> mk2Conj x y plural ; + mkConj : Str -> Str -> Number -> Conj = mk2Conj ; + } ; + + mk2Conj : Str -> Str -> Number -> Conj = \x,y,n -> + lin Conj (sd2 x y ** {n = n}) ; + + regPN : Str ->Gender -> PN ; + nounPN : N -> PN ; + + + +} diff --git a/src/egekusii/PhraseGus.gf b/src/egekusii/PhraseGus.gf new file mode 100644 index 000000000..3a5cc5406 --- /dev/null +++ b/src/egekusii/PhraseGus.gf @@ -0,0 +1,3 @@ +concrete PhraseGus of Phrase = CatGus ** PhraseBantu with + (ResBantu = ResGus); + \ No newline at end of file diff --git a/src/egekusii/QuestionGus.gf b/src/egekusii/QuestionGus.gf new file mode 100644 index 000000000..071ef7b62 --- /dev/null +++ b/src/egekusii/QuestionGus.gf @@ -0,0 +1,2 @@ +concrete QuestionGus of Question = CatGus ** QuestionBantu with + (ResBantu = ResGus); \ No newline at end of file diff --git a/src/egekusii/RelativeGus.gf b/src/egekusii/RelativeGus.gf new file mode 100644 index 000000000..8d85fe09a --- /dev/null +++ b/src/egekusii/RelativeGus.gf @@ -0,0 +1,2 @@ +concrete RelativeGus of Relative = CatGus ** RelativeBantu with + (ResBantu = ResGus); \ No newline at end of file diff --git a/src/egekusii/ResGus.gf b/src/egekusii/ResGus.gf new file mode 100644 index 000000000..4c81fdd4f --- /dev/null +++ b/src/egekusii/ResGus.gf @@ -0,0 +1,7 @@ +--# -path=.:../abstract:../common:../../prelude + + +instance ResGus of ResBantu = DiffGus, CommonBantu ** open Prelude in { + +} ; + diff --git a/src/egekusii/SentenceGus.gf b/src/egekusii/SentenceGus.gf new file mode 100644 index 000000000..2983fb6d7 --- /dev/null +++ b/src/egekusii/SentenceGus.gf @@ -0,0 +1,3 @@ +concrete SentenceGus of Sentence = CatGus ** SentenceBantu with + (ResBantu = ResGus); + diff --git a/src/egekusii/StructuralGus.gf b/src/egekusii/StructuralGus.gf new file mode 100644 index 000000000..ec401c73b --- /dev/null +++ b/src/egekusii/StructuralGus.gf @@ -0,0 +1,236 @@ +concrete StructuralGus of Structural = CatGus ** + open MorphoGus, ParadigmsGus, + (C = ConstructX), Prelude in { + + flags optimize=all ; + + lin + above_Prep = mkPrep "igoro" ; + after_Prep = mkPrep "itina" ; + all_Predet = {s = \\g => MorphoGus.Allpredetprefix g + "onsi"} ; + almost_AdA = mkAdA "ang'e " ; + almost_AdN = mkAdN "vakuvi " ; + although_Subj = ss "ona kau" ; + always_AdV = mkAdV "botambe " ; + and_Conj = mkConj "na" ; + because_Subj = ss "nundu" | ss "ni kwithiwa" ; + before_Prep = mkPrep "mbee" |mkPrep "vau mbeange" ; + behind_Prep = mkPrep "itina" ; + between_Prep = mkPrep "kati" ; + both7and_DConj = mkConj "eli" "na"; + but_PConj = ss "korende" ; + by8agent_Prep = mkPrep "kwa" ; + by8means_Prep = mkPrep "kwa" ; + + during_Prep = mkPrep "during" ; + either7or_DConj = mkConj "kana" singular ; + everybody_NP = regNP "kila umwe" G1 singular ; + every_Det = {s = table {Obj g => "" ; + Sub => "kila" }; + n= Sg + } ; + + -- mkDeterminerSpec singular "every" "everyone" False ; + everything_NP = regNP "ase oboamo" G1 singular ; --gender confirm + everywhere_Adv = mkAdv "ase oboamo" ; + few_Det = {s = table {Obj g => Few_prefix g + "nini" ; + Sub => [] }; + n= Pl + } ; + -- mkDeterminer plural "few" ; +--- first_Ord = ss "first" ; DEPRECATED + for_Prep = mkPrep "aera" ; + from_Prep = mkPrep "kuma" ; + he_Pron = mkPron "ere" "je" G1 Sg P3 ; + here_Adv = mkAdv "vaa" ; + here7to_Adv = mkAdv ["kuvika vaa"] ; + here7from_Adv = mkAdv ["kuma vaa"] ; + how_IAdv = ss "ata" | ss "nzia myau" ; + how8much_IAdv = ss "mala meana" ; + --how8many_IDet = mkDeterminer plural ["mala meana"] ; + if_Subj = ss "enthwa" ; + in8front_Prep = mkPrep ["mbee wa"] ; + i_Pron =mkPron "inche" "ne" G1 Sg P1 ; + in_Prep = mkPrep "in" ; + it_Pron ={ s=\\c=>"yo"; poss=\\n,g=> ""; a=Ag G4 Sg P3};-- mkPron "yo" ""G4 Sg P3 ; + + less_CAdv = C.mkCAdv "ninangi" "kwi" ; + much_Det, many_Det = { s = table { + Obj g => Many_prefix g + "nge" ; + Sub => []} ; + n= Pl + } ; + more_CAdv = C.mkCAdv "mbeange" "kwi" ; -- more should be a function beccause og Gender + -- most_Predet = {s = \\g => MorphoGus.Mostpredetprefix g + "ingi"} ; + +{-} must_VV = { + s = table { + VVF VInf => ["have to"] ; + VVF VPres => "must" ; + VVF VPPart => ["had to"] ; + VVF VPres2Part => ["having to"] ; + VVF VPast => ["had to"] ; --# notpresent + VVPastNeg => ["hadn't to"] ; --# notpresent + VVPresNeg => "mustn't" + } ; + p = [] ; + typ = VVAux + + } ; -} +---b no_Phr = ss "no" ; + no_Utt = ss "yaya" ; + on_Prep = mkPrep "iulu wa" ; +---- one_Quant = mkDeterminer singular "one" ; -- DEPRECATED + only_Predet = {s = \\g => "tu" } ; + or_Conj = mkConj "kana" singular ; + otherwise_PConj = ss "otherwise" ; +--part_Prep = mkPrep "" ; + please_Voc = ss "ame" ; + part_Prep, possess_Prep = let + questo : ParadigmsGus.Number => MorphoGus.Gender => Str = table { + Sg => \\g=> case of { + | => "bwo" ; + => "ya"; + => "ria"; + => "kia"; -- + => "rwa"; + => "ka"; + => "bwa"; + => "kwa"; + => "a" + }; + + Pl => \\g=> case of{ + => "ba" ; + => "ya" ; + | => "cia"; + ||| => "a"; + => "bi"; -- + => "bia" + } + } + in { s= questo} ; + quite_Adv = mkAdv "o muno" ; + she_Pron = mkPron "ere" "je" G1 Sg P3 ; + + so_AdA = mkAdA "so" ; + somebody_NP = regNP " o mundu " G1 singular ; + someSg_Det = { s = table {Obj g => Some_prefix g ; + Sub => [] } ; + n= Sg + } ; + somePl_Det = {s = table {Obj g => Some_prefix g ; + Sub => [] }; + n= Pl + } ; + something_NP = regNP "o kindu" G1 singular ; --confirm gender + somewhere_Adv = mkAdv "o vandu" ; + that_Quant = let + questo : ParadigmsGus.Number => MorphoGus.Gender => Str = table { + Sg => \\g=> case of { + => "aria"; + => "oria"; + => "riira"; + => "keria"; + => "eria"; + => "roria"; + => "karia"; + => "boria"; + => "koria"; + => "aria" + }; + + Pl => \\g=> case of{ + => "baria" |"abuo"; + => "eria"|"eyio"; + | => "aria"|"ayio"; --confirm gendder 8 + => "baria" |"ebio"; + | => "ciria"|"ecio"; + => "biiraa" |"ebio"; + => "aria" |"eyio"; + => "ayio" + } + + } + in { + s = questo ; + } ; + there_Adv = mkAdv "vau" ; + there7to_Adv = mkAdv "vau" ; + there7from_Adv = mkAdv ["kuma vau"] ; + therefore_PConj = ss "kwoou" ; + they_Pron =mkPron "barabwo" "bo" G1 Pl P3 ; + + this_Quant = let + questo : ParadigmsGus.Number => MorphoGus.Gender => Str = table { + Sg => \\g=> case of { + => "oyo"; + => "oyo"; + => "eri"; + => "eke"; + => "eye"; + => "oro"; + => "aka"; + => "obo"; + => "oko"; + => "aa" + }; + + Pl => \\g=> case of{ + => "aba"; + => "eye"; + => "aya"; + | => "ebi"; + | => "eci"; + | => " aya"; + => "aa" + } + + } + in { + s = questo ; + } ; + through_Prep = mkPrep "kuvitila" ; + too_AdA = mkAdA "too" ; + to_Prep = mkPrep "kuvika" ; + under_Prep = mkPrep "itheo" ; + very_AdA = mkAdA "muno" ; + -- want_VV = mkVV (regV "enda") ; + we_Pron =mkPron "intwe" "ito" G1 Pl P1 ; + + --whatPl_IP = mkIP "ata" "ata" plural ; + -- whatSg_IP = mkIP "ata" "ata" singular ; + when_IAdv = ss "when" ; + when_Subj = ss "when" ; + where_IAdv = ss "where" ; + which_IQuant = {s = \\_ => "which"} ; +---b whichPl_IDet = mkDeterminer plural ["which"] ; +---b whichSg_IDet = mkDeterminer singular ["which"] ; + -- whoPl_IP = mkIP "uu" "whom" "whose" plural ; + -- whoSg_IP = mkIP "who" "whom" "whose" singular ; + why_IAdv = ss "why" ; + without_Prep = mkPrep "nza" ; + with_Prep = mkPrep "vamwe na" ; + --yes_Phr = ss "ii" ; + yes_Utt = ss "eee" ; + youSg_Pron = mkPron "aye" "o" G1 Sg P2 ; + + youPol_Pron,youPl_Pron = mkPron "inwe" "no" G1 Pl P3 ; + not_Predet = {s = \\g => "nongi"} ; + --no_Quant = {s = \\g,n => nonExist} ; + if_then_Conj = mkConj "ethiwa" "indi" singular ; + nobody_NP = regNP "obosa" G1 singular ; + nothing_NP = regNP "obosa" G1 singular ; --confirm gender + + at_least_AdN = mkAdN "at least" ; + at_most_AdN = mkAdN "at most" ; + except_Prep = mkPrep "ate o" ; + as_CAdv = C.mkCAdv "nundu" "ta" ; + + -- have_V2 = dirV2 (mk5V "have" "has" "had" "had" "having") ; + that_Subj = ss "ati" ; + lin language_title_Utt = ss "egekusii" ; + + +} + diff --git a/src/egekusii/VerbGus.gf b/src/egekusii/VerbGus.gf new file mode 100644 index 000000000..6026f09ee --- /dev/null +++ b/src/egekusii/VerbGus.gf @@ -0,0 +1,2 @@ +concrete VerbGus of Verb = CatGus ** VerbBantu with + (ResBantu = ResGus); diff --git a/src/kikamba/AdjectiveKam.gf b/src/kikamba/AdjectiveKam.gf new file mode 100644 index 000000000..331444339 --- /dev/null +++ b/src/kikamba/AdjectiveKam.gf @@ -0,0 +1 @@ +concrete AdjectiveKam of Adjective = CatKam **AdjectiveBantu with (ResBantu = ResKam) ; diff --git a/src/kikamba/AdverbKam.gf b/src/kikamba/AdverbKam.gf new file mode 100644 index 000000000..5d0f2ae16 --- /dev/null +++ b/src/kikamba/AdverbKam.gf @@ -0,0 +1,2 @@ +concrete AdverbKam of Adverb = CatKam **AdverbBantu with + (ResBantu = ResKam); \ No newline at end of file diff --git a/src/kikamba/CatKam.gf b/src/kikamba/CatKam.gf new file mode 100644 index 000000000..4d51ce951 --- /dev/null +++ b/src/kikamba/CatKam.gf @@ -0,0 +1,2 @@ +concrete CatKam of Cat = CommonX - [Pol] + ** CatBantu with (ResBantu = ResKam); diff --git a/src/kikamba/ConjunctionKam.gf b/src/kikamba/ConjunctionKam.gf new file mode 100644 index 000000000..dca83b3e0 --- /dev/null +++ b/src/kikamba/ConjunctionKam.gf @@ -0,0 +1,2 @@ +concrete ConjunctionKam of Conjunction = CatKam ** ConjunctionBantu with + (ResBantu = ResKam); \ No newline at end of file diff --git a/src/kikamba/DiffKam.gf b/src/kikamba/DiffKam.gf new file mode 100644 index 000000000..3d53b88f8 --- /dev/null +++ b/src/kikamba/DiffKam.gf @@ -0,0 +1,198 @@ +instance DiffKam of DiffBantu = open CommonBantu, Prelude in { + +param + GenderKam = G1 | G2 | G3 | G4 | G5 | G6 | G7| G8 | G9 |G10 ; +oper + Gender = GenderKam ; + firstGender = G1 ; secondGender = G2 ; + + conjGender : Gender -> Gender -> Gender = \m,n -> + case m of { G1 => n ; _ => G2 } ; + + ProunSgprefix : Gender -> Str = \g -> + case g of { + G1 | G2|G8 |G9 => "w" ; + G3 | G7 => "y" ; + G4 => "ky" ; + G5 => "k"; + G10 => "kw"; + G6 => "v" + } ; + + ProunPlprefix : Gender -> Str = \g -> + case g of { + G1 | G3 |G8 |G10 => "m" ; + G2 => "y" ; + G4 | G7 |G9 => "sy" ; + G5 => "tw" ; + G6 => "kw" + } ; +Allpredetprefix : Gender -> Str = \g -> + case of { + | | | => "" ; + => "y" ; + | | => "sy" ; + => "two" ; + => "kwo" + } ; + Mostpredetprefix : Gender -> Str = \g -> + case of { + => "ala a" ; + => "ila m" ; + | => "ala ma" ; + | => "ila mb" ; + => "tula twi" ; + => "kula kwi" ; + | => "ila mb" + + } ; +ConsonantAdjprefix: Gender -> Number -> Str = \n,g -> + case of { + => "mu" ; + => "a" ; + => "mu" ; + => "mi" ; + => "i" ; + => "ma" ; + => "ki" ; + => "" ; + => "ka" ; + => "tu" ; + => "va" ; + => "ku" ; + => "" ; + => "mu" ; + => "ma" ; + => "mu" ; + => "" ; + => "ku" ; + => "ma" + } ; + + VowelAdjprefix: Gender -> Number -> Str = \n,g -> + case of { + => "mw" ; + => "a" ; + => "mw" ; + => "mi" ; + => "y" ; + => "ma" ; + => "ky" ; + => "sy" ; + => "ka" ; + => "tw" ; + => "va" ; + => "kw" ; + => "sy" ; + => "mw" ; + <_,_> => "ma" + } ; + Adjpprefix : Gender -> Number -> Str = \n,g -> + case of { + => "wi" ; + => "me" ; + => "wi" ; + => "yi" ; + => "yi" ; + => "me" ; + => "ki" ; + => "syi" ; + => "ke" ; + => "twi" ; + => "ve" ; + => "kwi" ; + => "yi" ; + => "syi"; + <_,_> => "" + } ; + + PrefixPlNom : Gender -> Str = \g -> + case of { + => "a" ; + => "mi" ; + => "i" ; + => "tu"; + => "ku" ; + => [] ; + => "mb" ; + _ => "ma" + + } ; +mkprefix,Ordprefix : Gender -> Str = \g -> + case of { + | | | => "wa" ; + | => "ya" ; + => "kya" ; + => "ka"; + => "kwa"; + => "va" + } ; + Cardprefix : Gender -> Str = \g -> + case of { + | | => "a" ; + | | | | => "i" ; + => "tu" ; + => "ku" + } ; + +Cardoneprefix : Gender -> Str = \g -> + case of { + | | | => "u" ; + => "ki" ; + => "ku" ; + => "yi" ; + => "ka" ; + => "va"; + => "i" + } ; + Cardtwoprefix : Gender -> Str = \g -> + case of { + | | | => "e" ; + | | | => "i" ; + => "twi" ; + => "kwi" + + } ; + + Detprefix : Gender -> Str = \g -> + case of { + | => "a" ; + => "mi" ; + | => "ma" ; + | | => "" ; + => "tu" ; + => "ku" + + } ; + + +--------------------------------------------- + +oper + conjThan = "kuvita" ; + conjThat = "kuvita" ; + + reflPron : Agr => Str = \\ag=> case ag of { + Ag G1 Sg P1 => "nyie" ; + Ag G1 Sg P2 => "we" ; + Ag G1 Sg P3 => "we" ; + Ag _ Sg P3 => "yo" ; + Ag G1 Pl P1 => "ithyi" ; + Ag G1 Pl P2 => "nyui" ; + Ag G1 Pl P3 => "mo" ; + Ag _ _ _ => "" + }; + + superVery ="vyu"; + +param + VForm = VInf + | VPres Gender Number Person + | VPast Gender Number Person + | VFut Gender Number Person + -- | notpresent + ; + + DForm = unit | teen | ten | hund ; + AForm = AAdj Gender Number | AComp Gender Number ; +} diff --git a/src/kikamba/GrammarKam.gf b/src/kikamba/GrammarKam.gf new file mode 100644 index 000000000..60df0ab90 --- /dev/null +++ b/src/kikamba/GrammarKam.gf @@ -0,0 +1,30 @@ +--# -path=.:../abstract:../common:prelude + +concrete GrammarKam of Grammar = + NounKam, + VerbKam, + AdjectiveKam, + AdverbKam, + NumeralKam, + SentenceKam, + QuestionKam, + RelativeKam, + ConjunctionKam, + PhraseKam, + TextX - [Pol,PPos,PNeg,Pres], + StructuralKam, + IdiomKam, + TenseX - [Pol,PPos,PNeg,Pres] + ** { + +flags startcat = Phr ; unlexer = text ; lexer = text; + +--lin + --PPos = {s = [] ; p = CPos} ; + -- PNeg = {s = [] ; p = CNeg True} ; -- contracted: don't + --PPos = {s = [] ; b = True} ; + -- PNeg = {s = [] ; b = False} ; + -- TPres = {s = [] ; t = ResKam.Pres} ; + -- TPast = {s = [] ; t = ResKam.Past }; + -- TFut = {s = [] ; t = ResKam.Fut }; +} ; diff --git a/src/kikamba/IdiomKam.gf b/src/kikamba/IdiomKam.gf new file mode 100644 index 000000000..b5606fd87 --- /dev/null +++ b/src/kikamba/IdiomKam.gf @@ -0,0 +1,48 @@ +concrete IdiomKam of Idiom = CatKam ** open Prelude, ResKam in { + + flags optimize=all_subs ; +{- + lin + ImpersCl vp = mkClause "it" (agrP3 Sg) vp ; + GenericCl vp = mkClause "one" (agrP3 Sg) vp ; + + CleftNP np rs = mkClause "it" (agrP3 Sg) + (insertObj (\\_ => rs.s ! np.a) + (insertObj (\\_ => np.s ! rs.c) (predAux auxBe))) ; + + CleftAdv ad s = mkClause "it" (agrP3 Sg) + (insertObj (\\_ => conjThat ++ s.s) + (insertObj (\\_ => ad.s) (predAux auxBe))) ; + + ExistNP np = + mkClause "there" (agrP3 (fromAgr np.a).n) + (insertObj (\\_ => np.s ! NPAcc) (predAux auxBe)) ; + + ExistIP ip = + mkQuestion (ss (ip.s ! npNom)) + (mkClause "there" (agrP3 ip.n) (predAux auxBe)) ; + + ExistNPAdv np adv = + mkClause "there" (agrP3 (fromAgr np.a).n) + (insertObj (\\_ => np.s ! NPAcc ++ adv.s) (predAux auxBe)) ; + + ExistIPAdv ip adv = + mkQuestion (ss (ip.s ! npNom)) + (mkClause "there" (agrP3 ip.n) (insertObj (\\_ => adv.s) (predAux auxBe))) ; + + ProgrVP vp = insertObj (\\a => vp.ad ! a ++ vp.prp ++ vp.p ++ vp.s2 ! a) (predAux auxBe) ; + + ImpPl1 vp = {s = "let's" ++ infVP VVAux vp Simul CPos (AgP1 Pl)} ; + + ImpP3 np vp = {s = "let" ++ np.s ! NPAcc ++ infVP VVAux vp Simul CPos np.a} ; + + SelfAdvVP vp = insertObj reflPron vp ; + SelfAdVVP vp = insertAdVAgr reflPron vp ; + SelfNP np = { + s = \\c => np.s ! c ++ reflPron ! np.a ; + a = np.a + } ; +} -} + +} + diff --git a/src/kikamba/LangKam.gf b/src/kikamba/LangKam.gf new file mode 100644 index 000000000..29a393291 --- /dev/null +++ b/src/kikamba/LangKam.gf @@ -0,0 +1,11 @@ +--# -path=.:../abstract:../common:../api + +concrete LangKam of Lang = + GrammarKam, + LexiconKam +-- ,ConstructionKam + ** { + + + +} ; diff --git a/src/kikamba/LexiconKam.gf b/src/kikamba/LexiconKam.gf new file mode 100644 index 000000000..80dc84a64 --- /dev/null +++ b/src/kikamba/LexiconKam.gf @@ -0,0 +1,388 @@ +--# -path=.:prelude + +concrete LexiconKam of Lexicon = CatKam ** + open ParadigmsKam,StructuralKam, Prelude in { + +flags + optimize=values ; + +lin + add_V3=regV "ongela" ; +already_Adv= mkAdv "tenange" ; +animal_N=regN "nyamu" n_n ; +answer_V2S=regV "sungia" ; +ashes_N=regN "muu" mu_mi ; +ask_V2Q=regV "kulya" ; +back_N=regN "muongo" mu_mi; +bark_N=regN "ikonde" i_ma ; +become_VA=regV "ithiwa" ; +beg_V2V=regV "voya" ; +belly_N=regN "ivu" i_ma ; +bite_V2=regV "uma" ; +blood_N=regN "nthakame" n_n ; +blow_V=regV "uutana" ; +bone_N=regN "ivindi" i_ma ; +break_V2=regV "vunzya" ; +breast_N=regN "nondo" n_n; +breathe_V=regV "veva" ; +burn_V=regV "vya" ; +close_V2=regV "vinga" ; +cloud_N=regN "ithweo" i_ma ; +come_V=regV "uka" ; +count_V2=regV "tala" ; +cut_V2=regV "tema" ; +day_N=regN "muthenya" mu_mi; +die_V=regV "kw'a" ; +dig_V=regV "inza" ; +do_V2=regV "ika" ; +drink_V2=regV "nyw'a" ; +dull_A=regA "tuku" ; --- check the actual translation +dust_N=regN "kitoo" ki_i; +ear_N=regN "kutu" ku_ma; +earth_N=regN "nthi" n_n; +--easy_A2V=regV "vuthu" ; +eat_V2=regV "ya" ; +egg_N=regN "itumbi" i_ma; +fall_V=regV "valuka" ; +far_Adv=mkAdv"kuasa" ; +fat_N=regN "mauta" i_ma ; +fear_V2=regV "kia" ; +fear_VS=regV "kia" ; +feather_N=regN "iwia" i_ma ; +fight_V2=regV "ukita" ; +find_V2=regV "ona" ; +fingernail_N=regN "waa" u_n; +fire_N=regN "mwaki" mu_mi; +float_V=regV "lela" ; +flow_V=regV "nyunyuluka" ; +flower_N=regN "ilaa" i_ma; +fly_V=regV "uluka" ; +fog_N=regN "muumbi" mu_mi; +foot_N=regN "kuu" ku_ma ; +forest_N=regN "kitheka" ki_i ; +forget_V2=regV "ulwa" ; +freeze_V=regV "thitha" ; +--fun_AV=regV "uthekan'yo" ; +give_V3=regV "nengane" ; +go_V=regV "thi" ; +grass_N=regN "nyeki" n_n ; +guts_N=regN "muluku" mu_mi; +hair_N=regN "nzwii" n_n; +hand_N=iregN "kw'oko" "moko" ku_ma; +hate_V2=regV "mena" ; +head_N=regN "mutw'e" mu_mi ; +hear_V2=regV "iw'a" ; +heart_N=regN "ngoo" n_n; +hit_V2=regV "kima" ; +hold_V2=regV "kwata" ; +hope_VS=regV "ikwatye" ; +horn_N=iregN "uvya" "mbvya" u_n; +hunt_V2=regV "syima" ; +husband_N=regN "muume" mu_a ; +ice_N=iregN "ia" "maia" i_ma; +industry_N= regN "kiwanda" ki_i ; +jump_V=regV "thaanyaku" ; +kill_V2=regV "uua" ; +knee_N=regN "iu" i_ma; +know_V2=regV "manya" ; +know_VQ=regV "manya" ; +know_VS=regV "manya" ; +laugh_V=regV "theka" ; +leaf_N=regN "itu" i_ma; +learn_V2=regV "soma" ; +leather_N=regN "kithuma" ki_i; +leave_V2=regV "tia" ; +lie_V=regV "kenga" ; +like_V2=regV "enda" ; +listen_V2=regV "ithukisye" ; +live_V=regV "ithiwa thayu" ; +liver_N=regN "itema" i_ma; +lose_V2=regV "asya" ; +louse_N=regN "ndaa" n_n; +love_N=regN "wende" u_ma; +love_V2=regV "enda" ; +meat_N=regN "nyama" n_n ; +milk_N=regN "iia" i_ma; +moon_N=regN "mwei" mu_mi; +mountain_N=regN "kiima" ki_i ; +mouth_N=regN "munuka" mu_mi; +music_N=regN "wini" u_ma ; +name_N=regN "isyitwa" i_ma; +neck_N=regN "ngingo" n_n ; +newspaper_N=regN "ikaseti" i_ma ; +night_N=regN "utuku" u_ma; +nose_N=regN "inyuu" i_ma; +now_Adv=mkAdv "yuyu" ; +number_N=regN "utalo" u_ma ; +oil_N=regN "iuta" i_ma ; +open_V2=regV "vingua" ; +paint_V2A=regV "vaka langi" ; +paper_N=regN "ikalatasi" i_ma ; +peace_N=regN "muuo" mu_mi; +pen_N=regN "kiandiki" ki_i; +planet_N=regN "pulaneti" n_n; +plastic_N=regN "pulasitiki" n_n; +play_V=regV "thauka" ; +play_V2=regV "thauka" ; +policeman_N=regN "musikali wa volisi" mu_a ; +priest_N=regN "muthembi" mu_a ; +--probable_AS=regV "" ; +pull_V2=regV "kusya" ; +push_V2=regV "sukuma" ; +put_V2=regV "ikia" ; +queen_N=regN "kiveti kya musumbi" mu_a; +radio_N=regN "rendio" n_n; +rain_N=regN "mbua" n_n ; +rain_V0=regV "ua" ; +read_V2=regV "soma" ; +religion_N=regN "ndini" n_n ; +restaurant_N=regN "uteli" n_n ; +river_N=regN "usi" u_n ; +road_N=regN "nzia" n_n ; +rock_N=regN "ivia" i_ma; +roof_N=regN "kiala" ki_i ; +root_N=regN "mui" mu_mi ; +rope_N=regN "mukwa" mu_mi; +rub_V2=regV "kiitha" ; +rubber_N=regN "kivuti" ki_i ; +run_V=regV "sema" ; +salt_N=regN "munyu" mu_mi; +sand_N=regN "kithangathi" ki_i; +say_VS=regV "asya" ; +school_N=regN "sukulu" n_n; +science_N=regN "sayasi" n_n ; +scratch_V2=regV "thua" ; +sea_N=regN "ukanga" u_ma; +see_V2=regV "ona" ; +seed_N=regN "mbeu" n_n ; +seek_V2=regV "mantha" ; +sell_V3=regV "thoosya" ; +send_V3=regV "tuma" ; +sew_V=regV "tuma" ; +sheep_N=regN "ilondu" i_ma; +ship_N=regN "ngalawa" n_n ; +shoe_N=regN "kiatu" ki_i; +shop_N=regN "nduka" n_n ; +silver_N=iregN "vetha" "vetha" u_n; +sing_V=regV "ina" ; +sister_N=regN "mwiitu-a-inya" mu_a; +sit_V=regV "ikala" ; +skin_N=regN "kikonde" i_ma; +sky_N=regN "yayaya" i_ma ; +sleep_V=regV "koma" ; +smell_V=regV "nyunga" ; +smoke_N=regN "syuki" i_ma; +snake_N=regN "nzoka" n_n ; +snow_N=iregN "ia""maia" i_ma; +sock_N=regN "sokisi" n_n; +song_N=iregN "wathi" "mbathi" u_n; +speak_V2=regV "neena" ; +spit_V=regV "tw'ila" ; +split_V2=regV "tilany'a" ; +squeeze_V2=regV "mitua" ; +stab_V2=regV "tonya" ; +stand_V=regV "ungama" ; +star_N=regN "ndata" n_n; +steel_N=regN "kiaa" ki_i; +stick_N=regN "munzyu" mu_mi ; +stone_N=regN "ivia" i_ma; +stop_V=regV "ungama" ; +stove_N=iregN "iko" "maiko" i_ma; +student_N=regN "musomi" mu_a ; +suck_V2=regV "mumunya" ; +sun_N=regN "syua" i_ma; +swell_V=regV "imba" ; +swim_V=regV "thambia" ; +switch8off_V2=regV "vosya" ; +switch8on_V2=regV "kwatya" ; +table_N=regN "mesa" n_n ; +tail_N=regN "mwithe" mu_mi ; +talk_V3=regV "neena" ; +teacher_N=regN "mumanyisya" mu_a ; +television_N=regN "televesini" n_n ; +think_V=regV "suania" ; +tie_V2=regV "ova" ; +tongue_N=regN "uimi" u_ma ; +train_N=iregN "ngali ya mwaki" "ngali sya mwaki" n_n ; +travel_V=regV "thi" ; +turn_V=regV "alyula" ; +understand_V2=regV "elewa" ; +university_N=regN "nyunivasiti" n_n; +village_N=regN "ndua" n_n ; +vomit_V=regV "tavika" ; +wait_V2=regV "eteela" ; +walk_V=regV "tembea" ; +war_N=regN "kau" u_ma; +wash_V2=regV"thamba" ; +watch_V2=regV "syaiisya" ; +water_N=regN "kiwu" ki_i; +wide_A=regA "aamu" ; +win_V2=regV "shinda" ; +wind_N=regN "kiseve" ki_i; +window_N=regN "mbuthi" n_n; +wine_N=regN "mbinyu" n_n ; +wing_N=regN "uthwau" u_ma; +leg_N = regN "kuu" ku_ma; +wipe_V2=regV "vangula" ; +wonder_VQ=regV "senga" ; +wood_N=iregN "uku" "nguku" u_n; +write_V2=regV "andika" ; +year_N=regN "mwaka" mu_mi; + hill_N =regN "kiima" ki_i; + king_N= regN "musumbi" mu_a; + brother_N2 = mkN2 (mkN "mwana inya" mu_a) ; + father_N2 = mkN2 (mkN "nau" "nau"mu_a) mkPrepof ; + mother_N2 = mkN2 (mkN "mwaitu" mu_a) mkPrepof; + person_N = regN "mundu" mu_a ; + woman_N =regN "kiveti" ki_i ; + house_N = regN "nyumba" n_n ; + tree_N = regN "muti" mu_mi ; + big_A = regA "nene" ; + beautiful_A = regA "nake" ; + black_A = regA "iu" ; + + broad_A = regA "amu" ; + brown_A = cregA " kaki" ; + clean_A = regA "theu" ; + clever_A = regA "ui" ; + cold_A = regA "thithu" ; + correct_A = regA "seo" ; + dry_A = regA "nyau" ; + full_A = regA "usuu" ; + good_A = regA "seo" ; + heavy_A = regA "ito" ; + important_A = regA "vata" ; + long_A = regA "asa" ; + narrow_A = regA "theke" ; + near_A = regA "kuvi" ; + new_A = regA "sau" ; + old_A = regA "kuu" ; + red_A = regA "tune" ; + rotten_A = regA "oou" ; + round_A = regA "thyululu" ; + sharp_A = regA "ui" ; + short_A = regA "kuvi"; + smooth_A = regA "mbinyu" ; + straight_A = regA "laini" ; + stupid_A = regA "tumanu" ; + thick_A = regA "amu" ; + thin_A = regA "theke" ; + ugly_A = regA "thuku" ; + warm_A = regA "utea" ; + wet_A = regA "iu" ; + white_A = regA "eu" ; + yellow_A = cregA "nyelo" ; + young_A = regA "nini"; + + small_A = regA "nini" ; + shirt_N= iregN "sati" "sati" n_n; + cow_N = regN "ngombe" n_n ; + doctor_N = regN "muiiti" mu_a ; + dog_N = regN "ngiti" n_n ; + door_N = regN " muomo" mu_mi ; + enemy_N = regN "muthiny'a" mu_a ; + fish_N = regN "ikuyu" i_ma ; + friend_N = regN "munyanya" mu_a ; + garden_N = regN "muunda" mu_mi ; + girl_N = regN "mwiitu" mu_a ; +lamp_N = iregN "taa" "taa" n_n ; + man_N = regN " muume" mu_a ; +eye_N = regN "iitho" i_ma ; +tooth_N = regN "ieo" i_ma ; +wife_N = regN "muka" mu_a ; +left_Ord = mkOrd "kwoko kwa aka" ; + right_Ord = mkOrd "lungalu" |mkOrd "ailu" ; + grammar_N = regN "ngulama" n_n ; + language_N = regN "kithiomo" ki_i ; + rule_N = regN "mwiao" mu_mi ; + married_A2 = mkA2 (regA "twae") "ni" ; + airplane_N = regN "ndeke" n_n; + alas_Interj = ss "asi" ; + answer_V2S = regV "sungia" ; + apartment_N = regN "nyumba" n_n; + apple_N = regN "avuu" i_ma ; + art_N = regN "ithaa" i_ma ; + ask_V2Q = regV "kulya" ; + baby_N = regN "kana" ka_tu; + bad_A = regA "thuku" ; + bank_N = regN "vengi" n_n ; + beer_N = regN "nzovi" n_n ; + big_A = regA "nene" ; + bike_N = regN "kisululu" ki_i ; + bird_N = regN "nyunyi" n_n; + black_A = regA "iu" ; + blue_A = cregA "waiyu" ; + boat_N = regN "italu" i_ma; + book_N = regN "ivuku" i_ma ; + boot_N = regN "mbuti" n_n ; + boss_N = regN "munene" mu_a ; + boy_N = regN "kivisi" ki_i ; + bread_N = regN "mukate" mu_mi ; + butter_N = regN "kimoesyo" ki_i ; + buy_V2 = regV "ua" ; + camera_N = regN "kamela" n_n; + cap_N = regN "kakovila" ka_tu ; + car_N = regN "mutokaa" mu_mi ; + carpet_N = regN "mukeka" mu_mi ; + cat_N = regN "mbaka" n_n ; + ceiling_N = regN "kisumba" ki_i ; + chair_N = regN "kivila" ki_i ; + cheese_N = regN "iuta" i_ma ; + child_N = iregN "mwana" "syana" mu_a ; + church_N = regN "ikanisa" i_ma; + city_N = regN "musyi" mu_mi; + clean_A = regA "theu" ; + clever_A = regA "ui" ; + coat_N = regN "ikoti" i_ma; + computer_N = regN "kombyuta" n_n ; + country_N = regN "nthi" n_n; + cousin_N = regN "mwendw'asa" mu_a | regN "mwana a mwendya" mu_a ; + dirty_A = iregA "kiko" "kiko" ; + dog_N = regN "ngiti" n_n; + empty_A = regA "thei" ; + factory_N = regN "kithii" ki_i ; + fish_N = regN "ikuyu" i_ma ; + floor_N = iregN "nginyo" "nginyo" n_n ; + fridge_N = regN "frinji" n_n ; + friend_N = regN "munyanya"mu_a ; + fruit_N = regN "itunda" i_ma ; + --fun_AV = mkAV (regA "fun") ; + garden_N = regN "muunda" mu_mi; + girl_N = regN "mwiitu" mu_a ; + glove_N = regN "ngloovu" n_n; + gold_N = regN "thaavu" n_n; + good_A = regA "seo" ; + green_A = cregA "matu" ; + harbour_N = regN "kilindi" ki_i ; + hat_N = regN "ngovia" n_n; + hill_N = regN "kiima" ki_i; + horse_N = regN "mbalasi" n_n ; + hot_A = regA "latiku" ; + house_N = regN "nyumba" n_n; + important_A = regA "vata" ;--check + iron_N = regN "kyuma" ki_i ; + lake_N = regN "ia" i_ma; + teach_V2 = regV "somethya"; + throw_V2 = regV "isya"; + + +-- added 4/6/2007 + paris_PN = regPN "Paris" va_ku ; -- this is alreay name of place avoid kwa + john_PN = regPN "Yoana" mu_a ; + question_N = regN "Ikulyo" i_ma ; + ready_A = regA "ready" ; + reason_N = regN "kitumi" ki_i ; + today_Adv = mkAdv "umuthi" ; + uncertain_A = regA "uncertain" ; + distance_N3 = mkN3 (mkN "muendo" mu_mi ) fromP toP ; + +oper + aboutP = mkPrep "undu wa" ; + atP = mkPrep "vala ve" ; + forP = mkPrep "for" ; + fromP = mkPrep "kuma" ; + inP = mkPrep "thini" ; + onP = mkPrep "iulu" ; + toP = mkPrep "kuvika" ; + -- ofp = possess_Prep.sp ; +} ; diff --git a/src/kikamba/MorphoKam.gf b/src/kikamba/MorphoKam.gf new file mode 100644 index 000000000..e68bc9cb0 --- /dev/null +++ b/src/kikamba/MorphoKam.gf @@ -0,0 +1,434 @@ +--# -path=.:../../prelude + +--Kikamba Resource Morphology +-- +-- Benson Kituku 2017 -- 2018 + +resource MorphoKam = CommonBantu ,ResKam ** open Prelude, Predef +in { + + flags optimize=all ; + + oper + mkDet: (i, mine : Str) -> Number -> {s : DetForm => Str ; n : Number} = + \i,mine, m -> + { s = table { + Sub => i; + Obj g => Detprefix g + mine} ; + n = m } ; + + + Detsomesgprefix : Gender -> Str = \g -> + case of { + | | | => "u" ; + => "yi" ; + => "ki" ; + => "ka" ; + => "ku" ; + => "va" ; + => "i" + } ; + +Detsomeplprefix : Gender -> Str = \g -> + case of { + | | | => "a" ; + => "i" ; + => "i" ; + => "tu" ; + => "ku" ; + | => "i" + + } ; + + + + mkNum : Str -> Str -> Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, twelve, twenty, second -> + {s = table { + unit => table {NCard =>\\g => Cardprefix g + two ; + NOrd => \\g => Ordprefix g ++ second} ; + teen => table {NCard =>\\g =>"ikumi na" ++ twelve ; + NOrd => \\g => Ordprefix g ++ "ikumi na" ++ twelve} ; + ten => table {NCard =>\\g =>"miongo " ++ twelve ; + NOrd => \\g => Ordprefix g ++ "miongo" ++ twelve}; + hund => table {NCard =>\\g =>"maana " ++ twenty ; + NOrd => \\g => Ordprefix g ++ "maana" ++ twenty} + } + } ; + + mkNumn : Str -> Str -> Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, twelve, twenty, second -> + {s = table { + unit => table {NCard =>\\g => Cardtwoprefix g + two ; + NOrd => \\g => Ordprefix g ++ second} ; + teen => table {NCard =>\\g =>"ikumi na" ++ twelve ; + NOrd => \\g => Ordprefix g ++ "ikumi na" ++ twelve} ; + ten => table {NCard =>\\g =>"miongo " ++ twelve ; + NOrd => \\g => Ordprefix g ++ "miongo" ++ twelve}; + hund => table {NCard =>\\g =>"maana " ++ twenty ; + NOrd => \\g => Ordprefix g ++ "maana" ++ twenty} + } + } ; + + mkNume : Str -> Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, twenty, second -> + {s = table { + unit => table {NCard =>\\g => Cardoneprefix g + two ; + NOrd => \\g => Ordprefix g ++ second} ; + teen => table {NCard =>\\g =>"ikumi na" ++ Cardoneprefix g + two ; + NOrd => \\g => Ordprefix g ++ "ikumi na" ++ Cardoneprefix g + two} ; + ten => table {NCard =>\\g =>"ikumi" ; + NOrd => \\g => Ordprefix g ++ "ikumi"}; + hund => table {NCard =>\\g =>"yiana " ++ twenty ; + NOrd => \\g => Ordprefix g ++ "yiana" ++ twenty} + } + } ; + + regNum : Str -> {s : DForm => CardOrd => Gender => Str} = + \six -> {s = table { + unit => table {NCard =>\\g => six ; + NOrd => \\g => Ordprefix g ++ six} ; + teen => table {NCard =>\\g =>"ikumi na" ++ six ; + NOrd => \\g => Ordprefix g ++ "ikumi na" ++ six} ; + ten => table {NCard =>\\g =>"miongo " ++ six ; + NOrd => \\g => Ordprefix g ++ "miongo" ++ six}; + hund => table {NCard =>\\g =>"maana " ++ six ; + NOrd => \\g => Ordprefix g ++ "maana" ++ six} + } } ; + + + regCardOrd : Str -> {s : CardOrd => Gender => Str} = \ten -> + {s = table {NCard => \\g => ten ; + NOrd =>\\g => Ordprefix g ++ ten } } ; + + regCardone : Str -> Str -> {s : CardOrd => Gender => Str} = \ten,one -> + {s = table {NCard => \\g => ten ++ Cardoneprefix g + one ; + NOrd =>\\g => Ordprefix g ++ ten ++ Cardoneprefix g + one } } ; + + mkCard : CardOrd -> Str -> Gender => Str = \o,ten -> + (regCardOrd ten).s ! o ; + + + regN : Str ->Gender -> Noun = \w, g -> let wpl = case g of { + G1=>case w of { + "mwa" + _ => Predef.drop 2 w ; + "mwi" + _ => "e" + Predef.drop 3 w ; + _ => PrefixPlNom G1 + Predef.drop 2 w }; + + G2=>case w of { + "mw" + _ => "my" + Predef.drop 2 w ; + _ => PrefixPlNom G2 + Predef.drop 2 w }; + G3 => PrefixPlNom G3 + Predef.drop 1 w; + G4=> case w of { + "ky" + _ => "sy" + Predef.drop 2 w ; + _ => PrefixPlNom G4 + Predef.drop 2 w }; + G5 => PrefixPlNom G5 + Predef.drop 2 w; + G6 => PrefixPlNom G6 + Predef.drop 2 w; + G8 => PrefixPlNom G8 + w; + G9 => PrefixPlNom G9 + w ; + G10 => PrefixPlNom G10 + Predef.drop 2 w; + G7 => w }; + in iregN w wpl g ; + + + + + + iregN :Str-> Str ->Gender -> Noun= \man,men,g -> { -- for irregular noun + s = table{Sg => table{Nom => man ; + Loc=> man + "ni" | men + "ni" }; + Pl => table{Nom => men ; Loc=> ""}} ; + g = g + } ; + regA:Str -> {s : AForm => Str} = \seo -> {s = table { + AAdj G1 Sg=>case Predef.take 1 seo of { + "a"|"e"|"i"|"o" => "mw" + seo; + "u" => "m" + seo; + _ => ConsonantAdjprefix G1 Sg + seo }; + AAdj G1 Pl =>case Predef.take 1 seo of { + "u" => "o" + Predef.drop 1 seo; + _ => ConsonantAdjprefix G1 Pl + seo }; + + AAdj G2 Sg=>case Predef.take 1 seo of { + "i" => "mw" + seo; + "a" => "my" + seo; + "u" => "m" + seo; + _ => ConsonantAdjprefix G2 Sg + seo }; + AAdj G2 Pl =>case Predef.take 1 seo of { + "u" => "my" + seo; + "i" => "m" + seo; + _ => ConsonantAdjprefix G2 Pl + seo }; + + AAdj G3 Sg=>case Predef.take 1 seo of { + "i"|"u" => "y" + seo; + "a" => "yi" + seo; + _ => ConsonantAdjprefix G3 Sg + seo }; + AAdj G3 Pl =>case Predef.take 1 seo of { + "u" => "mo"+ Predef.drop 1 seo; + _ => ConsonantAdjprefix G3 Pl + seo }; + + + AAdj G4 Sg=>case Predef.take 1 seo of { + "i" => "k" + seo; + "u" |"a" => "ky" + seo; + _ => ConsonantAdjprefix G4 Sg + seo }; + AAdj G4 Pl =>case Predef.take 1 seo of { + "u" => "mb"+ seo; + "i" => "sy" + seo; + "a" => "nd" + seo; + _ => ConsonantAdjprefix G4 Pl + seo }; + AAdj G5 Sg=>case Predef.take 1 seo of { + "u" => "ko" + Predef.drop 1 seo; + _ => ConsonantAdjprefix G5 Sg + seo }; + AAdj G5 Pl =>case Predef.take 1 seo of { + "u" => "t"+ seo; + "a" | "i" => "tw" + seo; + _ => ConsonantAdjprefix G5 Pl + seo }; + + AAdj G6 Sg=>case Predef.take 1 seo of { + "u" => "vo" + Predef.drop 1 seo; + _ => ConsonantAdjprefix G6 Sg + seo }; + AAdj G6 Pl =>case Predef.take 1 seo of { + "u" => "k" + seo; + "i"|"a" => "kw" + seo; + _ => ConsonantAdjprefix G6 Pl + seo }; + + AAdj G7 n =>case Predef.take 1 seo of { + "s" |"i" => "nz" + seo; + "v" | "u" => "mb" + seo; + "k" => "ng" + seo; + "t" | "a" => "nd" + Predef.drop 1 seo; + _ => ConsonantAdjprefix G7 n + seo }; + + AAdj G9 Pl =>case Predef.take 1 seo of { + "s" |"i" => "nz" + seo; + "v" | "u" => "mb" + seo; + "k" => "ng" + seo; + "t" | "a" => "nd" + Predef.drop 1 seo; + _ => ConsonantAdjprefix G9 Pl + seo }; + AAdj G10 Sg =>case Predef.take 1 seo of { + "u" => "k" + seo; + "i"|"a" => "kw" + seo; + _ => ConsonantAdjprefix G10 Sg + seo }; + + AAdj g Pl =>case Predef.take 1 seo of { + "u" => "mo" + Predef.drop 1 seo; + _ => ConsonantAdjprefix g Pl + seo }; + AAdj g Sg=>case Predef.take 1 seo of { + "i" => "mw" + seo; + "a" => "my" + seo; + "u" => "m" + seo; + _ => ConsonantAdjprefix g Sg + seo }; + AComp G1 Sg=>let af : Str = case Predef.take 1 seo of { + "a"|"e"|"i"|"o" => "mw" + seo; + "u" => "m" + seo; + _ => ConsonantAdjprefix G1 Sg + seo }; + in init af + "ang" + last af; + AComp G1 Pl =>let af : Str = case Predef.take 1 seo of { + "u" => "o" + Predef.drop 1 seo; + _ => ConsonantAdjprefix G1 Pl + seo } + in init af + "ang" + last af; + + + AComp G2 Sg=>let af : Str = case Predef.take 1 seo of { + "i" => "mw" + seo; + "a" => "my" + seo; + "u" => "m" + seo; + _ => ConsonantAdjprefix G2 Sg + seo }; + in init af + "ang" + last af; + AComp G2 Pl =>let af : Str = case Predef.take 1 seo of { + "u" => "my" + seo; + "i" => "m" + seo; + _ => ConsonantAdjprefix G2 Pl + seo } + in init af + "ang" + last af; + + AComp G3 Sg=>let af : Str = case Predef.take 1 seo of { + "i"|"u" => "y" + seo; + "a" => "yi" + seo; + _ => ConsonantAdjprefix G3 Sg + seo }; + in init af + "ang" + last af; + AComp G3 Pl =>let af : Str = case Predef.take 1 seo of { + "u" => "mo"+ Predef.drop 1 seo; + _ => ConsonantAdjprefix G3 Pl + seo } + in init af + "ang" + last af; + + AComp G4 Sg=>let af : Str = case Predef.take 1 seo of { + "i" => "k" + seo; + "u" => "ky" + seo; + _ => ConsonantAdjprefix G4 Sg + seo }; + in init af + "ang" + last af; + AComp G4 Pl =>let af : Str = case Predef.take 1 seo of { + "u" => "mb"+ seo; + "i" => "sy" + seo; + "a" => "nd" + seo; + _ => ConsonantAdjprefix G4 Pl + seo } + in init af + "ang" + last af; + AComp G5 Sg=>let af : Str = case Predef.take 1 seo of { + "u" => "ko" + Predef.drop 1 seo; + _ => ConsonantAdjprefix G5 Sg + seo }; + in init af + "ang" + last af; + AComp G5 Pl =>let af : Str = case Predef.take 1 seo of { + "u" => "t"+ seo; + "a" | "i" => "tw" + seo; + _ => ConsonantAdjprefix G5 Pl + seo } + in init af + "ang" + last af; + + AComp G6 Sg=>let af : Str = case Predef.take 1 seo of { + "u" => "vo" + Predef.drop 1 seo; + _ => ConsonantAdjprefix G6 Sg + seo }; + in init af + "ang" + last af; + AComp G6 Pl =>let af : Str = case Predef.take 1 seo of { + "u" => "k" + seo; + "i"|"a" => "kw" + seo; + _ => ConsonantAdjprefix G6 Pl + seo } + in init af + "ang" + last af; + + AComp G7 n =>let af : Str = case Predef.take 1 seo of { + "s" |"i" => "nz" + seo; + "v" | "u" => "mb" + seo; + "k" => "ng" + seo; + "t" | "a" => "nd" + seo; + _ => ConsonantAdjprefix G7 n + seo }; + in init af + "ang" + last af; + +AComp G9 Pl =>let af : Str = case Predef.take 1 seo of { + "s" |"i" => "nz" + seo; + "v" | "u" => "mb" + seo; + "k" => "ng" + seo; + "t" | "a" => "nd" + seo; + _ => ConsonantAdjprefix G9 Pl + seo }; + in init af + "ang" + last af; + AComp G10 Sg =>let af : Str = case Predef.take 1 seo of { + "u" => "k" + seo; + "i"|"a" => "kw" + seo; + _ => ConsonantAdjprefix G10 Sg + seo } + in init af + "ang" + last af; + AComp g Pl => let af : Str = case Predef.take 1 seo of { + "u" => "mo" + Predef.drop 1 seo; + _ => ConsonantAdjprefix g Pl + seo } + in init af + "ang" + last af; + + AComp g Sg=>let af : Str = case Predef.take 1 seo of { + "i" => "mw" + seo; + "a" => "my" + seo; + "u" => "m" + seo; + _ => ConsonantAdjprefix g Sg + seo }; + in init af + "ang" + last af + + } }; + + + +iregA : Str-> Str -> {s : AForm => Str} = \seo,seoo -> { + s = table { + AAdj g Sg => seo; + AAdj g Pl=> seoo ; + AComp g Sg => init seo + "ang" + last seo; + AComp g Pl => init seoo + "ang" + last seoo} + + } ; + +--regular expression for adjective colours + cregA : Str-> {s : AForm => Str} = \seo -> { + s = table { + AAdj g Sg => ProunSgprefix g + "a" ++"langi" ++"wa" ++ seo; + AAdj g Pl=> ProunPlprefix g + "a" ++"langi" ++"wa" ++ seo; + AComp g n => ""} } ; + +regV : Str -> Verb = + \vika -> { + s = table{ True => table{ + VInf => vika; + VPres g n p => Verbprefix g n p + vika; + VPast g n p => Verbprefix g n p + init vika + "ie" ; + VFut g n p => Verbfutureprefix g n p + vika + } ; + False =>table { + VInf => "ndi" + vika; + VPres g n p => neg (Ag g n p) False Pres + "na" + vika ; + VPast g n p => neg (Ag g n p) False Past + "ne" + vika ; + VFut g n p => neg (Ag g n p) False Fut + "ka" + vika + } + }; + }; + + neg : Agr -> Bool ->Tense -> Str = \a,b,t -> let + g = getGender a; + n=getNumber a; + p=getPerson a + in case b of {True => [] ; False => negprefix g n t p} ; + + negprefix : Gender -> Number -> Tense -> Person -> Str =\g,n,t,p-> case of { + => "ndi"; + => "ndu"; + => "ndu"; + => "twi"; + => "mwi"; + => "mai"; + => "ndu"; + => "i"; + => "i"; + => "mai"; + => "ki"; + => "i"; + => "kai"; + => "tui"; + => "vai"; + => "kui"; + => "i"; + <_,_,_,_> => "syi" + +}; + + + + + + + Verbprefix : Gender -> Number -> Person -> Str = \g, n, p -> + case of { + => "na" ; + => "wa" ; + => "wa" ; + => "twa" ; + => "mwa" ; + => "ma" ; + => "wa" ; + => "ya" ; + => "kya" ; + => "sya" ; + => "ya" ; + => "ma" ; + => "ka" ; + => "twa" ; + => "va" ; + => "kwa" ; + <_,Sg,_> => "ya" ; + <_,Pl,_> => "sya" + } ; + + Verbfutureprefix : Gender -> Number -> Person -> Str = \g, n, p -> + case of { + => "nga" ; + => "uka" ; + => "uka" ; + => "tuka" ; + => "muka" ; + => "maka" ; + => "uka" ; + => "ika" ; + => "kika" ; + => "ika" ; + => "ika" ; + => "maka" ; + => "kaka" ; + => "tuka" ; + => "vaka" ; + => "kuka" ; + <_,Sg,_> => "ika" ; + <_,Pl,_> => "ika" + } ; +} + + + diff --git a/src/kikamba/NounKam.gf b/src/kikamba/NounKam.gf new file mode 100644 index 000000000..5221c50d3 --- /dev/null +++ b/src/kikamba/NounKam.gf @@ -0,0 +1,2 @@ +concrete NounKam of Noun = CatKam ** + NounBantu with (Structural = StructuralKam), (ResBantu = ResKam) ; diff --git a/src/kikamba/NumeralKam.gf b/src/kikamba/NumeralKam.gf new file mode 100644 index 000000000..d66ae9192 --- /dev/null +++ b/src/kikamba/NumeralKam.gf @@ -0,0 +1,85 @@ +concrete NumeralKam of Numeral = CatKam [Numeral,Digits] ** open Prelude,CommonBantu,DiffKam, MorphoKam in { + +lincat + Digit = {s : DForm => CardOrd => Gender => Str} ; + Sub10 = {s : DForm => CardOrd => Gender => Str ; n : Number} ; + Sub100 = {s : CardOrd => Gender => Str ; n : Number} ; + Sub1000 = {s : CardOrd => Gender => Str ; n : Number} ; + Sub1000000 = {s : CardOrd => Gender => Str ; n : Number} ; + +lin num x = x ; +lin n2 = mkNumn "li" "ili" "eli" "keli" ; +lin n3 = mkNum "tatu" "itatu" " atatu" "katatu" ; +lin n4 = mkNum "nya" "ina" "ana" "kana" ; +lin n5 = mkNum "tano" "itano" "atano" "katano" ; +lin n6 = regNum "nthathatu" ; +lin n7 = regNum "muonza" ; +lin n8 = regNum "nyanya" ; +lin n9 = regNum "kenda" ; + +lin pot01 = mkNume "mwe" " yimwe" "mbee" ** {n = Sg} ; +lin pot0 d = d ** {n = Pl} ; +lin pot110 = regCardOrd "ikumi" ** {n = Pl} ; +lin pot111 = regCardone "ikumi na" "mwe" ** {n = Pl} ; +lin pot1to19 d = {s = d.s ! teen} ** {n = Pl} ; +lin pot0as1 n = {s = n.s ! unit} ** {n = n.n} ; +lin pot1 d = {s = d.s ! ten} ** {n = Pl} ; +lin pot1plus d e = { s = table { + NCard => \\g => d.s ! ten ! NCard ! g ++ "na"++ e.s ! unit ! NCard ! g ; + NOrd => \\g =>Ordprefix g++ d.s ! ten ! NCard ! g ++ "na"++ e.s ! unit ! NCard ! g } ; + n = Pl} ; +lin pot1as2 n = n ; +lin pot2 d = {s = d.s ! hund} ** {n = Pl} ; +lin pot2plus d e = {s = table { + NCard => \\g => d.s ! hund ! NCard ! g ++ "na" ++ e.s !NCard ! g ; + NOrd => \\g =>Ordprefix g++ d.s ! hund ! NCard ! g ++ "na" ++ e.s ! NCard ! g } ; + n = Pl} ; + lin pot2as3 n = n ; +lin pot3 n = { s = table { + NCard => \\g => mkCard NCard "ngili" ! g ++ n.s ! NCard ! g ; + NOrd => \\g =>Ordprefix g++ mkCard NCard "ngili" ! g ++ n.s ! NCard ! g } ; + n = Pl} ; +lin pot3plus n m = { s = table { + NCard => \\g => "ngili" ++ n.s ! NCard !g ++ m.s ! NCard ! g ; + NOrd => \\g =>Ordprefix g++ "ngili" ++ n.s ! NCard !g ++ m.s ! NCard ! g} ; + n = Pl} ; + +-- numerals as sequences of digits0' + + lincat + Dig = TDigit ; + + lin + IDig d = d ; + + IIDig d i = { + s = table {NCard => \\g => d.s! NCard ! g ++ BIND ++ i.s ! NCard ! g ; + NOrd => \\g => d.s! NOrd! g ++ BIND ++ i.s !NCard! g } ; + n = Pl + } ; + + D_0 = mkDig "0" ; + D_1 = mk3Dig "1" "1" Sg ; + D_2 = mkDig "2" ; + D_3 = mkDig "3" ; + D_4 = mkDig "4" ; + D_5 = mkDig "5" ; + D_6 = mkDig "6" ; + D_7 = mkDig "7" ; + D_8 = mkDig "8" ; + D_9 = mkDig "9" ; + + oper + mk2Dig : Str -> Str -> TDigit = \c,o -> mk3Dig c o Pl ; + mkDig : Str -> TDigit = \c -> mk2Dig c (c ) ; + + mk3Dig : Str -> Str -> Number -> TDigit = \c,o,n -> { + s = table {NCard => \\g => c ; NOrd => \\g =>Ordprefix g ++ o} ; --Ordprefix g ++ + n = n} ; + + TDigit = { + n : Number ; + s : CardOrd => Gender => Str + } ; + +} diff --git a/src/kikamba/ParadigmsKam.gf b/src/kikamba/ParadigmsKam.gf new file mode 100644 index 000000000..a47bb8e07 --- /dev/null +++ b/src/kikamba/ParadigmsKam.gf @@ -0,0 +1,429 @@ +--# -path=.:../abstract:../../prelude:../common + +resource ParadigmsKam = open + (Predef=Predef), + Prelude, + MorphoKam, + ResKam, + CatKam + in { + +oper + Gender : Type ; + mu_a : Gender ; + mu_mi : Gender ; + i_ma : Gender ; + ki_i : Gender ; + ka_tu : Gender ; + va_ku : Gender ; + n_n : Gender ; + u_ma : Gender ; + u_n : Gender ; + ku_ma : Gender ; + + Number : Type ; + singular : Number ; + plural : Number ; + + + + Case : Type ; + + nominative : Case ; + locative : Case ; + npNumber : NP -> Number ; -- exctract the number of a noun phrase + + +--2 Nouns + + mkN : overload { + mkN : (flash : Str) -> Gender -> N ; --regular plural + mkN : (man,men : Str) ->Gender -> N ; -- irregular plural + mkN : Str -> N -> N + } ; + +--3 Relational nouns + mkN2 : overload { + mkN2 : N -> Prep -> N2 ; + mkN2 : N -> Str -> N2 ; + mkN2 : N -> N2 ; + mkN2 : N -> (Gender => Number => Str)-> N2 ; + } ; + +oper dfltGender : Gender = G1 ; + dfltNumber : Number = Sg ; + +-- Three-place relational nouns ("the connection from x to y") need two prepositions. + + mkN3 : N -> Prep -> Prep -> N3 ; -- e.g. connection from x to y + + + +--3 Proper names and noun phrases +-- +-- Proper names, with a regular genitive, are formed from strings. + + mkPN : overload { + + mkPN : Str ->Gender -> PN ; + +-- Sometimes a common noun can be reused as a proper name, e.g. "Bank" + + mkPN : N -> PN --% + } ; + +--3 Determiners + + mkOrd : Str -> Ord ; --% + +--2 Adjectives + + mkA : overload { + mkA : (happy : Str) -> A ; + mkA : (fat,fatter : Str) -> A ; -- irreg. + } ; + + +--3 Two-place adjectives + + mkA2 : overload { + mkA2 : A -> Prep -> A2 ; + mkA2 : A -> Str -> A2 ; + mkA2 : Str -> Prep -> A2 ; + mkA2 : Str -> Str -> A2 + } ; + + +--2 Adverbs + +-- Adverbs are not inflected. Most lexical ones have position +-- after the verb. Some can be preverbal (e.g. "always"). + + mkAdv : Str -> Adv ; -- e.g. umuthi + mkAdV : Str -> AdV ; -- e.g. lila + +-- Adverbs modifying adjectives and sentences can also be formed. + + mkAdA : Str -> AdA ; -- e.g. pi + +-- Adverbs modifying numerals + + mkAdN : Str -> AdN ; -- e.g. approximately + +--2 Prepositions + + mkPrep : overload { + mkPrep : Str -> Prep ; + mkPrep : (Gender => Number => Str) -> Prep ; + } ; + + noPrep : Prep ; -- no preposition + +--2 Conjunctions +-- + + mkConj : overload { + mkConj : Str -> Conj ; -- and (plural agreement) --% + mkConj : Str -> Number -> Conj ; -- or (agrement number given as argument) --% + mkConj : Str -> Str -> Conj ; -- both ... and (plural) --% + mkConj : Str -> Str -> Number -> Conj ; -- either ... or (agrement number given as argument) --% + } ; + +--2 Verbs +-- + +-- Verbs are constructed by the function $mkV$, which takes a varying +-- number of arguments. + + mkV : overload { + mkV : (cry : Str) -> V ; -- regular, incl. cry-cries, kiss-kisses etc + mkV : Str -> V -> V ; -- fix compound, e.g. under+take + }; + + + + +--3 Two-place verbs +-- +-- Two-place verbs need a preposition, except the special case with direct object. +-- (transitive verbs). Notice that a particle comes from the $V$.-} + + mkV2 : overload { + mkV2 : Str -> V2 ; -- kill --% + mkV2 : V -> V2 ; -- transitive, e.g. hit + mkV2 : V -> Prep -> V2 ; -- with preposiiton, e.g. believe in + mkV2 : V -> Str -> V2 ; -- believe in --% + mkV2 : Str -> Prep -> V2 ; -- believe in --% + mkV2 : Str -> Str -> V2 -- believe in --% + }; + +--3 Three-place verbs +-- +-- Three-place (ditransitive) verbs need two prepositions, of which +-- the first one or both can be absent. + + mkV3 : overload { + mkV3 : V -> V3 ; -- ditransitive, e.g. give,_,_ + mkV3 : V -> Prep -> Prep -> V3 ; -- two prepositions, e.g. speak, with, about + mkV3 : V -> Prep -> V3 ; -- give,_,to --% + mkV3 : V -> Str -> V3 ; -- give,_,to --% + mkV3 : Str -> Str -> V3 ; -- give,_,to --% + mkV3 : Str -> V3 ; -- give,_,_ --% + }; + + +--2 Other categories + +mkSubj : Str -> Subj = \s -> lin Subj {s = s} ; --% +mkInterj : Str -> Interj + = \s -> lin Interj (ss s) ; + +--. +--2 Definitions of paradigms +-- +-- The definitions should not bother the user of the API. So they are +-- hidden from the document. + + Gender = MorphoKam.Gender ; + Number = MorphoKam.Number ; + Case = MorphoKam.NPCase ; + mu_a = G1 ;--% + mu_mi = G2 ; + i_ma = G3 ; + ki_i = G4 ; + ka_tu = G5 ; + va_ku = G6 ; + n_n = G7 ; + u_ma = G8; + u_n =G9 ; + ku_ma = G10 ; + singular = Sg ; + plural = Pl ; + nominative = npNom ; + locative = npLoc ; + + npNumber np = (agrFeatures np.a).n ; + + + + regN = MorphoKam.regN ; + iregN = MorphoKam.iregN ; + + + compoundN s n = lin N {s = \\x,y => s ++ n.s ! x ! y ; g=n.g} ; + + mkPN = overload { + mkPN : Str -> Gender -> PN = regPN; + mkPN : N -> PN = nounPN + } ; + + +mkN2 = overload { + mkN2 : N -> Prep -> N2 = prepN2 ; + mkN2 : N -> Str -> N2 = \n,s -> prepN2 n (mkPrep s); + mkN2 : N -> N2 = \n -> prepN2 n (mkPrep mkPrepof ) ; + mkN2 : N -> (Number =>Gender => Str)-> N2= \n,s -> prepN2 n (mkPrep mkPrepof) ; + } ; + + prepN2 = \n,p -> lin N2 (n ** {c2 = p}) ; + regN2 = \n -> (prepN2 n (mkPrep mkPrepof )) ; + mkN3 = \n,p,q -> lin N3 (n ** {c2 = p ; c3 = q}) ; + mkPrepof : Number => Gender => Str = + table Number { Sg => table { + G3| G7 => "ya" ; + G4 => "kya" ; + G5 => "ka" ; + G6 => "va" ; + G10 => "kwa"; + _ => "wa" } ; + + Pl => table { G1|G3| G8 | G10 => "ma" ; + G4| G7 |G9 => "sya" ; + G2 => "ya" ; + G5 => "twa" ; + G6 => "kwa"} } ; + + + + +--3 Relational common noun phrases + + + cnN2 : CN -> Prep -> N2 ; + cnN3 : CN -> Prep -> Prep -> N3 ; + + + cnN2 = \n,p -> lin N2 (n ** {c2 = p}) ; + cnN3 = \n,p,q -> lin N3 (n ** {c2 = p ; c3 = q}) ; + + + regPN n g = lin PN {s = table {Loc => "kwa" + n ; _ => n} ; g = g} ; + + + nounPN n = lin PN {s = n.s ! singular ; g = n.g} ; + + mkOrd : Str -> Ord = \x -> lin Ord { s =\\g => x}; + + + prepA2 a p = lin A2 (a ** {c2 = p.s!Sg!G1}) ; + + mkAdv x = lin Adv (ss x) ; + mkAdV x = lin AdV (ss x) ; + mkAdA x = lin AdA (ss x) ; + mkAdN x = lin AdN (ss x) ; + + mkPrep = overload { + mkPrep : Str -> Prep = \str -> lin Prep {s = \\n,g => str } ; + mkPrep : (Number => Gender => Str) -> Prep = \t ->lin Prep {s = t} ; + } ; + + noPrep = mkPrep [] ; + {-} mkPrep : Str -> Str -> Prep = \p,q -> lin Prep + {s = table{Sg => table{G1 => p; _=> "" }; + Pl => table{G1 => q; _=> ""}}} ; + prepV2 : V -> Prep -> V2 ; + prepV2 = \v,p -> lin V2 (v ** {c2 = p.s!Sg!G1}) ; + dirV2 : V -> V2 = \v -> prepV2 v noPrep ; + + prepPrepV3 v p q = lin V3 (v ** {c2 = p ; c3 = q}) ; + dirV3 v p = prepPrepV3 v noPrep p ; + dirdirV3 v = dirV3 v noPrep ; + + + mkA2V : A -> Prep -> Prep -> A2V; + A2S, A2V : Type = A2 ; + mkA2V v p q = mkA2 v p ** {s3 = q.p2 ; c3 = q.p1 ; lock_A2V = <>} ; + + + mkAV v = v ** { lock_AV = <>} ; + mkAV : A -> AV ; + AS, AV : Type = A ; + + mkAS : A -> AS ; + mkAS v = v ** {lock_AS = <>} ; + + mkVS : V -> VS ; + mkVS v = v ** { lock_VS = <>} ; + + mkVQ : V -> VQ ; + mkVQ v = v ** {lock_VQ = <>} ; + + + -- mkVV : V -> VV ; + -- mkVV v = v ** { lock_VV = <>} ; + + mkVA : V -> VA ; + mkVA v = v ** {lock_VA = <>} ; + + mkV2V : V -> Prep -> Prep -> V2V ; + mkV2V v p q = prepPrepV3 v p q ** {lock_V2V = <>} ; + + mkV2S : V -> Prep -> V2S ; + mkV2S v p = prepV2 v p ** { lock_V2S = <>} ; + + mkV2Q : V -> Prep -> V2Q ; + mkV2Q v p = prepV2 v p ** {lock_V2Q = <>} ; + + mkV2A : V -> Prep -> Prep -> V2A ; + mkV2A v p q = prepPrepV3 v p q ** {lock_V2A = <>} ; + + + mkV0 : V -> V0 ; + V0 : Type ; + V0 : Type = V; + mkV0 v = v ** {lock_V0 = <>} ; +-} +-- pre-overload API and overload definitions + + -- regN : Str ->Gender -> N ; + --iregN : (man,men : Str) ->Gender -> N ; + compoundN : Str -> N -> N ; + + mkN = overload { + mkN : Str ->Gender -> N = \n, g -> lin N (regN n g ); + mkN : (man,men : Str) ->Gender -> N = \s,p,g -> lin N ( iregN s p g) ; + } ; + + + prepN2 : N -> Prep -> N2 ; + +-- The most common preposition is "of", and the following is a +-- shortcut for regular relational nouns with "of". + + regN2 : N -> N2 ; + + + + + regA : Str -> A = \s -> lin A (MorphoKam.regA s) ; + cregA : Str -> A = \s -> lin A (MorphoKam.cregA s) ; + iregA : (fat,fatter : Str) -> A =\a,b -> lin A (MorphoKam.iregA a b); + + mkA = overload { + mkA : Str -> A = \a -> lin A (regA a |cregA a); + mkA : (fat,fatter : Str) -> A =\a,b -> lin A (iregA a b ); + + } ; + + prepA2 : A -> Prep -> A2 ; + + mkA2 = overload { + mkA2 : A -> Prep -> A2 = prepA2 ; + mkA2 : A -> Str -> A2 = \a,p -> prepA2 a (mkPrep p) ; + mkA2 : Str -> Prep -> A2 = \a,p -> prepA2 (regA a) p; + mkA2 : Str -> Str -> A2 = \a,p -> prepA2 (regA a) (mkPrep p); + } ; + + + regV=MorphoKam.regV ; +{-} + mkV = overload { + mkV : Str -> V =\v ->lin V(regV v) ; + mkV : Str -> V -> V = prefixV + }; + + + prefixV : Str -> V -> V = \p,v -> lin V { s = \\b,vform => p + v.s! b ! vform } ; + mkV2 = overload { + mkV2 : V -> V2 = dirV2 ; + mkV2 : Str -> V2 = \s -> dirV2 (regV s) ; + mkV2 : V -> Prep -> V2 = prepV2; + mkV2 : V -> Str -> V2 = \v,p -> prepV2 v (mkPrep p) ; + mkV2 : Str -> Prep -> V2 = \v,p -> prepV2 (regV v) p ; + mkV2 : Str -> Str -> V2 = \v,p -> prepV2 (regV v) (mkPrep p) + }; + + prepPrepV3 : V -> Prep -> Prep -> V3 ; + dirV3 : V -> Prep -> V3 ; + dirdirV3 : V -> V3 ; + + mkV3 = overload { + mkV3 : V -> Prep -> Prep -> V3 = prepPrepV3 ; + mkV3 : V -> Prep -> V3 = dirV3 ; + mkV3 : V -> Str -> V3 = \v,s -> dirV3 v (mkPrep s); + mkV3 : Str -> Str -> V3 = \v,s -> dirV3 (regV v) (mkPrep s); + mkV3 : V -> V3 = dirdirV3 ; + mkV3 : Str -> V3 = \v -> dirdirV3 (regV v) ; + } ; +-} + mkConj = overload { + mkConj : Str -> Conj = \y -> mk2Conj [] y plural ; + mkConj : Str -> Number -> Conj = \y,n -> mk2Conj [] y n ; + mkConj : Str -> Str -> Conj = \x,y -> mk2Conj x y plural ; + mkConj : Str -> Str -> Number -> Conj = mk2Conj ; + } ; + + mk2Conj : Str -> Str -> Number -> Conj = \x,y,n -> + lin Conj (sd2 x y ** {n = n}) ; + + + + + regPN : Str ->Gender -> PN ; + + + nounPN : N -> PN ; + + + +} diff --git a/src/kikamba/PhraseKam.gf b/src/kikamba/PhraseKam.gf new file mode 100644 index 000000000..c705839fe --- /dev/null +++ b/src/kikamba/PhraseKam.gf @@ -0,0 +1,3 @@ +concrete PhraseKam of Phrase = CatKam ** PhraseBantu with + (ResBantu = ResKam); + \ No newline at end of file diff --git a/src/kikamba/QuestionKam.gf b/src/kikamba/QuestionKam.gf new file mode 100644 index 000000000..1c87078c9 --- /dev/null +++ b/src/kikamba/QuestionKam.gf @@ -0,0 +1,2 @@ +concrete QuestionKam of Question = CatKam ** QuestionBantu with + (ResBantu = ResKam); \ No newline at end of file diff --git a/src/kikamba/RelativeKam.gf b/src/kikamba/RelativeKam.gf new file mode 100644 index 000000000..68ef8ea35 --- /dev/null +++ b/src/kikamba/RelativeKam.gf @@ -0,0 +1,2 @@ +concrete RelativeKam of Relative = CatKam ** RelativeBantu with + (ResBantu = ResKam); \ No newline at end of file diff --git a/src/kikamba/ResKam.gf b/src/kikamba/ResKam.gf new file mode 100644 index 000000000..bb222a4c4 --- /dev/null +++ b/src/kikamba/ResKam.gf @@ -0,0 +1,7 @@ +--# -path=.:../abstract:../common:../../prelude + + +instance ResKam of ResBantu = DiffKam, CommonBantu ** open Prelude in { + + +} ; diff --git a/src/kikamba/SentenceKam.gf b/src/kikamba/SentenceKam.gf new file mode 100644 index 000000000..2a04b865a --- /dev/null +++ b/src/kikamba/SentenceKam.gf @@ -0,0 +1,3 @@ +concrete SentenceKam of Sentence = CatKam ** SentenceBantu with + (ResBantu = ResKam); + diff --git a/src/kikamba/StructuralKam.gf b/src/kikamba/StructuralKam.gf new file mode 100644 index 000000000..e3ac2282a --- /dev/null +++ b/src/kikamba/StructuralKam.gf @@ -0,0 +1,231 @@ +concrete StructuralKam of Structural = CatKam ** + open MorphoKam, ParadigmsKam, + (C = ConstructX), Prelude in { + + flags optimize=all ; + + lin + above_Prep = mkPrep "iulu" ; + after_Prep = mkPrep "itina" ; + all_Predet = {s = \\g => MorphoKam.Allpredetprefix g + "onthe"} ; + almost_AdA = mkAdA "vakuvi " ; + almost_AdN = mkAdN "vakuvi " ; + although_Subj = ss "ona kau" ; + always_AdV = mkAdV "mavinda onthe" ; + and_Conj = mkConj "na" ; + because_Subj = ss "nundu" | ss "ni kwithiwa" ; + before_Prep = mkPrep "mbee" ; + behind_Prep = mkPrep "itina" ; + between_Prep = mkPrep "kati" ; + both7and_DConj = mkConj "eli" "na"; + but_PConj = ss "ndi" ; + by8agent_Prep = mkPrep "kwa" ; + by8means_Prep = mkPrep "kwa" ; + +{-} can8know_VV, can_VV = { + s = table { + VVF VInf => ["be able to"] ; + VVF VPres => "can" ; + VVF VPPart => ["been able to"] ; + VVF VPresPart => ["being able to"] ; + VVF VPast => "could" ; --# notpresent + VVPastNeg => "couldn't" ; --# notpresent + VVPresNeg => "can't" -- | "cannot" ---- shouldn't be a variant, but replace "can not" + } ; + p = [] ; + typ = VVAux + } | + { + s = table { + VVF VInf => ["be able to"] ; + VVF VPres => "can" ; + VVF VPPart => ["been able to"] ; + VVF VPresPart => ["being able to"] ; + VVF VPast => "could" ; --# notpresent + VVPastNeg => "couldn't" ; --# notpresent + VVPresNeg => "cannot" ---- shouldn't be a variant, but replace "can not" + } ; + p = [] ; + typ = VVAux + } ; -} + during_Prep = mkPrep "during" ; + either7or_DConj = mkConj "kana" singular ; + everybody_NP = regNP "kila umwe" mu_a singular ; + every_Det = mkDet "kila" [] Sg ; + everything_NP = regNP "kila kindu" ki_i singular ; + everywhere_Adv = mkAdv "kila vandu" ; + few_Det = mkDet [] "nini" Pl; + for_Prep = mkPrep nonExist ; + from_Prep = mkPrep "kuma" ; + he_Pron = mkPron "we" "ake" G1 Sg P3 ; + here_Adv = mkAdv "vaa" ; + here7to_Adv = mkAdv ["kuvika vaa"] ; + here7from_Adv = mkAdv ["kuma vaa"] ; + how_IAdv = ss "ata" | ss "nzia myau" ; + how8much_IAdv = ss "mala meana" ; + --how8many_IDet = mkDeterminer plural ["mala meana"] ; + if_Subj = ss "enthwa" ; + in8front_Prep = mkPrep ["mbee wa"] ; + i_Pron =mkPron "nyie" "akwa" G1 Sg P1 ; + in_Prep = mkPrep "in" ; + it_Pron ={ s=\\c=>"yo"; poss=\\n,g=> ""; a=Ag G4 Sg P3}; + + less_CAdv = C.mkCAdv "ninangi" "kwi" ; + much_Det, many_Det =mkDet [] "ingi" Pl; + more_CAdv = C.mkCAdv "mbeange" "kwi" ; + most_Predet = {s = \\g => MorphoKam.Mostpredetprefix g + "ingi"} ; + +{-} must_VV = { + s = table { + VVF VInf => ["have to"] ; + VVF VPres => "must" ; + VVF VPPart => ["had to"] ; + VVF VPres2Part => ["having to"] ; + VVF VPast => ["had to"] ; --# notpresent + VVPastNeg => ["hadn't to"] ; --# notpresent + VVPresNeg => "mustn't" + } ; + p = [] ; + typ = VVAux + + } ; -} +---b no_Phr = ss "no" ; + no_Utt = ss "aeee" ; + on_Prep = mkPrep "iulu wa" ; +---- one_Quant = mkDeterminer singular "one" ; -- DEPRECATED + only_Predet = {s = \\g => "tu" } ; + or_Conj = mkConj "kana" singular ; + otherwise_PConj = ss "otherwise" ; + please_Voc = ss "ame" ; + part_Prep, possess_Prep = let + questo : ParadigmsKam.Number => MorphoKam.Gender => Str = table { + Sg => \\g=> case of { + | | | => "wa"; + => "kya"; + => "ka"; + => "va"; + => "kwa"; + _ => "ya" + }; + + Pl => \\g=> case of{ + => "ya"; + => "twa"; + => "kwa"; + || => "sya"; + _ => "ma" + } + + } + in { s= questo} ; + quite_Adv = mkAdv "o muno" ; + she_Pron = mkPron "we" "ake" G1 Sg P3 ; + + so_AdA = mkAdA "so" ; + somebody_NP = regNP " o mundu " mu_a singular ; + someSg_Det = mkDet [] "mwe" Sg; + somePl_Det = mkDet [] "mwe" Pl; + something_NP = regNP "o kindu" ki_i singular ; + somewhere_Adv = mkAdv "o vandu" ; + that_Quant = let + questo : ParadigmsKam.Number => MorphoKam.Gender => Str = table { + Sg => \\g=> case of { + => "iya"; + => "yiya"; + => "kiya"; + => "kaya"; + => "kuya"; + => "vaya"; + | | => "uya" ; + _ => "iya" + }; + + Pl => \\g=> case of{ + => "iya"; + => "iya"; + => "tuya"; + => "kuya"; + | => "iya"; + _ => "aya" + } + + } + in { + s = questo ; + } ; + there_Adv = mkAdv "vau" ; + there7to_Adv = mkAdv "vau" ; + there7from_Adv = mkAdv ["kuma vau"] ; + therefore_PConj = ss "kwoou" ; + they_Pron =mkPron "mo" "oo" G1 Pl P3 ; + + this_Quant = let + questo : ParadigmsKam.Number => MorphoKam.Gender => Str = table { + Sg => \\g=> case of { + => "yii"; + => "kii"; + => "kaa"; + => "vaa"; + => "ii"; + => "kuu"; + _ => "uu" + }; + + Pl => \\g=> case of{ + => "tuu"; + => "kuu"; + | | | => "ii"; + _ => "aa" + } + } + in { + s = questo ; + } ; + through_Prep = mkPrep "kuvitila" ; + too_AdA = mkAdA "too" ; + to_Prep = mkPrep "kuvika" ; + under_Prep = mkPrep "itheo" ; + very_AdA = mkAdA "muno" ; + -- want_VV = mkVV (regV "enda") ; + we_Pron =mkPron "ithyi" "itu" G1 Pl P1 ; + + --whatPl_IP = mkIP "ata" "ata" plural ; + -- whatSg_IP = mkIP "ata" "ata" singular ; + when_IAdv = ss "when" ; + when_Subj = ss "when" ; + where_IAdv = ss "where" ; + which_IQuant = {s = \\_ => "which"} ; +---b whichPl_IDet = mkDeterminer plural ["which"] ; +---b whichSg_IDet = mkDeterminer singular ["which"] ; + -- whoPl_IP = mkIP "uu" "whom" "whose" plural ; + -- whoSg_IP = mkIP "who" "whom" "whose" singular ; + why_IAdv = ss "why" ; + without_Prep = mkPrep "nza" ; + with_Prep = mkPrep "vamwe na" ; + --yes_Phr = ss "ii" ; + yes_Utt = ss "ii" ; + youSg_Pron = mkPron "we" "aku" G1 Sg P2 ; + + youPol_Pron,youPl_Pron = mkPron "inyui" "enyu" G1 Pl P3 ; + + + + not_Predet = {s = \\g => "nongi"} ; + no_Quant = {s = \\g,n => nonExist} ; + if_then_Conj = mkConj "ethiwa" "indi" singular ; + nobody_NP = regNP "vai mundu" mu_a singular ; + nothing_NP = regNP "vathei" va_ku singular ; + + at_least_AdN = mkAdN "muvaka" ; + at_most_AdN = mkAdN "nginya" ; + + except_Prep = mkPrep "ate o" ; + + as_CAdv = C.mkCAdv "nundu" "ta" ; + + -- have_V2 = dirV2 (mk5V "have" "has" "had" "had" "having") ; + that_Subj = ss "ati" ; + lin language_title_Utt = ss "kikamba" ; + +} + diff --git a/src/kikamba/VerbKam.gf b/src/kikamba/VerbKam.gf new file mode 100644 index 000000000..304c3b421 --- /dev/null +++ b/src/kikamba/VerbKam.gf @@ -0,0 +1,2 @@ +concrete VerbKam of Verb = CatKam ** VerbBantu with + (ResBantu = ResKam); diff --git a/src/kiswahili/AdjectiveKis.gf b/src/kiswahili/AdjectiveKis.gf new file mode 100644 index 000000000..98b3d4d9d --- /dev/null +++ b/src/kiswahili/AdjectiveKis.gf @@ -0,0 +1,16 @@ +concrete AdjectiveKis of Adjective = CatKis **AdjectiveBantu-[ComparA,UseComparA,ComplA2] +with (ResBantu = ResKis)** open DiffKis in +{ +flags coding=utf8; + lin + ComparA a np = { + s = \\g,n => a.s !AAdj g n ++ conjThan ++ np.s ! npNom ; + isPre = False} ; + + UseComparA a = {s = \\g,n=> a.s !AAdj g n;isPre = True}; + + ComplA2 a np = { + s = \\g,n => a.s !AAdj g n ++ a.c2 ++ np.s ! NPAcc; + isPre = False + } ; + } \ No newline at end of file diff --git a/src/kiswahili/AdverbKis.gf b/src/kiswahili/AdverbKis.gf new file mode 100644 index 000000000..205fb8416 --- /dev/null +++ b/src/kiswahili/AdverbKis.gf @@ -0,0 +1,13 @@ +concrete AdverbKis of Adverb = CatKis **AdverbBantu -[ComparAdvAdj,ComparAdvAdjS] with + (ResBantu = ResKis)** open DiffKis in +{ +flags coding=utf8; + lin + ComparAdvAdj cadv a np =let agr = complAgr np.a + in { + s = cadv.s ++ a.s !AAdj agr.g agr.n ++ cadv.p ++ np.s ! npNom + } ; + ComparAdvAdjS cadv a s = { + s = cadv.s ++ a.s !AAdj G1 Sg ++ cadv.p ++ s.s + } ; + } \ No newline at end of file diff --git a/src/kiswahili/CatKis.gf b/src/kiswahili/CatKis.gf new file mode 100644 index 000000000..0f93da545 --- /dev/null +++ b/src/kiswahili/CatKis.gf @@ -0,0 +1,2 @@ +concrete CatKis of Cat = CommonX - [Pol] + ** CatBantu with (ResBantu = ResKis); diff --git a/src/kiswahili/ConjunctionKis.gf b/src/kiswahili/ConjunctionKis.gf new file mode 100644 index 000000000..4e0b34ef3 --- /dev/null +++ b/src/kiswahili/ConjunctionKis.gf @@ -0,0 +1,2 @@ +concrete ConjunctionKis of Conjunction = CatKis ** ConjunctionBantu with + (ResBantu = ResKis); \ No newline at end of file diff --git a/src/kiswahili/DiffKis.gf b/src/kiswahili/DiffKis.gf new file mode 100644 index 000000000..c0bdc842e --- /dev/null +++ b/src/kiswahili/DiffKis.gf @@ -0,0 +1,235 @@ +instance DiffKis of DiffBantu = open CommonBantu, Prelude in { + +param + GenderKis = G1|G2|G3|G4|G5|G6|G7|G8|G9|G10|G11|G12|G13 ; +oper + Gender = GenderKis ; + firstGender = G1 ; secondGender = G2 ; + conjThan = "kuliko" ; + conjThat = "kuvita" ; + + conjGender : Gender -> Gender -> Gender = \m,n -> + case m of { G1 => n ; _ => G2 } ; + reflPron :Agr => Str = \\ag=> case of { + < Ag G1 Sg P1 > => "mimi" ; + < Ag G1 Sg P2 > => "wewe" ; + < Ag G1 Sg P3 > => "yeye" ; + < Ag _ Sg P3 > => "" ; + < Ag G1 Pl P1 > => "sisi" ; + < Ag G1 Pl P2 > => "nyinyi" ; + < Ag G1 Pl P3 > => "wao" ; + < Ag _ _ _ > => "" + + }; +possess_Prepof,part_Prepof:Number => Gender => Str = + table Number { Sg => table { G3=> "la" ; + G4 => "cha" ; + G5 => "ya" ; + G11 => "pa"; + G12 => "kwa"; + G13 => "mwa"; + G1 |G2|G6|G7 |G8 => "wa" ; + _ => ""} ; + + Pl => table { G1 => "wa" ; + G4 => "vya" ; + G5|G6 => "za" ; + G2|G3 |G8 |G9 |G10 => "ya" ; + _ => ""} } ; + + + superVery ="vyu"; + +Cardoneprefix : Gender -> Str = \g -> + case of { + => "ki" ; + | | | => "m" ; + _ => "" + } ; +Cardtwoprefix : Gender -> Str = \g -> + case of { + => "waw" ; + => "miw" ; + | => "maw" ; + => "viw" ; + _=> "mb" + } ; + Allpredetprefix : Gender -> Str = \g -> + case of { + => "vy" ; + => "p"; + => "k"; + => "m"; + | => "z" ; + | => "w" ; + | | | | => "y" + } ; + PrefixPlNom : Gender -> Str = \g -> + case of { + => "wa" ; + => "mi" ; + => "ma" ; + => "vi" ; + _ => [] + } ; + mkprefix,Ordprefix : Gender -> Str = \g -> + case of { + + => "la" ; + => "cha" ; + | | => "ya"; + | | => "pa"; + | | | | => "wa" + } ; + Cardprefix : Gender -> Str = \g -> + case of { + => "wa" ; + => "mi" ; + | => "ma" ; + => "vi" ; + _ => "" + } ; + Mostpredetprefix : Gender -> Str = \g -> + case of { + => "we" ; + => "mi" ; + => "nyi" ; + => "pe" ; + => "kwi" ; + => "vi" ; + | => "nye" ; + | => "mwi" ; + | | => "me" + + + } ; + ConsonantAdjprefix: Gender -> Number -> Str = \n,g -> + case of { + => "m" ; + => "wa" ; + => "m" ; + => "mi" ; + => "ma" ; + => "ki" ; + => "vi" ; + => "m" ; + => "m" ; + => "m" ; + => "ma" ; + => "ma" ; + => "pa" ; + => "ku" ; + => "m" ; + <_,_> => "" + } ; + + VowelAdjprefix: Gender -> Number -> Str = \n,g -> + case of { + => "mw" ; + => "w" ; + => "mw" ; + => "my" ; + => "j" ; + => "m" ; + => "ch" ; + => "vy" ; + => "ny"; + => "ny"; + => "mw" ; + => "y" ; + => "mw" ; + => "mw" ; + => "mw" ; + => "m" ; + => "m" ; + => "ny" ; + => "p" ; + => "kw" ; + => "mu" ; + <_,_> => "" + } ; + + VoweliAdjprefix: Gender -> Number -> Str = \n,g -> + case of { + => "mwi" ; + => "we" ; + => "mwi" ; + => "mi" ; + => "ji" ; + => "me" ; + => "ki" ; + => "vi" ; + => "zi"; + => "zi"; + => "mwi" ; + => "zi" ; + => "mwi" ; + => "mwi" ; + => "mwi" ; + => "me" ; + => "me" ; + => "zi" ; + => "pe" ; + => "kwi" ; + => "mwi" ; + <_,_> => "" + } ; + Adjpprefix : Gender -> Number -> Str = \n,g -> + case of { + => "wi" ; + => "me" ; + => "wi" ; + => "yi" ; + => "yi" ; + => "me" ; + => "ki" ; + => "syi" ; + => "ke" ; + => "twi" ; + => "ve" ; + => "kwi" ; + => "yi" ; + => "syi" ; + <_,_> => "" + } ; + ProunSgprefix : Gender -> Str = \g -> + case of { + => "l" ; + => "ch" ; + => "p"; + => "kw"; + => "mw"; + | | => "y"; + _ => "w" + + } ; + + ProunPlprefix : Gender -> Str = \g -> + case of { + => "vy" ; + => "p"; + => "kw"; + => "mw"; + | => "z" ; + | => "w" ; + | | | | => "y" + + + } ; + dfltGender : Gender = G1 ; + dflt2Gender : Gender = G2 ; + + + + param + + VForm = VInf + | VPres Gender Number Person + | VPast Gender Number Person + | VFut Gender Number Person + -- | notpresent + ; + + DForm = unit | teen | ten |hund ; + AForm = AAdj Gender Number; +} diff --git a/src/kiswahili/GrammarKis.gf b/src/kiswahili/GrammarKis.gf new file mode 100644 index 000000000..71e663393 --- /dev/null +++ b/src/kiswahili/GrammarKis.gf @@ -0,0 +1,30 @@ +--# -path=.:../abstract:../common:prelude + +concrete GrammarKis of Grammar = + NounKis, + VerbKis, + AdjectiveKis, + AdverbKis, + NumeralKis, + SentenceKis, + QuestionKis, + RelativeKis, + ConjunctionKis, + PhraseKis, + TextX - [Pol,PPos,PNeg,Pres], + StructuralKis, + IdiomKis, + TenseX - [Pol,PPos,PNeg,Pres] + ** { + +flags startcat = Phr ; unlexer = text ; lexer = text; + +--lin + --PPos = {s = [] ; p = CPos} ; + -- PNeg = {s = [] ; p = CNeg True} ; -- contracted: don't + --PPos = {s = [] ; b = True} ; + -- PNeg = {s = [] ; b = False} ; + -- TPres = {s = [] ; t = ResKis.Pres} ; + -- TPast = {s = [] ; t = ResKis.Past }; + -- TFut = {s = [] ; t = ResKis.Fut }; +} ; diff --git a/src/kiswahili/IdiomKis.gf b/src/kiswahili/IdiomKis.gf new file mode 100644 index 000000000..089f74b0d --- /dev/null +++ b/src/kiswahili/IdiomKis.gf @@ -0,0 +1,48 @@ +concrete IdiomKis of Idiom = CatKis ** open Prelude, ResKis in { + + flags optimize=all_subs ; +{- + lin + ImpersCl vp = mkClause "it" (agrP3 Sg) vp ; + GenericCl vp = mkClause "one" (agrP3 Sg) vp ; + + CleftNP np rs = mkClause "it" (agrP3 Sg) + (insertObj (\\_ => rs.s ! np.a) + (insertObj (\\_ => np.s ! rs.c) (predAux auxBe))) ; + + CleftAdv ad s = mkClause "it" (agrP3 Sg) + (insertObj (\\_ => conjThat ++ s.s) + (insertObj (\\_ => ad.s) (predAux auxBe))) ; + + ExistNP np = + mkClause "there" (agrP3 (fromAgr np.a).n) + (insertObj (\\_ => np.s ! NPAcc) (predAux auxBe)) ; + + ExistIP ip = + mkQuestion (ss (ip.s ! npNom)) + (mkClause "there" (agrP3 ip.n) (predAux auxBe)) ; + + ExistNPAdv np adv = + mkClause "there" (agrP3 (fromAgr np.a).n) + (insertObj (\\_ => np.s ! NPAcc ++ adv.s) (predAux auxBe)) ; + + ExistIPAdv ip adv = + mkQuestion (ss (ip.s ! npNom)) + (mkClause "there" (agrP3 ip.n) (insertObj (\\_ => adv.s) (predAux auxBe))) ; + + ProgrVP vp = insertObj (\\a => vp.ad ! a ++ vp.prp ++ vp.p ++ vp.s2 ! a) (predAux auxBe) ; + + ImpPl1 vp = {s = "let's" ++ infVP VVAux vp Simul CPos (AgP1 Pl)} ; + + ImpP3 np vp = {s = "let" ++ np.s ! NPAcc ++ infVP VVAux vp Simul CPos np.a} ; + + SelfAdvVP vp = insertObj reflPron vp ; + SelfAdVVP vp = insertAdVAgr reflPron vp ; + SelfNP np = { + s = \\c => np.s ! c ++ reflPron ! np.a ; + a = np.a + } ; +} -} + +} + diff --git a/src/kiswahili/LangKis.gf b/src/kiswahili/LangKis.gf new file mode 100644 index 000000000..115e8f537 --- /dev/null +++ b/src/kiswahili/LangKis.gf @@ -0,0 +1,8 @@ +--# -path=.:../abstract:../common:../api + +concrete LangKis of Lang = + GrammarKis, + LexiconKis +-- ,ConstructionSwa + ** { +} ; diff --git a/src/kiswahili/LexiconKis.gf b/src/kiswahili/LexiconKis.gf new file mode 100644 index 000000000..cec711b56 --- /dev/null +++ b/src/kiswahili/LexiconKis.gf @@ -0,0 +1,373 @@ +--# -path=.:prelude + +concrete LexiconKis of Lexicon = CatKis ** + open ParadigmsKis,StructuralKis, Prelude in { + +flags + optimize=values ; + +lin + person_N =regN "mtu" a_wa ; + woman_N =iregN "mwanamke" "wanwake" a_wa ; + house_N =regN "nyumba" i_zi ; + tree_N = regN "mti" u_i ; + big_A =regA "kubwa" ; + beautiful_A = regA "rembo" ; + black_A =regA "eusi" ; + blue_A =cregA "buluu" ; + broad_A = regA "pana" ; + brown_A =regA "hudhurungi" ; + clean_A = regA "safi" ; + clever_A = regA "hodari" ; + cold_A = regA "baridi" ; + correct_A =regA "sahihi" ; + dirty_A =regA "chafu" ; + dry_A = regA "kavu" ; + full_A =regA "tele" ; + good_A =regA "zuri" ; + green_A =cregA "kijani" ; + heavy_A = regA "zito" ; + hot_A =regA "moto" ; + important_A = regA "muhimu" ; + long_A = regA "refu" ; + narrow_A = regA "embamba" ; + near_A = regA "karibu" ; + new_A =regA "pya" ; + old_A =regA "zee" ; + red_A =regA "ekundu" ; + rotten_A = regA "oza" ; + round_A = regA "virgo" ; + sharp_A = regA "kali" ; + short_A = regA "fupi" ; + smooth_A = regA "lai" ; + straight_A =regA "nyofu" ; + stupid_A =regA "jiga" ; + thick_A =regA "nene" ; + thin_A = regA "embamba" ; + ugly_A =regA "baya"; + warm_A =regA "fufutende" ; + wet_A =regA "nyevu" ; + white_A =regA "eupe" ; + yellow_A =regA "njano" ; + young_A = regA "bichi" ; + small_A = regA "dogo" ; + cow_N = regN "ngombe" i_zi ; + doctor_N =iregN "daktari" "daktari" a_wa ; + dog_N =iregN "mbwa" "mbwa" a_wa ; + door_N =regN "mlango" u_i ; + enemy_N =regN "adui" a_wa ; + fish_N = regN "samaki" a_wa ; + friend_N =iregN "rafiki" "rafiki" a_wa ; + garden_N = iregN "bustani" "bustani" li_ya ; + girl_N = regN "msichana" a_wa ; + lamp_N = regN "taa" li_ya ; + man_N = iregN "mwanaume" "wanaume" a_wa ; + eye_N = iregN "jicho" "macho" li_ya ; + tooth_N = regN "jino" li_ya ; + wife_N = iregN "bibi" "bibi"a_wa ; + bird_N = regN "ndege" a_wa ; + country_N = regN "nchi" i_zi ; + cousin_N = iregN "binamu" "Binami" a_wa; + father_N = regN "baba" "baba" a_wa ; + water_N = iregN "maji" "maji" ya_ya ; + ear_N = regN "sikio" li_ya ; + fingernail_N = regN "ukucha" u_zi ; + nose_N = regN "pua" li_ya ; + road_N = iregN "barabara" "barabara" i_zi ; + river_N = regN "mto" u_i ; + come_V = regV "kuja"; + walk_V = regV "tembea"; + sleep_V = regV "lala"; + smell_V = regV "nuka"; + stand_V = regV "simama"; + stop_V = regV "simama"; + swell_V = regV "fura"; + swim_V = regV "ogelea"; + think_V = regV "waza"; + travel_V = regV "safiri"; + big_A = regA "kubwa"; + paris_PN = regPN "Paris" ku_ku ; -- this is alreay name of place avoid kwa + john_PN = regPN "Yoana" a_wa ; + question_N = regN "swali" i_zi ; + -- ready_A = regA "ready" ; + reason_N = regN "sababu" i_zi ; + today_Adv = mkAdv "today" ; + --uncertain_A = regA "uncertain" ; + distance_N3 = mkN3 (mkN "umbali" "umbali" i_zi ) fromP toP ; + add_V3= regV "ongeza"; + airplane_N=iregN "ndege" "ndege" i_zi ; + alas_Interj= ss "ala"; + animal_N=regN "mnyama" a_wa; + ask_V2Q=regV "uliza" ; + baby_N=regN "mtoto" a_wa; + belly_N=regN "tumbo" i_zi ; + blood_N=iregN "damu" "damu" i_zi ; + book_N=regN "kitabu" ki_vi; + boss_N=iregN "bosi" "bosi"a_wa; + boy_N=regN "kijana" a_wa; + bread_N=regN " mkate" u_i; + breast_N=regN "titi" li_ya; + brother_N2= mkN2(mkN "kaka" "kaka" a_wa) mkPrepof ; + burn_V=regV "choma"; + buy_V2=regV "nunua"; + car_N=regN "gari" li_ya; + cat_N=iregN "paka" "paka" a_wa; + chair_N=regN "kiti" ki_vi; + child_N=regN "mtoto" a_wa; + church_N=regN "mtoto" a_wa; + city_N=regN "mji" u_i; + close_V2=regV "karibu"; + coat_N=regN "koti" li_ya; + computer_N=iregN "kompyuta" "kompyuta" li_ya; + cut_V2=regV "kata"; + day_N=regN "siku" li_ya; + die_V=regV "kufa"; + dig_V=regV "kulima"; + do_V2=regV " fanya"; + drink_V2=regV " kunywa"; + earth_N=iregN "ardhi" "ardhi" i_zi; + eat_V2=regV " kula" ; + egg_N=regN " yai" li_ya; + fall_V=regV "anguka" ; + far_Adv=mkAdv"mbali"; + fat_N=regN "mafuta" li_ya; + father_N2=mkN2 ( mkN "baba" "baba"a_wa) mkPrepof ; + fear_V2=regV "ongopa" ; + find_V2=regV "tafuta"; + fire_N=iregN "moto" "moto" u_i; + foot_N=regN" mguu" u_i; + forest_N=regN "msitu" u_i; + go_V=regV "enda" ; + gold_N=iregN "dhahabu" "dhahabu" li_ya; + grass_N=regN "nyasi" i_zi; + hair_N=iregN "nywele" "Nywele" i_zi; + hand_N=regN "mkono" u_i; + hat_N=iregN "kofia" "kofia" i_zi; + head_N=regN "kichwa" ki_vi; + hear_V2=regV " sikia"; + heart_N=regN "moyo" u_i; + hill_N=regN " kilima" ki_vi; + husband_N=regN" mume" a_wa; + ice_N=iregN "barafu" "barafu" i_zi; + jump_V=regV "ruka"; + kill_V2=regV "ua"; + king_N=regN "mfalame" a_wa; + knee_N=regN "goti" li_ya; + know_V2=regV "jua"; + laugh_V=regV "cheka"; + leaf_N=regN "jani" li_ya; + learn_V2=regV "soma"; + leg_N=regN " mguu" u_i; + listen_V2=regV " sikiza"; + love_N=regN "upendo" u_zi; + married_A2= mkA2(regA "oa") "ni"; + meat_N=regN "nyama" i_zi; + milk_N=regN "maziwa" i_zi; + moon_N=regN "mwezi" u_i; + mother_N2=mkN2( mkN "mama""mama" a_wa) mkPrepof ; + mountain_N=regN "mlima" u_i; + mouth_N=regN "mdomo" u_i; + name_N=regN " jina" li_ya; + neck_N=regN "shingo" li_ya; + night_N=regN "usiku" u_zi; + number_N=regN "namba" li_ya; + oil_N=regN "mafuta" ya_ya; + open_V2=regV " fungua"; + paper_N=regN " karatasi" li_ya; + peace_N=regN "amani" ya_ya; + play_V=regV " cheza"; + policeman_N=regN "askari" a_wa; + priest_N=regN "kasisi" a_wa; + rain_N=regN "mvua" i_zi; + rock_N=regN "jabali" li_ya; + root_N=regN "mzizi" u_i; + rope_N=regN "kamba" li_ya; + run_V=regV "imbia"; + salt_N=iregN "chumvi" "chumvi" i_zi; + sand_N=iregN "changarawe" "changarawe" ki_vi; + school_N=iregN " shule" "shule" i_zi; + sea_N=iregN "bahari" "Bahari" li_ya; + see_V2=regV "angalia"; + seed_N=regN "mbengu" i_zi; + seek_V2=regV " tafuta"; + sell_V3=regV "uza"; + send_V3=regV "tuma"; + sheep_N=iregN "Kondoo" "Kondoo" li_ya; + shoe_N=regN "kiatu" ki_vi; + shop_N=iregN "duka" "duka" li_ya; + sing_V=regV "imba"; + sister_N=iregN "dada" "dada" a_wa; + sit_V=regV"keti"; + snake_N=iregN "nyoka" "nyoka" a_wa; + song_N=regN "wimbo" u_zi; + speak_V2=regV "ongea"; + star_N=regN "nyota" i_zi; + student_N=regN "mwanafunzi" a_wa; + sun_N=regN "jua" li_ya; + table_N=regN "meza" i_zi; + teach_V2=regV "somesha"; + teacher_N=regN "mwalimu" a_wa; + tongue_N=regN "ulimi" u_zi; + understand_V2=regV" elewa"; + wait_V2=regV "gojea"; + war_N=iregN "vita" "vita" u_zi; + wash_V2=regV "osha"; + win_V2=regV "shinda"; + wind_N=regN " upepo" u_zi; + window_N=regN "dirisha" li_ya; + write_V2=regV " andika"; + year_N=regN "mwaka" u_i; + already_Adv=mkAdv "zamani"; + answer_V2S=regV" jibu"; + apartment_N=iregN " nyumba ya ghorofa" "nyumba za ghorofa" i_zi; + apple_N=iregN "tofaa" "tofaa" li_ya; + art_N=iregN "weledi" "weledi" u_zi; + ashes_N=regN "jivu" li_ya; + back_N=regN "mgongo" u_i; + bad_A=regA"ovu" ; + bank_N=iregN "benki" "benki" i_zi; + bark_N=regN "gamba" li_ya; + become_VA=regV "ingia"; + beer_N=regN "mtindi" u_i; + beg_V2V=regV "omba"; + bike_N=iregN " baisikeli" "basikeli" i_zi; + bite_V2=regV "donoa"; + blow_V=regV"puliza"; + boat_N=regN "shua" li_ya; + bone_N=regN "mfupa" u_i; + boot_N=regN "buti" li_ya; + break_V2=regV "goboa"; + breathe_V=regV "pumua"; + butter_N=iregN "siagi" "siagi" i_zi; + camera_N=iregN "kamera" "kamera" i_zi; + cap_N=iregN "heti" "heti" i_zi; + carpet_N=regN "zulia" li_ya; + ceiling_N=regN "dari" li_ya; + cheese_N=regN " chisi" li_ya; + cloud_N=regN "wingu" li_ya; + count_V2=regV "hesabu"; + dull_A=iregA "butu" "butu" ; + dust_N=regN "fumbi" li_ya; + --easy_A2V= regA "epesi"; + empty_A=regA "tupu" ; + factory_N=regN "banda" i_zi; + fear_VS=regV "ogopa"; + feather_N=regN "unyoya" u_ya; + fight_V2=regV "pigana"; + float_V=regV "elea"; + floor_N=iregN "sakafu" "sakafu" i_zi; + flow_V=regV "tiririk"; + flower_N=regN "ua" li_ya; + fly_V=regV"pepea"; + fog_N=regN "ukungu" u_ya; + forget_V2=regV "sahau"; + freeze_V=regV"ganda"; + fridge_N=iregN "friji" "friji" i_zi; + fruit_N=regN "zao" u_ya; + fun_AV=regA "kejeli"; + give_V3=regV "patiana"; + glove_N=iregN "glavu" "glavu" i_zi; + grammar_N=iregN "sarafi" "sarafi" i_zi; + guts_N= regN "tumbo" li_ya; --confirm the tranlation + harbour_N=regN"bandari" li_ya; + hate_V2=regV"chukia"; + hit_V2=regV "gonga"; + hold_V2=regV "shika"; + hope_VS=regV "tumai"; + horn_N=iregN "pembe" " Pembe" i_zi; + horse_N=iregN "farasi" "farasi" a_wa; + hunt_V2=regV "saka"; + industry_N=regN "kiwanda" ki_vi; + iron_N=regN "chuma" ki_vi; + know_VQ=regV "fahamu"; + know_VS=regV "jua"; + lake_N=regN "ziwa" li_ya; + language_N=regN "lugha" u_zi; + leather_N=iregN "ngozi" "ngozi" i_zi; + leave_V2=regV "achwa"; + left_Ord= mkOrd "kushoto"; --what is the translation + lie_V=regV "daganya"; + like_V2=regV "pendea"; + live_V=regV "penda"; + liver_N=regN "ini" li_ya; + lose_V2=regV "poteza"; + louse_N=iregN "chawa" "chawa" i_zi; + love_V2=regV "pendwa"; + music_N=regN "muziki" u_i; + newspaper_N=regN "jarida" li_ya; + now_Adv=mkAdv "sasa"; + paint_V2A=regV "paka"; + pen_N=iregN " kalamu" "kalamu" i_zi; + planet_N=iregN "sayari" "sayari" i_zi; + plastic_N=iregN "plastiki" "plastiki" i_zi; + play_V2=regV "cheza"; + probable_AS=regA"kini"; + pull_V2=regV "vuta"; + push_V2=regV "sukuma"; + put_V2=regV "tia"; + queen_N=iregN "malkia" "malkia" a_wa; + radio_N=iregN "redio" "redio" i_zi; + rain_V0=regV "nyesha"; + read_V2=regV "soma"; + ready_A=iregA "tayari" "tayari"; + religion_N=regN "dini" li_ya; + restaurant_N=regN "mkahawa" u_i; + right_Ord= mkOrd"kulia"; + roof_N=regN "paa" li_ya; + rub_V2=regV "sugua"; + rubber_N=regN "mpira" u_i; + rule_N=regN "utawala" u_zi; + say_VS=regV "tamka"; + science_N=iregN "sayansi" "sayansi" i_zi; + scratch_V2=regV "kwaruza"; + sew_V=regV "shona"; + ship_N=iregN "meli" "meli" i_zi; + shirt_N=regN "shati" li_ya; + silver_N=iregN "fedha" "fedha" i_zi; + skin_N=iregN "ngozi" "ngozi" i_zi; + sky_N=regN "anga" li_ya; + smoke_N=iregN "moshi" "moshi" u_zi; + snow_N=iregN "theluji" "theluji" i_zi; + sock_N=iregN "soksi" "soksi" i_zi; + spit_V=regV"tema"; + split_V2=regV"pasua"; + squeeze_V2=regV "finya"; + stab_V2=regV" tofua"; + steel_N=regN "chuma" ki_vi; + stick_N=regN "kijiti" ki_vi; + stone_N=iregN " jiwe" "mawe" li_ya; + stove_N=iregN "jiko" "meko" li_ya; + suck_V2=regV "fyonza"; + switch8off_V2=regV "poesha"; + switch8on_V2=regV "akisha"; + tail_N=regN "mkia" u_i; + talk_V3=regV "ongea"; + television_N=iregN "televisheni" " televisheni" i_zi; + throw_V2=regV "tupa"; + tie_V2=regV "funga"; + train_N=iregN "gari ya moshi" "magari ya moshi" li_ya; + turn_V=regV "geuka"; + uncertain_A=iregA "geugeu" "geugeu"; + university_N=iregN "chuo kikuu" "vyuo vikuu" ki_vi; + village_N=regN "kitongoji" ki_vi; + vomit_V=regV "tapika"; + watch_V2=regV "dhibiti"; + wide_A=iregA "panapana" "panapana"; + wine_N=regN "mvinyo" u_i; + wing_N=regN"bawa" li_ya; + wipe_V2=regV"futa"; + wonder_VQ=regV "shangaa"; + wood_N=regN "mti" u_i; + worm_N=regN "funza" li_ya; + + +oper + aboutP = mkPrep "juu ya" ; + atP = mkPrep "vala ve" ; + forP = mkPrep "for" ; + fromP = mkPrep "kutoka" ; + inP = mkPrep "ndani" ; + onP = mkPrep "juu" ; + toP = mkPrep "hadi" ; + +} ; diff --git a/src/kiswahili/MorphoKis.gf b/src/kiswahili/MorphoKis.gf new file mode 100644 index 000000000..0b2e0dd08 --- /dev/null +++ b/src/kiswahili/MorphoKis.gf @@ -0,0 +1,351 @@ +--# -path=.:../../prelude + +--1 Kiswahili morphology Resource Morphology +-- +-- Benson Kituku 2017-2018 + + +resource MorphoKis = CommonBantu ,ResKis +** open Prelude, Predef +in { + + flags optimize=all ; + oper + + Many_prefix : Gender -> Str = \g -> + case of { + => "we" ; + => "mi" ; + => "nyi" ; + => "pe" ; + => "kwi" ; + => "vi" ; + | => "nyi" ; + | => "mwi" ; + | | => "me" + } ; + + + Few_prefix : Gender -> Str = \g -> + case of { + => "wa" ; + => "mi" ; + => "" ; + => "pa" ; + => "ku" ; + => "vi" ; + | => "" ; + | => "m" ; + | | => "ma" + } ; + + Detsomesgprefix : Gender -> Str = \g -> + case of { + => "li" ; + => "ki" ; + => "me"; + => "pe" ; + => "kwi" ; + | => "nyi" ; + |||| | => "mwi" + + } ; + +Detsomeplprefix : Gender -> Str = \g -> + case of { + => "we" ; + => "mi" ; + => "nyi" ; + => "pe" ; + => "kwi" ; + => "vi" ; + | => "nye" ; + | => "mwi" ; + | | => "me" + + } ; + + + + + mkNum : Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, second -> + {s = table { + unit => table {NCard =>\\g => Cardprefix g + two ; + NOrd => \\g => Ordprefix g ++ two} ; + teen => table {NCard =>\\g =>"kumi na" ++ Cardprefix g + two ; + NOrd => \\g => Ordprefix g ++ "kumi na" ++ Cardprefix g + two} ; + ten => table {NCard =>\\g =>second ++"na" ++ Cardprefix g + two ; + NOrd => \\g => Ordprefix g ++ second ++"na" ++ Cardprefix g + two}; + hund => table {NCard =>\\g =>"mia " ++ two ; + NOrd => \\g => Ordprefix g ++ "mia " ++ two } + } + } ; + + mkNumn : Str -> Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, twelve, second -> + {s = table { + unit => table {NCard =>\\g => Cardtwoprefix g + two ; + NOrd => \\g => Ordprefix g ++ second} ; + teen => table {NCard =>\\g =>"kumi na" ++ Cardtwoprefix g + two; + NOrd => \\g => Ordprefix g ++ "kumi na" ++ Cardtwoprefix g + two} ; + ten => table {NCard =>\\g =>twelve ; + NOrd => \\g => Ordprefix g ++ twelve}; + hund => table {NCard =>\\g =>"mia mb " + two ; + NOrd => \\g => Ordprefix g ++ "mia mb" + two} + } + } ; + + mkNume : Str -> Str -> {s : DForm => CardOrd => Gender => Str} = + \two, second -> + {s = table { + unit => table {NCard =>\\g => Cardoneprefix g + two ; + NOrd => \\g => Ordprefix g ++ second} ; + teen => table {NCard =>\\g =>"kumi na" ++ Cardoneprefix g + two ; + NOrd => \\g => Ordprefix g ++ "kumi na" ++ Cardoneprefix g + two} ; + ten => table {NCard =>\\g =>"kumi" ; + NOrd => \\g => Ordprefix g ++ "kumi"}; + hund => table {NCard =>\\g =>"mia " ++ two ; + NOrd => \\g => Ordprefix g ++ "mia" ++ two} + } + } ; + + regNum : Str ->Str -> {s : DForm => CardOrd => Gender => Str} = + \six,sixth -> {s = table { + unit => table {NCard =>\\g => six ; + NOrd => \\g => Ordprefix g ++ six} ; + teen => table {NCard =>\\g =>"kumi na" ++ six ; + NOrd => \\g => Ordprefix g ++ "kumi na" ++ six} ; + ten => table {NCard =>\\g =>sixth ++"na" ++ six ; + NOrd => \\g => Ordprefix g ++ sixth ++"na" ++ six }; + hund => table {NCard =>\\g =>"mia " ++ six ; + NOrd => \\g => Ordprefix g ++ "mia" ++ six} + } } ; + + + regCardOrd : Str -> {s : CardOrd => Gender => Str} = \ten -> + {s = table {NCard => \\g => ten ; + NOrd =>\\g => Ordprefix g ++ ten } } ; + + regCardone : Str -> Str -> {s : CardOrd => Gender => Str} = \ten,one -> + {s = table {NCard => \\g => ten ++ Cardoneprefix g + one ; + NOrd =>\\g => Ordprefix g ++ ten ++ Cardoneprefix g + one } } ; + + mkCard : CardOrd -> Str -> Gender => Str = \o,ten -> + (regCardOrd ten).s ! o ; + + regN : Str ->Gender -> Noun = \w, g -> let wpl = case g of { + G1=>case w of { + "mwa" + _ => PrefixPlNom G1 + Predef.drop 3 w ; + "mwi" + _ => "we" + Predef.drop 3 w ; + "ki" + _ => PrefixPlNom G4 + Predef.drop 2 w ; + "m" + _ => PrefixPlNom G1 + Predef.drop 1 w ; + _ => w }; + G2=>case w of { + "mw" + _ => PrefixPlNom G2 + Predef.drop 2 w ; + "mu" + _ => PrefixPlNom G2 + Predef.drop 2 w ; + _ => PrefixPlNom G2 + Predef.drop 1 w }; + G4=> case w of { + "ki" + _ => PrefixPlNom G4 + Predef.drop 2 w ; + "ch" + _ => "vy" + Predef.drop 2 w ; + _ => w }; + G6 |G8 => PrefixPlNom g + Predef.drop 1 w; + G11 |G12|G13 => "" ; + _ => PrefixPlNom g + w }; + + in iregN w wpl g ; + + + + + + iregN :Str-> Str ->Gender -> Noun= \man,men,g -> { -- for irregular noun + s = table{Sg => table{Nom => man ; + Loc=> man + "ni" | men + "ni" }; + Pl => table{Nom => men ; Loc=> ""}} ; + g = g + } ; + + regA:Str -> {s : AForm => Str} = \seo -> {s = table { + AAdj G1 Sg=>case Predef.take 1 seo of { + "a"|"e"|"i"|"o"|"u" => VowelAdjprefix G1 Sg + seo; + _ => ConsonantAdjprefix G1 Sg + seo }; + AAdj G1 Pl =>case Predef.take 1 seo of { + "a"|"e"|"o"|"u" => VowelAdjprefix G1 Pl + seo; + "i" => VoweliAdjprefix G1 Pl + seo; + _ => ConsonantAdjprefix G1 Pl + seo }; + + AAdj G2 Sg=>case Predef.take 1 seo of { + "a"|"e"|"i"|"o"|"u" => VowelAdjprefix G2 Sg + seo; + _ => ConsonantAdjprefix G2 Sg + seo }; + AAdj G2 Pl =>case Predef.take 1 seo of { + "a"|"e"|"o"|"u" => VowelAdjprefix G2 Pl + seo; + "i" => VoweliAdjprefix G2 Pl + seo; + _ => ConsonantAdjprefix G2 Pl + seo }; + AAdj G3 Sg=>case Predef.take 1 seo of { + "a"|"e"|"i"|"o"|"u" => VowelAdjprefix G3 Sg + seo; + _ => ConsonantAdjprefix G3 Sg + seo }; + AAdj G3 Pl =>case Predef.take 1 seo of { + "a"|"e"|"o"|"u" => VowelAdjprefix G3 Pl + seo; + "i" => VoweliAdjprefix G3 Pl + seo; + _ => ConsonantAdjprefix G3 Pl + seo }; + + AAdj G4 n =>case Predef.take 1 seo of { + "a"|"e"|"o"|"u" => VowelAdjprefix G4 n + seo; + "i" => VoweliAdjprefix G4 n + seo; + _ => ConsonantAdjprefix G4 n + seo }; + AAdj G5 n => case Predef.take 1 seo of { + "a"|"e"|"o"|"u" => VowelAdjprefix G5 n + seo; + "i" => "ny" + Predef.drop 1 seo; + "d"|"g"|"z" => "n" + seo; + "b"|"p"|"v" => "m" + seo; + _ => ConsonantAdjprefix G5 n + seo }; + + AAdj G6 Sg=>case Predef.take 1 seo of { + "a"|"e"|"i"|"o"|"u" => VowelAdjprefix G6 Sg + seo; + _ => ConsonantAdjprefix G6 Sg + seo }; + AAdj G6 Pl =>case Predef.take 1 seo of { + "a"|"e"|"o"|"u" => VowelAdjprefix G6 Pl + seo; + "i" => "ny" + Predef.drop 1 seo; + "d"|"g"|"z" => "n" + seo; + "b"|"p"|"v" => "m" + seo; + _ => ConsonantAdjprefix G6 Pl + seo }; + + AAdj G7 n =>case Predef.take 1 seo of { + "a"|"e"|"o"|"u" => VowelAdjprefix G7 n + seo; + "i" => VoweliAdjprefix G7 n + seo; + _ => ConsonantAdjprefix G7 n + seo }; + AAdj G8 n =>case Predef.take 1 seo of { + "a"|"e"|"o"|"u" => VowelAdjprefix G8 n + seo; + "i" => VoweliAdjprefix G8 n + seo; + _ => ConsonantAdjprefix G8 n + seo }; + AAdj G9 n =>case Predef.take 1 seo of { + "a"|"e"|"o"|"u" => VowelAdjprefix G9 n + seo; + "i" => VoweliAdjprefix G9 n + seo; + _ => ConsonantAdjprefix G9 n + seo }; + AAdj G10 n =>case Predef.take 1 seo of { + "a"|"e"|"o"|"u" => VowelAdjprefix G9 n + seo; + "i" => VoweliAdjprefix G9 n + seo; + _ => ConsonantAdjprefix G9 n + seo }; + + AAdj G11 Sg=>case Predef.take 1 seo of { + "a"|"e"|"o"|"u" => VowelAdjprefix G11 Sg + seo; + "i" => VoweliAdjprefix G11 Sg + seo; + _ => ConsonantAdjprefix G11 Sg + seo }; + + AAdj G12 Sg=>case Predef.take 1 seo of { + "a"|"e"|"o"|"u" => VowelAdjprefix G12 Sg + seo; + "i" => VoweliAdjprefix G12 Sg + seo; + _ => ConsonantAdjprefix G12 Sg + seo }; + AAdj G13 Sg=>case Predef.take 1 seo of { + "a"|"e"|"o"|"u" => VowelAdjprefix G13 Sg + seo; + "i" => VoweliAdjprefix G13 Sg + seo; + _ => ConsonantAdjprefix G13 Sg + seo }; + AAdj _ Pl =>[] }}; + + + + + +iregA : Str-> Str -> {s : AForm => Str} = \seo,seoo -> { + s = table { + AAdj g Sg=> seo; + AAdj g Pl => seoo} }; + + + cregA : Str-> {s : AForm => Str} = \seo -> { + s = table { + AAdj g Sg => ProunSgprefix g + "a" ++"rangi" ++"ya" ++ seo; + AAdj g Pl=> ProunPlprefix g + "a" ++"rangi" ++"ya" ++ seo} } ; + +regV : Str -> Verb = + \vika -> { + s = table{ True => table{ + VInf => vika; + VPres g n p => Verbprefix g n p + vika; + VPast g n p => Verbprefix g n p + init vika + "ie" ; + VFut g n p => Verbfutureprefix g n p + vika + } ; + False =>table { + VInf => "ndi" + vika; + VPres g n p => neg (Ag g n p) False Pres + "na" + vika ; + VPast g n p => neg (Ag g n p) False Past + "ne" + vika ; + VFut g n p => neg (Ag g n p) False Fut + "ka" + vika + } + }; + }; + + neg : Agr -> Bool ->Tense -> Str = \a,b,t -> let + g = getGender a; + n=getNumber a; + p=getPerson a + in case b of {True => [] ; False => negprefix g n t p} ; + + negprefix : Gender -> Number -> Tense -> Person -> Str =\g,n,t,p-> case of { + => "ndi"; + => "ndu"; + => "ndu"; + => "twi"; + => "mwi"; + => "mai"; + => "ndu"; + => "i"; + => "i"; + => "mai"; + => "ki"; + => "i"; + => "kai"; + => "tui"; + => "vai"; + => "kui"; + => "i"; + <_,_,_,_> => "syi" + +}; + + + Verbprefix : Gender -> Number -> Person -> Str = \g, n, p -> + case of { + => "na" ; + => "wa" ; + => "wa" ; + => "twa" ; + => "mwa" ; + => "ma" ; + => "wa" ; + => "ya" ; + => "kya" ; + => "sya" ; + => "ya" ; + => "ma" ; + => "ka" ; + => "twa" ; + => "va" ; + => "kwa" ; + => "ya" ; + <_,_,_> => "sya" + } ; + + Verbfutureprefix : Gender -> Number -> Person -> Str = \g, n, p -> + case of { + => "nga" ; + => "uka" ; + => "uka" ; + => "tuka" ; + => "muka" ; + => "maka" ; + => "uka" ; + => "ika" ; + => "kika" ; + => "ika" ; + => "ika" ; + => "maka" ; + => "kaka" ; + => "tuka" ; + => "vaka" ; + => "kuka" ; + => "ika" ; + <_,_,_> => "ika" + } ; +} + diff --git a/src/kiswahili/NounKis.gf b/src/kiswahili/NounKis.gf new file mode 100644 index 000000000..45f24b93e --- /dev/null +++ b/src/kiswahili/NounKis.gf @@ -0,0 +1,2 @@ +concrete NounKis of Noun = + CatKis ** NounBantu with (Structural = StructuralKis), (ResBantu = ResKis); diff --git a/src/kiswahili/NumeralKis.gf b/src/kiswahili/NumeralKis.gf new file mode 100644 index 000000000..9cd45e2aa --- /dev/null +++ b/src/kiswahili/NumeralKis.gf @@ -0,0 +1,87 @@ +concrete NumeralKis of Numeral = CatKis [Numeral,Digits] ** +open Prelude,DiffKis,MorphoKis in { + +lincat + Digit = {s : DForm => CardOrd => Gender => Str} ; + Sub10 = {s : DForm => CardOrd => Gender => Str ; n : Number} ; + Sub100 = {s : CardOrd => Gender => Str ; n : Number} ; + Sub1000 = {s : CardOrd => Gender => Str ; n : Number} ; + Sub1000000 = {s : CardOrd => Gender => Str ; n : Number} ; + +lin num x = x ; +lin n2 = mkNumn "ili" "ishirini" "pili" ; +lin n3 = mkNum "tatu" "thelathini" ; +lin n4 = mkNum "nne" "arobaini" ; +lin n5 = mkNum "tano" "hamsini" ; +lin n6 = regNum "sita" "sitini"; +lin n7 = regNum "saba" "sabini"; +lin n8 = regNum "nane" "themanini"; +lin n9 = regNum "tisa" "tisini" ; + +lin pot01 = mkNume "moja" "kwanza" ** {n = Sg} ; +lin pot0 d = d ** {n = Pl} ; +lin pot110 = regCardOrd "kumi" ** {n = Pl} ; +lin pot111 = regCardone "kumi na" "moja" ** {n = Pl} ; -- creat another function to be gender specific +lin pot1to19 d = {s = d.s ! teen} ** {n = Pl} ; +lin pot0as1 n = {s = n.s ! unit} ** {n = n.n} ; +lin pot1 d = {s = d.s ! ten} ** {n = Pl} ; +lin pot1plus d e = { s = table { + NCard => \\g => d.s ! ten ! NCard ! g ++ "na"++ e.s ! unit ! NCard ! g ; + NOrd => \\g =>Ordprefix g++ d.s ! ten ! NCard ! g ++ "na"++ e.s ! unit ! NCard ! g } ; + n = Pl} ; +lin pot1as2 n = n ; +lin pot2 d = {s = d.s ! hund} ** {n = Pl} ; +lin pot2plus d e = {s = table { + NCard => \\g => d.s ! hund ! NCard ! g ++ "na" ++ e.s !NCard ! g ; + NOrd => \\g =>Ordprefix g++ d.s ! hund ! NCard ! g ++ "na" ++ e.s ! NCard ! g } ; + n = Pl} ; + lin pot2as3 n = n ; +lin pot3 n = { s = table { + NCard => \\g => mkCard NCard "elfu" ! g ++ n.s ! NCard ! g ; + NOrd => \\g =>Ordprefix g++ mkCard NCard "elfu" ! g ++ n.s ! NCard ! g } ; + n = Pl} ; +lin pot3plus n m = { s = table { + NCard => \\g => "elfu" ++ n.s ! NCard !g ++ m.s ! NCard ! g ; + NOrd => \\g =>Ordprefix g++ "elfu" ++ n.s ! NCard !g ++ m.s ! NCard ! g} ; + n = Pl} ; + +-- numerals as sequences of digits0' + + lincat + Dig = TDigit ; + + lin + IDig d = d ; + + IIDig d i = { + --s = \\o,g => d.s ! NCard ! g ++ i.s ! o ! g ; + s = table {NCard => \\g => d.s! NCard ! g ++ BIND ++ i.s ! NCard ! g ; + NOrd => \\g => d.s! NOrd! g ++ BIND ++ i.s !NCard! g } ; + n = Pl + } ; + + D_0 = mkDig "0" ; + D_1 = mk3Dig "1" "1" Sg ; + D_2 = mkDig "2" ; + D_3 = mkDig "3" ; + D_4 = mkDig "4" ; + D_5 = mkDig "5" ; + D_6 = mkDig "6" ; + D_7 = mkDig "7" ; + D_8 = mkDig "8" ; + D_9 = mkDig "9" ; + + oper + mk2Dig : Str -> Str -> TDigit = \c,o -> mk3Dig c o Pl ; + mkDig : Str -> TDigit = \c -> mk2Dig c (c ) ; + + mk3Dig : Str -> Str -> Number -> TDigit = \c,o,n -> { + s = table {NCard => \\g => c ; NOrd => \\g =>Ordprefix g ++ o} ; --Ordprefix g ++ + n = n} ; + + TDigit = { + n : Number ; + s : CardOrd => Gender => Str + } ; + +} diff --git a/src/kiswahili/ParadigmsKis.gf b/src/kiswahili/ParadigmsKis.gf new file mode 100644 index 000000000..bd1e894ff --- /dev/null +++ b/src/kiswahili/ParadigmsKis.gf @@ -0,0 +1,437 @@ +--# -path=.:../abstract:../../prelude:../common + +resource ParadigmsKis = open + (Predef=Predef), + Prelude, + MorphoKis, + ResKis, + CatKis + in { + +oper + Gender : Type ; + a_wa : Gender ; --m-wa + u_i : Gender ; --m-mi + li_ya : Gender ; --ji-ma + ki_vi : Gender ; --kivi + i_zi : Gender ; -- nn + u_zi : Gender ; --uu + u_u : Gender ; --uu + u_ya : Gender; + ya_ya : Gender; + i_i : Gender; + ku_ku : Gender ; --uu + pa_pa : Gender ; --uu + mu_mu : Gender ; --uu + +-- To abstract over number names, we define the following. + + Number : Type ; + + singular : Number ; + plural : Number ; + +-- To abstract over case names, we define the following. + + Case : Type ; --% + + nominative : Case ; --% + locative : Case ; --% + + + + npNumber : NP -> Number ; -- exctract the number of a noun phrase + + +--2 Nouns + +-- Nouns are constructed by the function $mkN$, which takes a varying +-- number of arguments. + + mkN : overload { + mkN : (flash : Str) -> Gender -> N ; --regular plural + mkN : (man,men : Str) ->Gender -> N ; -- irregular plural + mkN : Str -> N -> N -- e.g. chuo + kikuu compound noun + } ; + +--3 Relational nouns + mkN2 : overload { + mkN2 : N -> Prep -> N2 ; + mkN2 : N -> Str -> N2 ; + mkN2 : N -> N2 ; + mkN2 : N -> (Gender => Number => Str)-> N2 ; + } ; + +oper dfltGender : Gender = G1 ; + dfltNumber : Number = Sg ; + +-- Three-place relational nouns ("the connection from x to y") need two prepositions. + + mkN3 : N -> Prep -> Prep -> N3 ; -- e.g. connection from x to y + + + +--3 Proper names and noun phrases +-- +-- Proper names, with a regular genitive, are formed from strings. + + mkPN : overload { + + mkPN : Str ->Gender -> PN ; + +-- Sometimes a common noun can be reused as a proper name, e.g. "Bank" + + mkPN : N -> PN --% + } ; + +--3 Determiners and quantifiers + + mkOrd : Str -> Ord ; --% + +--2 Adjectives + + mkA : overload { + mkA : (happy : Str) -> A ; + mkA : (fat,fatter : Str) -> A ; -- irreg. + } ; + + +--3 Two-place adjectives + + mkA2 : overload { + mkA2 : A -> Prep -> A2 ; -- absent from + mkA2 : A -> Str -> A2 ; -- absent from --% + mkA2 : Str -> Prep -> A2 ; -- absent from --% + mkA2 : Str -> Str -> A2 -- absent from --% + + } ; + + +--2 Adverbs + +-- Adverbs are not inflected. Most lexical ones have position +-- after the verb. Some can be preverbal (e.g. "always"). + + mkAdv : Str -> Adv ; -- e.g. today + mkAdV : Str -> AdV ; -- e.g. always + +-- Adverbs modifying adjectives and sentences can also be formed. + + mkAdA : Str -> AdA ; -- e.g. quite + +-- Adverbs modifying numerals + + mkAdN : Str -> AdN ; -- e.g. approximately + +--2 Prepositions + + mkPrep : overload { + mkPrep : Str -> Prep ; + mkPrep : (Gender => Number => Str) -> Prep ; + } ; + + noPrep : Prep ; -- no preposition + +-- (These two functions are synonyms.) + +--2 Conjunctions +-- + + mkConj : overload { + mkConj : Str -> Conj ; -- and (plural agreement) --% + mkConj : Str -> Number -> Conj ; -- or (agrement number given as argument) --% + mkConj : Str -> Str -> Conj ; -- both ... and (plural) --% + mkConj : Str -> Str -> Number -> Conj ; -- either ... or (agrement number given as argument) --% + } ; + +--2 Verbs +-- + +-- Verbs are constructed by the function $mkV$, which takes a varying +-- number of arguments. + + mkV : overload { + mkV : (cry : Str) -> V ; -- regular, incl. cry-cries, kiss-kisses etc + mkV : Str -> V -> V ; -- fix compound, e.g. under+take + }; + + + + +--3 Two-place verbs +-- +-- Two-place verbs need a preposition, except the special case with direct object. +-- (transitive verbs). Notice that a particle comes from the $V$.-} + + mkV2 : overload { + mkV2 : Str -> V2 ; -- kill --% + mkV2 : V -> V2 ; -- transitive, e.g. hit + mkV2 : V -> Prep -> V2 ; -- with preposiiton, e.g. believe in + mkV2 : V -> Str -> V2 ; -- believe in --% + mkV2 : Str -> Prep -> V2 ; -- believe in --% + mkV2 : Str -> Str -> V2 -- believe in --% + }; + +--3 Three-place verbs +-- +-- Three-place (ditransitive) verbs need two prepositions, of which +-- the first one or both can be absent. + + mkV3 : overload { + mkV3 : V -> V3 ; -- ditransitive, e.g. give,_,_ + mkV3 : V -> Prep -> Prep -> V3 ; -- two prepositions, e.g. speak, with, about + mkV3 : V -> Prep -> V3 ; -- give,_,to --% + mkV3 : V -> Str -> V3 ; -- give,_,to --% + mkV3 : Str -> Str -> V3 ; -- give,_,to --% + mkV3 : Str -> V3 ; -- give,_,_ --% + }; + + +--2 Other categories + +mkSubj : Str -> Subj = \s -> lin Subj {s = s} ; --% +mkInterj : Str -> Interj + = \s -> lin Interj (ss s) ; + +--. +--2 Definitions of paradigms +-- +-- The definitions should not bother the user of the API. So they are +-- hidden from the document. + + Gender = MorphoKis.Gender ; + Number = MorphoKis.Number ; + Case = MorphoKis.NPCase ; + a_wa = G1 ;--% + u_i = G2 ; + li_ya = G3 ; + ki_vi = G4 ; + i_zi = G5 ; + u_zi = G6 ; + u_u = G7 ; + u_ya = G8 ; + ya_ya = G9 ; + i_i =G10 ; + ku_ku = G11; + pa_pa =G12 ; + mu_mu =G13; + singular = Sg ; + plural = Pl ; + nominative = npNom ; + locative = npLoc ; + + npNumber np = (agrFeatures np.a).n ; + + + regN = MorphoKis.regN ; + iregN = MorphoKis.iregN ; + + + compoundN s n = lin N {s = \\x,y => s ++ n.s ! x ! y ; g=n.g} ; + + mkPN = overload { + -- mkPN : Str -> PN = regPN ; + mkPN : Str -> Gender -> PN = regPN; + mkPN : N -> PN = nounPN + } ; + + +mkN2 = overload { + mkN2 : N -> Prep -> N2 = prepN2 ; + mkN2 : N -> Str -> N2 = \n,s -> prepN2 n (mkPrep s); + mkN2 : N -> N2 = \n -> prepN2 n (mkPrep mkPrepof ) ; + mkN2 : N -> (Number =>Gender => Str)-> N2= \n,s -> prepN2 n (mkPrep mkPrepof) ; + } ; + + prepN2 = \n,p -> lin N2 (n ** {c2 = p}) ; + regN2 = \n -> (prepN2 n (mkPrep mkPrepof )) ; + mkN3 = \n,p,q -> lin N3 (n ** {c2 = p ; c3 = q}) ; + mkPrepof : Number => Gender => Str = + table Number { Sg => table { G1 |G2|G6|G7 |G8 => "wa" ; + G3=> "la" ; + G4 => "cha" ; + G5 => "ya" ; + G11 => "pa"; + G12 => "kwa"; + G13 => "mwa"; + _ => ""} ; + + Pl => table { G1 => "wa" ; + G2|G3 |G8 |G9 |G10 => "ya" ; + G4 => "vya" ; + G5|G6 => "za" ; + _ => ""} } ; + + + + +--3 Relational common noun phrases + cnN2 : CN -> Prep -> N2 ; + cnN3 : CN -> Prep -> Prep -> N3 ; + + + cnN2 = \n,p -> lin N2 (n ** {c2 = p}) ; + cnN3 = \n,p,q -> lin N3 (n ** {c2 = p ; c3 = q}) ; + + + regPN n g = lin PN {s = table {Loc => "" ; _ => n} ; g = g} ; + + + nounPN n = lin PN {s = n.s ! singular ; g = n.g} ; + + mkOrd : Str -> Ord = \x -> lin Ord { s =\\g => x}; + + + prepA2 a p = lin A2 (a ** {c2 = p.s!Sg!G1}) ; + + mkAdv x = lin Adv (ss x) ; + mkAdV x = lin AdV (ss x) ; + mkAdA x = lin AdA (ss x) ; + mkAdN x = lin AdN (ss x) ; + + mkPrep = overload { + mkPrep : Str -> Prep = \str -> lin Prep {s = \\n,g => str } ; + mkPrep : (Number => Gender => Str) -> Prep = \t ->lin Prep {s = t} ; + } ; + + noPrep = mkPrep [] ; + {-} mkPrep : Str -> Str -> Prep = \p,q -> lin Prep + {s = table{Sg => table{G1 => p; _=> "" }; + Pl => table{G1 => q; _=> ""}}} ; + prepV2 : V -> Prep -> V2 ; + prepV2 = \v,p -> lin V2 (v ** {c2 = p.s!Sg!G1}) ; + dirV2 : V -> V2 = \v -> prepV2 v noPrep ; + + prepPrepV3 v p q = lin V3 (v ** {c2 = p ; c3 = q}) ; + dirV3 v p = prepPrepV3 v noPrep p ; + dirdirV3 v = dirV3 v noPrep ; + + + mkA2V : A -> Prep -> Prep -> A2V; + A2S, A2V : Type = A2 ; + mkA2V v p q = mkA2 v p ** {s3 = q.p2 ; c3 = q.p1 ; lock_A2V = <>} ; + + + mkAV v = v ** { lock_AV = <>} ; + mkAV : A -> AV ; + AS, AV : Type = A ; + + mkAS : A -> AS ; + mkAS v = v ** {lock_AS = <>} ; + + mkVS : V -> VS ; + mkVS v = v ** { lock_VS = <>} ; + + mkVQ : V -> VQ ; + mkVQ v = v ** {lock_VQ = <>} ; + + + -- mkVV : V -> VV ; + -- mkVV v = v ** { lock_VV = <>} ; + + mkVA : V -> VA ; + mkVA v = v ** {lock_VA = <>} ; + + mkV2V : V -> Prep -> Prep -> V2V ; + mkV2V v p q = prepPrepV3 v p q ** {lock_V2V = <>} ; + + mkV2S : V -> Prep -> V2S ; + mkV2S v p = prepV2 v p ** { lock_V2S = <>} ; + + mkV2Q : V -> Prep -> V2Q ; + mkV2Q v p = prepV2 v p ** {lock_V2Q = <>} ; + + mkV2A : V -> Prep -> Prep -> V2A ; + mkV2A v p q = prepPrepV3 v p q ** {lock_V2A = <>} ; + + + mkV0 : V -> V0 ; + V0 : Type ; + V0 : Type = V; + mkV0 v = v ** {lock_V0 = <>} ; +-} +-- pre-overload API and overload definitions + + -- regN : Str ->Gender -> N ; + --iregN : (man,men : Str) ->Gender -> N ; + compoundN : Str -> N -> N ; + + mkN = overload { + mkN : Str ->Gender -> N = \n, g -> lin N (regN n g ); + mkN : (man,men : Str) ->Gender -> N = \s,p,g -> lin N ( iregN s p g) ; + } ; +--mkN : Str -> N -> N = compoundN taken from mkN can be added later if need be +-- Relational nouns ("daughter of x") need a preposition. + + prepN2 : N -> Prep -> N2 ; + +-- The most common preposition is "of", and the following is a +-- shortcut for regular relational nouns with "of". + + regN2 : N -> N2 ; + + regA : Str -> A = \s -> lin A (MorphoKis.regA s) ; + cregA : Str -> A = \s -> lin A (MorphoKis.cregA s) ; + iregA : (fat,fatter : Str) -> A =\a,b -> lin A (MorphoKis.iregA a b); + mkA = overload { + mkA : Str -> A = \a -> lin A (regA a |cregA a); + mkA : (fat,fatter : Str) -> A =\a,b -> lin A (iregA a b); + } ; + + prepA2 : A -> Prep -> A2 ; + + mkA2 = overload { + mkA2 : A -> Prep -> A2 = prepA2 ; + mkA2 : A -> Str -> A2 = \a,p -> prepA2 a (mkPrep p) ; + mkA2 : Str -> Prep -> A2 = \a,p -> prepA2 (regA a) p; + mkA2 : Str -> Str -> A2 = \a,p -> prepA2 (regA a) (mkPrep p); + } ; + + + regV=MorphoKis.regV ; +{- + mkV = overload { + mkV : Str -> V =\v ->lin V(regV v) ; + mkV : Str -> V -> V = prefixV + }; + + + prefixV : Str -> V -> V = \p,v -> lin V { s = \\b,vform => p + v.s! b ! vform } ; + mkV2 = overload { + mkV2 : V -> V2 = dirV2 ; + mkV2 : Str -> V2 = \s -> dirV2 (regV s) ; + mkV2 : V -> Prep -> V2 = prepV2; + mkV2 : V -> Str -> V2 = \v,p -> prepV2 v (mkPrep p) ; + mkV2 : Str -> Prep -> V2 = \v,p -> prepV2 (regV v) p ; + mkV2 : Str -> Str -> V2 = \v,p -> prepV2 (regV v) (mkPrep p) + }; + + prepPrepV3 : V -> Prep -> Prep -> V3 ; + dirV3 : V -> Prep -> V3 ; + dirdirV3 : V -> V3 ; + + mkV3 = overload { + mkV3 : V -> Prep -> Prep -> V3 = prepPrepV3 ; + mkV3 : V -> Prep -> V3 = dirV3 ; + mkV3 : V -> Str -> V3 = \v,s -> dirV3 v (mkPrep s); + mkV3 : Str -> Str -> V3 = \v,s -> dirV3 (regV v) (mkPrep s); + mkV3 : V -> V3 = dirdirV3 ; + mkV3 : Str -> V3 = \v -> dirdirV3 (regV v) ; + } ; +-} + mkConj = overload { + mkConj : Str -> Conj = \y -> mk2Conj [] y plural ; + mkConj : Str -> Number -> Conj = \y,n -> mk2Conj [] y n ; + mkConj : Str -> Str -> Conj = \x,y -> mk2Conj x y plural ; + mkConj : Str -> Str -> Number -> Conj = mk2Conj ; + } ; + + mk2Conj : Str -> Str -> Number -> Conj = \x,y,n -> + lin Conj (sd2 x y ** {n = n}) ; + + regPN : Str ->Gender -> PN ; + nounPN : N -> PN ; + + + +} diff --git a/src/kiswahili/PhraseKis.gf b/src/kiswahili/PhraseKis.gf new file mode 100644 index 000000000..265316439 --- /dev/null +++ b/src/kiswahili/PhraseKis.gf @@ -0,0 +1,3 @@ +concrete PhraseKis of Phrase = CatKis ** PhraseBantu with + (ResBantu = ResKis); + \ No newline at end of file diff --git a/src/kiswahili/QuestionKis.gf b/src/kiswahili/QuestionKis.gf new file mode 100644 index 000000000..b3c2c9cb5 --- /dev/null +++ b/src/kiswahili/QuestionKis.gf @@ -0,0 +1,2 @@ +concrete QuestionKis of Question = CatKis ** QuestionBantu with + (ResBantu = ResKis); \ No newline at end of file diff --git a/src/kiswahili/RelativeKis.gf b/src/kiswahili/RelativeKis.gf new file mode 100644 index 000000000..e10032bb8 --- /dev/null +++ b/src/kiswahili/RelativeKis.gf @@ -0,0 +1,2 @@ +concrete RelativeKis of Relative = CatKis ** RelativeBantu with + (ResBantu = ResKis); \ No newline at end of file diff --git a/src/kiswahili/ResKis.gf b/src/kiswahili/ResKis.gf new file mode 100644 index 000000000..94a501241 --- /dev/null +++ b/src/kiswahili/ResKis.gf @@ -0,0 +1,8 @@ +--# -path=.:../abstract:../common:../../prelude + +--1 Swalish auxiliary operations. + +instance ResKis of ResBantu = DiffKis, CommonBantu ** open Prelude in { + +} ; + diff --git a/src/kiswahili/SentenceKis.gf b/src/kiswahili/SentenceKis.gf new file mode 100644 index 000000000..ef3ddc737 --- /dev/null +++ b/src/kiswahili/SentenceKis.gf @@ -0,0 +1,3 @@ +concrete SentenceKis of Sentence = CatKis ** SentenceBantu with + (ResBantu = ResKis); + diff --git a/src/kiswahili/StructuralKis.gf b/src/kiswahili/StructuralKis.gf new file mode 100644 index 000000000..2967c2fc0 --- /dev/null +++ b/src/kiswahili/StructuralKis.gf @@ -0,0 +1,200 @@ +concrete StructuralKis of Structural = CatKis ** + open MorphoKis, ParadigmsKis, + (C = ConstructX), Prelude in { + flags optimize=all ; + lin + above_Prep = mkPrep "juu ya" ; + after_Prep = mkPrep "baada ya" ; + all_Predet = {s = \\g => Allpredetprefix g + "ote"} ; + almost_AdA = mkAdA "karibu " ; + almost_AdN = mkAdN "nusura " ; + although_Subj = ss "ingawa" ; + always_AdV = mkAdV "dawama" ; + and_Conj = mkConj "na" ; + because_Subj = ss "maana" ; + before_Prep = mkPrep "kabla ya" ; + behind_Prep = mkPrep "baada" ; + between_Prep = mkPrep "katikati" ; + both7and_DConj = mkConj "eli" "na"; + but_PConj = ss "ila" ; + by8agent_Prep = mkPrep "kwa" ; + by8means_Prep = mkPrep "kwa" ; +-- can8know_VV, can_VV = { + during_Prep = mkPrep "katika" ; + either7or_DConj = mkConj "ama" singular ; + everybody_NP = regNP "kila mtu" a_wa singular ; + every_Det = { s = table {Sub => "kila"; Obj g =>[]} ;n = Sg} ; + everything_NP = regNP "kila kitu" ki_vi singular ; + everywhere_Adv = mkAdv "kila sehemu" ; + few_Det = {s = table {Obj g => Few_prefix g + "chache" ; + Sub => [] }; + n= Pl + } ; + for_Prep = mkPrep nonExist ; + from_Prep = mkPrep "tokea" ; + he_Pron = mkPron "yeye" "ake" G1 Sg P3 ; + here_Adv = mkAdv "hapa" ; + here7to_Adv = mkAdv ["huko"] ; + here7from_Adv = mkAdv ["hapa"] ; + how_IAdv = ss "upi" ; + how8much_IAdv = ss "ngapi" ; + if_Subj = ss "Kama" ; + in8front_Prep = mkPrep ["umbele "] ; + i_Pron =mkPron "mimi" "angu" G1 Sg P1 ; + in_Prep = mkPrep "ndani" ; + it_Pron ={ s=\\c=>nonExist; poss=\\n,g=> nonExist; a=Ag G4 Sg P3}; + --less_CAdv = C.mkCAdv "kasoro" ; + much_Det, many_Det = { s = table { + Obj g => Many_prefix g + "ngi" ; + Sub => []} ; + n= Pl + } ; + more_Adv = mkAdv "zaidi" ; + most_Predet = {s = \\g => MorphoKis.Mostpredetprefix g + "ngi"} ; + -- must_VV = { +---b no_Phr = ss "no" ; + no_Utt = ss "hapana" ; + on_Prep = mkPrep "juu ya" ; + one_Quant = {s = \\n,g => "moja" } ; + only_Predet = {s = \\g => "tu" } ; + or_Conj = mkConj "kana" singular ; + otherwise_PConj = ss "ila" ; + please_Voc = ss "tafadhari" ; + part_Prep, possess_Prep = let + questo : ParadigmsKis.Number => MorphoKis.Gender => Str = table { + Sg => \\g=> case of { => "la" ; + => "cha" ; + => "ya" ; + => "pa"; + => "kwa"; + => "mwa"; + ||| | => "wa" ; + _ => ""}; + + Pl => \\g=> case of{ => "wa" ; + => "vya" ; + | => "za" ; + | | | | => "ya"; + _ => ""}} + in { s= questo}; + quite_Adv = mkAdv "kabisa" ; + she_Pron = mkPron "yeye" "ake" G1 Sg P3; + so_AdA = mkAdA "so" ; + somebody_NP = regNP "mtu fulani" a_wa singular; + someSg_Det = { s = table { + Obj g => Detsomesgprefix g + "ngi"; + Sub => []} ; + n= Sg + } ; + somePl_Det = { s = table { + Obj g => Detsomeplprefix g + "ngi" ; + Sub => []} ; + n= Pl + } ; + something_NP = regNP "kitu fulani" ki_vi singular ; + somewhere_Adv = mkAdv "seheme fulani" ; + that_Quant = let + questo : ParadigmsKis.Number => MorphoKis.Gender => Str = table { + Sg => \\g=> case of { + => "huyo" ; + => "huo"; + => "hilo"; + => "hicho"; + => "hiyo"; + => "huo"; + => "huo"; + => "huo" ; + => "hapo"; + => "huko"; + => "humo"; + | => "" + }; + + Pl => \\g=> case of{ + => "hao" ; + => "hiyo"; + => "hayo"; + => "hivyo"; + => "hizo"; + => "hizo"; + => "hayo" ; + => "hiyo"; + => "huko"; + => "humo"; + _ => "" + } + + }; + in { + s = questo ; + } ; + there_Adv = mkAdv "hapo" ; + there7to_Adv = mkAdv "hapa kuvika" ; + there7from_Adv = mkAdv ["hapa kutoka"] ; + therefore_PConj = ss "kwa ajili" ; + they_Pron =mkPron "wao" "ao" G1 Pl P3 ; + this_Quant = let + questo : ParadigmsKis.Number => MorphoKis.Gender => Str = table { + Sg => \\g=> case of { + => "huyu" ; + => "hapa" ; + => "huku" ; + => "humu" ; + => "hiki"; + => "hili"; + => "hii"; + |=> ""; + || | => "huu" + }; + + Pl => \\g=> case of{ + => "hawa" ; + => "hivi"; + | => "hizi"; + | => "hii"; + || => "haya"; + _=> "" + } + + } + in { + s = questo ; + } ; + through_Prep = mkPrep "kuvitila" ; + too_AdA = mkAdA "vile" ; + to_Prep = mkPrep "kuvika" ; + under_Prep = mkPrep "chini ya" ; + very_AdA = mkAdA "mno" ; + -- want_VV = mkVV (regV "enda") ; + we_Pron =mkPron "sisi" "etu" G1 Pl P1 ; + --whatPl_IP = mkIP "ata" "ata" plural ; + -- whatSg_IP = mkIP "ata" "ata" singular ; + when_IAdv = ss "madhali" ; + when_Subj = ss "madhali" ; + where_IAdv = ss "wapi" ; + which_IQuant = {s = \\_ => "wapi"} ; +---b whichPl_IDet = mkDeterminer plural ["which"] ; +---b whichSg_IDet = mkDeterminer singular ["which"] ; + -- whoPl_IP = mkIP "uu" "whom" "whose" plural ; + -- whoSg_IP = mkIP "who" "whom" "whose" singular ; + why_IAdv = ss "kwa nini" ; + without_Prep = mkPrep "bila" ; + with_Prep = mkPrep "pamoja na" ; + --yes_Phr = ss "ii" ; + yes_Utt = ss "ndio" ; + youSg_Pron = mkPron "wewe" "ako" G1 Sg P2 ; + youPol_Pron,youPl_Pron = mkPron "nyinyi" "enyu" G1 Pl P3 ; + not_Predet = {s = \\g => "nongi"} ; + no_Quant = {s = \\g,n => "hakuna"} ; + if_then_Conj = mkConj "kama" "basi" singular ; + nobody_NP = regNP "hakuna mtu" a_wa singular ; + nothing_NP = regNP "hukuna kitu" ki_vi singular ; + at_least_AdN = mkAdN "" ; + at_most_AdN = mkAdN "kuvika" ; + except_Prep = mkPrep "kasoro" ; + -- as_CAdv = C.mkCAdv "kama" ; + -- have_V2 = dirV2 (mk5V "have" "has" "had" "had" "having") ; + that_Subj = ss "hio" ; + lin language_title_Utt = ss "kiswahili" ; +} + diff --git a/src/kiswahili/VerbKis.gf b/src/kiswahili/VerbKis.gf new file mode 100644 index 000000000..b33f1b827 --- /dev/null +++ b/src/kiswahili/VerbKis.gf @@ -0,0 +1,2 @@ +concrete VerbKis of Verb = CatKis ** VerbBantu with + (ResBantu = ResKis); From 479a44b6a0bc9f66df414016895b210e9c325e2f Mon Sep 17 00:00:00 2001 From: Aarne Ranta Date: Wed, 3 Oct 2018 12:54:00 +0200 Subject: [PATCH 003/172] added ParadigmsSwe.auxV2V --- src/swedish/ParadigmsSwe.gf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/swedish/ParadigmsSwe.gf b/src/swedish/ParadigmsSwe.gf index c3888d69a..b23157918 100644 --- a/src/swedish/ParadigmsSwe.gf +++ b/src/swedish/ParadigmsSwe.gf @@ -307,6 +307,7 @@ oper mkV2V : V -> V2V ; mkV2V : V -> Prep -> Prep -> V2V ; } ; + auxV2V : V -> V2V ; mkVA : V -> VA ; mkV2A : overload { @@ -762,6 +763,8 @@ oper mkV2V : (x,y,z,u,v,w : Str) -> V2V = \x,y,z,u,v,w -> mmkV2 (mkV x y z u v w) (mkPrep []) ** {c3 = mkComplement "att" ; lock_V2V = <>} ; } ; + auxV2V v = mkV2V v (mkPrep []) (mkPrep []) ; + mkV2Q = overload { mkV2Q : V -> V2Q = \v -> lin V2Q (mmkV2 v (mkPrep [])) ; mkV2Q : V -> Prep -> V2Q = \v, p -> lin V2Q (mmkV2 v p) ; From c0ce5371043279001a11b80e0a98503433db5ee7 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 5 Oct 2018 10:39:06 +0200 Subject: [PATCH 004/172] (Fin) Add CompoundN --- src/finnish/ExtendFin.gf | 35 +++++++++++++++++++++-------------- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/src/finnish/ExtendFin.gf b/src/finnish/ExtendFin.gf index cc6ac85b5..801c7cdb3 100644 --- a/src/finnish/ExtendFin.gf +++ b/src/finnish/ExtendFin.gf @@ -4,6 +4,7 @@ concrete ExtendFin of Extend = CatFin ** ExtendFunctor - [ VPI2,VPS2,MkVPS2,ConjVPS2,ComplVPS2,MkVPI2,ConjVPI2,ComplVPI2,ComplVPIVV ,ExistCN, ExistMassCN + ,CompoundN ] with (Grammar = GrammarFin) ** @@ -28,27 +29,27 @@ lin oper partCN : CN -> GrammarFin.NP ; - partCN cn = - let + partCN cn = + let acn = DetCN (DetQuant IndefArt NumSg) cn in acn ** { s = table { NPCase Nom | NPAcc => acn.s ! NPCase ResFin.Part ; c => acn.s ! c } - } ; + } ; lincat VPS = {s : Agr => Str } ; - [VPS] = {s1,s2 : Agr => Str } ; + [VPS] = {s1,s2 : Agr => Str } ; VPI = {s : VVType => Agr => Str ; sc : SubjCase } ; -- Agr needed for possessive suffix: [VPI] = {s1,s2 : VVType => Agr => Str ; sc : SubjCase } ; -- e.g. toivon nukkuva+ni lin BaseVPS = twoTable Agr ; ConsVPS = consrTable Agr comma ; - + BaseVPI = twoTable2 VVType Agr ; ConsVPI = consrTable2 VVType Agr comma ; @@ -56,10 +57,10 @@ oper ConjVPS c xs = conjunctDistrTable Agr c xs ; PredVPS np vps = {s = np.s ! npNom ++ vps.s ! np.a} ; - + MkVPI vp = mkVPI vp ; ConjVPI c xs = conjunctDistrTable2 VVType Agr c xs ; - ComplVPIVV vv vpi = + ComplVPIVV vv vpi = S.insertObj (\\_,_,a => vpi.s ! vv.vi ! a) (S.predV (vv ** {sc = case vpi.sc of { SCNom => vv.sc ; -- minun täytyy pestä auto @@ -71,8 +72,8 @@ oper lincat -- Polarity needed to pick the right object case - VPS2 = {s : Agr => Str ; c2 : Compl ; p : Polarity } ; - [VPS2] = {s1,s2 : Agr => Str ; c2 : Compl ; p : Polarity } ; + VPS2 = {s : Agr => Str ; c2 : Compl ; p : Polarity } ; + [VPS2] = {s1,s2 : Agr => Str ; c2 : Compl ; p : Polarity } ; -- A version with VPI2 = {s : VVType => Agr => Str ; c2 : Compl ; sc : SubjCase } ; [VPI2] = {s1,s2 : VVType => Agr => Str ; c2 : Compl ; sc : SubjCase } ; @@ -86,7 +87,7 @@ oper BaseVPS2 x y = twoTable Agr x y ** {c2 = y.c2 ; p = xs.p } ; ---- just remembering the compl. case of the latter verb ConsVPS2 x xs = consrTable Agr comma x xs ** {c2 = xs.c2 ; p = xs.p } ; - + BaseVPI2 x y = twoTable2 VVType Agr x y ** {c2 = y.c2} ; ---- just remembering the compl. case of the latter verb ConsVPI2 x xs = consrTable2 VVType Agr comma x xs ** {c2 = xs.c2} ; @@ -95,18 +96,24 @@ oper ConjVPI2 c xs = conjunctDistrTable2 VVType Agr c xs ** {c2 = xs.c2 ; p = xs.p ; sc = xs.sc } ; - -- appCompl : Bool -> Polarity -> Compl -> ResFin.NP -> Str + -- appCompl : Bool -> Polarity -> Compl -> ResFin.NP -> Str ComplVPS2 v np = { s = \\agr => v.s ! agr ++ appCompl True v.p v.c2 np } ; -- TODO: Version with variable polarity? ComplVPI2 v np = v ** { s = \\vt,a => v.s ! vt ! a ++ appCompl True Pos v.c2 np }; -oper +oper mkVPS : Temp -> Pol -> VP -> VPS = \tem,pol,vp -> lin VPS { s = \\agr => (UseCl tem pol (S.mkClause (\_ -> []) agr vp)).s } ; - mkVPI : VP -> VPI = \vp -> lin VPI { + mkVPI : VP -> VPI = \vp -> lin VPI { s = \\vt,agr => S.infVP vp.s.sc Pos agr vp (vvtype2infform vt) ; sc = vp.s.sc } ; -} \ No newline at end of file +lin + CompoundN n1 n2 = + let ukkos_ = (S.snoun2nounBind n1).s ! NCompound in { + s = \\c => ukkos_ ++ BIND ++ n2.s ! c ; + h = n2.h + } ; +} From 84f53ba0862d3883b432a1e117629a06822ec989 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 5 Oct 2018 15:47:30 +0200 Subject: [PATCH 005/172] (Fin) Fix vowel harmony bug in a verb constructor --- src/finnish/MorphoFin.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/finnish/MorphoFin.gf b/src/finnish/MorphoFin.gf index 1777347c5..e1a2580ec 100644 --- a/src/finnish/MorphoFin.gf +++ b/src/finnish/MorphoFin.gf @@ -750,7 +750,7 @@ resource MorphoFin = ResFin ** open Prelude in { vat = "v" + a + "t" ; liene = init lienee ; tulta = tult + a ; - tulevaP = (noun2adj (nhn (sKukko tuleva (tuleva + "n") (init tuleva + "ia")))).s ; + tulevaP = (noun2adj (nhn (sKukko tuleva (tuleva + "n") (init tuleva + "i" + a)))).s ; tultavaP = (noun2adj (nhn (sKukko (tulta + "v" + a) (tulta + "v" + a + "n") (tulta + "vi" + a)))).s ; tulemaP = (noun2adj (nhn (sKukko tulema (tulema + "n") (init tulema + "i" + a)))).s ; From d13c34e641bef18d70800d4e6d1df694e0436f71 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 5 Oct 2018 15:50:24 +0200 Subject: [PATCH 006/172] (Fin) Add new constructor for V -> A: present participle into adjective. --- src/finnish/ParadigmsFin.gf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/finnish/ParadigmsFin.gf b/src/finnish/ParadigmsFin.gf index 216b49746..bea18dd6a 100644 --- a/src/finnish/ParadigmsFin.gf +++ b/src/finnish/ParadigmsFin.gf @@ -642,6 +642,7 @@ mkVS = overload { mkA : (hyva,parempi,paras : N) -> (hyvin,paremmin,parhaiten : Str) -> A = \h,p,ps,hn,pn,ph -> lin A (mkAdj h p ps hn pn ph) ; + mkA : V -> A = presPartA ; } ; mkA_1 : Str -> A = \x -> lin A (noun2adjDeg (mk1N x)) ; @@ -667,7 +668,14 @@ mkVS = overload { (snoun2compar suuri) (snoun2superl suuri) ; + + presPartA : SVerb -> A = \tullaSV -> + let tulla = sverb2verb True tullaSV ; + tuleva : NForm => Str = \\nf => tulla.s ! PresPartAct (AN nf) ; + tuleva_SN = { s = tuleva ; + h = tullaSV.h } ; + in noun2adjDeg tuleva_SN ; -- verbs From 63587ac745ba673ef3f889f76e36541e89d8bce8 Mon Sep 17 00:00:00 2001 From: bruno cuconato Date: Sat, 6 Oct 2018 04:12:54 +0000 Subject: [PATCH 007/172] (Romance) add subjVS oper to Cat,Ita,Por,Spa (#37) * (Por) correct paradigm and use overloaded paradigms in Lexicon * (Romance) add subjVS oper to Cat,Ita,Por,Spa already present in French --- src/catalan/ParadigmsCat.gf | 2 ++ src/italian/ParadigmsIta.gf | 2 ++ src/portuguese/ParadigmsPor.gf | 3 +++ src/spanish/ParadigmsSpa.gf | 2 ++ 4 files changed, 9 insertions(+) diff --git a/src/catalan/ParadigmsCat.gf b/src/catalan/ParadigmsCat.gf index 5c9cbac56..b4947813b 100644 --- a/src/catalan/ParadigmsCat.gf +++ b/src/catalan/ParadigmsCat.gf @@ -258,6 +258,7 @@ oper mkV0 : V -> V0 ; --% mkVS : V -> VS ; + subjVS : V -> VS ; mkV2S : V -> Prep -> V2S ; mkVV : V -> VV ; -- plain infinitive: "vull parlar" deVV : V -> VV ; -- "acabar de parlar" @@ -448,6 +449,7 @@ oper mkV0 v = v ** {lock_V0 = <>} ; mkVS v = v ** {m = \\_ => Indic ; lock_VS = <>} ; ---- more moods + subjVS v = v ** {m = \\_ => Conjunct ; lock_VS = <>} ; mkV2S v p = mk2V2 v p ** {mn,mp = Indic ; lock_V2S = <>} ; mkVV v = v ** {c2 = complAcc ; lock_VV = <>} ; deVV v = v ** {c2 = complGen ; lock_VV = <>} ; diff --git a/src/italian/ParadigmsIta.gf b/src/italian/ParadigmsIta.gf index f8682ba65..15193fba0 100644 --- a/src/italian/ParadigmsIta.gf +++ b/src/italian/ParadigmsIta.gf @@ -273,6 +273,7 @@ oper mkV0 : V -> V0 ; --% mkVS : V -> VS ; + subjVS : V -> VS ; mkVV : V -> VV ; -- plain infinitive: "voglio parlare" deVV : V -> VV ; -- "cerco di parlare" aVV : V -> VV ; -- "arrivo a parlare" @@ -429,6 +430,7 @@ oper mkV0 v = v ** {lock_V0 = <>} ; mkVS v = v ** {m = \\_ => Indic ; lock_VS = <>} ; ---- more moods + subjVS v = v ** {m = \\_ => Conjunct ; lock_VS = <>} ; mkVV v = v ** {c2 = complAcc ; lock_VV = <>} ; deVV v = v ** {c2 = complGen ; lock_VV = <>} ; aVV v = v ** {c2 = complDat ; lock_VV = <>} ; diff --git a/src/portuguese/ParadigmsPor.gf b/src/portuguese/ParadigmsPor.gf index 0d284c019..38de771b2 100644 --- a/src/portuguese/ParadigmsPor.gf +++ b/src/portuguese/ParadigmsPor.gf @@ -432,6 +432,9 @@ oper mkVS : V -> VS ; mkVS v = v ** {m = \\_ => Indic ; lock_VS = <>} ; ---- more moods + subjVS : V -> VS ; + subjVS v = v ** {m = \\_ => Conjunct ; lock_VS = <>} ; + mkVV : V -> VV ; -- plain infinitive: "quero falar" mkVV v = v ** {c2 = complAcc ; lock_VV = <>} ; diff --git a/src/spanish/ParadigmsSpa.gf b/src/spanish/ParadigmsSpa.gf index 6f7f84f92..08f3cc3d6 100644 --- a/src/spanish/ParadigmsSpa.gf +++ b/src/spanish/ParadigmsSpa.gf @@ -272,6 +272,7 @@ oper mkV0 : V -> V0 ; --% mkVS : V -> VS ; + subjVS : V -> VS ; mkVV : V -> VV ; -- plain infinitive: "quiero hablar" deVV : V -> VV ; -- "terminar de hablar" @@ -460,6 +461,7 @@ oper mkV0 v = v ** {lock_V0 = <>} ; mkVS v = v ** {m = \\_ => Indic ; lock_VS = <>} ; ---- more moods + subjVS v = v ** {m = \\_ => Conjunct ; lock_VS = <>} ; mkVV v = v ** {c2 = complAcc ; lock_VV = <>} ; deVV v = v ** {c2 = complGen ; lock_VV = <>} ; From d4f2df8aa425324d86e95aa2477101a4ad9d6290 Mon Sep 17 00:00:00 2001 From: bruno cuconato Date: Sat, 6 Oct 2018 04:14:24 +0000 Subject: [PATCH 008/172] (Por) add lins (#35) * (Por) correct paradigm and use overloaded paradigms in Lexicon * (Por) add Str -> V3 paradigm * (Por) small fixes * adjust import list and add Mood to VPS * (Por) add compoundN to ExtendPor * (Por) add CompoundAP GerundCN ICompAP IAdvAdv CompIQuant PrepCN --- src/portuguese/ExtendPor.gf | 59 +++++++++++++++++++++++++++++++++---- src/portuguese/IdiomPor.gf | 12 +++++++- 2 files changed, 65 insertions(+), 6 deletions(-) diff --git a/src/portuguese/ExtendPor.gf b/src/portuguese/ExtendPor.gf index 2130689e5..6719ca65d 100644 --- a/src/portuguese/ExtendPor.gf +++ b/src/portuguese/ExtendPor.gf @@ -3,11 +3,33 @@ concrete ExtendPor of Extend = CatPor ** ExtendFunctor - [ - GenNP, GenIP, GenModNP, GenModIP, iFem_Pron, weFem_Pron, youFem_Pron - , youPlFem_Pron, youPolPl_Pron, youPolFem_Pron, youPolPlFem_Pron, theyFem_Pron - , ProDrop, PassVPSlash, ExistsNP, VPS, ListVPS, BaseVPS, ConsVPS, PassVPSlash - , ExistsNP, CompoundN - ] -- put the names of your own definitions here + BaseVPS, + CompoundAP, + CompoundN, + ConsVPS, + ExistsNP, + GenIP, + GenModIP, + GenModNP, + GenNP, + GerundCN, + IAdvAdv, + ICompAP, + iFem_Pron, + ListVPS, + PassVPSlash, + PassVPSlash, + ProDrop, + theyFem_Pron, + VPS, + weFem_Pron, + youFem_Pron, + youPlFem_Pron, + youPolFem_Pron, + youPolPl_Pron, + youPolPlFem_Pron + ] -- don't forget to put the names of your own + -- definitions here with (Grammar = GrammarPor), (Syntax = SyntaxPor) ** open @@ -58,6 +80,19 @@ concrete ExtendPor of Extend = isNeg = False } ; + ICompAP ap = { + s =\\a => "o quão" ++ ap.s ! AF a.g a.n ; + cop = serCopula + } ; + + IAdvAdv adv = { + s = "o quão" ++ adv.s + } ; + + CompIQuant iq = {s = \\aa => iq.s ! aa.n ! aa.g ! Nom ; cop = serCopula} ; + + PrepCN prep cn = {s = prep.s ++ prepCase prep.c ++ cn.s ! Sg} ; + lin PassVPSlash vps = let auxvp = predV copula @@ -87,6 +122,20 @@ concrete ExtendPor of Extend = g = noun2.g } ; + CompoundAP noun adj = { + s = \\af => case af of { + AF g n => adj.s ! Posit ! AF noun.g n ++ "de" ++ noun.s ! n ; + -- do I need do(s)/da(s)? + _ => adj.s ! Posit ! AF noun.g Sg ++ "de" ++ noun.s ! Sg + } ; + isPre = adj.isPre + } ; + + GerundCN vp = { + s = \\n => infVP vp {g = Masc ; n = n ; p = P3} ; + g = Masc + } ; + lin -- Romance iFem_Pron = pronAgr S.i_Pron Fem Sg P1 ; diff --git a/src/portuguese/IdiomPor.gf b/src/portuguese/IdiomPor.gf index 39b99578f..fb14ea638 100644 --- a/src/portuguese/IdiomPor.gf +++ b/src/portuguese/IdiomPor.gf @@ -20,13 +20,23 @@ concrete IdiomPor of Idiom = CatPor ** ExistNP np = mkClause [] True False (agrP3 Masc Sg) - (insertComplement (\\_ => (np.s ! Acc).ton) (predV B.haver_V)) ; + (insertComplement (\\_ => (np.s ! Acc).ton) (predV B.haver_V)) ; + ExistIP ip = { s = \\t,a,p,_ => ip.s ! Nom ++ (mkClause [] True False (agrP3 Masc Sg) (predV B.haver_V)).s ! DDir ! t ! a ! p ! Indic } ; + ExistNPAdv np adv = mkClause [] True False (agrP3 Masc Sg) (insertComplement (\\_ => (np.s ! Acc).ton ++ adv.s) (predV B.haver_V)) ; + + ExistIPAdv ip adv = { + s = \\t,a,p,_ => + ip.s ! Nom ++ + (mkClause [] True False (agrP3 Masc Sg) (predV B.haver_V)).s ! DDir ! t ! a ! p ! Indic + ++ adv.s + } ; + ProgrVP vp = insertComplement (\\agr => From 9aa31fdcdd2f473802e6d7fe8dadfba7dc600a4b Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 8 Oct 2018 16:10:41 +0200 Subject: [PATCH 009/172] (Fin) Add prefix field to A --- src/finnish/AdjectiveFin.gf | 43 +++++++++++++++++++++-------------- src/finnish/CatFin.gf | 4 ++-- src/finnish/ConjunctionFin.gf | 2 +- src/finnish/NounFin.gf | 4 +++- src/finnish/ParadigmsFin.gf | 25 ++++++++++++-------- 5 files changed, 48 insertions(+), 30 deletions(-) diff --git a/src/finnish/AdjectiveFin.gf b/src/finnish/AdjectiveFin.gf index d725780fb..227695dea 100644 --- a/src/finnish/AdjectiveFin.gf +++ b/src/finnish/AdjectiveFin.gf @@ -5,54 +5,63 @@ concrete AdjectiveFin of Adjective = CatFin ** open ResFin, StemFin, Prelude in lin - PositA a = { + PositA a = a ** { s = \\_ => sAdjFull2nforms Posit a ; } ; - ComparA a np = - let acomp = sAdjFull2nforms Compar a in { + ComparA a np = + let acomp = sAdjFull2nforms Compar a in a ** { s = \\isMod,af => case isMod of { True => np.s ! NPCase Part ++ acomp ! af ; -- minua isompi _ => acomp ! af ++ "kuin" ++ np.s ! NPSep -- isompi kuin minä - } + } ; + hasPrefix = False } ; - CAdvAP ad ap np = { - s = \\m,af => ad.s ++ ap.s ! m ! af ++ ad.p ++ np.s ! NPSep + CAdvAP ad ap np = ap ** { + s = \\m,af => ad.s ++ ap.s ! m ! af ++ ad.p ++ np.s ! NPSep ; + hasPrefix = False } ; - UseComparA a = { + UseComparA a = a ** { s = \\_ => sAdjFull2nforms Compar a } ; -- $SuperlA$ belongs to determiner syntax in $Noun$. AdjOrd ord = { - s = \\_ => ord.s + s = \\_ => ord.s ; + p = [] ; hasPrefix = False } ; ComplA2 a np = { s = \\isMod,af => - preOrPost isMod (appCompl True Pos a.c2 np) (sAdjFull2nforms Posit a ! af) + preOrPost isMod (appCompl True Pos a.c2 np) (sAdjFull2nforms Posit a ! af) ; + p = [] ; hasPrefix = False } ; ReflA2 a = { s = \\isMod,af => preOrPost isMod - (appCompl True Pos a.c2 (reflPron (agrP3 Sg))) (sAdjFull2nforms Posit a ! af) + (appCompl True Pos a.c2 (reflPron (agrP3 Sg))) (sAdjFull2nforms Posit a ! af) ; + p = [] ; hasPrefix = False } ; - SentAP ap sc = { - s = \\b,a => ap.s ! b ! a ++ sc.s + SentAP ap sc = ap ** { + s = \\b,a => ap.s ! b ! a ++ sc.s ; + hasPrefix = False } ; - AdAP ada ap = { - s = \\b,af => ada.s ++ ap.s ! b ! af + AdAP ada ap = ap ** { + s = \\b,af => ada.s ++ ap.s ! b ! af ; + hasPrefix = False } ; - AdvAP ap adv = { - s = \\b,af => adv.s ++ ap.s ! b ! af -- luonnostaan vaalea + AdvAP ap adv = ap ** { + s = \\b,af => adv.s ++ ap.s ! b ! af ; -- luonnostaan vaalea + hasPrefix = False } ; UseA2 a = { - s = \\_ => sAdjFull2nforms Posit a + s = \\_ => sAdjFull2nforms Posit a ; + p = [] ; hasPrefix = False } ; } diff --git a/src/finnish/CatFin.gf b/src/finnish/CatFin.gf index 3607e78e5..e6e8f174e 100644 --- a/src/finnish/CatFin.gf +++ b/src/finnish/CatFin.gf @@ -42,7 +42,7 @@ concrete CatFin of Cat = CommonX ** open ResFin, StemFin, Prelude in { -- The $Bool$ tells whether usage is modifying (as opposed to -- predicative), e.g. "x on suurempi kuin y" vs. "y:tä suurempi luku". - AP = {s : Bool => NForm => Str} ; + AP = {s : Bool => NForm => Str ; p : Str ; hasPrefix : Bool} ; -- Noun @@ -89,7 +89,7 @@ concrete CatFin of Cat = CommonX ** open ResFin, StemFin, Prelude in { V2V = SVerb1 ** {c2 : Compl ; vi : VVType} ; ---- infinitive form V3 = SVerb1 ** {c2, c3 : Compl} ; - A = {s : Degree => SAForm => Str ; h : Harmony} ; + A = {s : Degree => SAForm => Str ; h : Harmony ; p : Str ; hasPrefix : Bool} ; A2 = {s : Degree => SAForm => Str ; h : Harmony ; c2 : Compl} ; N = SNoun ; diff --git a/src/finnish/ConjunctionFin.gf b/src/finnish/ConjunctionFin.gf index ba95340ad..9fb39a33d 100644 --- a/src/finnish/ConjunctionFin.gf +++ b/src/finnish/ConjunctionFin.gf @@ -16,7 +16,7 @@ concrete ConjunctionFin of Conjunction = isPron = False ; isNeg = ss.isNeg } ; - ConjAP conj ss = conjunctDistrTable2 Bool NForm conj ss ; + ConjAP conj ss = conjunctDistrTable2 Bool NForm conj ss ** { hasPrefix = False ; p = [] } ; ConjRS conj ss = conjunctDistrTable Agr conj ss ** { c = ss.c diff --git a/src/finnish/NounFin.gf b/src/finnish/NounFin.gf index e395290d2..7daa3e62b 100644 --- a/src/finnish/NounFin.gf +++ b/src/finnish/NounFin.gf @@ -215,7 +215,9 @@ concrete NounFin of Noun = CatFin ** open ResFin, MorphoFin, StemFin, Prelude in } ; AdjCN ap cn = { - s = \\nf => ap.s ! True ! (n2nform nf) ++ cn.s ! nf ; + s = case ap.hasPrefix of { + True => \\nf => ap.p ++ BIND ++ cn.s ! nf ; + False => \\nf => ap.s ! True ! (n2nform nf) ++ cn.s ! nf } ; h = cn.h } ; RelCN cn rs = {s = \\nf => cn.s ! nf ++ BIND ++ "," ++ rs.s ! agrP3 (numN nf) ; diff --git a/src/finnish/ParadigmsFin.gf b/src/finnish/ParadigmsFin.gf index bea18dd6a..c643b892d 100644 --- a/src/finnish/ParadigmsFin.gf +++ b/src/finnish/ParadigmsFin.gf @@ -177,17 +177,23 @@ oper } ; invarA : Str -> A -- invariant adjective, e.g. "kelpo" - = \s -> lin A {s = \\_,_ => s ; h = Back} ; ----- stemming adds bogus endings + = \s -> lin A {s = \\_,_ => s ; h = Back ; p = [] ; hasPrefix = False} ; ----- stemming adds bogus endings + prefixA : Str -> A -> A = \pr,a -> a ** { + p = pr ; + hasPrefix = True + } ; + -- Two-place adjectives need a case for the second argument. mkA2 = overload { mkA2 : Str -> A2 -- e.g. "vihainen" (jollekin) - = \s -> mkA s ** {c2 = mkPrep allative ; lock_A2 = <>} ; + = \a -> let adj = mkA a ; + in lin A2 (adj ** {c2 = casePrep allative}) ; mkA2 : Str -> Prep -> A2 -- e.g. "jaollinen" (mkPrep adessive) - = \a,p -> mkA a ** {c2 = p ; lock_A2 = <>} ; + = \a,p -> let adj = mkA a in lin A2 (adj ** {c2=p}) ; mkA2 : A -> Prep -> A2 -- e.g. "jaollinen" (mkPrep adessive) - = \a,p -> a ** {c2 = p ; lock_A2 = <>} ; + = \a,p -> lin A2 (a ** {c2 = p}) ; } ; @@ -637,25 +643,26 @@ mkVS = overload { mkA = overload { mkA : Str -> A = mkA_1 ; mkA : N -> A = \n -> noun2adjDeg n ** {lock_A = <>} ; - mkA : N -> (kivempaa,kivinta : Str) -> A = \n -> regAdjective n ; + mkA : N -> (kivempi,kivin : Str) -> A = \n -> regAdjective n ; mkA : (sana : AK) -> A = \w -> noun2adjDeg (nforms2snoun w.s) ; mkA : (hyva,parempi,paras : N) -> (hyvin,paremmin,parhaiten : Str) -> A - = \h,p,ps,hn,pn,ph -> lin A (mkAdj h p ps hn pn ph) ; - mkA : V -> A = presPartA ; + = \h,p,ps,hn,pn,ph -> lin A (mkAdj h p ps hn pn ph ** {p=[]; hasPrefix=False}) ; + mkA : V -> A = presActA ; } ; mkA_1 : Str -> A = \x -> lin A (noun2adjDeg (mk1N x)) ; -- auxiliaries - mkAdjective : (_,_,_ : SAdj) -> A = \hyva,parempi,paras -> + mkAdjective : (_,_,_ : SAdj) -> A = \hyva,parempi,paras -> lin A {s = table { Posit => hyva.s ; Compar => parempi.s ; Superl => paras.s } ; h = hyva.h ; ---- different for parempi, paras - lock_A = <> + p = [] ; + hasPrefix = False } ; regAdjective : SNoun -> Str -> Str -> A = \kiva, kivempi, kivin -> mkAdjective From b7d2ff99c09c879dba8a1b48ce142f40f9199404 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 8 Oct 2018 16:11:44 +0200 Subject: [PATCH 010/172] (Fin) Remove redundant distinctions from NewDictFin --- src/finnish/NewDictFin.gf | 51 ++++++++++++++---------------------- src/finnish/NewDictFinAbs.gf | 51 ++++++++++++++---------------------- 2 files changed, 38 insertions(+), 64 deletions(-) diff --git a/src/finnish/NewDictFin.gf b/src/finnish/NewDictFin.gf index d92da5c7c..8e79b647b 100644 --- a/src/finnish/NewDictFin.gf +++ b/src/finnish/NewDictFin.gf @@ -4583,8 +4583,8 @@ lin haaste_N = mkN {s = d48 "haaste"} ; lin haasteaika_N = mkN {s = d09A "haasteaika"} ; lin haasteellinen_N = mkN {s = d38 "haasteellinen"} ; lin haastella_V = mkV {s = c67 "haastella"} ; -lin haava_1_N = mkN {s = d09 "haava"} ; -lin haava_2_Adv = mkAdv {s = c99 "haava"} ; +lin haava_N = mkN {s = d09 "haava"} ; +lin haava_Adv = mkAdv {s = c99 "haava"} ; lin haavainen_N = mkN {s = d38 "haavainen"} ; lin haavakko_N = mkN {s = d04A "haavakko"} ; lin haavauma_N = mkN {s = d10 "haavauma"} ; @@ -9916,8 +9916,7 @@ lin kallistaa_1_V = mkV {s = c53 "kallistaa"} ; lin kallistaa_2_V = mkV {s = c53 "kallistaa"} ; lin kallistella_V = mkV {s = c67 "kallistella"} ; lin kallistelu_N = mkN {s = d02 "kallistelu"} ; -lin kallistua_1_V = mkV {s = c52 "kallistua"} ; -lin kallistua_2_V = mkV {s = c52 "kallistua"} ; +lin kallistua_V = mkV {s = c52 "kallistua"} ; lin kallistus_N = mkN {s = d39 "kallistus"} ; lin kallistuvakorinen_N = mkN {s = d38 "kallistuvakorinen"} ; lin kallo_N = mkN {s = d01 "kallo"} ; @@ -12120,8 +12119,7 @@ lin kimputus_N = mkN {s = d39 "kimputus"} ; lin kimröökki_N = mkN {s = d05A "kimröökki"} ; lin kimuli_N = mkN {s = d06 "kimuli"} ; lin kimurantti_N = mkN {s = d05A "kimurantti"} ; -lin kina_1_N = mkN {s = d09 "kina"} ; -lin kina_2_N = mkN {s = d09 "kina"} ; +lin kina_N = mkN {s = d09 "kina"} ; lin kinailla_V = mkV {s = c67 "kinailla"} ; lin kinailu_N = mkN {s = d02 "kinailu"} ; lin kinastella_V = mkV {s = c67 "kinastella"} ; @@ -12786,12 +12784,10 @@ lin kokkareinen_N = mkN {s = d38 "kokkareinen"} ; lin kokkaroitua_V = mkV {s = c52A "kokkaroitua"} ; lin kokkaus_N = mkN {s = d39 "kokkaus"} ; lin kokkeli_N = mkN {s = d06 "kokkeli"} ; -lin kokki_1_N = mkN {s = d05A "kokki"} ; -lin kokki_2_N = mkN {s = d05A "kokki"} ; -lin kokko_1_N = mkN {s = d01A "kokko"} ; -lin kokko_2_N = mkN {s = d01A "kokko"} ; -lin koko_1_N = mkN {s = d01A "koko"} ; -lin koko_2_Adv = mkAdv {s = c99 "koko"} ; +lin kokki_N = mkN {s = d05A "kokki"} ; +lin kokko_N = mkN {s = d01A "kokko"} ; +lin koko_N = mkN {s = d01A "koko"} ; +lin koko_Adv = mkAdv {s = c99 "koko"} ; lin kokoaja_N = mkN {s = d10 "kokoaja"} ; lin kokoelma_N = mkN {s = d10 "kokoelma"} ; lin kokoilla_V = mkV {s = c67 "kokoilla"} ; @@ -23337,8 +23333,7 @@ lin pakaste_N = mkN {s = d48 "pakaste"} ; lin pakastin_N = mkN {s = d33 "pakastin"} ; lin pakastua_V = mkV {s = c52 "pakastua"} ; lin pakastus_N = mkN {s = d39 "pakastus"} ; -lin pakata_1_V = mkV {s = c73A "pakata"} ; -lin pakata_2_V = mkV {s = c73A "pakata"} ; +lin pakata_V = mkV {s = c73A "pakata"} ; lin pakeilla_Adv = mkAdv {s = c99 "pakeilla"} ; lin pakeillaan_Adv = mkAdv {s = c99 "pakeillaan"} ; lin pakeille_Adv = mkAdv {s = c99 "pakeille"} ; @@ -23601,8 +23596,8 @@ lin pankkiaika_N = mkN {s = d09A "pankkiaika"} ; lin pankkiiri_N = mkN {s = d06 "pankkiiri"} ; lin pankkisäästäminen_N = mkN {s = d38 "pankkisäästäminen"} ; lin pankko_N = mkN {s = d01A "pankko"} ; -lin panna_1_V = mkV {s = c67 "panna"} ; -lin panna_2_N = mkN {s = d09 "panna"} ; +lin panna_V = mkV {s = c67 "panna"} ; +lin panna_N = mkN {s = d09 "panna"} ; lin pannahinen_N = mkN {s = d38 "pannahinen"} ; lin pannari_N = mkN {s = d06 "pannari"} ; lin pannu_N = mkN {s = d01 "pannu"} ; @@ -23879,10 +23874,7 @@ lin passata_2_V = mkV {s = c73 "passata"} ; lin passauttaa_V = mkV {s = c53A "passauttaa"} ; lin passeli_N = mkN {s = d06 "passeli"} ; --? lin passepartout_N = mkN {s = d22 "passepartout"} ; -lin passi_1_N = mkN {s = d05 "passi"} ; -lin passi_2_N = mkN {s = d05 "passi"} ; -lin passi_3_N = mkN {s = d05 "passi"} ; -lin passi_4_N = mkN {s = d05 "passi"} ; +lin passi_N = mkN {s = d05 "passi"} ; --? lin passiivat_N = mkN {s = d12 "passiivat"} ; lin passiivi_N = mkN {s = d05 "passiivi"} ; lin passiivinen_A = mkA {s = d38 "passiivinen"} ; @@ -23963,8 +23955,7 @@ lin patsastelu_N = mkN {s = d02 "patsastelu"} ; lin patteri_N = mkN {s = d06 "patteri"} ; lin patteristi_N = mkN {s = d05 "patteristi"} ; lin patteristo_N = mkN {s = d01 "patteristo"} ; -lin patti_1_N = mkN {s = d05A "patti"} ; -lin patti_2_N = mkN {s = d05A "patti"} ; +lin patti_N = mkN {s = d05A "patti"} ; lin patu_N = mkN {s = d01 "patu"} ; lin patukka_N = mkN {s = d14A "patukka"} ; lin pauhata_V = mkV {s = c73 "pauhata"} ; @@ -28531,8 +28522,7 @@ lin riipus_N = mkN {s = d39 "riipus"} ; lin riipustaa_V = mkV {s = c53 "riipustaa"} ; lin riiputtaa_V = mkV {s = c53A "riiputtaa"} ; lin riiputus_N = mkN {s = d39 "riiputus"} ; -lin riisi_1_N = mkN {s = d05 "riisi"} ; -lin riisi_2_N = mkN {s = d05 "riisi"} ; +lin riisi_N = mkN {s = d05 "riisi"} ; lin riista_N = mkN {s = d09 "riista"} ; lin riistainen_N = mkN {s = d38 "riistainen"} ; lin riistamaaliammunta_N = mkN {s = d09A "riistamaaliammunta"} ; @@ -28570,8 +28560,7 @@ lin riittämätön_N = mkN {s = d34A "riittämätön"} ; lin riittävyys_N = mkN {s = d40 "riittävyys"} ; lin riittävä_A = mkA {s = d10 "riittävä"} ; lin riittävästi_Adv = mkAdv {s = c99 "riittävästi"} ; -lin riittää_1_V = mkV {s = c53A "riittää"} ; -lin riittää_2_V = mkV {s = c53A "riittää"} ; +lin riittää_V = mkV {s = c53A "riittää"} ; lin riiustaa_V = mkV {s = c53 "riiustaa"} ; lin riiustella_V = mkV {s = c67 "riiustella"} ; lin riiustelu_N = mkN {s = d02 "riiustelu"} ; @@ -28597,8 +28586,8 @@ lin rikka_N = mkN {s = d09A "rikka"} ; lin rikkaasti_Adv = mkAdv {s = c99 "rikkaasti"} ; lin rikkaus_N = mkN {s = d40 "rikkaus"} ; lin rikkeetön_N = mkN {s = d34A "rikkeetön"} ; -lin rikki_1_N = mkN {s = d05A "rikki"} ; -lin rikki_2_Adv = mkAdv {s = c99 "rikki"} ; +lin rikki_N = mkN {s = d05A "rikki"} ; +lin rikki_Adv = mkAdv {s = c99 "rikki"} ; lin rikkidioksidi_N = mkN {s = d05 "rikkidioksidi"} ; lin rikkinäinen_N = mkN {s = d38 "rikkinäinen"} ; lin rikkinäisyys_N = mkN {s = d40 "rikkinäisyys"} ; @@ -28734,8 +28723,7 @@ lin risauttaa_V = mkV {s = c53A "risauttaa"} ; lin risiini_N = mkN {s = d05 "risiini"} ; lin riskaabeli_N = mkN {s = d05 "riskaabeli"} ; lin riskeerata_V = mkV {s = c73 "riskeerata"} ; -lin riski_1_N = mkN {s = d05 "riski"} ; -lin riski_2_N = mkN {s = d05 "riski"} ; +lin riski_N = mkN {s = d05 "riski"} ; lin riskilä_N = mkN {s = d12 "riskilä"} ; lin riskinen_N = mkN {s = d38 "riskinen"} ; lin riskitön_N = mkN {s = d34A "riskitön"} ; @@ -37084,8 +37072,7 @@ lin tuttavallisesti_Adv = mkAdv {s = c99 "tuttavallisesti"} ; lin tuttavallisuus_N = mkN {s = d40 "tuttavallisuus"} ; --? lin tuttavukset_N = mkN {s = d39 "tuttavukset"} ; lin tuttavuus_N = mkN {s = d40 "tuttavuus"} ; -lin tutti_1_N = mkN {s = d05A "tutti"} ; -lin tutti_2_N = mkN {s = d05A "tutti"} ; +lin tutti_N = mkN {s = d05A "tutti"} ; lin tuttu_N = mkN {s = d01A "tuttu"} ; lin tuttuus_N = mkN {s = d40 "tuttuus"} ; lin tutua_V = mkV {s = c52 "tutua"} ; diff --git a/src/finnish/NewDictFinAbs.gf b/src/finnish/NewDictFinAbs.gf index 6fed25844..47350a85d 100644 --- a/src/finnish/NewDictFinAbs.gf +++ b/src/finnish/NewDictFinAbs.gf @@ -4577,8 +4577,8 @@ fun haaste_N : N ; fun haasteaika_N : N ; fun haasteellinen_N : N ; fun haastella_V : V ; -fun haava_1_N : N ; -fun haava_2_Adv : Adv ; +fun haava_N : N ; +fun haava_Adv : Adv ; fun haavainen_N : N ; fun haavakko_N : N ; fun haavauma_N : N ; @@ -9910,8 +9910,7 @@ fun kallistaa_1_V : V ; fun kallistaa_2_V : V ; fun kallistella_V : V ; fun kallistelu_N : N ; -fun kallistua_1_V : V ; -fun kallistua_2_V : V ; +fun kallistua_V : V ; fun kallistus_N : N ; fun kallistuvakorinen_N : N ; fun kallo_N : N ; @@ -12114,8 +12113,7 @@ fun kimputus_N : N ; fun kimröökki_N : N ; fun kimuli_N : N ; fun kimurantti_N : N ; -fun kina_1_N : N ; -fun kina_2_N : N ; +fun kina_N : N ; fun kinailla_V : V ; fun kinailu_N : N ; fun kinastella_V : V ; @@ -12780,12 +12778,10 @@ fun kokkareinen_N : N ; fun kokkaroitua_V : V ; fun kokkaus_N : N ; fun kokkeli_N : N ; -fun kokki_1_N : N ; -fun kokki_2_N : N ; -fun kokko_1_N : N ; -fun kokko_2_N : N ; -fun koko_1_N : N ; -fun koko_2_Adv : Adv ; +fun kokki_N : N ; +fun kokko_N : N ; +fun koko_N : N ; +fun koko_Adv : Adv ; fun kokoaja_N : N ; fun kokoelma_N : N ; fun kokoilla_V : V ; @@ -23331,8 +23327,7 @@ fun pakaste_N : N ; fun pakastin_N : N ; fun pakastua_V : V ; fun pakastus_N : N ; -fun pakata_1_V : V ; -fun pakata_2_V : V ; +fun pakata_V : V ; fun pakeilla_Adv : Adv ; fun pakeillaan_Adv : Adv ; fun pakeille_Adv : Adv ; @@ -23595,8 +23590,8 @@ fun pankkiaika_N : N ; fun pankkiiri_N : N ; fun pankkisäästäminen_N : N ; fun pankko_N : N ; -fun panna_1_V : V ; -fun panna_2_N : N ; +fun panna_V : V ; +fun panna_N : N ; fun pannahinen_N : N ; fun pannari_N : N ; fun pannu_N : N ; @@ -23873,10 +23868,7 @@ fun passata_2_V : V ; fun passauttaa_V : V ; fun passeli_N : N ; --? fun passepartout_N : N ; -fun passi_1_N : N ; -fun passi_2_N : N ; -fun passi_3_N : N ; -fun passi_4_N : N ; +fun passi_N : N ; --? fun passiivat_N : N ; fun passiivi_N : N ; fun passiivinen_A : A ; @@ -23957,8 +23949,7 @@ fun patsastelu_N : N ; fun patteri_N : N ; fun patteristi_N : N ; fun patteristo_N : N ; -fun patti_1_N : N ; -fun patti_2_N : N ; +fun patti_N : N ; fun patu_N : N ; fun patukka_N : N ; fun pauhata_V : V ; @@ -28525,8 +28516,7 @@ fun riipus_N : N ; fun riipustaa_V : V ; fun riiputtaa_V : V ; fun riiputus_N : N ; -fun riisi_1_N : N ; -fun riisi_2_N : N ; +fun riisi_N : N ; fun riista_N : N ; fun riistainen_N : N ; fun riistamaaliammunta_N : N ; @@ -28564,8 +28554,7 @@ fun riittämätön_N : N ; fun riittävyys_N : N ; fun riittävä_A : A ; fun riittävästi_Adv : Adv ; -fun riittää_1_V : V ; -fun riittää_2_V : V ; +fun riittää_V : V ; fun riiustaa_V : V ; fun riiustella_V : V ; fun riiustelu_N : N ; @@ -28591,8 +28580,8 @@ fun rikka_N : N ; fun rikkaasti_Adv : Adv ; fun rikkaus_N : N ; fun rikkeetön_N : N ; -fun rikki_1_N : N ; -fun rikki_2_Adv : Adv ; +fun rikki_N : N ; +fun rikki_Adv : Adv ; fun rikkidioksidi_N : N ; fun rikkinäinen_N : N ; fun rikkinäisyys_N : N ; @@ -28728,8 +28717,7 @@ fun risauttaa_V : V ; fun risiini_N : N ; fun riskaabeli_N : N ; fun riskeerata_V : V ; -fun riski_1_N : N ; -fun riski_2_N : N ; +fun riski_N : N ; fun riskilä_N : N ; fun riskinen_N : N ; fun riskitön_N : N ; @@ -37078,8 +37066,7 @@ fun tuttavallisesti_Adv : Adv ; fun tuttavallisuus_N : N ; --? fun tuttavukset_N : N ; fun tuttavuus_N : N ; -fun tutti_1_N : N ; -fun tutti_2_N : N ; +fun tutti_N : N ; fun tuttu_N : N ; fun tuttuus_N : N ; fun tutua_V : V ; From 5a18c857b8405b140666eddbb9d192ee47b37fa2 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 8 Oct 2018 16:12:03 +0200 Subject: [PATCH 011/172] (Fin) Fix inflection of some adjectives in NewDictFin --- src/finnish/NewDictFin.gf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/finnish/NewDictFin.gf b/src/finnish/NewDictFin.gf index 8e79b647b..c64f9f021 100644 --- a/src/finnish/NewDictFin.gf +++ b/src/finnish/NewDictFin.gf @@ -13649,7 +13649,7 @@ lin kouruilla_V = mkV {s = c67 "kouruilla"} ; lin kouruttaa_V = mkV {s = c53A "kouruttaa"} ; lin kouruuntua_V = mkV {s = c52A "kouruuntua"} ; lin koutsi_N = mkN {s = d05 "koutsi"} ; -lin kova_A = mkA {s = d10 "kova"} ; +lin kova_A = mkA (mkN {s = d10 "kova"}) "kovempi" "kovin" ; lin kovaa_Adv = mkAdv {s = c99 "kovaa"} ; lin kovaan_Adv = mkAdv {s = c99 "kovaan"} ; lin kovakorvaisuus_N = mkN {s = d40 "kovakorvaisuus"} ; @@ -14933,7 +14933,7 @@ lin kylmiltään_Adv = mkAdv {s = c99 "kylmiltään"} ; lin kylmissään_Adv = mkAdv {s = c99 "kylmissään"} ; lin kylmiö_N = mkN {s = d03 "kylmiö"} ; lin kylmyys_N = mkN {s = d40 "kylmyys"} ; -lin kylmä_A = mkA {s = d10 "kylmä"} ; +lin kylmä_A = mkA (mkN {s = d10 "kylmä"}) "kylmempi" "kylmin" ; lin kylmäkiskoisesti_Adv = mkAdv {s = c99 "kylmäkiskoisesti"} ; lin kylmäkiskoisuus_N = mkN {s = d40 "kylmäkiskoisuus"} ; lin kylmäkkö_N = mkN {s = d04A "kylmäkkö"} ; @@ -15027,7 +15027,7 @@ lin kypsyttää_V = mkV {s = c53A "kypsyttää"} ; lin kypsytys_N = mkN {s = d39 "kypsytys"} ; lin kypsyys_N = mkN {s = d40 "kypsyys"} ; lin kypsyä_V = mkV {s = c52 "kypsyä"} ; -lin kypsä_A = mkA {s = d10 "kypsä"} ; +lin kypsä_A = mkA (mkN {s = d10 "kypsä"}) "kypsempi" "kypsin" ; lin kypsästi_Adv = mkAdv {s = c99 "kypsästi"} ; lin kypärä_N = mkN {s = d10 "kypärä"} ; lin kyrillinen_N = mkN {s = d38 "kyrillinen"} ; @@ -23101,7 +23101,7 @@ lin padota_V = mkV {s = c74A "padota"} ; lin paella_N = mkN {s = d13 "paella"} ; lin paeta_V = mkV {s = c72A "paeta"} ; lin pagodi_N = mkN {s = d05 "pagodi"} ; -lin paha_A = mkA {s = d09 "paha"} ; +lin paha_A = mkA (mkN {s = d09 "paha"}) "pahempi" "pahin" ; lin pahainen_N = mkN {s = d38 "pahainen"} ; lin pahaksua_V = mkV {s = c52 "pahaksua"} ; lin pahamaineisuus_N = mkN {s = d40 "pahamaineisuus"} ; @@ -25125,7 +25125,7 @@ lin pitkittää_V = mkV {s = c53A "pitkittää"} ; lin pitkitys_N = mkN {s = d39 "pitkitys"} ; lin pitko_N = mkN {s = d01 "pitko"} ; lin pitkulainen_N = mkN {s = d38 "pitkulainen"} ; -lin pitkä_A = mkA {s = d10 "pitkä"} ; +lin pitkä_A = mkA (mkN {s = d10 "pitkä"}) "pidempi" "pisin" ; lin pitkäinen_N = mkN {s = d38 "pitkäinen"} ; lin pitkäjännitteisesti_Adv = mkAdv {s = c99 "pitkäjännitteisesti"} ; lin pitkäjänteisesti_Adv = mkAdv {s = c99 "pitkäjänteisesti"} ; @@ -33716,7 +33716,7 @@ lin syvyinen_N = mkN {s = d38 "syvyinen"} ; lin syvyys_N = mkN {s = d40 "syvyys"} ; lin syvyyttää_V = mkV {s = c53A "syvyyttää"} ; lin syvyytys_N = mkN {s = d39 "syvyytys"} ; -lin syvä_A = mkA {s = d10 "syvä"} ; +lin syvä_A = mkA (mkN {s = d10 "syvä"}) "syvempi" "syvin" ; lin syvälle_Adv = mkAdv {s = c99 "syvälle"} ; lin syvällinen_A = mkA {s = d38 "syvällinen"} ; lin syvällisesti_Adv = mkAdv {s = c99 "syvällisesti"} ; @@ -38410,7 +38410,7 @@ lin vahingollisuus_N = mkN {s = d40 "vahingollisuus"} ; lin vahinko_N = mkN {s = d01A "vahinko"} ; lin vahti_N = mkN {s = d05A "vahti"} ; lin vahtia_V = mkV {s = c61A "vahtia"} ; -lin vahva_A = mkA {s = d09 "vahva"} ; +lin vahva_A = mkA (mkN {s = d09 "vahva"}) "vahvempi" "vahvin" ; lin vahvalti_Adv = mkAdv {s = c99 "vahvalti"} ; lin vahvasti_Adv = mkAdv {s = c99 "vahvasti"} ; lin vahvennos_N = mkN {s = d39 "vahvennos"} ; @@ -39108,7 +39108,7 @@ lin varkaisiin_Adv = mkAdv {s = c99 "varkaisiin"} ; lin varkaissa_Adv = mkAdv {s = c99 "varkaissa"} ; lin varkaista_Adv = mkAdv {s = c99 "varkaista"} ; lin varkaus_N = mkN {s = d40 "varkaus"} ; -lin varma_A = mkA {s = d09 "varma"} ; +lin varma_A = mkA (mkN {s = d09 "varma"}) "varmempi" "varmin" ; lin varmaan_Adv = mkAdv {s = c99 "varmaan"} ; lin varmasti_Adv = mkAdv {s = c99 "varmasti"} ; lin varmenne_N = mkN {s = d48A "varmenne"} ; From 0441cf158614edfdf57db7f85ce3d5eccc761aa0 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 8 Oct 2018 16:12:33 +0200 Subject: [PATCH 012/172] =?UTF-8?q?(Fin)=20Add=20infAdess=20("tekem=C3=A4l?= =?UTF-8?q?l=C3=A4")=20to=20the=20API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/finnish/ParadigmsFin.gf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/finnish/ParadigmsFin.gf b/src/finnish/ParadigmsFin.gf index c643b892d..96c82781e 100644 --- a/src/finnish/ParadigmsFin.gf +++ b/src/finnish/ParadigmsFin.gf @@ -61,6 +61,7 @@ oper infIness : InfForm ; -- e.g. "tekemässä" infElat : InfForm ; -- e.g. "tekemästä" infIllat : InfForm ; -- e.g. "tekemään" + infAdess : InfForm ; -- e.g. "tekemällä" infPresPart : InfForm ; -- e.g. "tekevän" infPresPartAgr : InfForm ; -- e.g. "tekevänsä" @@ -390,7 +391,10 @@ mkVS = overload { ablative = Ablat ; allative = Allat ; - infFirst = Inf1 ; infElat = Inf3Elat ; infIllat = Inf3Illat ; infIness = Inf3Iness ; infPresPart = InfPresPart ; infPresPartAgr = InfPresPartAgr ; + infFirst = Inf1 ; + infElat = Inf3Elat ; infIllat = Inf3Illat ; + infIness = Inf3Iness ; infAdess = Inf3Adess ; + infPresPart = InfPresPart ; infPresPartAgr = InfPresPartAgr ; prePrep : Case -> Str -> Prep = \c,p -> lin Prep {c = NPCase c ; s = []>} ; -- no possessive suffix From bd6d88c78483a1b0e24780b80b5faefa31fd6f35 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 8 Oct 2018 16:12:50 +0200 Subject: [PATCH 013/172] (Fin) Add some more N and A paradigms --- src/finnish/ParadigmsFin.gf | 33 +++++++++++++++++++++++++++------ 1 file changed, 27 insertions(+), 6 deletions(-) diff --git a/src/finnish/ParadigmsFin.gf b/src/finnish/ParadigmsFin.gf index 96c82781e..4cea49ebe 100644 --- a/src/finnish/ParadigmsFin.gf +++ b/src/finnish/ParadigmsFin.gf @@ -138,6 +138,19 @@ oper = \oma, asunto -> lin N {s = \\c => oma.s ! c + "_" + asunto.s ! c ; h = asunto.h} ; } ; + compN : N -> N -> N = \valkuainen,aine -> aine ** { + s = \\c => (StemFin.snoun2nounBind valkuainen).s ! NCompound + aine.s ! c + } ; + + genCompN = overload { + genCompN : N -> N -> N = genitiveCompoundN Sg ; + genCompN : Number -> N -> N -> N = genitiveCompoundN + } ; + + genitiveCompoundN : Number -> N -> N -> N = \n,veri,paine -> paine ** { + s = \\c => (StemFin.snoun2nounBind veri).s ! NCase n Gen + paine.s ! c + } ; + -- Nouns used as functions need a case, of which the default is -- the genitive. @@ -680,13 +693,21 @@ mkVS = overload { (snoun2superl suuri) ; - presPartA : SVerb -> A = \tullaSV -> - let tulla = sverb2verb True tullaSV ; - tuleva : NForm => Str = \\nf => tulla.s ! PresPartAct (AN nf) ; - tuleva_SN = { s = tuleva ; - h = tullaSV.h } ; + presActA : SVerb -> A = \tulla -> + let tuleva : NForm => Str = \\nf => (sverb2verb True tulla).s ! PresPartAct (AN nf) ; + in noun2adjDeg { s = tuleva ; h = tulla.h } ; - in noun2adjDeg tuleva_SN ; + presPassA : SVerb -> A = \mennä -> + let mentävä : NForm => Str = \\nf => (sverb2verb True mennä).s ! PresPartPass (AN nf) ; + in noun2adjDeg { s = mentävä ; h = mennä.h } ; + + pastActA : SVerb -> A = \syntyä -> + let syntynyt : NForm => Str = \\nf => (sverb2verb True syntyä).s ! PastPartAct (AN nf) ; + in noun2adjDeg { s = syntynyt ; h = syntyä.h } ; + + pastPassA : SVerb -> A = \sulkea -> + let suljettu : NForm => Str = \\nf => (sverb2verb True sulkea).s ! PastPartPass (AN nf) ; + in noun2adjDeg { s = suljettu ; h = sulkea.h } ; -- verbs From 583f77e45051d330330a84dc2cbcb17beaa24401 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 8 Oct 2018 17:55:18 +0200 Subject: [PATCH 014/172] (Fin) Remove redundant sense distinctions --- src/finnish/NewDictFin.gf | 4 ++-- src/finnish/NewDictFinAbs.gf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/finnish/NewDictFin.gf b/src/finnish/NewDictFin.gf index c64f9f021..3ee742b82 100644 --- a/src/finnish/NewDictFin.gf +++ b/src/finnish/NewDictFin.gf @@ -327,8 +327,8 @@ lin aiheutua_V = mkV {s = c52A "aiheutua"} ; lin aiheutus_N = mkN {s = d39 "aiheutus"} ; lin aihio_N = mkN {s = d03 "aihio"} ; lin aijai_Adv = mkAdv {s = c99 "aijai"} ; -lin aika_1_N = mkN {s = d09A "aika"} ; -lin aika_2_Adv = mkAdv {s = c99 "aika"} ; +lin aika_N = mkN {s = d09A "aika"} ; +lin aika_Adv = mkAdv {s = c99 "aika"} ; lin aikaansaannos_N = mkN {s = d39 "aikaansaannos"} ; lin aikaansaapa_N = mkN {s = d10A "aikaansaapa"} ; lin aikaansaava_N = mkN {s = d10 "aikaansaava"} ; diff --git a/src/finnish/NewDictFinAbs.gf b/src/finnish/NewDictFinAbs.gf index 47350a85d..cdcaf147c 100644 --- a/src/finnish/NewDictFinAbs.gf +++ b/src/finnish/NewDictFinAbs.gf @@ -321,8 +321,8 @@ fun aiheutua_V : V ; fun aiheutus_N : N ; fun aihio_N : N ; fun aijai_Adv : Adv ; -fun aika_1_N : N ; -fun aika_2_Adv : Adv ; +fun aika_N : N ; +fun aika_Adv : Adv ; fun aikaansaannos_N : N ; fun aikaansaapa_N : N ; fun aikaansaava_N : N ; From 5223a3d9c9766e0d90cf9b657c84bbfa5fd435de Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 8 Oct 2018 17:55:58 +0200 Subject: [PATCH 015/172] (Fin) Add some cases for weakGrade + add exceptions to Kotus.gf --- src/finnish/Kotus.gf | 16 ++++++++++++---- src/finnish/MorphoFin.gf | 5 +++-- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/src/finnish/Kotus.gf b/src/finnish/Kotus.gf index b5fe474fe..802432d68 100644 --- a/src/finnish/Kotus.gf +++ b/src/finnish/Kotus.gf @@ -41,11 +41,19 @@ oper (s + "n") (init s + case a of {"a" => "o" ; _ => "ö"} + "j" + a) ; d09A : Str -> NForms -- 1040 ääniraita - = \s -> let a = last s in dSilakka s - (weakGrade s + "n") - (init s + case a of {"a" => "o" ; _ => "ö"} + "j" + a) ; + = \s -> case s of { + x + "aaka" => dSilakka s (x+"aa'an") (x+"aakoja") ; + x + "aika" => dSilakka s (x+"ajan") (x+"aikoja") ; -- lots of compound words in NewDictFin that end in aika, but are not analysed as compounds + _ => let a = last s + in dSilakka s + (weakGrade s + "n") + (init s + case a of {"a" => "o" ; _ => "ö"} + "j" + a) + } ; d10 : Str -> NForms -- 2119 äänittäjä - = \s -> dSilakka s (s + "n") (init s + "i" + vowelHarmony (last s)) ; + = \s -> case s of { + x+"poika" => dSilakka s (x+"pojan") (x+"poikia") ; + _ => dSilakka s (s + "n") (init s + "i" + vowelHarmony (last s)) + } ; d10A : Str -> NForms -- 284 änkkä = \s -> dSilakka s (weakGrade s + "n") (init s + "i" + vowelHarmony (last s)) ; d11 : Str -> NForms -- 46 ödeema diff --git a/src/finnish/MorphoFin.gf b/src/finnish/MorphoFin.gf index e1a2580ec..7edd84bae 100644 --- a/src/finnish/MorphoFin.gf +++ b/src/finnish/MorphoFin.gf @@ -858,7 +858,8 @@ resource MorphoFin = ResFin ** open Prelude in { ("hk" | "tk") + _ => kukko ; -- *tahko-tahon, *pitkä-pitkän ("f"|"s") + ("k" | "p" | "t") + _ => kukko ; -- *lasku-lasvun, *raspi-rasvin, *lastu-lasdun, *afta-aftan ("k"|"p") + "t" + _ => kukko ; -- *projekti-projekdin - x + "ku" => ku + x + "vu" ; + "uku" => ku + "uvu" ; + "yky" => ku + "yvy" ; x + "k" + ("a" | "e" | "i" | "o" | "u" | "y" | "ä" | "ö") => ku + x + o ; x + "p" + ("a" | "e" | "i" | "o" | "u" | "y" | "ä" | "ö") => ku + x + "v" + o ; x + "t" + ("a" | "e" | "i" | "o" | "u" | "y" | "ä" | "ö") => ku + x + "d" + o ; @@ -882,7 +883,7 @@ resource MorphoFin = ResFin ** open Prelude in { ("tk" | "hk" | "sk" | "sp" | "st") + _ => nke ; -- viuhke,kuiske a + k@("k"|"p"|"t") + e@("e"|"a"|"ä"|"u"|"y"|"i"|"o"|"ö") => a + k + k + e ; a + "d" + e@("e"|"a"|"ä"|"u"|"i"|"o"|"ö") => a + "t" + e ; - s + a@("a" | "ä") + "e" => s + a + "ke" ; -- säe, tae + s + a@("a"|"ä"|"o"|"ö") + "e" => s + a + "ke" ; -- säe, tae, koe s + "ui" => s + "uki" ; -- ruis s + "aa" => s + "aka" ; -- taata s + "i" + a@("a" | "e" | "i") => s + "ik" + a ; -- liata, siitä, pietä From 8334a3fab3d1c7879d273e0f37acf800db9ae6d9 Mon Sep 17 00:00:00 2001 From: Aarne Ranta Date: Tue, 9 Oct 2018 10:44:46 +0200 Subject: [PATCH 016/172] fixed the place of AP in Scand.CompAP so that it is before the particle but after negation: 'det ser inte bra ut' --- src/scandinavian/CommonScand.gf | 6 +++++- src/scandinavian/VerbScand.gf | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/scandinavian/CommonScand.gf b/src/scandinavian/CommonScand.gf index c556f5b28..8645ea19b 100644 --- a/src/scandinavian/CommonScand.gf +++ b/src/scandinavian/CommonScand.gf @@ -309,7 +309,11 @@ oper isSimple = False } ; - insertObj : (Agr => Str) -> VP -> VP = insertObjPron False ; + insertObj : (Agr => Str) -> VP -> VP = insertObjPron False ; + + insertObjPre : (Agr => Str) -> VP -> VP = \obj,vp -> vp ** { + n2 = \\a => obj ! a ++ vp.n2 ! a -- e.g. ser inte *bra* ut + } ; insertObjPost : (Agr => Str) -> VP -> VP = \obj,vp -> vp ** { n2 = \\a => vp.n2 ! a ++ obj ! a ; diff --git a/src/scandinavian/VerbScand.gf b/src/scandinavian/VerbScand.gf index ab9742255..83f10b0a5 100644 --- a/src/scandinavian/VerbScand.gf +++ b/src/scandinavian/VerbScand.gf @@ -18,7 +18,7 @@ incomplete concrete VerbScand of Verb = CatScand ** open CommonScand, ResScand, ComplVV v vp = insertObjPost (\\a => v.c2.s ++ infVP vp a) (predV v) ; ComplVS v s = insertObjPost (\\_ => conjThat ++ s.s ! Sub) (predV v) ; --- insertExt ? ComplVQ v q = insertObjPost (\\_ => q.s ! QIndir) (predV v) ; - ComplVA v ap = insertObjPost (\\a => ap.s ! agrAdjNP a DIndef) (predV v) ; + ComplVA v ap = insertObjPre (\\a => ap.s ! agrAdjNP a DIndef) (predV v) ; SlashV2V v vp = predV v ** { n3 = \\a => v.c3.s ++ infVP vp a ; From ab88fd8018fffc20783f8be0edc08d37ef692b01 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 9 Oct 2018 13:42:25 +0200 Subject: [PATCH 017/172] =?UTF-8?q?(Fin)=20More=20patterns=20for=20consona?= =?UTF-8?q?nt=20gradation=20("pyyhki=C3=A4",=20"aueta")?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/finnish/MorphoFin.gf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/finnish/MorphoFin.gf b/src/finnish/MorphoFin.gf index 7edd84bae..a17799ef6 100644 --- a/src/finnish/MorphoFin.gf +++ b/src/finnish/MorphoFin.gf @@ -855,7 +855,8 @@ resource MorphoFin = ResFin ** open Prelude in { "rk" + ("i" | "e") => ku + "rj" + o ; "lk" + _ => ku + "l" + o ; "rk" + _ => ku + "r" + o ; - ("hk" | "tk") + _ => kukko ; -- *tahko-tahon, *pitkä-pitkän + "hki" => ku + "hi" ; -- for pyyhkiä, vihkiä + ("hk"|"tk") + _ => kukko ; -- *tahko-tahon, *pitkä-pitkän ("f"|"s") + ("k" | "p" | "t") + _ => kukko ; -- *lasku-lasvun, *raspi-rasvin, *lastu-lasdun, *afta-aftan ("k"|"p") + "t" + _ => kukko ; -- *projekti-projekdin "uku" => ku + "uvu" ; @@ -884,7 +885,7 @@ resource MorphoFin = ResFin ** open Prelude in { a + k@("k"|"p"|"t") + e@("e"|"a"|"ä"|"u"|"y"|"i"|"o"|"ö") => a + k + k + e ; a + "d" + e@("e"|"a"|"ä"|"u"|"i"|"o"|"ö") => a + "t" + e ; s + a@("a"|"ä"|"o"|"ö") + "e" => s + a + "ke" ; -- säe, tae, koe - s + "ui" => s + "uki" ; -- ruis + s + "u" + i@("i"|"e") => s + "uk" + i ; -- ruis, aueta s + "aa" => s + "aka" ; -- taata s + "i" + a@("a" | "e" | "i") => s + "ik" + a ; -- liata, siitä, pietä a + "v" + e@("e"|"a"|"ä"|"u"|"i") => a + "p" + e ; -- taive/toive imposs From 0cf74c04df413d570ea3d4fbbbd77432a7f4eea3 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 9 Oct 2018 14:12:28 +0200 Subject: [PATCH 018/172] (Fin) Add more infinite forms to VVType --- src/finnish/ParadigmsFin.gf | 4 +++- src/finnish/ResFin.gf | 6 +++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/finnish/ParadigmsFin.gf b/src/finnish/ParadigmsFin.gf index 4cea49ebe..c45992d55 100644 --- a/src/finnish/ParadigmsFin.gf +++ b/src/finnish/ParadigmsFin.gf @@ -62,6 +62,7 @@ oper infElat : InfForm ; -- e.g. "tekemästä" infIllat : InfForm ; -- e.g. "tekemään" infAdess : InfForm ; -- e.g. "tekemällä" + infPart : InfForm ; -- e.g. "tekemistä" infPresPart : InfForm ; -- e.g. "tekevän" infPresPartAgr : InfForm ; -- e.g. "tekevänsä" @@ -406,7 +407,8 @@ mkVS = overload { infFirst = Inf1 ; infElat = Inf3Elat ; infIllat = Inf3Illat ; - infIness = Inf3Iness ; infAdess = Inf3Adess ; + infIness = Inf3Iness ; infAdess = Inf3Adess ; + infPart = Inf4Part ; infPresPart = InfPresPart ; infPresPartAgr = InfPresPartAgr ; prePrep : Case -> Str -> Prep = diff --git a/src/finnish/ResFin.gf b/src/finnish/ResFin.gf index 61d36748c..76a69f104 100644 --- a/src/finnish/ResFin.gf +++ b/src/finnish/ResFin.gf @@ -171,18 +171,22 @@ param -- These forms appear in complements to VV and V2V. - VVType = VVInf | VVIness | VVIllat | VVPresPart ; + VVType = VVInf | VVIness | VVIllat | VVPresPart | VVPart | VVAdess ; oper vvtype2infform : VVType -> InfForm = \vt -> case vt of { VVInf => Inf1 ; VVIness => Inf3Iness ; VVIllat => Inf3Illat ; + VVAdess => Inf3Adess ; + VVPart => Inf4Part ; VVPresPart => InfPresPart } ; infform2vvtype : InfForm -> VVType = \vt -> case vt of { Inf3Iness => VVIness ; Inf3Illat => VVIllat ; + Inf3Adess => VVAdess ; + Inf4Part => VVPart ; InfPresPart => VVPresPart ; _ => VVInf } ; From 05ed75c13132977fc85c5e104974e97dee82cf46 Mon Sep 17 00:00:00 2001 From: Aarne Ranta Date: Tue, 9 Oct 2018 19:27:21 +0200 Subject: [PATCH 019/172] using the ext field more properly in Scand VP --- src/scandinavian/SentenceScand.gf | 2 +- src/scandinavian/VerbScand.gf | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/scandinavian/SentenceScand.gf b/src/scandinavian/SentenceScand.gf index 336e4baa3..72101768a 100644 --- a/src/scandinavian/SentenceScand.gf +++ b/src/scandinavian/SentenceScand.gf @@ -36,7 +36,7 @@ incomplete concrete SentenceScand of Sentence = SlashVS np vs slash = mkClause (np.s ! nominative) np.a - (insertObj (\\_ => conjThat ++ slash.s ! Sub) (predV vs)) ** + (insertExt (conjThat ++ slash.s ! Sub) (predV vs)) ** {n3 = slash.n3 ; c2 = slash.c2} ; EmbedS s = {s = conjThat ++ s.s ! Sub} ; diff --git a/src/scandinavian/VerbScand.gf b/src/scandinavian/VerbScand.gf index 83f10b0a5..2a457fc78 100644 --- a/src/scandinavian/VerbScand.gf +++ b/src/scandinavian/VerbScand.gf @@ -16,8 +16,8 @@ incomplete concrete VerbScand of Verb = CatScand ** open CommonScand, ResScand, } ; ComplVV v vp = insertObjPost (\\a => v.c2.s ++ infVP vp a) (predV v) ; - ComplVS v s = insertObjPost (\\_ => conjThat ++ s.s ! Sub) (predV v) ; --- insertExt ? - ComplVQ v q = insertObjPost (\\_ => q.s ! QIndir) (predV v) ; + ComplVS v s = insertExt (conjThat ++ s.s ! Sub) (predV v) ; --- insertExt ? + ComplVQ v q = insertExt (q.s ! QIndir) (predV v) ; ComplVA v ap = insertObjPre (\\a => ap.s ! agrAdjNP a DIndef) (predV v) ; SlashV2V v vp = predV v ** { @@ -25,11 +25,13 @@ incomplete concrete VerbScand of Verb = CatScand ** open CommonScand, ResScand, c2 = v.c2 } ; SlashV2S v s = predV v ** { - n3 = \\_ => conjThat ++ s.s ! Sub ; + n3 = \\_ => [] ; + ext = conjThat ++ s.s ! Sub ; c2 = v.c2 } ; SlashV2Q v q = predV v ** { - n3 = \\_ => q.s ! QIndir ; + n3 = \\_ => [] ; + ext = q.s ! QIndir ; c2 = v.c2 } ; SlashV2A v ap = predV v ** { From 56fd159e341d45552e0b695b6376fa459f236fc6 Mon Sep 17 00:00:00 2001 From: Aarne Ranta Date: Thu, 11 Oct 2018 06:58:57 +0200 Subject: [PATCH 020/172] fixed three paradigms in Finnish Kotus: lapsi, veitsi, harkita --- src/finnish/Kotus.gf | 8 ++++---- src/finnish/MorphoFin.gf | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/finnish/Kotus.gf b/src/finnish/Kotus.gf index 802432d68..7f3b07cf6 100644 --- a/src/finnish/Kotus.gf +++ b/src/finnish/Kotus.gf @@ -106,11 +106,11 @@ oper d28A : Str -> NForms -- 1 jälsi = \s -> dArpi s (Predef.tk 2 s + "len") ; d29 : Str -> NForms -- 1 lapsi - = \s -> let lapsi = dArpi s (init s + "en") in - table {2 => Predef.tk 3 s + "ta" ; i => lapsi ! i} ; + = \s -> let lapsi = dArpi s (init s + "en") ; a = vowHarmony s in + table {2 => Predef.tk 3 s + "st" + a ; i => lapsi ! i} ; d30 : Str -> NForms -- 2 veitsi - = \s -> let lapsi = dArpi s (init s + "en") in - table {2 => Predef.tk 3 s + "stä" ; i => lapsi ! i} ; + = \s -> let lapsi = dArpi s (init s + "en") ; a = vowHarmony s in + table {2 => Predef.tk 3 s + "st" + a ; i => lapsi ! i} ; d31 : Str -> NForms -- 3 yksi = \s -> let y = Predef.tk 3 s ; diff --git a/src/finnish/MorphoFin.gf b/src/finnish/MorphoFin.gf index a17799ef6..b92f32f32 100644 --- a/src/finnish/MorphoFin.gf +++ b/src/finnish/MorphoFin.gf @@ -639,7 +639,7 @@ resource MorphoFin = ResFin ** open Prelude in { in vForms12 harkita (harkit + "sen") - (harkit + "se") + (harkit + "see") (harkit + "sev" + a + "t") (harkit + "k" + a + a) (harkit + a + a + "n") From 664d2e0b70cfcadde58fef45e27d133c3f9f743c Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 11 Oct 2018 16:54:18 +0200 Subject: [PATCH 021/172] =?UTF-8?q?(Ara)=20Fix=20some=20orthography=20issu?= =?UTF-8?q?es=20related=20to=20=D8=A1=E2=80=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/arabic/OrthoAra.gf | 18 ++++++++++++++---- src/arabic/ParadigmsAra.gf | 8 ++++---- src/arabic/ResAra.gf | 9 +++------ 3 files changed, 21 insertions(+), 14 deletions(-) diff --git a/src/arabic/OrthoAra.gf b/src/arabic/OrthoAra.gf index 89cf4513a..5c5602d9d 100644 --- a/src/arabic/OrthoAra.gf +++ b/src/arabic/OrthoAra.gf @@ -4,12 +4,22 @@ flags coding=utf8 ; oper + -- Definite article assimilation + vow : pattern Str = #("َ" | "ِ" | "ُ") ; + + + -- "Sun letters": assimilate with def. article + sun : pattern Str = #("ت"|"ث"|"د"|"ذ"|"ر"|"ز"|"س"|"ش"|"ص"|"ض"|"ط"|"ظ"|"ل"|"ن") ; + + -- Hamza + hamza : pattern Str = #("ء‎"|"؟") ; + rectifyHmz: Str -> Str = \word -> case word of { - l@(""|"ال") + "؟" + v@("َ"|"ُ") + tail => l + "أ" + v + tail; - l@(""|"ال") + "؟" + v@("ِ") + tail => l + "إ" + v + tail; - head + v1@("ِ"|"ُ"|"َ"|"ْ"|"ا"|"ي"|"و") + "؟" + v2@(""|"ُ"|"َ"|"ْ"|"ِ") => head + v1 + (tHmz v1) + v2; - head + "؟" + tail => head + (bHmz (dp 2 head) (take 2 tail)) + tail; --last head , take 1 tail + l@(""|"ال") + #hamza + v@("َ"|"ُ") + tail => l + "أ" + v + tail; + l@(""|"ال") + #hamza + v@("ِ") + tail => l + "إ" + v + tail; + head + v1@("ِ"|"ُ"|"َ"|"ْ"|"ا"|"ي"|"و") + #hamza + v2@(""|"ُ"|"َ"|"ْ"|"ِ") => head + v1 + (tHmz v1) + v2; + head + #hamza + tail => head + (bHmz (dp 2 head) (take 2 tail)) + tail; --last head , take 1 tail _ => word }; diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index ba6473fda..3aaa804ff 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -274,7 +274,7 @@ resource ParadigmsAra = open let { raw = v1' rootStr vPerf vImpf } in { s = \\vf => case rootStr of { - _ + "؟" + _ => rectifyHmz(raw.s ! vf); + _ + #hamza + _ => rectifyHmz(raw.s ! vf); _ => raw.s ! vf }; lock_V = <> @@ -336,7 +336,7 @@ resource ParadigmsAra = open let { raw = v5' rootStr } in { s = \\vf => case rootStr of { - _ + "؟" + _ => rectifyHmz(raw.s ! vf); + _ + #hamza + _ => rectifyHmz(raw.s ! vf); _ => raw.s ! vf }; lock_V = <> @@ -396,7 +396,7 @@ resource ParadigmsAra = open let { raw = brkN' root sg pl gen spec} in { s = \\n,d,c => case root of { - _ + "؟" + _ => rectifyHmz(raw.s ! n ! d ! c); + _ + #hamza + _ => rectifyHmz(raw.s ! n ! d ! c); _ => raw.s ! n ! d ! c }; g = gen; @@ -491,7 +491,7 @@ resource ParadigmsAra = open let raw = sndA' root pat in { s = \\af => case root of { - _ + "؟" + _ => rectifyHmz(raw.s ! af); + _ + #hamza + _ => rectifyHmz(raw.s ! af); _ => raw.s ! af }; lock_A = <> diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 0a977cf65..15e4d6668 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -7,7 +7,7 @@ ---- implement $Test$, it moreover contains regular lexical ---- patterns needed for $Lex$. -- -resource ResAra = PatternsAra ** open Prelude, Predef, ParamX in { +resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { flags optimize=noexpand ; coding=utf8 ; @@ -94,7 +94,8 @@ resource ResAra = PatternsAra ** open Prelude, Predef, ParamX in { w@_ + "ف" + x@_ + "ع" + y@_ => let pat = { h = w ; m1 = x; m2 = ""; t = y} in case of { - 6 | 5 => mkWeak pat (mkRoot3 rS) ; --3=> +-- 6 | 5 => mkWeak pat (mkRoot3 rS) ; --3=> + 6 | 5 => mkHollow pat (mkRoot3 rS) ; --3=> 4 | 3 => mkBilit pat (mkRoot2 rS) ; --2=> _ => rS ---- AR error "expected 3--6" } @@ -880,10 +881,6 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> _ => "" }; - -- "Sun letters": assimilate with def. article - sun : pattern Str = #("ت"|"ث"|"د"|"ذ"|"ر"|"ز"|"س"|"ش"|"ص"|"ض"|"ط"|"ظ"|"ل"|"ن") ; - - vow : pattern Str = #("َ" | "ِ" | "ُ") ; defArt : State -> Str -> Str = \st,stem -> -- IL -- to be checked let al = "ال" in case st of { From 43227578c5d27b4a12a531a1610ec96e2fc6c78d Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 11 Oct 2018 17:00:04 +0200 Subject: [PATCH 022/172] (Ara) fix eat_V2 --- src/arabic/LexiconAra.gf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/arabic/LexiconAra.gf b/src/arabic/LexiconAra.gf index a0dcfd821..b6b12a45d 100644 --- a/src/arabic/LexiconAra.gf +++ b/src/arabic/LexiconAra.gf @@ -73,8 +73,7 @@ flags drink_V2 = dirV2 (regV "شَرِب") ; -- drink_V2 = dirV2 (v1 "شرب" i a) ; easy_A2V = mkA2 (sndA "سهل" "فَعل") "لِ" ; - eat_V2 = dirV2 (regV "يَ؟كُل") ; --- eat_V2 = dirV2 (v1 "؟كل" a u) ; + eat_V2 = dirV2 (mkV "ء‎كل" FormI) ; empty_A = sndA "فرغ" "فاعِل" ; enemy_N = brkN "عدو" "فَعُلّ" "أَفعاء" Masc Hum ; factory_N = brkN "صنع" "مَفعَل" "مَفاعِل" Masc NoHum ; From 0bce38800cf14ab8a70bcb618695e4738429a8c8 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 12 Oct 2018 15:40:48 +0200 Subject: [PATCH 023/172] (Ara) Remove some LTR (U+200E) chars that had been copypasted in error --- src/arabic/LexiconAra.gf | 4 ++-- src/arabic/OrthoAra.gf | 2 +- src/arabic/ResAra.gf | 2 +- src/arabic/VerbAra.gf | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/arabic/LexiconAra.gf b/src/arabic/LexiconAra.gf index b6b12a45d..3ff631384 100644 --- a/src/arabic/LexiconAra.gf +++ b/src/arabic/LexiconAra.gf @@ -73,7 +73,7 @@ flags drink_V2 = dirV2 (regV "شَرِب") ; -- drink_V2 = dirV2 (v1 "شرب" i a) ; easy_A2V = mkA2 (sndA "سهل" "فَعل") "لِ" ; - eat_V2 = dirV2 (mkV "ء‎كل" FormI) ; + eat_V2 = dirV2 (mkV "ءكل" FormI) ; empty_A = sndA "فرغ" "فاعِل" ; enemy_N = brkN "عدو" "فَعُلّ" "أَفعاء" Masc Hum ; factory_N = brkN "صنع" "مَفعَل" "مَفاعِل" Masc NoHum ; @@ -111,7 +111,7 @@ flags iron_N = brkN "حدّ" "فَعِيل" "فَعائِل" Masc NoHum ; king_N = brkN "ملك" "فَعِل" "فُعُول" Masc Hum ; know_V2 = dirV2 (regV "عَرِف") ; - know_VS = mkVS (regV "عَرِف") ; -- or with ع ل م‎? + know_VS = mkVS (regV "عَرِف") ; -- or with ع ل م? lake_N = sdfN "بحر" "فُعَيلة" Fem NoHum ; lamp_N = brkN "صبح" "مِفعال" "مَفاعِيل" Masc NoHum ; --qanDIl, fAnUs learn_V2 = dirV2 (v5 "علم") ; diff --git a/src/arabic/OrthoAra.gf b/src/arabic/OrthoAra.gf index 5c5602d9d..a15dc7cfd 100644 --- a/src/arabic/OrthoAra.gf +++ b/src/arabic/OrthoAra.gf @@ -12,7 +12,7 @@ flags coding=utf8 ; sun : pattern Str = #("ت"|"ث"|"د"|"ذ"|"ر"|"ز"|"س"|"ش"|"ص"|"ض"|"ط"|"ظ"|"ل"|"ن") ; -- Hamza - hamza : pattern Str = #("ء‎"|"؟") ; + hamza : pattern Str = #("ء"|"؟") ; rectifyHmz: Str -> Str = \word -> case word of { diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 15e4d6668..7d07fe75d 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -952,7 +952,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> Const => table { Nom => "َا"; - _ => "َيْ‎" + _ => "َيْ" }; _ => table { diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index 9602b19b1..ea33158c3 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -20,7 +20,7 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra in { ComplVV vv vp = let vvVP = predV vv in --- IL vp ** { s = \\pgn,vpf => vvVP.s ! pgn ! vpf - ++ vv.c2 -- أَنْ‎ + ++ vv.c2 -- أَنْ ++ vp.s ! pgn ! VPImpf Cnj } ; From 145fc773cb587655c7951061be01779019bed12b Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 12 Oct 2018 15:42:33 +0200 Subject: [PATCH 024/172] =?UTF-8?q?(Ara)=20Normalise=20the=20order=20of=20?= =?UTF-8?q?combining=20characters=20=D9=91=20+=20vowel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/arabic/OrthoAra.gf | 7 +++++++ src/arabic/ParadigmsAra.gf | 2 +- src/arabic/ResAra.gf | 13 ++++++------- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/src/arabic/OrthoAra.gf b/src/arabic/OrthoAra.gf index a15dc7cfd..3a24690cd 100644 --- a/src/arabic/OrthoAra.gf +++ b/src/arabic/OrthoAra.gf @@ -11,6 +11,13 @@ flags coding=utf8 ; -- "Sun letters": assimilate with def. article sun : pattern Str = #("ت"|"ث"|"د"|"ذ"|"ر"|"ز"|"س"|"ش"|"ص"|"ض"|"ط"|"ظ"|"ل"|"ن") ; + -- Shadda: https://www.unicode.org/L2/L2017/17253-arabic-ordering.pdf + fixShd : Str -> Str -> Str = \word,vowel -> + case word of { + x + "ّ" => x + vowel + "ّ" ; + x => x + vowel + } ; + -- Hamza hamza : pattern Str = #("ء"|"؟") ; diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index 3aaa804ff..089421cc3 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -438,7 +438,7 @@ resource ParadigmsAra = open -- e.g. al-jamii3, 2a7ad regNP : Str -> Number -> NP = \word,n -> - { s = \\c => word ++ vowel ! c ; ---- gives strange chars + { s = \\c => fixShd word (dec1sg ! Def ! c) ; a = {pgn = Per3 Masc n; isPron = False }; lock_NP = <> }; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 7d07fe75d..c3cc2aa9f 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -842,13 +842,12 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> -- takes a singular or broken plural word and tests the ending to -- determine the declension and gives the corresponding inf table - sing : Str -> State => Case => Str = - \word -> - case word of { - lemma + "ِي" => \\s,c => defArt s lemma + dec2sg ! s ! c ; - _ + ("ا"|"ى") => \\s,c => defArt s word + dec3sg ! s ! c ; - _ => \\s,c => defArt s word + dec1sg ! s ! c - }; + sing : Str -> State => Case => Str = \word -> + \\s,c => defArt s (case word of { + lemma + "ِي" => fixShd lemma (dec2sg ! s ! c) ; + _ + ("ا"|"ى") => fixShd word (dec3sg ! s ! c) ; + _ => fixShd word (dec1sg ! s ! c) + }) ; -- takes a singular word and tests the ending to From 8db210fd97d16a3a5d87f0fb5bf7d40ceb4265d3 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 15 Oct 2018 16:07:29 +0200 Subject: [PATCH 025/172] (Ara) fix bad_A --- src/arabic/LexiconAra.gf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/arabic/LexiconAra.gf b/src/arabic/LexiconAra.gf index 3ff631384..fcd47e404 100644 --- a/src/arabic/LexiconAra.gf +++ b/src/arabic/LexiconAra.gf @@ -19,7 +19,8 @@ flags ask_V2Q = dirV2 (regV "يَس؟َل") ; -- ask_V2Q = dirV2 (v1 "س؟ل" a a) ; baby_N = brkN "طفل" "فِعل" "أَفعال" Masc Hum; - bad_A = sndA "سو؟" "فَيِّع" ; +-- bad_A = sndA "سو؟" "فَيِّع" ; + bad_A = mkA "سَيِّئ" "سَيِّئَة" "سَيِّئِين" ; bank_N = brkN "بنك" "فَعل" "فُعُول" Masc NoHum ; beautiful_A = sndA "جمل" "فَعِيل" ; become_VA = mkVA (v4 "صبح") ; From 7b13eb0adebeed0ec7ba59795ee2c509d90983cb Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 15 Oct 2018 16:08:11 +0200 Subject: [PATCH 026/172] (Ara) Better checks if a Num or Ord is a numeral --- src/arabic/CatAra.gf | 2 +- src/arabic/LexiconAra.gf | 4 ++-- src/arabic/NounAra.gf | 49 +++++++++++++++++--------------------- src/arabic/ParadigmsAra.gf | 2 +- src/arabic/ResAra.gf | 15 ++++++++---- src/arabic/SymbolAra.gf | 4 ++-- 6 files changed, 39 insertions(+), 37 deletions(-) diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index 2ed255154..2dbc2278a 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -49,8 +49,8 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { CN = ResAra.Noun ** {adj : NTable}; NP, Pron = ResAra.NP; --{s : Case => Str ; a : Agr } ; - Ord, Num, + Ord, Card = ResAra.NumOrdCard ; Predet = ResAra.Predet ; diff --git a/src/arabic/LexiconAra.gf b/src/arabic/LexiconAra.gf index fcd47e404..f8f2a5b2f 100644 --- a/src/arabic/LexiconAra.gf +++ b/src/arabic/LexiconAra.gf @@ -249,8 +249,8 @@ flags jump_V = regV "يَقفِز" ; -- jump_V = v1 "قفز" a i ; - left_Ord = mkOrd "أَيسَر" "يُسرَى"; - right_Ord = mkOrd "أَيمَن" "يُمنَى" ; + left_Ord = mkOrd "أَيسَر" "يُسرَى" One; + right_Ord = mkOrd "أَيمَن" "يُمنَى" One; far_Adv = mkAdv "بَعِيداً" ; correct_A = sndA "صحّ" "فَعِيل" ; diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index 143d422ce..8e05229fb 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -78,10 +78,9 @@ lin n = num.n; d = quant.d; isPron = quant.isPron; - isNum = - case num.n of { - None => False; - _ => True + isNum = case num.n of { + None => ord.isNum ; -- ord may come from OrdDigits or OrdNumeral + _ => True } } ; @@ -91,20 +90,13 @@ lin n = num.n; d = quant.d; isPron = quant.isPron; - isNum = + isNum = -- Num may come from NumCard : Card -> Num case num.n of { None => False; - _ => True + _ => True } } ; - - --DEPRECATED - -- SgQuant quant = {s = quant.s ! Sg ; d = quant.d; - -- isPron = quant.isPron; isNum = False} ; - -- PlQuant quant = {s = quant.s ! Pl ; d = quant.d; - -- isPron = quant.isPron; isNum = False} ; - PossPron p = { s = \\_,_,_,_ => p.s ! Gen; d = Const; @@ -113,37 +105,39 @@ lin NumSg = { s = \\_,_,_ => [] ; - n = One } ; + n = One ; + isNum = False } ; NumPl = { s = \\_,_,_ => [] ; - n = None } ; + n = None ; + isNum = False } ; - NumDigits digits = { - s = \\_,_,_ => digits.s; - n = digits.n + NumDigits digits = digits ** { + s = \\_,_,_ => digits.s ; + isNum = True }; - NumNumeral numeral = { + NumNumeral numeral = numeral ** { s = numeral.s ! NCard ; - n = numeral.n + isNum = True }; NumCard n = n ; - AdNum adn num = { + AdNum adn num = num ** { s = \\g,d,c => adn.s ++ num.s ! g ! d ! c ; - n = num.n } ; + } ; - OrdDigits digits = { + OrdDigits digits = digits ** { s = \\_,d,_ => Al ! d ++ digits.s; - n = digits.n + isNum = True }; -- OrdNumeral : Numeral -> Ord ; -- fifty-first - OrdNumeral numeral = { + OrdNumeral numeral = numeral ** { s = numeral.s ! NOrd ; - n = numeral.n + isNum = True }; -- FIXME, "the biggest house" would better translate into @@ -151,7 +145,8 @@ lin -- DetCN (DetSg DefArt (OrdSuperl big_A)) (UseN house_N) OrdSuperl a = { s = \\_,d,c => a.s ! AComp d c; - n = One + n = One ; + isNum = False } ; DefArt = { diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index 089421cc3..bd1e5da9e 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -478,7 +478,7 @@ resource ParadigmsAra = open => ula'ika; _ => tilka }; - d = Def; + d = det; isPron = False; isNum = False; lock_Quant = <> diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index c3cc2aa9f..90222d049 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -117,8 +117,10 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { NumOrdCard : Type = { s : Gender => State => Case => Str ; n : Size ; + isNum : Bool } ; + uttNum : NumOrdCard -> (Gender => Str) ; uttNum n = \\g => n.s ! g ! Def ! Nom ; ----IL @@ -1085,21 +1087,26 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> case pgn of { Per3 gn nm => {g = gn; n = nm}; Per2 gn nm => {g = gn; n = nm}; - _ => {g = Masc; n = Sg} --randomly + Per1 nm => {g = Masc; --randomly + n = case nm of { + Sing => Sg ; + Plur => Pl} + } }; mkIP : Str -> Number -> IP = \s,n -> {s = \\_g,_s,_c => s ; n = n} ; - mkOrd : (_,_ : Str) -> NumOrdCard = - \aysar,yusra -> + mkOrd : (_,_ : Str) -> Size -> NumOrdCard = + \aysar,yusra,sz -> { s = \\g,s,c => case g of { Masc => (sing aysar) ! s ! c; Fem => (sing yusra) ! s ! c }; - n = None + n = sz ; + isNum = False }; diff --git a/src/arabic/SymbolAra.gf b/src/arabic/SymbolAra.gf index 02368836c..c239b087a 100644 --- a/src/arabic/SymbolAra.gf +++ b/src/arabic/SymbolAra.gf @@ -26,8 +26,8 @@ lin SymbS sy = sy ; - SymbOrd n = {s = \\_,_,_ => n.s ; n = None } ; - SymbNum n = SymbOrd n ** { n = ThreeTen } ; ----IL + SymbOrd n = {s = \\_,_,_ => n.s ; n = One ; isNum = False } ; + SymbNum n = SymbOrd n ** { n = ThreeTen ; isNum = True } ; ----IL lincat From 82aa6549cca726591d897d65b4f8aa7767a48c74 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 15 Oct 2018 16:47:26 +0200 Subject: [PATCH 027/172] (Ara) Fix MassNP: now with adjective included --- src/arabic/NounAra.gf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index 8e05229fb..f383f1806 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -162,7 +162,8 @@ lin } ; MassNP cn = ---- AR - {s = cn.s ! Sg ! Indef ; a = {pgn = Per3 cn.g Sg ; isPron = False}} ; + {s = \\c => cn.s ! Sg ! Indef ! c ++ cn.adj ! Sg ! Indef ! c ; + a = {pgn = Per3 cn.g Sg ; isPron = False}} ; -- MassDet = {s = \\_,_,_,_ => [] ; d = Indef; -- isNum = False; isPron = False} ; From b33d260377d55ce934b6c19db253a61fd929f47e Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 16 Oct 2018 17:46:28 +0200 Subject: [PATCH 028/172] (Ara) Add NP field to CN for apposition, to attach poss.suff. correctly --- src/arabic/CatAra.gf | 2 +- src/arabic/NounAra.gf | 14 ++++++-------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index 2dbc2278a..ac01f54e3 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -47,7 +47,7 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { -- Noun - CN = ResAra.Noun ** {adj : NTable}; + CN = ResAra.Noun ** {adj : NTable ; np : Case => Str}; NP, Pron = ResAra.NP; --{s : Case => Str ; a : Agr } ; Num, Ord, diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index f383f1806..b7cc77d2f 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -169,7 +169,9 @@ lin -- isNum = False; isPron = False} ; UseN, - UseN2 = \n -> n ** {adj = \\_,_,_ => []}; + UseN2 = \n -> n ** { + adj = \\_,_,_ => []; + np = \\_ => []}; Use2N3 n3 = n3 ; Use3N3 n3 = n3 ** {c2 = n3.c3} ; @@ -179,16 +181,12 @@ lin ComplN3 n3 np = ComplN2 n3 np ** {c2 = n3.c3} ; - AdjCN ap cn = { - s = \\n,d,c => cn.s ! n ! d ! c; - adj = \\n,d,c => ap.s ! cn.h ! cn.g ! n ! (definite ! d) ! c ; - g = cn.g; - h = cn.h + AdjCN ap cn = cn ** { + adj = \\n,d,c => ap.s ! cn.h ! cn.g ! n ! (definite ! d) ! c }; -- RelCN cn rs = {s = \\n,c => cn.s ! n ! c ++ rs.s ! {n = n ; p = P3}} ; -- AdvCN cn ad = {s = \\n,c => cn.s ! n ! c ++ ad.s} ; -- -- SentCN cn sc = {s = \\n,c => cn.s ! n ! c ++ sc.s} ; - ApposCN cn np = cn ** { - s = \\n,d,c => cn.s ! n ! d ! c ++ np.s ! c } ; + ApposCN cn np = cn ** { np = np.s } ; } From 5f39c419882e81e050e35b2327e7414948e9b798 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 16 Oct 2018 17:47:14 +0200 Subject: [PATCH 029/172] (Ara) Fixes to a few fords --- src/arabic/LexiconAra.gf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/arabic/LexiconAra.gf b/src/arabic/LexiconAra.gf index f8f2a5b2f..f6248048a 100644 --- a/src/arabic/LexiconAra.gf +++ b/src/arabic/LexiconAra.gf @@ -234,7 +234,7 @@ flags write_V2 = dirV2 (regV "يَكتُب") ; -- write_V2 = dirV2 (v1 "كتب" a u) ; yellow_A = clrA "صفر" ; - young_A = sndA "شبّ" "فاعّ" ; + young_A = sndA "شبب" "فاعّ" ; do_V2 = dirV2 (regV "يَفعَل") ; -- do_V2 = dirV2 (v1 "فعل" a a ) ; @@ -287,7 +287,7 @@ flags fingernail_N = brkN "ظفر" "فُعل" "أَفاعِل" Masc NoHum; fire_N = brkN "نور" "فاع" "فِيعان" Fem NoHum; flower_N = brkN "زهر" "فَعلة" "فُعُول" Fem NoHum; - fog_N = brkN "ضبّ" "فَعال" "فَعال" Masc NoHum; --no plural ? + fog_N = brkN "ضبب" "فَعال" "فَعال" Masc NoHum; --no plural ? foot_N = brkN "قدم" "فَعَل" "أَفعال" Fem NoHum; forest_N = sdfN "غيب" "فاعة" Fem NoHum; grass_N = brkN "عشب" "فُعلة" "أَفعال" Fem NoHum; @@ -305,7 +305,7 @@ flags liver_N = brkN "كبد" "فَعِل" "أَفعال" Masc NoHum ; louse_N = sdfN "قمل" "فَعلة" Fem NoHum; mouth_N = brkN "فوه" "فُعل" "أَفعال" Masc NoHum ; - name_N = brkN "؟سم" "فِعل" "فَعالِي" Masc NoHum; + name_N = brkN "ءسم" "فِعل" "فَعالِي" Masc NoHum; neck_N = brkN "رقب" "فَعَلة" "فِعال" Fem NoHum; night_N = brkN "ليل" "فَعلة" "فَعالِي" Fem NoHum; --plural? nose_N = brkN "؟نف" "فَعل" "فُعُول" Masc NoHum; From f5525dfbf090cd338c46160cebb82e7e2c621ce3 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 16 Oct 2018 17:47:35 +0200 Subject: [PATCH 030/172] (Ara) Supporting possessive suffixes, WIP --- src/arabic/CatAra.gf | 5 +- src/arabic/MorphoAra.gf | 12 +--- src/arabic/NounAra.gf | 49 ++++++++------- src/arabic/ParadigmsAra.gf | 22 +++---- src/arabic/ResAra.gf | 122 +++++++++++++++++++++--------------- src/arabic/StructuralAra.gf | 1 + 6 files changed, 110 insertions(+), 101 deletions(-) diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index ac01f54e3..759e0fd5b 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -57,10 +57,7 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { Det = ResAra.Det ; -- {s : Species => Gender => Case => Str ; -- d : State; n : Size; isNum : Bool } ; - Quant = {s : ResAra.Number => Species => Gender => Case => Str; - d : State; - isNum : Bool; - isPron: Bool} ; + Quant = ResAra.Quant ; Art = {s : ResAra.Number => Species => Gender => Case => Str; d : State} ; diff --git a/src/arabic/MorphoAra.gf b/src/arabic/MorphoAra.gf index 2d9225c11..b55549b83 100644 --- a/src/arabic/MorphoAra.gf +++ b/src/arabic/MorphoAra.gf @@ -7,9 +7,10 @@ flags optimize = all ;--noexpand; mkDet : Str -> Number -> State -> Det = \word,num,state -> - { s = \\_,_,c => word + vowel ! c ; + { s = \\_,_,c => word + caseTbl ! c ; n = numberToSize num; d = state; --only Const is used now. check StructuralAra + is1sg = False; isNum = False; isPron = False }; @@ -18,7 +19,7 @@ flags optimize = all ;--noexpand; = \word,decl -> { s = \\c => case decl of { - True => word + vowel!c; + True => word + caseTbl!c; False => word }; isDecl = decl @@ -40,11 +41,4 @@ flags optimize = all ;--noexpand; isNum = True }; - vowel : Case => Str = - table { - Nom => "ُ"; - Acc => "َ"; - Gen => "ِ" - }; - } diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index b7cc77d2f..d02c0a3be 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -6,19 +6,27 @@ lin DetCN det cn = let { number = sizeToNumber det.n; + state = possState det.d; determiner : Case -> Str = \c -> det.s ! cn.h ! (detGender cn.g det.n) ! c; - noun : Case -> NTable -> Str = \c,nt -> nt ! - number ! (nounState det.d number) ! (nounCase c det.n det.d) + noun : Case -> NTable -> Str = \c,nt -> + let cas = if_then_else Case det.is1sg Bare c -- no case vowel with 1sg poss. suff. + in nt ! number + ! nounState det.d number + ! nounCase cas det.n det.d } in { s = \\c => case cnB4det det.isPron det.isNum det.n det.d of { - False => determiner c ++ noun c cn.s ++ noun c cn.adj ; - --FIXME use the adj -> cn -> cn rule from below instead of - --repeating code - True => cn.s ! number ! det.d ! c ++ det.s ! cn.h ! cn.g ! c - ++ cn.adj ! number ! det.d ! c - }; + False => determiner c + ++ noun c cn.s -- deal with poss. suffix + ++ cn.adj ! number ! state ! c -- normal case+state + ++ cn.np ! c ; + True => noun c cn.s -- deal with poss. suffix + -- ++ determiner c -- or this? + ++ det.s ! cn.h ! cn.g ! c + ++ cn.adj ! number ! state ! c -- normal case+state + ++ cn.np ! c + }; a = { pgn = agrP3 cn.h cn.g number; isPron = False } }; @@ -70,36 +78,33 @@ lin } ; -} - DetQuantOrd quant num ord = { + DetQuantOrd quant num ord = quant ** { s = \\h,g,c => quant.s ! Pl ! h ! g ! c ++ num.s ! g ! (toDef quant.d num.n) ! c --FIXME check this: ++ ord.s ! g ! (toDef quant.d num.n) ! c ; n = num.n; - d = quant.d; - isPron = quant.isPron; - isNum = case num.n of { - None => ord.isNum ; -- ord may come from OrdDigits or OrdNumeral - _ => True - } + isNum = orB num.isNum ord.isNum ; + -- ord may come from OrdDigits or OrdNumeral + -- num may come from NumCard : Card -> Num + } ; - DetQuant quant num = { + DetQuant quant num = quant ** { s = \\h,g,c => quant.s ! Pl ! h ! g ! c ++ num.s ! g ! (toDef quant.d num.n) ! c ; n = num.n; - d = quant.d; - isPron = quant.isPron; isNum = -- Num may come from NumCard : Card -> Num case num.n of { None => False; - _ => True + _ => num.isNum } } ; PossPron p = { s = \\_,_,_,_ => p.s ! Gen; - d = Const; + d = Poss; + is1sg = case p.a.pgn of { Per1 _ => True ; _ => False } ; isPron = True; isNum = False } ; @@ -152,13 +157,13 @@ lin DefArt = { s = \\_,_,_,_ => []; d = Def ; - isNum,isPron = False + isNum,isPron,is1sg = False } ; IndefArt = { s = \\_,_,_,_ => []; d = Indef ; - isNum,isPron = False + isNum,isPron,is1sg = False } ; MassNP cn = ---- AR diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index bd1e5da9e..1533bdef9 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -428,9 +428,9 @@ resource ParadigmsAra = open mkPron : (_,_,_ : Str) -> PerGenNum -> NP = \ana,nI,I,pgn -> { s = table { - Nom => ana; Acc => nI; - Gen => I + Gen => I; + _ => ana }; a = {pgn = pgn; isPron = True }; lock_NP = <> @@ -451,7 +451,7 @@ resource ParadigmsAra = open }; mkQuant7 : (_,_,_,_,_,_,_ : Str) -> State -> Quant = - \hava,havihi,havAn,havayn,hAtAn,hAtayn,hA'ulA,det -> + \hava,havihi,havAn,havayn,hAtAn,hAtayn,hA'ulA,det -> lin Quant (baseQuant ** { s = \\n,s,g,c => case of { <_,Masc,_,Sg> => hava; @@ -463,14 +463,11 @@ resource ParadigmsAra = open => hA'ulA; _ => havihi }; - d = Def; - isPron = False; - isNum = False; - lock_Quant = <> - }; + d = det + }); mkQuant3 : (_,_,_ : Str) -> State -> Quant = - \dalika,tilka,ula'ika,det -> + \dalika,tilka,ula'ika,det -> lin Quant (baseQuant ** { s = \\n,s,g,c => case of { <_,Masc,_,Sg> => dalika; @@ -478,11 +475,8 @@ resource ParadigmsAra = open => ula'ika; _ => tilka }; - d = det; - isPron = False; - isNum = False; - lock_Quant = <> - }; + d = det + }); degrA : (posit,compar,plur : Str) -> A = \posit,compar,plur -> lin A {s = clr posit compar plur} ; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 90222d049..3031f0062 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -17,10 +17,14 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { Vowel = u | a | i ; Number = Sg | Dl | Pl; Gender = Masc | Fem ; - Case = Nom | Acc | Gen ; + Case = Nom | Acc | Gen + | Bare ; -- 1st person poss. suff. overrides case Person = P1 | P2 | P3 ; Species = NoHum | Hum ; - State = Def | Indef | Const ; + State = Def | Indef | Const + | Poss ; -- ة turns into ت + -- sound masculine plural drops ن + -- case vowel retained Mood = Ind | Cnj | Jus ; Voice = Act | Pas ; Tense = Pres | Past | Fut ; @@ -783,6 +787,14 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> --Nominal Morphology + caseTbl : Case => Str = + table { + Bare => [] ; + Nom => "ُ"; + Acc => "َ"; + Gen => "ِ" + }; + --takes the adjective lemma and gives the Posit table positAdj : Str -> Gender => NTable = \kabIr -> @@ -848,20 +860,22 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> \\s,c => defArt s (case word of { lemma + "ِي" => fixShd lemma (dec2sg ! s ! c) ; _ + ("ا"|"ى") => fixShd word (dec3sg ! s ! c) ; + lemma + "ة" => case s of { + Poss => lemma + "ت" + dec1sg ! s ! c ; + _ => word + dec1sg ! s ! c + } ; _ => fixShd word (dec1sg ! s ! c) }) ; -- takes a singular word and tests the ending to -- determine the declension and gives the corresponding dual inf table - dual : Str -> State => Case => Str = - \caSaA -> - case caSaA of { - lemma + ("ا"|"ى") => \\s,c => defArt s lemma + "ي" + dl ! s ! c ; - lemma + "ة" => - \\s,c => defArt s (lemma + "ت") + dl ! s ! c ; - _ => \\s,c => defArt s caSaA + dl ! s ! c - }; + dual : Str -> State => Case => Str = \caSaA -> + \\s,c => defArt s (case caSaA of { + lemma + ("ا"|"ى") => lemma + "ي" + dl ! s ! c ; + lemma + "ة" => lemma + "ت" + dl ! s ! c ; + _ => fixShd caSaA (dl ! s ! c) + }); -- takes a singular word and gives the corresponding sound --plural feminine table @@ -898,52 +912,39 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> table { Indef => table { + Bare => []; Nom => "ٌ"; Acc => "ً"; Gen => "ٍ" }; - _ => - table { --think of ?axU, ?axA, (the five nouns) - Nom => "ُ"; - Acc => "َ"; - Gen => "ِ" - } + _ => caseTbl --think of ?axU, ?axA, (the five nouns) + }; --indeclinables (mamnuu3 mina S-Sarf) indecl : Case => Str = table { - Nom => "ُ"; - _ => "َ" + Gen => "َ" ; + x => caseTbl ! x }; - --declection 2 (ends in yaa') - dec2sg : State => Case => Str = - table { - Indef => - table { - Acc => "ِياً"; - _ => "ٍ" - }; - _ => - table { - Acc => "ِيَ"; - _ => "ِي" - } + --declension 2 (ends in yaa') + dec2sg : State => Case => Str = \\s,c => + case of { + <_, Bare> => [] ; + => "ِياً" ; + => "ٍ" ; + <_, Acc> => "ِيَ" ; + _ => "ِي" }; - --declention 3 (ending in alif) - dec3sg : State => Case => Str = - table { - Indef => - table { - _ => "ً" - }; - _ => - table { - _ => "" - } + --declension 3 (ending in alif) + dec3sg : State => Case => Str = \\s,c => + case of { + => [] ; + => "ً" ; + _ => [] }; @@ -957,12 +958,13 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> }; _ => table { - Nom => "َانِ"; - _ => "َيْنِ" + Nom => "َانِ"; + Bare => "َيْن"; + _ => "َيْنِ" } }; - --sound mascualine plural suffixes + --sound masculine plural suffixes m_pl : State => Case => Str = table { Const => @@ -972,6 +974,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> }; _ => table { + Bare => "ِين"; Nom => "ُونَ"; _ => "ِينَ" } @@ -982,11 +985,13 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> table { Indef => table { + Bare => []; Nom => "ٌ"; _ => "ٍ" }; _ => table { + Bare => []; Nom => "ُ"; _ => "ِ" } @@ -1030,11 +1035,14 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> case of { => Def; --kullu l-kutubi, bacDu l-kutubi => Indef; --kullu kitaabin - => Indef; --kitaabun - _ => Def --Lkitaabu + => Indef; --kitaabun + => Poss; + _ => Def --Lkitaabu }; - + possState : State -> State = \s -> + case s of { Poss => Def ; + x => x } ; --FIXME needs testing nounCase : Case -> Size -> State -> Case = \c,size,s -> @@ -1112,14 +1120,24 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> oper - Det : Type = { - s : Species => Gender => Case => Str ; + BaseQuant : Type = { d : State; - n : Size; + is1sg : Bool; -- To force no case marker for 1st person poss. suff. isNum : Bool; -- for genitive pronouns (suffixes). if true, then "cn ++ det" --should be used instead of "det ++ cn" when constructing the NP - isPron : Bool + isPron: Bool} ; + + baseQuant = { d = Indef ; + is1sg,isNum,isPron = False } ; + + Quant : Type = BaseQuant ** { + s : ResAra.Number => Species => Gender => Case => Str + } ; + + Det : Type = BaseQuant ** { + s : Species => Gender => Case => Str ; + n : Size } ; Predet : Type = { diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index fb7ae0b12..5c49c6bf7 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -98,6 +98,7 @@ concrete StructuralAra of Structural = CatAra ** where_IAdv = ss "أَينَ" ; which_IQuant = { s = \\s,c => case of { + => "أيّ" ; => "أيٌّ" ; => "أيُّ" ; => "أيّاً" ; From 0b901669fd70684360483ddb6aee29cb68887da7 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 17 Oct 2018 17:15:00 +0200 Subject: [PATCH 031/172] (Ara) change someSg_Det into singular --- src/arabic/StructuralAra.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index 5c49c6bf7..8160f2eff 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -69,7 +69,7 @@ concrete StructuralAra of Structural = CatAra ** she_Pron = mkPron "هِيَ" "ها" "ها" (Per3 Fem Sg) ; -- so_AdA = ss "سْ" ; somebody_NP = regNP "أَحَد" Sg ; - someSg_Det = mkDet "أَحَد" Pl Const ; + someSg_Det = mkDet "أَحَد" Sg Const ; somePl_Det = mkDet "بَعض" Pl Const ; something_NP = regNP "شَيْء" Sg ; -- somewhere_Adv = ss "سْموهري" ; From 096beae214454467a198ba2d01b46b00bc386e71 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 17 Oct 2018 17:15:39 +0200 Subject: [PATCH 032/172] (Ara) More cases in normalisation functions for diacritics --- src/arabic/OrthoAra.gf | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/arabic/OrthoAra.gf b/src/arabic/OrthoAra.gf index 3a24690cd..8e861e0cd 100644 --- a/src/arabic/OrthoAra.gf +++ b/src/arabic/OrthoAra.gf @@ -4,18 +4,16 @@ flags coding=utf8 ; oper - -- Definite article assimilation - vow : pattern Str = #("َ" | "ِ" | "ُ") ; - + vow : pattern Str = #("َ" | "ِ" | "ُ" | "ً" | "ٍ" | "ٌ") ; -- "Sun letters": assimilate with def. article sun : pattern Str = #("ت"|"ث"|"د"|"ذ"|"ر"|"ز"|"س"|"ش"|"ص"|"ض"|"ط"|"ظ"|"ل"|"ن") ; -- Shadda: https://www.unicode.org/L2/L2017/17253-arabic-ordering.pdf - fixShd : Str -> Str -> Str = \word,vowel -> - case word of { - x + "ّ" => x + vowel + "ّ" ; - x => x + vowel + fixShd : Str -> Str -> Str = \word,suffix -> + case of { + => x + v + "ّ" + y ; + _ => word + suffix } ; -- Hamza From 5489e1cd5121434361a4034a7623863dbaf98293 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 17 Oct 2018 17:17:09 +0200 Subject: [PATCH 033/172] =?UTF-8?q?(Ara)=20Small=20fixes:=20hamza,=20order?= =?UTF-8?q?=20of=20diacritics=20and=20remove=20=D9=91=20=20from=20root?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/arabic/LexiconAra.gf | 225 +++++++++++++++++++-------------------- 1 file changed, 112 insertions(+), 113 deletions(-) diff --git a/src/arabic/LexiconAra.gf b/src/arabic/LexiconAra.gf index f6248048a..7d4e95071 100644 --- a/src/arabic/LexiconAra.gf +++ b/src/arabic/LexiconAra.gf @@ -11,16 +11,16 @@ flags lin - airplane_N = sdfN "ط؟ر" "فاعِلة" Fem NoHum ; + airplane_N = sdfN "طءر" "فاعِلة" Fem NoHum ; answer_V2S = dirV2 (v3 "جوب") ; apartment_N = brkN "شقّ" "فِعّة" "فِعَل" Fem NoHum ; apple_N = sdfN "تفح" "فِعّالة" Fem NoHum ; - art_N = brkN "فنّ" "فَعّ" "فُعُول" Masc NoHum ; - ask_V2Q = dirV2 (regV "يَس؟َل") ; --- ask_V2Q = dirV2 (v1 "س؟ل" a a) ; - baby_N = brkN "طفل" "فِعل" "أَفعال" Masc Hum; --- bad_A = sndA "سو؟" "فَيِّع" ; - bad_A = mkA "سَيِّئ" "سَيِّئَة" "سَيِّئِين" ; + art_N = brkN "فنن" "فَعّ" "فُعُول" Masc NoHum ; + ask_V2Q = dirV2 (regV "يَسءَل") ; +-- ask_V2Q = dirV2 (v1 "سءل" a a) ; + baby_N = brkN "طفل" "فِعل" "أَفعَال" Masc Hum; +-- bad_A = sndA "سوء" "فَيِّع" ; + bad_A = degrA "سَيِّئ" "سَيِّئَة" "سَيِّئِين" ; bank_N = brkN "بنك" "فَعل" "فُعُول" Masc NoHum ; beautiful_A = sndA "جمل" "فَعِيل" ; become_VA = mkVA (v4 "صبح") ; @@ -32,89 +32,90 @@ flags black_A = clrA "سود" ; blue_A = clrA "زرق" ; boat_N = brkN "قرب" "فاعِل" "فَواعِل" Masc NoHum ; - book_N = brkN "كتب" "فِعال" "فُعُل" Masc NoHum ; + book_N = brkN "كتب" "فِعَال" "فُعُل" Masc NoHum ; boot_N = sdfN "جزم" "فَعلة" Fem NoHum ; - boss_N = brkN "دور" "مُفِيع" "مُفَعاء" Masc Hum ; + boss_N = sdmN "دور" "مُفِيع" Masc Hum ; + --boss_N = brkN "دور" "مُفِيع" "مُفَعَاء" Masc Hum ; boy_N = brkN "صبي" "فَعِل" "فُعلان" Masc Hum ; - bread_N = brkN "خبز" "فُعل" "أَفعال" Masc NoHum ; + bread_N = brkN "خبز" "فُعل" "أَفعَال" Masc NoHum ; break_V2 = dirV2 (regV "يَكسُر") ; -- break_V2 = dirV2 (v1 "كسر" a u) ; broad_A = sndA "وسع" "فاعِل" ; - brother_N2 = mkN2 (brkN "؟خو" "فَع" "فِعلة" Masc Hum) ; --FIXME - brown_A = sndA "بني" "فُعِّل"; + brother_N2 = mkN2 (brkN "ءخو" "فَع" "فِعلة" Masc Hum) ; --FIXME dual + brown_A = sndA "بني" "فُعِّل"; butter_N = sdfN "سبد" "فُعلة" Fem NoHum ; buy_V2 = dirV2 (v8 "شري") ; camera_N = sdfN "كمر" "فاعِيلا" Fem NoHum ; -- |Alö taSwIr - cap_N = sdfN "قبع" "فُعَّلة" Fem NoHum ; --qalnUsö + cap_N = sdfN "قبع" "فُعَّلة" Fem NoHum ; --qalnUsö car_N = sdfN "سير" "فَعّالة" Fem NoHum ; carpet_N = sdfN "سجد" "فَعّالة" Fem NoHum ; - cat_N = brkN "هرّ" "فِعّة" "فِعَل" Fem NoHum ; + cat_N = brkN "هرّ" "فِعّ" "فِعَلَة" Fem NoHum ; ceiling_N = brkN "سقف" "فَعل" "أَفعُل" Masc NoHum ; - chair_N = brkN "كرس" "فُعلِي" "فَعالِي" Masc NoHum ; - cheese_N = brkN "جبن" "فُعلة" "أَفعال" Fem NoHum ; - child_N = brkN "ولد" "فَعَل" "أَفعال" Masc Hum ; - church_N = brkN "كنس" "فَعِيلة" "فَعاٱِل" Fem Hum ; + chair_N = brkN "كرس" "فُعلِي" "فَعَالِي" Masc NoHum ; + cheese_N = brkN "جبن" "فُعلة" "أَفعَال" Fem NoHum ; + child_N = brkN "ولد" "فَعَل" "أَفعَال" Masc Hum ; + church_N = brkN "كنس" "فَعِيلة" "فَعَاٱِل" Fem Hum ; city_N = brkN "مدن" "فَعِيلة" "فُعُل" Fem NoHum ; clean_A = sndA "نظف" "فَعِيل" ; clever_A = sndA "جهد" "مُفتَعِل" ; close_V2 = dirV2 (v4 "غلق") ; coat_N = brkN "عطف" "مِفعَل" "مَفاعِل" Masc NoHum ; cold_A = sndA "برد" "فاعِل" ; - come_V = v1 "جي؟" a i ; --check + come_V = v1 "جيء" a i ; --check computer_N = brkN "حسب" "فاعُول" "فَواعِيل" Masc NoHum ; - country_N = brkN "بلد" "فَعَل" "فِعال" Masc NoHum ; + country_N = brkN "بلد" "فَعَل" "فِعَال" Masc NoHum ; cousin_N = brkN "قرب" "فَعِيل" "أَفعِلاء" Masc Hum ; -- (aDAc love_N = brkN "حبّ" "فُعّ" "فُعّ" Masc NoHum ; -- no plur love_V2 = dirV2 (v1 "حبّ" a i) ; - man_N = brkN "رجل" "فَعُل" "فِعال" Masc Hum ; - married_A2 = mkA2 (sndA "زوج" "مُتَفَعِّل") "مِن" ; + man_N = brkN "رجل" "فَعُل" "فِعَال" Masc Hum ; + married_A2 = mkA2 (sndA "زوج" "مُتَفَعِّل") "مِن" ; meat_N = brkN "لحم" "فَعلة" "فُعُول" Masc NoHum ; milk_N = brkN "حلب" "فَعِيل" "فَعِيل" Masc NoHum ; --no plur - moon_N = brkN "قمر" "فَعَل" "أَفعال" Masc NoHum ; - mother_N2 = mkN2 (sdfN "؟م" "فُعّ" Fem Hum) ; - mountain_N = brkN "جبل" "فَعَل" "فِعال" Masc NoHum ; + moon_N = brkN "قمر" "فَعَل" "أَفعَال" Masc NoHum ; + mother_N2 = mkN2 (sdfN "ءم" "فُعَّ" Fem Hum) ; + mountain_N = brkN "جبل" "فَعَل" "فِعَال" Masc NoHum ; music_N = mkN (reg "مُوسِيقَى" "مُوسِيقَى") Fem NoHum ; --no plur - narrow_A = sndA "ضيق" "فَعِّل" ; - new_A = sndA "جدّ" "فَعِيل" ; + narrow_A = sndA "ضيق" "فَعِّل" ; + new_A = mkA "جدد" "فَعِيل" "فُعُل" ; newspaper_N = brkN "صحف" "فَعِيلة" "فُعُل" Fem NoHum ; oil_N = brkN "زيت" "فَعل" "فُعُول" Masc NoHum ; old_A = sndA "قدم" "فَعِيل" ; @@ -145,30 +146,30 @@ flags -- open_V2 = dirV2 (v1 "فتح" a a ) ; paint_V2A = mkV2A (regV "يَدهَن" ) [] ; -- paint_V2A = mkV2A (v1 "دهن" a a ) [] ; - paper_N = brkN "ورق" "فَعَلة" "أَفعال" Fem NoHum ; + paper_N = brkN "ورق" "فَعَلة" "أَفعَال" Fem NoHum ; paris_PN = mkPN "بارِيس" Fem NoHum ; - peace_N = brkN "سلم" "فَعال" "فَعال" Masc NoHum; --no plur - pen_N = brkN "قلم" "فَعَل" "أَفعال" Masc NoHum; + peace_N = brkN "سلم" "فَعَال" "فَعَال" Masc NoHum; --no plur + pen_N = brkN "قلم" "فَعَل" "أَفعَال" Masc NoHum; planet_N = mkN (reg "كَوكَب" "كَواكِب") Masc NoHum ; -- quadriconsonantal plastic_N = mkN (sndf "بلاستِيك") Masc NoHum ; play_V2 = dirV2 (regV "لَعِب") ; -- play_V2 = dirV2 (v1 "لعب" i a) ; policeman_N = sdmN "شرط" "فِعلِي" Masc Hum ; - priest_N = brkN "قسّ" "فِعِّيل" "أَفِعّة" Masc Hum ; + priest_N = brkN "قسّ" "فِعِّيل" "أَفِعّة" Masc Hum ; probable_AS = mkAS (sndA "مكن" "مُفعِل") ; queen_N = sdfN "ملك" "فَعِلة" Fem Hum ; radio_N = mkN (sndf "راديُو") Masc NoHum ; rain_V0 = mkV0 (regV "يَمطُر") ; -- rain_V0 = mkV0 (v1 "مطر" a u) ; - read_V2 = dirV2 (regV "يَقرَ؟") ; --- read_V2 = dirV2 (v1 "قر؟" a a ) ; + read_V2 = dirV2 (regV "يَقرَء") ; +-- read_V2 = dirV2 (v1 "قرء" a a ) ; red_A = clrA "حمر" ; - religion_N = brkN "دين" "فِعل" "أَفعال" Masc NoHum ; + religion_N = brkN "دين" "فِعل" "أَفعَال" Masc NoHum ; restaurant_N = brkN "طعم" "مَفعَل" "مَفاعِل" Masc NoHum ; - river_N = brkN "نهر" "فَعل" "أَفعال" Masc NoHum ; + river_N = brkN "نهر" "فَعل" "أَفعَال" Masc NoHum ; rock_N = brkN "صخر" "فَعلة" "فُعُول" Fem NoHum ; roof_N = brkN "سطح" "فَعل" "أَفعُل" Masc NoHum ; - rubber_N = brkN "مطّ" "فَعّال" "فَعّال" Masc NoHum ; -- no hum + rubber_N = brkN "مطط" "فَعَّال" "فَعَّال" Masc NoHum ; -- no hum run_V = regV "يَركُض" ; -- run_V = v1 "ركض" a u ; say_VS = mkVS (v1 "قول" a u) ; --check @@ -177,41 +178,41 @@ flags sea_N = brkN "بحر" "فَعل" "فُعُول" Masc NoHum ; seek_V2 = dirV2 (regV "يَطلُب") ; -- seek_V2 = dirV2 (v1 "طلب" a u) ; - see_V2 = dirV2 (v1 "ر؟ي" a a) ; + see_V2 = dirV2 (v1 "رءي" a a) ; sell_V3 = dirdirV3 (v1 "بيع" a i) ; --check send_V3 = dirdirV3 (v4 "رسل") ; - sheep_N = brkN "خرف" "فَعُول" "فِعال" Masc NoHum ; + sheep_N = brkN "خرف" "فَعُول" "فِعَال" Masc NoHum ; ship_N = brkN "سفن" "فَعِيلة" "فُعُل" Fem NoHum ; shirt_N = brkN "قمص" "فَعِيل" "فُعلان" Masc NoHum ; - shoe_N = brkN "حذو" "فِعاء" "أَفعِية" Masc NoHum ; + shoe_N = brkN "حذو" "فِعَاء" "أَفعِية" Masc NoHum ; shop_N = brkN "تجر" "مَفعَل" "مَفاعِل" Masc NoHum ; short_A = sndA "قصر" "فَعِيل" ; - silver_N = brkN "فضّ" "فِعّة" "فِعَل" Fem NoHum ; - sister_N = brkN "؟خو" "فُعت" "فَعَوات" Fem Hum ; --FIXME + silver_N = brkN "فضض" "فِعَّة" "فِعَل" Fem NoHum ; + sister_N = brkN "ءخو" "فُعت" "فَعَوَات" Fem Hum ; --FIXME sleep_V = v1 "نوم" i a ; --check small_A = sndA "صغر" "فَعِيل" ; - snake_N = sdfN "حيّ" "فَعّة" Fem NoHum ; + snake_N = sdfN "حيّ" "فَعَّة" Fem NoHum ; sock_N = brkN "جرب" "فَوعَل" "فَواعِل" Masc NoHum ; speak_V2 = dirV2 (v5 "كلم") ; star_N = brkN "نجم" "فَعل" "فُعُول" Masc NoHum ; --najmö - steel_N = brkN "فلذ" "فُوعال" "فَواعِل" Masc NoHum ; - stone_N = brkN "حجر" "فَعَل" "أَفعال" Masc NoHum ; + steel_N = brkN "فلذ" "فُوعَال" "فَواعِل" Masc NoHum ; + stone_N = brkN "حجر" "فَعَل" "أَفعَال" Masc NoHum ; stove_N = brkN "وقد" "مَفعِل" "مَفاعِل" Masc NoHum ; student_N = brkN "طلب" "فاعِل" "فُعّال" Masc Hum ; --tilmI* stupid_A = clrA "بله" ; sun_N = brkN "شمس" "فَعل" "فُعُول" Fem NoHum ; - switch8off_V2 = dirV2 (v4 "طف؟") ; + switch8off_V2 = dirV2 (v4 "طفء") ; switch8on_V2 = dirV2 (v4 "شعل") ; table_N = sdfN "طول" "فاعِلة" Fem NoHum ; talk_V3 = mkV3 (v5 "حدث") "لِ" "عَن" ; - teacher_N = sdmN "علم" "مُفَعِّل" Masc Hum ; --mucal~imö + teacher_N = sdmN "علم" "مُفَعِّل" Masc Hum ; --mucal~imö teach_V2 = dirV2 (v2 "علم") ; television_N = mkN (sndf "تِلِفِزيُون") Masc NoHum ; thick_A = sndA "سمك" "فَعِيل" ; thin_A = sndA "رفع" "فَعِيل" ; - train_N = sdfN "قطر" "فِعال" Masc NoHum; + train_N = sdfN "قطر" "فِعَال" Masc NoHum; travel_V = v3 "سفر" ; - tree_N = brkN "شجر" "فَعلة" "أَفعال" Fem NoHum ; + tree_N = brkN "شجر" "فَعلة" "أَفعَال" Fem NoHum ; ugly_A = sndA "قبح" "فَعِيل" ; understand_V2 = dirV2 (regV "فَهِم") ; -- understand_V2 = dirV2 (v1 "فهم" i a ) ; @@ -219,7 +220,7 @@ flags village_N = brkN "قري" "فَعلة" "فُعَى" Fem NoHum ; --Daycö wait_V2 = dirV2 (v8 "نظر") ; walk_V = v1 "مشي" a i ; --check - warm_A = sndA "دف؟" "فاعِل" ; + warm_A = sndA "دفء" "فاعِل" ; war_N = brkN "حرب" "فَعل" "فُعُول" Fem NoHum ; watch_V2 = dirV2 (v3 "شهد") ; water_N = mkN (reg "ماء" "مِياه") Fem NoHum ; --"موه" "فاء" "فِياع" ?? @@ -229,21 +230,21 @@ flags win_V2 = dirV2 (regV "رَبِح") ; -- win_V2 = dirV2 (v1 "ربح" i a) ; woman_N = mkN (reg "إِمرَأَة" "نِسوَة") Fem Hum ; - wonder_VQ = mkVQ (v6 "س؟ل") ; - wood_N = brkN "خشب" "فَعَل" "أَفعال" Masc NoHum ; + wonder_VQ = mkVQ (v6 "سءل") ; + wood_N = brkN "خشب" "فَعَل" "أَفعَال" Masc NoHum ; write_V2 = dirV2 (regV "يَكتُب") ; -- write_V2 = dirV2 (v1 "كتب" a u) ; yellow_A = clrA "صفر" ; - young_A = sndA "شبب" "فاعّ" ; + young_A = sndA "شبب" "فَاعّ" ; do_V2 = dirV2 (regV "يَفعَل") ; -- do_V2 = dirV2 (v1 "فعل" a a ) ; now_Adv = mkAdv "الآن" ; already_Adv = mkAdv "سابِقاً" ; - song_N = brkN "غني" "أَفعِلة" "أَفاعِي" Fem NoHum ; + song_N = brkN "غني" "أُفعِلَة" "أَفَاعِي" Fem NoHum ; add_V3 = dirV3 (regV "يَجمَع") "وَ" ; -- add_V3 = dirV3 (v1 "جمع" a a) "وَ" ; - number_N = brkN "رقم" "فَعل" "أَفعال" Masc NoHum ; --cadad + number_N = brkN "رقم" "فَعل" "أَفعَال" Masc NoHum ; --cadad put_V2 = dirV2 (v1 "وضع" a a ); stop_V = v5 "وقف" ; jump_V = regV "يَقفِز" ; @@ -253,14 +254,14 @@ flags right_Ord = mkOrd "أَيمَن" "يُمنَى" One; far_Adv = mkAdv "بَعِيداً" ; - correct_A = sndA "صحّ" "فَعِيل" ; + correct_A = sndA "صحّ" "فَعِيل" ; -- TODO broken plural dry_A = sndA "نشف" "فاعِل" ; dull_A = sndA "بهت" "فاعِل" ; - full_A = sndA "مل؟" "فَعِيل" ; + full_A = sndA "ملء" "فَعِيل" ; heavy_A = sndA "ثقل" "فَعِيل" ; near_A = sndA "قرب" "فَعِيل" ; rotten_A = sndA "فسد" "فاعِل" ; - round_A = sndA "دور" "مُفَعَّل" ; + round_A = sndA "دور" "مُفَعَّل" ; sharp_A = sndA "حدّ" "فاعّ" ; smooth_A = sndA "نعم" "فاعِل" ; straight_A = sndA "قوم" "مُستَفِيع" ; @@ -268,68 +269,68 @@ flags wide_A = sndA "وسع" "فاعِل" ; animal_N = sdfN "حيّ" "فَعَوان" Masc NoHum ; - ashes_N = brkN "رمد" "فَعال" "أَفعِلة" Masc NoHum; + ashes_N = brkN "رمد" "فَعَال" "أَفعِلة" Masc NoHum; back_N = brkN "ظهر" "فَعل" "فُعُول" Masc NoHum; - bark_N = brkN "نبح" "فَعل" "فُعال" Masc NoHum; + bark_N = brkN "نبح" "فَعل" "فُعَال" Masc NoHum; belly_N = brkN "بطن" "فَعل" "فُعُول" Fem NoHum; - blood_N = brkN "دم" "فَع" "فِعاء" Masc NoHum; - bone_N = brkN "عظم" "فَعلة" "فِعال" Fem NoHum; + blood_N = brkN "دم" "فَع" "فِعَاء" Masc NoHum; + bone_N = brkN "عظم" "فَعلة" "فِعَال" Fem NoHum; breast_N = brkN "صدر" "فَعل" "فُعُول" Masc NoHum; cloud_N = brkN "غيم" "فَعلة" "فُعُول" Fem NoHum; - day_N = brkN "يوم" "فَعل" "أَفّاع" Masc NoHum; - dust_N = brkN "غبر" "فُعال" "أَفعِلة" Masc NoHum; - ear_N = brkN "؟ذن" "فُعل" "أَفعال" Fem NoHum; + day_N = brkN "يوم" "فَعل" "أَفَّاع" Masc NoHum; + dust_N = brkN "غبر" "فُعَال" "أَفعِلة" Masc NoHum; + ear_N = brkN "ءذن" "فُعل" "أَفعَال" Fem NoHum; earth_N = brkN "ترب" "فُعلة" "فُعَل" Fem NoHum; egg_N = sdfN "بيض" "فَعلة" Fem NoHum; eye_N = brkN "عين" "فَعل" "فُعُول" Fem NoHum; fat_N = brkN "دهن" "فُعل" "فُعُول" Masc NoHum ; feather_N = sdfN "ريش" "فِعلة" Fem NoHum; fingernail_N = brkN "ظفر" "فُعل" "أَفاعِل" Masc NoHum; - fire_N = brkN "نور" "فاع" "فِيعان" Fem NoHum; + fire_N = brkN "نور" "فاع" "فِيعَان" Fem NoHum; flower_N = brkN "زهر" "فَعلة" "فُعُول" Fem NoHum; - fog_N = brkN "ضبب" "فَعال" "فَعال" Masc NoHum; --no plural ? - foot_N = brkN "قدم" "فَعَل" "أَفعال" Fem NoHum; + fog_N = brkN "ضبب" "فَعَال" "فَعَال" Masc NoHum; --no plural ? + foot_N = brkN "قدم" "فَعَل" "أَفعَال" Fem NoHum; forest_N = sdfN "غيب" "فاعة" Fem NoHum; - grass_N = brkN "عشب" "فُعلة" "أَفعال" Fem NoHum; - guts_N = brkN "حشو" "فَعا" "أَفعاء" Fem NoHum; + grass_N = brkN "عشب" "فُعلة" "أَفعَال" Fem NoHum; + guts_N = brkN "حشو" "فَعَا" "أَفعَاء" Fem NoHum; hair_N = sdfN "شعر" "فَعلة" Fem NoHum ; - hand_N = brkN "يد" "فَع" "أَفاعِي" Fem NoHum ; - head_N = brkN "ر؟س" "فَعل" "فُعُول" Masc NoHum; + hand_N = brkN "يد" "فَع" "أَفَاعِي" Fem NoHum ; + head_N = brkN "رءس" "فَعل" "فُعُول" Masc NoHum; heart_N = brkN "قلب" "فَعل" "فُعُول" Masc NoHum; horn_N = brkN "قرن" "فَعل" "فُعُول" Masc NoHum; - husband_N = brkN "زوج" "فَعل" "أَفعال" Masc NoHum; + husband_N = brkN "زوج" "فَعل" "أَفعَال" Masc NoHum; ice_N = brkN "ثلج" "فَعل" "فُعُول" Masc NoHum; knee_N = brkN "ركب" "فُعلة" "فُعَل" Fem NoHum; - leaf_N = brkN "ورق" "فَعَلة" "أَفعال" Fem NoHum; + leaf_N = brkN "ورق" "فَعَلة" "أَفعَال" Fem NoHum; leg_N = brkN "رجل" "فِعل" "أَفعُل" Fem NoHum; - liver_N = brkN "كبد" "فَعِل" "أَفعال" Masc NoHum ; + liver_N = brkN "كبد" "فَعِل" "أَفعَال" Masc NoHum ; louse_N = sdfN "قمل" "فَعلة" Fem NoHum; - mouth_N = brkN "فوه" "فُعل" "أَفعال" Masc NoHum ; - name_N = brkN "ءسم" "فِعل" "فَعالِي" Masc NoHum; - neck_N = brkN "رقب" "فَعَلة" "فِعال" Fem NoHum; - night_N = brkN "ليل" "فَعلة" "فَعالِي" Fem NoHum; --plural? - nose_N = brkN "؟نف" "فَعل" "فُعُول" Masc NoHum; - person_N = brkN "شخص" "فَعل" "أَفعال" Masc Hum; + mouth_N = brkN "فوه" "فُعل" "أَفعَال" Masc NoHum ; + name_N = brkN "ءسم" "فِعل" "فَعَالِي" Masc NoHum; + neck_N = brkN "رقب" "فَعَلة" "فِعَال" Fem NoHum; + night_N = brkN "ليل" "فَعلة" "فَعَالِي" Fem NoHum; --plural? + nose_N = brkN "ءنف" "فَعل" "فُعُول" Masc NoHum; + person_N = brkN "شخص" "فَعل" "أَفعَال" Masc Hum; question_N = mkN "سؤال" ; ----IL - rain_N = brkN "مطر" "فَعَل" "أَفعال" Masc NoHum; + rain_N = brkN "مطر" "فَعَل" "أَفعَال" Masc NoHum; road_N = brkN "طرق" "فَعِيل" "فُعُل" Fem NoHum; root_N = brkN "جذر" "فَعل" "فُعُول" Masc NoHum ; - rope_N = brkN "حبل" "فَعل" "فِعال" Masc NoHum; - salt_N = brkN "ملح" "فِعل" "أَفعال" Masc NoHum; - sand_N = brkN "رمل" "فَعل" "فِعال" Masc NoHum; + rope_N = brkN "حبل" "فَعل" "فِعَال" Masc NoHum; + salt_N = brkN "ملح" "فِعل" "أَفعَال" Masc NoHum; + sand_N = brkN "رمل" "فَعل" "فِعَال" Masc NoHum; seed_N = brkN "بذر" "فَعل" "فُعُول" Masc NoHum; skin_N = brkN "جلد" "فِعل" "فُعُول" Masc NoHum; - sky_N = sdfN "سمو" "فَعاء" Fem NoHum; - smoke_N = brkN "دخن" "فُعال" "أَفعِلة" Masc NoHum; + sky_N = sdfN "سمو" "فَعَاء" Fem NoHum; + smoke_N = brkN "دخن" "فُعَال" "أَفعِلة" Masc NoHum; snow_N = brkN "ثلج" "فَعل" "فُعُول" Masc NoHum; - stick_N = brkN "عصو" "فَعا" "فِعِي" Masc NoHum ; --"عصو" - tail_N = brkN "ذنب" "فَعَل" "أَفعال" Masc NoHum; - tongue_N = brkN "لسن" "فِعال" "أَفعِلة" Masc NoHum; - tooth_N = brkN "سنّ" "فِعل" "أَفعال" Masc NoHum ; + stick_N = brkN "عصو" "فَعَا" "فِعِي" Masc NoHum ; --"عصو" + tail_N = brkN "ذنب" "فَعَل" "أَفعَال" Masc NoHum; + tongue_N = brkN "لسن" "فِعَال" "أَفعِلة" Masc NoHum; + tooth_N = brkN "سنن" "فِعّ" "أَفعَال" Masc NoHum ; wife_N = sdfN "زوج" "فَعلة" Fem Hum; - wind_N = brkN "ريح" "فِعل" "فِعال" Fem NoHum; - wing_N = brkN "جنح" "فَعال" "أَفعِلة" Masc NoHum ; - worm_N = brkN "دود" "فُعلة" "فِيعان" Fem NoHum ; + wind_N = brkN "ريح" "فِعل" "فِعَال" Fem NoHum; + wing_N = brkN "جنح" "فَعَال" "أَفعِلة" Masc NoHum ; + worm_N = brkN "دود" "فُعلة" "فِيعَان" Fem NoHum ; year_N = mkN "سَنَة" "سَنَوَات" Fem NoHum ; blow_V = regV "يَنفُخ" ; @@ -355,7 +356,7 @@ flags swim_V = regV "يَسبَح" ; think_V = v2 "فكر" ; turn_V = regV "يَبرُم" ; - vomit_V = v5 "قي؟" ; + vomit_V = v5 "قيء" ; bite_V2 = dirV2 ( v1 "عضّ" a a ) ; count_V2 = dirV2 (v1 "عدّ" a u) ; @@ -378,7 +379,5 @@ flags tie_V2 = dirV2 (regV "يَربُط" ) ; wash_V2 = dirV2 ( regV "يَغسِل" ) ; wipe_V2 = dirV2 ( regV "يَمسَح" ) ; - -- other_A = sndA "ْتهر" ; - } ; From 069a02c441a2d9f8a326468ef2a4f59c409657f7 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 17 Oct 2018 17:17:24 +0200 Subject: [PATCH 034/172] (Ara) WIP: noun compounds --- src/arabic/NounAra.gf | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index d02c0a3be..0e7a0c2db 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -193,5 +193,15 @@ lin -- AdvCN cn ad = {s = \\n,c => cn.s ! n ! c ++ ad.s} ; -- -- SentCN cn sc = {s = \\n,c => cn.s ! n ! c ++ sc.s} ; - ApposCN cn np = cn ** { np = np.s } ; + ApposCN cn np = cn ** { np = \\c => cn.np ! c ++ np.s ! c } ; + + -- : CN -> NP -> CN ; -- house of Paris, house of mine + PossNP cn np = cn ** { + s = \\n,_d,c => cn.s ! n ! Const ! c ; + np = \\c => cn.np ! c ++ np.s ! Gen + }; + + + -- : CN -> NP -> CN ; -- glass of wine + --PartNP } From e05182963753e24726583112da6280a78a4cfd40 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 17 Oct 2018 17:17:52 +0200 Subject: [PATCH 035/172] (Ara) Add paradigm for broken plural adjectives --- src/arabic/ParadigmsAra.gf | 50 ++++++++++++++++++++++++++------------ 1 file changed, 34 insertions(+), 16 deletions(-) diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index 1533bdef9..68db5d3da 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -107,19 +107,21 @@ resource ParadigmsAra = open mkA = overload { mkA : (root,patt : Str) -> A - = sndA ; + = \r,p -> lin A (sndA r p); mkA : (root : Str) -> A -- forms adjectives with positive form aFCal - = clrA ; - mkA : (posit,compar,plur : Str) -> A - = degrA ; + = \r -> lin A (clrA r); + mkA : (root,sg,pl : Str) -> A + = \r,s,p -> lin A (brkA r s p) ; + -- mkA : (posit,compar,plur : Str) -> A + -- = degrA ; } ; --Takes a root string and a pattern string - sndA : (root,patt : Str) -> A ; + sndA : (root,patt : Str) -> Adj ; --Takes a root string only - clrA : (root : Str) -> A ; -- forms adjectives of type aFCal + clrA : (root : Str) -> Adj ; -- forms adjectives of type aFCal --3 Two-place adjectives -- @@ -405,8 +407,14 @@ resource ParadigmsAra = open sdfN = \root,sg,gen,spec -> - let { kalima = mkWord sg root; - } in mkFullN (sndf kalima) gen spec; + let { kalimaStr = mkWord sg root; + kalimaRaw = sndf kalimaStr; + kalima : NTable = \\n,d,c => case root of { + _ + #hamza + _ + => rectifyHmz (kalimaRaw ! n ! d ! c); + _ => kalimaRaw ! n ! d ! c + }; + } in mkFullN kalima gen spec; sdmN = \root,sg,gen,spec -> @@ -478,6 +486,19 @@ resource ParadigmsAra = open d = det }); + brkA : (root,sg,pl : Str) -> Adj = \root,sg,pl -> + let jadId = mkWord sg root ; + jadIda = jadId + "َة" ; + judud = mkWord pl root ; + akbar = mkWord "أَفعَل" root ; + mascTbl = reg jadId judud ; + femTbl = reg jadIda judud ; + in { s = table { + APosit Masc n d c => mascTbl ! n ! d ! c ; + APosit Fem n d c => femTbl ! n ! d ! c ; + AComp d c => indeclN akbar ! d ! c } + } ; + degrA : (posit,compar,plur : Str) -> A = \posit,compar,plur -> lin A {s = clr posit compar plur} ; @@ -487,20 +508,18 @@ resource ParadigmsAra = open case root of { _ + #hamza + _ => rectifyHmz(raw.s ! af); _ => raw.s ! af - }; - lock_A = <> + } }; - sndA' : Str -> Str -> A = + sndA' : Str -> Str -> Adj = \root,pat -> let { kabIr = mkWord pat root; akbar = mkWord "أَفعَل" root } in { s = table { - APosit g n d c => (positAdj kabIr) ! g ! n ! d ! c ; - AComp d c => (indeclN akbar) ! d ! c - }; - lock_A = <> + APosit g n d c => positAdj kabIr ! g ! n ! d ! c ; + AComp d c => indeclN akbar ! d ! c + } }; clrA root = @@ -509,7 +528,6 @@ resource ParadigmsAra = open Humr = mkWord "فُعل" root } in { s = clr eaHmar HamrA' Humr; - lock_A = <> }; mkA2 a p = a ** {c2 = p ; lock_A2 = <>} ; From 6cd6ddd020045093e08a5eae96371fb1cb0451cd Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 17 Oct 2018 17:18:26 +0200 Subject: [PATCH 036/172] (Ara) Fixes in pattern matching root and pattern --- src/arabic/ResAra.gf | 47 ++++++++++++++++++++++---------------------- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 3031f0062..bb2fbf0be 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -41,26 +41,19 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { -- AR 7/12/2009 changed this to avoid duplication of consonants mkRoot3 : Str -> Root3 = \fcl -> case fcl of { - f@? + c@? + l => {f = f ; c = c ; l = l} + f@? + c@? + l => {f = f ; c = c ; l = l} ; + _ => error ("mkRoot3: too short root" ++ fcl) } ; -{- - mkRoot3 : Str -> Root3 = \fcl -> - let { cl = drop 2 fcl; --drop 1 fcl - l' = dp 2 fcl; --last fcl - c' = take 2 cl} in --take 1 cl - {f = take 2 fcl; c = c'; --take 1 fcl - l = case l' of { - "ّ" => c'; - _ => l' - } - }; --} --for roots with 2 consonants (works also for assimilated strs, like fc~, --because the function discards anything after the first two characters mkRoot2 : Str -> Root2 = \fcl -> - let { cl = drop 2 fcl} in --drop 1 fcl - {f = take 2 fcl; c = take 2 cl}; --take 1 + -- let { cl = drop 2 fcl} in --drop 1 fcl + -- {f = take 2 fcl; c = take 2 cl}; --take 1 + case fcl of { + f@? + c@? + _ => { f = f ; c = c } ; + _ => error ("mkRoot2: too short root" ++ fcl) + }; --opers to interdigitize (make words out of roots and patterns: @@ -93,15 +86,23 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { --takes a pattern string and root string and makes a word mkWord : Str -> Str -> Str =\pS, rS -> case pS of { - w@_ + "ف" + x@_ + "ع" + y@_ + "ل" + z@_ => - mkStrong { h = w ; m1 = x; m2 = y; t = z} (mkRoot3 rS); - w@_ + "ف" + x@_ + "ع" + y@_ => + w + "ف" + x + "ع" + y + "ل" + z => + let pat = { h = w ; m1 = x; m2 = y; t = z} in + case rS of { + x@? + y@? + "ّ" => mkStrong pat (mkRoot3 (x+y+y)) ; -- In principle, shadda shouldn't be in the root, but if someone puts one, this should fix it. /IL + _ => mkStrong pat (mkRoot3 rS) } ; + w + "ف" + x + "ع" + y => let pat = { h = w ; m1 = x; m2 = ""; t = y} in - case of { --- 6 | 5 => mkWeak pat (mkRoot3 rS) ; --3=> - 6 | 5 => mkHollow pat (mkRoot3 rS) ; --3=> - 4 | 3 => mkBilit pat (mkRoot2 rS) ; --2=> - _ => rS ---- AR error "expected 3--6" + case rS of { + x + "ّ" => mkBilit pat (mkRoot2 x) ; -- fc~ + x@? + y@? + ("و"|"ي") + => mkDefective pat (mkRoot3 rS) ; + x@? + ("و"|"ي") + z@? + => mkHollow pat (mkRoot3 rS) ; + ("و"|"ي") + y@? + z@? + => mkAssimilated pat (mkRoot3 rS) ; + ? + ? + _ => mkBilit pat (mkRoot2 rS) ; --2=> + _=> error rS ---- AR error "expected 3--6" } }; From 214214657742fae137894d6a534c61796c7de9c2 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 18 Oct 2018 14:45:27 +0200 Subject: [PATCH 037/172] (Ara) Add CN's new np field in more functions --- src/arabic/NounAra.gf | 2 +- src/arabic/VerbAra.gf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index 0e7a0c2db..a35572820 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -167,7 +167,7 @@ lin } ; MassNP cn = ---- AR - {s = \\c => cn.s ! Sg ! Indef ! c ++ cn.adj ! Sg ! Indef ! c ; + {s = \\c => cn.s ! Sg ! Indef ! c ++ cn.np ! c ++ cn.adj ! Sg ! Indef ! c ; a = {pgn = Per3 cn.g Sg ; isPron = False}} ; -- MassDet = {s = \\_,_,_,_ => [] ; d = Indef; diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index ea33158c3..23878f9b6 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -43,7 +43,7 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra in { -- -- UseVS, UseVQ = \vv -> {s = vv.s ; c2 = [] ; isRefl = vv.isRefl} ; -- no - CompCN cn = {s = \\agr,c => cn.s ! agr.n ! Indef ! c} ; ----IL + CompCN cn = {s = \\agr,c => cn.s ! agr.n ! Indef ! c ++ cn.np ! c ++ cn.adj ! agr.n ! Indef ! c} ; ----IL CompAP ap = {s = \\agr,c => ap.s ! Hum ! agr.g ! agr.n ! Indef ! c} ; --FIXME CompNP np = {s = \\_,c => np.s ! c}; CompAdv a = {s = \\_,_ => a.s} ; From 08ff8ee3e5bec0cf79aa3ae647fa347d0ecf5065 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 18 Oct 2018 14:45:50 +0200 Subject: [PATCH 038/172] (Ara) Small orthography fixes --- src/arabic/OrthoAra.gf | 5 ++++- src/arabic/ParadigmsAra.gf | 7 +++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/arabic/OrthoAra.gf b/src/arabic/OrthoAra.gf index 8e861e0cd..a7dc5d664 100644 --- a/src/arabic/OrthoAra.gf +++ b/src/arabic/OrthoAra.gf @@ -21,8 +21,11 @@ flags coding=utf8 ; rectifyHmz: Str -> Str = \word -> case word of { + l@(""|"ال") + ("أ"|"أَ") + #hamza + "ْ" + tail => l + "آ" + tail; + l@(""|"ال") + ("أ"|"أَ") + #hamza + tail => l + "آ" + tail; l@(""|"ال") + #hamza + v@("َ"|"ُ") + tail => l + "أ" + v + tail; - l@(""|"ال") + #hamza + v@("ِ") + tail => l + "إ" + v + tail; + l@(""|"ال") + #hamza + v@("ِ") + tail => l + "إ" + v + tail; + head + v1@("ِ"|"ُ"|"َ"|"ْ"|"ا"|"ي"|"و") + #hamza + v2@(""|"ُ"|"َ"|"ْ"|"ِ") => head + v1 + (tHmz v1) + v2; head + #hamza + tail => head + (bHmz (dp 2 head) (take 2 tail)) + tail; --last head , take 1 tail _ => word diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index 68db5d3da..f84fc7add 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -286,10 +286,9 @@ resource ParadigmsAra = open v1' : Str -> Vowel -> Vowel -> Verb = \rootStr,vPerf,vImpf -> - let { root = mkRoot3 rootStr ; - l = dp 2 rootStr } in --last rootStr - case of { - <"ّ",_> => v1geminate rootStr vPerf vImpf ; + let { root = mkRoot3 rootStr } in + case of { + <"ّ", _> => v1geminate rootStr vPerf vImpf ; <"و"|"ي",_> => case vPerf of { i => v1defective_i root vImpf ; _ => v1defective_a root vImpf } ; From 85e4a8061fcfbdcaebb788dd9a7bfecc9520fa80 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 18 Oct 2018 15:08:54 +0200 Subject: [PATCH 039/172] (Ara) Fix agreement in imperatives --- src/arabic/ResAra.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index bb2fbf0be..39768e9e8 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1202,7 +1202,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> case vf of { VPPerf => v.s ! (VPerf Act pgn); VPImpf m => v.s ! (VImpf m Act pgn); - VPImp => v.s ! (VImp Masc Sg)--gn.g gn.n) + VPImp => v.s ! (VImp gn.g gn.n) }; obj = { s = [] ; From 4b2c706bcdbf119d5fb9d930207f8c6a537489be Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 19 Oct 2018 17:25:25 +0200 Subject: [PATCH 040/172] (Ara) Add linref for CN + choose bare form for UttCN, no case --- src/arabic/CatAra.gf | 6 +++++- src/arabic/PhraseAra.gf | 2 +- src/arabic/ResAra.gf | 16 ++++++++++------ 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index 759e0fd5b..3a1ee2584 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -47,7 +47,7 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { -- Noun - CN = ResAra.Noun ** {adj : NTable ; np : Case => Str}; + CN = ResAra.CN; NP, Pron = ResAra.NP; --{s : Case => Str ; a : Agr } ; Num, Ord, @@ -90,4 +90,8 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { N3 = ResAra.Noun ** {c2, c3 : Str} ; PN = {s : Case => Str; g : Gender; h : Species} ; +linref + + CN = \cn -> uttCN cn ! Masc ; + } diff --git a/src/arabic/PhraseAra.gf b/src/arabic/PhraseAra.gf index 0bc3931cb..9d24e6898 100644 --- a/src/arabic/PhraseAra.gf +++ b/src/arabic/PhraseAra.gf @@ -15,7 +15,7 @@ concrete PhraseAra of Phrase = CatAra ** open UttAP ap = {s = ResAra.uttAP ap} ; --IL UttCard c = {s = ResAra.uttNum c} ; --IL - UttCN cn = {s = \\_ => cn.s ! Sg ! Def ! Nom} ; --IL + UttCN cn = {s = ResAra.uttCN cn } ; --IL UttNP np = {s = \\_ => np.s ! Nom} ; UttVP vp = {s = \\g => (compVP vp).s ! {g=g ; n=Sg} ! Nom} ; --IL UttS, diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 39768e9e8..bf9a37941 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -17,7 +17,7 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { Vowel = u | a | i ; Number = Sg | Dl | Pl; Gender = Masc | Fem ; - Case = Nom | Acc | Gen + Case = Nom | Acc | Gen | Bare ; -- 1st person poss. suff. overrides case Person = P1 | P2 | P3 ; Species = NoHum | Hum ; @@ -99,7 +99,7 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { => mkDefective pat (mkRoot3 rS) ; x@? + ("و"|"ي") + z@? => mkHollow pat (mkRoot3 rS) ; - ("و"|"ي") + y@? + z@? + ("و"|"ي") + y@? + z@? => mkAssimilated pat (mkRoot3 rS) ; ? + ? + _ => mkBilit pat (mkRoot2 rS) ; --2=> _=> error rS ---- AR error "expected 3--6" @@ -119,6 +119,10 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { uttAP : AP -> (Gender => Str) ; uttAP ap = \\g => ap.s ! NoHum ! g ! Sg ! Def ! Nom ; ----IL + CN : Type = Noun ** {adj : NTable ; np : Case => Str}; + uttCN : CN -> (Gender => Str) ; + uttCN cn = \\_ => cn.s ! Sg ! Indef ! Bare ; + NumOrdCard : Type = { s : Gender => State => Case => Str ; n : Size ; @@ -861,11 +865,11 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> \\s,c => defArt s (case word of { lemma + "ِي" => fixShd lemma (dec2sg ! s ! c) ; _ + ("ا"|"ى") => fixShd word (dec3sg ! s ! c) ; - lemma + "ة" => case s of { + lemma + "ة" => case s of { Poss => lemma + "ت" + dec1sg ! s ! c ; _ => word + dec1sg ! s ! c } ; - _ => fixShd word (dec1sg ! s ! c) + _ => fixShd word (dec1sg ! s ! c) }) ; @@ -960,7 +964,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> _ => table { Nom => "َانِ"; - Bare => "َيْن"; + Bare => "َيْن"; _ => "َيْنِ" } }; @@ -975,7 +979,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> }; _ => table { - Bare => "ِين"; + Bare => "ِين"; Nom => "ُونَ"; _ => "ِينَ" } From 83a22ab31b7dd8680c7d9115d8904ea58c59624a Mon Sep 17 00:00:00 2001 From: odanoburu Date: Fri, 19 Oct 2018 22:21:22 +0000 Subject: [PATCH 041/172] (Por) Extend: add lins - add PastPartAP, PastPartAgentAP - add PassVPSlash, PassAgentVPSlash lins from ExtraRomance - correct CompoundN --- src/portuguese/ExtendPor.gf | 45 +++++++++++++++++++---------- src/portuguese/MakeStructuralPor.gf | 3 +- 2 files changed, 30 insertions(+), 18 deletions(-) diff --git a/src/portuguese/ExtendPor.gf b/src/portuguese/ExtendPor.gf index 6719ca65d..3ee18db8f 100644 --- a/src/portuguese/ExtendPor.gf +++ b/src/portuguese/ExtendPor.gf @@ -18,7 +18,9 @@ concrete ExtendPor of Extend = iFem_Pron, ListVPS, PassVPSlash, - PassVPSlash, + PassAgentVPSlash, + PastPartAP, + PastPartAgentAP, ProDrop, theyFem_Pron, VPS, @@ -94,31 +96,42 @@ concrete ExtendPor of Extend = PrepCN prep cn = {s = prep.s ++ prepCase prep.c ++ cn.s ! Sg} ; lin - PassVPSlash vps = - let auxvp = predV copula - in - insertComplement (\\a => let agr = complAgr a in vps.s.s ! VPart agr.g agr.n) { - s = auxvp.s ; - agr = auxvp.agr ; - neg = vps.neg ; - clit1 = vps.clit1 ; - clit2 = vps.clit2 ; - clit3 = vps.clit3 ; - isNeg = vps.isNeg ; - comp = vps.comp ; - ext = vps.ext + PastPartAP vps = pastPartAP vps [] ; + + PastPartAgentAP vps np = pastPartAP vps (let by = in by.s ++ (np.s ! by.c).ton) ; + + oper + pastPartAP : VPSlash -> Str -> AP ; + pastPartAP vps agent = lin AP { + s = \\af => vps.comp ! (aform2aagr af ** {p = P3}) ++ vps.s.s ! VPart (aform2gender af) (aform2number af) ++ agent ; + isPre = False } ; + lin + PassVPSlash vps = passVPSlash vps [] ; + + PassAgentVPSlash vps np = passVPSlash vps (let by = in by.s ++ (np.s ! by.c).ton) ; + ExistsNP np = mkClause [] True False np.a (insertComplement (\\_ => (np.s ! Nom).ton) (predV (mkV "existir"))) ; + oper + passVPSlash : VPSlash -> Str -> VP = \vps, agent -> + let auxvp = predV auxPassive + in + vps ** { + s = auxvp.s ; + agr = auxvp.agr ; + comp = \\a => vps.comp ! a ++ (let agr = complAgr a in vps.s.s ! VPart agr.g agr.n) ++ agent ; + } ; + lin CompoundN noun noun2 = { -- order is different because that's needed for correct translation from english s = \\n => noun2.s ! n - ++ variants {genNumForms "do" "da" "dos" "das" ! noun.g ! n; "de"} - ++ noun.s ! n ; + ++ variants {"de" ; genForms "do" "da" ! noun.g} + ++ noun.s ! Sg ; g = noun2.g } ; diff --git a/src/portuguese/MakeStructuralPor.gf b/src/portuguese/MakeStructuralPor.gf index d7f714587..87ab6dc31 100644 --- a/src/portuguese/MakeStructuralPor.gf +++ b/src/portuguese/MakeStructuralPor.gf @@ -19,5 +19,4 @@ oper a = if_then_else PAgr p (PAg Sg) PNoAg ---- e,g, "chacun de"; other possibilities? } ; - -} +} ; From 2d5655aa506eb48d9d92f021e70cdf535b4e1e78 Mon Sep 17 00:00:00 2001 From: bruno cuconato Date: Sun, 21 Oct 2018 17:42:05 +0000 Subject: [PATCH 042/172] (Por) Extend: add lins (#49) - add PastPartAP, PastPartAgentAP - add PassVPSlash, PassAgentVPSlash lins from ExtraRomance - correct CompoundN --- src/portuguese/ExtendPor.gf | 45 +++++++++++++++++++---------- src/portuguese/MakeStructuralPor.gf | 3 +- 2 files changed, 30 insertions(+), 18 deletions(-) diff --git a/src/portuguese/ExtendPor.gf b/src/portuguese/ExtendPor.gf index 6719ca65d..3ee18db8f 100644 --- a/src/portuguese/ExtendPor.gf +++ b/src/portuguese/ExtendPor.gf @@ -18,7 +18,9 @@ concrete ExtendPor of Extend = iFem_Pron, ListVPS, PassVPSlash, - PassVPSlash, + PassAgentVPSlash, + PastPartAP, + PastPartAgentAP, ProDrop, theyFem_Pron, VPS, @@ -94,31 +96,42 @@ concrete ExtendPor of Extend = PrepCN prep cn = {s = prep.s ++ prepCase prep.c ++ cn.s ! Sg} ; lin - PassVPSlash vps = - let auxvp = predV copula - in - insertComplement (\\a => let agr = complAgr a in vps.s.s ! VPart agr.g agr.n) { - s = auxvp.s ; - agr = auxvp.agr ; - neg = vps.neg ; - clit1 = vps.clit1 ; - clit2 = vps.clit2 ; - clit3 = vps.clit3 ; - isNeg = vps.isNeg ; - comp = vps.comp ; - ext = vps.ext + PastPartAP vps = pastPartAP vps [] ; + + PastPartAgentAP vps np = pastPartAP vps (let by = in by.s ++ (np.s ! by.c).ton) ; + + oper + pastPartAP : VPSlash -> Str -> AP ; + pastPartAP vps agent = lin AP { + s = \\af => vps.comp ! (aform2aagr af ** {p = P3}) ++ vps.s.s ! VPart (aform2gender af) (aform2number af) ++ agent ; + isPre = False } ; + lin + PassVPSlash vps = passVPSlash vps [] ; + + PassAgentVPSlash vps np = passVPSlash vps (let by = in by.s ++ (np.s ! by.c).ton) ; + ExistsNP np = mkClause [] True False np.a (insertComplement (\\_ => (np.s ! Nom).ton) (predV (mkV "existir"))) ; + oper + passVPSlash : VPSlash -> Str -> VP = \vps, agent -> + let auxvp = predV auxPassive + in + vps ** { + s = auxvp.s ; + agr = auxvp.agr ; + comp = \\a => vps.comp ! a ++ (let agr = complAgr a in vps.s.s ! VPart agr.g agr.n) ++ agent ; + } ; + lin CompoundN noun noun2 = { -- order is different because that's needed for correct translation from english s = \\n => noun2.s ! n - ++ variants {genNumForms "do" "da" "dos" "das" ! noun.g ! n; "de"} - ++ noun.s ! n ; + ++ variants {"de" ; genForms "do" "da" ! noun.g} + ++ noun.s ! Sg ; g = noun2.g } ; diff --git a/src/portuguese/MakeStructuralPor.gf b/src/portuguese/MakeStructuralPor.gf index d7f714587..87ab6dc31 100644 --- a/src/portuguese/MakeStructuralPor.gf +++ b/src/portuguese/MakeStructuralPor.gf @@ -19,5 +19,4 @@ oper a = if_then_else PAgr p (PAg Sg) PNoAg ---- e,g, "chacun de"; other possibilities? } ; - -} +} ; From 8990ee80a847c6eb8bd7a101d6aad1ec05f74b06 Mon Sep 17 00:00:00 2001 From: odanoburu Date: Mon, 22 Oct 2018 14:18:53 +0000 Subject: [PATCH 043/172] (Eng) change lincat of V2A - update V2A linref - add overloaded mkV2A with backwards-compatible signature - update lexicon V2A example - remove old comment with Verb lincat thanks to @inariksit for guidance! --- src/english/CatEng.gf | 10 +++++----- src/english/LexiconEng.gf | 2 +- src/english/ParadigmsEng.gf | 12 ++++++++++-- 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/src/english/CatEng.gf b/src/english/CatEng.gf index d57f7d8f5..3d5b19548 100644 --- a/src/english/CatEng.gf +++ b/src/english/CatEng.gf @@ -92,9 +92,9 @@ concrete CatEng of Cat = CommonX - [Pol,SC,CAdv] ** open ResEng, Prelude in { -- Open lexical classes, e.g. Lexicon - V, VS, VQ, VA = Verb ; -- = {s : VForm => Str} ; - V2, V2A, V2Q, V2S = Verb ** {c2 : Str} ; - V3 = Verb ** {c2, c3 : Str} ; + V, VS, VQ, VA = Verb ; + V2, V2Q, V2S = Verb ** {c2 : Str} ; + V2A,V3 = Verb ** {c2, c3 : Str} ; VV = {s : VVForm => Str ; p : Str ; typ : VVType} ; V2V = Verb ** {c2,c3 : Str ; typ : VVType} ; @@ -114,8 +114,8 @@ concrete CatEng of Cat = CommonX - [Pol,SC,CAdv] ** open ResEng, Prelude in { VPSlash = \s -> predV {s = \\_ => s; p = ""; isRefl = False} ** {c2 = ""; gapInMiddle = False; missingAdv = False } ; V, VS, VQ, VA = \s -> {s = \\_ => s; p = ""; isRefl = False} ; - V2, V2A, V2Q, V2S = \s -> {s = \\_ => s; p = ""; isRefl = False; c2=""} ; - V3 = \s -> {s = \\_ => s; p = ""; isRefl = False; c2,c3=""} ; + V2, V2Q, V2S = \s -> {s = \\_ => s; p = ""; isRefl = False; c2=""} ; + V3, V2A = \s -> {s = \\_ => s; p = ""; isRefl = False; c2,c3=""} ; VV = \s -> {s = \\_ => s; p = ""; isRefl = False; typ = VVInf} ; V2V = \s -> {s = \\_ => s; p = ""; isRefl = False; c2,c3="" ; typ = VVInf} ; diff --git a/src/english/LexiconEng.gf b/src/english/LexiconEng.gf index 7597a7a50..cd9d2a8b8 100644 --- a/src/english/LexiconEng.gf +++ b/src/english/LexiconEng.gf @@ -132,7 +132,7 @@ lin oil_N = regN "oil" ; old_A = regADeg "old" ; open_V2 = dirV2 (mkV "open" "opens" "opened" "opened" "opening") ; - paint_V2A = mkV2A (regV "paint") noPrep ; + paint_V2A = mkV2A (regV "paint") ; paper_N = regN "paper" ; paris_PN = mkPN (mkN nonhuman (mkN "Paris")) ; peace_N = regN "peace" ; diff --git a/src/english/ParadigmsEng.gf b/src/english/ParadigmsEng.gf index d88630e99..1a56707b4 100644 --- a/src/english/ParadigmsEng.gf +++ b/src/english/ParadigmsEng.gf @@ -321,7 +321,11 @@ oper } ; ingV2V : V -> Prep -> Prep -> V2V ; -- e.g. prevent (noPrep NP) (from VP-ing) mkVA : V -> VA ; -- e.g. become (AP) - mkV2A : V -> Prep -> V2A ; -- e.g. paint (NP) (AP) + mkV2A : overload { + mkV2A : V -> V2A ; -- e.g. paint (NP) (AP) + mkV2A : V -> Prep -> V2A ; -- backwards compatibility + mkV2A : V -> Prep -> Prep -> V2A ; -- e.g. strike (NP) as (AP) + } ; mkVQ : V -> VQ ; -- e.g. wonder (QS) mkV2Q : V -> Prep -> V2Q ; -- e.g. ask (NP) (QS) @@ -601,7 +605,11 @@ mkInterj : Str -> Interj ingV2V v p t = lin V2V (prepV2 v p ** {c3 = t.s ; typ = VVPresPart}) ; mkVA v = lin VA v ; - mkV2A v p = lin V2A (prepV2 v p) ; + mkV2A = overload { + mkV2A : V -> V2A = \v -> lin V2A (dirdirV3 v) ; + mkV2A : V -> Prep -> V2A = \v,p -> lin V2A (dirV3 v p) ; + mkV2A : V -> Prep -> Prep -> V2A = \v,p1,p2 -> lin V2A (prepPrepV3 v p1 p2) ; + } ; mkV2Q v p = lin V2Q (prepV2 v p) ; mkAS v = v ; From eb074e6bcd4626d1cfd127954f7f1f842ebfe407 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 22 Oct 2018 17:09:33 +0200 Subject: [PATCH 044/172] (Ara) Small cleanup and adding comments --- src/arabic/NounAra.gf | 59 +++++++++++++++++++++---------------------- src/arabic/ResAra.gf | 7 +---- 2 files changed, 30 insertions(+), 36 deletions(-) diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index a35572820..d20b3e787 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -5,26 +5,28 @@ flags optimize=noexpand ; lin DetCN det cn = let { - number = sizeToNumber det.n; - state = possState det.d; + cas : Case -> Case = if_then_else Case det.is1sg Bare ; + number = sizeToNumber det.n ; determiner : Case -> Str = \c -> - det.s ! cn.h ! (detGender cn.g det.n) ! c; - noun : Case -> NTable -> Str = \c,nt -> - let cas = if_then_else Case det.is1sg Bare c -- no case vowel with 1sg poss. suff. - in nt ! number - ! nounState det.d number - ! nounCase cas det.n det.d + det.s ! cn.h ! (detGender cn.g det.n) ! c ; + noun : Case -> Str = \c -> + cn.s ! number + ! nounState det.d number + ! nounCase c det.n det.d ; + adj : Case -> Str = \c -> + cn.adj ! number + ! (definite ! det.d) -- Indef remains Indef, rest become Def + ! c } in { s = \\c => case cnB4det det.isPron det.isNum det.n det.d of { False => determiner c - ++ noun c cn.s -- deal with poss. suffix - ++ cn.adj ! number ! state ! c -- normal case+state - ++ cn.np ! c ; - True => noun c cn.s -- deal with poss. suffix - -- ++ determiner c -- or this? - ++ det.s ! cn.h ! cn.g ! c - ++ cn.adj ! number ! state ! c -- normal case+state + ++ noun c + ++ adj c + ++ cn.np ! c ; + True => noun (cas c) -- deal with possessive suffix + ++ determiner c + ++ adj c ++ cn.np ! c }; a = { pgn = agrP3 cn.h cn.g number; @@ -45,23 +47,20 @@ lin }; a = np.a } ; - {- - --should compile.. not working :( wierd error message.. bug? + +{- PPartNP np v2 = let x = case np.a.pgn of { - Per3 g n => ( positAdj (v2.s ! VPPart) ) ! g ! n ! Indef ; - _ => \\_ => [] -- not occuring anyway - } in { - s = \\c => np.s ! c ++ x ! c ; - a = np.a - }; - -} + Per3 g n => positAdj (v2.s ! VPPart) ) ! g ! n ! Indef ; -- doesn't work because trying to glue runtime tokens + Per2 g n => \\_ => [] ; + _ => \\_ => [] + } in np ** { + s = \\c => np.s ! c ++ v2.s ! VPPart ---- TODO: agreement + }; +-} - -- FIXME try parsing something like "this house now" and you'll get - -- an internal compiler error, but it still works.. wierd.. - AdvNP np adv = { - s = \\c => np.s ! c ++ adv.s; - a = np.a + AdvNP np adv = np ** { + s = \\c => np.s ! c ++ adv.s }; {- DetSg quant ord = { @@ -104,7 +103,7 @@ lin PossPron p = { s = \\_,_,_,_ => p.s ! Gen; d = Poss; - is1sg = case p.a.pgn of { Per1 _ => True ; _ => False } ; + is1sg = case p.a.pgn of { Per1 Sing => True ; _ => False } ; isPron = True; isNum = False } ; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index bf9a37941..c73158c7a 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -48,8 +48,6 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { --for roots with 2 consonants (works also for assimilated strs, like fc~, --because the function discards anything after the first two characters mkRoot2 : Str -> Root2 = \fcl -> - -- let { cl = drop 2 fcl} in --drop 1 fcl - -- {f = take 2 fcl; c = take 2 cl}; --take 1 case fcl of { f@? + c@? + _ => { f = f ; c = c } ; _ => error ("mkRoot2: too short root" ++ fcl) @@ -138,7 +136,7 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { VPerf Voice PerGenNum | VImpf Mood Voice PerGenNum | VImp Gender Number - | VPPart ; + | VPPart ; -- TODO: add gender and number (or check if easy to use BIND) PerGenNum = Per3 Gender Number @@ -1045,9 +1043,6 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> _ => Def --Lkitaabu }; - possState : State -> State = \s -> - case s of { Poss => Def ; - x => x } ; --FIXME needs testing nounCase : Case -> Size -> State -> Case = \c,size,s -> From 6b0094b22a4c6fe5b742f956c756710fe3cd31b4 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 22 Oct 2018 17:09:51 +0200 Subject: [PATCH 045/172] (Ara) Fixing possessive suffixes --- src/arabic/ParadigmsAra.gf | 4 ++-- src/arabic/ResAra.gf | 9 ++++++--- src/arabic/StructuralAra.gf | 4 ++-- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index f84fc7add..9dea1146f 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -435,8 +435,8 @@ resource ParadigmsAra = open mkPron : (_,_,_ : Str) -> PerGenNum -> NP = \ana,nI,I,pgn -> { s = table { - Acc => nI; - Gen => I; + Acc => BIND ++ nI; -- object suffix + Gen => BIND ++ I; -- possessive suffix _ => ana }; a = {pgn = pgn; isPron = True }; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index c73158c7a..d4f08f631 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -954,7 +954,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> --dual suffixes dl : State => Case => Str = table { - Const => + (Const|Poss) => table { Nom => "َا"; _ => "َيْ" @@ -970,7 +970,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> --sound masculine plural suffixes m_pl : State => Case => Str = table { - Const => + (Const|Poss) => table { Nom => "ُو"; _ => "ِي" @@ -1266,7 +1266,10 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> mkNum : Str -> Str -> Str -> {s : DForm => CardOrd => Gender => State => Case => Str} = \wAhid,awwal,Ula -> - let { wAhida = wAhid + "َة"} in + let wAhida : Str = case wAhid of { + x + "ة" => mkAt wAhid ; + _ => wAhid + "َة" } + in { s= table { unit => table { NCard => table { diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index 8160f2eff..7931b8132 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -43,9 +43,9 @@ concrete StructuralAra of Structural = CatAra ** -- how8many_IDet = mkDet "كَمْ" Pl Const ; -- IL: check (was ["هْو مَني"]) ; -- if_Subj = ss "ِف" ; in8front_Prep = ss "مُقَابِلَ" ; - i_Pron = mkPron "أَنَا" "نِي" "ِي" (Per1 Sing); + i_Pron = mkPron "أَنَا" "نِي" "ي" (Per1 Sing); in_Prep = ss "فِي" ; - it_Pron = mkPron "ِت" "ِت" "ِتس" (Per3 Masc Sg); -- IL: check + it_Pron = he_Pron ; -- was: it_Pron = mkPron "ِت" "ِت" "ِتس" (Per3 Masc Sg); -- less_CAdv = ss "لسّ" ; many_Det = mkDet "جَمِيع" Pl Const ; -- more_CAdv = ss "مْري" ; From e4d34bff3202ec28d9d23fe803109021bed2f92d Mon Sep 17 00:00:00 2001 From: odanoburu Date: Mon, 22 Oct 2018 18:27:20 +0000 Subject: [PATCH 046/172] (Eng) update SlashV2A with new V2A lincat --- src/english/VerbEng.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/english/VerbEng.gf b/src/english/VerbEng.gf index 20fd1863e..cf397e8c7 100644 --- a/src/english/VerbEng.gf +++ b/src/english/VerbEng.gf @@ -21,7 +21,7 @@ concrete VerbEng of Verb = CatEng ** open ResEng, Prelude in { SlashV2S v s = insertExtrac (conjThat ++ s.s) (predVc v) ; ---- insertExtra? --- SlashV2S v s = insertObjc (variants {\\_ => conjThat ++ s.s; \\_ => s.s}) (predVc v) ; SlashV2Q v q = insertExtrac (q.s ! QIndir) (predVc v) ; - SlashV2A v ap = insertObjc (\\a => ap.s ! a) (predVc v) ; ---- + SlashV2A v ap = insertObjc (\\a => v.c3 ++ ap.s ! a) (predVc v) ; ---- ComplSlash vp np = let vp' = case vp.gapInMiddle of { From aa4257efef4bb48ddc0081f9c9d344cf06391da2 Mon Sep 17 00:00:00 2001 From: Thomas Hallgren Date: Mon, 22 Oct 2018 21:43:41 +0200 Subject: [PATCH 047/172] Add a 'make doc' target in the main Makefile It first build the RGL, then calls doc/Makefile, with the corrent GF_LIB_PATH, to build the documentation. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7fbc22f5a..7dd6b9157 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ RUNMAKE=runghc Make.hs -.PHONY: build copy install clean +.PHONY: build copy install doc clean default: build copy @@ -14,5 +14,8 @@ copy: install: build copy +doc: build + make -C doc GF_LIB_PATH=../dist + clean: $(RUNMAKE) clean From 05cd9c53ce8b5fd1edbdac0bdb6747de3cd0056f Mon Sep 17 00:00:00 2001 From: odanoburu Date: Mon, 22 Oct 2018 20:59:26 +0000 Subject: [PATCH 048/172] (ExtendPor) add lins - add ApposNP, ByVP, CompBareCN, ComplBareVS, GerundAdv, GerundNP, InOrderTo, PresPartAP, PurposeVP, WithoutVP - added EmptyRelSlash but fails linking phase, so not exported --- src/portuguese/ExtendPor.gf | 100 ++++++++++++++++++++++++++++++------ 1 file changed, 84 insertions(+), 16 deletions(-) diff --git a/src/portuguese/ExtendPor.gf b/src/portuguese/ExtendPor.gf index 3ee18db8f..25da698e4 100644 --- a/src/portuguese/ExtendPor.gf +++ b/src/portuguese/ExtendPor.gf @@ -3,33 +3,44 @@ concrete ExtendPor of Extend = CatPor ** ExtendFunctor - [ - BaseVPS, + ApposNP, + BaseVPS, + ByVP, + CompBareCN, + ComplBareVS, CompoundAP, CompoundN, ConsVPS, + --EmptyRelSlash, ExistsNP, GenIP, GenModIP, GenModNP, GenNP, + GerundAdv, GerundCN, + GerundNP, IAdvAdv, ICompAP, - iFem_Pron, + InOrderToVP, ListVPS, - PassVPSlash, PassAgentVPSlash, + PassVPSlash, PastPartAP, PastPartAgentAP, + PresPartAP, ProDrop, - theyFem_Pron, + PurposeVP, VPS, + iFem_Pron, + theyFem_Pron, weFem_Pron, + WithoutVP, youFem_Pron, youPlFem_Pron, youPolFem_Pron, - youPolPl_Pron, - youPolPlFem_Pron + youPolPlFem_Pron, + youPolPl_Pron ] -- don't forget to put the names of your own -- definitions here with @@ -55,8 +66,19 @@ concrete ExtendPor of Extend = GenIP ip = {s = \\_,_,c => ip.s ! c} ; GenModNP num np cn = DetCN (DetQuant (GenNP (lin NP np)) num) cn ; + GenModIP num ip cn = IdetCN (IdetQuant (GenIP (lin IP ip)) num) cn ; + CompBareCN cn = { + s = \\agr => cn.s ! agr.n ; + cop = serCopula + } ; + + EmptyRelSlash cls = { + s = \\agr,t,a,p,m => cls.s ! agr ! DDir ! t ! a ! p ! m ++ cls.c2.s ; + c = Nom + } ; + lincat VPS = {s : Agr => Mood => Str} ; [VPS] = {s1,s2 : Agr => Mood => Str} ; @@ -96,18 +118,15 @@ concrete ExtendPor of Extend = PrepCN prep cn = {s = prep.s ++ prepCase prep.c ++ cn.s ! Sg} ; lin + PresPartAP vp = { + s = \\af => gerVP vp (aform2aagr af ** {p = P3}) ; + isPre = False + } ; + PastPartAP vps = pastPartAP vps [] ; PastPartAgentAP vps np = pastPartAP vps (let by = in by.s ++ (np.s ! by.c).ton) ; - oper - pastPartAP : VPSlash -> Str -> AP ; - pastPartAP vps agent = lin AP { - s = \\af => vps.comp ! (aform2aagr af ** {p = P3}) ++ vps.s.s ! VPart (aform2gender af) (aform2number af) ++ agent ; - isPre = False - } ; - - lin PassVPSlash vps = passVPSlash vps [] ; PassAgentVPSlash vps np = passVPSlash vps (let by = in by.s ++ (np.s ! by.c).ton) ; @@ -117,9 +136,22 @@ concrete ExtendPor of Extend = (insertComplement (\\_ => (np.s ! Nom).ton) (predV (mkV "existir"))) ; + PurposeVP vp = { + s = infVP vp (Ag Masc Sg P3) + } ; + + ComplBareVS = ComplVS ; + oper - passVPSlash : VPSlash -> Str -> VP = \vps, agent -> - let auxvp = predV auxPassive + pastPartAP : VPSlash -> Str -> AP ; + pastPartAP vps agent = lin AP { + s = \\af => vps.comp ! (aform2aagr af ** {p = P3}) ++ vps.s.s ! VPart (aform2gender af) (aform2number af) ++ agent ; + isPre = False + } ; + + passVPSlash : VPSlash -> Str -> VP ; + passVPSlash vps agent = let + auxvp = predV auxPassive in vps ** { s = auxvp.s ; @@ -149,6 +181,42 @@ concrete ExtendPor of Extend = g = Masc } ; + GerundNP vp = let + neutrAgr = Ag Masc Sg P3 + in heavyNP { + s = \\_ => gerVP vp neutrAgr ; + a = neutrAgr + } ; + + GerundAdv vp = { + s = gerundStr vp + } ; + + WithoutVP vp = { + s = "sem" ++ gerundStr vp + } ; + + ByVP vp = { + s = "by" ++ gerundStr vp + } ; + + InOrderToVP vp = { + s = "a fim de" ++ gerundStr vp + } ; + + ApposNP np1 np2 = np1 ** { + s = \\c => { + c1 = (np1.s ! c).c1 ++ (np2.s ! c).c1 ; + c2 = (np1.s ! c).c2 ++ (np2.s ! c).c2 ; + comp = (np1.s ! c).comp ++ (np2.s ! c).comp ; + ton = (np1.s ! c).ton ++ (np2.s ! c).ton + } ; + } ; + + oper + gerundStr : VP -> Str ; + gerundStr vp = gerVP vp (Ag Masc Sg P3) ; + lin -- Romance iFem_Pron = pronAgr S.i_Pron Fem Sg P1 ; From 881753ce3e5a11c23749159fd168bded11b9a54a Mon Sep 17 00:00:00 2001 From: Thomas Hallgren Date: Mon, 22 Oct 2018 23:38:56 +0200 Subject: [PATCH 049/172] doc/Makefile: incremental and parallel rebuild of the synopsis Enough dependencies have been added so that * If nothing has changed, MkSynopsis.hs will not be run, so synopisis.html will not be needlessly regenerated. * You can use 'make -j' to build examples for different languages in parallel. Hopefully 'make synopsis' produces the exact same result as before, but if it turns out that some dependencies are missing and something is not rebuilt despite of changes, 'make clean' can be used to force a full rebuild. --- doc/Makefile | 77 +++++++++++++++++++++-------------------------- doc/MkExxTable.hs | 4 +-- doc/MkSynopsis.hs | 6 ++-- 3 files changed, 40 insertions(+), 47 deletions(-) diff --git a/doc/Makefile b/doc/Makefile index 4fee45382..e7f51b357 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,56 +1,49 @@ -.PHONY: abstract synopsis +.PHONY: abstract synopsis index status -all: exx synopsis +all: synopsis GF_alltenses=$(GF_LIB_PATH)/alltenses +GF=gf +GFDOC=gfdoc index: txt2tags -thtml index.txt status: txt2tags -thtml status.txt -synopsis: - runghc MkSynopsis.hs + +synopsis: synopsis.html + +S=../src + +# List of languages extracted from MkSynopsis.hs +LANGS=Afr Bul Cat Chi Dan Dut Eng Est Eus Fin Fre Ger Gre Hin Ice Ita Jpn Lav Mlt Mon Nep Nor Nno Pes Pnb Pol Ron Rus Snd Spa Swe Tha Urd + +# This list was constructed by observing what files MkSynopsis.hs reads +SRC_FILES=$S/abstract/Common.gf $S/abstract/Cat.gf $S/api/Constructors.gf $S/abstract/Structural.gf $(patsubst %,$S/*/Paradigms%.gf,$(LANGS)) + +EXAMPLES_OUT=$(patsubst %,api-examples-%.txt,$(LANGS)) + +synopsis.html: $(EXAMPLES_OUT) $(SRC_FILES) + runghc MkSynopsis.hs >out categories-imagemap.html: categories.dot dot -Tcmapx $^ > $@ abstract: - gfdoc -txthtml ../src/abstract/*.gf - mv ../src/abstract/*.html abstract + $(GFDOC) -txthtml $S/abstract/*.gf + mv $S/abstract/*.html abstract -exx-script: - runghc MkExx.hs api-examples.gfs -exx: exx-script - gf -retain -s $(GF_alltenses)/TryAfr.gfo api-examples-Afr.txt - gf -retain -s $(GF_alltenses)/TryBul.gfo api-examples-Bul.txt - gf -retain -s $(GF_alltenses)/TryCat.gfo api-examples-Cat.txt - gf -retain -s $(GF_alltenses)/TryChi.gfo api-examples-Chi.txt - gf -retain -s $(GF_alltenses)/TryDan.gfo api-examples-Dan.txt - gf -retain -s $(GF_alltenses)/TryDut.gfo api-examples-Dut.txt - gf -retain -s $(GF_alltenses)/TryEng.gfo api-examples-Eng.txt - gf -retain -s $(GF_alltenses)/TryEst.gfo api-examples-Est.txt - gf -retain -s $(GF_alltenses)/TryEus.gfo api-examples-Eus.txt - gf -retain -s $(GF_alltenses)/TryFin.gfo api-examples-Fin.txt - gf -retain -s $(GF_alltenses)/TryFre.gfo api-examples-Fre.txt - gf -retain -s $(GF_alltenses)/TryGer.gfo api-examples-Ger.txt - gf -retain -s $(GF_alltenses)/TryGre.gfo api-examples-Gre.txt - gf -retain -s $(GF_alltenses)/TryHin.gfo api-examples-Hin.txt - gf -retain -s $(GF_alltenses)/TryIce.gfo api-examples-Ice.txt - gf -retain -s $(GF_alltenses)/TryIta.gfo api-examples-Ita.txt - gf -retain -s $(GF_alltenses)/TryJpn.gfo api-examples-Jpn.txt - gf -retain -s $(GF_alltenses)/TryLav.gfo api-examples-Lav.txt - gf -retain -s $(GF_alltenses)/TryMlt.gfo api-examples-Mlt.txt - gf -retain -s $(GF_alltenses)/TryMon.gfo api-examples-Mon.txt - gf -retain -s $(GF_alltenses)/TryNep.gfo api-examples-Nep.txt - gf -retain -s $(GF_alltenses)/TryNor.gfo api-examples-Nor.txt - gf -retain -s $(GF_alltenses)/TryNno.gfo api-examples-Nno.txt - gf -retain -s $(GF_alltenses)/TryPes.gfo api-examples-Pes.txt - gf -retain -s $(GF_alltenses)/TryPnb.gfo api-examples-Pnb.txt - gf -retain -s $(GF_alltenses)/TryPol.gfo api-examples-Pol.txt - gf -retain -s $(GF_alltenses)/TryRon.gfo api-examples-Ron.txt - gf -retain -s $(GF_alltenses)/TryRus.gfo api-examples-Rus.txt - gf -retain -s $(GF_alltenses)/TrySnd.gfo api-examples-Snd.txt - gf -retain -s $(GF_alltenses)/TrySpa.gfo api-examples-Spa.txt - gf -retain -s $(GF_alltenses)/TrySwe.gfo api-examples-Swe.txt - gf -retain -s $(GF_alltenses)/TryTha.gfo api-examples-Tha.txt - gf -retain -s $(GF_alltenses)/TryUrd.gfo api-examples-Urd.txt + +api-examples.gfs: api-examples.txt + runghc MkExx.hs < $< > $@ + + +# Since .gfo files aren't self-contained, the dependencies given here are +# incomplete. But I am thinking that the Try%.gfo file will always be newer +# than any other files it depends on, so the rule will trigger when +# needed anyway. //TH 2018-10-22 +api-examples-%.txt: $(GF_alltenses)/Try%.gfo api-examples.gfs + GF_LIB_PATH=$(GF_LIB_PATH) $(GF) -retain -s $< $@ + +clean: + rm -rf out synopsis.txt api-examples.gfs $(EXAMPLES_OUT) diff --git a/doc/MkExxTable.hs b/doc/MkExxTable.hs index a7b8a47ca..7fff127af 100644 --- a/doc/MkExxTable.hs +++ b/doc/MkExxTable.hs @@ -1,7 +1,7 @@ module MkExxTable (getApiExx, ApiExx, prApiEx, mkEx) where -import System.Cmd -import System.Environment +--import System.Cmd +import System.Environment(getArgs) import qualified Data.Map as M import Data.Char diff --git a/doc/MkSynopsis.hs b/doc/MkSynopsis.hs index 709de13d9..859ac0678 100644 --- a/doc/MkSynopsis.hs +++ b/doc/MkSynopsis.hs @@ -1,6 +1,6 @@ import MkExxTable -import System.Cmd -import System.Environment +import System.Process(system) +import System.Environment(getArgs) import Data.Char import Data.List import qualified Data.ByteString.Char8 as BS @@ -16,7 +16,7 @@ synopsis = "synopsis.txt" -- the language in which revealed examples are shown revealedLang = "Eng" --- all languages shown +-- all languages shown (a copy of this list appears in Makefile) apiExxFiles = ["api-examples-" ++ lang ++ ".txt" | lang <- words -- "Eng Chi" "Afr Bul Cat Chi Dan Dut Eng Est Eus Fin Fre Ger Gre Hin Ice Ita Jpn Lav Mlt Mon Nep Nor Nno Pes Pnb Pol Ron Rus Snd Spa Swe Tha Urd" From 369d45709694ca8b273b708a983a55899b58135e Mon Sep 17 00:00:00 2001 From: Thomas Hallgren Date: Tue, 23 Oct 2018 16:20:00 +0200 Subject: [PATCH 050/172] doc/Makefile: add missing dependencies Dependencies on txt2tags includes and Haskell source files were missing. --- doc/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/Makefile b/doc/Makefile index e7f51b357..3988d7a4d 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -22,9 +22,10 @@ LANGS=Afr Bul Cat Chi Dan Dut Eng Est Eus Fin Fre Ger Gre Hin Ice Ita Jpn Lav Ml SRC_FILES=$S/abstract/Common.gf $S/abstract/Cat.gf $S/api/Constructors.gf $S/abstract/Structural.gf $(patsubst %,$S/*/Paradigms%.gf,$(LANGS)) EXAMPLES_OUT=$(patsubst %,api-examples-%.txt,$(LANGS)) +INCLUDES=synopsis-intro.txt categories-intro.txt synopsis-additional.txt synopsis-browse.txt synopsis-example.txt -synopsis.html: $(EXAMPLES_OUT) $(SRC_FILES) - runghc MkSynopsis.hs >out +synopsis.html: MkSynopsis.hs MkExxTable.hs $(INCLUDES) $(EXAMPLES_OUT) $(SRC_FILES) + runghc MkSynopsis.hs categories-imagemap.html: categories.dot dot -Tcmapx $^ > $@ @@ -34,7 +35,7 @@ abstract: mv $S/abstract/*.html abstract -api-examples.gfs: api-examples.txt +api-examples.gfs: api-examples.txt MkExx.hs runghc MkExx.hs < $< > $@ @@ -46,4 +47,4 @@ api-examples-%.txt: $(GF_alltenses)/Try%.gfo api-examples.gfs GF_LIB_PATH=$(GF_LIB_PATH) $(GF) -retain -s $< $@ clean: - rm -rf out synopsis.txt api-examples.gfs $(EXAMPLES_OUT) + rm -rf synopsis.txt api-examples.gfs $(EXAMPLES_OUT) From 4e646d5c7b0a56e665b0fbf9ee2c4bc637c039c3 Mon Sep 17 00:00:00 2001 From: Thomas Hallgren Date: Tue, 23 Oct 2018 16:22:04 +0200 Subject: [PATCH 051/172] Add verbosity option in doc/MkExxTable.hs Don't need a lot of output on stdout when it is used from MkSynposis.hs --- doc/MkExxTable.hs | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/doc/MkExxTable.hs b/doc/MkExxTable.hs index 7fff127af..a45effabc 100644 --- a/doc/MkExxTable.hs +++ b/doc/MkExxTable.hs @@ -2,28 +2,31 @@ module MkExxTable (getApiExx, ApiExx, prApiEx, mkEx) where --import System.Cmd import System.Environment(getArgs) +import Control.Monad(when) import qualified Data.Map as M import Data.Char main = do xx <- getArgs - aexx <- getApiExx xx + aexx <- getApiExx' True xx return () -- putStrLn $ prApiExx aexx getApiExx :: [FilePath] -> IO ApiExx -getApiExx xx = do +getApiExx = getApiExx' False + +getApiExx' verbose xx = do s <- readFile (head xx) let aet = getApiExxTrees $ filter validOutput $ mergeOutput $ lines s - aeos <- mapM readApiExxOne xx + aeos <- mapM (readApiExxOne verbose) xx let aexx = mkApiExx $ ("API",aet) : aeos -- putStrLn $ prApiExx aexx return aexx -readApiExxOne file = do +readApiExxOne verbose file = do s <- readFile file let lang = reverse (take 3 (drop 4 (reverse file))) -- api-exx-*Eng*.txt let api = getApiExxOne $ filter validOutput $ mergeOutput $ lines s - putStrLn $ unlines $ prApiEx api --- + when verbose $ putStrLn $ unlines $ prApiEx api --- return (lang,api) -- map function -> language -> example From 95bc1637afdb98b43571ceef973b5e497c349f11 Mon Sep 17 00:00:00 2001 From: odanoburu Date: Tue, 23 Oct 2018 21:27:03 -0300 Subject: [PATCH 052/172] - mv GF 3.9 synopsis - add link to GF 3.9 synopsis in nightly version --- doc/synopsis-intro.txt | 4 +--- doc/{synopsis.html => synopsis-v3.9.html} | 0 2 files changed, 1 insertion(+), 3 deletions(-) rename doc/{synopsis.html => synopsis-v3.9.html} (100%) diff --git a/doc/synopsis-intro.txt b/doc/synopsis-intro.txt index 055a0cecc..c2ba315cf 100644 --- a/doc/synopsis-intro.txt +++ b/doc/synopsis-intro.txt @@ -1,8 +1,6 @@ - - - +Versions: [3.9 ./synopsis-v3.9.html] | latest (this one) =Introduction= diff --git a/doc/synopsis.html b/doc/synopsis-v3.9.html similarity index 100% rename from doc/synopsis.html rename to doc/synopsis-v3.9.html From f55cc00457cd5839dd1b3e45800d7965988e0054 Mon Sep 17 00:00:00 2001 From: odanoburu Date: Tue, 23 Oct 2018 22:32:03 -0300 Subject: [PATCH 053/172] add Por and Ara to synopsis --- doc/Globes.hs | 3 ++- doc/Makefile | 2 +- doc/MkExx.hs | 1 + doc/MkSynopsis.hs | 4 +++- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/doc/Globes.hs b/doc/Globes.hs index 7be896b61..165d73421 100644 --- a/doc/Globes.hs +++ b/doc/Globes.hs @@ -21,7 +21,7 @@ interlingua = "Meaning" languages = [ "afrikaans", -- "አማርኛ", --- "العربية", + "العربية", "Български", "català", "中文", @@ -45,6 +45,7 @@ languages = [ "پeرسن", "polski", "پنجابی", + "português", "Русский", "ٻولي", "español", diff --git a/doc/Makefile b/doc/Makefile index 3988d7a4d..916f4c79a 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -16,7 +16,7 @@ synopsis: synopsis.html S=../src # List of languages extracted from MkSynopsis.hs -LANGS=Afr Bul Cat Chi Dan Dut Eng Est Eus Fin Fre Ger Gre Hin Ice Ita Jpn Lav Mlt Mon Nep Nor Nno Pes Pnb Pol Ron Rus Snd Spa Swe Tha Urd +LANGS=Afr Ara Bul Cat Chi Dan Dut Eng Est Eus Fin Fre Ger Gre Hin Ice Ita Jpn Lav Mlt Mon Nep Nor Nno Pes Pnb Pol Por Ron Rus Snd Spa Swe Tha Urd # This list was constructed by observing what files MkSynopsis.hs reads SRC_FILES=$S/abstract/Common.gf $S/abstract/Cat.gf $S/api/Constructors.gf $S/abstract/Structural.gf $(patsubst %,$S/*/Paradigms%.gf,$(LANGS)) diff --git a/doc/MkExx.hs b/doc/MkExx.hs index bb7551c60..16eb38bfd 100644 --- a/doc/MkExx.hs +++ b/doc/MkExx.hs @@ -52,6 +52,7 @@ langsCoding = [ (("norwegian","Nor"),"Scand"), (("polish", "Pol"),""), (("punjabi", "Pnb"),""), + (("portuguese", "Por"), "Romance"), (("romanian", "Ron"),""), (("russian", "Rus"),""), (("spanish", "Spa"),"Romance"), diff --git a/doc/MkSynopsis.hs b/doc/MkSynopsis.hs index 859ac0678..e2040fe49 100644 --- a/doc/MkSynopsis.hs +++ b/doc/MkSynopsis.hs @@ -19,7 +19,7 @@ revealedLang = "Eng" -- all languages shown (a copy of this list appears in Makefile) apiExxFiles = ["api-examples-" ++ lang ++ ".txt" | lang <- words -- "Eng Chi" - "Afr Bul Cat Chi Dan Dut Eng Est Eus Fin Fre Ger Gre Hin Ice Ita Jpn Lav Mlt Mon Nep Nor Nno Pes Pnb Pol Ron Rus Snd Spa Swe Tha Urd" + "Afr Ara Bul Cat Chi Dan Dut Eng Est Eus Fin Fre Ger Gre Hin Ice Ita Jpn Lav Mlt Mon Nep Nor Nno Pes Pnb Pol Por Ron Rus Snd Spa Swe Tha Urd" ] main = do @@ -244,6 +244,7 @@ syntaxAPI = srcPath "/api/Constructors.gf" structuralAPI = srcPath "/abstract/Structural.gf" paradigmFiles = [ ("Afrikaans", srcPath "/afrikaans/ParadigmsAfr.gf"), + ("Arabic", srcPath "/arabic/ParadigmsAra.gf"), ("Basque", srcPath "/basque/ParadigmsEus.gf"), ("Bulgarian", srcPath "/bulgarian/ParadigmsBul.gf"), ("Catalan", srcPath "/catalan/ParadigmsCat.gf"), @@ -269,6 +270,7 @@ paradigmFiles = [ ("Nynorsk", srcPath "/nynorsk/ParadigmsNno.gf"), ("Polish", srcPath "/polish/ParadigmsPol.gf"), ("Punjabi", srcPath "/punjabi/ParadigmsPnb.gf"), + ("Portuguese", srcPath "/portuguese/ParadigmsPor.gf"), ("Romanian", srcPath "/romanian/ParadigmsRon.gf"), ("Russian", srcPath "/russian/ParadigmsRus.gf"), ("Sindhi", srcPath "/sindhi/ParadigmsSnd.gf"), From 77a7b7e51cbba059d29c7765df53ee83fe3cca08 Mon Sep 17 00:00:00 2001 From: bruno cuconato Date: Wed, 24 Oct 2018 14:06:45 +0000 Subject: [PATCH 054/172] use copyFileWithMetadata instead of copyFile to preserve timestamps #43 ([but also preserves other stuff](http://hackage.haskell.org/package/directory-1.3.3.1/docs/System-Directory.html#v:copyFileWithMetadata)) --- Make.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Make.hs b/Make.hs index e97b7f9da..1e63bc87c 100644 --- a/Make.hs +++ b/Make.hs @@ -6,7 +6,7 @@ import System.Exit (ExitCode(..),die) import System.Environment (getArgs,lookupEnv) import System.Process (rawSystem) import System.FilePath (()) -- ,takeFileName,addExtension,dropExtension) -import System.Directory (createDirectoryIfMissing,copyFile,getDirectoryContents,removeDirectoryRecursive,findFile) +import System.Directory (createDirectoryIfMissing,copyFileWithMetadata,getDirectoryContents,removeDirectoryRecursive,findFile) import Control.Monad (when,unless) main :: IO () @@ -61,14 +61,14 @@ copyOne :: String -> FilePath -> FilePath -> IO () copyOne file from to = do putStrLn $ "Copying [" ++ file ++ "] " ++ to createDirectoryIfMissing True to - copyFile (from file) (to file) + copyFileWithMetadata (from file) (to file) -- | Copy all files between directories copyAll :: String -> FilePath -> FilePath -> IO () copyAll msg from to = do putStrLn $ "Copying [" ++ msg ++ "] " ++ to createDirectoryIfMissing True to - mapM_ (\file -> when (file /= "." && file /= "..") $ copyFile (from file) (to file)) =<< getDirectoryContents from + mapM_ (\file -> when (file /= "." && file /= "..") $ copyFileWithMetadata (from file) (to file)) =<< getDirectoryContents from -- | Remove dist directory clean :: IO () From 425f3c71e95e75b67e92f215cc22ee35133ac9d5 Mon Sep 17 00:00:00 2001 From: odanoburu Date: Wed, 24 Oct 2018 21:57:11 -0300 Subject: [PATCH 055/172] (Construction{Eng,Por}) add timeHour and timeHourMinute --- src/abstract/Construction.gf | 29 +++++++++++++++ src/english/ConstructionEng.gf | 51 +++++++++++++++++++++++--- src/portuguese/ConstructionPor.gf | 61 +++++++++++++++++++++++++++++-- 3 files changed, 133 insertions(+), 8 deletions(-) diff --git a/src/abstract/Construction.gf b/src/abstract/Construction.gf index 5db329810..ca2b39d72 100644 --- a/src/abstract/Construction.gf +++ b/src/abstract/Construction.gf @@ -71,6 +71,7 @@ fun cat Timeunit ; + Hour ; Weekday ; Month ; Monthday ; @@ -79,6 +80,34 @@ cat fun timeunitAdv : Card -> Timeunit -> Adv ; -- (for) three hours + oneHour : Hour ; + twoHour : Hour ; + threeHour : Hour ; + fourHour : Hour ; + fiveHour : Hour ; + sixHour : Hour ; + sevenHour : Hour ; + eightHour : Hour ; + nineHour : Hour ; + tenHour : Hour ; + elevenHour : Hour ; + twelveHour : Hour ; + thirteenHour : Hour ; + fourteenHour : Hour ; + fifteenHour : Hour ; + sixteenHour : Hour ; + seventeenHour : Hour ; + eighteenHour : Hour ; + nineteenHour : Hour ; + twentyHour : Hour ; + twentyOneHour : Hour ; + twentyTwoHour : Hour ; + twentyThreeHour : Hour ; + twentyFourHour : Hour ; + + timeHour : Hour -> Adv ; -- at three (o'clock / am / pm) + timeHourMinute : Hour -> Card -> Adv ; -- at forty past six + weekdayPunctualAdv : Weekday -> Adv ; -- on Monday weekdayHabitualAdv : Weekday -> Adv ; -- on Mondays weekdayLastAdv : Weekday -> Adv ; -- last Monday diff --git a/src/english/ConstructionEng.gf b/src/english/ConstructionEng.gf index 291b79b96..6ac58f8a6 100644 --- a/src/english/ConstructionEng.gf +++ b/src/english/ConstructionEng.gf @@ -62,16 +62,57 @@ oper from_where_IAdv : IAdv = lin IAdv (ss "from where") ; lincat Timeunit = N ; + Hour = {s : Str ; am : Bool} ; Weekday = N ; Monthday = NP ; Month = N ; Year = NP ; -lin - timeunitAdv n time = - let n_card : Card = n ; - n_hours_NP : NP = mkNP n_card time ; - in SyntaxEng.mkAdv for_Prep n_hours_NP | mkAdv (n_hours_NP.s ! R.npNom) ; + lin + timeunitAdv n time = + let n_card : Card = n ; + n_hours_NP : NP = mkNP n_card time ; + in SyntaxEng.mkAdv for_Prep n_hours_NP | mkAdv (n_hours_NP.s ! R.npNom) ; + + oneHour = {s = "one" ; am = True} ; + twoHour = {s = "two" ; am = True} ; + threeHour = {s = "three" ; am = True} ; + fourHour = {s = "four" ; am = True} ; + fiveHour = {s = "five" ; am = True} ; + sixHour = {s = "six" ; am = True} ; + sevenHour = {s = "seven" ; am = True} ; + eightHour = {s = "eight" ; am = True} ; + nineHour = {s = "nine" ; am = True} ; + tenHour = {s = "ten" ; am = True} ; + elevenHour = {s = "eleven" ; am = True} ; + twelveHour = {s = "twelve" ; am = False} ; + thirteenHour = {s = "one" ; am = False} ; + fourteenHour = {s = "two" ; am = False} ; + fifteenHour = {s = "three" ; am = False} ; + sixteenHour = {s = "four" ; am = False} ; + seventeenHour = {s = "five" ; am = False} ; + eighteenHour = {s = "six" ; am = False} ; + nineteenHour = {s = "seven" ; am = False} ; + twentyHour = {s = "eight" ; am = False} ; + twentyOneHour = {s = "nine" ; am = False} ; + twentyTwoHour = {s = "ten" ; am = False} ; + twentyThreeHour = {s = "eleven" ; am = False} ; + twentyFourHour = {s = "twelve" ; am = True} ; + + timeHour h = SyntaxEng.mkAdv at_Prep (symb (hourStr h)) ; + timeHourMinute h m = let + min = m.s ! True ! R.Nom + in + mkAdv (variants {at_Prep.s ++ h.s ++ min ; at_Prep.s ++ min ++ "past" ++ h.s}) ; + + oper + at_Prep : Prep ; + at_Prep = mkPrep "at" ; + + hourStr : Hour -> Str ; + hourStr h = h.s ++ ("" | "o'clock" | if_then_Str h.am "AM" "PM") ; + + lin weekdayPunctualAdv w = SyntaxEng.mkAdv on_Prep (mkNP w) ; -- on Sunday weekdayHabitualAdv w = SyntaxEng.mkAdv on_Prep (mkNP aPl_Det w) ; -- on Sundays weekdayNextAdv w = SyntaxEng.mkAdv (mkPrep "next") (mkNP w) ; -- next Sunday diff --git a/src/portuguese/ConstructionPor.gf b/src/portuguese/ConstructionPor.gf index c4c323920..1bdf87b5d 100644 --- a/src/portuguese/ConstructionPor.gf +++ b/src/portuguese/ConstructionPor.gf @@ -3,7 +3,7 @@ concrete ConstructionPor of Construction = CatPor ** open SyntaxPor, SymbolicPor, ParadigmsPor, BeschPor, (L = LexiconPor), (E = ExtraPor), (B = IrregBeschPor), (R = ResPor), - (S = SyntaxPor), (C = CommonRomance), + (S = SyntaxPor), (C = CommonRomance), CommonRomance, Prelude in { flags coding=utf8 ; @@ -52,12 +52,17 @@ lin lincat Timeunit = N ; + Hour = {s : Str ; pe : Period ; n : Number} ; Weekday = N ; Monthday = NP ; Month = N ; Year = NP ; -oper - noPrep : Prep = mkPrep [] ; + + param + Period = Manhã | Tarde | Noite ; + + oper + noPrep : Prep = mkPrep [] ; lin timeunitAdv n time = @@ -65,6 +70,56 @@ oper n_hours_NP : NP = mkNP n_card time ; in S.mkAdv for_Prep n_hours_NP | S.mkAdv to_Prep n_hours_NP ;--| S.mkAdv (n_hours_NP.s ! R.Nom) ; + oneHour = {s = "uma"; pe = Manhã ; n = Sg} ; + twoHour = {s = "duas" ; pe = Manhã ; n = Pl} ; + threeHour = {s = "três" ; pe = Manhã ; n = Pl} ; + fourHour = {s = "quatro" ; pe = Manhã ; n = Pl} ; + fiveHour = {s = "cinco" ; pe = Manhã ; n = Pl} ; + sixHour = {s = "seis" ; pe = Manhã ; n = Pl} ; + sevenHour = {s = "sete" ; pe = Manhã ; n = Pl} ; + eightHour = {s = "oito" ; pe = Manhã ; n = Pl} ; + nineHour = {s = "nove" ; pe = Manhã ; n = Pl} ; + tenHour = {s = "dez" ; pe = Manhã ; n = Pl} ; + elevenHour = {s = "onze" ; pe = Manhã ; n = Pl} ; + twelveHour = {s = "doze" ; pe = Tarde ; n = Pl} ; + thirteenHour = {s = "uma" ; pe = Tarde ; n = Sg } | {s = "treze" ; pe = Tarde ; n = Pl} ; + fourteenHour = {s = "duas" | "catorze" ; pe = Tarde ; n = Pl} ; + fifteenHour = {s = "três" | "quinze" ; pe = Tarde ; n = Pl} ; + sixteenHour = {s = "quatro" | "dezesseis" ; pe = Tarde ; n = Pl} ; + seventeenHour = {s = "cinco" | "dezessete" ; pe = Noite ; n = Pl} ; + eighteenHour = {s = "seis" | "dezoito" ; pe = Noite ; n = Pl} ; + nineteenHour = {s = "sete" | "dezenove" ; pe = Noite ; n = Pl} ; + twentyHour = {s = "oito" | "vinte" ; pe = Noite ; n = Pl} ; + twentyOneHour = {s = "nove" | "vinte e uma" ; pe = Noite ; n = Pl} ; + twentyTwoHour = {s = "dez" | "vinte e duas" ; pe = Noite ; n = Pl} ; + twentyThreeHour = {s = "onze" | "vinte e três" ; pe = Noite ; n = Pl} ; + twentyFourHour = {s = "zero" ; pe = Manhã ; n = Pl} | {s = "meia-noite" ; pe = Manhã ; n = Sg} ; + + timeHour h = mkAdv (hourStr h) ; + + timeHourMinute h m = let + min = m.s ! Masc ++ variants {"" ; numForms "minuto" "minutos" ! m.n} + in + mkAdv (a ! h.n ++ h.s ++ (hora ! h.n | "") ++ "e" ++ min ++ variants {"" ; period ! h.pe}) ; + + oper + period : Period => Str ; + period = table { + Manhã => "da manhã" ; + Tarde => "da tarde" ; + Noite => "da noite" + } ; + + a : Number => Str ; + a = numForms "à" "às" ; + + hora : Number => Str ; + hora = numForms "hora" "horas" ; + + hourStr : Hour -> Str ; + hourStr h = a ! h.n ++ h.s ++ variants {"" ; ("" | hora ! h.n) ++ period ! h.pe ; hora ! h.n} ; + + lin weekdayPunctualAdv w = lin Adv {s = w.s ! C.Sg} ; -- lundi weekdayHabitualAdv w = SyntaxPor.mkAdv noPrep (mkNP the_Det w) ; -- il lunedí ---- weekdayLastAdv w = SyntaxPor.mkAdv noPrep (mkNP the_Det (mkCN (mkA "passado") w)) ; -- il lunedí scorso From 1862cb0559b55953f143b41876ce4f87420bf914 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Thu, 25 Oct 2018 08:28:29 +0200 Subject: [PATCH 056/172] Preserve metadata in copy (Make.sh) Addresses #43 but I'm not 100% convinced it makes any difference. --- Make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Make.sh b/Make.sh index 97870d31d..ce73171c4 100755 --- a/Make.sh +++ b/Make.sh @@ -97,4 +97,4 @@ done # Copy echo "Copying to ${dest}" -cp -R "${dist}"/* "${dest}" +cp -R -p "${dist}"/* "${dest}" From 894c09d1b9c9fd8c51b116939425d3e24997c15e Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Thu, 25 Oct 2018 08:34:33 +0200 Subject: [PATCH 057/172] Only copy newer files (Make.bat) Addresses #43 but not tested. Reference: https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-xp/bb491035(v%3dtechnet.10) --- Make.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Make.bat b/Make.bat index 16ba98fa2..d7c77595b 100644 --- a/Make.bat +++ b/Make.bat @@ -99,4 +99,4 @@ for %%m in (%modules%) do ( REM Copy echo Copying to %dest% -copy %dist% %dest% +xcopy %dist% %dest% /d From d446af84791d846a60eaf38eb9f31331e82cfbc0 Mon Sep 17 00:00:00 2001 From: Thomas Hallgren Date: Thu, 25 Oct 2018 16:34:44 +0200 Subject: [PATCH 058/172] doc/Makefile: add a missing dependency --- doc/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/Makefile b/doc/Makefile index 916f4c79a..556973dd7 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -22,11 +22,14 @@ LANGS=Afr Ara Bul Cat Chi Dan Dut Eng Est Eus Fin Fre Ger Gre Hin Ice Ita Jpn La SRC_FILES=$S/abstract/Common.gf $S/abstract/Cat.gf $S/api/Constructors.gf $S/abstract/Structural.gf $(patsubst %,$S/*/Paradigms%.gf,$(LANGS)) EXAMPLES_OUT=$(patsubst %,api-examples-%.txt,$(LANGS)) -INCLUDES=synopsis-intro.txt categories-intro.txt synopsis-additional.txt synopsis-browse.txt synopsis-example.txt +INCLUDES=synopsis-intro.txt categories-intro.txt categories-imagemap.html synopsis-additional.txt synopsis-browse.txt synopsis-example.txt synopsis.html: MkSynopsis.hs MkExxTable.hs $(INCLUDES) $(EXAMPLES_OUT) $(SRC_FILES) runghc MkSynopsis.hs +categories.png: categories.dot + dot -Tpng $^ > $@ + categories-imagemap.html: categories.dot dot -Tcmapx $^ > $@ From 8b64ad4a9ed03c1c6dd32efa03c633ce2066ca53 Mon Sep 17 00:00:00 2001 From: Thomas Hallgren Date: Thu, 25 Oct 2018 16:49:38 +0200 Subject: [PATCH 059/172] doc/synopsis-intro.txt: fix language list and broken links --- doc/synopsis-intro.txt | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/doc/synopsis-intro.txt b/doc/synopsis-intro.txt index c2ba315cf..3b95dea03 100644 --- a/doc/synopsis-intro.txt +++ b/doc/synopsis-intro.txt @@ -6,8 +6,9 @@ Versions: [3.9 ./synopsis-v3.9.html] | latest (this one) =Introduction= The GF Resource Grammar Library is the standard library for Grammatical Framework. -It covers the morphology and basic syntax of currently 32 languages: +It covers the morphology and basic syntax of currently 34 languages: Afrikaans, +Arabic, Bulgarian, Catalan, Chinese (simplified), @@ -31,6 +32,7 @@ Norwegian (bokmål), Norwegial (nynorsk), Persian, Polish, +Portuguese, Punjabi, Romanian, Russian, @@ -52,13 +54,13 @@ The main contents are: constructing trees in them. - [Chapter 2 #toc5]: syntactic construction functions, with cross-links and examples. -- [Chapter 3 #toc84]: morphological paradigms. -- [Chapter 4 #toc116]: additional libraries. -- [Chapter 5 #toc122]: how to "browse" the library by +- [Chapter 3 #toc85]: morphological paradigms. +- [Chapter 4 #toc120]: additional libraries. +- [Chapter 5 #toc126]: how to "browse" the library by loading the grammars into the ``gf`` command editor. -- [Chapter 6 #toc123]: a brief example of how application grammars can +- [Chapter 6 #toc127]: a brief example of how application grammars can use the resource modules. -- [Detailed table of contents #toc124]. +- [Detailed table of contents #toc128]. Other relevant documents: From 75e1c10250517c6ea9d02d3df489d43d637314b2 Mon Sep 17 00:00:00 2001 From: Thomas Hallgren Date: Thu, 25 Oct 2018 17:04:36 +0200 Subject: [PATCH 060/172] synopis: add header styles that match the GF home page --- doc/revealpopup.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/revealpopup.css b/doc/revealpopup.css index fe2dd4c1c..8f96c264f 100644 --- a/doc/revealpopup.css +++ b/doc/revealpopup.css @@ -24,6 +24,9 @@ table { border-collapse: collapse; } td, th { padding: 5px; } th { background: #9df; } td { background: white } +h1,h2,h3,h4 { font-family: sans-serif; color: #303030; + text-shadow: rgba(0,0,0,0.25) 2px 2px 5px; + } /* Quick links */ From 7e60a931c8c531798b73c5f802a01803f62ae881 Mon Sep 17 00:00:00 2001 From: odanoburu Date: Thu, 25 Oct 2018 18:59:01 +0000 Subject: [PATCH 061/172] WIP: incorporate @aarneranta's comments --- src/english/ConstructionEng.gf | 63 ++++++++++---------- src/portuguese/ConstructionPor.gf | 97 ++++++++++++++++--------------- 2 files changed, 83 insertions(+), 77 deletions(-) diff --git a/src/english/ConstructionEng.gf b/src/english/ConstructionEng.gf index 6ac58f8a6..d0e6b591f 100644 --- a/src/english/ConstructionEng.gf +++ b/src/english/ConstructionEng.gf @@ -1,7 +1,7 @@ --# -path=.:../abstract concrete ConstructionEng of Construction = CatEng ** - open SyntaxEng, SymbolicEng, ParadigmsEng, (L = LexiconEng), (E = ExtendEng), (G = GrammarEng), (R = ResEng), (S = StructuralEng), Prelude in { + open SyntaxEng, SymbolicEng, ParadigmsEng, (L = LexiconEng), (E = ExtendEng), (G = GrammarEng), (R = ResEng), (Sy = SyntaxEng), (S = StructuralEng), Prelude in { lin @@ -72,45 +72,48 @@ lincat timeunitAdv n time = let n_card : Card = n ; n_hours_NP : NP = mkNP n_card time ; - in SyntaxEng.mkAdv for_Prep n_hours_NP | mkAdv (n_hours_NP.s ! R.npNom) ; + in Sy.mkAdv for_Prep n_hours_NP | mkAdv (n_hours_NP.s ! R.npNom) ; - oneHour = {s = "one" ; am = True} ; - twoHour = {s = "two" ; am = True} ; - threeHour = {s = "three" ; am = True} ; - fourHour = {s = "four" ; am = True} ; - fiveHour = {s = "five" ; am = True} ; - sixHour = {s = "six" ; am = True} ; - sevenHour = {s = "seven" ; am = True} ; - eightHour = {s = "eight" ; am = True} ; - nineHour = {s = "nine" ; am = True} ; - tenHour = {s = "ten" ; am = True} ; - elevenHour = {s = "eleven" ; am = True} ; - twelveHour = {s = "twelve" ; am = False} ; - thirteenHour = {s = "one" ; am = False} ; - fourteenHour = {s = "two" ; am = False} ; - fifteenHour = {s = "three" ; am = False} ; - sixteenHour = {s = "four" ; am = False} ; - seventeenHour = {s = "five" ; am = False} ; - eighteenHour = {s = "six" ; am = False} ; - nineteenHour = {s = "seven" ; am = False} ; - twentyHour = {s = "eight" ; am = False} ; - twentyOneHour = {s = "nine" ; am = False} ; - twentyTwoHour = {s = "ten" ; am = False} ; - twentyThreeHour = {s = "eleven" ; am = False} ; - twentyFourHour = {s = "twelve" ; am = True} ; + oneHour = mkHour "1" True ; + twoHour = mkHour "2" True ; + threeHour = mkHour "3" True ; + fourHour = mkHour "4" True ; + fiveHour = mkHour "5" True ; + sixHour = mkHour "6" True ; + sevenHour = mkHour "7" True ; + eightHour = mkHour "8" True ; + nineHour = mkHour "9" True ; + tenHour = mkHour "10" True ; + elevenHour = mkHour "11" True ; + twelveHour = mkHour "12" False ; + thirteenHour = mkHour "1" False ; + fourteenHour = mkHour "2" False ; + fifteenHour = mkHour "3" False ; + sixteenHour = mkHour "4" False ; + seventeenHour = mkHour "5" False ; + eighteenHour = mkHour "6" False ; + nineteenHour = mkHour "7" False ; + twentyHour = mkHour "8" False ; + twentyOneHour = mkHour "9" False ; + twentyTwoHour = mkHour "10" False ; + twentyThreeHour = mkHour "11" False ; + twentyFourHour = mkHour "12" True ; - timeHour h = SyntaxEng.mkAdv at_Prep (symb (hourStr h)) ; + timeHour h = Sy.mkAdv at_Prep (symb (h.s ++ ampm ! h.am)) ; timeHourMinute h m = let min = m.s ! True ! R.Nom in - mkAdv (variants {at_Prep.s ++ h.s ++ min ; at_Prep.s ++ min ++ "past" ++ h.s}) ; + Sy.mkAdv at_Prep (symb (h.s ++ min ++ ampm ! h.am)) ; oper + mkHour : Str -> Bool -> {s : Str ; am : Bool} ; + mkHour n am = Sy.mkUtt (Sy.mkCard n) ** {am = am} ; + at_Prep : Prep ; at_Prep = mkPrep "at" ; - hourStr : Hour -> Str ; - hourStr h = h.s ++ ("" | "o'clock" | if_then_Str h.am "AM" "PM") ; + ampm : Bool => Str ; + ampm = table {True => "a.m." ; False => "p.m."} ; lin weekdayPunctualAdv w = SyntaxEng.mkAdv on_Prep (mkNP w) ; -- on Sunday diff --git a/src/portuguese/ConstructionPor.gf b/src/portuguese/ConstructionPor.gf index 1bdf87b5d..48ab43d0b 100644 --- a/src/portuguese/ConstructionPor.gf +++ b/src/portuguese/ConstructionPor.gf @@ -64,60 +64,63 @@ lin oper noPrep : Prep = mkPrep [] ; - lin - timeunitAdv n time = - let n_card : Card = lin Card n; - n_hours_NP : NP = mkNP n_card time ; - in S.mkAdv for_Prep n_hours_NP | S.mkAdv to_Prep n_hours_NP ;--| S.mkAdv (n_hours_NP.s ! R.Nom) ; + -- lin + -- timeunitAdv n time = + -- let n_card : Card = lin Card n; + -- n_hours_NP : NP = mkNP n_card time ; + -- in S.mkAdv for_Prep n_hours_NP | S.mkAdv to_Prep n_hours_NP ;--| S.mkAdv (n_hours_NP.s ! R.Nom) ; - oneHour = {s = "uma"; pe = Manhã ; n = Sg} ; - twoHour = {s = "duas" ; pe = Manhã ; n = Pl} ; - threeHour = {s = "três" ; pe = Manhã ; n = Pl} ; - fourHour = {s = "quatro" ; pe = Manhã ; n = Pl} ; - fiveHour = {s = "cinco" ; pe = Manhã ; n = Pl} ; - sixHour = {s = "seis" ; pe = Manhã ; n = Pl} ; - sevenHour = {s = "sete" ; pe = Manhã ; n = Pl} ; - eightHour = {s = "oito" ; pe = Manhã ; n = Pl} ; - nineHour = {s = "nove" ; pe = Manhã ; n = Pl} ; - tenHour = {s = "dez" ; pe = Manhã ; n = Pl} ; - elevenHour = {s = "onze" ; pe = Manhã ; n = Pl} ; - twelveHour = {s = "doze" ; pe = Tarde ; n = Pl} ; - thirteenHour = {s = "uma" ; pe = Tarde ; n = Sg } | {s = "treze" ; pe = Tarde ; n = Pl} ; - fourteenHour = {s = "duas" | "catorze" ; pe = Tarde ; n = Pl} ; - fifteenHour = {s = "três" | "quinze" ; pe = Tarde ; n = Pl} ; - sixteenHour = {s = "quatro" | "dezesseis" ; pe = Tarde ; n = Pl} ; - seventeenHour = {s = "cinco" | "dezessete" ; pe = Noite ; n = Pl} ; - eighteenHour = {s = "seis" | "dezoito" ; pe = Noite ; n = Pl} ; - nineteenHour = {s = "sete" | "dezenove" ; pe = Noite ; n = Pl} ; - twentyHour = {s = "oito" | "vinte" ; pe = Noite ; n = Pl} ; - twentyOneHour = {s = "nove" | "vinte e uma" ; pe = Noite ; n = Pl} ; - twentyTwoHour = {s = "dez" | "vinte e duas" ; pe = Noite ; n = Pl} ; - twentyThreeHour = {s = "onze" | "vinte e três" ; pe = Noite ; n = Pl} ; - twentyFourHour = {s = "zero" ; pe = Manhã ; n = Pl} | {s = "meia-noite" ; pe = Manhã ; n = Sg} ; + -- oneHour = mkHour "1" Manhã Sg ; + -- twoHour = mkHour "2" Manhã Pl ; + -- threeHour = mkHour "3" Manhã Pl ; + -- fourHour = mkHour "4" Manhã Pl ; + -- fiveHour = mkHour "5" Manhã Pl ; + -- sixHour = mkHour "6" Manhã Pl ; + -- sevenHour = mkHour "7" Manhã Pl ; + -- eightHour = mkHour "8" Manhã Pl ; + -- nineHour = mkHour "9" Manhã Pl ; + -- tenHour = mkHour "10" Manhã Pl ; + -- elevenHour = mkHour "11" Manhã Pl ; + -- twelveHour = mkHour "12" Tarde Pl ; + -- thirteenHour = mkHour "13" Tarde Sg ; + -- fourteenHour = mkHour "14" Tarde Pl ; + -- fifteenHour = mkHour "15" Tarde Pl ; + -- sixteenHour = mkHour "16" Tarde Pl ; + -- seventeenHour = mkHour "17" Noite Pl ; + -- eighteenHour = mkHour "18" Noite Pl ; + -- nineteenHour = mkHour "19" Noite Pl ; + -- twentyHour = mkHour "20" Noite Pl ; + -- twentyOneHour = mkHour "21" Noite Pl ; + -- twentyTwoHour = mkHour "22" Noite Pl ; + -- twentyThreeHour = mkHour "23" Noite Pl ; + -- twentyFourHour = mkHour "meia-noite" ; pe = Manhã ; n = Sg} ; - timeHour h = mkAdv (hourStr h) ; + -- timeHour h = mkAdv (hourStr h) ; - timeHourMinute h m = let - min = m.s ! Masc ++ variants {"" ; numForms "minuto" "minutos" ! m.n} - in - mkAdv (a ! h.n ++ h.s ++ (hora ! h.n | "") ++ "e" ++ min ++ variants {"" ; period ! h.pe}) ; + -- timeHourMinute h m = let + -- min = m.s ! Masc ++ variants {"" ; numForms "minuto" "minutos" ! m.n} + -- in + -- mkAdv (a ! h.n ++ h.s ++ (hora ! h.n | "") ++ "e" ++ min ++ variants {"" ; period ! h.pe}) ; - oper - period : Period => Str ; - period = table { - Manhã => "da manhã" ; - Tarde => "da tarde" ; - Noite => "da noite" - } ; + -- oper + -- mkHour : Str -> Period -> Number ; + -- mkHour num p n = S.mkUtt (S.mkCard num) ** {p = p ; n = n} ; + + -- period : Period => Str ; + -- period = table { + -- Manhã => "da manhã" ; + -- Tarde => "da tarde" ; + -- Noite => "da noite" + -- } ; - a : Number => Str ; - a = numForms "à" "às" ; + -- a : Number => Str ; + -- a = numForms "à" "às" ; - hora : Number => Str ; - hora = numForms "hora" "horas" ; + -- hora : Number => Str ; + -- hora = numForms "hora" "horas" ; - hourStr : Hour -> Str ; - hourStr h = a ! h.n ++ h.s ++ variants {"" ; ("" | hora ! h.n) ++ period ! h.pe ; hora ! h.n} ; + -- hourStr : Hour -> Str ; + -- hourStr h = a ! h.n ++ h.s ++ variants {"" ; ("" | hora ! h.n) ++ period ! h.pe ; hora ! h.n} ; lin weekdayPunctualAdv w = lin Adv {s = w.s ! C.Sg} ; -- lundi From 999cdb8e36a4047ef5a0b463c0f1a3f9fc3bd930 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Fri, 26 Oct 2018 09:10:32 +0200 Subject: [PATCH 062/172] Copy files with only modification time rather than all metadata --- Make.hs | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/Make.hs b/Make.hs index 1e63bc87c..2fccdaae0 100644 --- a/Make.hs +++ b/Make.hs @@ -1,3 +1,7 @@ +-- | Main build script for RGL +-- There is no associated cabal file, but these dependencies are known: +-- * directory >= 1.2.3.0 + import Data.List (find,isPrefixOf,isSuffixOf,(\\),unfoldr) import Data.Maybe (catMaybes) import System.IO (hPutStrLn,stderr) @@ -6,7 +10,7 @@ import System.Exit (ExitCode(..),die) import System.Environment (getArgs,lookupEnv) import System.Process (rawSystem) import System.FilePath (()) -- ,takeFileName,addExtension,dropExtension) -import System.Directory (createDirectoryIfMissing,copyFileWithMetadata,getDirectoryContents,removeDirectoryRecursive,findFile) +import System.Directory (createDirectoryIfMissing,copyFile,getModificationTime,setModificationTime,getDirectoryContents,removeDirectoryRecursive,findFile) import Control.Monad (when,unless) main :: IO () @@ -61,14 +65,20 @@ copyOne :: String -> FilePath -> FilePath -> IO () copyOne file from to = do putStrLn $ "Copying [" ++ file ++ "] " ++ to createDirectoryIfMissing True to - copyFileWithMetadata (from file) (to file) + copyFileWithModificationTime (from file) (to file) -- | Copy all files between directories copyAll :: String -> FilePath -> FilePath -> IO () copyAll msg from to = do putStrLn $ "Copying [" ++ msg ++ "] " ++ to createDirectoryIfMissing True to - mapM_ (\file -> when (file /= "." && file /= "..") $ copyFileWithMetadata (from file) (to file)) =<< getDirectoryContents from + mapM_ (\file -> when (file /= "." && file /= "..") $ copyFileWithModificationTime (from file) (to file)) =<< getDirectoryContents from + +-- | Copy a file together with its modification time but no other meta data +copyFileWithModificationTime :: FilePath -> FilePath -> IO () +copyFileWithModificationTime source destination = do + copyFile source destination + getModificationTime source >>= setModificationTime destination -- | Remove dist directory clean :: IO () From fa34877ea3166c17dd3cc4c6108da89ac0c4c5fb Mon Sep 17 00:00:00 2001 From: odanoburu Date: Fri, 26 Oct 2018 18:28:22 +0000 Subject: [PATCH 063/172] (Por) fix Portuguese time --- src/portuguese/ConstructionPor.gf | 99 +++++++++++++++---------------- 1 file changed, 47 insertions(+), 52 deletions(-) diff --git a/src/portuguese/ConstructionPor.gf b/src/portuguese/ConstructionPor.gf index 48ab43d0b..f3409985c 100644 --- a/src/portuguese/ConstructionPor.gf +++ b/src/portuguese/ConstructionPor.gf @@ -59,68 +59,63 @@ lin Year = NP ; param - Period = Manhã | Tarde | Noite ; + Period = Manha | Tarde | Noite | None ; oper noPrep : Prep = mkPrep [] ; - -- lin - -- timeunitAdv n time = - -- let n_card : Card = lin Card n; - -- n_hours_NP : NP = mkNP n_card time ; - -- in S.mkAdv for_Prep n_hours_NP | S.mkAdv to_Prep n_hours_NP ;--| S.mkAdv (n_hours_NP.s ! R.Nom) ; + lin + timeunitAdv n time = + let n_card : Card = lin Card n; + n_hours_NP : NP = mkNP n_card time ; + in S.mkAdv for_Prep n_hours_NP | S.mkAdv to_Prep n_hours_NP ;--| S.mkAdv (n_hours_NP.s ! R.Nom) ; - -- oneHour = mkHour "1" Manhã Sg ; - -- twoHour = mkHour "2" Manhã Pl ; - -- threeHour = mkHour "3" Manhã Pl ; - -- fourHour = mkHour "4" Manhã Pl ; - -- fiveHour = mkHour "5" Manhã Pl ; - -- sixHour = mkHour "6" Manhã Pl ; - -- sevenHour = mkHour "7" Manhã Pl ; - -- eightHour = mkHour "8" Manhã Pl ; - -- nineHour = mkHour "9" Manhã Pl ; - -- tenHour = mkHour "10" Manhã Pl ; - -- elevenHour = mkHour "11" Manhã Pl ; - -- twelveHour = mkHour "12" Tarde Pl ; - -- thirteenHour = mkHour "13" Tarde Sg ; - -- fourteenHour = mkHour "14" Tarde Pl ; - -- fifteenHour = mkHour "15" Tarde Pl ; - -- sixteenHour = mkHour "16" Tarde Pl ; - -- seventeenHour = mkHour "17" Noite Pl ; - -- eighteenHour = mkHour "18" Noite Pl ; - -- nineteenHour = mkHour "19" Noite Pl ; - -- twentyHour = mkHour "20" Noite Pl ; - -- twentyOneHour = mkHour "21" Noite Pl ; - -- twentyTwoHour = mkHour "22" Noite Pl ; - -- twentyThreeHour = mkHour "23" Noite Pl ; - -- twentyFourHour = mkHour "meia-noite" ; pe = Manhã ; n = Sg} ; + oneHour = mkHour "1" Manha Sg ; + twoHour = mkHour "2" Manha Pl ; + threeHour = mkHour "3" Manha Pl ; + fourHour = mkHour "4" Manha Pl ; + fiveHour = mkHour "5" Manha Pl ; + sixHour = mkHour "6" Manha Pl ; + sevenHour = mkHour "7" Manha Pl ; + eightHour = mkHour "8" Manha Pl ; + nineHour = mkHour "9" Manha Pl ; + tenHour = mkHour "10" Manha Pl ; + elevenHour = mkHour "11" Manha Pl ; + twelveHour = {s = "meio-dia" ; pe = None ; n = Sg} ; + thirteenHour = mkHour "13" Tarde Pl ; + fourteenHour = mkHour "14" Tarde Pl ; + fifteenHour = mkHour "15" Tarde Pl ; + sixteenHour = mkHour "16" Tarde Pl ; + seventeenHour = mkHour "17" Tarde Pl ; + eighteenHour = mkHour "18" Tarde Pl ; + nineteenHour = mkHour "19" Noite Pl ; + twentyHour = mkHour "20" Noite Pl ; + twentyOneHour = mkHour "21" Noite Pl ; + twentyTwoHour = mkHour "22" Noite Pl ; + twentyThreeHour = mkHour "23" Noite Pl ; + twentyFourHour = {s = "meia-noite" ; pe = None ; n = Sg} ; - -- timeHour h = mkAdv (hourStr h) ; + timeHour h = mkAdv (a ! h.n ++ h.s ++ period ! h.pe) ; - -- timeHourMinute h m = let - -- min = m.s ! Masc ++ variants {"" ; numForms "minuto" "minutos" ! m.n} - -- in - -- mkAdv (a ! h.n ++ h.s ++ (hora ! h.n | "") ++ "e" ++ min ++ variants {"" ; period ! h.pe}) ; + timeHourMinute h m = let + min = m.s ! Masc + in + mkAdv (a ! h.n ++ h.s ++ "e" ++ min ++ period ! h.pe) ; - -- oper - -- mkHour : Str -> Period -> Number ; - -- mkHour num p n = S.mkUtt (S.mkCard num) ** {p = p ; n = n} ; + oper + mkHour : Str -> Period -> Number -> {s : Str ; pe : Period ; n : Number} ; + mkHour num pe n = S.mkUtt (S.mkCard num) ** {pe = pe ; n = n} ; - -- period : Period => Str ; - -- period = table { - -- Manhã => "da manhã" ; - -- Tarde => "da tarde" ; - -- Noite => "da noite" - -- } ; + period : Period => Str ; + period = table { + Manha => "da manhã" ; + Tarde => "da tarde" ; + Noite => "da noite" ; + None => "" + } ; - -- a : Number => Str ; - -- a = numForms "à" "às" ; - - -- hora : Number => Str ; - -- hora = numForms "hora" "horas" ; - - -- hourStr : Hour -> Str ; - -- hourStr h = a ! h.n ++ h.s ++ variants {"" ; ("" | hora ! h.n) ++ period ! h.pe ; hora ! h.n} ; + a : Number => Str ; + a = numForms "à" "às" ; lin weekdayPunctualAdv w = lin Adv {s = w.s ! C.Sg} ; -- lundi From 7aa2837dd7ab7b94a4b0dae37290b111191a805b Mon Sep 17 00:00:00 2001 From: odanoburu Date: Mon, 29 Oct 2018 17:45:15 +0000 Subject: [PATCH 064/172] (Por) add lins - UttAdV, UttVPShort, PositAdVAdj, AdAdV, ComplSlashPartLast, CompVP to Extend - small fixes to Lexicon --- src/abstract/Extend.gf | 2 +- src/portuguese/ExtendPor.gf | 30 +++++++++++++++++++++++++++++- src/portuguese/LexiconPor.gf | 6 +++--- 3 files changed, 33 insertions(+), 5 deletions(-) diff --git a/src/abstract/Extend.gf b/src/abstract/Extend.gf index 760114c2a..3ee3b840a 100644 --- a/src/abstract/Extend.gf +++ b/src/abstract/Extend.gf @@ -200,7 +200,7 @@ abstract Extend = Cat ** { -- Eng UncontractedNeg : Pol ; -- do not, etc, as opposed to don't UttVPShort : VP -> Utt ; -- have fun, as opposed to "to have fun" - ComplSlashPartLast : VPSlash -> NP -> VP ; + ComplSlashPartLast : VPSlash -> NP -> VP ; -- set it apart, as opposed to "set apart it" -- Romance DetNPMasc : Det -> NP ; diff --git a/src/portuguese/ExtendPor.gf b/src/portuguese/ExtendPor.gf index 25da698e4..12ab235b6 100644 --- a/src/portuguese/ExtendPor.gf +++ b/src/portuguese/ExtendPor.gf @@ -3,13 +3,16 @@ concrete ExtendPor of Extend = CatPor ** ExtendFunctor - [ - ApposNP, + AdAdV, + ApposNP, BaseVPS, ByVP, CompBareCN, ComplBareVS, + ComplSlashPartLast, CompoundAP, CompoundN, + CompVP, ConsVPS, --EmptyRelSlash, ExistsNP, @@ -28,12 +31,15 @@ concrete ExtendPor of Extend = PassVPSlash, PastPartAP, PastPartAgentAP, + PositAdVAdj, PresPartAP, ProDrop, PurposeVP, VPS, iFem_Pron, theyFem_Pron, + UttAdV, + UttVPShort, weFem_Pron, WithoutVP, youFem_Pron, @@ -213,6 +219,28 @@ concrete ExtendPor of Extend = } ; } ; + AdAdV aa av = { + s = aa.s ++ av.s + } ; + + UttAdV av = av ; + + PositAdVAdj a = { + s = a.s ! Posit ! AA + } ; + + --TODO: actually use ant + CompVP ant p vp = let + neg = negation ! p.p + in { + s = \\agr => ant.s ++ p.s ++ "de" ++ neg.p1 ++ infVP vp agr ; + cop = serCopula + } ; + + UttVPShort = UttVP ; + + ComplSlashPartLast = ComplSlash ; + oper gerundStr : VP -> Str ; gerundStr vp = gerVP vp (Ag Masc Sg P3) ; diff --git a/src/portuguese/LexiconPor.gf b/src/portuguese/LexiconPor.gf index 6fbb22d45..96b9ee2a8 100644 --- a/src/portuguese/LexiconPor.gf +++ b/src/portuguese/LexiconPor.gf @@ -23,7 +23,7 @@ lin clean_A = mkA "limpo" ; clever_A = mkA "inteligente" ; cold_A = mkA "frio" ; -- fria - correct_A = mkA "correto" | mkA "correcto" ; + correct_A = mkA "correto" ; dirty_A = mkA "sujo" ; dry_A = mkA "seco" ; dull_A = mkA "desafilado" ; @@ -47,7 +47,7 @@ lin short_A = mkA "curto" ; --- breve, pequeno, baixo small_A = prefA (mkA "pequeno") ; smooth_A = mkA "liso" ; -- suave - straight_A = mkA "direto" | mkA "directo" ; -- reto + straight_A = mkA "direto" ; -- reto stupid_A = mkA "estúpido" ; thick_A = mkA "grosso" ; thin_A = mkA "fino" ; -- delgado, magro @@ -337,7 +337,7 @@ lin flow_V = mkV "fluir" ; -- circular fly_V = mkV "voar" ; freeze_V = mkV "congelar" ; - go_V = (mkV "ir") ; + go_V = mkV (ir_Besch "ir") ; jump_V = mkV "saltar" ; laugh_V = mkV (rir_Besch "rir") ; lie_V = reflV (mkV "mentir") ; From ebe411c6549847db6153afe73c40385030ba912f Mon Sep 17 00:00:00 2001 From: odanoburu Date: Mon, 29 Oct 2018 17:45:15 +0000 Subject: [PATCH 065/172] (Por) add lins - UttAdV, UttVPShort, PositAdVAdj, AdAdV, ComplSlashPartLast, CompVP to Extend - small fixes to Lexicon --- src/abstract/Extend.gf | 2 +- src/portuguese/ExtendPor.gf | 30 +++++++++++++++++++++++++++++- src/portuguese/LexiconPor.gf | 6 +++--- 3 files changed, 33 insertions(+), 5 deletions(-) diff --git a/src/abstract/Extend.gf b/src/abstract/Extend.gf index 760114c2a..3ee3b840a 100644 --- a/src/abstract/Extend.gf +++ b/src/abstract/Extend.gf @@ -200,7 +200,7 @@ abstract Extend = Cat ** { -- Eng UncontractedNeg : Pol ; -- do not, etc, as opposed to don't UttVPShort : VP -> Utt ; -- have fun, as opposed to "to have fun" - ComplSlashPartLast : VPSlash -> NP -> VP ; + ComplSlashPartLast : VPSlash -> NP -> VP ; -- set it apart, as opposed to "set apart it" -- Romance DetNPMasc : Det -> NP ; diff --git a/src/portuguese/ExtendPor.gf b/src/portuguese/ExtendPor.gf index 25da698e4..12ab235b6 100644 --- a/src/portuguese/ExtendPor.gf +++ b/src/portuguese/ExtendPor.gf @@ -3,13 +3,16 @@ concrete ExtendPor of Extend = CatPor ** ExtendFunctor - [ - ApposNP, + AdAdV, + ApposNP, BaseVPS, ByVP, CompBareCN, ComplBareVS, + ComplSlashPartLast, CompoundAP, CompoundN, + CompVP, ConsVPS, --EmptyRelSlash, ExistsNP, @@ -28,12 +31,15 @@ concrete ExtendPor of Extend = PassVPSlash, PastPartAP, PastPartAgentAP, + PositAdVAdj, PresPartAP, ProDrop, PurposeVP, VPS, iFem_Pron, theyFem_Pron, + UttAdV, + UttVPShort, weFem_Pron, WithoutVP, youFem_Pron, @@ -213,6 +219,28 @@ concrete ExtendPor of Extend = } ; } ; + AdAdV aa av = { + s = aa.s ++ av.s + } ; + + UttAdV av = av ; + + PositAdVAdj a = { + s = a.s ! Posit ! AA + } ; + + --TODO: actually use ant + CompVP ant p vp = let + neg = negation ! p.p + in { + s = \\agr => ant.s ++ p.s ++ "de" ++ neg.p1 ++ infVP vp agr ; + cop = serCopula + } ; + + UttVPShort = UttVP ; + + ComplSlashPartLast = ComplSlash ; + oper gerundStr : VP -> Str ; gerundStr vp = gerVP vp (Ag Masc Sg P3) ; diff --git a/src/portuguese/LexiconPor.gf b/src/portuguese/LexiconPor.gf index 6fbb22d45..96b9ee2a8 100644 --- a/src/portuguese/LexiconPor.gf +++ b/src/portuguese/LexiconPor.gf @@ -23,7 +23,7 @@ lin clean_A = mkA "limpo" ; clever_A = mkA "inteligente" ; cold_A = mkA "frio" ; -- fria - correct_A = mkA "correto" | mkA "correcto" ; + correct_A = mkA "correto" ; dirty_A = mkA "sujo" ; dry_A = mkA "seco" ; dull_A = mkA "desafilado" ; @@ -47,7 +47,7 @@ lin short_A = mkA "curto" ; --- breve, pequeno, baixo small_A = prefA (mkA "pequeno") ; smooth_A = mkA "liso" ; -- suave - straight_A = mkA "direto" | mkA "directo" ; -- reto + straight_A = mkA "direto" ; -- reto stupid_A = mkA "estúpido" ; thick_A = mkA "grosso" ; thin_A = mkA "fino" ; -- delgado, magro @@ -337,7 +337,7 @@ lin flow_V = mkV "fluir" ; -- circular fly_V = mkV "voar" ; freeze_V = mkV "congelar" ; - go_V = (mkV "ir") ; + go_V = mkV (ir_Besch "ir") ; jump_V = mkV "saltar" ; laugh_V = mkV (rir_Besch "rir") ; lie_V = reflV (mkV "mentir") ; From 1427b1bbb888c52967350d4f4b200c308aa314c6 Mon Sep 17 00:00:00 2001 From: odanoburu Date: Tue, 30 Oct 2018 13:48:26 +0000 Subject: [PATCH 066/172] (Por) change mk2A paradigm (such that the second argument is the adverb string, not the feminine form, which is easier to predict) - fix bug in adjVo paradigm - add two cases to mkAdjReg smart paradigm - update lexicon tbh, it is much more common to need to correct the adverbial form because it doesn't have the accents that the adjectival forms may have, so if there's a way of removing accents easily, that might be better. --- src/portuguese/LexiconPor.gf | 4 ++-- src/portuguese/MorphoPor.gf | 22 ++++++++++++---------- src/portuguese/ParadigmsPor.gf | 6 +++--- 3 files changed, 17 insertions(+), 15 deletions(-) diff --git a/src/portuguese/LexiconPor.gf b/src/portuguese/LexiconPor.gf index 6fbb22d45..c23939059 100644 --- a/src/portuguese/LexiconPor.gf +++ b/src/portuguese/LexiconPor.gf @@ -10,7 +10,7 @@ flags lin easy_A2V = mkA2V (mkA "fácil") dative genitive ; married_A2 = mkA2 (mkA "casado") dative ; - probable_AS = mkAS (mkA "provável" "provável" "prováveis" "prováveis" "provavelmente") ; + probable_AS = mkAS (mkA "provável" "provavelmente") ; fun_AV = mkAV (mkA "divertido") genitive ; -- A bad_A = prefA (mkA (mkA "mau") (mkA "pior")) ; @@ -58,7 +58,7 @@ lin white_A = compADeg (mkA "branco") ; wide_A = mkA "largo" ; -- extenso yellow_A = mkA "amarelo" ; - young_A = prefA (mkA "jovem" "jovem" "jovens" "jovens" "juvenilmente") ; + young_A = prefA (mkA "jovem" "juvenilmente") ; already_Adv = mkAdv "já" ; far_Adv = mkAdv "longe" ; ----? now_Adv = mkAdv "agora" ; diff --git a/src/portuguese/MorphoPor.gf b/src/portuguese/MorphoPor.gf index 54b31b10b..e4c206042 100644 --- a/src/portuguese/MorphoPor.gf +++ b/src/portuguese/MorphoPor.gf @@ -124,16 +124,16 @@ oper } } ; - mkAdj2N : (_,_: N) -> Str -> Adj = \mascN, femN, burramente -> - {s = table { - AF Masc n => mascN.s ! n ; - AF Fem n => femN.s ! n ; - AA => burramente - } + mkAdj2 : (_,_: Str) -> Adj ; + mkAdj2 aj av = let + adj = mkAdjReg aj + in { + s = table { + AF g n => adj.s ! AF g n ; + AA => av + } } ; - mkAdjN : N -> Str -> Adj = \n, burramente -> mkAdj2N n n burramente ; - -- Then the regular and invariant patterns. adjPreto : Str -> Adj = \preto -> @@ -174,7 +174,7 @@ oper "ã" => "a" } ; alemvo : Str = alem + v + "o" ; - in mkAdj alemão alemã (alemã + "s") (alemã + "es") (alemã + "amente") ; + in mkAdj alemão alemã (alemã + "s") (alemã + "es") (alemã + "mente") ; adjEuropeu : Str -> Adj = \europeu -> let europe = init europeu in mkAdj europeu (europe + "ia") (europeu + "s") (europe + "ias") @@ -183,11 +183,13 @@ oper mkAdjReg : Str -> Adj = \a -> case a of { pret + "o" => adjPreto a ; - anarquist + v@("e" | "a") => adjUtil (anarquist + v) (anarquist + v + "s") ; + anarquist + v@("e" | "a") => adjUtil a (a + "s") ; ouvido + "r" => adjOuvidor a (ouvido + "ra") ; chin + "ês" => adjFrances a ; europ + "eu" => adjEuropeu a ; alem + "ão" => adjVo a ; + provav + v@("e" | "i") + "l" => adjUtil a (provav + "eis") ; + jove + "m" => adjUtil a (jove + "ns") ; _ => adjUtil a (a + "s") } ; diff --git a/src/portuguese/ParadigmsPor.gf b/src/portuguese/ParadigmsPor.gf index 38de771b2..6066a16b5 100644 --- a/src/portuguese/ParadigmsPor.gf +++ b/src/portuguese/ParadigmsPor.gf @@ -203,9 +203,9 @@ oper regA a = compADeg {s = \\_ => (mkAdjReg a).s ; isPre = False ; lock_A = <>} ; - mk2A : (espanhol,espanhola : Str) -> A ; - mk2A a b = compADeg {s = \\_ => (mkAdj2N (mkN a) (mkN b) (b + "mente")).s ; isPre = False ; - lock_A = <>} ; + mk2A : (único,unicamente : Str) -> A ; + mk2A adj adv = compADeg {s = \\_ => (mkAdj2 adj adv).s ; isPre = False ; + lock_A = <>} ; mk5A : (preto,preta,pretos,pretas,pretamente : Str) -> A ; mk5A a b c d e = compADeg {s = \\_ => (mkAdj a b c d e).s ; From e30fa8933f508d363215e3367dd86174bbc27676 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Wed, 31 Oct 2018 08:43:48 +0100 Subject: [PATCH 067/172] Own definition of `die` for base < 4.8.0.0 --- Make.hs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Make.hs b/Make.hs index 2fccdaae0..b2a6784c0 100644 --- a/Make.hs +++ b/Make.hs @@ -6,7 +6,7 @@ import Data.List (find,isPrefixOf,isSuffixOf,(\\),unfoldr) import Data.Maybe (catMaybes) import System.IO (hPutStrLn,stderr) import System.IO.Error (catchIOError) -import System.Exit (ExitCode(..),die) +import System.Exit (ExitCode(..),exitFailure) import System.Environment (getArgs,lookupEnv) import System.Process (rawSystem) import System.FilePath (()) -- ,takeFileName,addExtension,dropExtension) @@ -447,3 +447,8 @@ parallel_ ms = sequence_ ms putErrLn :: String -> IO () putErrLn = hPutStrLn stderr + +die :: String -> IO a +die s = do + hPutStrLn stderr s + exitFailure From 62ea7c82a9084f26e76bc0e26544277cc50577c9 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Wed, 31 Oct 2018 09:13:52 +0100 Subject: [PATCH 068/172] If directory < 1.2.3.0 then don't set modification times on copy --- Make.hs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Make.hs b/Make.hs index b2a6784c0..19bfd8734 100644 --- a/Make.hs +++ b/Make.hs @@ -1,6 +1,6 @@ +{-# LANGUAGE CPP #-} + -- | Main build script for RGL --- There is no associated cabal file, but these dependencies are known: --- * directory >= 1.2.3.0 import Data.List (find,isPrefixOf,isSuffixOf,(\\),unfoldr) import Data.Maybe (catMaybes) @@ -10,7 +10,10 @@ import System.Exit (ExitCode(..),exitFailure) import System.Environment (getArgs,lookupEnv) import System.Process (rawSystem) import System.FilePath (()) -- ,takeFileName,addExtension,dropExtension) -import System.Directory (createDirectoryIfMissing,copyFile,getModificationTime,setModificationTime,getDirectoryContents,removeDirectoryRecursive,findFile) +import System.Directory (createDirectoryIfMissing,copyFile,getDirectoryContents,removeDirectoryRecursive,findFile) +#if MIN_VERSION_directory(1,2,3) +import System.Directory (getModificationTime,setModificationTime) +#endif import Control.Monad (when,unless) main :: IO () @@ -78,7 +81,9 @@ copyAll msg from to = do copyFileWithModificationTime :: FilePath -> FilePath -> IO () copyFileWithModificationTime source destination = do copyFile source destination +#if MIN_VERSION_directory(1,2,3) getModificationTime source >>= setModificationTime destination +#endif -- | Remove dist directory clean :: IO () From 5172586aa8f19793f8256a65b55b91ee09f67ee6 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Wed, 31 Oct 2018 11:10:05 +0100 Subject: [PATCH 069/172] Check GHC version instead of `directory` version Explanation by Thomas Hallgren: These MIN_VERSION macros are traditionally provided by Cabal, in dist/build/autogen/cabal_macros.h. It is only with ghc>=8.0 that ghc itself provides them, so with ghc<8, runghc Make.hs fails, as can be seen in the included message. Incidentally, ghc-8.0.1 also comes with directory-1.3, so I suggest using #if __GLASGOW_HASKELL__>=800 instead. Then Make.hs will work with older versions of ghc, and set the modification times if you are using ghc>=8.0. --- Make.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Make.hs b/Make.hs index 19bfd8734..2a40e3989 100644 --- a/Make.hs +++ b/Make.hs @@ -11,7 +11,7 @@ import System.Environment (getArgs,lookupEnv) import System.Process (rawSystem) import System.FilePath (()) -- ,takeFileName,addExtension,dropExtension) import System.Directory (createDirectoryIfMissing,copyFile,getDirectoryContents,removeDirectoryRecursive,findFile) -#if MIN_VERSION_directory(1,2,3) +#if __GLASGOW_HASKELL__>=800 import System.Directory (getModificationTime,setModificationTime) #endif import Control.Monad (when,unless) @@ -81,7 +81,7 @@ copyAll msg from to = do copyFileWithModificationTime :: FilePath -> FilePath -> IO () copyFileWithModificationTime source destination = do copyFile source destination -#if MIN_VERSION_directory(1,2,3) +#if __GLASGOW_HASKELL__>=800 getModificationTime source >>= setModificationTime destination #endif From 592a93005ae3b9f7d6fe82c8bcbe958f673cafe0 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 1 Nov 2018 10:00:05 +0100 Subject: [PATCH 070/172] (Som) Add the structure and placeholders for Somali RG --- src/api/CombinatorsSom.gf | 7 + src/api/ConstructorsSom.gf | 3 + src/api/SymbolicSom.gf | 5 + src/api/SyntaxSom.gf | 5 + src/api/TrySom.gf | 3 + src/somali/AdjectiveSom.gf | 56 +++ src/somali/AdverbSom.gf | 38 ++ src/somali/AllSom.gf | 6 + src/somali/AllSomAbs.gf | 6 + src/somali/CatSom.gf | 128 +++++++ src/somali/ConjunctionSom.gf | 116 +++++++ src/somali/ConstructionSom.gf | 119 +++++++ src/somali/ExtendSom.gf | 7 + src/somali/GrammarSom.gf | 20 ++ src/somali/IdiomSom.gf | 48 +++ src/somali/LangSom.gf | 4 + src/somali/LexiconSom.gf | 418 ++++++++++++++++++++++ src/somali/MissingSom.gf | 637 ++++++++++++++++++++++++++++++++++ src/somali/NounSom.gf | 224 ++++++++++++ src/somali/NumeralSom.gf | 117 +++++++ src/somali/ParadigmsSom.gf | 165 +++++++++ src/somali/ParamSom.gf | 137 ++++++++ src/somali/PhraseSom.gf | 31 ++ src/somali/QuestionSom.gf | 74 ++++ src/somali/RelativeSom.gf | 30 ++ src/somali/ResSom.gf | 438 +++++++++++++++++++++++ src/somali/SentenceSom.gf | 98 ++++++ src/somali/StructuralSom.gf | 195 +++++++++++ src/somali/SymbolSom.gf | 50 +++ src/somali/VerbSom.gf | 144 ++++++++ 30 files changed, 3329 insertions(+) create mode 100644 src/api/CombinatorsSom.gf create mode 100644 src/api/ConstructorsSom.gf create mode 100644 src/api/SymbolicSom.gf create mode 100644 src/api/SyntaxSom.gf create mode 100644 src/api/TrySom.gf create mode 100644 src/somali/AdjectiveSom.gf create mode 100644 src/somali/AdverbSom.gf create mode 100644 src/somali/AllSom.gf create mode 100644 src/somali/AllSomAbs.gf create mode 100644 src/somali/CatSom.gf create mode 100644 src/somali/ConjunctionSom.gf create mode 100644 src/somali/ConstructionSom.gf create mode 100644 src/somali/ExtendSom.gf create mode 100644 src/somali/GrammarSom.gf create mode 100644 src/somali/IdiomSom.gf create mode 100644 src/somali/LangSom.gf create mode 100644 src/somali/LexiconSom.gf create mode 100644 src/somali/MissingSom.gf create mode 100644 src/somali/NounSom.gf create mode 100644 src/somali/NumeralSom.gf create mode 100644 src/somali/ParadigmsSom.gf create mode 100644 src/somali/ParamSom.gf create mode 100644 src/somali/PhraseSom.gf create mode 100644 src/somali/QuestionSom.gf create mode 100644 src/somali/RelativeSom.gf create mode 100644 src/somali/ResSom.gf create mode 100644 src/somali/SentenceSom.gf create mode 100644 src/somali/StructuralSom.gf create mode 100644 src/somali/SymbolSom.gf create mode 100644 src/somali/VerbSom.gf diff --git a/src/api/CombinatorsSom.gf b/src/api/CombinatorsSom.gf new file mode 100644 index 000000000..3f56b13f8 --- /dev/null +++ b/src/api/CombinatorsSom.gf @@ -0,0 +1,7 @@ +--# -path=.:alltenses:prelude:src/somali + +resource CombinatorsSom = Combinators with + (Cat = CatSom), + (Structural = StructuralSom), + (Noun = NounSom), + (Constructors = ConstructorsSom) ** open MissingSom in {} ; diff --git a/src/api/ConstructorsSom.gf b/src/api/ConstructorsSom.gf new file mode 100644 index 000000000..c59899093 --- /dev/null +++ b/src/api/ConstructorsSom.gf @@ -0,0 +1,3 @@ +--# -path=.:alltenses:prelude:../somali + +resource ConstructorsSom = Constructors with (Grammar = GrammarSom) ** open MissingSom in {} ; diff --git a/src/api/SymbolicSom.gf b/src/api/SymbolicSom.gf new file mode 100644 index 000000000..7d8cc61b4 --- /dev/null +++ b/src/api/SymbolicSom.gf @@ -0,0 +1,5 @@ +--# -path=.:../somali:../common:../abstract:../prelude + +resource SymbolicSom = Symbolic with + (Symbol = SymbolSom), + (Grammar = GrammarSom) ** open MissingSom in {} ; diff --git a/src/api/SyntaxSom.gf b/src/api/SyntaxSom.gf new file mode 100644 index 000000000..9ee922db9 --- /dev/null +++ b/src/api/SyntaxSom.gf @@ -0,0 +1,5 @@ +--# -path=.:alltenses:prelude + +instance SyntaxSom of Syntax = + ConstructorsSom, CatSom, StructuralSom, CombinatorsSom ; + diff --git a/src/api/TrySom.gf b/src/api/TrySom.gf new file mode 100644 index 000000000..c549e5cff --- /dev/null +++ b/src/api/TrySom.gf @@ -0,0 +1,3 @@ +--# -path=.:../somali:../common:../abstract:../prelude + +resource TrySom = SyntaxSom, LexiconSom, ParadigmsSom - [mkAdv,mkAdN,mkDet,mkQuant,mkPConj] ; diff --git a/src/somali/AdjectiveSom.gf b/src/somali/AdjectiveSom.gf new file mode 100644 index 000000000..345d85fbf --- /dev/null +++ b/src/somali/AdjectiveSom.gf @@ -0,0 +1,56 @@ +concrete AdjectiveSom of Adjective = CatSom ** open ResSom, Prelude in { + + flags optimize=all_subs ; + + lin +-- The principal ways of forming an adjectival phrase are +-- positive, comparative, relational, reflexive-relational, and +-- elliptic-relational. + + -- : A -> AP ; + PositA a = a ; + + -- : A -> NP -> AP ; + -- ComparA a np = a ** { + -- s = \\agr => np.s ! Abs ++ "ka" ++ a.s ! AF Compar ; + -- } ; + + -- : A2 -> NP -> AP ; -- married to her + -- ComplA2 a2 np = a2 ** { } ; + + -- : A2 -> AP ; -- married to itself + -- ReflA2 a2 = a2 ** { } ; + + -- : A2 -> AP ; -- married + UseA2 = PositA ; + + -- : A -> AP ; -- warmer + --UseComparA a = a ** {} ; + + + -- : CAdv -> AP -> NP -> AP ; -- as cool as John + -- CAdvAP adv ap np = ap ** { } ; + +-- The superlative use is covered in $Ord$. + + -- : Ord -> AP ; -- warmest + -- AdjOrd ord = ord ** {} ; + +-- Sentence and question complements defined for all adjectival +-- phrases, although the semantics is only clear for some adjectives. + + -- : AP -> SC -> AP ; -- good that she is here + -- SentAP ap sc = ap ** { } ; + +-- An adjectival phrase can be modified by an *adadjective*, such as "very". + + -- : AdA -> AP -> AP ; + -- AdAP ada ap = ap ** { } ; + + +-- It can also be postmodified by an adverb, typically a prepositional phrase. + + -- : AP -> Adv -> AP ; -- warm by nature + -- AdvAP ap adv = ap ** {} ; + +} diff --git a/src/somali/AdverbSom.gf b/src/somali/AdverbSom.gf new file mode 100644 index 000000000..eb5cafa63 --- /dev/null +++ b/src/somali/AdverbSom.gf @@ -0,0 +1,38 @@ +concrete AdverbSom of Adverb = CatSom ** open ResSom, ParamSom, Prelude in { + +lin + + -- : A -> Adv ; + --PositAdvAdj adj = { } ; + + -- : CAdv -> A -> NP -> Adv ; -- more warmly than John + -- ComparAdvAdj cadv a np = { } ; + +-- ComparAdvAdjS : CAdv -> A -> S -> Adv ; -- more warmly than he runs + + -- : Prep -> NP -> Adv ; + PrepNP prep np = {s = prep.s ! np.a ; s2 = np.s ! Abs} ; ---- ? + +-- Adverbs can be modified by 'adadjectives', just like adjectives. + + --AdAdv : AdA -> Adv -> Adv ; -- very quickly + AdAdv ada adv = adv ** { s = ada.s ++ adv.s } ; +-- Like adverbs, adadjectives can be produced by adjectives. + + -- : A -> AdA ; -- extremely +-- PositAdAAdj a = { } ; +-- Subordinate clauses can function as adverbs. + + --: Subj -> S -> Adv ; +-- SubjS subj s = {} ; + +-- Comparison adverbs also work as numeral adverbs. + + --AdnCAdv : CAdv -> AdN ; -- less (than five) + --AdnCAdv cadv = {s = } ; +} ; + +{- +gt PrepNP in_Prep (DetCN (DetQuant DefArt ?) (UseN ?) | l -bind +gt PrepNP from_Prep (DetCN (DetQuant DefArt ?) (UseN ?)) | l -bind +-} diff --git a/src/somali/AllSom.gf b/src/somali/AllSom.gf new file mode 100644 index 000000000..21420df20 --- /dev/null +++ b/src/somali/AllSom.gf @@ -0,0 +1,6 @@ +--# -path=.:../abstract:../common:../prelude + +concrete AllSom of AllSomAbs = + LangSom, + ExtendSom + ** {} ; diff --git a/src/somali/AllSomAbs.gf b/src/somali/AllSomAbs.gf new file mode 100644 index 000000000..601d9c640 --- /dev/null +++ b/src/somali/AllSomAbs.gf @@ -0,0 +1,6 @@ +--# -path=.:../abstract:../common:prelude + +abstract AllSomAbs = + Lang, + Extend + ** {} ; diff --git a/src/somali/CatSom.gf b/src/somali/CatSom.gf new file mode 100644 index 000000000..7d25682b0 --- /dev/null +++ b/src/somali/CatSom.gf @@ -0,0 +1,128 @@ +concrete CatSom of Cat = CommonX - [Adv] ** open ResSom, Prelude in { + + flags optimize=all_subs ; + + lincat + +--2 Sentences and clauses +-- Constructed in SentenceSom, and also in IdiomSom + + S = ResSom.Sentence ; + QS = ResSom.Sentence ; + RS = { s : Agreement => Str } ; + -- relative sentence. Tense and polarity fixed, + -- but agreement may depend on the CN/NP it modifies. + + Cl = ResSom.Clause ; + ClSlash = ResSom.ClSlash ; + SSlash = ResSom.Sentence ; -- sentence missing NP; e.g. "she has looked at" + Imp = { s : Str } ; -- imperative e.g. "look at this" + +--2 Questions and interrogatives + +-- Constructed in QuestionSom. + + QCl = ResSom.Clause ; + IP = ResSom.NounPhrase ; + IComp = { s : Str } ; -- interrogative complement of copula e.g. "where" + IDet = ResSom.Determiner ; -- interrogative determiner e.g. "how many" + IQuant = ResSom.Quant ; -- interrogative quantifier e.g. "which" + + + + +--2 Relative clauses and pronouns + +-- Constructed in RelativeSom. + + RCl = ResSom.RClause ; + RP = { s : Str } ; + + + +--2 Verb phrases + +-- Constructed in VerbSom. + + VP = ResSom.VerbPhrase ; + VPSlash = ResSom.VPSlash ; + Comp = ResSom.Complement ; + + +--2 Adjectival phrases + +-- Constructed in AdjectiveSom. + + AP = ResSom.AdjPhrase ; + + +--2 Nouns and noun phrases + +-- Constructed in NounSom. +-- Many atomic noun phrases e.g. "everybody" +-- are constructed in StructuralSom. +-- The determiner structure is +-- ``` Predet (QuantSg | QuantPl Num) Ord +-- as defined in NounSom. + + CN = ResSom.CNoun ; + NP = ResSom.NounPhrase ; + Pron = ResSom.Pronoun ; --Pronouns need enough info to turn it into NP or Quant. + Det = ResSom.Determiner ; + Predet = {s : Str} ; + Quant = ResSom.Quant ; + Num = { s : Str ; n : Number ; isNum : Bool } ; + Card, Ord = { s : Str ; n : Number } ; + DAP = ResSom.Determiner ; + + +--2 Numerals + +-- Constructed in NumeralSom. + + Numeral = { s : Str ; n : Number } ; + Digits = { s : CardOrd => Str ; n : Number } ; + + + +--2 Structural words + +-- Constructed in StructuralSom. + Conj = { s1,s2 : Str ; n : Number } ; + Subj = { s : Str ; isPre : Bool } ; --ba+dut vs. dut+en + Prep = ResSom.Prep ; + + + +--2 Words of open classes + +-- These are constructed in LexiconSom and in +-- additional lexicon modules. + + V, + V2, + V3, + VV, -- verb-phrase-complement verb e.g. "want" + VS, -- sentence-complement verb e.g. "claim" + VQ, -- question-complement verb e.g. "wonder" + VA, -- adjective-complement verb e.g. "look" + V2V, -- verb with NP and V complement e.g. "cause" + V2S, -- verb with NP and S complement e.g. "tell" + V2Q, -- verb with NP and Q complement e.g. "ask" + V2A = ResSom.Verb ; -- verb with NP and AP complement e.g. "paint" + + A = ResSom.Adjective ; + A2 = ResSom.Adjective2 ; + + N = ResSom.Noun ; + N2 = ResSom.Noun2 ; + N3 = ResSom.Noun3 ; + PN = ResSom.PNoun ; + + Adv = ResSom.Adverb ; + +linref + -- Cl = linCl ; + VP = linVP ; + CN = linCN ; +} diff --git a/src/somali/ConjunctionSom.gf b/src/somali/ConjunctionSom.gf new file mode 100644 index 000000000..5038ed4e3 --- /dev/null +++ b/src/somali/ConjunctionSom.gf @@ -0,0 +1,116 @@ +concrete ConjunctionSom of Conjunction = + CatSom ** open ResSom, Coordination, Prelude in { + + flags optimize=all_subs ; + + {- Conjunction for category X needs four things: + lincat [X] + lin BaseX + lin ConsX + lin ConjX + + For example, if X is defined as + + lincat X = {s : Number => Str ; g : Gender} ; + + then [X] will split its s field into two, and retain its other fields as is: + + lincat [X] = {s1,s2 : Number => Str ; g : Gender} ; + + Let us look at a simple case: Adv is of type {s : Str} + Then [Adv] is {s1,s2 : Str}. + BaseAdv, ConsAdv and ConjAdv can all use functions defined in prelude/Coordination: + + BaseAdv = twoSS ; + ConsAdv = consrSS comma ; + ConjAdv = conjunctSS ; + + --} + + +-- Adverb and other simple {s : Str} types. +lincat + [Adv],[AdV],[IAdv] = {s1,s2 : Str} ; + +lin + BaseAdv, BaseAdV, BaseIAdv = twoSS ; + ConsAdv, ConsAdV, ConsIAdv = consrSS comma ; + ConjAdv, ConjAdV, ConjIAdv = conjunctDistrSS ; + +{- +--RS depends on agreement, otherwise exactly like previous. +lincat + [RS] = {s1,s2 : Agr => Str } ; + +lin + BaseRS x y = twoTable Agr x y ; + ConsRS xs x = consrTable Agr comma xs x ; + ConjRS co xs = conjunctDistrTable Agr co xs ; + + +lincat + [S] = {} ; + +lin + BaseS x y = y ** { } ; + ConsS x xs = + xs ** { } ; + ConjS co xs = {} ; + +lincat + [AP] = {} ; + +lin + BaseAP x y = twoTable Agr x y ** y ; --choose all the other fields from second argument + ConsAP as a = consrTable Agr comma as a ** as ; + ConjAP co as = conjunctDistrTable Agr co as ** as ; + +lincat + [CN] = { } ; + +lin + BaseCN = {} ; + ConsCN = {} ; + ConjCN co cs = conjunctDistrTable Agr co cs ** cs ; + +lincat + [DAP] = Determiner ** { pref2 : Str } ; + +lin + BaseDAP x y = x ** { pref2 = y.pref } ; + ConsDAP xs x = xs ** { pref2 = x.pref } ; + ConjDet conj xs = xs ** { pref = conj.s1 ++ xs.pref ++ conj.s2 ++ xs.pref2 } ; + + +-- Noun phrases +lincat + [NP] = { s1,s2 : Case => Str } ** NPLight ; + +lin + BaseNP x y = twoTable Case x y ** consNP x y ; + ConsNP xs x = consrTable Case comma xs x ** consNP xs x ; + ConjNP conj xs = conjunctNPTable conj xs ** conjNP xs conj ; + +oper + + --NP without the s field; just to avoid copypaste and make things easier to change + NPLight : Type = { } ; + + consNP : NPLight -> NPLight -> NPLight = \x,y -> + x ** { agr = conjAgr x.agr (getNum y.agr) } ; + + conjNP : NPLight -> Conj -> NPLight = \xs,conj -> + xs ** { agr = conjAgr xs.agr conj.nbr } ; + + -- Like conjunctTable from prelude/Coordination.gf, + -- but forces the first argument into absolutive. + conjunctNPTable : Conj -> ListTable Case -> {s : Case => Str} = \co,xs -> + { s = table { cas => co.s1 ++ xs.s1 ! Abs ++ co.s2 ++ xs.s2 ! cas } } ; + + conjAgr : Agr -> Number -> Agr = \a,n -> + case n of { Pl => plAgr a ; _ => a } ; + + conjNbr : Number -> Number -> Number = \n,m -> + case n of { Pl => Pl ; _ => m } ; +-} +} diff --git a/src/somali/ConstructionSom.gf b/src/somali/ConstructionSom.gf new file mode 100644 index 000000000..1b0baf1c7 --- /dev/null +++ b/src/somali/ConstructionSom.gf @@ -0,0 +1,119 @@ +concrete ConstructionSom of Construction = CatSom ** open ParadigmsSom in { + +lincat + Timeunit = N ; + Weekday = N ; + Monthday = NP ; + Month = N ; + Year = NP ; +{- +lin + + timeunitAdv n time = + let n_card : Card = n ; + n_hours_NP : NP = mkNP n_card time ; + in SyntaxSom.mkAdv for_Prep n_hours_NP | mkAdv (n_hours_NP.s ! R.npNom) ; + + weekdayPunctualAdv w = ; -- on Sunday + weekdayHabitualAdv w = ; -- on Sundays + weekdayNextAdv w = -- next Sunday + weekdayLastAdv w = -- last Sunday + + monthAdv m = mkAdv in_Prep (mkNP m) ; + yearAdv y = mkAdv in_Prep y ; + dayMonthAdv d m = ; -- on 17 May + monthYearAdv m y = ; -- in May 2012 + dayMonthYearAdv d m y = ; -- on 17 May 2013 + + intYear = symb ; + intMonthday = symb ; + +lincat Language = N ; + +lin InLanguage l = mkAdv ???_Prep (mkNP l) ; + +lin + weekdayN w = w ; + monthN m = m ; + + weekdayPN w = mkPN w ; + monthPN m = mkPN m ; + + languageCN l = mkCN l ; + languageNP l = mkNP l ; + + +oper mkLanguage : Str -> N = \s -> mkN s ; + +---------------------------------------------- +---- lexicon of special names + +lin second_Timeunit = mkN "second" ; +lin minute_Timeunit = mkN "minute" ; +lin hour_Timeunit = mkN "hour" ; +lin day_Timeunit = mkN "day" ; +lin week_Timeunit = mkN "week" ; +lin month_Timeunit = mkN "month" ; +lin year_Timeunit = mkN "year" ; + +lin monday_Weekday = mkN "Monday" ; +lin tuesday_Weekday = mkN "Tuesday" ; +lin wednesday_Weekday = mkN "Wednesday" ; +lin thursday_Weekday = mkN "Thursday" ; +lin friday_Weekday = mkN "Friday" ; +lin saturday_Weekday = mkN "Saturday" ; +lin sunday_Weekday = mkN "Sunday" ; + +lin january_Month = mkN "January" ; +lin february_Month = mkN "February" ; +lin march_Month = mkN "March" ; +lin april_Month = mkN "April" ; +lin may_Month = mkN "May" ; +lin june_Month = mkN "June" ; +lin july_Month = mkN "July" ; +lin august_Month = mkN "August" ; +lin september_Month = mkN "September" ; +lin october_Month = mkN "October" ; +lin november_Month = mkN "November" ; +lin december_Month = mkN "December" ; + +lin afrikaans_Language = mkLanguage "Afrikaans" ; +lin amharic_Language = mkLanguage "Amharic" ; +lin arabic_Language = mkLanguage "Arabic" ; +lin bulgarian_Language = mkLanguage "Bulgarian" ; +lin catalan_Language = mkLanguage "Catalan" ; +lin chinese_Language = mkLanguage "Chinese" ; +lin danish_Language = mkLanguage "Danish" ; +lin dutch_Language = mkLanguage "Dutch" ; +lin english_Language = mkLanguage "Euslish" ; +lin estonian_Language = mkLanguage "Estonian" ; +lin finnish_Language = mkLanguage "Finnish" ; +lin french_Language = mkLanguage "French" ; +lin german_Language = mkLanguage "German" ; +lin greek_Language = mkLanguage "Greek" ; +lin hebrew_Language = mkLanguage "Hebrew" ; +lin hindi_Language = mkLanguage "Hindi" ; +lin japanese_Language = mkLanguage "Japanese" ; +lin italian_Language = mkLanguage "Italian" ; +lin latin_Language = mkLanguage "Latin" ; +lin latvian_Language = mkLanguage "Latvian" ; +lin maltese_Language = mkLanguage "Maltese" ; +lin nepali_Language = mkLanguage "Nepali" ; +lin norwegian_Language = mkLanguage "Norwegian" ; +lin persian_Language = mkLanguage "Persian" ; +lin polish_Language = mkLanguage "Polish" ; +lin punjabi_Language = mkLanguage "Punjabi" ; +lin romanian_Language = mkLanguage "Romanian" ; +lin russian_Language = mkLanguage "Russian" ; +lin sindhi_Language = mkLanguage "Sindhi" ; +lin spanish_Language = mkLanguage "Spanish" ; +lin swahili_Language = mkLanguage "Swahili" ; +lin swedish_Language = mkLanguage "Swedish" ; +lin thai_Language = mkLanguage "Thai" ; +lin turkish_Language = mkLanguage "Turkish" ; +lin urdu_Language = mkLanguage "Urdu" ; + +—} +} +-} +} diff --git a/src/somali/ExtendSom.gf b/src/somali/ExtendSom.gf new file mode 100644 index 000000000..a73a83a6e --- /dev/null +++ b/src/somali/ExtendSom.gf @@ -0,0 +1,7 @@ +--# -path=.:../common:../abstract + +concrete ExtendSom of Extend = {} ; + -- CatSom ** ExtendFunctor + -- with (Grammar=GrammarSom) + -- ** open Prelude, ResSom in { + -- } ; diff --git a/src/somali/GrammarSom.gf b/src/somali/GrammarSom.gf new file mode 100644 index 000000000..1daafc194 --- /dev/null +++ b/src/somali/GrammarSom.gf @@ -0,0 +1,20 @@ +concrete GrammarSom of Grammar = + NounSom, + VerbSom, + AdjectiveSom, + AdverbSom, + NumeralSom, + SentenceSom, + QuestionSom, + RelativeSom, + ConjunctionSom, + PhraseSom, + TextX - [Adv], + StructuralSom, + IdiomSom, + TenseX - [Adv] + ** { + +flags startcat = Phr ; unlexer = text ; lexer = text ; + +} ; diff --git a/src/somali/IdiomSom.gf b/src/somali/IdiomSom.gf new file mode 100644 index 000000000..726568e98 --- /dev/null +++ b/src/somali/IdiomSom.gf @@ -0,0 +1,48 @@ + +--1 Idiom: Idiomatic Expressions + +concrete IdiomSom of Idiom = CatSom ** open Prelude, ResSom, VerbSom in { + +-- This module defines constructions that are formed in fixed ways, +-- often different even in closely related languages. + + --lin + + -- : VP -> Cl ; -- it is hot + --ImpersCl = ; + + -- : VP -> Cl ; -- one sleeps + --GenericCl = ; +{- + CleftNP : NP -> RS -> Cl ; -- it is I who did it + CleftAdv : Adv -> S -> Cl ; -- it is here she slept + -} + -- : NP -> Cl ; -- there is a house + -- ExistNP np = + -- let vp = UseComp (CompNP np) + -- in ; + +{- ExistIP : IP -> QCl ; -- which houses are there + +-- 7/12/2012 generalizations of these + + ExistNPAdv : NP -> Adv -> Cl ; -- there is a house in Paris + ExistIPAdv : IP -> Adv -> QCl ; -- which houses are there in Paris +-} + -- : VP -> VP ; + --ProgrVP vp = vp ** { } ; + + -- : VP -> Utt ; -- let's go + --ImpPl1 vp = { } ; +{- + + ImpP3 : NP -> VP -> Utt ; -- let John walk + +-- 3/12/2013 non-reflexive uses of "self" + + SelfAdvVP : VP -> VP ; -- is at home himself + SelfAdVVP : VP -> VP ; -- is himself at home + SelfNP : NP -> NP ; -- the president himself (is at home) +-} + +} diff --git a/src/somali/LangSom.gf b/src/somali/LangSom.gf new file mode 100644 index 000000000..fb9ebeb4b --- /dev/null +++ b/src/somali/LangSom.gf @@ -0,0 +1,4 @@ +concrete LangSom of Lang = + GrammarSom, + LexiconSom, + ConstructionSom ; diff --git a/src/somali/LexiconSom.gf b/src/somali/LexiconSom.gf new file mode 100644 index 000000000..6f4739429 --- /dev/null +++ b/src/somali/LexiconSom.gf @@ -0,0 +1,418 @@ +concrete LexiconSom of Lexicon = CatSom ** + open ParadigmsSom in { + +---- +-- A + +-- lin add_V3 = +-- lin airplane_N = mkN "" ; +-- lin alas_Interj = mkInterj "" ; +-- lin already_Adv = mkA "" ; +lin animal_N = mkN "xayawaan" ; +-- lin answer_V2S = mkV2 "" ; +-- lin apartment_N = mkN "" ; +-- lin apple_N = mkN "" ; +-- lin art_N = mkN "" ; +-- lin ashes_N = mkN "" ; +-- lin ask_V2Q = mkV2 "" ; + +---- +-- B + +-- lin baby_N = mkN "" ; +-- lin back_N = mkN "" ; +-- lin bad_A = mkA "" ; +-- lin bank_N = mkN "" ; +-- lin bark_N = mkN "" ; +-- lin beautiful_A = mkA "" ; +-- lin become_VA = mkVA "" ; +-- lin beer_N = mkN "" ; +-- lin beg_V2V = mkV2 "" ; +-- lin belly_N = mkN "" ; +lin big_A = mkA "weyn" ; +-- lin bike_N = mkN "" ; +lin bird_N = mkN "shimbir" fem ; +-- lin bite_V2 = mkV2 "" ; +-- lin black_A = mkA "" ; +-- lin blood_N = mkN "" ; +-- lin blow_V = mkV "" ; +-- lin blue_A = mkA "" ; +-- lin boat_N = mkN "" ; +-- lin bone_N = mkN "" ; +-- lin boot_N = mkN "" ; +-- lin boss_N = mkN "" ; +lin book_N = mkN "buug" ; -- TODO: irregular plural +lin boy_N = mkN "wiil" ; +lin bread_N = mkN "rooti" ; --masc/fem +-- lin break_V2 = mkV2 "" ; +-- lin breast_N = mkN "" ; +-- lin breathe_V = mkV "" ; +-- lin broad_A = mkA "" ; +-- lin brother_N2 = mkN "" ; +-- lin brown_A = mkA "" ; +-- lin burn_V = mkV "" ; +-- lin butter_N = mkN "" ; +-- lin buy_V2 = mkV2 "" ; + +---- +-- C + +-- lin camera_N = mkN "" ; +-- lin cap_N = mkN "" ; +lin car_N = mkN "baabuur" masc ; +-- lin carpet_N = mkN "" ; +lin cat_N = mkN "bisad" ; +-- lin ceiling_N = mkN "" ; +-- lin chair_N = mkN "" ; +-- lin cheese_N = mkN "" ; +-- lin child_N = mkN "" ; +-- lin church_N = mkN "" ; +lin city_N = mkN "magaalo" ; +-- lin clean_A = mkA "" ; +-- lin clever_A = mkA "" ; +-- lin close_V2 = mkV2 "" ; +-- lin cloud_N = mkN "" ; +-- lin coat_N = mkN "" ; +-- lin cold_A = mkA "" ; +-- lin come_V = etorri_V ; +-- lin computer_N = mkN "" ; +-- lin correct_A = mkA "" ; +-- lin count_V2 = mkV2 "" ; +-- lin country_N = mkN "" ; +-- lin cousin_N = mkN "" ; +-- lin cow_N = mkN "" ; +-- lin cut_V2 = mkV2 "" ; +-- +-- ---- +-- -- D +-- +-- lin day_N = mkN "" ; +-- lin die_V = mkV "" ; +-- lin dig_V = mkV "" ; +-- lin dirty_A = mkA "" ; +-- lin distance_N3 = mkN "" ; +-- lin do_V2 = lin V2 egin_V ; +-- lin doctor_N = mkN "" ; +-- lin dog_N = mkN "" ; +-- lin door_N = mkN "" ; +-- lin drink_V2 = mkV2 "" ; +-- lin dry_A = mkA "" ; +-- lin dull_A = mkA "" ; +-- lin dust_N = mkN "" ; +-- +-- ---- +-- -- E +-- +-- lin ear_N = mkN "" ; +-- lin earth_N = mkN "" ; +-- lin eat_V2 = mkV2 "" ; +-- lin egg_N = mkN "" ; +-- lin empty_A = mkA "" ; +-- lin enemy_N = mkN "" ; +-- lin eye_N = mkN "" ; +-- +-- ---- +-- -- F +-- +-- lin factory_N = mkN "" ; +-- lin fall_V = mkV "" ; +-- lin far_Adv = mkA "" ; +-- lin fat_N = mkN "" ; +-- lin father_N2 = mkN "" ; +-- lin fear_V2 = mkV2 "" ; +-- lin fear_VS = mkVS "" ; +-- lin feather_N = mkN "" ; +-- lin fight_V2 = mkV2 "" ; +-- lin find_V2 = mkV2 "" ; +-- lin fingernail_N = mkN "" ; +-- lin fire_N = mkN "" ; +-- lin fish_N = mkN "" ; +-- lin float_V = mkV "" ; +-- lin floor_N = mkN "" ; +-- lin flow_V = mkV "" ; +-- lin flower_N = mkN "" ; +-- lin fly_V = mkV "" ; +-- lin fog_N = mkN "" ; +-- lin foot_N = mkN "" ; +-- lin forest_N = mkN "" ; +-- lin forget_V2 = mkV2 "" ; +-- lin freeze_V = mkV "" ; +-- lin fridge_N = mkN "" ; +-- lin friend_N = mkN "" ; +-- lin fruit_N = mkN "" ; +-- lin full_A = mkA "" ; +-- --lin fun_AV + +---- +-- G + +-- lin garden_N = mkN "" ; +lin girl_N = mkN "gabadh" "gabdho" fem ; +-- lin give_V3 = mkV3 "" ; +-- lin glove_N = mkN "" ; +-- lin go_V = joan_V ; +-- lin gold_N = mkN "" ; +-- lin good_A = mkA "" ; +-- lin grammar_N = mkN "" ; +-- lin grass_N = mkN "" ; +-- lin green_A = mkA "" ; + +---- +-- H + +-- lin hair_N = mkN "" ; +-- lin hand_N = mkN "" ; +-- lin harbour_N = mkN "" ; +-- lin hat_N = mkN "" ; +-- lin hate_V2 = mkV2 "" ; +-- lin head_N = mkN "" ; +-- lin hear_V2 = mkV2 "" ; +-- lin heart_N = mkN "" ; +-- lin heavy_A = mkA "" ; +-- lin hill_N = mkN "" ; +-- lin hit_V2 = mkV2 "" ; +-- lin hold_V2 = mkV2 "" ; +-- lin hope_VS = mkV "" ; +-- lin horn_N = mkN "" ; +-- lin horse_N = mkN "" ; +-- lin hot_A = mkA "" ; +lin house_N = mkN "aqal" ; +-- lin hunt_V2 = mkV2 "" ; +-- lin husband_N = mkN "" ; + +-------- +-- I - K + +-- lin ice_N = mkN "" ; +-- lin industry_N = mkN "" ; +-- lin iron_N = mkN "" ; +-- lin john_PN = mkPN "Jon" ; +-- lin jump_V = mkV "" ; +-- lin kill_V2 = mkV2 "" ; +-- lin king_N = mkN "" ; +-- lin knee_N = mkN "" ; +-- lin know_V2 = mkV2 "" ; +-- lin know_VQ = mkVQ "" ; +-- lin know_VS = mkVS "" ; + + +---- +-- L + +-- lin lake_N = mkN "" ; +-- lin lamp_N = mkN "" ; +lin language_N = mkN "af" ; +-- lin laugh_V = mkV "" ; +-- lin leaf_N = mkN "" ; +-- lin learn_V2 = mkV2 "" ; +-- lin leather_N = mkN "" ; +-- lin leave_V2 = mkV2 "" ; +-- lin leg_N = mkN "" ; +-- lin lie_V = mkV "" ; +-- lin like_V2 = mkV2 "" ; +-- lin listen_V2 = mkV2 "" ; +-- lin live_V = mkV "" ; +-- lin liver_N = mkN "" ; +-- lin long_A = mkA "" ; +-- lin lose_V2 = mkV2 "" ; +-- lin louse_N = mkN "" ; +-- lin love_N = mkN "" ; +-- lin love_V2 = mkV2 "" ; + +---- +-- M + +lin man_N = mkN "nin" ; +-- lin married_A2 = mkA "" ; +-- lin meat_N = mkN "" ; +-- lin milk_N = mkN "" ; +-- lin moon_N = mkN "" ; +-- lin mother_N2 = mkN "" ; +-- lin mountain_N = mkN "" ; +-- lin mouth_N = mkN "" ; +-- lin music_N = mkN "" ; + +---- +-- N + +-- lin name_N = mkN "" ; +-- lin narrow_A = mkA "" ; +-- lin near_A = mkA "" ; +-- lin neck_N = mkN "" ; +-- lin new_A = mkA "" ; +-- lin newspaper_N = mkN "" ; +-- lin night_N = mkN "" ; +-- lin nose_N = mkN "" ; +-- lin now_Adv = mkA "" ; +-- lin number_N = mkN "" ; +-- +-- -------- +-- -- O - P +-- +-- +-- lin oil_N = mkN "" ; +-- lin old_A = mkA "" ; +-- lin open_V2 = mkV2 "" ; +-- lin paint_V2A = mkV2 "" ; +-- lin paper_N = mkN "" ; +-- lin paris_PN = mkPN "Paris" ; +-- lin peace_N = mkN "" ; +-- lin pen_N = mkN "" ; +-- lin person_N = mkN "" ; +-- lin planet_N = mkN "" ; +-- lin plastic_N = mkN "" ; +-- lin play_V = mkV "" ; +-- lin policeman_N = mkN "" ; +-- lin priest_N = mkN "" ; +-- lin pull_V2 = mkV2 "" ; +-- lin push_V2 = mkV2 "" ; +-- lin put_V2 = mkV2 "" ; +-- +-- -------- +-- -- Q - R +-- +-- lin queen_N = mkN "" ; +-- lin question_N = mkN "" ; +-- lin radio_N = mkN "" ; +-- lin rain_N = mkN "" ; +-- lin rain_V0 = mkV "" ; +lin read_V2 = mkV2 "akhri" ; +-- lin ready_A = mkA "" ; +-- lin reason_N = mkN "" ; +-- lin red_A = mkA "" ; +-- lin religion_N = mkN "" ; +-- lin restaurant_N = mkN "" ; +-- lin river_N = mkN "" ; +-- lin road_N = mkN "" ; +-- lin rock_N = mkN "" ; +-- lin roof_N = mkN "" ; +-- lin root_N = mkN "" ; +-- lin rope_N = mkN "" ; +-- lin rotten_A = mkA "" ; +-- lin round_A = mkA "" ; +-- lin rub_V2 = mkV2 "" ; +-- lin rubber_N = mkN "" ; +-- lin rule_N = mkN "" ; +-- lin run_V = mkV "" ; +-- +-- ---- +-- -- S +-- +-- lin salt_N = mkN "" ; +-- lin sand_N = mkN "" ; +-- lin say_VS = mkVS "" ; +-- lin school_N = mkN "" ; +-- lin science_N = mkN "" ; +-- lin scratch_V2 = mkV2 "" ; +-- lin sea_N = mkN "" ; +lin see_V2 = mkV2 "ark" ; +-- lin seed_N = mkN "" ; +-- lin seek_V2 = mkV2 "" ; +-- lin sell_V3 = mkV3 "" ; +-- lin send_V3 = mkV3 "" ; +-- lin sew_V = mkV "" ; +-- lin sharp_A = mkA "" ; +-- lin sheep_N = mkN "" ; +-- lin ship_N = mkN "" ; +-- lin shirt_N = mkN "" ; +-- lin shoe_N = mkN "" ; +-- lin shop_N = mkN "" ; +-- lin short_A = mkA "" ; +-- lin silver_N = mkN "" ; +-- lin sing_V = mkV "" ; +-- lin sister_N = mkN "" ; +-- lin sit_V = mkV "" ; +-- lin skin_N = mkN "" ; +-- lin sky_N = mkN "" ; +-- lin sleep_V = mkV "" ; +lin small_A = mkA "yar" ; +-- lin smell_V = mkV "" ; +-- lin smoke_N = mkN "" ; +-- lin smooth_A = mkA "" ; +-- lin snake_N = mkN "" ; +-- lin snow_N = mkN "" ; +-- lin sock_N = mkN "" ; +-- lin song_N = mkN "" ; +-- lin speak_V2 = mkV2 "" ; +-- lin spit_V = mkV "" ; +-- lin split_V2 = mkV2 "" ; +-- lin squeeze_V2 = mkV2 "" ; +-- lin stab_V2 = mkV2 "" ; +-- lin stand_V = mkV "" ; +-- lin star_N = mkN "" ; +-- lin steel_N = mkN "" ; +-- lin stick_N = mkN "" ; +-- lin stone_N = mkN "" ; +-- lin stop_V = mkV "" ; +-- lin stove_N = mkN "" ; +-- lin straight_A = mkA "" ; +-- lin student_N = mkN "" ; +-- lin stupid_A = mkA "" ; +-- lin suck_V2 = mkV2 "" ; +-- lin sun_N = mkN "" ; +-- lin swell_V = mkV "" ; +-- lin swim_V = mkV "" ; + +---- +-- T + + +-- lin table_N = mkN "" ; +-- lin tail_N = mkN "" ; +-- lin talk_V3 = mkV3 "" ; +lin teach_V2 = mkV2 "baray" ku ; -- I suppose this creates progressive forms? TODO implement all forms of verbs properly. +-- lin teacher_N = mkN "" ; +-- lin television_N = mkN "" ; +-- lin thick_A = mkA "" ; +-- lin thin_A = mkA "" ; +-- lin think_V = mkV "" ; +-- lin throw_V2 = mkV2 "" ; +-- lin tie_V2 = mkV2 "" ; +-- lin today_Adv = mkA "" ; +-- lin tongue_N = mkN "" ; +-- lin tooth_N = mkN "" ; +-- lin train_N = mkN "" ; +-- lin travel_V = mkV "" ; +-- lin tree_N = mkN "" ; +-- lin turn_V = mkV "" ; + +-------- +-- U - V + +-- lin ugly_A = mkA "" ; +-- lin uncertain_A = mkA "" ; +-- lin understand_V2 = mkV2 "" ; +-- lin university_N = mkN "" ; +-- lin village_N = mkN "" ; +-- lin vomit_V = mkV2 "" ; + +-------- +-- W - Y + +-- lin wait_V2 = mkV2 "" ; +-- lin walk_V = mkV "" ; +-- lin war_N = mkN "" ; +-- lin warm_A = mkA "" ; +-- lin wash_V2 = mkV2 "" ; +-- lin watch_V2 = mkV2 "" ; +-- lin water_N = mkN "" ; +-- lin wet_A = mkA "" ; +-- lin white_A = mkA "" ; +-- lin wide_A = mkA "" ; +-- lin wife_N = mkN "" ; +-- lin win_V2 = mkV2 "" ; +-- lin wind_N = mkN "" ; +-- lin window_N = mkN "" ; +-- lin wine_N = mkN "" ; +-- lin wing_N = mkN "" ; +-- lin wipe_V2 = mkV2 "" ; +lin woman_N = mkN "naag" fem ; +-- lin wonder_VQ = mkVQ "" ; +-- lin wood_N = mkN "" ; +-- lin worm_N = mkN "" ; +-- lin write_V2 = mkV2 "" ; +-- lin year_N = mkN "" ; +-- lin yellow_A = mkA "" ; +-- lin young_A = mkA "" ; + +} diff --git a/src/somali/MissingSom.gf b/src/somali/MissingSom.gf new file mode 100644 index 000000000..bb937ae24 --- /dev/null +++ b/src/somali/MissingSom.gf @@ -0,0 +1,637 @@ +resource MissingSom = open GrammarSom, SymbolSom, Prelude in { + +-- temporary definitions to enable the compilation of RGL API +oper AdAP : AdA -> AP -> AP = notYet "AdAP" ; +oper AdAdv : AdA -> Adv -> Adv = notYet "AdAdv" ; +oper AdNum : AdN -> Card -> Card = notYet "AdNum" ; +oper AdVVP : AdV -> VP -> VP = notYet "AdVVP" ; +oper AdVVPSlash : AdV -> VPSlash -> VPSlash = notYet "AdVVPSlash" ; +oper AddAdvQVP : QVP -> IAdv -> QVP = notYet "AddAdvQVP" ; +oper AdjDAP : DAP -> AP -> DAP = notYet "AdjDAP" ; +oper AdjOrd : Ord -> AP = notYet "AdjOrd" ; +oper AdnCAdv : CAdv -> AdN = notYet "AdnCAdv" ; +oper AdvAP : AP -> Adv -> AP = notYet "AdvAP" ; +oper AdvCN : CN -> Adv -> CN = notYet "AdvCN" ; +oper AdvIAdv : IAdv -> Adv -> IAdv = notYet "AdvIAdv" ; +oper AdvIP : IP -> Adv -> IP = notYet "AdvIP" ; +oper AdvNP : NP -> Adv -> NP = notYet "AdvNP" ; +oper AdvQVP : VP -> IAdv -> QVP = notYet "AdvQVP" ; +oper AdvS : Adv -> S -> S = notYet "AdvS" ; +oper AdvSlash : ClSlash -> Adv -> ClSlash = notYet "AdvSlash" ; +oper AdvVP : VP -> Adv -> VP = notYet "AdvVP" ; +oper AdvVPSlash : VPSlash -> Adv -> VPSlash = notYet "AdvVPSlash" ; +oper ApposCN : CN -> NP -> CN = notYet "ApposCN" ; +oper BaseAP : AP -> AP -> ListAP = notYet "BaseAP" ; +oper BaseAdV : AdV -> AdV -> ListAdV = notYet "BaseAdV" ; +oper BaseAdv : Adv -> Adv -> ListAdv = notYet "BaseAdv" ; +oper BaseCN : CN -> CN -> ListCN = notYet "BaseCN" ; +oper BaseIAdv : IAdv -> IAdv -> ListIAdv = notYet "BaseIAdv" ; +oper BaseNP : NP -> NP -> ListNP = notYet "BaseNP" ; +oper BaseRS : RS -> RS -> ListRS = notYet "BaseRS" ; +oper BaseS : S -> S -> ListS = notYet "BaseS" ; +oper CAdvAP : CAdv -> AP -> NP -> AP = notYet "CAdvAP" ; +oper CleftAdv : Adv -> S -> Cl = notYet "CleftAdv" ; +oper CleftNP : NP -> RS -> Cl = notYet "CleftNP" ; +oper CompAP : AP -> Comp = notYet "CompAP" ; +oper CompAdv : Adv -> Comp = notYet "CompAdv" ; +oper CompCN : CN -> Comp = notYet "CompCN" ; +oper CompIAdv : IAdv -> IComp = notYet "CompIAdv" ; +oper CompIP : IP -> IComp = notYet "CompIP" ; +oper CompNP : NP -> Comp = notYet "CompNP" ; +oper ComparA : A -> NP -> AP = notYet "ComparA" ; +oper ComparAdvAdj : CAdv -> A -> NP -> Adv = notYet "ComparAdvAdj" ; +oper ComparAdvAdjS : CAdv -> A -> S -> Adv = notYet "ComparAdvAdjS" ; +oper ComplA2 : A2 -> NP -> AP = notYet "ComplA2" ; +oper ComplN2 : N2 -> NP -> CN = notYet "ComplN2" ; +oper ComplN3 : N3 -> NP -> N2 = notYet "ComplN3" ; +oper ComplSlash : VPSlash -> NP -> VP = notYet "ComplSlash" ; +oper ComplSlashIP : VPSlash -> IP -> QVP = notYet "ComplSlashIP" ; +oper ComplVA : VA -> AP -> VP = notYet "ComplVA" ; +oper ComplVQ : VQ -> QS -> VP = notYet "ComplVQ" ; +oper ComplVS : VS -> S -> VP = notYet "ComplVS" ; +oper ComplVV : VV -> VP -> VP = notYet "ComplVV" ; +oper ConjAP : Conj -> ListAP -> AP = notYet "ConjAP" ; +oper ConjAdV : Conj -> ListAdV -> AdV = notYet "ConjAdV" ; +oper ConjAdv : Conj -> ListAdv -> Adv = notYet "ConjAdv" ; +oper ConjCN : Conj -> ListCN -> CN = notYet "ConjCN" ; +oper ConjDet : Conj -> ListDAP -> Det = notYet "ConjDet" ; +oper ConjIAdv : Conj -> ListIAdv -> IAdv = notYet "ConjIAdv" ; +oper ConjNP : Conj -> ListNP -> NP = notYet "ConjNP" ; +oper ConjRS : Conj -> ListRS -> RS = notYet "ConjRS" ; +oper ConjS : Conj -> ListS -> S = notYet "ConjS" ; +oper ConsAP : AP -> ListAP -> ListAP = notYet "ConsAP" ; +oper ConsAdV : AdV -> ListAdV -> ListAdV = notYet "ConsAdV" ; +oper ConsAdv : Adv -> ListAdv -> ListAdv = notYet "ConsAdv" ; +oper ConsCN : CN -> ListCN -> ListCN = notYet "ConsCN" ; +oper ConsIAdv : IAdv -> ListIAdv -> ListIAdv = notYet "ConsIAdv" ; +oper ConsNP : NP -> ListNP -> ListNP = notYet "ConsNP" ; +oper ConsRS : RS -> ListRS -> ListRS = notYet "ConsRS" ; +oper ConsS : S -> ListS -> ListS = notYet "ConsS" ; +oper CountNP : Det -> NP -> NP = notYet "CountNP" ; +oper DefArt : Quant = notYet "DefArt" ; +oper DefArt : Quant = notYet "DefArt" ; +oper DetCN : Det -> CN -> NP = notYet "DetCN" ; +oper DetDAP : Det -> DAP = notYet "DetDAP" ; +oper DetNP : Det -> NP = notYet "DetNP" ; +oper DetQuant : Quant -> Num -> Det = notYet "DetQuant" ; +oper DetQuantOrd : Quant -> Num -> Ord -> Det = notYet "DetQuantOrd" ; +oper EmbedQS : QS -> SC = notYet "EmbedQS" ; +oper EmbedS : S -> SC = notYet "EmbedS" ; +oper EmbedVP : VP -> SC = notYet "EmbedVP" ; +oper ExistIP : IP -> QCl = notYet "ExistIP" ; +oper ExistIPAdv : IP -> Adv -> QCl = notYet "ExistIPAdv" ; +oper ExistNP : NP -> Cl = notYet "ExistNP" ; +oper ExistNPAdv : NP -> Adv -> Cl = notYet "ExistNPAdv" ; +oper ExtAdvS : Adv -> S -> S = notYet "ExtAdvS" ; +oper ExtAdvVP : VP -> Adv -> VP = notYet "ExtAdvVP" ; +oper FunRP : Prep -> NP -> RP -> RP = notYet "FunRP" ; +oper GenericCl : VP -> Cl = notYet "GenericCl" ; +oper IdRP : RP = notYet "IdRP" ; +oper IdetCN : IDet -> CN -> IP = notYet "IdetCN" ; +oper IdetIP : IDet -> IP = notYet "IdetIP" ; +oper IdetQuant : IQuant -> Num -> IDet = notYet "IdetQuant" ; +oper ImpP3 : NP -> VP -> Utt = notYet "ImpP3" ; +oper ImpPl1 : VP -> Utt = notYet "ImpPl1" ; +oper ImpVP : VP -> Imp = notYet "ImpVP" ; +oper ImpersCl : VP -> Cl = notYet "ImpersCl" ; +oper IndefArt : Quant = notYet "IndefArt" ; +oper IndefArt : Quant = notYet "IndefArt" ; +oper NumCard : Card -> Num = notYet "NumCard" ; +oper NumDigits : Digits -> Card = notYet "NumDigits" ; +oper NumNumeral : Numeral -> Card = notYet "NumNumeral" ; +oper NumPl : Num = notYet "NumPl" ; +oper NumSg : Num = notYet "NumSg" ; +oper OrdDigits : Digits -> Ord = notYet "OrdDigits" ; +oper OrdNumeral : Numeral -> Ord = notYet "OrdNumeral" ; +oper OrdNumeralSuperl : Numeral -> A -> Ord = notYet "OrdNumeralSuperl" ; +oper OrdSuperl : A -> Ord = notYet "OrdSuperl" ; +oper PPartNP : NP -> V2 -> NP = notYet "PPartNP" ; +oper PartNP : CN -> NP -> CN = notYet "PartNP" ; +oper PassV2 : V2 -> VP = notYet "PassV2" ; +oper PositAdAAdj : A -> AdA = notYet "PositAdAAdj" ; +oper PositAdvAdj : A -> Adv = notYet "PositAdvAdj" ; +oper PossNP : CN -> NP -> CN = notYet "PossNP" ; +oper PossPron : Pron -> Quant = notYet "PossPron" ; +oper PredSCVP : SC -> VP -> Cl = notYet "PredSCVP" ; +oper PredetNP : Predet -> NP -> NP = notYet "PredetNP" ; +oper PrepIP : Prep -> IP -> IAdv = notYet "PrepIP" ; +oper ProgrVP : VP -> VP = notYet "ProgrVP" ; +oper QuestCl : Cl -> QCl = notYet "QuestCl" ; +oper QuestIAdv : IAdv -> Cl -> QCl = notYet "QuestIAdv" ; +oper QuestIComp : IComp -> NP -> QCl = notYet "QuestIComp" ; +oper QuestQVP : IP -> QVP -> QCl = notYet "QuestQVP" ; +oper QuestSlash : IP -> ClSlash -> QCl = notYet "QuestSlash" ; +oper QuestVP : IP -> VP -> QCl = notYet "QuestVP" ; +oper ReflA2 : A2 -> AP = notYet "ReflA2" ; +oper ReflVP : VPSlash -> VP = notYet "ReflVP" ; +oper RelCN : CN -> RS -> CN = notYet "RelCN" ; +oper RelCl : Cl -> RCl = notYet "RelCl" ; +oper RelNP : NP -> RS -> NP = notYet "RelNP" ; +oper RelS : S -> RS -> S = notYet "RelS" ; +oper RelSlash : RP -> ClSlash -> RCl = notYet "RelSlash" ; +oper RelVP : RP -> VP -> RCl = notYet "RelVP" ; +oper SSubjS : S -> Subj -> S -> S = notYet "SSubjS" ; +oper SelfAdVVP : VP -> VP = notYet "SelfAdVVP" ; +oper SelfAdvVP : VP -> VP = notYet "SelfAdvVP" ; +oper SelfNP : NP -> NP = notYet "SelfNP" ; +oper SentAP : AP -> SC -> AP = notYet "SentAP" ; +oper SentCN : CN -> SC -> CN = notYet "SentCN" ; +oper Slash2V3 : V3 -> NP -> VPSlash = notYet "Slash2V3" ; +oper Slash3V3 : V3 -> NP -> VPSlash = notYet "Slash3V3" ; +oper SlashPrep : Cl -> Prep -> ClSlash = notYet "SlashPrep" ; +oper SlashV2A : V2A -> AP -> VPSlash = notYet "SlashV2A" ; +oper SlashV2Q : V2Q -> QS -> VPSlash = notYet "SlashV2Q" ; +oper SlashV2S : V2S -> S -> VPSlash = notYet "SlashV2S" ; +oper SlashV2V : V2V -> VP -> VPSlash = notYet "SlashV2V" ; +oper SlashV2VNP : V2V -> NP -> VPSlash -> VPSlash = notYet "SlashV2VNP" ; +oper SlashV2a : V2 -> VPSlash = notYet "SlashV2a" ; +oper SlashVP : NP -> VPSlash -> ClSlash = notYet "SlashVP" ; +oper SlashVS : NP -> VS -> SSlash -> ClSlash = notYet "SlashVS" ; +oper SlashVV : VV -> VPSlash -> VPSlash = notYet "SlashVV" ; +oper SubjS : Subj -> S -> Adv = notYet "SubjS" ; +oper Use2N3 : N3 -> N2 = notYet "Use2N3" ; +oper Use3N3 : N3 -> N2 = notYet "Use3N3" ; +oper UseA2 : A2 -> AP = notYet "UseA2" ; +oper UseCl : Temp -> Pol -> Cl -> S = notYet "UseCl" ; +oper UseComp : Comp -> VP = notYet "UseComp" ; +oper UseComparA : A -> AP = notYet "UseComparA" ; +oper UseN2 : N2 -> CN = notYet "UseN2" ; +oper UsePN : PN -> NP = notYet "UsePN" ; +oper UseQCl : Temp -> Pol -> QCl -> QS = notYet "UseQCl" ; +oper UseRCl : Temp -> Pol -> RCl -> RS = notYet "UseRCl" ; +oper UseSlash : Temp -> Pol -> ClSlash -> SSlash = notYet "UseSlash" ; +oper UseV : V -> VP = notYet "UseV" ; +oper UttCard : Card -> Utt = notYet "UttCard" ; +oper UttIAdv : IAdv -> Utt = notYet "UttIAdv" ; +oper UttIP : IP -> Utt = notYet "UttIP" ; +oper UttImpPl : Pol -> Imp -> Utt = notYet "UttImpPl" ; +oper UttImpPol : Pol -> Imp -> Utt = notYet "UttImpPol" ; +oper UttImpSg : Pol -> Imp -> Utt = notYet "UttImpSg" ; +oper UttInterj : Interj -> Utt = notYet "UttInterj" ; +oper UttQS : QS -> Utt = notYet "UttQS" ; +oper UttS : S -> Utt = notYet "UttS" ; +oper VPSlashPrep : VP -> Prep -> VPSlash = notYet "VPSlashPrep" ; +oper above_Prep : Prep = notYet "above_Prep" ; +oper active2passive : Cl -> Cl = notYet "active2passive" ; +oper add_V3 : V3 = notYet "add_V3" ; +oper after_Prep : Prep = notYet "after_Prep" ; +oper airplane_N : N = notYet "airplane_N" ; +oper alas_Interj : Interj = notYet "alas_Interj" ; +oper all_Predet : Predet = notYet "all_Predet" ; +oper almost_AdA : AdA = notYet "almost_AdA" ; +oper almost_AdN : AdN = notYet "almost_AdN" ; +oper already_Adv : Adv = notYet "already_Adv" ; +oper although_Subj : Subj = notYet "although_Subj" ; +oper always_AdV : AdV = notYet "always_AdV" ; +oper answer_V2S : V2S = notYet "answer_V2S" ; +oper apartment_N : N = notYet "apartment_N" ; +oper apple_N : N = notYet "apple_N" ; +oper art_N : N = notYet "art_N" ; +oper as_CAdv : CAdv = notYet "as_CAdv" ; +oper ashes_N : N = notYet "ashes_N" ; +oper ask_V2Q : V2Q = notYet "ask_V2Q" ; +oper at_least_AdN : AdN = notYet "at_least_AdN" ; +oper at_most_AdN : AdN = notYet "at_most_AdN" ; +oper baby_N : N = notYet "baby_N" ; +oper back_N : N = notYet "back_N" ; +oper bad_A : A = notYet "bad_A" ; +oper bank_N : N = notYet "bank_N" ; +oper bark_N : N = notYet "bark_N" ; +oper beautiful_A : A = notYet "beautiful_A" ; +oper because_Subj : Subj = notYet "because_Subj" ; +oper become_VA : VA = notYet "become_VA" ; +oper beer_N : N = notYet "beer_N" ; +oper before_Prep : Prep = notYet "before_Prep" ; +oper beg_V2V : V2V = notYet "beg_V2V" ; +oper behind_Prep : Prep = notYet "behind_Prep" ; +oper belly_N : N = notYet "belly_N" ; +oper between_Prep : Prep = notYet "between_Prep" ; +oper bike_N : N = notYet "bike_N" ; +oper bite_V2 : V2 = notYet "bite_V2" ; +oper black_A : A = notYet "black_A" ; +oper blood_N : N = notYet "blood_N" ; +oper blow_V : V = notYet "blow_V" ; +oper blue_A : A = notYet "blue_A" ; +oper boat_N : N = notYet "boat_N" ; +oper bone_N : N = notYet "bone_N" ; +oper boot_N : N = notYet "boot_N" ; +oper boss_N : N = notYet "boss_N" ; +oper both7and_DConj : Conj = notYet "both7and_DConj" ; +oper bottle_of_CN : NP -> CN = notYet "bottle_of_CN" ; +oper break_V2 : V2 = notYet "break_V2" ; +oper breast_N : N = notYet "breast_N" ; +oper breathe_V : V = notYet "breathe_V" ; +oper broad_A : A = notYet "broad_A" ; +oper brother_N2 : N2 = notYet "brother_N2" ; +oper brown_A : A = notYet "brown_A" ; +oper burn_V : V = notYet "burn_V" ; +oper but_PConj : PConj = notYet "but_PConj" ; +oper butter_N : N = notYet "butter_N" ; +oper buy_V2 : V2 = notYet "buy_V2" ; +oper by8agent_Prep : Prep = notYet "by8agent_Prep" ; +oper by8means_Prep : Prep = notYet "by8means_Prep" ; +oper camera_N : N = notYet "camera_N" ; +oper can8know_VV : VV = notYet "can8know_VV" ; +oper can_VV : VV = notYet "can_VV" ; +oper cap_N : N = notYet "cap_N" ; +oper carpet_N : N = notYet "carpet_N" ; +oper ceiling_N : N = notYet "ceiling_N" ; +oper chair_N : N = notYet "chair_N" ; +oper cheese_N : N = notYet "cheese_N" ; +oper child_N : N = notYet "child_N" ; +oper church_N : N = notYet "church_N" ; +oper clean_A : A = notYet "clean_A" ; +oper clever_A : A = notYet "clever_A" ; +oper close_V2 : V2 = notYet "close_V2" ; +oper cloud_N : N = notYet "cloud_N" ; +oper coat_N : N = notYet "coat_N" ; +oper cold_A : A = notYet "cold_A" ; +oper come_V : V = notYet "come_V" ; +oper computer_N : N = notYet "computer_N" ; +oper correct_A : A = notYet "correct_A" ; +oper count_V2 : V2 = notYet "count_V2" ; +oper country_N : N = notYet "country_N" ; +oper cousin_N : N = notYet "cousin_N" ; +oper cow_N : N = notYet "cow_N" ; +oper cup_of_CN : NP -> CN = notYet "cup_of_CN" ; +oper cut_V2 : V2 = notYet "cut_V2" ; +oper day_N : N = notYet "day_N" ; +oper dconcat : Digits -> Digits -> Digits = notYet "dconcat" ; +oper die_V : V = notYet "die_V" ; +oper dig_V : V = notYet "dig_V" ; +oper digits2num : Digits -> Numeral = notYet "digits2num" ; +oper digits2numeral : Card -> Card = notYet "digits2numeral" ; +oper dirty_A : A = notYet "dirty_A" ; +oper distance_N3 : N3 = notYet "distance_N3" ; +oper dn : Dig -> Digit = notYet "dn" ; +oper dn10 : Dig -> Sub10 = notYet "dn10" ; +oper dn100 : Dig -> Dig -> Sub100 = notYet "dn100" ; +oper dn1000 : Dig -> Dig -> Dig -> Sub1000 = notYet "dn1000" ; +oper dn1000000a : Dig -> Dig -> Dig -> Dig -> Sub1000000 = notYet "dn1000000a" ; +oper dn1000000b : Dig -> Dig -> Dig -> Dig -> Dig -> Sub1000000 = notYet "dn1000000b" ; +oper dn1000000c : Dig -> Dig -> Dig -> Dig -> Dig -> Dig -> Sub1000000 = notYet "dn1000000c" ; +oper do_V2 : V2 = notYet "do_V2" ; +oper doctor_N : N = notYet "doctor_N" ; +oper dog_N : N = notYet "dog_N" ; +oper door_N : N = notYet "door_N" ; +oper drink_V2 : V2 = notYet "drink_V2" ; +oper dry_A : A = notYet "dry_A" ; +oper dull_A : A = notYet "dull_A" ; +oper during_Prep : Prep = notYet "during_Prep" ; +oper dust_N : N = notYet "dust_N" ; +oper ear_N : N = notYet "ear_N" ; +oper earth_N : N = notYet "earth_N" ; +oper easy_A2V : A2 = notYet "easy_A2V" ; +oper eat_V2 : V2 = notYet "eat_V2" ; +oper egg_N : N = notYet "egg_N" ; +oper either7or_DConj : Conj = notYet "either7or_DConj" ; +oper empty_A : A = notYet "empty_A" ; +oper enemy_N : N = notYet "enemy_N" ; +oper every_Det : Det = notYet "every_Det" ; +oper everybody_NP : NP = notYet "everybody_NP" ; +oper everything_NP : NP = notYet "everything_NP" ; +oper everywhere_Adv : Adv = notYet "everywhere_Adv" ; +oper except_Prep : Prep = notYet "except_Prep" ; +oper eye_N : N = notYet "eye_N" ; +oper factory_N : N = notYet "factory_N" ; +oper fall_V : V = notYet "fall_V" ; +oper far_Adv : Adv = notYet "far_Adv" ; +oper fat_N : N = notYet "fat_N" ; +oper father_N2 : N2 = notYet "father_N2" ; +oper fear_V2 : V2 = notYet "fear_V2" ; +oper fear_VS : VS = notYet "fear_VS" ; +oper feather_N : N = notYet "feather_N" ; +oper few_Det : Det = notYet "few_Det" ; +oper few_X_short_of_Y : NP -> CN -> CN -> S = notYet "few_X_short_of_Y" ; +oper fight_V2 : V2 = notYet "fight_V2" ; +oper find_V2 : V2 = notYet "find_V2" ; +oper fingernail_N : N = notYet "fingernail_N" ; +oper fire_N : N = notYet "fire_N" ; +oper fish_N : N = notYet "fish_N" ; +oper float_V : V = notYet "float_V" ; +oper floor_N : N = notYet "floor_N" ; +oper flow_V : V = notYet "flow_V" ; +oper flower_N : N = notYet "flower_N" ; +oper fly_V : V = notYet "fly_V" ; +oper fog_N : N = notYet "fog_N" ; +oper foot_N : N = notYet "foot_N" ; +oper for_Prep : Prep = notYet "for_Prep" ; +oper forest_N : N = notYet "forest_N" ; +oper forget_V2 : V2 = notYet "forget_V2" ; +oper freeze_V : V = notYet "freeze_V" ; +oper fridge_N : N = notYet "fridge_N" ; +oper friend_N : N = notYet "friend_N" ; +oper from_Prep : Prep = notYet "from_Prep" ; +oper fruit_N : N = notYet "fruit_N" ; +oper full_A : A = notYet "full_A" ; +oper fun_AV : A = notYet "fun_AV" ; +oper garden_N : N = notYet "garden_N" ; +oper give_V3 : V3 = notYet "give_V3" ; +oper glass_of_CN : NP -> CN = notYet "glass_of_CN" ; +oper glove_N : N = notYet "glove_N" ; +oper go_V : V = notYet "go_V" ; +oper gold_N : N = notYet "gold_N" ; +oper good_A : A = notYet "good_A" ; +oper grammar_N : N = notYet "grammar_N" ; +oper grass_N : N = notYet "grass_N" ; +oper green_A : A = notYet "green_A" ; +oper guts_N : N = notYet "guts_N" ; +oper hair_N : N = notYet "hair_N" ; +oper hand_N : N = notYet "hand_N" ; +oper harbour_N : N = notYet "harbour_N" ; +oper has_age_VP : Card -> VP = notYet "has_age_VP" ; +oper hat_N : N = notYet "hat_N" ; +oper hate_V2 : V2 = notYet "hate_V2" ; +oper have_name_Cl : NP -> NP -> Cl = notYet "have_name_Cl" ; +oper head_N : N = notYet "head_N" ; +oper hear_V2 : V2 = notYet "hear_V2" ; +oper heart_N : N = notYet "heart_N" ; +oper heavy_A : A = notYet "heavy_A" ; +oper here7from_Adv : Adv = notYet "here7from_Adv" ; +oper here7to_Adv : Adv = notYet "here7to_Adv" ; +oper here_Adv : Adv = notYet "here_Adv" ; +oper hill_N : N = notYet "hill_N" ; +oper hit_V2 : V2 = notYet "hit_V2" ; +oper hold_V2 : V2 = notYet "hold_V2" ; +oper hope_VS : VS = notYet "hope_VS" ; +oper horn_N : N = notYet "horn_N" ; +oper horse_N : N = notYet "horse_N" ; +oper hot_A : A = notYet "hot_A" ; +oper how8many_IDet : IDet = notYet "how8many_IDet" ; +oper how8much_IAdv : IAdv = notYet "how8much_IAdv" ; +oper how_IAdv : IAdv = notYet "how_IAdv" ; +oper how_far_QCl : NP -> QCl = notYet "how_far_QCl" ; +oper how_old_QCl : NP -> QCl = notYet "how_old_QCl" ; +oper hungry_VP : VP = notYet "hungry_VP" ; +oper hunt_V2 : V2 = notYet "hunt_V2" ; +oper husband_N : N = notYet "husband_N" ; +oper ice_N : N = notYet "ice_N" ; +oper if_Subj : Subj = notYet "if_Subj" ; +oper if_then_Conj : Conj = notYet "if_then_Conj" ; +oper ill_VP : VP = notYet "ill_VP" ; +oper important_A : A = notYet "important_A" ; +oper in8front_Prep : Prep = notYet "in8front_Prep" ; +oper industry_N : N = notYet "industry_N" ; +oper iron_N : N = notYet "iron_N" ; +oper is_right_VP : VP = notYet "is_right_VP" ; +oper is_wrong_VP : VP = notYet "is_wrong_VP" ; +oper it_Pron : Pron = notYet "it_Pron" ; +oper john_PN : PN = notYet "john_PN" ; +oper jump_V : V = notYet "jump_V" ; +oper kill_V2 : V2 = notYet "kill_V2" ; +oper king_N : N = notYet "king_N" ; +oper knee_N : N = notYet "knee_N" ; +oper know_V2 : V2 = notYet "know_V2" ; +oper know_VQ : VQ = notYet "know_VQ" ; +oper know_VS : VS = notYet "know_VS" ; +oper lake_N : N = notYet "lake_N" ; +oper lamp_N : N = notYet "lamp_N" ; +oper laugh_V : V = notYet "laugh_V" ; +oper leaf_N : N = notYet "leaf_N" ; +oper learn_V2 : V2 = notYet "learn_V2" ; +oper leather_N : N = notYet "leather_N" ; +oper leave_V2 : V2 = notYet "leave_V2" ; +oper left_Ord : Ord = notYet "left_Ord" ; +oper leg_N : N = notYet "leg_N" ; +oper less_CAdv : CAdv = notYet "less_CAdv" ; +oper lie_V : V = notYet "lie_V" ; +oper like_V2 : V2 = notYet "like_V2" ; +oper listen_V2 : V2 = notYet "listen_V2" ; +oper live_V : V = notYet "live_V" ; +oper liver_N : N = notYet "liver_N" ; +oper long_A : A = notYet "long_A" ; +oper lose_V2 : V2 = notYet "lose_V2" ; +oper louse_N : N = notYet "louse_N" ; +oper love_N : N = notYet "love_N" ; +oper love_V2 : V2 = notYet "love_V2" ; +oper many_Det : Det = notYet "many_Det" ; +oper married_A2 : A2 = notYet "married_A2" ; +oper married_Cl : NP -> NP -> Cl = notYet "married_Cl" ; +oper meat_N : N = notYet "meat_N" ; +oper milk_N : N = notYet "milk_N" ; +oper moon_N : N = notYet "moon_N" ; +oper more_CAdv : CAdv = notYet "more_CAdv" ; +oper most_Predet : Predet = notYet "most_Predet" ; +oper mother_N2 : N2 = notYet "mother_N2" ; +oper mountain_N : N = notYet "mountain_N" ; +oper mouth_N : N = notYet "mouth_N" ; +oper much_Det : Det = notYet "much_Det" ; +oper music_N : N = notYet "music_N" ; +oper must_VV : VV = notYet "must_VV" ; +oper n_units_AP : Card -> CN -> A -> AP = notYet "n_units_AP" ; +oper n_units_of_NP : Card -> CN -> NP -> NP = notYet "n_units_of_NP" ; +oper name_N : N = notYet "name_N" ; +oper narrow_A : A = notYet "narrow_A" ; +oper nd : Digit -> Dig = notYet "nd" ; +oper nd10 : Sub10 -> Digits = notYet "nd10" ; +oper nd100 : Sub100 -> Digits = notYet "nd100" ; +oper nd1000 : Sub1000 -> Digits = notYet "nd1000" ; +oper nd1000000 : Sub1000000 -> Digits = notYet "nd1000000" ; +oper near_A : A = notYet "near_A" ; +oper neck_N : N = notYet "neck_N" ; +oper new_A : A = notYet "new_A" ; +oper newspaper_N : N = notYet "newspaper_N" ; +oper night_N : N = notYet "night_N" ; +oper no_Quant : Quant = notYet "no_Quant" ; +oper nobody_NP : NP = notYet "nobody_NP" ; +oper nose_N : N = notYet "nose_N" ; +oper not_Predet : Predet = notYet "not_Predet" ; +oper nothing_NP : NP = notYet "nothing_NP" ; +oper now_Adv : Adv = notYet "now_Adv" ; +oper num2digits : Numeral -> Digits = notYet "num2digits" ; +oper number_N : N = notYet "number_N" ; +oper oil_N : N = notYet "oil_N" ; +oper old_A : A = notYet "old_A" ; +oper only_Predet : Predet = notYet "only_Predet" ; +oper open_V2 : V2 = notYet "open_V2" ; +oper otherwise_PConj : PConj = notYet "otherwise_PConj" ; +oper paint_V2A : V2A = notYet "paint_V2A" ; +oper paper_N : N = notYet "paper_N" ; +oper paris_PN : PN = notYet "paris_PN" ; +oper part_Prep : Prep = notYet "part_Prep" ; +oper peace_N : N = notYet "peace_N" ; +oper pen_N : N = notYet "pen_N" ; +oper person_N : N = notYet "person_N" ; +oper planet_N : N = notYet "planet_N" ; +oper plastic_N : N = notYet "plastic_N" ; +oper play_V : V = notYet "play_V" ; +oper play_V2 : V2 = notYet "play_V2" ; +oper please_Voc : Voc = notYet "please_Voc" ; +oper policeman_N : N = notYet "policeman_N" ; +oper possess_Prep : Prep = notYet "possess_Prep" ; +oper priest_N : N = notYet "priest_N" ; +oper probable_AS : A = notYet "probable_AS" ; +oper pull_V2 : V2 = notYet "pull_V2" ; +oper push_V2 : V2 = notYet "push_V2" ; +oper put_V2 : V2 = notYet "put_V2" ; +oper queen_N : N = notYet "queen_N" ; +oper question_N : N = notYet "question_N" ; +oper quite_Adv : AdA = notYet "quite_Adv" ; +oper radio_N : N = notYet "radio_N" ; +oper rain_N : N = notYet "rain_N" ; +oper rain_V0 : V = notYet "rain_V0" ; +oper ready_A : A = notYet "ready_A" ; +oper ready_VP : VP = notYet "ready_VP" ; +oper reason_N : N = notYet "reason_N" ; +oper red_A : A = notYet "red_A" ; +oper religion_N : N = notYet "religion_N" ; +oper restaurant_N : N = notYet "restaurant_N" ; +oper right_Ord : Ord = notYet "right_Ord" ; +oper river_N : N = notYet "river_N" ; +oper road_N : N = notYet "road_N" ; +oper rock_N : N = notYet "rock_N" ; +oper roof_N : N = notYet "roof_N" ; +oper root_N : N = notYet "root_N" ; +oper rope_N : N = notYet "rope_N" ; +oper rotten_A : A = notYet "rotten_A" ; +oper round_A : A = notYet "round_A" ; +oper rub_V2 : V2 = notYet "rub_V2" ; +oper rubber_N : N = notYet "rubber_N" ; +oper rule_N : N = notYet "rule_N" ; +oper run_V : V = notYet "run_V" ; +oper salt_N : N = notYet "salt_N" ; +oper sand_N : N = notYet "sand_N" ; +oper say_VS : VS = notYet "say_VS" ; +oper scared_VP : VP = notYet "scared_VP" ; +oper school_N : N = notYet "school_N" ; +oper science_N : N = notYet "science_N" ; +oper scratch_V2 : V2 = notYet "scratch_V2" ; +oper sea_N : N = notYet "sea_N" ; +oper seed_N : N = notYet "seed_N" ; +oper seek_V2 : V2 = notYet "seek_V2" ; +oper sell_V3 : V3 = notYet "sell_V3" ; +oper send_V3 : V3 = notYet "send_V3" ; +oper sew_V : V = notYet "sew_V" ; +oper sharp_A : A = notYet "sharp_A" ; +oper sheep_N : N = notYet "sheep_N" ; +oper ship_N : N = notYet "ship_N" ; +oper shirt_N : N = notYet "shirt_N" ; +oper shoe_N : N = notYet "shoe_N" ; +oper shop_N : N = notYet "shop_N" ; +oper short_A : A = notYet "short_A" ; +oper silver_N : N = notYet "silver_N" ; +oper sing_V : V = notYet "sing_V" ; +oper sister_N : N = notYet "sister_N" ; +oper sit_V : V = notYet "sit_V" ; +oper skin_N : N = notYet "skin_N" ; +oper sky_N : N = notYet "sky_N" ; +oper sleep_V : V = notYet "sleep_V" ; +oper smell_V : V = notYet "smell_V" ; +oper smoke_N : N = notYet "smoke_N" ; +oper smooth_A : A = notYet "smooth_A" ; +oper snake_N : N = notYet "snake_N" ; +oper snow_N : N = notYet "snow_N" ; +oper so_AdA : AdA = notYet "so_AdA" ; +oper sock_N : N = notYet "sock_N" ; +oper somePl_Det : Det = notYet "somePl_Det" ; +oper someSg_Det : Det = notYet "someSg_Det" ; +oper somebody_NP : NP = notYet "somebody_NP" ; +oper something_NP : NP = notYet "something_NP" ; +oper somewhere_Adv : Adv = notYet "somewhere_Adv" ; +oper song_N : N = notYet "song_N" ; +oper speak_V2 : V2 = notYet "speak_V2" ; +oper spit_V : V = notYet "spit_V" ; +oper split_V2 : V2 = notYet "split_V2" ; +oper squeeze_V2 : V2 = notYet "squeeze_V2" ; +oper stab_V2 : V2 = notYet "stab_V2" ; +oper stand_V : V = notYet "stand_V" ; +oper star_N : N = notYet "star_N" ; +oper steel_N : N = notYet "steel_N" ; +oper stick_N : N = notYet "stick_N" ; +oper stone_N : N = notYet "stone_N" ; +oper stop_V : V = notYet "stop_V" ; +oper stove_N : N = notYet "stove_N" ; +oper straight_A : A = notYet "straight_A" ; +oper student_N : N = notYet "student_N" ; +oper stupid_A : A = notYet "stupid_A" ; +oper suck_V2 : V2 = notYet "suck_V2" ; +oper sun_N : N = notYet "sun_N" ; +oper swell_V : V = notYet "swell_V" ; +oper swim_V : V = notYet "swim_V" ; +oper switch8off_V2 : V2 = notYet "switch8off_V2" ; +oper switch8on_V2 : V2 = notYet "switch8on_V2" ; +oper table_N : N = notYet "table_N" ; +oper tail_N : N = notYet "tail_N" ; +oper talk_V3 : V3 = notYet "talk_V3" ; +oper teacher_N : N = notYet "teacher_N" ; +oper television_N : N = notYet "television_N" ; +oper that_Quant : Quant = notYet "that_Quant" ; +oper that_Subj : Subj = notYet "that_Subj" ; +oper there7from_Adv : Adv = notYet "there7from_Adv" ; +oper there7to_Adv : Adv = notYet "there7to_Adv" ; +oper there_Adv : Adv = notYet "there_Adv" ; +oper therefore_PConj : PConj = notYet "therefore_PConj" ; +oper thick_A : A = notYet "thick_A" ; +oper thin_A : A = notYet "thin_A" ; +oper think_V : V = notYet "think_V" ; +oper thirsty_VP : VP = notYet "thirsty_VP" ; +oper this_Quant : Quant = notYet "this_Quant" ; +oper through_Prep : Prep = notYet "through_Prep" ; +oper throw_V2 : V2 = notYet "throw_V2" ; +oper tie_V2 : V2 = notYet "tie_V2" ; +oper tired_VP : VP = notYet "tired_VP" ; +oper to_Prep : Prep = notYet "to_Prep" ; +oper today_Adv : Adv = notYet "today_Adv" ; +oper tongue_N : N = notYet "tongue_N" ; +oper too_AdA : AdA = notYet "too_AdA" ; +oper tooth_N : N = notYet "tooth_N" ; +oper train_N : N = notYet "train_N" ; +oper travel_V : V = notYet "travel_V" ; +oper tree_N : N = notYet "tree_N" ; +oper turn_V : V = notYet "turn_V" ; +oper ugly_A : A = notYet "ugly_A" ; +oper uncertain_A : A = notYet "uncertain_A" ; +oper under_Prep : Prep = notYet "under_Prep" ; +oper understand_V2 : V2 = notYet "understand_V2" ; +oper university_N : N = notYet "university_N" ; +oper very_AdA : AdA = notYet "very_AdA" ; +oper village_N : N = notYet "village_N" ; +oper vomit_V : V = notYet "vomit_V" ; +oper wait_V2 : V2 = notYet "wait_V2" ; +oper walk_V : V = notYet "walk_V" ; +oper want_VV : VV = notYet "want_VV" ; +oper war_N : N = notYet "war_N" ; +oper warm_A : A = notYet "warm_A" ; +oper wash_V2 : V2 = notYet "wash_V2" ; +oper watch_V2 : V2 = notYet "watch_V2" ; +oper water_N : N = notYet "water_N" ; +oper weather_adjCl : AP -> Cl = notYet "weather_adjCl" ; +oper wet_A : A = notYet "wet_A" ; +oper whatPl_IP : IP = notYet "whatPl_IP" ; +oper whatSg_IP : IP = notYet "whatSg_IP" ; +oper what_name_QCl : NP -> QCl = notYet "what_name_QCl" ; +oper when_IAdv : IAdv = notYet "when_IAdv" ; +oper when_Subj : Subj = notYet "when_Subj" ; +oper where_IAdv : IAdv = notYet "where_IAdv" ; +oper which_IQuant : IQuant = notYet "which_IQuant" ; +oper white_A : A = notYet "white_A" ; +oper whoPl_IP : IP = notYet "whoPl_IP" ; +oper whoSg_IP : IP = notYet "whoSg_IP" ; +oper why_IAdv : IAdv = notYet "why_IAdv" ; +oper wide_A : A = notYet "wide_A" ; +oper wife_N : N = notYet "wife_N" ; +oper win_V2 : V2 = notYet "win_V2" ; +oper wind_N : N = notYet "wind_N" ; +oper window_N : N = notYet "window_N" ; +oper wine_N : N = notYet "wine_N" ; +oper wing_N : N = notYet "wing_N" ; +oper wipe_V2 : V2 = notYet "wipe_V2" ; +oper without_Prep : Prep = notYet "without_Prep" ; +oper wonder_VQ : VQ = notYet "wonder_VQ" ; +oper wood_N : N = notYet "wood_N" ; +oper worm_N : N = notYet "worm_N" ; +oper write_V2 : V2 = notYet "write_V2" ; +oper year_N : N = notYet "year_N" ; +oper yellow_A : A = notYet "yellow_A" ; +oper youPol_Pron : Pron = notYet "youPol_Pron" ; +oper young_A : A = notYet "young_A" ; +oper CNNumNP : CN -> Card -> NP = notYet "CNNumNP" ; +oper CNSymbNP : Det -> CN -> [Symb] -> NP = notYet "CNSymbNP" ; +oper FloatPN : Float -> PN = notYet "FloatPN" ; +oper IntPN : Int -> PN = notYet "IntPN" ; +oper NumPN : Card -> PN = notYet "NumPN" ; +oper SymbNum : Symb -> Card = notYet "SymbNum" ; +oper SymbOrd : Symb -> Ord = notYet "SymbOrd" ; +oper SymbPN : Symb -> PN = notYet "SymbPN" ; +oper SymbS : Symb -> S = notYet "SymbS" ; +} diff --git a/src/somali/NounSom.gf b/src/somali/NounSom.gf new file mode 100644 index 000000000..babcd6000 --- /dev/null +++ b/src/somali/NounSom.gf @@ -0,0 +1,224 @@ +concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { + + flags optimize=all_subs ; + + lin + +--2 Noun phrases + +-- The three main types of noun phrases are +-- - common nouns with determiners +-- - proper names +-- - pronouns + + -- : Det -> CN -> NP + DetCN det cn = useN cn ** { + s = \\c => + let nfc : {nf : NForm ; c : Case} = + case of { + => {nf=Indef Sg ; c=Abs} ; + => {nf=IndefNom ; c=Nom} ; -- special form for fem. nouns + => {nf=Def x A ; c=Abs} ; + => {nf=Def x U ; c=Nom} ; + _ => {nf=det.d ; c=c} + } ; + in cn.s ! nfc.nf + ++ det.s ! nfc.c + ++ cn.mod ! getNum (getAgr det.d Masc) ! c ; + a = getAgr det.d cn.g + } ; + + -- : PN -> NP ; + UsePN pn = pn ** { + s = \\c => pn.s ; + isPron = False ; + sp = pn.s } ; + + -- : Pron -> NP ; + UsePron pron = lin NP pron ; + + + -- : Predet -> NP -> NP ; -- only the man + PredetNP predet np = np ** { + s = \\c => predet.s ++ np.s ! c ---- ? + } ; + + +-- A noun phrase can also be postmodified by the past participle of a +-- verb, by an adverb, or by a relative clause + + + -- : NP -> V2 -> NP ; -- the man seen + -- PPartNP np v2 = np ** { + -- s = \\c => v2.s ! ??? ++ np.s ! c } ; ---- + + -- : NP -> Adv -> NP ; -- Paris today ; boys, such as .. + --AdvNP,ExtAdvNP = \np,adv -> np ** {} ; --adverbs are complicated + + -- : NP -> RS -> NP ; -- Paris, which is here + -- RelNP np rs = np ** { s = \\c => rs.s ! np.agr ++ np.s ! c } ; + +-- Determiners can form noun phrases directly. + + -- : Det -> NP ; + DetNP det = { + s = det.sp ! Masc ; ---- Any way to decide for gender here? + a = getAgr det.d Masc ; + isPron = False ; sp = [] + } ; + + -- MassNP : CN -> NP ; + MassNP cn = useN cn ** { + s = table { Nom => cn.s ! IndefNom ++ cn.mod ! Sg ! Nom ; + Abs => cn.s ! Indef Sg ++ cn.mod ! Sg ! Abs } + } ; + + +--2 Determiners + +-- The determiner has a fine-grained structure, in which a 'nucleus' +-- quantifier and an optional numeral can be discerned. + + -- : Quant -> Num -> Det ; + -- DetQuant quant num = quant ** + -- { } ; + + -- : Quant -> Num -> Ord -> Det ; -- these five best + -- DetQuantOrd quant num ord = + -- let theseFive = DetQuant quant num + -- in theseFive ** { s = \\c,ph => theseFive.s ! c ! ph ++ ord.s } ; --TODO: dummy implementation + +-- Whether the resulting determiner is singular or plural depends on the +-- cardinal. + +-- All parts of the determiner can be empty, except $Quant$, which is +-- the "kernel" of a determiner. It is, however, the $Num$ that determines +-- the inherent number. +{- + NumSg = { s = [] ; n = Sg ; isNum = False } ; + NumPl = { s = [] ; n = Pl ; isNum = False } ; + + -- : Card -> Num ; + NumCard card = (card ** { isNum = True }) ; + + -- : Digits -> Card ; + NumDigits dig = { s = dig.s ! NCard ; n = dig.n } ; + + -- : Numeral -> Card ; + NumNumeral num = num ; + + -- : AdN -> Card -> Card ; + AdNum adn card = card ** { s = adn.s ++ card.s } ; + + -- : Digits -> Ord ; + OrdDigits digs = digs ** { s = digs.s ! NOrd } ; + + -- : Numeral -> Ord ; + OrdNumeral num = num ; + + -- : A -> Ord ; + OrdSuperl a = { s = a.s ! AF Superl ; n = Sg } ; -- why force Sg? + +-- One can combine a numeral and a superlative. + + -- : Numeral -> A -> Ord ; -- third largest + OrdNumeralSuperl num a = num ** { s = num.s ++ a.s ! AF Superl } ; --TODO: is the word order correct? + + -- : Quant + DefArt = { s = artDef ; + indep = False ; + pref = [] ; + isDef = True } ; + -- : Quant + IndefArt = { s = artDef ; + indep = False ; + pref = [] ; + isDef = False } ; --has suffix, but turns into partitive in negative! + + -- : Pron -> Quant + PossPron pron = { s = artDef ; + indep = True ; + pref = pron.s ! Gen ; + isDef = True } ; +-} +--2 Common nouns + + -- : N -> CN + -- : N2 -> CN ; + UseN,UseN2 = ResSom.useN ; + +{- + -- : N2 -> NP -> CN ; -- mother of the king + ComplN2 n2 np = + let compl = applyPost n2.compl1 np ; + in useN n2 ** { s = \\agr => compl ++ n2.s } ; + + -- : N3 -> NP -> N2 ; -- distance from this city (to Paris) + ComplN3 n3 np = + let compl = applyPost n3.c3 np ; + in n3 ** {s = compl ++ n3.s } ; +-} + + -- : N3 -> N2 ; -- distance (from this city) + Use2N3 n3 = lin N2 n3 ** { c2 = n3.c3 } ; + + -- : N3 -> N2 ; -- distance (to Paris) + Use3N3 n3 = lin N2 n3 ; + -- : AP -> CN -> CN + AdjCN ap cn = cn ** { + s = table { IndefNom => cn.s ! Indef Sg ; -- When an adjective is added, noun loses case marker. + x => cn.s ! x } ; + mod = \\n,c => cn.mod ! n ! Abs -- If there was something before, it is now in Abs + ++ ap.s ! AF n c ; + hasMod = True + } ; + +{- + -- : CN -> RS -> CN ; + RelCN cn rs = cn ** { } ; + + + -- : CN -> Adv -> CN ; + AdvCN cn adv = cn ** { } ; + +-- Nouns can also be modified by embedded sentences and questions. +-- For some nouns this makes little sense, but we leave this for applications +-- to decide. Sentential complements are defined in VerbSom. + + -- : CN -> SC -> CN ; -- question where she sleeps + SentCN cn sc = cn ** { } ; + + +--2 Apposition + +-- This is certainly overgenerating. + + -- : CN -> NP -> CN ; -- city Paris (, numbers x and y) + ApposCN cn np = cn ** { s = } ; + + +--2 Possessive and partitive constructs + + -- : PossNP : CN -> NP -> CN ; + PossNP cn np = cn ** { } ; + + -- : CN -> NP -> CN ; -- glass of wine / two kilos of red apples + PartNP cn np = cn ** { } ; + + + +-- This is different from the partitive, as shown by many languages. + + -- : Det -> NP -> NP ; + CountNP det np = np ** + { } ; -- Nonsense for DefArt or IndefArt + +--3 Conjoinable determiners and ones with adjectives + + -- : DAP -> AP -> DAP ; -- the large (one) + AdjDAP dap ap = dap ** { } ; + + -- : Det -> DAP ; -- this (or that) + DetDAP det = det ; +-} +} diff --git a/src/somali/NumeralSom.gf b/src/somali/NumeralSom.gf new file mode 100644 index 000000000..7440347dd --- /dev/null +++ b/src/somali/NumeralSom.gf @@ -0,0 +1,117 @@ +concrete NumeralSom of Numeral = CatSom [Numeral,Digits] ** + open Prelude, ResSom in { + +oper LinDigit : Type = { s : DForm => Str ; + n : Number ; + even20 : Even20 } ; + +oper mk20Ten : Str -> Str -> Str -> Str -> LinDigit = \tri,t,fiche,h -> + { s = table { Unit => tri ; + Teen => t ; + Twenty => fiche ; + Hund => h + "TODO"} ; + even20 = Ten ; + n = Pl } ; + +oper mkeven20 : Str -> Str -> Str -> Str -> LinDigit = \se,t,trifichid,h -> + { s = table { Unit => se ; + Teen => t ; + Twenty => trifichid ; + Hund => h + "TODO" } ; + even20 = Even ; + n = Pl } ; + +param Even20 = Ten | Even ; +param DForm = Unit | Teen | Twenty | Hund ; + +--lincat Numeral = {s : Str} ; +lincat Digit = LinDigit ; +lincat Sub10 = LinDigit ; +lincat Sub100 = {s : Str ; n : Number } ; +lincat Sub1000 = {s : Str ; n : Number ; isHundred : Bool } ; +lincat Sub1000000 = {s : Str ; n : Number } ; + + +---------------------------------------------------------------------------- + + +-- num : Sub1000000 -> Numeral ; +lin num x0 = lin Numeral x0 ; + +lin n2 = mkeven20 "TODO" "TODO" "TODO" "TODO" ; +lin n3 = mk20Ten "TODO" "TODO" "TODO" "TODO"; +lin n4 = mkeven20 "TODO" "TODO" "TODO" "TODO"; +lin n5 = mk20Ten "TODO" "TODO" "TODO" "TODO"; +lin n6 = mkeven20 "TODO" "TODO" "TODO" "TODO" ; +lin n7 = mk20Ten "TODO" "TODO" "TODO" "TODO" ; +lin n8 = mkeven20 "TODO" "TODO" "TODO" "TODO" ; +lin n9 = mk20Ten "TODO" "TODO" "TODO" "TODO" ; + +lin pot01 = + {s = table {Unit => "TODO" ; Hund => "TODO" ; _ => []} ; even20 = Ten ; n = Sg }; +lin pot0 d = d ; +lin pot110 = {s = "TODO" ; n = Pl} ; +lin pot111 = {s = variants {"TODO" ; "TODO"} ; n = Pl} ; +lin pot1to19 d = {s = d.s ! Teen ; n = Pl} ; +lin pot0as1 n = {s = n.s ! Unit ; n = n.n} ; +lin pot1 d = + {s = case d.even20 of { + Even => d.s ! Twenty ; + Ten => glue (d.s ! Twenty) "TODO" } ; + n = Pl} ; +lin pot1plus d e = + {s = case d.even20 of { + Even => d.s ! Twenty ++ "TODO" ++ e.s ! Unit ; + Ten => d.s ! Twenty ++ "TODO" ++ e.s ! Teen } ; + n = Pl} ; + +lin pot1as2 n = n ** { isHundred = False } ; +lin pot2 d = {s = d.s ! Hund ; n = Pl ; isHundred = True } ; +lin pot2plus d e = + { s = d.s ! Hund ++ "TODO" ++ e.s ; + n = Pl ; + isHundred = True } ; +lin pot2as3 n = n ; +lin pot3 n = + {s = table {Sg => [] ; Pl => n.s } ! n.n ++ "TODO" ; + n = n.n } ; + + +lin pot3plus n m = + let ta = if_then_Str m.isHundred [] "TODO" ; --no `ta' between 1000 and 100 + in + { s = table {Sg => [] ; Pl => n.s } ! n.n ++ "TODO" ++ ta ++ m.s ; + n = n.n } ; + +---------------------------------------------------------------------------- + +lincat Dig = TDigit ; + +oper + TDigit : Type = { s : CardOrd => Str ; n : Number } ; + mkDig : Str -> TDigit = \c -> mk2Dig c Pl ; + + mk2Dig : Str -> Number -> TDigit = \c,num -> + { s = table { NCard => c ; + NOrd => c + "TODO" } ; + n = num } ; + + + +lin D_0 = mkDig "0" ; +lin D_1 = mk2Dig "1" Sg ; +lin D_2 = mkDig "2" ; +lin D_3 = mkDig "3" ; +lin D_4 = mkDig "4" ; +lin D_5 = mkDig "5" ; +lin D_6 = mkDig "6" ; +lin D_7 = mkDig "7" ; +lin D_8 = mkDig "8" ; +lin D_9 = mkDig "9" ; + + -- : Dig -> Digits ; +lin IDig dig = dig ; + -- : Dig -> Digits -> Digits ; +lin IIDig dig digs = digs ** {s = \\co => glue (dig.s ! co) (digs.s ! co) } ; + +} diff --git a/src/somali/ParadigmsSom.gf b/src/somali/ParadigmsSom.gf new file mode 100644 index 000000000..1f44abf1a --- /dev/null +++ b/src/somali/ParadigmsSom.gf @@ -0,0 +1,165 @@ +resource ParadigmsSom = open CatSom, ResSom, Prelude in { + +oper + +--2 Parameters +-- +-- To abstract over number, valency and (some) case names, +-- we define the following identifiers. The application programmer +-- should always use these constants instead of the constructors +-- defined in $ResSom$. + Number : Type ; + sg : Number ; + pl : Number ; + + Case : Type ; + absolutive : Case ; + nominative : Case ; + + Agr : Type ; + sgFem : Agr ; + sgMasc : Agr ; + plAgr : Agr ; + + Gender : Type ; + masc : Gender ; + fem : Gender ; + + Preposition : Type ; + ka : Preposition ; + ku : Preposition ; + la : Preposition ; + u : Preposition ; + + +--2 Nouns + + mkN : overload { + mkN : (bisad : Str) -> N ; -- Predictable nouns + mkN : (shimbir : Str) -> (fem : Gender) -> N ; -- Unpredictable gender + mkN : (maalin,maalmo : Str) -> Gender -> N ; -- Consonant cluster in stem + --mkN : N -> Gender -> N ; -- Otherwise predictable but not gender (TODO does this even happen?) + } ; + + mkPN : overload { + mkPN : Str -> PN ; -- Proper noun, default agr. P3 Sg Masc. + mkPN : Str -> Agr -> PN -- Proper noun, another agr. + } ; + +--2 Adjectives + + mkA : (yar : Str) -> CatSom.A ; + + -- mkA2 : Str -> Prep -> A2 ; + +--2 Verbs + +-- Smart paradigms + mkV : Str -> V ; + + mkV2 : overload { + mkV2 : (akhri : Str) -> V2 ; -- Regular verbs, no preposition + mkV2 : (_ : Str) -> (_ku : Preposition) -> V2 ; -- Regular verb, prep. + mkV2 : V -> Preposition -> V2 ; -- Already constructed verb with preposition + } ; + + -- TODO: actual constructors + -- mkVA : Str -> VA = \s -> lin VA (mkVerb s) ; + -- + -- mkV2A : Str -> V2A = \s -> lin V2A (mkVerb s) ; + -- mkVQ : Str -> VQ = \s -> lin VQ (mkVerb s) ; + -- mkVS : Str -> VS = \s -> lin VS (mkVerb s) ; + -- + -- mkV2V : Str -> V2V = \s -> lin V2V (mkVerb s) ; + -- mkV2S : Str -> V2S = \s -> lin V2S (mkVerb s) ; + -- mkV2Q : Str -> V2Q = \s -> lin V2Q (mkVerb s) ; + -- mkV3 : Str -> V3 = \s -> lin V3 (mkVerb s) ; + + + ----- + +--2 Structural categories + + mkPrep = overload { + mkPrep : Str -> Prep = \s -> + lin Prep (ResSom.mkPrep s s s s s s) ; + mkPrep : (x1,_,_,_,_,x6 : Str) -> Prep = \a,b,c,d,e,f -> + lin Prep (ResSom.mkPrep a b c d e f) ; + mkPrep : Preposition -> Prep = \p -> + lin Prep (prepTable ! p) ; + } ; + + -- mkConj : (_,_ : Str) -> Number -> Conj = \s1,s2,num -> + -- lin Conj { s = s1 ; s2 = s2 } ; + + -- mkSubj : Str -> Bool -> Subj = \s,b -> + -- lin Subj { } ; + + mkAdv : Str -> Adv = \s -> lin Adv {s = s ; s2 = []} ; + + mkAdV : Str -> AdV = \s -> lin AdV {s = s} ; + + mkAdA : Str -> AdA = \s -> lin AdA {s = s} ; + + +--. +------------------------------------------------------------------------------- +-- The definitions should not bother the user of the API. So they are +-- hidden from the document. + + Number = ResSom.Number ; + sg = Sg ; + pl = Pl ; + + Case = ResSom.Case ; + absolutive = Abs ; + nominative = Nom ; + + Agr = ResSom.Agreement ; + sgFem = Sg3 Fem ; + sgMasc = Sg3 Masc ; + plAgr = Pl3 ; + + Gender = ResSom.Gender ; + masc = Masc ; + fem = Fem ; + + Preposition = ResSom.Preposition ; + ka = ResSom.ka ; + ku = ResSom.ku ; + la = ResSom.la ; + u = ResSom.u ; + ------------------------ + + mkN = overload { + mkN : Str -> N = \s -> lin N (mkN1 s) ; + mkN : Str -> Gender -> N = \s,g -> lin N (mkNg s g) ; + mkN : (_,_ : Str) -> Gender -> N = \s,t,g -> lin N (nMaalin s t g) ; + --mkN : N -> Gender -> N = \n,g -> n ** {g = g } + } ; + + mkPN = overload { + mkPN : Str -> PN = \s -> lin PN (mkPNoun s sgMasc) ; + mkPN : Str -> Agr -> PN = \s,a -> lin PN (mkPNoun s a) + } ; + + mkA : (yar : Str) -> CatSom.A = \s -> lin A (mkAdj s) ; + + mkV : Str -> V = \s -> lin V (regV s) ; + + regV : Str -> Verb = \s -> cSug s ; --case s of { + -- _ + #c + #c + "o" => cJoogso s ; + -- _ + "o" => cQaado s ; ---- + -- _ + "i" => cKari s ; + -- _ + "ee" => cYaree s ; + -- _ => cSug s + -- } ; + + mkV2 = overload { + mkV2 : Str -> V2 = \s -> lin V2 (regV s ** {c2 = noPrep}) ; + mkV2 : Str -> Preposition -> V2 = \s,p -> lin V2 (regV s ** {c2 = p}) ; + mkV2 : V -> Preposition -> V2 = \v,p -> lin V2 (v ** {c2 = p}) ; + } ; +-------------------------------------------------------------------------------- + +} diff --git a/src/somali/ParamSom.gf b/src/somali/ParamSom.gf new file mode 100644 index 000000000..31461cdc1 --- /dev/null +++ b/src/somali/ParamSom.gf @@ -0,0 +1,137 @@ +resource ParamSom = ParamX ** open Prelude in { + +-------------------------------------------------------------------------------- +-- Phonology + +oper + --TODO: make patterns actually adjusted to Somali + v : pattern Str = #("a" | "e" | "i" | "o" | "u") ; + vv : pattern Str = #("aa" | "ee" | "ii" | "oo" | "uu") ; + c : pattern Str = #("m"|"n"|"p"|"b"|"t"|"d"|"k"|"g"|"f"|"v" + |"s"|"h"|"l"|"j"|"r"|"z"|"c"|"q"|"y"|"w"); + lmnr : pattern Str = #("l" | "m" | "n" | "r") ; + kpt : pattern Str = #("k" | "p" | "t") ; + gbd : pattern Str = #("g" | "b" | "d") ; + + voiced : Str -> Str = \s -> case s of { + "k" => "g" ; + "t" => "d" ; + "p" => "b" ; + _ => s } ; + +-------------------------------------------------------------------------------- +-- Morphophonology + +param + Morpheme = mO | mKa | mTa ; + +oper + allomorph : Morpheme -> Str -> Str = \x,stem -> + case x of { + mO => case last stem of { + d@("b"|"d"|"r"|"l"|"m"|"n") => d + "o" ; + "c"|"g"|"i"|"j"|"x"|"s" => "yo" ; + _ => "o" } ; + + -- Based on the table on page 21--TODO find generalisations in patterns + mTa => case stem of { + _ + ("dh") => "a" ; ---- ??? just guessing + _ + ("d"|"c"|"h"|"x"|"q"|"'"|"i"|"y"|"w") => "da" ; + _ + "l" => "sha" ; + _ => "ta" } ; + + mKa => case stem of { + _ + ("g"|"aa"|"i"|"y"|"w") => "ga" ; + _ + ("c"|"h"|"x"|"q"|"'") => "a" ; + _ + ("e"|"o") => "ha" ; + _ => "ka" } + } ; + + +-------------------------------------------------------------------------------- +-- Nouns + +param + Case = Nom | Abs ; + Gender = Masc | Fem ; + Vowel = A | E | I | O | U ; -- For vowel assimilation + + Inclusion = Excl | Incl ; + Agreement = + Sg1 + | Sg2 + | Sg3 Gender + | Pl1 Inclusion + | Pl2 + | Pl3 + | Impers ; -- Verb agrees with Sg3, but needed for preposition contraction + + NForm = + Indef Number + | Def Number Vowel -- Stems for definite and determinative suffixes + | Numerative -- When modified by a number (only distinct for some feminine nouns) + | IndefNom ; -- Special form, only fem. nouns ending in consonant + + +oper + getAgr : NForm -> Gender -> Agreement = \n,g -> + case n of { Indef Pl|Def Pl _ => Pl3 ; + _ => Sg3 g } ; + getNum : Agreement -> Number = \a -> + case a of { Sg1|Sg2|Sg3 _ => Sg ; _ => Pl } ; + +-------------------------------------------------------------------------------- +-- Adjectives + +param + AForm = AF Number Case ; ---- TODO: past tense + +-------------------------------------------------------------------------------- +-- Numerals + +-- TODO: is this necessary? +param + CardOrd = NCard | NOrd ; +-------------------------------------------------------------------------------- +-- Prepositions + +param + Preposition = u | ku | ka | la | noPrep ; + PrepCombination = ugu | uga | ula | kaga | kula | kala + | Single Preposition ; + +oper + combine : Preposition -> Preposition -> PrepCombination = \p1,p2 -> + let oneWay : Preposition => Preposition => PrepCombination = + \\x,y => case of { + => ugu ; + => uga ; + => ula ; + => kaga ; + => kula ; + => kala ; + => Single p ; + => Single p ; + => Single p } -- for trying both ways + in case oneWay ! p2 ! p1 of { + Single _ => oneWay ! p1 ! p2 ; + x => x } ; + +-------------------------------------------------------------------------------- +-- Verbs + +param + VForm = + VInf + | VPres Agreement Bool + | VNegPast + | VPast Agreement + | VFut -- agreement comes from auxiliary + | VRel -- "som är/har/…" TODO is this used in other verbs? + | VImp Number ; -- TODO negation + +-- TODO: +-- tre aspekter (enkel, progressiv, habituell), +-- fem modus (indikativ, imperativ, konjunktiv, kontiditonalis, optativ) +} diff --git a/src/somali/PhraseSom.gf b/src/somali/PhraseSom.gf new file mode 100644 index 000000000..37374a8ca --- /dev/null +++ b/src/somali/PhraseSom.gf @@ -0,0 +1,31 @@ +concrete PhraseSom of Phrase = CatSom ** open Prelude, ResSom in { + + lin + PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ; + + UttS s = s ; + -- UttQS qs = qs ; + + UttImpSg pol imp = + let ma = case pol.p of { Pos => [] ; Neg => "ma" } + in { s = ma ++ imp.s } ; + UttImpPl = UttImpSg ; + UttImpPol = UttImpSg ; + + UttIP ip = { s = ip.s ! Abs} ; + UttIAdv iadv = iadv ; + UttNP np = { s = np.s ! Abs} ; + UttVP vp = { s = linVP vp } ; + UttAdv adv = adv ; + UttCN n = {s = linCN n } ; + UttCard n = n ; + UttAP ap = { s = ap.s ! AF Sg Abs } ; + UttInterj i = i ; + + NoPConj = {s = []} ; + PConjConj conj = { s = conj.s1 ++ conj.s2 } ; + + NoVoc = {s = []} ; + VocNP np = { s = "," ++ np.s ! Abs } ; --TODO: vocative exists + +} diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf new file mode 100644 index 000000000..5b63dedb7 --- /dev/null +++ b/src/somali/QuestionSom.gf @@ -0,0 +1,74 @@ +concrete QuestionSom of Question = CatSom ** open + ResSom, (VS=VerbSom), (NS=NounSom), (AS=AdverbSom) in { + +-- A question can be formed from a clause ('yes-no question') or +-- with an interrogative. + + lin + -- : Cl -> QCl ; + -- QuestCl cl = ; + + -- : IP -> VP -> QCl ; + -- QuestVP ip vp = ; + + -- : IP -> ClSlash -> QCl ; -- whom does John love + --QuestSlash ip cls = ; + + -- : IAdv -> Cl -> QCl ; -- why does John walk + -- QuestIAdv iadv cl = { } ; + + -- : IComp -> NP -> QCl ; -- where is John? + -- QuestIComp icomp np = ; + +-- Interrogative pronouns can be formed with interrogative +-- determiners, with or without a noun. + + -- : IDet -> CN -> IP ; -- which five songs + IdetCN = NS.DetCN ; + + -- : IDet -> IP ; -- which five + IdetIP = NS.DetNP ; + +-- They can be modified with adverbs. + -- : IP -> Adv -> IP ; -- who in Paris + --AdvIP = NS.AdvNP ; + +-- Interrogative quantifiers have number forms and can take number modifiers. + + -- : IQuant -> Num -> IDet ; -- which (five) + --IdetQuant = NS.DetQuant ; + +-- Interrogative adverbs can be formed prepositionally. + -- : Prep -> IP -> IAdv ; -- with whom + PrepIP = AS.PrepNP ; + +-- They can be modified with other adverbs. + + -- : IAdv -> Adv -> IAdv ; -- where in Paris + AdvIAdv = AS.AdAdv ; + +-- Interrogative complements to copulas can be both adverbs and +-- pronouns. + + -- : IAdv -> IComp ; + CompIAdv iadv = iadv ; -- where (is it) + + -- : IP -> IComp ; + CompIP ip = { s = ip.s ! Abs } ; -- who (is it) + +{- +-- More $IP$, $IDet$, and $IAdv$ are defined in $Structural$. + +-- Wh questions with two or more question words require a new, special category. + + cat + QVP ; -- buy what where + fun + ComplSlashIP : VPSlash -> IP -> QVP ; -- buys what + AdvQVP : VP -> IAdv -> QVP ; -- lives where + AddAdvQVP : QVP -> IAdv -> QVP ; -- buys what where + + QuestQVP : IP -> QVP -> QCl ; -- who buys what where +-} + +} diff --git a/src/somali/RelativeSom.gf b/src/somali/RelativeSom.gf new file mode 100644 index 000000000..4d5fbf96e --- /dev/null +++ b/src/somali/RelativeSom.gf @@ -0,0 +1,30 @@ +concrete RelativeSom of Relative = CatSom ** open + ResSom, Prelude, (NS=NounSom), (SS=StructuralSom) in { + +{- +lin + -- : Cl -> RCl ; -- such that John loves her + RelCl cl = { } ; + + -- : RP -> VP -> RCl ; + RelVP rp vp = ; + + -- : RP -> ClSlash -> RCl ; -- whom John loves + RelSlash rp cls = ; + + + -- : RP ; + IdRP = { s = "" } ; + + -- : Prep -> NP -> RP -> RP ; -- the mother of whom + FunRP prep np rp = { s = applyPost prep whom ++ np.s ! Abs } + where { num = case np.agr of { + Sg3 _ => NS.NumSg ; + _ => NS.NumPl } ; + whom = NS.DetNP (NS.DetQuant SS.which_IQuant num) } ; + + + +-} + +} diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf new file mode 100644 index 000000000..6adafb65e --- /dev/null +++ b/src/somali/ResSom.gf @@ -0,0 +1,438 @@ +resource ResSom = ParamSom ** open Prelude, Predef, ParamSom in { + +-------------------------------------------------------------------------------- +-- Nouns +oper + + Noun : Type = {s : NForm => Str ; g : Gender} ; + Noun2 : Type = Noun ** {c2 : Preposition} ; + Noun3 : Type = Noun2 ** {c3 : Preposition} ; + + CNoun : Type = Noun ** {mod : Number => Case => Str ; hasMod : Bool} ; + + PNoun : Type = {s : Str ; a : Agreement} ; + + mkPNoun : Str -> Agreement -> PNoun = \str,agr -> {s = str ; a = agr} ; + + mkNoun : (x1,_,_,x4 : Str) -> Gender -> Noun = \wiil,wiilka,wiilal,wiilasha,gender -> + let bisadi = case gender of + { Fem => case wiil of { _ + #c => wiil+"i" ; _ => wiil} ; + Masc => wiil } ; + bisadood = case gender of + { Fem => case wiilal of { _ + "o" => wiilal+"od" ; _ => wiil} ; + Masc => wiil } ; + defStems : Str -> Vowel => Str = \s -> case s of { + ilk + "aha" => + table { A => ilk+"ah" ; + E => ilk+"eh" ; + I => ilk+"ih" ; + O => ilk+"oh" ; + U => ilk+"uh" + } ; + _ => table { _ => init s } + } ; + + in { s = table { + Indef Sg => wiil ; + Indef Pl => wiilal ; + IndefNom => bisadi ; + Numerative => bisadood ; + Def Sg vow => defStems wiilka ! vow ; + Def Pl vow => defStems wiilasha ! vow } ; + g = gender } ; + +------------------------- +-- Regular noun paradigms + nHooyo, nAabbe, nMas, nUl, nGuri, nXayawaan : Str -> Noun ; + + --1) Feminine nouns that end in -o + nHooyo hooyo = + mkNoun hooyo (init hooyo + "ada") (hooyo + "oyin") (hooyo + "oyinka") Fem ; + + --2) Masculine nouns that end in -e + nAabbe aabbe = let aabb = init aabbe in + mkNoun aabbe (aabb + "aha") (aabb + "ayaal") (aabb + "ayaasha") Masc ; + + -- 3) Masculine, plural with duplication + nMas mas = let s = last mas ; + ka = allomorph mKa mas ; + ta = allomorph mTa mas ; + sha = case ta of {"sha" => ta ; _ => s + ta } in + mkNoun mas (mas + ka) (mas + "a" + s) (mas + "a" + sha) Masc ; + + -- 4a) Feminine, plural with ó + nUl ul = let o = case last ul of { "i" => "yo" ; _ => "o" } ; + u = case last ul of { "l" => init ul ; _ => ul } ; + sha = allomorph mTa ul in + mkNoun ul (u + sha) (ul + o) (ul + "aha") Fem ; + + -- 4b) Masculine, plural with ó, 2 syllables + nGuri guri = let o = allomorph mO guri ; + ga = allomorph mKa guri ; + gury = case last guri of { -- TODO does this generalise? Or just exception? + "i" => init guri + "y" ; + _ => guri } in + mkNoun guri (guri + ga) (gury + o) (gury + "aha") Masc ; + + -- 4c) Masculine, plural with -ó, 3 syllables or longer + nXayawaan x = let ka = allomorph mKa x ; + o = allomorph mO x ; + xo = x + o in + mkNoun x (x + ka) xo (init xo + "ada") Masc ; + + nMaalin : (_,_ : Str) -> Gender -> Noun = \maalin,maalmo,g -> + let ta = case g of { Masc => allomorph mKa maalin ; + Fem => allomorph mTa maalin } ; + aha = case g of { Masc|Fem => "aha" } ; ---- ? + in mkNoun maalin (maalin + ta) maalmo (init maalmo + aha) g ; + +------------------------- +-- Smart paradigm +-- Substantiv som slutar på –o/–ad är så gott som alltid feminina, t.ex. qaáddo sked, bisád katt. +-- Substantiv som slutar på –e är så gott som alltid maskulina, t.ex. dúbbe hammare, fúre nyckel. +-- För övriga ord säger ordets form dessvärre väldigt lite om ordets genus. Däremot kan betoningens plats i ordet väldigt ofta avslöja ordets genus. Man kan alltså i flesta fall höra vilket genus ett substantiv har. + + mkN1 : Str -> Noun = \n -> case n of { + _ + ("ad"|"adh") => nUl n ; + _ + "o" => nHooyo n ; + _ + "e" => nAabbe n ; + _ + "ri" => nGuri n ; + (#c + #v + #v + #c) -- One syllable words + | (#v + #v + #c) + | (#c + #v + #c) + | (#v + #c) => nMas n ; + _ => nXayawaan n } ; + + mkNg : Str -> Gender -> Noun = \n,g -> case n of { + _ + ("r"|"n"|"l"|"g") + => case g of { + Fem => nUl n ; + Masc => mkN1 n } ; + _ => mkN1 n + } ; -- TODO: add more exceptional cases + +--------------------------------------------- +-- NP + + BaseNP : Type = { + a : Agreement ; + isPron : Bool ; + sp : Str } ; + + NounPhrase : Type = BaseNP ** {s : Case => Str} ; + + useN : Noun -> CNoun ** BaseNP = \n -> n ** + { mod = \\_,_ => [] ; hasMod = False ; + a = Sg3 n.g ; isPron = False ; sp = [] + } ; +-------------------------------------------------------------------------------- +-- Pronouns +-- De somaliska possessiva pronomenen, precis som de svenska, har två olika genusformer i singular och en enda form i plural. +-- ägaren då det ägda föremålet är +-- m.sg. f.sg.plural +-- kayga tayda kuwayga +-- kaaga taada kuwaaga +-- kiisa tiisa kuwiisa +-- keeda teeda kuweeda +-- +-- kaayaga taayada kuwayaga (1 pl. exkl.) +-- keenna teenna kuweenna (1 pl. inkl.) +-- kiinna tiinna kuwiinna +-- kooda tooda kuwooda + Pronoun : Type = NounPhrase ; + +-------------------------------------------------------------------------------- +-- Det, Quant, Card, Ord + Quant : Type = SS ; ---- TODO + + Determiner : Type = { + s : Case => Str ; + sp : Gender => Case => Str ; + d : NForm + } ; + + mkDeterminer : (x1,_,x3 : Str) -> NForm -> Determiner = \an,kani,tani,nf -> + let ani : Str = case an of { _ + #c => an+"i" ; + _ => case nf of { Def _ _ => "u" ; + _ => [] } + } ; + bind : Str -> Str = \x -> case x of { "" => [] ; _ => BIND ++ x } ; + in { s = table { Nom => bind ani ; Abs => bind an } ; + sp = table { Fem => table { Nom => tani ; Abs => init tani } ; + Masc => table { Nom => kani ; Abs => init kani } + } ; + d = nf + } ; + +-------------------------------------------------------------------------------- +-- Prepositions + +-- Prepositionen u dras obligatoriskt samman med föregående pronomen +-- så att /a/ + /u/ > /oo/. + + Prep : Type = {s : Agreement => Str} ; + + mkPrep : (x1,_,_,_,_,x6 : Str) -> Prep = \ku,ii,kuu,noo,idiin,loo -> { + s = table { + Sg1 => ii ; + Sg2 => kuu ; + Pl2 => idiin ; + Pl1 Excl => noo ; + Pl1 Incl => "i" + noo ; + Impers => loo ; + _ => ku + } + } ; + + prepTable : Preposition => Prep = table { + ku => mkPrep "ku" "igu" "kugu" "nagu" "idinku" "lagu" ; + ka => mkPrep "ka" "iga" "kaa" "naga" "idinka" "laga" ; + la => mkPrep "la" "ila" "kula" "nala" "idinla" "lala" ; + u => mkPrep "u" "ii" "kuu" "noo" "idiin" "loo" ; + noPrep => mkPrep [] "i" "ku" "na" "idin" "la" + } ; + + prepCombTable : Agreement => PrepCombination => Str = table { + Sg1 => table { ugu => "iigu" ; uga => "iiga" ; + ula => "iila" ; kaga => "igaga" ; + kula => "igula" ; kala => "igala" ; + Single p => (prepTable ! p).s ! Sg1 } ; + Sg2 => table { ugu => "kuugu" ; uga => "kaaga" ; + ula => "kuula" ; kaga => "kaaga" ; + kula => "kugula" ; kala => "kaala" ; + Single p => (prepTable ! p).s ! Sg2 } ; + Pl1 Excl => + table { ugu => "noogu" ; uga => "nooga" ; + ula => "noola" ; kaga => "nagaga" ; + kula => "nagula" ; kala => "nagala" ; + Single p => (prepTable ! p).s ! Pl1 Excl } ; + Pl1 Incl => + table { ugu => "inoogu" ; uga => "inooga" ; + ula => "inoola" ; kaga => "inagaga" ; + kula => "inagula" ; kala => "inagala" ; + Single p => (prepTable ! p).s ! Pl1 Incl } ; + + Pl2 => table { ugu => "idiinku" ; uga => "idiinka" ; + ula => "idiinla" ; kaga => "idinkaga" ; + kula => "idinkula" ; kala => "idinkala" ; + Single p => (prepTable ! p).s ! Pl2 } ; + Impers => + table { ugu => "loogu" ; uga => "looga" ; + ula => "loola" ; kaga => "lagaga" ; + kula => "lagula" ; kala => "lagala" ; + Single p => (prepTable ! p).s ! Impers } ; +-- + a => table { ugu => "ugu" ; uga => "uga" ; + ula => "ula" ; kaga => "kaga" ; + kula => "kula" ; kala => "kala" ; + Single p => (prepTable ! p).s ! a } + } ; + +-- TODO: Negationen má `inte' skrivs samman med en föregående preposition. + +-------------------------------------------------------------------------------- +-- Adjectives + +-- Sequences of adjectives follow the rules for restrictive relatives clauses, i.e. are linked by oo 'and' on an indefinite head NounPhrase and by ee 'and' on a definite NounPhrase (8.1). + + -- Komparativ + -- För att uttrycka motsvarigheten till svenskans komparativ placerar man på somaliska helt enkelt prepositionen ká 'från, av, än' framför adjektivet i fråga. Adjektivet får ingen ändelse. + -- Shan waa ay ká yar tahay siddéed. Fem är mindre än åtta. + -- Superlativ + -- Motsvarigheten till svenskans superlativ bildas med prepositionsklustret ugú som till sin betydelse närmast motsvarar svenskans allra, t.ex. + -- ugu horrayntii (det att komma) allra först + + Adjective : Type = { s : AForm => Str } ; + Adjective2 : Type = Adjective ** { c2 : Preposition } ; + + mkAdj : Str -> Adjective = \yar -> + let yaryar = duplicate yar + in { s = table { + AF Sg Abs => yar ; + AF Pl Abs => yaryar ; + AF Sg Nom => yar + "i" ; + AF Pl Nom => yaryar + "i" } + } ; + + duplicate : Str -> Str = \yar -> case yar of { + "dheer" => "dhaadheer" ; + "weyn" => "waaweyn" ; -- TODO eventually handle irregular adjectives elsewhere + y@#c + a@#v + r@#c + _ => y + a + r + yar ; + g@#c + aa@#vv + _ => g + aa + yar ; --TODO: proper patterns + _ => yar + ":plural" } ; + + AdjPhrase : Type = Adjective ; +-------------------------------------------------------------------------------- +-- Verbs + + Verb : Type = {s : VForm => Str} ; + Verb2 : Type = Verb ** {c2 : Preposition} ; + Verb3 : Type = Verb2 ** {c3 : Preposition} ; + + mkVerb : (x1,x2 : Str) -> Verb = \ark,qaat -> + let stems : {p1 : Str ; p2 : Str} = case ark of { + a + r@#c + k@#c => ; + yar + "ee" => ; + _ => } ; + arki = stems.p1 ; + arag = stems.p2 ; + arkin = case last arki of { "n" => arki ; _ => arki + "n" } ; + t : Str = case arag of { + _ + ("i"|"y") => "s" ; + _ => "t" } ; + ay : Str = case ark of { + _ + ("i"|"e") => "ey" ; + _ => "ay" } ; + n : Str = case arag of { + _ + #v => "nn" ; + _ => "n" } ; + in { s = table { + VPres (Sg1|Sg3 Masc) pol + => qaat + if_then_Str pol "aa" "o" ; + VPres (Sg2|Sg3 Fem) pol + => arag + t + if_then_Str pol "aa" "o" ; + VPres (Pl1 _) pol + => arag + n + if_then_Str pol "aa" "o" ; + VPres Pl2 pol => arag + t + "aan" ; + VPres Pl3 pol => qaat + "aan" ; + + VPast (Sg1|Sg3 Masc) + => qaat + ay ; + VPast (Sg2|Sg3 Fem) + => arag + t + ay ; + VPast (Pl1 _) => arag + n + ay ; + VPast Pl2 => arag + t + "een" ; -- kari+seen, (sug|joogsa|qaada)+teen + VPast Pl3 => qaat + "een" ; + + VImp Sg => arag ; + VImp Pl => qaat + "a" ; -- TODO: allomorphs, page 86 in Saeed + VInf => arki ; + VNegPast => arkin ; + _ => "TODO" } + } ; + +------------------------- +-- Regular verb paradigms + + cSug, cKari, cYaree, cJoogso, cQaado : Str -> Verb ; + + cSug sug = mkVerb sug sug ; -- TODO: stem/dictionary form of verbs with consonant clusters? + + cKari, cYaree = \kari -> mkVerb kari (kari+"y") ; + + cJoogso joogso = + let joogsa = init joogso + "a" ; + in mkVerb joogsa (joogsa + "d") ; + + cQaado qaado = + let qaa = drop 2 qaado + in mkVerb (qaa + "da") (qaa + "t") ; + +------------------ +-- Irregular verbs + + copula : Verb = { + s = table { + VPres Sg1 pol => if_then_Str pol "ahay" "ihi" ; + VPres Sg2 pol => if_then_Str pol "tahay" "ihid" ; + VPres (Sg3 Masc) pol => if_then_Str pol "yahay" "aha" ; + VPres (Sg3 Fem) pol => if_then_Str pol "tahay" "aha" ; + VPres (Pl1 _) pol => if_then_Str pol "nahay" "ihin" ; + VPres Pl2 pol => if_then_Str pol "tihiin" "ihidin" ; + VPres Pl3 pol => if_then_Str pol "yihiin" "aha" ; + + VPast (Sg1|Sg3 Masc) + => "ahaa" ; + VPast (Sg2|Sg3 Fem) + => "ahayd" ; + VPast (Pl1 _) => "ahayn" ; + VPast Pl2 => "ahaydeen" ; + VPast Pl3 => "ahaayeen" ; + VNegPast => "ahi" ; + VRel => "ah" ; + _ => "TODO:copula" } + } ; + -- I somaliskan används inte något kopulaverb motsvarande svenskans är mellan + -- två substantivfraser som utgör subjekt respektive predikatsfyllnad. + -- Observera också att kopulaverbet vara alltid hamnar efter det adjektiv + -- som utgör predikatsfyllnaden. + have_V : Verb = { + s = table { + VPres Sg1 _ => "leeyahay" ; + VPres Sg2 _ => "leedahay" ; + VPres (Sg3 Fem) _ => "leedahay" ; + VPres (Sg3 Masc)_ => "leeyahay" ; + VPres (Pl1 _) _ => "leenahay" ; + VPres Pl2 _ => "leedihiin" ; + VPres Pl3 _ => "leeyihiin" ; + VPast x => "l" + copula.s ! VPast x ; + VRel => "leh" ; + _ => "TODO:have_V" } ; + } ; +-- Till VERBFRASEN ansluter sig +-- · satstypsmarkörer (waa, ma...), +-- · subjekts-pronomenet la man, +-- · objektspronomenen, +-- · prepositionerna och +-- · riktnings-adverben soó (mot en plats/person), sií (bort frånen plats/person), wadá tillsammans (mot en gemensam punkt), kalá iväg, isär (bort från en gemensam punkt). +-- Riktningsadverben har ibland en mycket konkret betydelse, men många gånger är betydelsen mera abstrakt. + +-- Till satsmarkörerna, dvs. både fokusmarkörerna och satstypsmarkörerna ansluter sig +-- subjektspronomenen aan, aad, uu, ay, aynu, men inte la (man). + +------------------ +-- VP + Adverb : Type = {s,s2 : Str} ; + + Complement : Type = { + comp : Agreement => {p1,p2 : Str} -- Agreement for AP complements + } ; + + VerbPhrase : Type = Verb ** Complement ** { + isPred : Bool ; -- to choose right sentence type marker + adv : Adverb ; -- they're ~complicated~ + c2, c3 : Preposition -- can combine together and with object pronouns + } ; + + VPSlash : Type = VerbPhrase ; ---- TODO more fields + + useV : Verb -> VerbPhrase = \v -> v ** { + comp = \\_ => <[],[]> ; + isPred = False ; + adv = {s,s2 = []} ; + c2,c3 = noPrep ; + } ; + + compl : NounPhrase -> VerbPhrase -> Str = \np,vp -> + prepCombTable ! np.a ! combine vp.c2 vp.c3 ; + + complV2 : NounPhrase -> Verb2 -> Str = \np,vp -> + prepCombTable ! np.a ! combine vp.c2 noPrep ; +-------------------------------------------------------------------------------- +-- Sentences etc. + Clause : Type = {s : Bool => Str} ; -- TODO tense + ant + RClause, + ClSlash, + Sentence : Type = SS ; ---- TODO + + stmarker : Agreement => Bool => Str = \\a,b => + let stm = if_then_Str b "w" "m" + in stm + subjpron ! a ; + + stmarkerNoContr : Agreement => Bool => Str = \\a,b => + let stm = if_then_Str b "waa" "ma" + in stm ++ subjpron ! a ; + + subjpron : Agreement => Str = table { + Sg1|Pl1 _ => "aan" ; + Sg2|Pl2 => "aad" ; + Sg3 Masc => "uu" ; + _ => "ay" } ; + +-------------------------------------------------------------------------------- +-- linrefs + +oper + linVP : VerbPhrase -> Str = \vp -> vp.s ! VInf ; ---- + linCN : CNoun -> Str = \cn -> cn.s ! IndefNom ; +} diff --git a/src/somali/SentenceSom.gf b/src/somali/SentenceSom.gf new file mode 100644 index 000000000..a537fd604 --- /dev/null +++ b/src/somali/SentenceSom.gf @@ -0,0 +1,98 @@ +concrete SentenceSom of Sentence = CatSom ** open + TenseX, ResSom, (AS=AdverbSom), Prelude in { + +flags optimize=all_subs ; + +lin + +--2 Clauses + + -- : NP -> VP -> Cl + PredVP np vp = let compl = vp.comp ! np.a in { + s = \\b => + if_then_Str np.isPron [] (np.s ! Nom) + ++ compl.p1 + ++ case of { --sentence type marker + subj. pronoun + => "waa" ; + -- _ => stmarker ! np.a ! b } -- marker+pronoun contract + _ => case of { + => "waa" ++ np.s ! Nom ; -- to force some string from NP to show in the tree + => "ma" ++ np.s ! Nom ; + => stmarkerNoContr ! np.a ! b + }} + ++ vp.adv.s + ++ compl.p2 -- object pronoun for pronouns, empty for nouns + ++ vp.s ! VPres np.a b -- the verb inflected + ++ vp.adv.s2 + } ; +{- + -- : SC -> VP -> Cl ; -- that she goes is good + PredSCVP sc vp = ; + +--2 Clauses missing object noun phrases + -- : NP -> VPSlash -> ClSlash ; + SlashVP np vps = ; + + -- : ClSlash -> Adv -> ClSlash ; -- (whom) he sees today + AdvSlash cls adv = cls ** insertAdv adv cls ; + +-- SlashPrep : Cl -> Prep -> ClSlash ; -- (with whom) he walks + + -- : NP -> VS -> SSlash -> ClSlash ; -- (whom) she says that he loves +-- SlashVS np vs ss = {} ; + + + -- : Temp -> Pol -> ClSlash -> SSlash ; -- (that) she had not seen + UseSlash t p cls = UseCl t p (PredVP he_Pron cls) ; + +--2 Imperatives + -- : VP -> Imp ; + ImpVP vp = { s = linVP vp } ; + +--2 Embedded sentences + + + -- : S -> SC ; + EmbedS s = { } ; + + -- : QS -> SC ; + EmbedQS qs = { } ; + + -- : VP -> SC ; + EmbedVP vp = { s = linVP vp } ; + +--2 Sentences + + + -- : Temp -> Pol -> Cl -> S ; + UseCl temp pol cl = { s = cl.s ! temp.t ! temp.a ! pol.p ! Stat } ; + + -- : Temp -> Pol -> RCl -> RS ; + UseRCl temp pol cl = { s = cl.s ! temp.t ! temp.a ! pol.p } ; + + -- : Temp -> Pol -> QCl -> QS ; + UseQCl temp pol qcl = { s = qcl.s ! temp.t ! temp.a ! pol.p } ; + +-- An adverb can be added to the beginning of a sentence, either with comma ("externally") +-- or without: + + -- : Adv -> S -> S ; -- then I will go home + AdvS = advS ; + + -- : Adv -> S -> S ; -- next week, I will go home + ExtAdvS adv = advS {s = adv.s ++ SOFT_BIND ++ ","} ; + +-- There's an SubjS already in AdverbSom -- should this be deprecated? + -- : S -> Subj -> S -> S ; + SSubjS s1 subj s2 = AdvS (AE.SubjS subj s2) s1 ; + +-- A sentence can be modified by a relative clause referring to its contents. + + -- : S -> RS -> S ; -- she sleeps, which is good + RelS sent rs = advS { s = rs.s ! Sg3 Masc ++ SOFT_BIND ++ ","} sent ; + +oper + + advS : Adv -> SS -> SS = \a,s -> {s = a.s ++ s.s} ; +-} +} diff --git a/src/somali/StructuralSom.gf b/src/somali/StructuralSom.gf new file mode 100644 index 000000000..17a66d3e1 --- /dev/null +++ b/src/somali/StructuralSom.gf @@ -0,0 +1,195 @@ +concrete StructuralSom of Structural = CatSom ** + open Prelude, ResSom, (N=NounSom), ParadigmsSom in { + +------- +-- Ad* +{- +lin almost_AdA = mkAdA "" ; +lin almost_AdN = ss "" ; +lin at_least_AdN = ss "" ; +lin at_most_AdN = ss "" ; +lin so_AdA = ss "" ; +lin too_AdA = ss "" ; +lin very_AdA = mkAdA "" ; + +lin as_CAdv = { s = "" ; p = [] } ; +lin less_CAdv = { s = "" ; p = [] } ; +lin more_CAdv = { s = "" ; p = [] } ; + +lin how_IAdv = ss "" ; +lin how8much_IAdv = ss "" ; +lin when_IAdv = ss "" ; +lin where_IAdv = ss "" ; +lin why_IAdv = ss "" ; + +lin always_AdV = ss "" ; + +lin everywhere_Adv = ss "" ; +lin here7from_Adv = ss "" ; +lin here7to_Adv = ss "" ; +lin here_Adv = ss "" ; +lin quite_Adv = ss "" ; +lin somewhere_Adv = ss "" ; +lin there7from_Adv = ss "" ; +lin there7to_Adv = ss "" ; +lin there_Adv = ss "" ; + +-} +------- +-- Conj + +lin and_Conj = {s1 = "oo" ; s2 = [] ; n = Pl} ; +lin or_Conj = {s1 = "ama" ; s2 = [] ; n = Sg} ; -- mise with interrogatives +-- lin if_then_Conj = mkConj +-- lin both7and_DConj = mkConj "" "" pl ; +-- lin either7or_DConj = mkConj "" "" pl ; +-- +-- lin but_PConj = ss "" ; +-- lin otherwise_PConj = ss "" ; +-- lin therefore_PConj = ss "" ; + + +----------------- +-- *Det and Quant +{- +lin how8many_IDet = R.indefDet "" pl ; + +--TODO: fix predets in NounSom, figure out whether Predet should inflect +lin all_Predet = { s = "" } ; +lin not_Predet = { s = "" } ; +lin only_Predet = { s = "" } ; +lin most_Predet = { s = "" } ; + +lin every_Det = R.defDet [] pl ** + { s = mkVow } ; +lin few_Det = R.indefDet "" pl ; +lin many_Det = R.indefDet "" pl ; +lin much_Det = R.indefDet "" sg ; +lin somePl_Det = R.indefDet "" pl ; +lin someSg_Det = R.indefDet "" sg ; + +lin no_Quant = mkPrep no_Quant + +lin that_Quant = R.defDet [] sg ** { s = R.quantHori } ; +lin this_Quant = R.defDet [] sg ** { s = R.quantHau } ; +lin which_IQuant = R.defDet "" sg ** { s = R.artDef } ; + + +----- +-- NP + +lin everybody_NP = defNP "" N.NumPl ; +lin everything_NP = defNP "" N.NumSg ; +lin nobody_NP = mkVerb; "" +lin nothing_NP = defNP "" N.NumSg ; +lin somebody_NP = defNP "" N.NumSg ; +lin something_NP = defNP "" N.NumSg ; + +oper + defNP : Str -> Num -> NP = {} ; +-} + +------- +-- Prep + +-- lin above_Prep = mkPrep "" ; +-- lin after_Prep = mkPrep "" ; +-- lin before_Prep = mkPrep "" ; +-- lin behind_Prep = mkPrep "" ; +-- lin between_Prep = mkPrep "" ; +-- lin by8agent_Prep = mkPrep ; +-- lin by8means_Prep = mkPrep ; +-- lin during_Prep = mkPrep ; +-- lin except_Prep = mkPrep ; +-- lin for_Prep = mkPrep ; +-- lin from_Prep = mkPrep "" ; +-- lin in8front_Prep = mkPrep "" ; +lin in_Prep = prepTable ! ku ; +lin on_Prep = prepTable ! ku ; +-- lin part_Prep = mkPrep ; +-- lin possess_Prep = mkPrep ; +-- lin through_Prep = mkPrep ; +-- lin to_Prep = mkPrep ; +-- lin under_Prep = mkPrep "" ; +lin with_Prep = prepTable ! la ; +-- lin without_Prep = mkPrep ; + + +------- +-- Pron + +-- Pronouns are closed class, no constructor in ParadigmsSom. + + i_Pron = { + s = table {Nom => "aan" ; Abs => "i"} ; + a = Sg1 ; isPron = True ; sp = "aniga" ; + } ; + youSg_Pron = { + s = table {Nom => "aad" ; Abs => "ku"} ; + a = Sg2 ; isPron = True ; sp = "adiga" ; + } ; + he_Pron = { + s = table {Nom => "uu" ; Abs => []} ; + a = Sg3 Masc ; isPron = True ; sp = "isaga" ; + } ; + she_Pron = { + s = table {Nom => "ay" ; Abs => []} ; + a = Sg3 Fem ; isPron = True ; sp = "iyada" ; + } ; + we_Pron = { + s = table {Nom => "aan" ; Abs => "na"} ; + a = Pl1 Incl ; isPron = True ; sp = "innaga" ; + } ; + youPl_Pron = { + s = table {Nom => "aad" ; Abs => "idin"} ; + a = Pl2 ; isPron = True ; sp = "idinka" ; + } ; + they_Pron = { + s = table {Nom => "ay" ; Abs => []} ; + a = Pl3 ; isPron = True ; sp = "iyaga" ; + } ; +{- +lin whatPl_IP = ; +lin whatSg_IP = ; +lin whoPl_IP = ; +lin whoSg_IP = ; + + + + +------- +-- Subj + +lin although_Subj = mkSubj "" False ; +lin because_Subj = mkSubj "" False ; +lin if_Subj = mkSubj "" True ; +lin that_Subj = mkSubj "" False ; +lin when_Subj = mkSubj "" False ; + + +-} +------ +-- Utt + +lin language_title_Utt = ss "af soomaali" ; +lin no_Utt = ss "ma" ; +lin yes_Utt = ss "yes" ; + + +------- +-- Verb + +lin have_V2 = mkV2 have_V noPrep ; +{- +lin can8know_VV = mkV "" ; -- can (capacity) +lin can_VV = mkV "" ; -- can (possibility) +lin must_VV = mkV "" ; +lin want_VV = mkV "" ; + + +------ +-- Voc + +lin please_Voc = ss "" ; +-} +} diff --git a/src/somali/SymbolSom.gf b/src/somali/SymbolSom.gf new file mode 100644 index 000000000..cde7a9887 --- /dev/null +++ b/src/somali/SymbolSom.gf @@ -0,0 +1,50 @@ +--# -path=.:../abstract:../common:../prelude + +concrete SymbolSom of Symbol = CatSom ** + open Prelude, ParadigmsSom, ResSom, (NS=NounSom) in { + +lin + + -- : Symb -> PN ; -- x + SymbPN i = mkPN i.s ; + + -- : Int -> PN ; -- 27 + IntPN i = mkPN i.s ; + + -- : Float -> PN ; -- 3.14159 + FloatPN i = mkPN i.s ; + + -- : Card -> PN ; -- twelve [as proper name] + NumPN i = mkPN i.s ; + +{- +lin +-- CNIntNP cn i = {} ; + + -- : Det -> CN -> [Symb] -> NP ; -- (the) (2) numbers x and y + CNSymbNP det cn xs = + let cnSymb = cn ** { comp = cn.comp ++ xs.s } + in NS.DetCN det cnSymb ; + + -- : CN -> Card -> NP ; -- level five ; level 5 + CNNumNP cn i = NS.MassNP (cn ** { comp = cn.comp ++ i.s }) ; + + -- : Symb -> S ; + SymbS sy = {s = } ; + -- : Symb -> Card ; + SymbNum sy = { s = sy.s ; n = Pl } ; + + -- : Symb -> Ord ; + SymbOrd sy = { s =} ; +-} +lincat + Symb, [Symb] = SS ; + +lin + MkSymb s = s ; + + BaseSymb = infixSS "oo" ; + ConsSymb = infixSS "," ; + + +} diff --git a/src/somali/VerbSom.gf b/src/somali/VerbSom.gf new file mode 100644 index 000000000..142375fbd --- /dev/null +++ b/src/somali/VerbSom.gf @@ -0,0 +1,144 @@ +concrete VerbSom of Verb = CatSom ** open ResSom, Prelude in { + + +lin + +----- +-- VP + + UseV = ResSom.useV ; +{- + -- : VV -> VP -> VP ; + ComplVV vv vp = ; + + + -- : VS -> S -> VP ; + ComplVS vs s = ; + + -- : VQ -> QS -> VP ; + ComplVQ vq qs = ; + + -- : VA -> AP -> VP ; -- they become red + ComplVA va ap = ResSom.insertComp (CompAP ap).s (useV va) ; + + +-------- +-- Slash + + -- : V2 -> VPSlash + SlashV2a = ResSom.slashDObj ; + + + -- : V3 -> NP -> VPSlash ; -- give it (to her) + Slash2V3 v3 npNori = slashDObj v3 ** + { iobj = { s = npNori.s ! Dat ; + agr = npNori.agr } + } ; + + -- : V3 -> NP -> VPSlash ; -- give (it) to her + Slash3V3 v3 npNor = slashIObj v3 ** + { dobj = npNor ** { s = mkDObj npNor } + } ; + + + -- : V2V -> VP -> VPSlash ; -- beg (her) to go + SlashV2V v2v vp = ; + + + -- : V2S -> S -> VPSlash ; -- answer (to him) that it is good + SlashV2S v2s s = ; + + -- : V2Q -> QS -> VPSlash ; -- ask (him) who came + SlashV2Q v2q qs = ; + + -- : V2A -> AP -> VPSlash ; -- paint (it) red + SlashV2A v2a ap = slashDObj v2a ** + { comp = (CompAP ap).s } ; + + + -- : VPSlash -> NP -> VP + ComplSlash vps np = ResSom.complSlash vps np ; + + + -- : VV -> VPSlash -> VPSlash ; + -- Just like ComplVV except missing subject! + SlashVV vv vps = ComplVV vv vps ** { missing = vps.missing ; + post = vps.post } ; + + -- : V2V -> NP -> VPSlash -> VPSlash ; -- beg me to buy + SlashV2VNP v2v np vps = + ComplVV v2v vps ** + { missing = vps.missing ; + post = vps.post ; + iobj = np ** { s = np.s ! Dat } } ; + +--2 Other ways of forming verb phrases + +-- Verb phrases can also be constructed reflexively and from +-- copula-preceded complements. + + -- : VPSlash -> VP ; + ReflVP vps = ; + + -- : Comp -> VP ; + UseComp comp = + insertComp comp.s (copulaVP comp.copula) + ** {isPred = True} ; + + -- : V2 -> VP ; -- be loved + PassV2 v2 = + + -- : VP -> Adv -> VP ; -- sleep here + AdvVP vp adv = ResSom.insertAdv adv vp ; + + -- : VP -> Adv -> VP ; -- sleep , even though ... + ExtAdvVP vp adv = ResSom.insertAdv (postfixSS (SOFT_BIND ++ ",") adv) vp ; + + -- : AdV -> VP -> VP ; -- always sleep + AdVVP adv vp = ResSom.insertAdv adv vp ; + + -- : VPSlash -> Adv -> VPSlash ; -- use (it) here + AdvVPSlash vps adv = vps ** { adv = vps.adv ++ adv.s } ; + + -- : AdV -> VPSlash -> VPSlash ; -- always use (it) + AdVVPSlash adv vps = vps ** { adv = adv.s ++ vps.adv } ; +-} + -- : VP -> Prep -> VPSlash ; -- live in (it) + -- NB. We need possibly a MissingArg kind of solution here too + -- VPSlashPrep vp prep = vp ** + -- { c2 = case vp.c2 of { noPrep => prep.prep ; + -- x => x }} ; + + +{- + +--2 Complements to copula + +-- Adjectival phrases, noun phrases, and adverbs can be used. + + -- the house is big + -- the houses are big + -- I am [a house that sleeps here] + -- we are [houses that sleep here] + + -- Complement : Type = { s : Agreement => {p1,p2 : Str}} ; + + -- : AP -> Comp ; + CompAP ap = { + comp = \\a => <[], ap.s ! AF (getNum a) Abs> ; + } ; + + -- : CN -> Comp ; + CompCN cn = { } ; + + -- NP -> Comp ; + CompNP np = { } ; + + -- : Adv -> Comp ; + CompAdv adv = { } ; + +-} + -- : VP -- Copula alone; + UseCopula = useV copula ; + +} From 8ce728f393994666597cba02a707671d82cd75a2 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 1 Nov 2018 11:35:03 +0100 Subject: [PATCH 071/172] (Som) Add UseCl, UseComp, CompAP, UttS --- src/somali/AdverbSom.gf | 2 +- src/somali/MissingSom.gf | 4 --- src/somali/NounSom.gf | 9 +++---- src/somali/ParamSom.gf | 15 +++++++---- src/somali/ResSom.gf | 52 +++++++++++++++++++++++++++------------ src/somali/SentenceSom.gf | 43 ++++++++++++++++++-------------- src/somali/VerbSom.gf | 22 ++++++++--------- 7 files changed, 84 insertions(+), 63 deletions(-) diff --git a/src/somali/AdverbSom.gf b/src/somali/AdverbSom.gf index eb5cafa63..0eaaabbd6 100644 --- a/src/somali/AdverbSom.gf +++ b/src/somali/AdverbSom.gf @@ -23,7 +23,7 @@ lin -- PositAdAAdj a = { } ; -- Subordinate clauses can function as adverbs. - --: Subj -> S -> Adv ; + -- : Subj -> S -> Adv ; -- SubjS subj s = {} ; -- Comparison adverbs also work as numeral adverbs. diff --git a/src/somali/MissingSom.gf b/src/somali/MissingSom.gf index bb937ae24..36c75fb68 100644 --- a/src/somali/MissingSom.gf +++ b/src/somali/MissingSom.gf @@ -32,7 +32,6 @@ oper BaseS : S -> S -> ListS = notYet "BaseS" ; oper CAdvAP : CAdv -> AP -> NP -> AP = notYet "CAdvAP" ; oper CleftAdv : Adv -> S -> Cl = notYet "CleftAdv" ; oper CleftNP : NP -> RS -> Cl = notYet "CleftNP" ; -oper CompAP : AP -> Comp = notYet "CompAP" ; oper CompAdv : Adv -> Comp = notYet "CompAdv" ; oper CompCN : CN -> Comp = notYet "CompCN" ; oper CompIAdv : IAdv -> IComp = notYet "CompIAdv" ; @@ -152,8 +151,6 @@ oper SubjS : Subj -> S -> Adv = notYet "SubjS" ; oper Use2N3 : N3 -> N2 = notYet "Use2N3" ; oper Use3N3 : N3 -> N2 = notYet "Use3N3" ; oper UseA2 : A2 -> AP = notYet "UseA2" ; -oper UseCl : Temp -> Pol -> Cl -> S = notYet "UseCl" ; -oper UseComp : Comp -> VP = notYet "UseComp" ; oper UseComparA : A -> AP = notYet "UseComparA" ; oper UseN2 : N2 -> CN = notYet "UseN2" ; oper UsePN : PN -> NP = notYet "UsePN" ; @@ -169,7 +166,6 @@ oper UttImpPol : Pol -> Imp -> Utt = notYet "UttImpPol" ; oper UttImpSg : Pol -> Imp -> Utt = notYet "UttImpSg" ; oper UttInterj : Interj -> Utt = notYet "UttInterj" ; oper UttQS : QS -> Utt = notYet "UttQS" ; -oper UttS : S -> Utt = notYet "UttS" ; oper VPSlashPrep : VP -> Prep -> VPSlash = notYet "VPSlashPrep" ; oper above_Prep : Prep = notYet "above_Prep" ; oper active2passive : Cl -> Cl = notYet "active2passive" ; diff --git a/src/somali/NounSom.gf b/src/somali/NounSom.gf index babcd6000..4e9941e7c 100644 --- a/src/somali/NounSom.gf +++ b/src/somali/NounSom.gf @@ -117,18 +117,15 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { OrdNumeral num = num ; -- : A -> Ord ; - OrdSuperl a = { s = a.s ! AF Superl ; n = Sg } ; -- why force Sg? + OrdSuperl a = { } ; -- why force Sg? -- One can combine a numeral and a superlative. -- : Numeral -> A -> Ord ; -- third largest - OrdNumeralSuperl num a = num ** { s = num.s ++ a.s ! AF Superl } ; --TODO: is the word order correct? + OrdNumeralSuperl num a = num ** { } ; -- : Quant - DefArt = { s = artDef ; - indep = False ; - pref = [] ; - isDef = True } ; + DefArt = { } ; -- : Quant IndefArt = { s = artDef ; indep = False ; diff --git a/src/somali/ParamSom.gf b/src/somali/ParamSom.gf index 31461cdc1..267caf36b 100644 --- a/src/somali/ParamSom.gf +++ b/src/somali/ParamSom.gf @@ -14,10 +14,10 @@ oper gbd : pattern Str = #("g" | "b" | "d") ; voiced : Str -> Str = \s -> case s of { - "k" => "g" ; - "t" => "d" ; - "p" => "b" ; - _ => s } ; + "k" => "g" ; + "t" => "d" ; + "p" => "b" ; + _ => s } ; -------------------------------------------------------------------------------- -- Morphophonology @@ -92,6 +92,7 @@ param -- TODO: is this necessary? param CardOrd = NCard | NOrd ; + -------------------------------------------------------------------------------- -- Prepositions @@ -124,13 +125,17 @@ oper param VForm = VInf - | VPres Agreement Bool + | VPres Agreement Polarity | VNegPast | VPast Agreement | VFut -- agreement comes from auxiliary | VRel -- "som är/har/…" TODO is this used in other verbs? | VImp Number ; -- TODO negation +oper + if_then_Pol : Polarity -> Str -> Str -> Str = \p,t,f -> + case p of {Pos => t ; Neg => f } ; + -- TODO: -- tre aspekter (enkel, progressiv, habituell), -- fem modus (indikativ, imperativ, konjunktiv, kontiditonalis, optativ) diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index 6adafb65e..e5c736cc5 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -269,6 +269,9 @@ oper Verb2 : Type = Verb ** {c2 : Preposition} ; Verb3 : Type = Verb2 ** {c3 : Preposition} ; + -- Saeed page 79: + -- "… the reference form is the imperative singular form + -- since it corresponds to the form of the basic root." mkVerb : (x1,x2 : Str) -> Verb = \ark,qaat -> let stems : {p1 : Str ; p2 : Str} = case ark of { a + r@#c + k@#c => ; @@ -288,11 +291,11 @@ oper _ => "n" } ; in { s = table { VPres (Sg1|Sg3 Masc) pol - => qaat + if_then_Str pol "aa" "o" ; + => qaat + if_then_Pol pol "aa" "o" ; VPres (Sg2|Sg3 Fem) pol - => arag + t + if_then_Str pol "aa" "o" ; + => arag + t + if_then_Pol pol "aa" "o" ; VPres (Pl1 _) pol - => arag + n + if_then_Str pol "aa" "o" ; + => arag + n + if_then_Pol pol "aa" "o" ; VPres Pl2 pol => arag + t + "aan" ; VPres Pl3 pol => qaat + "aan" ; @@ -333,15 +336,15 @@ oper copula : Verb = { s = table { - VPres Sg1 pol => if_then_Str pol "ahay" "ihi" ; - VPres Sg2 pol => if_then_Str pol "tahay" "ihid" ; - VPres (Sg3 Masc) pol => if_then_Str pol "yahay" "aha" ; - VPres (Sg3 Fem) pol => if_then_Str pol "tahay" "aha" ; - VPres (Pl1 _) pol => if_then_Str pol "nahay" "ihin" ; - VPres Pl2 pol => if_then_Str pol "tihiin" "ihidin" ; - VPres Pl3 pol => if_then_Str pol "yihiin" "aha" ; + VPres Sg1 pol => if_then_Pol pol "ahay" "ihi" ; + VPres Sg2 pol => if_then_Pol pol "tahay" "ihid" ; + VPres (Sg3 Masc|Impers) pol => if_then_Pol pol "yahay" "aha" ; + VPres (Sg3 Fem) pol => if_then_Pol pol "tahay" "aha" ; + VPres (Pl1 _) pol => if_then_Pol pol "nahay" "ihin" ; + VPres Pl2 pol => if_then_Pol pol "tihiin" "ihidin" ; + VPres Pl3 pol => if_then_Pol pol "yihiin" "aha" ; - VPast (Sg1|Sg3 Masc) + VPast (Sg1|Sg3 Masc|Impers) => "ahaa" ; VPast (Sg2|Sg3 Fem) => "ahayd" ; @@ -410,17 +413,34 @@ oper prepCombTable ! np.a ! combine vp.c2 noPrep ; -------------------------------------------------------------------------------- -- Sentences etc. - Clause : Type = {s : Bool => Str} ; -- TODO tense + ant + Clause : Type = {s : Tense => Anteriority => Polarity => Str} ; RClause, ClSlash, Sentence : Type = SS ; ---- TODO - stmarker : Agreement => Bool => Str = \\a,b => - let stm = if_then_Str b "w" "m" + vf : Tense -> Anteriority -> Polarity -> Agreement -> Verb + -> {fin : Str ; inf : Str} = \t,ant,p,agr,vp -> + let pastV : Verb -> Str = \v -> + case p of { Neg => v.s ! VNegPast ; + Pos => v.s ! VPast agr } ; + presV : Verb -> Str = \v -> v.s ! VPres agr p ; + in case of { + => {fin = presV vp ; inf = [] } ; + => {fin = presV copula ; inf = vp.s ! VInf } ; ---- just guessing + => {fin = pastV vp ; inf = [] } ; + => {fin = pastV copula ; inf = vp.s ! VInf } ; ---- TODO: habitual aspect + <_Fut,Simul> => {fin = presV copula ; inf = vp.s ! VFut} ; + <_Fut,Anter> => {fin = pastV copula ; inf = vp.s ! VFut} + -- => {fin = ? ; inf = ?} ; -- TODO conditional + -- => {fin = ? ; inf = ?} -- TODO conditional + } ; + + stmarker : Agreement => Polarity => Str = \\a,b => + let stm = if_then_Pol b "w" "m" in stm + subjpron ! a ; - stmarkerNoContr : Agreement => Bool => Str = \\a,b => - let stm = if_then_Str b "waa" "ma" + stmarkerNoContr : Agreement => Polarity => Str = \\a,b => + let stm = if_then_Pol b "waa" "ma" in stm ++ subjpron ! a ; subjpron : Agreement => Str = table { diff --git a/src/somali/SentenceSom.gf b/src/somali/SentenceSom.gf index a537fd604..93d52274c 100644 --- a/src/somali/SentenceSom.gf +++ b/src/somali/SentenceSom.gf @@ -8,22 +8,27 @@ lin --2 Clauses -- : NP -> VP -> Cl - PredVP np vp = let compl = vp.comp ! np.a in { - s = \\b => - if_then_Str np.isPron [] (np.s ! Nom) - ++ compl.p1 - ++ case of { --sentence type marker + subj. pronoun - => "waa" ; - -- _ => stmarker ! np.a ! b } -- marker+pronoun contract - _ => case of { - => "waa" ++ np.s ! Nom ; -- to force some string from NP to show in the tree - => "ma" ++ np.s ! Nom ; - => stmarkerNoContr ! np.a ! b - }} - ++ vp.adv.s - ++ compl.p2 -- object pronoun for pronouns, empty for nouns - ++ vp.s ! VPres np.a b -- the verb inflected - ++ vp.adv.s2 + PredVP np vp = { + s = \\t,a,p => + let pred : {fin : Str ; inf : Str} = vf t a p np.a vp ; + subj : Str = if_then_Str np.isPron [] (np.s ! Nom) ; + obj : {p1,p2 : Str} = vp.comp ! np.a ; + stm : Str = + case of { + => "waa" ; + -- _ => stmarker ! np.a ! b } -- marker+pronoun contract + _ => case of { + => "waa" ++ np.s ! Nom ; -- to force some string from NP to show in the tree + => "ma" ++ np.s ! Nom ; + => stmarkerNoContr ! np.a ! p }} ; + in subj -- subject if it's a noun + ++ obj.p1 -- object if it's a noun + ++ stm -- sentence type marker + possible subj. pronoun + ++ vp.adv.s ---- TODO: can it contract with obj. pronoun? + ++ obj.p2 -- object if it's a pronoun + ++ pred.fin -- the verb inflected + ++ pred.inf -- potential participle + ++ vp.adv.s2 ---- I have no idea /IL } ; {- -- : SC -> VP -> Cl ; -- that she goes is good @@ -63,10 +68,10 @@ lin --2 Sentences - +-} -- : Temp -> Pol -> Cl -> S ; - UseCl temp pol cl = { s = cl.s ! temp.t ! temp.a ! pol.p ! Stat } ; - + UseCl temp pol cl = { s = cl.s ! temp.t ! temp.a ! pol.p } ; +{- -- : Temp -> Pol -> RCl -> RS ; UseRCl temp pol cl = { s = cl.s ! temp.t ! temp.a ! pol.p } ; diff --git a/src/somali/VerbSom.gf b/src/somali/VerbSom.gf index 142375fbd..d9da09345 100644 --- a/src/somali/VerbSom.gf +++ b/src/somali/VerbSom.gf @@ -79,23 +79,23 @@ lin -- : VPSlash -> VP ; ReflVP vps = ; - +-} -- : Comp -> VP ; - UseComp comp = - insertComp comp.s (copulaVP comp.copula) - ** {isPred = True} ; - + UseComp comp = UseCopula ** comp ** { + isPred = True + } ; +{- -- : V2 -> VP ; -- be loved PassV2 v2 = -- : VP -> Adv -> VP ; -- sleep here - AdvVP vp adv = ResSom.insertAdv adv vp ; + AdvVP vp adv = vp ** {adv = adv} ; ---- TODO: how about combining adverbs? -- : VP -> Adv -> VP ; -- sleep , even though ... - ExtAdvVP vp adv = ResSom.insertAdv (postfixSS (SOFT_BIND ++ ",") adv) vp ; + ExtAdvVP vp adv = ; -- : AdV -> VP -> VP ; -- always sleep - AdVVP adv vp = ResSom.insertAdv adv vp ; + AdVVP adv vp = vp ** {adv = adv} ; -- : VPSlash -> Adv -> VPSlash ; -- use (it) here AdvVPSlash vps adv = vps ** { adv = vps.adv ++ adv.s } ; @@ -110,7 +110,7 @@ lin -- x => x }} ; -{- + --2 Complements to copula @@ -121,13 +121,11 @@ lin -- I am [a house that sleeps here] -- we are [houses that sleep here] - -- Complement : Type = { s : Agreement => {p1,p2 : Str}} ; - -- : AP -> Comp ; CompAP ap = { comp = \\a => <[], ap.s ! AF (getNum a) Abs> ; } ; - +{-} -- : CN -> Comp ; CompCN cn = { } ; From da129e40efc6590a53a27d4fc792c9899959d4d0 Mon Sep 17 00:00:00 2001 From: bruno cuconato Date: Thu, 1 Nov 2018 14:24:20 +0000 Subject: [PATCH 072/172] (Common) not all cats are linearized to SS see `CAdv`, for instance. --- src/abstract/Common.gf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/abstract/Common.gf b/src/abstract/Common.gf index 0e7a57637..3e852978e 100644 --- a/src/abstract/Common.gf +++ b/src/abstract/Common.gf @@ -1,7 +1,7 @@ --1 Common: Structures with Common Implementations. --- This module defines the categories that uniformly have the --- linearization type ${s:Str}$ in all languages. +-- This module defines the categories that uniformly have the same +-- linearization type (usually ${s:Str}$) in all languages. abstract Common = { From a74460a0e166fb1b28531abe21006c6de8db77ee Mon Sep 17 00:00:00 2001 From: odanoburu Date: Thu, 1 Nov 2018 20:58:12 +0000 Subject: [PATCH 073/172] =?UTF-8?q?(BeschPor)=20correct=20come=C3=A7ar=20a?= =?UTF-8?q?nd=20peneirar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit also add documentation on verb paradigms --- src/portuguese/BeschPor.gf | 278 ++++++++++++++++++++++++++++--------- src/portuguese/DiffPor.gf | 2 +- 2 files changed, 216 insertions(+), 64 deletions(-) diff --git a/src/portuguese/BeschPor.gf b/src/portuguese/BeschPor.gf index cf3c5ea8d..e8607591f 100644 --- a/src/portuguese/BeschPor.gf +++ b/src/portuguese/BeschPor.gf @@ -71,7 +71,11 @@ oper -- or in =Ryan, M. A. Conjugação dos Verbos em Português. ática, -- 1991.= + -- the numbers in the comments below the oper declaration are the + -- verb's paradigm numbers in bescherelle and in Ryan + oper ter_Besch : Str -> Verbum = \ter -> +-- 1 | r3 let x_ = Predef.tk 3 ter in {s = table { VI Infn => x_ + "ter" ; @@ -141,6 +145,7 @@ oper ter_Besch : Str -> Verbum = \ter -> } ; oper haver_Besch : Str -> Verbum = \haver -> +-- 2 | r4 let x_ = Predef.tk 5 haver in {s = table { VI Infn => x_ + "haver" ; @@ -210,6 +215,7 @@ oper haver_Besch : Str -> Verbum = \haver -> } ; oper ser_Besch : Str -> Verbum = \ser -> +-- 3 | r1 let x_ = Predef.tk 3 ser in {s = table { VI Infn => x_ + "ser" ; @@ -279,6 +285,7 @@ oper ser_Besch : Str -> Verbum = \ser -> } ; oper comprar_Besch : Str -> Verbum = \comprar -> +-- 4 | r5 let compr_ = Predef.tk 2 comprar in {s = table { VI Infn => compr_ + "ar" ; @@ -348,6 +355,7 @@ oper comprar_Besch : Str -> Verbum = \comprar -> } ; oper vender_Besch : Str -> Verbum = \vender -> +-- 5 | r6 let vend_ = Predef.tk 2 vender in {s = table { VI Infn => vend_ + "er" ; @@ -417,6 +425,7 @@ oper vender_Besch : Str -> Verbum = \vender -> } ; oper garantir_Besch : Str -> Verbum = \garantir -> +-- 6 | r7 let garant_ = Predef.tk 2 garantir in {s = table { VI Infn => garant_ + "ir" ; @@ -486,6 +495,7 @@ oper garantir_Besch : Str -> Verbum = \garantir -> } ; oper estar_Besch : Str -> Verbum = \estar -> +-- 10 | r2 let est_ = Predef.tk 2 estar in {s = table { VI Infn => est_ + "ar" ; @@ -555,6 +565,7 @@ oper estar_Besch : Str -> Verbum = \estar -> } ; oper dar_Besch : Str -> Verbum = \dar -> +-- 11 | r59 let x_ = Predef.tk 3 dar in {s = table { VI Infn => x_ + "dar" ; @@ -624,6 +635,7 @@ oper dar_Besch : Str -> Verbum = \dar -> } ; oper ficar_Besch : Str -> Verbum = \ficar -> +-- 12 | r23 let x_ = Predef.tk 5 ficar in {s = table { VI Infn => x_ + "ficar" ; @@ -693,75 +705,77 @@ oper ficar_Besch : Str -> Verbum = \ficar -> } ; oper começar_Besch : Str -> Verbum = \começar -> - let x_ = Predef.tk 7 começar in +-- 13 | r24 + let come_ = Predef.tk 3 começar in {s = table { - VI Infn => x_ + "começar" ; - VI Ger => x_ + "começando" ; - VI Part => x_ + "começado" ; - VPB (Pres Ind Sg P1) => x_ + "começo" ; - VPB (Pres Ind Sg P2) => x_ + "começas" ; - VPB (Pres Ind Sg P3) => x_ + "começa" ; - VPB (Pres Ind Pl P1) => x_ + "começamos" ; - VPB (Pres Ind Pl P2) => x_ + "começais" ; - VPB (Pres Ind Pl P3) => x_ + "começam" ; - VPB (Pres Sub Sg P1) => x_ + "comece" ; - VPB (Pres Sub Sg P2) => x_ + "comeces" ; - VPB (Pres Sub Sg P3) => x_ + "comece" ; - VPB (Pres Sub Pl P1) => x_ + "comecemos" ; - VPB (Pres Sub Pl P2) => x_ + "comeceis" ; - VPB (Pres Sub Pl P3) => x_ + "comecem" ; - VPB (PretI Ind Sg P1) => x_ + "começava" ; --# notpresent - VPB (PretI Ind Sg P2) => x_ + "começavas" ; --# notpresent - VPB (PretI Ind Sg P3) => x_ + "começava" ; --# notpresent - VPB (PretI Ind Pl P1) => x_ + "começávamos" ; --# notpresent - VPB (PretI Ind Pl P2) => x_ + "começáveis" ; --# notpresent - VPB (PretI Ind Pl P3) => x_ + "começavam" ; --# notpresent - VPB (PretI Sub Sg P1) => x_ + "começasse" ; --# notpresent - VPB (PretI Sub Sg P2) => x_ + "começasses" ; --# notpresent - VPB (PretI Sub Sg P3) => x_ + "começasse" ; --# notpresent - VPB (PretI Sub Pl P1) => x_ + "começássemos" ; --# notpresent - VPB (PretI Sub Pl P2) => x_ + "começasseis" ; --# notpresent - VPB (PretI Sub Pl P3) => x_ + "começassem" ; --# notpresent - VPB (MQPerf Sg P1) => x_ + "começara" ; --# notpresent - VPB (MQPerf Sg P2) => x_ + "começaras" ; --# notpresent - VPB (MQPerf Sg P3) => x_ + "começara" ; --# notpresent - VPB (MQPerf Pl P1) => x_ + "começáramos" ; --# notpresent - VPB (MQPerf Pl P2) => x_ + "começáreis" ; --# notpresent - VPB (MQPerf Pl P3) => x_ + "começaram" ; --# notpresent - VPB (PretP Sg P1) => x_ + "comecei" ; --# notpresent - VPB (PretP Sg P2) => x_ + "começaste" ; --# notpresent - VPB (PretP Sg P3) => x_ + "começou" ; --# notpresent - VPB (PretP Pl P1) => x_ + vars "começamos" "começámos" ; --# notpresent - VPB (PretP Pl P2) => x_ + "começastes" ; --# notpresent - VPB (PretP Pl P3) => x_ + "começaram" ; --# notpresent - VPB (Fut Ind Sg P1) => x_ + "começarei" ; --# notpresent - VPB (Fut Ind Sg P2) => x_ + "começarás" ; --# notpresent - VPB (Fut Ind Sg P3) => x_ + "começará" ; --# notpresent - VPB (Fut Ind Pl P1) => x_ + "começaremos" ; --# notpresent - VPB (Fut Ind Pl P2) => x_ + "começareis" ; --# notpresent - VPB (Fut Ind Pl P3) => x_ + "começarão" ; --# notpresent - VPB (Fut Sub Sg P1) => x_ + "começar" ; --# notpresent - VPB (Fut Sub Sg P2) => x_ + "começares" ; --# notpresent - VPB (Fut Sub Sg P3) => x_ + "começar" ; --# notpresent - VPB (Fut Sub Pl P1) => x_ + "começarmos" ; --# notpresent - VPB (Fut Sub Pl P2) => x_ + "começardes" ; --# notpresent - VPB (Fut Sub Pl P3) => x_ + "começarem" ; --# notpresent - VPB (Cond Sg P1) => x_ + "começaria" ; --# notpresent - VPB (Cond Sg P2) => x_ + "começarias" ; --# notpresent - VPB (Cond Sg P3) => x_ + "começaria" ; --# notpresent - VPB (Cond Pl P1) => x_ + "começaríamos" ; --# notpresent - VPB (Cond Pl P2) => x_ + "começarieis" ; --# notpresent - VPB (Cond Pl P3) => x_ + "começariam" ; --# notpresent - VPB (Imper Sg P2) => x_ + "começa" ; - VPB (Imper Sg P3) => x_ + "comece" ; - VPB (Imper Pl P1) => x_ + "comecemos" ; - VPB (Imper Pl P2) => x_ + "começai" ; - VPB (Imper Pl P3) => x_ + "comecem" ; + VI Infn => come_ + "çar" ; + VI Ger => come_ + "çando" ; + VI Part => come_ + "çado" ; + VPB (Pres Ind Sg P1) => come_ + "ço" ; + VPB (Pres Ind Sg P2) => come_ + "ças" ; + VPB (Pres Ind Sg P3) => come_ + "ça" ; + VPB (Pres Ind Pl P1) => come_ + "çamos" ; + VPB (Pres Ind Pl P2) => come_ + "çais" ; + VPB (Pres Ind Pl P3) => come_ + "çam" ; + VPB (Pres Sub Sg P1) => come_ + "ce" ; + VPB (Pres Sub Sg P2) => come_ + "ces" ; + VPB (Pres Sub Sg P3) => come_ + "ce" ; + VPB (Pres Sub Pl P1) => come_ + "cemos" ; + VPB (Pres Sub Pl P2) => come_ + "ceis" ; + VPB (Pres Sub Pl P3) => come_ + "cem" ; + VPB (PretI Ind Sg P1) => come_ + "çava" ; --# notpresent + VPB (PretI Ind Sg P2) => come_ + "çavas" ; --# notpresent + VPB (PretI Ind Sg P3) => come_ + "çava" ; --# notpresent + VPB (PretI Ind Pl P1) => come_ + "çávamos" ; --# notpresent + VPB (PretI Ind Pl P2) => come_ + "çáveis" ; --# notpresent + VPB (PretI Ind Pl P3) => come_ + "çavam" ; --# notpresent + VPB (PretI Sub Sg P1) => come_ + "çasse" ; --# notpresent + VPB (PretI Sub Sg P2) => come_ + "çasses" ; --# notpresent + VPB (PretI Sub Sg P3) => come_ + "çasse" ; --# notpresent + VPB (PretI Sub Pl P1) => come_ + "çássemos" ; --# notpresent + VPB (PretI Sub Pl P2) => come_ + "çasseis" ; --# notpresent + VPB (PretI Sub Pl P3) => come_ + "çassem" ; --# notpresent + VPB (MQPerf Sg P1) => come_ + "çara" ; --# notpresent + VPB (MQPerf Sg P2) => come_ + "çaras" ; --# notpresent + VPB (MQPerf Sg P3) => come_ + "çara" ; --# notpresent + VPB (MQPerf Pl P1) => come_ + "çáramos" ; --# notpresent + VPB (MQPerf Pl P2) => come_ + "çáreis" ; --# notpresent + VPB (MQPerf Pl P3) => come_ + "çaram" ; --# notpresent + VPB (PretP Sg P1) => come_ + "cei" ; --# notpresent + VPB (PretP Sg P2) => come_ + "çaste" ; --# notpresent + VPB (PretP Sg P3) => come_ + "çou" ; --# notpresent + VPB (PretP Pl P1) => come_ + vars "çamos" "çámos" ; --# notpresent + VPB (PretP Pl P2) => come_ + "çastes" ; --# notpresent + VPB (PretP Pl P3) => come_ + "çaram" ; --# notpresent + VPB (Fut Ind Sg P1) => come_ + "çarei" ; --# notpresent + VPB (Fut Ind Sg P2) => come_ + "çarás" ; --# notpresent + VPB (Fut Ind Sg P3) => come_ + "çará" ; --# notpresent + VPB (Fut Ind Pl P1) => come_ + "çaremos" ; --# notpresent + VPB (Fut Ind Pl P2) => come_ + "çareis" ; --# notpresent + VPB (Fut Ind Pl P3) => come_ + "çarão" ; --# notpresent + VPB (Fut Sub Sg P1) => come_ + "çar" ; --# notpresent + VPB (Fut Sub Sg P2) => come_ + "çares" ; --# notpresent + VPB (Fut Sub Sg P3) => come_ + "çar" ; --# notpresent + VPB (Fut Sub Pl P1) => come_ + "çarmos" ; --# notpresent + VPB (Fut Sub Pl P2) => come_ + "çardes" ; --# notpresent + VPB (Fut Sub Pl P3) => come_ + "çarem" ; --# notpresent + VPB (Cond Sg P1) => come_ + "çaria" ; --# notpresent + VPB (Cond Sg P2) => come_ + "çarias" ; --# notpresent + VPB (Cond Sg P3) => come_ + "çaria" ; --# notpresent + VPB (Cond Pl P1) => come_ + "çaríamos" ; --# notpresent + VPB (Cond Pl P2) => come_ + "çarieis" ; --# notpresent + VPB (Cond Pl P3) => come_ + "çariam" ; --# notpresent + VPB (Imper Sg P2) => come_ + "ça" ; + VPB (Imper Sg P3) => come_ + "ce" ; + VPB (Imper Pl P1) => come_ + "cemos" ; + VPB (Imper Pl P2) => come_ + "çai" ; + VPB (Imper Pl P3) => come_ + "cem" ; VPB (Imper Sg P1) => nonExist } } ; oper chegar_Besch : Str -> Verbum = \chegar -> +-- 14 | r26 let cheg_ = Predef.tk 2 chegar in {s = table { VI Infn => cheg_ + "ar" ; @@ -831,6 +845,7 @@ oper chegar_Besch : Str -> Verbum = \chegar -> } ; oper recear_Besch : Str -> Verbum = \recear -> +-- 15 | r46 let rec_ = Predef.tk 3 recear in {s = table { VI Infn => rec_ + "ear" ; @@ -900,6 +915,7 @@ oper recear_Besch : Str -> Verbum = \recear -> } ; oper anunciar_Besch : Str -> Verbum = \anunciar -> +-- 16 | r46 let anunci_ = Predef.tk 2 anunciar in {s = table { VI Infn => anunci_ + "ar" ; @@ -969,6 +985,7 @@ oper anunciar_Besch : Str -> Verbum = \anunciar -> } ; oper odiar_Besch : Str -> Verbum = \odiar -> +-- 17 | r46 let od_ = Predef.tk 3 odiar in {s = table { VI Infn => od_ + "iar" ; @@ -1038,6 +1055,7 @@ oper odiar_Besch : Str -> Verbum = \odiar -> } ; oper comerciar_Besch : Str -> Verbum = \comerciar -> +-- 18 | r36 let comerc_ = Predef.tk 3 comerciar in {s = table { VI Infn => comerc_ + "iar" ; @@ -1107,6 +1125,7 @@ oper comerciar_Besch : Str -> Verbum = \comerciar -> } ; oper saudar_Besch : Str -> Verbum = \saudar -> +-- 19 | r16 let sa_ = Predef.tk 4 saudar in {s = table { VI Infn => sa_ + "udar" ; @@ -1176,6 +1195,7 @@ oper saudar_Besch : Str -> Verbum = \saudar -> } ; oper perdoar_Besch : Str -> Verbum = \perdoar -> +-- 20 | r38 let perd_ = Predef.tk 3 perdoar in {s = table { VI Infn => perd_ + "oar" ; @@ -1245,6 +1265,7 @@ oper perdoar_Besch : Str -> Verbum = \perdoar -> } ; oper averiguar_Besch : Str -> Verbum = \averiguar -> +-- 21 | r30 let averigu_ = Predef.tk 2 averiguar in {s = table { VI Infn => averigu_ + "ar" ; @@ -1314,6 +1335,7 @@ oper averiguar_Besch : Str -> Verbum = \averiguar -> } ; oper neviscar_Besch : Str -> Verbum = \neviscar -> +-- 22 | r23 let n_ = Predef.tk 7 neviscar in {s = table { VI Infn => n_ + "eviscar" ; @@ -1383,6 +1405,7 @@ oper neviscar_Besch : Str -> Verbum = \neviscar -> } ; oper adequar_Besch : Str -> Verbum = \adequar -> +-- 23 | r82 let adequ_ = Predef.tk 2 adequar in {s = table { VI Infn => adequ_ + "ar" ; @@ -1452,6 +1475,7 @@ oper adequar_Besch : Str -> Verbum = \adequar -> } ; oper relampaguear_Besch : Str -> Verbum = \relampaguear -> +-- 24 let relamp_ = Predef.tk 6 relampaguear in {s = table { VI Infn => relamp_ + "aguear" ; @@ -1521,6 +1545,7 @@ oper relampaguear_Besch : Str -> Verbum = \relampaguear -> } ; oper aquecer_Besch : Str -> Verbum = \aquecer -> +-- 25 | r25 let aque_ = Predef.tk 3 aquecer in {s = table { VI Infn => aque_ + "cer" ; @@ -1590,6 +1615,7 @@ oper aquecer_Besch : Str -> Verbum = \aquecer -> } ; oper proteger_Besch : Str -> Verbum = \proteger -> +-- 26 | r27 let prote_ = Predef.tk 3 proteger in {s = table { VI Infn => prote_ + "ger" ; @@ -1659,6 +1685,7 @@ oper proteger_Besch : Str -> Verbum = \proteger -> } ; oper erguer_Besch : Str -> Verbum = \erguer -> +-- 27 | r32 let erg_ = Predef.tk 3 erguer in {s = table { VI Infn => erg_ + "uer" ; @@ -1728,6 +1755,7 @@ oper erguer_Besch : Str -> Verbum = \erguer -> } ; oper moer_Besch : Str -> Verbum = \moer -> +-- 28 | r39 let m_ = Predef.tk 3 moer in {s = table { VI Infn => m_ + "oer" ; @@ -1797,6 +1825,7 @@ oper moer_Besch : Str -> Verbum = \moer -> } ; oper dizer_Besch : Str -> Verbum = \dizer -> +-- 29 | r60 let di_ = Predef.tk 3 dizer in {s = table { VI Infn => di_ + "zer" ; @@ -1866,6 +1895,7 @@ oper dizer_Besch : Str -> Verbum = \dizer -> } ; oper trazer_Besch : Str -> Verbum = \trazer -> +-- 30 | r73 let tr_ = Predef.tk 4 trazer in {s = table { VI Infn => tr_ + "azer" ; @@ -1935,6 +1965,7 @@ oper trazer_Besch : Str -> Verbum = \trazer -> } ; oper fazer_Besch : Str -> Verbum = \fazer -> +-- 31 | r61 let f_ = Predef.tk 4 fazer in {s = table { VI Infn => f_ + "azer" ; @@ -2004,6 +2035,7 @@ oper fazer_Besch : Str -> Verbum = \fazer -> } ; oper aprazer_Besch : Str -> Verbum = \aprazer -> +-- 32 | r55 let apr_ = Predef.tk 4 aprazer in {s = table { VI Infn => apr_ + "azer" ; @@ -2073,6 +2105,7 @@ oper aprazer_Besch : Str -> Verbum = \aprazer -> } ; oper jazer_Besch : Str -> Verbum = \jazer -> +-- 33 | r43 let jaz_ = Predef.tk 2 jazer in {s = table { VI Infn => jaz_ + "er" ; @@ -2142,6 +2175,7 @@ oper jazer_Besch : Str -> Verbum = \jazer -> } ; oper caber_Besch : Str -> Verbum = \caber -> +-- 34 | r56 let c_ = Predef.tk 4 caber in {s = table { VI Infn => c_ + "aber" ; @@ -2211,6 +2245,7 @@ oper caber_Besch : Str -> Verbum = \caber -> } ; oper saber_Besch : Str -> Verbum = \saber -> +-- 35 | r72 let s_ = Predef.tk 4 saber in {s = table { VI Infn => s_ + "aber" ; @@ -2280,6 +2315,7 @@ oper saber_Besch : Str -> Verbum = \saber -> } ; oper poder_Besch : Str -> Verbum = \poder -> +-- 36 | r66 let p_ = Predef.tk 4 poder in {s = table { VI Infn => p_ + "oder" ; @@ -2349,6 +2385,7 @@ oper poder_Besch : Str -> Verbum = \poder -> } ; oper crer_Besch : Str -> Verbum = \crer -> +-- 37 | r58 let cr_ = Predef.tk 2 crer in {s = table { VI Infn => cr_ + "er" ; @@ -2418,6 +2455,7 @@ oper crer_Besch : Str -> Verbum = \crer -> } ; oper querer_Besch : Str -> Verbum = \querer -> +-- 38 | r69 let qu_ = Predef.tk 4 querer in {s = table { VI Infn => qu_ + "erer" ; @@ -2487,6 +2525,7 @@ oper querer_Besch : Str -> Verbum = \querer -> } ; oper requerer_Besch : Str -> Verbum = \requerer -> +-- 39 | r70 let reque_ = Predef.tk 3 requerer in {s = table { VI Infn => reque_ + "rer" ; @@ -2556,6 +2595,7 @@ oper requerer_Besch : Str -> Verbum = \requerer -> } ; oper ver_Besch : Str -> Verbum = \ver -> +-- 40 | r25 let v_ = Predef.tk 2 ver in {s = table { VI Infn => v_ + "er" ; @@ -2625,6 +2665,7 @@ oper ver_Besch : Str -> Verbum = \ver -> } ; oper prover_Besch : Str -> Verbum = \prover -> +-- 41 | r68 let prov_ = Predef.tk 2 prover in {s = table { VI Infn => prov_ + "er" ; @@ -2694,6 +2735,7 @@ oper prover_Besch : Str -> Verbum = \prover -> } ; oper ler_Besch : Str -> Verbum = \ler -> +-- 42 | r58 let l_ = Predef.tk 2 ler in {s = table { VI Infn => l_ + "er" ; @@ -2763,6 +2805,7 @@ oper ler_Besch : Str -> Verbum = \ler -> } ; oper valer_Besch : Str -> Verbum = \valer -> +-- 43 | r74 let val_ = Predef.tk 2 valer in {s = table { VI Infn => val_ + "er" ; @@ -2832,6 +2875,7 @@ oper valer_Besch : Str -> Verbum = \valer -> } ; oper perder_Besch : Str -> Verbum = \perder -> +-- 44 | r65 let per_ = Predef.tk 3 perder in {s = table { VI Infn => per_ + "der" ; @@ -2901,6 +2945,7 @@ oper perder_Besch : Str -> Verbum = \perder -> } ; oper pôr_Besch : Str -> Verbum = \pôr -> +-- 45 | r67 let p_ = Predef.tk 2 pôr in {s = table { VI Infn => p_ + "ôr" ; @@ -2970,6 +3015,7 @@ oper pôr_Besch : Str -> Verbum = \pôr -> } ; oper acontecer_Besch : Str -> Verbum = \acontecer -> +-- 46 | r25 let aconte_ = Predef.tk 3 acontecer in {s = table { VI Infn => aconte_ + "cer" ; @@ -3039,6 +3085,7 @@ oper acontecer_Besch : Str -> Verbum = \acontecer -> } ; oper chover_Besch : Str -> Verbum = \chover -> +-- 47 | r6 let chov_ = Predef.tk 2 chover in {s = table { VI Infn => chov_ + "er" ; @@ -3108,6 +3155,7 @@ oper chover_Besch : Str -> Verbum = \chover -> } ; oper doer_Besch : Str -> Verbum = \doer -> +-- 48 | r83 let d_ = Predef.tk 3 doer in {s = table { VI Infn => d_ + "oer" ; @@ -3177,6 +3225,7 @@ oper doer_Besch : Str -> Verbum = \doer -> } ; oper prazer_Besch : Str -> Verbum = \prazer -> +-- 49 | r55 let pr_ = Predef.tk 4 prazer in {s = table { VI Infn => pr_ + "azer" ; @@ -3246,6 +3295,7 @@ oper prazer_Besch : Str -> Verbum = \prazer -> } ; oper precaver_Besch : Str -> Verbum = \precaver -> +-- 50 | r85 let precav_ = Predef.tk 2 precaver in {s = table { VI Infn => precav_ + "er" ; @@ -3315,6 +3365,7 @@ oper precaver_Besch : Str -> Verbum = \precaver -> } ; oper reaver_Besch : Str -> Verbum = \reaver -> +-- 51 | r86 let re_ = Predef.tk 4 reaver in {s = table { VI Infn => re_ + "aver" ; @@ -3384,6 +3435,7 @@ oper reaver_Besch : Str -> Verbum = \reaver -> } ; oper redigir_Besch : Str -> Verbum = \redigir -> +-- 52 | r28 let red_ = Predef.tk 4 redigir in {s = table { VI Infn => red_ + "igir" ; @@ -3453,6 +3505,7 @@ oper redigir_Besch : Str -> Verbum = \redigir -> } ; oper extinguir_Besch : Str -> Verbum = \extinguir -> +-- 53 | r33 let extin_ = Predef.tk 4 extinguir in {s = table { VI Infn => extin_ + "guir" ; @@ -3522,6 +3575,7 @@ oper extinguir_Besch : Str -> Verbum = \extinguir -> } ; oper servir_Besch : Str -> Verbum = \servir -> +-- 54 | r47 let s_ = Predef.tk 5 servir in {s = table { VI Infn => s_ + "ervir" ; @@ -3591,6 +3645,7 @@ oper servir_Besch : Str -> Verbum = \servir -> } ; oper seguir_Besch : Str -> Verbum = \seguir -> +-- 55 | r50 let s_ = Predef.tk 5 seguir in {s = table { VI Infn => s_ + "eguir" ; @@ -3660,6 +3715,7 @@ oper seguir_Besch : Str -> Verbum = \seguir -> } ; oper sentir_Besch : Str -> Verbum = \sentir -> +-- 56 | r47 let s_ = Predef.tk 5 sentir in {s = table { VI Infn => s_ + "entir" ; @@ -3729,6 +3785,7 @@ oper sentir_Besch : Str -> Verbum = \sentir -> } ; oper preferir_Besch : Str -> Verbum = \preferir -> +-- 57 | r47 let pref_ = Predef.tk 4 preferir in {s = table { VI Infn => pref_ + "erir" ; @@ -3798,6 +3855,7 @@ oper preferir_Besch : Str -> Verbum = \preferir -> } ; oper agredir_Besch : Str -> Verbum = \agredir -> +-- 58 | r48 let agr_ = Predef.tk 4 agredir in {s = table { VI Infn => agr_ + "edir" ; @@ -3867,6 +3925,7 @@ oper agredir_Besch : Str -> Verbum = \agredir -> } ; oper dormir_Besch : Str -> Verbum = \dormir -> +-- 59 | r51 let d_ = Predef.tk 5 dormir in {s = table { VI Infn => d_ + "ormir" ; @@ -3936,6 +3995,7 @@ oper dormir_Besch : Str -> Verbum = \dormir -> } ; oper polir_Besch : Str -> Verbum = \polir -> +-- 60 | r81 let p_ = Predef.tk 4 polir in {s = table { VI Infn => p_ + "olir" ; @@ -4005,6 +4065,7 @@ oper polir_Besch : Str -> Verbum = \polir -> } ; oper acudir_Besch : Str -> Verbum = \acudir -> +-- 61 | r53 let ac_ = Predef.tk 4 acudir in {s = table { VI Infn => ac_ + "udir" ; @@ -4074,6 +4135,7 @@ oper acudir_Besch : Str -> Verbum = \acudir -> } ; oper fugir_Besch : Str -> Verbum = \fugir -> +-- 62 | r54 let f_ = Predef.tk 4 fugir in {s = table { VI Infn => f_ + "ugir" ; @@ -4143,6 +4205,7 @@ oper fugir_Besch : Str -> Verbum = \fugir -> } ; oper frigir_Besch : Str -> Verbum = \frigir -> +-- 63 | r28 let fr_ = Predef.tk 4 frigir in {s = table { VI Infn => fr_ + "igir" ; @@ -4212,6 +4275,7 @@ oper frigir_Besch : Str -> Verbum = \frigir -> } ; oper divergir_Besch : Str -> Verbum = \divergir -> +-- 64 | r49 let div_ = Predef.tk 5 divergir in {s = table { VI Infn => div_ + "ergir" ; @@ -4281,6 +4345,7 @@ oper divergir_Besch : Str -> Verbum = \divergir -> } ; oper refletir_Besch : Str -> Verbum = \refletir -> +-- 65 | r47 let refl_ = Predef.tk 4 refletir in {s = table { VI Infn => refl_ + vars "etir" "ectir" ; @@ -4350,6 +4415,7 @@ oper refletir_Besch : Str -> Verbum = \refletir -> } ; oper ir_Besch : Str -> Verbum = \ir -> +-- 66 | r53 let x_ = Predef.tk 2 ir in {s = table { VI Infn => x_ + "ir" ; @@ -4419,6 +4485,7 @@ oper ir_Besch : Str -> Verbum = \ir -> } ; oper vir_Besch : Str -> Verbum = \vir -> +-- 67 | r63 let v_ = Predef.tk 2 vir in {s = table { VI Infn => v_ + "ir" ; @@ -4488,6 +4555,7 @@ oper vir_Besch : Str -> Verbum = \vir -> } ; oper sair_Besch : Str -> Verbum = \sair -> +-- 68 | r42 let sa_ = Predef.tk 2 sair in {s = table { VI Infn => sa_ + "ir" ; @@ -4557,6 +4625,7 @@ oper sair_Besch : Str -> Verbum = \sair -> } ; oper rir_Besch : Str -> Verbum = \rir -> +-- 69 | r48 let r_ = Predef.tk 2 rir in {s = table { VI Infn => r_ + "ir" ; @@ -4626,6 +4695,7 @@ oper rir_Besch : Str -> Verbum = \rir -> } ; oper pedir_Besch : Str -> Verbum = \pedir -> +-- 70 | r63 let pe_ = Predef.tk 3 pedir in {s = table { VI Infn => pe_ + "dir" ; @@ -4695,6 +4765,7 @@ oper pedir_Besch : Str -> Verbum = \pedir -> } ; oper ouvir_Besch : Str -> Verbum = \ouvir -> +-- 71 | r63 let ou_ = Predef.tk 3 ouvir in {s = table { VI Infn => ou_ + "vir" ; @@ -4764,6 +4835,7 @@ oper ouvir_Besch : Str -> Verbum = \ouvir -> } ; oper traduzir_Besch : Str -> Verbum = \traduzir -> +-- 72 | r44 let traduz_ = Predef.tk 2 traduzir in {s = table { VI Infn => traduz_ + "ir" ; @@ -4833,6 +4905,7 @@ oper traduzir_Besch : Str -> Verbum = \traduzir -> } ; oper distribuir_Besch : Str -> Verbum = \distribuir -> +-- 73 | r40 let distribu_ = Predef.tk 2 distribuir in {s = table { VI Infn => distribu_ + "ir" ; @@ -4902,6 +4975,7 @@ oper distribuir_Besch : Str -> Verbum = \distribuir -> } ; oper destruir_Besch : Str -> Verbum = \destruir -> +-- 74 | r57 let destr_ = Predef.tk 3 destruir in {s = table { VI Infn => destr_ + "uir" ; @@ -4971,6 +5045,7 @@ oper destruir_Besch : Str -> Verbum = \destruir -> } ; oper arguir_Besch : Str -> Verbum = \arguir -> +-- 75 | r31 let arg_ = Predef.tk 3 arguir in {s = table { VI Infn => arg_ + "uir" ; @@ -5040,6 +5115,7 @@ oper arguir_Besch : Str -> Verbum = \arguir -> } ; oper reunir_Besch : Str -> Verbum = \reunir -> +-- 76 | r18 let re_ = Predef.tk 4 reunir in {s = table { VI Infn => re_ + "unir" ; @@ -5109,6 +5185,7 @@ oper reunir_Besch : Str -> Verbum = \reunir -> } ; oper proibir_Besch : Str -> Verbum = \proibir -> +-- 77 | r20 let pro_ = Predef.tk 4 proibir in {s = table { VI Infn => pro_ + "ibir" ; @@ -5178,6 +5255,7 @@ oper proibir_Besch : Str -> Verbum = \proibir -> } ; oper imergir_Besch : Str -> Verbum = \imergir -> +-- 78 | r49 let imerg_ = Predef.tk 2 imergir in {s = table { VI Infn => imerg_ + "ir" ; @@ -5247,6 +5325,7 @@ oper imergir_Besch : Str -> Verbum = \imergir -> } ; oper falir_Besch : Str -> Verbum = \falir -> +-- 79 | r81 let fal_ = Predef.tk 2 falir in {s = table { VI Infn => fal_ + "ir" ; @@ -5316,6 +5395,7 @@ oper falir_Besch : Str -> Verbum = \falir -> } ; oper remir_Besch : Str -> Verbum = \remir -> +-- 80 | r49 let rem_ = Predef.tk 2 remir in {s = table { VI Infn => rem_ + "ir" ; @@ -5385,6 +5465,7 @@ oper remir_Besch : Str -> Verbum = \remir -> } ; oper viajar_Besch : Str -> Verbum = \viajar -> +-- r22 let viaj_ = Predef.tk 2 viajar in {s = table { VI Infn => viaj_ + "ar" ; @@ -5454,6 +5535,7 @@ oper viajar_Besch : Str -> Verbum = \viajar -> } ; oper suar_Besch : Str -> Verbum = \suar -> +-- r37 let su_ = Predef.tk 2 suar in {s = table { VI Infn => su_ + "ar" ; @@ -5522,4 +5604,74 @@ oper suar_Besch : Str -> Verbum = \suar -> } } ; +oper peneirar_Besch : Str -> Verbum = \peneirar -> +-- r10 + let peneir_ = Predef.tk 2 peneirar in + {s = table { + VI Infn => peneir_ + "ar" ; + VI Ger => peneir_ + "ando" ; + VI Part => peneir_ + "ado" ; + VPB (Pres Ind Sg P1) => peneir_ + "o" ; + VPB (Pres Ind Sg P2) => peneir_ + "as" ; + VPB (Pres Ind Sg P3) => peneir_ + "a" ; + VPB (Pres Ind Pl P1) => peneir_ + "amos" ; + VPB (Pres Ind Pl P2) => peneir_ + "ais" ; + VPB (Pres Ind Pl P3) => peneir_ + "am" ; + VPB (Pres Sub Sg P1) => peneir_ + "e" ; + VPB (Pres Sub Sg P2) => peneir_ + "es" ; + VPB (Pres Sub Sg P3) => peneir_ + "e" ; + VPB (Pres Sub Pl P1) => peneir_ + "emos" ; + VPB (Pres Sub Pl P2) => peneir_ + "eis" ; + VPB (Pres Sub Pl P3) => peneir_ + "em" ; + VPB (PretI Ind Sg P1) => peneir_ + "ava" ; --# notpresent + VPB (PretI Ind Sg P2) => peneir_ + "avas" ; --# notpresent + VPB (PretI Ind Sg P3) => peneir_ + "ava" ; --# notpresent + VPB (PretI Ind Pl P1) => peneir_ + "ávamos" ; --# notpresent + VPB (PretI Ind Pl P2) => peneir_ + "áveis" ; --# notpresent + VPB (PretI Ind Pl P3) => peneir_ + "avam" ; --# notpresent + VPB (PretI Sub Sg P1) => peneir_ + "asse" ; --# notpresent + VPB (PretI Sub Sg P2) => peneir_ + "asses" ; --# notpresent + VPB (PretI Sub Sg P3) => peneir_ + "asse" ; --# notpresent + VPB (PretI Sub Pl P1) => peneir_ + "ássemos" ; --# notpresent + VPB (PretI Sub Pl P2) => peneir_ + "ásseis" ; --# notpresent + VPB (PretI Sub Pl P3) => peneir_ + "assem" ; --# notpresent + VPB (MQPerf Sg P1) => peneir_ + "ara" ; --# notpresent + VPB (MQPerf Sg P2) => peneir_ + "aras" ; --# notpresent + VPB (MQPerf Sg P3) => peneir_ + "ara" ; --# notpresent + VPB (MQPerf Pl P1) => peneir_ + "áramos" ; --# notpresent + VPB (MQPerf Pl P2) => peneir_ + "áreis" ; --# notpresent + VPB (MQPerf Pl P3) => peneir_ + "aram" ; --# notpresent + VPB (PretP Sg P1) => peneir_ + "ei" ; --# notpresent + VPB (PretP Sg P2) => peneir_ + "aste" ; --# notpresent + VPB (PretP Sg P3) => peneir_ + "ou" ; --# notpresent + VPB (PretP Pl P1) => peneir_ + "amos" ; --# notpresent + VPB (PretP Pl P2) => peneir_ + "astes" ; --# notpresent + VPB (PretP Pl P3) => peneir_ + "aram" ; --# notpresent + VPB (Fut Ind Sg P1) => peneir_ + "arei" ; --# notpresent + VPB (Fut Ind Sg P2) => peneir_ + "arás" ; --# notpresent + VPB (Fut Ind Sg P3) => peneir_ + "ará" ; --# notpresent + VPB (Fut Ind Pl P1) => peneir_ + "aremos" ; --# notpresent + VPB (Fut Ind Pl P2) => peneir_ + "areis" ; --# notpresent + VPB (Fut Ind Pl P3) => peneir_ + "arão" ; --# notpresent + VPB (Fut Sub Sg P1) => peneir_ + "ar" ; --# notpresent + VPB (Fut Sub Sg P2) => peneir_ + "ares" ; --# notpresent + VPB (Fut Sub Sg P3) => peneir_ + "ar" ; --# notpresent + VPB (Fut Sub Pl P1) => peneir_ + "armos" ; --# notpresent + VPB (Fut Sub Pl P2) => peneir_ + "ardes" ; --# notpresent + VPB (Fut Sub Pl P3) => peneir_ + "arem" ; --# notpresent + VPB (Cond Sg P1) => peneir_ + "aria" ; --# notpresent + VPB (Cond Sg P2) => peneir_ + "aries" ; --# notpresent + VPB (Cond Sg P3) => peneir_ + "aria" ; --# notpresent + VPB (Cond Pl P1) => peneir_ + "aríamos" ; --# notpresent + VPB (Cond Pl P2) => peneir_ + "aríeis" ; --# notpresent + VPB (Cond Pl P3) => peneir_ + "ariam" ; --# notpresent + VPB (Imper Sg P2) => peneir_ + "a" ; + VPB (Imper Sg P3) => peneir_ + "e" ; + VPB (Imper Pl P1) => peneir_ + "emos" ; + VPB (Imper Pl P2) => peneir_ + "ai" ; + VPB (Imper Pl P3) => peneir_ + "em" ; + VPB (Imper Sg P1) => nonExist + } + } ; + } ; diff --git a/src/portuguese/DiffPor.gf b/src/portuguese/DiffPor.gf index 5cfcd7c65..c8cfc5981 100644 --- a/src/portuguese/DiffPor.gf +++ b/src/portuguese/DiffPor.gf @@ -148,7 +148,7 @@ instance DiffPor of DiffRomance - [partAgr,vpAgrSubj,vpAgrClits] = open CommonRo subjIf = "se" ; oper - relPron : Bool => AAgr => Case => Str = \\b,a,c => + relPron : Bool => AAgr => Case => Str = \\_b,a,c => case c of { Nom | Acc => "que" ; CPrep P_a => "cujo" ; From 4b4a7ba9a4781f09f623328a216e4c369d3df5e8 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Thu, 1 Nov 2018 22:51:55 +0100 Subject: [PATCH 074/172] Improvements to Make.bat - Parsing of command line args - Redirecting output - mkdir only if not exists - revert back to copy --- Make.bat | 39 ++++++++++++++++----------------------- 1 file changed, 16 insertions(+), 23 deletions(-) diff --git a/Make.bat b/Make.bat index d7c77595b..5f369a59a 100644 --- a/Make.bat +++ b/Make.bat @@ -12,27 +12,20 @@ set modules_langs=All Symbol Compatibility set modules_api=Try Symbolic REM Defaults (may be overridden by options) -set gf=gf-default +set gf=gf set dest= set verbose=false REM Check command line options -set arg_gf_next=false -set arg_dest_next=false -for %%i in (%*) do ( - if !arg_gf_next!==true ( - set gf=%%i - set arg_gf_next=false - ) - if !arg_dest_next!==true ( - set dest=%%i - set arg_dest_next=false - ) - if %%i==-v set verbose=true - if %%i==--verbose set verbose=true - if %%i==--gf set arg_gf_next=true - if %%i==--dest set arg_dest_next=true -) +:Loop +if "%1"=="" goto Continue + if %1==-v set verbose=true + if %1==--verbose set verbose=true + if %1==--gf set gf=%2 + if %1==--dest set dest=%2 +shift +goto Loop +:Continue REM Try to determine install location if "%dest%"=="" ( @@ -52,17 +45,17 @@ if "%dest%"=="" ( REM A few more definitions before we get started set src=src set dist=dist -set gfc=gf --batch --gf-lib-path=%src% --quiet +set gfc=%gf% --batch --gf-lib-path=%src% --quiet REM Redirect stderr if not verbose if %verbose%==false ( - set gfc=2>NUL !gfc! + set gfc=!gfc! 2>NUL ) REM Make directories if not present -mkdir %dist%\prelude -mkdir %dist%\present -mkdir %dist%\alltenses +if not exist %dist%\prelude mkdir %dist%\prelude +if not exist %dist%\present mkdir %dist%\present +if not exist %dist%\alltenses mkdir %dist%\alltenses REM Build: prelude echo Building [prelude] @@ -99,4 +92,4 @@ for %%m in (%modules%) do ( REM Copy echo Copying to %dest% -xcopy %dist% %dest% /d +copy %dist% %dest% From a170539991414bcb5f826ce87e5ca4a8bde32b80 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Fri, 2 Nov 2018 08:50:31 +0100 Subject: [PATCH 075/172] More improvements to `Make.bat` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix syntax error in args loop - Building of modules list Maybe it actually works now? 😱 --- Make.bat | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Make.bat b/Make.bat index 5f369a59a..921934ee3 100644 --- a/Make.bat +++ b/Make.bat @@ -18,12 +18,12 @@ set verbose=false REM Check command line options :Loop -if "%1"=="" goto Continue + if '%1'=='' goto Continue if %1==-v set verbose=true if %1==--verbose set verbose=true if %1==--gf set gf=%2 if %1==--dest set dest=%2 -shift + shift goto Loop :Continue @@ -67,13 +67,15 @@ REM Gather all language modules for building set modules= for %%l in (%langs%) do ( for %%m in (%modules_langs%) do ( - for /r %src% %%m in (*%%m%%l.gf) do ( - set modules=!modules! %%m + set patt=%%m%%l.gf + for /r %src% %%n in (!patt!) do ( + if exist %%n set modules=!modules! %%n ) ) for %%m in (%modules_api%) do ( - for /r %src%\api %%m in (*%%m%%l.gf) do ( - set modules=!modules! %%m + set patt=%%m%%l.gf + for /r %src%\api %%n in (!patt!) do ( + if exist %%n set modules=!modules! %%n ) ) ) From 2d112e3a55343a1a967e5cfa7c79c1f11556ac8c Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 2 Nov 2018 18:01:14 +0100 Subject: [PATCH 076/172] (Ara) diacritics --- src/arabic/LexiconAra.gf | 33 ++++++++++++++++----------------- src/arabic/OrthoAra.gf | 3 ++- src/arabic/PatternsAra.gf | 6 +++--- src/arabic/ResAra.gf | 3 +-- src/arabic/StructuralAra.gf | 10 +++++----- 5 files changed, 27 insertions(+), 28 deletions(-) diff --git a/src/arabic/LexiconAra.gf b/src/arabic/LexiconAra.gf index 7d4e95071..8178ce9f7 100644 --- a/src/arabic/LexiconAra.gf +++ b/src/arabic/LexiconAra.gf @@ -3,7 +3,6 @@ concrete LexiconAra of Lexicon = CatAra ** open ParadigmsAra, ResAra, - MorphoAra, --shouldn't open it here, only needed reg &sndf Prelude in { flags @@ -19,8 +18,8 @@ flags ask_V2Q = dirV2 (regV "يَسءَل") ; -- ask_V2Q = dirV2 (v1 "سءل" a a) ; baby_N = brkN "طفل" "فِعل" "أَفعَال" Masc Hum; --- bad_A = sndA "سوء" "فَيِّع" ; - bad_A = degrA "سَيِّئ" "سَيِّئَة" "سَيِّئِين" ; +-- bad_A = sndA "سوء" "فَيِّع" ; + bad_A = degrA "سَيِّئ" "سَيِّئَة" "سَيِّئِين" ; bank_N = brkN "بنك" "فَعل" "فُعُول" Masc NoHum ; beautiful_A = sndA "جمل" "فَعِيل" ; become_VA = mkVA (v4 "صبح") ; @@ -42,11 +41,11 @@ flags -- break_V2 = dirV2 (v1 "كسر" a u) ; broad_A = sndA "وسع" "فاعِل" ; brother_N2 = mkN2 (brkN "ءخو" "فَع" "فِعلة" Masc Hum) ; --FIXME dual - brown_A = sndA "بني" "فُعِّل"; + brown_A = sndA "بني" "فُعِّل"; butter_N = sdfN "سبد" "فُعلة" Fem NoHum ; buy_V2 = dirV2 (v8 "شري") ; camera_N = sdfN "كمر" "فاعِيلا" Fem NoHum ; -- |Alö taSwIr - cap_N = sdfN "قبع" "فُعَّلة" Fem NoHum ; --qalnUsö + cap_N = sdfN "قبع" "فُعَّلة" Fem NoHum ; --qalnUsö car_N = sdfN "سير" "فَعّالة" Fem NoHum ; carpet_N = sdfN "سجد" "فَعّالة" Fem NoHum ; cat_N = brkN "هرّ" "فِعّ" "فِعَلَة" Fem NoHum ; @@ -93,13 +92,13 @@ flags girl_N = brkN "بنت" "فِعل" "فَعَال" Fem Hum ; glove_N = sdfN "قفز" "فُعّال" Masc NoHum ; gold_N = sdfN "ذهب" "فَعَل" Masc NoHum ; - good_A = sndA "جود" "فَيِّع" ; -- Hasan, HisAn + good_A = sndA "جود" "فَيِّع" ; -- Hasan, HisAn go_V = regV "يَذهَب" ; -- go_V = v1 "ذهب" a a ; green_A = clrA "خضر" ; harbour_N = brkN "رفء" "مَفعَل" "مَفاعِل" Masc NoHum ; --mInA', marsaY hate_V2 = dirV2 (regV "كَرِه") ; - hat_N = sdfN "قبع" "فُعَّلة" Fem NoHum ; + hat_N = sdfN "قبع" "فُعَّلة" Fem NoHum ; -- have_V2 = dirV2 (v1 "ملك" a i) ; hear_V2 = dirV2 (regV "سَمِع") ; -- hear_V2 = dirV2 (v1 "سمع" i a) ; @@ -130,14 +129,14 @@ flags love_N = brkN "حبّ" "فُعّ" "فُعّ" Masc NoHum ; -- no plur love_V2 = dirV2 (v1 "حبّ" a i) ; man_N = brkN "رجل" "فَعُل" "فِعَال" Masc Hum ; - married_A2 = mkA2 (sndA "زوج" "مُتَفَعِّل") "مِن" ; + married_A2 = mkA2 (sndA "زوج" "مُتَفَعِّل") "مِن" ; meat_N = brkN "لحم" "فَعلة" "فُعُول" Masc NoHum ; milk_N = brkN "حلب" "فَعِيل" "فَعِيل" Masc NoHum ; --no plur moon_N = brkN "قمر" "فَعَل" "أَفعَال" Masc NoHum ; - mother_N2 = mkN2 (sdfN "ءم" "فُعَّ" Fem Hum) ; + mother_N2 = mkN2 (sdfN "ءم" "فُعَّ" Fem Hum) ; mountain_N = brkN "جبل" "فَعَل" "فِعَال" Masc NoHum ; music_N = mkN (reg "مُوسِيقَى" "مُوسِيقَى") Fem NoHum ; --no plur - narrow_A = sndA "ضيق" "فَعِّل" ; + narrow_A = sndA "ضيق" "فَعِّل" ; new_A = mkA "جدد" "فَعِيل" "فُعُل" ; newspaper_N = brkN "صحف" "فَعِيلة" "فُعُل" Fem NoHum ; oil_N = brkN "زيت" "فَعل" "فُعُول" Masc NoHum ; @@ -155,7 +154,7 @@ flags play_V2 = dirV2 (regV "لَعِب") ; -- play_V2 = dirV2 (v1 "لعب" i a) ; policeman_N = sdmN "شرط" "فِعلِي" Masc Hum ; - priest_N = brkN "قسّ" "فِعِّيل" "أَفِعّة" Masc Hum ; + priest_N = brkN "قسّ" "فِعِّيل" "أَفِعّة" Masc Hum ; probable_AS = mkAS (sndA "مكن" "مُفعِل") ; queen_N = sdfN "ملك" "فَعِلة" Fem Hum ; radio_N = mkN (sndf "راديُو") Masc NoHum ; @@ -169,7 +168,7 @@ flags river_N = brkN "نهر" "فَعل" "أَفعَال" Masc NoHum ; rock_N = brkN "صخر" "فَعلة" "فُعُول" Fem NoHum ; roof_N = brkN "سطح" "فَعل" "أَفعُل" Masc NoHum ; - rubber_N = brkN "مطط" "فَعَّال" "فَعَّال" Masc NoHum ; -- no hum + rubber_N = brkN "مطط" "فَعَّال" "فَعَّال" Masc NoHum ; -- no hum run_V = regV "يَركُض" ; -- run_V = v1 "ركض" a u ; say_VS = mkVS (v1 "قول" a u) ; --check @@ -187,11 +186,11 @@ flags shoe_N = brkN "حذو" "فِعَاء" "أَفعِية" Masc NoHum ; shop_N = brkN "تجر" "مَفعَل" "مَفاعِل" Masc NoHum ; short_A = sndA "قصر" "فَعِيل" ; - silver_N = brkN "فضض" "فِعَّة" "فِعَل" Fem NoHum ; + silver_N = brkN "فضض" "فِعَّة" "فِعَل" Fem NoHum ; sister_N = brkN "ءخو" "فُعت" "فَعَوَات" Fem Hum ; --FIXME sleep_V = v1 "نوم" i a ; --check small_A = sndA "صغر" "فَعِيل" ; - snake_N = sdfN "حيّ" "فَعَّة" Fem NoHum ; + snake_N = sdfN "حيّ" "فَعَّة" Fem NoHum ; sock_N = brkN "جرب" "فَوعَل" "فَواعِل" Masc NoHum ; speak_V2 = dirV2 (v5 "كلم") ; star_N = brkN "نجم" "فَعل" "فُعُول" Masc NoHum ; --najmö @@ -205,7 +204,7 @@ flags switch8on_V2 = dirV2 (v4 "شعل") ; table_N = sdfN "طول" "فاعِلة" Fem NoHum ; talk_V3 = mkV3 (v5 "حدث") "لِ" "عَن" ; - teacher_N = sdmN "علم" "مُفَعِّل" Masc Hum ; --mucal~imö + teacher_N = sdmN "علم" "مُفَعِّل" Masc Hum ; --mucal~imö teach_V2 = dirV2 (v2 "علم") ; television_N = mkN (sndf "تِلِفِزيُون") Masc NoHum ; thick_A = sndA "سمك" "فَعِيل" ; @@ -261,7 +260,7 @@ flags heavy_A = sndA "ثقل" "فَعِيل" ; near_A = sndA "قرب" "فَعِيل" ; rotten_A = sndA "فسد" "فاعِل" ; - round_A = sndA "دور" "مُفَعَّل" ; + round_A = sndA "دور" "مُفَعَّل" ; sharp_A = sndA "حدّ" "فاعّ" ; smooth_A = sndA "نعم" "فاعِل" ; straight_A = sndA "قوم" "مُستَفِيع" ; @@ -277,7 +276,7 @@ flags bone_N = brkN "عظم" "فَعلة" "فِعَال" Fem NoHum; breast_N = brkN "صدر" "فَعل" "فُعُول" Masc NoHum; cloud_N = brkN "غيم" "فَعلة" "فُعُول" Fem NoHum; - day_N = brkN "يوم" "فَعل" "أَفَّاع" Masc NoHum; + day_N = brkN "يوم" "فَعل" "أَفَّاع" Masc NoHum; dust_N = brkN "غبر" "فُعَال" "أَفعِلة" Masc NoHum; ear_N = brkN "ءذن" "فُعل" "أَفعَال" Fem NoHum; earth_N = brkN "ترب" "فُعلة" "فُعَل" Fem NoHum; diff --git a/src/arabic/OrthoAra.gf b/src/arabic/OrthoAra.gf index a7dc5d664..0e5d7e196 100644 --- a/src/arabic/OrthoAra.gf +++ b/src/arabic/OrthoAra.gf @@ -12,7 +12,8 @@ flags coding=utf8 ; -- Shadda: https://www.unicode.org/L2/L2017/17253-arabic-ordering.pdf fixShd : Str -> Str -> Str = \word,suffix -> case of { - => x + v + "ّ" + y ; + -- => x + v + "ّ" + y ; + => x + "ّ" + v + y ; _ => word + suffix } ; diff --git a/src/arabic/PatternsAra.gf b/src/arabic/PatternsAra.gf index 26c5e8c59..1390d67a8 100644 --- a/src/arabic/PatternsAra.gf +++ b/src/arabic/PatternsAra.gf @@ -48,7 +48,7 @@ flags coding=utf8 ; eiftacal = { h = "إِ"; m1 = "ْتَ" ; m2 = "َ" ; t = "" } ; eufcil = { h = "أُ"; m1 = "ْ" ; m2 = "ِ" ; t = "" } ; euftucil = { h = "أُ"; m1 = "ْتُ" ; m2 = "ِ" ; t = "" } ; - euttucil = euftucil ** { h = "اُتُّ" ; m1 = "ِ" } ; ---- IL assimilated VIII + euttucil = euftucil ** { h = "اُتُّ" ; m1 = "ِ" } ; ---- IL assimilated VIII afcul = { h = "َ" ; m1 = "ْ" ; m2 = "ُ" ; t = "" } ; faccalo = { h = "" ; m1 = "َ" ; m2 = "َّ" ; t = "ْ" } ; facal = { h = "" ; m1 = "َ" ; m2 = "َ" ; t = "" } ; @@ -78,8 +78,8 @@ flags coding=utf8 ; ficlp = { h = "" ; m1 = "ِ" ; m2 = "ْ" ; t = "َة" } ; ftacal = { h = "" ; m1 = "ْتَ" ; m2 = "َ" ; t = "" } ; ftacil = { h = "" ; m1 = "ْتَ" ; m2 = "ِ" ; t = "" } ; - ttacal = ftacal ** { m1 = "" ; h = "تَّ" } ; ---- IL assimilated VIII - ttacil = ftacil ** { m1 = "" ; h = "تَّ" } ; ---- IL assimilated VIII + ttacal = ftacal ** { m1 = "" ; h = "تَّ" } ; ---- IL assimilated VIII + ttacil = ftacil ** { m1 = "" ; h = "تَّ" } ; ---- IL assimilated VIII fuccAl = { h = "" ; m1 = "ُ" ; m2 = "َّا" ; t = "" } ; fuccil = { h = "" ; m1 = "ُ" ; m2 = "ِّ" ; t = "" } ; fuccilo = { h = "" ; m1 = "ُ" ; m2 = "ِّ" ; t = "ْ" } ; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index d4f08f631..b0eca6e00 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -904,8 +904,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> case st of { Def => case stem of { - s@#sun + v@#vow + x => al + s + v + "ّ" + x ; -- vowel before shadda - s@#sun + x => al + s + "ّ" + x; + s@#sun + x => fixShd (al + s) ("ّ" + x) ; x => al + x } ; _ => stem }; diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index 7931b8132..136680f56 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -99,12 +99,12 @@ concrete StructuralAra of Structural = CatAra ** which_IQuant = { s = \\s,c => case of { => "أيّ" ; - => "أيٌّ" ; - => "أيُّ" ; + => "أيٌّ" ; + => "أيُّ" ; => "أيّاً" ; - => "أيَّ" ; - => "أيٍّ" ; - => "أيِّ" + => "أيَّ" ; + => "أيٍّ" ; + => "أيِّ" } } ; whoSg_IP = mkIP "مَنْ" Sg ; From e3f2469abe5760084d5c8fce53d76a280db497de Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 2 Nov 2018 18:01:33 +0100 Subject: [PATCH 077/172] (Ara) Add gender, species etc. into the API --- src/arabic/ParadigmsAra.gf | 92 ++++++++++++++++++++++++++++---------- 1 file changed, 69 insertions(+), 23 deletions(-) diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index 9dea1146f..035903273 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -39,23 +39,31 @@ resource ParadigmsAra = open Preposition : Type ; + Gender : Type ; + masc : Gender ; + fem : Gender ; + + Species : Type ; + hum : Species ; + nohum : Species ; + + Vowel : Type ; + va : Vowel ; + vi : Vowel ; + vu : Vowel ; + --2 Nouns -- Overloaded operator for main cases - mkN = overload { - mkN : (sg : Str) -> N -- non-human regular nouns - = smartN ; - mkN : Species -> N -> N - = \p,n -> n ** {h = p} ; - mkN : (sg,pl : Str) -> Gender -> Species -> N - = \sg,pl -> mkFullN (reg sg pl) ; - mkN : NTable -> Gender -> Species -> N -- loan words, irregular - = mkFullN ; - mkN : (root,sgPatt,brokenPlPatt : Str) -> Gender -> Species -> N -- broken plural - = brkN ; - mkN : N -> (attr : Str) -> N -- Compound nouns - = \n,attr -> n ** { s = \\num,s,c => n.s ! num ! s ! c ++ attr } ; --- IL (TODO: all kinds of compounds) + + mkN : overload { + mkN : (sg : Str) -> N ; -- non-human regular nouns + mkN : Species -> N -> N ; + mkN : (sg,pl : Str) -> Gender -> Species -> N ; + mkN : NTable -> Gender -> Species -> N ; -- loan words, irregular + mkN : (root,sgPatt,brokenPlPatt : Str) -> Gender -> Species -> N ; -- broken plural + mkN : N -> (attr : Str) -> N ; -- Compound nouns --- mkN : (root,sgPatt : Str) -> Gender -> Species -> N -- sound feminine plural --- = sdfN ; } ; @@ -156,13 +164,11 @@ resource ParadigmsAra = open -- Overloaded operations - mkV = overload { - mkV : (imperfect : Str) -> V - = regV ; - mkV : (root : Str) -> (perf,impf : Vowel) -> V -- verb form I ; vowel = a|i|u - = v1 ; - mkV : (root : Str) -> VerbForm -> V -- FormI .. FormX (no VII, IX) ; default vowels a u for I - = formV ; + mkV : overload { + mkV : (imperfect : Str) -> V ; + mkV : (root : Str) -> (perf,impf : Vowel) -> V ; -- verb form I ; vowel = a|i|u + mkV : (root : Str) -> VerbForm -> V ; -- FormI .. FormX (no VII, IX) ; default vowels a u for I + mkV : V -> (particle : Str) -> V -- V with a non-inflecting particle/phrasal verb } ; -- The verb in the imperfect tense gives the most information @@ -261,6 +267,48 @@ resource ParadigmsAra = open -- The definitions should not bother the user of the API. So they are -- hidden from the document. + + Preposition = Str ; + + Gender = ResAra.Gender ; + masc = ResAra.Masc ; + fem = ResAra.Fem ; + + Species = ResAra.Species ; + hum = ResAra.Hum ; + nohum = ResAra.NoHum ; + + Vowel = ResAra.Vowel ; + va = ResAra.a ; + vu = ResAra.u ; + vi = ResAra.i ; + + mkN = overload { + mkN : (sg : Str) -> N -- non-human regular nouns + = smartN ; + mkN : Species -> N -> N + = \p,n -> n ** {h = p} ; + mkN : (sg,pl : Str) -> Gender -> Species -> N + = \sg,pl -> mkFullN (reg sg pl) ; + mkN : NTable -> Gender -> Species -> N -- loan words, irregular + = mkFullN ; + mkN : (root,sgPatt,brokenPlPatt : Str) -> Gender -> Species -> N -- broken plural + = brkN ; + mkN : N -> (attr : Str) -> N -- Compound nouns + = \n,attr -> n ** { s = \\num,s,c => n.s ! num ! s ! c ++ attr } ; --- IL (TODO: all kinds of compounds) + } ; + + mkV = overload { + mkV : (imperfect : Str) -> V + = regV ; + mkV : (root : Str) -> (perf,impf : Vowel) -> V -- verb form I ; vowel = a|i|u + = v1 ; + mkV : (root : Str) -> VerbForm -> V -- FormI .. FormX (no VII, IX) ; default vowels a u for I + = formV ; + mkV : V -> (particle : Str) -> V = \v,p -> + v ** { s = \\vf => v.s ! vf ++ p } ; + } ; + regV : Str -> V = \wo -> let rau : Str * Vowel * Vowel = case wo of { @@ -282,7 +330,7 @@ resource ParadigmsAra = open lock_V = <> } ; - va : Vowel = ResAra.a ; + v1' : Str -> Vowel -> Vowel -> Verb = \rootStr,vPerf,vImpf -> @@ -378,8 +426,6 @@ resource ParadigmsAra = open _ => v10sound } } in lin V (v10fun rbT) ; - Preposition = Str ; - mkFullN nsc gen spec = { s = nsc; --NTable g = gen; From 68c5cd74dd69505d3eff7c2ba2a18a4ab98474b3 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 5 Nov 2018 17:13:06 +0100 Subject: [PATCH 078/172] (Ara) Question words and structures --- src/arabic/CatAra.gf | 7 ++- src/arabic/PhraseAra.gf | 2 +- src/arabic/QuestionAra.gf | 99 +++++++++++++------------------------ src/arabic/ResAra.gf | 34 +++++++++++-- src/arabic/StructuralAra.gf | 8 +-- 5 files changed, 73 insertions(+), 77 deletions(-) diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index 3a1ee2584..d1fe2f494 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -23,10 +23,9 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { -- Question QCl = ResAra.QCl ; -- {s : ResAra.Tense => Polarity => QForm => Str} ; - IP, - IDet, - IComp = ResAra.IP ; -- {s : Gender => State => Case => Str ; n : ResAra.Number} ; - -- IAdv = {s : Str} ; + IDet = ResAra.IDet ; -- {s : Gender => State => Case => Str ; n : Number} ; + IP = ResAra.IP ; -- {s : (isPred : Bool) => State => Case => Str ; n : Number} ; + IComp = ResAra.IComp ; -- IQuant = {s : State => Case => Str} ; -- ---- Relative diff --git a/src/arabic/PhraseAra.gf b/src/arabic/PhraseAra.gf index 9d24e6898..5e11b5e5a 100644 --- a/src/arabic/PhraseAra.gf +++ b/src/arabic/PhraseAra.gf @@ -11,7 +11,7 @@ concrete PhraseAra of Phrase = CatAra ** open UttImpSg pol imp = {s = \\g => imp.s ! pol.p ! g ! ResAra.Sg ++ pol.s} ; UttImpPl,UttImpPol = \pol,imp -> {s = \\g => imp.s ! pol.p ! g ! ResAra.Pl ++ pol.s} ; - UttIP ip = {s = \\g => ip.s ! g ! Def ! Nom} ; --IL + UttIP ip = {s = \\_g => ip.s ! False ! Def ! Nom} ; --IL UttAP ap = {s = ResAra.uttAP ap} ; --IL UttCard c = {s = ResAra.uttNum c} ; --IL diff --git a/src/arabic/QuestionAra.gf b/src/arabic/QuestionAra.gf index 38b2296c2..ecfa1f8c1 100644 --- a/src/arabic/QuestionAra.gf +++ b/src/arabic/QuestionAra.gf @@ -1,4 +1,4 @@ -concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbAra in { +concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbAra, SentenceAra in { flags optimize=all_subs ; coding = utf8 ; @@ -14,90 +14,61 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA -- ComplSlashIP vps ip = {} ; --- AR copied from PredVP + --IL guessed QuestVP qp vp = - { s =\\t,p,_ => - let { - ---- o = Verbal ; ---- AR - objgn = pgn2gn vp.obj.a.pgn ; - np = {s = qp.s ! objgn.g ! Def ; ----IL just guessing state - a ={pgn = Per3 Masc qp.n ; isPron = False}} ; - pgn = np.a.pgn ; - gn = pgn2gn pgn; - kataba = vp.s ! pgn ! VPPerf ; - yaktubu = vp.s ! pgn ! VPImpf Ind ; - yaktuba = vp.s ! pgn ! VPImpf Cnj ; - yaktub = vp.s ! pgn ! VPImpf Jus ; - vStr : ResAra.Tense -> Polarity -> Str = - \tn,pl -> case of { - => yaktubu ; - => "لَا" ++ yaktubu ; - => "" ; --no verb "to be" in present - => "لَيسَ" ;--same here, just add negation particle - <_, ResAra.Past, Pos> => kataba ; - <_, ResAra.Past, Neg> => "لَمْ" ++ yaktub ; - <_, ResAra.Fut, Pos> => "سَ" ++ yaktubu ; - <_, ResAra.Fut, Neg> => "لَنْ" ++ yaktuba - }; - pred : ResAra.Tense -> Polarity -> Str = - \tn,pl -> case of { - => vp.pred.s ! gn ! Nom; --xabar marfooc - _ => vp.pred.s ! gn ! Acc --xabar kaana wa laysa manSoob - } ; + let np = { s = qp.s ! vp.isPred ! Def ; + a = { pgn = Per3 Masc qp.n ; + isPron = False } + } ; + cl = PredVP np vp ; + in { s = \\t,p,_qf => cl.s ! t ! p ! Nominal } ; - } in ---- case o of { ----- _ => - case of { ----- AR workaround 18/12/2008 case of { - -- ya2kuluhu - => (vStr t p) ++ vp.obj.s ++ vp.s2 ++ (pred t p); - -- ya2kuluhu al-waladu, yakuluhu al-2awlaadu - => (vStr t p) ++ np.s ! Nom ++ vp.obj.s ++ vp.s2 ++ (pred t p); - => (vStr t p) ++ vp.obj.s ++ np.s ! Nom ++ vp.s2 ++ (pred t p); - => (vStr t p) ++ vp.obj.s ++ vp.s2 ++ (pred t p) - }; - ---- Nominal => - ---- np.s ! Nom ++ (vStr t p) ++ vp.obj.s ++ vp.s2 ++ (pred t p) - } - ; ---- }; ---- AR guessed QuestIAdv iadv cl = {s = \\t,p,_ => iadv.s ++ cl.s ! t ! p ! Verbal} ; ---- IL guessed - QuestIComp icomp np = - let vp = kaan (CompNP np) in - QuestVP icomp vp ; + -- : IComp -> NP -> QCl + QuestIComp ic np = + let vp = kaan (CompNP np) ; + ip = ic ** { s : Bool => State => Case => Str = \\_,_,_ => ic.s ! pgn2gn np.a.pgn } ; + in QuestVP ip vp ; - CompIP ip = ip ; - -- old, when IComp = Comp { s = \\{g=g ; n=_},c => ip.s ! g ! Def ! c } ; ---- + -- : IP -> IComp ; + CompIP ip = { + s = \\_ => ip.s ! True -- True=IP will be a subject of predicative sentence + ! Def ! Nom ; -- IP will be a subject + n = ip.n + } ; - CompIAdv iadv = mkIP iadv.s ResAra.Sg ; + CompIAdv iadv = { s = \\_ => iadv.s ; n = ResAra.Sg } ; -- QCl = {s : R.Tense => Polarity => QForm => Str} ; QuestSlash ip cl = { ----IL just guessing - s = \\t,p,qf => case qf of { - QDir => cl.s ! t ! p ! Verbal ++ cl.c2 ++ ip.s ! Masc ! Def ! Nom ; --VSO (purely guessing) - QIndir => cl.s ! t ! p ! Nominal ++ cl.c2 ++ ip.s ! Masc ! Def ! Nom } --SVO (purely guessing) + s = \\t,p,qf => + let o = case qf of { QDir => Nominal ; _ => Verbal } ; -- purely guessing + in cl.c2 ++ ip.s ! False ! Def ! Nom ++ cl.s ! t ! p ! o } ; - PrepIP p ip = {s = p.s ++ ip.s ! Masc ! Def ! Acc} ; ----IL + --IL guessed + PrepIP p ip = { + s = p.s ++ ip.s ! False -- not used as a subject of predicative sentence + ! Def ! Gen + } ; - AdvIP ip adv = ip ** { - s = \\g,s,c => ip.s ! g ! s ! c ++ adv.s ; - n = ip.n - } ; + AdvIP ip adv = ip ** { + s = \\g,s,c => ip.s ! g ! s ! c ++ adv.s ; + } ; -----IL guessed with help of L and Google translate -- : IDet -> IP - IdetIP idet = idet ; -- Gender still matters if turned into IComp + IdetIP idet = idet ** { s = \\isPred => idet.s ! Masc } ; -- : IDet -> CN -> IP IdetCN idet cn = idet ** { - s = \\g,s,c => idet.s ! cn.g ! s ! c ++ -- gender is determined by the CN - cn.s ! idet.n ! Indef ! Gen ; --idaafa + s = \\isPred,s,c + => idet.s ! cn.g ! s ! c ++ + cn.s ! idet.n ! Indef ! Gen ; --idaafa } ; -- : IQuant -> Num -> IDet diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index b0eca6e00..73b423c2a 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1102,8 +1102,17 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> }; - mkIP : Str -> Number -> IP = - \s,n -> {s = \\_g,_s,_c => s ; n = n} ; + mkIP = overload { + mkIP : Str -> Number -> IP = \maa,n -> { + s = \\_p,_s,_c => maa ; + n = n + } ; + mkIP : (_,_ : Str) -> Number -> IP = \maa,maadhaa,n -> { + s = table { True => \\_s,_c => maa ; + False => \\_s,_c => maadhaa } ; + n = n + } + } ; mkOrd : (_,_ : Str) -> Size -> NumOrdCard = \aysar,yusra,sz -> @@ -1151,6 +1160,13 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> s : AAgr => Case => Str } ; + IComp : Type = { + s : AAgr -- "how old": masc or fem for adjective + -- no need for Case, IComp is only used by QuestIComp, as grammatical subject + => Str ; + n : Number + } ; + Obj : Type = { s : Str ; a : Agr @@ -1162,12 +1178,22 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> } ; IP : Type = { - s : Gender -- because of CompIP - => State => Case -- because of PrepIP: e.g. "in which" chooses definite accusative + s : Bool -- different forms for "what is this" and "what do you do" + => State => Case -- because of PrepIP: e.g. "in which" chooses definite accusative => Str ; n : Number } ; + IDet : Type = { + s : Gender -- IdetCN needs to choose the gender of the CN + => State => Case => Str ; + n : Number + } ; + + IQuant : Type = { + s : State => Case => Str + } ; + param VPForm = VPPerf | VPImpf Mood diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index 136680f56..505e6bc45 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -91,8 +91,8 @@ concrete StructuralAra of Structural = CatAra ** -- very_AdA = ss "ثري" ; -- want_VV = P.mkVV (P.regV "وَنت") ; we_Pron = mkPron "نَحنُ" "نا" "نا" (Per1 Plur) ; - whatPl_IP = mkIP "ماذا" Pl ; - whatSg_IP = mkIP "ماذا" Sg ; + whatPl_IP = mkIP "ما" "ماذا" Pl ; + whatSg_IP = mkIP "ما" "ماذا" Sg ; when_IAdv = ss "مَتَى" ; -- when_Subj = ss "وهن" ; where_IAdv = ss "أَينَ" ; @@ -107,8 +107,8 @@ concrete StructuralAra of Structural = CatAra ** => "أيِّ" } } ; - whoSg_IP = mkIP "مَنْ" Sg ; - whoPl_IP = mkIP "مَنْ" Pl ; + whoSg_IP = mkIP "مَنْ" "مَنْ" Sg ; + whoPl_IP = mkIP "مَنْ" "مَنْ" Pl ; -- why_IAdv = ss "وهي" ; without_Prep = ss "بِدُونِ" ; with_Prep = ss "مَع" ; From 17bc505382b94efe18a9c00ff18b8ad9993156e4 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Mon, 5 Nov 2018 19:29:35 +0100 Subject: [PATCH 079/172] Make.bat: fix copy command, create dest folders if not present --- Make.bat | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Make.bat b/Make.bat index 921934ee3..904a976af 100644 --- a/Make.bat +++ b/Make.bat @@ -92,6 +92,14 @@ for %%m in (%modules%) do ( %gfc% --no-pmcfg --gfo-dir=%dist%\alltenses %%m ) +REM Make destination directories if not present +if not exist %dest% mkdir %dest% +if not exist %dest%\prelude mkdir %dest%\prelude +if not exist %dest%\present mkdir %dest%\present +if not exist %dest%\alltenses mkdir %dest%\alltenses + REM Copy echo Copying to %dest% -copy %dist% %dest% +copy %dist%\prelude\*.gfo %dest%\prelude\ +copy %dist%\present\*.gfo %dest%\present\ +copy %dist%\alltenses\*.gfo %dest%\alltenses\ From ef2c348d3af374555f10cb9f5b1b81a1527bf904 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Mon, 5 Nov 2018 21:09:07 +0100 Subject: [PATCH 080/172] Make.bat: Collect modules in two stages For some reason second inner loop was never reached, this is a simple solution. Also remove stderr redirection as it didn't seem to work. --verbose now names each module individually --- Make.bat | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Make.bat b/Make.bat index 904a976af..8bb7c4121 100644 --- a/Make.bat +++ b/Make.bat @@ -45,11 +45,11 @@ if "%dest%"=="" ( REM A few more definitions before we get started set src=src set dist=dist -set gfc=%gf% --batch --gf-lib-path=%src% --quiet +set gfc=%gf% --batch --gf-lib-path=%src% -REM Redirect stderr if not verbose +REM Add quiet flag if not verbose if %verbose%==false ( - set gfc=!gfc! 2>NUL + set gfc=%gfc% --quiet ) REM Make directories if not present @@ -72,6 +72,8 @@ for %%l in (%langs%) do ( if exist %%n set modules=!modules! %%n ) ) +) +for %%l in (%langs%) do ( for %%m in (%modules_api%) do ( set patt=%%m%%l.gf for /r %src%\api %%n in (!patt!) do ( @@ -83,12 +85,14 @@ for %%l in (%langs%) do ( REM Build: present echo Building [present] for %%m in (%modules%) do ( + if %verbose%==true echo %%m %gfc% --no-pmcfg --gfo-dir=%dist%\present --preproc=mkPresent %%m ) REM Build: alltenses echo Building [alltenses] for %%m in (%modules%) do ( + if %verbose%==true echo %%m %gfc% --no-pmcfg --gfo-dir=%dist%\alltenses %%m ) From ec9f74d56ec8501e7c6fd3eb1119dfc365987f35 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Tue, 6 Nov 2018 10:32:25 +0100 Subject: [PATCH 081/172] Add "Synopsis" column to `languages.csv`; use config everywhere I tried to remove all language lists from Haskell and Makefiles --- Config.hs | 68 ++++++++++++++++++++++++++++ Make.hs | 54 +---------------------- README.md | 10 ++--- doc/Makefile | 12 +++-- doc/MkExx.hs | 44 +------------------ doc/MkExxTable.hs | 19 ++++---- doc/MkSynopsis.hs | 100 ++++++++++++++++++++---------------------- doc/language-list.txt | 35 --------------- languages.csv | 90 ++++++++++++++++++------------------- 9 files changed, 182 insertions(+), 250 deletions(-) create mode 100644 Config.hs delete mode 100644 doc/language-list.txt diff --git a/Config.hs b/Config.hs new file mode 100644 index 000000000..d3b325fdc --- /dev/null +++ b/Config.hs @@ -0,0 +1,68 @@ +-- | Reading language config file +module Config ( + LangInfo (..), + loadLangs, loadLangsFrom, configFile + ) where + +import Data.List (unfoldr) +import System.IO (hPutStrLn,stderr) +import System.Exit (exitFailure) + +-- | Path to language config file +configFile :: FilePath +configFile = "languages.csv" + +-- | Information about a language +data LangInfo = LangInfo + { langCode :: String -- ^ 3-letter ISO 639-2/B code + , langDir :: String -- ^ directory name + , langFunctor :: Maybe String -- ^ functor (not used) + , langUnlexer :: Maybe String -- ^ decoding for postprocessing linearizations + , langPresent :: Bool + , langAll :: Bool + , langTry :: Bool + , langSymbolic :: Bool + , langCompatibility :: Bool + , langSynopsis :: Bool -- ^ include in RGL synopsis + } deriving (Show,Eq) + +-- | Load language information from default config file +loadLangs :: IO [LangInfo] +loadLangs = loadLangsFrom configFile + +-- | Load language information from specified config file +loadLangsFrom:: FilePath -> IO [LangInfo] +loadLangsFrom configFile = do + lns <- readFile configFile >>= return . lines + mapM mkLangInfo (tail lns) + where + maybeBit bits n = if length bits >= (n+1) && length (bits !! n) > 0 then Just (bits !! n) else Nothing + boolBit bits n def = if length bits >= (n+1) && length (bits !! n) > 0 then (if def then bits !! n /= "n" else bits !! n == "y") else def + mkLangInfo s = + let bits = separateBy ',' s in + if length bits < 2 + then die $ "Invalid entry in " ++ configFile ++ ": " ++ s + else return $ LangInfo + { langCode = bits !! 0 + , langDir = bits !! 1 + , langFunctor = maybeBit bits 2 + , langUnlexer = maybeBit bits 3 + , langPresent = boolBit bits 4 False + , langAll = boolBit bits 5 True + , langTry = boolBit bits 6 True + , langSymbolic = boolBit bits 7 True + , langCompatibility = boolBit bits 8 False + , langSynopsis = boolBit bits 9 False + } + +-- | Separate a string on a character +-- Source: https://stackoverflow.com/a/4978733/98600 +separateBy :: Eq a => a -> [a] -> [[a]] +separateBy chr = unfoldr sep where + sep [] = Nothing + sep l = Just . fmap (drop 1) . break (== chr) $ l + +die :: String -> IO a +die s = do + hPutStrLn stderr s + exitFailure diff --git a/Make.hs b/Make.hs index 2a40e3989..420d005c9 100644 --- a/Make.hs +++ b/Make.hs @@ -2,7 +2,7 @@ -- | Main build script for RGL -import Data.List (find,isPrefixOf,isSuffixOf,(\\),unfoldr) +import Data.List (find,isPrefixOf,isSuffixOf,(\\)) import Data.Maybe (catMaybes) import System.IO (hPutStrLn,stderr) import System.IO.Error (catchIOError) @@ -15,6 +15,7 @@ import System.Directory (createDirectoryIfMissing,copyFile,getDirectoryContents, import System.Directory (getModificationTime,setModificationTime) #endif import Control.Monad (when,unless) +import Config main :: IO () main = do @@ -347,57 +348,6 @@ verbose_switch_short = "-v" getFlag :: String -> [String] -> Maybe String getFlag flag args = fmap (drop (length flag)) $ find (isPrefixOf flag) args -------------------------------------------------------------------------------- --- Languages of the RGL - --- | Path to language config file -configFile :: FilePath -configFile = "languages.csv" - --- | Information about a language -data LangInfo = LangInfo - { langCode :: String -- ^ 3-letter ISO 639-2/B code - , langDir :: String -- ^ directory name - , langFunctor :: Maybe String -- ^ functor (not used) - , langUnlexer :: Maybe String -- ^ decoding for postprocessing linearizations - , langPresent :: Bool - , langAll :: Bool - , langTry :: Bool - , langSymbolic :: Bool - , langCompatibility :: Bool - } deriving (Show,Eq) - --- | Load language information from config file -loadLangs :: IO [LangInfo] -loadLangs = do - lns <- readFile configFile >>= return . lines - mapM mkLangInfo (tail lns) - where - maybeBit bits n = if length bits >= (n+1) && length (bits !! n) > 0 then Just (bits !! n) else Nothing - boolBit bits n def = if length bits >= (n+1) && length (bits !! n) > 0 then (if def then bits !! n /= "n" else bits !! n == "y") else def - mkLangInfo s = - let bits = separateBy ',' s in - if length bits < 2 - then die $ "Invalid entry in " ++ configFile ++ ": " ++ s - else return $ LangInfo - { langCode = bits !! 0 - , langDir = bits !! 1 - , langFunctor = maybeBit bits 2 - , langUnlexer = maybeBit bits 3 - , langPresent = boolBit bits 4 False - , langAll = boolBit bits 5 True - , langTry = boolBit bits 6 True - , langSymbolic = boolBit bits 7 True - , langCompatibility = boolBit bits 8 False - } - --- | Separate a string on a character --- Source: https://stackoverflow.com/a/4978733/98600 -separateBy :: Eq a => a -> [a] -> [[a]] -separateBy chr = unfoldr sep where - sep [] = Nothing - sep l = Just . fmap (drop 1) . break (== chr) $ l - ------------------------------------------------------------------------------- -- Executing GF diff --git a/README.md b/README.md index 4cd0b2449..dda79ac41 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,10 @@ Description of columns: - Try: languages for which to compile `Try` - Symbolic: languages for which to compile `Symbolic` - Compatibility: languages for which to complile `Compatibility` +- Synopsis: languages to include in the RGL synopsis document -Columns can be a string, just `y`'s (where nothing means `n`) or just (`n`'s where nothing means `y`). +Columns can be a string, just `y`'s (where nothing means `n`) or just (`n`'s where nothing means `y`), +or a mixture of both `y`'s and `n`'s. ## Haskell script: `Make.hs` @@ -108,11 +110,9 @@ You can pass the following flags: ## Windows batch file: `Make.bat` -**This script is still untested.** +This method is provided as an alternative for Windows users who don't have Haskell or Bash installed. -This method is provided as an alternative for Windows users who don't have Haskell installed. - -It is supposed to be a port of Make.sh and works in largely the same way. +It is supposed to be a port of `Make.sh` and works in largely the same way. In particular, it accepts the same flags (in the same format) as described above. However it currently tries to build all modules for all languages and doesn't consider the details of which modules should be compiled for each language (specified in `languages.csv`) diff --git a/doc/Makefile b/doc/Makefile index 556973dd7..90133f78e 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,4 +1,4 @@ -.PHONY: abstract synopsis index status +.PHONY: all index status synopsis abstract all: synopsis @@ -15,17 +15,17 @@ synopsis: synopsis.html S=../src -# List of languages extracted from MkSynopsis.hs -LANGS=Afr Ara Bul Cat Chi Dan Dut Eng Est Eus Fin Fre Ger Gre Hin Ice Ita Jpn Lav Mlt Mon Nep Nor Nno Pes Pnb Pol Por Ron Rus Snd Spa Swe Tha Urd +# List of languages extracted from languages.csv, with 'Synopsis' column == y +LANGS=$(shell cat ../languages.csv | cut -d',' -f1,10 | grep ',y' | cut -d',' -f1) # This list was constructed by observing what files MkSynopsis.hs reads -SRC_FILES=$S/abstract/Common.gf $S/abstract/Cat.gf $S/api/Constructors.gf $S/abstract/Structural.gf $(patsubst %,$S/*/Paradigms%.gf,$(LANGS)) +SRC_FILES=$(S)/abstract/Common.gf $(S)/abstract/Cat.gf $(S)/api/Constructors.gf $(S)/abstract/Structural.gf $(patsubst %,$S/*/Paradigms%.gf,$(LANGS)) EXAMPLES_OUT=$(patsubst %,api-examples-%.txt,$(LANGS)) INCLUDES=synopsis-intro.txt categories-intro.txt categories-imagemap.html synopsis-additional.txt synopsis-browse.txt synopsis-example.txt synopsis.html: MkSynopsis.hs MkExxTable.hs $(INCLUDES) $(EXAMPLES_OUT) $(SRC_FILES) - runghc MkSynopsis.hs + runghc -i.. MkSynopsis.hs categories.png: categories.dot dot -Tpng $^ > $@ @@ -37,11 +37,9 @@ abstract: $(GFDOC) -txthtml $S/abstract/*.gf mv $S/abstract/*.html abstract - api-examples.gfs: api-examples.txt MkExx.hs runghc MkExx.hs < $< > $@ - # Since .gfo files aren't self-contained, the dependencies given here are # incomplete. But I am thinking that the Try%.gfo file will always be newer # than any other files it depends on, so the rule will trigger when diff --git a/doc/MkExx.hs b/doc/MkExx.hs index 16eb38bfd..0db35218e 100644 --- a/doc/MkExx.hs +++ b/doc/MkExx.hs @@ -6,7 +6,7 @@ main = interact (unlines . concatMap mkScript . takeWhile (/="--.") . lines) mkScript l = case l of - ' ':_ -> + ' ':_ -> let ident = mkIdent $ unwords $ takeWhile (/="--") $ words l in [add $ psq ident] '-':_ -> [] @@ -30,45 +30,3 @@ mkIdent = concatMap unspec where ')' -> "" ':' -> "-" _ -> [c] - - - -langsCoding = [ - (("amharic", "Amh"),""), - (("arabic", "Ara"),""), - (("basque", "Eus"),""), - (("bulgarian","Bul"),""), - (("catalan", "Cat"),"Romance"), - (("danish", "Dan"),"Scand"), - (("dutch", "Dut"),""), - (("english", "Eng"),""), - (("finnish", "Fin"),""), - (("french", "Fre"),"Romance"), - (("hindi", "Hin"),"Hindustani"), - (("german", "Ger"),""), - (("interlingua","Ina"),""), - (("italian", "Ita"),"Romance"), - (("latin", "Lat"),""), - (("norwegian","Nor"),"Scand"), - (("polish", "Pol"),""), - (("punjabi", "Pnb"),""), - (("portuguese", "Por"), "Romance"), - (("romanian", "Ron"),""), - (("russian", "Rus"),""), - (("spanish", "Spa"),"Romance"), - (("swedish", "Swe"),"Scand"), - (("thai", "Tha"),""), - (("turkish", "Tur"),""), - (("urdu", "Urd"),"Hindustani") - ] - - -langs = map fst langsCoding - --- languagues for which Try is normally compiled -langsLang = langs `except` langsIncomplete - --- languages for which Lang can be compiled but which are incomplete -langsIncomplete = ["Amh","Ara","Hin","Lat","Pnb","Rus","Tha","Tur","Urd"] - -except ls es = filter (flip notElem es . snd) ls diff --git a/doc/MkExxTable.hs b/doc/MkExxTable.hs index a45effabc..4cdab36c5 100644 --- a/doc/MkExxTable.hs +++ b/doc/MkExxTable.hs @@ -4,10 +4,9 @@ module MkExxTable (getApiExx, ApiExx, prApiEx, mkEx) where import System.Environment(getArgs) import Control.Monad(when) import qualified Data.Map as M -import Data.Char main = do - xx <- getArgs + xx <- getArgs aexx <- getApiExx' True xx return () -- putStrLn $ prApiExx aexx @@ -16,7 +15,7 @@ getApiExx = getApiExx' False getApiExx' verbose xx = do s <- readFile (head xx) - let aet = getApiExxTrees $ filter validOutput $ mergeOutput $ lines s + let aet = getApiExxTrees $ filter validOutput $ mergeOutput $ lines s aeos <- mapM (readApiExxOne verbose) xx let aexx = mkApiExx $ ("API",aet) : aeos -- putStrLn $ prApiExx aexx @@ -57,7 +56,7 @@ cleanUp = dropWhile (flip elem " >") --- this makes txt2tags loop... mergeOutput ls = ls mergeOutputt ls = case ls of - l@('>':_):ll -> let (ll1,ll2) = span ((/=">") . take 1) ll in unwords (l : map (unwords . words) ll1) : mergeOutput ll2 + l@('>':_):ll -> let (ll1,ll2) = span ((/=">") . take 1) ll in unwords (l : map (unwords . words) ll1) : mergeOutput ll2 _:ll -> mergeOutput ll _ -> [] @@ -65,15 +64,15 @@ mergeOutputt ls = case ls of validOutput = (==">") . take 1 mkApiExx :: [(String,ApiExxOne)] -> ApiExx -mkApiExx ltes = - M.fromList [(t, - M.fromList [(l,maybe "NONE" id (M.lookup t te)) | (l,te) <- ltes]) +mkApiExx ltes = + M.fromList [(t, + M.fromList [(l,maybe "NONE" id (M.lookup t te)) | (l,te) <- ltes]) | t <- M.keys firstL] where firstL = snd (head ltes) prApiExx :: ApiExx -> String -prApiExx aexx = unlines +prApiExx aexx = unlines [unlines (t:prApiEx lexx) | (t,lexx) <- M.toList aexx] prApiEx :: M.Map String String -> [String] @@ -81,7 +80,7 @@ prApiEx apexx = case M.toList apexx of (a,e):lexx -> (a ++ ": ``" ++ unwords (words e) ++ "``"): [l ++ ": //" ++ mkEx l e ++ "//" | (l,e) <- lexx] -mkEx l = unws . bind . mkE . words where +mkEx l = unws . bind . mkE . words where unws = if elem l ["Chi","Jpn","Tha"] then concat else unwords -- remove spaces mkE e = case e of "atomic":"term":_ -> ["*"] @@ -101,6 +100,6 @@ bind ws = case ws of "&+":ws2 -> bind ws2 "Predef.BIND":ws2 -> bind ws2 "Predef.SOFT_BIND":ws2 -> bind ws2 - w : ws2 -> w : bind ws2 w : "++" : ws2 -> w : bind ws2 + w : ws2 -> w : bind ws2 _ -> ws diff --git a/doc/MkSynopsis.hs b/doc/MkSynopsis.hs index e2040fe49..777c3aad2 100644 --- a/doc/MkSynopsis.hs +++ b/doc/MkSynopsis.hs @@ -1,27 +1,35 @@ import MkExxTable import System.Process(system) import System.Environment(getArgs) +import System.FilePath((),(<.>)) import Data.Char import Data.List -import qualified Data.ByteString.Char8 as BS import qualified Data.Map as M ----import Debug.Trace ---- +import Text.Printf +import Config type Cats = [(String,String,String)] type Rules = [(String,String,String)] -- the file generated +synopsis :: FilePath synopsis = "synopsis.txt" -- the language in which revealed examples are shown +revealedLang :: String revealedLang = "Eng" -- all languages shown (a copy of this list appears in Makefile) -apiExxFiles = ["api-examples-" ++ lang ++ ".txt" | lang <- words --- "Eng Chi" - "Afr Ara Bul Cat Chi Dan Dut Eng Est Eus Fin Fre Ger Gre Hin Ice Ita Jpn Lav Mlt Mon Nep Nor Nno Pes Pnb Pol Por Ron Rus Snd Spa Swe Tha Urd" - ] +apiExxFiles :: IO [FilePath] +apiExxFiles = do + langs <- loadLangsFrom (".." configFile) + return $ + [ "api-examples-" ++ (langCode lang) ++ ".txt" + | lang <- langs + , langSynopsis lang + ] +main :: IO () main = do xx <- getArgs let isLatex = case xx of @@ -31,7 +39,7 @@ main = do cs2 <- getCats catAPI let cs = sortCats (cs1 ++ cs2) writeFile synopsis "GF Resource Grammar Library: Synopsis" - append "B. Bringert, T. Hallgren, and A. Ranta" + -- append "B. Bringert, T. Hallgren, and A. Ranta" space append "%!Encoding:utf-8" append "%!style(html): ./revealpopup.css" @@ -66,7 +74,7 @@ main = do space link "Source 2:" structuralAPI space - apiExx <- getApiExx apiExxFiles + apiExx <- apiExxFiles >>= getApiExx rs <- getRules apiExx syntaxAPI --- putStrLn $ unlines ["p -cat=" ++ last (words t) ++ --- " \"" ++ e ++ "\"" | (_,t,e) <- rs, not (null e)] ---- @@ -83,7 +91,7 @@ main = do -- delimit rs space title "Lexical Paradigms" - mapM_ (putParadigms isLatex cs) paradigmFiles + paradigmFiles >>= mapM_ (putParadigms isLatex cs) space include "synopsis-additional.txt" space @@ -227,7 +235,6 @@ mkIdent = concatMap unspec where ':' -> "-" _ -> [c] - mkCatTable :: Bool -> Cats -> [String] mkCatTable isLatex cs = inChunks chsize (\rs -> header ++ map mk1 rs) cs where @@ -236,49 +243,36 @@ mkCatTable isLatex cs = inChunks chsize (\rs -> header ++ map mk1 rs) cs mk1 (name,expl,ex) = unwords ["|", showCat cs name, "|", expl, "|", typo ex, "|"] typo ex = if take 1 ex == "\"" then itf (init (tail ex)) else ex -srcPath = ("../src" ++) +srcPath = (() "../src") -commonAPI = srcPath "/abstract/Common.gf" -catAPI = srcPath "/abstract/Cat.gf" -syntaxAPI = srcPath "/api/Constructors.gf" -structuralAPI = srcPath "/abstract/Structural.gf" -paradigmFiles = [ - ("Afrikaans", srcPath "/afrikaans/ParadigmsAfr.gf"), - ("Arabic", srcPath "/arabic/ParadigmsAra.gf"), - ("Basque", srcPath "/basque/ParadigmsEus.gf"), - ("Bulgarian", srcPath "/bulgarian/ParadigmsBul.gf"), - ("Catalan", srcPath "/catalan/ParadigmsCat.gf"), - ("Chinese", srcPath "/chinese/ParadigmsChi.gf"), - ("Danish", srcPath "/danish/ParadigmsDan.gf"), - ("Dutch", srcPath "/dutch/ParadigmsDut.gf"), - ("English", srcPath "/english/ParadigmsEng.gf"), - ("Estonian", srcPath "/estonian/ParadigmsEst.gf"), - ("Finnish", srcPath "/finnish/ParadigmsFin.gf"), - ("French", srcPath "/french/ParadigmsFre.gf"), - ("German", srcPath "/german/ParadigmsGer.gf"), - ("Greek", srcPath "/greek/ParadigmsGre.gf"), - ("Hindi", srcPath "/hindi/ParadigmsHin.gf"), - ("Icelandic", srcPath "/icelandic/ParadigmsIce.gf"), --- ("Interlingua", srcPath "/interlingua/ParadigmsIna.gf"), - ("Italian", srcPath "/italian/ParadigmsIta.gf"), - ("Japanese", srcPath "/japanese/ParadigmsJpn.gf"), - ("Latvian", srcPath "/latvian/ParadigmsLav.gf"), - ("Maltese", srcPath "/maltese/ParadigmsMlt.gf"), - ("Mongolian", srcPath "/mongolian/ParadigmsMon.gf"), - ("Nepali", srcPath "/nepali/ParadigmsNep.gf"), - ("Norwegian", srcPath "/norwegian/ParadigmsNor.gf"), - ("Nynorsk", srcPath "/nynorsk/ParadigmsNno.gf"), - ("Polish", srcPath "/polish/ParadigmsPol.gf"), - ("Punjabi", srcPath "/punjabi/ParadigmsPnb.gf"), - ("Portuguese", srcPath "/portuguese/ParadigmsPor.gf"), - ("Romanian", srcPath "/romanian/ParadigmsRon.gf"), - ("Russian", srcPath "/russian/ParadigmsRus.gf"), - ("Sindhi", srcPath "/sindhi/ParadigmsSnd.gf"), - ("Spanish", srcPath "/spanish/ParadigmsSpa.gf"), - ("Swedish", srcPath "/swedish/ParadigmsSwe.gf"), - ("Thai", srcPath "/thai/ParadigmsTha.gf"), - ("Urdu", srcPath "/urdu/ParadigmsUrd.gf") - ] +commonAPI = srcPath "abstract/Common.gf" +catAPI = srcPath "abstract/Cat.gf" +syntaxAPI = srcPath "api/Constructors.gf" +structuralAPI = srcPath "abstract/Structural.gf" + +paradigmFiles :: IO [(String,FilePath)] +paradigmFiles = do + langs <- loadLangsFrom (".." configFile) + return $ + [ (name, srcPath $ printf "%s/Paradigms%s.gf" (langDir lang) (langCode lang)) + | lang <- langs + , langSynopsis lang + , let name = formatName (langDir lang) + ] + +-- | Format language name from directory name +-- "ancient_greek -> Ancient Greek" +formatName :: String -> String +formatName = unwords . map (\(s:ss) -> toUpper s : ss) . splitOn (=='_') + +-- | Split a string at given character, similar to words +splitOn :: (Char -> Bool) -> String -> [String] +splitOn _ "" = [] +splitOn f s = takeWhile (not.f) s : splitOn f rest + where + rest = case dropWhile (not.f) s of + "" -> [] + _:xs -> xs append s = appendFile synopsis ('\n':s) title s = append $ "=" ++ s ++ "=" @@ -339,7 +333,7 @@ showTyp cs = unwords . map f . words -- to work around GHC 6.12 file input readFileC cod file = do - let tmp = file ++ ".tmp" + let tmp = file <.> "tmp" case cod of "utf8" -> readFile file _ -> do diff --git a/doc/language-list.txt b/doc/language-list.txt deleted file mode 100644 index 486353b69..000000000 --- a/doc/language-list.txt +++ /dev/null @@ -1,35 +0,0 @@ -Afrikaans -Amharic -Arabic -Bulgarian -Catalan -Chinese -Danish -Dutch -English -Finnish -French -German -Greek -Hebrew -Hindi -Interlingua -Japanese -Italian -Latin -Latvian -
  • Maltese -Nepali -Norwegian -Persian -Polish -Punjabi -Romanian -Russian -Sindhi -Spanish -Swahili -Swedish -Thai -Turkish -Urdu diff --git a/languages.csv b/languages.csv index 5af6e0a1e..4cddceaf7 100644 --- a/languages.csv +++ b/languages.csv @@ -1,45 +1,45 @@ -Code,Directory,Functor,Unlexer,Present,All,Try,Symbolic,Compatibility -Afr,afrikaans,,,,,,n, -Amh,amharic,,,,,n,n, -Ara,arabic,,,,,,y, -Eus,basque,,,,,,, -Bul,bulgarian,,,y,,,, -Cat,catalan,Romance,,y,,,,y -Chi,chinese,,,,,,, -Dan,danish,Scand,,y,,,, -Dut,dutch,,,y,,,, -Eng,english,,,y,,,,y -Est,estonian,,,,,,, -Fin,finnish,,,y,,,,y -Fre,french,Romance,,y,,,,y -Grc,ancient_greek,,,y,,n,n, -Gre,greek,,,,,,, -Heb,hebrew,,,,,n,n, -Hin,hindi,Hindustani,to_devanagari,y,,,, -Hun,hungarian,,,y,n,n,n, -Ger,german,,,,,,, -Ice,icelandic,,,,,,n, -Ina,interlingua,,,y,,n,n, -Ita,italian,Romance,,y,,,,y -Jpn,japanese,,,,,,, -Lat,latin,,,y,,n,n, -Lav,latvian,,,,,,,y -Mlt,maltese,,,,,,, -Mon,mongolian,,,,,,n, -Nep,nepali,,,,,,n, -Nor,norwegian,Scand,,y,,,, -Nno,nynorsk,,,y,,,, -Pes,persian,,,,,,, -Pol,polish,,,,,,, -Por,portuguese,Romance,,y,,,,y -Pnb,punjabi,,,y,,,, -Ron,romanian,,,y,,,, -Rus,russian,,,y,,,, -Snd,sindhi,,,,,,, -Spa,spanish,Romance,,y,,,,y -Swa,swahili,,,,n,n,n,y -Swe,swedish,Scand,,y,,,,y -Tel,telugu,,,y,n,n,n, -Tha,thai,,to_thai,,,,, -Tur,turkish,,,,,n,n, -Urd,urdu,Hindustani,,,,,, +Code,Directory,Functor,Unlexer,Present,All,Try,Symbolic,Compatibility,Synopsis +Afr,afrikaans,,,,,,n,,y +Amh,amharic,,,,,n,n,,n +Ara,arabic,,,,,,y,,y +Bul,bulgarian,,,y,,,,,y +Cat,catalan,Romance,,y,,,,y,y +Chi,chinese,,,,,,,,y +Dan,danish,Scand,,y,,,,,y +Dut,dutch,,,y,,,,,y +Eng,english,,,y,,,,y,y +Est,estonian,,,,,,,,y +Eus,basque,,,,,,,,y +Fin,finnish,,,y,,,,y,y +Fre,french,Romance,,y,,,,y,y +Ger,german,,,,,,,,y +Grc,ancient_greek,,,y,,n,n,,n +Gre,greek,,,,,,,,y +Heb,hebrew,,,,,n,n,,n +Hin,hindi,Hindustani,to_devanagari,y,,,,,y +Hun,hungarian,,,y,n,n,n,,n +Ice,icelandic,,,,,,n,,y +Ina,interlingua,,,y,,n,n,,n +Ita,italian,Romance,,y,,,,y,y +Jpn,japanese,,,,,,,,y +Lat,latin,,,y,,n,n,,n +Lav,latvian,,,,,,,y,y +Mlt,maltese,,,,,,,,y +Mon,mongolian,,,,,,n,,y +Nep,nepali,,,,,,n,,y +Nno,nynorsk,,,y,,,,,y +Nor,norwegian,Scand,,y,,,,,y +Pes,persian,,,,,,,,y +Pnb,punjabi,,,y,,,,,y +Pol,polish,,,,,,,,y +Por,portuguese,Romance,,y,,,,y,y +Ron,romanian,,,y,,,,,y +Rus,russian,,,y,,,,,y +Snd,sindhi,,,,,,,,y +Spa,spanish,Romance,,y,,,,y,y +Swa,swahili,,,,n,n,n,y,n +Swe,swedish,Scand,,y,,,,y,y +Tel,telugu,,,y,n,n,n,,n +Tha,thai,,to_thai,,,,,,y +Tur,turkish,,,,,n,n,,n +Urd,urdu,Hindustani,,,,,,,y From 6e8f92a9c52d5986398d89c3f5e509b8c0311822 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Tue, 6 Nov 2018 10:37:54 +0100 Subject: [PATCH 082/172] Remove generated categories-imagemap.html from version control There are many other things which should not be under version control... --- doc/categories-imagemap.html | 53 ------------------------------------ 1 file changed, 53 deletions(-) delete mode 100644 doc/categories-imagemap.html diff --git a/doc/categories-imagemap.html b/doc/categories-imagemap.html deleted file mode 100644 index 31f01eef5..000000000 --- a/doc/categories-imagemap.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From 41ec90c3fe1128ec07b4e96647609bc4e552cb28 Mon Sep 17 00:00:00 2001 From: odanoburu Date: Wed, 31 Oct 2018 09:03:42 -0300 Subject: [PATCH 083/172] (travis) refactor travis CI - add ubuntu, mac, and windows builds add travis build with mac and ubuntu - fix signature in Make.hs for compatibility with ghc<8 add windows build to travis using haskell and bash scripts (travis) use env variable Make.bat works (Make.bar) [temporary] comment some Langs merge upstream and uncomment langs --- .travis.yml | 25 ++++++++++++++++++------- Make.hs | 2 +- 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7f2c3d435..1e4a560bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,25 @@ sudo: required - language: c -services: - - docker +os: + - linux + - osx + - windows + +addons: + apt: + packages: + - ghc before_install: - - docker pull odanoburu/haskell-gf:3.9 - - mkdir rgl + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew install ghc@8.2 && export PATH="/usr/local/opt/ghc@8.2/bin:$PATH" ; fi + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then curl http://www.grammaticalframework.org/download/gf-3.9-bin-intel-mac.tar.gz > gf.tar.gz && sudo tar --no-same-owner --no-same-permissions -C /usr/local -zxf gf.tar.gz && rm gf.tar.gz; fi + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl http://www.grammaticalframework.org/download/gf_3.9.1-1_amd64-trusty.deb > gf.deb && sudo dpkg -i gf.deb && rm gf.deb ; fi + - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install ghc --version=8.4.4 && export PATH="/c/ProgramData/chocolatey/lib/ghc/tools/ghc-8.4.4/bin:$PATH"; fi + - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then curl http://www.grammaticalframework.org/download/gf-3.9-bin-windows.zip > gf.zip && unzip gf.zip && rm gf.zip && export PATH="$TRAVIS_BUILD_DIR/gf-3.9/bin:$PATH"; fi + - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then alias gf='gf.exe' && alias runghc='runghc.exe' ; fi script: - - docker run --mount src="$(pwd)",target=/home,type=bind odanoburu/haskell-gf:3.9 /bin/bash -c "cd /home/; export GF_LIB_PATH=/home/rgl ; runghc Make.hs build prelude all --verbose ;" - - docker run --mount src="$(pwd)",target=/home,type=bind odanoburu/haskell-gf:3.9 /bin/bash -c "cd /home/; export GF_LIB_PATH=/home/rgl; bash Make.sh --dest=rgl --verbose ;" + - runghc Make.hs build prelude all --verbose ; rm -rf dist + - bash Make.sh --dest=dist-bash --verbose ; rm -rf dist + - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then cmd //c Make.bat --dest=dist-bat --verbose ; fi diff --git a/Make.hs b/Make.hs index 2a40e3989..434040bdb 100644 --- a/Make.hs +++ b/Make.hs @@ -444,7 +444,7 @@ execute command args = do -- | For parallel RGL module compilation -- Unfortunately, this has no effect unless compiled with -threaded -parallel_ :: (Foldable t, Monad m) => t (m a) -> m () +--parallel_ :: (Foldable t, Monad m) => t (m a) -> m () parallel_ ms = sequence_ ms -- do c <- newChan -- ts <- sequence [ forkIO (m >> writeChan c ()) | m <- ms] From 2888073c44d0dbb6a467adcb161be58011416a1c Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 7 Nov 2018 11:30:00 +0100 Subject: [PATCH 084/172] (Ara) Minor fixes --- src/arabic/NounAra.gf | 2 +- src/arabic/QuestionAra.gf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index d20b3e787..d0b0c5c82 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -90,7 +90,7 @@ lin } ; DetQuant quant num = quant ** { - s = \\h,g,c => quant.s ! Pl ! h ! g ! c + s = \\h,g,c => quant.s ! sizeToNumber num.n ! h ! g ! c ++ num.s ! g ! (toDef quant.d num.n) ! c ; n = num.n; isNum = -- Num may come from NumCard : Card -> Num diff --git a/src/arabic/QuestionAra.gf b/src/arabic/QuestionAra.gf index ecfa1f8c1..c06674501 100644 --- a/src/arabic/QuestionAra.gf +++ b/src/arabic/QuestionAra.gf @@ -8,7 +8,7 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA s = \\t,p => table { QIndir => "إِذا" ++ cl.s ! t ! p ! Verbal ; - QDir => "هَل" ++ cl.s ! t ! p ! Verbal + QDir => "هَلْ" ++ cl.s ! t ! p ! Verbal } }; From 5c5cd125c9e591a5f74652c0d158111ea15a94ec Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 7 Nov 2018 11:31:07 +0100 Subject: [PATCH 085/172] (Ara) Add paradigm for doubly weak FormIV + remove hamza from imperative prefix --- src/arabic/OrthoAra.gf | 8 ++++ src/arabic/ParadigmsAra.gf | 18 ++++----- src/arabic/ResAra.gf | 77 +++++++++++++++++++++++--------------- 3 files changed, 61 insertions(+), 42 deletions(-) diff --git a/src/arabic/OrthoAra.gf b/src/arabic/OrthoAra.gf index 0e5d7e196..c5968270d 100644 --- a/src/arabic/OrthoAra.gf +++ b/src/arabic/OrthoAra.gf @@ -6,6 +6,8 @@ flags coding=utf8 ; vow : pattern Str = #("َ" | "ِ" | "ُ" | "ً" | "ٍ" | "ٌ") ; + weak : pattern Str = #("و"|"ي") ; + -- "Sun letters": assimilate with def. article sun : pattern Str = #("ت"|"ث"|"د"|"ذ"|"ر"|"ز"|"س"|"ش"|"ص"|"ض"|"ط"|"ظ"|"ل"|"ن") ; @@ -17,6 +19,12 @@ flags coding=utf8 ; _ => word + suffix } ; + -- IL: using this to reuse patterns for weak verbs, might be strange/wrong + rmSukun : Str -> Str = \s -> case s of { + x + "ْ" + y => x + y ; + _ => s + } ; + -- Hamza hamza : pattern Str = #("ء"|"؟") ; diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index 035903273..aa2b9a46d 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -351,7 +351,7 @@ resource ParadigmsAra = open } in { s = case root.l of { - "و"|"ي" => (v2defective root).s; + #weak => (v2defective root).s; _ => (v2sound root).s }; lock_V = <> @@ -368,16 +368,12 @@ resource ParadigmsAra = open v4 = \rootStr -> - let { - root = mkRoot3 rootStr - } in { - s = - case root.l of { - "و"|"ي" => (v4defective root).s; - _ => (v4sound root).s - }; - lock_V = <> - }; + let root : Root3 = mkRoot3 rootStr ; + verb : Verb = case rootStr of { + ? + #hamza + #weak => v4doubleweak root ; + _ + #weak => v4defective root ; + _ => v4sound root } ; + in lin V verb ; v5 = diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 73b423c2a..6949e16da 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -127,7 +127,6 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { isNum : Bool } ; - uttNum : NumOrdCard -> (Gender => Str) ; uttNum n = \\g => n.s ! g ! Def ! Nom ; ----IL @@ -263,8 +262,11 @@ oper } ; --macro for defective verbs: - verbDef : DefForms -> Vowel -> Verb = - \vforms,vowImpf -> + verbDef : DefForms -> Vowel -> Verb = verbDefBool False ; + verbDoubleDef : DefForms -> Vowel -> Verb = verbDefBool True ; + + verbDefBool : Bool -> DefForms -> Vowel -> Verb = + \isDoubleDef,vforms,vowImpf -> let { rama = vforms ! 0 ; -- VPerf Act (Per3 Masc Sg) ramay = vforms ! 1 ; -- VPerf Act (Per3 Fem Pl) @@ -280,13 +282,14 @@ oper patPerf = patDefPerf rama ramay rumi rumu rumiy ; patImpfAct = patDefImpfAct armi armu ; - patImp = patDefImp Irmi Irmu + patImp = patDefImp Irmi Irmu ; + suffixImpf = case isDoubleDef of {True => suffixImpfDoubleDef ; _ => suffixImpfDef} } in { s = table { - VPerf v pgn => patPerf ! v ! pgn + suffixPerfDef v ! pgn ; - VImpf m Act pgn => prefixImpf ! pgn + patImpfAct ! pgn + suffixImpfDef Act vowImpf ! m ! pgn ; - VImpf m Pas pgn => prefixImpf ! pgn + urma + suffixImpfDef Pas vowImpf ! m ! pgn ; - VImp g n => patImp ! g ! n + suffixImpfDef Act vowImpf ! Jus ! Per2 g n ; + VPerf v pgn => patPerf ! v ! pgn + suffixPerfDef v ! pgn ; + VImpf m Act pgn => prefixImpf ! pgn + patImpfAct ! pgn + suffixImpf Act vowImpf ! m ! pgn ; + VImpf m Pas pgn => prefixImpf ! pgn + urma + suffixImpf Pas vowImpf ! m ! pgn ; + VImp g n => patImp ! g ! n + suffixImpf Act vowImpf ! Jus ! Per2 g n ; VPPart => ppart } } ; @@ -352,7 +355,6 @@ oper Per1 Plur => "نَا" } ; - suffixImpfDef : Voice -> Vowel -> Mood => PerGenNum => Str = \vc,vw -> let { default : Mood -> Str = \m -> @@ -389,6 +391,10 @@ oper } } ; + -- does this even happen other than with رءي? /IL + suffixImpfDoubleDef : Voice -> Vowel -> Mood => PerGenNum => Str = \vc,vw -> + \\m,p => rmSukun (suffixImpfDef vc vw ! m ! p) ; + --now is used for the sound, assimilated (weak C1), and when C1 = hamza: v1sound : Root3 -> Vowel -> Vowel -> Verb = @@ -406,8 +412,8 @@ v1sound : Root3 -> Vowel -> Vowel -> Verb = }; uktab = mkStrong ufcal fcl ; euktub = case fcl.f of { - "؟"|"و"|"ي" => qif ; - _ => prefixImp ! vowImpf + ktub + "ء"|"و"|"ي" => qif ; + _ => prefixImp ! vowImpf + ktub }; maktUb = mkStrong mafcUl fcl } in @@ -506,7 +512,7 @@ toDefForms : (x1,_,_,_,_,_,_,_,_,_,x11 : Str) -> DefForms = 7 => h ; 8 => i ; 9 => j ; 10 => k } ; -def1Forms_perfA : Root3 -> Vowel -> DefForms = \rmy,vowImpf -> +v1DefForms_perfA : Root3 -> Vowel -> DefForms = \rmy,vowImpf -> let { _rmi = mkDefective (patDef1 ! vowImpf) rmy ; _rmu = mkDefective (patDef2 ! vowImpf) rmy ; @@ -524,11 +530,11 @@ def1Forms_perfA : Root3 -> Vowel -> DefForms = \rmy,vowImpf -> } in toDefForms rama ramay rumi rumu rumiy armi armu urma eirmi eirmu marmiy ; v1defective_a : Root3 -> Vowel -> Verb = \rmy,vowImpf -> - let vforms = def1Forms_perfA rmy vowImpf + let vforms = v1DefForms_perfA rmy vowImpf in verbDef vforms vowImpf ; v1defective_i : Root3 -> Vowel -> Verb = \bqy,vowImpf -> -- IL (conjugation 1d4) - let vforms_a = def1Forms_perfA bqy vowImpf ; + let vforms_a = v1DefForms_perfA bqy vowImpf ; baqI = mkDefective facIl bqy ; baqiy = mkDefective facil bqy ; vforms_i = table { 0 => baqI ; @@ -599,23 +605,32 @@ v4sound : Root3 -> Verb = verb eaqnac euqnic uqnic uqnac eaqnic muqnac; -v4defective : Root3 -> Verb = \cTy -> + v4DefForms : Root3 -> DefForms = \cTy -> let { - cTa = mkDefective fca cTy; - cTu = mkDefective fcu cTy; - cTi = mkDefective fci cTy; - eacTa = "أَ" + cTa; - eacTay = mkStrong eafcal cTy ; - ucTi = "ُ" + cTi; - eucTi = "أُ" + cTi; - ucTu = "ُ" + cTu; - eucTu = "أُ" + cTu; - eucTiy = mkStrong eufcil cTy ; - ucTa = "ُ" + cTa; - eacTi = "أَ" + cTi; - eacTu = "أَ" + cTu; + _cTa = mkDefective fca cTy; + _cTu = mkDefective fcu cTy; + _cTi = mkDefective fci cTy; + eacTa = "أَ" + _cTa; -- VPerf Act (Per3 Masc Sg) + eacTay = mkStrong eafcal cTy ; -- VPerf Act (Per3 Fem Pl) + eucTi = "أُ" + _cTi; -- VPerf Pas (Per3 _ Sg) + eucTu = "أُ" + _cTu; -- VPerf Pas (Per3 Masc Pl) + eucTiy = mkStrong eufcil cTy ; -- VPerf Pas (Per3 Fem Pl) + ucTi = "ُ" + _cTi; -- VImpf Act + ucTu = "ُ" + _cTu; -- VImpf Act (Per2/3 Masc Pl) + ucTa = "ُ" + _cTa; -- VImpf Pas + eacTi = "أَ" + _cTi; -- VImp (Masc Sg / Fem _) + eacTu = "أَ" + _cTu; -- VImp Masc Pl mucTaY = "م" + ucTa +"ى" - } in verbDef (toDefForms eacTa eacTay eucTi eucTu eucTiy ucTi ucTu ucTa eacTi eacTu mucTaY) i; + } in toDefForms eacTa eacTay eucTi eucTu eucTiy ucTi ucTu ucTa eacTi eacTu mucTaY ; + +v4defective : Root3 -> Verb = \cTy -> + verbDef (v4DefForms cTy) i ; + +v4doubleweak : Root3 -> Verb = \r'y -> + let ry = r'y ** {c = ""} ; + vforms : DefForms = \\x => rmSukun (v4DefForms ry ! x) ; -- only remove the first sukun + in verbDoubleDef vforms i ; -- sukun in suffixes is removed in verbDoubleDef + v5sound : Root3 -> Verb = \nfs -> @@ -723,8 +738,8 @@ endVowel : Mood => Str = prefixImp : Vowel => Str = table { - u => "أُ" ; - _ => "إِ" + u => "اُ" ; + _ => "اِ" } ; patHollowPerf : (_,_,_,_ :Str) -> Voice => PerGenNum => Str = \xAf,xif,xIf,xuf -> From 36b827bcc2153fdb4c51786dbc0b986a25b3d4d4 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Wed, 7 Nov 2018 13:19:54 +0100 Subject: [PATCH 086/172] Clarify default values of columns in languages.csv --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index dda79ac41..7d784ae19 100644 --- a/README.md +++ b/README.md @@ -27,24 +27,24 @@ It will look for, in this order: ## Language config -A list of all languages and their properties is maintained centrally in `languages.csv`. +A list of all languages and their properties is maintained centrally in [`languages.csv`](languages.csv). This file should be kept up-to-date and all build methods should read this config file. **If you see something wrong, please report/fix it.** -Description of columns: -- Code, e,g, `Eng` -- Directory, e.g. `english` -- Functor (not used) -- Unlexer (not used) -- Present: languages that have `--# notpresent` marked -- All: languages for which to compile `All` -- Try: languages for which to compile `Try` -- Symbolic: languages for which to compile `Symbolic` -- Compatibility: languages for which to complile `Compatibility` -- Synopsis: languages to include in the RGL synopsis document +| Column | Description | Default | +|:--------------|:-----------------------------------------|:-------:| +| Code | e.g. `Eng` | - | +| Directory | folder name under `src`, e.g. `english` | - | +| Functor | (not used) | - | +| Unlexer | (not used) | - | +| Present | language is marked with `--# notpresent` | n | +| All | compile `All` module | y | +| Try | compile `Try` module | y | +| Symbolic | compile `Symbolic` module | y | +| Compatibility | complile `Compatibility` module | n | +| Synopsis | include language in the RGL synopsis | n | -Columns can be a string, just `y`'s (where nothing means `n`) or just (`n`'s where nothing means `y`), -or a mixture of both `y`'s and `n`'s. +If default is `y` then anything other than `n`, including the empty string, is treated as true (and vice versa when default is `n`). ## Haskell script: `Make.hs` From bf28bf1e5642fb9969ad566e60757102b5ba69ce Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 7 Nov 2018 14:30:38 +0100 Subject: [PATCH 087/172] (Ara) Prepositions + improve Paradigms API functions --- src/arabic/AdjectiveAra.gf | 2 +- src/arabic/AdverbAra.gf | 2 +- src/arabic/CatAra.gf | 16 ++-- src/arabic/LexiconAra.gf | 2 +- src/arabic/NounAra.gf | 2 +- src/arabic/ParadigmsAra.gf | 179 ++++++++++++++++++++++++++---------- src/arabic/QuestionAra.gf | 2 +- src/arabic/ResAra.gf | 22 ++++- src/arabic/SentenceAra.gf | 2 +- src/arabic/StructuralAra.gf | 38 ++++---- src/arabic/VerbAra.gf | 7 +- 11 files changed, 185 insertions(+), 89 deletions(-) diff --git a/src/arabic/AdjectiveAra.gf b/src/arabic/AdjectiveAra.gf index baae0935e..ec15d5355 100644 --- a/src/arabic/AdjectiveAra.gf +++ b/src/arabic/AdjectiveAra.gf @@ -21,7 +21,7 @@ concrete AdjectiveAra of Adjective = CatAra ** open ResAra, Prelude in { -- $SuperlA$ belongs to determiner syntax in $Noun$. -- ComplA2 a np = { - s = \\sp,g,n,st,c => a.s ! APosit g n st c ++ a.c2 ++ np.s ! Gen ; + s = \\sp,g,n,st,c => a.s ! APosit g n st c ++ a.c2.s ++ np.s ! a.c2.c ; } ; -- -- ReflA2 a = { diff --git a/src/arabic/AdverbAra.gf b/src/arabic/AdverbAra.gf index d7a90387a..d6f8eb9f3 100644 --- a/src/arabic/AdverbAra.gf +++ b/src/arabic/AdverbAra.gf @@ -10,7 +10,7 @@ concrete AdverbAra of Adverb = CatAra ** open ResAra, Prelude in { -- s = cadv.s ++ a.s ! AAdv ++ "تهَن" ++ s.s -- } ; - PrepNP prep np = {s = prep.s ++ np.s ! Gen} ; + PrepNP prep np = {s = prep.s ++ np.s ! prep.c} ; -- AdAdv = cc2 ; -- diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index d1fe2f494..13cd0773d 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -36,7 +36,7 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { -- Verb VP = ResAra.VP ; - VPSlash = ResAra.VPSlash ; -- VP ** {c2:Str} + VPSlash = ResAra.VPSlash ; -- VP ** {c2:Preposition} Comp = ResAra.Comp ; --{s : AAgr => Case => Str} ; -- SC = {s : Str} ; -- @@ -72,21 +72,21 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { Conj = {s : Str ; n : ResAra.Number} ; -- DConj = {s1,s2 : Str ; n : ResAra.Number} ; -- Subj = {s : Str} ; - Prep = {s : Str} ; + Prep = ResAra.Preposition ; -- Open lexical classes, e.g. Lexicon V, VS, VQ, VA = ResAra.Verb ; -- = {s : VForm => Str} ; - V2, V2A = ResAra.Verb ** {c2 : Str} ; - VV, V2V, V2S, V2Q = ResAra.Verb ** {c2 : Str} ; --- AR - V3 = ResAra.Verb ** {c2, c3 : Str} ; + V2, V2A = ResAra.Verb2 ; + VV, V2S, V2Q = ResAra.Verb2 ; + V2V, V3 = ResAra.Verb3 ; A = ResAra.Adj ; - A2 = ResAra.Adj ** {c2 : Str} ; + A2 = ResAra.Adj2 ; N = ResAra.Noun ; - N2 = ResAra.Noun ** {c2 : Str} ; - N3 = ResAra.Noun ** {c2, c3 : Str} ; + N2 = ResAra.Noun2 ; + N3 = ResAra.Noun3 ; PN = {s : Case => Str; g : Gender; h : Species} ; linref diff --git a/src/arabic/LexiconAra.gf b/src/arabic/LexiconAra.gf index 8178ce9f7..4f3cff580 100644 --- a/src/arabic/LexiconAra.gf +++ b/src/arabic/LexiconAra.gf @@ -24,7 +24,7 @@ flags beautiful_A = sndA "جمل" "فَعِيل" ; become_VA = mkVA (v4 "صبح") ; beer_N = sdfN "بير" "فِعلة" Fem NoHum ; - beg_V2V = dirV2 (v5 "وسل") ; + beg_V2V = mkV2V (mkVV (v5 "وسل")) noPrep ; big_A = sndA "كبر" "فَعِيل" ; bike_N = sdfN "درج" "فَعّالة" Fem NoHum ; bird_N = brkN "طير" "فَعل" "فُعُول" Masc NoHum; diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index d0b0c5c82..aed22c99f 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -180,7 +180,7 @@ lin Use3N3 n3 = n3 ** {c2 = n3.c3} ; ComplN2 n2 np = UseN n2 ** --- IL - {s = \\n,s,c => n2.s ! n ! s ! c ++ n2.c2 ++ np.s ! Gen} ; + {s = \\n,s,c => n2.s ! n ! s ! c ++ n2.c2.s ++ np.s ! n2.c2.c} ; ComplN3 n3 np = ComplN2 n3 np ** {c2 = n3.c3} ; diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index aa2b9a46d..962c0158d 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -35,9 +35,16 @@ resource ParadigmsAra = open oper --- Prepositions are used in many-argument functions for rection. + Case : Type ; + nom : Case ; + acc : Case ; + gen : Case ; +-- Prepositions are used in many-argument functions for rection. Preposition : Type ; + noPrep : Preposition ; + casePrep : Case -> Preposition ; + --- TODO: continue, add all over the grammar Gender : Type ; masc : Gender ; @@ -100,13 +107,17 @@ resource ParadigmsAra = open --3 Relational nouns - mkN2 = overload { - mkN2 : N -> Preposition -> N2 = prepN2 ; - mkN2 : N -> N2 = \n -> lin N2 (n ** {c2 = []}) ; - mkN2 : Str -> N2 = \str -> lin N2 (smartN str ** {c2 = []}) + mkN2 : overload { + mkN2 : N -> Preposition -> N2 ; -- ready-made preposition + mkN2 : (mother : N) -> (of_ : Str) -> N2 ; -- preposition given as a string + mkN2 : N -> N2 ; -- no preposition + mkN2 : Str -> N2 ; -- no preposition, predictable inflection } ; - mkN3 : N -> Preposition -> Preposition -> N3 ; + mkN3 : overload { + mkN3 : N -> Preposition -> Preposition -> N3 ; -- ready-made prepositions + mkN3 : N -> Str -> Str -> N3 ; -- prepositions given as strings + } ; --2 Adjectives @@ -135,7 +146,10 @@ resource ParadigmsAra = open -- -- Two-place adjectives need a preposition for their second argument. - mkA2 : A -> Preposition -> A2 ; + mkA2 : overload { + mkA2 : A -> Preposition -> A2 ; + mkA2 : A -> Str -> A2 + } ; --2 Adverbs @@ -152,14 +166,12 @@ resource ParadigmsAra = open --2 Prepositions -- -- A preposition as used for rection in the lexicon, as well as to --- build $PP$s in the resource API, just requires a string. - - mkPrep : Str -> Prep - = \s -> lin Prep {s = mkPreposition s} ; -- preposition in the sense of RGL abstract syntax - - mkPreposition : Str -> Preposition ; -- just a string, for internal use - +-- build $PP$s in the resource API. Requires a string and a case. + mkPrep : overload { + mkPrep : Str -> Prep ; + mkPrep : Str -> Case -> Prep + } ; -- preposition in the sense of RGL abstract syntax --2 Verbs -- Overloaded operations @@ -212,10 +224,11 @@ resource ParadigmsAra = open -- Two-place verbs need a preposition, except the special case with direct object. -- (transitive verbs). Notice that a particle comes from the $V$. - mkV2 = overload { - mkV2 : V -> V2 = dirV2 ; - mkV2 : V -> Preposition -> V2 = prepV2 ; - mkV2 : Str -> V2 = strV2; + mkV2 : overload { + mkV2 : V -> V2 ; -- No preposition + mkV2 : V -> Str -> V2 ; -- Preposition as string, default case genitive + mkV2 : V -> Preposition -> V2 ; -- Ready-made preposition + mkV2 : Str -> V2 ; -- Predictable verb conjugation, no preposition } ; dirV2 : V -> V2 ; @@ -225,9 +238,15 @@ resource ParadigmsAra = open -- Three-place (ditransitive) verbs need two prepositions, of which -- the first one or both can be absent. - mkV3 : V -> Preposition -> Preposition -> V3 ; -- speak, with, about - dirV3 : V -> Preposition -> V3 ; -- give,_,to - dirdirV3 : V -> V3 ; -- give,_,_ + mkV3 : overload { + mkV3 : V -> Preposition -> Preposition -> V3 ; -- speak, with, about + mkV3 : V -> (to : Str) -> (about:Str) -> V3 -- like above, but with strings as arguments (default complement case genitive) + } ; + dirV3 : overload { + dirV3 : V -> Preposition -> V3 ; -- give,_,to + dirV3 : V -> (to : Str) -> V3 -- like above, but with string as argument (default complement case genitive) + } ; + dirdirV3 : V -> V3 ; -- give,_,_ --3 Other complement patterns -- @@ -241,7 +260,11 @@ resource ParadigmsAra = open mkVV : V -> VV = regVV ; mkVV : V -> Str -> VV = c2VV } ; - mkV2V : V -> Str -> Str -> V2V ; + mkV2V : overload { + mkV2V : V -> Str -> Str -> V2V ; + mkV2V : V -> Preposition -> Preposition -> V2V ; + mkV2V : VV -> Preposition -> V2V + } ; mkVA : V -> VA ; mkV2A : V -> Str -> V2A ; mkVQ : V -> VQ ; @@ -266,9 +289,16 @@ resource ParadigmsAra = open -- The definitions should not bother the user of the API. So they are -- hidden from the document. + Case = ResAra.Case ; + nom = ResAra.Nom ; + acc = ResAra.Acc ; + gen = ResAra.Gen ; +-- Prepositions are used in many-argument functions for rection. - Preposition = Str ; + Preposition = ResAra.Preposition ; + noPrep = {s=[]; c=nom} ; + casePrep c = {s=[]; c=c} ; Gender = ResAra.Gender ; masc = ResAra.Masc ; @@ -283,6 +313,24 @@ resource ParadigmsAra = open vu = ResAra.u ; vi = ResAra.i ; + mkPrep = overload { + mkPrep : Str -> Prep = \s -> + lin Prep (mkPreposition s) ; + mkPrep : Str -> Case -> Prep = \s,c -> + lin Prep (mkPreposition s c) + } ; + + + mkV2 = overload { + mkV2 : V -> V2 = dirV2 ; + mkV2 : V -> Str -> V2 = \v,p -> prepV2 v (mkPreposition p); + mkV2 : V -> Preposition -> V2 = prepV2 ; + mkV2 : Str -> V2 = strV2; + } ; + + prepV2 : V -> Preposition -> V2 = \v,p -> v ** {s = v.s ; c2 = p ; lock_V2 = <>} ; + strV2 : Str -> V2 = \str -> dirV2 (mkV str) ; + mkN = overload { mkN : (sg : Str) -> N -- non-human regular nouns = smartN ; @@ -330,8 +378,6 @@ resource ParadigmsAra = open lock_V = <> } ; - - v1' : Str -> Vowel -> Vowel -> Verb = \rootStr,vPerf,vImpf -> let { root = mkRoot3 rootStr } in @@ -469,10 +515,21 @@ resource ParadigmsAra = open lock_PN = <> }; + mkN2 = overload { + mkN2 : N -> Preposition -> N2 = prepN2 ; + mkN2 : N -> Str -> N2 = \n,s -> prepN2 n (mkPreposition s); + mkN2 : N -> N2 = \n -> lin N2 (n ** {c2 = noPrep}) ; + mkN2 : Str -> N2 = \str -> lin N2 (smartN str ** {c2 = noPrep}) + } ; - prepN2 : N -> Str -> N2 = \n,p -> lin N2 (n ** {c2 = p}) ; + prepN2 : N -> Preposition -> N2 = \n,p -> lin N2 (n ** {c2 = p}) ; - mkN3 = \n,p,q -> n ** {lock_N3 = <> ; c2 = p ; c3 = q} ; + mkN3 = overload { + mkN3 : N -> Preposition -> Preposition -> N3 = \n,p,q -> + lin N3 (n ** {c2 = p ; c3 = q}) ; + mkN3 : N -> Str -> Str -> N3 = \n,p,q -> + lin N3 (n ** {c2 = mkPreposition p ; c3 = mkPreposition q}) ; + } ; mkPron : (_,_,_ : Str) -> PerGenNum -> NP = \ana,nI,I,pgn -> { s = @@ -571,45 +628,67 @@ resource ParadigmsAra = open s = clr eaHmar HamrA' Humr; }; - mkA2 a p = a ** {c2 = p ; lock_A2 = <>} ; + mkA2 = overload { + mkA2 : A -> Preposition -> A2 = prepA2 ; + mkA2 : A -> Str -> A2 = \a,p -> prepA2 a (mkPreposition p) + } ; - mkAdv x = ss x ** {lock_Adv = <>} ; - mkAdV x = ss x ** {lock_AdV = <>} ; - mkAdA x = ss x ** {lock_AdA = <>} ; + prepA2 : A -> Preposition -> A2 = \a,p -> lin A2 (a ** {c2 = p}) ; - mkPreposition p = p ; + mkAdv x = lin Adv (ss x) ; + mkAdV x = lin AdV (ss x) ; + mkAdA x = lin AdA (ss x) ; - prepV2 : V -> Preposition -> V2 = \v,p -> v ** {s = v.s ; c2 = p ; lock_V2 = <>} ; - strV2 : Str -> V2 = \str -> dirV2 (mkV str) ; - dirV2 v = prepV2 v [] ; + dirV2 v = prepV2 v (casePrep acc) ; - mkV3 v p q = v ** {s = v.s ; c2 = p ; c3 = q ; lock_V3 = <>} ; - dirV3 v p = mkV3 v [] p ; - dirdirV3 v = dirV3 v [] ; + mkV3 = overload { + mkV3 : V -> Preposition -> Preposition -> V3 = \v,p,q -> + lin V3 (prepV3 v p q) ; + mkV3 : V -> Str -> Str -> V3 = \v,p,q -> + lin V3 (v ** {s = v.s ; c2 = mkPreposition p ; c3 = mkPreposition q}) + } ; + + prepV3 : V -> Preposition -> Preposition -> Verb3 = \v,p,q -> + v ** {s = v.s ; c2 = p ; c3 = q} ; + + dirV3 = overload { + dirV3 : V -> Preposition -> V3 = \v,p -> mkV3 v (casePrep acc) p ; + dirV3 : V -> Str -> V3 = \v,s -> mkV3 v (casePrep acc) (mkPreposition s) + } ; + + dirdirV3 v = dirV3 v (casePrep acc) ; mkVS v = v ** {lock_VS = <>} ; mkVQ v = v ** {lock_VQ = <>} ; - regVV : V -> VV = \v -> lin VV v ** {c2 = "أَنْ"} ; - c2VV : V -> Str -> VV = \v,prep -> regVV v ** {c2 = prep} ; + regVV : V -> VV = \v -> lin VV v ** {c2 = mkPreposition "أَنْ"} ; + c2VV : V -> Str -> VV = \v,prep -> regVV v ** {c2 = noPrep} ; V0 : Type = V ; ---- V2S, V2V, V2Q, V2A : Type = V2 ; AS, A2S, AV : Type = A ; A2V : Type = A2 ; - mkV0 v = v ** {lock_V = <>} ; - mkV2S v p = mkV2 v p ** {lock_V2S = <>} ; - mkV2V v p t = mkV2 v p ** {s4 = t ; lock_V2V = <>} ; - mkVA v = v ** {lock_VA = <>} ; - mkV2A v p = mkV2 v p ** {lock_V2A = <>} ; - mkV2Q v p = mkV2 v p ** {lock_V2Q = <>} ; + mkV0 v = v ; + mkV2S v p = lin V2S (prepV2 v (mkPreposition p)) ; + mkV2V = overload { + mkV2V : V -> Str -> Str -> V2V = \v,p,q -> + lin V2V (prepV3 v (mkPreposition p) (mkPreposition q)) ; + mkV2V : V -> Preposition -> Preposition -> V2V = \v,p,q -> + lin V2V (prepV3 v p q) ; + mkV2V : VV -> Preposition -> V2V = \vv,p -> + lin V2V (vv ** {c2 = p ; c3 = vv.c2}) ; + } ; + mkVA v = v ** {lock_VA = <>} ; + mkV2A v p = lin V2A (prepV2 v (mkPreposition p)); + mkV2Q v p = lin V2Q (prepV2 v (mkPreposition p)); + + mkAS, + mkAV = \a -> a ; + mkA2S, + mkA2V = \a,p -> prepA2 a (mkPreposition p) ; - mkAS v = v ** {lock_A = <>} ; - mkA2S v p = mkA2 v p ** {lock_A = <>} ; - mkAV v = v ** {lock_A = <>} ; - mkA2V v p = mkA2 v p ** {lock_A2 = <>} ; smartN : Str -> N = \s -> case s of { diff --git a/src/arabic/QuestionAra.gf b/src/arabic/QuestionAra.gf index c06674501..a0af36dfe 100644 --- a/src/arabic/QuestionAra.gf +++ b/src/arabic/QuestionAra.gf @@ -48,7 +48,7 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA QuestSlash ip cl = { ----IL just guessing s = \\t,p,qf => let o = case qf of { QDir => Nominal ; _ => Verbal } ; -- purely guessing - in cl.c2 ++ ip.s ! False ! Def ! Nom ++ cl.s ! t ! p ! o + in cl.c2.s ++ ip.s ! False ! Def ! Nom ++ cl.s ! t ! p ! o } ; --IL guessed diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 6949e16da..79d28e979 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -108,10 +108,22 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { NTable = Number => State => Case => Str; + Preposition : Type = {s : Str ; c : Case} ; Noun : Type = {s : NTable ; g : Gender; h : Species} ; --- Adj : Type = {s : Gender => NTable} ; + Noun2 : Type = Noun ** {c2 : Preposition} ; + Noun3 : Type = Noun2 ** {c3 : Preposition} ; + + mkPreposition = overload { + mkPreposition : Str -> Case -> Preposition = \s,c -> {s=s;c=c} ; + mkPreposition : Str -> Preposition = \s -> {s=s;c=Gen} ; + } ; + Adj : Type = {s : AForm => Str} ; + Adj2 : Type = Adj ** {c2 : Preposition} ; + Verb : Type = {s : VForm => Str} ; + Verb2 : Type = Verb ** {c2 : Preposition} ; + Verb3 : Type = Verb2 ** {c3 : Preposition} ; AP : Type = {s : Species => Gender => NTable } ; uttAP : AP -> (Gender => Str) ; @@ -1252,7 +1264,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> isPred = False }; - predVSlash : Verb ** {c2 : Str} -> VPSlash = \v -> + predVSlash : Verb2 -> VPSlash = \v -> predV v ** {c2 = v.c2} ; -- in verbal sentences, the verb agrees with the subject @@ -1264,7 +1276,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> }; insertObj : NP -> VPSlash -> VP = \np,vp -> vp ** - { obj = {s = vp.obj.s ++ vp.c2 ++ np.s ! Acc ; a = np.a} }; + { obj = {s = vp.obj.s ++ vp.c2.s ++ np.s ! vp.c2.c ; a = np.a} }; insertPred : {s : AAgr => Case => Str} -> VP -> VP = \p,vp -> vp ** { pred = p; @@ -1278,8 +1290,8 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> insertPred xabar (predV (v1hollow {f = "ك"; c = "و" ; l = "ن"} u) ); -- Slash categories - VPSlash : Type = VP ** {c2 : Str} ; - ClSlash : Type = Cl ** {c2 : Str} ; + VPSlash : Type = VP ** {c2 : Preposition} ; + ClSlash : Type = Cl ** {c2 : Preposition} ; Cl : Type = {s : Tense => Polarity => Order => Str} ; QCl : Type = {s : Tense => Polarity => QForm => Str} ; diff --git a/src/arabic/SentenceAra.gf b/src/arabic/SentenceAra.gf index 1a26da8cf..34d608886 100644 --- a/src/arabic/SentenceAra.gf +++ b/src/arabic/SentenceAra.gf @@ -102,7 +102,7 @@ concrete SentenceAra of Sentence = CatAra ** open SlashVP np vps = PredVP np vps ** { c2 = vps.c2 } ; AdvSlash slash adv = slash ** { s2 = slash.s2 ++ adv.s } ; - SlashPrep cl prep = cl ** {c2 = prep.s} ; + SlashPrep cl prep = cl ** {c2 = prep} ; -- SlashVS np vs sslash = TODO diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index 505e6bc45..59bdce40f 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -4,8 +4,8 @@ concrete StructuralAra of Structural = CatAra ** flags optimize=all ; coding=utf8 ; lin - above_Prep = ss "فَوْقَ" ; - after_Prep = ss "بَعْدَ" ; + above_Prep = mkPrep "فَوْقَ" ; + after_Prep = mkPrep "بَعْدَ" ; all_Predet = mkPredet "كُلّ" True ; almost_AdA = ss "تَقْرِيباً"; almost_AdN = ss "حَوَالي" ; -- or "تَقرِيبا" @@ -13,20 +13,20 @@ concrete StructuralAra of Structural = CatAra ** -- always_AdV = ss "َلوَيس" ; and_Conj = ss "وَ" ** {n = Pl} ; -- because_Subj = ss "بعَُسي" ; - before_Prep = ss "قَبْلَ" ; - behind_Prep = ss "خَلْفَ" ; - between_Prep = ss "بَيْنَ" ; + before_Prep = mkPrep "قَبْلَ" ; + behind_Prep = mkPrep "خَلْفَ" ; + between_Prep = mkPrep "بَيْنَ" ; -- both7and_DConj = sd2 "بْته" "َند" ** {n = Pl} ; -- but_PConj = ss "بُت" ; - by8agent_Prep = ss "بِ" ; - by8means_Prep = ss "بِ" ; + by8agent_Prep = mkPrep "بِ" ; + by8means_Prep = mkPrep "بِ" ; can_VV = mkVV (mkV "طوع" FormX) ; -- can8know_VV = { -- s = table VVForm [["بي َبلي تْ"] ; "عَن" ; "عُْلد" ; -- ["بّن َبلي تْ"] ; ["بِنغ َبلي تْ"] ; "عَنءت" ; "عُْلدنءت"] ; -- isAux = True -- } ; - during_Prep = ss "خِلَالَ" ; + during_Prep = mkPrep "خِلَالَ" ; -- either7or_DConj = sd2 "ِتهر" "ْر" ** {n = Sg} ; everybody_NP = regNP "الجَمِيع" Pl ; every_Det = mkDet "كُلّ" Sg Const ; @@ -34,7 +34,7 @@ concrete StructuralAra of Structural = CatAra ** -- everywhere_Adv = ss "ثريوهري" ; few_Det = mkDet "بَعض" Pl Const ; -- first_Ord = ss "فِرست" ; - from_Prep = ss "مِنَ" ; + from_Prep = mkPrep "مِنَ" ; he_Pron = mkPron "هُوَ" "هُ" "هُ" (Per3 Masc Sg) ; here_Adv = ss "هُنا" ; -- here7to_Adv = ss ["تْ هري"] ; @@ -42,9 +42,9 @@ concrete StructuralAra of Structural = CatAra ** how_IAdv = ss "كَيفَ" ; -- how8many_IDet = mkDet "كَمْ" Pl Const ; -- IL: check (was ["هْو مَني"]) ; -- if_Subj = ss "ِف" ; - in8front_Prep = ss "مُقَابِلَ" ; + in8front_Prep = mkPrep "مُقَابِلَ" ; i_Pron = mkPron "أَنَا" "نِي" "ي" (Per1 Sing); - in_Prep = ss "فِي" ; + in_Prep = mkPrep "فِي" ; it_Pron = he_Pron ; -- was: it_Pron = mkPron "ِت" "ِت" "ِتس" (Per3 Masc Sg); -- less_CAdv = ss "لسّ" ; many_Det = mkDet "جَمِيع" Pl Const ; @@ -57,14 +57,14 @@ concrete StructuralAra of Structural = CatAra ** -- isAux = True -- } ; no_Utt = {s = \\_ => "لا"} ; - on_Prep = ss "عَلى" ; + on_Prep = mkPrep "عَلى" ; --- DEPREC one_Quant = mkQuantNum "واحِد" Sg Indef ; only_Predet = mkPredet "فَقَط" False; -- or_Conj = ss "ْر" ** {n = Sg} ; -- otherwise_PConj = ss "ْتهروِسي" ; - part_Prep = ss "مِنَ" ; + part_Prep = mkPrep "مِنَ" ; -- please_Voc = ss "ةلَسي" ; - possess_Prep = ss "ل" ; + possess_Prep = mkPrep "ل" ; -- quite_Adv = ss "قُِتي" ; she_Pron = mkPron "هِيَ" "ها" "ها" (Per3 Fem Sg) ; -- so_AdA = ss "سْ" ; @@ -84,10 +84,10 @@ concrete StructuralAra of Structural = CatAra ** this_Quant = mkQuant7 "هَذا" "هَذِهِ" "هَذَان" "هَذَيْن" "هَاتَان" "هَاتَيْن" "هَؤُلَاء" Def; ----b this_NP = indeclNP "هَذا" Sg ; ----b those_NP = indeclNP "هَؤُلَاءكَ" Pl ; - through_Prep = ss "عَبْرَ" ; + through_Prep = mkPrep "عَبْرَ" ; -- too_AdA = ss "تّْ" ; - to_Prep = ss "إِلى" ; - under_Prep = ss "تَحْتَ" ; + to_Prep = mkPrep "إِلى" ; + under_Prep = mkPrep "تَحْتَ" ; -- very_AdA = ss "ثري" ; -- want_VV = P.mkVV (P.regV "وَنت") ; we_Pron = mkPron "نَحنُ" "نا" "نا" (Per1 Plur) ; @@ -110,8 +110,8 @@ concrete StructuralAra of Structural = CatAra ** whoSg_IP = mkIP "مَنْ" "مَنْ" Sg ; whoPl_IP = mkIP "مَنْ" "مَنْ" Pl ; -- why_IAdv = ss "وهي" ; - without_Prep = ss "بِدُونِ" ; - with_Prep = ss "مَع" ; + without_Prep = mkPrep "بِدُونِ" ; + with_Prep = mkPrep "مَع" ; yes_Utt = {s = \\_ => "نَعَم"} ; youSg_Pron = mkPron "أَنتَ" "كَ" "كَ" (Per2 Masc Sg) ; youPl_Pron = mkPron "أَنتُمْ" "كُمْ" "كُمْ" (Per2 Masc Sg) ; diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index 23878f9b6..6c98e5b84 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -6,6 +6,11 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra in { UseV = predV ; SlashVV vv vps = vps ** predV vv ; ----IL + + -- TODO: --c3 is for verb, c2 is for dir.obj + --SlashV2V : V2V -> VP -> VPSlash ; -- beg (her) to go + --SlashV2VNP : V2V -> NP -> VPSlash -> VPSlash ; -- beg me to buy + SlashV2a v = predVSlash v ; Slash3V3 v np = insertObj np (predVSlash v) ** {c2 = v.c3}; @@ -20,7 +25,7 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra in { ComplVV vv vp = let vvVP = predV vv in --- IL vp ** { s = \\pgn,vpf => vvVP.s ! pgn ! vpf - ++ vv.c2 -- أَنْ + ++ vv.c2.s -- أَنْ ++ vp.s ! pgn ! VPImpf Cnj } ; From f4cec11f723d6f46be50bd06cce0bd7c5d3e948d Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 7 Nov 2018 16:26:52 +0100 Subject: [PATCH 088/172] (Ara) Add relative clauses --- src/arabic/CatAra.gf | 14 ++++----- src/arabic/NounAra.gf | 3 +- src/arabic/RelativeAra.gf | 64 ++++++++++++++++++++++----------------- src/arabic/ResAra.gf | 28 +++++++++++++++++ src/arabic/SentenceAra.gf | 2 +- 5 files changed, 75 insertions(+), 36 deletions(-) diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index 13cd0773d..1a3418559 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -12,7 +12,7 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { S = {s : Str} ; QS = {s : QForm => Str} ; --- RS = {s : Agr => Str} ; + RS = {s : Agr => Case => Str} ; -- Sentence @@ -27,12 +27,12 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { IP = ResAra.IP ; -- {s : (isPred : Bool) => State => Case => Str ; n : Number} ; IComp = ResAra.IComp ; -- IQuant = {s : State => Case => Str} ; --- ----- Relative --- --- RCl = {s : Tense => Anteriority => Polarity => Agr => Str} ; --- RP = {s : Case => Str ; a : RAgr} ; --- + +-- Relative + + RCl = ResAra.RCl ; + RP = ResAra.RP ; + -- Verb VP = ResAra.VP ; diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index aed22c99f..834b9ad9f 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -188,7 +188,8 @@ lin AdjCN ap cn = cn ** { adj = \\n,d,c => ap.s ! cn.h ! cn.g ! n ! (definite ! d) ! c }; - -- RelCN cn rs = {s = \\n,c => cn.s ! n ! c ++ rs.s ! {n = n ; p = P3}} ; + + RelCN cn rs = cn ** {s = \\n,s,c => cn.s ! n ! s ! c ++ rs.s ! {pgn=Per3 cn.g n ; isPron=False} ! c}; -- AdvCN cn ad = {s = \\n,c => cn.s ! n ! c ++ ad.s} ; -- -- SentCN cn sc = {s = \\n,c => cn.s ! n ! c ++ sc.s} ; diff --git a/src/arabic/RelativeAra.gf b/src/arabic/RelativeAra.gf index 3cc0a9cd2..f3a0645b2 100644 --- a/src/arabic/RelativeAra.gf +++ b/src/arabic/RelativeAra.gf @@ -1,35 +1,45 @@ -concrete RelativeAra of Relative = CatAra ** open ResAra in { - flags coding=utf8; --- --- flags optimize=all_subs ; --- --- lin --- --- RelCl cl = { --- s = \\t,a,p,_ => "سُعه" ++ "تهَت" ++ cl.s ! t ! a ! p ! ODir --- } ; --- --- RelVP rp vp = { --- s = \\t,ant,b,ag => --- let --- agr = case rp.a of { --- RNoAg => ag ; --- RAg a => a --- } ; --- cl = mkClause (rp.s ! Nom) agr vp --- in --- cl.s ! t ! ant ! b ! ODir --- } ; --- +concrete RelativeAra of Relative = CatAra ** open ResAra, SentenceAra in { + flags coding=utf8; + + lin + + -- RelCl cl = { + -- s = \\t,p,agr,c => IdRP.s ! agr2ragr agr c ++ cl.s ! t ! p ! Nominal + -- } ; + + -- : RP -> VP -> RCl ; -- who loves John + RelVP rp vp = { + s = \\t,p,agr,c => + let + npS : Case => Str = \\_ => rp.s ! agr2ragr agr c ; + np = {s = npS ; a = agr} ; + cl = PredVP np vp ; + in + cl.s ! t ! p ! Nominal + } ; + + -- : RP -> ClSlash -> RCl ; -- whom John loves + -- TODO: add resumptive pronouns -- RelSlash rp slash = { --- s = \\t,a,p,_ => slash.c2 ++ rp.s ! Acc ++ slash.s ! t ! a ! p ! ODir -- } ; -- -- FunRP p np rp = { -- s = \\c => np.s ! c ++ p.s ++ rp.s ! Acc ; -- a = RAg np.a -- } ; --- --- IdRP = mkIP "وهِعه" "وهِعه" "وهْسي" Sg ** {a = RNoAg} ; --- + + IdRP = + { s = table { + RSg Masc => "اَلَّذِي" ; + RSg Fem => "اَلَّتِي" ; + RPl Masc => "اَلَّذِين" ; + RPl Fem => "اَللَّاتِي" ; + RDl Masc Bare => "اَللَّذَيْن" ; + RDl Masc Nom => "اَللَّذَانِ" ; + RDl Masc _ => "اَللَّذَيْنِ" ; + RDl Fem Bare => "اَللَّتَيْن" ; + RDl Fem Nom => "اَللَّتَانِ" ; + RDl Fem _ => "اَللَّتَيْنِ" + } + } ; } diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 79d28e979..25df5cd23 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1296,6 +1296,34 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> Cl : Type = {s : Tense => Polarity => Order => Str} ; QCl : Type = {s : Tense => Polarity => QForm => Str} ; + -- Relative + param + RAgr = RSg Gender | RPl Gender | RDl Gender Case ; + + oper + agr2ragr = overload { + agr2ragr : Agr -> Case -> RAgr = \a,c -> + let gn = pgn2gn a.pgn in case of { + => RSg x ; + => RPl x ; + => RDl x c ; + _ => Predef.error "agr2ragr"} ; + agr2ragr : Number -> Case -> Gender -> RAgr = \n,c,g -> + case n of { + Sg => RSg g ; + Dl => RDl g c ; + Pl => RPl g } + } ; + + -- ragr2agr : Number -> Case -> Gender -> RAgr = \ra -> + -- case ra of { + -- RSg x => Per3 Sg x ; + -- RPl x => Per3 Pl x ; + -- RDl x => Per3 Dl x } ; + + RCl : Type = {s : Tense => Polarity => Agr => Case => Str} ; + RP : Type = {s : RAgr => Str } ; + --TODO: slashRCl : ClSlash -> RP -> RCl ; param diff --git a/src/arabic/SentenceAra.gf b/src/arabic/SentenceAra.gf index 34d608886..682b037a2 100644 --- a/src/arabic/SentenceAra.gf +++ b/src/arabic/SentenceAra.gf @@ -129,6 +129,6 @@ concrete SentenceAra of Sentence = CatAra ** open } }; --- UseRCl t a p cl = {s = \\r => t.s ++ a.s ++ p.s ++ cl.s ! t.t ! a.a ! p.p ! r} ; + UseRCl t p cl = {s = \\agr,c => t.s ++ p.s ++ cl.s ! t.t ! p.p ! agr ! c} ; } From 38982d73fe94fa6fa79a63fdd6fc22435049c3e6 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 7 Nov 2018 16:27:42 +0100 Subject: [PATCH 089/172] (Ara) Remove parameters that are already in CommonX --- src/arabic/CatAra.gf | 4 ++-- src/arabic/QuestionAra.gf | 2 +- src/arabic/ResAra.gf | 2 -- src/arabic/SentenceAra.gf | 41 ++++++++++++++++++++------------------- 4 files changed, 24 insertions(+), 25 deletions(-) diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index 1a3418559..95e4aed61 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -16,13 +16,13 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { -- Sentence - Cl = ResAra.Cl ; -- {s : ResAra.Tense => Polarity => Order => Str} ; + Cl = ResAra.Cl ; -- {s : Tense => Polarity => Order => Str} ; ClSlash = ResAra.ClSlash ; Imp = {s : Polarity => Gender => ResAra.Number => Str} ; -- Question - QCl = ResAra.QCl ; -- {s : ResAra.Tense => Polarity => QForm => Str} ; + QCl = ResAra.QCl ; -- {s : Tense => Polarity => QForm => Str} ; IDet = ResAra.IDet ; -- {s : Gender => State => Case => Str ; n : Number} ; IP = ResAra.IP ; -- {s : (isPred : Bool) => State => Case => Str ; n : Number} ; IComp = ResAra.IComp ; -- diff --git a/src/arabic/QuestionAra.gf b/src/arabic/QuestionAra.gf index a0af36dfe..af35450c5 100644 --- a/src/arabic/QuestionAra.gf +++ b/src/arabic/QuestionAra.gf @@ -44,7 +44,7 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA CompIAdv iadv = { s = \\_ => iadv.s ; n = ResAra.Sg } ; - -- QCl = {s : R.Tense => Polarity => QForm => Str} ; + -- QCl = {s : Tense => Polarity => QForm => Str} ; QuestSlash ip cl = { ----IL just guessing s = \\t,p,qf => let o = case qf of { QDir => Nominal ; _ => Verbal } ; -- purely guessing diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 25df5cd23..7841118e4 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -19,7 +19,6 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { Gender = Masc | Fem ; Case = Nom | Acc | Gen | Bare ; -- 1st person poss. suff. overrides case - Person = P1 | P2 | P3 ; Species = NoHum | Hum ; State = Def | Indef | Const | Poss ; -- ة turns into ت @@ -27,7 +26,6 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { -- case vowel retained Mood = Ind | Cnj | Jus ; Voice = Act | Pas ; - Tense = Pres | Past | Fut ; Order = Verbal | Nominal ; oper diff --git a/src/arabic/SentenceAra.gf b/src/arabic/SentenceAra.gf index 682b037a2..159e1cea9 100644 --- a/src/arabic/SentenceAra.gf +++ b/src/arabic/SentenceAra.gf @@ -39,20 +39,20 @@ concrete SentenceAra of Sentence = CatAra ** open yaktubu = vp.s ! pgn ! VPImpf Ind ; yaktuba = vp.s ! pgn ! VPImpf Cnj ; yaktub = vp.s ! pgn ! VPImpf Jus ; - vStr : ResAra.Tense -> Polarity -> Str = + vStr : ParamX.Tense -> Polarity -> Str = \tn,pl -> case of { - => yaktubu ; - => "لَا" ++ yaktubu ; - => "" ; --no verb "to be" in present - => "لَيسَ" ;--same here, just add negation particle - <_, ResAra.Past, Pos> => kataba ; - <_, ResAra.Past, Neg> => "لَمْ" ++ yaktub ; - <_, ResAra.Fut, Pos> => "سَ" ++ yaktubu ; - <_, ResAra.Fut, Neg> => "لَنْ" ++ yaktuba + => yaktubu ; + => "لَا" ++ yaktubu ; + => "" ; --no verb "to be" in present + => "لَيسَ" ;--same here, just add negation particle + <_, Past, Pos> => kataba ; + <_, Past, Neg> => "لَمْ" ++ yaktub ; + <_, _Fut, Pos> => "سَ" ++ yaktubu ; + <_, _Fut, Neg> => "لَنْ" ++ yaktuba }; - pred : ResAra.Tense -> Polarity -> Str = + pred : ParamX.Tense -> Polarity -> Str = \tn,pl -> case of { - => vp.pred.s ! gn ! Nom; --xabar marfooc + => vp.pred.s ! gn ! Nom; --xabar marfooc _ => vp.pred.s ! gn ! Acc --xabar kaana wa laysa manSoob }; @@ -113,19 +113,20 @@ concrete SentenceAra of Sentence = CatAra ** open -- UseCl t p cl = - {s = case of { --- IL guessed tenses - <(Pres|Cond),Simul> => cl.s ! ResAra.Pres ! p.p ! Verbal ; - => cl.s ! ResAra.Fut ! p.p ! Verbal ; - <_ ,_ > => cl.s ! ResAra.Past ! p.p ! Verbal + {s = t.s ++ p.s ++ + case of { --- IL guessed tenses + <(Pres|Cond),Simul> => cl.s ! Pres ! p.p ! Nominal ; + => cl.s ! Fut ! p.p ! Nominal ; + <_ ,_ > => cl.s ! Past ! p.p ! Nominal } }; UseQCl t p qcl = - {s = \\q => - case of { --- IL guessed tenses - <(Pres|Cond),Simul> => qcl.s ! ResAra.Pres ! p.p ! q ; - => qcl.s ! ResAra.Fut ! p.p ! q ; - <_ ,_ > => qcl.s ! ResAra.Past ! p.p ! q + {s = \\q => t.s ++ p.s ++ + case of { --- IL guessed tenses + <(Pres|Cond),Simul> => qcl.s ! Pres ! p.p ! q ; + => qcl.s ! Fut ! p.p ! q ; + <_ ,_ > => qcl.s ! Past ! p.p ! q } }; From 520d1a44a28ac6de70821bbaa8dc99ab07b56a8b Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 7 Nov 2018 17:47:26 +0100 Subject: [PATCH 090/172] (Som) Add strings from Temp and Pol to linearisations of Use*Cl --- src/somali/SentenceSom.gf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/somali/SentenceSom.gf b/src/somali/SentenceSom.gf index 93d52274c..5714f9758 100644 --- a/src/somali/SentenceSom.gf +++ b/src/somali/SentenceSom.gf @@ -70,13 +70,13 @@ lin -} -- : Temp -> Pol -> Cl -> S ; - UseCl temp pol cl = { s = cl.s ! temp.t ! temp.a ! pol.p } ; + UseCl t p cl = { s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p } ; {- -- : Temp -> Pol -> RCl -> RS ; - UseRCl temp pol cl = { s = cl.s ! temp.t ! temp.a ! pol.p } ; + UseRCl t p cl = { s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p } ; -- : Temp -> Pol -> QCl -> QS ; - UseQCl temp pol qcl = { s = qcl.s ! temp.t ! temp.a ! pol.p } ; + UseQCl t p cl = { s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p } ; -- An adverb can be added to the beginning of a sentence, either with comma ("externally") -- or without: @@ -89,7 +89,7 @@ lin -- There's an SubjS already in AdverbSom -- should this be deprecated? -- : S -> Subj -> S -> S ; - SSubjS s1 subj s2 = AdvS (AE.SubjS subj s2) s1 ; + SSubjS s1 subj s2 = AdvS (AS.SubjS subj s2) s1 ; -- A sentence can be modified by a relative clause referring to its contents. From e6d57f3b032b8637eb8a655e26564b45ecb6fc9d Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 8 Nov 2018 15:17:09 +0100 Subject: [PATCH 091/172] (Ara) More fixes to hamza rules --- src/arabic/OrthoAra.gf | 105 +++++++++++++++++++++-------------------- 1 file changed, 54 insertions(+), 51 deletions(-) diff --git a/src/arabic/OrthoAra.gf b/src/arabic/OrthoAra.gf index c5968270d..edf4f0f81 100644 --- a/src/arabic/OrthoAra.gf +++ b/src/arabic/OrthoAra.gf @@ -2,67 +2,70 @@ resource OrthoAra = open Prelude, Predef in { flags coding=utf8 ; - oper +oper - vow : pattern Str = #("َ" | "ِ" | "ُ" | "ً" | "ٍ" | "ٌ") ; + vow : pattern Str = #("َ" | "ِ" | "ُ" | "ً" | "ٍ" | "ٌ") ; - weak : pattern Str = #("و"|"ي") ; + weak : pattern Str = #("و"|"ي") ; - -- "Sun letters": assimilate with def. article - sun : pattern Str = #("ت"|"ث"|"د"|"ذ"|"ر"|"ز"|"س"|"ش"|"ص"|"ض"|"ط"|"ظ"|"ل"|"ن") ; + -- "Sun letters": assimilate with def. article + sun : pattern Str = #("ت"|"ث"|"د"|"ذ"|"ر"|"ز"|"س"|"ش"|"ص"|"ض"|"ط"|"ظ"|"ل"|"ن") ; - -- Shadda: https://www.unicode.org/L2/L2017/17253-arabic-ordering.pdf - fixShd : Str -> Str -> Str = \word,suffix -> - case of { - -- => x + v + "ّ" + y ; - => x + "ّ" + v + y ; - _ => word + suffix - } ; - - -- IL: using this to reuse patterns for weak verbs, might be strange/wrong - rmSukun : Str -> Str = \s -> case s of { - x + "ْ" + y => x + y ; - _ => s +-- Shadda: https://www.unicode.org/L2/L2017/17253-arabic-ordering.pdf + fixShd : Str -> Str -> Str = \word,suffix -> + case of { + -- => x + v + "ّ" + y ; + => x + "ّ" + v + y ; + _ => word + suffix } ; - -- Hamza - hamza : pattern Str = #("ء"|"؟") ; +-- IL: using this to reuse patterns for weak verbs, might be strange/wrong + rmSukun : Str -> Str = \s -> case s of { + x + "ْ" + y => x + y ; + _ => s + } ; - rectifyHmz: Str -> Str = \word -> - case word of { - l@(""|"ال") + ("أ"|"أَ") + #hamza + "ْ" + tail => l + "آ" + tail; - l@(""|"ال") + ("أ"|"أَ") + #hamza + tail => l + "آ" + tail; - l@(""|"ال") + #hamza + v@("َ"|"ُ") + tail => l + "أ" + v + tail; - l@(""|"ال") + #hamza + v@("ِ") + tail => l + "إ" + v + tail; +-- Hamza + hamza : pattern Str = #("ء"|"؟") ; - head + v1@("ِ"|"ُ"|"َ"|"ْ"|"ا"|"ي"|"و") + #hamza + v2@(""|"ُ"|"َ"|"ْ"|"ِ") => head + v1 + (tHmz v1) + v2; - head + #hamza + tail => head + (bHmz (dp 2 head) (take 2 tail)) + tail; --last head , take 1 tail - _ => word - }; + rectifyHmz : Str -> Str = \word -> + case word of { + l@(""|"ال") + ("أ"|"أَ") + #hamza + "ْ" + tail => l + "آ" + tail; + l@(""|"ال") + ("أ"|"أَ") + #hamza + tail => l + "آ" + tail; + l@(""|"ال") + #hamza + v@("َ"|"ُ") + tail => l + "أ" + v + tail; + l@(""|"ال") + #hamza + v@("ِ") + tail => l + "إ" + v + tail; + head + v1@("ِ"|"ُ"|"َ"|"ْ"|"ا"|"ي"|"و") + + #hamza + v2@(#vow|"ْ") + tail => + case v2 of { "ْ" => head + v1 + tHmz v1 + tail ; -- unsure about this /IL + _ => head + v1 + tHmz v1 + v2 + tail } ; - --hamza at beginning of word (head) - hHmz : Str -> Str = \d -> - case d of { - "ِ" => "إ"; - _ => "أ" - }; + head + #hamza + tail => head + (bHmz (dp 2 head) (take 2 tail)) + tail; --last head , take 1 tail + _ => word + }; - --hamza in middle of word (body) - bHmz : Str -> Str -> Str = \d1,d2 -> - case of { - <"ِ",_> | <_,"ِ"> => "ئ"; - <"ُ",_> | <_,"ُ"> => "ؤ"; - <"َ",_> | <_,"َ"> => "أ"; - _ => "ء" - }; + --hamza at beginning of word (head) + hHmz : Str -> Str = \d -> + case d of { + "ِ" => "إ"; + _ => "أ" + }; - --hamza carrier sequence - tHmz : Str -> Str = \d -> - case d of { - "ِ" => "ئ"; - "ُ" => "ؤ"; - "َ" => "أ"; - "ْ"|"ا"|"و"|"ي" => "ء" - }; + --hamza in middle of word (body) + bHmz : Str -> Str -> Str = \d1,d2 -> + case of { + <"ِ",_> | <_,"ِ"> => "ئ"; + <"ُ",_> | <_,"ُ"> => "ؤ"; + <"َ",_> | <_,"َ"> => "أ"; + _ => "ء" + }; + + --hamza carrier sequence + tHmz : Str -> Str = \d -> + case d of { + "ِ" => "ئ"; + "ُ" => "ؤ"; + "َ" => "أ"; + "ْ"|"ا"|"و"|"ي" => "ء" + }; } From 7713518ad594ce410d03ec0c673451230077811e Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 8 Nov 2018 15:52:06 +0100 Subject: [PATCH 092/172] (Ara) More relative clauses + fix questions + update MissingAra --- src/arabic/AdjectiveAra.gf | 10 +++++++--- src/arabic/CatAra.gf | 1 + src/arabic/LexiconAra.gf | 2 +- src/arabic/MissingAra.gf | 10 ---------- src/arabic/NounAra.gf | 3 ++- src/arabic/ParadigmsAra.gf | 8 +------- src/arabic/QuestionAra.gf | 21 +++++++++++---------- src/arabic/RelativeAra.gf | 21 +++++++++++++-------- src/arabic/ResAra.gf | 17 +++++------------ src/arabic/SentenceAra.gf | 4 ++-- 10 files changed, 43 insertions(+), 54 deletions(-) diff --git a/src/arabic/AdjectiveAra.gf b/src/arabic/AdjectiveAra.gf index ec15d5355..20988aeaa 100644 --- a/src/arabic/AdjectiveAra.gf +++ b/src/arabic/AdjectiveAra.gf @@ -37,7 +37,11 @@ concrete AdjectiveAra of Adjective = CatAra ** open ResAra, Prelude in { AdAP ada ap = { s = \\sp,g,n,st,c => ada.s ++ ap.s ! sp ! g ! n ! st ! c } ; --- --- UseA2 a = a ; --- + + UseA2 = PositA ; + + UseComparA a = { + s = \\h,g,n,d,c => a.s ! AComp d c + }; + } diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index 95e4aed61..7bc37f088 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -10,6 +10,7 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { -- Tensed/Untensed + SSlash, S = {s : Str} ; QS = {s : QForm => Str} ; RS = {s : Agr => Case => Str} ; diff --git a/src/arabic/LexiconAra.gf b/src/arabic/LexiconAra.gf index 4f3cff580..6be7abdfa 100644 --- a/src/arabic/LexiconAra.gf +++ b/src/arabic/LexiconAra.gf @@ -295,7 +295,7 @@ flags hair_N = sdfN "شعر" "فَعلة" Fem NoHum ; hand_N = brkN "يد" "فَع" "أَفَاعِي" Fem NoHum ; head_N = brkN "رءس" "فَعل" "فُعُول" Masc NoHum; - heart_N = brkN "قلب" "فَعل" "فُعُول" Masc NoHum; + heart_N = brkN "قلب" "فَعْل" "فُعُول" Masc NoHum; horn_N = brkN "قرن" "فَعل" "فُعُول" Masc NoHum; husband_N = brkN "زوج" "فَعل" "أَفعَال" Masc NoHum; ice_N = brkN "ثلج" "فَعل" "فُعُول" Masc NoHum; diff --git a/src/arabic/MissingAra.gf b/src/arabic/MissingAra.gf index 7d82c4eb1..68d182d42 100644 --- a/src/arabic/MissingAra.gf +++ b/src/arabic/MissingAra.gf @@ -39,7 +39,6 @@ oper ExistIP : IP -> QCl = notYet "ExistIP" ; oper ExistNP : NP -> Cl = notYet "ExistNP" ; oper FunRP : Prep -> NP -> RP -> RP = notYet "FunRP" ; oper GenericCl : VP -> Cl = notYet "GenericCl" ; -oper IdRP : RP = notYet "IdRP" ; oper ImpPl1 : VP -> Utt = notYet "ImpPl1" ; oper ImpersCl : VP -> Cl = notYet "ImpersCl" ; oper PConjConj : Conj -> PConj = notYet "PConjConj" ; @@ -48,11 +47,6 @@ oper PredSCVP : SC -> VP -> Cl = notYet "PredSCVP" ; oper ProgrVP : VP -> VP = notYet "ProgrVP" ; oper ReflA2 : A2 -> AP = notYet "ReflA2" ; oper ReflVP : VPSlash -> VP = notYet "ReflVP" ; -oper RelCN : CN -> RS -> CN = notYet "RelCN" ; -oper RelCl : Cl -> RCl = notYet "RelCl" ; -oper RelNP : NP -> RS -> NP = notYet "RelNP" ; -oper RelSlash : RP -> ClSlash -> RCl = notYet "RelSlash" ; -oper RelVP : RP -> VP -> RCl = notYet "RelVP" ; oper SentAP : AP -> SC -> AP = notYet "SentAP" ; oper SentCN : CN -> SC -> CN = notYet "SentCN" ; oper Slash2V3 : V3 -> NP -> VPSlash = notYet "Slash2V3" ; @@ -63,10 +57,6 @@ oper SlashV2V : V2V -> VP -> VPSlash = notYet "SlashV2V" ; oper SlashV2VNP : V2V -> NP -> VPSlash -> VPSlash = notYet "SlashV2VNP" ; oper SlashVS : NP -> VS -> SSlash -> ClSlash = notYet "SlashVS" ; oper SubjS : Subj -> S -> Adv = notYet "SubjS" ; -oper UseA2 : A2 -> AP = notYet "UseA2" ; -oper UseComparA : A -> AP = notYet "UseComparA" ; -oper UseRCl : Temp -> Pol -> RCl -> RS = notYet "UseRCl" ; -oper UseSlash : Temp -> Pol -> ClSlash -> SSlash = notYet "UseSlash" ; oper VocNP : NP -> Voc = notYet "VocNP" ; oper pot3plus : Sub1000 -> Sub1000 -> Sub1000000 = notYet "pot3plus" ; diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index 834b9ad9f..7f7e7092b 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -190,6 +190,8 @@ lin }; RelCN cn rs = cn ** {s = \\n,s,c => cn.s ! n ! s ! c ++ rs.s ! {pgn=Per3 cn.g n ; isPron=False} ! c}; + + RelNP np rs = np ** {s = \\c => np.s ! c ++ rs.s ! np.a ! c} ; -- AdvCN cn ad = {s = \\n,c => cn.s ! n ! c ++ ad.s} ; -- -- SentCN cn sc = {s = \\n,c => cn.s ! n ! c ++ sc.s} ; @@ -201,7 +203,6 @@ lin np = \\c => cn.np ! c ++ np.s ! Gen }; - -- : CN -> NP -> CN ; -- glass of wine --PartNP } diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index 962c0158d..c5a765a4c 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -370,13 +370,7 @@ resource ParadigmsAra = open v1 = \rootStr,vPerf,vImpf -> let { raw = v1' rootStr vPerf vImpf } in - { s = \\vf => - case rootStr of { - _ + #hamza + _ => rectifyHmz(raw.s ! vf); - _ => raw.s ! vf - }; - lock_V = <> - } ; + lin V { s = \\vf =>rectifyHmz (raw.s ! vf) } ; v1' : Str -> Vowel -> Vowel -> Verb = \rootStr,vPerf,vImpf -> diff --git a/src/arabic/QuestionAra.gf b/src/arabic/QuestionAra.gf index af35450c5..bb14074eb 100644 --- a/src/arabic/QuestionAra.gf +++ b/src/arabic/QuestionAra.gf @@ -16,10 +16,7 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA --IL guessed QuestVP qp vp = - let np = { s = qp.s ! vp.isPred ! Def ; - a = { pgn = Per3 Masc qp.n ; - isPron = False } - } ; + let np = ip2np qp vp.isPred ; cl = PredVP np vp ; in { s = \\t,p,_qf => cl.s ! t ! p ! Nominal } ; @@ -32,17 +29,17 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA -- : IComp -> NP -> QCl QuestIComp ic np = let vp = kaan (CompNP np) ; - ip = ic ** { s : Bool => State => Case => Str = \\_,_,_ => ic.s ! pgn2gn np.a.pgn } ; + ip : ResAra.IP = np ** { + s = \\_,_,_ => ic.s ! pgn2gn np.a.pgn } ; in QuestVP ip vp ; -- : IP -> IComp ; - CompIP ip = { + CompIP ip = ip ** { s = \\_ => ip.s ! True -- True=IP will be a subject of predicative sentence ! Def ! Nom ; -- IP will be a subject - n = ip.n } ; - CompIAdv iadv = { s = \\_ => iadv.s ; n = ResAra.Sg } ; + CompIAdv iadv = { s = \\_ => iadv.s ; a = ResAra.Sg } ; -- QCl = {s : Tense => Polarity => QForm => Str} ; QuestSlash ip cl = { ----IL just guessing @@ -62,13 +59,17 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA } ; -- : IDet -> IP - IdetIP idet = idet ** { s = \\isPred => idet.s ! Masc } ; + IdetIP idet = idet ** { + s = \\isPred => idet.s ! Masc ; + a = { pgn = agrP3 NoHum Masc idet.n ; isPron = False } + } ; -- : IDet -> CN -> IP - IdetCN idet cn = idet ** { + IdetCN idet cn = { s = \\isPred,s,c => idet.s ! cn.g ! s ! c ++ cn.s ! idet.n ! Indef ! Gen ; --idaafa + a = { pgn = agrP3 NoHum cn.g idet.n ; isPron = False } } ; -- : IQuant -> Num -> IDet diff --git a/src/arabic/RelativeAra.gf b/src/arabic/RelativeAra.gf index f3a0645b2..8f54c37a9 100644 --- a/src/arabic/RelativeAra.gf +++ b/src/arabic/RelativeAra.gf @@ -1,11 +1,12 @@ -concrete RelativeAra of Relative = CatAra ** open ResAra, SentenceAra in { +concrete RelativeAra of Relative = CatAra ** + open ResAra, (Se=SentenceAra), (St=StructuralAra) in { flags coding=utf8; lin - -- RelCl cl = { - -- s = \\t,p,agr,c => IdRP.s ! agr2ragr agr c ++ cl.s ! t ! p ! Nominal - -- } ; + RelCl cl = { + s = \\t,p,agr,c => IdRP.s ! agr2ragr agr c ++ cl.s ! t ! p ! Nominal + } ; -- : RP -> VP -> RCl ; -- who loves John RelVP rp vp = { @@ -13,15 +14,19 @@ concrete RelativeAra of Relative = CatAra ** open ResAra, SentenceAra in { let npS : Case => Str = \\_ => rp.s ! agr2ragr agr c ; np = {s = npS ; a = agr} ; - cl = PredVP np vp ; + cl = Se.PredVP np vp ; in cl.s ! t ! p ! Nominal } ; -- : RP -> ClSlash -> RCl ; -- whom John loves - -- TODO: add resumptive pronouns --- RelSlash rp slash = { --- } ; + RelSlash rp cl = cl ** { + s = \\t,p,agr,c => + let obj = case (pgn2gn agr.pgn).g of { + Fem => St.she_Pron ; + Masc => St.he_Pron } ; + in rp.s ! agr2ragr agr c ++ cl.s ! t ! p ! Nominal ++ cl.c2.s ++ obj.s ! cl.c2.c + } ; -- -- FunRP p np rp = { -- s = \\c => np.s ! c ++ p.s ++ rp.s ! Acc ; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 7841118e4..93f046c76 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1130,12 +1130,12 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> mkIP = overload { mkIP : Str -> Number -> IP = \maa,n -> { s = \\_p,_s,_c => maa ; - n = n + a = { pgn = agrP3 NoHum Masc n ; isPron = False } } ; mkIP : (_,_ : Str) -> Number -> IP = \maa,maadhaa,n -> { s = table { True => \\_s,_c => maa ; False => \\_s,_c => maadhaa } ; - n = n + a = { pgn = agrP3 NoHum Masc n ; isPron = False } } } ; @@ -1189,7 +1189,6 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> s : AAgr -- "how old": masc or fem for adjective -- no need for Case, IComp is only used by QuestIComp, as grammatical subject => Str ; - n : Number } ; Obj : Type = { @@ -1206,9 +1205,11 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> s : Bool -- different forms for "what is this" and "what do you do" => State => Case -- because of PrepIP: e.g. "in which" chooses definite accusative => Str ; - n : Number + a : Agr -- can be both subject and object of a QCl, needs full agr. info } ; + ip2np : IP -> Bool -> NP = \ip,isPred -> ip ** { s = ip.s ! isPred ! Def } ; + IDet : Type = { s : Gender -- IdetCN needs to choose the gender of the CN => State => Case => Str ; @@ -1313,17 +1314,9 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> Pl => RPl g } } ; - -- ragr2agr : Number -> Case -> Gender -> RAgr = \ra -> - -- case ra of { - -- RSg x => Per3 Sg x ; - -- RPl x => Per3 Pl x ; - -- RDl x => Per3 Dl x } ; - RCl : Type = {s : Tense => Polarity => Agr => Case => Str} ; RP : Type = {s : RAgr => Str } ; ---TODO: slashRCl : ClSlash -> RP -> RCl ; - param Size = One | Two | ThreeTen | Teen | NonTeen | Hundreds | None ; diff --git a/src/arabic/SentenceAra.gf b/src/arabic/SentenceAra.gf index 159e1cea9..b13a80222 100644 --- a/src/arabic/SentenceAra.gf +++ b/src/arabic/SentenceAra.gf @@ -111,8 +111,8 @@ concrete SentenceAra of Sentence = CatAra ** open -- EmbedQS qs = {s = qs.s ! QIndir} ; -- EmbedVP vp = {s = infVP False vp (agrP3 Sg)} ; --- agr -- - - UseCl t p cl = + UseSlash, + UseCl = \t,p,cl -> {s = t.s ++ p.s ++ case of { --- IL guessed tenses <(Pres|Cond),Simul> => cl.s ! Pres ! p.p ! Nominal ; From ec9753e7b57775bfd03270cbe754784d79429b68 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Fri, 9 Nov 2018 09:08:30 +0100 Subject: [PATCH 093/172] Use Pandoc and introduce HTML template for synopsis - Remove isLatex flag - Plan to convert to Markdown and simply format --- doc/.gitignore | 5 ++ doc/Makefile | 16 ++++++- doc/MkSynopsis.hs | 49 ++++++++----------- doc/_template.html | 116 +++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 157 insertions(+), 29 deletions(-) create mode 100644 doc/.gitignore create mode 100644 doc/_template.html diff --git a/doc/.gitignore b/doc/.gitignore new file mode 100644 index 000000000..d8273c264 --- /dev/null +++ b/doc/.gitignore @@ -0,0 +1,5 @@ +api-examples-*.txt +api-examples.gfs +categories-imagemap.html +synopsis.txt +synopsis.html diff --git a/doc/Makefile b/doc/Makefile index 90133f78e..d8145fddb 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -24,9 +24,23 @@ SRC_FILES=$(S)/abstract/Common.gf $(S)/abstract/Cat.gf $(S)/api/Constructors.gf EXAMPLES_OUT=$(patsubst %,api-examples-%.txt,$(LANGS)) INCLUDES=synopsis-intro.txt categories-intro.txt categories-imagemap.html synopsis-additional.txt synopsis-browse.txt synopsis-example.txt -synopsis.html: MkSynopsis.hs MkExxTable.hs $(INCLUDES) $(EXAMPLES_OUT) $(SRC_FILES) +synopsis.txt: MkSynopsis.hs MkExxTable.hs $(INCLUDES) $(EXAMPLES_OUT) $(SRC_FILES) runghc -i.. MkSynopsis.hs +TMP=tmp.html +synopsis.html: synopsis.txt + txt2tags --target=html --no-headers --quiet --toc --outfile=$@ --infile=$^ + pandoc \ + --from=html \ + --to=html5 \ + --standalone \ + --template=_template.html \ + --metadata='title:"GF Resource Grammar Library: Synopsis"' \ + --variable='rel-root:../..' \ + --output=$(TMP) \ + $@ + mv $(TMP) $@ + categories.png: categories.dot dot -Tpng $^ > $@ diff --git a/doc/MkSynopsis.hs b/doc/MkSynopsis.hs index 777c3aad2..a843f5a22 100644 --- a/doc/MkSynopsis.hs +++ b/doc/MkSynopsis.hs @@ -29,17 +29,13 @@ apiExxFiles = do , langSynopsis lang ] +-- | This function puts together a txt2tags file which is then converted to HTML by the Makefile main :: IO () main = do - xx <- getArgs - let isLatex = case xx of - "-tex":_ -> True - _ -> False cs1 <- getCats commonAPI cs2 <- getCats catAPI let cs = sortCats (cs1 ++ cs2) writeFile synopsis "GF Resource Grammar Library: Synopsis" - -- append "B. Bringert, T. Hallgren, and A. Ranta" space append "%!Encoding:utf-8" append "%!style(html): ./revealpopup.css" @@ -56,7 +52,7 @@ main = do append "%!postproc(html): '#quicklinks' ''" append "%!postproc(tex): '#quicklinks' ''" delimit $ addToolTips cs - include "synopsis-intro.txt" + include "synopsis-intro.txt" -- TODO dynamic language list title "Categories" space link "Source 1:" commonAPI @@ -66,7 +62,7 @@ main = do append "==A hierarchic view==\n" include "categories-intro.txt" append "==Explanations==\n" - delimit $ mkCatTable isLatex cs + delimit $ mkCatTable cs space title "Syntax Rules and Structural Words" space @@ -81,17 +77,17 @@ main = do rs2 <- getRules apiExx structuralAPI let rss = rs ++ rs2 --- mapM_ putStrLn [f ++ " " ++ e | (f,_,e) <- rss] - delimit $ mkSplitTables True isLatex apiExx cs rss + delimit $ mkSplitTables True apiExx cs rss space -- title "Structural Words" -- space -- link "Source:" structuralAPI -- space --- rs <- rulesTable False isLatex cs structuralAPI +-- rs <- rulesTable False cs structuralAPI -- delimit rs space title "Lexical Paradigms" - paradigmFiles >>= mapM_ (putParadigms isLatex cs) + paradigmFiles >>= mapM_ (putParadigms cs) space include "synopsis-additional.txt" space @@ -107,9 +103,6 @@ main = do space append "#quicklinks" space - let format = if isLatex then "tex" else "html" - system $ "txt2tags -t" ++ format ++ " " ++ " --toc " ++ synopsis - if isLatex then (system $ "pdflatex synopsis.tex") >> return () else return () addToolTips :: Cats -> [String] addToolTips = map f @@ -130,10 +123,10 @@ getCats file = do (expl,ex) = span (/="e.g.") exp _ -> getrs rs ss2 -rulesTable :: ApiExx -> Bool -> Bool -> Cats -> FilePath -> IO [String] -rulesTable aexx hasEx isLatex cs file = do +rulesTable :: ApiExx -> Bool -> Cats -> FilePath -> IO [String] +rulesTable aexx hasEx cs file = do rs <- getRules aexx file - return $ mkTable hasEx isLatex aexx cs rs + return $ mkTable hasEx aexx cs rs getRules :: ApiExx -> FilePath -> IO Rules @@ -161,14 +154,14 @@ getRules aexx file = do n:ws | last n == '.' && not (null (init n)) && all isDigit (init n) -> ws _ -> e -putParadigms :: Bool -> Cats -> (String, FilePath) -> IO () -putParadigms isLatex cs (lang,file) = do +putParadigms :: Cats -> (String, FilePath) -> IO () +putParadigms cs (lang,file) = do stitle ("Paradigms for " ++ lang) append "#LParadigms" space link "source" file space - rs <- rulesTable M.empty False isLatex cs file + rs <- rulesTable M.empty False cs file space delimit rs space @@ -180,23 +173,23 @@ inChunks i f = concat . intersperse ["\n\n"] . map f . chunks i where -- Makes one table per result category. -- Adds a subsection header for each table. -mkSplitTables :: Bool -> Bool -> ApiExx -> Cats -> Rules -> [String] -mkSplitTables hasEx isLatex aexx cs = concatMap t . addLexicalCats cs . sortRules +mkSplitTables :: Bool -> ApiExx -> Cats -> Rules -> [String] +mkSplitTables hasEx aexx cs = concatMap t . addLexicalCats cs . sortRules where t (c, xs) = [subtitle c expl] ++ tableOrLink where expl = case [e | (n,e,_) <- cs, n == c] of [] -> "" e:_ -> e - tableOrLink = if null xs then parad else mkTable hasEx isLatex aexx cs xs + tableOrLink = if null xs then parad else mkTable hasEx aexx cs xs parad = [ "Lexical category, constructors given in", "[lexical paradigms #RParadigms]." ] -mkTable :: Bool -> Bool -> ApiExx -> Cats -> Rules -> [String] -mkTable hasEx isLatex aexx cs = inChunks chsize (\rs -> header : map (unwords . row) rs) +mkTable :: Bool -> ApiExx -> Cats -> Rules -> [String] +mkTable hasEx aexx cs = inChunks chsize (\rs -> header : map (unwords . row) rs) where - chsize = if isLatex then 40 else 1000 + chsize = 1000 header = if hasEx then "|| Function | Type | Example ||" else "|| Function | Type | Explanation ||" row (name,typ,ex) = @@ -235,11 +228,11 @@ mkIdent = concatMap unspec where ':' -> "-" _ -> [c] -mkCatTable :: Bool -> Cats -> [String] -mkCatTable isLatex cs = inChunks chsize (\rs -> header ++ map mk1 rs) cs +mkCatTable :: Cats -> [String] +mkCatTable cs = inChunks chsize (\rs -> header ++ map mk1 rs) cs where header = ["|| Category | Explanation | Example ||"] - chsize = if isLatex then 40 else 1000 + chsize = 1000 mk1 (name,expl,ex) = unwords ["|", showCat cs name, "|", expl, "|", typo ex, "|"] typo ex = if take 1 ex == "\"" then itf (init (tail ex)) else ex diff --git a/doc/_template.html b/doc/_template.html new file mode 100644 index 000000000..f94ac841e --- /dev/null +++ b/doc/_template.html @@ -0,0 +1,116 @@ + + + + + + +$for(author-meta)$ + +$endfor$ +$if(date-meta)$ + +$endif$ +$if(keywords)$ + +$endif$ + $if(title-prefix)$$title-prefix$ – $endif$$pagetitle$ +$for(css)$ + +$endfor$ + +$if(math)$ + $math$ +$endif$ + +$for(header-includes)$ + $header-includes$ +$endfor$ + + +
    + +$if(title)$ +
    + + GF Logo + +

    $title$

    +$if(subtitle)$ +

    $subtitle$

    +$endif$ +$for(author)$ +

    $author$

    +$endfor$ +$if(date)$ +

    $date$

    +$endif$ +
    +$endif$ +$if(toc)$ + +$endif$ +$body$ +
    + + + + + + + From df65c52cdeb4852363f90582c1dca96afa38e346 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 9 Nov 2018 16:38:51 +0100 Subject: [PATCH 094/172] (Ara) Passive constructions --- src/arabic/ResAra.gf | 11 +++++++++++ src/arabic/VerbAra.gf | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 93f046c76..f9f60c7be 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1263,6 +1263,17 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> isPred = False }; + passPredV : Verb -> VP = \v -> + let actVP = predV v in actVP ** { + s = \\pgn,vf => + case vf of { + VPPerf => v.s ! (VPerf Pas pgn) ; + VPImpf m => v.s ! (VImpf m Pas pgn) ; + _ => actVP.s ! pgn ! vf + } + }; + + predVSlash : Verb2 -> VPSlash = \v -> predV v ** {c2 = v.c2} ; diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index 6c98e5b84..ad04fb905 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -44,7 +44,7 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra in { -- -- ReflV2 v = insertObj (\\a => v.c2 ++ reflPron ! a) (predV v) ; -- - PassV2 v = kaan {s = \\_,_ => v.s ! VPPart} ; ---- IL guessed + PassV2 = passPredV ; -- -- UseVS, UseVQ = \vv -> {s = vv.s ; c2 = [] ; isRefl = vv.isRefl} ; -- no From 3ac2bcc8af6734c5ac3b598bde9642d50233bfca Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Sat, 10 Nov 2018 20:14:25 +0100 Subject: [PATCH 095/172] Quicklinks in synopsis as fixed side menu --- doc/Makefile | 5 +- doc/MkSynopsis.hs | 4 -- doc/_template.html | 44 +++++++----- doc/quicklinks.js | 171 ++++++++++++++++++++++++--------------------- doc/synopsis.css | 13 ++++ 5 files changed, 133 insertions(+), 104 deletions(-) create mode 100644 doc/synopsis.css diff --git a/doc/Makefile b/doc/Makefile index d8145fddb..249095a9d 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -28,13 +28,14 @@ synopsis.txt: MkSynopsis.hs MkExxTable.hs $(INCLUDES) $(EXAMPLES_OUT) $(SRC_FILE runghc -i.. MkSynopsis.hs TMP=tmp.html -synopsis.html: synopsis.txt - txt2tags --target=html --no-headers --quiet --toc --outfile=$@ --infile=$^ +synopsis.html: synopsis.txt _template.html + txt2tags --target=html --no-headers --quiet --toc --outfile=$@ --infile=$< pandoc \ --from=html \ --to=html5 \ --standalone \ --template=_template.html \ + --css=synopsis.css \ --metadata='title:"GF Resource Grammar Library: Synopsis"' \ --variable='rel-root:../..' \ --output=$(TMP) \ diff --git a/doc/MkSynopsis.hs b/doc/MkSynopsis.hs index a843f5a22..e07dec14c 100644 --- a/doc/MkSynopsis.hs +++ b/doc/MkSynopsis.hs @@ -49,8 +49,6 @@ main = do append "%!postproc(html): '(SRC=\"categories.png\")' '\\1 USEMAP=\"#categories\"'" append "%!postproc(html): '#LParadigms' ''" append "%!postproc(tex): '#LParadigms' ''" - append "%!postproc(html): '#quicklinks' ''" - append "%!postproc(tex): '#quicklinks' ''" delimit $ addToolTips cs include "synopsis-intro.txt" -- TODO dynamic language list title "Categories" @@ -101,8 +99,6 @@ main = do space append "%%toc" space - append "#quicklinks" - space addToolTips :: Cats -> [String] addToolTips = map f diff --git a/doc/_template.html b/doc/_template.html index f94ac841e..49c58d281 100644 --- a/doc/_template.html +++ b/doc/_template.html @@ -2,8 +2,7 @@ - - + $for(author-meta)$ $endfor$ @@ -29,32 +28,41 @@ $for(header-includes)$ $endfor$ -
    +
    +
    + + +
    $if(title)$ -
    - - GF Logo - -

    $title$

    +
    + + GF Logo + +

    $title$

    $if(subtitle)$ -

    $subtitle$

    +

    $subtitle$

    $endif$ $for(author)$ -

    $author$

    +

    $author$

    $endfor$ $if(date)$ -

    $date$

    +

    $date$

    $endif$ -
    +
    $endif$ $if(toc)$ - + $endif$ -$body$ -
    + $body$ + +
    +
    @@ -103,6 +111,8 @@ $body$
    + + diff --git a/doc/synopsis/template.html b/doc/synopsis/template.html index 5e5c134b0..bf691e589 100644 --- a/doc/synopsis/template.html +++ b/doc/synopsis/template.html @@ -28,6 +28,9 @@ $for(header-includes)$ $endfor$ +$for(include-before)$ +$include-before$ +$endfor$
    @@ -81,7 +84,7 @@ $endif$
    Documentation
    • GF Shell Reference
    • -
    • RGL Library Synopsis
    • +
    • RGL Library Synopsis
    • The GF Book
    • Reference Manual
    • Tutorial
    • @@ -109,9 +112,9 @@ $endif$
      - - - +$for(include-after)$ +$include-after$ +$endfor$ -

      - - - - diff --git a/doc/synopsis/intro.txt b/doc/synopsis/intro.txt index 96da1f27d..1da91288d 100644 --- a/doc/synopsis/intro.txt +++ b/doc/synopsis/intro.txt @@ -1,8 +1,5 @@ -Versions: [3.9 ./synopsis-v3.9.html] | latest (this one) - - =Introduction= The GF Resource Grammar Library is the standard library for Grammatical Framework. From c10de77e9b886304c3af26948b849669b2d934a3 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Tue, 13 Nov 2018 22:10:38 +0100 Subject: [PATCH 112/172] Remove extra duplicate LParadigms anchors --- doc/synopsis/MkSynopsis.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/synopsis/MkSynopsis.hs b/doc/synopsis/MkSynopsis.hs index 959af4f90..573d8b5ac 100644 --- a/doc/synopsis/MkSynopsis.hs +++ b/doc/synopsis/MkSynopsis.hs @@ -49,7 +49,6 @@ main = do append "%!postproc(html): '#LI' '
    • '" append "%!postproc(html): '(SRC=\"categories.png\")' '\\1 USEMAP=\"#categories\"'" append "%!postproc(html): '#LParadigms' ''" - append "%!postproc(tex): '#LParadigms' ''" delimit $ addToolTips cs include "intro.txt" -- TODO dynamic language list space @@ -86,6 +85,7 @@ main = do -- delimit rs space title "Lexical Paradigms" + append "#LParadigms" paradigmFiles >>= mapM_ (putParadigms cs) space include "additional.txt" @@ -154,7 +154,6 @@ getRules aexx file = do putParadigms :: Cats -> (String, FilePath) -> IO () putParadigms cs (lang,file) = do stitle ("Paradigms for " ++ lang) - append "#LParadigms" space link "source" file space From 67cb6bae1262430cabf233ccbb23ff6bf6e96f4f Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Tue, 13 Nov 2018 22:29:56 +0100 Subject: [PATCH 113/172] Add some type signatures --- doc/synopsis/MkSynopsis.hs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/doc/synopsis/MkSynopsis.hs b/doc/synopsis/MkSynopsis.hs index 573d8b5ac..e20a6ebb0 100644 --- a/doc/synopsis/MkSynopsis.hs +++ b/doc/synopsis/MkSynopsis.hs @@ -16,6 +16,8 @@ type Rules = [(String,String,String)] outfile :: FilePath outfile = "index.txt" +-- the languages.csv config file +configFile :: FilePath configFile = ".." ".." Config.configFile -- the language in which revealed examples are shown @@ -47,7 +49,6 @@ main = do append "%!postproc(html): '#UL' '
        '" append "%!postproc(html): '#EUL' '
      '" append "%!postproc(html): '#LI' '
    • '" - append "%!postproc(html): '(SRC=\"categories.png\")' '\\1 USEMAP=\"#categories\"'" append "%!postproc(html): '#LParadigms' ''" delimit $ addToolTips cs include "intro.txt" -- TODO dynamic language list @@ -202,6 +203,7 @@ mkTable hasEx aexx cs = inChunks chsize (\rs -> header : map (unwords . row) rs) expl typ = if null ex then itf "-" else itf ex -- make an example with hover-popup translations +mkExample :: M.Map String String -> String -> String mkExample es ex = unwords [ "#divreveal", itf (maybe ex (mkEx revealedLang) (M.lookup revealedLang es)), @@ -232,6 +234,7 @@ mkCatTable cs = inChunks chsize (\rs -> header ++ map mk1 rs) cs mk1 (name,expl,ex) = unwords ["|", showCat cs name, "|", expl, "|", typo ex, "|"] typo ex = if take 1 ex == "\"" then itf (init (tail ex)) else ex +srcPath :: FilePath -> FilePath srcPath = (() "../../src") commonAPI = srcPath "abstract/Common.gf" @@ -274,6 +277,7 @@ link s f = append $ s ++ " [``" ++ f ++ "`` " ++ f ++ "]" ttf s = "``" ++ s ++ "``" itf s = "//" ++ s ++ "//" +hiddenLine :: String -> Bool hiddenLine s = case reverse (words s) of "--%":_ -> True _ -> False @@ -301,7 +305,7 @@ addLexicalCats cs rss = resultCat :: (String,String,String) -> String resultCat (_,t,_) = last (words t) - +subtitle :: String -> String -> String subtitle cat expl = "==" ++ cat ++ e ++ "==" ++ "[" ++ cat ++ "]" where e = if null expl then "" else " - " ++ expl @@ -320,6 +324,7 @@ showTyp cs = unwords . map f . words && isUpper (head cat) -- to work around GHC 6.12 file input +readFileC :: String -> FilePath -> IO String readFileC cod file = do let tmp = file <.> "tmp" case cod of @@ -330,6 +335,7 @@ readFileC cod file = do -- 'intelligently' determine the coding of a file ---- AR 5/6/2016: now utf8 is used for all languages except Bul, where no characters are shown in documentation anyway +coding :: FilePath -> String coding file = case language file of "Bul" -> "CP1251" --- "ISO-8859-1" _ -> "utf8" From cd4b482f0fbde3f18d9e4f08ec747fba1f2dc24d Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Tue, 13 Nov 2018 22:30:29 +0100 Subject: [PATCH 114/172] Tweaks to synopsis --- doc/synopsis/template.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/synopsis/template.html b/doc/synopsis/template.html index bf691e589..a6713505d 100644 --- a/doc/synopsis/template.html +++ b/doc/synopsis/template.html @@ -31,14 +31,14 @@ $endfor$ $for(include-before)$ $include-before$ $endfor$ -
      +
      -
      -
      +
      From f0065986a66fb8822fde1b6679ec3174627bac34 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Tue, 13 Nov 2018 22:44:13 +0100 Subject: [PATCH 115/172] Add column for language name in `languages.csv` This will be used for listing languages in Synopsis --- Config.hs | 20 ++++++------ Make.sh | 10 +++--- README.md | 1 + languages.csv | 90 +++++++++++++++++++++++++-------------------------- 4 files changed, 62 insertions(+), 59 deletions(-) diff --git a/Config.hs b/Config.hs index d3b325fdc..b671eacb0 100644 --- a/Config.hs +++ b/Config.hs @@ -15,6 +15,7 @@ configFile = "languages.csv" -- | Information about a language data LangInfo = LangInfo { langCode :: String -- ^ 3-letter ISO 639-2/B code + , langName :: String -- ^ language name , langDir :: String -- ^ directory name , langFunctor :: Maybe String -- ^ functor (not used) , langUnlexer :: Maybe String -- ^ decoding for postprocessing linearizations @@ -44,15 +45,16 @@ loadLangsFrom configFile = do then die $ "Invalid entry in " ++ configFile ++ ": " ++ s else return $ LangInfo { langCode = bits !! 0 - , langDir = bits !! 1 - , langFunctor = maybeBit bits 2 - , langUnlexer = maybeBit bits 3 - , langPresent = boolBit bits 4 False - , langAll = boolBit bits 5 True - , langTry = boolBit bits 6 True - , langSymbolic = boolBit bits 7 True - , langCompatibility = boolBit bits 8 False - , langSynopsis = boolBit bits 9 False + , langName = bits !! 1 + , langDir = bits !! 2 + , langFunctor = maybeBit bits 3 + , langUnlexer = maybeBit bits 4 + , langPresent = boolBit bits 5 False + , langAll = boolBit bits 6 True + , langTry = boolBit bits 7 True + , langSymbolic = boolBit bits 8 True + , langCompatibility = boolBit bits 9 False + , langSynopsis = boolBit bits 10 False } -- | Separate a string on a character diff --git a/Make.sh b/Make.sh index ce73171c4..bfc2d66f9 100755 --- a/Make.sh +++ b/Make.sh @@ -6,11 +6,11 @@ set -e # Get languages from config -langs=$(tail -n +2 languages.csv | awk -F ',' '{ if ($6 != "n") { print $1 } }') -langs_present=$(tail -n +2 languages.csv | awk -F ',' '{ if ($5 == "y") { print $1 } }') -langs_try=$(tail -n +2 languages.csv | awk -F ',' '{ if ($7 != "n") { print $1 } }') -langs_symbolic=$(tail -n +2 languages.csv | awk -F ',' '{ if ($8 != "n") { print $1 } }') -langs_compat=$(tail -n +2 languages.csv | awk -F ',' '{ if ($9 == "y") { print $1 } }') +langs=$(tail -n +2 languages.csv | awk -F ',' '{ if ($7 != "n") { print $1 } }') +langs_present=$(tail -n +2 languages.csv | awk -F ',' '{ if ($6 == "y") { print $1 } }') +langs_try=$(tail -n +2 languages.csv | awk -F ',' '{ if ($8 != "n") { print $1 } }') +langs_symbolic=$(tail -n +2 languages.csv | awk -F ',' '{ if ($9 != "n") { print $1 } }') +langs_compat=$(tail -n +2 languages.csv | awk -F ',' '{ if ($10 == "y") { print $1 } }') # Modules to compile for each language modules_langs="All Symbol Compatibility" diff --git a/README.md b/README.md index 7d784ae19..489dbdbd1 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ This file should be kept up-to-date and all build methods should read this confi | Column | Description | Default | |:--------------|:-----------------------------------------|:-------:| | Code | e.g. `Eng` | - | +| Name | language name in English, e.g. `English` | - | | Directory | folder name under `src`, e.g. `english` | - | | Functor | (not used) | - | | Unlexer | (not used) | - | diff --git a/languages.csv b/languages.csv index 4cddceaf7..0bc0de3b0 100644 --- a/languages.csv +++ b/languages.csv @@ -1,45 +1,45 @@ -Code,Directory,Functor,Unlexer,Present,All,Try,Symbolic,Compatibility,Synopsis -Afr,afrikaans,,,,,,n,,y -Amh,amharic,,,,,n,n,,n -Ara,arabic,,,,,,y,,y -Bul,bulgarian,,,y,,,,,y -Cat,catalan,Romance,,y,,,,y,y -Chi,chinese,,,,,,,,y -Dan,danish,Scand,,y,,,,,y -Dut,dutch,,,y,,,,,y -Eng,english,,,y,,,,y,y -Est,estonian,,,,,,,,y -Eus,basque,,,,,,,,y -Fin,finnish,,,y,,,,y,y -Fre,french,Romance,,y,,,,y,y -Ger,german,,,,,,,,y -Grc,ancient_greek,,,y,,n,n,,n -Gre,greek,,,,,,,,y -Heb,hebrew,,,,,n,n,,n -Hin,hindi,Hindustani,to_devanagari,y,,,,,y -Hun,hungarian,,,y,n,n,n,,n -Ice,icelandic,,,,,,n,,y -Ina,interlingua,,,y,,n,n,,n -Ita,italian,Romance,,y,,,,y,y -Jpn,japanese,,,,,,,,y -Lat,latin,,,y,,n,n,,n -Lav,latvian,,,,,,,y,y -Mlt,maltese,,,,,,,,y -Mon,mongolian,,,,,,n,,y -Nep,nepali,,,,,,n,,y -Nno,nynorsk,,,y,,,,,y -Nor,norwegian,Scand,,y,,,,,y -Pes,persian,,,,,,,,y -Pnb,punjabi,,,y,,,,,y -Pol,polish,,,,,,,,y -Por,portuguese,Romance,,y,,,,y,y -Ron,romanian,,,y,,,,,y -Rus,russian,,,y,,,,,y -Snd,sindhi,,,,,,,,y -Spa,spanish,Romance,,y,,,,y,y -Swa,swahili,,,,n,n,n,y,n -Swe,swedish,Scand,,y,,,,y,y -Tel,telugu,,,y,n,n,n,,n -Tha,thai,,to_thai,,,,,,y -Tur,turkish,,,,,n,n,,n -Urd,urdu,Hindustani,,,,,,,y +Code,Name,Directory,Functor,Unlexer,Present,All,Try,Symbolic,Compatibility,Synopsis +Afr,Afrikaans,afrikaans,,,,,,n,,y +Amh,Amharic,amharic,,,,,n,n,,n +Ara,Arabic,arabic,,,,,,y,,y +Bul,Bulgarian,bulgarian,,,y,,,,,y +Cat,Catalan,catalan,Romance,,y,,,,y,y +Chi,Chinese (simplified),chinese,,,,,,,,y +Dan,Danish,danish,Scand,,y,,,,,y +Dut,Dutch,dutch,,,y,,,,,y +Eng,English,english,,,y,,,,y,y +Est,Estonian,estonian,,,,,,,,y +Eus,Basque,basque,,,,,,,,y +Fin,Finnish,finnish,,,y,,,,y,y +Fre,French,french,Romance,,y,,,,y,y +Ger,German,german,,,,,,,,y +Grc,Ancient Greek,ancient_greek,,,y,,n,n,,n +Gre,Greek,greek,,,,,,,,y +Heb,Hebrew,hebrew,,,,,n,n,,n +Hin,Hindi,hindi,Hindustani,to_devanagari,y,,,,,y +Hun,Hungarian,hungarian,,,y,n,n,n,,n +Ice,Icelandic,icelandic,,,,,,n,,y +Ina,Interlingua,interlingua,,,y,,n,n,,n +Ita,Italian,italian,Romance,,y,,,,y,y +Jpn,Japanese,japanese,,,,,,,,y +Lat,Latin,latin,,,y,,n,n,,n +Lav,Latvian,latvian,,,,,,,y,y +Mlt,Maltese,maltese,,,,,,,,y +Mon,Mongolian,mongolian,,,,,,n,,y +Nep,Nepali,nepali,,,,,,n,,y +Nno,Norwegian (nynorsk),nynorsk,,,y,,,,,y +Nor,Norwegian (bokmål),norwegian,Scand,,y,,,,,y +Pes,Persian,persian,,,,,,,,y +Pnb,Punjabi,punjabi,,,y,,,,,y +Pol,Polish,polish,,,,,,,,y +Por,Portuguese,portuguese,Romance,,y,,,,y,y +Ron,Pomanian,romanian,,,y,,,,,y +Rus,Russian,russian,,,y,,,,,y +Snd,Sindhi,sindhi,,,,,,,,y +Spa,Spanish,spanish,Romance,,y,,,,y,y +Swa,Swahili,swahili,,,,n,n,n,y,n +Swe,Swedish,swedish,Scand,,y,,,,y,y +Tel,Telugu,telugu,,,y,n,n,n,,n +Tha,Thai,thai,,to_thai,,,,,,y +Tur,Turkish,turkish,,,,,n,n,,n +Urd,Urdu,urdu,Hindustani,,,,,,,y From eae5f7b72387d052d1185515b6467bc9cace760a Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Tue, 13 Nov 2018 23:00:43 +0100 Subject: [PATCH 116/172] Language list in synopsis is dynamically generated from languages.csv --- doc/synopsis/Makefile | 2 +- doc/synopsis/MkSynopsis.hs | 44 +++++++++++++++----------------------- doc/synopsis/intro.txt | 37 ++------------------------------ 3 files changed, 20 insertions(+), 63 deletions(-) diff --git a/doc/synopsis/Makefile b/doc/synopsis/Makefile index 61f9f271c..f7892898f 100644 --- a/doc/synopsis/Makefile +++ b/doc/synopsis/Makefile @@ -11,7 +11,7 @@ S=$(ROOT)/src CONFIG=$(ROOT)/languages.csv # List of languages extracted from languages.csv, with 'Synopsis' column == y -LANGS=$(shell cat $(CONFIG) | cut -d',' -f1,10 | grep ',y' | cut -d',' -f1) +LANGS=$(shell cat $(CONFIG) | cut -d',' -f1,11 | grep ',y' | cut -d',' -f1) # This list was constructed by observing what files MkSynopsis.hs reads SRC_FILES=$(S)/abstract/Common.gf $(S)/abstract/Cat.gf $(S)/api/Constructors.gf $(S)/abstract/Structural.gf $(patsubst %,$S/*/Paradigms%.gf,$(LANGS)) diff --git a/doc/synopsis/MkSynopsis.hs b/doc/synopsis/MkSynopsis.hs index e20a6ebb0..4b2c9a29a 100644 --- a/doc/synopsis/MkSynopsis.hs +++ b/doc/synopsis/MkSynopsis.hs @@ -1,6 +1,5 @@ import MkExxTable import System.Process(system) -import System.Environment(getArgs) import System.FilePath((),(<.>)) import Data.Char import Data.List @@ -24,19 +23,10 @@ configFile = ".." ".." Config.configFile revealedLang :: String revealedLang = "Eng" --- all languages shown (a copy of this list appears in Makefile) -apiExxFiles :: IO [FilePath] -apiExxFiles = do - langs <- loadLangsFrom configFile - return $ - [ "api-examples-" ++ (langCode lang) ++ ".txt" - | lang <- langs - , langSynopsis lang - ] - -- | This function puts together a txt2tags file which is then converted to HTML by the Makefile main :: IO () main = do + langs <- loadLangsFrom configFile >>= return . filter langSynopsis cs1 <- getCats commonAPI cs2 <- getCats catAPI let cs = sortCats (cs1 ++ cs2) @@ -50,8 +40,10 @@ main = do append "%!postproc(html): '#EUL' '
    '" append "%!postproc(html): '#LI' '
  • '" append "%!postproc(html): '#LParadigms' ''" + append ("%!postproc(html): '#LANGUAGE_COUNT' '" ++ show (length langs) ++ "'") + append ("%!postproc(html): '#LANGUAGES' '" ++ intercalate ", " (map langName langs) ++ ".'") delimit $ addToolTips cs - include "intro.txt" -- TODO dynamic language list + include "intro.txt" space title "Categories" space @@ -72,7 +64,7 @@ main = do space link "Source 2:" structuralAPI space - apiExx <- apiExxFiles >>= getApiExx + apiExx <- getApiExx (apiExxFiles langs) rs <- getRules apiExx syntaxAPI rs2 <- getRules apiExx structuralAPI let rss = rs ++ rs2 @@ -87,7 +79,7 @@ main = do space title "Lexical Paradigms" append "#LParadigms" - paradigmFiles >>= mapM_ (putParadigms cs) + mapM_ (putParadigms cs) (paradigmFiles langs) space include "additional.txt" space @@ -242,20 +234,18 @@ catAPI = srcPath "abstract/Cat.gf" syntaxAPI = srcPath "api/Constructors.gf" structuralAPI = srcPath "abstract/Structural.gf" -paradigmFiles :: IO [(String,FilePath)] -paradigmFiles = do - langs <- loadLangsFrom configFile - return $ - [ (name, srcPath $ printf "%s/Paradigms%s.gf" (langDir lang) (langCode lang)) - | lang <- langs - , langSynopsis lang - , let name = formatName (langDir lang) - ] +-- all languages shown (a copy of this list appears in Makefile) +apiExxFiles :: [LangInfo] -> [FilePath] +apiExxFiles langs = + [ "api-examples-" ++ (langCode lang) ++ ".txt" + | lang <- langs + ] --- | Format language name from directory name --- "ancient_greek -> Ancient Greek" -formatName :: String -> String -formatName = unwords . map (\(s:ss) -> toUpper s : ss) . splitOn (=='_') +paradigmFiles :: [LangInfo] -> [(String,FilePath)] +paradigmFiles langs = + [ (langName lang, srcPath $ printf "%s/Paradigms%s.gf" (langDir lang) (langCode lang)) + | lang <- langs + ] -- | Split a string at given character, similar to words splitOn :: (Char -> Bool) -> String -> [String] diff --git a/doc/synopsis/intro.txt b/doc/synopsis/intro.txt index 1da91288d..fbd7c0915 100644 --- a/doc/synopsis/intro.txt +++ b/doc/synopsis/intro.txt @@ -3,41 +3,8 @@ =Introduction= The GF Resource Grammar Library is the standard library for Grammatical Framework. -It covers the morphology and basic syntax of currently 34 languages: -Afrikaans, -Arabic, -Bulgarian, -Catalan, -Chinese (simplified), -Danish, -Dutch, -English, -Estonian, -Finnish, -French, -German, -Greek, -Hindi, -Icelandic, -Japanese, -Italian, -Latvian, -Maltese, -Mongolian, -Nepali, -Norwegian (bokmål), -Norwegial (nynorsk), -Persian, -Polish, -Portuguese, -Punjabi, -Romanian, -Russian, -Sindhi, -Spanish, -Swedish, -Thai, -Urdu. +It covers the morphology and basic syntax of currently #LANGUAGE_COUNT languages: +#LANGUAGES This document contains the most important parts of the GF Resource Grammar API, as needed by a GF application programmer. From f665c697bdc6a791aecca9c6f989d0130856cee9 Mon Sep 17 00:00:00 2001 From: Thomas Hallgren Date: Tue, 13 Nov 2018 23:28:48 +0100 Subject: [PATCH 117/172] doc/Makefile: use the correct column from languages.csv The synopsis flag is now in column 11 --- doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile b/doc/Makefile index 90133f78e..f766adca1 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -16,7 +16,7 @@ synopsis: synopsis.html S=../src # List of languages extracted from languages.csv, with 'Synopsis' column == y -LANGS=$(shell cat ../languages.csv | cut -d',' -f1,10 | grep ',y' | cut -d',' -f1) +LANGS=$(shell cat ../languages.csv | cut -d',' -f1,11 | grep ',y' | cut -d',' -f1) # This list was constructed by observing what files MkSynopsis.hs reads SRC_FILES=$(S)/abstract/Common.gf $(S)/abstract/Cat.gf $(S)/api/Constructors.gf $(S)/abstract/Structural.gf $(patsubst %,$S/*/Paradigms%.gf,$(LANGS)) From 942dd3ace815b552b07816db6d994b91a6a9387d Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Wed, 14 Nov 2018 10:04:54 +0100 Subject: [PATCH 118/172] Add column numbers in README --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 489dbdbd1..fc0c8c24b 100644 --- a/README.md +++ b/README.md @@ -31,19 +31,19 @@ A list of all languages and their properties is maintained centrally in [`langua This file should be kept up-to-date and all build methods should read this config file. **If you see something wrong, please report/fix it.** -| Column | Description | Default | -|:--------------|:-----------------------------------------|:-------:| -| Code | e.g. `Eng` | - | -| Name | language name in English, e.g. `English` | - | -| Directory | folder name under `src`, e.g. `english` | - | -| Functor | (not used) | - | -| Unlexer | (not used) | - | -| Present | language is marked with `--# notpresent` | n | -| All | compile `All` module | y | -| Try | compile `Try` module | y | -| Symbolic | compile `Symbolic` module | y | -| Compatibility | complile `Compatibility` module | n | -| Synopsis | include language in the RGL synopsis | n | +| # | Column | Description | Default | +|:---|:--------------|:-----------------------------------------|:-------:| +| 1 | Code | 3-letter language code, e.g. `Eng` | - | +| 2 | Name | language name in English, e.g. `English` | - | +| 3 | Directory | folder name under `src`, e.g. `english` | - | +| 4 | Functor | functor name (not used) | - | +| 5 | Unlexer | unlexer (not used) | - | +| 6 | Present | language is marked with `--# notpresent` | n | +| 7 | All | compile `All` module | y | +| 8 | Try | compile `Try` module | y | +| 9 | Symbolic | compile `Symbolic` module | y | +| 10 | Compatibility | complile `Compatibility` module | n | +| 11 | Synopsis | include language in the RGL synopsis | n | If default is `y` then anything other than `n`, including the empty string, is treated as true (and vice versa when default is `n`). From b89aa34bfd04fe9c38d5441e57e6b7dfd6dae97a Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 14 Nov 2018 15:48:20 +0100 Subject: [PATCH 119/172] (Ara) Conjunctions, ComplV*, additions in Idiom&Construction, etc. --- src/arabic/CatAra.gf | 3 +- src/arabic/ConjunctionAra.gf | 119 +++++++++++++-------- src/arabic/ConstructionAra.gf | 35 ++++--- src/arabic/ExtendAra.gf | 6 +- src/arabic/IdiomAra.gf | 74 ++++++++++--- src/arabic/LangAra.gf | 3 +- src/arabic/MissingAra.gf | 18 ---- src/arabic/NounAra.gf | 9 +- src/arabic/ParadigmsAra.gf | 52 +++++----- src/arabic/PhraseAra.gf | 2 +- src/arabic/QuestionAra.gf | 10 +- src/arabic/RelativeAra.gf | 11 +- src/arabic/ResAra.gf | 189 +++++++++++++++++++++++++--------- src/arabic/StructuralAra.gf | 16 +-- src/arabic/VerbAra.gf | 45 +++++--- 15 files changed, 385 insertions(+), 207 deletions(-) diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index 246c30e9a..9879772ad 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -38,7 +38,7 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { VP = ResAra.VP ; VPSlash = ResAra.VPSlash ; -- VP ** {c2:Preposition} - Comp = ResAra.Comp ; --{s : AAgr => Case => Str} ; + Comp = ResAra.Comp ** {obj : Obj ; isNP : Bool} ; -- SC = {s : Str} ; -- -- Adjective @@ -94,5 +94,6 @@ linref CN = \cn -> uttCN cn ! Masc ; N = \n -> uttCN (useN n) ! Masc ; + VP = \vp -> uttVP vp ! Masc ; } diff --git a/src/arabic/ConjunctionAra.gf b/src/arabic/ConjunctionAra.gf index f7683c6cc..c57f029de 100644 --- a/src/arabic/ConjunctionAra.gf +++ b/src/arabic/ConjunctionAra.gf @@ -1,45 +1,80 @@ concrete ConjunctionAra of Conjunction = CatAra ** open ResAra, Coordination, Prelude in { --- --- flags optimize=all_subs ; --- --- lin --- --- ConjS = conjunctSS ; --- DConjS = conjunctDistrSS ; --- --- ConjAdv = conjunctSS ; --- DConjAdv = conjunctDistrSS ; --- --- ConjNP conj ss = conjunctTable Case conj ss ** { --- a = {n = conjNumber conj.n ss.a.n ; p = ss.a.p} --- } ; --- DConjNP conj ss = conjunctDistrTable Case conj ss ** { --- a = {n = conjNumber conj.n ss.a.n ; p = ss.a.p} --- } ; --- --- ConjAP conj ss = conjunctTable Agr conj ss ** { --- isPre = ss.isPre --- } ; --- DConjAP conj ss = conjunctDistrTable Agr conj ss ** { --- isPre = ss.isPre --- } ; --- ----- These fun's are generated from the list cat's. --- --- BaseS = twoSS ; --- ConsS = consrSS comma ; --- BaseAdv = twoSS ; --- ConsAdv = consrSS comma ; --- BaseNP x y = twoTable Case x y ** {a = conjAgr x.a y.a} ; --- ConsNP xs x = consrTable Case comma xs x ** {a = conjAgr xs.a x.a} ; --- BaseAP x y = twoTable Agr x y ** {isPre = andB x.isPre y.isPre} ; --- ConsAP xs x = consrTable Agr comma xs x ** {isPre = andB xs.isPre x.isPre} ; --- --- lincat --- [S] = {s1,s2 : Str} ; --- [Adv] = {s1,s2 : Str} ; --- [NP] = {s1,s2 : Case => Str ; a : Agr} ; --- [AP] = {s1,s2 : Agr => Str ; isPre : Bool} ; --- + +lincat + + [S], + [Adv] = {s1,s2 : Str} ; + [NP] = {s1,s2 : Case => Str ; a : Agr ; empty : Str} ; + [AP] = {s1,s2 : Species => Gender => Number => State => Case => Str} ; + +lin + + BaseS, + BaseAdv = twoSS ; + ConsS, + ConsAdv = consrSS comma ; + ConjS, + ConjAdv = conjunctSS ; + + BaseNP x y = twoTable Case x y ** { + a = conjAgr x.a y.a ; + empty = [] + } ; + ConsNP xs x = consrTable Case comma xs x ** { + a = conjAgr xs.a x.a ; + empty = [] + } ; + ConjNP conj ss = conjunctTable Case conj ss ** { + a = let gn = pgn2gn ss.a.pgn in + {pgn = Per3 gn.g (conjNumber conj.n gn.n) ; isPron = False} ; + empty = [] + } ; + + BaseAP x y = twoTable5 Species Gender Number State Case x y ; + ConsAP xs x = consrTable5 Species Gender Number State Case comma xs x ; + ConjAP conj ss = conjunctTable5 Species Gender Number State Case conj ss ; + + +oper + conjAgr : Agr -> Agr -> Agr = \a,b -> { + isPron = False ; + pgn = let gnA = pgn2gn a.pgn ; gnB = pgn2gn b.pgn in + Per3 (conjGender gnA.g gnB.g) (conjNumber gnA.n gnB.n) + } ; + + conjGender : Gender -> Gender -> Gender = \g,h -> + case g of {Fem => h ; _ => Masc} ; + + conjNumber : Number -> Number -> Number = \m,n -> + case m of {Sg => n ; _ => Pl} ; + + -- move to predef? + + ListTable5 : PType -> PType -> PType -> PType -> PType -> Type = \P,Q,R,T,S -> + {s1,s2 : P => Q => R => T => S => Str} ; + + twoTable5 : (P,Q,R,T,S : PType) -> (_,_ : {s : P => Q => R => T => S => Str}) -> + ListTable5 P Q R T S = + \_,_,_,_,_,x,y -> + {s1 = x.s ; s2 = y.s} ; + + consrTable5 : + (P,Q,R,T,S : PType) -> Str -> {s : P => Q => R => T => S => Str} -> + ListTable5 P Q R T S -> ListTable5 P Q R T S = + \P,Q,R,T,S,c,x,xs -> + {s1 = \\p,q,r,t,s => xs.s1 ! p ! q ! r ! t ! s ++ c ++ xs.s2 ! p ! q ! r ! t ! s ; + s2 = x.s + } ; + + conjunctTable5 : + (P,Q,R,T,S : PType) -> Conjunction -> ListTable5 P Q R T S -> {s : P => Q => R => T => S => Str} = + \P,Q,R,T,S,or,xs -> + {s = \\p,q,r,t,s => xs.s1 ! p ! q ! r ! t ! s ++ or.s ++ xs.s2 ! p ! q ! r ! t ! s} ; + + -- conjunctDistrTable5 : + -- (P,Q,R,T,S : PType) -> ConjunctionDistr -> ListTable5 P Q R T S -> + -- {s : P => Q => R => T => S => Str} = + -- \P,Q,R,T,S,or,xs -> + -- {s = \\p,q,r,t,s => or.s1++ xs.s1 ! p ! q ! r ! t ! s ++ or.s2 ++ xs.s2 ! p ! q ! r ! t ! s} ; } diff --git a/src/arabic/ConstructionAra.gf b/src/arabic/ConstructionAra.gf index 8d9357661..95a37061c 100644 --- a/src/arabic/ConstructionAra.gf +++ b/src/arabic/ConstructionAra.gf @@ -1,8 +1,10 @@ concrete ConstructionAra of Construction = CatAra ** open + Prelude, ParadigmsAra, SyntaxAra, SymbolicAra, StructuralAra, + (E=ExtendAra), (R=ResAra), (L=LexiconAra) in { @@ -39,19 +41,26 @@ lin -- n_units_AP + +oper + -- hack used in the name constructions + toNP : Bool -> NP -> NP = \b -> if_then_else NP b R.emptyNP ; + +lin -- : NP -> NP -> Cl - have_name_Cl pe nm = - let subjPron : Pron = case pe.a.isPron of { - True => pe ; - False => case (R.pgn2gn pe.a.pgn).g of { - R.Fem => she_Pron ; - R.Masc => he_Pron } - } ; + have_name_Cl np nm = + let subjPron : Pron = R.np2pron np ; + me : NP = toNP np.a.isPron np ; + myName : NP = E.ApposNP me (mkNP (mkDet subjPron) L.name_N) ; + in mkCl myName nm ; - myName : NP = mkNP (mkDet subjPron) L.name_N ; - in mkCl myName nm ; --TODO: now it only works for pronouns, drops the NP - --- what_name_QCl = + -- : NP -> QCl + what_name_QCl np = + let subjPron : Pron = R.np2pron np ; + me : R.NP = toNP np.a.isPron np ; + myName : NP = E.ApposNP me (mkNP (mkDet subjPron) L.name_N) ; + what_IP : R.IP = R.mkIP "مَا هُوَ" R.Sg ; + in mkQCl what_IP myName ; -- how_old_QCl @@ -76,7 +85,7 @@ lin oper mkLanguage : Str -> N = mkN ; ---------------------------------------------- ----- lexicon of special names +---- lexicon of snpcial names -- TODO in arabic lin second_Timeunit = mkN "second" ; @@ -131,7 +140,7 @@ lin finnish_Language = mkLanguage "فِنْلَنْدِيّة" ; -- lin maltese_Language = mkLanguage "Maltese" ; -- lin nepali_Language = mkLanguage "Nepali" ; -- lin norwegian_Language = mkLanguage "Norwegian" ; -lin persian_Language = mkLanguage "فَارِسيّة" ; +lin nprsian_Language = mkLanguage "فَارِسيّة" ; -- lin polish_Language = mkLanguage "Polish" ; -- lin punjabi_Language = mkLanguage "Punjabi" ; -- lin romanian_Language = mkLanguage "Romanian" ; diff --git a/src/arabic/ExtendAra.gf b/src/arabic/ExtendAra.gf index cdd6e9167..3b667a237 100644 --- a/src/arabic/ExtendAra.gf +++ b/src/arabic/ExtendAra.gf @@ -6,7 +6,8 @@ concrete ExtendAra of Extend = StrandRelSlash, ExistPluralCN, ExistMassCN, ExistCN, EmptyRelSlash, DetNPMasc, DetNPFem, ComplBareVS, ComplDirectVS, ComplDirectVQ, ICompAP, - VPS, MkVPS + VPS, MkVPS, + ApposNP ] with (Grammar=GrammarAra) ** open @@ -20,6 +21,9 @@ concrete ExtendAra of Extend = lin GenNP np = {s = \\_,_,_,_ => np.s ! Gen ; d = Const ; isNum,isPron,is1sg = False} ; + -- : NP -> NP -> NP + ApposNP np1 np2 = np2 ** {s = \\c => np1.s ! c ++ np2.s ! c} ; + -- : AP -> IComp ; -- "how old" ICompAP ap = {s = \\gn => "كَمْ" ++ ap.s ! NoHum ! gn.g ! gn.n ! Indef ! Acc} ; diff --git a/src/arabic/IdiomAra.gf b/src/arabic/IdiomAra.gf index fbfc5f9b3..7f43ab643 100644 --- a/src/arabic/IdiomAra.gf +++ b/src/arabic/IdiomAra.gf @@ -1,15 +1,63 @@ -concrete IdiomAra of Idiom = CatAra ** open Prelude, ResAra in { - flags coding=utf8; --- --- flags optimize=all_subs ; --- --- lin --- ExistNP np = --- mkClause "تهري" (agrP3 np.a.n) (insertObj (\\_ => np.s ! Acc) (predAux auxBe)) ; --- ImpersCl vp = mkClause "ِت" (agrP3 Sg) vp ; --- GenericCl vp = mkClause "ْني" (agrP3 Sg) vp ; --- --- ProgrVP vp = insertObj (\\a => vp.ad ++ vp.prp ++ vp.s2 ! a) (predAux auxBe) ; --- +concrete IdiomAra of Idiom = CatAra ** open + Prelude, + ResAra, + ParadigmsAra + in { + + + lin + + -- : VP -> Cl ; -- it is hot + ImpersCl vp = + let it : ResAra.NP = pron2np (pgn2pron vp.obj.a.pgn) ; -- if no obj, Per3 Masc Sg chosen by default + in predVP it vp ; + + -- : VP -> Cl ; -- one sleeps + GenericCl = predVP (regNP "المَرْء" Sg) ; + + -- : NP -> RS -> Cl ; -- it is I who did it + --CleftNP np rs = + + -- : Adv -> S -> Cl ; -- it is here she slept + CleftAdv adv s = + let comp : Comp = {s = \\_,_ => adv.s ++ s.s} in ---- + predVP he_Pron (kaan comp) ; + + -- : NP -> Cl ; -- there is a house + ExistNP np = + predVP emptyNP (insertObj np (predV copula ** {c2=noPrep})) ; -- dummy /IL + + -- ExistIP : IP -> QCl ; -- which houses are there + +-- 7/12/2012 generalizations of these + + -- : NP -> Adv -> Cl ; -- there is a house in Paris + ExistNPAdv np adv = + predVP emptyNP (insertStr adv.s (insertObj np (predV copula ** {c2=noPrep}))) ; + + -- ExistIPAdv : IP -> Adv -> QCl ; -- which houses are there in Paris + + -- ProgrVP : VP -> VP ; -- be sleeping + + -- ImpPl1 : VP -> Utt ; -- let's go + + -- ImpP3 : NP -> VP -> Utt ; -- let John walk + +-- 3/12/2013 non-reflexive uses of "self" + + -- : VP -> VP ; -- is at home himself; is himself at home + SelfAdvVP, + SelfAdVVP = \vp -> vp ** { + s = \\pgn,vf => let pron : ResAra.NP = pgn2pron pgn in + vp.s ! pgn ! vf ++ refl ! Nom ++ pron.s ! Gen + } ; + + -- : NP -> NP ; -- the president himself (is at home) + SelfNP np = np ** { + s = let pron : ResAra.NP = np2pron np ; + in \\c => np.s ! c ++ refl ! c ++ pron.s ! Gen + } ; + + } diff --git a/src/arabic/LangAra.gf b/src/arabic/LangAra.gf index 55c9008bc..ae49cc611 100644 --- a/src/arabic/LangAra.gf +++ b/src/arabic/LangAra.gf @@ -2,7 +2,8 @@ concrete LangAra of Lang = GrammarAra, - LexiconAra + LexiconAra, + ConstructionAra ** { flags startcat = Phr ; unlexer = text ; lexer = text ; coding = utf8 ; diff --git a/src/arabic/MissingAra.gf b/src/arabic/MissingAra.gf index a5d3b2008..9bfd3c3ec 100644 --- a/src/arabic/MissingAra.gf +++ b/src/arabic/MissingAra.gf @@ -8,37 +8,19 @@ oper AdnCAdv : CAdv -> AdN = notYet "AdnCAdv" ; oper AdvCN : CN -> Adv -> CN = notYet "AdvCN" ; oper AdvIAdv : IAdv -> Adv -> IAdv = notYet "AdvIAdv" ; oper AdvS : Adv -> S -> S = notYet "AdvS" ; -oper BaseAP : AP -> AP -> ListAP = notYet "BaseAP" ; -oper BaseAdv : Adv -> Adv -> ListAdv = notYet "BaseAdv" ; -oper BaseNP : NP -> NP -> ListNP = notYet "BaseNP" ; oper BaseRS : RS -> RS -> ListRS = notYet "BaseRS" ; -oper BaseS : S -> S -> ListS = notYet "BaseS" ; oper CAdvAP : CAdv -> AP -> NP -> AP = notYet "CAdvAP" ; -oper CleftAdv : Adv -> S -> Cl = notYet "CleftAdv" ; oper CleftNP : NP -> RS -> Cl = notYet "CleftNP" ; oper ComparAdvAdj : CAdv -> A -> NP -> Adv = notYet "ComparAdvAdj" ; oper ComparAdvAdjS : CAdv -> A -> S -> Adv = notYet "ComparAdvAdjS" ; -oper ComplVA : VA -> AP -> VP = notYet "ComplVA" ; -oper ComplVQ : VQ -> QS -> VP = notYet "ComplVQ" ; -oper ComplVS : VS -> S -> VP = notYet "ComplVS" ; -oper ConjAP : Conj -> ListAP -> AP = notYet "ConjAP" ; -oper ConjAdv : Conj -> ListAdv -> Adv = notYet "ConjAdv" ; -oper ConjNP : Conj -> ListNP -> NP = notYet "ConjNP" ; oper ConjRS : Conj -> ListRS -> RS = notYet "ConjRS" ; -oper ConjS : Conj -> ListS -> S = notYet "ConjS" ; -oper ConsAP : AP -> ListAP -> ListAP = notYet "ConsAP" ; -oper ConsAdv : Adv -> ListAdv -> ListAdv = notYet "ConsAdv" ; -oper ConsNP : NP -> ListNP -> ListNP = notYet "ConsNP" ; oper ConsRS : RS -> ListRS -> ListRS = notYet "ConsRS" ; -oper ConsS : S -> ListS -> ListS = notYet "ConsS" ; oper DetNP : Det -> NP = notYet "DetNP" ; oper EmbedQS : QS -> SC = notYet "EmbedQS" ; oper EmbedS : S -> SC = notYet "EmbedS" ; oper EmbedVP : VP -> SC = notYet "EmbedVP" ; oper ExistIP : IP -> QCl = notYet "ExistIP" ; -oper ExistNP : NP -> Cl = notYet "ExistNP" ; oper FunRP : Prep -> NP -> RP -> RP = notYet "FunRP" ; -oper GenericCl : VP -> Cl = notYet "GenericCl" ; oper ImpPl1 : VP -> Utt = notYet "ImpPl1" ; oper ImpersCl : VP -> Cl = notYet "ImpersCl" ; oper PConjConj : Conj -> PConj = notYet "PConjConj" ; diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index ddb788e3e..7929adc03 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -6,7 +6,7 @@ lin DetCN det cn = let { cas : Case -> Case = if_then_else Case det.is1sg Bare ; - number = sizeToNumber det.n ; + number = case cn.isDual of {True => Dl ; _ => sizeToNumber det.n} ; determiner : Case -> Str = \c -> det.s ! cn.h ! (detGender cn.g det.n) ! c ; noun : Case -> Str = \c -> @@ -169,8 +169,11 @@ lin isNum,isPron,is1sg = False } ; - MassNP cn = ---- AR - {s = \\c => cn.s ! Sg ! Indef ! c ++ cn.np ! c ++ cn.adj ! Sg ! Indef ! c ; + MassNP cn = + {s = \\c => cn.s ! Sg ! Indef ! c + ++ cn.s2 ! Sg ! Indef ! c + ++ cn.np ! c + ++ cn.adj ! Sg ! Indef ! c ; a = {pgn = Per3 cn.g Sg ; isPron = False} ; empty = []} ; diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index d1958ae4d..2300521f4 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -76,6 +76,8 @@ resource ParadigmsAra = open --- = sdfN ; } ; + dualN : N -> N ; + --This is used for loan words or anything that has untreated irregularities --in the interdigitization process of its words mkFullN : NTable -> Gender -> Species -> N ; @@ -261,7 +263,8 @@ resource ParadigmsAra = open mkV2S : V -> Str -> V2S ; mkVV = overload { mkVV : V -> VV = regVV ; - mkVV : V -> Str -> VV = c2VV + mkVV : V -> Str -> VV = c2VV ; + mkVV : V -> Preposition -> VV = prepVV } ; mkV2V : overload { mkV2V : V -> Str -> Str -> V2V ; @@ -349,11 +352,17 @@ resource ParadigmsAra = open = \n,attr -> n ** {s2 = \\n,s,c => attr} ; mkN : N -> N -> N -- Compound nouns = \n1,n2 -> n1 ** {s2 = - \\n,s,c => n1.s2 ! n ! s ! c -- card - ++ n2.s ! n ! s ! c -- type - ++ n2.s2 ! n ! s ! c} ; -- blood + \\n,s,c => n1.s2 ! n ! s ! c + ++ n2.s ! n ! s ! c + ++ n2.s2 ! n ! s ! c} ; } ; + dualN : N -> N = \n -> n ** {isDual=True} ; + + proDrop : NP -> NP ; -- Force a NP to lose its string, only contributing with its agreement. + + mkPron : (_,_,_ : Str) -> PerGenNum -> Pron ; + mkV = overload { mkV : (imperfect : Str) -> V = regV ; @@ -470,12 +479,12 @@ resource ParadigmsAra = open _ => v10sound } } in lin V (v10fun rbT) ; - mkFullN nsc gen spec = + mkFullN nsc gen spec = lin N { s = nsc; --NTable s2 = emptyNTable; g = gen; h = spec; - lock_N = <> + isDual = False }; brkN' : Str -> Str -> Str -> Gender -> Species -> N = @@ -533,31 +542,19 @@ resource ParadigmsAra = open } ; mkPron : (_,_,_ : Str) -> PerGenNum -> Pron = \ana,nI,I,pgn -> - lin Pron { s = - table { - Acc => BIND ++ nI; -- object suffix - Gen => BIND ++ I; -- possessive suffix - _ => ana - }; - a = {pgn = pgn; isPron = True }; - empty = [] - }; + lin Pron (ResAra.mkPron ana nI I pgn) ; - proDrop : NP -> NP = ResAra.proDrop ; -- Force a NP to lose its string, only contributing with its agreement. + proDrop : NP -> NP = \np -> lin NP (ResAra.proDrop np) ; -- e.g. al-jamii3, 2a7ad - regNP : Str -> Number -> NP = \word,n -> lin NP - { s = \\c => fixShd word (dec1sg ! Def ! c) ; - a = {pgn = Per3 Masc n; isPron = False }; - empty = [] - }; + regNP : Str -> Number -> NP = \word,n -> lin NP (emptyNP ** { + s = \\c => fixShd word (dec1sg ! Def ! c) + }); -- e.g. hadha, dhaalika - indeclNP : Str -> Number -> NP = \word,n -> lin NP - { s = \\c => word ; - a = {pgn = Per3 Masc n; isPron = False }; - empty = [] - }; + indeclNP : Str -> Number -> NP = \word,n -> lin NP (emptyNP ** { + s = \\c => word + }); mkQuant7 : (_,_,_,_,_,_,_ : Str) -> State -> Quant = \hava,havihi,havAn,havayn,hAtAn,hAtayn,hA'ulA,det -> lin Quant (baseQuant ** @@ -666,7 +663,8 @@ resource ParadigmsAra = open mkVQ v = v ** {lock_VQ = <>} ; regVV : V -> VV = \v -> lin VV v ** {c2 = mkPreposition "أَنْ"} ; - c2VV : V -> Str -> VV = \v,prep -> regVV v ** {c2 = noPrep} ; + c2VV : V -> Str -> VV = \v,prep -> regVV v ** {c2 = mkPreposition prep} ; + prepVV : V -> Preposition -> VV = \v,prep -> regVV v ** {c2=prep} ; V0 : Type = V ; ---- V2S, V2V, V2Q, V2A : Type = V2 ; diff --git a/src/arabic/PhraseAra.gf b/src/arabic/PhraseAra.gf index 6e0abc7f3..78c8f947a 100644 --- a/src/arabic/PhraseAra.gf +++ b/src/arabic/PhraseAra.gf @@ -17,7 +17,7 @@ concrete PhraseAra of Phrase = CatAra ** open UttCN cn = {s = ResAra.uttCN cn } ; --IL UttNP np = {s = \\_ => np.s ! Nom} ; - UttVP vp = {s = \\g => (compVP vp).s ! {g=g ; n=Sg} ! Nom} ; --IL + UttVP vp = {s = uttVP vp} ; --IL UttS, UttAdv, UttIAdv = \s -> {s = \\_ => s.s} ; ---- OK? AR diff --git a/src/arabic/QuestionAra.gf b/src/arabic/QuestionAra.gf index f8afc2da4..9df2234ae 100644 --- a/src/arabic/QuestionAra.gf +++ b/src/arabic/QuestionAra.gf @@ -7,8 +7,8 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA QuestCl cl = { s = \\t,p => table { - QIndir => "إِذا" ++ cl.s ! t ! p ! Verbal ; - QDir => "هَلْ" ++ cl.s ! t ! p ! Verbal + QIndir => "إِذا" ++ cl.s ! t ! p ! toOrder QIndir ; + QDir => "هَلْ" ++ cl.s ! t ! p ! toOrder QDir } }; @@ -18,12 +18,12 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA QuestVP qp vp = let np = ip2np qp vp.isPred ; cl = PredVP np vp ; - in { s = \\t,p,_qf => cl.s ! t ! p ! Nominal } ; + in { s = \\t,p,qf => cl.s ! t ! p ! toOrder qf } ; ---- AR guessed - QuestIAdv iadv cl = {s = \\t,p,_ => iadv.s ++ cl.s ! t ! p ! Verbal} ; + QuestIAdv iadv cl = {s = \\t,p,qf => iadv.s ++ cl.s ! t ! p ! toOrder qf} ; ---- IL guessed -- : IComp -> NP -> QCl @@ -46,7 +46,7 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA QuestSlash ip cls = { ----IL just guessing s = \\t,p,qf => let cl : ResAra.Cl = complClSlash cls ; -- dummy conversion to Cl - o = case qf of { QDir => Nominal ; _ => Verbal } ; -- purely guessing + o = toOrder qf in cls.c2.s ++ ip.s ! False ! Masc ! Def ! Nom ++ cl.s ! t ! p ! o } ; diff --git a/src/arabic/RelativeAra.gf b/src/arabic/RelativeAra.gf index 12bf8e6c9..9c764ade6 100644 --- a/src/arabic/RelativeAra.gf +++ b/src/arabic/RelativeAra.gf @@ -1,5 +1,5 @@ concrete RelativeAra of Relative = CatAra ** - open ResAra, (Se=SentenceAra), (St=StructuralAra) in { + open ResAra in { flags coding=utf8; lin @@ -13,8 +13,8 @@ concrete RelativeAra of Relative = CatAra ** s = \\t,p,agr,c => let npS : Case => Str = \\_ => rp.s ! agr2ragr agr c ; - np = emptyNP ** {s = npS ; a = agr} ; - cl = Se.PredVP np vp ; + np : NP = agrNP agr ** {s = npS} ; + cl = predVP np vp ; in cl.s ! t ! p ! Nominal } ; @@ -22,9 +22,8 @@ concrete RelativeAra of Relative = CatAra ** -- : RP -> ClSlash -> RCl ; -- whom John loves RelSlash rp cls = cls ** { s = \\t,p,agr,c => - let obj = case (pgn2gn agr.pgn).g of { - Fem => St.she_Pron ; -- head is repeated as a clitic object pronoun - Masc => St.he_Pron } ; + let --empty : Agr -> NP = emptyNP ; + obj : ResAra.NP = pgn2pron agr.pgn ; -- head is repeated as a clitic object pronoun cl : ResAra.Cl = complClSlash obj cls ; in rp.s ! agr2ragr agr c ++ cl.s ! t ! p ! VOS } ; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 3df3a117b..28b725918 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -31,7 +31,8 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { oper - --roots, patterns, and making words: +----------------------------------------------------------------------------- +-- General morphology with roots, patterns, and making words: Pattern : Type = {h, m1, m2, t : Str}; Root : Type = {f : Str}; @@ -109,7 +110,12 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { emptyNTable : NTable = \\n,s,c => [] ; Preposition : Type = {s : Str ; c : Case} ; - Noun : Type = {s,s2 : NTable ; g : Gender; h : Species} ; + Noun : Type = { + s,s2 : NTable ; + g : Gender ; + h : Species ; + isDual : Bool -- whether it takes dual instead of plural: eyes, twins, ... + } ; Noun2 : Type = Noun ** {c2 : Preposition} ; Noun3 : Type = Noun2 ** {c3 : Preposition} ; @@ -118,6 +124,8 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { mkPreposition : Str -> Preposition = \s -> {s=s;c=Gen} ; } ; + noPrep : Preposition = mkPreposition [] Nom ; + Adj : Type = {s : AForm => Str} ; Adj2 : Type = Adj ** {c2 : Preposition} ; @@ -1138,18 +1146,14 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> } }; + gn2pgn : {g : Gender; n : Number} -> PerGenNum = \gn -> + case gn of { {g = gn; n = nm} => Per3 gn nm } ; + + -- these are chosen in many places, trying to be consistent + toOrder : QForm -> Order = \qf -> + case qf of { QIndir => Nominal ; + QDir => Verbal } ; - mkIP = overload { - mkIP : Str -> Number -> IP = \maa,n -> { - s = \\_p,_g,_s,_c => maa ; - a = { pgn = agrP3 NoHum Masc n ; isPron = False } - } ; - mkIP : (_,_ : Str) -> Number -> IP = \maa,maadhaa,n -> { - s = table { True => \\_g,_s,_c => maa ; - False => \\_g,_s,_c => maadhaa } ; - a = { pgn = agrP3 NoHum Masc n ; isPron = False } - } - } ; mkOrd : (_,_ : Str) -> Size -> NumOrdCard = \aysar,yusra,sz -> @@ -1163,7 +1167,9 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> }; - oper + +----------------------------------------------------------------------------- +-- Det, Quant BaseQuant : Type = { d : State; @@ -1194,21 +1200,8 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> AAgr = { g : Gender ; n : Number} ; - - Comp : Type = { - s : AAgr => Case => Str - } ; - - IComp : Type = { - s : AAgr -- "how old": masc or fem for adjective - -- no need for Case, IComp is only used by QuestIComp, as grammatical subject - => Str ; - } ; - - Obj : Type = { - s : Str ; - a : Agr - }; +----------------------------------------------------------------------------- +-- NP, Pron NP : Type = { s : Case => Str ; @@ -1216,16 +1209,79 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> empty : Str -- to prevent ambiguities with prodrop } ; + mkPron : (_,_,_ : Str) -> PerGenNum -> NP = \ana,nI,I,pgn -> + { s = + table { + Acc => BIND ++ nI; -- object suffix + Gen => BIND ++ I; -- possessive suffix + _ => ana + }; + a = {pgn = pgn; isPron = True }; + empty = [] + }; + proDrop : NP -> NP = \np -> case np.a.isPron of { True => np ** {s = \\_ => []}; _ => np } ; - + emptyNP : NP = { s = \\_ => [] ; a = {pgn = Per3 Masc Sg ; isPron = False} ; - empty = []} ; + empty = [] } ; + + agrNP : Agr -> NP = \agr -> emptyNP ** {a = agr} ; + + i_Pron : NP = mkPron "أَنَا" "نِي" "ي" (Per1 Sing) ; + youSgMasc_Pron : NP = mkPron "أَنتَ" "كَ" "كَ" (Per2 Masc Sg) ; + youSgFem_Pron : NP = mkPron "أَنتِ" "كِ" "كِ" (Per2 Fem Sg) ; + youDlMasc_Pron : NP = mkPron "أَنتُمَا" "كُمَا" "كُمَا" (Per2 Masc Dl) ; + youDlFem_Pron : NP = mkPron "أَنتُمَا" "كُمَا" "كُمَا" (Per2 Fem Dl) ; + he_Pron : NP = mkPron "هُوَ" "هُ" "هُ" (Per3 Masc Sg) ; + she_Pron : NP = mkPron "هِيَ" "ها" "ها" (Per3 Fem Sg) ; + we_Pron : NP = mkPron "نَحنُ" "نا" "نا" (Per1 Plur) ; + youPlMasc_Pron : NP = mkPron "أَنتُمْ" "كُمْ" "كُمْ" (Per2 Masc Sg) ; + youPlFem_Pron : NP = mkPron "أَنتُنَّ" "كُنَّ" "كُنَّ" (Per2 Fem Sg) ; + theyMasc_Pron : NP = mkPron "هُمْ" "هُمْ" "هُمْ" (Per3 Masc Pl) ; + theyFem_Pron : NP = mkPron "هُنَّ" "هُنَّ" "هُنَّ" (Per3 Fem Pl) ; + theyDlMasc_Pron : NP = mkPron "هُمَا" "هُمَا" "هُمَا" (Per3 Masc Dl) ; + theyDlFem_Pron : NP = mkPron "هُمَا" "هُمَا" "هُمَا" (Per3 Fem Dl) ; + + -- Used e.g. to encode the subject as an object clitic + -- or to find a possessive suffix corresponding to the NP. + -- If the NP is a pronoun, just use itself. + np2pron : NP -> NP = \np -> case np.a.isPron of { + True => np ; + False => pgn2pron np.a.pgn + } ; + + pgn2pron : PerGenNum -> NP = \pgn -> + case pgn of { + Per1 Sing => i_Pron ; + Per1 Plur => we_Pron ; + Per2 Fem Sg => youSgFem_Pron ; + Per2 Masc Sg => youSgMasc_Pron ; + Per2 Fem Dl => youDlFem_Pron ; + Per2 Masc Dl => youDlMasc_Pron ; + Per2 Fem Pl => youPlFem_Pron ; + Per2 Masc Pl => youPlMasc_Pron ; + Per3 Fem Sg => she_Pron ; + Per3 Masc Sg => he_Pron ; + Per3 Fem Dl => theyDlFem_Pron ; + Per3 Masc Dl => theyDlMasc_Pron ; + Per3 Fem Pl => theyFem_Pron ; + Per3 Masc Pl => theyMasc_Pron + } ; + + pron2np : NP -> NP = \np -> np ** { + a = np.a ** {isPron=False} -- hack, sometimes we *don't* want prodrop + } ; + + refl : Case => Str = \\c => "نَفْس" + caseTbl ! c ; + +----------------------------------------------------------------------------- +-- IP, questions IP : Type = { s : Bool -- different forms for "what is this" and "what do you do" @@ -1235,6 +1291,18 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> a : Agr -- can be both subject and object of a QCl, needs full agr. info (stupid given that s depends on gender but meh) } ; + mkIP = overload { + mkIP : Str -> Number -> IP = \maa,n -> { + s = \\_p,_g,_s,_c => maa ; + a = { pgn = agrP3 NoHum Masc n ; isPron = False } + } ; + mkIP : (_,_ : Str) -> Number -> IP = \maa,maadhaa,n -> { + s = table { True => \\_g,_s,_c => maa ; + False => \\_g,_s,_c => maadhaa } ; + a = { pgn = agrP3 NoHum Masc n ; isPron = False } + } + } ; + ip2np : IP -> Bool -> NP = \ip,isPred -> ip ** { s = ip.s ! isPred ! Masc ! Def ; empty = [] } ; np2ip : NP -> IP = \np -> np ** {s = \\_,_,_ => np.s} ; @@ -1248,6 +1316,15 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> s : State => Case => Str } ; + IComp : Type = { + s : AAgr -- "how old": masc or fem for adjective + -- no need for Case, IComp is only used by QuestIComp, as grammatical subject + => Str ; + } ; + +----------------------------------------------------------------------------- +-- VP + param VPForm = VPPerf | VPImpf Mood @@ -1263,16 +1340,10 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> s2 : Str }; - -- For complements of VV. - -- TODO: does verbal complement agree with the noun - compVP : VP -> Comp = \vp -> ---- IL - { s = table { - aagr@{g=g ; n=n} => \\c => - vp.s ! Per3 g n ! VPImpf Ind ---- IL guesswork + https://arabic.desert-sky.net/g_modals.html - ++ vp.s2 - ++ vp.pred.s ! aagr ! Acc - ++ vp.obj.s } - } ; + uttVP : VP -> (Gender=>Str) = \vp -> + \\g => vp.s ! Per3 g Sg ! VPPerf + ++ vp.obj.s ++ vp.pred.s ! {n = Sg ; g = g} ! Nom + ++ vp.s2 ; predV : Verb -> VP = \v -> { s = \\pgn,vf => @@ -1282,12 +1353,9 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> VPImpf m => v.s ! (VImpf m Act pgn); VPImp => v.s ! (VImp gn.g gn.n) }; - obj = { - s = [] ; - a = {pgn = Per3 Masc Sg ; isPron = False} - }; --or anything! + obj = emptyObj ; s2 = []; - pred = { s = \\_,_ => []}; + pred = {s = \\_,_ => []} ; isPred = False }; @@ -1357,10 +1425,24 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> _ => pgn }; +----------------------------------------------------------------------------- +-- Comp, arguments for VP + + Comp : Type = { + s : AAgr => Case => Str ; + } ; + + Obj : Type = { + s : Str ; + a : Agr -- default Agr in a VP without real Obj is Per3 Masc Sg + }; + + emptyObj : Obj = emptyNP ** {s=[]} ; + insertObj : NP -> VPSlash -> VP = \np,vp -> vp ** { obj = {s = vp.obj.s ++ vp.c2.s ++ np.s ! vp.c2.c ; a = np.a} }; - insertPred : {s : AAgr => Case => Str} -> VP -> VP = \p,vp -> vp ** + insertPred : Comp -> VP -> VP = \p,vp -> vp ** { pred = p; isPred = True }; @@ -1372,7 +1454,9 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> insertPred xabar (predV copula); copula : Verb = v1hollow {f = "ك"; c = "و" ; l = "ن"} u ; - -- Slash categories + +----------------------------------------------------------------------------- +-- Slash categories VPSlash : Type = VP ** {c2 : Preposition} ; ClSlash : Type = VPSlash ** {subj : NP} ; @@ -1397,7 +1481,9 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> Cl : Type = {s : Tense => Polarity => Order => Str} ; QCl : Type = {s : Tense => Polarity => QForm => Str} ; - -- Relative +----------------------------------------------------------------------------- +-- Relative + param RAgr = RSg Gender | RPl Gender | RDl Gender Case ; @@ -1418,6 +1504,9 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> RCl : Type = {s : Tense => Polarity => Agr => Case => Str} ; RP : Type = {s : RAgr => Str } ; +----------------------------------------------------------------------------- +-- Num + param Size = One | Two | ThreeTen | Teen | NonTeen | Hundreds | None ; @@ -1505,6 +1594,4 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> Masc => Fem; Fem => Masc }; - - } diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index 59bdce40f..bb30d9058 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -35,7 +35,7 @@ concrete StructuralAra of Structural = CatAra ** few_Det = mkDet "بَعض" Pl Const ; -- first_Ord = ss "فِرست" ; from_Prep = mkPrep "مِنَ" ; - he_Pron = mkPron "هُوَ" "هُ" "هُ" (Per3 Masc Sg) ; + he_Pron = ResAra.he_Pron ; here_Adv = ss "هُنا" ; -- here7to_Adv = ss ["تْ هري"] ; -- here7from_Adv = ss ["فرْم هري"] ; @@ -43,7 +43,7 @@ concrete StructuralAra of Structural = CatAra ** -- how8many_IDet = mkDet "كَمْ" Pl Const ; -- IL: check (was ["هْو مَني"]) ; -- if_Subj = ss "ِف" ; in8front_Prep = mkPrep "مُقَابِلَ" ; - i_Pron = mkPron "أَنَا" "نِي" "ي" (Per1 Sing); + i_Pron = ResAra.i_Pron ; in_Prep = mkPrep "فِي" ; it_Pron = he_Pron ; -- was: it_Pron = mkPron "ِت" "ِت" "ِتس" (Per3 Masc Sg); -- less_CAdv = ss "لسّ" ; @@ -66,7 +66,7 @@ concrete StructuralAra of Structural = CatAra ** -- please_Voc = ss "ةلَسي" ; possess_Prep = mkPrep "ل" ; -- quite_Adv = ss "قُِتي" ; - she_Pron = mkPron "هِيَ" "ها" "ها" (Per3 Fem Sg) ; + she_Pron = ResAra.she_Pron ; -- so_AdA = ss "سْ" ; somebody_NP = regNP "أَحَد" Sg ; someSg_Det = mkDet "أَحَد" Sg Const ; @@ -80,7 +80,7 @@ concrete StructuralAra of Structural = CatAra ** -- there7from_Adv = ss ["فرْم تهري"] ; -- therefore_PConj = ss "تهرفْري" ; ----b these_NP = indeclNP "هَؤُلَاء" Pl ; - they_Pron = mkPron "هُمْ" "هُمْ" "هُمْ" (Per3 Masc Pl) ; + they_Pron = theyMasc_Pron ; this_Quant = mkQuant7 "هَذا" "هَذِهِ" "هَذَان" "هَذَيْن" "هَاتَان" "هَاتَيْن" "هَؤُلَاء" Def; ----b this_NP = indeclNP "هَذا" Sg ; ----b those_NP = indeclNP "هَؤُلَاءكَ" Pl ; @@ -90,7 +90,7 @@ concrete StructuralAra of Structural = CatAra ** under_Prep = mkPrep "تَحْتَ" ; -- very_AdA = ss "ثري" ; -- want_VV = P.mkVV (P.regV "وَنت") ; - we_Pron = mkPron "نَحنُ" "نا" "نا" (Per1 Plur) ; + we_Pron = ResAra.we_Pron ; whatPl_IP = mkIP "ما" "ماذا" Pl ; whatSg_IP = mkIP "ما" "ماذا" Sg ; when_IAdv = ss "مَتَى" ; @@ -113,9 +113,9 @@ concrete StructuralAra of Structural = CatAra ** without_Prep = mkPrep "بِدُونِ" ; with_Prep = mkPrep "مَع" ; yes_Utt = {s = \\_ => "نَعَم"} ; - youSg_Pron = mkPron "أَنتَ" "كَ" "كَ" (Per2 Masc Sg) ; - youPl_Pron = mkPron "أَنتُمْ" "كُمْ" "كُمْ" (Per2 Masc Sg) ; - youPol_Pron = mkPron "أَنتِ" "كِ" "كِ" (Per2 Fem Sg) ; + youSg_Pron = youSgMasc_Pron ; + youPl_Pron = youPlMasc_Pron ; + youPol_Pron = youSgFem_Pron ; -- arbitrary? have_V2 = dirV2 (regV "يَملِك") ; diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index 110059dd9..57cc1719e 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -1,4 +1,4 @@ -concrete VerbAra of Verb = CatAra ** open Prelude, ResAra in { +concrete VerbAra of Verb = CatAra ** open Prelude, ResAra, ParamX in { flags optimize=all_subs ; @@ -16,13 +16,8 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra in { ComplSlash vp np = insertObj np vp ; --- Complv3 v np np2 = insertObj np2 (insertObj np (predV v)) ; - -{-{s = \\_ => v.c2 ++ np.s ! Acc ++ v.c3 ++ np2.s ! Acc ; - a = {pgn = Per3 Masc Sg ; isPron = False} } --FIXME - (predV v) ;-} - - ComplVV vv vp = let vvVP = predV vv in --- IL + -- : VV -> VP -> VP ; -- want to run + ComplVV vv vp = let vvVP = predV vv in -- IL vp ** { s = \\pgn,vpf => vvVP.s ! pgn ! vpf ++ vv.c2.s -- أَنْ @@ -30,14 +25,26 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra in { isPred = False } ; --- ComplVS v s = insertObj (\\_ => conjThat ++ s.s) (predV v) ; --- ComplVQ v q = insertObj (\\_ => q.s ! QIndir) (predV v) ; --- --- ComplVA v ap = insertObj (ap.s) (predV v) ; + -- : VS -> S -> VP ; -- say that she runs + ComplVS vs s = predV vs ** { -- IL + obj = emptyObj ** s } ; + + -- : VQ -> QS -> VP ; -- wonder who runs + ComplVQ vq qs = predV vq ** { -- IL + obj = emptyObj ** {s = qs.s ! QIndir} + } ; + + -- : VA -> AP -> VP ; -- they become red + ComplVA v ap = predV v ** {comp = CompAP ap} ; + -- ComplV2A v np ap = -- insertObj (\\_ => v.c2 ++ np.s ! Acc ++ ap.s ! np.a) (predV v) ; -- - UseComp xabar = kaan xabar ; + UseComp xabar = + case xabar.isNP of { + False => kaan xabar ; + True => predV copula ** {obj = xabar.obj ; isPred=True} + } ; UseCopula = predV copula ; @@ -51,10 +58,14 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra in { -- -- UseVS, UseVQ = \vv -> {s = vv.s ; c2 = [] ; isRefl = vv.isRefl} ; -- no - CompCN cn = {s = \\agr,c => cn.s ! agr.n ! Indef ! c ++ cn.np ! c ++ cn.adj ! agr.n ! Indef ! c} ; ----IL - CompAP ap = {s = \\agr,c => ap.s ! Hum ! agr.g ! agr.n ! Indef ! c} ; --FIXME - CompNP np = {s = \\_,c => np.s ! c}; - CompAdv a = {s = \\_,_ => a.s} ; + CompAP ap = {s = \\agr,c => ap.s ! Hum ! agr.g ! agr.n ! Indef ! c ; --FIXME + obj = emptyObj ; isNP = False} ; + CompAdv a = {s = \\_,_ => a.s ; + obj = emptyObj ; isNP = False} ; + + CompCN cn = {s = \\agr,c => cn.s ! agr.n ! Indef ! Nom ++ cn.np ! Nom ++ cn.adj ! agr.n ! Indef ! Nom ; + obj = emptyObj ; isNP = False} ; + CompNP np = {s = \\_,_ => [] ; obj = np ** {s = np.s ! Nom} ; isNP = True} ; -- -- } From 6c71da78f76339f5515cf53589f30e8017012bd4 Mon Sep 17 00:00:00 2001 From: Thomas Hallgren Date: Wed, 14 Nov 2018 17:55:47 +0100 Subject: [PATCH 120/172] arabic: add api to -path flags in AllAra.gf and LangAra.gf This fixes a build problem (either a type error, if doing an incremental rebuild, or a failure to find SyntaxAra.gf if building from scratch.) I wonder why the Travis build didn't catch this? --- src/arabic/AllAra.gf | 2 +- src/arabic/LangAra.gf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arabic/AllAra.gf b/src/arabic/AllAra.gf index c331a6af7..dc20a6457 100644 --- a/src/arabic/AllAra.gf +++ b/src/arabic/AllAra.gf @@ -1,3 +1,3 @@ ---# -path=.:../abstract:../common:../prelude +--# -path=.:../abstract:../common:../api:../prelude concrete AllAra of AllAraAbs = LangAra ; diff --git a/src/arabic/LangAra.gf b/src/arabic/LangAra.gf index ae49cc611..bf4be4c7d 100644 --- a/src/arabic/LangAra.gf +++ b/src/arabic/LangAra.gf @@ -1,4 +1,4 @@ ---# -path=.:../abstract:../common:../prelude +--# -path=.:../abstract:../common:../api:../prelude concrete LangAra of Lang = GrammarAra, From 2b1611806302f38ed748cbf91ef46d7f1652a550 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 14 Nov 2018 18:10:28 +0100 Subject: [PATCH 121/172] (Ara) Add new verb paradigm for hollow 8 --- src/arabic/ParadigmsAra.gf | 5 ++++- src/arabic/PatternsAra.gf | 3 +++ src/arabic/ResAra.gf | 22 ++++++++++++++++++++++ 3 files changed, 29 insertions(+), 1 deletion(-) diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index 2300521f4..06b181f3e 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -467,7 +467,10 @@ resource ParadigmsAra = open rbT = mkRoot3 rootStr ; v8fun = case rbT.f of { ("و"|"ي"|"ّ") => v8assimilated ; - _ => v8sound } + _ => + case rbT.c of { + #weak => v8hollow ; + _ => v8sound }} } in lin V (v8fun rbT) ; v10 = diff --git a/src/arabic/PatternsAra.gf b/src/arabic/PatternsAra.gf index 1390d67a8..23175098b 100644 --- a/src/arabic/PatternsAra.gf +++ b/src/arabic/PatternsAra.gf @@ -77,6 +77,9 @@ flags coding=utf8 ; ficAl = { h = "" ; m1 = "ِ" ; m2 = "َا" ; t = "" } ; ficlp = { h = "" ; m1 = "ِ" ; m2 = "ْ" ; t = "َة" } ; ftacal = { h = "" ; m1 = "ْتَ" ; m2 = "َ" ; t = "" } ; + ftical = ftacal ** { m1 = "ْتِ" } ; -- IL hollow VIII + ftAcal = ftacal ** { m1 = "ْتَا" } ; -- IL hollow VIII + ftIcal = ftacal ** { m1 = "ْتِي" } ; -- IL hollow VIII ftacil = { h = "" ; m1 = "ْتَ" ; m2 = "ِ" ; t = "" } ; ttacal = ftacal ** { m1 = "" ; h = "تَّ" } ; ---- IL assimilated VIII ttacil = ftacil ** { m1 = "" ; h = "تَّ" } ; ---- IL assimilated VIII diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 28b725918..65f504f40 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -708,6 +708,28 @@ v8assimilated : Root3 -> Verb = --- IL 8a1 muttafaq = "م" + uttafaq } in verb eittafaq euttufiq attafiq uttafaq eittafiq muttafaq; +v8hollow : Root3 -> Verb = -- IL + \Hwj -> + let { + _Htaj = mkHollow ftacal Hwj ; + _HtAj = mkHollow ftAcal Hwj ; + _Htij = mkHollow ftical Hwj ; + _HtIj = mkHollow ftIcal Hwj ; + iHtaj = "اِ" + _Htaj ; -- VPerf Act (Per3 Fem Pl) + iHtAj = "اِ" + _HtAj ; -- VPerf Act _ + uHtij = "اُ" + _Htij ; -- VPerf Pas (Per3 Fem Pl) + uHtIj = "اُ" + _HtIj ; -- VPerf Pas _ + aHtaj = "َ" + _Htaj ; -- VImpf Act (Per2/Per3 Fem Pl) + aHtAj = "َ" + _HtAj ; -- VImpf Act _ + uHtaj = "ُ" + _Htaj ; -- VImpf Pas (Per2/Per3 Fem Pl) + uHtAj = "ُ" + _Htaj ; -- VImpf Pas _ + -- iHtaj again -- VImp Sg Masc / Pl Fem + -- iHtAj again -- VImp Pl Masc / Sg Fem + ppart = "مُ" + _HtAj -- PPart + + } in verbHollow (toDefForms + iHtAj iHtaj uHtIj uHtij aHtAj aHtaj + uHtAj uHtaj iHtAj iHtaj ppart) ; v10sound : Root3 -> Verb = ---- IL 10s -- to be checked \qtl -> let { From 06efa09f93cfab8daf5739c896856d58a7a4f78b Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 14 Nov 2018 18:11:10 +0100 Subject: [PATCH 122/172] (Ara) Add UttInterj and an API command mkInterj --- src/arabic/ParadigmsAra.gf | 4 +++- src/arabic/PhraseAra.gf | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index 06b181f3e..eb81ad02c 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -168,6 +168,8 @@ resource ParadigmsAra = open mkAdA : Str -> AdA ; + mkInterj : Str -> Interj ; + --2 Prepositions -- -- A preposition as used for rection in the lexicon, as well as to @@ -641,7 +643,7 @@ resource ParadigmsAra = open mkAdv x = lin Adv (ss x) ; mkAdV x = lin AdV (ss x) ; mkAdA x = lin AdA (ss x) ; - + mkInterj x = lin Interj (ss x) ; dirV2 v = prepV2 v (casePrep acc) ; diff --git a/src/arabic/PhraseAra.gf b/src/arabic/PhraseAra.gf index 78c8f947a..9bc36fa60 100644 --- a/src/arabic/PhraseAra.gf +++ b/src/arabic/PhraseAra.gf @@ -10,6 +10,7 @@ concrete PhraseAra of Phrase = CatAra ** open UttQS qs = {s = \\g => qs.s ! QDir} ; UttImpSg pol imp = {s = \\g => imp.s ! pol.p ! g ! ResAra.Sg ++ pol.s} ; UttImpPl,UttImpPol = \pol,imp -> {s = \\g => imp.s ! pol.p ! g ! ResAra.Pl ++ pol.s} ; + UttInterj i = {s = \\g => i.s} ; UttIP ip = {s = \\g => ip.s ! False ! g ! Def ! Nom} ; --IL UttAP ap = {s = ResAra.uttAP ap} ; --IL From 51e1c771c1a035acb83191de75ecd12770f4d6e7 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 14 Nov 2018 18:11:26 +0100 Subject: [PATCH 123/172] (Ara) small bugfixes --- src/arabic/QuestionAra.gf | 2 +- src/arabic/ResAra.gf | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/arabic/QuestionAra.gf b/src/arabic/QuestionAra.gf index 9df2234ae..c967f261c 100644 --- a/src/arabic/QuestionAra.gf +++ b/src/arabic/QuestionAra.gf @@ -28,7 +28,7 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA ---- IL guessed -- : IComp -> NP -> QCl QuestIComp ic np = - let vp = kaan (CompNP np) ; + let vp = UseComp (CompNP np) ; ip : ResAra.IP = np ** { -- NP's s is already present in VP, we only want its agr s = \\_,_,_,_ => ic.s ! pgn2gn np.a.pgn } ; in QuestVP ip vp ; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 65f504f40..48ce88338 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -569,8 +569,15 @@ v1defective_i : Root3 -> Vowel -> Verb = \bqy,vowImpf -> -- IL (conjugation 1d4) v1doubleweak : Root3 -> Verb = \r'y -> let ry = r'y ** {c = ""} ; - vforms : DefForms = \\x => rmSukun (v1DefForms_perfA ry a ! x) ; -- only remove the first sukun - in verbDoubleDef vforms i ; -- sukun in suffixes is removed in verbDoubleDef + vforms_doubleweak : DefForms = \\x => rmSukun (v1DefForms_perfA ry a ! x) ; -- only remove the first sukun + vforms_weak : DefForms = v1DefForms_perfA r'y a ; + vforms = table { 0 => vforms_weak ! 0 ; -- all perfect forms + 1 => vforms_weak ! 1 ; + 2 => vforms_weak ! 2 ; + 3 => vforms_weak ! 3 ; + 4 => vforms_weak ! 4 ; + x => vforms_doubleweak ! x } ; + in verbDoubleDef vforms a ; -- sukun in suffixes is removed in verbDoubleDef patDef1 : Vowel => Pattern = From be42e2015839c903b5b55a7dc42511279281a58a Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 15 Nov 2018 16:45:51 +0100 Subject: [PATCH 124/172] (Ara) Add subject case field to VP --- src/arabic/CatAra.gf | 5 +++-- src/arabic/ResAra.gf | 4 +++- src/arabic/VerbAra.gf | 3 ++- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index 9879772ad..2fda445fb 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -13,7 +13,7 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { SSlash, S = {s : Str} ; QS = {s : QForm => Str} ; - RS = {s : Agr => Case => Str} ; + RS = {s : Agr => Case => Str} ; -- case because the relative pronoun inflects in case -- Sentence @@ -79,7 +79,8 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { V, VS, VQ, VA = ResAra.Verb ; -- = {s : VForm => Str} ; V2, V2A = ResAra.Verb2 ; - VV, V2S, V2Q = ResAra.Verb2 ; + VV = ResAra.Verb2 ** {sc : Preposition} ; + V2S, V2Q = ResAra.Verb2 ; V2V, V3 = ResAra.Verb3 ; A = ResAra.Adj ; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 48ce88338..15309d1e9 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1363,6 +1363,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> VP : Type = { s : PerGenNum => VPForm => Str ; + sc : Preposition ; -- subject case: e.g. يُمْكِنُ *لِ*Xِ obj : Obj; pred : Comp; isPred : Bool; --indicates if there is a predicate (xabar) @@ -1382,6 +1383,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> VPImpf m => v.s ! (VImpf m Act pgn); VPImp => v.s ! (VImp gn.g gn.n) }; + sc = noPrep ; obj = emptyObj ; s2 = []; pred = {s = \\_,_ => []} ; @@ -1431,7 +1433,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> subj = np.empty ++ case of { => [] ; -- prodrop if it's not predicative - _ => np.s ! Nom + _ => vp.sc.s ++ np.s ! vp.sc.c } ; } in diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index 57cc1719e..6fe7c3359 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -22,7 +22,8 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra, ParamX in { s = \\pgn,vpf => vvVP.s ! pgn ! vpf ++ vv.c2.s -- أَنْ ++ vp.s ! pgn ! VPImpf Cnj ; - isPred = False + isPred = False ; + sc = vv.sc } ; -- : VS -> S -> VP ; -- say that she runs From b69608bd21c52c874b6f0704f78bfc057d4eb6b9 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 15 Nov 2018 16:46:35 +0100 Subject: [PATCH 125/172] (Ara) New verb paradigm (geminate 7) + clean up CN --- src/arabic/IdiomAra.gf | 4 +++- src/arabic/NounAra.gf | 34 +++++++++++++--------------- src/arabic/ParadigmsAra.gf | 28 ++++++++++++++++------- src/arabic/QuestionAra.gf | 2 +- src/arabic/ResAra.gf | 45 +++++++++++++++++++++++++++++++------ src/arabic/StructuralAra.gf | 2 +- src/arabic/SymbolAra.gf | 6 ++--- src/arabic/VerbAra.gf | 2 +- 8 files changed, 83 insertions(+), 40 deletions(-) diff --git a/src/arabic/IdiomAra.gf b/src/arabic/IdiomAra.gf index 7f43ab643..33c6b7ff5 100644 --- a/src/arabic/IdiomAra.gf +++ b/src/arabic/IdiomAra.gf @@ -18,6 +18,8 @@ concrete IdiomAra of Idiom = CatAra ** open -- : NP -> RS -> Cl ; -- it is I who did it --CleftNP np rs = + -- TODO: check page 61 for existentials and clefts /IL + -- : Adv -> S -> Cl ; -- it is here she slept CleftAdv adv s = let comp : Comp = {s = \\_,_ => adv.s ++ s.s} in ---- @@ -31,7 +33,7 @@ concrete IdiomAra of Idiom = CatAra ** open -- 7/12/2012 generalizations of these - -- : NP -> Adv -> Cl ; -- there is a house in Paris + -- : NP -> Adv -> Cl ; -- there is a house in Paris ExistNPAdv np adv = predVP emptyNP (insertStr adv.s (insertObj np (predV copula ** {c2=noPrep}))) ; diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index 7929adc03..2df55ad92 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -13,22 +13,20 @@ lin cn.s ! number ! nounState det.d number ! nounCase c det.n det.d ; - adj : NTable -> Case -> Str = \ntable,c -> - ntable ! number - ! (definite ! det.d) -- Indef remains Indef, rest become Def - ! c + adj : Case -> Str = \c -> + cn.s2 ! number + ! (definite ! det.d) -- Indef remains Indef, rest become Def + ! c } in { s = \\c => case cnB4det det.isPron det.isNum det.n det.d of { False => determiner c ++ noun c - ++ adj cn.s2 c - ++ adj cn.adj c + ++ adj c ++ cn.np ! c ; True => noun (cas c) -- deal with possessive suffix ++ determiner c - ++ adj cn.s2 c - ++ adj cn.adj c + ++ adj c ++ cn.np ! c }; a = { pgn = agrP3 cn.h cn.g number; @@ -170,10 +168,7 @@ lin } ; MassNP cn = - {s = \\c => cn.s ! Sg ! Indef ! c - ++ cn.s2 ! Sg ! Indef ! c - ++ cn.np ! c - ++ cn.adj ! Sg ! Indef ! c ; + {s = \\c => cn2str cn Sg Indef c ; a = {pgn = Per3 cn.g Sg ; isPron = False} ; empty = []} ; @@ -190,20 +185,23 @@ lin ComplN3 n3 np = ComplN2 n3 np ** {c2 = n3.c3} ; AdjCN ap cn = cn ** { - adj = \\n,d,c => cn.adj ! n ! d ! c ++ ap.s ! cn.h ! cn.g ! n ! (definite ! d) ! c + s2 = \\n,d,c => cn.s2 ! n ! d ! c ++ ap.s ! cn.h ! cn.g ! n ! (definite ! d) ! c }; - RelCN cn rs = cn ** {s = \\n,s,c => cn.s ! n ! s ! c ++ rs.s ! {pgn=Per3 cn.g n ; isPron=False} ! c}; + RelCN cn rs = cn ** { + s2 = \\n,s,c => cn.s2 ! n ! s ! c ++ rs.s ! {pgn=Per3 cn.g n ; isPron=False} ! c}; RelNP np rs = np ** {s = \\c => np.s ! c ++ rs.s ! np.a ! c} ; - -- AdvCN cn ad = {s = \\n,c => cn.s ! n ! c ++ ad.s} ; - -- - -- SentCN cn sc = {s = \\n,c => cn.s ! n ! c ++ sc.s} ; + + AdvCN, + SentCN = \cn,ss -> cn ** {s2 = \\n,d,c => cn.s2 ! n ! d ! c ++ ss.s} ; + ApposCN cn np = cn ** { np = \\c => cn.np ! c ++ np.s ! c } ; -- : CN -> NP -> CN ; -- house of Paris, house of mine PossNP cn np = cn ** { - s = \\n,_d,c => cn.s ! n ! Const ! c ; + s = \\n,_d,c => cn.s ! n ! Const ! c ; + s2 = \\n,_d,c => cn.s2 ! n ! Const ! c ; np = \\c => cn.np ! c ++ np.s ! Gen }; diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index eb81ad02c..0900043ce 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -218,7 +218,11 @@ resource ParadigmsAra = open v6 : Str -> V ; ---Verb Form VIII 'ifta`ala +--Verb Form VII : tafaa`ala + + v7 : Str -> V ; + +--Verb Form VIII infa`ala v8 : Str -> V ; @@ -266,7 +270,8 @@ resource ParadigmsAra = open mkVV = overload { mkVV : V -> VV = regVV ; mkVV : V -> Str -> VV = c2VV ; - mkVV : V -> Preposition -> VV = prepVV + mkVV : V -> Preposition -> VV = prepVV ; + mkVV : V -> Preposition -> Preposition -> VV = prep2VV } ; mkV2V : overload { mkV2V : V -> Str -> Str -> V2V ; @@ -463,6 +468,13 @@ resource ParadigmsAra = open lock_V = <> }; + v7 = + \rootStr -> + let { + fcl = mkRoot3 rootStr ; + v7fun = v7geminate ; -- TODO add rest + } in lin V (v7fun fcl) ; + v8 = \rootStr -> let { @@ -667,10 +679,10 @@ resource ParadigmsAra = open mkVS v = v ** {lock_VS = <>} ; mkVQ v = v ** {lock_VQ = <>} ; - regVV : V -> VV = \v -> lin VV v ** {c2 = mkPreposition "أَنْ"} ; - c2VV : V -> Str -> VV = \v,prep -> regVV v ** {c2 = mkPreposition prep} ; - prepVV : V -> Preposition -> VV = \v,prep -> regVV v ** {c2=prep} ; - + regVV : V -> VV = \v -> lin VV v ** {c2 = mkPreposition "أَنْ" ; sc = noPrep} ; + c2VV : V -> Str -> VV = \v,prep -> regVV v ** {c2 = mkPreposition prep ; sc = noPrep} ; + prepVV : V -> Preposition -> VV = \v,prep -> regVV v ** {c2=prep; sc=noPrep} ; + prep2VV : V -> (_,_ : Preposition) -> VV = \v,p1,p2 -> regVV v ** {c2=p1; sc=p2} ; V0 : Type = V ; ---- V2S, V2V, V2Q, V2A : Type = V2 ; AS, A2S, AV : Type = A ; @@ -715,12 +727,12 @@ formV : (root : Str) -> VerbForm -> V = \s,f -> case f of { FormIV => v4 s ; FormV => v5 s ; FormVI => v6 s ; ---- FormVII => v7 s ; + FormVII => v7 s ; FormVIII => v8 s ; FormX => v10 s } ; param VerbForm = - FormI | FormII | FormIII | FormIV | FormV | FormVI | FormVIII | FormX ; + FormI | FormII | FormIII | FormIV | FormV | FormVI | FormVII | FormVIII | FormX ; } ; diff --git a/src/arabic/QuestionAra.gf b/src/arabic/QuestionAra.gf index c967f261c..2a4c69ad3 100644 --- a/src/arabic/QuestionAra.gf +++ b/src/arabic/QuestionAra.gf @@ -71,7 +71,7 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA IdetCN idet cn = { s = \\isPred,g,s,c => idet.s ! cn.g ! s ! c ++ - cn.s ! idet.n ! Indef ! Gen ; --idaafa + cn2str cn idet.n Indef Gen ; --idaafa a = { pgn = agrP3 NoHum cn.g idet.n ; isPron = False } } ; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 15309d1e9..e503607cc 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -137,14 +137,18 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { uttAP : AP -> (Gender => Str) ; uttAP ap = \\g => ap.s ! NoHum ! g ! Sg ! Def ! Nom ; ----IL - CN : Type = Noun ** {adj : NTable ; np : Case => Str}; + CN : Type = Noun ** {np : Case => Str}; - useN : Noun -> CN = \n -> n ** {adj = \\_,_,_ => []; np = \\_ => []} ; + -- All fields of NP + cn2str : CN -> Number -> State -> Case -> Str = \cn,n,s,c -> + cn.s ! n ! s ! c ++ + cn.s2 ! n ! s ! c ++ + cn.np ! c ; + + useN : Noun -> CN = \n -> n ** {np = \\_ => []} ; uttCN : CN -> (Gender => Str) ; - uttCN cn = \\_ => cn.s ! Sg ! Indef ! Bare ++ - cn.s2 ! Sg ! Indef ! Bare ++ - cn.adj ! Sg ! Indef ! Bare ; + uttCN cn = \\_ => cn2str cn Sg Indef Bare ; NumOrdCard : Type = { s : Gender => State => Case => Str ; @@ -689,6 +693,33 @@ v6sound : Root3 -> Verb = mutafAqam = "م" + utafAqam } in verb tafAqam tufUqim atafAqam utafAqam tafAqam mutafAqam; +-- v7sound : Root3 -> Verb = -- TODO 7s +-- \fcl -> +-- let { +-- _facal = mkStrong facal fcl ; +-- _facil = mkStrong facil fcl; +-- infacal = "اِنْ" + _facal ; -- VPerf Act +-- ; -- VPerf Pas +-- anfacil = "َنْ" + _facil ; -- VImpf _ Act +-- ; -- VImpf _ Pas +-- ; -- VImp +-- -- VPPart +-- } in +-- verb ; + +v7geminate : Root3 -> Verb = -- IL 7g -- very likely wrong + \fcl -> + let { + _nfacc = "نْ" + mkHollow facc fcl ; + infacal = "اِنْ" + mkStrong facal fcl ; -- VPerf Act -- TODO use another constructor, this is wrong for 3rd person + unfucc = "اُنْ" + mkHollow fucc fcl ; -- VPerf Pas + anfacc = "َ" + _nfacc ; -- VImpf _ Act + unfacc = "ُ" + _nfacc ; -- VImpf _ Pas + infacc = "اِ" + _nfacc ; -- VImp + munfacc = "مُ" +_nfacc -- VPPart + } in + verb infacal unfucc anfacc unfacc infacc munfacc ; + v8sound : Root3 -> Verb = \rbT -> let { @@ -740,8 +771,8 @@ v8hollow : Root3 -> Verb = -- IL v10sound : Root3 -> Verb = ---- IL 10s -- to be checked \qtl -> let { - _staqtal = "َستَ" + mkStrong fcal qtl ; - _staqtil = "َستَ" + mkStrong fcil qtl; + _staqtal = "ستَ" + mkStrong fcal qtl ; + _staqtil = "ستَ" + mkStrong fcil qtl; istaqtal = "اِ" + _staqtal ; -- VPerf Act ustuqtil = "اُسْتُ" + mkStrong fcil qtl; -- VPerf Pas astaqtil = "َ" + _staqtil ; -- VImpf _ Act diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index bb30d9058..93349fbb5 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -45,7 +45,7 @@ concrete StructuralAra of Structural = CatAra ** in8front_Prep = mkPrep "مُقَابِلَ" ; i_Pron = ResAra.i_Pron ; in_Prep = mkPrep "فِي" ; - it_Pron = he_Pron ; -- was: it_Pron = mkPron "ِت" "ِت" "ِتس" (Per3 Masc Sg); + it_Pron = emptyNP ** {s = \\_ => "هَذَا"} ; -- was: it_Pron = mkPron "ِت" "ِت" "ِتس" (Per3 Masc Sg); -- less_CAdv = ss "لسّ" ; many_Det = mkDet "جَمِيع" Pl Const ; -- more_CAdv = ss "مْري" ; diff --git a/src/arabic/SymbolAra.gf b/src/arabic/SymbolAra.gf index 43bf160aa..fd1a95cd3 100644 --- a/src/arabic/SymbolAra.gf +++ b/src/arabic/SymbolAra.gf @@ -9,18 +9,18 @@ lin FloatPN i = {s = \\c => i.s ; g = Masc ; h = NoHum } ; --IL NumPN i = {s = \\c => uttNum i ! Masc ; g = Masc ; h = NoHum } ; --IL -- CNIntNP cn i = { - -- s = \\c => cn.s ! Sg ! Def ! c ++ uttNum i ! Masc ; + -- s = \\c => cn2str cn Sg Def c ++ uttNum i ! cn.g ; -- a = dummyAgrP3 Sg ; -- } ; --IL TODO: check out some opers regarding state in ResAra. These are just dummy values. CNSymbNP det cn xs = let g = cn.g ; n = sizeToNumber det.n in { - s = \\c => det.s ! NoHum ! g ! c ++ cn.s ! Sg ! Def ! c ++ cn.adj ! n ! Def ! c ++ xs.s; ----IL word order?? Seems to be nontrivial according to ResAra comments. + s = \\c => det.s ! NoHum ! g ! c ++ cn2str cn n Def c ++ xs.s; ----IL word order?? Seems to be nontrivial according to ResAra comments. a = dummyAgrP3 n ; empty = [] } ; CNNumNP cn i = { - s = \\c => cn.s ! Sg ! Def ! c ++ uttNum i ! Masc ; + s = \\c => cn2str cn Sg Def c ++ uttNum i ! cn.g ; a = dummyAgrP3 Sg ; empty = [] } ; diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index 6fe7c3359..8e82368dc 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -64,7 +64,7 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra, ParamX in { CompAdv a = {s = \\_,_ => a.s ; obj = emptyObj ; isNP = False} ; - CompCN cn = {s = \\agr,c => cn.s ! agr.n ! Indef ! Nom ++ cn.np ! Nom ++ cn.adj ! agr.n ! Indef ! Nom ; + CompCN cn = {s = \\agr,c => cn2str cn agr.n Indef Nom ; obj = emptyObj ; isNP = False} ; CompNP np = {s = \\_,_ => [] ; obj = np ** {s = np.s ! Nom} ; isNP = True} ; -- From 9171a1b6121bfa1cde4f6a6950971991ab9b9b91 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 16 Nov 2018 15:02:18 +0100 Subject: [PATCH 126/172] (Ara) Add DetNP + fix state of num in DetQuantOrd --- src/arabic/NounAra.gf | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index 2df55ad92..dd845055b 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -25,7 +25,7 @@ lin ++ adj c ++ cn.np ! c ; True => noun (cas c) -- deal with possessive suffix - ++ determiner c + ++ determiner c -- (nounCase c det.n det.d) --?? ++ adj c ++ cn.np ! c }; @@ -42,6 +42,8 @@ lin UsePron p = p ; + DetNP det = emptyNP ** {s = det.s ! NoHum ! Masc} ; ---- + PredetNP pred np = np ** { s = \\c => case pred.isDecl of { True => pred.s!c ++ np.s ! Gen ; -- akvaru l-awlAdi @@ -64,26 +66,15 @@ lin AdvNP np adv = np ** { s = \\c => np.s ! c ++ adv.s }; -{- - DetSg quant ord = { - s = \\h,g,c => - quant.s ! Sg ! h ! g ! c ++ ord.s ! g ! quant.d ! c ; - n = One; - d = quant.d; - isPron = quant.isPron; - isNum = - case ord.n of { - None => False; - _ => True - } - } ; --} DetQuantOrd quant num ord = quant ** { - s = \\h,g,c => quant.s ! Pl ! h ! g ! c - ++ num.s ! g ! (toDef quant.d num.n) ! c + s = \\h,g,c => let d = toDef quant.d num.n in + quant.s ! Pl ! h ! g ! c + ++ num.s ! g ! d ! c --FIXME check this: - ++ ord.s ! g ! (toDef quant.d num.n) ! c ; + ++ ord.s ! g + ! case d of {Poss => Def ; _ => d} + ! c ; n = num.n; isNum = orB num.isNum ord.isNum ; -- ord may come from OrdDigits or OrdNumeral @@ -172,8 +163,6 @@ lin a = {pgn = Per3 cn.g Sg ; isPron = False} ; empty = []} ; --- MassDet = {s = \\_,_,_,_ => [] ; d = Indef; --- isNum = False; isPron = False} ; UseN, UseN2 = useN ; From 9d59e59387f637ff192ed07955bd60a69c4e321a Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 16 Nov 2018 15:02:59 +0100 Subject: [PATCH 127/172] (Ara) Add inherent state field in IDet --- src/arabic/QuestionAra.gf | 5 +++-- src/arabic/ResAra.gf | 6 ++++-- src/arabic/StructuralAra.gf | 6 +++++- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/arabic/QuestionAra.gf b/src/arabic/QuestionAra.gf index 2a4c69ad3..ee7edacad 100644 --- a/src/arabic/QuestionAra.gf +++ b/src/arabic/QuestionAra.gf @@ -71,7 +71,7 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA IdetCN idet cn = { s = \\isPred,g,s,c => idet.s ! cn.g ! s ! c ++ - cn2str cn idet.n Indef Gen ; --idaafa + cn2str cn idet.n idet.d Gen ; a = { pgn = agrP3 NoHum cn.g idet.n ; isPron = False } } ; @@ -80,6 +80,7 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA s = \\g,s,c => let gend = detGender g num.n -- gender flips with some numbers in iquant.s ! s ! c ++ num.s ! gend ! s ! c ; - n = sizeToNumber num.n + n = sizeToNumber num.n ; + d = Indef ---- TODO check } ; } diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index e503607cc..9b80898dd 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1368,8 +1368,10 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> IDet : Type = { s : Gender -- IdetCN needs to choose the gender of the CN - => State => Case => Str ; - n : Number + => State -- Needs to be retained variable for IP; PrepIP chooses the state of IP + => Case => Str ; + n : Number ; + d : State -- in IdetCN, chooses the state of the CN } ; IQuant : Type = { diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index 93349fbb5..bc7d40c2a 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -40,7 +40,11 @@ concrete StructuralAra of Structural = CatAra ** -- here7to_Adv = ss ["تْ هري"] ; -- here7from_Adv = ss ["فرْم هري"] ; how_IAdv = ss "كَيفَ" ; --- how8many_IDet = mkDet "كَمْ" Pl Const ; -- IL: check (was ["هْو مَني"]) ; + how8many_IDet = { + s = \\g,s,c => "كَمْ عَدَد" + caseTbl ! c ; + n = Pl ; d = Def + } ; -- IL + -- if_Subj = ss "ِف" ; in8front_Prep = mkPrep "مُقَابِلَ" ; i_Pron = ResAra.i_Pron ; From a2907a91a5bb6e8a73b39b37fdaaf5cc8e26e861 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 16 Nov 2018 15:03:19 +0100 Subject: [PATCH 128/172] (Ara) Add a paradigm for relative adjectives --- src/arabic/ParadigmsAra.gf | 21 +++++++++++++++------ src/arabic/ResAra.gf | 17 ++++++++++++++--- 2 files changed, 29 insertions(+), 9 deletions(-) diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index 0900043ce..4209267b7 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -76,7 +76,7 @@ resource ParadigmsAra = open --- = sdfN ; } ; - dualN : N -> N ; + dualN : N -> N ; -- Force the plural of the N into dual (e.g. "twins") --This is used for loan words or anything that has untreated irregularities --in the interdigitization process of its words @@ -130,16 +130,15 @@ resource ParadigmsAra = open -- Overloaded operator for main cases mkA = overload { - mkA : (root,patt : Str) -> A + mkA : (root,sg : Str) -> A -- adjective with sound plural; takes root string and sg. pattern string = \r,p -> lin A (sndA r p); - mkA : (root : Str) -> A -- forms adjectives with positive form aFCal + mkA : (root : Str) -> A -- adjective with positive form aFCal = \r -> lin A (clrA r); - mkA : (root,sg,pl : Str) -> A + mkA : (root,sg,pl : Str) -> A -- adjective with broken plural = \r,s,p -> lin A (brkA r s p) ; - -- mkA : (posit,compar,plur : Str) -> A - -- = degrA ; } ; + degrA : (posit,compar,plur : Str) -> A ; --Takes a root string and a pattern string sndA : (root,patt : Str) -> Adj ; @@ -147,6 +146,8 @@ resource ParadigmsAra = open --Takes a root string only clrA : (root : Str) -> Adj ; -- forms adjectives of type aFCal + nisbaA : Str -> Adj ; -- forms relative adjectives by adding the suffix ِيّ + --3 Two-place adjectives -- -- Two-place adjectives need a preposition for their second argument. @@ -637,6 +638,14 @@ resource ParadigmsAra = open } }; + nisbaA : Str -> Adj = \Haal -> + let Haaliyy = Haal + "ِيّ" in { + s = table { + APosit g n d c => positAdj Haaliyy ! g ! n ! d ! c ; + AComp d c => "أَكْثَر" ++ indeclN Haaliyy ! d ! c + } + } ; + clrA root = let { eaHmar = mkWord "أَفعَل" root; HamrA' = mkWord "فَعلاء" root; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 9b80898dd..3c3afade3 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -966,9 +966,10 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> -- determine the declension and gives the corresponding inf table sing : Str -> State => Case => Str = \word -> \\s,c => defArt s (case word of { - lemma + "ِي" => fixShd lemma (dec2sg ! s ! c) ; - _ + ("ا"|"ى") => fixShd word (dec3sg ! s ! c) ; - lemma + "ة" => case s of { + lemma + "ِيّ" => fixShd word (decNisba ! s ! c) ; + lemma + "ِي" => fixShd lemma (dec2sg ! s ! c) ; + _ + ("ا"|"ى") => fixShd word (dec3sg ! s ! c) ; + lemma + "ة" => case s of { Poss => lemma + "ت" + dec1sg ! s ! c ; _ => word + dec1sg ! s ! c } ; @@ -1046,6 +1047,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> _ => "ِي" }; + --declension 3 (ending in alif) dec3sg : State => Case => Str = \\s,c => case of { @@ -1054,6 +1056,15 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> _ => [] }; + --declension 2 (ends in yaa') + decNisba : State => Case => Str = \\s,c => + case of { + <_, Bare> => [] ; + => "اً" ; + => "ٍ" ; + <_, Acc> => "َ" ; + _ => [] + }; --dual suffixes dl : State => Case => Str = From c4f207a541765b9d1625845d095171f2f24ae352 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 16 Nov 2018 16:05:55 +0100 Subject: [PATCH 129/172] (Ara) Fix existential constructions --- src/arabic/IdiomAra.gf | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/src/arabic/IdiomAra.gf b/src/arabic/IdiomAra.gf index 33c6b7ff5..269d2799b 100644 --- a/src/arabic/IdiomAra.gf +++ b/src/arabic/IdiomAra.gf @@ -1,6 +1,7 @@ -concrete IdiomAra of Idiom = CatAra ** open +concrete IdiomAra of Idiom = CatAra ** open Prelude, ResAra, + VerbAra, ParadigmsAra in { @@ -8,34 +9,32 @@ concrete IdiomAra of Idiom = CatAra ** open lin -- : VP -> Cl ; -- it is hot - ImpersCl vp = + ImpersCl vp = let it : ResAra.NP = pron2np (pgn2pron vp.obj.a.pgn) ; -- if no obj, Per3 Masc Sg chosen by default in predVP it vp ; -- : VP -> Cl ; -- one sleeps - GenericCl = predVP (regNP "المَرْء" Sg) ; + GenericCl = predVP (regNP "المَرْء" Sg) ; -- : NP -> RS -> Cl ; -- it is I who did it - --CleftNP np rs = - - -- TODO: check page 61 for existentials and clefts /IL + --CleftNP np rs = -- : Adv -> S -> Cl ; -- it is here she slept - CleftAdv adv s = - let comp : Comp = {s = \\_,_ => adv.s ++ s.s} in ---- - predVP he_Pron (kaan comp) ; + CleftAdv adv s = + let comp : Comp = CompAdv adv in + predVP he_Pron (UseComp comp) ; -- : NP -> Cl ; -- there is a house ExistNP np = - predVP emptyNP (insertObj np (predV copula ** {c2=noPrep})) ; -- dummy /IL + predVP (emptyNP ** {s=\\c=>"هُنَاكَ"}) (UseComp (CompNP np)) ; -- IL -- ExistIP : IP -> QCl ; -- which houses are there -- 7/12/2012 generalizations of these -- : NP -> Adv -> Cl ; -- there is a house in Paris - ExistNPAdv np adv = - predVP emptyNP (insertStr adv.s (insertObj np (predV copula ** {c2=noPrep}))) ; + ExistNPAdv np adv = + predVP (emptyNP ** {s=\\c=>"هُنَاكَ"}) (AdvVP (UseComp (CompNP np)) adv) ; -- IL -- ExistIPAdv : IP -> Adv -> QCl ; -- which houses are there in Paris @@ -48,18 +47,16 @@ concrete IdiomAra of Idiom = CatAra ** open -- 3/12/2013 non-reflexive uses of "self" -- : VP -> VP ; -- is at home himself; is himself at home - SelfAdvVP, + SelfAdvVP, SelfAdVVP = \vp -> vp ** { s = \\pgn,vf => let pron : ResAra.NP = pgn2pron pgn in - vp.s ! pgn ! vf ++ refl ! Nom ++ pron.s ! Gen + vp.s ! pgn ! vf ++ refl ! Nom ++ pron.s ! Gen } ; -- : NP -> NP ; -- the president himself (is at home) SelfNP np = np ** { - s = let pron : ResAra.NP = np2pron np ; - in \\c => np.s ! c ++ refl ! c ++ pron.s ! Gen + s = let pron : ResAra.NP = np2pron np ; + in \\c => np.s ! c ++ refl ! c ++ pron.s ! Gen } ; - } - From 5a6fe1e336f183213cde73da854c7edaa10c9205 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 16 Nov 2018 17:21:29 +0100 Subject: [PATCH 130/172] (Ara) Add subordinate clauses --- src/arabic/CatAra.gf | 2 +- src/arabic/ConjunctionAra.gf | 16 +++++++++------- src/arabic/PhraseAra.gf | 2 +- src/arabic/ResAra.gf | 19 ++++++++++--------- src/arabic/SentenceAra.gf | 8 ++++---- src/arabic/StructuralAra.gf | 3 ++- src/arabic/SymbolAra.gf | 2 +- src/arabic/VerbAra.gf | 3 ++- 8 files changed, 30 insertions(+), 25 deletions(-) diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index 2fda445fb..95a53b920 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -11,7 +11,7 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { -- Tensed/Untensed SSlash, - S = {s : Str} ; + S = {s : Order => Str} ; -- subordinate clause has nominal word order and subject in acc QS = {s : QForm => Str} ; RS = {s : Agr => Case => Str} ; -- case because the relative pronoun inflects in case diff --git a/src/arabic/ConjunctionAra.gf b/src/arabic/ConjunctionAra.gf index c57f029de..0db6abd1f 100644 --- a/src/arabic/ConjunctionAra.gf +++ b/src/arabic/ConjunctionAra.gf @@ -3,20 +3,22 @@ concrete ConjunctionAra of Conjunction = lincat - [S], + [S] = {s1,s2 : Order => Str} ; [Adv] = {s1,s2 : Str} ; [NP] = {s1,s2 : Case => Str ; a : Agr ; empty : Str} ; [AP] = {s1,s2 : Species => Gender => Number => State => Case => Str} ; lin - BaseS, + BaseAdv = twoSS ; - ConsS, ConsAdv = consrSS comma ; - ConjS, ConjAdv = conjunctSS ; + BaseS = twoTable Order ; + ConsS = consrTable Order comma ; + ConjS = conjunctTable Order ; + BaseNP x y = twoTable Case x y ** { a = conjAgr x.a y.a ; empty = [] @@ -31,9 +33,9 @@ lin empty = [] } ; - BaseAP x y = twoTable5 Species Gender Number State Case x y ; - ConsAP xs x = consrTable5 Species Gender Number State Case comma xs x ; - ConjAP conj ss = conjunctTable5 Species Gender Number State Case conj ss ; + BaseAP = twoTable5 Species Gender Number State Case ; + ConsAP = consrTable5 Species Gender Number State Case comma ; + ConjAP = conjunctTable5 Species Gender Number State Case ; oper diff --git a/src/arabic/PhraseAra.gf b/src/arabic/PhraseAra.gf index 9bc36fa60..40482e3a3 100644 --- a/src/arabic/PhraseAra.gf +++ b/src/arabic/PhraseAra.gf @@ -19,7 +19,7 @@ concrete PhraseAra of Phrase = CatAra ** open UttCN cn = {s = ResAra.uttCN cn } ; --IL UttNP np = {s = \\_ => np.s ! Nom} ; UttVP vp = {s = uttVP vp} ; --IL - UttS, + UttS s = {s = \\_ => s.s ! Verbal} ; UttAdv, UttIAdv = \s -> {s = \\_ => s.s} ; ---- OK? AR -- diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 3c3afade3..870d84027 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -27,7 +27,8 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { Mood = Ind | Cnj | Jus ; Voice = Act | Pas ; Order = Verbal | Nominal - | VOS ; -- Relative clauses with resumptive pronouns + | VOS -- Relative clauses with resumptive pronouns + | Subord ; -- Nominal word order but subject in accusative oper @@ -1293,7 +1294,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> proDrop : NP -> NP = \np -> case np.a.isPron of { - True => np ** {s = \\_ => []}; + True => np ** {s = table {Nom => [] ; x => np.s ! x}}; _ => np } ; @@ -1474,10 +1475,11 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> => vp.pred.s ! gn ! Nom; --xabar marfooc _ => vp.pred.s ! gn ! Acc --xabar kaana wa laysa manSoob }; - subj = np.empty - ++ case of { - => [] ; -- prodrop if it's not predicative - _ => vp.sc.s ++ np.s ! vp.sc.c + sc : Preposition = case o of {Subord => {s=[]; c=Acc} ; Dir => vp.sc} ; + subj = np.empty ++ sc.s + ++ case vp.isPred of { + False => (proDrop np).s ! sc.c ; -- prodrop if it's not predicative + True => np.s ! sc.c } ; } in @@ -1486,9 +1488,8 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> True => vp.obj.s ++ subj ; -- obj. clitic attaches directly to the verb False => subj ++ vp.obj.s } ++ vp.s2 ++ pred t p ; - Nominal => subj ++ vStr t p ++ vp.obj.s ++ vp.s2 ++ pred t p ; - VOS => vStr t p ++ vp.obj.s ++ vp.s2 ++ pred t p ++ subj - + VOS => vStr t p ++ vp.obj.s ++ vp.s2 ++ pred t p ++ subj ; + Nominal|Subord => subj ++ vStr t p ++ vp.obj.s ++ vp.s2 ++ pred t p } } ; diff --git a/src/arabic/SentenceAra.gf b/src/arabic/SentenceAra.gf index 408b34681..34267a0f5 100644 --- a/src/arabic/SentenceAra.gf +++ b/src/arabic/SentenceAra.gf @@ -66,11 +66,11 @@ concrete SentenceAra of Sentence = CatAra ** open -- UseCl t p cl = - {s = t.s ++ p.s ++ + {s = \\o => t.s ++ p.s ++ case of { --- IL guessed tenses - => cl.s ! Pres ! p.p ! Nominal ; - => cl.s ! Past ! p.p ! Nominal ; - => cl.s ! x ! p.p ! Nominal + => cl.s ! Pres ! p.p ! o ; + => cl.s ! Past ! p.p ! o ; + => cl.s ! x ! p.p ! o } }; diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index bc7d40c2a..030e8b45e 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -44,7 +44,7 @@ concrete StructuralAra of Structural = CatAra ** s = \\g,s,c => "كَمْ عَدَد" + caseTbl ! c ; n = Pl ; d = Def } ; -- IL - + -- if_Subj = ss "ِف" ; in8front_Prep = mkPrep "مُقَابِلَ" ; i_Pron = ResAra.i_Pron ; @@ -78,6 +78,7 @@ concrete StructuralAra of Structural = CatAra ** something_NP = regNP "شَيْء" Sg ; -- somewhere_Adv = ss "سْموهري" ; that_Quant = mkQuant3 "ذَلِكَ" "تِلكَ" "أُلٱِكَ" Def; + that_Subj = ss "أنَّ" ; ----b that_NP = indeclNP "ذَلِكَ" Sg ; there_Adv = ss "هُناك" ; -- there7to_Adv = ss "تهري" ; diff --git a/src/arabic/SymbolAra.gf b/src/arabic/SymbolAra.gf index fd1a95cd3..10e2b7bb5 100644 --- a/src/arabic/SymbolAra.gf +++ b/src/arabic/SymbolAra.gf @@ -25,7 +25,7 @@ lin empty = [] } ; - SymbS sy = sy ; + SymbS sy = {s = \\_ => sy.s} ; SymbOrd n = {s = \\_,_,_ => n.s ; n = One ; isNum = False } ; diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index 8e82368dc..e07ff7913 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -28,7 +28,8 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra, ParamX in { -- : VS -> S -> VP ; -- say that she runs ComplVS vs s = predV vs ** { -- IL - obj = emptyObj ** s } ; + obj = emptyObj ** {s = s.s ! Subord} + } ; -- : VQ -> QS -> VP ; -- wonder who runs ComplVQ vq qs = predV vq ** { -- IL From efebc082fa3f1797e343d9386ea55beccbcb413b Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 19 Nov 2018 12:05:50 +0100 Subject: [PATCH 131/172] (Ara) Add SubjS --- src/arabic/AdverbAra.gf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/arabic/AdverbAra.gf b/src/arabic/AdverbAra.gf index d6f8eb9f3..df61ffc59 100644 --- a/src/arabic/AdverbAra.gf +++ b/src/arabic/AdverbAra.gf @@ -14,7 +14,8 @@ concrete AdverbAra of Adverb = CatAra ** open ResAra, Prelude in { -- AdAdv = cc2 ; -- --- SubjS = cc2 ; + -- : Subj -> S -> Adv ; -- when she sleeps + SubjS subj s = {s = subj.s ++ s.s ! Subord} ; -- AdvSC s = s ; --- this rule give stack overflow in ordinary parsing -- -- AdnCAdv cadv = {s = cadv.s ++ "تهَن"} ; From 7a4f43aea21e14df03ef21fea8f0d37bb15c20e1 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 19 Nov 2018 12:06:13 +0100 Subject: [PATCH 132/172] (Ara) Add want_VV --- src/arabic/StructuralAra.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index 030e8b45e..927ea1b73 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -94,7 +94,7 @@ concrete StructuralAra of Structural = CatAra ** to_Prep = mkPrep "إِلى" ; under_Prep = mkPrep "تَحْتَ" ; -- very_AdA = ss "ثري" ; --- want_VV = P.mkVV (P.regV "وَنت") ; + want_VV = mkVV (mkV "رود" FormIV) ; we_Pron = ResAra.we_Pron ; whatPl_IP = mkIP "ما" "ماذا" Pl ; whatSg_IP = mkIP "ما" "ماذا" Sg ; From 7b51bb66388e4c2f7085d7cee38b6460578d171e Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 19 Nov 2018 12:07:29 +0100 Subject: [PATCH 133/172] (Ara) Added support for preposition contraction: added a "Dat" case --- src/arabic/LexiconAra.gf | 4 ++-- src/arabic/MorphoAra.gf | 2 +- src/arabic/ResAra.gf | 46 ++++++++++++++++++++----------------- src/arabic/StructuralAra.gf | 4 ++-- 4 files changed, 30 insertions(+), 26 deletions(-) diff --git a/src/arabic/LexiconAra.gf b/src/arabic/LexiconAra.gf index 6be7abdfa..3b8ad2fd0 100644 --- a/src/arabic/LexiconAra.gf +++ b/src/arabic/LexiconAra.gf @@ -73,7 +73,7 @@ flags door_N = brkN "بوب" "فاع" "أَفعَال" Masc NoHum ; drink_V2 = dirV2 (regV "شَرِب") ; -- drink_V2 = dirV2 (v1 "شرب" i a) ; - easy_A2V = mkA2 (sndA "سهل" "فَعل") "لِ" ; + easy_A2V = mkA2 (sndA "سهل" "فَعل") datPrep ; eat_V2 = dirV2 (mkV "ءكل" FormI) ; empty_A = sndA "فرغ" "فاعِل" ; enemy_N = brkN "عدو" "فَعُلّ" "أَفعَاء" Masc Hum ; @@ -203,7 +203,7 @@ flags switch8off_V2 = dirV2 (v4 "طفء") ; switch8on_V2 = dirV2 (v4 "شعل") ; table_N = sdfN "طول" "فاعِلة" Fem NoHum ; - talk_V3 = mkV3 (v5 "حدث") "لِ" "عَن" ; + talk_V3 = mkV3 (v5 "حدث") datPrep (mkPrep "عَن") ; teacher_N = sdmN "علم" "مُفَعِّل" Masc Hum ; --mucal~imö teach_V2 = dirV2 (v2 "علم") ; television_N = mkN (sndf "تِلِفِزيُون") Masc NoHum ; diff --git a/src/arabic/MorphoAra.gf b/src/arabic/MorphoAra.gf index b55549b83..5d0a06572 100644 --- a/src/arabic/MorphoAra.gf +++ b/src/arabic/MorphoAra.gf @@ -34,7 +34,7 @@ flags optimize = all ;--noexpand; case g of { Masc => waHid; Fem => waHida - } in defArt state waHid + word + dec1sg ! state ! c; + } in defArt state c waHid + word + dec1sg ! state ! c; n = num; d = state; isPron = False; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 870d84027..e97354b80 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -18,7 +18,8 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { Number = Sg | Dl | Pl; Gender = Masc | Fem ; Case = Nom | Acc | Gen - | Bare ; -- 1st person poss. suff. overrides case + | Bare -- 1st person poss. suff. overrides case + | Dat ; -- Hack to make the preposition لِ contract Species = NoHum | Hum ; State = Def | Indef | Const | Poss ; -- ة turns into ت @@ -126,6 +127,7 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { } ; noPrep : Preposition = mkPreposition [] Nom ; + datPrep : Preposition = mkPreposition ("لِ" ++ BIND) Dat ; Adj : Type = {s : AForm => Str} ; Adj2 : Type = Adj ** {c2 : Preposition} ; @@ -901,7 +903,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> Bare => [] ; Nom => "ُ"; Acc => "َ"; - Gen => "ِ" + _Gen => "ِ" -- dat is the same as gen, except in definite before لِ }; --takes the adjective lemma and gives the Posit table @@ -931,7 +933,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> -- indeclinable nominal word (mamnuu3 mina S-Sarf) indeclN : Str -> State => Case => Str = - \aHmar -> \\s,c => defArt s aHmar + indecl!c; + \aHmar -> \\s,c => defArt s c aHmar + indecl!c; -- takes 2 words, singular and broken plural, and gives the -- complete noun inflection table @@ -966,7 +968,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> -- takes a singular or broken plural word and tests the ending to -- determine the declension and gives the corresponding inf table sing : Str -> State => Case => Str = \word -> - \\s,c => defArt s (case word of { + \\s,c => defArt s c (case word of { lemma + "ِيّ" => fixShd word (decNisba ! s ! c) ; lemma + "ِي" => fixShd lemma (dec2sg ! s ! c) ; _ + ("ا"|"ى") => fixShd word (dec3sg ! s ! c) ; @@ -981,7 +983,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> -- takes a singular word and tests the ending to -- determine the declension and gives the corresponding dual inf table dual : Str -> State => Case => Str = \caSaA -> - \\s,c => defArt s (case caSaA of { + \\s,c => defArt s c (case caSaA of { lemma + ("ا"|"ى") => lemma + "ي" + dl ! s ! c ; lemma + "ة" => lemma + "ت" + dl ! s ! c ; _ => fixShd caSaA (dl ! s ! c) @@ -991,13 +993,13 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> --plural feminine table plurF : Str -> State => Case => Str = \kalima -> - \\s,c => defArt s (mkAt kalima) + f_pl ! s ! c ; + \\s,c => defArt s c (mkAt kalima) + f_pl ! s ! c ; -- takes a singular word and gives the corresponding sound --plural masculine table. FIXME: consider declension 3 plurM : Str -> State => Case => Str = \mucallim -> - \\s,c => defArt s mucallim + m_pl ! s ! c ; + \\s,c => defArt s c mucallim + m_pl ! s ! c ; -- to add the Al prefix for Definite words Al : State => Str = @@ -1006,13 +1008,14 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> _ => "" }; - defArt : State -> Str -> Str = \st,stem -> -- IL -- to be checked + defArt : State -> Case -> Str -> Str = \st,c,stem -> -- IL -- to be checked let al = "ال" in - case st of { - Def => + case of { + => "ل" + stem ; -- only happens before the preposition لِ + => case stem of { - s@#sun + x => fixShd (al + s) ("ّ" + x) ; - x => al + x } ; + s@#sun + x => fixShd (al + s) ("ّ" + x) ; + x => al + x } ; _ => stem }; @@ -1024,7 +1027,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> Bare => []; Nom => "ٌ"; Acc => "ً"; - Gen => "ٍ" + _Gen => "ٍ" }; _ => caseTbl --think of ?axU, ?axA, (the five nouns) @@ -1033,8 +1036,8 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> --indeclinables (mamnuu3 mina S-Sarf) indecl : Case => Str = table { - Gen => "َ" ; - x => caseTbl ! x + (Gen|Dat) => "َ" ; + x => caseTbl ! x }; @@ -1284,9 +1287,10 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> mkPron : (_,_,_ : Str) -> PerGenNum -> NP = \ana,nI,I,pgn -> { s = table { + Nom => ana; Acc => BIND ++ nI; -- object suffix - Gen => BIND ++ I; -- possessive suffix - _ => ana + Gen => BIND ++ I; -- possessive suffix + Dat => I -- will only be used with preposition لِ, which already has a BIND }; a = {pgn = pgn; isPron = True }; empty = [] @@ -1612,16 +1616,16 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> NCard => table { Masc => \\s,c => (sing wAhid) ! s ! c ; --all fem are first declension: - Fem => \\s,c => defArt s wAhida + dec1sg ! s ! c + Fem => \\s,c => defArt s c wAhida + dec1sg ! s ! c }; NOrd => table { - Masc => \\s,c => defArt s awwal + dec1sg ! s ! c; + Masc => \\s,c => defArt s c awwal + dec1sg ! s ! c; Fem => \\s,c => (sing Ula) ! s ! c } }; ten => table { - NCard => \\_,s,c => defArt s wAhid + m_pl ! Indef ! c; - NOrd => \\_,s,c => defArt s awwal + m_pl ! Indef ! c + NCard => \\_,s,c => defArt s c wAhid + m_pl ! Indef ! c; + NOrd => \\_,s,c => defArt s c awwal + m_pl ! Indef ! c } } }; diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index 927ea1b73..1015dae3c 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -108,8 +108,8 @@ concrete StructuralAra of Structural = CatAra ** => "أيُّ" ; => "أيّاً" ; => "أيَّ" ; - => "أيٍّ" ; - => "أيِّ" + <_Gen,Indef> => "أيٍّ" ; + <_Gen,_> => "أيِّ" } } ; whoSg_IP = mkIP "مَنْ" "مَنْ" Sg ; From fe4bec4e58aa81e9d5b0b5a746342bdb9352802b Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 19 Nov 2018 15:23:37 +0100 Subject: [PATCH 134/172] (Ara) Improve documentation for verb constructors + add reflV --- src/arabic/IdiomAra.gf | 6 ++--- src/arabic/ParadigmsAra.gf | 53 ++++++++++++++------------------------ src/arabic/ResAra.gf | 12 ++++++++- 3 files changed, 32 insertions(+), 39 deletions(-) diff --git a/src/arabic/IdiomAra.gf b/src/arabic/IdiomAra.gf index 269d2799b..c46bbadd4 100644 --- a/src/arabic/IdiomAra.gf +++ b/src/arabic/IdiomAra.gf @@ -49,14 +49,12 @@ concrete IdiomAra of Idiom = CatAra ** open -- : VP -> VP ; -- is at home himself; is himself at home SelfAdvVP, SelfAdVVP = \vp -> vp ** { - s = \\pgn,vf => let pron : ResAra.NP = pgn2pron pgn in - vp.s ! pgn ! vf ++ refl ! Nom ++ pron.s ! Gen + s = \\pgn,vf => vp.s ! pgn ! vf ++ reflPron Nom pgn } ; -- : NP -> NP ; -- the president himself (is at home) SelfNP np = np ** { - s = let pron : ResAra.NP = np2pron np ; - in \\c => np.s ! c ++ refl ! c ++ pron.s ! Gen + s = \\c => np.s ! c ++ reflPron c (np.a.pgn) } ; } diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index 4209267b7..d3edb2b36 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -185,51 +185,33 @@ resource ParadigmsAra = open -- Overloaded operations mkV : overload { - mkV : (imperfect : Str) -> V ; + mkV : (imperfect : Str) -> V ; -- The verb in Per3 Sg Masc imperfect tense gives the most information mkV : (root : Str) -> (perf,impf : Vowel) -> V ; -- verb form I ; vowel = a|i|u mkV : (root : Str) -> VerbForm -> V ; -- FormI .. FormX (no VII, IX) ; default vowels a u for I mkV : V -> (particle : Str) -> V -- V with a non-inflecting particle/phrasal verb } ; --- The verb in the imperfect tense gives the most information + -- regV : Str -> V ; - regV : Str -> V ; + reflV : V -> V ; -- نَفْس in the proper case and with possessive suffix, e.g. نَفْسَكِ ---Verb Form I : fa`ala, fa`ila, fa`ula + v1 : Str -> Vowel -> Vowel -> V ; --Verb Form I : fa`ala, fa`ila, fa`ula - v1 : Str -> Vowel -> Vowel -> V ; + v2 : Str -> V ; --Verb Form II : fa``ala ---Verb Form II : fa``ala + v3 : Str -> V ; --Verb Form III : faa`ala - v2 : Str -> V ; + v4 : Str -> V ; --Verb Form IV : 'af`ala ---Verb Form III : faa`ala + v5 : Str -> V ; --Verb Form V : tafa``ala - v3 : Str -> V ; + v6 : Str -> V ; --Verb Form VI : tafaa`ala ---Verb Form IV : 'af`ala + v7 : Str -> V ; --Verb Form VII : infa`ala - v4 : Str -> V ; + v8 : Str -> V ; --Verb Form VIII ifta`ala ---Verb Form V : tafa``ala - - v5 : Str -> V ; - ---Verb Form VI : tafaa`ala - - v6 : Str -> V ; - ---Verb Form VII : tafaa`ala - - v7 : Str -> V ; - ---Verb Form VIII infa`ala - - v8 : Str -> V ; - --- Verb Form X 'istaf`ala - - v10 : Str -> V ; + v10 : Str -> V ; -- Verb Form X 'istaf`ala --3 Two-place verbs @@ -359,10 +341,11 @@ resource ParadigmsAra = open mkN : N -> (attr : Str) -> N -- Compound nouns = \n,attr -> n ** {s2 = \\n,s,c => attr} ; mkN : N -> N -> N -- Compound nouns - = \n1,n2 -> n1 ** {s2 = - \\n,s,c => n1.s2 ! n ! s ! c - ++ n2.s ! n ! s ! c - ++ n2.s2 ! n ! s ! c} ; + = \n1,n2 -> n1 ** { + s = \\n,_,c => n1.s ! n ! Const ! c ; + s2 = \\n,s,c => n1.s2 ! n ! s ! c + ++ n2.s ! n ! s ! c + ++ n2.s2 ! n ! s ! c} ; } ; dualN : N -> N = \n -> n ** {isDual=True} ; @@ -497,6 +480,8 @@ resource ParadigmsAra = open _ => v10sound } } in lin V (v10fun rbT) ; + reflV v = lin V (ResAra.reflV v) ; + mkFullN nsc gen spec = lin N { s = nsc; --NTable s2 = emptyNTable; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index e97354b80..b644807d1 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1354,8 +1354,18 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> a = np.a ** {isPron=False} -- hack, sometimes we *don't* want prodrop } ; - refl : Case => Str = \\c => "نَفْس" + caseTbl ! c ; + reflPron : Case -> PerGenNum -> Str = \c,pgn -> + let pron : NP = pgn2pron pgn + in "نَفْس" + caseTbl ! c ++ pron.s ! Gen ; + reflV : Verb -> Verb = \v -> v ** { + s = \\vf => case vf of { + VPerf _ pgn => v.s ! vf ++ reflPron Acc pgn ; + VImpf _ _ pgn => v.s ! vf ++ reflPron Acc pgn ; + VImp g n => v.s ! vf ++ reflPron Acc (Per2 g n) ; + VPPart => v.s ! vf ++ reflPron Acc (Per3 Masc Sg) ---- + } + } ; ----------------------------------------------------------------------------- -- IP, questions From 7b520280d7ac1e3c3e62112d568ab0ebd1b09ee6 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 19 Nov 2018 15:23:54 +0100 Subject: [PATCH 135/172] (Ara) adverbs --- src/arabic/AdverbAra.gf | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/src/arabic/AdverbAra.gf b/src/arabic/AdverbAra.gf index df61ffc59..d10d2ac44 100644 --- a/src/arabic/AdverbAra.gf +++ b/src/arabic/AdverbAra.gf @@ -2,22 +2,24 @@ concrete AdverbAra of Adverb = CatAra ** open ResAra, Prelude in { flags coding=utf8; lin + PositAdvAdj a = {s = a.s ! APosit Masc Sg Indef Acc} ; --- ComparAdvAdj cadv a np = { --- s = cadv.s ++ a.s ! AAdv ++ "مِنْ" ++ np.s ! Gen --- } ; --- ComparAdvAdjS cadv a s = { --- s = cadv.s ++ a.s ! AAdv ++ "تهَن" ++ s.s --- } ; + -- ComparAdvAdj cadv a np = { + -- s = cadv.s ++ a.s ! AAdv ++ "مِنْ" ++ np.s ! Gen + -- } ; + -- ComparAdvAdjS cadv a s = { + -- s = cadv.s ++ a.s ! AAdv ++ "مِنْ" ++ s.s + -- } ; PrepNP prep np = {s = prep.s ++ np.s ! prep.c} ; --- AdAdv = cc2 ; --- - -- : Subj -> S -> Adv ; -- when she sleeps - SubjS subj s = {s = subj.s ++ s.s ! Subord} ; + AdAdv ad av = cc2 av ad ; + + -- : Subj -> S -> Adv ; -- when she sleeps + SubjS subj s = {s = subj.s ++ s.s ! Subord} ; + -- AdvSC s = s ; --- this rule give stack overflow in ordinary parsing --- --- AdnCAdv cadv = {s = cadv.s ++ "تهَن"} ; --- + + AdnCAdv cadv = {s = cadv.s ++ "مِنْ"} ; + } From f1a88574b80c72d9b79ea72199105ae9aa7fff27 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 19 Nov 2018 15:41:11 +0100 Subject: [PATCH 136/172] (Ara) Fix orthographical rules for indefinite accusative --- src/arabic/ResAra.gf | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index b644807d1..dfdd97f5e 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -972,9 +972,10 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> lemma + "ِيّ" => fixShd word (decNisba ! s ! c) ; lemma + "ِي" => fixShd lemma (dec2sg ! s ! c) ; _ + ("ا"|"ى") => fixShd word (dec3sg ! s ! c) ; + lemma + ("ء"|"أ"|"ئ"|"ؤ") => word + dec1sgNoDoubleAlif ! s ! c ; lemma + "ة" => case s of { Poss => lemma + "ت" + dec1sg ! s ! c ; - _ => word + dec1sg ! s ! c + _ => word + dec1sgNoDoubleAlif ! s ! c } ; _ => fixShd word (dec1sg ! s ! c) }) ; @@ -1026,13 +1027,20 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> table { Bare => []; Nom => "ٌ"; - Acc => "ً"; + Acc => "اً"; _Gen => "ٍ" }; _ => caseTbl --think of ?axU, ?axA, (the five nouns) }; + -- if a word ends in ء or ة, don't add alif for indef acc. + dec1sgNoDoubleAlif : State => Case => Str = \\s,c => + case of { + => "ً" ; + _ => dec1sg ! s ! c + }; + --indeclinables (mamnuu3 mina S-Sarf) indecl : Case => Str = table { @@ -1287,7 +1295,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> mkPron : (_,_,_ : Str) -> PerGenNum -> NP = \ana,nI,I,pgn -> { s = table { - Nom => ana; + (Nom|Bare) => ana; Acc => BIND ++ nI; -- object suffix Gen => BIND ++ I; -- possessive suffix Dat => I -- will only be used with preposition لِ, which already has a BIND @@ -1481,7 +1489,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> <_, Past, Pos> => kataba ; <_, Past, Neg> => "لَمْ" ++ yaktub ; <_, Cond, _ > => yaktuba ; - <_, Fut, Pos> => "سَ" ++ yaktubu ; + <_, Fut, Pos> => glue "سَ" yaktubu ; <_, Fut, Neg> => "لَنْ" ++ yaktuba }; pred : ParamX.Tense -> Polarity -> Str = @@ -1626,7 +1634,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> NCard => table { Masc => \\s,c => (sing wAhid) ! s ! c ; --all fem are first declension: - Fem => \\s,c => defArt s c wAhida + dec1sg ! s ! c + Fem => \\s,c => defArt s c wAhida + dec1sgNoDoubleAlif ! s ! c }; NOrd => table { Masc => \\s,c => defArt s c awwal + dec1sg ! s ! c; From 9e5cbb35fdb73bed43ecd8b6eb51a9b24dd0b5dd Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 19 Nov 2018 17:00:06 +0100 Subject: [PATCH 137/172] (Ara) Add AdVVPSlash --- src/arabic/VerbAra.gf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index e07ff7913..83323dc6d 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -52,7 +52,8 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra, ParamX in { AdvVP vp adv = insertStr adv.s vp ; --- AdVVP adv vp = insertAdV adv.s vp ; + AdVVP adv = insertStr adv.s ; + AdVVPSlash adv vps = vps ** insertStr adv.s vps ; -- -- ReflV2 v = insertObj (\\a => v.c2 ++ reflPron ! a) (predV v) ; -- From 97c9152acbcaf1402f69e17b684b57780078eabc Mon Sep 17 00:00:00 2001 From: odanoburu Date: Mon, 19 Nov 2018 14:32:47 -0200 Subject: [PATCH 138/172] (travis) fix build script so that it can actually fail --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1e4a560bd..8f654852f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,8 @@ before_install: - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then alias gf='gf.exe' && alias runghc='runghc.exe' ; fi script: - - runghc Make.hs build prelude all --verbose ; rm -rf dist - - bash Make.sh --dest=dist-bash --verbose ; rm -rf dist + - runghc Make.hs build prelude all --verbose + - rm -rf dist + - bash Make.sh --dest=dist-bash --verbose + - rm -rf dist - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then cmd //c Make.bat --dest=dist-bat --verbose ; fi From 00f9a1be49b1232fa853b3b4d616c203cca06195 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 20 Nov 2018 09:34:30 +0100 Subject: [PATCH 139/172] (Ara) Fix formatting in documentation --- src/arabic/ParadigmsAra.gf | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index d3edb2b36..c029fba27 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -114,7 +114,7 @@ resource ParadigmsAra = open mkN2 : overload { mkN2 : N -> Preposition -> N2 ; -- ready-made preposition - mkN2 : (mother : N) -> (of_ : Str) -> N2 ; -- preposition given as a string + mkN2 : N -> Str -> N2 ; -- preposition given as a string mkN2 : N -> N2 ; -- no preposition mkN2 : Str -> N2 ; -- no preposition, predictable inflection } ; @@ -195,21 +195,21 @@ resource ParadigmsAra = open reflV : V -> V ; -- نَفْس in the proper case and with possessive suffix, e.g. نَفْسَكِ - v1 : Str -> Vowel -> Vowel -> V ; --Verb Form I : fa`ala, fa`ila, fa`ula + v1 : Str -> Vowel -> Vowel -> V ; -- Verb Form I : fa`ala, fa`ila, fa`ula - v2 : Str -> V ; --Verb Form II : fa``ala + v2 : Str -> V ; -- Verb Form II : fa``ala - v3 : Str -> V ; --Verb Form III : faa`ala + v3 : Str -> V ; -- Verb Form III : faa`ala - v4 : Str -> V ; --Verb Form IV : 'af`ala + v4 : Str -> V ; -- Verb Form IV : 'af`ala - v5 : Str -> V ; --Verb Form V : tafa``ala + v5 : Str -> V ; -- Verb Form V : tafa``ala - v6 : Str -> V ; --Verb Form VI : tafaa`ala + v6 : Str -> V ; -- Verb Form VI : tafaa`ala - v7 : Str -> V ; --Verb Form VII : infa`ala + v7 : Str -> V ; -- Verb Form VII : infa`ala - v8 : Str -> V ; --Verb Form VIII ifta`ala + v8 : Str -> V ; -- Verb Form VIII ifta`ala v10 : Str -> V ; -- Verb Form X 'istaf`ala From 47bcbe73f621b6d3e2146a4184fcf9fc6b544ce2 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 20 Nov 2018 14:09:15 +0100 Subject: [PATCH 140/172] (Ara) Add two new verb paradigms --- src/arabic/ParadigmsAra.gf | 8 ++++--- src/arabic/PatternsAra.gf | 12 +++++++++- src/arabic/ResAra.gf | 45 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+), 4 deletions(-) diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index c029fba27..d7868cb92 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -419,6 +419,7 @@ resource ParadigmsAra = open let root : Root3 = mkRoot3 rootStr ; verb : Verb = case rootStr of { ? + #hamza + #weak => v4doubleweak root ; + ? + #weak + ? => v4hollow root ; _ + #weak => v4defective root ; _ => v4sound root } ; in lin V verb ; @@ -475,9 +476,10 @@ resource ParadigmsAra = open \rootStr -> let { rbT = mkRoot3 rootStr ; - v10fun = case rbT.c of { - ("و"|"ي") => v10hollow ; - _ => v10sound } + v10fun : Root3 -> Verb = case rootStr of { + ? + #weak + ? => v10hollow ; + ? + ? + #weak => v10defective ; + _ => v10sound } } in lin V (v10fun rbT) ; reflV v = lin V (ResAra.reflV v) ; diff --git a/src/arabic/PatternsAra.gf b/src/arabic/PatternsAra.gf index 23175098b..8fa311af8 100644 --- a/src/arabic/PatternsAra.gf +++ b/src/arabic/PatternsAra.gf @@ -35,9 +35,13 @@ flags coding=utf8 ; fuci = { h = "" ; m1 = "ُ" ; m2 = ""; t = "ِ" } ; fucu = { h = "" ; m1 = "ُ" ; m2 = ""; t = "ُ" } ; fUc = { h = "" ; m1 = "ُو"; m2 = ""; t = "" } ; - ufAc = { h = "ُ" ; m1 = "َا"; m2 = ""; t = "" } ; ufca = { h = "ُ" ; m1 = "ْ" ; m2 = ""; t = "َ" } ; + eafAc = fAc ** { h = "أَ" } ; + eafac = fac ** { h = "أَ" } ; + eafIc = fIc ** { h = "أَ" } ; + eafic = fic ** { h = "أَ" } ; + eafAcil = { h = "أَ"; m1 = "َا" ; m2 = "ِ" ; t = "" } ; eafAcIl = { h = "أَ"; m1 = "َا" ; m2 = "ِي" ; t = "" } ; eafcilp = { h = "أَ"; m1 = "ْ" ; m2 = "ِ" ; t = "َة" } ; @@ -47,6 +51,12 @@ flags coding=utf8 ; eafcul = { h = "أَ"; m1 = "ْ" ; m2 = "ُ" ; t = "" } ; eiftacal = { h = "إِ"; m1 = "ْتَ" ; m2 = "َ" ; t = "" } ; eufcil = { h = "أُ"; m1 = "ْ" ; m2 = "ِ" ; t = "" } ; + eufic = fic ** { h = "أُ" } ; + eufIc = fIc ** { h = "أُ" } ; + ufic = fic ** { h = "ُ" } ; + ufIc = fIc ** { h = "ُ" } ; + ufac = fac ** { h = "ُ" } ; + ufAc = fAc ** { h = "ُ" } ; euftucil = { h = "أُ"; m1 = "ْتُ" ; m2 = "ِ" ; t = "" } ; euttucil = euftucil ** { h = "اُتُّ" ; m1 = "ِ" } ; ---- IL assimilated VIII afcul = { h = "َ" ; m1 = "ْ" ; m2 = "ُ" ; t = "" } ; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index dfdd97f5e..01f764c87 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -649,6 +649,28 @@ v4sound : Root3 -> Verb = } in verb eaqnac euqnic uqnic uqnac eaqnic muqnac; +v4hollow : Root3 -> Verb = + \rwd -> + let { + earad = mkHollow eafac rwd ; -- VPerf Act (Per3 Fem Pl) etc. + earAd = mkHollow eafAc rwd ; -- VPerf Act + eurid = mkHollow eufic rwd ; -- VPerf Pas (Per3 Fem Pl) etc. + eurId = mkHollow eufIc rwd ; -- VPerf Pas + + urid = mkHollow ufic rwd ; -- VImpf Act (Per2/Per3 Fem Pl) + urId = mkHollow ufIc rwd ; -- VImpf Act + urad = mkHollow ufac rwd ; -- VImpf Pas (Per2/Per3 Fem Pl) + urAd = mkHollow ufAc rwd ; -- VImpf Pas + + earid = mkHollow eafic rwd ; -- VImp (Sg Masc / Pl Fem) + earId = mkHollow eafIc rwd ; -- VImp (Pl Masc / Sg Fem) + + ppart = "م" + urAd ; + + } in verbHollow (toDefForms + earAd earad eurId eurid + urId urid urAd urad + earId earid ppart) ; v4DefForms : Root3 -> DefForms = \cTy -> let { @@ -808,6 +830,29 @@ v10hollow : Root3 -> Verb = ---- IL 10h -- to be checked istaxAf istaxaf ustuxIf ustuxif astaxIf astaxif ustaxAf ustaxaf istaxif istaxIf ppart) ; +v10defective : Root3 -> Verb = -- IL + \lqy -> + let { + _stalqa = "سْتَ" + mkDefective fca lqy ; + _stalqu = "سْتَ" + mkDefective fcu lqy ; + _stalqi = "سْتَ" + mkDefective fci lqy ; + _stulqi = "سْتُ" + mkDefective fci lqy ; + + istalqa = "اِ" + _stalqa ; -- VPerf Act (Per3 Masc Sg) + istalqay = "اِسْتَ" + mkStrong fcal lqy ; -- VPerf Act (Per3 Fem Pl) + ustulqi = "اُ" + _stulqi; -- VPerf Pas (Per3 _ _) + + astalqu = "َ" + _stalqu ; -- VImpf Act (Per2/3 Masc Pl) + astalqi = "َ" + _stalqi ; -- VImpf Act _ + ustalqa = "ُ" + _stalqa ; -- VImpf Pas _ + istalqi = "اِ" + _stalqi; -- VImp (Masc Sg / Fem _) + istalqu = "اِ" + _stalqu; -- VImp Masc Pl + mustalqin = "مُ" + _stalqi + "ت" ; + + } in verbDef (toDefForms + istalqa istalqay ustulqi ustulqi ustulqi + astalqi astalqu ustalqa istalqi istalqu mustalqin) i ; + patV1Perf : Vowel => Pattern = table { a => facal ; --katab From b174bba3a9ee5113488b6d51a06eac33bed3bf81 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 20 Nov 2018 14:10:49 +0100 Subject: [PATCH 141/172] (Ara) V2V and related functions --- src/arabic/CatAra.gf | 5 +++-- src/arabic/MissingAra.gf | 2 -- src/arabic/ParadigmsAra.gf | 4 ++-- src/arabic/ResAra.gf | 9 ++++++--- src/arabic/VerbAra.gf | 27 +++++++++++++++++++++++---- 5 files changed, 34 insertions(+), 13 deletions(-) diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index 95a53b920..1902bfac7 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -79,9 +79,10 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { V, VS, VQ, VA = ResAra.Verb ; -- = {s : VForm => Str} ; V2, V2A = ResAra.Verb2 ; - VV = ResAra.Verb2 ** {sc : Preposition} ; + VV = ResAra.Verb2 ** {sc : Preposition} ; -- c2 is for verb V2S, V2Q = ResAra.Verb2 ; - V2V, V3 = ResAra.Verb3 ; + V3 = ResAra.Verb3 ; + V2V = ResAra.Verb3 ** {sc : Preposition} ; -- c3 is for verb, c2 is for dir.obj A = ResAra.Adj ; A2 = ResAra.Adj2 ; diff --git a/src/arabic/MissingAra.gf b/src/arabic/MissingAra.gf index 9bfd3c3ec..d95c86912 100644 --- a/src/arabic/MissingAra.gf +++ b/src/arabic/MissingAra.gf @@ -36,8 +36,6 @@ oper Slash2V3 : V3 -> NP -> VPSlash = notYet "Slash2V3" ; oper SlashV2A : V2A -> AP -> VPSlash = notYet "SlashV2A" ; oper SlashV2Q : V2Q -> QS -> VPSlash = notYet "SlashV2Q" ; oper SlashV2S : V2S -> S -> VPSlash = notYet "SlashV2S" ; -oper SlashV2V : V2V -> VP -> VPSlash = notYet "SlashV2V" ; -oper SlashV2VNP : V2V -> NP -> VPSlash -> VPSlash = notYet "SlashV2VNP" ; oper SlashVS : NP -> VS -> SSlash -> ClSlash = notYet "SlashVS" ; oper SubjS : Subj -> S -> Adv = notYet "SubjS" ; oper VocNP : NP -> Voc = notYet "VocNP" ; diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index d7868cb92..5315286f2 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -688,9 +688,9 @@ resource ParadigmsAra = open mkV2S v p = lin V2S (prepV2 v (mkPreposition p)) ; mkV2V = overload { mkV2V : V -> Str -> Str -> V2V = \v,p,q -> - lin V2V (prepV3 v (mkPreposition p) (mkPreposition q)) ; + lin V2V (prepV3 v (mkPreposition p) (mkPreposition q) ** {sc = noPrep}) ; mkV2V : V -> Preposition -> Preposition -> V2V = \v,p,q -> - lin V2V (prepV3 v p q) ; + lin V2V (prepV3 v p q ** {sc = noPrep}) ; mkV2V : VV -> Preposition -> V2V = \vv,p -> lin V2V (vv ** {c2 = p ; c3 = vv.c2}) ; } ; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 01f764c87..b0512f9f0 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1583,7 +1583,10 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> emptyObj : Obj = emptyNP ** {s=[]} ; insertObj : NP -> VPSlash -> VP = \np,vp -> vp ** - { obj = {s = vp.obj.s ++ vp.c2.s ++ np.s ! vp.c2.c ; a = np.a} }; + { obj = {s = vp.obj.s -- old object, if there was one + ++ vp.c2.s ++ np.s ! vp.c2.c -- new object + ++ vp.agrObj ! np.a.pgn ; -- only used for SlashV2V + a = np.a} }; insertPred : Comp -> VP -> VP = \p,vp -> vp ** { pred = p; @@ -1601,11 +1604,11 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> ----------------------------------------------------------------------------- -- Slash categories - VPSlash : Type = VP ** {c2 : Preposition} ; + VPSlash : Type = VP ** {c2 : Preposition ; agrObj : PerGenNum => Str} ; ClSlash : Type = VPSlash ** {subj : NP} ; slashV2 : Verb2 -> VPSlash = \v -> - predV v ** {c2 = v.c2} ; + predV v ** {c2 = v.c2 ; agrObj = \\_ => []} ; -- Add subject string, fix agreement to the subject, -- but keep the structure as VP, because later on diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index 83323dc6d..aa68506ab 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -7,12 +7,31 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra, ParamX in { SlashVV vv vps = vps ** predV vv ; ----IL - -- TODO: --c3 is for verb, c2 is for dir.obj - --SlashV2V : V2V -> VP -> VPSlash ; -- beg (her) to go - --SlashV2VNP : V2V -> NP -> VPSlash -> VPSlash ; -- beg me to buy + -- : V2V -> VP -> VPSlash ; -- beg (her) to go + SlashV2V v2v vp = let v2vVP = predV v2v in -- IL + vp ** { + s = v2vVP.s ; + agrObj = \\pgn => v2v.c3.s -- أَنْ + ++ vp.s ! pgn ! VPImpf Cnj ; + isPred = False ; + c2 = v2v.c2 ; -- for the direct object + sc = v2v.sc + } ; + + -- : V2V -> NP -> VPSlash -> VPSlash ; -- beg me to buy + SlashV2VNP v2v np vps = let v2vVP = predV v2v in -- IL + vps ** { + s = \\pgn,vpf => v2vVP.s ! pgn ! vpf + ++ v2v.c2.s ++ np.s ! v2v.c2.c + ++ v2v.c3.s -- أَنْ + ++ vps.s ! pgn ! VPImpf Cnj ; + isPred = False ; + -- preposition for the direct object comes from VP + sc = v2v.sc + } ; SlashV2a = slashV2 ; - Slash3V3 v np = insertObj np (slashV2 v) ** {c2 = v.c3}; + Slash3V3 v np = insertObj np (slashV2 v) ** {c2 = v.c3 ; agrObj = \\_ => []}; ComplSlash vp np = insertObj np vp ; From b63da6573e6edb1e1b63257d2ad25de31244538a Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 20 Nov 2018 14:11:15 +0100 Subject: [PATCH 142/172] (Ara) Formatting + small typofixes --- src/arabic/ResAra.gf | 91 +++++++++++++++++++------------------ src/arabic/StructuralAra.gf | 2 +- 2 files changed, 48 insertions(+), 45 deletions(-) diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index b0512f9f0..8fb6ff660 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -112,10 +112,10 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { emptyNTable : NTable = \\n,s,c => [] ; Preposition : Type = {s : Str ; c : Case} ; - Noun : Type = { - s,s2 : NTable ; - g : Gender ; - h : Species ; + Noun : Type = { + s,s2 : NTable ; + g : Gender ; + h : Species ; isDual : Bool -- whether it takes dual instead of plural: eyes, twins, ... } ; Noun2 : Type = Noun ** {c2 : Preposition} ; @@ -771,7 +771,7 @@ v8assimilated : Root3 -> Verb = --- IL 8a1 muttafaq = "م" + uttafaq } in verb eittafaq euttufiq attafiq uttafaq eittafiq muttafaq; -v8hollow : Root3 -> Verb = -- IL +v8hollow : Root3 -> Verb = -- IL \Hwj -> let { _Htaj = mkHollow ftacal Hwj ; @@ -793,7 +793,7 @@ v8hollow : Root3 -> Verb = -- IL } in verbHollow (toDefForms iHtAj iHtaj uHtIj uHtij aHtAj aHtaj uHtAj uHtaj iHtAj iHtaj ppart) ; -v10sound : Root3 -> Verb = ---- IL 10s -- to be checked +v10sound : Root3 -> Verb = -- IL 10s -- to be checked \qtl -> let { _staqtal = "ستَ" + mkStrong fcal qtl ; @@ -807,7 +807,7 @@ v10sound : Root3 -> Verb = ---- IL 10s -- to be checked } in verb istaqtal ustuqtil astaqtil astaqtal istaqtil mustaqtal ; -v10hollow : Root3 -> Verb = ---- IL 10h -- to be checked +v10hollow : Root3 -> Verb = -- IL 10h -- to be checked \xwf -> let { _staxaf = "سْتَ" + mkHollow fac xwf ; @@ -826,7 +826,7 @@ v10hollow : Root3 -> Verb = ---- IL 10h -- to be checked ustaxAf = "ُ" + _staxAf ; -- VImpf Pas _ ppart = "مُ" + _staxIf -- PPart ("weird anomalies" here too?) - } in verbHollow (toDefForms + } in verbHollow (toDefForms istaxAf istaxaf ustuxIf ustuxif astaxIf astaxif ustaxAf ustaxaf istaxif istaxIf ppart) ; @@ -1079,7 +1079,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> }; - -- if a word ends in ء or ة, don't add alif for indef acc. + -- if a word ends in ء or ة, don't add alif for indef acc. dec1sgNoDoubleAlif : State => Case => Str = \\s,c => case of { => "ً" ; @@ -1274,7 +1274,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> } }; - gn2pgn : {g : Gender; n : Number} -> PerGenNum = \gn -> + gn2pgn : {g : Gender; n : Number} -> PerGenNum = \gn -> case gn of { {g = gn; n = nm} => Per3 gn nm } ; -- these are chosen in many places, trying to be consistent @@ -1349,33 +1349,36 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> empty = [] }; - proDrop : NP -> NP = \np -> + proDrop : NP -> NP = \np -> case np.a.isPron of { - True => np ** {s = table {Nom => [] ; x => np.s ! x}}; + True => np ** {s = table {Nom => [] ; x => np.s ! x}}; _ => np } ; - + emptyNP : NP = { - s = \\_ => [] ; + s = \\_ => [] ; a = {pgn = Per3 Masc Sg ; isPron = False} ; empty = [] } ; agrNP : Agr -> NP = \agr -> emptyNP ** {a = agr} ; - i_Pron : NP = mkPron "أَنَا" "نِي" "ي" (Per1 Sing) ; - youSgMasc_Pron : NP = mkPron "أَنتَ" "كَ" "كَ" (Per2 Masc Sg) ; - youSgFem_Pron : NP = mkPron "أَنتِ" "كِ" "كِ" (Per2 Fem Sg) ; - youDlMasc_Pron : NP = mkPron "أَنتُمَا" "كُمَا" "كُمَا" (Per2 Masc Dl) ; - youDlFem_Pron : NP = mkPron "أَنتُمَا" "كُمَا" "كُمَا" (Per2 Fem Dl) ; - he_Pron : NP = mkPron "هُوَ" "هُ" "هُ" (Per3 Masc Sg) ; - she_Pron : NP = mkPron "هِيَ" "ها" "ها" (Per3 Fem Sg) ; + i_Pron : NP = mkPron "أَنَا" "نِي" "ي" (Per1 Sing) ; we_Pron : NP = mkPron "نَحنُ" "نا" "نا" (Per1 Plur) ; - youPlMasc_Pron : NP = mkPron "أَنتُمْ" "كُمْ" "كُمْ" (Per2 Masc Sg) ; - youPlFem_Pron : NP = mkPron "أَنتُنَّ" "كُنَّ" "كُنَّ" (Per2 Fem Sg) ; - theyMasc_Pron : NP = mkPron "هُمْ" "هُمْ" "هُمْ" (Per3 Masc Pl) ; - theyFem_Pron : NP = mkPron "هُنَّ" "هُنَّ" "هُنَّ" (Per3 Fem Pl) ; + + youSgMasc_Pron : NP = mkPron "أَنتَ" "كَ" "كَ" (Per2 Masc Sg) ; + youSgFem_Pron : NP = mkPron "أَنتِ" "كِ" "كِ" (Per2 Fem Sg) ; + youDlMasc_Pron : NP = mkPron "أَنتُمَا" "كُمَا" "كُمَا" (Per2 Masc Dl) ; + youDlFem_Pron : NP = mkPron "أَنتُمَا" "كُمَا" "كُمَا" (Per2 Fem Dl) ; + youPlMasc_Pron : NP = mkPron "أَنتُمْ" "كُمْ" "كُمْ" (Per2 Masc Pl) ; + youPlFem_Pron : NP = mkPron "أَنتُنَّ" "كُنَّ" "كُنَّ" (Per2 Fem Pl) ; + + he_Pron : NP = mkPron "هُوَ" "هُ" "هُ" (Per3 Masc Sg) ; + she_Pron : NP = mkPron "هِيَ" "ها" "ها" (Per3 Fem Sg) ; theyDlMasc_Pron : NP = mkPron "هُمَا" "هُمَا" "هُمَا" (Per3 Masc Dl) ; - theyDlFem_Pron : NP = mkPron "هُمَا" "هُمَا" "هُمَا" (Per3 Fem Dl) ; + theyDlFem_Pron : NP = mkPron "هُمَا" "هُمَا" "هُمَا" (Per3 Fem Dl) ; + theyMasc_Pron : NP = mkPron "هُمْ" "هُمْ" "هُمْ" (Per3 Masc Pl) ; + theyFem_Pron : NP = mkPron "هُنَّ" "هُنَّ" "هُنَّ" (Per3 Fem Pl) ; + -- Used e.g. to encode the subject as an object clitic -- or to find a possessive suffix corresponding to the NP. @@ -1385,7 +1388,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> False => pgn2pron np.a.pgn } ; - pgn2pron : PerGenNum -> NP = \pgn -> + pgn2pron : PerGenNum -> NP = \pgn -> case pgn of { Per1 Sing => i_Pron ; Per1 Plur => we_Pron ; @@ -1400,7 +1403,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> Per3 Fem Dl => theyDlFem_Pron ; Per3 Masc Dl => theyDlMasc_Pron ; Per3 Fem Pl => theyFem_Pron ; - Per3 Masc Pl => theyMasc_Pron + Per3 Masc Pl => theyMasc_Pron } ; pron2np : NP -> NP = \np -> np ** { @@ -1430,25 +1433,25 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> a : Agr -- can be both subject and object of a QCl, needs full agr. info (stupid given that s depends on gender but meh) } ; - mkIP = overload { + mkIP = overload { mkIP : Str -> Number -> IP = \maa,n -> { - s = \\_p,_g,_s,_c => maa ; + s = \\_p,_g,_s,_c => maa ; a = { pgn = agrP3 NoHum Masc n ; isPron = False } } ; mkIP : (_,_ : Str) -> Number -> IP = \maa,maadhaa,n -> { - s = table { True => \\_g,_s,_c => maa ; - False => \\_g,_s,_c => maadhaa } ; + s = table { True => \\_g,_s,_c => maa ; + False => \\_g,_s,_c => maadhaa } ; a = { pgn = agrP3 NoHum Masc n ; isPron = False } - } + } } ; ip2np : IP -> Bool -> NP = \ip,isPred -> ip ** { s = ip.s ! isPred ! Masc ! Def ; empty = [] } ; np2ip : NP -> IP = \np -> np ** {s = \\_,_,_ => np.s} ; - + IDet : Type = { s : Gender -- IdetCN needs to choose the gender of the CN => State -- Needs to be retained variable for IP; PrepIP chooses the state of IP - => Case => Str ; + => Case => Str ; n : Number ; d : State -- in IdetCN, chooses the state of the CN } ; @@ -1483,7 +1486,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> }; uttVP : VP -> (Gender=>Str) = \vp -> - \\g => vp.s ! Per3 g Sg ! VPPerf + \\g => vp.s ! Per3 g Sg ! VPPerf ++ vp.obj.s ++ vp.pred.s ! {n = Sg ; g = g} ! Nom ++ vp.s2 ; @@ -1503,7 +1506,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> }; passPredV : Verb -> VP = \v -> - let actVP = predV v in actVP ** { + let actVP = predV v in actVP ** { s = \\pgn,vf => case vf of { VPPerf => v.s ! (VPerf Pas pgn) ; @@ -1543,7 +1546,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> _ => vp.pred.s ! gn ! Acc --xabar kaana wa laysa manSoob }; sc : Preposition = case o of {Subord => {s=[]; c=Acc} ; Dir => vp.sc} ; - subj = np.empty ++ sc.s + subj = np.empty ++ sc.s ++ case vp.isPred of { False => (proDrop np).s ! sc.c ; -- prodrop if it's not predicative True => np.s ! sc.c @@ -1552,11 +1555,11 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> } in case o of { Verbal => vStr t p ++ case vp.obj.a.isPron of { - True => vp.obj.s ++ subj ; -- obj. clitic attaches directly to the verb + True => vp.obj.s ++ subj ; -- obj. clitic attaches directly to the verb False => subj ++ vp.obj.s } ++ vp.s2 ++ pred t p ; VOS => vStr t p ++ vp.obj.s ++ vp.s2 ++ pred t p ++ subj ; - Nominal|Subord => subj ++ vStr t p ++ vp.obj.s ++ vp.s2 ++ pred t p + Nominal|Subord => subj ++ vStr t p ++ vp.obj.s ++ vp.s2 ++ pred t p } } ; @@ -1616,11 +1619,11 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> predVPSlash : NP -> VPSlash -> ClSlash = \np,v -> v ** { subj = np } ; - + complClSlash = overload { complClSlash : NP -> ClSlash -> Cl = \obj,cls -> predVP cls.subj (insertObj obj cls) ; - complClSlash : ClSlash -> Cl = \cls -> + complClSlash : ClSlash -> Cl = \cls -> predVP cls.subj (insertObj emptyNP cls) -- Empty subject and object } ; @@ -1630,7 +1633,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> ----------------------------------------------------------------------------- -- Relative - param + param RAgr = RSg Gender | RPl Gender | RDl Gender Case ; oper @@ -1675,7 +1678,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> \wAhid,awwal,Ula -> let wAhida : Str = case wAhid of { x + "ة" => mkAt wAhid ; - _ => wAhid + "َة" } + _ => wAhid + "َة" } in { s= table { unit => table { diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index 1015dae3c..4502cba1f 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -120,7 +120,7 @@ concrete StructuralAra of Structural = CatAra ** yes_Utt = {s = \\_ => "نَعَم"} ; youSg_Pron = youSgMasc_Pron ; youPl_Pron = youPlMasc_Pron ; - youPol_Pron = youSgFem_Pron ; -- arbitrary? + youPol_Pron = youPlFem_Pron ; -- arbitrary? have_V2 = dirV2 (regV "يَملِك") ; From d6310e2a8b9c62a0b495468347368252c663888d Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 20 Nov 2018 15:47:47 +0100 Subject: [PATCH 143/172] (Ara) Add AdjOrd + AdvS --- src/arabic/AdjectiveAra.gf | 2 ++ src/arabic/MissingAra.gf | 3 --- src/arabic/SentenceAra.gf | 2 ++ 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/arabic/AdjectiveAra.gf b/src/arabic/AdjectiveAra.gf index 20988aeaa..93c64a428 100644 --- a/src/arabic/AdjectiveAra.gf +++ b/src/arabic/AdjectiveAra.gf @@ -44,4 +44,6 @@ concrete AdjectiveAra of Adjective = CatAra ** open ResAra, Prelude in { s = \\h,g,n,d,c => a.s ! AComp d c }; + -- : Ord -> AP ; -- warmest + AdjOrd ord = {s = \\h,g,n,s,c => ord.s ! g ! s ! c} ; } diff --git a/src/arabic/MissingAra.gf b/src/arabic/MissingAra.gf index d95c86912..e714eb0e5 100644 --- a/src/arabic/MissingAra.gf +++ b/src/arabic/MissingAra.gf @@ -3,11 +3,8 @@ resource MissingAra = open GrammarAra, Prelude in { -- temporary definitions to enable the compilation of RGL API oper AdAdv : AdA -> Adv -> Adv = notYet "AdAdv" ; oper AdVVP : AdV -> VP -> VP = notYet "AdVVP" ; -oper AdjOrd : Ord -> AP = notYet "AdjOrd" ; oper AdnCAdv : CAdv -> AdN = notYet "AdnCAdv" ; -oper AdvCN : CN -> Adv -> CN = notYet "AdvCN" ; oper AdvIAdv : IAdv -> Adv -> IAdv = notYet "AdvIAdv" ; -oper AdvS : Adv -> S -> S = notYet "AdvS" ; oper BaseRS : RS -> RS -> ListRS = notYet "BaseRS" ; oper CAdvAP : CAdv -> AP -> NP -> AP = notYet "CAdvAP" ; oper CleftNP : NP -> RS -> Cl = notYet "CleftNP" ; diff --git a/src/arabic/SentenceAra.gf b/src/arabic/SentenceAra.gf index 34267a0f5..a46854c16 100644 --- a/src/arabic/SentenceAra.gf +++ b/src/arabic/SentenceAra.gf @@ -86,4 +86,6 @@ concrete SentenceAra of Sentence = CatAra ** open UseRCl t p cl = {s = \\agr,c => t.s ++ p.s ++ cl.s ! t.t ! p.p ! agr ! c} ; UseSlash t p cl = UseCl t p (complClSlash cl) ; + + AdvS adv s = s ** {s = \\o => adv.s ++ s.s ! o} ; } From 45df74b36b77b6f57a4d259ae855021705ef934a Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 21 Nov 2018 16:02:10 +0100 Subject: [PATCH 144/172] (Ara) Renaming and consistency with prepositions --- src/arabic/LexiconAra.gf | 4 ++-- src/arabic/ResAra.gf | 16 ++++++++++++---- src/arabic/StructuralAra.gf | 7 ++++--- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/src/arabic/LexiconAra.gf b/src/arabic/LexiconAra.gf index 3b8ad2fd0..ca5571cfb 100644 --- a/src/arabic/LexiconAra.gf +++ b/src/arabic/LexiconAra.gf @@ -73,7 +73,7 @@ flags door_N = brkN "بوب" "فاع" "أَفعَال" Masc NoHum ; drink_V2 = dirV2 (regV "شَرِب") ; -- drink_V2 = dirV2 (v1 "شرب" i a) ; - easy_A2V = mkA2 (sndA "سهل" "فَعل") datPrep ; + easy_A2V = mkA2 (sndA "سهل" "فَعل") liPrep ; eat_V2 = dirV2 (mkV "ءكل" FormI) ; empty_A = sndA "فرغ" "فاعِل" ; enemy_N = brkN "عدو" "فَعُلّ" "أَفعَاء" Masc Hum ; @@ -203,7 +203,7 @@ flags switch8off_V2 = dirV2 (v4 "طفء") ; switch8on_V2 = dirV2 (v4 "شعل") ; table_N = sdfN "طول" "فاعِلة" Fem NoHum ; - talk_V3 = mkV3 (v5 "حدث") datPrep (mkPrep "عَن") ; + talk_V3 = mkV3 (v5 "حدث") liPrep (mkPrep "عَن") ; teacher_N = sdmN "علم" "مُفَعِّل" Masc Hum ; --mucal~imö teach_V2 = dirV2 (v2 "علم") ; television_N = mkN (sndf "تِلِفِزيُون") Masc NoHum ; diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 8fb6ff660..497caa97b 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -127,7 +127,15 @@ resource ResAra = PatternsAra ** open Prelude, Predef, OrthoAra, ParamX in { } ; noPrep : Preposition = mkPreposition [] Nom ; - datPrep : Preposition = mkPreposition ("لِ" ++ BIND) Dat ; + liPrep : Preposition = mkPreposition ( + pre { #pronSuffAndOther => "لِ" ; + #pronSuff => "لَ" ; + _ => "لِ" + } ++ BIND) Dat ; + biPrep : Preposition = mkPreposition ("بِ"++BIND) ; + + pronSuff : pattern Str = #("كَ"|"كِ"|"كُمَا"|"كُمْ"|"كُنَّ"|"هُ"|"ها"|"هُمَا"|"هُمْ"|"هُنَّ") ; + pronSuffAndOther : pattern Str = #( "كَم" ) ; -- TODO list words that begin like pron.suff. but aren't Adj : Type = {s : AForm => Str} ; Adj2 : Type = Adj ** {c2 : Preposition} ; @@ -1341,9 +1349,9 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> { s = table { (Nom|Bare) => ana; - Acc => BIND ++ nI; -- object suffix - Gen => BIND ++ I; -- possessive suffix - Dat => I -- will only be used with preposition لِ, which already has a BIND + Acc => nI ; -- object suffix + Gen => I ; -- possessive suffix + Dat => I -- will only be used with preposition لِ }; a = {pgn = pgn; isPron = True }; empty = [] diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index 4502cba1f..7ae7afd31 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -18,8 +18,8 @@ concrete StructuralAra of Structural = CatAra ** between_Prep = mkPrep "بَيْنَ" ; -- both7and_DConj = sd2 "بْته" "َند" ** {n = Pl} ; -- but_PConj = ss "بُت" ; - by8agent_Prep = mkPrep "بِ" ; - by8means_Prep = mkPrep "بِ" ; + by8agent_Prep, + by8means_Prep = biPrep ; can_VV = mkVV (mkV "طوع" FormX) ; -- can8know_VV = { -- s = table VVForm [["بي َبلي تْ"] ; "عَن" ; "عُْلد" ; @@ -34,6 +34,7 @@ concrete StructuralAra of Structural = CatAra ** -- everywhere_Adv = ss "ثريوهري" ; few_Det = mkDet "بَعض" Pl Const ; -- first_Ord = ss "فِرست" ; + for_Prep = liPrep ; from_Prep = mkPrep "مِنَ" ; he_Pron = ResAra.he_Pron ; here_Adv = ss "هُنا" ; @@ -68,7 +69,7 @@ concrete StructuralAra of Structural = CatAra ** -- otherwise_PConj = ss "ْتهروِسي" ; part_Prep = mkPrep "مِنَ" ; -- please_Voc = ss "ةلَسي" ; - possess_Prep = mkPrep "ل" ; + possess_Prep = liPrep ; -- quite_Adv = ss "قُِتي" ; she_Pron = ResAra.she_Pron ; -- so_AdA = ss "سْ" ; From 473f6ae05be89b8859d7826aa85cb82d4b47f8cd Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 21 Nov 2018 16:04:55 +0100 Subject: [PATCH 145/172] (Ara) Small fixes + comments --- src/arabic/QuestionAra.gf | 2 +- src/arabic/RelativeAra.gf | 2 +- src/arabic/ResAra.gf | 6 +++--- src/arabic/SentenceAra.gf | 6 +++--- src/arabic/VerbAra.gf | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/arabic/QuestionAra.gf b/src/arabic/QuestionAra.gf index ee7edacad..e6bcf6a64 100644 --- a/src/arabic/QuestionAra.gf +++ b/src/arabic/QuestionAra.gf @@ -28,7 +28,7 @@ concrete QuestionAra of Question = CatAra ** open ResAra, ParamX, Prelude, VerbA ---- IL guessed -- : IComp -> NP -> QCl QuestIComp ic np = - let vp = UseComp (CompNP np) ; + let vp = UseComp (CompNP np) ; -- puts NP in nominative ip : ResAra.IP = np ** { -- NP's s is already present in VP, we only want its agr s = \\_,_,_,_ => ic.s ! pgn2gn np.a.pgn } ; in QuestVP ip vp ; diff --git a/src/arabic/RelativeAra.gf b/src/arabic/RelativeAra.gf index 9c764ade6..25f1fe645 100644 --- a/src/arabic/RelativeAra.gf +++ b/src/arabic/RelativeAra.gf @@ -13,7 +13,7 @@ concrete RelativeAra of Relative = CatAra ** s = \\t,p,agr,c => let npS : Case => Str = \\_ => rp.s ! agr2ragr agr c ; - np : NP = agrNP agr ** {s = npS} ; + np : ResAra.NP = agrNP agr ** {s = npS} ; cl = predVP np vp ; in cl.s ! t ! p ! Nominal diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 497caa97b..d1d74c9d1 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1553,7 +1553,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> => vp.pred.s ! gn ! Nom; --xabar marfooc _ => vp.pred.s ! gn ! Acc --xabar kaana wa laysa manSoob }; - sc : Preposition = case o of {Subord => {s=[]; c=Acc} ; Dir => vp.sc} ; + sc : Preposition = case o of {Subord => {s=[]; c=Acc} ; _ => vp.sc} ; subj = np.empty ++ sc.s ++ case vp.isPred of { False => (proDrop np).s ! sc.c ; -- prodrop if it's not predicative @@ -1588,8 +1588,8 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> Obj : Type = { s : Str ; - a : Agr -- default Agr in a VP without real Obj is Per3 Masc Sg - }; + a : Agr -- default Agr in a VP without real Obj is Per3 Masc Sg. + }; -- need isPron for word order in predVP, and pgn for ImpersCl emptyObj : Obj = emptyNP ** {s=[]} ; diff --git a/src/arabic/SentenceAra.gf b/src/arabic/SentenceAra.gf index a46854c16..e6c7fbdc9 100644 --- a/src/arabic/SentenceAra.gf +++ b/src/arabic/SentenceAra.gf @@ -33,9 +33,9 @@ concrete SentenceAra of Sentence = CatAra ** open ImpVP vp = { s = \\p,g,n => case p of { - Pos => vp.s ! (Per2 g n) ! VPImp ++ vp.obj.s ++ vp.s2 ; - Neg => "لا" ++ vp.s ! (Per2 g n) ! (VPImpf Jus) ++ vp.obj.s ++ vp.s2 - } + Pos => vp.s ! Per2 g n ! VPImp ; + Neg => "لَا" ++ vp.s ! Per2 g n ! VPImpf Jus + } ++ vp.obj.s ++ vp.pred.s ! {g=g;n=n} ! Acc ++ vp.s2 }; -- diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index aa68506ab..c0e0b7e90 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -56,7 +56,7 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra, ParamX in { } ; -- : VA -> AP -> VP ; -- they become red - ComplVA v ap = predV v ** {comp = CompAP ap} ; + ComplVA v ap = predV v ** {pred = CompAP ap} ; -- ComplV2A v np ap = -- insertObj (\\_ => v.c2 ++ np.s ! Acc ++ ap.s ! np.a) (predV v) ; From e911ad7cb3afdfbbd89869cfacaa71f7448be0a8 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 21 Nov 2018 16:20:44 +0100 Subject: [PATCH 146/172] (Ara) replace NP with just its string and isPron:Bool for ClSlash --- src/arabic/ResAra.gf | 47 ++++++++++++++++++++++++++++++++------------ 1 file changed, 34 insertions(+), 13 deletions(-) diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index d1d74c9d1..0311148ce 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1559,18 +1559,34 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> False => (proDrop np).s ! sc.c ; -- prodrop if it's not predicative True => np.s ! sc.c } ; + } in wordOrder o + vp.obj.a.isPron np.a.isPron + (vStr t p) + subj + + (case of { + => BIND ++ vp.obj.s ; + _ => vp.obj.s }) + + (pred t p) + vp.s2 - } in - case o of { - Verbal => vStr t p ++ case vp.obj.a.isPron of { - True => vp.obj.s ++ subj ; -- obj. clitic attaches directly to the verb - False => subj ++ vp.obj.s } - ++ vp.s2 ++ pred t p ; - VOS => vStr t p ++ vp.obj.s ++ vp.s2 ++ pred t p ++ subj ; - Nominal|Subord => subj ++ vStr t p ++ vp.obj.s ++ vp.s2 ++ pred t p - } } ; + -- seems complicated, but this is to share code between PredVP and ClSlash-using funs + wordOrder : Order -> (objIsPron,subjIsPron : Bool) -> (verb,subj,obj,pred,adv : Str) -> Str = + \o,objIsPron,subjIsPron,verb,subj,obj,pred,adv -> + case o of { + VOS => verb ++ obj ++ pred ++ adv ++ subj ; + Verbal => verb ++ + case objIsPron of { + True => obj ++ subj ; -- obj. clitic attaches directly to the verb + False => subj ++ obj } ++ adv ++ pred ; + Nominal => subj ++ verb ++ obj ++ adv ++ pred ; + Subord => if_then_Str subjIsPron BIND [] -- in subord. clause, subj. pronoun binds to the main verb + ++ subj ++ verb ++ obj ++ adv ++ pred + } ; + -- in verbal sentences, the verb agrees with the subject -- in Gender but not in number verbalAgr : PerGenNum -> PerGenNum = \pgn -> @@ -1591,6 +1607,10 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> a : Agr -- default Agr in a VP without real Obj is Per3 Masc Sg. }; -- need isPron for word order in predVP, and pgn for ImpersCl + Subj : Type = {s : Case => Str ; isPron : Bool} ; + + np2subj : NP -> Subj = \np -> np ** {isPron = np.a.isPron} ; + subj2np : Subj -> NP = \su -> su ** {a = {pgn = emptyNP.a.pgn ; isPron = su.isPron} ; empty=[]} ; emptyObj : Obj = emptyNP ** {s=[]} ; insertObj : NP -> VPSlash -> VP = \np,vp -> vp ** @@ -1616,7 +1636,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> -- Slash categories VPSlash : Type = VP ** {c2 : Preposition ; agrObj : PerGenNum => Str} ; - ClSlash : Type = VPSlash ** {subj : NP} ; + ClSlash : Type = VPSlash ** {subj : Subj} ; slashV2 : Verb2 -> VPSlash = \v -> predV v ** {c2 = v.c2 ; agrObj = \\_ => []} ; @@ -1625,14 +1645,15 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> -- but keep the structure as VP, because later on -- we might need different word orders for the ClSlash. predVPSlash : NP -> VPSlash -> ClSlash = \np,v -> v ** { - subj = np + subj = np2subj np ; + s = \\_pgn,vf => v.s ! np.a.pgn ! vf -- so we can throw away subject's pgn } ; complClSlash = overload { complClSlash : NP -> ClSlash -> Cl = \obj,cls -> - predVP cls.subj (insertObj obj cls) ; + predVP (subj2np cls.subj) (insertObj obj cls) ; complClSlash : ClSlash -> Cl = \cls -> - predVP cls.subj (insertObj emptyNP cls) -- Empty subject and object + predVP (subj2np cls.subj) (insertObj emptyNP cls) -- Empty subject and object } ; Cl : Type = {s : Tense => Polarity => Order => Str} ; From 6b91d8409a87826e533e1568693f1a68c9c5b058 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 21 Nov 2018 16:31:36 +0100 Subject: [PATCH 147/172] (Ara) Force inherently dual nouns to dual only with a plural determiner --- src/arabic/NounAra.gf | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index dd845055b..a674b8844 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -6,7 +6,12 @@ lin DetCN det cn = let { cas : Case -> Case = if_then_else Case det.is1sg Bare ; - number = case cn.isDual of {True => Dl ; _ => sizeToNumber det.n} ; + number = case cn.isDual of { + True => + case sizeToNumber det.n of { + Sg => Sg ; + _ => Dl } ; + False => sizeToNumber det.n } ; determiner : Case -> Str = \c -> det.s ! cn.h ! (detGender cn.g det.n) ! c ; noun : Case -> Str = \c -> From 570d347efe7e8fdd21547598effee76894b1da59 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 22 Nov 2018 16:09:11 +0100 Subject: [PATCH 148/172] (Ara) Various fixes with nouns, compounding, attributes etc. --- src/arabic/NounAra.gf | 4 ++-- src/arabic/ParadigmsAra.gf | 48 +++++++++++++++++++++----------------- 2 files changed, 29 insertions(+), 23 deletions(-) diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index a674b8844..0ae1ad137 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -99,7 +99,7 @@ lin } ; PossPron p = { - s = \\_,_,_,_ => p.s ! Gen; + s = \\_,_,_,_ => BIND ++ p.s ! Gen; d = Poss; is1sg = case p.a.pgn of { Per1 Sing => True ; _ => False } ; isPron = True; @@ -195,7 +195,7 @@ lin -- : CN -> NP -> CN ; -- house of Paris, house of mine PossNP cn np = cn ** { s = \\n,_d,c => cn.s ! n ! Const ! c ; - s2 = \\n,_d,c => cn.s2 ! n ! Const ! c ; + s2 = \\n,_d,c => cn.s2 ! n ! Const ! Gen ; -- unsure about this /IL np = \\c => cn.np ! c ++ np.s ! Gen }; diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index 5315286f2..fc196e912 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -71,7 +71,8 @@ resource ParadigmsAra = open mkN : NTable -> Gender -> Species -> N ; -- loan words, irregular mkN : (root,sgPatt,brokenPlPatt : Str) -> Gender -> Species -> N ; -- broken plural mkN : N -> (attr : Str) -> N ; -- Compound noun with invariant attribute - mkN : N -> N -> N ; -- Compound noun where both parts inflect + mkN : N -> N -> N ; -- Compound noun where attribute inflects in state and case but not number + mkN : Number -> N -> N -> N ; -- Compound noun where attribute inflects in state, case and number --- mkN : (root,sgPatt : Str) -> Gender -> Species -> N -- sound feminine plural --- = sdfN ; } ; @@ -100,7 +101,7 @@ resource ParadigmsAra = open mkPN = overload { mkPN : Str -> PN -- Fem Hum if ends with ة, otherwise Masc Hum = smartPN ; - mkPN : N -> PN + mkPN : N -> PN = \n -> lin PN (n ** {s = \\c => n.s ! Sg ! Const ! Bare}) ; -- no idea /IL mkPN : Str -> Gender -> Species -> PN = mkFullPN ; @@ -338,16 +339,21 @@ resource ParadigmsAra = open = mkFullN ; mkN : (root,sgPatt,brokenPlPatt : Str) -> Gender -> Species -> N -- broken plural = brkN ; - mkN : N -> (attr : Str) -> N -- Compound nouns + mkN : N -> (attr : Str) -> N -- Compound nouns with noninflecting attribute = \n,attr -> n ** {s2 = \\n,s,c => attr} ; - mkN : N -> N -> N -- Compound nouns - = \n1,n2 -> n1 ** { - s = \\n,_,c => n1.s ! n ! Const ! c ; - s2 = \\n,s,c => n1.s2 ! n ! s ! c - ++ n2.s ! n ! s ! c - ++ n2.s2 ! n ! s ! c} ; + mkN : N -> N -> N -- Compound nouns where attribute inflects in state and case but not number + = attrN Sg ; + mkN : Number -> N -> N -> N -- Compound nouns where attribute inflects in state, case and number + = attrN ; } ; + attrN : Number -> N -> N -> N = \num,n1,n2 -> n1 ** { + s = \\n,_,c => n1.s ! n ! Const ! c ; + s2 = \\n,s,c => let c' = case c of {Dat => Gen; _ => c} in -- the Dat with liPrep hack only applies to the first word + n1.s2 ! num ! s ! c' -- attribute doesn't change + ++ n2.s ! num ! s ! c' + ++ n2.s2 ! num ! s ! c'} ; + dualN : N -> N = \n -> n ** {isDual=True} ; proDrop : NP -> NP ; -- Force a NP to lose its string, only contributing with its agreement. @@ -361,7 +367,7 @@ resource ParadigmsAra = open = v1 ; mkV : (root : Str) -> VerbForm -> V -- FormI .. FormX (no VII, IX) ; default vowels a u for I = formV ; - mkV : V -> (particle : Str) -> V = \v,p -> + mkV : V -> (particle : Str) -> V = \v,p -> v ** { s = \\vf => v.s ! vf ++ p } ; } ; @@ -466,7 +472,7 @@ resource ParadigmsAra = open rbT = mkRoot3 rootStr ; v8fun = case rbT.f of { ("و"|"ي"|"ّ") => v8assimilated ; - _ => + _ => case rbT.c of { #weak => v8hollow ; _ => v8sound }} @@ -512,7 +518,7 @@ resource ParadigmsAra = open let { kalimaStr = mkWord sg root; kalimaRaw = sndf kalimaStr; kalima : NTable = \\n,d,c => case root of { - _ + #hamza + _ + _ + #hamza + _ => rectifyHmz (kalimaRaw ! n ! d ! c); _ => kalimaRaw ! n ! d ! c }; @@ -540,9 +546,9 @@ resource ParadigmsAra = open prepN2 : N -> Preposition -> N2 = \n,p -> lin N2 (n ** {c2 = p}) ; mkN3 = overload { - mkN3 : N -> Preposition -> Preposition -> N3 = \n,p,q -> + mkN3 : N -> Preposition -> Preposition -> N3 = \n,p,q -> lin N3 (n ** {c2 = p ; c3 = q}) ; - mkN3 : N -> Str -> Str -> N3 = \n,p,q -> + mkN3 : N -> Str -> Str -> N3 = \n,p,q -> lin N3 (n ** {c2 = mkPreposition p ; c3 = mkPreposition q}) ; } ; @@ -552,12 +558,12 @@ resource ParadigmsAra = open proDrop : NP -> NP = \np -> lin NP (ResAra.proDrop np) ; -- e.g. al-jamii3, 2a7ad - regNP : Str -> Number -> NP = \word,n -> lin NP (emptyNP ** { + regNP : Str -> Number -> NP = \word,n -> lin NP (emptyNP ** { s = \\c => fixShd word (dec1sg ! Def ! c) }); -- e.g. hadha, dhaalika - indeclNP : Str -> Number -> NP = \word,n -> lin NP (emptyNP ** { + indeclNP : Str -> Number -> NP = \word,n -> lin NP (emptyNP ** { s = \\c => word }); @@ -656,18 +662,18 @@ resource ParadigmsAra = open dirV2 v = prepV2 v (casePrep acc) ; mkV3 = overload { - mkV3 : V -> Preposition -> Preposition -> V3 = \v,p,q -> + mkV3 : V -> Preposition -> Preposition -> V3 = \v,p,q -> lin V3 (prepV3 v p q) ; mkV3 : V -> Str -> Str -> V3 = \v,p,q -> - lin V3 (v ** {s = v.s ; c2 = mkPreposition p ; c3 = mkPreposition q}) + lin V3 (v ** {s = v.s ; c2 = mkPreposition p ; c3 = mkPreposition q}) } ; - prepV3 : V -> Preposition -> Preposition -> Verb3 = \v,p,q -> + prepV3 : V -> Preposition -> Preposition -> Verb3 = \v,p,q -> v ** {s = v.s ; c2 = p ; c3 = q} ; dirV3 = overload { dirV3 : V -> Preposition -> V3 = \v,p -> mkV3 v (casePrep acc) p ; - dirV3 : V -> Str -> V3 = \v,s -> mkV3 v (casePrep acc) (mkPreposition s) + dirV3 : V -> Str -> V3 = \v,s -> mkV3 v (casePrep acc) (mkPreposition s) } ; dirdirV3 v = dirV3 v (casePrep acc) ; @@ -687,7 +693,7 @@ resource ParadigmsAra = open mkV0 v = v ; mkV2S v p = lin V2S (prepV2 v (mkPreposition p)) ; mkV2V = overload { - mkV2V : V -> Str -> Str -> V2V = \v,p,q -> + mkV2V : V -> Str -> Str -> V2V = \v,p,q -> lin V2V (prepV3 v (mkPreposition p) (mkPreposition q) ** {sc = noPrep}) ; mkV2V : V -> Preposition -> Preposition -> V2V = \v,p,q -> lin V2V (prepV3 v p q ** {sc = noPrep}) ; From c8e220196435171cbd1b44d11b2db1e1d366bbfb Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 23 Nov 2018 11:25:08 +0100 Subject: [PATCH 149/172] (Swe) Add ProDrop to ExtendSwe --- src/swedish/ExtendSwe.gf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/swedish/ExtendSwe.gf b/src/swedish/ExtendSwe.gf index 5dfcf9a2d..37acbeca1 100644 --- a/src/swedish/ExtendSwe.gf +++ b/src/swedish/ExtendSwe.gf @@ -8,7 +8,7 @@ concrete ExtendSwe of Extend = CatSwe ** PassVPSlash, PassAgentVPSlash, UttVPShort, ByVP, InOrderToVP, MkVPI, BaseVPI, ConsVPI, ConjVPI, ComplVPIVV, MkVPS, BaseVPS, ConsVPS, ConjVPS, PredVPS, - ICompAP, + ICompAP,ProDrop, AdAdV, PositAdVAdj, GerundCN, GerundNP, GerundAdv, PresPartAP, PastPartAP, PastPartAgentAP, RNP, RNPList, ReflRNP, ReflPron, ReflPoss, PredetRNP, ConjRNP, Base_rr_RNP, Base_nr_RNP, Base_rn_RNP, Cons_rr_RNP, Cons_nr_RNP, @@ -122,7 +122,7 @@ concrete ExtendSwe of Extend = CatSwe ** ICompAP ap = {s = \\a => hur_IAdv.s ++ ap.s ! a} ; - + ProDrop pro = pro ** {s = \\_ => []} ; lincat RNP = {s : Agr => Str ; isPron : Bool} ; ---- inherent Agr needed: han färgar sitt hår vitt. But also depends on subject From 03380c79fbe94d8c10a43d8b81f5c4b91d650c46 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 23 Nov 2018 14:49:33 +0100 Subject: [PATCH 150/172] (Ara) Add more VPS funs to Extend + refactor predVP to work with VPS --- src/arabic/ExtendAra.gf | 40 ++++++++++++----- src/arabic/ResAra.gf | 97 +++++++++++++++++++++++------------------ 2 files changed, 83 insertions(+), 54 deletions(-) diff --git a/src/arabic/ExtendAra.gf b/src/arabic/ExtendAra.gf index 3b667a237..a371dd234 100644 --- a/src/arabic/ExtendAra.gf +++ b/src/arabic/ExtendAra.gf @@ -6,15 +6,16 @@ concrete ExtendAra of Extend = StrandRelSlash, ExistPluralCN, ExistMassCN, ExistCN, EmptyRelSlash, DetNPMasc, DetNPFem, ComplBareVS, ComplDirectVS, ComplDirectVQ, ICompAP, - VPS, MkVPS, + VPS, MkVPS, PredVPS, BaseVPS, ConsVPS, ConjVPS, ApposNP ] with (Grammar=GrammarAra) ** open - Prelude, + ParamX, ResAra, - ParamX + Prelude, + Coordination in { @@ -29,15 +30,30 @@ concrete ExtendAra of Extend = lincat - VPS = VP ; -- finite VP's with tense and polarity - + VPS = {s : PerGenNum => Str} ; -- finite VP's with tense and polarity + [VPS] = {s1,s2 : PerGenNum => Str} ; lin -- : Temp -> Pol -> VP -> VPS ; -- hasn't slept - MkVPS t p vp = lin VPS (vp ** { - s = \\pgn,vf => case of { --- IL guessed tenses - <(Pres|Fut),Simul> => vp.s ! pgn ! VPImpf Ind ; - => vp.s ! pgn ! VPImpf Cnj ; - <_ ,_ > => vp.s ! pgn ! VPPerf - } - }) ; + MkVPS t p vp = { + s = \\pgn => let vps = + wordOrderNoSubj + Nominal -- Nominal (=SVO) generalises best for ConjVPS. + vp.obj.a.isPron + (vStr vp pgn t.t p.p) + (case of { + => BIND ++ vp.obj.s ; + _ => vp.obj.s }) + (pred vp pgn t.t p.p) + vp.s2 + in vps.before ++ vps.after -- word order is SVO, so this is safe for just this case. + } ; + + BaseVPS = twoTable PerGenNum ; + ConsVPS = consrTable PerGenNum comma ; + ConjVPS = conjunctTable PerGenNum ; + + PredVPS np vps = { + s = \\_ => np.s ! Nom ++ vps.s ! np.a.pgn -- first quick version with order always Nominal. + } ; -- if necessary, change VPS into {s : PerGenNum => Order => {before,after : Str}} + } diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 0311148ce..95335fe81 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1484,14 +1484,17 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> oper - VP : Type = { - s : PerGenNum => VPForm => Str ; + BaseVP : Type = { -- to minimise duplication of code for VPS sc : Preposition ; -- subject case: e.g. يُمْكِنُ *لِ*Xِ obj : Obj; pred : Comp; isPred : Bool; --indicates if there is a predicate (xabar) s2 : Str - }; + } ; + + VP : Type = BaseVP ** { + s : PerGenNum => VPForm => Str ; + } ; uttVP : VP -> (Gender=>Str) = \vp -> \\g => vp.s ! Per3 g Sg ! VPPerf @@ -1531,28 +1534,6 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> => verbalAgr np.a.pgn; _ => np.a.pgn }; - gn = pgn2gn pgn; - kataba = vp.s ! pgn ! VPPerf ; - yaktubu = vp.s ! pgn ! VPImpf Ind ; - yaktuba = vp.s ! pgn ! VPImpf Cnj ; - yaktub = vp.s ! pgn ! VPImpf Jus ; - vStr : ParamX.Tense -> Polarity -> Str = - \tn,pl -> case of { - => yaktubu ; - => "لَا" ++ yaktubu ; - => "" ; --no verb "to be" in present - => "لَيسَ" ;--same here, just add negation particle - <_, Past, Pos> => kataba ; - <_, Past, Neg> => "لَمْ" ++ yaktub ; - <_, Cond, _ > => yaktuba ; - <_, Fut, Pos> => glue "سَ" yaktubu ; - <_, Fut, Neg> => "لَنْ" ++ yaktuba - }; - pred : ParamX.Tense -> Polarity -> Str = - \tn,pl -> case of { - => vp.pred.s ! gn ! Nom; --xabar marfooc - _ => vp.pred.s ! gn ! Acc --xabar kaana wa laysa manSoob - }; sc : Preposition = case o of {Subord => {s=[]; c=Acc} ; _ => vp.sc} ; subj = np.empty ++ sc.s ++ case vp.isPred of { @@ -1561,30 +1542,59 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> } ; } in wordOrder o vp.obj.a.isPron np.a.isPron - (vStr t p) - subj - + (vStr vp pgn t p) (case of { => BIND ++ vp.obj.s ; _ => vp.obj.s }) - - (pred t p) + (pred vp pgn t p) vp.s2 - + subj } ; - -- seems complicated, but this is to share code between PredVP and ClSlash-using funs - wordOrder : Order -> (objIsPron,subjIsPron : Bool) -> (verb,subj,obj,pred,adv : Str) -> Str = - \o,objIsPron,subjIsPron,verb,subj,obj,pred,adv -> + -- seems complicated, but this is to share code with VPS and other similar structures + wordOrder : Order -> (objIsPron,subjIsPron : Bool) -> (verb,obj,pred,adv,subj : Str) -> Str = + \o,objIsPron,subjIsPron,verb,obj,pred,adv,subj -> + let cl = wordOrderNoSubj o objIsPron verb obj pred adv in case o of { - VOS => verb ++ obj ++ pred ++ adv ++ subj ; - Verbal => verb ++ - case objIsPron of { - True => obj ++ subj ; -- obj. clitic attaches directly to the verb - False => subj ++ obj } ++ adv ++ pred ; - Nominal => subj ++ verb ++ obj ++ adv ++ pred ; - Subord => if_then_Str subjIsPron BIND [] -- in subord. clause, subj. pronoun binds to the main verb - ++ subj ++ verb ++ obj ++ adv ++ pred + Subord => + let bind = if_then_Str subjIsPron BIND [] -- in subord. clause, subj. pronoun binds to the main verb + in cl.before ++ bind ++ subj ++ cl.after ; + _ => cl.before ++ subj ++ cl.after + } ; + + wordOrderNoSubj : Order -> (objIsPron : Bool) -> (verb,obj,pred,adv : Str) -> {before,after : Str} = + \o,objIsPron,verb,obj,pred,adv -> + case o of { + VOS => {before = verb ++ obj ++ pred ++ adv; after = []} ; + Verbal => case objIsPron of { + True => {before = verb ++ obj ; after = adv ++ pred} ; -- obj. clitic attaches directly to the verb + False => {before = verb ; after = obj ++ adv ++ pred} + } ; + (Nominal|Subord) => {before = [] ; after = verb ++ obj ++ adv ++ pred} + } ; + + pred : VP -> PerGenNum -> ParamX.Tense -> Polarity -> Str = \vp,pgn,tn,pl -> + let gn = pgn2gn pgn + in case of { + => vp.pred.s ! gn ! Nom; --xabar marfooc + _ => vp.pred.s ! gn ! Acc --xabar kaana wa laysa manSoob + } ; + + vStr : VP -> PerGenNum -> ParamX.Tense -> Polarity -> Str = \vp,pgn,tn,pl -> + let kataba = vp.s ! pgn ! VPPerf ; + yaktubu = vp.s ! pgn ! VPImpf Ind ; + yaktuba = vp.s ! pgn ! VPImpf Cnj ; + yaktub = vp.s ! pgn ! VPImpf Jus ; + in case of { + => yaktubu ; + => "لَا" ++ yaktubu ; + => "" ; --no verb "to be" in present + => "لَيسَ" ;--same here, just add negation particle + <_, Past, Pos> => kataba ; + <_, Past, Neg> => "لَمْ" ++ yaktub ; + <_, Cond, _ > => yaktuba ; + <_, Fut, Pos> => glue "سَ" yaktubu ; + <_, Fut, Neg> => "لَنْ" ++ yaktuba } ; -- in verbal sentences, the verb agrees with the subject @@ -1659,6 +1669,9 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> Cl : Type = {s : Tense => Polarity => Order => Str} ; QCl : Type = {s : Tense => Polarity => QForm => Str} ; + forceOrder : Order -> Cl -> Cl = \o,cl -> + {s = \\t,p,_ => cl.s ! t ! p ! o} ; + ----------------------------------------------------------------------------- -- Relative From 28bc19f09c9469eca8fbd893d633427a4710a270 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Mon, 26 Nov 2018 11:02:40 +0100 Subject: [PATCH 151/172] Haskell/Shell build scripts handle multiple paths in GF_LIB_PATH (pick first) Not implemented for Batch --- Make.bat | 1 + Make.hs | 4 ++-- Make.sh | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Make.bat b/Make.bat index 8bb7c4121..5cb9603e9 100644 --- a/Make.bat +++ b/Make.bat @@ -29,6 +29,7 @@ goto Loop REM Try to determine install location if "%dest%"=="" ( + REM TODO Separate paths with search path separator ; and pick first one set dest=%GF_LIB_PATH% ) if "%dest%"=="" ( diff --git a/Make.hs b/Make.hs index c491fe424..76c21b35b 100644 --- a/Make.hs +++ b/Make.hs @@ -9,7 +9,7 @@ import System.IO.Error (catchIOError) import System.Exit (ExitCode(..),exitFailure) import System.Environment (getArgs,lookupEnv) import System.Process (rawSystem) -import System.FilePath (()) -- ,takeFileName,addExtension,dropExtension) +import System.FilePath ((),splitSearchPath) -- ,takeFileName,addExtension,dropExtension) import System.Directory (createDirectoryIfMissing,copyFile,getDirectoryContents,removeDirectoryRecursive,findFile) #if __GLASGOW_HASKELL__>=800 import System.Directory (getModificationTime,setModificationTime) @@ -119,7 +119,7 @@ mkInfo = do -- Look for install location in a few different places let mflag = getFlag destination_flag args mbuilt <- catchIOError (readFile "../gf-core/DATA_DIR" >>= \d -> return (Just (d "lib"))) (\e -> return Nothing) - menvar <- lookupEnv "GF_LIB_PATH" + menvar <- lookupEnv "GF_LIB_PATH" >>= return . fmap (head . splitSearchPath) let inst_dir = case catMaybes [mflag,menvar,mbuilt] of diff --git a/Make.sh b/Make.sh index bfc2d66f9..6e8c5e1f1 100755 --- a/Make.sh +++ b/Make.sh @@ -36,7 +36,7 @@ done # Try to determine install location if [ -z "$dest" ]; then - dest="$GF_LIB_PATH" + dest=$(echo "$GF_LIB_PATH" | sed 's/:.*$//') fi if [ -z "$dest" ] && [ -f "../gf-core/DATA_DIR" ]; then dest=$(cat ../gf-core/DATA_DIR) From b2a0f252b07ac746a3106e9026a0b58bc4490a35 Mon Sep 17 00:00:00 2001 From: odanoburu Date: Mon, 26 Nov 2018 11:14:48 -0200 Subject: [PATCH 152/172] (Construction) add timeunitRange - fix documentation comments --- src/abstract/Construction.gf | 7 ++++--- src/english/ConstructionEng.gf | 2 ++ src/portuguese/ConstructionPor.gf | 9 ++++----- src/portuguese/DiffPor.gf | 10 ++++++++-- src/portuguese/ResPor.gf | 1 + 5 files changed, 19 insertions(+), 10 deletions(-) diff --git a/src/abstract/Construction.gf b/src/abstract/Construction.gf index ca2b39d72..69f5d1b4e 100644 --- a/src/abstract/Construction.gf +++ b/src/abstract/Construction.gf @@ -78,7 +78,8 @@ cat Year ; fun - timeunitAdv : Card -> Timeunit -> Adv ; -- (for) three hours + timeunitAdv : Card -> Timeunit -> Adv ; -- (for) three hours + timeunitRange : Card -> Card -> Timeunit -> Adv ; -- (cats live) ten to twenty years oneHour : Hour ; twoHour : Hour ; @@ -105,8 +106,8 @@ fun twentyThreeHour : Hour ; twentyFourHour : Hour ; - timeHour : Hour -> Adv ; -- at three (o'clock / am / pm) - timeHourMinute : Hour -> Card -> Adv ; -- at forty past six + timeHour : Hour -> Adv ; -- at three a.m./p.m. + timeHourMinute : Hour -> Card -> Adv ; -- at six forty a.m./p.m. weekdayPunctualAdv : Weekday -> Adv ; -- on Monday weekdayHabitualAdv : Weekday -> Adv ; -- on Mondays diff --git a/src/english/ConstructionEng.gf b/src/english/ConstructionEng.gf index d0e6b591f..a12cc46cb 100644 --- a/src/english/ConstructionEng.gf +++ b/src/english/ConstructionEng.gf @@ -74,6 +74,8 @@ lincat n_hours_NP : NP = mkNP n_card time ; in Sy.mkAdv for_Prep n_hours_NP | mkAdv (n_hours_NP.s ! R.npNom) ; + timeunitRange l u time = {s = l.s ! True ! R.Nom ++ to_Prep.s ++ u.s ! True ! R.Nom ++ time.s ! R.Pl ! R.Nom} ; + oneHour = mkHour "1" True ; twoHour = mkHour "2" True ; threeHour = mkHour "3" True ; diff --git a/src/portuguese/ConstructionPor.gf b/src/portuguese/ConstructionPor.gf index f3409985c..5803e813a 100644 --- a/src/portuguese/ConstructionPor.gf +++ b/src/portuguese/ConstructionPor.gf @@ -69,6 +69,8 @@ lin let n_card : Card = lin Card n; n_hours_NP : NP = mkNP n_card time ; in S.mkAdv for_Prep n_hours_NP | S.mkAdv to_Prep n_hours_NP ;--| S.mkAdv (n_hours_NP.s ! R.Nom) ; + timeunitRange l u time = {s = "de" ++ l.s ! time.g + ++ "a" ++ u.s ! time.g ++ time.s ! u.n } ; oneHour = mkHour "1" Manha Sg ; twoHour = mkHour "2" Manha Pl ; @@ -95,12 +97,12 @@ lin twentyThreeHour = mkHour "23" Noite Pl ; twentyFourHour = {s = "meia-noite" ; pe = None ; n = Sg} ; - timeHour h = mkAdv (a ! h.n ++ h.s ++ period ! h.pe) ; + timeHour h = mkAdv (R.a ! Fem ! h.n ++ h.s ++ period ! h.pe) ; timeHourMinute h m = let min = m.s ! Masc in - mkAdv (a ! h.n ++ h.s ++ "e" ++ min ++ period ! h.pe) ; + mkAdv (R.a ! Fem ! h.n ++ h.s ++ "e" ++ min ++ period ! h.pe) ; oper mkHour : Str -> Period -> Number -> {s : Str ; pe : Period ; n : Number} ; @@ -114,9 +116,6 @@ lin None => "" } ; - a : Number => Str ; - a = numForms "à" "às" ; - lin weekdayPunctualAdv w = lin Adv {s = w.s ! C.Sg} ; -- lundi weekdayHabitualAdv w = SyntaxPor.mkAdv noPrep (mkNP the_Det w) ; -- il lunedí ---- diff --git a/src/portuguese/DiffPor.gf b/src/portuguese/DiffPor.gf index c8cfc5981..16cd4d118 100644 --- a/src/portuguese/DiffPor.gf +++ b/src/portuguese/DiffPor.gf @@ -106,12 +106,18 @@ instance DiffPor of DiffRomance - [partAgr,vpAgrSubj,vpAgrClits] = open CommonRo partitive = \_,c -> prepCase c ; oper + a : Gender => Number => Str ; + a = genNumForms "a" "à" "aos" "às" ; + + de : Gender => Number => Str ; + de = genNumForms "do" "da" "dos" "das" ; + artDef : Bool -> Gender -> Number -> Case -> Str ; -- not sure if isNP is relevant artDef _isNP g n c = case c of { Nom | Acc => genNumForms "o" "a" "os" "as" ; - CPrep P_de => genNumForms "do" "da" "dos" "das" ; - CPrep P_a => genNumForms "ao" "à" "aos" "às" ; + CPrep P_de => de ; + CPrep P_a => a ; CPrep P_em => genNumForms "no" "na" "nos" "nas" ; CPrep P_por => genNumForms "pelo" "pela" "pelos" "pelas" } ! g ! n ; diff --git a/src/portuguese/ResPor.gf b/src/portuguese/ResPor.gf index f75f9df39..dcd9c98df 100644 --- a/src/portuguese/ResPor.gf +++ b/src/portuguese/ResPor.gf @@ -9,4 +9,5 @@ instance ResPor of ResRomance = DiffPor ** open CommonRomance, Prelude in { oper vowel : pattern Str = #("a" | "e" | "i" | "o" | "u") ; + } ; From 4a85289597425f003cc66073d220aacb6ef26f6e Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Mon, 26 Nov 2018 15:19:05 +0100 Subject: [PATCH 153/172] Batch build script handles multiple paths in GF_LIB_PATH (picks first) --- Make.bat | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Make.bat b/Make.bat index 5cb9603e9..2cf36947d 100644 --- a/Make.bat +++ b/Make.bat @@ -29,11 +29,15 @@ goto Loop REM Try to determine install location if "%dest%"=="" ( - REM TODO Separate paths with search path separator ; and pick first one - set dest=%GF_LIB_PATH% + REM Separate paths with search path separator ; and pick first one + for %%p in ("%GF_LIB_PATH:;=";"%") do ( + set dest=%%~p + goto BreakLibPath + ) ) +:BreakLibPath if "%dest%"=="" ( - REM TODO Look in ../gf-core/DATA=DIR + REM TODO Look in ../gf-core/DATA_DIR ) if "%dest%"=="" ( echo Unable to determine where to install the RGL. Please do one of the following: From 92f7dbc80e14c805abda39be3c07e55730969377 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Mon, 26 Nov 2018 15:35:44 +0100 Subject: [PATCH 154/172] Batch build script also looks in ../gf-core/DATA_DIR --- Make.bat | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Make.bat b/Make.bat index 2cf36947d..9dc085fb9 100644 --- a/Make.bat +++ b/Make.bat @@ -36,9 +36,21 @@ if "%dest%"=="" ( ) ) :BreakLibPath + +set DATA_DIR=..\gf-core\DATA_DIR if "%dest%"=="" ( - REM TODO Look in ../gf-core/DATA_DIR + REM Look in already compiled GF folder + if exist %DATA_DIR% ( + for /f "delims=" %%x in (%DATA_DIR%) do ( + if not "%%x"=="" ( + set dest=%%x\lib + goto BreakDataDir + ) + ) + ) ) +:BreakDataDir + if "%dest%"=="" ( echo Unable to determine where to install the RGL. Please do one of the following: echo - Pass the --dest=... flag to this script From 9da4ea3f5cf6f0b5bcbc67fae57c3b26f96fca90 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 26 Nov 2018 17:03:09 +0100 Subject: [PATCH 155/172] (Ara) Add word order as a parameter to Subj --- src/arabic/AdverbAra.gf | 2 +- src/arabic/CatAra.gf | 2 +- src/arabic/ParadigmsAra.gf | 10 ++++++++++ src/arabic/StructuralAra.gf | 7 +++---- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/src/arabic/AdverbAra.gf b/src/arabic/AdverbAra.gf index d10d2ac44..c02aa5939 100644 --- a/src/arabic/AdverbAra.gf +++ b/src/arabic/AdverbAra.gf @@ -16,7 +16,7 @@ concrete AdverbAra of Adverb = CatAra ** open ResAra, Prelude in { AdAdv ad av = cc2 av ad ; -- : Subj -> S -> Adv ; -- when she sleeps - SubjS subj s = {s = subj.s ++ s.s ! Subord} ; + SubjS subj s = {s = subj.s ++ s.s ! subj.o} ; -- AdvSC s = s ; --- this rule give stack overflow in ordinary parsing diff --git a/src/arabic/CatAra.gf b/src/arabic/CatAra.gf index 1902bfac7..6cb7ccdb3 100644 --- a/src/arabic/CatAra.gf +++ b/src/arabic/CatAra.gf @@ -72,7 +72,7 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in { Conj = {s : Str ; n : ResAra.Number} ; -- DConj = {s1,s2 : Str ; n : ResAra.Number} ; --- Subj = {s : Str} ; + Subj = {s : Str ; o : Order} ; Prep = ResAra.Preposition ; -- Open lexical classes, e.g. Lexicon diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index fc196e912..f3fdb6efe 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -172,6 +172,11 @@ resource ParadigmsAra = open mkInterj : Str -> Interj ; + mkSubj : overload { + mkSubj : Str -> Subj ; -- Default order Subord (=noun first and in accusative) + mkSubj : Str -> Order -> Subj -- Specify word order + } ; + --2 Prepositions -- -- A preposition as used for rection in the lexicon, as well as to @@ -659,6 +664,11 @@ resource ParadigmsAra = open mkAdA x = lin AdA (ss x) ; mkInterj x = lin Interj (ss x) ; + mkSubj = overload { + mkSubj : Str -> Subj = \s -> lin Subj {s = s ; o = Subord} ; + mkSubj : Str -> Order -> Subj = \s,o -> lin Subj {s = s ; o = o} ; + } ; + dirV2 v = prepV2 v (casePrep acc) ; mkV3 = overload { diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index 7ae7afd31..f4abefa28 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -62,8 +62,7 @@ concrete StructuralAra of Structural = CatAra ** -- isAux = True -- } ; no_Utt = {s = \\_ => "لا"} ; - on_Prep = mkPrep "عَلى" ; ---- DEPREC one_Quant = mkQuantNum "واحِد" Sg Indef ; + on_Prep = mkPrep "عَلَى" ; only_Predet = mkPredet "فَقَط" False; -- or_Conj = ss "ْر" ** {n = Sg} ; -- otherwise_PConj = ss "ْتهروِسي" ; @@ -79,7 +78,7 @@ concrete StructuralAra of Structural = CatAra ** something_NP = regNP "شَيْء" Sg ; -- somewhere_Adv = ss "سْموهري" ; that_Quant = mkQuant3 "ذَلِكَ" "تِلكَ" "أُلٱِكَ" Def; - that_Subj = ss "أنَّ" ; + that_Subj = mkSubj "أنَّ" ; ----b that_NP = indeclNP "ذَلِكَ" Sg ; there_Adv = ss "هُناك" ; -- there7to_Adv = ss "تهري" ; @@ -100,7 +99,7 @@ concrete StructuralAra of Structural = CatAra ** whatPl_IP = mkIP "ما" "ماذا" Pl ; whatSg_IP = mkIP "ما" "ماذا" Sg ; when_IAdv = ss "مَتَى" ; --- when_Subj = ss "وهن" ; + when_Subj = mkSubj "عِنْدَمَا" Verbal ; where_IAdv = ss "أَينَ" ; which_IQuant = { s = \\s,c => case of { From a29a4132cf10554e763e0826dd2e0f972a922ad5 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 26 Nov 2018 17:03:31 +0100 Subject: [PATCH 156/172] (Ara) misc. small fixes/additions --- src/arabic/ParadigmsAra.gf | 20 ++++++++++++++------ src/arabic/ResAra.gf | 7 +++++-- src/arabic/VerbAra.gf | 6 ++++++ 3 files changed, 25 insertions(+), 8 deletions(-) diff --git a/src/arabic/ParadigmsAra.gf b/src/arabic/ParadigmsAra.gf index f3fdb6efe..b00c18448 100644 --- a/src/arabic/ParadigmsAra.gf +++ b/src/arabic/ParadigmsAra.gf @@ -50,6 +50,10 @@ resource ParadigmsAra = open masc : Gender ; fem : Gender ; + Number : Type ; + sg : Number ; + pl : Number ; + Species : Type ; hum : Species ; nohum : Species ; @@ -71,8 +75,8 @@ resource ParadigmsAra = open mkN : NTable -> Gender -> Species -> N ; -- loan words, irregular mkN : (root,sgPatt,brokenPlPatt : Str) -> Gender -> Species -> N ; -- broken plural mkN : N -> (attr : Str) -> N ; -- Compound noun with invariant attribute - mkN : N -> N -> N ; -- Compound noun where attribute inflects in state and case but not number - mkN : Number -> N -> N -> N ; -- Compound noun where attribute inflects in state, case and number + mkN : N -> N -> N ; -- Compound noun where attribute inflects in state and case. Attribute in singular. + mkN : Number -> N -> N -> N ; -- Compound noun where attribute inflects in state and case. Attribute's number specified by 1st arg. --- mkN : (root,sgPatt : Str) -> Gender -> Species -> N -- sound feminine plural --- = sdfN ; } ; @@ -102,7 +106,7 @@ resource ParadigmsAra = open mkPN : Str -> PN -- Fem Hum if ends with ة, otherwise Masc Hum = smartPN ; mkPN : N -> PN - = \n -> lin PN (n ** {s = \\c => n.s ! Sg ! Const ! Bare}) ; -- no idea /IL + = \n -> lin PN (n ** {s = \\c => n.s ! Sg ! Const ! c ++ n.s2 ! Sg ! Const ! c }) ; -- no idea /IL mkPN : Str -> Gender -> Species -> PN = mkFullPN ; } ; @@ -306,6 +310,10 @@ resource ParadigmsAra = open masc = ResAra.Masc ; fem = ResAra.Fem ; + Number = ResAra.Number ; + sg = ResAra.Sg ; + pl = ResAra.Pl ; + Species = ResAra.Species ; hum = ResAra.Hum ; nohum = ResAra.NoHum ; @@ -608,9 +616,9 @@ resource ParadigmsAra = open mascTbl = reg jadId judud ; femTbl = reg jadIda judud ; in { s = table { - APosit Masc n d c => mascTbl ! n ! d ! c ; - APosit Fem n d c => femTbl ! n ! d ! c ; - AComp d c => indeclN akbar ! d ! c } + APosit Masc n d c => rectifyHmz (mascTbl ! n ! d ! c) ; + APosit Fem n d c => rectifyHmz (femTbl ! n ! d ! c) ; + AComp d c => rectifyHmz (indeclN akbar ! d ! c) } } ; degrA : (posit,compar,plur : Str) -> A diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 95335fe81..e1699cf14 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1231,7 +1231,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> => Acc; => Gen; => Gen; - <_,Const> => Gen; + <_,Const> => Gen; -- not sure if this is an actual rule /IL _ => c }; @@ -1534,7 +1534,10 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> => verbalAgr np.a.pgn; _ => np.a.pgn }; - sc : Preposition = case o of {Subord => {s=[]; c=Acc} ; _ => vp.sc} ; + sc : Preposition = case o of { -- very unsure of this /IL + Subord => {s=[]; c=Acc} ; -- to prevent weird stuff with VVs + _ => case np.a.isPron of {True => noPrep; _ => vp.sc} + } ; subj = np.empty ++ sc.s ++ case vp.isPred of { False => (proDrop np).s ! sc.c ; -- prodrop if it's not predicative diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index c0e0b7e90..2fe248c3f 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -69,6 +69,12 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra, ParamX in { UseCopula = predV copula ; + -- : VP -> Prep -> VPSlash ; -- live in (it) + VPSlashPrep vp prep = vp ** { + c2 = prep ; + agrObj = \\_ => [] + } ; + AdvVP vp adv = insertStr adv.s vp ; AdVVP adv = insertStr adv.s ; From 29b5ac47fb12b67714727675d4c8b5875f0492e3 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 27 Nov 2018 17:34:16 +0100 Subject: [PATCH 157/172] (Ara) include N2's c2 in ComplN2 --- src/arabic/NounAra.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arabic/NounAra.gf b/src/arabic/NounAra.gf index 0ae1ad137..174a1d817 100644 --- a/src/arabic/NounAra.gf +++ b/src/arabic/NounAra.gf @@ -174,7 +174,7 @@ lin Use2N3 n3 = n3 ; Use3N3 n3 = n3 ** {c2 = n3.c3} ; - ComplN2 n2 np = UseN n2 ** {np=np.s} ; + ComplN2 n2 np = UseN n2 ** {np = \\c => n2.c2.s ++ np.s ! n2.c2.c} ; ComplN3 n3 np = ComplN2 n3 np ** {c2 = n3.c3} ; From f2e99934257483a393f2a26fbd34b34876dd315f Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 27 Nov 2018 17:35:59 +0100 Subject: [PATCH 158/172] (Ara) Fix bug in SlashV2VNP + refactor some related opers --- src/arabic/ResAra.gf | 23 ++++++++++++++--------- src/arabic/VerbAra.gf | 12 +++++++----- 2 files changed, 21 insertions(+), 14 deletions(-) diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index e1699cf14..0cf91ddbe 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1545,10 +1545,8 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> } ; } in wordOrder o vp.obj.a.isPron np.a.isPron - (vStr vp pgn t p) - (case of { - => BIND ++ vp.obj.s ; - _ => vp.obj.s }) + (vStr vp pgn t p) + vp.obj.s (pred vp pgn t p) vp.s2 subj @@ -1626,11 +1624,18 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> subj2np : Subj -> NP = \su -> su ** {a = {pgn = emptyNP.a.pgn ; isPron = su.isPron} ; empty=[]} ; emptyObj : Obj = emptyNP ** {s=[]} ; - insertObj : NP -> VPSlash -> VP = \np,vp -> vp ** - { obj = {s = vp.obj.s -- old object, if there was one - ++ vp.c2.s ++ np.s ! vp.c2.c -- new object - ++ vp.agrObj ! np.a.pgn ; -- only used for SlashV2V - a = np.a} }; + insertObj : NP -> VPSlash -> VP = \np,vp -> vp ** { + obj = {s = vp.obj.s -- old object, if there was one + ++ bindIfPron np vp -- new object, bind if pronoun and not pred + ++ vp.agrObj ! np.a.pgn ; -- only used for SlashV2V + a = np.a} + } ; + + bindIfPron : NP -> {c2:Preposition; isPred:Bool} -> Str = \np,vp -> + let bind = case of { + => BIND ; + _ => [] } + in vp.c2.s ++ bind ++ np.s ! vp.c2.c ; insertPred : Comp -> VP -> VP = \p,vp -> vp ** { pred = p; diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index 2fe248c3f..abfdc2189 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -14,17 +14,19 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra, ParamX in { agrObj = \\pgn => v2v.c3.s -- أَنْ ++ vp.s ! pgn ! VPImpf Cnj ; isPred = False ; - c2 = v2v.c2 ; -- for the direct object + c2 = v2v.c2 ; -- preposition for the direct object sc = v2v.sc } ; -- : V2V -> NP -> VPSlash -> VPSlash ; -- beg me to buy - SlashV2VNP v2v np vps = let v2vVP = predV v2v in -- IL + SlashV2VNP v2v np vps = let v2vVP = slashV2 v2v in -- IL vps ** { - s = \\pgn,vpf => v2vVP.s ! pgn ! vpf - ++ v2v.c2.s ++ np.s ! v2v.c2.c + s = \\pgn,vpf => v2vVP.s ! pgn ! vpf -- main verb agrees with subject + ++ bindIfPron np v2vVP ++ v2v.c3.s -- أَنْ - ++ vps.s ! pgn ! VPImpf Cnj ; + ++ vps.s ! np.a.pgn ! VPImpf Cnj -- verb from old VP agrees with object + ++ vps.obj.s ; -- otherwise obj appears in a weird place /IL + obj = emptyObj ; isPred = False ; -- preposition for the direct object comes from VP sc = v2v.sc From 19129aa420231655534428dba7bbda36157308d5 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 27 Nov 2018 17:36:23 +0100 Subject: [PATCH 159/172] (Ara) misc. small fixes and additions --- src/arabic/IdiomAra.gf | 9 ++++++--- src/arabic/ResAra.gf | 4 ++++ src/arabic/SentenceAra.gf | 6 ++---- src/arabic/StructuralAra.gf | 2 +- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/src/arabic/IdiomAra.gf b/src/arabic/IdiomAra.gf index c46bbadd4..7a18b1334 100644 --- a/src/arabic/IdiomAra.gf +++ b/src/arabic/IdiomAra.gf @@ -10,7 +10,9 @@ concrete IdiomAra of Idiom = CatAra ** open -- : VP -> Cl ; -- it is hot ImpersCl vp = - let it : ResAra.NP = pron2np (pgn2pron vp.obj.a.pgn) ; -- if no obj, Per3 Masc Sg chosen by default + let it : ResAra.NP = case vp.isPred of { + True => pron2np (pgn2pron vp.obj.a.pgn) ; + False => pgn2pron vp.obj.a.pgn } ; -- if no obj, Per3 Masc Sg chosen by default in predVP it vp ; -- : VP -> Cl ; -- one sleeps @@ -21,8 +23,9 @@ concrete IdiomAra of Idiom = CatAra ** open -- : Adv -> S -> Cl ; -- it is here she slept CleftAdv adv s = - let comp : Comp = CompAdv adv in - predVP he_Pron (UseComp comp) ; + let comp : Comp = CompAdv (lin Adv {s = adv.s ++ s.s ! Verbal}) ; -- no idea about word order /IL + pass_V = mkV "مضي" va vi ; -- switch to copula or some other verb if better /IL + in predVP emptyNP (UseV pass_V ** {isPred=True ; pred=comp}) ; -- very hacky /IL -- : NP -> Cl ; -- there is a house ExistNP np = diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 0cf91ddbe..6156d4357 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1656,6 +1656,10 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> VPSlash : Type = VP ** {c2 : Preposition ; agrObj : PerGenNum => Str} ; ClSlash : Type = VPSlash ** {subj : Subj} ; + emptyVPslash : VP -> VPSlash = \vp -> vp ** { + c2 = noPrep ; agrObj = \\_ => [] + } ; + slashV2 : Verb2 -> VPSlash = \v -> predV v ** {c2 = v.c2 ; agrObj = \\_ => []} ; diff --git a/src/arabic/SentenceAra.gf b/src/arabic/SentenceAra.gf index e6c7fbdc9..854daaf4c 100644 --- a/src/arabic/SentenceAra.gf +++ b/src/arabic/SentenceAra.gf @@ -52,10 +52,8 @@ concrete SentenceAra of Sentence = CatAra ** open SlashVP = predVPSlash ; AdvSlash slash adv = slash ** { s2 = slash.s2 ++ adv.s } ; --- SlashPrep : Cl -> Prep -> ClSlash --- Will be awkward to implement in the way ClSlash is now. --- ClSlash is implemented the way it is now for a good reason: --- we need to support different word orders. +-- : Cl -> Prep -> ClSlash +-- SlashPrep cl prep = TODO -- SlashVS np vs sslash = TODO diff --git a/src/arabic/StructuralAra.gf b/src/arabic/StructuralAra.gf index f4abefa28..c6c8aaafc 100644 --- a/src/arabic/StructuralAra.gf +++ b/src/arabic/StructuralAra.gf @@ -46,7 +46,7 @@ concrete StructuralAra of Structural = CatAra ** n = Pl ; d = Def } ; -- IL --- if_Subj = ss "ِف" ; + if_Subj = mkSubj "إِذَا" Verbal ; in8front_Prep = mkPrep "مُقَابِلَ" ; i_Pron = ResAra.i_Pron ; in_Prep = mkPrep "فِي" ; From fe483f3639eb7cf957b2316e2fb123f68feb865b Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Wed, 28 Nov 2018 13:52:44 +0100 Subject: [PATCH 160/172] fix in the paradigm --- src/bulgarian/ParadigmsBul.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bulgarian/ParadigmsBul.gf b/src/bulgarian/ParadigmsBul.gf index 4be8526c9..ca20ce794 100644 --- a/src/bulgarian/ParadigmsBul.gf +++ b/src/bulgarian/ParadigmsBul.gf @@ -2019,7 +2019,7 @@ oper (v0+"") (v0+"") (v0+"") - (v0+"-") + (v0+"") (v0+"") (v0+"") (v0+"") ; From fc37e26bcae40bdbbab3638591cf199c243e343e Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Wed, 28 Nov 2018 13:53:07 +0100 Subject: [PATCH 161/172] remove the obsolete Parse grammar --- src/bulgarian/ParseBul.gf | 165 ----------------------------------- src/english/ParseEng.gf | 175 -------------------------------------- src/swedish/ParseSwe.gf | 126 --------------------------- 3 files changed, 466 deletions(-) delete mode 100644 src/bulgarian/ParseBul.gf delete mode 100644 src/english/ParseEng.gf delete mode 100644 src/swedish/ParseSwe.gf diff --git a/src/bulgarian/ParseBul.gf b/src/bulgarian/ParseBul.gf deleted file mode 100644 index 99c9844bd..000000000 --- a/src/bulgarian/ParseBul.gf +++ /dev/null @@ -1,165 +0,0 @@ ---# -path=alltenses:../english:../translator:../abstract -concrete ParseBul of ParseEngAbs = - TenseX - [IAdv, CAdv], - CatBul, - NounBul - [PPartNP], - AdjectiveBul, - NumeralBul, - SymbolBul [PN, Symb, String, CN, Card, NP, MkSymb, SymbPN, CNNumNP], - ConjunctionBul, - VerbBul - [SlashV2V, PassV2, UseCopula, ComplVV], - AdverbBul, - PhraseBul, - SentenceBul, - QuestionBul, - RelativeBul, - IdiomBul [NP, VP, Tense, Cl, ProgrVP, ExistNP], - ExtraBul [NP, Quant, VPSlash, VP, Tense, GenNP, PassVPSlash, - Temp, Pol, Conj, VPS, ListVPS, S, MkVPS, BaseVPS, ConsVPS, ConjVPS, PredVPS, - VPI, VPIForm, VPIInf, VPIPresPart, ListVPI, VV, MkVPI, BaseVPI, ConsVPI, ConjVPI, ComplVPIVV, - ComplSlashPartLast, - ClSlash, RCl, EmptyRelSlash], - DocumentationBul, - DictionaryBul ** -open ResBul, Prelude in { - -flags - literal=Symb ; - coding = utf8 ; - -lin - CompoundCN num noun cn = { - s = \\nf => num.s ! CFNeut Indef ++ (noun.rel ! nform2aform nf cn.g) ++ (cn.s ! (indefNForm nf)) ; - g = cn.g - } ; - - GerundN v = { - s = \\nform => v.s ! Imperf ! VNoun nform ; - rel = \\aform => v.s ! Imperf ! VPresPart aform ++ - case v.vtype of { - VMedial c => reflClitics ! c; - _ => [] - }; - g = ANeut - } ; - - GerundAP v = { - s = \\aform => v.s ! Imperf ! VPresPart aform ++ - case v.vtype of { - VMedial c => reflClitics ! c; - _ => [] - }; - adv = v.s ! Imperf ! VPresPart (ASg Neut Indef); - isPre = True - } ; - - PastPartAP v = { - s = \\aform => v.s ! Perf ! VPassive aform ; - adv = v.s ! Perf ! VPassive (ASg Neut Indef); - isPre = True - } ; - - PositAdVAdj a = {s = a.adv} ; - - that_RP = { - s = whichRP - } ; - - UseQuantPN q pn = { s = table { - RObj Dat => "на" ++ pn.s; - _ => pn.s - } ; - a = {gn = GSg pn.g; p = P3}; - p = q.p - } ; - - PastPartRS ant pol vp = { - s = \\agr => - ant.s ++ pol.s ++ - vp.ad.s ++ - case pol.p of {Pos => ""; Neg => "не"} ++ - case ant.a of {Simul => ""; Anter => auxBe ! VPerfect (aform agr.gn Indef (RObj Acc))} ++ - vp.s ! Perf ! VPassive (aform agr.gn Indef (RObj Acc)) ++ - case vp.vtype of { - VMedial c => reflClitics ! c; - _ => [] - } ++ - vp.compl1 ! agr ++ vp.compl2 ! agr ; - } ; - - PresPartRS ant pol vp = { - s = \\agr => - ant.s ++ pol.s ++ - vp.ad.s ++ - case pol.p of {Pos => ""; Neg => "не"} ++ - case ant.a of {Simul => ""; Anter => auxBe ! VPerfect (aform agr.gn Indef (RObj Acc))} ++ - vp.s ! Imperf ! VPresPart (aform agr.gn Indef (RObj Acc)) ++ - case vp.vtype of { - VMedial c => reflClitics ! c; - _ => [] - } ++ - vp.compl ! agr ; - } ; - - SlashV2V vv ant p vp = - insertSlashObj2 (\\agr => ant.s ++ p.s ++ vv.c3.s ++ - daComplex ant.a (orPol p.p vp.p) vp ! Perf ! agr) - Pos - (slashV vv vv.c2) ; - - ComplVV vv ant p vp = - insertObj (\\agr => ant.s ++ p.s ++ - case vv.typ of { - VVInf => daComplex ant.a p.p vp ! Perf ! agr; - VVGerund => gerund vp ! Imperf ! agr - }) vp.p - (predV vv) ; - - PredVPosv np vp = { - s = \\t,a,p,o => - let - subj = np.s ! (case vp.vtype of { - VNormal => RSubj ; - VMedial _ => RSubj ; - VPhrasal c => RObj c}) ; - verb : Bool => Str - = \\q => vpTenses vp ! t ! a ! p ! np.a ! q ! Perf ; - compl = vp.compl ! np.a - in case o of { - Main => compl ++ subj ++ verb ! False ; - Inv => verb ! False ++ compl ++ subj ; - Quest => compl ++ subj ++ verb ! True - } - } ; - - CompS s = {s = \\_ => "че" ++ s.s; p = Pos} ; - CompQS qs = {s = \\_ => qs.s ! QIndir; p = Pos} ; - CompVP ant p vp = {s = let p' = case vp.p of { - Neg => Neg; - Pos => p.p - } - in \\agr => ant.s ++ p.s ++ - daComplex ant.a p' vp ! Perf ! agr; - p = Pos - } ; - - VPSlashVS vs vp = - let vp = insertObj (daComplex Simul Pos vp ! Perf) vp.p (predV vs) - in { s = vp.s; - ad = vp.ad; - compl1 = \\_ => ""; - compl2 = vp.compl; - vtype = vp.vtype; - p = vp.p; - c2 = {s=""; c=Acc} - } ; - - ApposNP np1 np2 = { - s = \\role => np1.s ! role ++ comma ++ np2.s ! RSubj ; - a = np1.a ; - p = np1.p - } ; - - UttAdV adv = adv; - -} diff --git a/src/english/ParseEng.gf b/src/english/ParseEng.gf deleted file mode 100644 index c97878145..000000000 --- a/src/english/ParseEng.gf +++ /dev/null @@ -1,175 +0,0 @@ ---# -path=.:../abstract:../translator - -concrete ParseEng of ParseEngAbs = - TenseX - [Pol, PNeg, PPos, SC], - CatEng, - NounEng - [PPartNP], - AdjectiveEng, - NumeralEng, - SymbolEng [PN, Symb, String, CN, Card, NP, MkSymb, SymbPN, CNNumNP], - ConjunctionEng, - VerbEng - [SlashV2V, PassV2, UseCopula, ComplVV, ComplVS], - AdverbEng, - PhraseEng, - SentenceEng - [UseCl], -- replaced by UseCl | ContractedUseCl - QuestionEng, - RelativeEng, - IdiomEng [NP, VP, Tense, Cl, ProgrVP, ExistNP, SelfAdvVP, SelfAdVVP, SelfNP], - ConstructionEng, - DocumentationEng, - ExtraEng [NP, Quant, VPSlash, VP, Tense, GenNP, PassVPSlash, PassAgentVPSlash, - Temp, Pol, Conj, VPS, ListVPS, S, Num, CN, RP, MkVPS, BaseVPS, ConsVPS, ConjVPS, PredVPS, GenRP, - VPI, VPIForm, VPIInf, VPIPresPart, ListVPI, VV, MkVPI, BaseVPI, ConsVPI, ConjVPI, ComplVPIVV, - ComplSlashPartLast, - ClSlash, RCl, EmptyRelSlash, VS, V2S, ComplBareVS, SlashBareV2S], - - DictionaryEng ** -open MorphoEng, ResEng, ParadigmsEng, (G = GrammarEng), (E = ExtraEng), Prelude in { - -flags - literal=Symb ; - --- exceptional linearizations -lin - UseCl t p cl = G.UseCl t p cl | E.ContractedUseCl t p cl ; - -lin - myself_NP = regNP "myself" singular ; - yourselfSg_NP = regNP "yourself" singular ; - himself_NP = regNP "himself" singular ; - herself_NP = regNP "herself" singular ; - itself_NP = regNP "itself" singular ; - ourselves_NP = regNP "ourselves" plural ; - yourselfPl_NP = regNP "yourself" plural ; - themselves_NP = regNP "themselves" plural ; - - CompoundSgCN cn1 cn2 = { - s = \\n,c => cn1.s ! Sg ! Nom ++ cn2.s ! n ! c ; - g = cn2.g - } ; - - CompoundPlCN cn1 cn2 = { - s = \\n,c => cn1.s ! Pl ! Nom ++ cn2.s ! n ! c ; - g = cn2.g - } ; - - DashSgN n1 n2 = { - s = \\n,c => n1.s ! Sg ! Nom ++ "-" ++ n2.s ! n ! c ; - g = n2.g - } ; - - DashPlN n1 n2 = { - s = \\n,c => n1.s ! Pl ! Nom ++ "-" ++ n2.s ! n ! c ; - g = n2.g - } ; - - GerundN v = { - s = \\n,c => v.s ! VPresPart ; - g = Neutr - } ; - - GerundAP v = { - s = \\agr => v.s ! VPresPart ; - isPre = True - } ; - - PastPartAP vp = { - s = \\a => vp.ad ! a ++ vp.ptp ++ vp.p ++ vp.c2 ++ vp.s2 ! a ++ vp.ext ; - isPre = vp.isSimple -- depends on whether there are complements - } ; - - OrdCompar a = {s = \\c => a.s ! AAdj Compar c } ; - - PositAdVAdj a = {s = a.s ! AAdv} ; - - UseQuantPN q pn = {s = \\c => q.s ! False ! Sg ++ pn.s ! npcase2case c ; a = agrgP3 Sg pn.g} ; - - SlashV2V v ant p vp = insertObjc (\\a => v.c3 ++ ant.s ++ p.s ++ - infVP v.typ vp ant.a p.p a) - (predVc v) ; - - SlashSlashV2V v ant p vp = insertObjc (\\a => v.c3 ++ ant.s ++ p.s ++ - infVP v.typ vp ant.a p.p a) - (predVc v) ; - - SlashVPIV2V v p vpi = insertObjc (\\a => p.s ++ - v.c3 ++ - vpi.s ! VVAux ! a) - (predVc v) ; - ComplVV v a p vp = insertObj (\\agr => a.s ++ p.s ++ - infVP v.typ vp a.a p.p agr) - (predVV v) ; - ComplVS vs s = G.ComplVS vs s | ComplBareVS vs s ; - - PredVPosv np vp = { - s = \\t,a,b,o => - let - verb = vp.s ! t ! a ! b ! o ! np.a ; - compl = vp.s2 ! np.a - in - case o of { - ODir _ => compl ++ frontComma ++ np.s ! npNom ++ verb.aux ++ vp.ad ! np.a ++ verb.fin ++ verb.adv ++ verb.inf ; - OQuest => verb.aux ++ compl ++ frontComma ++ np.s ! npNom ++ verb.adv ++ vp.ad ! np.a ++ verb.fin ++ verb.inf - } - } ; - - PredVPovs np vp = { - s = \\t,a,b,o => - let - verb = vp.s ! t ! a ! b ! o ! np.a ; - compl = vp.s2 ! np.a - in - case o of { - ODir _ => compl ++ frontComma ++ verb.aux ++ verb.adv ++ vp.ad ! np.a ++ verb.fin ++ verb.inf ++ np.s ! npNom ; - OQuest => verb.aux ++ compl ++ verb.adv ++ vp.ad ! np.a ++ verb.fin ++ verb.inf ++ np.s ! npNom - } - } ; - - that_RP = { - s = \\_ => "that" ; - a = RNoAg - } ; - - who_RP = { - s = \\_ => "who" ; - a = RNoAg - } ; - - CompS s = {s = \\_ => "that" ++ s.s} ; - CompQS qs = {s = \\_ => qs.s ! QIndir} ; - CompVP ant p vp = {s = \\a => ant.s ++ p.s ++ - infVP VVInf vp ant.a p.p a} ; - - VPSlashVS vs vp = - insertObj (\\a => infVP VVInf vp Simul CPos a) (predV vs) ** - {c2 = ""; missingAdv = False; gapInMiddle = False} ; - - PastPartRS ant pol vps = { - s = \\agr => vps.ad ! agr ++ vps.ptp ++ vps.s2 ! agr ; - c = npNom - } ; - - PresPartRS ant pol vp = { - s = \\agr => vp.ad ! agr ++ vp.prp ++ vp.p ++ vp.s2 ! agr; - c = npNom - } ; - - ApposNP np1 np2 = { - s = \\c => np1.s ! c ++ frontComma ++ np2.s ! npNom ++ finalComma ; - a = np1.a - } ; - - NameCN pn cn = { - s = \\n,c => pn.s ! npcase2case npNom ++ cn.s ! n ! c ; - g = cn.g - } ; - - AdAdV = cc2 ; - - UttAdV adv = adv; - -lin - PPos = {s = [] ; p = CPos} ; - PNeg = {s = [] ; p = CNeg True} | {s = [] ; p = CNeg False} ; - -} diff --git a/src/swedish/ParseSwe.gf b/src/swedish/ParseSwe.gf deleted file mode 100644 index 79e8fe715..000000000 --- a/src/swedish/ParseSwe.gf +++ /dev/null @@ -1,126 +0,0 @@ ---# -path=.:../english/:../scandinavian:alltenses:../abstract:../translator -concrete ParseSwe of ParseEngAbs = - TenseSwe, - NounSwe - [PPartNP], - AdjectiveSwe, - NumeralSwe, - SymbolSwe [PN, Symb, String, CN, Card, NP, MkSymb, SymbPN, CNNumNP], - ConjunctionSwe, - VerbSwe - [SlashV2V, PassV2, UseCopula, ComplVV], - AdverbSwe, - PhraseSwe, - SentenceSwe, - QuestionSwe, - RelativeSwe, - IdiomSwe [NP, VP, Tense, Cl, ProgrVP, ExistNP, SelfAdvVP, SelfAdVVP, SelfNP], - ConstructionSwe, - DocumentationSwe, - ExtraSwe [NP, Quant, VPSlash, VP, Tense, GenNP, PassVPSlash, PassAgentVPSlash, - Temp, Pol, Conj, VPS, ListVPS, S, Num, CN, RP, MkVPS, BaseVPS, ConsVPS, ConjVPS, PredVPS, GenRP, - VPI, VPIForm, VPIInf, VPIPresPart, ListVPI, VV, MkVPI, BaseVPI, ConsVPI, ConjVPI, ComplVPIVV, - ClSlash, RCl, EmptyRelSlash], - - DictionarySwe ** -open MorphoSwe, ResSwe, ParadigmsSwe, SyntaxSwe, CommonScand, (E = ExtraSwe), Prelude in { - -flags - literal=Symb ; - -lin -{- - myself_NP = regNP "myself" singular ; - yourselfSg_NP = regNP "yourself" singular ; - himself_NP = regNP "himself" singular ; - herself_NP = regNP "herself" singular ; - itself_NP = regNP "itself" singular ; - ourself_NP = regNP "ourself" plural ; - yourselfPl_NP = regNP "yourself" plural ; - themself_NP = regNP "themself" plural ; - themselves_NP = regNP "themselves" plural ; --} - - CompoundCN num noun cn = { - s = \\n,d,c => num.s ! cn.g ++ noun.co ++ BIND ++ cn.s ! n ! d ! c ; - g = cn.g ; - isMod = False - } ; - - DashCN noun1 noun2 = { - s = \\n,d,c => noun1.co ++ BIND ++ noun2.s ! n ! d ! c ; - g = noun2.g ; - co = noun1.co ++ BIND ++ noun2.co ---- add s if not already there - } ; - - GerundN v = { - s = \\n,d,c => v.s ! VI (VPtPres n d c) ; - g = Neutr ; - co = v.s ! VI (VPtPres Sg Indef Nom) ; - } ; - - GerundAP v = { - s = \\_ => v.s ! VI (VPtPres Sg Indef Nom) ; - isPre = True - } ; - - PastPartAP v = { - s = \\afpos => v.s ! VI (VPtPret afpos Nom) ; - isPre = True - } ; - - - OrdCompar a = { - s = case a.isComp of { - True => "mera" ++ a.s ! AF (APosit (Weak Sg)) Nom ; - _ => a.s ! AF ACompar Nom - } ; - isDet = True - } ; - - PositAdVAdj a = {s = a.s ! adverbForm} ; - - UseQuantPN q pn = { - s = \\c => q.s ! Sg ! True ! False ! pn.g ++ pn.s ! caseNP c ; - a = agrP3 pn.g Sg - } ; - - SlashV2V v ant p vp = predV v ** { - n3 = \\a => v.c3.s ++ ant.s ++ p.s ++ infVPPlus vp a ant.a p.p ; - c2 = v.c2 - } ; - - SlashVPIV2V v p vpi = predV v ** { - n3 = \\a => v.c3.s ++ p.s ++ negation ! p.p ++ vpi.s ! VPIInf ! a ; - c2 = v.c2 - } ; - - ComplVV v ant pol vp = insertObjPost (\\a => v.c2.s ++ ant.s ++ pol.s ++ infVPPlus vp a ant.a pol.p) (predV v) ; - - - PredVPosv np vp = mkCl np vp ; ---- TODO restructure all this using Extra.Foc - PredVPovs np vp = mkCl np vp ; ---- - - that_RP = which_RP ; -- som - who_RP = which_RP ; - - CompS s = {s = \\_ => "att" ++ s.s ! Sub} ; - CompQS qs = {s = \\_ => qs.s ! QIndir} ; - CompVP ant p vp = {s = \\a => ant.s ++ p.s ++ infVPPlus vp a ant.a p.p} ; - - -- VPSlashVS : VS -> VP -> VPSlash - ---VPSlashVS vs vp = - --- insertObj (\\a => infVP VVInf vp Simul CPos a) (predV vs) ** - --- {c2 = ""; gapInMiddle = False} ; - - PastPartRS ant pol vps = mkRS ant pol (mkRCl which_RP ) ; ---- maybe as participle construction? - - PresPartRS ant pol vp = mkRS ant pol (mkRCl which_RP vp) ; --- probably not as participle construction - - ApposNP np1 np2 = { - s = \\c => np1.s ! c ++ comma ++ np2.s ! NPNom ; - a = np1.a - } ; - - AdAdV = cc2 ; - - UttAdV adv = adv; -} From 23f3fd244a24ea3a9ccfa0bdb5837ee92765a8ef Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Wed, 28 Nov 2018 13:54:56 +0100 Subject: [PATCH 162/172] rename Make.* to Setup.* to follow the Cabal convention --- Makefile | 2 +- README.md | 16 ++++++++-------- Make.bat => Setup.bat | 0 Make.hs => Setup.hs | 0 Make.sh => Setup.sh | 0 5 files changed, 9 insertions(+), 9 deletions(-) rename Make.bat => Setup.bat (100%) rename Make.hs => Setup.hs (100%) rename Make.sh => Setup.sh (100%) diff --git a/Makefile b/Makefile index 7dd6b9157..aaaaf711a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # A simple wrapper over the Haskell-based RGL build script -RUNMAKE=runghc Make.hs +RUNMAKE=runghc Setup.hs .PHONY: build copy install doc clean diff --git a/README.md b/README.md index 4cd0b2449..687257bc9 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,9 @@ For more about the RGL, see the [synopsis page](http://www.grammaticalframework. There are 3 ways to build and install the RGL: -- Haskell script `Make.hs` -- Shell script `Make.sh` (does not require Haskell) -- Windows batch file `Make.bat` (does not require Haskell) +- Haskell script `Setup.hs` +- Shell script `Setup.sh` (does not require Haskell) +- Windows batch file `Setup.bat` (does not require Haskell) ## Install locations @@ -44,7 +44,7 @@ Description of columns: Columns can be a string, just `y`'s (where nothing means `n`) or just (`n`'s where nothing means `y`). -## Haskell script: `Make.hs` +## Haskell script: `Setup.hs` This build method gives you most options. You will need Haskell installed on your system. @@ -66,7 +66,7 @@ There is also `make clean` available. For more fine-grained control over the build process, you can run the build script directly: ``` -runghc Make ... +runghc Setup.hs ... ``` Where `...` is one of: @@ -96,7 +96,7 @@ If ommitted, the default command is `prelude all`. - The path to GF installed on your system can be specified via the `--gf` flag (default is that the `gf` executable is in the global system path). - The `--dest` flag can be used to manually specify where the compiled RGL modules should be copied/installed. This is the same place as `GF_LIB_PATH`. -## Shell script: `Make.sh` +## Shell script: `Setup.sh` This method is provided as an alternative for those who don't have Haskell installed. Simply run the script to build the entire RGL and install in the default location. @@ -106,13 +106,13 @@ You can pass the following flags: - `--gf=...` to specify the path to the `gf` executable, if not available on the system path - `--verbose` or `-v` to show a list of files being built (errors will always be shown) -## Windows batch file: `Make.bat` +## Windows batch file: `Setup.bat` **This script is still untested.** This method is provided as an alternative for Windows users who don't have Haskell installed. -It is supposed to be a port of Make.sh and works in largely the same way. +It is supposed to be a port of Setup.sh and works in largely the same way. In particular, it accepts the same flags (in the same format) as described above. However it currently tries to build all modules for all languages and doesn't consider the details of which modules should be compiled for each language (specified in `languages.csv`) diff --git a/Make.bat b/Setup.bat similarity index 100% rename from Make.bat rename to Setup.bat diff --git a/Make.hs b/Setup.hs similarity index 100% rename from Make.hs rename to Setup.hs diff --git a/Make.sh b/Setup.sh similarity index 100% rename from Make.sh rename to Setup.sh From a7c471214bc4c634dad3e97a7469ba98083a415f Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 28 Nov 2018 13:55:34 +0100 Subject: [PATCH 163/172] (Ara) Fixes in negations --- src/arabic/ExtendAra.gf | 2 +- src/arabic/ResAra.gf | 42 ++++++++++++++++++++++++++--------------- src/arabic/VerbAra.gf | 2 +- 3 files changed, 29 insertions(+), 17 deletions(-) diff --git a/src/arabic/ExtendAra.gf b/src/arabic/ExtendAra.gf index a371dd234..c59d6de58 100644 --- a/src/arabic/ExtendAra.gf +++ b/src/arabic/ExtendAra.gf @@ -39,7 +39,7 @@ concrete ExtendAra of Extend = wordOrderNoSubj Nominal -- Nominal (=SVO) generalises best for ConjVPS. vp.obj.a.isPron - (vStr vp pgn t.t p.p) + (vStr vp pgn t.t p.p Nominal) (case of { => BIND ++ vp.obj.s ; _ => vp.obj.s }) diff --git a/src/arabic/ResAra.gf b/src/arabic/ResAra.gf index 6156d4357..62d118fd4 100644 --- a/src/arabic/ResAra.gf +++ b/src/arabic/ResAra.gf @@ -1534,9 +1534,13 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> => verbalAgr np.a.pgn; _ => np.a.pgn }; - sc : Preposition = case o of { -- very unsure of this /IL - Subord => {s=[]; c=Acc} ; -- to prevent weird stuff with VVs - _ => case np.a.isPron of {True => noPrep; _ => vp.sc} + + -- very unsure about this /IL + sc : Preposition = case o of { + Subord => {s=[]; c=Acc} ; + _ => case np.a.isPron of { + True => noPrep ; -- to prevent weird stuff with VVs, might be overly specific + _ => vp.sc } } ; subj = np.empty ++ sc.s ++ case vp.isPred of { @@ -1545,7 +1549,7 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> } ; } in wordOrder o vp.obj.a.isPron np.a.isPron - (vStr vp pgn t p) + (vStr vp pgn t p o) vp.obj.s (pred vp pgn t p) vp.s2 @@ -1581,21 +1585,29 @@ patHollowImp : (_,_ :Str) -> Gender => Number => Str =\xaf,xAf -> _ => vp.pred.s ! gn ! Acc --xabar kaana wa laysa manSoob } ; - vStr : VP -> PerGenNum -> ParamX.Tense -> Polarity -> Str = \vp,pgn,tn,pl -> + vStr : VP -> PerGenNum -> ParamX.Tense -> Polarity -> Order -> Str = \vp,pgn,tn,pl,o -> let kataba = vp.s ! pgn ! VPPerf ; yaktubu = vp.s ! pgn ! VPImpf Ind ; yaktuba = vp.s ! pgn ! VPImpf Cnj ; yaktub = vp.s ! pgn ! VPImpf Jus ; - in case of { - => yaktubu ; - => "لَا" ++ yaktubu ; - => "" ; --no verb "to be" in present - => "لَيسَ" ;--same here, just add negation particle - <_, Past, Pos> => kataba ; - <_, Past, Neg> => "لَمْ" ++ yaktub ; - <_, Cond, _ > => yaktuba ; - <_, Fut, Pos> => glue "سَ" yaktubu ; - <_, Fut, Neg> => "لَنْ" ++ yaktuba + -- Various negative particles + la = "لَا" ; + laysa = "لَيسَ" ; -- "neg. copula" + lam = "لَمْ" ; -- neg. past + alla = "أَلَّا" ; -- neg. subjunctive + lan = "لَنْ" ; -- neg. future + in case of { + => yaktubu ; + => la ++ yaktubu ; + => [] ; --no verb "to be" in present + => laysa ; --same here, just add negation particle + <_, Past, Pos, _> => kataba ; + <_, Past, Neg, _> => lam ++ yaktub ; + <_, Cond, Pos, _> => yaktuba ; + <_, Cond, Neg, _> => alla ++ yaktuba ; + <_, Fut, Pos, _> => glue "سَ" yaktubu ; + <_, Fut, Neg, Subord> => alla ++ yaktuba ; -- might be too specific for just one case /IL + <_, Fut, Neg, _> => lan ++ yaktuba } ; -- in verbal sentences, the verb agrees with the subject diff --git a/src/arabic/VerbAra.gf b/src/arabic/VerbAra.gf index abfdc2189..ce5686ae2 100644 --- a/src/arabic/VerbAra.gf +++ b/src/arabic/VerbAra.gf @@ -12,7 +12,7 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra, ParamX in { vp ** { s = v2vVP.s ; agrObj = \\pgn => v2v.c3.s -- أَنْ - ++ vp.s ! pgn ! VPImpf Cnj ; + ++ vp.s ! pgn ! VPImpf Cnj ; -- this will agree with the object added by ComplSlash isPred = False ; c2 = v2v.c2 ; -- preposition for the direct object sc = v2v.sc From 0d0462e5a7f960eace6dc45f8136998aaf9e991d Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Wed, 28 Nov 2018 14:00:34 +0100 Subject: [PATCH 164/172] remove the old WordNet experiment --- src/english/WNDictEng.gf | 86698 ---------------------------------- src/english/WNDictEngAbs.gf | 86626 --------------------------------- 2 files changed, 173324 deletions(-) delete mode 100644 src/english/WNDictEng.gf delete mode 100644 src/english/WNDictEngAbs.gf diff --git a/src/english/WNDictEng.gf b/src/english/WNDictEng.gf deleted file mode 100644 index 6717256d5..000000000 --- a/src/english/WNDictEng.gf +++ /dev/null @@ -1,86698 +0,0 @@ --- English lexicon for GF, produced from: --- Oxford advanced learner's dictionary of current English: --- expanded 'computer usable' version compiled by Roger Mitton --- The computer usable version is transcribed from: --- Oxford advanced learner's dictionary of current English --- A.S. Hornby ; with the assistance of A.P. Cowie [and] J. Windsor Lewis. --- 3rd. ed., London : Oxford University Press, 1974. --- Distributed as 'dict0710' by: --- Oxford Text Archive --- Oxford University Computing Services --- 13 Banbury Road --- Oxford --- OX2 6NN --- Under these conditions: --- Freely available for non-commercial use provided that this header is --- included in its entirety with any copy distributed. --- --- GF version generated by asc2gf, Bjorn Bringert Nov 2008 --- based on asc2lex, Matthew Purver Nov 2001 --- http://www.stanford.edu/~mpurver/software.html - --- The lexicon was further extended using the WordNet --- The final GF version was generated by wn2gf.py, Shafqat Virk April 2012. --- Special thanks to Krasimir Angelov for his useful suggestions and remarks - ---# -path=.:../prelude:../abstract:../common -concrete WNDictEng of WNDictEngAbs = CatEng ** open MorphoEng, ResEng, ParadigmsEng, IrregEng, Prelude in { -flags -coding=utf8 ; - -lin a_PN = mkPN "A" ; -lin a'man_PN = mkPN "A'man" ; -lin a_horizon_PN = mkPN "A horizon" ; -lin a_line_PN = mkPN "A line" ; -lin a_list_PN = mkPN "A list" ; -lin a_scan_ultrasonography_PN = mkPN "A scan ultrasonography" ; -lin a_team_PN = mkPN "A team" ; -lin ab_PN = mkPN "AB" ; -lin abo_antibodies_PN = mkPN "ABO antibodies" ; -lin abo_blood_group_system_PN = mkPN "ABO blood group system" ; -lin ace_inhibitor_PN = mkPN "ACE inhibitor" ; -lin ad_Adv = mkAdv "AD" ; -lin ada_scid_PN = mkPN "ADA SCID" ; -lin aids_PN = mkPN "AIDS" ; -lin algol_PN = mkPN "ALGOL" ; -lin and_circuit_PN = mkPN "AND circuit" ; -lin apc_PN = mkPN "APC" ; -lin asap_Adv = mkAdv "ASAP" ; -lin ascii_character_PN = mkPN "ASCII character" ; -lin ascii_character_set_PN = mkPN "ASCII character set" ; -lin ascii_text_file_PN = mkPN "ASCII text file" ; -lin asl_PN = mkPN "ASL" ; -lin awol_PN = mkPN "Awol"; -- from DictEng -lin a_battery_PN = mkPN "A battery" ; -lin a_level_PN = mkPN "A level" ; -lin aachen_PN = mkPN "Aachen"; -- from DictEng -lin aalborg_PN = mkPN "Aalborg" ; -lin aalst_PN = mkPN "Aalst" ; -lin aalto_PN = mkPN "Aalto" ; -lin aare_PN = mkPN "Aare" ; -lin aarhus_PN = mkPN "Aarhus"; -- from DictEng -lin aaron_PN = mkPN "Aaron" ; -lin abadan_PN = mkPN "Abadan" ; -lin abbe_condenser_PN = mkPN "Abbe condenser" ; -lin abe_PN = mkPN "Abe"; -- from DictEng -lin abecedarian_PN = mkPN "Abecedarian" ; -lin abel_PN = mkPN "Abel" ; -lin abelard_PN = mkPN "Abelard" ; -lin abelian_group_PN = mkPN "Abelian group" ; -lin abelmoschus_PN = mkPN "Abelmoschus" ; -lin abercarn_PN = mkPN "Abercarn"; -- from DictEng -lin aberdare_PN = mkPN "Aberdare"; -- from DictEng -lin aberdeen_PN = mkPN "Aberdeen"; -- from DictEng -lin aberdeen_angus_PN = mkPN "Aberdeen Angus" ; -lin aberdonian_A = mkA "Aberdonian" ; -lin abergavenny_PN = mkPN "Abergavenny"; -- from DictEng -lin abergele_PN = mkPN "Abergele"; -- from DictEng -lin abertillery_PN = mkPN "Abertillery"; -- from DictEng -lin aberystwyth_PN = mkPN "Aberystwyth"; -- from DictEng -lin abidjan_PN = mkPN "Abidjan" ; -lin abies_PN = mkPN "Abies" ; -lin abilene_PN = mkPN "Abilene" ; -lin abingdon_PN = mkPN "Abingdon"; -- from DictEng -lin abkhaz_A = mkA "Abkhaz" ; -lin abkhaz_PN = mkPN "Abkhaz" ; -lin abkhazian_PN = mkPN "Abkhazian" ; -lin abnaki_A = mkA "Abnaki" ; -lin abnaki_PN = mkPN "Abnaki" ; -lin abney_level_PN = mkPN "Abney level" ; -lin aboriginal_A = compoundA (mkA "aboriginal"); -- from DictEng -lin aborigine_PN = mkPN "Aborigine" ; -lin abraham_PN = mkPN "Abraham"; -- from DictEng -lin abraham's_bosom_PN = mkPN "Abraham's bosom" ; -lin abramis_PN = mkPN "Abramis" ; -lin abrocoma_PN = mkPN "Abrocoma" ; -lin abronia_PN = mkPN "Abronia" ; -lin abruzzi_PN = mkPN "Abruzzi" ; -lin abstract_expressionism_PN = mkPN "Abstract Expressionism" ; -lin abu_dhabi_PN = mkPN "Abu Dhabi" ; -lin abu_hafs_al_masri_brigades_PN = mkPN "Abu Hafs al Masri Brigades" ; -lin abu_sayyaf_PN = mkPN "Abu Sayyaf" ; -lin abudefduf_PN = mkPN "Abudefduf" ; -lin abuja_PN = mkPN "Abuja" ; -lin abukir_PN = mkPN "Abukir" ; -lin abutilon_PN = mkPN "Abutilon" ; -lin abydos_PN = mkPN "Abydos" ; -lin abyssinian_PN = mkPN "Abyssinian" ; -lin abyssinian_banana_PN = mkPN "Abyssinian banana" ; -lin academy_award_PN = mkPN "Academy Award" ; -lin academy_of_motion_picture_arts_and_sciences_PN = mkPN "Academy of Motion Picture Arts and Sciences" ; -lin academy_of_television_arts_and_sciences_PN = mkPN "Academy of Television Arts and Sciences" ; -lin acadia_PN = mkPN "Acadia" ; -lin acadia_national_park_PN = mkPN "Acadia National Park" ; -lin acadian_PN = mkPN "Acadian" ; -lin acalypha_PN = mkPN "Acalypha" ; -lin acanthaceae_PN = mkPN "Acanthaceae" ; -lin acanthisitta_PN = mkPN "Acanthisitta" ; -lin acanthocephala_PN = mkPN "Acanthocephala" ; -lin acanthocereus_PN = mkPN "Acanthocereus" ; -lin acanthocybium_PN = mkPN "Acanthocybium" ; -lin acanthophis_PN = mkPN "Acanthophis" ; -lin acanthopterygii_PN = mkPN "Acanthopterygii" ; -lin acanthoscelides_PN = mkPN "Acanthoscelides" ; -lin acanthuridae_PN = mkPN "Acanthuridae" ; -lin acanthurus_PN = mkPN "Acanthurus" ; -lin acapulco_PN = mkPN "Acapulco" ; -lin acapulco_gold_PN = mkPN "Acapulco gold" ; -lin acaridae_PN = mkPN "Acaridae" ; -lin acarina_PN = mkPN "Acarina" ; -lin accipiter_PN = mkPN "Accipiter" ; -lin accipitridae_PN = mkPN "Accipitridae" ; -lin accipitriformes_PN = mkPN "Accipitriformes" ; -lin accra_PN = mkPN "Accra"; -- from DictEng -lin accrington_PN = mkPN "Accrington"; -- from DictEng -lin acer_PN = mkPN "Acer" ; -lin aceraceae_PN = mkPN "Aceraceae" ; -lin achaea_PN = mkPN "Achaea" ; -lin achaean_A = mkA "Achaean" ; -lin achaean_PN = mkPN "Achaean" ; -lin acheron_PN = mkPN "Acheron" ; -lin acheronian_A = mkA "Acheronian" ; -lin acherontia_PN = mkPN "Acherontia" ; -lin acheson_PN = mkPN "Acheson" ; -lin acheson_process_PN = mkPN "Acheson process" ; -lin acheta_PN = mkPN "Acheta" ; -lin achilles_PN = mkPN "Achilles"; -- from DictEng -lin achilles'_heel_PN = mkPN "Achilles' heel" ; -lin achilles_tendon_PN = mkPN "Achilles tendon" ; -lin achoerodus_PN = mkPN "Achoerodus" ; -lin achomawi_PN = mkPN "Achomawi" ; -lin achras_PN = mkPN "Achras" ; -lin acinonyx_PN = mkPN "Acinonyx" ; -lin acinos_PN = mkPN "Acinos" ; -lin acipenser_PN = mkPN "Acipenser" ; -lin acipenseridae_PN = mkPN "Acipenseridae" ; -lin acnidosporidia_PN = mkPN "Acnidosporidia" ; -lin acocanthera_PN = mkPN "Acocanthera" ; -lin aconcagua_PN = mkPN "Aconcagua" ; -lin aconitum_PN = mkPN "Aconitum" ; -lin acoraceae_PN = mkPN "Acoraceae" ; -lin acorus_PN = mkPN "Acorus" ; -lin acrasiomycetes_PN = mkPN "Acrasiomycetes" ; -lin acre_PN = mkPN "Acre" ; -lin acrididae_PN = mkPN "Acrididae" ; -lin acridotheres_PN = mkPN "Acridotheres" ; -lin acris_PN = mkPN "Acris" ; -lin acrobates_PN = mkPN "Acrobates" ; -lin acrocarpus_PN = mkPN "Acrocarpus" ; -lin acrocephalus_PN = mkPN "Acrocephalus" ; -lin acroclinium_PN = mkPN "Acroclinium" ; -lin acrocomia_PN = mkPN "Acrocomia" ; -lin acropora_PN = mkPN "Acropora" ; -lin acrostichum_PN = mkPN "Acrostichum" ; -lin actaea_PN = mkPN "Actaea" ; -lin actias_PN = mkPN "Actias" ; -lin actifed_PN = mkPN "Actifed" ; -lin actinia_PN = mkPN "Actinia" ; -lin actiniaria_PN = mkPN "Actiniaria" ; -lin actinidia_PN = mkPN "Actinidia" ; -lin actinidiaceae_PN = mkPN "Actinidiaceae" ; -lin actiniopteris_PN = mkPN "Actiniopteris" ; -lin actinomeris_PN = mkPN "Actinomeris" ; -lin actinomycetaceae_PN = mkPN "Actinomycetaceae" ; -lin actinomycetales_PN = mkPN "Actinomycetales" ; -lin actinomyxidia_PN = mkPN "Actinomyxidia" ; -lin actinopoda_PN = mkPN "Actinopoda" ; -lin actitis_PN = mkPN "Actitis" ; -lin actium_PN = mkPN "Actium" ; -lin acts_of_the_apostles_PN = mkPN "Acts of the Apostles" ; -lin ad_PN = mkPN "Ad"; -- from DictEng -lin ada_PN = mkPN "Ada"; -- from DictEng -lin adad_PN = mkPN "Adad" ; -lin adalia_PN = mkPN "Adalia" ; -lin adam_PN = mkPN "Adam"; -- from DictEng -lin adam's_peak_PN = mkPN "Adam's Peak" ; -lin adam's_needle_PN = mkPN "Adam's needle" ; -lin adams_PN = mkPN "Adams" ; -lin adana_PN = mkPN "Adana" ; -lin adansonia_PN = mkPN "Adansonia" ; -lin adapa_PN = mkPN "Adapa" ; -lin adapid_PN = mkPN "Adapid" ; -lin adar_PN = mkPN "Adar" ; -lin addis_ababa_PN = mkPN "Addis Ababa"; -- from DictEng -lin addison's_disease_PN = mkPN "Addison's disease" ; -lin additions_to_esther_PN = mkPN "Additions to Esther" ; -lin adelaide_PN = mkPN "Adelaide"; -- from DictEng -lin adelges_PN = mkPN "Adelges" ; -lin adelgidae_PN = mkPN "Adelgidae" ; -lin adelie_PN = mkPN "Adelie" ; -lin adelie_land_PN = mkPN "Adelie Land" ; -lin aden_PN = mkPN "Aden" ; -lin adenanthera_PN = mkPN "Adenanthera" ; -lin adenauer_PN = mkPN "Adenauer" ; -lin adenium_PN = mkPN "Adenium" ; -lin adenota_PN = mkPN "Adenota" ; -lin adi_granth_PN = mkPN "Adi Granth" ; -lin adiantaceae_PN = mkPN "Adiantaceae" ; -lin adiantum_PN = mkPN "Adiantum" ; -lin adige_PN = mkPN "Adige" ; -lin adirondacks_PN = mkPN "Adirondacks" ; -lin aditi_PN = mkPN "Aditi" ; -lin aditya_PN = mkPN "Aditya" ; -lin adlumia_PN = mkPN "Adlumia" ; -lin admiralty_island_PN = mkPN "Admiralty Island" ; -lin admiralty_islands_PN = mkPN "Admiralty Islands" ; -lin admiralty_range_PN = mkPN "Admiralty Range" ; -lin admission_day_PN = mkPN "Admission Day" ; -lin adonic_A = mkA "Adonic" ; -lin adonic_PN = mkPN "Adonic" ; -lin adonis_PN = mkPN "Adonis" ; -lin adrian_PN = mkPN "Adrian"; -- from DictEng -lin adriatic_PN = mkPN "Adriatic" ; -lin advanced_research_and_development_activity_PN = mkPN "Advanced Research and Development Activity" ; -lin advent_PN = mkPN "Advent" ; -lin advent_sunday_PN = mkPN "Advent Sunday" ; -lin adventism_PN = mkPN "Adventism" ; -lin adventist_PN = mkPN "Adventist" ; -lin adzhar_PN = mkPN "Adzhar" ; -lin aedes_PN = mkPN "Aedes" ; -lin aegates_isles_PN = mkPN "Aegates Isles" ; -lin aegean_A = mkA "Aegean" ; -lin aegean_PN = mkPN "Aegean" ; -lin aegean_civilization_PN = mkPN "Aegean civilization" ; -lin aegean_island_PN = mkPN "Aegean island" ; -lin aegiceras_PN = mkPN "Aegiceras" ; -lin aegilops_PN = mkPN "Aegilops" ; -lin aegina_PN = mkPN "Aegina" ; -lin aegisthus_PN = mkPN "Aegisthus" ; -lin aegospotami_PN = mkPN "Aegospotami" ; -lin aegypiidae_PN = mkPN "Aegypiidae" ; -lin aegypius_PN = mkPN "Aegypius" ; -lin aegyptopithecus_PN = mkPN "Aegyptopithecus" ; -lin aeneas_PN = mkPN "Aeneas" ; -lin aeneid_PN = mkPN "Aeneid" ; -lin aeolian_A = mkA "Aeolian" ; -lin aeolian_PN = mkPN "Aeolian" ; -lin aeolic_PN = mkPN "Aeolic" ; -lin aeolis_PN = mkPN "Aeolis" ; -lin aeolus_PN = mkPN "Aeolus" ; -lin aeonium_PN = mkPN "Aeonium" ; -lin aepyceros_PN = mkPN "Aepyceros" ; -lin aepyornidae_PN = mkPN "Aepyornidae" ; -lin aepyorniformes_PN = mkPN "Aepyorniformes" ; -lin aerobacter_PN = mkPN "Aerobacter" ; -lin aerobacter_aerogenes_PN = mkPN "Aerobacter aerogenes" ; -lin aertex_PN = mkPN "Aertex" ; -lin aeschylean_A = mkA "Aeschylean" ; -lin aeschylus_PN = mkPN "Aeschylus" ; -lin aesculapius_PN = mkPN "Aesculapius" ; -lin aesculus_PN = mkPN "Aesculus" ; -lin aesir_PN = mkPN "Aesir" ; -lin aesop_PN = mkPN "Aesop" ; -lin aesop's_fables_PN = mkPN "Aesop's fables" ; -lin aether_PN = mkPN "Aether" ; -lin aethionema_PN = mkPN "Aethionema" ; -lin aethusa_PN = mkPN "Aethusa" ; -lin aetobatus_PN = mkPN "Aetobatus" ; -lin affirmed_PN = mkPN "Affirmed" ; -lin afghan_PN = mkPN "Afghan" ; -lin afghan_hound_PN = mkPN "Afghan hound" ; -lin afghan_monetary_unit_PN = mkPN "Afghan monetary unit" ; -lin afghani_A = mkA "Afghani" ; -lin afghanistan_PN = mkPN "Afghanistan"; -- from DictEng -lin aframomum_PN = mkPN "Aframomum" ; -lin africa_PN = mkPN "Africa"; -- from DictEng -lin african_A = compoundA (mkA "African"); -- from DictEng -lin african_PN = mkPN "African" ; -lin african_american_A = compoundA (mkA "African American") ; -lin african_american_PN = mkPN "African American" ; -lin african_american_vernacular_english_PN = mkPN "African American Vernacular English" ; -lin african_bowstring_hemp_PN = mkPN "African bowstring hemp" ; -lin african_chameleon_PN = mkPN "African chameleon" ; -lin african_clawed_frog_PN = mkPN "African clawed frog" ; -lin african_coral_snake_PN = mkPN "African coral snake" ; -lin african_country_PN = mkPN "African country" ; -lin african_crocodile_PN = mkPN "African crocodile" ; -lin african_daisy_PN = mkPN "African daisy" ; -lin african_elephant_PN = mkPN "African elephant" ; -lin african_grey_PN = mkPN "African grey" ; -lin african_hemp_PN = mkPN "African hemp" ; -lin african_holly_PN = mkPN "African holly" ; -lin african_hunting_dog_PN = mkPN "African hunting dog" ; -lin african_lily_PN = mkPN "African lily" ; -lin african_mahogany_PN = mkPN "African mahogany" ; -lin african_marigold_PN = mkPN "African marigold" ; -lin african_monitor_PN = mkPN "African monitor" ; -lin african_oil_palm_PN = mkPN "African oil palm" ; -lin african_scented_mahogany_PN = mkPN "African scented mahogany" ; -lin african_violet_PN = mkPN "African violet" ; -lin african_walnut_PN = mkPN "African walnut" ; -lin african_wild_ass_PN = mkPN "African wild ass" ; -lin africander_PN = mkPN "Africander" ; -lin africanized_bee_PN = mkPN "Africanized bee" ; -lin afrikaans_A = mkA "Afrikaans" ; -lin afrikaans_PN = mkPN "Afrikaans" ; -lin afrikaner_PN = mkPN "Afrikaner" ; -lin afro_PN = mkPN "Afro" ; -lin afro_asian_A = compoundA (mkA "Afro - Asian"); -- from DictEng -lin afro_wig_PN = mkPN "Afro wig" ; -lin afroasiatic_PN = mkPN "Afroasiatic" ; -lin afrocarpus_PN = mkPN "Afrocarpus" ; -lin aga_PN = mkPN "Aga" ; -lin agalinis_PN = mkPN "Agalinis" ; -lin agamemnon_PN = mkPN "Agamemnon" ; -lin agamidae_PN = mkPN "Agamidae" ; -lin agapornis_PN = mkPN "Agapornis" ; -lin agaricaceae_PN = mkPN "Agaricaceae" ; -lin agaricales_PN = mkPN "Agaricales" ; -lin agaricus_PN = mkPN "Agaricus" ; -lin agassiz_PN = mkPN "Agassiz" ; -lin agastache_PN = mkPN "Agastache" ; -lin agatha_PN = mkPN "Agatha"; -- from DictEng -lin agathis_PN = mkPN "Agathis" ; -lin agavaceae_PN = mkPN "Agavaceae" ; -lin agave_tequilana_PN = mkPN "Agave tequilana" ; -lin agdestis_PN = mkPN "Agdestis" ; -lin agdistis_PN = mkPN "Agdistis" ; -lin agee_PN = mkPN "Agee" ; -lin agelaius_PN = mkPN "Agelaius" ; -lin agent_orange_PN = mkPN "Agent Orange" ; -lin ageratina_PN = mkPN "Ageratina" ; -lin aggie_PN = mkPN "Aggie"; -- from DictEng -lin aghan_PN = mkPN "Aghan" ; -lin agincourt_PN = mkPN "Agincourt" ; -lin agkistrodon_PN = mkPN "Agkistrodon" ; -lin aglaia_PN = mkPN "Aglaia" ; -lin aglaomorpha_PN = mkPN "Aglaomorpha" ; -lin aglaonema_PN = mkPN "Aglaonema" ; -lin agnatha_PN = mkPN "Agnatha" ; -lin agnes_PN = mkPN "Agnes"; -- from DictEng -lin agni_PN = mkPN "Agni" ; -lin agnus_dei_PN = mkPN "Agnus Dei" ; -lin agonidae_PN = mkPN "Agonidae" ; -lin agonus_PN = mkPN "Agonus" ; -lin agra_PN = mkPN "Agra"; -- from DictEng -lin agricola_PN = mkPN "Agricola" ; -lin agrigento_PN = mkPN "Agrigento" ; -lin agriocharis_PN = mkPN "Agriocharis" ; -lin agrippa_PN = mkPN "Agrippa" ; -lin agrippina_PN = mkPN "Agrippina" ; -lin agrobacterium_PN = mkPN "Agrobacterium" ; -lin agrobacterium_tumefaciens_PN = mkPN "Agrobacterium tumefaciens" ; -lin agropyron_PN = mkPN "Agropyron" ; -lin agrostemma_PN = mkPN "Agrostemma" ; -lin agrostis_PN = mkPN "Agrostis" ; -lin ahab_PN = mkPN "Ahab" ; -lin ahmedabad_PN = mkPN "Ahmedabad"; -- from DictEng -lin ahriman_PN = mkPN "Ahriman" ; -lin ahuehuete_PN = mkPN "Ahuehuete" ; -lin ahura_PN = mkPN "Ahura" ; -lin aiken_PN = mkPN "Aiken" ; -lin ailey_PN = mkPN "Ailey" ; -lin ailuropoda_PN = mkPN "Ailuropoda" ; -lin ailuropodidae_PN = mkPN "Ailuropodidae" ; -lin ailurus_PN = mkPN "Ailurus" ; -lin air_combat_command_PN = mkPN "Air Combat Command" ; -lin air_corps_PN = mkPN "Air Corps" ; -lin air_force_intelligence_surveillance_and_reconnaissance_PN = mkPN "Air Force Intelligence Surveillance and Reconnaissance" ; -lin air_force_research_laboratory_PN = mkPN "Air Force Research Laboratory" ; -lin air_force_space_command_PN = mkPN "Air Force Space Command" ; -lin air_medal_PN = mkPN "Air Medal" ; -lin air_national_guard_PN = mkPN "Air National Guard" ; -lin airdrie_PN = mkPN "Airdrie"; -- from DictEng -lin aire_PN = mkPN "Aire" ; -lin aireborough_PN = mkPN "Aireborough"; -- from DictEng -lin airedale_PN = mkPN "Airedale" ; -lin aix_PN = mkPN "Aix" ; -lin aizoaceae_PN = mkPN "Aizoaceae" ; -lin ajaia_PN = mkPN "Ajaia" ; -lin ajax_PN = mkPN "Ajax" ; -lin ajuga_PN = mkPN "Ajuga" ; -lin akan_PN = mkPN "Akan" ; -lin akeridae_PN = mkPN "Akeridae" ; -lin akhbari_PN = mkPN "Akhbari" ; -lin akhenaton_PN = mkPN "Akhenaton" ; -lin akkadian_PN = mkPN "Akkadian" ; -lin akron_PN = mkPN "Akron"; -- from DictEng -lin aksa_martyrs_brigades_PN = mkPN "Aksa Martyrs Brigades" ; -lin akwa'ala_PN = mkPN "Akwa'ala" ; -lin al_PN = mkPN "Al"; -- from DictEng -lin al_hakim_PN = mkPN "Al hakim" ; -lin al_aqabah_PN = mkPN "Al Aqabah" ; -lin al_ladhiqiyah_PN = mkPN "Al Ladhiqiyah" ; -lin al_nathir_PN = mkPN "Al Nathir" ; -lin alabama_PN = mkPN "Alabama"; -- from DictEng -lin alabaman_PN = mkPN "Alabaman" ; -lin aladdin_PN = mkPN "Aladdin" ; -lin aladdin's_lamp_PN = mkPN "Aladdin's lamp" ; -lin alamo_PN = mkPN "Alamo" ; -lin alan_PN = mkPN "Alan"; -- from DictEng -lin aland_islands_PN = mkPN "Aland islands" ; -lin alar_PN = mkPN "Alar" ; -lin alaric_PN = mkPN "Alaric" ; -lin alaska_PN = mkPN "Alaska"; -- from DictEng -lin alaska_native_PN = mkPN "Alaska Native" ; -lin alaska_peninsula_PN = mkPN "Alaska Peninsula" ; -lin alaska_range_PN = mkPN "Alaska Range" ; -lin alaska_standard_time_PN = mkPN "Alaska Standard Time" ; -lin alaska_fur_seal_PN = mkPN "Alaska fur seal" ; -lin alaska_king_crab_PN = mkPN "Alaska king crab" ; -lin alaska_rein_orchid_PN = mkPN "Alaska rein orchid" ; -lin alaskan_A = mkA "Alaskan" ; -lin alaskan_PN = mkPN "Alaskan" ; -lin alaskan_brown_bear_PN = mkPN "Alaskan brown bear" ; -lin alaskan_pipeline_PN = mkPN "Alaskan pipeline" ; -lin alauda_PN = mkPN "Alauda" ; -lin alaudidae_PN = mkPN "Alaudidae" ; -lin albania_PN = mkPN "Albania"; -- from DictEng -lin albanian_A = compoundA (mkA "albanian"); -- from DictEng -lin albanian_PN = mkPN "Albanian" ; -lin albanian_monetary_unit_PN = mkPN "Albanian monetary unit" ; -lin albany_PN = mkPN "Albany" ; -lin albatrellus_PN = mkPN "Albatrellus" ; -lin albatrellus_dispansus_PN = mkPN "Albatrellus dispansus" ; -lin albatrellus_ovinus_PN = mkPN "Albatrellus ovinus" ; -lin albee_PN = mkPN "Albee" ; -lin albers_PN = mkPN "Albers" ; -lin albert_PN = mkPN "Albert"; -- from DictEng -lin alberta_PN = mkPN "Alberta"; -- from DictEng -lin alberti_PN = mkPN "Alberti" ; -lin albigenses_PN = mkPN "Albigenses" ; -lin albigensian_A = mkA "Albigensian" ; -lin albigensianism_PN = mkPN "Albigensianism" ; -lin albion_PN = mkPN "Albion" ; -lin albright's_disease_PN = mkPN "Albright's disease" ; -lin albuginaceae_PN = mkPN "Albuginaceae" ; -lin albugo_PN = mkPN "Albugo" ; -lin albula_PN = mkPN "Albula" ; -lin albulidae_PN = mkPN "Albulidae" ; -lin albuquerque_PN = mkPN "Albuquerque" ; -lin alca_PN = mkPN "Alca" ; -lin alcaeus_PN = mkPN "Alcaeus" ; -lin alcaic_PN = mkPN "Alcaic" ; -lin alcea_PN = mkPN "Alcea" ; -lin alcedinidae_PN = mkPN "Alcedinidae" ; -lin alcedo_PN = mkPN "Alcedo" ; -lin alcelaphus_PN = mkPN "Alcelaphus" ; -lin alces_PN = mkPN "Alces" ; -lin alcibiades_PN = mkPN "Alcibiades" ; -lin alcidae_PN = mkPN "Alcidae" ; -lin alcoholics_anonymous_PN = mkPN "Alcoholics Anonymous" ; -lin alcott_PN = mkPN "Alcott" ; -lin alcyonacea_PN = mkPN "Alcyonacea" ; -lin alcyonaria_PN = mkPN "Alcyonaria" ; -lin alcyone_PN = mkPN "Alcyone" ; -lin aldebaran_PN = mkPN "Aldebaran" ; -lin aldershot_PN = mkPN "Aldershot"; -- from DictEng -lin aldrovanda_PN = mkPN "Aldrovanda" ; -lin alectis_PN = mkPN "Alectis" ; -lin alecto_PN = mkPN "Alecto" ; -lin alectoria_PN = mkPN "Alectoria" ; -lin alectoris_PN = mkPN "Alectoris" ; -lin alectura_PN = mkPN "Alectura" ; -lin alepisaurus_PN = mkPN "Alepisaurus" ; -lin aleppo_PN = mkPN "Aleppo"; -- from DictEng -lin alessandria_PN = mkPN "Alessandria"; -- from DictEng -lin aletris_PN = mkPN "Aletris" ; -lin aleuria_aurantia_PN = mkPN "Aleuria aurantia" ; -lin aleurites_PN = mkPN "Aleurites" ; -lin aleut_PN = mkPN "Aleut" ; -lin aleutian_A = mkA "Aleutian" ; -lin aleutian_islands_PN = mkPN "Aleutian Islands" ; -lin alex_PN = mkPN "Alex"; -- from DictEng -lin alex_boncayao_brigade_PN = mkPN "Alex Boncayao Brigade" ; -lin alexander_PN = mkPN "Alexander"; -- from DictEng -lin alexander_archipelago_PN = mkPN "Alexander Archipelago" ; -lin alexander_i_PN = mkPN "Alexander I" ; -lin alexander_ii_PN = mkPN "Alexander II" ; -lin alexander_iii_PN = mkPN "Alexander III" ; -lin alexander_vi_PN = mkPN "Alexander VI" ; -lin alexandra_PN = mkPN "Alexandra"; -- from DictEng -lin alexandria_PN = mkPN "Alexandria"; -- from DictEng -lin alexandria_senna_PN = mkPN "Alexandria senna" ; -lin alexandrian_A = mkA "Alexandrian" ; -lin alexandrian_PN = mkPN "Alexandrian" ; -lin alexandrian_laurel_PN = mkPN "Alexandrian laurel" ; -lin alexandrine_PN = mkPN "Alexandrine" ; -lin aleyrodes_PN = mkPN "Aleyrodes" ; -lin aleyrodidae_PN = mkPN "Aleyrodidae" ; -lin alf_PN = mkPN "Alf"; -- from DictEng -lin alfred_PN = mkPN "Alfred"; -- from DictEng -lin alfreton_PN = mkPN "Alfreton"; -- from DictEng -lin alger_PN = mkPN "Alger"; -- from DictEng -lin algeria_PN = mkPN "Algeria"; -- from DictEng -lin algerian_A = compoundA (mkA "algerian"); -- from DictEng -lin algerian_PN = mkPN "Algerian" ; -lin algerian_centime_PN = mkPN "Algerian centime" ; -lin algerian_dinar_PN = mkPN "Algerian dinar" ; -lin algerian_monetary_unit_PN = mkPN "Algerian monetary unit" ; -lin algeripithecus_PN = mkPN "Algeripithecus" ; -lin algeripithecus_minutus_PN = mkPN "Algeripithecus minutus" ; -lin algiers_PN = mkPN "Algiers" ; -lin algonkian_PN = mkPN "Algonkian" ; -lin algonquian_A = mkA "Algonquian" ; -lin algonquian_PN = mkPN "Algonquian" ; -lin algren_PN = mkPN "Algren" ; -lin alhambra_PN = mkPN "Alhambra" ; -lin alhazen_PN = mkPN "Alhazen" ; -lin ali_PN = mkPN "Ali"; -- from DictEng -lin ali_baba_PN = mkPN "Ali Baba" ; -lin alicante_PN = mkPN "Alicante"; -- from DictEng -lin alice_PN = mkPN "Alice"; -- from DictEng -lin alisma_PN = mkPN "Alisma" ; -lin alismataceae_PN = mkPN "Alismataceae" ; -lin alismatidae_PN = mkPN "Alismatidae" ; -lin alison_PN = mkPN "Alison"; -- from DictEng -lin alka_seltzer_PN = mkPN "Alka seltzer" ; -lin all_saints'_day_PN = mkPN "All Saints' Day" ; -lin all_souls'_day_PN = mkPN "All Souls' Day" ; -lin allah_PN = mkPN "Allah"; -- from DictEng -lin allahabad_PN = mkPN "Allahabad"; -- from DictEng -lin allan_PN = mkPN "Allan"; -- from DictEng -lin alleghenies_PN = mkPN "Alleghenies" ; -lin allegheny_PN = mkPN "Allegheny" ; -lin allegheny_chinkapin_PN = mkPN "Allegheny chinkapin" ; -lin allegheny_plum_PN = mkPN "Allegheny plum" ; -lin allegheny_spurge_PN = mkPN "Allegheny spurge" ; -lin allen_PN = mkPN "Allen"; -- from DictEng -lin allen_screw_PN = mkPN "Allen screw" ; -lin allen_wrench_PN = mkPN "Allen wrench" ; -lin allentown_PN = mkPN "Allentown" ; -lin allhallowtide_PN = mkPN "Allhallowtide" ; -lin alliaceae_PN = mkPN "Alliaceae" ; -lin alliaria_PN = mkPN "Alliaria" ; -lin allied_command_atlantic_PN = mkPN "Allied Command Atlantic" ; -lin allied_command_europe_PN = mkPN "Allied Command Europe" ; -lin allies_PN = mkPN "Allies" ; -lin alligatoridae_PN = mkPN "Alligatoridae" ; -lin allionia_PN = mkPN "Allionia" ; -lin allium_PN = mkPN "Allium" ; -lin alloa_PN = mkPN "Alloa"; -- from DictEng -lin alma_ata_PN = mkPN "Alma - ata"; -- from DictEng -lin almaty_PN = mkPN "Almaty" ; -lin almeria_PN = mkPN "Almeria"; -- from DictEng -lin almoravid_PN = mkPN "Almoravid" ; -lin alnico_PN = mkPN "Alnico" ; -lin alnus_PN = mkPN "Alnus" ; -lin alnwick_PN = mkPN "Alnwick"; -- from DictEng -lin aloeaceae_PN = mkPN "Aloeaceae" ; -lin alonso_PN = mkPN "Alonso" ; -lin alopecurus_PN = mkPN "Alopecurus" ; -lin alopex_PN = mkPN "Alopex" ; -lin alopiidae_PN = mkPN "Alopiidae" ; -lin alopius_PN = mkPN "Alopius" ; -lin alosa_PN = mkPN "Alosa" ; -lin alouatta_PN = mkPN "Alouatta" ; -lin alpena_PN = mkPN "Alpena" ; -lin alpha_centauri_PN = mkPN "Alpha Centauri" ; -lin alpha_crucis_PN = mkPN "Alpha Crucis" ; -lin alpine_A = compoundA (mkA "alpine"); -- from DictEng -lin alpine_anemone_PN = mkPN "Alpine anemone" ; -lin alpine_besseya_PN = mkPN "Alpine besseya" ; -lin alpine_celery_pine_PN = mkPN "Alpine celery pine" ; -lin alpine_enchanter's_nightshade_PN = mkPN "Alpine enchanter's nightshade" ; -lin alpine_fir_PN = mkPN "Alpine fir" ; -lin alpine_glacier_PN = mkPN "Alpine glacier" ; -lin alpine_lady_fern_PN = mkPN "Alpine lady fern" ; -lin alpine_mouse_ear_PN = mkPN "Alpine mouse ear" ; -lin alpine_woodsia_PN = mkPN "Alpine woodsia" ; -lin alpinia_PN = mkPN "Alpinia" ; -lin alpinism_PN = mkPN "Alpinism" ; -lin alps_PN = mkPN "Alps" ; -lin alsace_PN = mkPN "Alsace" ; -lin alsatian_A = mkA "Alsatian" ; -lin alsatian_PN = mkPN "Alsatian" ; -lin alsobia_PN = mkPN "Alsobia" ; -lin alsophila_PN = mkPN "Alsophila" ; -lin alsophila_pometaria_PN = mkPN "Alsophila pometaria" ; -lin alstonia_PN = mkPN "Alstonia" ; -lin alstroemeriaceae_PN = mkPN "Alstroemeriaceae" ; -lin altai_mountains_PN = mkPN "Altai Mountains" ; -lin altaic_A = mkA "Altaic" ; -lin altaic_PN = mkPN "Altaic" ; -lin altair_PN = mkPN "Altair" ; -lin alternanthera_PN = mkPN "Alternanthera" ; -lin alton_PN = mkPN "Alton"; -- from DictEng -lin altoona_PN = mkPN "Altoona" ; -lin altrincham_PN = mkPN "Altrincham"; -- from DictEng -lin alvechurch_PN = mkPN "Alvechurch"; -- from DictEng -lin alyssum_PN = mkPN "Alyssum" ; -lin alytes_PN = mkPN "Alytes" ; -lin alzheimer's_disease_PN = mkPN "Alzheimer's disease" ; -lin amaethon_PN = mkPN "Amaethon" ; -lin amanda_PN = mkPN "Amanda"; -- from DictEng -lin amanita_PN = mkPN "Amanita" ; -lin amaranthaceae_PN = mkPN "Amaranthaceae" ; -lin amaranthus_PN = mkPN "Amaranthus" ; -lin amarillo_PN = mkPN "Amarillo" ; -lin amaryllidaceae_PN = mkPN "Amaryllidaceae" ; -lin amaterasu_PN = mkPN "Amaterasu" ; -lin amati_PN = mkPN "Amati" ; -lin amauropelta_PN = mkPN "Amauropelta" ; -lin amazon_PN = mkPN "Amazon" ; -lin amazon_ant_PN = mkPN "Amazon ant" ; -lin amazona_PN = mkPN "Amazona" ; -lin amberboa_PN = mkPN "Amberboa" ; -lin ambloplites_PN = mkPN "Ambloplites" ; -lin amblyrhynchus_PN = mkPN "Amblyrhynchus" ; -lin ambrose_PN = mkPN "Ambrose" ; -lin ambrosiaceae_PN = mkPN "Ambrosiaceae" ; -lin ambrosian_A = mkA "Ambrosian" ; -lin ambystoma_PN = mkPN "Ambystoma" ; -lin ambystomatidae_PN = mkPN "Ambystomatidae" ; -lin ameiuridae_PN = mkPN "Ameiuridae" ; -lin ameiurus_PN = mkPN "Ameiurus" ; -lin amelanchier_PN = mkPN "Amelanchier" ; -lin amen_PN = mkPN "Amen" ; -lin amen_ra_PN = mkPN "Amen Ra" ; -lin amentiferae_PN = mkPN "Amentiferae" ; -lin america_PN = mkPN "America"; -- from DictEng -lin american_A = compoundA (mkA "American"); -- from DictEng -lin american_PN = mkPN "American" ; -lin american_baptist_convention_PN = mkPN "American Baptist Convention" ; -lin american_civil_war_PN = mkPN "American Civil War" ; -lin american_dream_PN = mkPN "American Dream" ; -lin american_english_PN = mkPN "American English" ; -lin american_falls_PN = mkPN "American Falls" ; -lin american_federation_of_labor_PN = mkPN "American Federation of Labor" ; -lin american_federation_of_labor_and_congress_of_industrial_organizations_PN = mkPN "American Federation of Labor and Congress of Industrial Organizations" ; -lin american_indian_day_PN = mkPN "American Indian Day" ; -lin american_labor_party_PN = mkPN "American Labor Party" ; -lin american_legion_PN = mkPN "American Legion" ; -lin american_party_PN = mkPN "American Party" ; -lin american_revolution_PN = mkPN "American Revolution" ; -lin american_revolutionary_leader_PN = mkPN "American Revolutionary leader" ; -lin american_samoa_PN = mkPN "American Samoa" ; -lin american_staffordshire_terrier_PN = mkPN "American Staffordshire terrier" ; -lin american_standard_code_for_information_interchange_PN = mkPN "American Standard Code for Information Interchange" ; -lin american_standard_version_PN = mkPN "American Standard Version" ; -lin american_stock_exchange_PN = mkPN "American Stock Exchange" ; -lin american_agave_PN = mkPN "American agave" ; -lin american_alligator_PN = mkPN "American alligator" ; -lin american_angelica_tree_PN = mkPN "American angelica tree" ; -lin american_arborvitae_PN = mkPN "American arborvitae" ; -lin american_badger_PN = mkPN "American badger" ; -lin american_barberry_PN = mkPN "American barberry" ; -lin american_basswood_PN = mkPN "American basswood" ; -lin american_beech_PN = mkPN "American beech" ; -lin american_bison_PN = mkPN "American bison" ; -lin american_bittern_PN = mkPN "American bittern" ; -lin american_black_bear_PN = mkPN "American black bear" ; -lin american_bog_asphodel_PN = mkPN "American bog asphodel" ; -lin american_bugbane_PN = mkPN "American bugbane" ; -lin american_chameleon_PN = mkPN "American chameleon" ; -lin american_chestnut_PN = mkPN "American chestnut" ; -lin american_cockroach_PN = mkPN "American cockroach" ; -lin american_coot_PN = mkPN "American coot" ; -lin american_copper_PN = mkPN "American copper" ; -lin american_crab_apple_PN = mkPN "American crab apple" ; -lin american_cranberry_PN = mkPN "American cranberry" ; -lin american_crayfish_PN = mkPN "American crayfish" ; -lin american_crow_PN = mkPN "American crow" ; -lin american_dewberry_PN = mkPN "American dewberry" ; -lin american_dog_violet_PN = mkPN "American dog violet" ; -lin american_egret_PN = mkPN "American egret" ; -lin american_elder_PN = mkPN "American elder" ; -lin american_elm_PN = mkPN "American elm" ; -lin american_feverfew_PN = mkPN "American feverfew" ; -lin american_flag_PN = mkPN "American flag" ; -lin american_fly_honeysuckle_PN = mkPN "American fly honeysuckle" ; -lin american_flying_squirrel_PN = mkPN "American flying squirrel" ; -lin american_football_PN = mkPN "American football" ; -lin american_foxhound_PN = mkPN "American foxhound" ; -lin american_frogbit_PN = mkPN "American frogbit" ; -lin american_gallinule_PN = mkPN "American gallinule" ; -lin american_germander_PN = mkPN "American germander" ; -lin american_ginseng_PN = mkPN "American ginseng" ; -lin american_green_toad_PN = mkPN "American green toad" ; -lin american_hackberry_PN = mkPN "American hackberry" ; -lin american_harvest_mouse_PN = mkPN "American harvest mouse" ; -lin american_hazel_PN = mkPN "American hazel" ; -lin american_holly_PN = mkPN "American holly" ; -lin american_hop_PN = mkPN "American hop" ; -lin american_hornbeam_PN = mkPN "American hornbeam" ; -lin american_lady_crab_PN = mkPN "American lady crab" ; -lin american_larch_PN = mkPN "American larch" ; -lin american_lobster_PN = mkPN "American lobster" ; -lin american_magpie_PN = mkPN "American magpie" ; -lin american_maidenhair_fern_PN = mkPN "American maidenhair fern" ; -lin american_marten_PN = mkPN "American marten" ; -lin american_mastodon_PN = mkPN "American mastodon" ; -lin american_merganser_PN = mkPN "American merganser" ; -lin american_mink_PN = mkPN "American mink" ; -lin american_mistletoe_PN = mkPN "American mistletoe" ; -lin american_mountain_ash_PN = mkPN "American mountain ash" ; -lin american_oil_palm_PN = mkPN "American oil palm" ; -lin american_organ_PN = mkPN "American organ" ; -lin american_parasol_PN = mkPN "American parasol" ; -lin american_pasqueflower_PN = mkPN "American pasqueflower" ; -lin american_persimmon_PN = mkPN "American persimmon" ; -lin american_plaice_PN = mkPN "American plaice" ; -lin american_plan_PN = mkPN "American plan" ; -lin american_quaking_aspen_PN = mkPN "American quaking aspen" ; -lin american_raspberry_PN = mkPN "American raspberry" ; -lin american_rattlebox_PN = mkPN "American rattlebox" ; -lin american_red_elder_PN = mkPN "American red elder" ; -lin american_red_plum_PN = mkPN "American red plum" ; -lin american_red_squirrel_PN = mkPN "American red squirrel" ; -lin american_redstart_PN = mkPN "American redstart" ; -lin american_rock_brake_PN = mkPN "American rock brake" ; -lin american_saddle_horse_PN = mkPN "American saddle horse" ; -lin american_shrew_mole_PN = mkPN "American shrew mole" ; -lin american_smelt_PN = mkPN "American smelt" ; -lin american_smokewood_PN = mkPN "American smokewood" ; -lin american_smooth_dogfish_PN = mkPN "American smooth dogfish" ; -lin american_spikenard_PN = mkPN "American spikenard" ; -lin american_star_grass_PN = mkPN "American star grass" ; -lin american_state_PN = mkPN "American state" ; -lin american_sycamore_PN = mkPN "American sycamore" ; -lin american_toad_PN = mkPN "American toad" ; -lin american_turkey_oak_PN = mkPN "American turkey oak" ; -lin american_twinflower_PN = mkPN "American twinflower" ; -lin american_water_ouzel_PN = mkPN "American water ouzel" ; -lin american_water_shrew_PN = mkPN "American water shrew" ; -lin american_water_spaniel_PN = mkPN "American water spaniel" ; -lin american_watercress_PN = mkPN "American watercress" ; -lin american_white_birch_PN = mkPN "American white birch" ; -lin american_white_oak_PN = mkPN "American white oak" ; -lin american_white_pine_PN = mkPN "American white pine" ; -lin american_widgeon_PN = mkPN "American widgeon" ; -lin american_wistaria_PN = mkPN "American wistaria" ; -lin american_woodcock_PN = mkPN "American woodcock" ; -lin american_wormseed_PN = mkPN "American wormseed" ; -lin americana_PN = mkPN "Americana" ; -lin americanism_PN = mkPN "Americanism" ; -lin americanization_PN = mkPN "Americanization" ; -lin amerind_PN = mkPN "Amerind" ; -lin amerindian_PN = mkPN "Amerindian" ; -lin amesbury_PN = mkPN "Amesbury"; -- from DictEng -lin amhara_PN = mkPN "Amhara" ; -lin amharic_A = mkA "Amharic" ; -lin amharic_PN = mkPN "Amharic" ; -lin amia_PN = mkPN "Amia" ; -lin amianthum_PN = mkPN "Amianthum" ; -lin amiens_PN = mkPN "Amiens"; -- from DictEng -lin amiidae_PN = mkPN "Amiidae" ; -lin amish_PN = mkPN "Amish" ; -lin amish_sect_PN = mkPN "Amish sect" ; -lin amman_PN = mkPN "Amman" ; -lin ammanford_PN = mkPN "Ammanford"; -- from DictEng -lin ammodytes_PN = mkPN "Ammodytes" ; -lin ammodytidae_PN = mkPN "Ammodytidae" ; -lin ammotragus_PN = mkPN "Ammotragus" ; -lin amniota_PN = mkPN "Amniota" ; -lin amoebida_PN = mkPN "Amoebida" ; -lin amontillado_PN = mkPN "Amontillado" ; -lin amos_PN = mkPN "Amos" ; -lin amphibolips_PN = mkPN "Amphibolips" ; -lin amphicarpaea_PN = mkPN "Amphicarpaea" ; -lin amphineura_PN = mkPN "Amphineura" ; -lin amphioxidae_PN = mkPN "Amphioxidae" ; -lin amphipoda_PN = mkPN "Amphipoda" ; -lin amphiprion_PN = mkPN "Amphiprion" ; -lin amphisbaena_PN = mkPN "Amphisbaena" ; -lin amphisbaenidae_PN = mkPN "Amphisbaenidae" ; -lin amphiumidae_PN = mkPN "Amphiumidae" ; -lin amsinckia_PN = mkPN "Amsinckia" ; -lin amsler_grid_PN = mkPN "Amsler grid" ; -lin amsonia_PN = mkPN "Amsonia" ; -lin amsterdam_PN = mkPN "Amsterdam"; -- from DictEng -lin amundsen_PN = mkPN "Amundsen" ; -lin amur_PN = mkPN "Amur" ; -lin amur_privet_PN = mkPN "Amur privet" ; -lin amy_PN = mkPN "Amy"; -- from DictEng -lin amygdalaceae_PN = mkPN "Amygdalaceae" ; -lin amygdalus_PN = mkPN "Amygdalus" ; -lin ana_PN = mkPN "Ana" ; -lin anabantidae_PN = mkPN "Anabantidae" ; -lin anabaptism_PN = mkPN "Anabaptism" ; -lin anabaptist_PN = mkPN "Anabaptist" ; -lin anabaptist_denomination_PN = mkPN "Anabaptist denomination" ; -lin anabas_PN = mkPN "Anabas" ; -lin anabrus_PN = mkPN "Anabrus" ; -lin anacanthini_PN = mkPN "Anacanthini" ; -lin anacardiaceae_PN = mkPN "Anacardiaceae" ; -lin anacardium_PN = mkPN "Anacardium" ; -lin anacyclus_PN = mkPN "Anacyclus" ; -lin anadenanthera_PN = mkPN "Anadenanthera" ; -lin anadenanthera_colubrina_PN = mkPN "Anadenanthera colubrina" ; -lin anagallis_PN = mkPN "Anagallis" ; -lin anagasta_PN = mkPN "Anagasta" ; -lin anagyris_PN = mkPN "Anagyris" ; -lin anaheim_PN = mkPN "Anaheim" ; -lin ananas_PN = mkPN "Ananas" ; -lin ananias_PN = mkPN "Ananias" ; -lin anaphalis_PN = mkPN "Anaphalis" ; -lin anapsida_PN = mkPN "Anapsida" ; -lin anarhichadidae_PN = mkPN "Anarhichadidae" ; -lin anarhichas_PN = mkPN "Anarhichas" ; -lin anas_PN = mkPN "Anas" ; -lin anasa_PN = mkPN "Anasa" ; -lin anasazi_PN = mkPN "Anasazi" ; -lin anaspida_PN = mkPN "Anaspida" ; -lin anastatica_PN = mkPN "Anastatica" ; -lin anastomus_PN = mkPN "Anastomus" ; -lin anatidae_PN = mkPN "Anatidae" ; -lin anatolian_PN = mkPN "Anatolian" ; -lin anaxagoras_PN = mkPN "Anaxagoras" ; -lin anaximander_PN = mkPN "Anaximander" ; -lin anaximenes_PN = mkPN "Anaximenes" ; -lin anchorage_PN = mkPN "Anchorage" ; -lin ancient_greek_PN = mkPN "Ancient Greek" ; -lin ancohuma_PN = mkPN "Ancohuma" ; -lin ancona_PN = mkPN "Ancona"; -- from DictEng -lin ancylidae_PN = mkPN "Ancylidae" ; -lin ancylostomatidae_PN = mkPN "Ancylostomatidae" ; -lin ancylus_PN = mkPN "Ancylus" ; -lin andalusia_PN = mkPN "Andalusia" ; -lin andalusian_A = mkA "Andalusian" ; -lin andaman_sea_PN = mkPN "Andaman Sea" ; -lin andean_A = mkA "Andean" ; -lin andean_condor_PN = mkPN "Andean condor" ; -lin andersen_PN = mkPN "Andersen" ; -lin anderson_PN = mkPN "Anderson" ; -lin andes_PN = mkPN "Andes" ; -lin andhra_pradesh_PN = mkPN "Andhra Pradesh" ; -lin andira_PN = mkPN "Andira" ; -lin andorra_PN = mkPN "Andorra"; -- from DictEng -lin andorran_A = compoundA (mkA "andorran"); -- from DictEng -lin andorran_PN = mkPN "Andorran" ; -lin andover_PN = mkPN "Andover"; -- from DictEng -lin andreaea_PN = mkPN "Andreaea" ; -lin andreaeales_PN = mkPN "Andreaeales" ; -lin andrenidae_PN = mkPN "Andrenidae" ; -lin andrew_PN = mkPN "Andrew"; -- from DictEng -lin andrews_PN = mkPN "Andrews" ; -lin andricus_PN = mkPN "Andricus" ; -lin andromeda_PN = mkPN "Andromeda" ; -lin andromeda_galaxy_PN = mkPN "Andromeda galaxy" ; -lin andropogon_PN = mkPN "Andropogon" ; -lin andvari_PN = mkPN "Andvari" ; -lin andy_PN = mkPN "Andy"; -- from DictEng -lin aneides_PN = mkPN "Aneides" ; -lin anemia_PN = mkPN "Anemia" ; -lin anemonella_PN = mkPN "Anemonella" ; -lin anemopsis_PN = mkPN "Anemopsis" ; -lin anethum_PN = mkPN "Anethum" ; -lin angara_PN = mkPN "Angara" ; -lin angas_PN = mkPN "Angas" ; -lin angel_PN = mkPN "Angel" ; -lin angela_PN = mkPN "Angela"; -- from DictEng -lin angelus_PN = mkPN "Angelus" ; -lin angers_PN = mkPN "Angers"; -- from DictEng -lin angevin_PN = mkPN "Angevin" ; -lin angie_PN = mkPN "Angie"; -- from DictEng -lin angiospermae_PN = mkPN "Angiospermae" ; -lin angle_PN = mkPN "Angle" ; -lin anglesey_PN = mkPN "Anglesey" ; -lin anglia_PN = mkPN "Anglia" ; -lin anglian_PN = mkPN "Anglian" ; -lin anglican_A = compoundA (mkA "anglican"); -- from DictEng -lin anglican_PN = mkPN "Anglican" ; -lin anglican_catholic_PN = mkPN "Anglican Catholic" ; -lin anglican_church_PN = mkPN "Anglican Church" ; -lin anglicanism_PN = mkPN "Anglicanism" ; -lin anglicism_PN = mkPN "Anglicism" ; -lin anglicization_PN = mkPN "Anglicization" ; -lin anglo_american_PN = mkPN "Anglo American" ; -lin anglo_catholicism_PN = mkPN "Anglo Catholicism" ; -lin anglo_french_PN = mkPN "Anglo French" ; -lin anglo_indian_A = compoundA (mkA "anglo - indian"); -- from DictEng -lin anglo_indian_PN = mkPN "Anglo Indian" ; -lin anglo_jewish_A = compoundA (mkA "Anglo Jewish") ; -lin anglo_saxon_A = compoundA (mkA "anglo - saxon"); -- from DictEng -lin anglo_saxon_PN = mkPN "Anglo Saxon" ; -lin anglo_saxon_deity_PN = mkPN "Anglo Saxon deity" ; -lin anglo_catholic_A = compoundA (mkA "anglo - catholic"); -- from DictEng -lin anglomania_PN = mkPN "Anglomania" ; -lin anglophilia_PN = mkPN "Anglophilia" ; -lin anglophilic_A = mkA "Anglophilic" ; -lin anglophobia_PN = mkPN "Anglophobia" ; -lin anglophobic_A = mkA "Anglophobic" ; -lin angola_PN = mkPN "Angola"; -- from DictEng -lin angolan_A = compoundA (mkA "angolan"); -- from DictEng -lin angolan_PN = mkPN "Angolan" ; -lin angolan_monetary_unit_PN = mkPN "Angolan monetary unit" ; -lin angolese_PN = mkPN "Angolese" ; -lin angora_PN = mkPN "Angora" ; -lin angostura_bridge_PN = mkPN "Angostura Bridge" ; -lin anguidae_PN = mkPN "Anguidae" ; -lin anguilla_PN = mkPN "Anguilla"; -- from DictEng -lin anguillan_A = compoundA (mkA "anguillan"); -- from DictEng -lin anguillan_PN = mkPN "Anguillan" ; -lin anguillidae_PN = mkPN "Anguillidae" ; -lin anguilliformes_PN = mkPN "Anguilliformes" ; -lin anguillula_PN = mkPN "Anguillula" ; -lin anguis_PN = mkPN "Anguis" ; -lin angus_PN = mkPN "Angus"; -- from DictEng -lin angus_og_PN = mkPN "Angus Og" ; -lin anhima_PN = mkPN "Anhima" ; -lin anhimidae_PN = mkPN "Anhimidae" ; -lin anhingidae_PN = mkPN "Anhingidae" ; -lin anigozanthus_PN = mkPN "Anigozanthus" ; -lin animalia_PN = mkPN "Animalia" ; -lin anisoptera_PN = mkPN "Anisoptera" ; -lin anisotremus_PN = mkPN "Anisotremus" ; -lin anita_PN = mkPN "Anita"; -- from DictEng -lin anjou_PN = mkPN "Anjou" ; -lin ankara_PN = mkPN "Ankara"; -- from DictEng -lin ann_PN = mkPN "Ann"; -- from DictEng -lin ann_arbor_PN = mkPN "Ann Arbor" ; -lin annaba_PN = mkPN "Annaba" ; -lin annabel_PN = mkPN "Annabel"; -- from DictEng -lin annan_PN = mkPN "Annan"; -- from DictEng -lin annapolis_PN = mkPN "Annapolis" ; -lin annapurna_PN = mkPN "Annapurna" ; -lin anne_PN = mkPN "Anne"; -- from DictEng -lin annelida_PN = mkPN "Annelida" ; -lin annfield_PN = mkPN "Annfield"; -- from DictEng -lin annfield_plain_PN = mkPN "Annfield plain"; -- from DictEng -lin annie_PN = mkPN "Annie"; -- from DictEng -lin anniellidae_PN = mkPN "Anniellidae" ; -lin annona_PN = mkPN "Annona" ; -lin annonaceae_PN = mkPN "Annonaceae" ; -lin annunciation_PN = mkPN "Annunciation" ; -lin annwfn_PN = mkPN "Annwfn" ; -lin anobiidae_PN = mkPN "Anobiidae" ; -lin anodonta_PN = mkPN "Anodonta" ; -lin anoectochilus_PN = mkPN "Anoectochilus" ; -lin anogramma_PN = mkPN "Anogramma" ; -lin anolis_PN = mkPN "Anolis" ; -lin anomala_PN = mkPN "Anomala" ; -lin anomalopidae_PN = mkPN "Anomalopidae" ; -lin anomia_PN = mkPN "Anomia" ; -lin anomiidae_PN = mkPN "Anomiidae" ; -lin anon_PN = mkPN "Anon"; -- from DictEng -lin anopheles_PN = mkPN "Anopheles" ; -lin anoplura_PN = mkPN "Anoplura" ; -lin anostraca_PN = mkPN "Anostraca" ; -lin anouilh_PN = mkPN "Anouilh" ; -lin ansar_al_islam_PN = mkPN "Ansar al Islam" ; -lin anselm_PN = mkPN "Anselm" ; -lin anser_PN = mkPN "Anser" ; -lin anseres_PN = mkPN "Anseres" ; -lin anseriformes_PN = mkPN "Anseriformes" ; -lin anserinae_PN = mkPN "Anserinae" ; -lin anshan_PN = mkPN "Anshan"; -- from DictEng -lin anshar_PN = mkPN "Anshar" ; -lin antalya_PN = mkPN "Antalya" ; -lin antananarivo_PN = mkPN "Antananarivo" ; -lin antarctic_PN = mkPN "Antarctic" ; -lin antarctic_circle_PN = mkPN "Antarctic Circle" ; -lin antarctic_ocean_PN = mkPN "Antarctic Ocean" ; -lin antarctic_peninsula_PN = mkPN "Antarctic Peninsula" ; -lin antarctica_PN = mkPN "Antarctica" ; -lin antares_PN = mkPN "Antares" ; -lin antedon_PN = mkPN "Antedon" ; -lin antedonidae_PN = mkPN "Antedonidae" ; -lin antennaria_PN = mkPN "Antennaria" ; -lin antennariidae_PN = mkPN "Antennariidae" ; -lin anthea_PN = mkPN "Anthea"; -- from DictEng -lin anthemis_PN = mkPN "Anthemis" ; -lin antheraea_PN = mkPN "Antheraea" ; -lin anthericum_PN = mkPN "Anthericum" ; -lin antheropeas_PN = mkPN "Antheropeas" ; -lin anthidium_PN = mkPN "Anthidium" ; -lin anthoceropsida_PN = mkPN "Anthoceropsida" ; -lin anthoceros_PN = mkPN "Anthoceros" ; -lin anthocerotaceae_PN = mkPN "Anthocerotaceae" ; -lin anthocerotales_PN = mkPN "Anthocerotales" ; -lin anthonomus_PN = mkPN "Anthonomus" ; -lin anthony_PN = mkPN "Anthony"; -- from DictEng -lin anthozoa_PN = mkPN "Anthozoa" ; -lin anthriscus_PN = mkPN "Anthriscus" ; -lin anthropoidea_PN = mkPN "Anthropoidea" ; -lin anthus_PN = mkPN "Anthus" ; -lin anthyllis_PN = mkPN "Anthyllis" ; -lin anti_masonic_party_PN = mkPN "Anti Masonic Party" ; -lin antichrist_PN = mkPN "Antichrist" ; -lin antido_PN = mkPN "Antido" ; -lin antidorcas_PN = mkPN "Antidorcas" ; -lin antigone_PN = mkPN "Antigone" ; -lin antigonia_PN = mkPN "Antigonia" ; -lin antigonus_PN = mkPN "Antigonus" ; -lin antigua_PN = mkPN "Antigua"; -- from DictEng -lin antigua_and_barbuda_PN = mkPN "Antigua and Barbuda" ; -lin antiguan_A = compoundA (mkA "antiguan"); -- from DictEng -lin antiguan_PN = mkPN "Antiguan" ; -lin antilles_PN = mkPN "Antilles" ; -lin antilocapra_PN = mkPN "Antilocapra" ; -lin antilocapridae_PN = mkPN "Antilocapridae" ; -lin antilope_PN = mkPN "Antilope" ; -lin antioch_PN = mkPN "Antioch" ; -lin antirrhinum_PN = mkPN "Antirrhinum" ; -lin antlia_PN = mkPN "Antlia" ; -lin antofagasta_PN = mkPN "Antofagasta" ; -lin antonine_wall_PN = mkPN "Antonine Wall" ; -lin antoninus_PN = mkPN "Antoninus" ; -lin antonius_pius_PN = mkPN "Antonius Pius" ; -lin antony_PN = mkPN "Antony"; -- from DictEng -lin antrim_PN = mkPN "Antrim"; -- from DictEng -lin antrozous_PN = mkPN "Antrozous" ; -lin antum_PN = mkPN "Antum" ; -lin antwerp_PN = mkPN "Antwerp"; -- from DictEng -lin antwerpen_PN = mkPN "Antwerpen" ; -lin anu_PN = mkPN "Anu" ; -lin anubis_PN = mkPN "Anubis" ; -lin anunnaki_PN = mkPN "Anunnaki" ; -lin anzac_PN = mkPN "Anzac" ; -lin anzio_PN = mkPN "Anzio" ; -lin aotus_PN = mkPN "Aotus" ; -lin apache_PN = mkPN "Apache" ; -lin apalachicola_PN = mkPN "Apalachicola" ; -lin apalachicola_rosemary_PN = mkPN "Apalachicola rosemary" ; -lin apatura_PN = mkPN "Apatura" ; -lin apeldoorn_PN = mkPN "Apeldoorn"; -- from DictEng -lin apennines_PN = mkPN "Apennines" ; -lin apgar_score_PN = mkPN "Apgar score" ; -lin aphasmidia_PN = mkPN "Aphasmidia" ; -lin aphididae_PN = mkPN "Aphididae" ; -lin aphidoidea_PN = mkPN "Aphidoidea" ; -lin aphis_PN = mkPN "Aphis" ; -lin aphriza_PN = mkPN "Aphriza" ; -lin aphrodite_PN = mkPN "Aphrodite" ; -lin aphrophora_PN = mkPN "Aphrophora" ; -lin aphyllanthaceae_PN = mkPN "Aphyllanthaceae" ; -lin aphyllanthes_PN = mkPN "Aphyllanthes" ; -lin aphyllophorales_PN = mkPN "Aphyllophorales" ; -lin apia_PN = mkPN "Apia" ; -lin apidae_PN = mkPN "Apidae" ; -lin apios_PN = mkPN "Apios" ; -lin apis_PN = mkPN "Apis" ; -lin apium_PN = mkPN "Apium" ; -lin aplectrum_PN = mkPN "Aplectrum" ; -lin aplodontia_PN = mkPN "Aplodontia" ; -lin aplodontiidae_PN = mkPN "Aplodontiidae" ; -lin aplysia_PN = mkPN "Aplysia" ; -lin aplysiidae_PN = mkPN "Aplysiidae" ; -lin apocrypha_PN = mkPN "Apocrypha" ; -lin apocryphal_A = compoundA (mkA "apocryphal"); -- from DictEng -lin apocynaceae_PN = mkPN "Apocynaceae" ; -lin apocynum_PN = mkPN "Apocynum" ; -lin apodemus_PN = mkPN "Apodemus" ; -lin apodidae_PN = mkPN "Apodidae" ; -lin apodiformes_PN = mkPN "Apodiformes" ; -lin apogon_PN = mkPN "Apogon" ; -lin apogonidae_PN = mkPN "Apogonidae" ; -lin apoidea_PN = mkPN "Apoidea" ; -lin apollinaire_PN = mkPN "Apollinaire" ; -lin apollo_PN = mkPN "Apollo" ; -lin apollo_asteroid_PN = mkPN "Apollo asteroid" ; -lin apollo_program_PN = mkPN "Apollo program" ; -lin aporocactus_PN = mkPN "Aporocactus" ; -lin apostle_PN = mkPN "Apostle" ; -lin appalachia_PN = mkPN "Appalachia" ; -lin appalachian_A = mkA "Appalachian" ; -lin appalachian_PN = mkPN "Appalachian" ; -lin appalachians_PN = mkPN "Appalachians" ; -lin appaloosa_PN = mkPN "Appaloosa" ; -lin appenzeller_PN = mkPN "Appenzeller" ; -lin appian_way_PN = mkPN "Appian Way" ; -lin appleton_PN = mkPN "Appleton" ; -lin appleton_layer_PN = mkPN "Appleton layer" ; -lin approx_PN = mkPN "Approx"; -- from DictEng -lin apr_PN = mkPN "Apr"; -- from DictEng -lin april_PN = mkPN "April"; -- from DictEng -lin april_fools'_PN = mkPN "April Fools'" ; -lin april_fool_PN = mkPN "April fool" ; -lin apsu_PN = mkPN "Apsu" ; -lin aptenodytes_PN = mkPN "Aptenodytes" ; -lin apterygidae_PN = mkPN "Apterygidae" ; -lin apterygiformes_PN = mkPN "Apterygiformes" ; -lin apus_PN = mkPN "Apus" ; -lin aquarius_PN = mkPN "Aquarius"; -- from DictEng -lin aquifoliaceae_PN = mkPN "Aquifoliaceae" ; -lin aquila_PN = mkPN "Aquila" ; -lin aquinas_PN = mkPN "Aquinas" ; -lin aquitaine_PN = mkPN "Aquitaine" ; -lin ara_PN = mkPN "Ara" ; -lin arab_PN = mkPN "Arab" ; -lin arab_israeli_war_PN = mkPN "Arab Israeli War" ; -lin arab_league_PN = mkPN "Arab League" ; -lin arabian_A = compoundA (mkA "arabian"); -- from DictEng -lin arabian_PN = mkPN "Arabian" ; -lin arabian_desert_PN = mkPN "Arabian Desert" ; -lin arabian_nights'_entertainment_PN = mkPN "Arabian Nights' Entertainment" ; -lin arabian_peninsula_PN = mkPN "Arabian Peninsula" ; -lin arabian_sea_PN = mkPN "Arabian Sea" ; -lin arabian_camel_PN = mkPN "Arabian camel" ; -lin arabian_coffee_PN = mkPN "Arabian coffee" ; -lin arabian_jasmine_PN = mkPN "Arabian jasmine" ; -lin arabic_A = compoundA (mkA "arabic"); -- from DictEng -lin arabic_PN = mkPN "Arabic" ; -lin arabic_alphabet_PN = mkPN "Arabic alphabet" ; -lin arabic_numeral_PN = mkPN "Arabic numeral" ; -lin arabidopsis_PN = mkPN "Arabidopsis" ; -lin arabidopsis_lyrata_PN = mkPN "Arabidopsis lyrata" ; -lin arabidopsis_thaliana_PN = mkPN "Arabidopsis thaliana" ; -lin arabis_PN = mkPN "Arabis" ; -lin arabist_PN = mkPN "Arabist" ; -lin araceae_PN = mkPN "Araceae" ; -lin arachis_PN = mkPN "Arachis" ; -lin arachnida_PN = mkPN "Arachnida" ; -lin arafat_PN = mkPN "Arafat" ; -lin arafura_sea_PN = mkPN "Arafura Sea" ; -lin aragon_PN = mkPN "Aragon" ; -lin araguaia_PN = mkPN "Araguaia" ; -lin arales_PN = mkPN "Arales" ; -lin araliaceae_PN = mkPN "Araliaceae" ; -lin aram_PN = mkPN "Aram" ; -lin aramaic_A = mkA "Aramaic" ; -lin aramaic_PN = mkPN "Aramaic" ; -lin aramean_A = mkA "Aramean" ; -lin aramean_PN = mkPN "Aramean" ; -lin aramus_PN = mkPN "Aramus" ; -lin aran_islands_PN = mkPN "Aran Islands" ; -lin aranea_PN = mkPN "Aranea" ; -lin araneae_PN = mkPN "Araneae" ; -lin aranyaka_PN = mkPN "Aranyaka" ; -lin arapaho_PN = mkPN "Arapaho" ; -lin ararat_PN = mkPN "Ararat" ; -lin aras_PN = mkPN "Aras" ; -lin arauca_PN = mkPN "Arauca" ; -lin araucariaceae_PN = mkPN "Araucariaceae" ; -lin araujia_PN = mkPN "Araujia" ; -lin arawak_PN = mkPN "Arawak" ; -lin arawakan_A = mkA "Arawakan" ; -lin arawn_PN = mkPN "Arawn" ; -lin arbor_day_PN = mkPN "Arbor Day" ; -lin arbroath_PN = mkPN "Arbroath"; -- from DictEng -lin arca_PN = mkPN "Arca" ; -lin arcadia_PN = mkPN "Arcadia" ; -lin arcadian_PN = mkPN "Arcadian" ; -lin arcadic_PN = mkPN "Arcadic" ; -lin arcellidae_PN = mkPN "Arcellidae" ; -lin arceuthobium_PN = mkPN "Arceuthobium" ; -lin archaeornithes_PN = mkPN "Archaeornithes" ; -lin archean_PN = mkPN "Archean" ; -lin arches_national_park_PN = mkPN "Arches National Park" ; -lin archiannelida_PN = mkPN "Archiannelida" ; -lin archidiskidon_PN = mkPN "Archidiskidon" ; -lin archilochus_PN = mkPN "Archilochus" ; -lin archilochus_colubris_PN = mkPN "Archilochus colubris" ; -lin archimedes_PN = mkPN "Archimedes" ; -lin archimedes'_principle_PN = mkPN "Archimedes' principle" ; -lin archosargus_PN = mkPN "Archosargus" ; -lin archosauria_PN = mkPN "Archosauria" ; -lin arcidae_PN = mkPN "Arcidae" ; -lin arctic_PN = mkPN "Arctic" ; -lin arctic_archipelago_PN = mkPN "Arctic Archipelago" ; -lin arctic_circle_PN = mkPN "Arctic Circle" ; -lin arctic_ocean_PN = mkPN "Arctic Ocean" ; -lin arctic_char_PN = mkPN "Arctic char" ; -lin arctic_fox_PN = mkPN "Arctic fox" ; -lin arctic_ground_squirrel_PN = mkPN "Arctic ground squirrel" ; -lin arctictis_PN = mkPN "Arctictis" ; -lin arctiidae_PN = mkPN "Arctiidae" ; -lin arctium_PN = mkPN "Arctium" ; -lin arctocebus_PN = mkPN "Arctocebus" ; -lin arctocephalus_PN = mkPN "Arctocephalus" ; -lin arctonyx_PN = mkPN "Arctonyx" ; -lin arctostaphylos_PN = mkPN "Arctostaphylos" ; -lin arctotis_PN = mkPN "Arctotis" ; -lin arcturus_PN = mkPN "Arcturus" ; -lin ardea_PN = mkPN "Ardea" ; -lin ardeidae_PN = mkPN "Ardeidae" ; -lin ardennes_PN = mkPN "Ardennes" ; -lin ardisia_PN = mkPN "Ardisia" ; -lin ardrossan_PN = mkPN "Ardrossan"; -- from DictEng -lin arecidae_PN = mkPN "Arecidae" ; -lin arenaria_PN = mkPN "Arenaria" ; -lin arenaviridae_PN = mkPN "Arenaviridae" ; -lin arendt_PN = mkPN "Arendt" ; -lin arenga_PN = mkPN "Arenga" ; -lin areopagite_PN = mkPN "Areopagite" ; -lin areopagus_PN = mkPN "Areopagus" ; -lin arequipa_PN = mkPN "Arequipa" ; -lin ares_PN = mkPN "Ares" ; -lin argasidae_PN = mkPN "Argasidae" ; -lin argentina_PN = mkPN "Argentina"; -- from DictEng -lin argentine_A = mkA "Argentine" ; -lin argentine_PN = mkPN "Argentine"; -- from DictEng -lin argentine_hemorrhagic_fever_PN = mkPN "Argentine hemorrhagic fever" ; -lin argentine_monetary_unit_PN = mkPN "Argentine monetary unit" ; -lin argentinian_PN = mkPN "Argentinian" ; -lin argentinidae_PN = mkPN "Argentinidae" ; -lin argiope_PN = mkPN "Argiope" ; -lin argiopidae_PN = mkPN "Argiopidae" ; -lin argive_A = mkA "Argive" ; -lin argive_PN = mkPN "Argive" ; -lin argo_PN = mkPN "Argo" ; -lin argonaut_PN = mkPN "Argonaut" ; -lin argonauta_PN = mkPN "Argonauta" ; -lin argonautidae_PN = mkPN "Argonautidae" ; -lin argos_PN = mkPN "Argos" ; -lin argun_PN = mkPN "Argun" ; -lin argus_PN = mkPN "Argus" ; -lin argusianus_PN = mkPN "Argusianus" ; -lin argynnis_PN = mkPN "Argynnis" ; -lin argyranthemum_PN = mkPN "Argyranthemum" ; -lin argyreia_PN = mkPN "Argyreia" ; -lin argyrotaenia_PN = mkPN "Argyrotaenia" ; -lin argyroxiphium_PN = mkPN "Argyroxiphium" ; -lin arhat_PN = mkPN "Arhat" ; -lin arhus_PN = mkPN "Arhus" ; -lin ariadne_PN = mkPN "Ariadne" ; -lin ariana_PN = mkPN "Ariana" ; -lin arianism_PN = mkPN "Arianism" ; -lin arianrhod_PN = mkPN "Arianrhod" ; -lin aries_PN = mkPN "Aries"; -- from DictEng -lin ariidae_PN = mkPN "Ariidae" ; -lin arikara_PN = mkPN "Arikara" ; -lin arilus_PN = mkPN "Arilus" ; -lin ariocarpus_PN = mkPN "Ariocarpus" ; -lin ariomma_PN = mkPN "Ariomma" ; -lin arisaema_PN = mkPN "Arisaema" ; -lin arisarum_PN = mkPN "Arisarum" ; -lin aristarchus_PN = mkPN "Aristarchus" ; -lin aristarchus_of_samos_PN = mkPN "Aristarchus of Samos" ; -lin aristolochia_PN = mkPN "Aristolochia" ; -lin aristolochiaceae_PN = mkPN "Aristolochiaceae" ; -lin aristolochiales_PN = mkPN "Aristolochiales" ; -lin aristophanes_PN = mkPN "Aristophanes" ; -lin aristotelia_PN = mkPN "Aristotelia" ; -lin aristotelian_A = mkA "Aristotelian" ; -lin aristotelian_PN = mkPN "Aristotelian" ; -lin aristotelian_logic_PN = mkPN "Aristotelian logic" ; -lin aristotelianism_PN = mkPN "Aristotelianism" ; -lin aristotle_PN = mkPN "Aristotle" ; -lin arius_PN = mkPN "Arius" ; -lin arizona_PN = mkPN "Arizona"; -- from DictEng -lin arizona_ash_PN = mkPN "Arizona ash" ; -lin arizona_cypress_PN = mkPN "Arizona cypress" ; -lin arizona_sycamore_PN = mkPN "Arizona sycamore" ; -lin arizona_white_oak_PN = mkPN "Arizona white oak" ; -lin arizonan_PN = mkPN "Arizonan" ; -lin arjuna_PN = mkPN "Arjuna" ; -lin ark_PN = mkPN "Ark" ; -lin arkansan_PN = mkPN "Arkansan" ; -lin arkansas_PN = mkPN "Arkansas"; -- from DictEng -lin arkansas_kingbird_PN = mkPN "Arkansas kingbird" ; -lin arlington_PN = mkPN "Arlington" ; -lin armadale_PN = mkPN "Armadale"; -- from DictEng -lin armadillidiidae_PN = mkPN "Armadillidiidae" ; -lin armadillidium_PN = mkPN "Armadillidium" ; -lin armageddon_PN = mkPN "Armageddon"; -- from DictEng -lin armagh_PN = mkPN "Armagh"; -- from DictEng -lin armagnac_PN = mkPN "Armagnac" ; -lin armata_corsa_PN = mkPN "Armata Corsa" ; -lin armed_forces_day_PN = mkPN "Armed Forces Day" ; -lin armed_islamic_group_PN = mkPN "Armed Islamic Group" ; -lin armenia_PN = mkPN "Armenia" ; -lin armenian_A = mkA "Armenian" ; -lin armenian_PN = mkPN "Armenian" ; -lin armenian_church_PN = mkPN "Armenian Church" ; -lin armenian_secret_army_for_the_liberation_of_armenia_PN = mkPN "Armenian Secret Army for the Liberation of Armenia" ; -lin armenian_monetary_unit_PN = mkPN "Armenian monetary unit" ; -lin armeria_PN = mkPN "Armeria" ; -lin armillaria_PN = mkPN "Armillaria" ; -lin armillaria_caligata_PN = mkPN "Armillaria caligata" ; -lin armillaria_ponderosa_PN = mkPN "Armillaria ponderosa" ; -lin armillaria_zelleri_PN = mkPN "Armillaria zelleri" ; -lin armillariella_PN = mkPN "Armillariella" ; -lin arminian_A = mkA "Arminian" ; -lin arminian_PN = mkPN "Arminian" ; -lin arminian_baptist_PN = mkPN "Arminian Baptist" ; -lin arminian_church_PN = mkPN "Arminian Church" ; -lin arminianism_PN = mkPN "Arminianism" ; -lin arminius_PN = mkPN "Arminius" ; -lin armoracia_PN = mkPN "Armoracia" ; -lin armstrong_PN = mkPN "Armstrong" ; -lin army_high_performance_computing_research_center_PN = mkPN "Army High Performance Computing Research Center" ; -lin army_intelligence_PN = mkPN "Army Intelligence" ; -lin army_national_guard_PN = mkPN "Army National Guard" ; -lin army_for_the_liberation_of_rwanda_PN = mkPN "Army for the Liberation of Rwanda" ; -lin arnhem_PN = mkPN "Arnhem"; -- from DictEng -lin arnica_montana_PN = mkPN "Arnica montana" ; -lin arno_PN = mkPN "Arno" ; -lin arnold_PN = mkPN "Arnold"; -- from DictEng -lin arnold_chiari_deformity_PN = mkPN "Arnold Chiari deformity" ; -lin arnold_of_brescia_PN = mkPN "Arnold of Brescia" ; -lin arnoseris_PN = mkPN "Arnoseris" ; -lin arp_PN = mkPN "Arp" ; -lin arr_PN = mkPN "Arr"; -- from DictEng -lin arrhenatherum_PN = mkPN "Arrhenatherum" ; -lin arrhenius_PN = mkPN "Arrhenius" ; -lin art_PN = mkPN "Art"; -- from DictEng -lin artamidae_PN = mkPN "Artamidae" ; -lin artamus_PN = mkPN "Artamus" ; -lin artaxerxes_i_PN = mkPN "Artaxerxes I" ; -lin artaxerxes_ii_PN = mkPN "Artaxerxes II" ; -lin artemia_PN = mkPN "Artemia" ; -lin artemis_PN = mkPN "Artemis" ; -lin artemision_at_ephesus_PN = mkPN "Artemision at Ephesus" ; -lin arthropoda_PN = mkPN "Arthropoda" ; -lin arthropteris_PN = mkPN "Arthropteris" ; -lin arthur_PN = mkPN "Arthur"; -- from DictEng -lin arthurian_A = mkA "Arthurian" ; -lin arthurian_legend_PN = mkPN "Arthurian legend" ; -lin articles_of_confederation_PN = mkPN "Articles of Confederation" ; -lin artie_PN = mkPN "Artie"; -- from DictEng -lin artiodactyla_PN = mkPN "Artiodactyla" ; -lin artocarpus_PN = mkPN "Artocarpus" ; -lin artois_PN = mkPN "Artois" ; -lin aruba_PN = mkPN "Aruba" ; -lin arulo_PN = mkPN "Arulo" ; -lin arundinaria_PN = mkPN "Arundinaria" ; -lin arundo_PN = mkPN "Arundo" ; -lin aruru_PN = mkPN "Aruru" ; -lin arvicola_PN = mkPN "Arvicola" ; -lin aryan_PN = mkPN "Aryan" ; -lin asahikawa_PN = mkPN "Asahikawa" ; -lin asama_PN = mkPN "Asama" ; -lin asanga_PN = mkPN "Asanga" ; -lin asap_PN = mkPN "Asap"; -- from DictEng -lin asarh_PN = mkPN "Asarh" ; -lin asarum_PN = mkPN "Asarum" ; -lin asbat_al_ansar_PN = mkPN "Asbat al Ansar" ; -lin ascaphidae_PN = mkPN "Ascaphidae" ; -lin ascaphus_PN = mkPN "Ascaphus" ; -lin ascaridae_PN = mkPN "Ascaridae" ; -lin ascaridia_PN = mkPN "Ascaridia" ; -lin ascaris_PN = mkPN "Ascaris" ; -lin ascension_PN = mkPN "Ascension" ; -lin asch_PN = mkPN "Asch" ; -lin ascidiaceae_PN = mkPN "Ascidiaceae" ; -lin asclepiadaceae_PN = mkPN "Asclepiadaceae" ; -lin asclepias_PN = mkPN "Asclepias" ; -lin ascomycetes_PN = mkPN "Ascomycetes" ; -lin ascomycota_PN = mkPN "Ascomycota" ; -lin ascophyllum_PN = mkPN "Ascophyllum" ; -lin ascot_PN = mkPN "Ascot"; -- from DictEng -lin asgard_PN = mkPN "Asgard" ; -lin ash_can_PN = mkPN "Ash Can" ; -lin ash_wednesday_PN = mkPN "Ash Wednesday" ; -lin ashbourne_PN = mkPN "Ashbourne"; -- from DictEng -lin ashby_PN = mkPN "Ashby"; -- from DictEng -lin ashby_de_la_zouch_PN = mkPN "Ashby de la Zouch"; -- from DictEng -lin ashby_woulds_PN = mkPN "Ashby Woulds"; -- from DictEng -lin ashcan_school_PN = mkPN "Ashcan School" ; -lin ashe_PN = mkPN "Ashe" ; -lin asheville_PN = mkPN "Asheville" ; -lin ashford_PN = mkPN "Ashford"; -- from DictEng -lin ashington_PN = mkPN "Ashington"; -- from DictEng -lin ashkenazi_PN = mkPN "Ashkenazi" ; -lin ashkhabad_PN = mkPN "Ashkhabad" ; -lin ashton_PN = mkPN "Ashton" ; -lin ashton_in_makerfield_PN = mkPN "Ashton - in - makerfield"; -- from DictEng -lin ashton_under_lyne_PN = mkPN "Ashton - under - lyne"; -- from DictEng -lin ashur_PN = mkPN "Ashur" ; -lin ashurbanipal_PN = mkPN "Ashurbanipal" ; -lin asia_PN = mkPN "Asia" ; -lin asia_minor_PN = mkPN "Asia Minor" ; -lin asian_A = compoundA (mkA "Asian"); -- from DictEng -lin asian_PN = mkPN "Asian" ; -lin asian_american_PN = mkPN "Asian American" ; -lin asian_russia_PN = mkPN "Asian Russia" ; -lin asian_black_grouse_PN = mkPN "Asian black grouse" ; -lin asian_coral_snake_PN = mkPN "Asian coral snake" ; -lin asian_country_PN = mkPN "Asian country" ; -lin asian_crocodile_PN = mkPN "Asian crocodile" ; -lin asian_horseshoe_crab_PN = mkPN "Asian horseshoe crab" ; -lin asian_influenza_PN = mkPN "Asian influenza" ; -lin asian_longhorned_beetle_PN = mkPN "Asian longhorned beetle" ; -lin asian_tiger_mosquito_PN = mkPN "Asian tiger mosquito" ; -lin asian_wild_ox_PN = mkPN "Asian wild ox" ; -lin asiatic_black_bear_PN = mkPN "Asiatic black bear" ; -lin asiatic_flying_squirrel_PN = mkPN "Asiatic flying squirrel" ; -lin asiatic_shrew_mole_PN = mkPN "Asiatic shrew mole" ; -lin asiatic_sweetleaf_PN = mkPN "Asiatic sweetleaf" ; -lin asilidae_PN = mkPN "Asilidae" ; -lin asimina_PN = mkPN "Asimina" ; -lin asimov_PN = mkPN "Asimov" ; -lin asin_PN = mkPN "Asin" ; -lin asio_PN = mkPN "Asio" ; -lin ask_jeeves_PN = mkPN "Ask Jeeves" ; -lin askern_PN = mkPN "Askern"; -- from DictEng -lin asmara_PN = mkPN "Asmara" ; -lin aspalathus_PN = mkPN "Aspalathus" ; -lin asparagaceae_PN = mkPN "Asparagaceae" ; -lin asperger's_syndrome_PN = mkPN "Asperger's syndrome" ; -lin aspergillaceae_PN = mkPN "Aspergillaceae" ; -lin aspergillus_PN = mkPN "Aspergillus" ; -lin aspergillus_fumigatus_PN = mkPN "Aspergillus fumigatus" ; -lin asperula_PN = mkPN "Asperula" ; -lin asphodelaceae_PN = mkPN "Asphodelaceae" ; -lin asphodeline_PN = mkPN "Asphodeline" ; -lin asphodelus_PN = mkPN "Asphodelus" ; -lin aspidelaps_PN = mkPN "Aspidelaps" ; -lin aspidiotus_PN = mkPN "Aspidiotus" ; -lin aspidophoroides_PN = mkPN "Aspidophoroides" ; -lin aspleniaceae_PN = mkPN "Aspleniaceae" ; -lin asplenium_PN = mkPN "Asplenium" ; -lin aspull_PN = mkPN "Aspull"; -- from DictEng -lin assam_PN = mkPN "Assam" ; -lin assamese_A = mkA "Assamese" ; -lin assamese_PN = mkPN "Assamese" ; -lin assault_PN = mkPN "Assault" ; -lin assemblies_of_god_PN = mkPN "Assemblies of God" ; -lin associate_in_applied_science_PN = mkPN "Associate in Applied Science" ; -lin associate_in_arts_PN = mkPN "Associate in Arts" ; -lin associate_in_nursing_PN = mkPN "Associate in Nursing" ; -lin association_for_the_advancement_of_retired_persons_PN = mkPN "Association for the Advancement of Retired Persons" ; -lin association_of_southeast_asian_nations_PN = mkPN "Association of Southeast Asian Nations" ; -lin assumption_PN = mkPN "Assumption" ; -lin assur_PN = mkPN "Assur" ; -lin assyria_PN = mkPN "Assyria" ; -lin assyrian_PN = mkPN "Assyrian" ; -lin assyrian_akkadian_PN = mkPN "Assyrian Akkadian" ; -lin assyrian_neo_aramaic_PN = mkPN "Assyrian Neo Aramaic" ; -lin assyriology_PN = mkPN "Assyriology" ; -lin astacidae_PN = mkPN "Astacidae" ; -lin astacus_PN = mkPN "Astacus" ; -lin astaire_PN = mkPN "Astaire" ; -lin astana_PN = mkPN "Astana" ; -lin astarte_PN = mkPN "Astarte" ; -lin asteridae_PN = mkPN "Asteridae" ; -lin asteroidea_PN = mkPN "Asteroidea" ; -lin aston_PN = mkPN "Aston"; -- from DictEng -lin astor_PN = mkPN "Astor" ; -lin astragalus_PN = mkPN "Astragalus" ; -lin astrakhan_PN = mkPN "Astrakhan" ; -lin astreus_PN = mkPN "Astreus" ; -lin astreus_hygrometricus_PN = mkPN "Astreus hygrometricus" ; -lin astreus_pteridis_PN = mkPN "Astreus pteridis" ; -lin astroloma_PN = mkPN "Astroloma" ; -lin astronium_PN = mkPN "Astronium" ; -lin astronomical_unit_PN = mkPN "Astronomical Unit" ; -lin astrophyton_PN = mkPN "Astrophyton" ; -lin astrophyton_muricatum_PN = mkPN "Astrophyton muricatum" ; -lin astropogon_PN = mkPN "Astropogon" ; -lin asuncion_PN = mkPN "Asuncion" ; -lin asura_PN = mkPN "Asura" ; -lin asvins_PN = mkPN "Asvins" ; -lin aswan_PN = mkPN "Aswan" ; -lin aswan_high_dam_PN = mkPN "Aswan High Dam" ; -lin atacama_desert_PN = mkPN "Atacama Desert" ; -lin atacama_trench_PN = mkPN "Atacama Trench" ; -lin atakapa_PN = mkPN "Atakapa" ; -lin ataturk_PN = mkPN "Ataturk" ; -lin ate_PN = mkPN "Ate" ; -lin ateles_PN = mkPN "Ateles" ; -lin aten_PN = mkPN "Aten" ; -lin athanasian_creed_PN = mkPN "Athanasian Creed" ; -lin athanasianism_PN = mkPN "Athanasianism" ; -lin athanasius_PN = mkPN "Athanasius" ; -lin athapaskan_PN = mkPN "Athapaskan" ; -lin atharva_veda_PN = mkPN "Atharva Veda" ; -lin athelstan_PN = mkPN "Athelstan" ; -lin athena_PN = mkPN "Athena" ; -lin athene_PN = mkPN "Athene" ; -lin athenian_A = compoundA (mkA "athenian"); -- from DictEng -lin athenian_PN = mkPN "Athenian" ; -lin athens_PN = mkPN "Athens"; -- from DictEng -lin atherinidae_PN = mkPN "Atherinidae" ; -lin atherinopsis_PN = mkPN "Atherinopsis" ; -lin atherstone_PN = mkPN "Atherstone"; -- from DictEng -lin atherurus_PN = mkPN "Atherurus" ; -lin athiorhodaceae_PN = mkPN "Athiorhodaceae" ; -lin athlone_PN = mkPN "Athlone"; -- from DictEng -lin athos_PN = mkPN "Athos" ; -lin athrotaxis_PN = mkPN "Athrotaxis" ; -lin athyrium_PN = mkPN "Athyrium" ; -lin atlanta_PN = mkPN "Atlanta"; -- from DictEng -lin atlantic_A = mkA "Atlantic" ; -lin atlantic_PN = mkPN "Atlantic"; -- from DictEng -lin atlantic_city_PN = mkPN "Atlantic City" ; -lin atlantic_coast_PN = mkPN "Atlantic Coast" ; -lin atlantic_time_PN = mkPN "Atlantic Time" ; -lin atlantic_bottlenose_dolphin_PN = mkPN "Atlantic bottlenose dolphin" ; -lin atlantic_cod_PN = mkPN "Atlantic cod" ; -lin atlantic_croaker_PN = mkPN "Atlantic croaker" ; -lin atlantic_halibut_PN = mkPN "Atlantic halibut" ; -lin atlantic_herring_PN = mkPN "Atlantic herring" ; -lin atlantic_manta_PN = mkPN "Atlantic manta" ; -lin atlantic_puffin_PN = mkPN "Atlantic puffin" ; -lin atlantic_ridley_PN = mkPN "Atlantic ridley" ; -lin atlantic_sailfish_PN = mkPN "Atlantic sailfish" ; -lin atlantic_salmon_PN = mkPN "Atlantic salmon" ; -lin atlantic_sea_bream_PN = mkPN "Atlantic sea bream" ; -lin atlantic_spiny_dogfish_PN = mkPN "Atlantic spiny dogfish" ; -lin atlantic_tripletail_PN = mkPN "Atlantic tripletail" ; -lin atlantic_walrus_PN = mkPN "Atlantic walrus" ; -lin atlantis_PN = mkPN "Atlantis" ; -lin atlas_PN = mkPN "Atlas" ; -lin atlas_mountains_PN = mkPN "Atlas Mountains" ; -lin atlas_cedar_PN = mkPN "Atlas cedar" ; -lin atomic_energy_commission_PN = mkPN "Atomic Energy Commission" ; -lin atreus_PN = mkPN "Atreus" ; -lin atrichornis_PN = mkPN "Atrichornis" ; -lin atrichornithidae_PN = mkPN "Atrichornithidae" ; -lin atriplex_PN = mkPN "Atriplex" ; -lin atropa_PN = mkPN "Atropa" ; -lin atropidae_PN = mkPN "Atropidae" ; -lin atropos_PN = mkPN "Atropos" ; -lin atsugewi_PN = mkPN "Atsugewi" ; -lin attalea_PN = mkPN "Attalea" ; -lin attic_A = compoundA (mkA "attic"); -- from DictEng -lin attic_PN = mkPN "Attic" ; -lin attica_PN = mkPN "Attica" ; -lin atticus_PN = mkPN "Atticus" ; -lin attila_PN = mkPN "Attila" ; -lin attlee_PN = mkPN "Attlee" ; -lin attorney_general_PN = mkPN "Attorney General" ; -lin auchincloss_PN = mkPN "Auchincloss" ; -lin auckland_PN = mkPN "Auckland"; -- from DictEng -lin aucuba_PN = mkPN "Aucuba" ; -lin auden_PN = mkPN "Auden" ; -lin audenesque_A = mkA "Audenesque" ; -lin audley_PN = mkPN "Audley"; -- from DictEng -lin audrey_PN = mkPN "Audrey"; -- from DictEng -lin audubon_PN = mkPN "Audubon" ; -lin audubon's_caracara_PN = mkPN "Audubon's caracara" ; -lin audubon's_warbler_PN = mkPN "Audubon's warbler" ; -lin aug_PN = mkPN "Aug"; -- from DictEng -lin augean_A = mkA "Augean" ; -lin augean_stables_PN = mkPN "Augean stables" ; -lin augeas_PN = mkPN "Augeas" ; -lin augsburg_PN = mkPN "Augsburg"; -- from DictEng -lin augsburg_confession_PN = mkPN "Augsburg Confession" ; -lin august_PN = mkPN "August"; -- from DictEng -lin augusta_PN = mkPN "Augusta" ; -lin augustan_A = compoundA (mkA "augustan"); -- from DictEng -lin augustine_PN = mkPN "Augustine" ; -lin augustinian_PN = mkPN "Augustinian" ; -lin augustinian_canons_PN = mkPN "Augustinian Canons" ; -lin augustinian_hermits_PN = mkPN "Augustinian Hermits" ; -lin augustinian_order_PN = mkPN "Augustinian order" ; -lin augustus_PN = mkPN "Augustus" ; -lin aulacorhyncus_PN = mkPN "Aulacorhyncus" ; -lin aulostomidae_PN = mkPN "Aulostomidae" ; -lin aulostomus_PN = mkPN "Aulostomus" ; -lin aum_shinrikyo_PN = mkPN "Aum Shinrikyo" ; -lin aureolaria_PN = mkPN "Aureolaria" ; -lin auricularia_PN = mkPN "Auricularia" ; -lin auriculariaceae_PN = mkPN "Auriculariaceae" ; -lin auriculariales_PN = mkPN "Auriculariales" ; -lin auriga_PN = mkPN "Auriga" ; -lin auriparus_PN = mkPN "Auriparus" ; -lin aurora_PN = mkPN "Aurora" ; -lin auschwitz_PN = mkPN "Auschwitz" ; -lin austen_PN = mkPN "Austen" ; -lin austerlitz_PN = mkPN "Austerlitz" ; -lin austin_PN = mkPN "Austin" ; -lin austin_friar_PN = mkPN "Austin Friar" ; -lin austin_friars_PN = mkPN "Austin Friars" ; -lin australasia_PN = mkPN "Australasia" ; -lin australasian_A = mkA "Australasian" ; -lin australia_PN = mkPN "Australia"; -- from DictEng -lin australian_A = compoundA (mkA "australian"); -- from DictEng -lin australian_PN = mkPN "Australian" ; -lin australian_alps_PN = mkPN "Australian Alps" ; -lin australian_desert_PN = mkPN "Australian Desert" ; -lin australian_labor_party_PN = mkPN "Australian Labor Party" ; -lin australian_arowana_PN = mkPN "Australian arowana" ; -lin australian_blacksnake_PN = mkPN "Australian blacksnake" ; -lin australian_bonytongue_PN = mkPN "Australian bonytongue" ; -lin australian_cockroach_PN = mkPN "Australian cockroach" ; -lin australian_coral_snake_PN = mkPN "Australian coral snake" ; -lin australian_dollar_PN = mkPN "Australian dollar" ; -lin australian_grass_tree_PN = mkPN "Australian grass tree" ; -lin australian_hare's_foot_PN = mkPN "Australian hare's foot" ; -lin australian_heath_PN = mkPN "Australian heath" ; -lin australian_lungfish_PN = mkPN "Australian lungfish" ; -lin australian_magpie_PN = mkPN "Australian magpie" ; -lin australian_nettle_PN = mkPN "Australian nettle" ; -lin australian_pea_PN = mkPN "Australian pea" ; -lin australian_pine_PN = mkPN "Australian pine" ; -lin australian_pitcher_plant_PN = mkPN "Australian pitcher plant" ; -lin australian_reed_grass_PN = mkPN "Australian reed grass" ; -lin australian_sea_lion_PN = mkPN "Australian sea lion" ; -lin australian_state_PN = mkPN "Australian state" ; -lin australian_sumac_PN = mkPN "Australian sumac" ; -lin australian_terrier_PN = mkPN "Australian terrier" ; -lin australian_turtledove_PN = mkPN "Australian turtledove" ; -lin australopithecus_afarensis_PN = mkPN "Australopithecus afarensis" ; -lin australopithecus_africanus_PN = mkPN "Australopithecus africanus" ; -lin australopithecus_boisei_PN = mkPN "Australopithecus boisei" ; -lin australopithecus_robustus_PN = mkPN "Australopithecus robustus" ; -lin austria_PN = mkPN "Austria"; -- from DictEng -lin austria_hungary_PN = mkPN "Austria Hungary" ; -lin austrian_A = compoundA (mkA "austrian"); -- from DictEng -lin austrian_PN = mkPN "Austrian" ; -lin austrian_monetary_unit_PN = mkPN "Austrian monetary unit" ; -lin austro_asiatic_PN = mkPN "Austro Asiatic" ; -lin austrocedrus_PN = mkPN "Austrocedrus" ; -lin austronesia_PN = mkPN "Austronesia" ; -lin austronesian_A = mkA "Austronesian" ; -lin austronesian_PN = mkPN "Austronesian" ; -lin austrotaxus_PN = mkPN "Austrotaxus" ; -lin authorized_version_PN = mkPN "Authorized Version" ; -lin automeris_PN = mkPN "Automeris" ; -lin auvergne_PN = mkPN "Auvergne" ; -lin avahi_PN = mkPN "Avahi" ; -lin avalokitesvara_PN = mkPN "Avalokitesvara" ; -lin ave_PN = mkPN "Ave"; -- from DictEng -lin ave_maria_PN = mkPN "Ave Maria" ; -lin aveley_PN = mkPN "Aveley"; -- from DictEng -lin avena_PN = mkPN "Avena" ; -lin averrhoa_PN = mkPN "Averrhoa" ; -lin averroes_PN = mkPN "Averroes" ; -lin aves_PN = mkPN "Aves" ; -lin avesta_PN = mkPN "Avesta" ; -lin avestan_A = mkA "Avestan" ; -lin avestan_PN = mkPN "Avestan" ; -lin avicenna_PN = mkPN "Avicenna" ; -lin avicennia_PN = mkPN "Avicennia" ; -lin avicenniaceae_PN = mkPN "Avicenniaceae" ; -lin avignon_PN = mkPN "Avignon"; -- from DictEng -lin avogadro_PN = mkPN "Avogadro" ; -lin avogadro's_law_PN = mkPN "Avogadro's law" ; -lin avogadro's_number_PN = mkPN "Avogadro's number" ; -lin avon_PN = mkPN "Avon"; -- from DictEng -lin axis_PN = mkPN "Axis" ; -lin aycliffe_PN = mkPN "Aycliffe"; -- from DictEng -lin aylesbury_PN = mkPN "Aylesbury"; -- from DictEng -lin aylesford_PN = mkPN "Aylesford"; -- from DictEng -lin ayr_PN = mkPN "Ayr"; -- from DictEng -lin ayrshire_PN = mkPN "Ayrshire" ; -lin aythya_PN = mkPN "Aythya" ; -lin ayurveda_PN = mkPN "Ayurveda" ; -lin az_zarqa_PN = mkPN "Az Zarqa" ; -lin azadirachta_PN = mkPN "Azadirachta" ; -lin azerbaijan_PN = mkPN "Azerbaijan" ; -lin azerbaijani_A = mkA "Azerbaijani" ; -lin azerbaijani_PN = mkPN "Azerbaijani" ; -lin azerbaijani_monetary_unit_PN = mkPN "Azerbaijani monetary unit" ; -lin azeri_PN = mkPN "Azeri" ; -lin azolla_PN = mkPN "Azolla" ; -lin azollaceae_PN = mkPN "Azollaceae" ; -lin azores_PN = mkPN "Azores" ; -lin aztec_PN = mkPN "Aztec" ; -lin aztecan_PN = mkPN "Aztecan" ; -lin b_PN = mkPN "B" ; -lin b_52_PN = mkPN "B 52" ; -lin b_complex_vitamin_PN = mkPN "B complex vitamin" ; -lin b_flat_clarinet_PN = mkPN "B flat clarinet" ; -lin b_girl_PN = mkPN "B girl" ; -lin b_horizon_PN = mkPN "B horizon" ; -lin b_scan_ultrasonography_PN = mkPN "B scan ultrasonography" ; -lin basic_PN = mkPN "BASIC" ; -lin bb_PN = mkPN "BB" ; -lin bb_gun_PN = mkPN "BB gun" ; -lin bc_Adv = mkAdv "BC" ; -lin bce_Adv = mkAdv "BCE" ; -lin bvd_PN = mkPN "BVD" ; -lin b_battery_PN = mkPN "B battery" ; -lin b_cell_PN = mkPN "B cell" ; -lin baader_meinhof_gang_PN = mkPN "Baader Meinhof Gang" ; -lin baal_PN = mkPN "Baal" ; -lin babar_PN = mkPN "Babar" ; -lin babbitt_metal_PN = mkPN "Babbitt metal" ; -lin babesiidae_PN = mkPN "Babesiidae" ; -lin babinski_PN = mkPN "Babinski" ; -lin babs_PN = mkPN "Babs"; -- from DictEng -lin babylon_PN = mkPN "Babylon" ; -lin babylonia_PN = mkPN "Babylonia" ; -lin babylonian_A = mkA "Babylonian" ; -lin babylonian_PN = mkPN "Babylonian" ; -lin babylonian_captivity_PN = mkPN "Babylonian Captivity" ; -lin babyrousa_PN = mkPN "Babyrousa" ; -lin baccharis_PN = mkPN "Baccharis" ; -lin bacchus_PN = mkPN "Bacchus" ; -lin bach_PN = mkPN "Bach" ; -lin bachelor_of_arts_PN = mkPN "Bachelor of Arts" ; -lin bachelor_of_arts_in_library_science_PN = mkPN "Bachelor of Arts in Library Science" ; -lin bachelor_of_arts_in_nursing_PN = mkPN "Bachelor of Arts in Nursing" ; -lin bachelor_of_divinity_PN = mkPN "Bachelor of Divinity" ; -lin bachelor_of_laws_PN = mkPN "Bachelor of Laws" ; -lin bachelor_of_literature_PN = mkPN "Bachelor of Literature" ; -lin bachelor_of_medicine_PN = mkPN "Bachelor of Medicine" ; -lin bachelor_of_music_PN = mkPN "Bachelor of Music" ; -lin bachelor_of_naval_science_PN = mkPN "Bachelor of Naval Science" ; -lin bachelor_of_science_PN = mkPN "Bachelor of Science" ; -lin bachelor_of_science_in_architecture_PN = mkPN "Bachelor of Science in Architecture" ; -lin bachelor_of_science_in_engineering_PN = mkPN "Bachelor of Science in Engineering" ; -lin bachelor_of_theology_PN = mkPN "Bachelor of Theology" ; -lin bacillaceae_PN = mkPN "Bacillaceae" ; -lin bacillariophyceae_PN = mkPN "Bacillariophyceae" ; -lin bacillus_anthracis_PN = mkPN "Bacillus anthracis" ; -lin bacillus_subtilis_PN = mkPN "Bacillus subtilis" ; -lin backworth_PN = mkPN "Backworth"; -- from DictEng -lin bacon_PN = mkPN "Bacon" ; -lin bacteroidaceae_PN = mkPN "Bacteroidaceae" ; -lin bacteroides_PN = mkPN "Bacteroides" ; -lin bactrian_camel_PN = mkPN "Bactrian camel" ; -lin bacup_PN = mkPN "Bacup"; -- from DictEng -lin bad_lands_PN = mkPN "Bad Lands" ; -lin badaga_PN = mkPN "Badaga" ; -lin badajoz_PN = mkPN "Badajoz"; -- from DictEng -lin badalona_PN = mkPN "Badalona"; -- from DictEng -lin bade_PN = mkPN "Bade" ; -lin badlands_national_park_PN = mkPN "Badlands National Park" ; -lin baedeker_PN = mkPN "Baedeker" ; -lin baffin_bay_PN = mkPN "Baffin Bay" ; -lin baffin_island_PN = mkPN "Baffin Island" ; -lin baghdad_PN = mkPN "Baghdad"; -- from DictEng -lin bahai_A = mkA "Bahai" ; -lin bahai_PN = mkPN "Bahai" ; -lin bahaism_PN = mkPN "Bahaism" ; -lin bahamas_PN = mkPN "Bahamas"; -- from DictEng -lin bahamian_A = compoundA (mkA "bahamian"); -- from DictEng -lin bahamian_PN = mkPN "Bahamian" ; -lin bahamian_dollar_PN = mkPN "Bahamian dollar" ; -lin bahia_blanca_PN = mkPN "Bahia Blanca" ; -lin bahia_grass_PN = mkPN "Bahia grass" ; -lin bahrain_PN = mkPN "Bahrain"; -- from DictEng -lin bahrain_dinar_PN = mkPN "Bahrain dinar" ; -lin bahraini_A = compoundA (mkA "bahraini"); -- from DictEng -lin bahraini_PN = mkPN "Bahraini" ; -lin bahrainian_monetary_unit_PN = mkPN "Bahrainian monetary unit" ; -lin bai_PN = mkPN "Bai" ; -lin baikal_PN = mkPN "Baikal" ; -lin bailey_PN = mkPN "Bailey"; -- from DictEng -lin bailey_bridge_PN = mkPN "Bailey bridge" ; -lin baiomys_PN = mkPN "Baiomys" ; -lin bairava_PN = mkPN "Bairava" ; -lin bairdiella_PN = mkPN "Bairdiella" ; -lin baisakh_PN = mkPN "Baisakh" ; -lin bakelite_PN = mkPN "Bakelite" ; -lin bakersfield_PN = mkPN "Bakersfield" ; -lin bakke_decision_PN = mkPN "Bakke decision" ; -lin baku_PN = mkPN "Baku"; -- from DictEng -lin bakunin_PN = mkPN "Bakunin" ; -lin balaena_PN = mkPN "Balaena" ; -lin balaeniceps_PN = mkPN "Balaeniceps" ; -lin balaenicipitidae_PN = mkPN "Balaenicipitidae" ; -lin balaenidae_PN = mkPN "Balaenidae" ; -lin balaenoptera_PN = mkPN "Balaenoptera" ; -lin balaenopteridae_PN = mkPN "Balaenopteridae" ; -lin balanchine_PN = mkPN "Balanchine" ; -lin balanidae_PN = mkPN "Balanidae" ; -lin balanus_PN = mkPN "Balanus" ; -lin balarama_PN = mkPN "Balarama" ; -lin balaton_PN = mkPN "Balaton" ; -lin balboa_PN = mkPN "Balboa" ; -lin balder_PN = mkPN "Balder" ; -lin baldock_PN = mkPN "Baldock"; -- from DictEng -lin baldwin_PN = mkPN "Baldwin" ; -lin balearic_islands_PN = mkPN "Balearic Islands" ; -lin balenciaga_PN = mkPN "Balenciaga" ; -lin balfour_PN = mkPN "Balfour" ; -lin bali_PN = mkPN "Bali" ; -lin balinese_PN = mkPN "Balinese" ; -lin balistes_PN = mkPN "Balistes" ; -lin balistidae_PN = mkPN "Balistidae" ; -lin balkan_PN = mkPN "Balkan" ; -lin balkan_peninsula_PN = mkPN "Balkan Peninsula" ; -lin balkan_wars_PN = mkPN "Balkan Wars" ; -lin balkan_country_PN = mkPN "Balkan country" ; -lin balkans_PN = mkPN "Balkans" ; -lin ball_PN = mkPN "Ball" ; -lin ballistic_missile_defense_organization_PN = mkPN "Ballistic Missile Defense Organization" ; -lin ballota_PN = mkPN "Ballota" ; -lin balmoral_PN = mkPN "Balmoral" ; -lin balmoral_castle_PN = mkPN "Balmoral Castle" ; -lin balochi_PN = mkPN "Balochi" ; -lin balsaminaceae_PN = mkPN "Balsaminaceae" ; -lin balsamorhiza_PN = mkPN "Balsamorhiza" ; -lin balthazar_PN = mkPN "Balthazar" ; -lin baltic_A = mkA "Baltic" ; -lin baltic_PN = mkPN "Baltic" ; -lin baltic_finnic_PN = mkPN "Baltic Finnic" ; -lin baltic_state_PN = mkPN "Baltic State" ; -lin baltimore_PN = mkPN "Baltimore"; -- from DictEng -lin baltimore_oriole_PN = mkPN "Baltimore oriole" ; -lin balto_slavic_PN = mkPN "Balto Slavic" ; -lin balzac_PN = mkPN "Balzac" ; -lin balzacian_A = mkA "Balzacian" ; -lin bam_PN = mkPN "Bam" ; -lin bamako_PN = mkPN "Bamako" ; -lin bambusa_PN = mkPN "Bambusa" ; -lin bambuseae_PN = mkPN "Bambuseae" ; -lin banbury_PN = mkPN "Banbury"; -- from DictEng -lin band_aid_PN = mkPN "Band Aid" ; -lin bandung_PN = mkPN "Bandung"; -- from DictEng -lin banff_PN = mkPN "Banff" ; -lin bangalore_PN = mkPN "Bangalore"; -- from DictEng -lin bangiaceae_PN = mkPN "Bangiaceae" ; -lin bangkok_PN = mkPN "Bangkok"; -- from DictEng -lin bangladesh_PN = mkPN "Bangladesh"; -- from DictEng -lin bangladeshi_A = compoundA (mkA "bangladeshi"); -- from DictEng -lin bangladeshi_PN = mkPN "Bangladeshi" ; -lin bangladeshi_monetary_unit_PN = mkPN "Bangladeshi monetary unit" ; -lin bangor_PN = mkPN "Bangor"; -- from DictEng -lin bangui_PN = mkPN "Bangui" ; -lin banjul_PN = mkPN "Banjul" ; -lin bank_of_england_PN = mkPN "Bank of England" ; -lin bank_of_japan_PN = mkPN "Bank of Japan" ; -lin bankhead_PN = mkPN "Bankhead" ; -lin bankia_PN = mkPN "Bankia" ; -lin banks_PN = mkPN "Banks" ; -lin bannister_PN = mkPN "Bannister" ; -lin bannockburn_PN = mkPN "Bannockburn"; -- from DictEng -lin banti's_disease_PN = mkPN "Banti's disease" ; -lin banting_PN = mkPN "Banting" ; -lin bantoid_A = mkA "Bantoid" ; -lin bantry_PN = mkPN "Bantry"; -- from DictEng -lin bantu_A = compoundA (mkA "bantu"); -- from DictEng -lin bantu_PN = mkPN "Bantu" ; -lin bantu_speaking_A = compoundA (mkA "Bantu speaking") ; -lin baphia_PN = mkPN "Baphia" ; -lin baptisia_PN = mkPN "Baptisia" ; -lin baptist_PN = mkPN "Baptist" ; -lin baptist_church_PN = mkPN "Baptist Church" ; -lin baptist_denomination_PN = mkPN "Baptist denomination" ; -lin baptistic_A = mkA "Baptistic" ; -lin baptistic_doctrine_PN = mkPN "Baptistic doctrine" ; -lin baracaldo_PN = mkPN "Baracaldo"; -- from DictEng -lin baraka_PN = mkPN "Baraka" ; -lin barany_PN = mkPN "Barany" ; -lin barbadian_A = compoundA (mkA "barbadian"); -- from DictEng -lin barbadian_PN = mkPN "Barbadian" ; -lin barbados_PN = mkPN "Barbados"; -- from DictEng -lin barbados_dollar_PN = mkPN "Barbados dollar" ; -lin barbados_gooseberry_PN = mkPN "Barbados gooseberry" ; -lin barbara_PN = mkPN "Barbara"; -- from DictEng -lin barbarea_PN = mkPN "Barbarea" ; -lin barbarossa_PN = mkPN "Barbarossa" ; -lin barbary_PN = mkPN "Barbary" ; -lin barbary_coast_PN = mkPN "Barbary Coast" ; -lin barbary_ape_PN = mkPN "Barbary ape" ; -lin barber_PN = mkPN "Barber" ; -lin barberton_daisy_PN = mkPN "Barberton daisy" ; -lin barbuda_PN = mkPN "Barbuda" ; -lin barcelona_PN = mkPN "Barcelona"; -- from DictEng -lin bardeen_PN = mkPN "Bardeen" ; -lin barents_sea_PN = mkPN "Barents Sea" ; -lin bargoed_PN = mkPN "Bargoed"; -- from DictEng -lin bari_PN = mkPN "Bari"; -- from DictEng -lin barking_PN = mkPN "Barking"; -- from DictEng -lin barkley_PN = mkPN "Barkley" ; -lin barnaby's_thistle_PN = mkPN "Barnaby's thistle" ; -lin barnard_castle_PN = mkPN "Barnard castle"; -- from DictEng -lin barnet_PN = mkPN "Barnet"; -- from DictEng -lin barnoldswick_PN = mkPN "Barnoldswick"; -- from DictEng -lin barnsley_PN = mkPN "Barnsley"; -- from DictEng -lin barnstaple_PN = mkPN "Barnstaple"; -- from DictEng -lin barnum_PN = mkPN "Barnum" ; -lin baroque_PN = mkPN "Baroque" ; -lin barranquilla_PN = mkPN "Barranquilla"; -- from DictEng -lin barrhead_PN = mkPN "Barrhead"; -- from DictEng -lin barrie_PN = mkPN "Barrie" ; -lin barrow's_goldeneye_PN = mkPN "Barrow's goldeneye" ; -lin barrow_in_furness_PN = mkPN "Barrow - in - furness"; -- from DictEng -lin barry_PN = mkPN "Barry"; -- from DictEng -lin barrymore_PN = mkPN "Barrymore" ; -lin barstow_PN = mkPN "Barstow" ; -lin bart_PN = mkPN "Bart"; -- from DictEng -lin barth_PN = mkPN "Barth" ; -lin barthelme_PN = mkPN "Barthelme" ; -lin bartholdi_PN = mkPN "Bartholdi" ; -lin bartholin_PN = mkPN "Bartholin" ; -lin bartholin's_gland_PN = mkPN "Bartholin's gland" ; -lin bartholomew_PN = mkPN "Bartholomew"; -- from DictEng -lin bartle_frere_PN = mkPN "Bartle Frere" ; -lin bartlesville_PN = mkPN "Bartlesville" ; -lin bartlett_PN = mkPN "Bartlett" ; -lin bartok_PN = mkPN "Bartok" ; -lin barton_upon_humber_PN = mkPN "Barton - upon - humber"; -- from DictEng -lin bartram_juneberry_PN = mkPN "Bartram Juneberry" ; -lin bartramia_PN = mkPN "Bartramia" ; -lin baruch_PN = mkPN "Baruch" ; -lin baryshnikov_PN = mkPN "Baryshnikov" ; -lin basel_PN = mkPN "Basel"; -- from DictEng -lin basic_english_PN = mkPN "Basic English" ; -lin basidiomycetes_PN = mkPN "Basidiomycetes" ; -lin basidiomycota_PN = mkPN "Basidiomycota" ; -lin basil_PN = mkPN "Basil"; -- from DictEng -lin basildon_PN = mkPN "Basildon"; -- from DictEng -lin basilicata_PN = mkPN "Basilicata" ; -lin basiliscus_PN = mkPN "Basiliscus" ; -lin basingstoke_PN = mkPN "Basingstoke"; -- from DictEng -lin basket_maker_PN = mkPN "Basket Maker" ; -lin basotho_PN = mkPN "Basotho" ; -lin basque_PN = mkPN "Basque" ; -lin basque_homeland_and_freedom_PN = mkPN "Basque Homeland and Freedom" ; -lin basra_PN = mkPN "Basra" ; -lin bassariscidae_PN = mkPN "Bassariscidae" ; -lin bassariscus_PN = mkPN "Bassariscus" ; -lin basse_normandie_PN = mkPN "Basse Normandie" ; -lin basseterre_PN = mkPN "Basseterre" ; -lin bassia_PN = mkPN "Bassia" ; -lin bast_PN = mkPN "Bast" ; -lin bastille_PN = mkPN "Bastille" ; -lin bastille_day_PN = mkPN "Bastille Day" ; -lin bata_PN = mkPN "Bata" ; -lin bataan_PN = mkPN "Bataan" ; -lin bath_PN = mkPN "Bath"; -- from DictEng -lin bathgate_PN = mkPN "Bathgate"; -- from DictEng -lin bathsheba_PN = mkPN "Bathsheba" ; -lin bathyergidae_PN = mkPN "Bathyergidae" ; -lin bathyergus_PN = mkPN "Bathyergus" ; -lin batidaceae_PN = mkPN "Batidaceae" ; -lin batis_PN = mkPN "Batis" ; -lin batley_PN = mkPN "Batley"; -- from DictEng -lin batna_PN = mkPN "Batna" ; -lin baton_rouge_PN = mkPN "Baton Rouge" ; -lin baton_rouge_bridge_PN = mkPN "Baton Rouge Bridge" ; -lin batrachoididae_PN = mkPN "Batrachoididae" ; -lin batrachoseps_PN = mkPN "Batrachoseps" ; -lin battle_of_britain_PN = mkPN "Battle of Britain" ; -lin battle_of_kerbala_PN = mkPN "Battle of Kerbala" ; -lin battle_of_puebla_PN = mkPN "Battle of Puebla" ; -lin battle_of_wake_PN = mkPN "Battle of Wake" ; -lin battle_of_the_ardennes_bulge_PN = mkPN "Battle of the Ardennes Bulge" ; -lin battle_of_the_marne_PN = mkPN "Battle of the Marne" ; -lin battle_of_the_spanish_armada_PN = mkPN "Battle of the Spanish Armada" ; -lin baudelaire_PN = mkPN "Baudelaire" ; -lin bauhaus_PN = mkPN "Bauhaus" ; -lin bauhinia_PN = mkPN "Bauhinia" ; -lin baum_PN = mkPN "Baum" ; -lin bavaria_PN = mkPN "Bavaria" ; -lin bavarian_A = mkA "Bavarian" ; -lin bavarian_PN = mkPN "Bavarian" ; -lin bavarian_blue_PN = mkPN "Bavarian blue" ; -lin bavarian_cream_PN = mkPN "Bavarian cream" ; -lin bay_stater_PN = mkPN "Bay Stater" ; -lin bay_of_bengal_PN = mkPN "Bay of Bengal" ; -lin bay_of_biscay_PN = mkPN "Bay of Biscay" ; -lin bay_of_fundy_PN = mkPN "Bay of Fundy" ; -lin bay_of_naples_PN = mkPN "Bay of Naples" ; -lin bayard_PN = mkPN "Bayard" ; -lin bayes_PN = mkPN "Bayes" ; -lin bayes'_postulate_PN = mkPN "Bayes' postulate" ; -lin bayes'_theorem_PN = mkPN "Bayes' theorem" ; -lin bayesian_A = mkA "Bayesian" ; -lin bayonne_PN = mkPN "Bayonne" ; -lin bayonne_bridge_PN = mkPN "Bayonne Bridge" ; -lin bayrut_PN = mkPN "Bayrut" ; -lin bbc_PN = mkPN "BBC"; -- from DictEng -lin beacon_hill_PN = mkPN "Beacon Hill" ; -lin beaconsfield_PN = mkPN "Beaconsfield"; -- from DictEng -lin beadle_PN = mkPN "Beadle" ; -lin bearsden_PN = mkPN "Bearsden"; -- from DictEng -lin beatitude_PN = mkPN "Beatitude" ; -lin beatles_PN = mkPN "Beatles" ; -lin beatrice_PN = mkPN "Beatrice"; -- from DictEng -lin beaufort_sea_PN = mkPN "Beaufort Sea" ; -lin beaufort_scale_PN = mkPN "Beaufort scale" ; -lin beaujolais_PN = mkPN "Beaujolais" ; -lin beaumaris_PN = mkPN "Beaumaris"; -- from DictEng -lin beaumont_PN = mkPN "Beaumont" ; -lin beaumontia_PN = mkPN "Beaumontia" ; -lin beauvoir_PN = mkPN "Beauvoir" ; -lin beaverbrook_PN = mkPN "Beaverbrook" ; -lin bebington_PN = mkPN "Bebington"; -- from DictEng -lin beccles_PN = mkPN "Beccles"; -- from DictEng -lin bechtel_crab_PN = mkPN "Bechtel crab" ; -lin becker_muscular_dystrophy_PN = mkPN "Becker muscular dystrophy" ; -lin becket_PN = mkPN "Becket" ; -lin beckett_PN = mkPN "Beckett" ; -lin beckley_PN = mkPN "Beckley" ; -lin beckman_thermometer_PN = mkPN "Beckman thermometer" ; -lin becquerel_PN = mkPN "Becquerel" ; -lin beddau_PN = mkPN "Beddau"; -- from DictEng -lin bede_PN = mkPN "Bede" ; -lin bedford_PN = mkPN "Bedford"; -- from DictEng -lin bedford_cord_PN = mkPN "Bedford cord" ; -lin bedfordshire_PN = mkPN "Bedfordshire"; -- from DictEng -lin bedlam_PN = mkPN "Bedlam" ; -lin bedlington_PN = mkPN "Bedlington"; -- from DictEng -lin bedlington_terrier_PN = mkPN "Bedlington terrier" ; -lin bedouin_PN = mkPN "Bedouin" ; -lin bedwas_PN = mkPN "Bedwas"; -- from DictEng -lin beecher_PN = mkPN "Beecher" ; -lin beerbohm_PN = mkPN "Beerbohm" ; -lin beethoven_PN = mkPN "Beethoven" ; -lin beethovenian_A = mkA "Beethovenian" ; -lin begin_PN = mkPN "Begin" ; -lin begoniaceae_PN = mkPN "Begoniaceae" ; -lin beguine_PN = mkPN "Beguine" ; -lin behrens_PN = mkPN "Behrens" ; -lin beijing_PN = mkPN "Beijing" ; -lin beira_PN = mkPN "Beira" ; -lin beirut_PN = mkPN "Beirut"; -- from DictEng -lin beith_PN = mkPN "Beith"; -- from DictEng -lin bel_PN = mkPN "Bel" ; -lin bel_and_the_dragon_PN = mkPN "Bel and the Dragon" ; -lin belamcanda_PN = mkPN "Belamcanda" ; -lin belarus_PN = mkPN "Belarus" ; -lin belarusian_A = mkA "Belarusian" ; -lin belarusian_PN = mkPN "Belarusian" ; -lin belarusian_monetary_unit_PN = mkPN "Belarusian monetary unit" ; -lin belem_PN = mkPN "Belem"; -- from DictEng -lin belemnitidae_PN = mkPN "Belemnitidae" ; -lin belemnoidea_PN = mkPN "Belemnoidea" ; -lin belfast_PN = mkPN "Belfast"; -- from DictEng -lin belgian_A = compoundA (mkA "belgian"); -- from DictEng -lin belgian_PN = mkPN "Belgian" ; -lin belgian_endive_PN = mkPN "Belgian endive" ; -lin belgian_franc_PN = mkPN "Belgian franc" ; -lin belgian_hare_PN = mkPN "Belgian hare" ; -lin belgian_sheepdog_PN = mkPN "Belgian sheepdog" ; -lin belgian_waffle_PN = mkPN "Belgian waffle" ; -lin belgium_PN = mkPN "Belgium"; -- from DictEng -lin belgrade_PN = mkPN "Belgrade"; -- from DictEng -lin belinda_PN = mkPN "Belinda"; -- from DictEng -lin belisarius_PN = mkPN "Belisarius" ; -lin belize_PN = mkPN "Belize" ; -lin belize_dollar_PN = mkPN "Belize dollar" ; -lin bell_PN = mkPN "Bell" ; -lin bella_PN = mkPN "Bella"; -- from DictEng -lin bellarmine_PN = mkPN "Bellarmine" ; -lin belle_PN = mkPN "Belle"; -- from DictEng -lin belle_isle_cress_PN = mkPN "Belle Isle cress" ; -lin bellerophon_PN = mkPN "Bellerophon" ; -lin bellingham_PN = mkPN "Bellingham" ; -lin bellini_PN = mkPN "Bellini" ; -lin bellis_PN = mkPN "Bellis" ; -lin belloc_PN = mkPN "Belloc" ; -lin bellow_PN = mkPN "Bellow" ; -lin bellshill_PN = mkPN "Bellshill"; -- from DictEng -lin belmont_park_PN = mkPN "Belmont Park" ; -lin belmont_stakes_PN = mkPN "Belmont Stakes" ; -lin belo_horizonte_PN = mkPN "Belo Horizonte"; -- from DictEng -lin belonidae_PN = mkPN "Belonidae" ; -lin belostomatidae_PN = mkPN "Belostomatidae" ; -lin belper_PN = mkPN "Belper"; -- from DictEng -lin belsen_PN = mkPN "Belsen" ; -lin belshazzar_PN = mkPN "Belshazzar" ; -lin bemidji_PN = mkPN "Bemidji" ; -lin bemisia_PN = mkPN "Bemisia" ; -lin ben_PN = mkPN "Ben"; -- from DictEng -lin ben_gurion_PN = mkPN "Ben Gurion" ; -lin ben_sira_PN = mkPN "Ben Sira" ; -lin bench_PN = mkPN "Bench" ; -lin benchley_PN = mkPN "Benchley" ; -lin bend_PN = mkPN "Bend" ; -lin benday_process_PN = mkPN "Benday process" ; -lin benedict_PN = mkPN "Benedict" ; -lin benedict_xiv_PN = mkPN "Benedict XIV" ; -lin benedict_xv_PN = mkPN "Benedict XV" ; -lin benedictine_A = compoundA (mkA "benedictine"); -- from DictEng -lin benedictine_PN = mkPN "Benedictine" ; -lin benedictine_order_PN = mkPN "Benedictine order" ; -lin benelux_PN = mkPN "Benelux" ; -lin benet_PN = mkPN "Benet" ; -lin benford's_law_PN = mkPN "Benford's law" ; -lin bengal_PN = mkPN "Bengal" ; -lin bengal_light_PN = mkPN "Bengal light" ; -lin bengal_tiger_PN = mkPN "Bengal tiger" ; -lin bengali_A = compoundA (mkA "bengali"); -- from DictEng -lin bengali_PN = mkPN "Bengali" ; -lin benghazi_PN = mkPN "Benghazi" ; -lin benin_PN = mkPN "Benin"; -- from DictEng -lin benin_franc_PN = mkPN "Benin franc" ; -lin beninese_A = compoundA (mkA "beninese"); -- from DictEng -lin beninese_PN = mkPN "Beninese" ; -lin benjamin_PN = mkPN "Benjamin"; -- from DictEng -lin benjamin_franklin_bridge_PN = mkPN "Benjamin Franklin Bridge" ; -lin bennett_PN = mkPN "Bennett" ; -lin bennettitaceae_PN = mkPN "Bennettitaceae" ; -lin bennettitales_PN = mkPN "Bennettitales" ; -lin bennettitis_PN = mkPN "Bennettitis" ; -lin bennington_PN = mkPN "Bennington" ; -lin benny_PN = mkPN "Benny"; -- from DictEng -lin bentham_PN = mkPN "Bentham" ; -lin benton_PN = mkPN "Benton" ; -lin benzedrine_PN = mkPN "Benzedrine" ; -lin benzoin_PN = mkPN "Benzoin" ; -lin beograd_PN = mkPN "Beograd"; -- from DictEng -lin beowulf_PN = mkPN "Beowulf" ; -lin berber_PN = mkPN "Berber" ; -lin berberidaceae_PN = mkPN "Berberidaceae" ; -lin berberis_PN = mkPN "Berberis" ; -lin berbers_PN = mkPN "Berbers" ; -lin bercy_PN = mkPN "Bercy" ; -lin berg_PN = mkPN "Berg" ; -lin bergamo_PN = mkPN "Bergamo"; -- from DictEng -lin bergen_PN = mkPN "Bergen"; -- from DictEng -lin bergman_PN = mkPN "Bergman" ; -lin bergson_PN = mkPN "Bergson" ; -lin beria_PN = mkPN "Beria" ; -lin bering_PN = mkPN "Bering" ; -lin bering_sea_PN = mkPN "Bering Sea" ; -lin bering_strait_PN = mkPN "Bering Strait" ; -lin bering_time_PN = mkPN "Bering Time" ; -lin berith_PN = mkPN "Berith" ; -lin berkeley_PN = mkPN "Berkeley" ; -lin berkhamsted_PN = mkPN "Berkhamsted"; -- from DictEng -lin berkshire_PN = mkPN "Berkshire"; -- from DictEng -lin berkshires_PN = mkPN "Berkshires" ; -lin berlage_PN = mkPN "Berlage" ; -lin berlin_PN = mkPN "Berlin"; -- from DictEng -lin berlin_airlift_PN = mkPN "Berlin airlift" ; -lin berlin_doughnut_PN = mkPN "Berlin doughnut" ; -lin berliner_PN = mkPN "Berliner" ; -lin berlioz_PN = mkPN "Berlioz" ; -lin bermuda_PN = mkPN "Bermuda"; -- from DictEng -lin bermuda_triangle_PN = mkPN "Bermuda Triangle" ; -lin bermuda_buttercup_PN = mkPN "Bermuda buttercup" ; -lin bermuda_cedar_PN = mkPN "Bermuda cedar" ; -lin bermuda_chub_PN = mkPN "Bermuda chub" ; -lin bermuda_dollar_PN = mkPN "Bermuda dollar" ; -lin bermuda_grass_PN = mkPN "Bermuda grass" ; -lin bermuda_maidenhair_PN = mkPN "Bermuda maidenhair" ; -lin bermuda_onion_PN = mkPN "Bermuda onion" ; -lin bermuda_plan_PN = mkPN "Bermuda plan" ; -lin bermuda_rig_PN = mkPN "Bermuda rig" ; -lin bermuda_shorts_PN = mkPN "Bermuda shorts" ; -lin bermudan_A = compoundA (mkA "bermudan"); -- from DictEng -lin bermudan_PN = mkPN "Bermudan" ; -lin bern_PN = mkPN "Bern"; -- from DictEng -lin bernard_PN = mkPN "Bernard"; -- from DictEng -lin bernese_mountain_dog_PN = mkPN "Bernese mountain dog" ; -lin bernhardt_PN = mkPN "Bernhardt" ; -lin bernie_PN = mkPN "Bernie"; -- from DictEng -lin bernini_PN = mkPN "Bernini" ; -lin bernoulli_PN = mkPN "Bernoulli" ; -lin bernoulli's_law_PN = mkPN "Bernoulli's law" ; -lin bernstein_PN = mkPN "Bernstein" ; -lin berra_PN = mkPN "Berra" ; -lin berry_PN = mkPN "Berry" ; -lin bert_PN = mkPN "Bert"; -- from DictEng -lin berteroa_PN = mkPN "Berteroa" ; -lin bertha_PN = mkPN "Bertha"; -- from DictEng -lin bertholletia_PN = mkPN "Bertholletia" ; -lin bertie_PN = mkPN "Bertie"; -- from DictEng -lin bertillon_PN = mkPN "Bertillon" ; -lin bertillon_system_PN = mkPN "Bertillon system" ; -lin bertolucci_PN = mkPN "Bertolucci" ; -lin berwick_upon_tweed_PN = mkPN "Berwick - upon - tweed"; -- from DictEng -lin berycomorphi_PN = mkPN "Berycomorphi" ; -lin beryl_PN = mkPN "Beryl"; -- from DictEng -lin berzelius_PN = mkPN "Berzelius" ; -lin bess_PN = mkPN "Bess"; -- from DictEng -lin bessel_PN = mkPN "Bessel" ; -lin bessemer_PN = mkPN "Bessemer" ; -lin bessemer_converter_PN = mkPN "Bessemer converter" ; -lin bessemer_process_PN = mkPN "Bessemer process" ; -lin bessera_PN = mkPN "Bessera" ; -lin besseya_PN = mkPN "Besseya" ; -lin bessie_PN = mkPN "Bessie"; -- from DictEng -lin best_PN = mkPN "Best" ; -lin beta_PN = mkPN "Beta" ; -lin beta_centauri_PN = mkPN "Beta Centauri" ; -lin beta_crucis_PN = mkPN "Beta Crucis" ; -lin betelgeuse_PN = mkPN "Betelgeuse" ; -lin bethe_PN = mkPN "Bethe" ; -lin bethlehem_PN = mkPN "Bethlehem" ; -lin bethune_PN = mkPN "Bethune"; -- from DictEng -lin betsy_PN = mkPN "Betsy"; -- from DictEng -lin bettongia_PN = mkPN "Bettongia" ; -lin betty_PN = mkPN "Betty"; -- from DictEng -lin betula_PN = mkPN "Betula" ; -lin betulaceae_PN = mkPN "Betulaceae" ; -lin beveridge_PN = mkPN "Beveridge" ; -lin beverley_PN = mkPN "Beverley"; -- from DictEng -lin beverly_hills_PN = mkPN "Beverly Hills" ; -lin bevin_PN = mkPN "Bevin" ; -lin bewdley_PN = mkPN "Bewdley"; -- from DictEng -lin bewick's_swan_PN = mkPN "Bewick's swan" ; -lin bexhill_PN = mkPN "Bexhill"; -- from DictEng -lin bexley_PN = mkPN "Bexley"; -- from DictEng -lin bhadon_PN = mkPN "Bhadon" ; -lin bhaga_PN = mkPN "Bhaga" ; -lin bhagavad_gita_PN = mkPN "Bhagavad Gita" ; -lin bhumi_devi_PN = mkPN "Bhumi Devi" ; -lin bhutan_PN = mkPN "Bhutan"; -- from DictEng -lin bhutanese_A = mkA "Bhutanese" ; -lin bhutanese_PN = mkPN "Bhutanese" ; -lin bhutanese_monetary_unit_PN = mkPN "Bhutanese monetary unit" ; -lin bibb_lettuce_PN = mkPN "Bibb lettuce" ; -lin bible_PN = mkPN "Bible" ; -lin bible_belt_PN = mkPN "Bible Belt" ; -lin biblical_aramaic_PN = mkPN "Biblical Aramaic" ; -lin bibos_PN = mkPN "Bibos" ; -lin bicester_PN = mkPN "Bicester"; -- from DictEng -lin biddulph_PN = mkPN "Biddulph"; -- from DictEng -lin bideford_PN = mkPN "Bideford"; -- from DictEng -lin bidens_PN = mkPN "Bidens" ; -lin biedermeier_A = mkA "Biedermeier" ; -lin bielefeld_PN = mkPN "Bielefeld"; -- from DictEng -lin bierce_PN = mkPN "Bierce" ; -lin big_ben_PN = mkPN "Big Ben" ; -lin big_bend_PN = mkPN "Big Bend" ; -lin big_bend_national_park_PN = mkPN "Big Bend National Park" ; -lin big_blue_PN = mkPN "Big Blue" ; -lin big_brother_PN = mkPN "Big Brother" ; -lin big_dipper_PN = mkPN "Big Dipper" ; -lin big_sioux_river_PN = mkPN "Big Sioux River" ; -lin big_sur_PN = mkPN "Big Sur" ; -lin bigfoot_PN = mkPN "Bigfoot" ; -lin biggleswade_PN = mkPN "Biggleswade"; -- from DictEng -lin bighorn_PN = mkPN "Bighorn" ; -lin bight_of_benin_PN = mkPN "Bight of Benin" ; -lin bignonia_PN = mkPN "Bignonia" ; -lin bignoniaceae_PN = mkPN "Bignoniaceae" ; -lin bihar_PN = mkPN "Bihar" ; -lin bihari_PN = mkPN "Bihari" ; -lin bikini_PN = mkPN "Bikini" ; -lin bilbao_PN = mkPN "Bilbao"; -- from DictEng -lin bill_PN = mkPN "Bill"; -- from DictEng -lin bill_of_rights_PN = mkPN "Bill of Rights" ; -lin billericay_PN = mkPN "Billericay"; -- from DictEng -lin billings_PN = mkPN "Billings" ; -lin billington_PN = mkPN "Billington"; -- from DictEng -lin billy_PN = mkPN "Billy"; -- from DictEng -lin biloxi_PN = mkPN "Biloxi" ; -lin binet_PN = mkPN "Binet" ; -lin binet_simon_scale_PN = mkPN "Binet Simon Scale" ; -lin binghamton_PN = mkPN "Binghamton" ; -lin bingley_PN = mkPN "Bingley"; -- from DictEng -lin bioko_PN = mkPN "Bioko" ; -lin birkenhead_PN = mkPN "Birkenhead"; -- from DictEng -lin birmingham_PN = mkPN "Birmingham" ; -lin birstall_PN = mkPN "Birstall"; -- from DictEng -lin birtley_PN = mkPN "Birtley"; -- from DictEng -lin biscayne_bay_PN = mkPN "Biscayne Bay" ; -lin biscayne_national_park_PN = mkPN "Biscayne National Park" ; -lin biscutella_PN = mkPN "Biscutella" ; -lin bishkek_PN = mkPN "Bishkek" ; -lin bishop's_cleeve_PN = mkPN "Bishop's cleeve"; -- from DictEng -lin bishop's_stortford_PN = mkPN "Bishop's stortford"; -- from DictEng -lin bishop_auckland_PN = mkPN "Bishop auckland"; -- from DictEng -lin bishopbriggs_PN = mkPN "Bishopbriggs"; -- from DictEng -lin bismarck_PN = mkPN "Bismarck" ; -lin bismarck_archipelago_PN = mkPN "Bismarck Archipelago" ; -lin bismarck_sea_PN = mkPN "Bismarck Sea" ; -lin bismarckian_A = mkA "Bismarckian" ; -lin bissau_PN = mkPN "Bissau" ; -lin bithynia_PN = mkPN "Bithynia" ; -lin bitis_PN = mkPN "Bitis" ; -lin bittacidae_PN = mkPN "Bittacidae" ; -lin biu_mandara_PN = mkPN "Biu Mandara" ; -lin bivalvia_PN = mkPN "Bivalvia" ; -lin bizet_PN = mkPN "Bizet" ; -lin blaberus_PN = mkPN "Blaberus" ; -lin black_PN = mkPN "Black" ; -lin black_african_PN = mkPN "Black African" ; -lin black_death_PN = mkPN "Black Death" ; -lin black_forest_PN = mkPN "Black Forest" ; -lin black_hand_PN = mkPN "Black Hand" ; -lin black_hawk_PN = mkPN "Black Hawk" ; -lin black_hills_PN = mkPN "Black Hills" ; -lin black_hole_of_calcutta_PN = mkPN "Black Hole of Calcutta" ; -lin black_muslim_PN = mkPN "Black Muslim" ; -lin black_panther_PN = mkPN "Black Panther" ; -lin black_panthers_PN = mkPN "Black Panthers" ; -lin black_rock_desert_PN = mkPN "Black Rock Desert" ; -lin black_sea_PN = mkPN "Black Sea" ; -lin black_september_movement_PN = mkPN "Black September Movement" ; -lin black_and_tan_PN = mkPN "Black and Tan" ; -lin black_man_PN = mkPN "Black man" ; -lin black_race_PN = mkPN "Black race" ; -lin black_woman_PN = mkPN "Black woman" ; -lin blackburn_PN = mkPN "Blackburn"; -- from DictEng -lin blackfoot_PN = mkPN "Blackfoot" ; -lin blackhall_PN = mkPN "Blackhall"; -- from DictEng -lin blackpool_PN = mkPN "Blackpool"; -- from DictEng -lin blacksburg_PN = mkPN "Blacksburg" ; -lin blackshirt_PN = mkPN "Blackshirt" ; -lin blackwall_hitch_PN = mkPN "Blackwall hitch" ; -lin blackwood_PN = mkPN "Blackwood"; -- from DictEng -lin blaenau_ffestiniog_PN = mkPN "Blaenau - ffestiniog"; -- from DictEng -lin blaenavon_PN = mkPN "Blaenavon"; -- from DictEng -lin blaengwrach_PN = mkPN "Blaengwrach"; -- from DictEng -lin blaia_zimondal_PN = mkPN "Blaia Zimondal" ; -lin blaina_PN = mkPN "Blaina"; -- from DictEng -lin blair_PN = mkPN "Blair" ; -lin blairgowrie_PN = mkPN "Blairgowrie"; -- from DictEng -lin blake_PN = mkPN "Blake" ; -lin blandfordia_PN = mkPN "Blandfordia" ; -lin blantyre_PN = mkPN "Blantyre"; -- from DictEng -lin blarina_PN = mkPN "Blarina" ; -lin blarney_stone_PN = mkPN "Blarney Stone" ; -lin blastocladia_PN = mkPN "Blastocladia" ; -lin blastocladiales_PN = mkPN "Blastocladiales" ; -lin blastodiaceae_PN = mkPN "Blastodiaceae" ; -lin blastomyces_PN = mkPN "Blastomyces" ; -lin blatta_PN = mkPN "Blatta" ; -lin blattella_PN = mkPN "Blattella" ; -lin blattidae_PN = mkPN "Blattidae" ; -lin blattodea_PN = mkPN "Blattodea" ; -lin bldg_PN = mkPN "Bldg"; -- from DictEng -lin bldgs_PN = mkPN "Bldgs"; -- from DictEng -lin blechnaceae_PN = mkPN "Blechnaceae" ; -lin blechnum_PN = mkPN "Blechnum" ; -lin blenheim_PN = mkPN "Blenheim" ; -lin blenheim_spaniel_PN = mkPN "Blenheim spaniel" ; -lin blenniidae_PN = mkPN "Blenniidae" ; -lin blennioidea_PN = mkPN "Blennioidea" ; -lin blennius_PN = mkPN "Blennius" ; -lin blephilia_PN = mkPN "Blephilia" ; -lin bleriot_PN = mkPN "Bleriot" ; -lin blessed_A = compoundA (mkA "blessed"); -- from DictEng -lin bletchley_PN = mkPN "Bletchley"; -- from DictEng -lin bletilla_PN = mkPN "Bletilla" ; -lin bletilla_striata_PN = mkPN "Bletilla striata" ; -lin blida_PN = mkPN "Blida" ; -lin blidworth_PN = mkPN "Blidworth"; -- from DictEng -lin bligh_PN = mkPN "Bligh" ; -lin blighia_PN = mkPN "Blighia" ; -lin blighty_PN = mkPN "Blighty" ; -lin blissus_PN = mkPN "Blissus" ; -lin blitzstein_PN = mkPN "Blitzstein" ; -lin bloch_PN = mkPN "Bloch" ; -lin bloemfontein_PN = mkPN "Bloemfontein" ; -lin blok_PN = mkPN "Blok" ; -lin bloody_mary_PN = mkPN "Bloody Mary" ; -lin bloomeria_PN = mkPN "Bloomeria" ; -lin bloomfield_PN = mkPN "Bloomfield" ; -lin bloomington_PN = mkPN "Bloomington" ; -lin bloomsbury_PN = mkPN "Bloomsbury" ; -lin bloomsbury_group_PN = mkPN "Bloomsbury Group" ; -lin blucher_PN = mkPN "Blucher" ; -lin blue_mountain_tea_PN = mkPN "Blue Mountain tea" ; -lin blue_nile_PN = mkPN "Blue Nile" ; -lin blue_ridge_mountains_PN = mkPN "Blue Ridge Mountains" ; -lin bluebeard_PN = mkPN "Bluebeard" ; -lin bluegrass_PN = mkPN "Bluegrass" ; -lin blyth_PN = mkPN "Blyth"; -- from DictEng -lin bo'ness_PN = mkPN "Bo'ness"; -- from DictEng -lin bo_hai_PN = mkPN "Bo Hai" ; -lin boann_PN = mkPN "Boann" ; -lin bob_PN = mkPN "Bob"; -- from DictEng -lin bobby_PN = mkPN "Bobby"; -- from DictEng -lin boccaccio_PN = mkPN "Boccaccio" ; -lin bochum_PN = mkPN "Bochum"; -- from DictEng -lin bodhisattva_PN = mkPN "Bodhisattva" ; -lin bodmin_PN = mkPN "Bodmin"; -- from DictEng -lin bodo_garo_PN = mkPN "Bodo Garo" ; -lin bodoni_PN = mkPN "Bodoni" ; -lin boehme_PN = mkPN "Boehme" ; -lin boehmenism_PN = mkPN "Boehmenism" ; -lin boehmeria_PN = mkPN "Boehmeria" ; -lin boell_PN = mkPN "Boell" ; -lin boeotia_PN = mkPN "Boeotia" ; -lin boeotian_A = mkA "Boeotian" ; -lin boer_war_PN = mkPN "Boer War" ; -lin boethius_PN = mkPN "Boethius" ; -lin bofors_gun_PN = mkPN "Bofors gun" ; -lin bogart_PN = mkPN "Bogart" ; -lin bogartian_A = mkA "Bogartian" ; -lin bognor_PN = mkPN "Bognor"; -- from DictEng -lin bognor_regis_PN = mkPN "Bognor regis"; -- from DictEng -lin bogota_PN = mkPN "Bogota"; -- from DictEng -lin bohemia_PN = mkPN "Bohemia" ; -lin bohemian_A = compoundA (mkA "bohemian"); -- from DictEng -lin bohemian_PN = mkPN "Bohemian" ; -lin bohemian_waxwing_PN = mkPN "Bohemian waxwing" ; -lin bohr_PN = mkPN "Bohr" ; -lin bohr_theory_PN = mkPN "Bohr theory" ; -lin boidae_PN = mkPN "Boidae" ; -lin boise_PN = mkPN "Boise" ; -lin bokmal_PN = mkPN "Bokmal" ; -lin bolbitis_PN = mkPN "Bolbitis" ; -lin boldon_PN = mkPN "Boldon"; -- from DictEng -lin bole_PN = mkPN "Bole" ; -lin boletaceae_PN = mkPN "Boletaceae" ; -lin boletellus_PN = mkPN "Boletellus" ; -lin boletellus_russellii_PN = mkPN "Boletellus russellii" ; -lin boletus_PN = mkPN "Boletus" ; -lin boletus_chrysenteron_PN = mkPN "Boletus chrysenteron" ; -lin boletus_edulis_PN = mkPN "Boletus edulis" ; -lin boletus_luridus_PN = mkPN "Boletus luridus" ; -lin boletus_mirabilis_PN = mkPN "Boletus mirabilis" ; -lin boletus_pallidus_PN = mkPN "Boletus pallidus" ; -lin boletus_pulcherrimus_PN = mkPN "Boletus pulcherrimus" ; -lin boletus_pulverulentus_PN = mkPN "Boletus pulverulentus" ; -lin boletus_roxanae_PN = mkPN "Boletus roxanae" ; -lin boletus_subvelutipes_PN = mkPN "Boletus subvelutipes" ; -lin boletus_variipes_PN = mkPN "Boletus variipes" ; -lin boletus_zelleri_PN = mkPN "Boletus zelleri" ; -lin boleyn_PN = mkPN "Boleyn" ; -lin bolivar_PN = mkPN "Bolivar" ; -lin bolivia_PN = mkPN "Bolivia"; -- from DictEng -lin bolivian_A = compoundA (mkA "bolivian"); -- from DictEng -lin bolivian_PN = mkPN "Bolivian" ; -lin bolivian_monetary_unit_PN = mkPN "Bolivian monetary unit" ; -lin bollington_PN = mkPN "Bollington"; -- from DictEng -lin bollywood_PN = mkPN "Bollywood" ; -lin bologna_PN = mkPN "Bologna"; -- from DictEng -lin bolshevik_A = mkA "Bolshevik" ; -lin bolshevik_PN = mkPN "Bolshevik" ; -lin bolshevism_PN = mkPN "Bolshevism" ; -lin bolsover_PN = mkPN "Bolsover"; -- from DictEng -lin bolton_PN = mkPN "Bolton"; -- from DictEng -lin bolton_le_sands_PN = mkPN "Bolton - le - sands"; -- from DictEng -lin boltonia_PN = mkPN "Boltonia" ; -lin boltzmann_PN = mkPN "Boltzmann" ; -lin boltzmann's_constant_PN = mkPN "Boltzmann's constant" ; -lin bolzano_PN = mkPN "Bolzano"; -- from DictEng -lin bomarea_PN = mkPN "Bomarea" ; -lin bombacaceae_PN = mkPN "Bombacaceae" ; -lin bombax_PN = mkPN "Bombax" ; -lin bombay_PN = mkPN "Bombay"; -- from DictEng -lin bombina_PN = mkPN "Bombina" ; -lin bombus_PN = mkPN "Bombus" ; -lin bombycidae_PN = mkPN "Bombycidae" ; -lin bombycilla_PN = mkPN "Bombycilla" ; -lin bombycillidae_PN = mkPN "Bombycillidae" ; -lin bombyliidae_PN = mkPN "Bombyliidae" ; -lin bombyx_PN = mkPN "Bombyx" ; -lin bonaire_PN = mkPN "Bonaire" ; -lin bonasa_PN = mkPN "Bonasa" ; -lin bond_PN = mkPN "Bond" ; -lin bonete_PN = mkPN "Bonete" ; -lin bonfire_night_PN = mkPN "Bonfire Night" ; -lin bonhoeffer_PN = mkPN "Bonhoeffer" ; -lin boniface_PN = mkPN "Boniface" ; -lin boniface_viii_PN = mkPN "Boniface VIII" ; -lin bonn_PN = mkPN "Bonn"; -- from DictEng -lin bonney_PN = mkPN "Bonney" ; -lin bonnybridge_PN = mkPN "Bonnybridge"; -- from DictEng -lin bonnyrigg_PN = mkPN "Bonnyrigg"; -- from DictEng -lin bontemps_PN = mkPN "Bontemps" ; -lin book_of_common_prayer_PN = mkPN "Book of Common Prayer" ; -lin book_of_mormon_PN = mkPN "Book of Mormon" ; -lin boole_PN = mkPN "Boole" ; -lin boolean_A = mkA "Boolean" ; -lin boolean_logic_PN = mkPN "Boolean logic" ; -lin boone_PN = mkPN "Boone" ; -lin bootes_PN = mkPN "Bootes" ; -lin booth_PN = mkPN "Booth" ; -lin bootle_PN = mkPN "Bootle"; -- from DictEng -lin boott's_goldenrod_PN = mkPN "Boott's goldenrod" ; -lin boraginaceae_PN = mkPN "Boraginaceae" ; -lin borago_PN = mkPN "Borago" ; -lin borassus_PN = mkPN "Borassus" ; -lin bordeaux_PN = mkPN "Bordeaux"; -- from DictEng -lin bordeaux_mixture_PN = mkPN "Bordeaux mixture" ; -lin border_collie_PN = mkPN "Border collie" ; -lin border_terrier_PN = mkPN "Border terrier" ; -lin borders_PN = mkPN "Borders"; -- from DictEng -lin bordon_PN = mkPN "Bordon"; -- from DictEng -lin boreas_PN = mkPN "Boreas" ; -lin borges_PN = mkPN "Borges" ; -lin borgia_PN = mkPN "Borgia" ; -lin boris_PN = mkPN "Boris"; -- from DictEng -lin born_PN = mkPN "Born" ; -lin bornean_PN = mkPN "Bornean" ; -lin borneo_PN = mkPN "Borneo" ; -lin borodin_PN = mkPN "Borodin" ; -lin borodino_PN = mkPN "Borodino" ; -lin borrelia_burgdorferi_PN = mkPN "Borrelia burgdorferi" ; -lin bos_PN = mkPN "Bos" ; -lin bosch_PN = mkPN "Bosch" ; -lin bose_PN = mkPN "Bose" ; -lin bose_einstein_statistics_PN = mkPN "Bose Einstein statistics" ; -lin boselaphus_PN = mkPN "Boselaphus" ; -lin boskop_man_PN = mkPN "Boskop man" ; -lin bosnia_PN = mkPN "Bosnia" ; -lin bosnia_and_herzegovina_PN = mkPN "Bosnia and Herzegovina" ; -lin bosnian_A = mkA "Bosnian" ; -lin bosporus_PN = mkPN "Bosporus" ; -lin bosporus_bridge_PN = mkPN "Bosporus Bridge" ; -lin boston_PN = mkPN "Boston"; -- from DictEng -lin boston_harbor_PN = mkPN "Boston Harbor" ; -lin boston_tea_party_PN = mkPN "Boston Tea Party" ; -lin boston_baked_beans_PN = mkPN "Boston baked beans" ; -lin boston_bull_PN = mkPN "Boston bull" ; -lin boston_cream_pie_PN = mkPN "Boston cream pie" ; -lin boston_fern_PN = mkPN "Boston fern" ; -lin boston_ivy_PN = mkPN "Boston ivy" ; -lin boston_lettuce_PN = mkPN "Boston lettuce" ; -lin boston_rocker_PN = mkPN "Boston rocker" ; -lin bostonian_PN = mkPN "Bostonian" ; -lin boswell_PN = mkPN "Boswell" ; -lin boswellia_PN = mkPN "Boswellia" ; -lin boswellia_carteri_PN = mkPN "Boswellia carteri" ; -lin bosworth_field_PN = mkPN "Bosworth Field" ; -lin botaurus_PN = mkPN "Botaurus" ; -lin bothidae_PN = mkPN "Bothidae" ; -lin bothrops_PN = mkPN "Bothrops" ; -lin botrychium_PN = mkPN "Botrychium" ; -lin botswana_PN = mkPN "Botswana"; -- from DictEng -lin botswana_monetary_unit_PN = mkPN "Botswana monetary unit" ; -lin botswanan_A = mkA "Botswanan" ; -lin botticelli_PN = mkPN "Botticelli" ; -lin bottrop_PN = mkPN "Bottrop"; -- from DictEng -lin bougainville_PN = mkPN "Bougainville" ; -lin bougainville_trench_PN = mkPN "Bougainville Trench" ; -lin boulder_PN = mkPN "Boulder" ; -lin boulez_PN = mkPN "Boulez" ; -lin bounty_PN = mkPN "Bounty" ; -lin bourbon_PN = mkPN "Bourbon" ; -lin bourgogne_PN = mkPN "Bourgogne" ; -lin bourne_PN = mkPN "Bourne"; -- from DictEng -lin bournemouth_PN = mkPN "Bournemouth"; -- from DictEng -lin bourse_PN = mkPN "Bourse" ; -lin bouteloua_PN = mkPN "Bouteloua" ; -lin bouvet_island_PN = mkPN "Bouvet Island" ; -lin bouvier_des_flandres_PN = mkPN "Bouvier des Flandres" ; -lin bouvines_PN = mkPN "Bouvines" ; -lin bouyei_PN = mkPN "Bouyei" ; -lin bovidae_PN = mkPN "Bovidae" ; -lin bovinae_PN = mkPN "Bovinae" ; -lin bovini_PN = mkPN "Bovini" ; -lin bowburn_PN = mkPN "Bowburn"; -- from DictEng -lin bowditch_PN = mkPN "Bowditch" ; -lin bowdler_PN = mkPN "Bowdler" ; -lin bowdlerism_PN = mkPN "Bowdlerism" ; -lin bowery_PN = mkPN "Bowery" ; -lin bowie_PN = mkPN "Bowie" ; -lin bowie_knife_PN = mkPN "Bowie knife" ; -lin bowiea_PN = mkPN "Bowiea" ; -lin bowling_green_PN = mkPN "Bowling Green" ; -lin bowman's_capsule_PN = mkPN "Bowman's capsule" ; -lin boxer_PN = mkPN "Boxer" ; -lin boxing_day_PN = mkPN "Boxing day"; -- from DictEng -lin boy_scout_PN = mkPN "Boy Scout" ; -lin boy_scouts_PN = mkPN "Boy Scouts" ; -lin boy_scouts_of_america_PN = mkPN "Boy Scouts of America" ; -lin boykinia_PN = mkPN "Boykinia" ; -lin boyle_PN = mkPN "Boyle" ; -lin boyle's_law_PN = mkPN "Boyle's law" ; -lin boyne_PN = mkPN "Boyne" ; -lin bozeman_PN = mkPN "Bozeman" ; -lin brabancon_griffon_PN = mkPN "Brabancon griffon" ; -lin brachinus_PN = mkPN "Brachinus" ; -lin brachiopoda_PN = mkPN "Brachiopoda" ; -lin brachychiton_PN = mkPN "Brachychiton" ; -lin brachycome_PN = mkPN "Brachycome" ; -lin brachystegia_PN = mkPN "Brachystegia" ; -lin brachyura_PN = mkPN "Brachyura" ; -lin bracknell_PN = mkPN "Bracknell"; -- from DictEng -lin bradbury_PN = mkPN "Bradbury" ; -lin bradford_PN = mkPN "Bradford"; -- from DictEng -lin bradford_on_avon_PN = mkPN "Bradford - on - avon"; -- from DictEng -lin bradley_PN = mkPN "Bradley" ; -lin bradley's_spleenwort_PN = mkPN "Bradley's spleenwort" ; -lin bradley_method_of_childbirth_PN = mkPN "Bradley method of childbirth" ; -lin bradstreet_PN = mkPN "Bradstreet" ; -lin brady_PN = mkPN "Brady" ; -lin bradypodidae_PN = mkPN "Bradypodidae" ; -lin bradypus_PN = mkPN "Bradypus" ; -lin braga_PN = mkPN "Braga" ; -lin bragg_PN = mkPN "Bragg" ; -lin bragi_PN = mkPN "Bragi" ; -lin brahe_PN = mkPN "Brahe" ; -lin brahma_PN = mkPN "Brahma" ; -lin brahman_PN = mkPN "Brahman" ; -lin brahmana_PN = mkPN "Brahmana" ; -lin brahmanism_PN = mkPN "Brahmanism" ; -lin brahmaputra_PN = mkPN "Brahmaputra" ; -lin brahmi_PN = mkPN "Brahmi" ; -lin brahms_PN = mkPN "Brahms" ; -lin brahui_PN = mkPN "Brahui" ; -lin braille_PN = mkPN "Braille" ; -lin braintree_PN = mkPN "Braintree"; -- from DictEng -lin brama_PN = mkPN "Brama" ; -lin bramante_PN = mkPN "Bramante" ; -lin bramidae_PN = mkPN "Bramidae" ; -lin bramley's_seedling_PN = mkPN "Bramley's Seedling" ; -lin branchiobdella_PN = mkPN "Branchiobdella" ; -lin branchiobdellidae_PN = mkPN "Branchiobdellidae" ; -lin branchiopoda_PN = mkPN "Branchiopoda" ; -lin branchiostegidae_PN = mkPN "Branchiostegidae" ; -lin branchiura_PN = mkPN "Branchiura" ; -lin brancusi_PN = mkPN "Brancusi" ; -lin brandenburg_PN = mkPN "Brandenburg" ; -lin branderburgh_PN = mkPN "Branderburgh"; -- from DictEng -lin brandt_PN = mkPN "Brandt" ; -lin branta_PN = mkPN "Branta" ; -lin braque_PN = mkPN "Braque" ; -lin brasenia_PN = mkPN "Brasenia" ; -lin brasilia_PN = mkPN "Brasilia"; -- from DictEng -lin brasov_PN = mkPN "Brasov" ; -lin brassia_PN = mkPN "Brassia" ; -lin brassica_PN = mkPN "Brassica" ; -lin bratislava_PN = mkPN "Bratislava"; -- from DictEng -lin brattleboro_PN = mkPN "Brattleboro" ; -lin braun_PN = mkPN "Braun" ; -lin braun's_holly_fern_PN = mkPN "Braun's holly fern" ; -lin braunschweig_PN = mkPN "Braunschweig"; -- from DictEng -lin braunton_PN = mkPN "Braunton"; -- from DictEng -lin braxton_hicks_contraction_PN = mkPN "Braxton Hicks contraction" ; -lin brazil_PN = mkPN "Brazil"; -- from DictEng -lin brazilian_A = compoundA (mkA "brazilian"); -- from DictEng -lin brazilian_PN = mkPN "Brazilian" ; -lin brazilian_guava_PN = mkPN "Brazilian guava" ; -lin brazilian_monetary_unit_PN = mkPN "Brazilian monetary unit" ; -lin brazilian_pepper_tree_PN = mkPN "Brazilian pepper tree" ; -lin brazilian_rosewood_PN = mkPN "Brazilian rosewood" ; -lin brazilian_trumpeter_PN = mkPN "Brazilian trumpeter" ; -lin brazos_PN = mkPN "Brazos" ; -lin brazzaville_PN = mkPN "Brazzaville" ; -lin breaston_PN = mkPN "Breaston"; -- from DictEng -lin brecht_PN = mkPN "Brecht" ; -lin brecknock_PN = mkPN "Brecknock"; -- from DictEng -lin breda_PN = mkPN "Breda"; -- from DictEng -lin breed's_hill_PN = mkPN "Breed's Hill" ; -lin breedsall_PN = mkPN "Breedsall"; -- from DictEng -lin bremen_PN = mkPN "Bremen"; -- from DictEng -lin bremerhaven_PN = mkPN "Bremerhaven"; -- from DictEng -lin bren_PN = mkPN "Bren" ; -lin brenda_PN = mkPN "Brenda"; -- from DictEng -lin brenner_pass_PN = mkPN "Brenner Pass" ; -lin brent_PN = mkPN "Brent"; -- from DictEng -lin brentwood_PN = mkPN "Brentwood"; -- from DictEng -lin brer_rabbit_PN = mkPN "Brer Rabbit" ; -lin brescia_PN = mkPN "Brescia"; -- from DictEng -lin brest_PN = mkPN "Brest"; -- from DictEng -lin bretagne_PN = mkPN "Bretagne" ; -lin breton_PN = mkPN "Breton" ; -lin breuer_PN = mkPN "Breuer" ; -lin brevoortia_PN = mkPN "Brevoortia" ; -lin brezhnev_PN = mkPN "Brezhnev" ; -lin brian_PN = mkPN "Brian"; -- from DictEng -lin brickellia_PN = mkPN "Brickellia" ; -lin bricket_wood_PN = mkPN "Bricket Wood"; -- from DictEng -lin bridgend_PN = mkPN "Bridgend"; -- from DictEng -lin bridgeport_PN = mkPN "Bridgeport" ; -lin bridges_PN = mkPN "Bridges" ; -lin bridget_PN = mkPN "Bridget"; -- from DictEng -lin bridgetown_PN = mkPN "Bridgetown" ; -lin bridgnorth_PN = mkPN "Bridgnorth"; -- from DictEng -lin bridgwater_PN = mkPN "Bridgwater"; -- from DictEng -lin bridlington_PN = mkPN "Bridlington"; -- from DictEng -lin bridport_PN = mkPN "Bridport"; -- from DictEng -lin brie_PN = mkPN "Brie" ; -lin brig_PN = mkPN "Brig"; -- from DictEng -lin brighouse_PN = mkPN "Brighouse"; -- from DictEng -lin brightlingsea_PN = mkPN "Brightlingsea"; -- from DictEng -lin brighton_PN = mkPN "Brighton"; -- from DictEng -lin brigit_PN = mkPN "Brigit" ; -lin brihaspati_PN = mkPN "Brihaspati" ; -lin brindisi_PN = mkPN "Brindisi" ; -lin brinell_number_PN = mkPN "Brinell number" ; -lin brinton_PN = mkPN "Brinton" ; -lin brioschi_PN = mkPN "Brioschi" ; -lin brisbane_PN = mkPN "Brisbane"; -- from DictEng -lin bristol_PN = mkPN "Bristol"; -- from DictEng -lin bristol_channel_PN = mkPN "Bristol Channel" ; -lin britain_PN = mkPN "Britain"; -- from DictEng -lin britannia_metal_PN = mkPN "Britannia metal" ; -lin britannic_A = compoundA (mkA "britannic"); -- from DictEng -lin british_A = compoundA (mkA "British"); -- from DictEng -lin british_PN = mkPN "British" ; -lin british_cabinet_PN = mkPN "British Cabinet" ; -lin british_columbia_PN = mkPN "British Columbia" ; -lin british_commonwealth_PN = mkPN "British Commonwealth" ; -lin british_crown_PN = mkPN "British Crown" ; -lin british_east_africa_PN = mkPN "British East Africa" ; -lin british_empire_PN = mkPN "British Empire" ; -lin british_imperial_system_PN = mkPN "British Imperial System" ; -lin british_isles_PN = mkPN "British Isles" ; -lin british_labour_party_PN = mkPN "British Labour Party" ; -lin british_parliament_PN = mkPN "British Parliament" ; -lin british_virgin_islands_PN = mkPN "British Virgin Islands" ; -lin british_west_africa_PN = mkPN "British West Africa" ; -lin british_west_indies_PN = mkPN "British West Indies" ; -lin british_capacity_unit_PN = mkPN "British capacity unit" ; -lin british_empiricism_PN = mkPN "British empiricism" ; -lin british_monetary_unit_PN = mkPN "British monetary unit" ; -lin british_pound_PN = mkPN "British pound" ; -lin british_shilling_PN = mkPN "British shilling" ; -lin british_thermal_unit_PN = mkPN "British thermal unit" ; -lin britisher_PN = mkPN "Britisher" ; -lin briton_A = compoundA (mkA "briton"); -- from DictEng -lin briton_PN = mkPN "Briton" ; -lin brittany_spaniel_PN = mkPN "Brittany spaniel" ; -lin britten_PN = mkPN "Britten" ; -lin brix_scale_PN = mkPN "Brix scale" ; -lin brixham_PN = mkPN "Brixham"; -- from DictEng -lin brno_PN = mkPN "Brno"; -- from DictEng -lin broadway_PN = mkPN "Broadway" ; -lin brobdingnag_PN = mkPN "Brobdingnag" ; -lin brobdingnagian_A = mkA "Brobdingnagian" ; -lin broca_PN = mkPN "Broca" ; -lin broca's_area_PN = mkPN "Broca's area" ; -lin brockhouse_PN = mkPN "Brockhouse" ; -lin brodmann's_area_PN = mkPN "Brodmann's area" ; -lin broglie_PN = mkPN "Broglie" ; -lin bromelia_PN = mkPN "Bromelia" ; -lin bromeliaceae_PN = mkPN "Bromeliaceae" ; -lin bromley_PN = mkPN "Bromley"; -- from DictEng -lin bromo_seltzer_PN = mkPN "Bromo seltzer" ; -lin bromsgrove_PN = mkPN "Bromsgrove"; -- from DictEng -lin bromus_PN = mkPN "Bromus" ; -lin bronte_PN = mkPN "Bronte" ; -lin bronte_sisters_PN = mkPN "Bronte sisters" ; -lin bronx_PN = mkPN "Bronx" ; -lin bronx_whitestone_bridge_PN = mkPN "Bronx Whitestone Bridge" ; -lin bronze_age_PN = mkPN "Bronze Age" ; -lin bronze_star_medal_PN = mkPN "Bronze Star Medal" ; -lin brooke_PN = mkPN "Brooke" ; -lin brooklyn_PN = mkPN "Brooklyn" ; -lin brooklyn_bridge_PN = mkPN "Brooklyn Bridge" ; -lin brooks_PN = mkPN "Brooks" ; -lin bros_PN = mkPN "Bros"; -- from DictEng -lin brosmius_PN = mkPN "Brosmius" ; -lin brother_PN = mkPN "Brother" ; -lin brotulidae_PN = mkPN "Brotulidae" ; -lin broughton_PN = mkPN "Broughton"; -- from DictEng -lin broussonetia_PN = mkPN "Broussonetia" ; -lin brown_PN = mkPN "Brown" ; -lin brown_swiss_PN = mkPN "Brown Swiss" ; -lin brown_university_PN = mkPN "Brown University" ; -lin browne_PN = mkPN "Browne" ; -lin brownian_movement_PN = mkPN "Brownian movement" ; -lin brownie_PN = mkPN "Brownie" ; -lin browning_PN = mkPN "Browning" ; -lin browning_automatic_rifle_PN = mkPN "Browning automatic rifle" ; -lin browning_machine_gun_PN = mkPN "Browning machine gun" ; -lin brownshirt_PN = mkPN "Brownshirt" ; -lin brownsville_PN = mkPN "Brownsville" ; -lin broxburn_PN = mkPN "Broxburn"; -- from DictEng -lin bruce_PN = mkPN "Bruce"; -- from DictEng -lin brucella_PN = mkPN "Brucella" ; -lin bruch_PN = mkPN "Bruch" ; -lin bruchidae_PN = mkPN "Bruchidae" ; -lin bruchus_PN = mkPN "Bruchus" ; -lin bruckenthalia_PN = mkPN "Bruckenthalia" ; -lin bruckner_PN = mkPN "Bruckner" ; -lin brueghel_PN = mkPN "Brueghel" ; -lin bruges_PN = mkPN "Bruges"; -- from DictEng -lin brugmansia_PN = mkPN "Brugmansia" ; -lin brule_PN = mkPN "Brule" ; -lin brumaire_PN = mkPN "Brumaire" ; -lin brummagem_A = mkA "Brummagem" ; -lin brummell_PN = mkPN "Brummell" ; -lin brummie_PN = mkPN "Brummie" ; -lin brunanburh_PN = mkPN "Brunanburh" ; -lin brunei_PN = mkPN "Brunei"; -- from DictEng -lin brunei_dollar_PN = mkPN "Brunei dollar" ; -lin bruneian_A = compoundA (mkA "bruneian"); -- from DictEng -lin bruneian_PN = mkPN "Bruneian" ; -lin brunelleschi_PN = mkPN "Brunelleschi" ; -lin brunfelsia_PN = mkPN "Brunfelsia" ; -lin brunhild_PN = mkPN "Brunhild" ; -lin bruno_PN = mkPN "Bruno" ; -lin brunswick_PN = mkPN "Brunswick"; -- from DictEng -lin brunswick_stew_PN = mkPN "Brunswick stew" ; -lin brussels_PN = mkPN "Brussels"; -- from DictEng -lin brussels_carpet_PN = mkPN "Brussels carpet" ; -lin brussels_lace_PN = mkPN "Brussels lace" ; -lin brutus_PN = mkPN "Brutus" ; -lin bruxelles_PN = mkPN "Bruxelles" ; -lin brya_PN = mkPN "Brya" ; -lin bryaceae_PN = mkPN "Bryaceae" ; -lin bryales_PN = mkPN "Bryales" ; -lin bryan_PN = mkPN "Bryan"; -- from DictEng -lin bryce_canyon_national_park_PN = mkPN "Bryce Canyon National Park" ; -lin bryophyta_PN = mkPN "Bryophyta" ; -lin bryopsida_PN = mkPN "Bryopsida" ; -lin bryozoa_PN = mkPN "Bryozoa" ; -lin brythonic_PN = mkPN "Brythonic" ; -lin bryum_PN = mkPN "Bryum" ; -lin bst_PN = mkPN "BST"; -- from DictEng -lin bt_PN = mkPN "BT"; -- from DictEng -lin bubalus_PN = mkPN "Bubalus" ; -lin buber_PN = mkPN "Buber" ; -lin bubo_PN = mkPN "Bubo" ; -lin bubulcus_PN = mkPN "Bubulcus" ; -lin bucarest_PN = mkPN "Bucarest"; -- from DictEng -lin buccinidae_PN = mkPN "Buccinidae" ; -lin bucconidae_PN = mkPN "Bucconidae" ; -lin bucephala_PN = mkPN "Bucephala" ; -lin buceros_PN = mkPN "Buceros" ; -lin bucerotidae_PN = mkPN "Bucerotidae" ; -lin buchanan_PN = mkPN "Buchanan" ; -lin bucharest_PN = mkPN "Bucharest" ; -lin buchenwald_PN = mkPN "Buchenwald" ; -lin buchloe_PN = mkPN "Buchloe" ; -lin buchner_PN = mkPN "Buchner" ; -lin buck_PN = mkPN "Buck" ; -lin buckhaven_PN = mkPN "Buckhaven"; -- from DictEng -lin buckie_PN = mkPN "Buckie"; -- from DictEng -lin buckingham_PN = mkPN "Buckingham"; -- from DictEng -lin buckingham_palace_PN = mkPN "Buckingham Palace" ; -lin buckinghamshire_PN = mkPN "Buckinghamshire"; -- from DictEng -lin buckley_PN = mkPN "Buckley"; -- from DictEng -lin bucksburn_PN = mkPN "Bucksburn"; -- from DictEng -lin budapest_PN = mkPN "Budapest"; -- from DictEng -lin buddha_PN = mkPN "Buddha" ; -lin buddhism_PN = mkPN "Buddhism" ; -lin buddhist_A = mkA "Buddhist" ; -lin buddhist_PN = mkPN "Buddhist" ; -lin budge_PN = mkPN "Budge" ; -lin budorcas_PN = mkPN "Budorcas" ; -lin buena_vista_PN = mkPN "Buena Vista" ; -lin buenos_aires_PN = mkPN "Buenos aires"; -- from DictEng -lin buffalo_PN = mkPN "Buffalo"; -- from DictEng -lin bufonidae_PN = mkPN "Bufonidae" ; -lin buganda_PN = mkPN "Buganda" ; -lin bujumbura_PN = mkPN "Bujumbura" ; -lin bukharin_PN = mkPN "Bukharin" ; -lin bulawayo_PN = mkPN "Bulawayo" ; -lin bulgaria_PN = mkPN "Bulgaria"; -- from DictEng -lin bulgarian_A = compoundA (mkA "Bulgarian"); -- from DictEng -lin bulgarian_PN = mkPN "Bulgarian" ; -lin bulgarian_monetary_unit_PN = mkPN "Bulgarian monetary unit" ; -lin bulkington_PN = mkPN "Bulkington"; -- from DictEng -lin bull_run_PN = mkPN "Bull Run" ; -lin bullfinch_PN = mkPN "Bullfinch" ; -lin bullock's_oriole_PN = mkPN "Bullock's oriole" ; -lin bulnesia_PN = mkPN "Bulnesia" ; -lin bultmann_PN = mkPN "Bultmann" ; -lin bumelia_PN = mkPN "Bumelia" ; -lin bunche_PN = mkPN "Bunche" ; -lin bundesbank_PN = mkPN "Bundesbank" ; -lin bungarus_PN = mkPN "Bungarus" ; -lin bunker_buster_PN = mkPN "Bunker Buster" ; -lin bunker_hill_PN = mkPN "Bunker Hill" ; -lin bunsen_PN = mkPN "Bunsen" ; -lin bunuel_PN = mkPN "Bunuel" ; -lin bunyan_PN = mkPN "Bunyan" ; -lin bunyaviridae_PN = mkPN "Bunyaviridae" ; -lin buphthalmum_PN = mkPN "Buphthalmum" ; -lin bura_PN = mkPN "Bura" ; -lin burbage_PN = mkPN "Burbage" ; -lin burbank_PN = mkPN "Burbank" ; -lin burberry_PN = mkPN "Burberry" ; -lin bureau_of_alcohol_tobacco_and_firearms_PN = mkPN "Bureau of Alcohol Tobacco and Firearms" ; -lin bureau_of_customs_PN = mkPN "Bureau of Customs" ; -lin bureau_of_diplomatic_security_PN = mkPN "Bureau of Diplomatic Security" ; -lin bureau_of_engraving_and_printing_PN = mkPN "Bureau of Engraving and Printing" ; -lin bureau_of_intelligence_and_research_PN = mkPN "Bureau of Intelligence and Research" ; -lin bureau_of_justice_assistance_PN = mkPN "Bureau of Justice Assistance" ; -lin bureau_of_justice_statistics_PN = mkPN "Bureau of Justice Statistics" ; -lin bureau_of_the_census_PN = mkPN "Bureau of the Census" ; -lin burger_PN = mkPN "Burger" ; -lin burgess_PN = mkPN "Burgess"; -- from DictEng -lin burgos_PN = mkPN "Burgos"; -- from DictEng -lin burgoyne_PN = mkPN "Burgoyne" ; -lin burgundy_PN = mkPN "Burgundy" ; -lin burhinidae_PN = mkPN "Burhinidae" ; -lin burhinus_PN = mkPN "Burhinus" ; -lin burk_PN = mkPN "Burk" ; -lin burke_PN = mkPN "Burke" ; -lin burkina_faso_PN = mkPN "Burkina Faso" ; -lin burkina_faso_franc_PN = mkPN "Burkina Faso franc" ; -lin burley_PN = mkPN "Burley"; -- from DictEng -lin burlington_PN = mkPN "Burlington" ; -lin burma_PN = mkPN "Burma"; -- from DictEng -lin burma_padauk_PN = mkPN "Burma padauk" ; -lin burmannia_PN = mkPN "Burmannia" ; -lin burmanniaceae_PN = mkPN "Burmanniaceae" ; -lin burmeisteria_PN = mkPN "Burmeisteria" ; -lin burmese_A = compoundA (mkA "burmese"); -- from DictEng -lin burmese_PN = mkPN "Burmese" ; -lin burmese_cat_PN = mkPN "Burmese cat" ; -lin burnett_PN = mkPN "Burnett" ; -lin burnham_PN = mkPN "Burnham" ; -lin burnham_on_sea_PN = mkPN "Burnham - on - sea"; -- from DictEng -lin burnley_PN = mkPN "Burnley"; -- from DictEng -lin burns_PN = mkPN "Burns" ; -lin burnside_PN = mkPN "Burnside" ; -lin burntisland_PN = mkPN "Burntisland"; -- from DictEng -lin burntwood_PN = mkPN "Burntwood"; -- from DictEng -lin burr_PN = mkPN "Burr" ; -lin burroughs_PN = mkPN "Burroughs" ; -lin burry_port_PN = mkPN "Burry port"; -- from DictEng -lin bursa_PN = mkPN "Bursa" ; -lin burscough_PN = mkPN "Burscough"; -- from DictEng -lin bursera_PN = mkPN "Bursera" ; -lin burseraceae_PN = mkPN "Burseraceae" ; -lin burt_PN = mkPN "Burt" ; -lin burton_PN = mkPN "Burton" ; -lin burton_upon_trent_PN = mkPN "Burton - upon - trent"; -- from DictEng -lin burundi_A = mkA "Burundi" ; -lin burundi_PN = mkPN "Burundi"; -- from DictEng -lin burundi_franc_PN = mkPN "Burundi franc" ; -lin burundian_PN = mkPN "Burundian" ; -lin bury_PN = mkPN "Bury"; -- from DictEng -lin bury_st__edmunds_PN = mkPN "Bury st. edmunds"; -- from DictEng -lin bush_PN = mkPN "Bush" ; -lin bush_administration_PN = mkPN "Bush administration" ; -lin bushido_PN = mkPN "Bushido" ; -lin bushman_PN = mkPN "Bushman" ; -lin bushnell_PN = mkPN "Bushnell" ; -lin butea_PN = mkPN "Butea" ; -lin buteo_PN = mkPN "Buteo" ; -lin butler_PN = mkPN "Butler" ; -lin butte_PN = mkPN "Butte" ; -lin butterfield_PN = mkPN "Butterfield" ; -lin buxaceae_PN = mkPN "Buxaceae" ; -lin buxton_PN = mkPN "Buxton"; -- from DictEng -lin buxus_PN = mkPN "Buxus" ; -lin buzzards_bay_PN = mkPN "Buzzards Bay" ; -lin byblos_PN = mkPN "Byblos" ; -lin bydgoszcz_PN = mkPN "Bydgoszcz" ; -lin byelorussian_PN = mkPN "Byelorussian" ; -lin byrd_PN = mkPN "Byrd" ; -lin byron_PN = mkPN "Byron" ; -lin byzantine_A = mkA "Byzantine" ; -lin byzantine_PN = mkPN "Byzantine" ; -lin byzantine_empire_PN = mkPN "Byzantine Empire" ; -lin byzantine_architecture_PN = mkPN "Byzantine architecture" ; -lin byzantium_PN = mkPN "Byzantium" ; -lin c_PN = mkPN "C" ; -lin c_clamp_PN = mkPN "C clamp" ; -lin c_horizon_PN = mkPN "C horizon" ; -lin c_ration_PN = mkPN "C ration" ; -lin c_reactive_protein_PN = mkPN "C reactive protein" ; -lin c_o_d__Adv = mkAdv "C O D " ; -lin cd_r_PN = mkPN "CD R" ; -lin cd_rom_PN = mkPN "CD ROM" ; -lin cd_rom_drive_PN = mkPN "CD ROM drive" ; -lin cd_drive_PN = mkPN "CD drive" ; -lin cd_player_PN = mkPN "CD player" ; -lin ce_Adv = mkAdv "CE" ; -lin cn_tower_PN = mkPN "CN Tower" ; -lin cobol_PN = mkPN "COBOL" ; -lin cpu_board_PN = mkPN "CPU board" ; -lin c_battery_PN = mkPN "C battery" ; -lin c_clef_PN = mkPN "C clef" ; -lin c_compiler_PN = mkPN "C compiler" ; -lin c_in_c_PN = mkPN "C - in - c"; -- from DictEng -lin c_major_PN = mkPN "C major" ; -lin c_program_PN = mkPN "C program" ; -lin cabalist_PN = mkPN "Cabalist" ; -lin cabell_PN = mkPN "Cabell" ; -lin cabernet_PN = mkPN "Cabernet" ; -lin cabernet_sauvignon_grape_PN = mkPN "Cabernet Sauvignon grape" ; -lin cabomba_PN = mkPN "Cabomba" ; -lin cabombaceae_PN = mkPN "Cabombaceae" ; -lin cabot_PN = mkPN "Cabot" ; -lin cacajao_PN = mkPN "Cacajao" ; -lin cacalia_PN = mkPN "Cacalia" ; -lin cachi_PN = mkPN "Cachi" ; -lin cacicus_PN = mkPN "Cacicus" ; -lin cactaceae_PN = mkPN "Cactaceae" ; -lin caddo_PN = mkPN "Caddo" ; -lin cadiz_PN = mkPN "Cadiz"; -- from DictEng -lin cadmus_PN = mkPN "Cadmus" ; -lin cadra_PN = mkPN "Cadra" ; -lin caeciliidae_PN = mkPN "Caeciliidae" ; -lin caelum_PN = mkPN "Caelum" ; -lin caen_PN = mkPN "Caen"; -- from DictEng -lin caenolestes_PN = mkPN "Caenolestes" ; -lin caenolestidae_PN = mkPN "Caenolestidae" ; -lin caerleon_PN = mkPN "Caerleon"; -- from DictEng -lin caernarfon_PN = mkPN "Caernarfon"; -- from DictEng -lin caerphilly_PN = mkPN "Caerphilly"; -- from DictEng -lin caesalpinia_PN = mkPN "Caesalpinia" ; -lin caesalpiniaceae_PN = mkPN "Caesalpiniaceae" ; -lin caesalpinioideae_PN = mkPN "Caesalpinioideae" ; -lin caesar_PN = mkPN "Caesar" ; -lin caesar_salad_PN = mkPN "Caesar salad" ; -lin caesarea_PN = mkPN "Caesarea" ; -lin caesarian_A = compoundA (mkA "caesarian"); -- from DictEng -lin cage_PN = mkPN "Cage" ; -lin cagliari_PN = mkPN "Cagliari"; -- from DictEng -lin cagliostro_PN = mkPN "Cagliostro" ; -lin cagney_PN = mkPN "Cagney" ; -lin cahita_PN = mkPN "Cahita" ; -lin cain_PN = mkPN "Cain" ; -lin cairene_PN = mkPN "Cairene" ; -lin cairina_PN = mkPN "Cairina" ; -lin cairo_PN = mkPN "Cairo"; -- from DictEng -lin cajanus_PN = mkPN "Cajanus" ; -lin cajun_PN = mkPN "Cajun" ; -lin cakchiquel_PN = mkPN "Cakchiquel" ; -lin cakile_PN = mkPN "Cakile" ; -lin calabria_PN = mkPN "Calabria" ; -lin caladium_bicolor_PN = mkPN "Caladium bicolor" ; -lin calais_PN = mkPN "Calais" ; -lin calamagrostis_PN = mkPN "Calamagrostis" ; -lin calamintha_PN = mkPN "Calamintha" ; -lin calamus_PN = mkPN "Calamus" ; -lin calandrinia_PN = mkPN "Calandrinia" ; -lin calcutta_PN = mkPN "Calcutta"; -- from DictEng -lin calcuttan_A = mkA "Calcuttan" ; -lin calder_PN = mkPN "Calder" ; -lin calderon_PN = mkPN "Calderon" ; -lin caldicot_PN = mkPN "Caldicot"; -- from DictEng -lin caldwell_PN = mkPN "Caldwell" ; -lin caledonia_PN = mkPN "Caledonia" ; -lin caledonian_canal_PN = mkPN "Caledonian Canal" ; -lin calgary_PN = mkPN "Calgary" ; -lin cali_PN = mkPN "Cali"; -- from DictEng -lin cali_cartel_PN = mkPN "Cali cartel" ; -lin calidris_PN = mkPN "Calidris" ; -lin california_PN = mkPN "California"; -- from DictEng -lin california_personality_inventory_PN = mkPN "California Personality Inventory" ; -lin california_black_oak_PN = mkPN "California black oak" ; -lin california_black_walnut_PN = mkPN "California black walnut" ; -lin california_bluebell_PN = mkPN "California bluebell" ; -lin california_box_elder_PN = mkPN "California box elder" ; -lin california_condor_PN = mkPN "California condor" ; -lin california_four_o'clock_PN = mkPN "California four o'clock" ; -lin california_fuchsia_PN = mkPN "California fuchsia" ; -lin california_lady's_slipper_PN = mkPN "California lady's slipper" ; -lin california_laurel_PN = mkPN "California laurel" ; -lin california_newt_PN = mkPN "California newt" ; -lin california_nutmeg_PN = mkPN "California nutmeg" ; -lin california_pitcher_plant_PN = mkPN "California pitcher plant" ; -lin california_poppy_PN = mkPN "California poppy" ; -lin california_privet_PN = mkPN "California privet" ; -lin california_quail_PN = mkPN "California quail" ; -lin california_redwood_PN = mkPN "California redwood" ; -lin california_sagebrush_PN = mkPN "California sagebrush" ; -lin california_sea_lion_PN = mkPN "California sea lion" ; -lin california_single_leaf_pinyon_PN = mkPN "California single leaf pinyon" ; -lin california_sycamore_PN = mkPN "California sycamore" ; -lin california_whipsnake_PN = mkPN "California whipsnake" ; -lin california_white_oak_PN = mkPN "California white oak" ; -lin california_wine_PN = mkPN "California wine" ; -lin californian_A = compoundA (mkA "californian"); -- from DictEng -lin californian_PN = mkPN "Californian" ; -lin caligula_PN = mkPN "Caligula" ; -lin caliphate_PN = mkPN "Caliphate" ; -lin calixtus_ii_PN = mkPN "Calixtus II" ; -lin calixtus_iii_PN = mkPN "Calixtus III" ; -lin call_PN = mkPN "Call" ; -lin calla_PN = mkPN "Calla" ; -lin callas_PN = mkPN "Callas" ; -lin callicebus_PN = mkPN "Callicebus" ; -lin callimorpha_PN = mkPN "Callimorpha" ; -lin callinectes_PN = mkPN "Callinectes" ; -lin callionymidae_PN = mkPN "Callionymidae" ; -lin calliope_PN = mkPN "Calliope" ; -lin calliophis_PN = mkPN "Calliophis" ; -lin calliphora_PN = mkPN "Calliphora" ; -lin calliphoridae_PN = mkPN "Calliphoridae" ; -lin callirhoe_PN = mkPN "Callirhoe" ; -lin callisaurus_PN = mkPN "Callisaurus" ; -lin callistephus_PN = mkPN "Callistephus" ; -lin callisto_PN = mkPN "Callisto" ; -lin callithricidae_PN = mkPN "Callithricidae" ; -lin callithrix_PN = mkPN "Callithrix" ; -lin callitrichaceae_PN = mkPN "Callitrichaceae" ; -lin callitriche_PN = mkPN "Callitriche" ; -lin callitris_PN = mkPN "Callitris" ; -lin callorhinus_PN = mkPN "Callorhinus" ; -lin calluna_PN = mkPN "Calluna" ; -lin calne_PN = mkPN "Calne"; -- from DictEng -lin calocarpum_PN = mkPN "Calocarpum" ; -lin calocedrus_PN = mkPN "Calocedrus" ; -lin calochortus_PN = mkPN "Calochortus" ; -lin caloocan_PN = mkPN "Caloocan" ; -lin caloosahatchee_PN = mkPN "Caloosahatchee" ; -lin caloosahatchee_canal_PN = mkPN "Caloosahatchee Canal" ; -lin calophyllum_PN = mkPN "Calophyllum" ; -lin calopogon_PN = mkPN "Calopogon" ; -lin calor_PN = mkPN "Calor"; -- from DictEng -lin calorie_PN = mkPN "Calorie" ; -lin caloscypha_fulgens_PN = mkPN "Caloscypha fulgens" ; -lin calostoma_cinnabarina_PN = mkPN "Calostoma cinnabarina" ; -lin calostoma_lutescens_PN = mkPN "Calostoma lutescens" ; -lin calostoma_ravenelii_PN = mkPN "Calostoma ravenelii" ; -lin calostomataceae_PN = mkPN "Calostomataceae" ; -lin caltha_PN = mkPN "Caltha" ; -lin calvados_PN = mkPN "Calvados" ; -lin calvary_PN = mkPN "Calvary" ; -lin calvary_clover_PN = mkPN "Calvary clover" ; -lin calvary_cross_PN = mkPN "Calvary cross" ; -lin calvatia_PN = mkPN "Calvatia" ; -lin calverton_PN = mkPN "Calverton"; -- from DictEng -lin calvin_PN = mkPN "Calvin" ; -lin calvinism_PN = mkPN "Calvinism" ; -lin calvinist_A = mkA "Calvinist" ; -lin calvinist_PN = mkPN "Calvinist" ; -lin calvinistic_baptist_PN = mkPN "Calvinistic Baptist" ; -lin calvino_PN = mkPN "Calvino" ; -lin calycanthaceae_PN = mkPN "Calycanthaceae" ; -lin calycanthus_PN = mkPN "Calycanthus" ; -lin calycophyllum_PN = mkPN "Calycophyllum" ; -lin calymmatobacterium_PN = mkPN "Calymmatobacterium" ; -lin calymmatobacterium_granulomatis_PN = mkPN "Calymmatobacterium granulomatis" ; -lin calypso_PN = mkPN "Calypso" ; -lin calystegia_PN = mkPN "Calystegia" ; -lin cam_PN = mkPN "Cam" ; -lin camassia_PN = mkPN "Camassia" ; -lin cambarus_PN = mkPN "Cambarus" ; -lin cambodia_PN = mkPN "Cambodia"; -- from DictEng -lin cambodian_A = compoundA (mkA "cambodian"); -- from DictEng -lin cambodian_PN = mkPN "Cambodian" ; -lin cambodian_monetary_unit_PN = mkPN "Cambodian monetary unit" ; -lin cambourne_PN = mkPN "Cambourne"; -- from DictEng -lin cambrian_PN = mkPN "Cambrian" ; -lin cambrian_mountains_PN = mkPN "Cambrian Mountains" ; -lin cambridge_PN = mkPN "Cambridge"; -- from DictEng -lin cambridge_university_PN = mkPN "Cambridge University" ; -lin cambridgeshire_PN = mkPN "Cambridgeshire"; -- from DictEng -lin cambuslang_PN = mkPN "Cambuslang"; -- from DictEng -lin camden_PN = mkPN "Camden"; -- from DictEng -lin camelidae_PN = mkPN "Camelidae" ; -lin camelina_PN = mkPN "Camelina" ; -lin camelot_PN = mkPN "Camelot" ; -lin camelus_PN = mkPN "Camelus" ; -lin camembert_PN = mkPN "Camembert" ; -lin cameroon_PN = mkPN "Cameroon"; -- from DictEng -lin cameroon_franc_PN = mkPN "Cameroon franc" ; -lin cameroonian_A = compoundA (mkA "cameroonian"); -- from DictEng -lin cameroonian_PN = mkPN "Cameroonian" ; -lin camlan_PN = mkPN "Camlan" ; -lin camorra_PN = mkPN "Camorra" ; -lin camp_david_PN = mkPN "Camp David" ; -lin campania_PN = mkPN "Campania" ; -lin campanulaceae_PN = mkPN "Campanulaceae" ; -lin campanulales_PN = mkPN "Campanulales" ; -lin campbell_PN = mkPN "Campbell" ; -lin campbeltown_PN = mkPN "Campbeltown"; -- from DictEng -lin campeche_PN = mkPN "Campeche" ; -lin campephilus_PN = mkPN "Campephilus" ; -lin campfire_girl_PN = mkPN "Campfire Girl" ; -lin camponotus_PN = mkPN "Camponotus" ; -lin camptosorus_PN = mkPN "Camptosorus" ; -lin campyloneurum_PN = mkPN "Campyloneurum" ; -lin campylorhynchus_PN = mkPN "Campylorhynchus" ; -lin camus_PN = mkPN "Camus" ; -lin canaanite_PN = mkPN "Canaanite" ; -lin canaanitic_PN = mkPN "Canaanitic" ; -lin canachites_PN = mkPN "Canachites" ; -lin canada_PN = mkPN "Canada"; -- from DictEng -lin canada_anemone_PN = mkPN "Canada anemone" ; -lin canada_balsam_PN = mkPN "Canada balsam" ; -lin canada_garlic_PN = mkPN "Canada garlic" ; -lin canada_ginger_PN = mkPN "Canada ginger" ; -lin canada_jay_PN = mkPN "Canada jay" ; -lin canada_lily_PN = mkPN "Canada lily" ; -lin canada_lynx_PN = mkPN "Canada lynx" ; -lin canada_plum_PN = mkPN "Canada plum" ; -lin canada_porcupine_PN = mkPN "Canada porcupine" ; -lin canada_thistle_PN = mkPN "Canada thistle" ; -lin canada_violet_PN = mkPN "Canada violet" ; -lin canada_wild_rye_PN = mkPN "Canada wild rye" ; -lin canadian_A = compoundA (mkA "Canadian"); -- from DictEng -lin canadian_PN = mkPN "Canadian" ; -lin canadian_falls_PN = mkPN "Canadian Falls" ; -lin canadian_french_PN = mkPN "Canadian French" ; -lin canadian_security_intelligence_service_PN = mkPN "Canadian Security Intelligence Service" ; -lin canadian_aspen_PN = mkPN "Canadian aspen" ; -lin canadian_bacon_PN = mkPN "Canadian bacon" ; -lin canadian_dollar_PN = mkPN "Canadian dollar" ; -lin canadian_pondweed_PN = mkPN "Canadian pondweed" ; -lin canadian_province_PN = mkPN "Canadian province" ; -lin canandaigua_lake_PN = mkPN "Canandaigua Lake" ; -lin cananga_PN = mkPN "Cananga" ; -lin canary_island_hare's_foot_fern_PN = mkPN "Canary Island hare's foot fern" ; -lin canary_islands_PN = mkPN "Canary Islands" ; -lin canary_wine_PN = mkPN "Canary wine" ; -lin canavalia_PN = mkPN "Canavalia" ; -lin canberra_PN = mkPN "Canberra"; -- from DictEng -lin cancer_PN = mkPN "Cancer"; -- from DictEng -lin cancridae_PN = mkPN "Cancridae" ; -lin cancun_PN = mkPN "Cancun" ; -lin candida_albicans_PN = mkPN "Candida albicans" ; -lin candlemas_PN = mkPN "Candlemas" ; -lin canellaceae_PN = mkPN "Canellaceae" ; -lin canetti_PN = mkPN "Canetti" ; -lin canidae_PN = mkPN "Canidae" ; -lin canis_PN = mkPN "Canis" ; -lin canis_major_PN = mkPN "Canis Major" ; -lin canis_minor_PN = mkPN "Canis Minor" ; -lin cannabidaceae_PN = mkPN "Cannabidaceae" ; -lin cannaceae_PN = mkPN "Cannaceae" ; -lin cannae_PN = mkPN "Cannae" ; -lin cannes_PN = mkPN "Cannes"; -- from DictEng -lin cannock_PN = mkPN "Cannock"; -- from DictEng -lin canopus_PN = mkPN "Canopus" ; -lin cantab_PN = mkPN "Cantab"; -- from DictEng -lin cantabrian_mountains_PN = mkPN "Cantabrian Mountains" ; -lin cantabrigian_PN = mkPN "Cantabrigian" ; -lin canterbury_PN = mkPN "Canterbury"; -- from DictEng -lin canterbury_tales_PN = mkPN "Canterbury Tales" ; -lin canterbury_bell_PN = mkPN "Canterbury bell" ; -lin cantharellus_PN = mkPN "Cantharellus" ; -lin canticle_of_simeon_PN = mkPN "Canticle of Simeon" ; -lin canton_PN = mkPN "Canton"; -- from DictEng -lin canton_crepe_PN = mkPN "Canton crepe" ; -lin canuck_PN = mkPN "Canuck" ; -lin canute_PN = mkPN "Canute" ; -lin canvey_PN = mkPN "Canvey"; -- from DictEng -lin canvey_island_PN = mkPN "Canvey island"; -- from DictEng -lin canyonlands_national_park_PN = mkPN "Canyonlands National Park" ; -lin cape_ann_PN = mkPN "Cape Ann" ; -lin cape_breton_island_PN = mkPN "Cape Breton Island" ; -lin cape_canaveral_PN = mkPN "Cape Canaveral" ; -lin cape_cod_PN = mkPN "Cape Cod" ; -lin cape_cod_bay_PN = mkPN "Cape Cod Bay" ; -lin cape_cod_canal_PN = mkPN "Cape Cod Canal" ; -lin cape_fear_PN = mkPN "Cape Fear" ; -lin cape_fear_river_PN = mkPN "Cape Fear River" ; -lin cape_flattery_PN = mkPN "Cape Flattery" ; -lin cape_froward_PN = mkPN "Cape Froward" ; -lin cape_girardeau_PN = mkPN "Cape Girardeau" ; -lin cape_hatteras_PN = mkPN "Cape Hatteras" ; -lin cape_horn_PN = mkPN "Cape Horn" ; -lin cape_may_PN = mkPN "Cape May" ; -lin cape_may_warbler_PN = mkPN "Cape May warbler" ; -lin cape_passero_PN = mkPN "Cape Passero" ; -lin cape_province_PN = mkPN "Cape Province" ; -lin cape_sable_PN = mkPN "Cape Sable" ; -lin cape_town_PN = mkPN "Cape town"; -- from DictEng -lin cape_trafalgar_PN = mkPN "Cape Trafalgar" ; -lin cape_verde_PN = mkPN "Cape Verde" ; -lin cape_verde_islands_PN = mkPN "Cape Verde Islands" ; -lin cape_verde_escudo_PN = mkPN "Cape Verde escudo" ; -lin cape_verde_monetary_unit_PN = mkPN "Cape Verde monetary unit" ; -lin cape_york_PN = mkPN "Cape York" ; -lin cape_york_peninsula_PN = mkPN "Cape York Peninsula" ; -lin cape_buffalo_PN = mkPN "Cape buffalo" ; -lin cape_lobster_PN = mkPN "Cape lobster" ; -lin cape_of_good_hope_PN = mkPN "Cape of Good Hope" ; -lin cape_primrose_PN = mkPN "Cape primrose" ; -lin cape_tulip_PN = mkPN "Cape tulip" ; -lin capek_PN = mkPN "Capek" ; -lin capella_PN = mkPN "Capella" ; -lin capet_PN = mkPN "Capet" ; -lin capetian_A = mkA "Capetian" ; -lin capetian_PN = mkPN "Capetian" ; -lin capetian_dynasty_PN = mkPN "Capetian dynasty" ; -lin capital_PN = mkPN "Capital" ; -lin capitol_PN = mkPN "Capitol" ; -lin capitol_hill_PN = mkPN "Capitol Hill" ; -lin capitol_reef_national_park_PN = mkPN "Capitol Reef National Park" ; -lin capitonidae_PN = mkPN "Capitonidae" ; -lin capone_PN = mkPN "Capone" ; -lin caporetto_PN = mkPN "Caporetto" ; -lin cappadocia_PN = mkPN "Cappadocia" ; -lin cappadocian_A = mkA "Cappadocian" ; -lin capparidaceae_PN = mkPN "Capparidaceae" ; -lin capparis_PN = mkPN "Capparis" ; -lin capra_PN = mkPN "Capra" ; -lin caprella_PN = mkPN "Caprella" ; -lin capreolus_PN = mkPN "Capreolus" ; -lin capri_PN = mkPN "Capri" ; -lin capricorn_PN = mkPN "Capricorn"; -- from DictEng -lin capricornis_PN = mkPN "Capricornis" ; -lin capricornus_PN = mkPN "Capricornus" ; -lin caprifoliaceae_PN = mkPN "Caprifoliaceae" ; -lin caprimulgidae_PN = mkPN "Caprimulgidae" ; -lin caprimulgiformes_PN = mkPN "Caprimulgiformes" ; -lin caprimulgus_PN = mkPN "Caprimulgus" ; -lin caproidae_PN = mkPN "Caproidae" ; -lin capromyidae_PN = mkPN "Capromyidae" ; -lin capros_PN = mkPN "Capros" ; -lin capsella_PN = mkPN "Capsella" ; -lin capt_PN = mkPN "Capt"; -- from DictEng -lin carabidae_PN = mkPN "Carabidae" ; -lin caracas_PN = mkPN "Caracas"; -- from DictEng -lin carangidae_PN = mkPN "Carangidae" ; -lin caranx_PN = mkPN "Caranx" ; -lin carapidae_PN = mkPN "Carapidae" ; -lin carassius_PN = mkPN "Carassius" ; -lin caravaggio_PN = mkPN "Caravaggio" ; -lin carboloy_PN = mkPN "Carboloy" ; -lin carbondale_PN = mkPN "Carbondale" ; -lin carboniferous_PN = mkPN "Carboniferous" ; -lin carcharhinidae_PN = mkPN "Carcharhinidae" ; -lin carcharhinus_PN = mkPN "Carcharhinus" ; -lin carcharias_PN = mkPN "Carcharias" ; -lin carchariidae_PN = mkPN "Carchariidae" ; -lin carcharodon_PN = mkPN "Carcharodon" ; -lin cardamine_PN = mkPN "Cardamine" ; -lin cardenden_PN = mkPN "Cardenden"; -- from DictEng -lin cardiff_PN = mkPN "Cardiff"; -- from DictEng -lin cardigan_PN = mkPN "Cardigan"; -- from DictEng -lin cardiidae_PN = mkPN "Cardiidae" ; -lin cardiospermum_PN = mkPN "Cardiospermum" ; -lin cardium_PN = mkPN "Cardium" ; -lin carducci_PN = mkPN "Carducci" ; -lin carduelinae_PN = mkPN "Carduelinae" ; -lin carduelis_PN = mkPN "Carduelis" ; -lin carduus_PN = mkPN "Carduus" ; -lin caretta_PN = mkPN "Caretta" ; -lin carew_PN = mkPN "Carew" ; -lin carex_PN = mkPN "Carex" ; -lin cariama_PN = mkPN "Cariama" ; -lin cariamidae_PN = mkPN "Cariamidae" ; -lin carib_PN = mkPN "Carib" ; -lin caribbean_PN = mkPN "Caribbean" ; -lin caribbean_island_PN = mkPN "Caribbean Island" ; -lin carica_PN = mkPN "Carica" ; -lin caricaceae_PN = mkPN "Caricaceae" ; -lin carina_PN = mkPN "Carina" ; -lin carioca_PN = mkPN "Carioca" ; -lin carl_PN = mkPN "Carl"; -- from DictEng -lin carl_xvi_gustav_PN = mkPN "Carl XVI Gustav" ; -lin carlina_PN = mkPN "Carlina" ; -lin carlisle_PN = mkPN "Carlisle"; -- from DictEng -lin carlow_PN = mkPN "Carlow"; -- from DictEng -lin carlsbad_PN = mkPN "Carlsbad" ; -lin carlsbad_caverns_PN = mkPN "Carlsbad Caverns" ; -lin carlsbad_caverns_national_park_PN = mkPN "Carlsbad Caverns National Park" ; -lin carluke_PN = mkPN "Carluke"; -- from DictEng -lin carlyle_PN = mkPN "Carlyle" ; -lin carmarthen_PN = mkPN "Carmarthen"; -- from DictEng -lin carmelite_A = compoundA (mkA "carmelite"); -- from DictEng -lin carmelite_PN = mkPN "Carmelite" ; -lin carmelite_order_PN = mkPN "Carmelite order" ; -lin carmichael_PN = mkPN "Carmichael" ; -lin carnegie_PN = mkPN "Carnegie" ; -lin carnegie_mellon_university_PN = mkPN "Carnegie Mellon University" ; -lin carnegiea_PN = mkPN "Carnegiea" ; -lin carnforth_PN = mkPN "Carnforth"; -- from DictEng -lin carniolan_bee_PN = mkPN "Carniolan bee" ; -lin carnivora_PN = mkPN "Carnivora" ; -lin carnosaura_PN = mkPN "Carnosaura" ; -lin carnot_PN = mkPN "Carnot" ; -lin carnot_cycle_PN = mkPN "Carnot cycle" ; -lin carnoustie_PN = mkPN "Carnoustie"; -- from DictEng -lin carol_PN = mkPN "Carol"; -- from DictEng -lin carole_PN = mkPN "Carole"; -- from DictEng -lin carolina_PN = mkPN "Carolina"; -- from DictEng -lin carolina_allspice_PN = mkPN "Carolina allspice" ; -lin carolina_buckthorn_PN = mkPN "Carolina buckthorn" ; -lin carolina_chickadee_PN = mkPN "Carolina chickadee" ; -lin carolina_hemlock_PN = mkPN "Carolina hemlock" ; -lin carolina_lupine_PN = mkPN "Carolina lupine" ; -lin carolina_moonseed_PN = mkPN "Carolina moonseed" ; -lin carolina_parakeet_PN = mkPN "Carolina parakeet" ; -lin carolina_spring_beauty_PN = mkPN "Carolina spring beauty" ; -lin carolina_wren_PN = mkPN "Carolina wren" ; -lin caroline_A = mkA "Caroline" ; -lin caroline_PN = mkPN "Caroline"; -- from DictEng -lin caroline_islands_PN = mkPN "Caroline Islands" ; -lin carolingian_A = mkA "Carolingian" ; -lin carolingian_PN = mkPN "Carolingian" ; -lin carolingian_dynasty_PN = mkPN "Carolingian dynasty" ; -lin carolinian_PN = mkPN "Carolinian" ; -lin carolyn_PN = mkPN "Carolyn"; -- from DictEng -lin carothers_PN = mkPN "Carothers" ; -lin carpathians_PN = mkPN "Carpathians" ; -lin carphophis_PN = mkPN "Carphophis" ; -lin carpinaceae_PN = mkPN "Carpinaceae" ; -lin carpinus_PN = mkPN "Carpinus" ; -lin carpobrotus_PN = mkPN "Carpobrotus" ; -lin carpocapsa_PN = mkPN "Carpocapsa" ; -lin carpodacus_PN = mkPN "Carpodacus" ; -lin carrel_PN = mkPN "Carrel" ; -lin carrere_PN = mkPN "Carrere" ; -lin carrie_PN = mkPN "Carrie"; -- from DictEng -lin carroll_PN = mkPN "Carroll" ; -lin carron_PN = mkPN "Carron"; -- from DictEng -lin carson_PN = mkPN "Carson" ; -lin carson_city_PN = mkPN "Carson City" ; -lin cartagena_PN = mkPN "Cartagena"; -- from DictEng -lin cartagena_bark_PN = mkPN "Cartagena bark" ; -lin carter_PN = mkPN "Carter" ; -lin carter_administration_PN = mkPN "Carter administration" ; -lin cartesian_A = mkA "Cartesian" ; -lin cartesian_PN = mkPN "Cartesian" ; -lin cartesian_coordinate_PN = mkPN "Cartesian coordinate" ; -lin cartesian_coordinate_system_PN = mkPN "Cartesian coordinate system" ; -lin cartesian_plane_PN = mkPN "Cartesian plane" ; -lin carthage_PN = mkPN "Carthage" ; -lin carthaginian_A = mkA "Carthaginian" ; -lin carthaginian_PN = mkPN "Carthaginian" ; -lin carthamus_PN = mkPN "Carthamus" ; -lin carthusian_A = mkA "Carthusian" ; -lin carthusian_PN = mkPN "Carthusian" ; -lin carthusian_order_PN = mkPN "Carthusian order" ; -lin cartier_PN = mkPN "Cartier" ; -lin cartwright_PN = mkPN "Cartwright" ; -lin carum_PN = mkPN "Carum" ; -lin caruso_PN = mkPN "Caruso" ; -lin carver_PN = mkPN "Carver" ; -lin carya_PN = mkPN "Carya" ; -lin caryocar_PN = mkPN "Caryocar" ; -lin caryocaraceae_PN = mkPN "Caryocaraceae" ; -lin caryophyllaceae_PN = mkPN "Caryophyllaceae" ; -lin caryophyllales_PN = mkPN "Caryophyllales" ; -lin caryophyllidae_PN = mkPN "Caryophyllidae" ; -lin caryota_PN = mkPN "Caryota" ; -lin casablanca_PN = mkPN "Casablanca"; -- from DictEng -lin casals_PN = mkPN "Casals" ; -lin casanova_PN = mkPN "Casanova" ; -lin cascades_PN = mkPN "Cascades" ; -lin cash_PN = mkPN "Cash" ; -lin cashmere_goat_PN = mkPN "Cashmere goat" ; -lin casmerodius_PN = mkPN "Casmerodius" ; -lin caspar_PN = mkPN "Caspar" ; -lin casper_PN = mkPN "Casper" ; -lin caspian_PN = mkPN "Caspian" ; -lin cassandra_PN = mkPN "Cassandra" ; -lin cassegrainian_telescope_PN = mkPN "Cassegrainian telescope" ; -lin cassin's_kingbird_PN = mkPN "Cassin's kingbird" ; -lin cassiope_PN = mkPN "Cassiope" ; -lin cassiopeia_PN = mkPN "Cassiopeia" ; -lin cassirer_PN = mkPN "Cassirer" ; -lin cassius_PN = mkPN "Cassius" ; -lin castanea_PN = mkPN "Castanea" ; -lin castanopsis_PN = mkPN "Castanopsis" ; -lin castanospermum_PN = mkPN "Castanospermum" ; -lin castile_PN = mkPN "Castile" ; -lin castilian_PN = mkPN "Castilian" ; -lin castilleja_PN = mkPN "Castilleja" ; -lin castillian_PN = mkPN "Castillian" ; -lin castleford_PN = mkPN "Castleford"; -- from DictEng -lin castor_PN = mkPN "Castor" ; -lin castoridae_PN = mkPN "Castoridae" ; -lin castoroides_PN = mkPN "Castoroides" ; -lin castries_PN = mkPN "Castries" ; -lin castro_PN = mkPN "Castro" ; -lin castroism_PN = mkPN "Castroism" ; -lin casualty_care_research_center_PN = mkPN "Casualty Care Research Center" ; -lin casuaridae_PN = mkPN "Casuaridae" ; -lin casuariiformes_PN = mkPN "Casuariiformes" ; -lin casuarinaceae_PN = mkPN "Casuarinaceae" ; -lin casuarinales_PN = mkPN "Casuarinales" ; -lin casuarius_PN = mkPN "Casuarius" ; -lin catacala_PN = mkPN "Catacala" ; -lin catalan_A = compoundA (mkA "catalan"); -- from DictEng -lin catalan_PN = mkPN "Catalan" ; -lin catalina_cherry_PN = mkPN "Catalina cherry" ; -lin catalonia_PN = mkPN "Catalonia" ; -lin catalpa_bignioides_PN = mkPN "Catalpa bignioides" ; -lin catalpa_speciosa_PN = mkPN "Catalpa speciosa" ; -lin catania_PN = mkPN "Catania"; -- from DictEng -lin cataract_canyon_PN = mkPN "Cataract Canyon" ; -lin catasetum_PN = mkPN "Catasetum" ; -lin catawba_PN = mkPN "Catawba" ; -lin caterpillar_PN = mkPN "Caterpillar" ; -lin cath_PN = mkPN "Cath"; -- from DictEng -lin catha_PN = mkPN "Catha" ; -lin catha_edulis_PN = mkPN "Catha edulis" ; -lin catharacta_PN = mkPN "Catharacta" ; -lin catharanthus_PN = mkPN "Catharanthus" ; -lin cathartes_PN = mkPN "Cathartes" ; -lin cathartidae_PN = mkPN "Cathartidae" ; -lin cathaya_PN = mkPN "Cathaya" ; -lin cather_PN = mkPN "Cather" ; -lin catherine_PN = mkPN "Catherine"; -- from DictEng -lin catherine_i_PN = mkPN "Catherine I" ; -lin catherine_ii_PN = mkPN "Catherine II" ; -lin catherine_de_medicis_PN = mkPN "Catherine de Medicis" ; -lin catherine_of_aragon_PN = mkPN "Catherine of Aragon" ; -lin catholic_A = compoundA (mkA "catholic"); -- from DictEng -lin catholic_PN = mkPN "Catholic" ; -lin catholic_church_PN = mkPN "Catholic Church" ; -lin catholic_school_PN = mkPN "Catholic school" ; -lin catholicism_PN = mkPN "Catholicism" ; -lin catholicos_PN = mkPN "Catholicos" ; -lin cathy_PN = mkPN "Cathy"; -- from DictEng -lin catoptrophorus_PN = mkPN "Catoptrophorus" ; -lin catostomidae_PN = mkPN "Catostomidae" ; -lin catostomus_PN = mkPN "Catostomus" ; -lin catskills_PN = mkPN "Catskills" ; -lin cattell_PN = mkPN "Cattell" ; -lin catullus_PN = mkPN "Catullus" ; -lin caucasia_PN = mkPN "Caucasia" ; -lin caucasian_A = compoundA (mkA "caucasian"); -- from DictEng -lin caucasian_PN = mkPN "Caucasian" ; -lin caucasian_walnut_PN = mkPN "Caucasian walnut" ; -lin caucasus_PN = mkPN "Caucasus" ; -lin caudine_forks_PN = mkPN "Caudine Forks" ; -lin caulophyllum_PN = mkPN "Caulophyllum" ; -lin cavalier_PN = mkPN "Cavalier" ; -lin cavan_PN = mkPN "Cavan"; -- from DictEng -lin cavell_PN = mkPN "Cavell" ; -lin cavendish_PN = mkPN "Cavendish" ; -lin cavia_PN = mkPN "Cavia" ; -lin caviidae_PN = mkPN "Caviidae" ; -lin caxton_PN = mkPN "Caxton" ; -lin cayman_islands_PN = mkPN "Cayman Islands" ; -lin cayman_islands_dollar_PN = mkPN "Cayman Islands dollar" ; -lin cayuga_PN = mkPN "Cayuga" ; -lin cayuga_lake_PN = mkPN "Cayuga Lake" ; -lin cdr_PN = mkPN "Cdr"; -- from DictEng -lin cdre_PN = mkPN "Cdre"; -- from DictEng -lin cebidae_PN = mkPN "Cebidae" ; -lin cebu_PN = mkPN "Cebu" ; -lin cebuan_PN = mkPN "Cebuan" ; -lin cebuella_PN = mkPN "Cebuella" ; -lin cebus_PN = mkPN "Cebus" ; -lin cecidomyidae_PN = mkPN "Cecidomyidae" ; -lin cecil_PN = mkPN "Cecil"; -- from DictEng -lin cecilia_PN = mkPN "Cecilia"; -- from DictEng -lin cecily_PN = mkPN "Cecily"; -- from DictEng -lin cecropia_PN = mkPN "Cecropia" ; -lin cecropiaceae_PN = mkPN "Cecropiaceae" ; -lin cedar_rapids_PN = mkPN "Cedar Rapids" ; -lin cedrela_PN = mkPN "Cedrela" ; -lin cedric_PN = mkPN "Cedric"; -- from DictEng -lin cedrus_PN = mkPN "Cedrus" ; -lin cefn_mawr_PN = mkPN "Cefn - mawr"; -- from DictEng -lin ceiba_PN = mkPN "Ceiba" ; -lin celastraceae_PN = mkPN "Celastraceae" ; -lin celastrus_PN = mkPN "Celastrus" ; -lin celebes_PN = mkPN "Celebes" ; -lin celestial_city_PN = mkPN "Celestial City" ; -lin celia_PN = mkPN "Celia"; -- from DictEng -lin cellini_PN = mkPN "Cellini" ; -lin celosia_PN = mkPN "Celosia" ; -lin celsius_PN = mkPN "Celsius" ; -lin celsius_scale_PN = mkPN "Celsius scale" ; -lin celt_PN = mkPN "Celt" ; -lin celtic_A = compoundA (mkA "celtic"); -- from DictEng -lin celtic_PN = mkPN "Celtic" ; -lin celtic_cross_PN = mkPN "Celtic cross" ; -lin celtic_deity_PN = mkPN "Celtic deity" ; -lin celtis_PN = mkPN "Celtis" ; -lin cenchrus_PN = mkPN "Cenchrus" ; -lin cenozoic_A = mkA "Cenozoic" ; -lin cenozoic_PN = mkPN "Cenozoic" ; -lin centaurea_PN = mkPN "Centaurea" ; -lin centaurium_PN = mkPN "Centaurium" ; -lin centaurus_PN = mkPN "Centaurus" ; -lin center_for_disease_control_and_prevention_PN = mkPN "Center for Disease Control and Prevention" ; -lin centigrade_thermometer_PN = mkPN "Centigrade thermometer" ; -lin central_african_republic_PN = mkPN "Central African Republic" ; -lin central_african_republic_franc_PN = mkPN "Central African Republic franc" ; -lin central_america_PN = mkPN "Central America" ; -lin central_american_A = compoundA (mkA "Central American") ; -lin central_american_PN = mkPN "Central American" ; -lin central_american_country_PN = mkPN "Central American country" ; -lin central_american_strap_fern_PN = mkPN "Central American strap fern" ; -lin central_dravidian_PN = mkPN "Central Dravidian" ; -lin central_intelligence_agency_PN = mkPN "Central Intelligence Agency" ; -lin central_intelligence_machinery_PN = mkPN "Central Intelligence Machinery" ; -lin central_park_PN = mkPN "Central Park" ; -lin central_powers_PN = mkPN "Central Powers" ; -lin central_time_PN = mkPN "Central Time" ; -lin centranthus_PN = mkPN "Centranthus" ; -lin centrarchidae_PN = mkPN "Centrarchidae" ; -lin centre_PN = mkPN "Centre" ; -lin centriscidae_PN = mkPN "Centriscidae" ; -lin centrocercus_PN = mkPN "Centrocercus" ; -lin centrolobium_PN = mkPN "Centrolobium" ; -lin centropomidae_PN = mkPN "Centropomidae" ; -lin centropomus_PN = mkPN "Centropomus" ; -lin centropristis_PN = mkPN "Centropristis" ; -lin centropus_PN = mkPN "Centropus" ; -lin centrosema_PN = mkPN "Centrosema" ; -lin centrospermae_PN = mkPN "Centrospermae" ; -lin centunculus_PN = mkPN "Centunculus" ; -lin cephalanthera_PN = mkPN "Cephalanthera" ; -lin cephalobidae_PN = mkPN "Cephalobidae" ; -lin cephalochordata_PN = mkPN "Cephalochordata" ; -lin cephalopoda_PN = mkPN "Cephalopoda" ; -lin cephalopterus_PN = mkPN "Cephalopterus" ; -lin cephalotaceae_PN = mkPN "Cephalotaceae" ; -lin cephalotaxaceae_PN = mkPN "Cephalotaxaceae" ; -lin cephalotaxus_PN = mkPN "Cephalotaxus" ; -lin cephalotus_PN = mkPN "Cephalotus" ; -lin cepheus_PN = mkPN "Cepheus" ; -lin cepphus_PN = mkPN "Cepphus" ; -lin cerambycidae_PN = mkPN "Cerambycidae" ; -lin cerapteryx_PN = mkPN "Cerapteryx" ; -lin cerastium_PN = mkPN "Cerastium" ; -lin ceratitis_PN = mkPN "Ceratitis" ; -lin ceratodontidae_PN = mkPN "Ceratodontidae" ; -lin ceratonia_PN = mkPN "Ceratonia" ; -lin ceratopetalum_PN = mkPN "Ceratopetalum" ; -lin ceratophyllaceae_PN = mkPN "Ceratophyllaceae" ; -lin ceratophyllum_PN = mkPN "Ceratophyllum" ; -lin ceratopogon_PN = mkPN "Ceratopogon" ; -lin ceratopogonidae_PN = mkPN "Ceratopogonidae" ; -lin ceratopsia_PN = mkPN "Ceratopsia" ; -lin ceratopsidae_PN = mkPN "Ceratopsidae" ; -lin ceratopteris_PN = mkPN "Ceratopteris" ; -lin ceratostomataceae_PN = mkPN "Ceratostomataceae" ; -lin ceratostomella_PN = mkPN "Ceratostomella" ; -lin ceratotherium_PN = mkPN "Ceratotherium" ; -lin cerberus_PN = mkPN "Cerberus" ; -lin cercidiphyllaceae_PN = mkPN "Cercidiphyllaceae" ; -lin cercidiphyllum_PN = mkPN "Cercidiphyllum" ; -lin cercidium_PN = mkPN "Cercidium" ; -lin cercis_PN = mkPN "Cercis" ; -lin cercocebus_PN = mkPN "Cercocebus" ; -lin cercopidae_PN = mkPN "Cercopidae" ; -lin cercopithecidae_PN = mkPN "Cercopithecidae" ; -lin cercopithecus_PN = mkPN "Cercopithecus" ; -lin cercospora_PN = mkPN "Cercospora" ; -lin cercosporella_PN = mkPN "Cercosporella" ; -lin ceres_PN = mkPN "Ceres" ; -lin cereus_PN = mkPN "Cereus" ; -lin ceroxylon_PN = mkPN "Ceroxylon" ; -lin certhia_PN = mkPN "Certhia" ; -lin certhiidae_PN = mkPN "Certhiidae" ; -lin cervantes_PN = mkPN "Cervantes" ; -lin cervidae_PN = mkPN "Cervidae" ; -lin cervus_PN = mkPN "Cervus" ; -lin ceryle_PN = mkPN "Ceryle" ; -lin cestida_PN = mkPN "Cestida" ; -lin cestidae_PN = mkPN "Cestidae" ; -lin cestoda_PN = mkPN "Cestoda" ; -lin cestrum_PN = mkPN "Cestrum" ; -lin cestum_PN = mkPN "Cestum" ; -lin cetacea_PN = mkPN "Cetacea" ; -lin ceterach_PN = mkPN "Ceterach" ; -lin cetonia_PN = mkPN "Cetonia" ; -lin cetoniidae_PN = mkPN "Cetoniidae" ; -lin cetorhinidae_PN = mkPN "Cetorhinidae" ; -lin cetorhinus_PN = mkPN "Cetorhinus" ; -lin cetraria_PN = mkPN "Cetraria" ; -lin cetus_PN = mkPN "Cetus" ; -lin ceylon_PN = mkPN "Ceylon"; -- from DictEng -lin ceylon_bowstring_hemp_PN = mkPN "Ceylon bowstring hemp" ; -lin ceylonite_PN = mkPN "Ceylonite" ; -lin cezanne_PN = mkPN "Cezanne" ; -lin cf_PN = mkPN "Cf"; -- from DictEng -lin chabad_PN = mkPN "Chabad" ; -lin chablis_PN = mkPN "Chablis" ; -lin chad_PN = mkPN "Chad"; -- from DictEng -lin chadian_A = compoundA (mkA "chadian"); -- from DictEng -lin chadian_PN = mkPN "Chadian" ; -lin chadian_franc_PN = mkPN "Chadian franc" ; -lin chaenomeles_PN = mkPN "Chaenomeles" ; -lin chaenopsis_PN = mkPN "Chaenopsis" ; -lin chaeronea_PN = mkPN "Chaeronea" ; -lin chaetodipterus_PN = mkPN "Chaetodipterus" ; -lin chaetodontidae_PN = mkPN "Chaetodontidae" ; -lin chaetognatha_PN = mkPN "Chaetognatha" ; -lin chagall_PN = mkPN "Chagall" ; -lin chagatai_PN = mkPN "Chagatai" ; -lin chain_PN = mkPN "Chain" ; -lin chait_PN = mkPN "Chait" ; -lin chalcedon_PN = mkPN "Chalcedon" ; -lin chalcididae_PN = mkPN "Chalcididae" ; -lin chalcis_PN = mkPN "Chalcis" ; -lin chalcostigma_PN = mkPN "Chalcostigma" ; -lin chaldea_PN = mkPN "Chaldea" ; -lin chaldean_A = mkA "Chaldean" ; -lin chaldean_PN = mkPN "Chaldean" ; -lin chalfont_PN = mkPN "Chalfont"; -- from DictEng -lin chalfont_st_giles_PN = mkPN "Chalfont st giles"; -- from DictEng -lin chalfont_st_peter_PN = mkPN "Chalfont st peter"; -- from DictEng -lin chalons_PN = mkPN "Chalons" ; -lin chamaea_PN = mkPN "Chamaea" ; -lin chamaecrista_PN = mkPN "Chamaecrista" ; -lin chamaecyparis_PN = mkPN "Chamaecyparis" ; -lin chamaecytisus_PN = mkPN "Chamaecytisus" ; -lin chamaedaphne_PN = mkPN "Chamaedaphne" ; -lin chamaeleo_PN = mkPN "Chamaeleo" ; -lin chamaeleon_PN = mkPN "Chamaeleon" ; -lin chamaeleontidae_PN = mkPN "Chamaeleontidae" ; -lin chamaemelum_PN = mkPN "Chamaemelum" ; -lin chamberlain_PN = mkPN "Chamberlain" ; -lin chambers_PN = mkPN "Chambers" ; -lin champagne_PN = mkPN "Champagne" ; -lin champaign_PN = mkPN "Champaign" ; -lin champlain_PN = mkPN "Champlain" ; -lin champollion_PN = mkPN "Champollion" ; -lin champs_elysees_PN = mkPN "Champs Elysees" ; -lin chancellor_of_the_exchequer_PN = mkPN "Chancellor of the Exchequer" ; -lin chancellorsville_PN = mkPN "Chancellorsville" ; -lin chandi_PN = mkPN "Chandi" ; -lin chandler_PN = mkPN "Chandler" ; -lin chang_jiang_PN = mkPN "Chang Jiang" ; -lin chang_kuo_PN = mkPN "Chang Kuo" ; -lin changchun_PN = mkPN "Changchun"; -- from DictEng -lin changsha_PN = mkPN "Changsha"; -- from DictEng -lin changtzu_PN = mkPN "Changtzu" ; -lin channel_island_PN = mkPN "Channel Island" ; -lin channel_islands_national_park_PN = mkPN "Channel Islands National Park" ; -lin channidae_PN = mkPN "Channidae" ; -lin chao_phraya_PN = mkPN "Chao Phraya" ; -lin chaos_PN = mkPN "Chaos" ; -lin chapel_hill_PN = mkPN "Chapel Hill" ; -lin chaplin_PN = mkPN "Chaplin" ; -lin chapman_PN = mkPN "Chapman" ; -lin chapultepec_PN = mkPN "Chapultepec" ; -lin chara_PN = mkPN "Chara" ; -lin characeae_PN = mkPN "Characeae" ; -lin characidae_PN = mkPN "Characidae" ; -lin characinidae_PN = mkPN "Characinidae" ; -lin charadrii_PN = mkPN "Charadrii" ; -lin charadriidae_PN = mkPN "Charadriidae" ; -lin charadriiformes_PN = mkPN "Charadriiformes" ; -lin charadrius_PN = mkPN "Charadrius" ; -lin charales_PN = mkPN "Charales" ; -lin charcot_PN = mkPN "Charcot" ; -lin charcot_marie_tooth_disease_PN = mkPN "Charcot Marie Tooth disease" ; -lin chard_PN = mkPN "Chard"; -- from DictEng -lin chardonnay_PN = mkPN "Chardonnay" ; -lin chari_nile_PN = mkPN "Chari Nile" ; -lin charina_PN = mkPN "Charina" ; -lin charlemagne_PN = mkPN "Charlemagne" ; -lin charleroi_PN = mkPN "Charleroi" ; -lin charles_PN = mkPN "Charles"; -- from DictEng -lin charleston_PN = mkPN "Charleston" ; -lin charlestown_PN = mkPN "Charlestown" ; -lin charlestown_navy_yard_PN = mkPN "Charlestown Navy Yard" ; -lin charlie_PN = mkPN "Charlie"; -- from DictEng -lin charlotte_PN = mkPN "Charlotte"; -- from DictEng -lin charlottetown_PN = mkPN "Charlottetown" ; -lin charolais_PN = mkPN "Charolais" ; -lin charon_PN = mkPN "Charon" ; -lin charophyceae_PN = mkPN "Charophyceae" ; -lin charronia_PN = mkPN "Charronia" ; -lin chartism_PN = mkPN "Chartism" ; -lin chartist_PN = mkPN "Chartist" ; -lin chartres_PN = mkPN "Chartres" ; -lin chartres_cathedral_PN = mkPN "Chartres Cathedral" ; -lin chartreuse_PN = mkPN "Chartreuse" ; -lin charybdis_PN = mkPN "Charybdis"; -- from DictEng -lin chas_PN = mkPN "Chas"; -- from DictEng -lin chase_PN = mkPN "Chase" ; -lin chateaubriand_PN = mkPN "Chateaubriand" ; -lin chateura_PN = mkPN "Chateura" ; -lin chatham_PN = mkPN "Chatham"; -- from DictEng -lin chattahoochee_PN = mkPN "Chattahoochee" ; -lin chattanooga_PN = mkPN "Chattanooga" ; -lin chaucer_PN = mkPN "Chaucer" ; -lin chauna_PN = mkPN "Chauna" ; -lin chavez_PN = mkPN "Chavez" ; -lin cheadle_PN = mkPN "Cheadle"; -- from DictEng -lin chechen_A = mkA "Chechen" ; -lin chechen_PN = mkPN "Chechen" ; -lin chechnya_PN = mkPN "Chechnya" ; -lin cheddar_PN = mkPN "Cheddar" ; -lin cheever_PN = mkPN "Cheever" ; -lin cheilanthes_PN = mkPN "Cheilanthes" ; -lin cheiranthus_PN = mkPN "Cheiranthus" ; -lin chekhov_PN = mkPN "Chekhov" ; -lin chelicerata_PN = mkPN "Chelicerata" ; -lin chelidonium_PN = mkPN "Chelidonium" ; -lin chelifer_PN = mkPN "Chelifer" ; -lin chelmsford_PN = mkPN "Chelmsford"; -- from DictEng -lin chelone_PN = mkPN "Chelone" ; -lin chelonethida_PN = mkPN "Chelonethida" ; -lin chelonia_PN = mkPN "Chelonia" ; -lin cheloniidae_PN = mkPN "Cheloniidae" ; -lin chelsea_PN = mkPN "Chelsea"; -- from DictEng -lin cheltenham_PN = mkPN "Cheltenham"; -- from DictEng -lin chelyabinsk_PN = mkPN "Chelyabinsk"; -- from DictEng -lin chelydra_PN = mkPN "Chelydra" ; -lin chelydridae_PN = mkPN "Chelydridae" ; -lin chemakuan_PN = mkPN "Chemakuan" ; -lin chemakum_PN = mkPN "Chemakum" ; -lin chemical_weapons_convention_PN = mkPN "Chemical Weapons Convention" ; -lin chemnitz_PN = mkPN "Chemnitz" ; -lin chen_PN = mkPN "Chen" ; -lin chengchow_PN = mkPN "Chengchow"; -- from DictEng -lin chengtu_PN = mkPN "Chengtu"; -- from DictEng -lin chenin_blanc_PN = mkPN "Chenin blanc" ; -lin chennai_PN = mkPN "Chennai" ; -lin chenopodiaceae_PN = mkPN "Chenopodiaceae" ; -lin chenopodium_PN = mkPN "Chenopodium" ; -lin cheops_PN = mkPN "Cheops" ; -lin chepstow_PN = mkPN "Chepstow"; -- from DictEng -lin cherbourg_PN = mkPN "Cherbourg" ; -lin cheremis_PN = mkPN "Cheremis" ; -lin cherepovets_PN = mkPN "Cherepovets" ; -lin chernobyl_PN = mkPN "Chernobyl" ; -lin cherokee_PN = mkPN "Cherokee" ; -lin cherokee_rose_PN = mkPN "Cherokee rose" ; -lin cherubini_PN = mkPN "Cherubini" ; -lin chesapeake_bay_PN = mkPN "Chesapeake Bay" ; -lin chesapeake_bay_retriever_PN = mkPN "Chesapeake Bay retriever" ; -lin chesham_PN = mkPN "Chesham"; -- from DictEng -lin cheshire_PN = mkPN "Cheshire"; -- from DictEng -lin cheshire_cat_PN = mkPN "Cheshire cat" ; -lin cheshire_cheese_PN = mkPN "Cheshire cheese" ; -lin chester_PN = mkPN "Chester"; -- from DictEng -lin chester_le_street_PN = mkPN "Chester - le - street"; -- from DictEng -lin chesterfield_PN = mkPN "Chesterfield"; -- from DictEng -lin chesterton_PN = mkPN "Chesterton" ; -lin chevalier_PN = mkPN "Chevalier" ; -lin cheviot_PN = mkPN "Cheviot" ; -lin cheviots_PN = mkPN "Cheviots" ; -lin chewa_PN = mkPN "Chewa" ; -lin cheyenne_PN = mkPN "Cheyenne" ; -lin chimwini_PN = mkPN "ChiMwini" ; -lin chiacoan_peccary_PN = mkPN "Chiacoan peccary" ; -lin chian_A = mkA "Chian" ; -lin chian_turpentine_PN = mkPN "Chian turpentine" ; -lin chiang_kai_shek_PN = mkPN "Chiang Kai shek" ; -lin chianti_PN = mkPN "Chianti" ; -lin chicago_PN = mkPN "Chicago"; -- from DictEng -lin chicano_PN = mkPN "Chicano" ; -lin chichester_PN = mkPN "Chichester"; -- from DictEng -lin chichewa_PN = mkPN "Chichewa" ; -lin chickamauga_PN = mkPN "Chickamauga" ; -lin chickasaw_PN = mkPN "Chickasaw" ; -lin chicken_little_PN = mkPN "Chicken Little" ; -lin chief_constable_PN = mkPN "Chief Constable" ; -lin chief_secretary_PN = mkPN "Chief Secretary" ; -lin chihuahua_PN = mkPN "Chihuahua" ; -lin chihuahuan_desert_PN = mkPN "Chihuahuan Desert" ; -lin chihuahuan_spotted_whiptail_PN = mkPN "Chihuahuan spotted whiptail" ; -lin chile_PN = mkPN "Chile"; -- from DictEng -lin chile_bonito_PN = mkPN "Chile bonito" ; -lin chilean_A = compoundA (mkA "chilean"); -- from DictEng -lin chilean_PN = mkPN "Chilean" ; -lin chilean_cedar_PN = mkPN "Chilean cedar" ; -lin chilean_firebush_PN = mkPN "Chilean firebush" ; -lin chilean_jasmine_PN = mkPN "Chilean jasmine" ; -lin chilean_monetary_unit_PN = mkPN "Chilean monetary unit" ; -lin chilean_nut_PN = mkPN "Chilean nut" ; -lin chilean_peso_PN = mkPN "Chilean peso" ; -lin chilean_rimu_PN = mkPN "Chilean rimu" ; -lin chiloe_PN = mkPN "Chiloe" ; -lin chilomastix_PN = mkPN "Chilomastix" ; -lin chilomeniscus_PN = mkPN "Chilomeniscus" ; -lin chilomycterus_PN = mkPN "Chilomycterus" ; -lin chilopoda_PN = mkPN "Chilopoda" ; -lin chilopsis_PN = mkPN "Chilopsis" ; -lin chimaeridae_PN = mkPN "Chimaeridae" ; -lin chimakum_PN = mkPN "Chimakum" ; -lin chimaphila_PN = mkPN "Chimaphila" ; -lin chimariko_PN = mkPN "Chimariko" ; -lin chimborazo_PN = mkPN "Chimborazo" ; -lin chimera_PN = mkPN "Chimera" ; -lin chimonanthus_PN = mkPN "Chimonanthus" ; -lin china_PN = mkPN "China"; -- from DictEng -lin china_aster_PN = mkPN "China aster" ; -lin china_rose_PN = mkPN "China rose" ; -lin china_tree_PN = mkPN "China tree" ; -lin chinaman_PN = mkPN "Chinaman" ; -lin chinchillidae_PN = mkPN "Chinchillidae" ; -lin chinchow_PN = mkPN "Chinchow"; -- from DictEng -lin chinese_A = compoundA (mkA "Chinese"); -- from DictEng -lin chinese_PN = mkPN "Chinese" ; -lin chinese_revolution_PN = mkPN "Chinese Revolution" ; -lin chinese_wall_PN = mkPN "Chinese Wall" ; -lin chinese_alligator_PN = mkPN "Chinese alligator" ; -lin chinese_angelica_PN = mkPN "Chinese angelica" ; -lin chinese_anise_PN = mkPN "Chinese anise" ; -lin chinese_brown_sauce_PN = mkPN "Chinese brown sauce" ; -lin chinese_cabbage_PN = mkPN "Chinese cabbage" ; -lin chinese_checkers_PN = mkPN "Chinese checkers" ; -lin chinese_chestnut_PN = mkPN "Chinese chestnut" ; -lin chinese_cork_oak_PN = mkPN "Chinese cork oak" ; -lin chinese_deity_PN = mkPN "Chinese deity" ; -lin chinese_elm_PN = mkPN "Chinese elm" ; -lin chinese_evergreen_PN = mkPN "Chinese evergreen" ; -lin chinese_forget_me_not_PN = mkPN "Chinese forget me not" ; -lin chinese_goose_PN = mkPN "Chinese goose" ; -lin chinese_gooseberry_PN = mkPN "Chinese gooseberry" ; -lin chinese_holly_PN = mkPN "Chinese holly" ; -lin chinese_lantern_PN = mkPN "Chinese lantern" ; -lin chinese_lantern_plant_PN = mkPN "Chinese lantern plant" ; -lin chinese_monetary_unit_PN = mkPN "Chinese monetary unit" ; -lin chinese_mustard_PN = mkPN "Chinese mustard" ; -lin chinese_paddlefish_PN = mkPN "Chinese paddlefish" ; -lin chinese_parasol_tree_PN = mkPN "Chinese parasol tree" ; -lin chinese_pea_tree_PN = mkPN "Chinese pea tree" ; -lin chinese_primrose_PN = mkPN "Chinese primrose" ; -lin chinese_privet_PN = mkPN "Chinese privet" ; -lin chinese_puzzle_PN = mkPN "Chinese puzzle" ; -lin chinese_restaurant_syndrome_PN = mkPN "Chinese restaurant syndrome" ; -lin chinese_rhubarb_PN = mkPN "Chinese rhubarb" ; -lin chinese_wistaria_PN = mkPN "Chinese wistaria" ; -lin chino_japanese_war_PN = mkPN "Chino Japanese War" ; -lin chinook_PN = mkPN "Chinook" ; -lin chinook_jargon_PN = mkPN "Chinook Jargon" ; -lin chinookan_PN = mkPN "Chinookan" ; -lin chiococca_PN = mkPN "Chiococca" ; -lin chionanthus_PN = mkPN "Chionanthus" ; -lin chios_PN = mkPN "Chios" ; -lin chipewyan_PN = mkPN "Chipewyan" ; -lin chippendale_A = mkA "Chippendale" ; -lin chippendale_PN = mkPN "Chippendale" ; -lin chippenham_PN = mkPN "Chippenham"; -- from DictEng -lin chiricahua_apache_PN = mkPN "Chiricahua Apache" ; -lin chirico_PN = mkPN "Chirico" ; -lin chiron_PN = mkPN "Chiron" ; -lin chironomidae_PN = mkPN "Chironomidae" ; -lin chironomus_PN = mkPN "Chironomus" ; -lin chiroptera_PN = mkPN "Chiroptera" ; -lin chisholm_trail_PN = mkPN "Chisholm Trail" ; -lin chishona_PN = mkPN "Chishona" ; -lin chittagong_PN = mkPN "Chittagong" ; -lin chiwere_PN = mkPN "Chiwere" ; -lin chlamydera_PN = mkPN "Chlamydera" ; -lin chlamydia_psittaci_PN = mkPN "Chlamydia psittaci" ; -lin chlamydia_trachomatis_PN = mkPN "Chlamydia trachomatis" ; -lin chlamydiaceae_PN = mkPN "Chlamydiaceae" ; -lin chlamydomonadaceae_PN = mkPN "Chlamydomonadaceae" ; -lin chlamydomonas_PN = mkPN "Chlamydomonas" ; -lin chlamydosaurus_PN = mkPN "Chlamydosaurus" ; -lin chlamyphorus_PN = mkPN "Chlamyphorus" ; -lin chloe_PN = mkPN "Chloe"; -- from DictEng -lin chloranthaceae_PN = mkPN "Chloranthaceae" ; -lin chloranthus_PN = mkPN "Chloranthus" ; -lin chloris_PN = mkPN "Chloris" ; -lin chlorococcales_PN = mkPN "Chlorococcales" ; -lin chlorococcum_PN = mkPN "Chlorococcum" ; -lin chlorophis_PN = mkPN "Chlorophis" ; -lin chlorophoneus_PN = mkPN "Chlorophoneus" ; -lin chlorophthalmidae_PN = mkPN "Chlorophthalmidae" ; -lin chlorophyceae_PN = mkPN "Chlorophyceae" ; -lin chlorophyllum_molybdites_PN = mkPN "Chlorophyllum molybdites" ; -lin chlorophyta_PN = mkPN "Chlorophyta" ; -lin chloroxylon_PN = mkPN "Chloroxylon" ; -lin chlorura_PN = mkPN "Chlorura" ; -lin choctaw_PN = mkPN "Choctaw" ; -lin choeronycteris_PN = mkPN "Choeronycteris" ; -lin choloepus_PN = mkPN "Choloepus" ; -lin chomsky_PN = mkPN "Chomsky" ; -lin chondrichthyes_PN = mkPN "Chondrichthyes" ; -lin chondrus_PN = mkPN "Chondrus" ; -lin chongqing_PN = mkPN "Chongqing" ; -lin chopin_PN = mkPN "Chopin" ; -lin chopwell_PN = mkPN "Chopwell"; -- from DictEng -lin chordata_PN = mkPN "Chordata" ; -lin chordeiles_PN = mkPN "Chordeiles" ; -lin chordospartium_PN = mkPN "Chordospartium" ; -lin choriotis_PN = mkPN "Choriotis" ; -lin chorizagrotis_PN = mkPN "Chorizagrotis" ; -lin chorizema_PN = mkPN "Chorizema" ; -lin chorley_PN = mkPN "Chorley"; -- from DictEng -lin chosen_PN = mkPN "Chosen" ; -lin chris_PN = mkPN "Chris"; -- from DictEng -lin chrissie_PN = mkPN "Chrissie"; -- from DictEng -lin chrissy_PN = mkPN "Chrissy"; -- from DictEng -lin christ_PN = mkPN "Christ"; -- from DictEng -lin christ's_thorn_PN = mkPN "Christ's thorn" ; -lin christchurch_PN = mkPN "Christchurch"; -- from DictEng -lin christendom_PN = mkPN "Christendom" ; -lin christian_A = compoundA (mkA "christian"); -- from DictEng -lin christian_PN = mkPN "Christian"; -- from DictEng -lin christian_church_PN = mkPN "Christian Church" ; -lin christian_science_PN = mkPN "Christian Science" ; -lin christian_scientist_PN = mkPN "Christian Scientist" ; -lin christian_era_PN = mkPN "Christian era" ; -lin christian_holy_day_PN = mkPN "Christian holy day" ; -lin christian_liturgy_PN = mkPN "Christian liturgy" ; -lin christian_name_PN = mkPN "Christian name" ; -lin christian_theology_PN = mkPN "Christian theology" ; -lin christianity_PN = mkPN "Christianity" ; -lin christianization_PN = mkPN "Christianization" ; -lin christie_PN = mkPN "Christie" ; -lin christina_PN = mkPN "Christina"; -- from DictEng -lin christine_PN = mkPN "Christine"; -- from DictEng -lin christmas_PN = mkPN "Christmas"; -- from DictEng -lin christmas_eve_PN = mkPN "Christmas Eve" ; -lin christmas_begonia_PN = mkPN "Christmas begonia" ; -lin christmas_bells_PN = mkPN "Christmas bells" ; -lin christmas_box_PN = mkPN "Christmas box" ; -lin christmas_bush_PN = mkPN "Christmas bush" ; -lin christmas_cactus_PN = mkPN "Christmas cactus" ; -lin christmas_cake_PN = mkPN "Christmas cake" ; -lin christmas_card_PN = mkPN "Christmas card" ; -lin christmas_factor_PN = mkPN "Christmas factor" ; -lin christmas_fern_PN = mkPN "Christmas fern" ; -lin christmas_present_PN = mkPN "Christmas present" ; -lin christmas_rose_PN = mkPN "Christmas rose" ; -lin christmas_stocking_PN = mkPN "Christmas stocking" ; -lin christmas_tree_PN = mkPN "Christmas tree" ; -lin christmasberry_PN = mkPN "Christmasberry" ; -lin christological_A = mkA "Christological" ; -lin christology_PN = mkPN "Christology" ; -lin christopher_PN = mkPN "Christopher"; -- from DictEng -lin chronoperates_PN = mkPN "Chronoperates" ; -lin chronoperates_paradoxus_PN = mkPN "Chronoperates paradoxus" ; -lin chrysaora_PN = mkPN "Chrysaora" ; -lin chrysaora_quinquecirrha_PN = mkPN "Chrysaora quinquecirrha" ; -lin chrysemys_PN = mkPN "Chrysemys" ; -lin chrysobalanus_PN = mkPN "Chrysobalanus" ; -lin chrysochloridae_PN = mkPN "Chrysochloridae" ; -lin chrysochloris_PN = mkPN "Chrysochloris" ; -lin chrysolepis_PN = mkPN "Chrysolepis" ; -lin chrysolophus_PN = mkPN "Chrysolophus" ; -lin chrysomelidae_PN = mkPN "Chrysomelidae" ; -lin chrysophrys_PN = mkPN "Chrysophrys" ; -lin chrysophyceae_PN = mkPN "Chrysophyceae" ; -lin chrysophyllum_PN = mkPN "Chrysophyllum" ; -lin chrysophyta_PN = mkPN "Chrysophyta" ; -lin chrysopidae_PN = mkPN "Chrysopidae" ; -lin chrysopsis_PN = mkPN "Chrysopsis" ; -lin chrysosplenium_PN = mkPN "Chrysosplenium" ; -lin chrysothamnus_PN = mkPN "Chrysothamnus" ; -lin chuang_tzu_PN = mkPN "Chuang tzu" ; -lin chukaku_ha_PN = mkPN "Chukaku Ha" ; -lin chukchi_PN = mkPN "Chukchi" ; -lin chukchi_peninsula_PN = mkPN "Chukchi Peninsula" ; -lin chukchi_sea_PN = mkPN "Chukchi Sea" ; -lin chula_vista_PN = mkPN "Chula Vista" ; -lin chungking_PN = mkPN "Chungking"; -- from DictEng -lin church_father_PN = mkPN "Church Father" ; -lin church_of_ireland_PN = mkPN "Church of Ireland" ; -lin church_of_jesus_christ_of_latter_day_saints_PN = mkPN "Church of Jesus Christ of Latter Day Saints" ; -lin church_of_the_brethren_PN = mkPN "Church of the Brethren" ; -lin churchill_PN = mkPN "Churchill" ; -lin churchill_downs_PN = mkPN "Churchill Downs" ; -lin churchillian_A = mkA "Churchillian" ; -lin chuvash_PN = mkPN "Chuvash" ; -lin chytridiaceae_PN = mkPN "Chytridiaceae" ; -lin chytridiales_PN = mkPN "Chytridiales" ; -lin chytridiomycetes_PN = mkPN "Chytridiomycetes" ; -lin ciardi_PN = mkPN "Ciardi" ; -lin cibotium_PN = mkPN "Cibotium" ; -lin cicadellidae_PN = mkPN "Cicadellidae" ; -lin cicadidae_PN = mkPN "Cicadidae" ; -lin cicer_PN = mkPN "Cicer" ; -lin cicero_PN = mkPN "Cicero" ; -lin cichlidae_PN = mkPN "Cichlidae" ; -lin cichorium_PN = mkPN "Cichorium" ; -lin cicindelidae_PN = mkPN "Cicindelidae" ; -lin ciconia_PN = mkPN "Ciconia" ; -lin ciconiidae_PN = mkPN "Ciconiidae" ; -lin ciconiiformes_PN = mkPN "Ciconiiformes" ; -lin cicuta_PN = mkPN "Cicuta" ; -lin cif_PN = mkPN "Cif"; -- from DictEng -lin ciliata_PN = mkPN "Ciliata" ; -lin cimabue_PN = mkPN "Cimabue" ; -lin cimarron_PN = mkPN "Cimarron" ; -lin cimex_PN = mkPN "Cimex" ; -lin cimicidae_PN = mkPN "Cimicidae" ; -lin cimicifuga_PN = mkPN "Cimicifuga" ; -lin cimmerian_A = mkA "Cimmerian" ; -lin cincinnati_PN = mkPN "Cincinnati"; -- from DictEng -lin cincinnatus_PN = mkPN "Cincinnatus" ; -lin cinclidae_PN = mkPN "Cinclidae" ; -lin cinclus_PN = mkPN "Cinclus" ; -lin cinco_de_mayo_PN = mkPN "Cinco de Mayo" ; -lin cinderella_PN = mkPN "Cinderella" ; -lin cinderford_PN = mkPN "Cinderford"; -- from DictEng -lin cinnamomum_PN = mkPN "Cinnamomum" ; -lin circaea_PN = mkPN "Circaea" ; -lin circaea_lutetiana_PN = mkPN "Circaea lutetiana" ; -lin circaetus_PN = mkPN "Circaetus" ; -lin circassian_PN = mkPN "Circassian" ; -lin circe_PN = mkPN "Circe" ; -lin circinus_PN = mkPN "Circinus" ; -lin circumcision_PN = mkPN "Circumcision" ; -lin circus_PN = mkPN "Circus" ; -lin cirencester_PN = mkPN "Cirencester"; -- from DictEng -lin cirripedia_PN = mkPN "Cirripedia" ; -lin cirsium_PN = mkPN "Cirsium" ; -lin cistaceae_PN = mkPN "Cistaceae" ; -lin cistothorus_PN = mkPN "Cistothorus" ; -lin cistus_PN = mkPN "Cistus" ; -lin citation_PN = mkPN "Citation" ; -lin citellus_PN = mkPN "Citellus" ; -lin citharichthys_PN = mkPN "Citharichthys" ; -lin citizenship_day_PN = mkPN "Citizenship Day" ; -lin citlaltepetl_PN = mkPN "Citlaltepetl" ; -lin citroncirus_PN = mkPN "Citroncirus" ; -lin citrullus_PN = mkPN "Citrullus" ; -lin city_of_london_PN = mkPN "City of London" ; -lin ciudad_bolivar_PN = mkPN "Ciudad Bolivar" ; -lin ciudad_juarez_PN = mkPN "Ciudad Juarez" ; -lin ciudad_victoria_PN = mkPN "Ciudad Victoria" ; -lin civil_list_PN = mkPN "Civil List" ; -lin civil_rights_movement_PN = mkPN "Civil Rights movement" ; -lin civvy_street_PN = mkPN "Civvy street"; -- from DictEng -lin clackmannon_PN = mkPN "Clackmannon"; -- from DictEng -lin clacton_PN = mkPN "Clacton"; -- from DictEng -lin cladonia_PN = mkPN "Cladonia" ; -lin cladoniaceae_PN = mkPN "Cladoniaceae" ; -lin cladorhyncus_PN = mkPN "Cladorhyncus" ; -lin cladrastis_PN = mkPN "Cladrastis" ; -lin clamatores_PN = mkPN "Clamatores" ; -lin clangula_PN = mkPN "Clangula" ; -lin clare_PN = mkPN "Clare"; -- from DictEng -lin clark_PN = mkPN "Clark" ; -lin clark's_nutcracker_PN = mkPN "Clark's nutcracker" ; -lin clark_cell_PN = mkPN "Clark cell" ; -lin clarksburg_PN = mkPN "Clarksburg" ; -lin clarkston_PN = mkPN "Clarkston"; -- from DictEng -lin clarrie_PN = mkPN "Clarrie"; -- from DictEng -lin clathraceae_PN = mkPN "Clathraceae" ; -lin clathrus_PN = mkPN "Clathrus" ; -lin claud_PN = mkPN "Claud"; -- from DictEng -lin claude_PN = mkPN "Claude"; -- from DictEng -lin claudius_PN = mkPN "Claudius" ; -lin clausewitz_PN = mkPN "Clausewitz" ; -lin clavariaceae_PN = mkPN "Clavariaceae" ; -lin claviceps_PN = mkPN "Claviceps" ; -lin clavicipitaceae_PN = mkPN "Clavicipitaceae" ; -lin clay_PN = mkPN "Clay" ; -lin clay_cross_PN = mkPN "Clay cross"; -- from DictEng -lin claytonia_PN = mkPN "Claytonia" ; -lin cleanthes_PN = mkPN "Cleanthes" ; -lin cleator_moor_PN = mkPN "Cleator moor"; -- from DictEng -lin cleethorpes_PN = mkPN "Cleethorpes"; -- from DictEng -lin cleistes_PN = mkPN "Cleistes" ; -lin clem_PN = mkPN "Clem"; -- from DictEng -lin clemenceau_PN = mkPN "Clemenceau" ; -lin clemens_PN = mkPN "Clemens" ; -lin clement_PN = mkPN "Clement"; -- from DictEng -lin clement_iii_PN = mkPN "Clement III" ; -lin clement_vii_PN = mkPN "Clement VII" ; -lin clement_xi_PN = mkPN "Clement XI" ; -lin clement_xiv_PN = mkPN "Clement XIV" ; -lin cleopatra_PN = mkPN "Cleopatra" ; -lin cleridae_PN = mkPN "Cleridae" ; -lin clermont_ferrand_PN = mkPN "Clermont - ferrand"; -- from DictEng -lin clethra_PN = mkPN "Clethra" ; -lin clethraceae_PN = mkPN "Clethraceae" ; -lin clethrionomys_PN = mkPN "Clethrionomys" ; -lin clevedon_PN = mkPN "Clevedon"; -- from DictEng -lin cleveland_PN = mkPN "Cleveland"; -- from DictEng -lin clichy_PN = mkPN "Clichy" ; -lin cliff_PN = mkPN "Cliff"; -- from DictEng -lin clifford_PN = mkPN "Clifford"; -- from DictEng -lin clifford_trust_PN = mkPN "Clifford trust" ; -lin cliftonia_PN = mkPN "Cliftonia" ; -lin clinch_river_PN = mkPN "Clinch River" ; -lin cline_PN = mkPN "Cline" ; -lin clinidae_PN = mkPN "Clinidae" ; -lin clinopodium_PN = mkPN "Clinopodium" ; -lin clinton_PN = mkPN "Clinton" ; -lin clinton_administration_PN = mkPN "Clinton administration" ; -lin clio_PN = mkPN "Clio" ; -lin clitheroe_PN = mkPN "Clitheroe"; -- from DictEng -lin clitocybe_PN = mkPN "Clitocybe" ; -lin clitocybe_clavipes_PN = mkPN "Clitocybe clavipes" ; -lin clitocybe_dealbata_PN = mkPN "Clitocybe dealbata" ; -lin clitocybe_inornata_PN = mkPN "Clitocybe inornata" ; -lin clitocybe_irina_PN = mkPN "Clitocybe irina" ; -lin clitocybe_robusta_PN = mkPN "Clitocybe robusta" ; -lin clitocybe_subconnexa_PN = mkPN "Clitocybe subconnexa" ; -lin clitoria_PN = mkPN "Clitoria" ; -lin clive_PN = mkPN "Clive"; -- from DictEng -lin clorox_PN = mkPN "Clorox" ; -lin clotho_PN = mkPN "Clotho" ; -lin clovis_PN = mkPN "Clovis" ; -lin clovis_culture_PN = mkPN "Clovis culture" ; -lin clowne_PN = mkPN "Clowne"; -- from DictEng -lin clupea_PN = mkPN "Clupea" ; -lin clupeidae_PN = mkPN "Clupeidae" ; -lin clwyd_PN = mkPN "Clwyd"; -- from DictEng -lin clydach_PN = mkPN "Clydach"; -- from DictEng -lin clyde_PN = mkPN "Clyde" ; -lin clydebank_PN = mkPN "Clydebank"; -- from DictEng -lin clydesdale_PN = mkPN "Clydesdale" ; -lin clydesdale_terrier_PN = mkPN "Clydesdale terrier" ; -lin clytemnestra_PN = mkPN "Clytemnestra" ; -lin cnemidophorus_PN = mkPN "Cnemidophorus" ; -lin cnicus_PN = mkPN "Cnicus" ; -lin cnidaria_PN = mkPN "Cnidaria" ; -lin cnidoscolus_PN = mkPN "Cnidoscolus" ; -lin cnidosporidia_PN = mkPN "Cnidosporidia" ; -lin coahuila_PN = mkPN "Coahuila" ; -lin coalville_PN = mkPN "Coalville"; -- from DictEng -lin coast_range_PN = mkPN "Coast Range" ; -lin coatbridge_PN = mkPN "Coatbridge"; -- from DictEng -lin coats_land_PN = mkPN "Coats Land" ; -lin cobham_PN = mkPN "Cobham"; -- from DictEng -lin cobitidae_PN = mkPN "Cobitidae" ; -lin coca_PN = mkPN "Coca" ; -lin coca_cola_PN = mkPN "Coca Cola" ; -lin coccidae_PN = mkPN "Coccidae" ; -lin coccidia_PN = mkPN "Coccidia" ; -lin coccinellidae_PN = mkPN "Coccinellidae" ; -lin coccoidea_PN = mkPN "Coccoidea" ; -lin coccothraustes_PN = mkPN "Coccothraustes" ; -lin cocculus_PN = mkPN "Cocculus" ; -lin coccyzus_PN = mkPN "Coccyzus" ; -lin cochimi_PN = mkPN "Cochimi" ; -lin cochise_PN = mkPN "Cochise" ; -lin cochlearia_PN = mkPN "Cochlearia" ; -lin cochlearius_PN = mkPN "Cochlearius" ; -lin cochran_PN = mkPN "Cochran" ; -lin cockaigne_PN = mkPN "Cockaigne" ; -lin cockcroft_PN = mkPN "Cockcroft" ; -lin cockcroft_and_walton_accelerator_PN = mkPN "Cockcroft and Walton accelerator" ; -lin cockermouth_PN = mkPN "Cockermouth"; -- from DictEng -lin cockney_A = compoundA (mkA "cockney"); -- from DictEng -lin cockney_PN = mkPN "Cockney" ; -lin cocopa_PN = mkPN "Cocopa" ; -lin cocos_PN = mkPN "Cocos" ; -lin cocteau_PN = mkPN "Cocteau" ; -lin cocus_PN = mkPN "Cocus" ; -lin cocytus_PN = mkPN "Cocytus" ; -lin cod_PN = mkPN "Cod"; -- from DictEng -lin codariocalyx_PN = mkPN "Codariocalyx" ; -lin codiaeum_PN = mkPN "Codiaeum" ; -lin codsall_PN = mkPN "Codsall"; -- from DictEng -lin cody_PN = mkPN "Cody" ; -lin coeloglossum_PN = mkPN "Coeloglossum" ; -lin coereba_PN = mkPN "Coereba" ; -lin coerebidae_PN = mkPN "Coerebidae" ; -lin coeur_d'alene_PN = mkPN "Coeur d'Alene" ; -lin coeur_d'alene_lake_PN = mkPN "Coeur d'Alene Lake" ; -lin coffea_PN = mkPN "Coffea" ; -lin coffey_still_PN = mkPN "Coffey still" ; -lin cognac_PN = mkPN "Cognac" ; -lin cohan_PN = mkPN "Cohan" ; -lin cohn_PN = mkPN "Cohn" ; -lin coigue_PN = mkPN "Coigue" ; -lin coimbatore_PN = mkPN "Coimbatore"; -- from DictEng -lin col_PN = mkPN "Col"; -- from DictEng -lin cola_PN = mkPN "Cola" ; -lin colaptes_PN = mkPN "Colaptes" ; -lin colbert_PN = mkPN "Colbert" ; -lin colchester_PN = mkPN "Colchester"; -- from DictEng -lin colchicaceae_PN = mkPN "Colchicaceae" ; -lin colchicum_PN = mkPN "Colchicum" ; -lin colchis_PN = mkPN "Colchis" ; -lin cold_war_PN = mkPN "Cold War" ; -lin coleonyx_PN = mkPN "Coleonyx" ; -lin coleoptera_PN = mkPN "Coleoptera" ; -lin coleridge_PN = mkPN "Coleridge" ; -lin coleridgian_A = mkA "Coleridgian" ; -lin coleshill_PN = mkPN "Coleshill"; -- from DictEng -lin colette_PN = mkPN "Colette" ; -lin colima_PN = mkPN "Colima" ; -lin colin_PN = mkPN "Colin"; -- from DictEng -lin colinus_PN = mkPN "Colinus" ; -lin coll_PN = mkPN "Coll"; -- from DictEng -lin collembola_PN = mkPN "Collembola" ; -lin collins_PN = mkPN "Collins" ; -lin collinsia_PN = mkPN "Collinsia" ; -lin collinsonia_PN = mkPN "Collinsonia" ; -lin collocalia_PN = mkPN "Collocalia" ; -lin colne_PN = mkPN "Colne"; -- from DictEng -lin colocasia_PN = mkPN "Colocasia" ; -lin cologne_PN = mkPN "Cologne"; -- from DictEng -lin colombia_PN = mkPN "Colombia"; -- from DictEng -lin colombian_A = compoundA (mkA "colombian"); -- from DictEng -lin colombian_PN = mkPN "Colombian" ; -lin colombian_monetary_unit_PN = mkPN "Colombian monetary unit" ; -lin colombian_peso_PN = mkPN "Colombian peso" ; -lin colombo_PN = mkPN "Colombo"; -- from DictEng -lin colon_PN = mkPN "Colon" ; -lin colonel_blimp_PN = mkPN "Colonel Blimp" ; -lin colony_PN = mkPN "Colony" ; -lin coloradan_PN = mkPN "Coloradan" ; -lin colorado_PN = mkPN "Colorado"; -- from DictEng -lin colorado_desert_PN = mkPN "Colorado Desert" ; -lin colorado_plateau_PN = mkPN "Colorado Plateau" ; -lin colorado_river_hemp_PN = mkPN "Colorado River hemp" ; -lin colorado_springs_PN = mkPN "Colorado Springs" ; -lin colorado_potato_beetle_PN = mkPN "Colorado potato beetle" ; -lin colorado_spruce_PN = mkPN "Colorado spruce" ; -lin colossae_PN = mkPN "Colossae" ; -lin colosseum_PN = mkPN "Colosseum" ; -lin colossian_PN = mkPN "Colossian" ; -lin colossus_of_rhodes_PN = mkPN "Colossus of Rhodes" ; -lin colt_PN = mkPN "Colt" ; -lin coluber_PN = mkPN "Coluber" ; -lin colubridae_PN = mkPN "Colubridae" ; -lin colubrina_PN = mkPN "Colubrina" ; -lin columba_PN = mkPN "Columba" ; -lin columbia_PN = mkPN "Columbia"; -- from DictEng -lin columbia_university_PN = mkPN "Columbia University" ; -lin columbia_tiger_lily_PN = mkPN "Columbia tiger lily" ; -lin columbian_A = mkA "Columbian" ; -lin columbidae_PN = mkPN "Columbidae" ; -lin columbiformes_PN = mkPN "Columbiformes" ; -lin columbus_PN = mkPN "Columbus"; -- from DictEng -lin columbus_day_PN = mkPN "Columbus Day" ; -lin colutea_PN = mkPN "Colutea" ; -lin colwyn_bay_PN = mkPN "Colwyn bay"; -- from DictEng -lin coma_berenices_PN = mkPN "Coma Berenices" ; -lin comanche_PN = mkPN "Comanche" ; -lin comandra_PN = mkPN "Comandra" ; -lin comatula_PN = mkPN "Comatula" ; -lin comatulidae_PN = mkPN "Comatulidae" ; -lin combined_dna_index_system_PN = mkPN "Combined DNA Index System" ; -lin combretaceae_PN = mkPN "Combretaceae" ; -lin comenius_PN = mkPN "Comenius" ; -lin commelinaceae_PN = mkPN "Commelinaceae" ; -lin commelinidae_PN = mkPN "Commelinidae" ; -lin commiphora_PN = mkPN "Commiphora" ; -lin commission_on_human_rights_PN = mkPN "Commission on Human Rights" ; -lin commission_on_narcotic_drugs_PN = mkPN "Commission on Narcotic Drugs" ; -lin commission_on_the_status_of_women_PN = mkPN "Commission on the Status of Women" ; -lin committee_for_state_security_PN = mkPN "Committee for State Security" ; -lin commodore_john_barry_bridge_PN = mkPN "Commodore John Barry Bridge" ; -lin commonwealth_day_PN = mkPN "Commonwealth Day" ; -lin commonwealth_of_independent_states_PN = mkPN "Commonwealth of Independent States" ; -lin communications_security_establishment_PN = mkPN "Communications Security Establishment" ; -lin communion_PN = mkPN "Communion" ; -lin communism_peak_PN = mkPN "Communism Peak" ; -lin communist_PN = mkPN "Communist" ; -lin communist_manifesto_PN = mkPN "Communist Manifesto" ; -lin communist_party_PN = mkPN "Communist Party" ; -lin comoro_islands_PN = mkPN "Comoro Islands" ; -lin comoros_PN = mkPN "Comoros" ; -lin compositae_PN = mkPN "Compositae" ; -lin composite_order_PN = mkPN "Composite order" ; -lin compton_PN = mkPN "Compton" ; -lin comptonia_PN = mkPN "Comptonia" ; -lin comptroller_general_PN = mkPN "Comptroller General" ; -lin comptroller_of_the_currency_PN = mkPN "Comptroller of the Currency" ; -lin comrade_PN = mkPN "Comrade" ; -lin comstock_PN = mkPN "Comstock" ; -lin comstock_mealybug_PN = mkPN "Comstock mealybug" ; -lin comstockery_PN = mkPN "Comstockery" ; -lin comte_PN = mkPN "Comte" ; -lin comtism_PN = mkPN "Comtism" ; -lin conakry_PN = mkPN "Conakry" ; -lin conan_doyle_PN = mkPN "Conan Doyle" ; -lin concepcion_PN = mkPN "Concepcion" ; -lin concord_PN = mkPN "Concord" ; -lin concord_grape_PN = mkPN "Concord grape" ; -lin condorcet_PN = mkPN "Condorcet" ; -lin condylura_PN = mkPN "Condylura" ; -lin conepatus_PN = mkPN "Conepatus" ; -lin coney_island_PN = mkPN "Coney Island" ; -lin confederacy_PN = mkPN "Confederacy" ; -lin confederate_A = compoundA (mkA "confederate"); -- from DictEng -lin confederate_PN = mkPN "Confederate" ; -lin confederate_army_PN = mkPN "Confederate Army" ; -lin confederate_soldier_PN = mkPN "Confederate soldier" ; -lin confucian_A = compoundA (mkA "confucian"); -- from DictEng -lin confucian_PN = mkPN "Confucian" ; -lin confucianism_PN = mkPN "Confucianism" ; -lin confucius_PN = mkPN "Confucius" ; -lin congleton_PN = mkPN "Congleton"; -- from DictEng -lin congo_PN = mkPN "Congo"; -- from DictEng -lin congo_franc_PN = mkPN "Congo franc" ; -lin congolese_A = compoundA (mkA "congolese"); -- from DictEng -lin congolese_PN = mkPN "Congolese" ; -lin congregational_A = compoundA (mkA "congregational"); -- from DictEng -lin congregational_christian_church_PN = mkPN "Congregational Christian Church" ; -lin congregational_church_PN = mkPN "Congregational Church" ; -lin congregationalism_PN = mkPN "Congregationalism" ; -lin congregationalist_PN = mkPN "Congregationalist" ; -lin congress_PN = mkPN "Congress" ; -lin congress_of_industrial_organizations_PN = mkPN "Congress of Industrial Organizations" ; -lin congress_of_racial_equality_PN = mkPN "Congress of Racial Equality" ; -lin congressional_record_PN = mkPN "Congressional Record" ; -lin congreve_PN = mkPN "Congreve" ; -lin congridae_PN = mkPN "Congridae" ; -lin coniferales_PN = mkPN "Coniferales" ; -lin coniferopsida_PN = mkPN "Coniferopsida" ; -lin conilurus_PN = mkPN "Conilurus" ; -lin coniogramme_PN = mkPN "Coniogramme" ; -lin conium_PN = mkPN "Conium" ; -lin conn's_syndrome_PN = mkPN "Conn's syndrome" ; -lin connah's_quay_PN = mkPN "Connah's quay"; -- from DictEng -lin connaraceae_PN = mkPN "Connaraceae" ; -lin connarus_PN = mkPN "Connarus" ; -lin connarus_guianensis_PN = mkPN "Connarus guianensis" ; -lin connaught_PN = mkPN "Connaught"; -- from DictEng -lin connecticut_PN = mkPN "Connecticut"; -- from DictEng -lin connecticuter_PN = mkPN "Connecticuter" ; -lin connemara_heath_PN = mkPN "Connemara heath" ; -lin connie_PN = mkPN "Connie"; -- from DictEng -lin connochaetes_PN = mkPN "Connochaetes" ; -lin connolly_PN = mkPN "Connolly" ; -lin connors_PN = mkPN "Connors" ; -lin conocarpus_PN = mkPN "Conocarpus" ; -lin conoclinium_PN = mkPN "Conoclinium" ; -lin conodonta_PN = mkPN "Conodonta" ; -lin conopodium_PN = mkPN "Conopodium" ; -lin conospermum_PN = mkPN "Conospermum" ; -lin conoy_PN = mkPN "Conoy" ; -lin conrad_PN = mkPN "Conrad" ; -lin conradina_PN = mkPN "Conradina" ; -lin cons_PN = mkPN "Cons"; -- from DictEng -lin conservative_PN = mkPN "Conservative" ; -lin conservative_jew_PN = mkPN "Conservative Jew" ; -lin conservative_judaism_PN = mkPN "Conservative Judaism" ; -lin conservative_party_PN = mkPN "Conservative Party" ; -lin consett_PN = mkPN "Consett"; -- from DictEng -lin consolida_PN = mkPN "Consolida" ; -lin constable_PN = mkPN "Constable" ; -lin constance_PN = mkPN "Constance"; -- from DictEng -lin constantina_PN = mkPN "Constantina" ; -lin constantine_PN = mkPN "Constantine" ; -lin constantinople_PN = mkPN "Constantinople" ; -lin constitution_PN = mkPN "Constitution" ; -lin constitutional_convention_PN = mkPN "Constitutional Convention" ; -lin constitutional_union_party_PN = mkPN "Constitutional Union Party" ; -lin cont_PN = mkPN "Cont"; -- from DictEng -lin continent_PN = mkPN "Continent" ; -lin continental_A = compoundA (mkA "continental"); -- from DictEng -lin continental_army_PN = mkPN "Continental Army" ; -lin continental_congress_PN = mkPN "Continental Congress" ; -lin continuity_irish_republican_army_PN = mkPN "Continuity Irish Republican Army" ; -lin contopus_PN = mkPN "Contopus" ; -lin contra_PN = mkPN "Contra" ; -lin contras_PN = mkPN "Contras" ; -lin conuropsis_PN = mkPN "Conuropsis" ; -lin convallaria_PN = mkPN "Convallaria" ; -lin convallariaceae_PN = mkPN "Convallariaceae" ; -lin converso_PN = mkPN "Converso" ; -lin convolvulaceae_PN = mkPN "Convolvulaceae" ; -lin conwy_PN = mkPN "Conwy"; -- from DictEng -lin conyza_PN = mkPN "Conyza" ; -lin cook_PN = mkPN "Cook" ; -lin cook_strait_PN = mkPN "Cook Strait" ; -lin cooke_PN = mkPN "Cooke" ; -lin cookham_PN = mkPN "Cookham"; -- from DictEng -lin cooley's_anemia_PN = mkPN "Cooley's anemia" ; -lin coolidge_PN = mkPN "Coolidge" ; -lin cooper_PN = mkPN "Cooper" ; -lin cooper's_hawk_PN = mkPN "Cooper's hawk" ; -lin cooper_union_PN = mkPN "Cooper Union" ; -lin cooperstown_PN = mkPN "Cooperstown" ; -lin coosa_PN = mkPN "Coosa" ; -lin copehan_PN = mkPN "Copehan" ; -lin copenhagen_PN = mkPN "Copenhagen"; -- from DictEng -lin copepoda_PN = mkPN "Copepoda" ; -lin copernican_A = compoundA (mkA "copernican"); -- from DictEng -lin copernican_system_PN = mkPN "Copernican system" ; -lin copernicia_PN = mkPN "Copernicia" ; -lin copernicus_PN = mkPN "Copernicus" ; -lin copland_PN = mkPN "Copland" ; -lin copley_PN = mkPN "Copley" ; -lin coppola_PN = mkPN "Coppola" ; -lin coppull_PN = mkPN "Coppull"; -- from DictEng -lin coprinaceae_PN = mkPN "Coprinaceae" ; -lin coprinus_PN = mkPN "Coprinus" ; -lin copt_PN = mkPN "Copt" ; -lin coptic_A = mkA "Coptic" ; -lin coptic_PN = mkPN "Coptic" ; -lin coptic_church_PN = mkPN "Coptic Church" ; -lin coptis_PN = mkPN "Coptis" ; -lin coracias_PN = mkPN "Coracias" ; -lin coraciidae_PN = mkPN "Coraciidae" ; -lin coraciiformes_PN = mkPN "Coraciiformes" ; -lin coragyps_PN = mkPN "Coragyps" ; -lin coral_sea_PN = mkPN "Coral Sea" ; -lin corallorhiza_PN = mkPN "Corallorhiza" ; -lin corbett_PN = mkPN "Corbett" ; -lin corby_PN = mkPN "Corby"; -- from DictEng -lin corchorus_PN = mkPN "Corchorus" ; -lin cordaitaceae_PN = mkPN "Cordaitaceae" ; -lin cordaitales_PN = mkPN "Cordaitales" ; -lin cordaites_PN = mkPN "Cordaites" ; -lin corday_PN = mkPN "Corday" ; -lin cordia_PN = mkPN "Cordia" ; -lin cordoba_PN = mkPN "Cordoba"; -- from DictEng -lin cordylidae_PN = mkPN "Cordylidae" ; -lin cordyline_PN = mkPN "Cordyline" ; -lin cordylus_PN = mkPN "Cordylus" ; -lin coregonidae_PN = mkPN "Coregonidae" ; -lin coregonus_PN = mkPN "Coregonus" ; -lin coreidae_PN = mkPN "Coreidae" ; -lin corelli_PN = mkPN "Corelli" ; -lin coriandrum_PN = mkPN "Coriandrum" ; -lin corinth_PN = mkPN "Corinth" ; -lin corinthian_PN = mkPN "Corinthian" ; -lin corinthian_order_PN = mkPN "Corinthian order" ; -lin coriolis_effect_PN = mkPN "Coriolis effect" ; -lin coriolis_force_PN = mkPN "Coriolis force" ; -lin corixa_PN = mkPN "Corixa" ; -lin corixidae_PN = mkPN "Corixidae" ; -lin cork_PN = mkPN "Cork"; -- from DictEng -lin corn_belt_PN = mkPN "Corn Belt" ; -lin cornaceae_PN = mkPN "Cornaceae" ; -lin corneille_PN = mkPN "Corneille" ; -lin cornell_PN = mkPN "Cornell" ; -lin cornell_university_PN = mkPN "Cornell University" ; -lin cornish_A = mkA "Cornish" ; -lin cornish_PN = mkPN "Cornish" ; -lin cornish_heath_PN = mkPN "Cornish heath" ; -lin cornish_pasty_PN = mkPN "Cornish pasty" ; -lin cornishman_PN = mkPN "Cornishman" ; -lin cornishwoman_PN = mkPN "Cornishwoman" ; -lin cornus_PN = mkPN "Cornus" ; -lin cornwall_PN = mkPN "Cornwall"; -- from DictEng -lin cornwallis_PN = mkPN "Cornwallis" ; -lin corokia_PN = mkPN "Corokia" ; -lin corona_borealis_PN = mkPN "Corona Borealis" ; -lin coropuna_PN = mkPN "Coropuna" ; -lin corot_PN = mkPN "Corot" ; -lin corp_PN = mkPN "Corp"; -- from DictEng -lin corpus_christi_PN = mkPN "Corpus Christi" ; -lin correggio_PN = mkPN "Correggio" ; -lin corse_PN = mkPN "Corse" ; -lin corsham_PN = mkPN "Corsham"; -- from DictEng -lin corsican_A = mkA "Corsican" ; -lin cortaderia_PN = mkPN "Cortaderia" ; -lin cortes_PN = mkPN "Cortes" ; -lin corticium_PN = mkPN "Corticium" ; -lin cortinariaceae_PN = mkPN "Cortinariaceae" ; -lin cortinarius_PN = mkPN "Cortinarius" ; -lin cortinarius_armillatus_PN = mkPN "Cortinarius armillatus" ; -lin cortinarius_atkinsonianus_PN = mkPN "Cortinarius atkinsonianus" ; -lin cortinarius_corrugatus_PN = mkPN "Cortinarius corrugatus" ; -lin cortinarius_gentilis_PN = mkPN "Cortinarius gentilis" ; -lin cortinarius_mutabilis_PN = mkPN "Cortinarius mutabilis" ; -lin cortinarius_semisanguineus_PN = mkPN "Cortinarius semisanguineus" ; -lin cortinarius_subfoetidus_PN = mkPN "Cortinarius subfoetidus" ; -lin cortinarius_violaceus_PN = mkPN "Cortinarius violaceus" ; -lin cortland_PN = mkPN "Cortland" ; -lin corunna_PN = mkPN "Corunna"; -- from DictEng -lin corvidae_PN = mkPN "Corvidae" ; -lin corvus_PN = mkPN "Corvus" ; -lin coryanthes_PN = mkPN "Coryanthes" ; -lin corydalidae_PN = mkPN "Corydalidae" ; -lin corydalis_PN = mkPN "Corydalis" ; -lin corydalus_PN = mkPN "Corydalus" ; -lin corylaceae_PN = mkPN "Corylaceae" ; -lin corylopsis_PN = mkPN "Corylopsis" ; -lin corylus_PN = mkPN "Corylus" ; -lin corynebacteriaceae_PN = mkPN "Corynebacteriaceae" ; -lin corynebacterium_diphtheriae_PN = mkPN "Corynebacterium diphtheriae" ; -lin corypha_PN = mkPN "Corypha" ; -lin coryphaena_equisetis_PN = mkPN "Coryphaena equisetis" ; -lin coryphaena_hippurus_PN = mkPN "Coryphaena hippurus" ; -lin coryphaenidae_PN = mkPN "Coryphaenidae" ; -lin cosenza_PN = mkPN "Cosenza"; -- from DictEng -lin cosimo_de_medici_PN = mkPN "Cosimo de Medici" ; -lin cosmocampus_PN = mkPN "Cosmocampus" ; -lin cossack_PN = mkPN "Cossack" ; -lin costa_rica_PN = mkPN "Costa rica"; -- from DictEng -lin costa_rican_A = compoundA (mkA "costa rican"); -- from DictEng -lin costa_rican_PN = mkPN "Costa Rican" ; -lin costa_rican_monetary_unit_PN = mkPN "Costa Rican monetary unit" ; -lin costanoan_PN = mkPN "Costanoan" ; -lin cotacachi_PN = mkPN "Cotacachi" ; -lin cotes_de_provence_PN = mkPN "Cotes de Provence" ; -lin cotingidae_PN = mkPN "Cotingidae" ; -lin cotinus_PN = mkPN "Cotinus" ; -lin cotoneaster_dammeri_PN = mkPN "Cotoneaster dammeri" ; -lin cotoneaster_horizontalis_PN = mkPN "Cotoneaster horizontalis" ; -lin cotonou_PN = mkPN "Cotonou" ; -lin cotopaxi_PN = mkPN "Cotopaxi" ; -lin cotswold_PN = mkPN "Cotswold" ; -lin cotswolds_PN = mkPN "Cotswolds" ; -lin cottidae_PN = mkPN "Cottidae" ; -lin cottus_PN = mkPN "Cottus" ; -lin cotula_PN = mkPN "Cotula" ; -lin coturnix_PN = mkPN "Coturnix" ; -lin coue_PN = mkPN "Coue" ; -lin coulomb_PN = mkPN "Coulomb" ; -lin coulomb's_law_PN = mkPN "Coulomb's Law" ; -lin coumarouna_PN = mkPN "Coumarouna" ; -lin council_bluffs_PN = mkPN "Council Bluffs" ; -lin council_of_basel_ferrara_florence_PN = mkPN "Council of Basel Ferrara Florence" ; -lin council_of_economic_advisors_PN = mkPN "Council of Economic Advisors" ; -lin council_of_trent_PN = mkPN "Council of Trent" ; -lin council_on_environmental_policy_PN = mkPN "Council on Environmental Policy" ; -lin counsel_to_the_crown_PN = mkPN "Counsel to the Crown" ; -lin count_fleet_PN = mkPN "Count Fleet" ; -lin counter_reformation_PN = mkPN "Counter Reformation" ; -lin counterterrorist_center_PN = mkPN "Counterterrorist Center" ; -lin couperin_PN = mkPN "Couperin" ; -lin courbet_PN = mkPN "Courbet" ; -lin court_PN = mkPN "Court" ; -lin court_of_saint_james's_PN = mkPN "Court of Saint James's" ; -lin courtelle_PN = mkPN "Courtelle" ; -lin cousteau_PN = mkPN "Cousteau" ; -lin coventry_PN = mkPN "Coventry"; -- from DictEng -lin coward_PN = mkPN "Coward" ; -lin cowdenbeath_PN = mkPN "Cowdenbeath"; -- from DictEng -lin cowes_PN = mkPN "Cowes"; -- from DictEng -lin cowpens_PN = mkPN "Cowpens" ; -lin cowper_PN = mkPN "Cowper" ; -lin cowper's_gland_PN = mkPN "Cowper's gland" ; -lin cox's_orange_pippin_PN = mkPN "Cox's Orange Pippin" ; -lin cox_2_inhibitor_PN = mkPN "Cox 2 inhibitor" ; -lin cp_PN = mkPN "Cp"; -- from DictEng -lin cpl_PN = mkPN "Cpl"; -- from DictEng -lin crab_nebula_PN = mkPN "Crab Nebula" ; -lin cracidae_PN = mkPN "Cracidae" ; -lin cracow_PN = mkPN "Cracow" ; -lin cracticidae_PN = mkPN "Cracticidae" ; -lin cracticus_PN = mkPN "Cracticus" ; -lin craigie_PN = mkPN "Craigie" ; -lin crambe_PN = mkPN "Crambe" ; -lin cramlington_PN = mkPN "Cramlington"; -- from DictEng -lin crane_PN = mkPN "Crane" ; -lin crangon_PN = mkPN "Crangon" ; -lin crangonidae_PN = mkPN "Crangonidae" ; -lin craspedia_PN = mkPN "Craspedia" ; -lin crassostrea_PN = mkPN "Crassostrea" ; -lin crassula_PN = mkPN "Crassula" ; -lin crassulaceae_PN = mkPN "Crassulaceae" ; -lin crataegus_PN = mkPN "Crataegus" ; -lin crater_PN = mkPN "Crater" ; -lin crater_lake_national_park_PN = mkPN "Crater Lake National Park" ; -lin crateva_PN = mkPN "Crateva" ; -lin crawford_PN = mkPN "Crawford" ; -lin crawley_PN = mkPN "Crawley"; -- from DictEng -lin crax_PN = mkPN "Crax" ; -lin crazy_glue_PN = mkPN "Crazy Glue" ; -lin crazy_horse_PN = mkPN "Crazy Horse" ; -lin creation_PN = mkPN "Creation" ; -lin crecy_PN = mkPN "Crecy" ; -lin cree_PN = mkPN "Cree" ; -lin creek_PN = mkPN "Creek" ; -lin creek_confederacy_PN = mkPN "Creek Confederacy" ; -lin cremona_PN = mkPN "Cremona" ; -lin creole_A = compoundA (mkA "creole"); -- from DictEng -lin creole_PN = mkPN "Creole" ; -lin creon_PN = mkPN "Creon" ; -lin crepis_PN = mkPN "Crepis" ; -lin cres_PN = mkPN "Cres"; -- from DictEng -lin crescentia_PN = mkPN "Crescentia" ; -lin creswell_PN = mkPN "Creswell"; -- from DictEng -lin cretaceous_A = compoundA (mkA "cretaceous"); -- from DictEng -lin cretaceous_PN = mkPN "Cretaceous" ; -lin cretan_PN = mkPN "Cretan" ; -lin crete_PN = mkPN "Crete" ; -lin creutzfeldt_jakob_disease_PN = mkPN "Creutzfeldt Jakob disease" ; -lin crewe_PN = mkPN "Crewe"; -- from DictEng -lin crex_PN = mkPN "Crex" ; -lin cricetidae_PN = mkPN "Cricetidae" ; -lin cricetus_PN = mkPN "Cricetus" ; -lin crichton_PN = mkPN "Crichton" ; -lin crick_PN = mkPN "Crick" ; -lin crieff_PN = mkPN "Crieff"; -- from DictEng -lin crimea_PN = mkPN "Crimea" ; -lin crimea_congo_hemorrhagic_fever_PN = mkPN "Crimea Congo hemorrhagic fever" ; -lin crimean_war_PN = mkPN "Crimean War" ; -lin criminal_intelligence_services_of_canada_PN = mkPN "Criminal Intelligence Services of Canada" ; -lin criminal_investigation_command_PN = mkPN "Criminal Investigation Command" ; -lin crinoidea_PN = mkPN "Crinoidea" ; -lin crispin_PN = mkPN "Crispin" ; -lin crius_PN = mkPN "Crius" ; -lin cro_magnon_PN = mkPN "Cro magnon" ; -lin croatia_PN = mkPN "Croatia" ; -lin croatian_A = mkA "Croatian" ; -lin croatian_PN = mkPN "Croatian" ; -lin crocethia_PN = mkPN "Crocethia" ; -lin crock_pot_PN = mkPN "Crock Pot" ; -lin crockett_PN = mkPN "Crockett" ; -lin crocodylia_PN = mkPN "Crocodylia" ; -lin crocodylidae_PN = mkPN "Crocodylidae" ; -lin crocodylus_PN = mkPN "Crocodylus" ; -lin crocuta_PN = mkPN "Crocuta" ; -lin croesus_PN = mkPN "Croesus"; -- from DictEng -lin crohn_PN = mkPN "Crohn" ; -lin croix_de_guerre_PN = mkPN "Croix de Guerre" ; -lin cromer_PN = mkPN "Cromer"; -- from DictEng -lin cromwell_PN = mkPN "Cromwell" ; -lin cromwellian_A = mkA "Cromwellian" ; -lin cronartium_PN = mkPN "Cronartium" ; -lin cronus_PN = mkPN "Cronus" ; -lin cronyn_PN = mkPN "Cronyn" ; -lin crook_PN = mkPN "Crook"; -- from DictEng -lin crookes_PN = mkPN "Crookes" ; -lin crookes_radiometer_PN = mkPN "Crookes radiometer" ; -lin crookes_tube_PN = mkPN "Crookes tube" ; -lin crosby_PN = mkPN "Crosby"; -- from DictEng -lin cross_PN = mkPN "Cross" ; -lin cross_florida_waterway_PN = mkPN "Cross Florida Waterway" ; -lin crossopterygii_PN = mkPN "Crossopterygii" ; -lin crotalidae_PN = mkPN "Crotalidae" ; -lin crotalus_PN = mkPN "Crotalus" ; -lin crotaphytus_PN = mkPN "Crotaphytus" ; -lin crotophaga_PN = mkPN "Crotophaga" ; -lin crouse_PN = mkPN "Crouse" ; -lin crow_PN = mkPN "Crow" ; -lin crowborough_PN = mkPN "Crowborough"; -- from DictEng -lin crown_PN = mkPN "Crown" ; -lin crown_colony_PN = mkPN "Crown Colony" ; -lin crown_land_PN = mkPN "Crown land" ; -lin crowthorne_PN = mkPN "Crowthorne"; -- from DictEng -lin croydon_PN = mkPN "Croydon"; -- from DictEng -lin cruciferae_PN = mkPN "Cruciferae" ; -lin crucifixion_PN = mkPN "Crucifixion" ; -lin crusade_PN = mkPN "Crusade" ; -lin crusader_PN = mkPN "Crusader" ; -lin crustacea_PN = mkPN "Crustacea" ; -lin cryptacanthodes_PN = mkPN "Cryptacanthodes" ; -lin cryptobranchidae_PN = mkPN "Cryptobranchidae" ; -lin cryptobranchus_PN = mkPN "Cryptobranchus" ; -lin cryptocercidae_PN = mkPN "Cryptocercidae" ; -lin cryptocercus_PN = mkPN "Cryptocercus" ; -lin cryptogamia_PN = mkPN "Cryptogamia" ; -lin cryptogramma_PN = mkPN "Cryptogramma" ; -lin cryptogrammataceae_PN = mkPN "Cryptogrammataceae" ; -lin cryptomeria_PN = mkPN "Cryptomeria" ; -lin cryptophyceae_PN = mkPN "Cryptophyceae" ; -lin cryptophyta_PN = mkPN "Cryptophyta" ; -lin cryptoprocta_PN = mkPN "Cryptoprocta" ; -lin cryptotermes_PN = mkPN "Cryptotermes" ; -lin cryptotis_PN = mkPN "Cryptotis" ; -lin ctenizidae_PN = mkPN "Ctenizidae" ; -lin ctenocephalides_PN = mkPN "Ctenocephalides" ; -lin ctenocephalus_PN = mkPN "Ctenocephalus" ; -lin ctenophora_PN = mkPN "Ctenophora" ; -lin cub_scout_PN = mkPN "Cub Scout" ; -lin cuba_PN = mkPN "Cuba"; -- from DictEng -lin cuban_A = compoundA (mkA "cuban"); -- from DictEng -lin cuban_PN = mkPN "Cuban" ; -lin cuban_revolution_PN = mkPN "Cuban Revolution" ; -lin cuban_bast_PN = mkPN "Cuban bast" ; -lin cuban_heel_PN = mkPN "Cuban heel" ; -lin cuban_monetary_unit_PN = mkPN "Cuban monetary unit" ; -lin cuban_peso_PN = mkPN "Cuban peso" ; -lin cuculidae_PN = mkPN "Cuculidae" ; -lin cuculiformes_PN = mkPN "Cuculiformes" ; -lin cuculus_PN = mkPN "Cuculus" ; -lin cucumis_PN = mkPN "Cucumis" ; -lin cucurbita_PN = mkPN "Cucurbita" ; -lin cucurbitaceae_PN = mkPN "Cucurbitaceae" ; -lin cudworth_PN = mkPN "Cudworth"; -- from DictEng -lin cuffley_PN = mkPN "Cuffley"; -- from DictEng -lin culbertson_PN = mkPN "Culbertson" ; -lin culcheth_PN = mkPN "Culcheth"; -- from DictEng -lin culcita_PN = mkPN "Culcita" ; -lin culebra_PN = mkPN "Culebra" ; -lin culex_PN = mkPN "Culex" ; -lin culex_quinquefasciatus_PN = mkPN "Culex quinquefasciatus" ; -lin culiacan_PN = mkPN "Culiacan" ; -lin culicidae_PN = mkPN "Culicidae" ; -lin cultural_revolution_PN = mkPN "Cultural Revolution" ; -lin culver's_root_PN = mkPN "Culver's root" ; -lin cumana_PN = mkPN "Cumana" ; -lin cumberland_PN = mkPN "Cumberland"; -- from DictEng -lin cumberland_gap_PN = mkPN "Cumberland Gap" ; -lin cumberland_mountains_PN = mkPN "Cumberland Mountains" ; -lin cumbernauld_PN = mkPN "Cumbernauld"; -- from DictEng -lin cumbria_PN = mkPN "Cumbria"; -- from DictEng -lin cuminum_PN = mkPN "Cuminum" ; -lin cumnock_PN = mkPN "Cumnock"; -- from DictEng -lin cunaxa_PN = mkPN "Cunaxa" ; -lin cuniculus_PN = mkPN "Cuniculus" ; -lin cunningham_PN = mkPN "Cunningham" ; -lin cunoniaceae_PN = mkPN "Cunoniaceae" ; -lin cuon_PN = mkPN "Cuon" ; -lin cupar_PN = mkPN "Cupar"; -- from DictEng -lin cupid_PN = mkPN "Cupid"; -- from DictEng -lin cupid's_bow_PN = mkPN "Cupid's bow" ; -lin cupressaceae_PN = mkPN "Cupressaceae" ; -lin cupressus_PN = mkPN "Cupressus" ; -lin cuquenan_PN = mkPN "Cuquenan" ; -lin curacao_PN = mkPN "Curacao" ; -lin curculionidae_PN = mkPN "Curculionidae" ; -lin curcuma_PN = mkPN "Curcuma" ; -lin curia_PN = mkPN "Curia" ; -lin curie_PN = mkPN "Curie" ; -lin curie_temperature_PN = mkPN "Curie temperature" ; -lin curitiba_PN = mkPN "Curitiba"; -- from DictEng -lin curl_PN = mkPN "Curl" ; -lin currie_PN = mkPN "Currie"; -- from DictEng -lin currier_PN = mkPN "Currier" ; -lin cursorius_PN = mkPN "Cursorius" ; -lin curtis_PN = mkPN "Curtis" ; -lin curtisia_PN = mkPN "Curtisia" ; -lin curtiss_PN = mkPN "Curtiss" ; -lin cuscuta_PN = mkPN "Cuscuta" ; -lin cushing_PN = mkPN "Cushing" ; -lin cushing's_disease_PN = mkPN "Cushing's disease" ; -lin cushing's_syndrome_PN = mkPN "Cushing's syndrome" ; -lin cushitic_PN = mkPN "Cushitic" ; -lin custer_PN = mkPN "Custer" ; -lin cuterebra_PN = mkPN "Cuterebra" ; -lin cuterebridae_PN = mkPN "Cuterebridae" ; -lin cuvier_PN = mkPN "Cuvier" ; -lin cuzco_PN = mkPN "Cuzco" ; -lin cwmbran_PN = mkPN "Cwmbran"; -- from DictEng -lin cyamopsis_PN = mkPN "Cyamopsis" ; -lin cyamus_PN = mkPN "Cyamus" ; -lin cyanocitta_PN = mkPN "Cyanocitta" ; -lin cyanophyta_PN = mkPN "Cyanophyta" ; -lin cyathea_PN = mkPN "Cyathea" ; -lin cyatheaceae_PN = mkPN "Cyatheaceae" ; -lin cybele_PN = mkPN "Cybele" ; -lin cycadaceae_PN = mkPN "Cycadaceae" ; -lin cycadales_PN = mkPN "Cycadales" ; -lin cycadofilicales_PN = mkPN "Cycadofilicales" ; -lin cycadopsida_PN = mkPN "Cycadopsida" ; -lin cycas_PN = mkPN "Cycas" ; -lin cyclades_PN = mkPN "Cyclades" ; -lin cycladic_civilization_PN = mkPN "Cycladic civilization" ; -lin cycliophora_PN = mkPN "Cycliophora" ; -lin cycloloma_PN = mkPN "Cycloloma" ; -lin cyclopes_PN = mkPN "Cyclopes" ; -lin cyclophorus_PN = mkPN "Cyclophorus" ; -lin cyclops_PN = mkPN "Cyclops" ; -lin cyclopteridae_PN = mkPN "Cyclopteridae" ; -lin cyclopterus_PN = mkPN "Cyclopterus" ; -lin cyclosorus_PN = mkPN "Cyclosorus" ; -lin cyclosporeae_PN = mkPN "Cyclosporeae" ; -lin cyclostomata_PN = mkPN "Cyclostomata" ; -lin cycnoches_PN = mkPN "Cycnoches" ; -lin cydippida_PN = mkPN "Cydippida" ; -lin cydonia_PN = mkPN "Cydonia" ; -lin cygnus_PN = mkPN "Cygnus" ; -lin cymatiidae_PN = mkPN "Cymatiidae" ; -lin cynara_PN = mkPN "Cynara" ; -lin cynewulf_PN = mkPN "Cynewulf" ; -lin cynic_PN = mkPN "Cynic" ; -lin cynipidae_PN = mkPN "Cynipidae" ; -lin cynips_PN = mkPN "Cynips" ; -lin cynocephalidae_PN = mkPN "Cynocephalidae" ; -lin cynocephalus_PN = mkPN "Cynocephalus" ; -lin cynocephalus_variegatus_PN = mkPN "Cynocephalus variegatus" ; -lin cynodon_PN = mkPN "Cynodon" ; -lin cynodontia_PN = mkPN "Cynodontia" ; -lin cynoglossidae_PN = mkPN "Cynoglossidae" ; -lin cynoglossum_PN = mkPN "Cynoglossum" ; -lin cynomys_PN = mkPN "Cynomys" ; -lin cynopterus_PN = mkPN "Cynopterus" ; -lin cynopterus_sphinx_PN = mkPN "Cynopterus sphinx" ; -lin cynoscephalae_PN = mkPN "Cynoscephalae" ; -lin cynoscion_PN = mkPN "Cynoscion" ; -lin cynthia_PN = mkPN "Cynthia"; -- from DictEng -lin cyperaceae_PN = mkPN "Cyperaceae" ; -lin cyperus_PN = mkPN "Cyperus" ; -lin cyphomandra_PN = mkPN "Cyphomandra" ; -lin cypraea_PN = mkPN "Cypraea" ; -lin cypraeidae_PN = mkPN "Cypraeidae" ; -lin cyprian_A = compoundA (mkA "cyprian"); -- from DictEng -lin cyprinidae_PN = mkPN "Cyprinidae" ; -lin cypriniformes_PN = mkPN "Cypriniformes" ; -lin cyprinodontidae_PN = mkPN "Cyprinodontidae" ; -lin cyprinus_PN = mkPN "Cyprinus" ; -lin cypriot_PN = mkPN "Cypriot" ; -lin cypriot_monetary_unit_PN = mkPN "Cypriot monetary unit" ; -lin cypriot_pound_PN = mkPN "Cypriot pound" ; -lin cypripedium_PN = mkPN "Cypripedium" ; -lin cyprus_PN = mkPN "Cyprus"; -- from DictEng -lin cyrano_de_bergerac_PN = mkPN "Cyrano de Bergerac" ; -lin cyril_PN = mkPN "Cyril"; -- from DictEng -lin cyrilliaceae_PN = mkPN "Cyrilliaceae" ; -lin cyrillic_A = compoundA (mkA "cyrillic"); -- from DictEng -lin cyrillic_alphabet_PN = mkPN "Cyrillic alphabet" ; -lin cyrtomium_PN = mkPN "Cyrtomium" ; -lin cyrus_PN = mkPN "Cyrus" ; -lin cyrus_ii_PN = mkPN "Cyrus II" ; -lin cystophora_PN = mkPN "Cystophora" ; -lin cystopteris_PN = mkPN "Cystopteris" ; -lin cytisus_PN = mkPN "Cytisus" ; -lin czech_A = compoundA (mkA "czech"); -- from DictEng -lin czech_PN = mkPN "Czech" ; -lin czech_republic_PN = mkPN "Czech Republic" ; -lin czech_monetary_unit_PN = mkPN "Czech monetary unit" ; -lin czechoslovakia_PN = mkPN "Czechoslovakia"; -- from DictEng -lin czechoslovakian_PN = mkPN "Czechoslovakian" ; -lin czerny_PN = mkPN "Czerny" ; -lin czestochowa_PN = mkPN "Czestochowa" ; -lin d_PN = mkPN "D" ; -lin d'oyly_carte_PN = mkPN "D'Oyly Carte" ; -lin d_day_PN = mkPN "D - day"; -- from DictEng -lin d_layer_PN = mkPN "D layer" ; -lin dink_PN = mkPN "DINK" ; -lin dip_switch_PN = mkPN "DIP switch" ; -lin dna_fingerprint_PN = mkPN "DNA fingerprint" ; -lin dna_polymerase_PN = mkPN "DNA polymerase" ; -lin dos_PN = mkPN "DOS" ; -lin dpt_vaccine_PN = mkPN "DPT vaccine" ; -lin dphil_PN = mkPN "DPhil" ; -lin d_day_PN = mkPN "D - day"; -- from DictEng -lin daba_PN = mkPN "Daba" ; -lin daboecia_PN = mkPN "Daboecia" ; -lin dacca_PN = mkPN "Dacca"; -- from DictEng -lin dacelo_PN = mkPN "Dacelo" ; -lin dachau_PN = mkPN "Dachau" ; -lin dacron_PN = mkPN "Dacron" ; -lin dacrycarpus_PN = mkPN "Dacrycarpus" ; -lin dacrydium_PN = mkPN "Dacrydium" ; -lin dacrymyces_PN = mkPN "Dacrymyces" ; -lin dacrymycetaceae_PN = mkPN "Dacrymycetaceae" ; -lin dactylis_PN = mkPN "Dactylis" ; -lin dactyloctenium_PN = mkPN "Dactyloctenium" ; -lin dactylopiidae_PN = mkPN "Dactylopiidae" ; -lin dactylopius_PN = mkPN "Dactylopius" ; -lin dactylopteridae_PN = mkPN "Dactylopteridae" ; -lin dactylopterus_PN = mkPN "Dactylopterus" ; -lin dactylorhiza_PN = mkPN "Dactylorhiza" ; -lin dactyloscopidae_PN = mkPN "Dactyloscopidae" ; -lin daedalus_PN = mkPN "Daedalus" ; -lin dagan_PN = mkPN "Dagan" ; -lin dagda_PN = mkPN "Dagda" ; -lin dagestani_PN = mkPN "Dagestani" ; -lin dagon_PN = mkPN "Dagon" ; -lin daguerre_PN = mkPN "Daguerre" ; -lin dail_eireann_PN = mkPN "Dail Eireann" ; -lin daimler_PN = mkPN "Daimler" ; -lin daisy_PN = mkPN "Daisy"; -- from DictEng -lin dakar_PN = mkPN "Dakar"; -- from DictEng -lin dakota_PN = mkPN "Dakota"; -- from DictEng -lin dalai_lama_PN = mkPN "Dalai Lama" ; -lin dalbergia_PN = mkPN "Dalbergia" ; -lin dalea_PN = mkPN "Dalea" ; -lin dali_PN = mkPN "Dali" ; -lin dalian_PN = mkPN "Dalian" ; -lin dalkeith_PN = mkPN "Dalkeith"; -- from DictEng -lin dall_sheep_PN = mkPN "Dall sheep" ; -lin dallas_PN = mkPN "Dallas"; -- from DictEng -lin dalmatia_PN = mkPN "Dalmatia" ; -lin dalmatian_A = mkA "Dalmatian" ; -lin dalmatian_PN = mkPN "Dalmatian" ; -lin dalmatian_iris_PN = mkPN "Dalmatian iris" ; -lin dalmatian_laburnum_PN = mkPN "Dalmatian laburnum" ; -lin dalry_PN = mkPN "Dalry"; -- from DictEng -lin dalton_PN = mkPN "Dalton"; -- from DictEng -lin dalton's_law_PN = mkPN "Dalton's law" ; -lin dama_PN = mkPN "Dama" ; -lin damaliscus_PN = mkPN "Damaliscus" ; -lin damaraland_mole_rat_PN = mkPN "Damaraland mole rat" ; -lin damascene_PN = mkPN "Damascene" ; -lin damascus_PN = mkPN "Damascus"; -- from DictEng -lin damascus_steel_PN = mkPN "Damascus steel" ; -lin damkina_PN = mkPN "Damkina" ; -lin damocles_PN = mkPN "Damocles"; -- from DictEng -lin damon_PN = mkPN "Damon" ; -lin damon_and_pythias_PN = mkPN "Damon and Pythias" ; -lin dan_PN = mkPN "Dan"; -- from DictEng -lin danaea_PN = mkPN "Danaea" ; -lin danaidae_PN = mkPN "Danaidae" ; -lin danaus_PN = mkPN "Danaus" ; -lin dandie_dinmont_PN = mkPN "Dandie Dinmont" ; -lin dane_PN = mkPN "Dane" ; -lin dangla_PN = mkPN "Dangla" ; -lin daniel_PN = mkPN "Daniel"; -- from DictEng -lin danish_A = compoundA (mkA "Danish"); -- from DictEng -lin danish_PN = mkPN "Danish" ; -lin danish_blue_PN = mkPN "Danish blue" ; -lin danish_krone_PN = mkPN "Danish krone" ; -lin danish_monetary_unit_PN = mkPN "Danish monetary unit" ; -lin danny_PN = mkPN "Danny"; -- from DictEng -lin dante_PN = mkPN "Dante" ; -lin dantean_A = mkA "Dantean" ; -lin danton_PN = mkPN "Danton" ; -lin danu_PN = mkPN "Danu" ; -lin danube_PN = mkPN "Danube" ; -lin daphne_PN = mkPN "Daphne"; -- from DictEng -lin dar_al_islam_PN = mkPN "Dar al Islam" ; -lin dar_al_harb_PN = mkPN "Dar al harb" ; -lin dar_es_salaam_PN = mkPN "Dar es Salaam" ; -lin darby_PN = mkPN "Darby"; -- from DictEng -lin dard_PN = mkPN "Dard" ; -lin dardanelles_PN = mkPN "Dardanelles" ; -lin dardanus_PN = mkPN "Dardanus" ; -lin darenth_PN = mkPN "Darenth"; -- from DictEng -lin darfield_PN = mkPN "Darfield"; -- from DictEng -lin darfur_PN = mkPN "Darfur" ; -lin dari_PN = mkPN "Dari" ; -lin darius_i_PN = mkPN "Darius I" ; -lin darius_iii_PN = mkPN "Darius III" ; -lin darjeeling_PN = mkPN "Darjeeling" ; -lin darling_PN = mkPN "Darling" ; -lin darlington_PN = mkPN "Darlington"; -- from DictEng -lin darlingtonia_PN = mkPN "Darlingtonia" ; -lin darmera_PN = mkPN "Darmera" ; -lin darmstadt_PN = mkPN "Darmstadt"; -- from DictEng -lin darrow_PN = mkPN "Darrow" ; -lin darsana_PN = mkPN "Darsana" ; -lin dartford_PN = mkPN "Dartford"; -- from DictEng -lin dartmouth_PN = mkPN "Dartmouth"; -- from DictEng -lin dartmouth_college_PN = mkPN "Dartmouth College" ; -lin darwen_PN = mkPN "Darwen"; -- from DictEng -lin darwin_PN = mkPN "Darwin" ; -lin darwin_tulip_PN = mkPN "Darwin tulip" ; -lin darwinian_A = mkA "Darwinian" ; -lin darwinian_PN = mkPN "Darwinian" ; -lin darwinism_PN = mkPN "Darwinism" ; -lin das_kapital_PN = mkPN "Das Kapital" ; -lin dasht_e_kavir_PN = mkPN "Dasht e Kavir" ; -lin dasht_e_lut_PN = mkPN "Dasht e Lut" ; -lin dasyatidae_PN = mkPN "Dasyatidae" ; -lin dasyatis_PN = mkPN "Dasyatis" ; -lin dasypodidae_PN = mkPN "Dasypodidae" ; -lin dasyprocta_PN = mkPN "Dasyprocta" ; -lin dasyproctidae_PN = mkPN "Dasyproctidae" ; -lin dasypus_PN = mkPN "Dasypus" ; -lin dasyuridae_PN = mkPN "Dasyuridae" ; -lin dasyurus_PN = mkPN "Dasyurus" ; -lin datura_PN = mkPN "Datura" ; -lin daubentonia_PN = mkPN "Daubentonia" ; -lin daubentoniidae_PN = mkPN "Daubentoniidae" ; -lin daucus_PN = mkPN "Daucus" ; -lin daugavpils_PN = mkPN "Daugavpils" ; -lin daumier_PN = mkPN "Daumier" ; -lin davalliaceae_PN = mkPN "Davalliaceae" ; -lin dave_PN = mkPN "Dave"; -- from DictEng -lin davenport_PN = mkPN "Davenport" ; -lin daventry_PN = mkPN "Daventry"; -- from DictEng -lin davey_PN = mkPN "Davey"; -- from DictEng -lin david_PN = mkPN "David"; -- from DictEng -lin davidson's_penstemon_PN = mkPN "Davidson's penstemon" ; -lin daviesia_PN = mkPN "Daviesia" ; -lin davis_PN = mkPN "Davis" ; -lin davis_cup_PN = mkPN "Davis Cup" ; -lin davy_PN = mkPN "Davy" ; -lin davys_PN = mkPN "Davys" ; -lin dawes_PN = mkPN "Dawes" ; -lin dawley_PN = mkPN "Dawley"; -- from DictEng -lin dawlish_PN = mkPN "Dawlish"; -- from DictEng -lin dawn_PN = mkPN "Dawn"; -- from DictEng -lin dawson_PN = mkPN "Dawson" ; -lin day_PN = mkPN "Day" ; -lin dayan_PN = mkPN "Dayan" ; -lin dayton_PN = mkPN "Dayton"; -- from DictEng -lin daytona_beach_PN = mkPN "Daytona Beach" ; -lin demille_PN = mkPN "DeMille" ; -lin de_bakey_PN = mkPN "De Bakey" ; -lin de_forest_PN = mkPN "De Forest" ; -lin de_niro_PN = mkPN "De Niro" ; -lin de_quincey_PN = mkPN "De Quincey" ; -lin de_sica_PN = mkPN "De Sica" ; -lin dead_sea_PN = mkPN "Dead Sea" ; -lin dead_sea_scrolls_PN = mkPN "Dead Sea scrolls" ; -lin deal_PN = mkPN "Deal"; -- from DictEng -lin dean_PN = mkPN "Dean"; -- from DictEng -lin death_PN = mkPN "Death" ; -lin death_valley_PN = mkPN "Death Valley" ; -lin debbie_PN = mkPN "Debbie"; -- from DictEng -lin debby_PN = mkPN "Debby"; -- from DictEng -lin deborah_PN = mkPN "Deborah"; -- from DictEng -lin debs_PN = mkPN "Debs" ; -lin debussy_PN = mkPN "Debussy" ; -lin dec_PN = mkPN "Dec"; -- from DictEng -lin decalogue_PN = mkPN "Decalogue" ; -lin decapoda_PN = mkPN "Decapoda" ; -lin decapterus_PN = mkPN "Decapterus" ; -lin decatur_PN = mkPN "Decatur" ; -lin december_PN = mkPN "December"; -- from DictEng -lin decius_PN = mkPN "Decius" ; -lin declaration_of_independence_PN = mkPN "Declaration of Independence" ; -lin decumaria_PN = mkPN "Decumaria" ; -lin deep_south_PN = mkPN "Deep South" ; -lin deere_PN = mkPN "Deere" ; -lin defender_of_the_faith_PN = mkPN "Defender of the Faith" ; -lin defense_advanced_research_projects_agency_PN = mkPN "Defense Advanced Research Projects Agency" ; -lin defense_information_systems_agency_PN = mkPN "Defense Information Systems Agency" ; -lin defense_intelligence_agency_PN = mkPN "Defense Intelligence Agency" ; -lin defense_logistics_agency_PN = mkPN "Defense Logistics Agency" ; -lin defense_reutilization_and_marketing_service_PN = mkPN "Defense Reutilization and Marketing Service" ; -lin defense_technical_information_center_PN = mkPN "Defense Technical Information Center" ; -lin defoe_PN = mkPN "Defoe" ; -lin degas_PN = mkPN "Degas" ; -lin deimos_PN = mkPN "Deimos" ; -lin deirdre_PN = mkPN "Deirdre"; -- from DictEng -lin dekker_PN = mkPN "Dekker" ; -lin del_rio_PN = mkPN "Del Rio" ; -lin delacroix_PN = mkPN "Delacroix" ; -lin delairea_PN = mkPN "Delairea" ; -lin delaware_PN = mkPN "Delaware"; -- from DictEng -lin delaware_bay_PN = mkPN "Delaware Bay" ; -lin delaware_memorial_bridge_PN = mkPN "Delaware Memorial Bridge" ; -lin delawarean_PN = mkPN "Delawarean" ; -lin delbruck_PN = mkPN "Delbruck" ; -lin delhi_PN = mkPN "Delhi"; -- from DictEng -lin delibes_PN = mkPN "Delibes" ; -lin delichon_PN = mkPN "Delichon" ; -lin delicious_PN = mkPN "Delicious" ; -lin delilah_PN = mkPN "Delilah" ; -lin delius_PN = mkPN "Delius" ; -lin delmonico_steak_PN = mkPN "Delmonico steak" ; -lin delonix_PN = mkPN "Delonix" ; -lin delorme_PN = mkPN "Delorme" ; -lin delphi_PN = mkPN "Delphi" ; -lin delphic_A = compoundA (mkA "delphic"); -- from DictEng -lin delphinapterus_PN = mkPN "Delphinapterus" ; -lin delphinidae_PN = mkPN "Delphinidae" ; -lin delphinus_PN = mkPN "Delphinus" ; -lin dematiaceae_PN = mkPN "Dematiaceae" ; -lin demavend_PN = mkPN "Demavend" ; -lin demerara_PN = mkPN "Demerara" ; -lin demeter_PN = mkPN "Demeter" ; -lin demetrius_PN = mkPN "Demetrius" ; -lin democrat_PN = mkPN "Democrat" ; -lin democratic_A = compoundA (mkA "democratic"); -- from DictEng -lin democratic_republican_party_PN = mkPN "Democratic Republican Party" ; -lin democratic_front_for_the_liberation_of_palestine_PN = mkPN "Democratic Front for the Liberation of Palestine" ; -lin democratic_party_PN = mkPN "Democratic Party" ; -lin democritus_PN = mkPN "Democritus" ; -lin demogorgon_PN = mkPN "Demogorgon" ; -lin demosthenes_PN = mkPN "Demosthenes" ; -lin demosthenic_A = mkA "Demosthenic" ; -lin demotic_A = compoundA (mkA "demotic"); -- from DictEng -lin demotic_PN = mkPN "Demotic" ; -lin dempsey_PN = mkPN "Dempsey" ; -lin demulen_PN = mkPN "Demulen" ; -lin denain_PN = mkPN "Denain"; -- from DictEng -lin denali_fault_PN = mkPN "Denali Fault" ; -lin denali_national_park_PN = mkPN "Denali National Park" ; -lin denbigh_PN = mkPN "Denbigh"; -- from DictEng -lin dendranthema_PN = mkPN "Dendranthema" ; -lin dendroaspis_PN = mkPN "Dendroaspis" ; -lin dendrocalamus_PN = mkPN "Dendrocalamus" ; -lin dendrocolaptes_PN = mkPN "Dendrocolaptes" ; -lin dendrocolaptidae_PN = mkPN "Dendrocolaptidae" ; -lin dendroctonus_PN = mkPN "Dendroctonus" ; -lin dendroica_PN = mkPN "Dendroica" ; -lin dendrolagus_PN = mkPN "Dendrolagus" ; -lin dendromecon_PN = mkPN "Dendromecon" ; -lin deneb_PN = mkPN "Deneb" ; -lin denebola_PN = mkPN "Denebola" ; -lin deng_xiaoping_PN = mkPN "Deng Xiaoping" ; -lin denis_PN = mkPN "Denis"; -- from DictEng -lin denise_PN = mkPN "Denise"; -- from DictEng -lin denisonia_PN = mkPN "Denisonia" ; -lin denmark_PN = mkPN "Denmark"; -- from DictEng -lin dennis_PN = mkPN "Dennis"; -- from DictEng -lin dennstaedtia_PN = mkPN "Dennstaedtia" ; -lin dennstaedtiaceae_PN = mkPN "Dennstaedtiaceae" ; -lin denny_PN = mkPN "Denny"; -- from DictEng -lin dentaria_PN = mkPN "Dentaria" ; -lin denver_PN = mkPN "Denver"; -- from DictEng -lin dep_PN = mkPN "Dep"; -- from DictEng -lin depardieu_PN = mkPN "Depardieu" ; -lin deparia_PN = mkPN "Deparia" ; -lin department_of_agriculture_PN = mkPN "Department of Agriculture" ; -lin department_of_commerce_PN = mkPN "Department of Commerce" ; -lin department_of_commerce_and_labor_PN = mkPN "Department of Commerce and Labor" ; -lin department_of_defense_PN = mkPN "Department of Defense" ; -lin department_of_defense_laboratory_system_PN = mkPN "Department of Defense Laboratory System" ; -lin department_of_education_PN = mkPN "Department of Education" ; -lin department_of_energy_PN = mkPN "Department of Energy" ; -lin department_of_energy_intelligence_PN = mkPN "Department of Energy Intelligence" ; -lin department_of_health_education_and_welfare_PN = mkPN "Department of Health Education and Welfare" ; -lin department_of_health_and_human_services_PN = mkPN "Department of Health and Human Services" ; -lin department_of_homeland_security_PN = mkPN "Department of Homeland Security" ; -lin department_of_housing_and_urban_development_PN = mkPN "Department of Housing and Urban Development" ; -lin department_of_justice_PN = mkPN "Department of Justice" ; -lin department_of_justice_canada_PN = mkPN "Department of Justice Canada" ; -lin department_of_labor_PN = mkPN "Department of Labor" ; -lin department_of_state_PN = mkPN "Department of State" ; -lin department_of_transportation_PN = mkPN "Department of Transportation" ; -lin department_of_veterans_affairs_PN = mkPN "Department of Veterans Affairs" ; -lin department_of_the_interior_PN = mkPN "Department of the Interior" ; -lin department_of_the_treasury_PN = mkPN "Department of the Treasury" ; -lin depression_PN = mkPN "Depression" ; -lin dept_PN = mkPN "Dept"; -- from DictEng -lin derain_PN = mkPN "Derain" ; -lin derby_PN = mkPN "Derby"; -- from DictEng -lin derbyshire_PN = mkPN "Derbyshire"; -- from DictEng -lin dereham_PN = mkPN "Dereham"; -- from DictEng -lin derek_PN = mkPN "Derek"; -- from DictEng -lin dermacentor_PN = mkPN "Dermacentor" ; -lin dermaptera_PN = mkPN "Dermaptera" ; -lin dermatobia_PN = mkPN "Dermatobia" ; -lin dermestidae_PN = mkPN "Dermestidae" ; -lin dermochelyidae_PN = mkPN "Dermochelyidae" ; -lin dermochelys_PN = mkPN "Dermochelys" ; -lin dermoptera_PN = mkPN "Dermoptera" ; -lin derrida_PN = mkPN "Derrida" ; -lin des_PN = mkPN "Des"; -- from DictEng -lin des_moines_PN = mkPN "Des Moines" ; -lin descartes_PN = mkPN "Descartes" ; -lin descurainia_PN = mkPN "Descurainia" ; -lin desmanthus_PN = mkPN "Desmanthus" ; -lin desmidiaceae_PN = mkPN "Desmidiaceae" ; -lin desmidium_PN = mkPN "Desmidium" ; -lin desmodium_PN = mkPN "Desmodium" ; -lin desmodontidae_PN = mkPN "Desmodontidae" ; -lin desmodus_PN = mkPN "Desmodus" ; -lin desmodus_rotundus_PN = mkPN "Desmodus rotundus" ; -lin desmograthus_PN = mkPN "Desmograthus" ; -lin desmond_PN = mkPN "Desmond"; -- from DictEng -lin dessau_PN = mkPN "Dessau"; -- from DictEng -lin detroit_PN = mkPN "Detroit"; -- from DictEng -lin detroit_river_PN = mkPN "Detroit River" ; -lin deuteromycetes_PN = mkPN "Deuteromycetes" ; -lin deuteromycota_PN = mkPN "Deuteromycota" ; -lin deuteronomy_PN = mkPN "Deuteronomy" ; -lin devanagari_PN = mkPN "Devanagari" ; -lin devi_PN = mkPN "Devi" ; -lin devizes_PN = mkPN "Devizes"; -- from DictEng -lin devon_PN = mkPN "Devon"; -- from DictEng -lin devonian_PN = mkPN "Devonian" ; -lin dewar_PN = mkPN "Dewar" ; -lin dewar_flask_PN = mkPN "Dewar flask" ; -lin dewey_PN = mkPN "Dewey" ; -lin dewey_decimal_classification_PN = mkPN "Dewey decimal classification" ; -lin deweyan_A = mkA "Deweyan" ; -lin dewsbury_PN = mkPN "Dewsbury"; -- from DictEng -lin dg_PN = mkPN "Dg"; -- from DictEng -lin dhahran_PN = mkPN "Dhahran" ; -lin dhaka_PN = mkPN "Dhaka" ; -lin dharma_PN = mkPN "Dharma" ; -lin dhaulagiri_PN = mkPN "Dhaulagiri" ; -lin dhegiha_PN = mkPN "Dhegiha" ; -lin dhu'l_hijja_PN = mkPN "Dhu'l Hijja" ; -lin dhu'l_qa'dah_PN = mkPN "Dhu'l Qa'dah" ; -lin di_PN = mkPN "Di"; -- from DictEng -lin dimaggio_PN = mkPN "DiMaggio" ; -lin diacalpa_PN = mkPN "Diacalpa" ; -lin diadophis_PN = mkPN "Diadophis" ; -lin diaghilev_PN = mkPN "Diaghilev" ; -lin dialeurodes_PN = mkPN "Dialeurodes" ; -lin diana_PN = mkPN "Diana"; -- from DictEng -lin diane_de_poitiers_PN = mkPN "Diane de Poitiers" ; -lin dianthus_PN = mkPN "Dianthus" ; -lin diapensiaceae_PN = mkPN "Diapensiaceae" ; -lin diapensiales_PN = mkPN "Diapensiales" ; -lin diapsida_PN = mkPN "Diapsida" ; -lin dias_PN = mkPN "Dias" ; -lin diaspididae_PN = mkPN "Diaspididae" ; -lin diaspora_PN = mkPN "Diaspora" ; -lin dibranchiata_PN = mkPN "Dibranchiata" ; -lin dicamptodontidae_PN = mkPN "Dicamptodontidae" ; -lin dicentra_PN = mkPN "Dicentra" ; -lin diceros_PN = mkPN "Diceros" ; -lin dick_PN = mkPN "Dick"; -- from DictEng -lin dick_test_PN = mkPN "Dick test" ; -lin dickens_PN = mkPN "Dickens" ; -lin dickensian_A = mkA "Dickensian" ; -lin dickinson_PN = mkPN "Dickinson" ; -lin dicksonia_PN = mkPN "Dicksonia" ; -lin dicksoniaceae_PN = mkPN "Dicksoniaceae" ; -lin dicky_PN = mkPN "Dicky"; -- from DictEng -lin dicotyledones_PN = mkPN "Dicotyledones" ; -lin dicranaceae_PN = mkPN "Dicranaceae" ; -lin dicranales_PN = mkPN "Dicranales" ; -lin dicranopteris_PN = mkPN "Dicranopteris" ; -lin dicranum_PN = mkPN "Dicranum" ; -lin dicrostonyx_PN = mkPN "Dicrostonyx" ; -lin dictamnus_PN = mkPN "Dictamnus" ; -lin dictaphone_PN = mkPN "Dictaphone" ; -lin dictyophera_PN = mkPN "Dictyophera" ; -lin dictyoptera_PN = mkPN "Dictyoptera" ; -lin dicynodontia_PN = mkPN "Dicynodontia" ; -lin didcot_PN = mkPN "Didcot"; -- from DictEng -lin didelphidae_PN = mkPN "Didelphidae" ; -lin didelphis_PN = mkPN "Didelphis" ; -lin diderot_PN = mkPN "Diderot" ; -lin didion_PN = mkPN "Didion" ; -lin dido_PN = mkPN "Dido" ; -lin dieffenbachia_PN = mkPN "Dieffenbachia" ; -lin diegueno_PN = mkPN "Diegueno" ; -lin dien_bien_phu_PN = mkPN "Dien Bien Phu" ; -lin diervilla_PN = mkPN "Diervilla" ; -lin dies_irae_PN = mkPN "Dies Irae" ; -lin diesel_PN = mkPN "Diesel" ; -lin dietrich_PN = mkPN "Dietrich" ; -lin digitaria_PN = mkPN "Digitaria" ; -lin dijon_PN = mkPN "Dijon"; -- from DictEng -lin dilleniaceae_PN = mkPN "Dilleniaceae" ; -lin dilleniidae_PN = mkPN "Dilleniidae" ; -lin dimash_PN = mkPN "Dimash" ; -lin dimetapp_PN = mkPN "Dimetapp" ; -lin dimocarpus_PN = mkPN "Dimocarpus" ; -lin dimorphotheca_PN = mkPN "Dimorphotheca" ; -lin dinesen_PN = mkPN "Dinesen" ; -lin dingle_PN = mkPN "Dingle"; -- from DictEng -lin dinka_PN = mkPN "Dinka" ; -lin dinnington_PN = mkPN "Dinnington"; -- from DictEng -lin dinocerata_PN = mkPN "Dinocerata" ; -lin dinoflagellata_PN = mkPN "Dinoflagellata" ; -lin dinornis_PN = mkPN "Dinornis" ; -lin dinornithidae_PN = mkPN "Dinornithidae" ; -lin dinornithiformes_PN = mkPN "Dinornithiformes" ; -lin diocletian_PN = mkPN "Diocletian" ; -lin diodon_PN = mkPN "Diodon" ; -lin diodontidae_PN = mkPN "Diodontidae" ; -lin diogenes_PN = mkPN "Diogenes" ; -lin diomedeidae_PN = mkPN "Diomedeidae" ; -lin dionaea_PN = mkPN "Dionaea" ; -lin dionysia_PN = mkPN "Dionysia" ; -lin dionysian_A = mkA "Dionysian" ; -lin dionysius_PN = mkPN "Dionysius" ; -lin dionysus_PN = mkPN "Dionysus" ; -lin diophantus_PN = mkPN "Diophantus" ; -lin dior_PN = mkPN "Dior" ; -lin dioscorea_PN = mkPN "Dioscorea" ; -lin dioscoreaceae_PN = mkPN "Dioscoreaceae" ; -lin diospyros_PN = mkPN "Diospyros" ; -lin diphylla_PN = mkPN "Diphylla" ; -lin diplopoda_PN = mkPN "Diplopoda" ; -lin diplopterygium_PN = mkPN "Diplopterygium" ; -lin diplotaxis_PN = mkPN "Diplotaxis" ; -lin dipnoi_PN = mkPN "Dipnoi" ; -lin dipodidae_PN = mkPN "Dipodidae" ; -lin dipodomys_PN = mkPN "Dipodomys" ; -lin dipogon_PN = mkPN "Dipogon" ; -lin dipsacaceae_PN = mkPN "Dipsacaceae" ; -lin dipsacus_PN = mkPN "Dipsacus" ; -lin dipsosaurus_PN = mkPN "Dipsosaurus" ; -lin diptera_PN = mkPN "Diptera" ; -lin dipterocarpaceae_PN = mkPN "Dipterocarpaceae" ; -lin dipteronia_PN = mkPN "Dipteronia" ; -lin dipus_PN = mkPN "Dipus" ; -lin dipylon_A = mkA "Dipylon" ; -lin dipylon_gate_PN = mkPN "Dipylon gate" ; -lin dirac_PN = mkPN "Dirac" ; -lin dirca_PN = mkPN "Dirca" ; -lin director_of_central_intelligence_PN = mkPN "Director of Central Intelligence" ; -lin directorate_for_inter_services_intelligence_PN = mkPN "Directorate for Inter Services Intelligence" ; -lin dis_PN = mkPN "Dis" ; -lin discina_macrospora_PN = mkPN "Discina macrospora" ; -lin disciotis_venosa_PN = mkPN "Disciotis venosa" ; -lin discocephali_PN = mkPN "Discocephali" ; -lin discoglossidae_PN = mkPN "Discoglossidae" ; -lin discomycetes_PN = mkPN "Discomycetes" ; -lin disney_PN = mkPN "Disney" ; -lin disneyland_PN = mkPN "Disneyland" ; -lin disraeli_PN = mkPN "Disraeli" ; -lin distinguished_conduct_medal_PN = mkPN "Distinguished Conduct Medal" ; -lin distinguished_flying_cross_PN = mkPN "Distinguished Flying Cross" ; -lin distinguished_service_cross_PN = mkPN "Distinguished Service Cross" ; -lin distinguished_service_medal_PN = mkPN "Distinguished Service Medal" ; -lin distinguished_service_order_PN = mkPN "Distinguished Service Order" ; -lin district_of_columbia_PN = mkPN "District of Columbia" ; -lin dives_PN = mkPN "Dives"; -- from DictEng -lin divine_comedy_PN = mkPN "Divine Comedy" ; -lin divine_office_PN = mkPN "Divine Office" ; -lin dix_PN = mkPN "Dix" ; -lin dixie_cup_PN = mkPN "Dixie cup" ; -lin djanet_PN = mkPN "Djanet" ; -lin djibouti_PN = mkPN "Djibouti"; -- from DictEng -lin djibouti_franc_PN = mkPN "Djibouti franc" ; -lin djiboutian_A = compoundA (mkA "djiboutian"); -- from DictEng -lin djiboutian_PN = mkPN "Djiboutian" ; -lin dneprodzerzhinsk_PN = mkPN "Dneprodzerzhinsk" ; -lin dnepropetrovsk_PN = mkPN "Dnepropetrovsk"; -- from DictEng -lin dnieper_PN = mkPN "Dnieper" ; -lin dnipropetrovsk_PN = mkPN "Dnipropetrovsk" ; -lin doberman_PN = mkPN "Doberman" ; -lin dobrich_PN = mkPN "Dobrich" ; -lin docetism_PN = mkPN "Docetism" ; -lin doctor_of_arts_PN = mkPN "Doctor of Arts" ; -lin doctor_of_dental_medicine_PN = mkPN "Doctor of Dental Medicine" ; -lin doctor_of_dental_surgery_PN = mkPN "Doctor of Dental Surgery" ; -lin doctor_of_divinity_PN = mkPN "Doctor of Divinity" ; -lin doctor_of_education_PN = mkPN "Doctor of Education" ; -lin doctor_of_fine_arts_PN = mkPN "Doctor of Fine Arts" ; -lin doctor_of_humane_letters_PN = mkPN "Doctor of Humane Letters" ; -lin doctor_of_humanities_PN = mkPN "Doctor of Humanities" ; -lin doctor_of_laws_PN = mkPN "Doctor of Laws" ; -lin doctor_of_medicine_PN = mkPN "Doctor of Medicine" ; -lin doctor_of_music_PN = mkPN "Doctor of Music" ; -lin doctor_of_musical_arts_PN = mkPN "Doctor of Musical Arts" ; -lin doctor_of_optometry_PN = mkPN "Doctor of Optometry" ; -lin doctor_of_osteopathy_PN = mkPN "Doctor of Osteopathy" ; -lin doctor_of_philosophy_PN = mkPN "Doctor of Philosophy" ; -lin doctor_of_public_health_PN = mkPN "Doctor of Public Health" ; -lin doctor_of_sacred_theology_PN = mkPN "Doctor of Sacred Theology" ; -lin doctor_of_science_PN = mkPN "Doctor of Science" ; -lin doctor_of_theology_PN = mkPN "Doctor of Theology" ; -lin doctor_of_the_church_PN = mkPN "Doctor of the Church" ; -lin doctorow_PN = mkPN "Doctorow" ; -lin dodecanese_PN = mkPN "Dodecanese" ; -lin dodge_city_PN = mkPN "Dodge City" ; -lin dodoma_PN = mkPN "Dodoma" ; -lin dodonaea_PN = mkPN "Dodonaea" ; -lin doha_PN = mkPN "Doha" ; -lin dolby_PN = mkPN "Dolby" ; -lin dolichonyx_PN = mkPN "Dolichonyx" ; -lin dolichos_PN = mkPN "Dolichos" ; -lin dolichotis_PN = mkPN "Dolichotis" ; -lin doliolidae_PN = mkPN "Doliolidae" ; -lin dolly_PN = mkPN "Dolly"; -- from DictEng -lin dolomite_alps_PN = mkPN "Dolomite Alps" ; -lin dom_pedro_PN = mkPN "Dom Pedro" ; -lin domesday_PN = mkPN "Domesday"; -- from DictEng -lin domesday_book_PN = mkPN "Domesday Book" ; -lin domingo_PN = mkPN "Domingo" ; -lin dominic_PN = mkPN "Dominic"; -- from DictEng -lin dominica_PN = mkPN "Dominica"; -- from DictEng -lin dominican_A = compoundA (mkA "dominican"); -- from DictEng -lin dominican_PN = mkPN "Dominican" ; -lin dominican_republic_PN = mkPN "Dominican Republic" ; -lin dominican_dollar_PN = mkPN "Dominican dollar" ; -lin dominican_monetary_unit_PN = mkPN "Dominican monetary unit" ; -lin dominican_order_PN = mkPN "Dominican order" ; -lin dominican_peso_PN = mkPN "Dominican peso" ; -lin dominion_PN = mkPN "Dominion" ; -lin dominion_day_PN = mkPN "Dominion Day" ; -lin dominique_PN = mkPN "Dominique" ; -lin domino_PN = mkPN "Domino" ; -lin domitian_PN = mkPN "Domitian" ; -lin don_PN = mkPN "Don"; -- from DictEng -lin don_juan_PN = mkPN "Don Juan" ; -lin don_quixote_PN = mkPN "Don Quixote" ; -lin dona_PN = mkPN "Dona" ; -lin donald_PN = mkPN "Donald"; -- from DictEng -lin donald_duck_PN = mkPN "Donald Duck" ; -lin donar_PN = mkPN "Donar" ; -lin donatello_PN = mkPN "Donatello" ; -lin donatism_PN = mkPN "Donatism" ; -lin donatist_A = mkA "Donatist" ; -lin donatist_PN = mkPN "Donatist" ; -lin donatus_PN = mkPN "Donatus" ; -lin doncaster_PN = mkPN "Doncaster"; -- from DictEng -lin donegal_PN = mkPN "Donegal"; -- from DictEng -lin donets_basin_PN = mkPN "Donets Basin" ; -lin donetsk_PN = mkPN "Donetsk"; -- from DictEng -lin donizetti_PN = mkPN "Donizetti" ; -lin donkin_PN = mkPN "Donkin" ; -lin donne_PN = mkPN "Donne" ; -lin donnean_A = mkA "Donnean" ; -lin donner_pass_PN = mkPN "Donner Pass" ; -lin doolittle_PN = mkPN "Doolittle" ; -lin doomsday_PN = mkPN "Doomsday"; -- from DictEng -lin doppler_PN = mkPN "Doppler" ; -lin doppler_effect_PN = mkPN "Doppler effect" ; -lin doppler_radar_PN = mkPN "Doppler radar" ; -lin dora_PN = mkPN "Dora"; -- from DictEng -lin dorado_PN = mkPN "Dorado" ; -lin dorchester_PN = mkPN "Dorchester"; -- from DictEng -lin dordrecht_PN = mkPN "Dordrecht"; -- from DictEng -lin doreen_PN = mkPN "Doreen"; -- from DictEng -lin dorian_A = mkA "Dorian" ; -lin dorian_PN = mkPN "Dorian" ; -lin doric_PN = mkPN "Doric" ; -lin doric_order_PN = mkPN "Doric order" ; -lin doris_PN = mkPN "Doris"; -- from DictEng -lin dorking_PN = mkPN "Dorking"; -- from DictEng -lin dormition_PN = mkPN "Dormition" ; -lin doronicum_PN = mkPN "Doronicum" ; -lin dorotheanthus_PN = mkPN "Dorotheanthus" ; -lin dorothy_PN = mkPN "Dorothy"; -- from DictEng -lin dorset_PN = mkPN "Dorset"; -- from DictEng -lin dortmund_PN = mkPN "Dortmund"; -- from DictEng -lin dorylinae_PN = mkPN "Dorylinae" ; -lin doryopteris_PN = mkPN "Doryopteris" ; -lin dos_passos_PN = mkPN "Dos Passos" ; -lin dostoevskian_A = mkA "Dostoevskian" ; -lin dostoyevsky_PN = mkPN "Dostoyevsky" ; -lin douai_PN = mkPN "Douai"; -- from DictEng -lin douala_PN = mkPN "Douala" ; -lin douay_bible_PN = mkPN "Douay Bible" ; -lin doug_PN = mkPN "Doug"; -- from DictEng -lin douglas_PN = mkPN "Douglas"; -- from DictEng -lin douglass_PN = mkPN "Douglass" ; -lin dover_PN = mkPN "Dover"; -- from DictEng -lin dover's_powder_PN = mkPN "Dover's powder" ; -lin dovyalis_PN = mkPN "Dovyalis" ; -lin dow_jones_PN = mkPN "Dow Jones" ; -lin dowding_PN = mkPN "Dowding" ; -lin dowland_PN = mkPN "Dowland" ; -lin down_PN = mkPN "Down"; -- from DictEng -lin downing_PN = mkPN "Downing" ; -lin downing_street_PN = mkPN "Downing street"; -- from DictEng -lin dr_PN = mkPN "Dr"; -- from DictEng -lin dracenaceae_PN = mkPN "Dracenaceae" ; -lin draco_PN = mkPN "Draco" ; -lin dracocephalum_PN = mkPN "Dracocephalum" ; -lin draconian_A = compoundA (mkA "draconian"); -- from DictEng -lin dracula_PN = mkPN "Dracula" ; -lin dracunculidae_PN = mkPN "Dracunculidae" ; -lin dracunculus_PN = mkPN "Dracunculus" ; -lin dragunov_PN = mkPN "Dragunov" ; -lin drake_PN = mkPN "Drake" ; -lin drambuie_PN = mkPN "Drambuie" ; -lin dravidian_PN = mkPN "Dravidian" ; -lin drayton_PN = mkPN "Drayton"; -- from DictEng -lin dreiser_PN = mkPN "Dreiser" ; -lin dreissena_PN = mkPN "Dreissena" ; -lin drepanididae_PN = mkPN "Drepanididae" ; -lin drepanis_PN = mkPN "Drepanis" ; -lin dresden_PN = mkPN "Dresden"; -- from DictEng -lin drew_PN = mkPN "Drew" ; -lin dreyfus_PN = mkPN "Dreyfus" ; -lin driffield_PN = mkPN "Driffield"; -- from DictEng -lin drimys_PN = mkPN "Drimys" ; -lin drixoral_PN = mkPN "Drixoral" ; -lin drogheda_PN = mkPN "Drogheda"; -- from DictEng -lin droitwich_PN = mkPN "Droitwich"; -- from DictEng -lin dromaeosauridae_PN = mkPN "Dromaeosauridae" ; -lin dromaius_PN = mkPN "Dromaius" ; -lin dronfield_PN = mkPN "Dronfield"; -- from DictEng -lin drosera_PN = mkPN "Drosera" ; -lin droseraceae_PN = mkPN "Droseraceae" ; -lin drosophilidae_PN = mkPN "Drosophilidae" ; -lin drosophyllum_PN = mkPN "Drosophyllum" ; -lin drosophyllum_lusitanicum_PN = mkPN "Drosophyllum lusitanicum" ; -lin drug_enforcement_administration_PN = mkPN "Drug Enforcement Administration" ; -lin druid_PN = mkPN "Druid" ; -lin druze_PN = mkPN "Druze" ; -lin dryadella_PN = mkPN "Dryadella" ; -lin dryas_PN = mkPN "Dryas" ; -lin dryden_PN = mkPN "Dryden" ; -lin drymarchon_PN = mkPN "Drymarchon" ; -lin drymoglossum_PN = mkPN "Drymoglossum" ; -lin drynaria_PN = mkPN "Drynaria" ; -lin dryopithecus_PN = mkPN "Dryopithecus" ; -lin dryopteridaceae_PN = mkPN "Dryopteridaceae" ; -lin dryopteris_PN = mkPN "Dryopteris" ; -lin du_barry_PN = mkPN "Du Barry" ; -lin du_bois_PN = mkPN "Du Bois" ; -lin dubai_PN = mkPN "Dubai" ; -lin dublin_PN = mkPN "Dublin"; -- from DictEng -lin dubliner_PN = mkPN "Dubliner" ; -lin dubonnet_PN = mkPN "Dubonnet" ; -lin dubrovnik_PN = mkPN "Dubrovnik" ; -lin dubuque_PN = mkPN "Dubuque" ; -lin duchamp_PN = mkPN "Duchamp" ; -lin duchenne's_muscular_dystrophy_PN = mkPN "Duchenne's muscular dystrophy" ; -lin dudley_PN = mkPN "Dudley"; -- from DictEng -lin dufy_PN = mkPN "Dufy" ; -lin dugongidae_PN = mkPN "Dugongidae" ; -lin duisburg_PN = mkPN "Duisburg"; -- from DictEng -lin dukas_PN = mkPN "Dukas" ; -lin duke_university_PN = mkPN "Duke University" ; -lin dukinfield_PN = mkPN "Dukinfield"; -- from DictEng -lin dulles_PN = mkPN "Dulles" ; -lin duluth_PN = mkPN "Duluth" ; -lin duma_PN = mkPN "Duma" ; -lin dumas_PN = mkPN "Dumas" ; -lin dumbarton_PN = mkPN "Dumbarton"; -- from DictEng -lin dumetella_PN = mkPN "Dumetella" ; -lin dumfries_PN = mkPN "Dumfries"; -- from DictEng -lin dumpster_PN = mkPN "Dumpster" ; -lin dumpy_level_PN = mkPN "Dumpy level" ; -lin dumuzi_PN = mkPN "Dumuzi" ; -lin dun_laoghaire_PN = mkPN "Dun laoghaire"; -- from DictEng -lin duncan_PN = mkPN "Duncan"; -- from DictEng -lin dundalk_PN = mkPN "Dundalk"; -- from DictEng -lin dundee_PN = mkPN "Dundee"; -- from DictEng -lin dunfermline_PN = mkPN "Dunfermline"; -- from DictEng -lin dungeness_crab_PN = mkPN "Dungeness crab" ; -lin dunker_PN = mkPN "Dunker" ; -lin dunkirk_PN = mkPN "Dunkirk"; -- from DictEng -lin dunoon_PN = mkPN "Dunoon"; -- from DictEng -lin duns_scotus_PN = mkPN "Duns Scotus" ; -lin dunstable_PN = mkPN "Dunstable"; -- from DictEng -lin dupl_PN = mkPN "Dupl"; -- from DictEng -lin duplicidentata_PN = mkPN "Duplicidentata" ; -lin duralumin_PN = mkPN "Duralumin" ; -lin durango_PN = mkPN "Durango" ; -lin durant_PN = mkPN "Durant" ; -lin durante_PN = mkPN "Durante" ; -lin durban_PN = mkPN "Durban"; -- from DictEng -lin durer_PN = mkPN "Durer" ; -lin durga_PN = mkPN "Durga" ; -lin durham_PN = mkPN "Durham"; -- from DictEng -lin durio_PN = mkPN "Durio" ; -lin durkheim_PN = mkPN "Durkheim" ; -lin durrell_PN = mkPN "Durrell" ; -lin durres_PN = mkPN "Durres" ; -lin durrington_PN = mkPN "Durrington"; -- from DictEng -lin dursley_PN = mkPN "Dursley"; -- from DictEng -lin duse_PN = mkPN "Duse" ; -lin dushanbe_PN = mkPN "Dushanbe" ; -lin dusicyon_PN = mkPN "Dusicyon" ; -lin dusseldorf_PN = mkPN "Dusseldorf"; -- from DictEng -lin dutch_A = compoundA (mkA "Dutch"); -- from DictEng -lin dutch_PN = mkPN "Dutch" ; -lin dutch_elm_beetle_PN = mkPN "Dutch elm beetle" ; -lin dutch_processed_cocoa_PN = mkPN "Dutch processed cocoa" ; -lin dutch_courage_PN = mkPN "Dutch courage" ; -lin dutch_door_PN = mkPN "Dutch door" ; -lin dutch_elm_PN = mkPN "Dutch elm" ; -lin dutch_elm_disease_PN = mkPN "Dutch elm disease" ; -lin dutch_elm_fungus_PN = mkPN "Dutch elm fungus" ; -lin dutch_iris_PN = mkPN "Dutch iris" ; -lin dutch_monetary_unit_PN = mkPN "Dutch monetary unit" ; -lin dutch_oven_PN = mkPN "Dutch oven" ; -lin dutch_treat_PN = mkPN "Dutch treat" ; -lin dutch_uncle_PN = mkPN "Dutch uncle" ; -lin dutchman's_pipe_PN = mkPN "Dutchman's pipe" ; -lin dutchman's_breeches_PN = mkPN "Dutchman's breeches" ; -lin duvalier_PN = mkPN "Duvalier" ; -lin dvorak_PN = mkPN "Dvorak" ; -lin dyaus_PN = mkPN "Dyaus" ; -lin dyfed_PN = mkPN "Dyfed"; -- from DictEng -lin dyirbal_PN = mkPN "Dyirbal" ; -lin dylan_PN = mkPN "Dylan" ; -lin dysdercus_PN = mkPN "Dysdercus" ; -lin dytiscidae_PN = mkPN "Dytiscidae" ; -lin e_PN = mkPN "E" ; -lin ebitda_PN = mkPN "EBITDA" ; -lin ent_man_PN = mkPN "ENT man" ; -lin ea_PN = mkPN "Ea" ; -lin eacles_PN = mkPN "Eacles" ; -lin eagle_scout_PN = mkPN "Eagle Scout" ; -lin eaglescliffe_PN = mkPN "Eaglescliffe"; -- from DictEng -lin ealing_PN = mkPN "Ealing"; -- from DictEng -lin eames_PN = mkPN "Eames" ; -lin eames_chair_PN = mkPN "Eames chair" ; -lin earhart_PN = mkPN "Earhart" ; -lin earl_marshal_PN = mkPN "Earl Marshal" ; -lin earl_shilton_PN = mkPN "Earl shilton"; -- from DictEng -lin earth_PN = mkPN "Earth" ; -lin earth_received_time_PN = mkPN "Earth received time" ; -lin easington_PN = mkPN "Easington"; -- from DictEng -lin east_PN = mkPN "East" ; -lin east_sider_PN = mkPN "East sider" ; -lin east_africa_PN = mkPN "East Africa" ; -lin east_african_A = compoundA (mkA "East African") ; -lin east_anglia_PN = mkPN "East Anglia" ; -lin east_chadic_PN = mkPN "East Chadic" ; -lin east_china_sea_PN = mkPN "East China Sea" ; -lin east_coast_PN = mkPN "East Coast" ; -lin east_german_A = compoundA (mkA "East German") ; -lin east_german_PN = mkPN "East German" ; -lin east_germanic_PN = mkPN "East Germanic" ; -lin east_germany_PN = mkPN "East Germany" ; -lin east_india_company_PN = mkPN "East India Company" ; -lin east_india_kino_PN = mkPN "East India kino" ; -lin east_indian_A = compoundA (mkA "East Indian") ; -lin east_indian_PN = mkPN "East Indian" ; -lin east_malaysia_PN = mkPN "East Malaysia" ; -lin east_midland_PN = mkPN "East Midland" ; -lin east_river_PN = mkPN "East River" ; -lin east_saint_louis_PN = mkPN "East Saint Louis" ; -lin east_sussex_PN = mkPN "East Sussex" ; -lin east_timor_PN = mkPN "East Timor" ; -lin east_turkistan_islamic_movement_PN = mkPN "East Turkistan Islamic Movement" ; -lin east_dereham_PN = mkPN "East dereham"; -- from DictEng -lin east_grinstead_PN = mkPN "East grinstead"; -- from DictEng -lin east_kilbride_PN = mkPN "East kilbride"; -- from DictEng -lin east_retford_PN = mkPN "East retford"; -- from DictEng -lin eastbourne_PN = mkPN "Eastbourne"; -- from DictEng -lin easter_PN = mkPN "Easter"; -- from DictEng -lin easter_sunday_PN = mkPN "Easter Sunday" ; -lin easter_bunny_PN = mkPN "Easter bunny" ; -lin easter_cactus_PN = mkPN "Easter cactus" ; -lin easter_card_PN = mkPN "Easter card" ; -lin easter_daisy_PN = mkPN "Easter daisy" ; -lin easter_egg_PN = mkPN "Easter egg" ; -lin easter_lily_PN = mkPN "Easter lily" ; -lin eastern_catholicism_PN = mkPN "Eastern Catholicism" ; -lin eastern_church_PN = mkPN "Eastern Church" ; -lin eastern_time_PN = mkPN "Eastern Time" ; -lin eastern_cottonwood_PN = mkPN "Eastern cottonwood" ; -lin eastern_hop_hornbeam_PN = mkPN "Eastern hop hornbeam" ; -lin eastern_silvery_aster_PN = mkPN "Eastern silvery aster" ; -lin eastertide_PN = mkPN "Eastertide" ; -lin eastleigh_PN = mkPN "Eastleigh"; -- from DictEng -lin eastman_PN = mkPN "Eastman" ; -lin eau_claire_PN = mkPN "Eau Claire" ; -lin ebbw_vale_PN = mkPN "Ebbw vale"; -- from DictEng -lin ebenaceae_PN = mkPN "Ebenaceae" ; -lin ebenales_PN = mkPN "Ebenales" ; -lin ebionite_A = mkA "Ebionite" ; -lin ebola_hemorrhagic_fever_PN = mkPN "Ebola hemorrhagic fever" ; -lin ebola_virus_PN = mkPN "Ebola virus" ; -lin ebro_PN = mkPN "Ebro" ; -lin eburophyton_PN = mkPN "Eburophyton" ; -lin ecballium_PN = mkPN "Ecballium" ; -lin eccles_PN = mkPN "Eccles"; -- from DictEng -lin eccles_cake_PN = mkPN "Eccles cake" ; -lin ecclesiastes_PN = mkPN "Ecclesiastes" ; -lin echeneididae_PN = mkPN "Echeneididae" ; -lin echeneis_PN = mkPN "Echeneis" ; -lin echidnophaga_PN = mkPN "Echidnophaga" ; -lin echinacea_PN = mkPN "Echinacea" ; -lin echinocereus_PN = mkPN "Echinocereus" ; -lin echinochloa_PN = mkPN "Echinochloa" ; -lin echinodermata_PN = mkPN "Echinodermata" ; -lin echinoidea_PN = mkPN "Echinoidea" ; -lin echinops_PN = mkPN "Echinops" ; -lin echium_PN = mkPN "Echium" ; -lin echo_PN = mkPN "Echo" ; -lin eck_PN = mkPN "Eck" ; -lin eckhart_PN = mkPN "Eckhart" ; -lin economic_commission_for_africa_PN = mkPN "Economic Commission for Africa" ; -lin economic_commission_for_asia_and_the_far_east_PN = mkPN "Economic Commission for Asia and the Far East" ; -lin economic_commission_for_europe_PN = mkPN "Economic Commission for Europe" ; -lin economic_commission_for_latin_america_PN = mkPN "Economic Commission for Latin America" ; -lin economic_and_social_council_PN = mkPN "Economic and Social Council" ; -lin economic_and_social_council_commission_PN = mkPN "Economic and Social Council commission" ; -lin ectopistes_PN = mkPN "Ectopistes" ; -lin ectoprocta_PN = mkPN "Ectoprocta" ; -lin ecuador_PN = mkPN "Ecuador"; -- from DictEng -lin ecuadoran_monetary_unit_PN = mkPN "Ecuadoran monetary unit" ; -lin ecuadorian_A = compoundA (mkA "ecuadorian"); -- from DictEng -lin ecuadorian_PN = mkPN "Ecuadorian" ; -lin ed_PN = mkPN "Ed"; -- from DictEng -lin edam_PN = mkPN "Edam" ; -lin edaphosauridae_PN = mkPN "Edaphosauridae" ; -lin edda_PN = mkPN "Edda" ; -lin eddie_PN = mkPN "Eddie"; -- from DictEng -lin eddington_PN = mkPN "Eddington" ; -lin eddy_PN = mkPN "Eddy"; -- from DictEng -lin eden_PN = mkPN "Eden"; -- from DictEng -lin edenbridge_PN = mkPN "Edenbridge"; -- from DictEng -lin edentata_PN = mkPN "Edentata" ; -lin ederle_PN = mkPN "Ederle" ; -lin edgar_PN = mkPN "Edgar"; -- from DictEng -lin edinburgh_PN = mkPN "Edinburgh"; -- from DictEng -lin edirne_PN = mkPN "Edirne" ; -lin edison_PN = mkPN "Edison" ; -lin edith_PN = mkPN "Edith"; -- from DictEng -lin edmonton_PN = mkPN "Edmonton" ; -lin edmontonia_PN = mkPN "Edmontonia" ; -lin edmund_PN = mkPN "Edmund"; -- from DictEng -lin edmund_i_PN = mkPN "Edmund I" ; -lin edmund_ii_PN = mkPN "Edmund II" ; -lin edo_PN = mkPN "Edo" ; -lin edward_PN = mkPN "Edward"; -- from DictEng -lin edward_the_confessor_PN = mkPN "Edward the Confessor" ; -lin edward_the_elder_PN = mkPN "Edward the Elder" ; -lin edward_the_martyr_PN = mkPN "Edward the Martyr" ; -lin edwardian_A = compoundA (mkA "edwardian"); -- from DictEng -lin edwardian_PN = mkPN "Edwardian" ; -lin edwards_PN = mkPN "Edwards" ; -lin edwin_PN = mkPN "Edwin" ; -lin edwy_PN = mkPN "Edwy" ; -lin eelam_PN = mkPN "Eelam" ; -lin eg_PN = mkPN "Eg"; -- from DictEng -lin egadi_islands_PN = mkPN "Egadi Islands" ; -lin egbert_PN = mkPN "Egbert" ; -lin egeria_PN = mkPN "Egeria" ; -lin eglevsky_PN = mkPN "Eglevsky" ; -lin egremont_PN = mkPN "Egremont"; -- from DictEng -lin egretta_PN = mkPN "Egretta" ; -lin egypt_PN = mkPN "Egypt"; -- from DictEng -lin egyptian_A = compoundA (mkA "egyptian"); -- from DictEng -lin egyptian_PN = mkPN "Egyptian" ; -lin egyptian_empire_PN = mkPN "Egyptian Empire" ; -lin egyptian_cat_PN = mkPN "Egyptian cat" ; -lin egyptian_cotton_PN = mkPN "Egyptian cotton" ; -lin egyptian_deity_PN = mkPN "Egyptian deity" ; -lin egyptian_grass_PN = mkPN "Egyptian grass" ; -lin egyptian_henbane_PN = mkPN "Egyptian henbane" ; -lin egyptian_monetary_unit_PN = mkPN "Egyptian monetary unit" ; -lin egyptian_pound_PN = mkPN "Egyptian pound" ; -lin egyptian_vulture_PN = mkPN "Egyptian vulture" ; -lin egyptologist_PN = mkPN "Egyptologist" ; -lin egyptology_PN = mkPN "Egyptology" ; -lin ehadhamen_PN = mkPN "Ehadhamen" ; -lin ehrenberg_PN = mkPN "Ehrenberg" ; -lin ehrlich_PN = mkPN "Ehrlich" ; -lin eiche_PN = mkPN "Eiche"; -- from DictEng -lin eichhornia_PN = mkPN "Eichhornia" ; -lin eichmann_PN = mkPN "Eichmann" ; -lin eiffel_PN = mkPN "Eiffel" ; -lin eiffel_tower_PN = mkPN "Eiffel Tower" ; -lin eigen_PN = mkPN "Eigen" ; -lin eighteenth_amendment_PN = mkPN "Eighteenth Amendment" ; -lin eijkman_PN = mkPN "Eijkman" ; -lin eileen_PN = mkPN "Eileen"; -- from DictEng -lin eimeriidae_PN = mkPN "Eimeriidae" ; -lin eindhoven_PN = mkPN "Eindhoven"; -- from DictEng -lin einstein_PN = mkPN "Einstein" ; -lin einsteinian_A = mkA "Einsteinian" ; -lin einthoven_PN = mkPN "Einthoven" ; -lin eira_PN = mkPN "Eira" ; -lin eisenhower_PN = mkPN "Eisenhower" ; -lin eisenstaedt_PN = mkPN "Eisenstaedt" ; -lin eisenstein_PN = mkPN "Eisenstein" ; -lin ekman_PN = mkPN "Ekman" ; -lin el_aaium_PN = mkPN "El Aaium" ; -lin el_alamein_PN = mkPN "El Alamein" ; -lin el_cid_PN = mkPN "El Cid" ; -lin el_dorado_PN = mkPN "El Dorado" ; -lin el_greco_PN = mkPN "El Greco" ; -lin el_libertador_PN = mkPN "El Libertador" ; -lin el_misti_PN = mkPN "El Misti" ; -lin el_muerto_PN = mkPN "El Muerto" ; -lin el_nino_PN = mkPN "El Nino" ; -lin el_nino_southern_oscillation_PN = mkPN "El Nino southern oscillation" ; -lin el_paso_PN = mkPN "El Paso" ; -lin el_salvador_PN = mkPN "El salvador"; -- from DictEng -lin el_salvadoran_monetary_unit_PN = mkPN "El Salvadoran monetary unit" ; -lin elaeagnaceae_PN = mkPN "Elaeagnaceae" ; -lin elaeagnus_PN = mkPN "Elaeagnus" ; -lin elaeis_PN = mkPN "Elaeis" ; -lin elaeocarpaceae_PN = mkPN "Elaeocarpaceae" ; -lin elaeocarpus_PN = mkPN "Elaeocarpus" ; -lin elagatis_PN = mkPN "Elagatis" ; -lin elaine_PN = mkPN "Elaine"; -- from DictEng -lin elam_PN = mkPN "Elam" ; -lin elamite_PN = mkPN "Elamite" ; -lin elamitic_PN = mkPN "Elamitic" ; -lin elanoides_PN = mkPN "Elanoides" ; -lin elanus_PN = mkPN "Elanus" ; -lin elaphe_PN = mkPN "Elaphe" ; -lin elaphurus_PN = mkPN "Elaphurus" ; -lin elapidae_PN = mkPN "Elapidae" ; -lin elasmobranchii_PN = mkPN "Elasmobranchii" ; -lin elastoplast_PN = mkPN "Elastoplast" ; -lin elateridae_PN = mkPN "Elateridae" ; -lin elbe_PN = mkPN "Elbe" ; -lin elderslie_PN = mkPN "Elderslie"; -- from DictEng -lin eleanor_PN = mkPN "Eleanor"; -- from DictEng -lin eleanor_of_aquitaine_PN = mkPN "Eleanor of Aquitaine" ; -lin elector_PN = mkPN "Elector" ; -lin electra_PN = mkPN "Electra" ; -lin electra_complex_PN = mkPN "Electra complex" ; -lin electrophoridae_PN = mkPN "Electrophoridae" ; -lin electrophorus_PN = mkPN "Electrophorus" ; -lin eleocharis_PN = mkPN "Eleocharis" ; -lin eleotridae_PN = mkPN "Eleotridae" ; -lin elephantidae_PN = mkPN "Elephantidae" ; -lin elephantopus_PN = mkPN "Elephantopus" ; -lin elephas_PN = mkPN "Elephas" ; -lin elettaria_PN = mkPN "Elettaria" ; -lin eleusine_PN = mkPN "Eleusine" ; -lin eleutherodactylus_PN = mkPN "Eleutherodactylus" ; -lin elgar_PN = mkPN "Elgar" ; -lin elgin_PN = mkPN "Elgin"; -- from DictEng -lin elgin_marbles_PN = mkPN "Elgin Marbles" ; -lin elijah_PN = mkPN "Elijah" ; -lin eliomys_PN = mkPN "Eliomys" ; -lin eliot_PN = mkPN "Eliot" ; -lin eliza_PN = mkPN "Eliza"; -- from DictEng -lin elizabeth_PN = mkPN "Elizabeth"; -- from DictEng -lin elizabeth_river_PN = mkPN "Elizabeth River" ; -lin elizabethan_A = compoundA (mkA "elizabethan"); -- from DictEng -lin elizabethan_PN = mkPN "Elizabethan" ; -lin elizabethan_age_PN = mkPN "Elizabethan age" ; -lin elland_PN = mkPN "Elland"; -- from DictEng -lin ellen_PN = mkPN "Ellen"; -- from DictEng -lin ellesmere_PN = mkPN "Ellesmere"; -- from DictEng -lin ellesmere_port_PN = mkPN "Ellesmere port"; -- from DictEng -lin elli_PN = mkPN "Elli" ; -lin ellie_PN = mkPN "Ellie"; -- from DictEng -lin ellington_PN = mkPN "Ellington" ; -lin elliott's_goldenrod_PN = mkPN "Elliott's goldenrod" ; -lin ellis_island_PN = mkPN "Ellis Island" ; -lin ellison_PN = mkPN "Ellison" ; -lin elloughton_PN = mkPN "Elloughton"; -- from DictEng -lin ellsworth_PN = mkPN "Ellsworth" ; -lin elmont_PN = mkPN "Elmont" ; -lin elodea_PN = mkPN "Elodea" ; -lin elopidae_PN = mkPN "Elopidae" ; -lin elops_PN = mkPN "Elops" ; -lin elsie_PN = mkPN "Elsie"; -- from DictEng -lin elstree_PN = mkPN "Elstree"; -- from DictEng -lin elul_PN = mkPN "Elul" ; -lin ely_PN = mkPN "Ely"; -- from DictEng -lin elymus_PN = mkPN "Elymus" ; -lin elysium_PN = mkPN "Elysium"; -- from DictEng -lin ember_day_PN = mkPN "Ember Day" ; -lin emberiza_PN = mkPN "Emberiza" ; -lin emberizidae_PN = mkPN "Emberizidae" ; -lin embioptera_PN = mkPN "Embioptera" ; -lin embiotocidae_PN = mkPN "Embiotocidae" ; -lin embothrium_PN = mkPN "Embothrium" ; -lin emergency_alert_system_PN = mkPN "Emergency Alert System" ; -lin emerson_PN = mkPN "Emerson" ; -lin emetrol_PN = mkPN "Emetrol" ; -lin emile_PN = mkPN "Emile" ; -lin emilia_PN = mkPN "Emilia" ; -lin emilia_romagna_PN = mkPN "Emilia Romagna" ; -lin emily_PN = mkPN "Emily"; -- from DictEng -lin emma_PN = mkPN "Emma"; -- from DictEng -lin emmanthe_PN = mkPN "Emmanthe" ; -lin emmenthal_PN = mkPN "Emmenthal" ; -lin emmy_PN = mkPN "Emmy" ; -lin empedocles_PN = mkPN "Empedocles" ; -lin empetraceae_PN = mkPN "Empetraceae" ; -lin empetrum_PN = mkPN "Empetrum" ; -lin empire_PN = mkPN "Empire" ; -lin empire_state_building_PN = mkPN "Empire State Building" ; -lin emsworth_PN = mkPN "Emsworth"; -- from DictEng -lin emydidae_PN = mkPN "Emydidae" ; -lin enc_PN = mkPN "Enc"; -- from DictEng -lin encelia_PN = mkPN "Encelia" ; -lin enceliopsis_PN = mkPN "Enceliopsis" ; -lin encyclia_PN = mkPN "Encyclia" ; -lin endamoeba_PN = mkPN "Endamoeba" ; -lin endamoeba_histolytica_PN = mkPN "Endamoeba histolytica" ; -lin endamoebidae_PN = mkPN "Endamoebidae" ; -lin endecott_PN = mkPN "Endecott" ; -lin enderby_land_PN = mkPN "Enderby Land" ; -lin endomycetales_PN = mkPN "Endomycetales" ; -lin enesco_PN = mkPN "Enesco" ; -lin enets_PN = mkPN "Enets" ; -lin enfield_PN = mkPN "Enfield"; -- from DictEng -lin engelmann_spruce_PN = mkPN "Engelmann spruce" ; -lin engels_PN = mkPN "Engels" ; -lin england_PN = mkPN "England"; -- from DictEng -lin english_A = compoundA (mkA "English"); -- from DictEng -lin english_PN = mkPN "English" ; -lin english_speaking_A = compoundA (mkA "English speaking") ; -lin english_channel_PN = mkPN "English Channel" ; -lin english_civil_war_PN = mkPN "English Civil War" ; -lin english_revolution_PN = mkPN "English Revolution" ; -lin english_department_PN = mkPN "English department" ; -lin english_elm_PN = mkPN "English elm" ; -lin english_foxhound_PN = mkPN "English foxhound" ; -lin english_hawthorn_PN = mkPN "English hawthorn" ; -lin english_horn_PN = mkPN "English horn" ; -lin english_iris_PN = mkPN "English iris" ; -lin english_lady_crab_PN = mkPN "English lady crab" ; -lin english_lavender_PN = mkPN "English lavender" ; -lin english_muffin_PN = mkPN "English muffin" ; -lin english_person_PN = mkPN "English person" ; -lin english_plantain_PN = mkPN "English plantain" ; -lin english_primrose_PN = mkPN "English primrose" ; -lin english_saddle_PN = mkPN "English saddle" ; -lin english_setter_PN = mkPN "English setter" ; -lin english_sole_PN = mkPN "English sole" ; -lin english_sparrow_PN = mkPN "English sparrow" ; -lin english_springer_PN = mkPN "English springer" ; -lin english_teacher_PN = mkPN "English teacher" ; -lin english_toy_spaniel_PN = mkPN "English toy spaniel" ; -lin english_walnut_PN = mkPN "English walnut" ; -lin englishman_PN = mkPN "Englishman" ; -lin englishwoman_PN = mkPN "Englishwoman" ; -lin engraulidae_PN = mkPN "Engraulidae" ; -lin engraulis_PN = mkPN "Engraulis" ; -lin enhydra_PN = mkPN "Enhydra" ; -lin enid_PN = mkPN "Enid" ; -lin eniwetok_PN = mkPN "Eniwetok" ; -lin enki_PN = mkPN "Enki" ; -lin enkidu_PN = mkPN "Enkidu" ; -lin enlightenment_PN = mkPN "Enlightenment" ; -lin enlil_PN = mkPN "Enlil" ; -lin enoch_PN = mkPN "Enoch"; -- from DictEng -lin enovid_PN = mkPN "Enovid" ; -lin enschede_PN = mkPN "Enschede"; -- from DictEng -lin ensete_PN = mkPN "Ensete" ; -lin ensis_PN = mkPN "Ensis" ; -lin entandrophragma_PN = mkPN "Entandrophragma" ; -lin entebbe_PN = mkPN "Entebbe" ; -lin entelea_PN = mkPN "Entelea" ; -lin enterobacteriaceae_PN = mkPN "Enterobacteriaceae" ; -lin enterobius_PN = mkPN "Enterobius" ; -lin enterolobium_PN = mkPN "Enterolobium" ; -lin entlebucher_PN = mkPN "EntleBucher" ; -lin entoloma_PN = mkPN "Entoloma" ; -lin entoloma_aprile_PN = mkPN "Entoloma aprile" ; -lin entoloma_lividum_PN = mkPN "Entoloma lividum" ; -lin entolomataceae_PN = mkPN "Entolomataceae" ; -lin entomophthora_PN = mkPN "Entomophthora" ; -lin entomophthoraceae_PN = mkPN "Entomophthoraceae" ; -lin entomophthorales_PN = mkPN "Entomophthorales" ; -lin entomostraca_PN = mkPN "Entomostraca" ; -lin entoprocta_PN = mkPN "Entoprocta" ; -lin environmental_protection_agency_PN = mkPN "Environmental Protection Agency" ; -lin eocene_PN = mkPN "Eocene" ; -lin eolithic_age_PN = mkPN "Eolithic Age" ; -lin eos_PN = mkPN "Eos" ; -lin epacridaceae_PN = mkPN "Epacridaceae" ; -lin ephedraceae_PN = mkPN "Ephedraceae" ; -lin ephemeridae_PN = mkPN "Ephemeridae" ; -lin ephemeroptera_PN = mkPN "Ephemeroptera" ; -lin ephesian_A = mkA "Ephesian" ; -lin ephesian_PN = mkPN "Ephesian" ; -lin ephestia_PN = mkPN "Ephestia" ; -lin ephesus_PN = mkPN "Ephesus" ; -lin ephippidae_PN = mkPN "Ephippidae" ; -lin ephippiorhynchus_PN = mkPN "Ephippiorhynchus" ; -lin epictetus_PN = mkPN "Epictetus" ; -lin epicurean_A = compoundA (mkA "epicurean"); -- from DictEng -lin epicurus_PN = mkPN "Epicurus" ; -lin epidendrum_PN = mkPN "Epidendrum" ; -lin epigaea_PN = mkPN "Epigaea" ; -lin epilachna_PN = mkPN "Epilachna" ; -lin epilobium_PN = mkPN "Epilobium" ; -lin epimedium_PN = mkPN "Epimedium" ; -lin epimetheus_PN = mkPN "Epimetheus" ; -lin epinephelus_PN = mkPN "Epinephelus" ; -lin epipactis_PN = mkPN "Epipactis" ; -lin epipactis_helleborine_PN = mkPN "Epipactis helleborine" ; -lin epiphany_PN = mkPN "Epiphany"; -- from DictEng -lin epipremnum_PN = mkPN "Epipremnum" ; -lin epirus_PN = mkPN "Epirus" ; -lin episcopal_A = compoundA (mkA "episcopal"); -- from DictEng -lin episcopal_church_PN = mkPN "Episcopal Church" ; -lin episcopalian_PN = mkPN "Episcopalian" ; -lin episcopalianism_PN = mkPN "Episcopalianism" ; -lin epistle_PN = mkPN "Epistle" ; -lin epistle_of_james_PN = mkPN "Epistle of James" ; -lin epistle_of_jude_PN = mkPN "Epistle of Jude" ; -lin epistle_of_paul_the_apostle_to_philemon_PN = mkPN "Epistle of Paul the Apostle to Philemon" ; -lin epistle_of_paul_the_apostle_to_titus_PN = mkPN "Epistle of Paul the Apostle to Titus" ; -lin epistle_of_paul_the_apostle_to_the_colossians_PN = mkPN "Epistle of Paul the Apostle to the Colossians" ; -lin epistle_of_paul_the_apostle_to_the_ephesians_PN = mkPN "Epistle of Paul the Apostle to the Ephesians" ; -lin epistle_of_paul_the_apostle_to_the_galatians_PN = mkPN "Epistle of Paul the Apostle to the Galatians" ; -lin epistle_of_paul_the_apostle_to_the_philippians_PN = mkPN "Epistle of Paul the Apostle to the Philippians" ; -lin epistle_of_paul_the_apostle_to_the_romans_PN = mkPN "Epistle of Paul the Apostle to the Romans" ; -lin epistle_to_the_hebrews_PN = mkPN "Epistle to the Hebrews" ; -lin epona_PN = mkPN "Epona" ; -lin epping_PN = mkPN "Epping"; -- from DictEng -lin epsilon_aurigae_PN = mkPN "Epsilon Aurigae" ; -lin epsom_PN = mkPN "Epsom"; -- from DictEng -lin epsom_salts_PN = mkPN "Epsom salts" ; -lin epstein_PN = mkPN "Epstein" ; -lin epstein_barr_virus_PN = mkPN "Epstein Barr virus" ; -lin eptesicus_PN = mkPN "Eptesicus" ; -lin equatorial_guinea_PN = mkPN "Equatorial Guinea" ; -lin equetus_PN = mkPN "Equetus" ; -lin equidae_PN = mkPN "Equidae" ; -lin equisetaceae_PN = mkPN "Equisetaceae" ; -lin equisetales_PN = mkPN "Equisetales" ; -lin equisetum_PN = mkPN "Equisetum" ; -lin equus_PN = mkPN "Equus" ; -lin eragrostis_PN = mkPN "Eragrostis" ; -lin eranthis_PN = mkPN "Eranthis" ; -lin erasmian_A = mkA "Erasmian" ; -lin erasmus_PN = mkPN "Erasmus" ; -lin erastianism_PN = mkPN "Erastianism" ; -lin erato_PN = mkPN "Erato" ; -lin eratosthenes_PN = mkPN "Eratosthenes" ; -lin erb's_palsy_PN = mkPN "Erb's palsy" ; -lin ercilla_PN = mkPN "Ercilla" ; -lin erebus_PN = mkPN "Erebus" ; -lin ereshkigal_PN = mkPN "Ereshkigal" ; -lin erethizon_PN = mkPN "Erethizon" ; -lin erethizontidae_PN = mkPN "Erethizontidae" ; -lin eretmochelys_PN = mkPN "Eretmochelys" ; -lin erewhon_PN = mkPN "Erewhon" ; -lin erfurt_PN = mkPN "Erfurt"; -- from DictEng -lin erianthus_PN = mkPN "Erianthus" ; -lin eric_PN = mkPN "Eric"; -- from DictEng -lin erica_PN = mkPN "Erica"; -- from DictEng -lin ericaceae_PN = mkPN "Ericaceae" ; -lin ericales_PN = mkPN "Ericales" ; -lin eridanus_PN = mkPN "Eridanus" ; -lin erie_PN = mkPN "Erie" ; -lin erie_canal_PN = mkPN "Erie Canal" ; -lin erigeron_PN = mkPN "Erigeron" ; -lin erignathus_PN = mkPN "Erignathus" ; -lin erin_PN = mkPN "Erin"; -- from DictEng -lin erinaceidae_PN = mkPN "Erinaceidae" ; -lin erinaceus_PN = mkPN "Erinaceus" ; -lin eriobotrya_PN = mkPN "Eriobotrya" ; -lin eriocaulaceae_PN = mkPN "Eriocaulaceae" ; -lin eriocaulon_PN = mkPN "Eriocaulon" ; -lin eriodictyon_PN = mkPN "Eriodictyon" ; -lin eriophorum_PN = mkPN "Eriophorum" ; -lin eriophyllum_PN = mkPN "Eriophyllum" ; -lin eriosoma_PN = mkPN "Eriosoma" ; -lin eris_PN = mkPN "Eris" ; -lin erithacus_PN = mkPN "Erithacus" ; -lin eritrea_PN = mkPN "Eritrea"; -- from DictEng -lin eritrean_A = compoundA (mkA "eritrean"); -- from DictEng -lin eritrean_PN = mkPN "Eritrean" ; -lin erlang_PN = mkPN "Erlang" ; -lin erlangen_PN = mkPN "Erlangen"; -- from DictEng -lin erlenmeyer_PN = mkPN "Erlenmeyer" ; -lin erlenmeyer_flask_PN = mkPN "Erlenmeyer flask" ; -lin ernest_PN = mkPN "Ernest"; -- from DictEng -lin ernie_PN = mkPN "Ernie"; -- from DictEng -lin ernst_PN = mkPN "Ernst" ; -lin erodium_PN = mkPN "Erodium" ; -lin erolia_PN = mkPN "Erolia" ; -lin eros_PN = mkPN "Eros" ; -lin eruca_PN = mkPN "Eruca" ; -lin erving_PN = mkPN "Erving" ; -lin eryngium_PN = mkPN "Eryngium" ; -lin erysimum_PN = mkPN "Erysimum" ; -lin erysiphaceae_PN = mkPN "Erysiphaceae" ; -lin erysiphales_PN = mkPN "Erysiphales" ; -lin erysiphe_PN = mkPN "Erysiphe" ; -lin erythrocebus_PN = mkPN "Erythrocebus" ; -lin erythronium_PN = mkPN "Erythronium" ; -lin erythroxylaceae_PN = mkPN "Erythroxylaceae" ; -lin erythroxylon_PN = mkPN "Erythroxylon" ; -lin erythroxylon_coca_PN = mkPN "Erythroxylon coca" ; -lin erythroxylon_truxiuense_PN = mkPN "Erythroxylon truxiuense" ; -lin esaki_PN = mkPN "Esaki" ; -lin esau_PN = mkPN "Esau" ; -lin escherichia_coli_PN = mkPN "Escherichia coli" ; -lin eschrichtiidae_PN = mkPN "Eschrichtiidae" ; -lin eschrichtius_PN = mkPN "Eschrichtius" ; -lin eschscholtzia_PN = mkPN "Eschscholtzia" ; -lin esfahan_PN = mkPN "Esfahan"; -- from DictEng -lin eskimo_PN = mkPN "Eskimo" ; -lin eskimo_aleut_PN = mkPN "Eskimo Aleut" ; -lin eskimo_curlew_PN = mkPN "Eskimo curlew" ; -lin eskimo_dog_PN = mkPN "Eskimo dog" ; -lin esocidae_PN = mkPN "Esocidae" ; -lin esox_PN = mkPN "Esox" ; -lin espagnole_PN = mkPN "Espagnole" ; -lin esperantido_PN = mkPN "Esperantido" ; -lin esperanto_PN = mkPN "Esperanto" ; -lin espoo_PN = mkPN "Espoo" ; -lin esq_PN = mkPN "Esq"; -- from DictEng -lin esquire_PN = mkPN "Esquire" ; -lin esselen_PN = mkPN "Esselen" ; -lin essen_PN = mkPN "Essen"; -- from DictEng -lin essene_A = mkA "Essene" ; -lin essene_PN = mkPN "Essene" ; -lin essex_PN = mkPN "Essex"; -- from DictEng -lin estates_general_PN = mkPN "Estates General" ; -lin esther_PN = mkPN "Esther"; -- from DictEng -lin estonia_PN = mkPN "Estonia" ; -lin estonian_A = mkA "Estonian" ; -lin estonian_PN = mkPN "Estonian" ; -lin estonian_monetary_unit_PN = mkPN "Estonian monetary unit" ; -lin estrilda_PN = mkPN "Estrilda" ; -lin et_al_PN = mkPN "Et al"; -- from DictEng -lin et_seq_PN = mkPN "Et seq"; -- from DictEng -lin etc_PN = mkPN "Etc"; -- from DictEng -lin ethel_PN = mkPN "Ethel"; -- from DictEng -lin ethelbert_PN = mkPN "Ethelbert" ; -lin ethelred_PN = mkPN "Ethelred" ; -lin ethiopia_PN = mkPN "Ethiopia"; -- from DictEng -lin ethiopian_A = compoundA (mkA "ethiopian"); -- from DictEng -lin ethiopian_PN = mkPN "Ethiopian" ; -lin ethiopian_monetary_unit_PN = mkPN "Ethiopian monetary unit" ; -lin etna_PN = mkPN "Etna" ; -lin eton_college_PN = mkPN "Eton College" ; -lin eton_collar_PN = mkPN "Eton collar" ; -lin eton_jacket_PN = mkPN "Eton jacket" ; -lin etonian_PN = mkPN "Etonian" ; -lin etropus_PN = mkPN "Etropus" ; -lin etruria_PN = mkPN "Etruria" ; -lin etruscan_PN = mkPN "Etruscan" ; -lin euarctos_PN = mkPN "Euarctos" ; -lin euascomycetes_PN = mkPN "Euascomycetes" ; -lin eubacteriales_PN = mkPN "Eubacteriales" ; -lin eubryales_PN = mkPN "Eubryales" ; -lin eucarya_PN = mkPN "Eucarya" ; -lin eucharistic_A = mkA "Eucharistic" ; -lin eucinostomus_PN = mkPN "Eucinostomus" ; -lin euclid_PN = mkPN "Euclid" ; -lin euclid's_axiom_PN = mkPN "Euclid's axiom" ; -lin euclid's_fifth_axiom_PN = mkPN "Euclid's fifth axiom" ; -lin euclid's_first_axiom_PN = mkPN "Euclid's first axiom" ; -lin euclid's_fourth_axiom_PN = mkPN "Euclid's fourth axiom" ; -lin euclid's_second_axiom_PN = mkPN "Euclid's second axiom" ; -lin euclid's_third_axiom_PN = mkPN "Euclid's third axiom" ; -lin euclidean_space_PN = mkPN "Euclidean space" ; -lin euderma_PN = mkPN "Euderma" ; -lin eudyptes_PN = mkPN "Eudyptes" ; -lin eugene_PN = mkPN "Eugene"; -- from DictEng -lin eugenia_PN = mkPN "Eugenia" ; -lin euglenaceae_PN = mkPN "Euglenaceae" ; -lin euglenophyceae_PN = mkPN "Euglenophyceae" ; -lin euglenophyta_PN = mkPN "Euglenophyta" ; -lin euler_PN = mkPN "Euler" ; -lin eumeces_PN = mkPN "Eumeces" ; -lin eumenes_PN = mkPN "Eumenes" ; -lin eumetopias_PN = mkPN "Eumetopias" ; -lin eumops_PN = mkPN "Eumops" ; -lin eumycetes_PN = mkPN "Eumycetes" ; -lin eumycota_PN = mkPN "Eumycota" ; -lin eunectes_PN = mkPN "Eunectes" ; -lin eunice_PN = mkPN "Eunice"; -- from DictEng -lin euonymus_PN = mkPN "Euonymus" ; -lin euopean_hoopoe_PN = mkPN "Euopean hoopoe" ; -lin eupatorium_PN = mkPN "Eupatorium" ; -lin euphagus_PN = mkPN "Euphagus" ; -lin euphausia_pacifica_PN = mkPN "Euphausia pacifica" ; -lin euphausiacea_PN = mkPN "Euphausiacea" ; -lin euphorbia_PN = mkPN "Euphorbia" ; -lin euphorbiaceae_PN = mkPN "Euphorbiaceae" ; -lin euphractus_PN = mkPN "Euphractus" ; -lin euphrates_PN = mkPN "Euphrates" ; -lin euphrosyne_PN = mkPN "Euphrosyne" ; -lin euplectella_PN = mkPN "Euplectella" ; -lin euproctis_PN = mkPN "Euproctis" ; -lin eurafrican_A = mkA "Eurafrican" ; -lin eurafrican_PN = mkPN "Eurafrican" ; -lin eurasia_PN = mkPN "Eurasia"; -- from DictEng -lin eurasian_A = compoundA (mkA "eurasian"); -- from DictEng -lin eurasian_PN = mkPN "Eurasian" ; -lin eurasian_badger_PN = mkPN "Eurasian badger" ; -lin eurasian_green_toad_PN = mkPN "Eurasian green toad" ; -lin eurasian_hamster_PN = mkPN "Eurasian hamster" ; -lin eurasian_kingfisher_PN = mkPN "Eurasian kingfisher" ; -lin eurasian_otter_PN = mkPN "Eurasian otter" ; -lin eurasian_woodcock_PN = mkPN "Eurasian woodcock" ; -lin eureka_PN = mkPN "Eureka" ; -lin euripides_PN = mkPN "Euripides" ; -lin eurobabble_PN = mkPN "Eurobabble" ; -lin eurocentric_A = mkA "Eurocentric" ; -lin eurocentrism_PN = mkPN "Eurocentrism" ; -lin eurocurrency_PN = mkPN "Eurocurrency" ; -lin eurodollar_PN = mkPN "Eurodollar" ; -lin euronithopoda_PN = mkPN "Euronithopoda" ; -lin europa_PN = mkPN "Europa" ; -lin europan_PN = mkPN "Europan" ; -lin europe_PN = mkPN "Europe"; -- from DictEng -lin european_A = compoundA (mkA "European"); -- from DictEng -lin european_PN = mkPN "European" ; -lin european_central_bank_PN = mkPN "European Central Bank" ; -lin european_russia_PN = mkPN "European Russia" ; -lin european_union_PN = mkPN "European Union" ; -lin european_ash_PN = mkPN "European ash" ; -lin european_beggar_ticks_PN = mkPN "European beggar ticks" ; -lin european_bittern_PN = mkPN "European bittern" ; -lin european_black_grouse_PN = mkPN "European black grouse" ; -lin european_bog_asphodel_PN = mkPN "European bog asphodel" ; -lin european_bream_PN = mkPN "European bream" ; -lin european_catfish_PN = mkPN "European catfish" ; -lin european_chestnut_PN = mkPN "European chestnut" ; -lin european_country_PN = mkPN "European country" ; -lin european_cranberry_PN = mkPN "European cranberry" ; -lin european_creeper_PN = mkPN "European creeper" ; -lin european_cuckoo_PN = mkPN "European cuckoo" ; -lin european_curlew_PN = mkPN "European curlew" ; -lin european_dewberry_PN = mkPN "European dewberry" ; -lin european_dogtooth_PN = mkPN "European dogtooth" ; -lin european_fire_salamander_PN = mkPN "European fire salamander" ; -lin european_flatfish_PN = mkPN "European flatfish" ; -lin european_fly_honeysuckle_PN = mkPN "European fly honeysuckle" ; -lin european_gallinule_PN = mkPN "European gallinule" ; -lin european_goatsucker_PN = mkPN "European goatsucker" ; -lin european_hackberry_PN = mkPN "European hackberry" ; -lin european_hare_PN = mkPN "European hare" ; -lin european_hornbeam_PN = mkPN "European hornbeam" ; -lin european_house_cricket_PN = mkPN "European house cricket" ; -lin european_ladies'_tresses_PN = mkPN "European ladies' tresses" ; -lin european_larch_PN = mkPN "European larch" ; -lin european_lemming_PN = mkPN "European lemming" ; -lin european_lobster_PN = mkPN "European lobster" ; -lin european_magpie_PN = mkPN "European magpie" ; -lin european_nuthatch_PN = mkPN "European nuthatch" ; -lin european_parsley_fern_PN = mkPN "European parsley fern" ; -lin european_pasqueflower_PN = mkPN "European pasqueflower" ; -lin european_perch_PN = mkPN "European perch" ; -lin european_plan_PN = mkPN "European plan" ; -lin european_rabbit_PN = mkPN "European rabbit" ; -lin european_red_elder_PN = mkPN "European red elder" ; -lin european_roller_PN = mkPN "European roller" ; -lin european_sandpiper_PN = mkPN "European sandpiper" ; -lin european_sanicle_PN = mkPN "European sanicle" ; -lin european_sea_bream_PN = mkPN "European sea bream" ; -lin european_shrike_PN = mkPN "European shrike" ; -lin european_silver_fir_PN = mkPN "European silver fir" ; -lin european_smelt_PN = mkPN "European smelt" ; -lin european_sole_PN = mkPN "European sole" ; -lin european_spider_crab_PN = mkPN "European spider crab" ; -lin european_swift_PN = mkPN "European swift" ; -lin european_toad_PN = mkPN "European toad" ; -lin european_tortoise_PN = mkPN "European tortoise" ; -lin european_turkey_oak_PN = mkPN "European turkey oak" ; -lin european_water_ouzel_PN = mkPN "European water ouzel" ; -lin european_water_shrew_PN = mkPN "European water shrew" ; -lin european_white_lily_PN = mkPN "European white lily" ; -lin european_wildcat_PN = mkPN "European wildcat" ; -lin european_wolf_spider_PN = mkPN "European wolf spider" ; -lin european_wood_mouse_PN = mkPN "European wood mouse" ; -lin european_woolly_thistle_PN = mkPN "European woolly thistle" ; -lin europeanization_PN = mkPN "Europeanization" ; -lin europol_PN = mkPN "Europol" ; -lin eurotiales_PN = mkPN "Eurotiales" ; -lin eurotium_PN = mkPN "Eurotium" ; -lin eurovision_PN = mkPN "Eurovision"; -- from DictEng -lin euryale_PN = mkPN "Euryale" ; -lin euryalida_PN = mkPN "Euryalida" ; -lin eurydice_PN = mkPN "Eurydice" ; -lin eurylaimi_PN = mkPN "Eurylaimi" ; -lin eurylaimidae_PN = mkPN "Eurylaimidae" ; -lin eurypterida_PN = mkPN "Eurypterida" ; -lin eusebius_PN = mkPN "Eusebius" ; -lin eustachian_tube_PN = mkPN "Eustachian tube" ; -lin eustachio_PN = mkPN "Eustachio" ; -lin eustoma_PN = mkPN "Eustoma" ; -lin eutamias_PN = mkPN "Eutamias" ; -lin euterpe_PN = mkPN "Euterpe" ; -lin eutheria_PN = mkPN "Eutheria" ; -lin euthynnus_PN = mkPN "Euthynnus" ; -lin eva_PN = mkPN "Eva"; -- from DictEng -lin evangelical_united_brethren_church_PN = mkPN "Evangelical United Brethren Church" ; -lin evangelical_and_reformed_church_PN = mkPN "Evangelical and Reformed Church" ; -lin evangelist_PN = mkPN "Evangelist" ; -lin evans_PN = mkPN "Evans" ; -lin evansville_PN = mkPN "Evansville" ; -lin eve_PN = mkPN "Eve"; -- from DictEng -lin evelyn_PN = mkPN "Evelyn"; -- from DictEng -lin evening_prayer_PN = mkPN "Evening Prayer" ; -lin evenki_PN = mkPN "Evenki" ; -lin everest_PN = mkPN "Everest" ; -lin everglades_PN = mkPN "Everglades" ; -lin everglades_national_park_PN = mkPN "Everglades National Park" ; -lin evernia_PN = mkPN "Evernia" ; -lin evers_PN = mkPN "Evers" ; -lin evert_PN = mkPN "Evert" ; -lin evesham_PN = mkPN "Evesham"; -- from DictEng -lin ewe_PN = mkPN "Ewe" ; -lin ewell_PN = mkPN "Ewell"; -- from DictEng -lin ewing's_sarcoma_PN = mkPN "Ewing's sarcoma" ; -lin exacum_PN = mkPN "Exacum" ; -lin exaeretodon_PN = mkPN "Exaeretodon" ; -lin excalibur_PN = mkPN "Excalibur" ; -lin excellency_PN = mkPN "Excellency" ; -lin excl_PN = mkPN "Excl"; -- from DictEng -lin exeter_PN = mkPN "Exeter"; -- from DictEng -lin exmoor_PN = mkPN "Exmoor" ; -lin exmouth_PN = mkPN "Exmouth"; -- from DictEng -lin exocet_PN = mkPN "Exocet" ; -lin exocoetidae_PN = mkPN "Exocoetidae" ; -lin exocycloida_PN = mkPN "Exocycloida" ; -lin exodus_PN = mkPN "Exodus" ; -lin exopterygota_PN = mkPN "Exopterygota" ; -lin eyck_PN = mkPN "Eyck" ; -lin eyeish_PN = mkPN "Eyeish" ; -lin eyre_PN = mkPN "Eyre" ; -lin eyre_peninsula_PN = mkPN "Eyre Peninsula" ; -lin eysenck_PN = mkPN "Eysenck" ; -lin eysenck_personality_inventory_PN = mkPN "Eysenck Personality Inventory" ; -lin ezekiel_PN = mkPN "Ezekiel" ; -lin ezra_PN = mkPN "Ezra" ; -lin f_PN = mkPN "F" ; -lin faq_PN = mkPN "FAQ" ; -lin fica_PN = mkPN "FICA" ; -lin fortran_PN = mkPN "FORTRAN" ; -lin fortran_program_PN = mkPN "FORTRAN program" ; -lin faberge_PN = mkPN "Faberge" ; -lin fabian_A = compoundA (mkA "fabian"); -- from DictEng -lin fabian_PN = mkPN "Fabian" ; -lin fabian_society_PN = mkPN "Fabian Society" ; -lin fabiana_PN = mkPN "Fabiana" ; -lin fabianism_PN = mkPN "Fabianism" ; -lin fafnir_PN = mkPN "Fafnir" ; -lin fagaceae_PN = mkPN "Fagaceae" ; -lin fagales_PN = mkPN "Fagales" ; -lin fagin_PN = mkPN "Fagin" ; -lin fagopyrum_PN = mkPN "Fagopyrum" ; -lin fagus_PN = mkPN "Fagus" ; -lin fahd_PN = mkPN "Fahd" ; -lin fahrenheit_A = mkA "Fahrenheit" ; -lin fahrenheit_PN = mkPN "Fahrenheit" ; -lin fahrenheit_scale_PN = mkPN "Fahrenheit scale" ; -lin fahrenheit_thermometer_PN = mkPN "Fahrenheit thermometer" ; -lin fairbanks_PN = mkPN "Fairbanks" ; -lin faisal_PN = mkPN "Faisal" ; -lin faisalabad_PN = mkPN "Faisalabad" ; -lin falange_PN = mkPN "Falange" ; -lin falcatifolium_PN = mkPN "Falcatifolium" ; -lin falco_PN = mkPN "Falco" ; -lin falconidae_PN = mkPN "Falconidae" ; -lin falconiformes_PN = mkPN "Falconiformes" ; -lin falkirk_PN = mkPN "Falkirk"; -- from DictEng -lin falkland_islands_PN = mkPN "Falkland Islands" ; -lin fall_PN = mkPN "Fall" ; -lin fall_of_man_PN = mkPN "Fall of Man" ; -lin falla_PN = mkPN "Falla" ; -lin fallopian_tube_PN = mkPN "Fallopian tube" ; -lin fallopius_PN = mkPN "Fallopius" ; -lin fallot_PN = mkPN "Fallot" ; -lin falmouth_PN = mkPN "Falmouth"; -- from DictEng -lin falstaff_PN = mkPN "Falstaff" ; -lin falstaffian_A = mkA "Falstaffian" ; -lin fanconi's_anemia_PN = mkPN "Fanconi's anemia" ; -lin fang_PN = mkPN "Fang" ; -lin fanny_PN = mkPN "Fanny"; -- from DictEng -lin fanny_adams_PN = mkPN "Fanny Adams" ; -lin far_east_PN = mkPN "Far East" ; -lin faraday_PN = mkPN "Faraday" ; -lin fargo_PN = mkPN "Fargo" ; -lin farley_maidenhair_PN = mkPN "Farley maidenhair" ; -lin farm_credit_system_PN = mkPN "Farm Credit System" ; -lin farmer_PN = mkPN "Farmer" ; -lin farmer_labor_party_PN = mkPN "Farmer Labor Party" ; -lin farmington_PN = mkPN "Farmington" ; -lin farnham_PN = mkPN "Farnham"; -- from DictEng -lin farnworth_PN = mkPN "Farnworth"; -- from DictEng -lin faroe_islands_PN = mkPN "Faroe Islands" ; -lin faroese_PN = mkPN "Faroese" ; -lin farouk_i_PN = mkPN "Farouk I" ; -lin farragut_PN = mkPN "Farragut" ; -lin farrell_PN = mkPN "Farrell" ; -lin farsi_PN = mkPN "Farsi" ; -lin fasciola_PN = mkPN "Fasciola" ; -lin fasciolidae_PN = mkPN "Fasciolidae" ; -lin fasciolopsis_PN = mkPN "Fasciolopsis" ; -lin fasciolopsis_buski_PN = mkPN "Fasciolopsis buski" ; -lin fast_of_esther_PN = mkPN "Fast of Esther" ; -lin fast_of_gedaliah_PN = mkPN "Fast of Gedaliah" ; -lin fast_of_tammuz_PN = mkPN "Fast of Tammuz" ; -lin fast_of_tevet_PN = mkPN "Fast of Tevet" ; -lin fast_of_the_firstborn_PN = mkPN "Fast of the Firstborn" ; -lin fatah_revolutionary_council_PN = mkPN "Fatah Revolutionary Council" ; -lin fatah_tanzim_PN = mkPN "Fatah Tanzim" ; -lin father_PN = mkPN "Father" ; -lin father's_day_PN = mkPN "Father's Day" ; -lin father_brown_PN = mkPN "Father Brown" ; -lin fatiha_PN = mkPN "Fatiha" ; -lin fatima_PN = mkPN "Fatima" ; -lin fauldhouse_PN = mkPN "Fauldhouse"; -- from DictEng -lin faulkner_PN = mkPN "Faulkner" ; -lin fauntleroy_PN = mkPN "Fauntleroy" ; -lin faunus_PN = mkPN "Faunus" ; -lin faust_PN = mkPN "Faust" ; -lin faustian_A = mkA "Faustian" ; -lin fauve_PN = mkPN "Fauve" ; -lin faversham_PN = mkPN "Faversham"; -- from DictEng -lin fawkes_PN = mkPN "Fawkes" ; -lin fawley_PN = mkPN "Fawley"; -- from DictEng -lin fayetteville_PN = mkPN "Fayetteville" ; -lin fbi_PN = mkPN "FBI"; -- from DictEng -lin featherstone_PN = mkPN "Featherstone"; -- from DictEng -lin feb_PN = mkPN "Feb"; -- from DictEng -lin february_PN = mkPN "February"; -- from DictEng -lin fechner_PN = mkPN "Fechner" ; -lin fechner's_law_PN = mkPN "Fechner's law" ; -lin fedayeen_saddam_PN = mkPN "Fedayeen Saddam" ; -lin federal_PN = mkPN "Federal" ; -lin federal_aviation_agency_PN = mkPN "Federal Aviation Agency" ; -lin federal_bureau_of_investigation_PN = mkPN "Federal Bureau of Investigation" ; -lin federal_bureau_of_prisons_PN = mkPN "Federal Bureau of Prisons" ; -lin federal_communications_commission_PN = mkPN "Federal Communications Commission" ; -lin federal_deposit_insurance_corporation_PN = mkPN "Federal Deposit Insurance Corporation" ; -lin federal_emergency_management_agency_PN = mkPN "Federal Emergency Management Agency" ; -lin federal_home_loan_bank_system_PN = mkPN "Federal Home Loan Bank System" ; -lin federal_home_loan_mortgage_corporation_PN = mkPN "Federal Home Loan Mortgage Corporation" ; -lin federal_housing_administration_PN = mkPN "Federal Housing Administration" ; -lin federal_judiciary_PN = mkPN "Federal Judiciary" ; -lin federal_law_enforcement_training_center_PN = mkPN "Federal Law Enforcement Training Center" ; -lin federal_national_mortgage_association_PN = mkPN "Federal National Mortgage Association" ; -lin federal_protective_service_PN = mkPN "Federal Protective Service" ; -lin federal_reserve_bank_PN = mkPN "Federal Reserve Bank" ; -lin federal_reserve_board_PN = mkPN "Federal Reserve Board" ; -lin federal_reserve_system_PN = mkPN "Federal Reserve System" ; -lin federal_security_bureau_PN = mkPN "Federal Security Bureau" ; -lin federal_trade_commission_PN = mkPN "Federal Trade Commission" ; -lin federalist_PN = mkPN "Federalist" ; -lin federalist_party_PN = mkPN "Federalist Party" ; -lin fehling's_solution_PN = mkPN "Fehling's solution" ; -lin feifer_PN = mkPN "Feifer" ; -lin felicia_PN = mkPN "Felicia" ; -lin felicity_PN = mkPN "Felicity"; -- from DictEng -lin felidae_PN = mkPN "Felidae" ; -lin felis_PN = mkPN "Felis" ; -lin felix_PN = mkPN "Felix"; -- from DictEng -lin felixstowe_PN = mkPN "Felixstowe"; -- from DictEng -lin fellini_PN = mkPN "Fellini" ; -lin fem_PN = mkPN "Fem"; -- from DictEng -lin fennic_PN = mkPN "Fennic" ; -lin fenrir_PN = mkPN "Fenrir" ; -lin fentanyl_PN = mkPN "Fentanyl" ; -lin fenusa_PN = mkPN "Fenusa" ; -lin feosol_PN = mkPN "Feosol" ; -lin ferber_PN = mkPN "Ferber" ; -lin ferdinand_PN = mkPN "Ferdinand" ; -lin ferdinand_i_PN = mkPN "Ferdinand I" ; -lin ferdinand_ii_PN = mkPN "Ferdinand II" ; -lin ferdinand_iii_PN = mkPN "Ferdinand III" ; -lin ferdinand_and_isabella_PN = mkPN "Ferdinand and Isabella" ; -lin fergon_PN = mkPN "Fergon" ; -lin fermanagh_PN = mkPN "Fermanagh"; -- from DictEng -lin fermat_PN = mkPN "Fermat" ; -lin fermi_PN = mkPN "Fermi" ; -lin fermi_dirac_statistics_PN = mkPN "Fermi Dirac statistics" ; -lin ferocactus_PN = mkPN "Ferocactus" ; -lin ferrara_PN = mkPN "Ferrara"; -- from DictEng -lin ferris_wheel_PN = mkPN "Ferris wheel" ; -lin ferryhill_PN = mkPN "Ferryhill"; -- from DictEng -lin fertile_crescent_PN = mkPN "Fertile Crescent" ; -lin festuca_PN = mkPN "Festuca" ; -lin feynman_PN = mkPN "Feynman" ; -lin fez_PN = mkPN "Fez" ; -lin fibonacci_number_PN = mkPN "Fibonacci number" ; -lin fibonacci_sequence_PN = mkPN "Fibonacci sequence" ; -lin ficus_PN = mkPN "Ficus" ; -lin fiedler_PN = mkPN "Fiedler" ; -lin fielding_PN = mkPN "Fielding" ; -lin fields_PN = mkPN "Fields" ; -lin fife_PN = mkPN "Fife"; -- from DictEng -lin fifth_amendment_PN = mkPN "Fifth Amendment" ; -lin fifth_avenue_PN = mkPN "Fifth Avenue" ; -lin fifth_crusade_PN = mkPN "Fifth Crusade" ; -lin fifth_lateran_council_PN = mkPN "Fifth Lateran Council" ; -lin fiji_PN = mkPN "Fiji"; -- from DictEng -lin fiji_islands_PN = mkPN "Fiji Islands" ; -lin fiji_dollar_PN = mkPN "Fiji dollar" ; -lin fijian_A = compoundA (mkA "fijian"); -- from DictEng -lin fijian_PN = mkPN "Fijian" ; -lin filariidae_PN = mkPN "Filariidae" ; -lin filicales_PN = mkPN "Filicales" ; -lin filicopsida_PN = mkPN "Filicopsida" ; -lin filipino_A = compoundA (mkA "filipino"); -- from DictEng -lin filipino_PN = mkPN "Filipino" ; -lin fillmore_PN = mkPN "Fillmore" ; -lin filoviridae_PN = mkPN "Filoviridae" ; -lin financial_crimes_enforcement_network_PN = mkPN "Financial Crimes Enforcement Network" ; -lin financial_management_service_PN = mkPN "Financial Management Service" ; -lin fingal's_cave_PN = mkPN "Fingal's Cave" ; -lin finger_lakes_PN = mkPN "Finger Lakes" ; -lin finland_PN = mkPN "Finland"; -- from DictEng -lin finn_PN = mkPN "Finn" ; -lin finnbogadottir_PN = mkPN "Finnbogadottir" ; -lin finnish_A = compoundA (mkA "Finnish"); -- from DictEng -lin finnish_PN = mkPN "Finnish" ; -lin finnish_monetary_unit_PN = mkPN "Finnish monetary unit" ; -lin finno_ugric_PN = mkPN "Finno Ugric" ; -lin finno_ugric_speaking_A = compoundA (mkA "Finno Ugric speaking") ; -lin fiona_PN = mkPN "Fiona"; -- from DictEng -lin firenze_PN = mkPN "Firenze"; -- from DictEng -lin firmiana_PN = mkPN "Firmiana" ; -lin first_amendment_PN = mkPN "First Amendment" ; -lin first_crusade_PN = mkPN "First Crusade" ; -lin first_epistle_of_john_PN = mkPN "First Epistle of John" ; -lin first_epistle_of_paul_the_apostle_to_timothy_PN = mkPN "First Epistle of Paul the Apostle to Timothy" ; -lin first_epistle_of_paul_the_apostle_to_the_corinthians_PN = mkPN "First Epistle of Paul the Apostle to the Corinthians" ; -lin first_epistle_of_paul_the_apostle_to_the_thessalonians_PN = mkPN "First Epistle of Paul the Apostle to the Thessalonians" ; -lin first_epistle_of_peter_PN = mkPN "First Epistle of Peter" ; -lin first_lateran_council_PN = mkPN "First Lateran Council" ; -lin first_vatican_council_PN = mkPN "First Vatican Council" ; -lin first_of_october_antifascist_resistance_group_PN = mkPN "First of October Antifascist Resistance Group" ; -lin firth_PN = mkPN "Firth" ; -lin firth_of_clyde_PN = mkPN "Firth of Clyde" ; -lin firth_of_forth_PN = mkPN "Firth of Forth" ; -lin fischer_PN = mkPN "Fischer" ; -lin fischer's_slime_mushroom_PN = mkPN "Fischer's slime mushroom" ; -lin fissipedia_PN = mkPN "Fissipedia" ; -lin fissurella_PN = mkPN "Fissurella" ; -lin fissurellidae_PN = mkPN "Fissurellidae" ; -lin fistularia_PN = mkPN "Fistularia" ; -lin fistulariidae_PN = mkPN "Fistulariidae" ; -lin fistulina_PN = mkPN "Fistulina" ; -lin fistulinaceae_PN = mkPN "Fistulinaceae" ; -lin fitzgerald_PN = mkPN "Fitzgerald" ; -lin flacourtia_PN = mkPN "Flacourtia" ; -lin flacourtiaceae_PN = mkPN "Flacourtiaceae" ; -lin flag_day_PN = mkPN "Flag Day" ; -lin flagstaff_PN = mkPN "Flagstaff" ; -lin flaminian_way_PN = mkPN "Flaminian Way" ; -lin flaminius_PN = mkPN "Flaminius" ; -lin flammulina_PN = mkPN "Flammulina" ; -lin flanders_PN = mkPN "Flanders" ; -lin flaubert_PN = mkPN "Flaubert" ; -lin flavian_dynasty_PN = mkPN "Flavian dynasty" ; -lin flaviviridae_PN = mkPN "Flaviviridae" ; -lin fleet_PN = mkPN "Fleet"; -- from DictEng -lin fleet_street_PN = mkPN "Fleet street"; -- from DictEng -lin fleetwood_PN = mkPN "Fleetwood"; -- from DictEng -lin fleming_PN = mkPN "Fleming" ; -lin flemish_A = compoundA (mkA "flemish"); -- from DictEng -lin flemish_PN = mkPN "Flemish" ; -lin flemish_speaking_A = compoundA (mkA "Flemish speaking") ; -lin fletcher_PN = mkPN "Fletcher" ; -lin flinders_PN = mkPN "Flinders" ; -lin flindersia_PN = mkPN "Flindersia" ; -lin flint_PN = mkPN "Flint"; -- from DictEng -lin flodden_PN = mkPN "Flodden" ; -lin flora_PN = mkPN "Flora"; -- from DictEng -lin floreal_PN = mkPN "Floreal" ; -lin florence_PN = mkPN "Florence"; -- from DictEng -lin florence_fennel_PN = mkPN "Florence fennel" ; -lin florentine_A = mkA "Florentine" ; -lin florentine_PN = mkPN "Florentine" ; -lin florentine_iris_PN = mkPN "Florentine iris" ; -lin florey_PN = mkPN "Florey" ; -lin florida_PN = mkPN "Florida"; -- from DictEng -lin florida_gallinule_PN = mkPN "Florida gallinule" ; -lin florida_pompano_PN = mkPN "Florida pompano" ; -lin florida_smoothhound_PN = mkPN "Florida smoothhound" ; -lin florida_strap_fern_PN = mkPN "Florida strap fern" ; -lin florida_yew_PN = mkPN "Florida yew" ; -lin floridian_PN = mkPN "Floridian" ; -lin florio_PN = mkPN "Florio" ; -lin florrie_PN = mkPN "Florrie"; -- from DictEng -lin flory_PN = mkPN "Flory" ; -lin flying_dutchman_PN = mkPN "Flying Dutchman" ; -lin foeniculum_PN = mkPN "Foeniculum" ; -lin foggia_PN = mkPN "Foggia"; -- from DictEng -lin foggy_bottom_PN = mkPN "Foggy Bottom" ; -lin folkestone_PN = mkPN "Folkestone"; -- from DictEng -lin folsom_culture_PN = mkPN "Folsom culture" ; -lin fomes_PN = mkPN "Fomes" ; -lin fomor_PN = mkPN "Fomor" ; -lin fonda_PN = mkPN "Fonda" ; -lin fontanne_PN = mkPN "Fontanne" ; -lin fontenoy_PN = mkPN "Fontenoy" ; -lin fonteyn_PN = mkPN "Fonteyn" ; -lin foochow_PN = mkPN "Foochow"; -- from DictEng -lin food_and_agriculture_organization_PN = mkPN "Food and Agriculture Organization" ; -lin food_and_drug_administration_PN = mkPN "Food and Drug Administration" ; -lin foraminifera_PN = mkPN "Foraminifera" ; -lin forbidden_city_PN = mkPN "Forbidden City" ; -lin force_17_PN = mkPN "Force 17" ; -lin forces_of_umar_al_mukhtar_PN = mkPN "Forces of Umar Al Mukhtar" ; -lin ford_PN = mkPN "Ford" ; -lin fordhooks_PN = mkPN "Fordhooks" ; -lin foreign_intelligence_service_PN = mkPN "Foreign Intelligence Service" ; -lin foreign_intelligence_surveillance_act_PN = mkPN "Foreign Intelligence Surveillance Act" ; -lin foreign_intelligence_surveillance_court_PN = mkPN "Foreign Intelligence Surveillance Court" ; -lin foreign_office_PN = mkPN "Foreign Office" ; -lin foreign_service_PN = mkPN "Foreign Service" ; -lin forester_PN = mkPN "Forester" ; -lin forfar_PN = mkPN "Forfar"; -- from DictEng -lin forficula_PN = mkPN "Forficula" ; -lin forficulidae_PN = mkPN "Forficulidae" ; -lin forli_PN = mkPN "Forli"; -- from DictEng -lin formby_PN = mkPN "Formby"; -- from DictEng -lin formica_PN = mkPN "Formica" ; -lin formica_fusca_PN = mkPN "Formica fusca" ; -lin formicariidae_PN = mkPN "Formicariidae" ; -lin formicarius_PN = mkPN "Formicarius" ; -lin formicidae_PN = mkPN "Formicidae" ; -lin formosa_PN = mkPN "Formosa"; -- from DictEng -lin formosan_PN = mkPN "Formosan" ; -lin fornax_PN = mkPN "Fornax" ; -lin forseti_PN = mkPN "Forseti" ; -lin fort_lauderdale_PN = mkPN "Fort lauderdale"; -- from DictEng -lin fort_meade_PN = mkPN "Fort Meade" ; -lin fort_myers_PN = mkPN "Fort Myers" ; -lin fort_smith_PN = mkPN "Fort Smith" ; -lin fort_ticonderoga_PN = mkPN "Fort Ticonderoga" ; -lin fort_wayne_PN = mkPN "Fort Wayne" ; -lin fort_worth_PN = mkPN "Fort worth"; -- from DictEng -lin fort_william_PN = mkPN "Fort william"; -- from DictEng -lin fortaleza_PN = mkPN "Fortaleza"; -- from DictEng -lin forth_PN = mkPN "Forth" ; -lin fortran_compiler_PN = mkPN "Fortran compiler" ; -lin fortuna_PN = mkPN "Fortuna" ; -lin fortunella_PN = mkPN "Fortunella" ; -lin fosbury_PN = mkPN "Fosbury" ; -lin fosbury_flop_PN = mkPN "Fosbury flop" ; -lin fossa_PN = mkPN "Fossa" ; -lin foster_PN = mkPN "Foster" ; -lin foucault_PN = mkPN "Foucault" ; -lin foucault_pendulum_PN = mkPN "Foucault pendulum" ; -lin founding_father_PN = mkPN "Founding Father" ; -lin fountain_of_youth_PN = mkPN "Fountain of Youth" ; -lin fouquieria_PN = mkPN "Fouquieria" ; -lin fouquieriaceae_PN = mkPN "Fouquieriaceae" ; -lin four_horsemen_PN = mkPN "Four Horsemen" ; -lin four_hundred_PN = mkPN "Four Hundred" ; -lin fourier_PN = mkPN "Fourier" ; -lin fourier_analysis_PN = mkPN "Fourier analysis" ; -lin fourier_series_PN = mkPN "Fourier series" ; -lin fourteenth_amendment_PN = mkPN "Fourteenth Amendment" ; -lin fourth_crusade_PN = mkPN "Fourth Crusade" ; -lin fourth_lateran_council_PN = mkPN "Fourth Lateran Council" ; -lin fowey_PN = mkPN "Fowey"; -- from DictEng -lin fowler_PN = mkPN "Fowler" ; -lin fox_PN = mkPN "Fox" ; -lin fox_river_PN = mkPN "Fox River" ; -lin fr_PN = mkPN "Fr"; -- from DictEng -lin fragaria_PN = mkPN "Fragaria" ; -lin fragonard_PN = mkPN "Fragonard" ; -lin frampton_cotterell_PN = mkPN "Frampton cotterell"; -- from DictEng -lin fran_PN = mkPN "Fran"; -- from DictEng -lin france_PN = mkPN "France"; -- from DictEng -lin frances_PN = mkPN "Frances"; -- from DictEng -lin franche_comte_PN = mkPN "Franche Comte" ; -lin francis_PN = mkPN "Francis"; -- from DictEng -lin francis_ferdinand_PN = mkPN "Francis Ferdinand" ; -lin francis_ii_PN = mkPN "Francis II" ; -lin francis_joseph_PN = mkPN "Francis Joseph" ; -lin francis_of_assisi_PN = mkPN "Francis of Assisi" ; -lin francis_turbine_PN = mkPN "Francis turbine" ; -lin franciscan_A = compoundA (mkA "franciscan"); -- from DictEng -lin franciscan_PN = mkPN "Franciscan" ; -lin franciscan_order_PN = mkPN "Franciscan order" ; -lin francisella_PN = mkPN "Francisella" ; -lin francisella_tularensis_PN = mkPN "Francisella tularensis" ; -lin franck_PN = mkPN "Franck" ; -lin franco_PN = mkPN "Franco" ; -lin franco_american_PN = mkPN "Franco American" ; -lin franco_prussian_war_PN = mkPN "Franco Prussian War" ; -lin francoa_PN = mkPN "Francoa" ; -lin francophile_PN = mkPN "Francophile" ; -lin francophobe_PN = mkPN "Francophobe" ; -lin frank_PN = mkPN "Frank"; -- from DictEng -lin frankenstein_PN = mkPN "Frankenstein" ; -lin frankfort_PN = mkPN "Frankfort" ; -lin frankfurt_PN = mkPN "Frankfurt"; -- from DictEng -lin frankfurt_on_the_main_PN = mkPN "Frankfurt on the Main" ; -lin frankie_PN = mkPN "Frankie"; -- from DictEng -lin frankish_A = mkA "Frankish" ; -lin franklin_PN = mkPN "Franklin" ; -lin frankliniella_PN = mkPN "Frankliniella" ; -lin fraser_fir_PN = mkPN "Fraser fir" ; -lin frasera_PN = mkPN "Frasera" ; -lin fraserburgh_PN = mkPN "Fraserburgh"; -- from DictEng -lin fratercula_PN = mkPN "Fratercula" ; -lin frau_PN = mkPN "Frau" ; -lin fraulein_PN = mkPN "Fraulein" ; -lin fraxinus_PN = mkPN "Fraxinus" ; -lin frazer_PN = mkPN "Frazer" ; -lin freckleton_PN = mkPN "Freckleton"; -- from DictEng -lin fred_PN = mkPN "Fred"; -- from DictEng -lin freda_PN = mkPN "Freda"; -- from DictEng -lin freddie_PN = mkPN "Freddie"; -- from DictEng -lin freddy_PN = mkPN "Freddy"; -- from DictEng -lin frederick_PN = mkPN "Frederick"; -- from DictEng -lin frederick_i_PN = mkPN "Frederick I" ; -lin frederick_ii_PN = mkPN "Frederick II" ; -lin frederick_william_PN = mkPN "Frederick William" ; -lin frederick_william_i_PN = mkPN "Frederick William I" ; -lin frederick_william_ii_PN = mkPN "Frederick William II" ; -lin frederick_william_iii_PN = mkPN "Frederick William III" ; -lin frederick_william_iv_PN = mkPN "Frederick William IV" ; -lin fredericksburg_PN = mkPN "Fredericksburg" ; -lin fredericton_PN = mkPN "Fredericton" ; -lin frederiksberg_PN = mkPN "Frederiksberg"; -- from DictEng -lin free_french_PN = mkPN "Free French" ; -lin free_soil_party_PN = mkPN "Free Soil Party" ; -lin free_state_PN = mkPN "Free State" ; -lin free_world_PN = mkPN "Free World" ; -lin freemason_PN = mkPN "Freemason" ; -lin freemasonry_PN = mkPN "Freemasonry" ; -lin freetown_PN = mkPN "Freetown" ; -lin fregata_PN = mkPN "Fregata" ; -lin fregatidae_PN = mkPN "Fregatidae" ; -lin freiburg_PN = mkPN "Freiburg"; -- from DictEng -lin fremont_PN = mkPN "Fremont" ; -lin fremontodendron_PN = mkPN "Fremontodendron" ; -lin french_A = compoundA (mkA "French"); -- from DictEng -lin french_PN = mkPN "French" ; -lin french_speaking_A = compoundA (mkA "French speaking") ; -lin french_academy_PN = mkPN "French Academy" ; -lin french_canadian_PN = mkPN "French Canadian" ; -lin french_foreign_legion_PN = mkPN "French Foreign Legion" ; -lin french_foreign_office_PN = mkPN "French Foreign Office" ; -lin french_indochina_PN = mkPN "French Indochina" ; -lin french_polynesia_PN = mkPN "French Polynesia" ; -lin french_revolution_PN = mkPN "French Revolution" ; -lin french_riviera_PN = mkPN "French Riviera" ; -lin french_west_indies_PN = mkPN "French West Indies" ; -lin french_and_indian_war_PN = mkPN "French and Indian War" ; -lin french_blue_PN = mkPN "French blue" ; -lin french_bread_PN = mkPN "French bread" ; -lin french_bulldog_PN = mkPN "French bulldog" ; -lin french_chalk_PN = mkPN "French chalk" ; -lin french_door_PN = mkPN "French door" ; -lin french_dressing_PN = mkPN "French dressing" ; -lin french_franc_PN = mkPN "French franc" ; -lin french_fritter_PN = mkPN "French fritter" ; -lin french_heel_PN = mkPN "French heel" ; -lin french_honeysuckle_PN = mkPN "French honeysuckle" ; -lin french_horn_PN = mkPN "French horn" ; -lin french_knot_PN = mkPN "French knot" ; -lin french_lavender_PN = mkPN "French lavender" ; -lin french_leave_PN = mkPN "French leave" ; -lin french_lesson_PN = mkPN "French lesson" ; -lin french_loaf_PN = mkPN "French loaf" ; -lin french_marigold_PN = mkPN "French marigold" ; -lin french_omelet_PN = mkPN "French omelet" ; -lin french_pastry_PN = mkPN "French pastry" ; -lin french_polish_PN = mkPN "French polish" ; -lin french_region_PN = mkPN "French region" ; -lin french_roof_PN = mkPN "French roof" ; -lin french_sorrel_PN = mkPN "French sorrel" ; -lin french_teacher_PN = mkPN "French teacher" ; -lin french_toast_PN = mkPN "French toast" ; -lin french_window_PN = mkPN "French window" ; -lin frenchman_PN = mkPN "Frenchman" ; -lin freon_PN = mkPN "Freon" ; -lin freshwater_PN = mkPN "Freshwater"; -- from DictEng -lin fresnel_PN = mkPN "Fresnel" ; -lin fresnel_lens_PN = mkPN "Fresnel lens" ; -lin fresno_PN = mkPN "Fresno" ; -lin freud_PN = mkPN "Freud" ; -lin freudian_A = compoundA (mkA "freudian"); -- from DictEng -lin freudian_PN = mkPN "Freudian" ; -lin freudian_psychology_PN = mkPN "Freudian psychology" ; -lin freudian_slip_PN = mkPN "Freudian slip" ; -lin frey_PN = mkPN "Frey" ; -lin freya_PN = mkPN "Freya" ; -lin fri_PN = mkPN "Fri"; -- from DictEng -lin frick_PN = mkPN "Frick" ; -lin friday_PN = mkPN "Friday"; -- from DictEng -lin friedan_PN = mkPN "Friedan" ; -lin friedman_PN = mkPN "Friedman" ; -lin friedman_test_PN = mkPN "Friedman test" ; -lin friedreich's_ataxia_PN = mkPN "Friedreich's ataxia" ; -lin friend_PN = mkPN "Friend" ; -lin friesian_PN = mkPN "Friesian" ; -lin friesland_PN = mkPN "Friesland" ; -lin frigg_PN = mkPN "Frigg" ; -lin frigid_zone_PN = mkPN "Frigid Zone" ; -lin frimaire_PN = mkPN "Frimaire" ; -lin fringilla_PN = mkPN "Fringilla" ; -lin fringillidae_PN = mkPN "Fringillidae" ; -lin frinton_PN = mkPN "Frinton"; -- from DictEng -lin frisbee_PN = mkPN "Frisbee" ; -lin frisch_PN = mkPN "Frisch" ; -lin frisia_PN = mkPN "Frisia" ; -lin frisian_A = mkA "Frisian" ; -lin frisian_PN = mkPN "Frisian" ; -lin frisian_islands_PN = mkPN "Frisian Islands" ; -lin fritillaria_PN = mkPN "Fritillaria" ; -lin friuli_venezia_giulia_PN = mkPN "Friuli Venezia Giulia" ; -lin friulian_PN = mkPN "Friulian" ; -lin frobisher_PN = mkPN "Frobisher" ; -lin frodsham_PN = mkPN "Frodsham"; -- from DictEng -lin froebel_PN = mkPN "Froebel" ; -lin froelichia_PN = mkPN "Froelichia" ; -lin frome_PN = mkPN "Frome"; -- from DictEng -lin frost_PN = mkPN "Frost" ; -lin frost's_bolete_PN = mkPN "Frost's bolete" ; -lin frostian_A = mkA "Frostian" ; -lin fructidor_PN = mkPN "Fructidor" ; -lin fry_PN = mkPN "Fry" ; -lin frye_PN = mkPN "Frye" ; -lin ft_PN = mkPN "FT"; -- from DictEng -lin fucaceae_PN = mkPN "Fucaceae" ; -lin fucales_PN = mkPN "Fucales" ; -lin fuchs_PN = mkPN "Fuchs" ; -lin fuego_PN = mkPN "Fuego" ; -lin fuentes_PN = mkPN "Fuentes" ; -lin fugard_PN = mkPN "Fugard" ; -lin fuji_PN = mkPN "Fuji" ; -lin fukuoka_PN = mkPN "Fukuoka" ; -lin fula_PN = mkPN "Fula" ; -lin fulani_PN = mkPN "Fulani" ; -lin fulbright_PN = mkPN "Fulbright" ; -lin fulgoridae_PN = mkPN "Fulgoridae" ; -lin fulica_PN = mkPN "Fulica" ; -lin fuller_PN = mkPN "Fuller" ; -lin fulmarus_PN = mkPN "Fulmarus" ; -lin fulton_PN = mkPN "Fulton" ; -lin fumaria_PN = mkPN "Fumaria" ; -lin fumariaceae_PN = mkPN "Fumariaceae" ; -lin funafuti_PN = mkPN "Funafuti" ; -lin fundulus_PN = mkPN "Fundulus" ; -lin fungi_PN = mkPN "Fungi" ; -lin fungia_PN = mkPN "Fungia" ; -lin funk_PN = mkPN "Funk" ; -lin furnariidae_PN = mkPN "Furnariidae" ; -lin furnarius_PN = mkPN "Furnarius" ; -lin furnivall_PN = mkPN "Furnivall" ; -lin furth_PN = mkPN "Furth"; -- from DictEng -lin fury_PN = mkPN "Fury" ; -lin fuscoboletinus_PN = mkPN "Fuscoboletinus" ; -lin fuscoboletinus_paluster_PN = mkPN "Fuscoboletinus paluster" ; -lin fuscoboletinus_serotinus_PN = mkPN "Fuscoboletinus serotinus" ; -lin fushun_PN = mkPN "Fushun"; -- from DictEng -lin fwd_PN = mkPN "Fwd"; -- from DictEng -lin g_PN = mkPN "G" ; -lin g_man_PN = mkPN "G man" ; -lin g_string_PN = mkPN "G string" ; -lin gigo_PN = mkPN "GIGO" ; -lin gi_series_PN = mkPN "GI series" ; -lin gable_PN = mkPN "Gable" ; -lin gabon_PN = mkPN "Gabon"; -- from DictEng -lin gabon_franc_PN = mkPN "Gabon franc" ; -lin gabonese_A = compoundA (mkA "gabonese"); -- from DictEng -lin gabonese_PN = mkPN "Gabonese" ; -lin gabor_PN = mkPN "Gabor" ; -lin gaboriau_PN = mkPN "Gaboriau" ; -lin gaborone_PN = mkPN "Gaborone" ; -lin gabriel_PN = mkPN "Gabriel" ; -lin gadaba_PN = mkPN "Gadaba" ; -lin gadidae_PN = mkPN "Gadidae" ; -lin gadiformes_PN = mkPN "Gadiformes" ; -lin gadsden_PN = mkPN "Gadsden" ; -lin gadus_PN = mkPN "Gadus" ; -lin gaea_PN = mkPN "Gaea" ; -lin gael_PN = mkPN "Gael" ; -lin gaelic_PN = mkPN "Gaelic" ; -lin gaelic_speaking_A = compoundA (mkA "Gaelic speaking") ; -lin gafsa_PN = mkPN "Gafsa" ; -lin gagarin_PN = mkPN "Gagarin" ; -lin gainesville_PN = mkPN "Gainesville" ; -lin gainsborough_PN = mkPN "Gainsborough"; -- from DictEng -lin galahad_PN = mkPN "Galahad" ; -lin galan_PN = mkPN "Galan" ; -lin galapagos_islands_PN = mkPN "Galapagos Islands" ; -lin galashiels_PN = mkPN "Galashiels"; -- from DictEng -lin galatea_PN = mkPN "Galatea" ; -lin galatia_PN = mkPN "Galatia" ; -lin galatian_PN = mkPN "Galatian" ; -lin galbraith_PN = mkPN "Galbraith" ; -lin galbulidae_PN = mkPN "Galbulidae" ; -lin galega_PN = mkPN "Galega" ; -lin galen_PN = mkPN "Galen" ; -lin galeocerdo_PN = mkPN "Galeocerdo" ; -lin galeopsis_PN = mkPN "Galeopsis" ; -lin galeorhinus_PN = mkPN "Galeorhinus" ; -lin galeras_PN = mkPN "Galeras" ; -lin galicia_PN = mkPN "Galicia" ; -lin galician_PN = mkPN "Galician" ; -lin galiella_rufa_PN = mkPN "Galiella rufa" ; -lin galilean_A = mkA "Galilean" ; -lin galilean_PN = mkPN "Galilean" ; -lin galilean_satellite_PN = mkPN "Galilean satellite" ; -lin galilean_telescope_PN = mkPN "Galilean telescope" ; -lin galilee_PN = mkPN "Galilee" ; -lin galileo_PN = mkPN "Galileo" ; -lin galium_PN = mkPN "Galium" ; -lin gallant_fox_PN = mkPN "Gallant Fox" ; -lin gallaudet_PN = mkPN "Gallaudet" ; -lin galleria_PN = mkPN "Galleria" ; -lin galliano_PN = mkPN "Galliano" ; -lin gallic_A = compoundA (mkA "gallic"); -- from DictEng -lin gallican_A = mkA "Gallican" ; -lin gallicanism_PN = mkPN "Gallicanism" ; -lin gallicism_PN = mkPN "Gallicism" ; -lin galliformes_PN = mkPN "Galliformes" ; -lin gallinago_PN = mkPN "Gallinago" ; -lin gallinula_PN = mkPN "Gallinula" ; -lin gallirallus_PN = mkPN "Gallirallus" ; -lin galloway_PN = mkPN "Galloway"; -- from DictEng -lin gallup_PN = mkPN "Gallup"; -- from DictEng -lin gallus_PN = mkPN "Gallus" ; -lin galois_PN = mkPN "Galois" ; -lin galois_theory_PN = mkPN "Galois theory" ; -lin galsworthy_PN = mkPN "Galsworthy" ; -lin galton_PN = mkPN "Galton" ; -lin galvani_PN = mkPN "Galvani" ; -lin galveston_PN = mkPN "Galveston" ; -lin galveston_bay_PN = mkPN "Galveston Bay" ; -lin galveston_island_PN = mkPN "Galveston Island" ; -lin galway_PN = mkPN "Galway"; -- from DictEng -lin galway_bay_PN = mkPN "Galway Bay" ; -lin galwegian_A = mkA "Galwegian" ; -lin gambelia_PN = mkPN "Gambelia" ; -lin gambia_PN = mkPN "Gambia"; -- from DictEng -lin gambian_A = compoundA (mkA "gambian"); -- from DictEng -lin gambian_PN = mkPN "Gambian" ; -lin gambian_monetary_unit_PN = mkPN "Gambian monetary unit" ; -lin gambier_islands_PN = mkPN "Gambier Islands" ; -lin gambusia_PN = mkPN "Gambusia" ; -lin gamow_PN = mkPN "Gamow" ; -lin gan_jiang_PN = mkPN "Gan Jiang" ; -lin gandhi_PN = mkPN "Gandhi" ; -lin gandhian_A = mkA "Gandhian" ; -lin ganesh_PN = mkPN "Ganesh" ; -lin ganges_PN = mkPN "Ganges" ; -lin ganoidei_PN = mkPN "Ganoidei" ; -lin gansu_PN = mkPN "Gansu" ; -lin ganymede_PN = mkPN "Ganymede" ; -lin garand_rifle_PN = mkPN "Garand rifle" ; -lin garbo_PN = mkPN "Garbo" ; -lin garcia_lorca_PN = mkPN "Garcia Lorca" ; -lin garcinia_PN = mkPN "Garcinia" ; -lin gardiner_PN = mkPN "Gardiner" ; -lin gardner_PN = mkPN "Gardner" ; -lin gareth_PN = mkPN "Gareth"; -- from DictEng -lin garfield_PN = mkPN "Garfield" ; -lin garforth_PN = mkPN "Garforth"; -- from DictEng -lin gargantua_PN = mkPN "Gargantua" ; -lin garibaldi_PN = mkPN "Garibaldi" ; -lin garland_PN = mkPN "Garland" ; -lin garnier_PN = mkPN "Garnier" ; -lin garonne_PN = mkPN "Garonne" ; -lin garrick_PN = mkPN "Garrick" ; -lin garrison_PN = mkPN "Garrison" ; -lin garrowhill_PN = mkPN "Garrowhill"; -- from DictEng -lin garrulinae_PN = mkPN "Garrulinae" ; -lin garrulus_PN = mkPN "Garrulus" ; -lin garuda_PN = mkPN "Garuda" ; -lin gary_PN = mkPN "Gary"; -- from DictEng -lin gascogne_PN = mkPN "Gascogne" ; -lin gasherbrum_PN = mkPN "Gasherbrum" ; -lin gaskell_PN = mkPN "Gaskell" ; -lin gasteromycetes_PN = mkPN "Gasteromycetes" ; -lin gasterophilidae_PN = mkPN "Gasterophilidae" ; -lin gasterophilus_PN = mkPN "Gasterophilus" ; -lin gasterosteidae_PN = mkPN "Gasterosteidae" ; -lin gasterosteus_PN = mkPN "Gasterosteus" ; -lin gastroboletus_PN = mkPN "Gastroboletus" ; -lin gastroboletus_scabrosus_PN = mkPN "Gastroboletus scabrosus" ; -lin gastroboletus_turbinatus_PN = mkPN "Gastroboletus turbinatus" ; -lin gastrocybe_PN = mkPN "Gastrocybe" ; -lin gastrocybe_lateritia_PN = mkPN "Gastrocybe lateritia" ; -lin gastrophryne_PN = mkPN "Gastrophryne" ; -lin gastropoda_PN = mkPN "Gastropoda" ; -lin gates_PN = mkPN "Gates" ; -lin gates_of_the_arctic_national_park_PN = mkPN "Gates of the Arctic National Park" ; -lin gateshead_PN = mkPN "Gateshead"; -- from DictEng -lin gathic_PN = mkPN "Gathic" ; -lin gatling_PN = mkPN "Gatling" ; -lin gatling_gun_PN = mkPN "Gatling gun" ; -lin gaucher's_disease_PN = mkPN "Gaucher's disease" ; -lin gaudi_PN = mkPN "Gaudi" ; -lin gauguin_PN = mkPN "Gauguin" ; -lin gauguinesque_A = mkA "Gauguinesque" ; -lin gaul_PN = mkPN "Gaul" ; -lin gaultheria_PN = mkPN "Gaultheria" ; -lin gauri_PN = mkPN "Gauri" ; -lin gauss_PN = mkPN "Gauss" ; -lin gaussian_A = mkA "Gaussian" ; -lin gavia_PN = mkPN "Gavia" ; -lin gavialidae_PN = mkPN "Gavialidae" ; -lin gavialis_PN = mkPN "Gavialis" ; -lin gavidae_PN = mkPN "Gavidae" ; -lin gaviiformes_PN = mkPN "Gaviiformes" ; -lin gavin_PN = mkPN "Gavin"; -- from DictEng -lin gawain_PN = mkPN "Gawain" ; -lin gay_lussac_PN = mkPN "Gay Lussac" ; -lin gay_lussac's_law_PN = mkPN "Gay Lussac's law" ; -lin gaylussacia_PN = mkPN "Gaylussacia" ; -lin gaza_strip_PN = mkPN "Gaza Strip" ; -lin gazella_PN = mkPN "Gazella" ; -lin gazella_subgutturosa_PN = mkPN "Gazella subgutturosa" ; -lin gb_PN = mkPN "Gb"; -- from DictEng -lin gdansk_PN = mkPN "Gdansk"; -- from DictEng -lin gdn_PN = mkPN "Gdn"; -- from DictEng -lin gdns_PN = mkPN "Gdns"; -- from DictEng -lin geastraceae_PN = mkPN "Geastraceae" ; -lin geastrum_PN = mkPN "Geastrum" ; -lin geastrum_coronatum_PN = mkPN "Geastrum coronatum" ; -lin geb_PN = mkPN "Geb" ; -lin geglossaceae_PN = mkPN "Geglossaceae" ; -lin gehenna_PN = mkPN "Gehenna" ; -lin gehrig_PN = mkPN "Gehrig" ; -lin geiger_PN = mkPN "Geiger" ; -lin geiger_counter_PN = mkPN "Geiger counter" ; -lin geiger_tube_PN = mkPN "Geiger tube" ; -lin geisel_PN = mkPN "Geisel" ; -lin gekkonidae_PN = mkPN "Gekkonidae" ; -lin gelechia_PN = mkPN "Gelechia" ; -lin gelechia_gossypiella_PN = mkPN "Gelechia gossypiella" ; -lin gelechiidae_PN = mkPN "Gelechiidae" ; -lin gell_mann_PN = mkPN "Gell Mann" ; -lin gelligaer_PN = mkPN "Gelligaer"; -- from DictEng -lin gelsemium_PN = mkPN "Gelsemium" ; -lin gelsenkirchen_PN = mkPN "Gelsenkirchen"; -- from DictEng -lin gemara_PN = mkPN "Gemara" ; -lin gemini_PN = mkPN "Gemini"; -- from DictEng -lin gemini_program_PN = mkPN "Gemini program" ; -lin gempylidae_PN = mkPN "Gempylidae" ; -lin gempylus_PN = mkPN "Gempylus" ; -lin gen_PN = mkPN "Gen"; -- from DictEng -lin gene_PN = mkPN "Gene"; -- from DictEng -lin general_agreement_on_tariffs_and_trade_PN = mkPN "General Agreement on Tariffs and Trade" ; -lin general_assembly_PN = mkPN "General Assembly" ; -lin general_certificate_of_secondary_education_PN = mkPN "General Certificate of Secondary Education" ; -lin general_services_administration_PN = mkPN "General Services Administration" ; -lin genesis_PN = mkPN "Genesis" ; -lin genet_PN = mkPN "Genet" ; -lin genetta_PN = mkPN "Genetta" ; -lin geneva_PN = mkPN "Geneva"; -- from DictEng -lin geneva_convention_PN = mkPN "Geneva Convention" ; -lin geneva_gown_PN = mkPN "Geneva gown" ; -lin genevan_PN = mkPN "Genevan" ; -lin genghis_khan_PN = mkPN "Genghis Khan" ; -lin genista_PN = mkPN "Genista" ; -lin genoa_PN = mkPN "Genoa"; -- from DictEng -lin genoese_A = mkA "Genoese" ; -lin genoese_PN = mkPN "Genoese" ; -lin genova_PN = mkPN "Genova"; -- from DictEng -lin genseric_PN = mkPN "Genseric" ; -lin gent_PN = mkPN "Gent" ; -lin gentiana_PN = mkPN "Gentiana" ; -lin gentianaceae_PN = mkPN "Gentianaceae" ; -lin gentianales_PN = mkPN "Gentianales" ; -lin gentianella_PN = mkPN "Gentianella" ; -lin gentianopsid_procera_PN = mkPN "Gentianopsid procera" ; -lin gentianopsis_PN = mkPN "Gentianopsis" ; -lin gentianopsis_crinita_PN = mkPN "Gentianopsis crinita" ; -lin gentianopsis_detonsa_PN = mkPN "Gentianopsis detonsa" ; -lin gentianopsis_thermalis_PN = mkPN "Gentianopsis thermalis" ; -lin genyonemus_PN = mkPN "Genyonemus" ; -lin geochelone_PN = mkPN "Geochelone" ; -lin geococcyx_PN = mkPN "Geococcyx" ; -lin geoff_PN = mkPN "Geoff"; -- from DictEng -lin geoffrey_PN = mkPN "Geoffrey"; -- from DictEng -lin geoffrey_of_monmouth_PN = mkPN "Geoffrey of Monmouth" ; -lin geoffroea_PN = mkPN "Geoffroea" ; -lin geogia_holly_PN = mkPN "Geogia holly" ; -lin geoglossaceae_PN = mkPN "Geoglossaceae" ; -lin geoglossum_PN = mkPN "Geoglossum" ; -lin geometridae_PN = mkPN "Geometridae" ; -lin geomyidae_PN = mkPN "Geomyidae" ; -lin geomys_PN = mkPN "Geomys" ; -lin geophilidae_PN = mkPN "Geophilidae" ; -lin geophilomorpha_PN = mkPN "Geophilomorpha" ; -lin geophilus_PN = mkPN "Geophilus" ; -lin geordie_PN = mkPN "Geordie" ; -lin george_PN = mkPN "George"; -- from DictEng -lin george_town_PN = mkPN "George Town" ; -lin george_washington_bridge_PN = mkPN "George Washington Bridge" ; -lin georgetown_PN = mkPN "Georgetown" ; -lin georgia_PN = mkPN "Georgia"; -- from DictEng -lin georgian_A = compoundA (mkA "georgian"); -- from DictEng -lin georgian_PN = mkPN "Georgian" ; -lin georgian_monetary_unit_PN = mkPN "Georgian monetary unit" ; -lin georgie_PN = mkPN "Georgie"; -- from DictEng -lin geothlypis_PN = mkPN "Geothlypis" ; -lin geraint_PN = mkPN "Geraint" ; -lin gerald_PN = mkPN "Gerald"; -- from DictEng -lin geraldine_PN = mkPN "Geraldine"; -- from DictEng -lin geraniaceae_PN = mkPN "Geraniaceae" ; -lin geraniales_PN = mkPN "Geraniales" ; -lin gerard_PN = mkPN "Gerard"; -- from DictEng -lin gerbera_PN = mkPN "Gerbera" ; -lin gerbillinae_PN = mkPN "Gerbillinae" ; -lin gerbillus_PN = mkPN "Gerbillus" ; -lin gerea_PN = mkPN "Gerea" ; -lin german_A = compoundA (mkA "German"); -- from DictEng -lin german_PN = mkPN "German" ; -lin german_american_A = compoundA (mkA "German American") ; -lin german_speaking_A = compoundA (mkA "German speaking") ; -lin german_american_PN = mkPN "German American" ; -lin german_cockroach_PN = mkPN "German cockroach" ; -lin german_iris_PN = mkPN "German iris" ; -lin german_ivy_PN = mkPN "German ivy" ; -lin german_lesson_PN = mkPN "German lesson" ; -lin german_measles_PN = mkPN "German measles" ; -lin german_millet_PN = mkPN "German millet" ; -lin german_monetary_unit_PN = mkPN "German monetary unit" ; -lin german_shepherd_PN = mkPN "German shepherd" ; -lin german_short_haired_pointer_PN = mkPN "German short haired pointer" ; -lin germanic_A = compoundA (mkA "germanic"); -- from DictEng -lin germanic_PN = mkPN "Germanic" ; -lin germanism_PN = mkPN "Germanism" ; -lin germanist_PN = mkPN "Germanist" ; -lin germany_PN = mkPN "Germany"; -- from DictEng -lin germinal_PN = mkPN "Germinal" ; -lin geronimo_PN = mkPN "Geronimo" ; -lin gerreidae_PN = mkPN "Gerreidae" ; -lin gerres_PN = mkPN "Gerres" ; -lin gerrhonotus_PN = mkPN "Gerrhonotus" ; -lin gerrididae_PN = mkPN "Gerrididae" ; -lin gerris_PN = mkPN "Gerris" ; -lin gerry_PN = mkPN "Gerry"; -- from DictEng -lin gershwin_PN = mkPN "Gershwin" ; -lin gertie_PN = mkPN "Gertie"; -- from DictEng -lin gertrude_PN = mkPN "Gertrude"; -- from DictEng -lin geryon_PN = mkPN "Geryon" ; -lin gesell_PN = mkPN "Gesell" ; -lin gesner_PN = mkPN "Gesner" ; -lin gesneriaceae_PN = mkPN "Gesneriaceae" ; -lin gestalt_law_of_organization_PN = mkPN "Gestalt law of organization" ; -lin gestalt_psychology_PN = mkPN "Gestalt psychology" ; -lin gestapo_PN = mkPN "Gestapo" ; -lin gettysburg_PN = mkPN "Gettysburg" ; -lin gettysburg_address_PN = mkPN "Gettysburg Address" ; -lin geum_PN = mkPN "Geum" ; -lin ghana_PN = mkPN "Ghana"; -- from DictEng -lin ghanaian_A = compoundA (mkA "ghanaian"); -- from DictEng -lin ghanian_PN = mkPN "Ghanian" ; -lin ghanian_monetary_unit_PN = mkPN "Ghanian monetary unit" ; -lin ghedda_wax_PN = mkPN "Ghedda wax" ; -lin gheg_PN = mkPN "Gheg" ; -lin ghent_PN = mkPN "Ghent"; -- from DictEng -lin ghq_PN = mkPN "Ghq"; -- from DictEng -lin giacometti_PN = mkPN "Giacometti" ; -lin gibbon_PN = mkPN "Gibbon" ; -lin gibbs_PN = mkPN "Gibbs" ; -lin gibraltar_PN = mkPN "Gibraltar"; -- from DictEng -lin gibraltarian_A = compoundA (mkA "gibraltarian"); -- from DictEng -lin gibraltarian_PN = mkPN "Gibraltarian" ; -lin gibran_PN = mkPN "Gibran" ; -lin gibson_PN = mkPN "Gibson" ; -lin gibson_desert_PN = mkPN "Gibson Desert" ; -lin gibson_girl_PN = mkPN "Gibson girl" ; -lin gidar_PN = mkPN "Gidar" ; -lin gide_PN = mkPN "Gide" ; -lin gielgud_PN = mkPN "Gielgud" ; -lin giffnock_PN = mkPN "Giffnock"; -- from DictEng -lin gigartinaceae_PN = mkPN "Gigartinaceae" ; -lin gikuyu_PN = mkPN "Gikuyu" ; -lin gila_PN = mkPN "Gila" ; -lin gila_desert_PN = mkPN "Gila Desert" ; -lin gila_monster_PN = mkPN "Gila monster" ; -lin gilbert_PN = mkPN "Gilbert"; -- from DictEng -lin gilbert_islands_PN = mkPN "Gilbert Islands" ; -lin gilbert_and_ellice_islands_PN = mkPN "Gilbert and Ellice Islands" ; -lin gilbert_and_sullivan_PN = mkPN "Gilbert and Sullivan" ; -lin gilbertian_A = compoundA (mkA "gilbertian"); -- from DictEng -lin giles_PN = mkPN "Giles"; -- from DictEng -lin gilfach_goch_PN = mkPN "Gilfach goch"; -- from DictEng -lin gilgamesh_PN = mkPN "Gilgamesh" ; -lin gilgamish_PN = mkPN "Gilgamish" ; -lin gill_PN = mkPN "Gill"; -- from DictEng -lin gillespie_PN = mkPN "Gillespie" ; -lin gillette_PN = mkPN "Gillette" ; -lin gillian_PN = mkPN "Gillian"; -- from DictEng -lin gillingham_PN = mkPN "Gillingham"; -- from DictEng -lin gilman_PN = mkPN "Gilman" ; -lin gilmer_PN = mkPN "Gilmer" ; -lin gina_PN = mkPN "Gina"; -- from DictEng -lin ginglymostoma_PN = mkPN "Ginglymostoma" ; -lin ginkgoaceae_PN = mkPN "Ginkgoaceae" ; -lin ginkgoales_PN = mkPN "Ginkgoales" ; -lin ginkgopsida_PN = mkPN "Ginkgopsida" ; -lin ginsberg_PN = mkPN "Ginsberg" ; -lin giotto_PN = mkPN "Giotto" ; -lin giraffa_PN = mkPN "Giraffa" ; -lin giraffidae_PN = mkPN "Giraffidae" ; -lin girard_PN = mkPN "Girard" ; -lin giraudoux_PN = mkPN "Giraudoux" ; -lin giriama_PN = mkPN "Giriama" ; -lin girl_scout_PN = mkPN "Girl Scout" ; -lin girl_scouts_PN = mkPN "Girl Scouts" ; -lin gironde_PN = mkPN "Gironde" ; -lin girondism_PN = mkPN "Girondism" ; -lin girondist_PN = mkPN "Girondist" ; -lin girru_PN = mkPN "Girru" ; -lin girvan_PN = mkPN "Girvan"; -- from DictEng -lin gish_PN = mkPN "Gish" ; -lin giza_PN = mkPN "Giza" ; -lin gjellerup_PN = mkPN "Gjellerup" ; -lin gladstone_PN = mkPN "Gladstone" ; -lin gladys_PN = mkPN "Gladys"; -- from DictEng -lin glamorgan_PN = mkPN "Glamorgan"; -- from DictEng -lin glareola_PN = mkPN "Glareola" ; -lin glareolidae_PN = mkPN "Glareolidae" ; -lin glaser_PN = mkPN "Glaser" ; -lin glasgow_PN = mkPN "Glasgow"; -- from DictEng -lin glastonbury_PN = mkPN "Glastonbury"; -- from DictEng -lin glaswegian_A = compoundA (mkA "glaswegian"); -- from DictEng -lin glaswegian_PN = mkPN "Glaswegian" ; -lin glauber's_salt_PN = mkPN "Glauber's salt" ; -lin glaucium_PN = mkPN "Glaucium" ; -lin glaucomys_PN = mkPN "Glaucomys" ; -lin glaux_PN = mkPN "Glaux" ; -lin glechoma_PN = mkPN "Glechoma" ; -lin gleditsia_PN = mkPN "Gleditsia" ; -lin gleichenia_PN = mkPN "Gleichenia" ; -lin gleicheniaceae_PN = mkPN "Gleicheniaceae" ; -lin glen_PN = mkPN "Glen"; -- from DictEng -lin glen_canyon_dam_PN = mkPN "Glen Canyon Dam" ; -lin glendower_PN = mkPN "Glendower" ; -lin glengarry_PN = mkPN "Glengarry" ; -lin glenn_PN = mkPN "Glenn" ; -lin glenrothes_PN = mkPN "Glenrothes"; -- from DictEng -lin glinka_PN = mkPN "Glinka" ; -lin gliridae_PN = mkPN "Gliridae" ; -lin glis_PN = mkPN "Glis" ; -lin global_positioning_system_PN = mkPN "Global Positioning System" ; -lin globicephala_PN = mkPN "Globicephala" ; -lin globigerinidae_PN = mkPN "Globigerinidae" ; -lin gloria_PN = mkPN "Gloria"; -- from DictEng -lin glossinidae_PN = mkPN "Glossinidae" ; -lin glossodia_PN = mkPN "Glossodia" ; -lin glossop_PN = mkPN "Glossop"; -- from DictEng -lin glossopsitta_PN = mkPN "Glossopsitta" ; -lin gloucester_PN = mkPN "Gloucester"; -- from DictEng -lin gloucestershire_PN = mkPN "Gloucestershire"; -- from DictEng -lin gluck_PN = mkPN "Gluck" ; -lin glusburn_PN = mkPN "Glusburn"; -- from DictEng -lin glyceria_PN = mkPN "Glyceria" ; -lin glycine_PN = mkPN "Glycine" ; -lin glycyrrhiza_PN = mkPN "Glycyrrhiza" ; -lin gmt_PN = mkPN "Gmt"; -- from DictEng -lin gnaphalium_PN = mkPN "Gnaphalium" ; -lin gnathostomata_PN = mkPN "Gnathostomata" ; -lin gnetaceae_PN = mkPN "Gnetaceae" ; -lin gnetales_PN = mkPN "Gnetales" ; -lin gnetopsida_PN = mkPN "Gnetopsida" ; -lin gnostic_PN = mkPN "Gnostic" ; -lin gnosticism_PN = mkPN "Gnosticism" ; -lin go_fish_PN = mkPN "Go Fish" ; -lin goa_PN = mkPN "Goa" ; -lin gobi_PN = mkPN "Gobi" ; -lin gobiesocidae_PN = mkPN "Gobiesocidae" ; -lin gobiesox_PN = mkPN "Gobiesox" ; -lin gobiidae_PN = mkPN "Gobiidae" ; -lin gobio_PN = mkPN "Gobio" ; -lin god_PN = mkPN "God"; -- from DictEng -lin god's_will_PN = mkPN "God's Will" ; -lin god's_wisdom_PN = mkPN "God's Wisdom" ; -lin god_knows_how_Adv = mkAdv "God knows how" ; -lin godalming_PN = mkPN "Godalming"; -- from DictEng -lin godard_PN = mkPN "Godard" ; -lin goddard_PN = mkPN "Goddard" ; -lin godel_PN = mkPN "Godel" ; -lin godfrey_PN = mkPN "Godfrey"; -- from DictEng -lin godhead_PN = mkPN "Godhead" ; -lin godiva_PN = mkPN "Godiva" ; -lin godmanchester_PN = mkPN "Godmanchester"; -- from DictEng -lin godspeed_PN = mkPN "Godspeed" ; -lin godunov_PN = mkPN "Godunov" ; -lin goebbels_PN = mkPN "Goebbels" ; -lin goethals_PN = mkPN "Goethals" ; -lin goethe_PN = mkPN "Goethe" ; -lin goethean_A = mkA "Goethean" ; -lin goffs_oak_PN = mkPN "Goffs oak"; -- from DictEng -lin gog_and_magog_PN = mkPN "Gog and Magog" ; -lin gogol_PN = mkPN "Gogol" ; -lin golan_heights_PN = mkPN "Golan Heights" ; -lin golbourne_PN = mkPN "Golbourne"; -- from DictEng -lin golconda_PN = mkPN "Golconda" ; -lin goldberg_PN = mkPN "Goldberg" ; -lin golden_age_PN = mkPN "Golden Age" ; -lin golden_delicious_PN = mkPN "Golden Delicious" ; -lin golden_fleece_PN = mkPN "Golden Fleece" ; -lin golden_gate_PN = mkPN "Golden Gate" ; -lin golden_gate_bridge_PN = mkPN "Golden Gate Bridge" ; -lin golden_horde_PN = mkPN "Golden Horde" ; -lin golden_rule_PN = mkPN "Golden Rule" ; -lin goldie's_fern_PN = mkPN "Goldie's fern" ; -lin golding_PN = mkPN "Golding" ; -lin goldman_PN = mkPN "Goldman" ; -lin goldmark_PN = mkPN "Goldmark" ; -lin goldoni_PN = mkPN "Goldoni" ; -lin goldsboro_PN = mkPN "Goldsboro" ; -lin goldsmith_PN = mkPN "Goldsmith" ; -lin goldwyn_PN = mkPN "Goldwyn" ; -lin golgi_PN = mkPN "Golgi" ; -lin golgi's_cell_PN = mkPN "Golgi's cell" ; -lin golgi_body_PN = mkPN "Golgi body" ; -lin goliath_PN = mkPN "Goliath" ; -lin goma_PN = mkPN "Goma" ; -lin gombrowicz_PN = mkPN "Gombrowicz" ; -lin gomorrah_PN = mkPN "Gomorrah" ; -lin gompers_PN = mkPN "Gompers" ; -lin gomphotheriidae_PN = mkPN "Gomphotheriidae" ; -lin gomphotherium_PN = mkPN "Gomphotherium" ; -lin gomphrena_PN = mkPN "Gomphrena" ; -lin goncourt_PN = mkPN "Goncourt" ; -lin gond_PN = mkPN "Gond" ; -lin gondi_PN = mkPN "Gondi" ; -lin gondwanaland_PN = mkPN "Gondwanaland" ; -lin gongora_PN = mkPN "Gongora" ; -lin gongorism_PN = mkPN "Gongorism" ; -lin gongorist_PN = mkPN "Gongorist" ; -lin goniopteris_PN = mkPN "Goniopteris" ; -lin gonne_PN = mkPN "Gonne" ; -lin gonorhynchidae_PN = mkPN "Gonorhynchidae" ; -lin gonorhynchus_PN = mkPN "Gonorhynchus" ; -lin good_friday_PN = mkPN "Good Friday" ; -lin goodall_PN = mkPN "Goodall" ; -lin goodenia_PN = mkPN "Goodenia" ; -lin goodeniaceae_PN = mkPN "Goodeniaceae" ; -lin goodman_PN = mkPN "Goodman" ; -lin goodyear_PN = mkPN "Goodyear" ; -lin goodyera_PN = mkPN "Goodyera" ; -lin goofy_PN = mkPN "Goofy" ; -lin google_PN = mkPN "Google" ; -lin goole_PN = mkPN "Goole"; -- from DictEng -lin gopherus_PN = mkPN "Gopherus" ; -lin gorbachev_PN = mkPN "Gorbachev" ; -lin gordian_A = compoundA (mkA "gordian"); -- from DictEng -lin gordian_knot_PN = mkPN "Gordian knot" ; -lin gordimer_PN = mkPN "Gordimer" ; -lin gordius_PN = mkPN "Gordius" ; -lin gordon_PN = mkPN "Gordon"; -- from DictEng -lin gordon_setter_PN = mkPN "Gordon setter" ; -lin gore_PN = mkPN "Gore" ; -lin gorgas_PN = mkPN "Gorgas" ; -lin gorgon_PN = mkPN "Gorgon" ; -lin gorgonacea_PN = mkPN "Gorgonacea" ; -lin gorgonocephalus_PN = mkPN "Gorgonocephalus" ; -lin goring_PN = mkPN "Goring" ; -lin gorky_PN = mkPN "Gorky"; -- from DictEng -lin gorseinon_PN = mkPN "Gorseinon"; -- from DictEng -lin gosainthan_PN = mkPN "Gosainthan" ; -lin gospel_PN = mkPN "Gospel" ; -lin gosport_PN = mkPN "Gosport"; -- from DictEng -lin gossypium_PN = mkPN "Gossypium" ; -lin gota_canal_PN = mkPN "Gota Canal" ; -lin goteborg_PN = mkPN "Goteborg"; -- from DictEng -lin goth_PN = mkPN "Goth" ; -lin gothenburg_PN = mkPN "Gothenburg"; -- from DictEng -lin gothic_A = compoundA (mkA "gothic"); -- from DictEng -lin gothic_PN = mkPN "Gothic" ; -lin gothic_arch_PN = mkPN "Gothic arch" ; -lin gothic_romance_PN = mkPN "Gothic romance" ; -lin gothic_romancer_PN = mkPN "Gothic romancer" ; -lin gotterdammerung_PN = mkPN "Gotterdammerung" ; -lin gottingen_PN = mkPN "Gottingen"; -- from DictEng -lin gouda_PN = mkPN "Gouda" ; -lin goudy_PN = mkPN "Goudy" ; -lin gould_PN = mkPN "Gould" ; -lin gounod_PN = mkPN "Gounod" ; -lin gourock_PN = mkPN "Gourock"; -- from DictEng -lin gov_PN = mkPN "Gov"; -- from DictEng -lin governador_valadares_PN = mkPN "Governador Valadares" ; -lin government_accounting_office_PN = mkPN "Government Accounting Office" ; -lin goya_PN = mkPN "Goya" ; -lin graafian_follicle_PN = mkPN "Graafian follicle" ; -lin grace_PN = mkPN "Grace" ; -lin gracilariidae_PN = mkPN "Gracilariidae" ; -lin gracula_PN = mkPN "Gracula" ; -lin graf_PN = mkPN "Graf" ; -lin graham_PN = mkPN "Graham" ; -lin grahame_PN = mkPN "Grahame" ; -lin grainger_PN = mkPN "Grainger" ; -lin gram_PN = mkPN "Gram" ; -lin gram's_method_PN = mkPN "Gram's method" ; -lin gram's_solution_PN = mkPN "Gram's solution" ; -lin gram_negative_A = compoundA (mkA "Gram negative") ; -lin gram_positive_A = compoundA (mkA "Gram positive") ; -lin graminales_PN = mkPN "Graminales" ; -lin gramineae_PN = mkPN "Gramineae" ; -lin grammatophyllum_PN = mkPN "Grammatophyllum" ; -lin grampian_PN = mkPN "Grampian"; -- from DictEng -lin gran_santiago_PN = mkPN "Gran Santiago" ; -lin granada_PN = mkPN "Granada"; -- from DictEng -lin grand_canal_PN = mkPN "Grand Canal" ; -lin grand_canyon_PN = mkPN "Grand Canyon" ; -lin grand_canyon_national_park_PN = mkPN "Grand Canyon National Park" ; -lin grand_guignol_PN = mkPN "Grand Guignol" ; -lin grand_inquisitor_PN = mkPN "Grand Inquisitor" ; -lin grand_island_PN = mkPN "Grand Island" ; -lin grand_marnier_PN = mkPN "Grand Marnier" ; -lin grand_national_PN = mkPN "Grand National" ; -lin grand_prix_PN = mkPN "Grand Prix" ; -lin grand_rapids_PN = mkPN "Grand Rapids" ; -lin grand_river_PN = mkPN "Grand River" ; -lin grand_teton_PN = mkPN "Grand Teton" ; -lin grand_teton_national_park_PN = mkPN "Grand Teton National Park" ; -lin grangemouth_PN = mkPN "Grangemouth"; -- from DictEng -lin granicus_PN = mkPN "Granicus" ; -lin granny_smith_PN = mkPN "Granny Smith" ; -lin grant_PN = mkPN "Grant" ; -lin grantham_PN = mkPN "Grantham"; -- from DictEng -lin granville_barker_PN = mkPN "Granville Barker" ; -lin grappelli_PN = mkPN "Grappelli" ; -lin graptophyllum_PN = mkPN "Graptophyllum" ; -lin grass_PN = mkPN "Grass" ; -lin gravenhage_PN = mkPN "Gravenhage"; -- from DictEng -lin graves_PN = mkPN "Graves" ; -lin graves'_disease_PN = mkPN "Graves' disease" ; -lin gravesend_PN = mkPN "Gravesend"; -- from DictEng -lin gray_PN = mkPN "Gray" ; -lin graz_PN = mkPN "Graz"; -- from DictEng -lin great_attractor_PN = mkPN "Great Attractor" ; -lin great_australian_bight_PN = mkPN "Great Australian Bight" ; -lin great_barrier_reef_PN = mkPN "Great Barrier Reef" ; -lin great_bear_PN = mkPN "Great Bear" ; -lin great_britain_PN = mkPN "Great Britain" ; -lin great_dane_PN = mkPN "Great Dane" ; -lin great_depression_PN = mkPN "Great Depression" ; -lin great_divide_PN = mkPN "Great Divide" ; -lin great_dividing_range_PN = mkPN "Great Dividing Range" ; -lin great_falls_PN = mkPN "Great Falls" ; -lin great_lakes_PN = mkPN "Great Lakes" ; -lin great_plains_PN = mkPN "Great Plains" ; -lin great_pyrenees_PN = mkPN "Great Pyrenees" ; -lin great_rift_valley_PN = mkPN "Great Rift Valley" ; -lin great_russian_PN = mkPN "Great Russian" ; -lin great_salt_lake_PN = mkPN "Great Salt Lake" ; -lin great_sandy_desert_PN = mkPN "Great Sandy Desert" ; -lin great_schism_PN = mkPN "Great Schism" ; -lin great_seal_of_the_united_states_PN = mkPN "Great Seal of the United States" ; -lin great_slave_lake_PN = mkPN "Great Slave Lake" ; -lin great_smoky_mountains_PN = mkPN "Great Smoky Mountains" ; -lin great_smoky_mountains_national_park_PN = mkPN "Great Smoky Mountains National Park" ; -lin great_victoria_desert_PN = mkPN "Great Victoria Desert" ; -lin great_harwood_PN = mkPN "Great harwood"; -- from DictEng -lin great_malvern_PN = mkPN "Great malvern"; -- from DictEng -lin great_shelford_PN = mkPN "Great shelford"; -- from DictEng -lin great_yarmouth_PN = mkPN "Great yarmouth"; -- from DictEng -lin greater_antilles_PN = mkPN "Greater Antilles" ; -lin greater_new_orleans_bridge_PN = mkPN "Greater New Orleans Bridge" ; -lin greater_sunda_islands_PN = mkPN "Greater Sunda Islands" ; -lin greater_swiss_mountain_dog_PN = mkPN "Greater Swiss Mountain dog" ; -lin grecian_PN = mkPN "Grecian" ; -lin greco_roman_deity_PN = mkPN "Greco Roman deity" ; -lin greco_roman_wrestling_PN = mkPN "Greco Roman wrestling" ; -lin greece_PN = mkPN "Greece"; -- from DictEng -lin greek_A = compoundA (mkA "Greek"); -- from DictEng -lin greek_PN = mkPN "Greek" ; -lin greek_catholic_PN = mkPN "Greek Catholic" ; -lin greek_orthodox_church_PN = mkPN "Greek Orthodox Church" ; -lin greek_alphabet_PN = mkPN "Greek alphabet" ; -lin greek_architecture_PN = mkPN "Greek architecture" ; -lin greek_cross_PN = mkPN "Greek cross" ; -lin greek_deity_PN = mkPN "Greek deity" ; -lin greek_fire_PN = mkPN "Greek fire" ; -lin greek_mode_PN = mkPN "Greek mode" ; -lin greek_monetary_unit_PN = mkPN "Greek monetary unit" ; -lin greek_mythology_PN = mkPN "Greek mythology" ; -lin greek_partridge_PN = mkPN "Greek partridge" ; -lin greek_valerian_PN = mkPN "Greek valerian" ; -lin greeley_PN = mkPN "Greeley" ; -lin green_PN = mkPN "Green" ; -lin green_bay_PN = mkPN "Green Bay" ; -lin green_beret_PN = mkPN "Green Beret" ; -lin green_line_PN = mkPN "Green Line" ; -lin green_mountains_PN = mkPN "Green Mountains" ; -lin green_party_PN = mkPN "Green Party" ; -lin greenback_party_PN = mkPN "Greenback Party" ; -lin greenberg_PN = mkPN "Greenberg" ; -lin greene_PN = mkPN "Greene" ; -lin greenland_PN = mkPN "Greenland" ; -lin greenland_sea_PN = mkPN "Greenland Sea" ; -lin greenock_PN = mkPN "Greenock"; -- from DictEng -lin greenpeace_PN = mkPN "Greenpeace" ; -lin greensboro_PN = mkPN "Greensboro" ; -lin greenville_PN = mkPN "Greenville" ; -lin greenwich_PN = mkPN "Greenwich"; -- from DictEng -lin greenwich_mean_time_PN = mkPN "Greenwich Mean Time" ; -lin greenwich_meridian_PN = mkPN "Greenwich Meridian" ; -lin greenwich_village_PN = mkPN "Greenwich Village" ; -lin greg_PN = mkPN "Greg"; -- from DictEng -lin gregarinida_PN = mkPN "Gregarinida" ; -lin gregorian_A = compoundA (mkA "gregorian"); -- from DictEng -lin gregorian_calendar_PN = mkPN "Gregorian calendar" ; -lin gregorian_calendar_month_PN = mkPN "Gregorian calendar month" ; -lin gregory_PN = mkPN "Gregory"; -- from DictEng -lin grenada_PN = mkPN "Grenada"; -- from DictEng -lin grenada_dollar_PN = mkPN "Grenada dollar" ; -lin grenadian_A = compoundA (mkA "grenadian"); -- from DictEng -lin grenadian_PN = mkPN "Grenadian" ; -lin grenoble_PN = mkPN "Grenoble" ; -lin gresham_PN = mkPN "Gresham" ; -lin gresham's_law_PN = mkPN "Gresham's Law" ; -lin gretzky_PN = mkPN "Gretzky" ; -lin grewia_PN = mkPN "Grewia" ; -lin grey_PN = mkPN "Grey" ; -lin grias_PN = mkPN "Grias" ; -lin grieg_PN = mkPN "Grieg" ; -lin griffith_PN = mkPN "Griffith" ; -lin grim_reaper_PN = mkPN "Grim Reaper" ; -lin grimes'_golden_PN = mkPN "Grimes' golden" ; -lin grimethorpe_PN = mkPN "Grimethorpe"; -- from DictEng -lin grimm_PN = mkPN "Grimm" ; -lin grimm's_law_PN = mkPN "Grimm's law" ; -lin grimsby_PN = mkPN "Grimsby"; -- from DictEng -lin grindelia_PN = mkPN "Grindelia" ; -lin grindelia_robusta_PN = mkPN "Grindelia robusta" ; -lin grinstead_PN = mkPN "Grinstead"; -- from DictEng -lin gris_PN = mkPN "Gris" ; -lin griselinia_PN = mkPN "Griselinia" ; -lin groenlandia_PN = mkPN "Groenlandia" ; -lin gromyko_PN = mkPN "Gromyko" ; -lin groningen_PN = mkPN "Groningen"; -- from DictEng -lin gropius_PN = mkPN "Gropius" ; -lin grossulariaceae_PN = mkPN "Grossulariaceae" ; -lin grotius_PN = mkPN "Grotius" ; -lin groundhog_day_PN = mkPN "Groundhog Day" ; -lin groves_PN = mkPN "Groves" ; -lin grozny_PN = mkPN "Grozny" ; -lin grub_street_PN = mkPN "Grub Street" ; -lin gruidae_PN = mkPN "Gruidae" ; -lin gruiformes_PN = mkPN "Gruiformes" ; -lin grus_PN = mkPN "Grus" ; -lin gruyere_PN = mkPN "Gruyere" ; -lin gryllidae_PN = mkPN "Gryllidae" ; -lin guadalajara_PN = mkPN "Guadalajara"; -- from DictEng -lin guadalcanal_PN = mkPN "Guadalcanal" ; -lin guadalupe_island_PN = mkPN "Guadalupe Island" ; -lin guadalupe_mountains_PN = mkPN "Guadalupe Mountains" ; -lin guadalupe_mountains_national_park_PN = mkPN "Guadalupe Mountains National Park" ; -lin guadalupe_cypress_PN = mkPN "Guadalupe cypress" ; -lin guadeloupe_PN = mkPN "Guadeloupe" ; -lin guaiacum_PN = mkPN "Guaiacum" ; -lin guallatiri_PN = mkPN "Guallatiri" ; -lin guam_PN = mkPN "Guam" ; -lin guangdong_PN = mkPN "Guangdong" ; -lin guangzhou_PN = mkPN "Guangzhou" ; -lin guantanamo_PN = mkPN "Guantanamo" ; -lin guantanamo_bay_PN = mkPN "Guantanamo Bay" ; -lin guarani_PN = mkPN "Guarani" ; -lin guarneri_PN = mkPN "Guarneri" ; -lin guarnerius_PN = mkPN "Guarnerius" ; -lin guatemala_PN = mkPN "Guatemala"; -- from DictEng -lin guatemala_city_PN = mkPN "Guatemala city"; -- from DictEng -lin guatemalan_A = compoundA (mkA "guatemalan"); -- from DictEng -lin guatemalan_PN = mkPN "Guatemalan" ; -lin guatemalan_monetary_unit_PN = mkPN "Guatemalan monetary unit" ; -lin guayaquil_PN = mkPN "Guayaquil"; -- from DictEng -lin guernsey_PN = mkPN "Guernsey" ; -lin guest_PN = mkPN "Guest" ; -lin guevara_PN = mkPN "Guevara" ; -lin guevina_PN = mkPN "Guevina" ; -lin guggenheim_PN = mkPN "Guggenheim" ; -lin guiana_PN = mkPN "Guiana" ; -lin guiana_highlands_PN = mkPN "Guiana Highlands" ; -lin guildford_PN = mkPN "Guildford"; -- from DictEng -lin guillain_barre_syndrome_PN = mkPN "Guillain Barre syndrome" ; -lin guinea_PN = mkPN "Guinea"; -- from DictEng -lin guinea_bissau_PN = mkPN "Guinea Bissau" ; -lin guinea_bissau_monetary_unit_PN = mkPN "Guinea Bissau monetary unit" ; -lin guinea_bissau_peso_PN = mkPN "Guinea Bissau peso" ; -lin guinea_pepper_PN = mkPN "Guinea pepper" ; -lin guinea_worm_PN = mkPN "Guinea worm" ; -lin guinea_worm_disease_PN = mkPN "Guinea worm disease" ; -lin guinean_A = compoundA (mkA "guinean"); -- from DictEng -lin guinean_PN = mkPN "Guinean" ; -lin guinean_franc_PN = mkPN "Guinean franc" ; -lin guinean_monetary_unit_PN = mkPN "Guinean monetary unit" ; -lin guinevere_PN = mkPN "Guinevere" ; -lin guinness_PN = mkPN "Guinness" ; -lin guisborough_PN = mkPN "Guisborough"; -- from DictEng -lin gujarat_PN = mkPN "Gujarat" ; -lin gujarati_PN = mkPN "Gujarati" ; -lin gula_PN = mkPN "Gula" ; -lin gulf_coast_PN = mkPN "Gulf Coast" ; -lin gulf_states_PN = mkPN "Gulf States" ; -lin gulf_war_syndrome_PN = mkPN "Gulf War syndrome" ; -lin gulf_of_aden_PN = mkPN "Gulf of Aden" ; -lin gulf_of_alaska_PN = mkPN "Gulf of Alaska" ; -lin gulf_of_antalya_PN = mkPN "Gulf of Antalya" ; -lin gulf_of_aqaba_PN = mkPN "Gulf of Aqaba" ; -lin gulf_of_bothnia_PN = mkPN "Gulf of Bothnia" ; -lin gulf_of_california_PN = mkPN "Gulf of California" ; -lin gulf_of_campeche_PN = mkPN "Gulf of Campeche" ; -lin gulf_of_carpentaria_PN = mkPN "Gulf of Carpentaria" ; -lin gulf_of_corinth_PN = mkPN "Gulf of Corinth" ; -lin gulf_of_finland_PN = mkPN "Gulf of Finland" ; -lin gulf_of_guinea_PN = mkPN "Gulf of Guinea" ; -lin gulf_of_martaban_PN = mkPN "Gulf of Martaban" ; -lin gulf_of_mexico_PN = mkPN "Gulf of Mexico" ; -lin gulf_of_ob_PN = mkPN "Gulf of Ob" ; -lin gulf_of_oman_PN = mkPN "Gulf of Oman" ; -lin gulf_of_riga_PN = mkPN "Gulf of Riga" ; -lin gulf_of_saint_lawrence_PN = mkPN "Gulf of Saint Lawrence" ; -lin gulf_of_sidra_PN = mkPN "Gulf of Sidra" ; -lin gulf_of_suez_PN = mkPN "Gulf of Suez" ; -lin gulf_of_tehuantepec_PN = mkPN "Gulf of Tehuantepec" ; -lin gulf_of_thailand_PN = mkPN "Gulf of Thailand" ; -lin gulf_of_venice_PN = mkPN "Gulf of Venice" ; -lin gulf_stream_PN = mkPN "Gulf stream" ; -lin gulliver_PN = mkPN "Gulliver" ; -lin gulo_PN = mkPN "Gulo" ; -lin gulu_PN = mkPN "Gulu" ; -lin gunpowder_plot_PN = mkPN "Gunpowder Plot" ; -lin gunter's_chain_PN = mkPN "Gunter's chain" ; -lin gur_PN = mkPN "Gur" ; -lin gurkha_PN = mkPN "Gurkha" ; -lin guru_PN = mkPN "Guru" ; -lin gustavus_PN = mkPN "Gustavus" ; -lin gutenberg_PN = mkPN "Gutenberg" ; -lin guthrie_PN = mkPN "Guthrie" ; -lin gutierrezia_PN = mkPN "Gutierrezia" ; -lin guttiferae_PN = mkPN "Guttiferae" ; -lin guttiferales_PN = mkPN "Guttiferales" ; -lin guy_PN = mkPN "Guy"; -- from DictEng -lin guy's_PN = mkPN "Guy's"; -- from DictEng -lin guy_fawkes_day_PN = mkPN "Guy Fawkes Day" ; -lin guyana_PN = mkPN "Guyana"; -- from DictEng -lin guyana_dollar_PN = mkPN "Guyana dollar" ; -lin guyanese_A = compoundA (mkA "guyanese"); -- from DictEng -lin guyanese_PN = mkPN "Guyanese" ; -lin gwen_PN = mkPN "Gwen"; -- from DictEng -lin gwendoline_PN = mkPN "Gwendoline"; -- from DictEng -lin gwent_PN = mkPN "Gwent"; -- from DictEng -lin gwersyllt_PN = mkPN "Gwersyllt"; -- from DictEng -lin gwydion_PN = mkPN "Gwydion" ; -lin gwyn_PN = mkPN "Gwyn" ; -lin gwynedd_PN = mkPN "Gwynedd"; -- from DictEng -lin gwynn_PN = mkPN "Gwynn" ; -lin gymnadenia_PN = mkPN "Gymnadenia" ; -lin gymnadeniopsis_PN = mkPN "Gymnadeniopsis" ; -lin gymnelis_PN = mkPN "Gymnelis" ; -lin gymnocalycium_PN = mkPN "Gymnocalycium" ; -lin gymnocarpium_PN = mkPN "Gymnocarpium" ; -lin gymnocladus_PN = mkPN "Gymnocladus" ; -lin gymnogyps_PN = mkPN "Gymnogyps" ; -lin gymnophiona_PN = mkPN "Gymnophiona" ; -lin gymnopilus_PN = mkPN "Gymnopilus" ; -lin gymnopilus_spectabilis_PN = mkPN "Gymnopilus spectabilis" ; -lin gymnopilus_validipes_PN = mkPN "Gymnopilus validipes" ; -lin gymnopilus_ventricosus_PN = mkPN "Gymnopilus ventricosus" ; -lin gymnorhina_PN = mkPN "Gymnorhina" ; -lin gymnospermae_PN = mkPN "Gymnospermae" ; -lin gymnosporangium_PN = mkPN "Gymnosporangium" ; -lin gymnura_PN = mkPN "Gymnura" ; -lin gynura_PN = mkPN "Gynura" ; -lin gypaetus_PN = mkPN "Gypaetus" ; -lin gyps_PN = mkPN "Gyps" ; -lin gypsophila_PN = mkPN "Gypsophila" ; -lin gypsy_PN = mkPN "Gypsy" ; -lin gyrinidae_PN = mkPN "Gyrinidae" ; -lin gyromitra_californica_PN = mkPN "Gyromitra californica" ; -lin gyromitra_esculenta_PN = mkPN "Gyromitra esculenta" ; -lin gyromitra_fastigiata_PN = mkPN "Gyromitra fastigiata" ; -lin gyromitra_gigas_PN = mkPN "Gyromitra gigas" ; -lin gyromitra_infula_PN = mkPN "Gyromitra infula" ; -lin gyromitra_sphaerospora_PN = mkPN "Gyromitra sphaerospora" ; -lin h_PN = mkPN "H" ; -lin h_shaped_A = compoundA (mkA "H shaped") ; -lin hazmat_PN = mkPN "HAZMAT" ; -lin hdl_cholesterol_PN = mkPN "HDL cholesterol" ; -lin hiv_PN = mkPN "HIV" ; -lin hmg_coa_reductase_PN = mkPN "HMG CoA reductase" ; -lin haarlem_PN = mkPN "Haarlem"; -- from DictEng -lin haastia_PN = mkPN "Haastia" ; -lin habakkuk_PN = mkPN "Habakkuk" ; -lin habenaria_PN = mkPN "Habenaria" ; -lin haber_PN = mkPN "Haber" ; -lin haber_process_PN = mkPN "Haber process" ; -lin habsburg_PN = mkPN "Habsburg" ; -lin hachiman_PN = mkPN "Hachiman" ; -lin hackelia_PN = mkPN "Hackelia" ; -lin hackney_PN = mkPN "Hackney"; -- from DictEng -lin had_crime_PN = mkPN "Had crime" ; -lin haddington_PN = mkPN "Haddington"; -- from DictEng -lin hadean_A = mkA "Hadean" ; -lin hadean_PN = mkPN "Hadean" ; -lin hades_PN = mkPN "Hades"; -- from DictEng -lin hadith_PN = mkPN "Hadith" ; -lin hadrian_PN = mkPN "Hadrian" ; -lin hadrian's_wall_PN = mkPN "Hadrian's Wall" ; -lin hadrosauridae_PN = mkPN "Hadrosauridae" ; -lin haeckel_PN = mkPN "Haeckel" ; -lin haemanthus_PN = mkPN "Haemanthus" ; -lin haematobia_PN = mkPN "Haematobia" ; -lin haematopodidae_PN = mkPN "Haematopodidae" ; -lin haematopus_PN = mkPN "Haematopus" ; -lin haematoxylum_PN = mkPN "Haematoxylum" ; -lin haemodoraceae_PN = mkPN "Haemodoraceae" ; -lin haemodorum_PN = mkPN "Haemodorum" ; -lin haemopis_PN = mkPN "Haemopis" ; -lin haemoproteidae_PN = mkPN "Haemoproteidae" ; -lin haemoproteus_PN = mkPN "Haemoproteus" ; -lin haemosporidia_PN = mkPN "Haemosporidia" ; -lin haemulidae_PN = mkPN "Haemulidae" ; -lin haemulon_PN = mkPN "Haemulon" ; -lin haftorah_PN = mkPN "Haftorah" ; -lin haganah_PN = mkPN "Haganah" ; -lin hageman_factor_PN = mkPN "Hageman factor" ; -lin hagen_PN = mkPN "Hagen"; -- from DictEng -lin hagerstown_PN = mkPN "Hagerstown" ; -lin haggadah_PN = mkPN "Haggadah" ; -lin haggai_PN = mkPN "Haggai" ; -lin haggard_PN = mkPN "Haggard" ; -lin hagia_sophia_PN = mkPN "Hagia Sophia" ; -lin hagiographa_PN = mkPN "Hagiographa" ; -lin hagley_PN = mkPN "Hagley"; -- from DictEng -lin hahn_PN = mkPN "Hahn" ; -lin haida_PN = mkPN "Haida" ; -lin haile_selassie_PN = mkPN "Haile Selassie" ; -lin hailsham_PN = mkPN "Hailsham"; -- from DictEng -lin haiphong_PN = mkPN "Haiphong"; -- from DictEng -lin haiti_PN = mkPN "Haiti"; -- from DictEng -lin haitian_A = compoundA (mkA "haitian"); -- from DictEng -lin haitian_PN = mkPN "Haitian" ; -lin haitian_creole_PN = mkPN "Haitian Creole" ; -lin haitian_centime_PN = mkPN "Haitian centime" ; -lin haitian_monetary_unit_PN = mkPN "Haitian monetary unit" ; -lin hakea_PN = mkPN "Hakea" ; -lin hakham_PN = mkPN "Hakham" ; -lin hakka_PN = mkPN "Hakka" ; -lin hal_PN = mkPN "Hal"; -- from DictEng -lin halab_PN = mkPN "Halab" ; -lin halakah_PN = mkPN "Halakah" ; -lin halchidhoma_PN = mkPN "Halchidhoma" ; -lin halcyon_PN = mkPN "Halcyon" ; -lin haldane_PN = mkPN "Haldane" ; -lin haldea_PN = mkPN "Haldea" ; -lin hale_PN = mkPN "Hale" ; -lin haleakala_national_park_PN = mkPN "Haleakala National Park" ; -lin halenia_PN = mkPN "Halenia" ; -lin halesia_PN = mkPN "Halesia" ; -lin halesowen_PN = mkPN "Halesowen"; -- from DictEng -lin halevy_PN = mkPN "Halevy" ; -lin haley_PN = mkPN "Haley" ; -lin haliaeetus_PN = mkPN "Haliaeetus" ; -lin halicarnassus_PN = mkPN "Halicarnassus" ; -lin halicoeres_PN = mkPN "Halicoeres" ; -lin halictidae_PN = mkPN "Halictidae" ; -lin halifax_PN = mkPN "Halifax"; -- from DictEng -lin halimodendron_PN = mkPN "Halimodendron" ; -lin haliotidae_PN = mkPN "Haliotidae" ; -lin haliotis_PN = mkPN "Haliotis" ; -lin hall_PN = mkPN "Hall" ; -lin hall's_honeysuckle_PN = mkPN "Hall's honeysuckle" ; -lin hall_of_fame_PN = mkPN "Hall of Fame" ; -lin halle_PN = mkPN "Halle"; -- from DictEng -lin hallel_PN = mkPN "Hallel" ; -lin halley_PN = mkPN "Halley" ; -lin hallowe'en_PN = mkPN "Hallowe'en"; -- from DictEng -lin halloween_PN = mkPN "Halloween" ; -lin halocarpus_PN = mkPN "Halocarpus" ; -lin haloragidaceae_PN = mkPN "Haloragidaceae" ; -lin hals_PN = mkPN "Hals" ; -lin halstead_PN = mkPN "Halstead"; -- from DictEng -lin ham_PN = mkPN "Ham" ; -lin hamamelidaceae_PN = mkPN "Hamamelidaceae" ; -lin hamamelidae_PN = mkPN "Hamamelidae" ; -lin hamamelidanthum_PN = mkPN "Hamamelidanthum" ; -lin hamamelidoxylon_PN = mkPN "Hamamelidoxylon" ; -lin hamamelis_PN = mkPN "Hamamelis" ; -lin hamamelites_PN = mkPN "Hamamelites" ; -lin haman_PN = mkPN "Haman" ; -lin hamas_PN = mkPN "Hamas" ; -lin hamburg_PN = mkPN "Hamburg"; -- from DictEng -lin hamburg_parsley_PN = mkPN "Hamburg parsley" ; -lin hameln_PN = mkPN "Hameln" ; -lin hamhung_PN = mkPN "Hamhung"; -- from DictEng -lin hamilton_PN = mkPN "Hamilton"; -- from DictEng -lin haminoea_PN = mkPN "Haminoea" ; -lin hamitic_PN = mkPN "Hamitic" ; -lin hamlet_PN = mkPN "Hamlet" ; -lin hammarskjold_PN = mkPN "Hammarskjold" ; -lin hammersmith_PN = mkPN "Hammersmith"; -- from DictEng -lin hammerstein_PN = mkPN "Hammerstein" ; -lin hammett_PN = mkPN "Hammett" ; -lin hammurabi_PN = mkPN "Hammurabi" ; -lin hampreston_PN = mkPN "Hampreston"; -- from DictEng -lin hampshire_PN = mkPN "Hampshire"; -- from DictEng -lin hampton_PN = mkPN "Hampton" ; -lin hampton_roads_PN = mkPN "Hampton Roads" ; -lin hamsun_PN = mkPN "Hamsun" ; -lin han_PN = mkPN "Han" ; -lin hancock_PN = mkPN "Hancock" ; -lin hand_schuller_christian_disease_PN = mkPN "Hand Schuller Christian disease" ; -lin handel_PN = mkPN "Handel" ; -lin handelian_A = mkA "Handelian" ; -lin handies_peak_PN = mkPN "Handies Peak" ; -lin handy_PN = mkPN "Handy" ; -lin hangchon_PN = mkPN "Hangchon"; -- from DictEng -lin hanging_gardens_of_babylon_PN = mkPN "Hanging Gardens of Babylon" ; -lin hangzhou_PN = mkPN "Hangzhou" ; -lin hangzhou_bay_PN = mkPN "Hangzhou Bay" ; -lin hani_PN = mkPN "Hani" ; -lin hanks_PN = mkPN "Hanks" ; -lin hannibal_PN = mkPN "Hannibal" ; -lin hannover_PN = mkPN "Hannover" ; -lin hanoi_PN = mkPN "Hanoi"; -- from DictEng -lin hanover_PN = mkPN "Hanover"; -- from DictEng -lin hanoverian_A = mkA "Hanoverian" ; -lin hanoverian_PN = mkPN "Hanoverian" ; -lin hansard_PN = mkPN "Hansard" ; -lin hanseatic_league_PN = mkPN "Hanseatic League" ; -lin hanukkah_PN = mkPN "Hanukkah" ; -lin hanuman_PN = mkPN "Hanuman" ; -lin haplopappus_PN = mkPN "Haplopappus" ; -lin haplosporidia_PN = mkPN "Haplosporidia" ; -lin harare_PN = mkPN "Harare" ; -lin harbin_PN = mkPN "Harbin"; -- from DictEng -lin hardenbergia_PN = mkPN "Hardenbergia" ; -lin harding_PN = mkPN "Harding" ; -lin hardy_PN = mkPN "Hardy" ; -lin hare_krishna_PN = mkPN "Hare Krishna" ; -lin haredi_PN = mkPN "Haredi" ; -lin hargeisa_PN = mkPN "Hargeisa" ; -lin hargreaves_PN = mkPN "Hargreaves" ; -lin haringey_PN = mkPN "Haringey"; -- from DictEng -lin harkat_ul_jihad_e_islami_PN = mkPN "Harkat ul Jihad e Islami" ; -lin harkat_ul_mujahidin_PN = mkPN "Harkat ul Mujahidin" ; -lin harlem_PN = mkPN "Harlem" ; -lin harlem_renaissance_PN = mkPN "Harlem Renaissance" ; -lin harlem_river_PN = mkPN "Harlem River" ; -lin harley_street_PN = mkPN "Harley street"; -- from DictEng -lin harlow_PN = mkPN "Harlow"; -- from DictEng -lin harmsworth_PN = mkPN "Harmsworth" ; -lin harold_PN = mkPN "Harold"; -- from DictEng -lin harold_i_PN = mkPN "Harold I" ; -lin harold_ii_PN = mkPN "Harold II" ; -lin harpenden_PN = mkPN "Harpenden"; -- from DictEng -lin harpers_ferry_PN = mkPN "Harpers Ferry" ; -lin harpia_PN = mkPN "Harpia" ; -lin harpy_PN = mkPN "Harpy" ; -lin harriet_PN = mkPN "Harriet"; -- from DictEng -lin harriman_PN = mkPN "Harriman" ; -lin harris_PN = mkPN "Harris" ; -lin harris_tweed_PN = mkPN "Harris Tweed" ; -lin harrisburg_PN = mkPN "Harrisburg" ; -lin harrisia_PN = mkPN "Harrisia" ; -lin harrison_PN = mkPN "Harrison" ; -lin harrod_PN = mkPN "Harrod" ; -lin harrogate_PN = mkPN "Harrogate"; -- from DictEng -lin harrow_PN = mkPN "Harrow"; -- from DictEng -lin harry_PN = mkPN "Harry"; -- from DictEng -lin hart_PN = mkPN "Hart" ; -lin harte_PN = mkPN "Harte" ; -lin hartford_PN = mkPN "Hartford" ; -lin hartlepool_PN = mkPN "Hartlepool"; -- from DictEng -lin hartley_PN = mkPN "Hartley"; -- from DictEng -lin harvard_PN = mkPN "Harvard" ; -lin harvard_university_PN = mkPN "Harvard University" ; -lin harvey_PN = mkPN "Harvey"; -- from DictEng -lin harvey_wallbanger_PN = mkPN "Harvey Wallbanger" ; -lin harwich_PN = mkPN "Harwich"; -- from DictEng -lin harwood_PN = mkPN "Harwood"; -- from DictEng -lin harworth_PN = mkPN "Harworth"; -- from DictEng -lin hasdrubal_PN = mkPN "Hasdrubal" ; -lin hasek_PN = mkPN "Hasek" ; -lin hashimoto's_disease_PN = mkPN "Hashimoto's disease" ; -lin hasid_PN = mkPN "Hasid" ; -lin hasidic_A = mkA "Hasidic" ; -lin hasidim_PN = mkPN "Hasidim" ; -lin hasidism_PN = mkPN "Hasidism" ; -lin haslemere_PN = mkPN "Haslemere"; -- from DictEng -lin haslingden_PN = mkPN "Haslingden"; -- from DictEng -lin hassam_PN = mkPN "Hassam" ; -lin hassel_PN = mkPN "Hassel" ; -lin hastinapura_PN = mkPN "Hastinapura" ; -lin hastings_PN = mkPN "Hastings"; -- from DictEng -lin hatfield_PN = mkPN "Hatfield"; -- from DictEng -lin hathaway_PN = mkPN "Hathaway" ; -lin hatiora_PN = mkPN "Hatiora" ; -lin hatteras_island_PN = mkPN "Hatteras Island" ; -lin hattiesburg_PN = mkPN "Hattiesburg" ; -lin hausa_PN = mkPN "Hausa" ; -lin haute_normandie_PN = mkPN "Haute Normandie" ; -lin havana_PN = mkPN "Havana"; -- from DictEng -lin havasupai_PN = mkPN "Havasupai" ; -lin havel_PN = mkPN "Havel" ; -lin haverfordwest_PN = mkPN "Haverfordwest"; -- from DictEng -lin haverhill_PN = mkPN "Haverhill"; -- from DictEng -lin haverhill_fever_PN = mkPN "Haverhill fever" ; -lin havering_PN = mkPN "Havering"; -- from DictEng -lin haversian_canal_PN = mkPN "Haversian canal" ; -lin hawaii_PN = mkPN "Hawaii"; -- from DictEng -lin hawaii_time_PN = mkPN "Hawaii Time" ; -lin hawaii_volcanoes_national_park_PN = mkPN "Hawaii Volcanoes National Park" ; -lin hawaiian_A = mkA "Hawaiian" ; -lin hawaiian_PN = mkPN "Hawaiian" ; -lin hawaiian_islands_PN = mkPN "Hawaiian Islands" ; -lin hawaiian_guitar_PN = mkPN "Hawaiian guitar" ; -lin hawick_PN = mkPN "Hawick"; -- from DictEng -lin hawke's_bay_PN = mkPN "Hawke's bay"; -- from DictEng -lin hawking_PN = mkPN "Hawking" ; -lin hawkins_PN = mkPN "Hawkins" ; -lin haworth_PN = mkPN "Haworth" ; -lin hawthorne_PN = mkPN "Hawthorne" ; -lin haydn_PN = mkPN "Haydn" ; -lin hayek_PN = mkPN "Hayek" ; -lin hayes_PN = mkPN "Hayes" ; -lin hayling_PN = mkPN "Hayling"; -- from DictEng -lin hays_PN = mkPN "Hays" ; -lin haywards_heath_PN = mkPN "Haywards heath"; -- from DictEng -lin haywood_PN = mkPN "Haywood" ; -lin hazardia_PN = mkPN "Hazardia" ; -lin hazel_PN = mkPN "Hazel"; -- from DictEng -lin hazlitt_PN = mkPN "Hazlitt" ; -lin heanor_PN = mkPN "Heanor"; -- from DictEng -lin hearst_PN = mkPN "Hearst" ; -lin heather_PN = mkPN "Heather"; -- from DictEng -lin heaven_PN = mkPN "Heaven" ; -lin heaviside_PN = mkPN "Heaviside"; -- from DictEng -lin heaviside_layer_PN = mkPN "Heaviside layer" ; -lin hebbel_PN = mkPN "Hebbel" ; -lin hebden_royal_PN = mkPN "Hebden royal"; -- from DictEng -lin hebe_PN = mkPN "Hebe" ; -lin hebei_PN = mkPN "Hebei" ; -lin hebraic_A = compoundA (mkA "hebraic"); -- from DictEng -lin hebraist_PN = mkPN "Hebraist" ; -lin hebrew_PN = mkPN "Hebrew" ; -lin hebrew_alphabet_PN = mkPN "Hebrew alphabet" ; -lin hebrew_lesson_PN = mkPN "Hebrew lesson" ; -lin hebrews_PN = mkPN "Hebrews" ; -lin hebridean_A = mkA "Hebridean" ; -lin hebrides_PN = mkPN "Hebrides" ; -lin hecate_PN = mkPN "Hecate" ; -lin hecht_PN = mkPN "Hecht" ; -lin hector_PN = mkPN "Hector" ; -lin hedeoma_PN = mkPN "Hedeoma" ; -lin hedera_PN = mkPN "Hedera" ; -lin hedge_end_PN = mkPN "Hedge end"; -- from DictEng -lin hedysarum_PN = mkPN "Hedysarum" ; -lin hefa_PN = mkPN "Hefa" ; -lin hegel_PN = mkPN "Hegel" ; -lin hegelian_A = mkA "Hegelian" ; -lin hegelian_PN = mkPN "Hegelian" ; -lin hegira_PN = mkPN "Hegira" ; -lin heidegger_PN = mkPN "Heidegger" ; -lin heidelberg_man_PN = mkPN "Heidelberg man" ; -lin heidelburg_PN = mkPN "Heidelburg"; -- from DictEng -lin heimdall_PN = mkPN "Heimdall" ; -lin heimlich_maneuver_PN = mkPN "Heimlich maneuver" ; -lin heinlein_PN = mkPN "Heinlein" ; -lin heinz_PN = mkPN "Heinz" ; -lin heisenberg_PN = mkPN "Heisenberg" ; -lin hejaz_PN = mkPN "Hejaz" ; -lin hel_PN = mkPN "Hel" ; -lin helen_PN = mkPN "Helen"; -- from DictEng -lin helena_PN = mkPN "Helena" ; -lin helenium_PN = mkPN "Helenium" ; -lin helensburgh_PN = mkPN "Helensburgh"; -- from DictEng -lin heliamphora_PN = mkPN "Heliamphora" ; -lin helichrysum_PN = mkPN "Helichrysum" ; -lin helicidae_PN = mkPN "Helicidae" ; -lin helicteres_PN = mkPN "Helicteres" ; -lin heliobacter_PN = mkPN "Heliobacter" ; -lin heliobacter_pylori_PN = mkPN "Heliobacter pylori" ; -lin helios_PN = mkPN "Helios" ; -lin heliothis_PN = mkPN "Heliothis" ; -lin heliozoa_PN = mkPN "Heliozoa" ; -lin helipterum_PN = mkPN "Helipterum" ; -lin helix_PN = mkPN "Helix" ; -lin helix_hortensis_PN = mkPN "Helix hortensis" ; -lin hell_PN = mkPN "Hell" ; -lin hell's_kitchen_PN = mkPN "Hell's Kitchen" ; -lin helladic_civilization_PN = mkPN "Helladic civilization" ; -lin helleborus_PN = mkPN "Helleborus" ; -lin hellenic_A = compoundA (mkA "hellenic"); -- from DictEng -lin hellenism_PN = mkPN "Hellenism" ; -lin heller_PN = mkPN "Heller" ; -lin hellman_PN = mkPN "Hellman" ; -lin helmholtz_PN = mkPN "Helmholtz" ; -lin helminthostachys_PN = mkPN "Helminthostachys" ; -lin heloderma_PN = mkPN "Heloderma" ; -lin helodermatidae_PN = mkPN "Helodermatidae" ; -lin heloise_PN = mkPN "Heloise" ; -lin helotiaceae_PN = mkPN "Helotiaceae" ; -lin helotiales_PN = mkPN "Helotiales" ; -lin helotium_PN = mkPN "Helotium" ; -lin helsinki_PN = mkPN "Helsinki"; -- from DictEng -lin helston_PN = mkPN "Helston"; -- from DictEng -lin helvella_acetabulum_PN = mkPN "Helvella acetabulum" ; -lin helvella_crispa_PN = mkPN "Helvella crispa" ; -lin helvella_sulcata_PN = mkPN "Helvella sulcata" ; -lin helvellaceae_PN = mkPN "Helvellaceae" ; -lin helwingia_PN = mkPN "Helwingia" ; -lin helxine_PN = mkPN "Helxine" ; -lin hemachatus_PN = mkPN "Hemachatus" ; -lin hemel_hempstead_PN = mkPN "Hemel hempstead"; -- from DictEng -lin hemerobiidae_PN = mkPN "Hemerobiidae" ; -lin hemerocallidaceae_PN = mkPN "Hemerocallidaceae" ; -lin hemerocallis_PN = mkPN "Hemerocallis" ; -lin hemiascomycetes_PN = mkPN "Hemiascomycetes" ; -lin hemigalus_PN = mkPN "Hemigalus" ; -lin hemigrammus_PN = mkPN "Hemigrammus" ; -lin heming_PN = mkPN "Heming" ; -lin hemingway_PN = mkPN "Hemingway" ; -lin hemingwayesque_A = mkA "Hemingwayesque" ; -lin hemiprocnidae_PN = mkPN "Hemiprocnidae" ; -lin hemiptera_PN = mkPN "Hemiptera" ; -lin hemipteronatus_PN = mkPN "Hemipteronatus" ; -lin hemiramphidae_PN = mkPN "Hemiramphidae" ; -lin hemitripterus_PN = mkPN "Hemitripterus" ; -lin hemsworth_PN = mkPN "Hemsworth"; -- from DictEng -lin hendrix_PN = mkPN "Hendrix" ; -lin henley_on_thames_PN = mkPN "Henley - on - thames"; -- from DictEng -lin henry_PN = mkPN "Henry"; -- from DictEng -lin henry's_law_PN = mkPN "Henry's law" ; -lin henry_i_PN = mkPN "Henry I" ; -lin henry_ii_PN = mkPN "Henry II" ; -lin henry_iii_PN = mkPN "Henry III" ; -lin henry_iv_PN = mkPN "Henry IV" ; -lin henry_v_PN = mkPN "Henry V" ; -lin henry_vi_PN = mkPN "Henry VI" ; -lin henry_vii_PN = mkPN "Henry VII" ; -lin henry_viii_PN = mkPN "Henry VIII" ; -lin henson_PN = mkPN "Henson" ; -lin hepaticopsida_PN = mkPN "Hepaticopsida" ; -lin hepburn_PN = mkPN "Hepburn" ; -lin hephaestus_PN = mkPN "Hephaestus" ; -lin hepworth_PN = mkPN "Hepworth" ; -lin hera_PN = mkPN "Hera" ; -lin heracleum_PN = mkPN "Heracleum" ; -lin heraclitus_PN = mkPN "Heraclitus" ; -lin herat_PN = mkPN "Herat" ; -lin herb_PN = mkPN "Herb"; -- from DictEng -lin herbart_PN = mkPN "Herbart" ; -lin herbert_PN = mkPN "Herbert"; -- from DictEng -lin herculaneum_PN = mkPN "Herculaneum" ; -lin hercules_PN = mkPN "Hercules" ; -lin hercules'_club_PN = mkPN "Hercules' club" ; -lin herder_PN = mkPN "Herder" ; -lin hereford_PN = mkPN "Hereford"; -- from DictEng -lin herero_PN = mkPN "Herero" ; -lin heritiera_PN = mkPN "Heritiera" ; -lin herman_PN = mkPN "Herman" ; -lin hermannia_PN = mkPN "Hermannia" ; -lin hermaphroditus_PN = mkPN "Hermaphroditus" ; -lin hermes_PN = mkPN "Hermes" ; -lin hermissenda_PN = mkPN "Hermissenda" ; -lin hermissenda_crassicornis_PN = mkPN "Hermissenda crassicornis" ; -lin hermosillo_PN = mkPN "Hermosillo" ; -lin hernaria_PN = mkPN "Hernaria" ; -lin herne_PN = mkPN "Herne"; -- from DictEng -lin herne_bay_PN = mkPN "Herne bay"; -- from DictEng -lin hero_PN = mkPN "Hero" ; -lin herod_PN = mkPN "Herod" ; -lin herodotus_PN = mkPN "Herodotus" ; -lin herpestes_PN = mkPN "Herpestes" ; -lin herr_PN = mkPN "Herr" ; -lin herrick_PN = mkPN "Herrick" ; -lin herschel_PN = mkPN "Herschel" ; -lin herschelian_telescope_PN = mkPN "Herschelian telescope" ; -lin hershey_PN = mkPN "Hershey" ; -lin hershey_bar_PN = mkPN "Hershey bar" ; -lin hertford_PN = mkPN "Hertford"; -- from DictEng -lin hertfordshire_PN = mkPN "Hertfordshire"; -- from DictEng -lin hertz_PN = mkPN "Hertz" ; -lin hertzian_A = compoundA (mkA "hertzian"); -- from DictEng -lin hertzian_wave_PN = mkPN "Hertzian wave" ; -lin herzberg_PN = mkPN "Herzberg" ; -lin heshvan_PN = mkPN "Heshvan" ; -lin hesiod_PN = mkPN "Hesiod" ; -lin hesperides_PN = mkPN "Hesperides" ; -lin hesperiphona_PN = mkPN "Hesperiphona" ; -lin hesperis_PN = mkPN "Hesperis" ; -lin hess_PN = mkPN "Hess" ; -lin hesse_PN = mkPN "Hesse" ; -lin hessian_boot_PN = mkPN "Hessian boot" ; -lin hessian_fly_PN = mkPN "Hessian fly" ; -lin hestia_PN = mkPN "Hestia" ; -lin heteranthera_PN = mkPN "Heteranthera" ; -lin heterobasidiomycetes_PN = mkPN "Heterobasidiomycetes" ; -lin heterocephalus_PN = mkPN "Heterocephalus" ; -lin heterodon_PN = mkPN "Heterodon" ; -lin heterokontophyta_PN = mkPN "Heterokontophyta" ; -lin heteromeles_PN = mkPN "Heteromeles" ; -lin heteromyidae_PN = mkPN "Heteromyidae" ; -lin heteroptera_PN = mkPN "Heteroptera" ; -lin heteroscelus_PN = mkPN "Heteroscelus" ; -lin heterosomata_PN = mkPN "Heterosomata" ; -lin heterostraci_PN = mkPN "Heterostraci" ; -lin heterotheca_PN = mkPN "Heterotheca" ; -lin heterotrichales_PN = mkPN "Heterotrichales" ; -lin hetton_PN = mkPN "Hetton"; -- from DictEng -lin heuchera_PN = mkPN "Heuchera" ; -lin hevea_PN = mkPN "Hevea" ; -lin hevesy_PN = mkPN "Hevesy" ; -lin hexagrammidae_PN = mkPN "Hexagrammidae" ; -lin hexagrammos_PN = mkPN "Hexagrammos" ; -lin hexalectris_PN = mkPN "Hexalectris" ; -lin hexamita_PN = mkPN "Hexamita" ; -lin hexanchidae_PN = mkPN "Hexanchidae" ; -lin hexanchus_PN = mkPN "Hexanchus" ; -lin hexham_PN = mkPN "Hexham"; -- from DictEng -lin heyerdahl_PN = mkPN "Heyerdahl" ; -lin heyrovsky_PN = mkPN "Heyrovsky" ; -lin heyse_PN = mkPN "Heyse" ; -lin heysham_PN = mkPN "Heysham"; -- from DictEng -lin heyward_PN = mkPN "Heyward" ; -lin heywood_PN = mkPN "Heywood"; -- from DictEng -lin hezekiah_PN = mkPN "Hezekiah" ; -lin hiawatha_PN = mkPN "Hiawatha" ; -lin hibbertia_PN = mkPN "Hibbertia" ; -lin hibbing_PN = mkPN "Hibbing" ; -lin hickock_PN = mkPN "Hickock" ; -lin hidatsa_PN = mkPN "Hidatsa" ; -lin hieracium_PN = mkPN "Hieracium" ; -lin higginson_PN = mkPN "Higginson" ; -lin high_church_PN = mkPN "High Church" ; -lin high_commission_PN = mkPN "High Commission" ; -lin high_holy_day_PN = mkPN "High Holy Day" ; -lin high_mass_PN = mkPN "High Mass" ; -lin high_renaissance_PN = mkPN "High Renaissance" ; -lin high_spen_PN = mkPN "High spen"; -- from DictEng -lin high_wycombe_PN = mkPN "High wycombe"; -- from DictEng -lin higher_national_diploma_PN = mkPN "Higher National Diploma" ; -lin highland_PN = mkPN "Highland"; -- from DictEng -lin highlander_PN = mkPN "Highlander" ; -lin highlands_PN = mkPN "Highlands" ; -lin highness_PN = mkPN "Highness" ; -lin highway_code_PN = mkPN "Highway Code" ; -lin higi_PN = mkPN "Higi" ; -lin hilary_PN = mkPN "Hilary"; -- from DictEng -lin hilbert_PN = mkPN "Hilbert" ; -lin hilbert_space_PN = mkPN "Hilbert space" ; -lin hilda_PN = mkPN "Hilda"; -- from DictEng -lin hill_PN = mkPN "Hill" ; -lin hillary_PN = mkPN "Hillary" ; -lin hillel_PN = mkPN "Hillel" ; -lin hillingdon_PN = mkPN "Hillingdon"; -- from DictEng -lin hilo_PN = mkPN "Hilo" ; -lin himalaya_honeysuckle_PN = mkPN "Himalaya honeysuckle" ; -lin himalayan_A = mkA "Himalayan" ; -lin himalayan_lilac_PN = mkPN "Himalayan lilac" ; -lin himalayan_rhubarb_PN = mkPN "Himalayan rhubarb" ; -lin himalayas_PN = mkPN "Himalayas" ; -lin himalayish_PN = mkPN "Himalayish" ; -lin himantoglossum_PN = mkPN "Himantoglossum" ; -lin himantopus_PN = mkPN "Himantopus" ; -lin himmler_PN = mkPN "Himmler" ; -lin hinault_PN = mkPN "Hinault" ; -lin hinayana_PN = mkPN "Hinayana" ; -lin hinayanism_PN = mkPN "Hinayanism" ; -lin hinayanist_PN = mkPN "Hinayanist" ; -lin hinckley_PN = mkPN "Hinckley"; -- from DictEng -lin hindemith_PN = mkPN "Hindemith" ; -lin hindenburg_PN = mkPN "Hindenburg" ; -lin hindi_PN = mkPN "Hindi" ; -lin hindu_A = compoundA (mkA "hindu"); -- from DictEng -lin hindu_PN = mkPN "Hindu" ; -lin hindu_kush_PN = mkPN "Hindu Kush" ; -lin hindu_calendar_PN = mkPN "Hindu calendar" ; -lin hindu_calendar_month_PN = mkPN "Hindu calendar month" ; -lin hindu_deity_PN = mkPN "Hindu deity" ; -lin hinduism_PN = mkPN "Hinduism" ; -lin hindustan_PN = mkPN "Hindustan" ; -lin hindustani_A = compoundA (mkA "hindustani"); -- from DictEng -lin hindustani_PN = mkPN "Hindustani" ; -lin hipparchus_PN = mkPN "Hipparchus" ; -lin hippo_PN = mkPN "Hippo" ; -lin hippobosca_PN = mkPN "Hippobosca" ; -lin hippoboscidae_PN = mkPN "Hippoboscidae" ; -lin hippocampus_PN = mkPN "Hippocampus" ; -lin hippocastanaceae_PN = mkPN "Hippocastanaceae" ; -lin hippocrates_PN = mkPN "Hippocrates" ; -lin hippocratic_A = compoundA (mkA "hippocratic"); -- from DictEng -lin hippocratic_oath_PN = mkPN "Hippocratic oath" ; -lin hippocrepis_PN = mkPN "Hippocrepis" ; -lin hippodamia_PN = mkPN "Hippodamia" ; -lin hippodamia_convergens_PN = mkPN "Hippodamia convergens" ; -lin hippoglossoides_PN = mkPN "Hippoglossoides" ; -lin hippoglossus_PN = mkPN "Hippoglossus" ; -lin hippopotamidae_PN = mkPN "Hippopotamidae" ; -lin hipposideridae_PN = mkPN "Hipposideridae" ; -lin hipposideros_PN = mkPN "Hipposideros" ; -lin hippotragus_PN = mkPN "Hippotragus" ; -lin hipsurus_PN = mkPN "Hipsurus" ; -lin hirohito_PN = mkPN "Hirohito" ; -lin hiroshima_PN = mkPN "Hiroshima"; -- from DictEng -lin hirschfeld_PN = mkPN "Hirschfeld" ; -lin hirschsprung_PN = mkPN "Hirschsprung" ; -lin hirschsprung's_disease_PN = mkPN "Hirschsprung's disease" ; -lin hirudinea_PN = mkPN "Hirudinea" ; -lin hirudinidae_PN = mkPN "Hirudinidae" ; -lin hirudo_PN = mkPN "Hirudo" ; -lin hirundinidae_PN = mkPN "Hirundinidae" ; -lin hirundo_PN = mkPN "Hirundo" ; -lin hispanic_A = mkA "Hispanic" ; -lin hispaniola_PN = mkPN "Hispaniola" ; -lin hispaniolan_A = mkA "Hispaniolan" ; -lin hitchcock_PN = mkPN "Hitchcock" ; -lin hitchin_PN = mkPN "Hitchin"; -- from DictEng -lin hitchings_PN = mkPN "Hitchings" ; -lin hitchiti_PN = mkPN "Hitchiti" ; -lin hitler_PN = mkPN "Hitler" ; -lin hitlerian_A = mkA "Hitlerian" ; -lin hittite_A = mkA "Hittite" ; -lin hittite_PN = mkPN "Hittite" ; -lin hizb_ut_tahrir_PN = mkPN "Hizb ut Tahrir" ; -lin hizballah_PN = mkPN "Hizballah" ; -lin hm_PN = mkPN "Hm"; -- from DictEng -lin hmong_A = mkA "Hmong" ; -lin hmong_PN = mkPN "Hmong" ; -lin hmso_PN = mkPN "Hmso"; -- from DictEng -lin ho_chi_minh_PN = mkPN "Ho Chi Minh" ; -lin ho_chi_minh_city_PN = mkPN "Ho Chi Minh City" ; -lin hoagland_PN = mkPN "Hoagland" ; -lin hobart_PN = mkPN "Hobart" ; -lin hobbes_PN = mkPN "Hobbes" ; -lin hobbs_PN = mkPN "Hobbs" ; -lin hobson_PN = mkPN "Hobson"; -- from DictEng -lin hobson's_choice_PN = mkPN "Hobson's choice" ; -lin hockley_PN = mkPN "Hockley"; -- from DictEng -lin hoddesdon_PN = mkPN "Hoddesdon"; -- from DictEng -lin hodeida_PN = mkPN "Hodeida" ; -lin hodgkin_PN = mkPN "Hodgkin" ; -lin hodgkin's_disease_PN = mkPN "Hodgkin's disease" ; -lin hoenir_PN = mkPN "Hoenir" ; -lin hofei_PN = mkPN "Hofei"; -- from DictEng -lin hoffa_PN = mkPN "Hoffa" ; -lin hoffman_PN = mkPN "Hoffman" ; -lin hoffmann_PN = mkPN "Hoffmann" ; -lin hoffmannsthal_PN = mkPN "Hoffmannsthal" ; -lin hogan_PN = mkPN "Hogan" ; -lin hogarth_PN = mkPN "Hogarth" ; -lin hogg_PN = mkPN "Hogg" ; -lin hogmanay_PN = mkPN "Hogmanay"; -- from DictEng -lin hohenlinden_PN = mkPN "Hohenlinden" ; -lin hohenzollern_PN = mkPN "Hohenzollern" ; -lin hohenzollern_empire_PN = mkPN "Hohenzollern empire" ; -lin hoheria_PN = mkPN "Hoheria" ; -lin hohhot_PN = mkPN "Hohhot" ; -lin hokan_PN = mkPN "Hokan" ; -lin hokkaido_PN = mkPN "Hokkaido" ; -lin hokusai_PN = mkPN "Hokusai" ; -lin holarrhena_PN = mkPN "Holarrhena" ; -lin holbein_PN = mkPN "Holbein" ; -lin holbrookia_PN = mkPN "Holbrookia" ; -lin holcus_PN = mkPN "Holcus" ; -lin holland_PN = mkPN "Holland"; -- from DictEng -lin hollerith_PN = mkPN "Hollerith" ; -lin holly_PN = mkPN "Holly" ; -lin hollywood_A = mkA "Hollywood" ; -lin hollywood_PN = mkPN "Hollywood"; -- from DictEng -lin holmes_PN = mkPN "Holmes" ; -lin holmfirth_PN = mkPN "Holmfirth"; -- from DictEng -lin holocaust_PN = mkPN "Holocaust" ; -lin holocene_PN = mkPN "Holocene" ; -lin holocentridae_PN = mkPN "Holocentridae" ; -lin holocentrus_PN = mkPN "Holocentrus" ; -lin holocentrus_ascensionis_PN = mkPN "Holocentrus ascensionis" ; -lin holocephali_PN = mkPN "Holocephali" ; -lin holofernes_PN = mkPN "Holofernes" ; -lin holothuria_PN = mkPN "Holothuria" ; -lin holothuridae_PN = mkPN "Holothuridae" ; -lin holothuroidea_PN = mkPN "Holothuroidea" ; -lin holy_eucharist_PN = mkPN "Holy Eucharist" ; -lin holy_ghost_PN = mkPN "Holy Ghost" ; -lin holy_innocents'_day_PN = mkPN "Holy Innocents' Day" ; -lin holy_order_PN = mkPN "Holy Order" ; -lin holy_roller_PN = mkPN "Holy Roller" ; -lin holy_roman_emperor_PN = mkPN "Holy Roman Emperor" ; -lin holy_roman_empire_PN = mkPN "Holy Roman Empire" ; -lin holy_saturday_PN = mkPN "Holy Saturday" ; -lin holy_see_PN = mkPN "Holy See" ; -lin holy_sepulcher_PN = mkPN "Holy Sepulcher" ; -lin holy_week_PN = mkPN "Holy Week" ; -lin holy_year_PN = mkPN "Holy Year" ; -lin holyhead_PN = mkPN "Holyhead"; -- from DictEng -lin homaridae_PN = mkPN "Homaridae" ; -lin homarus_PN = mkPN "Homarus" ; -lin home_counties_PN = mkPN "Home Counties" ; -lin home_loan_bank_PN = mkPN "Home Loan Bank" ; -lin home_office_PN = mkPN "Home Office" ; -lin home_secretary_PN = mkPN "Home Secretary" ; -lin homer_PN = mkPN "Homer" ; -lin homeric_A = compoundA (mkA "homeric"); -- from DictEng -lin hominidae_PN = mkPN "Hominidae" ; -lin hominoidea_PN = mkPN "Hominoidea" ; -lin homo_erectus_PN = mkPN "Homo erectus" ; -lin homo_habilis_PN = mkPN "Homo habilis" ; -lin homo_sapiens_PN = mkPN "Homo sapiens" ; -lin homo_sapiens_sapiens_PN = mkPN "Homo sapiens sapiens" ; -lin homo_soloensis_PN = mkPN "Homo soloensis" ; -lin homobasidiomycetes_PN = mkPN "Homobasidiomycetes" ; -lin homogyne_PN = mkPN "Homogyne" ; -lin homona_PN = mkPN "Homona" ; -lin homoptera_PN = mkPN "Homoptera" ; -lin homyel_PN = mkPN "Homyel" ; -lin hon_PN = mkPN "Hon"; -- from DictEng -lin honduran_A = compoundA (mkA "honduran"); -- from DictEng -lin honduran_PN = mkPN "Honduran" ; -lin honduran_monetary_unit_PN = mkPN "Honduran monetary unit" ; -lin honduras_PN = mkPN "Honduras"; -- from DictEng -lin honduras_mahogany_PN = mkPN "Honduras mahogany" ; -lin honduras_rosewood_PN = mkPN "Honduras rosewood" ; -lin honegger_PN = mkPN "Honegger" ; -lin hong_kong_PN = mkPN "Hong kong"; -- from DictEng -lin hong_kong_dollar_PN = mkPN "Hong Kong dollar" ; -lin honiara_PN = mkPN "Honiara" ; -lin honiton_PN = mkPN "Honiton"; -- from DictEng -lin honolulu_PN = mkPN "Honolulu" ; -lin honshu_PN = mkPN "Honshu" ; -lin hoo_PN = mkPN "Hoo"; -- from DictEng -lin hook_of_holland_PN = mkPN "Hook of Holland" ; -lin hooke_PN = mkPN "Hooke" ; -lin hooke's_law_PN = mkPN "Hooke's law" ; -lin hooker_PN = mkPN "Hooker" ; -lin hooker's_green_PN = mkPN "Hooker's green" ; -lin hooker's_onion_PN = mkPN "Hooker's onion" ; -lin hooker's_orchid_PN = mkPN "Hooker's orchid" ; -lin hooray_henry_PN = mkPN "Hooray Henry" ; -lin hoover_PN = mkPN "Hoover" ; -lin hoover_dam_PN = mkPN "Hoover Dam" ; -lin hope_PN = mkPN "Hope"; -- from DictEng -lin hopi_PN = mkPN "Hopi" ; -lin hopkins_PN = mkPN "Hopkins" ; -lin hopkinson_PN = mkPN "Hopkinson" ; -lin horace_PN = mkPN "Horace"; -- from DictEng -lin horatian_ode_PN = mkPN "Horatian ode" ; -lin horatio_hornblower_PN = mkPN "Horatio Hornblower" ; -lin hordeum_PN = mkPN "Hordeum" ; -lin horley_PN = mkPN "Horley"; -- from DictEng -lin horne_PN = mkPN "Horne" ; -lin horneophyton_PN = mkPN "Horneophyton" ; -lin horner's_syndrome_PN = mkPN "Horner's syndrome" ; -lin horney_PN = mkPN "Horney" ; -lin hornsea_PN = mkPN "Hornsea"; -- from DictEng -lin horowitz_PN = mkPN "Horowitz" ; -lin horsham_PN = mkPN "Horsham"; -- from DictEng -lin horsley_PN = mkPN "Horsley"; -- from DictEng -lin horta_PN = mkPN "Horta" ; -lin horus_PN = mkPN "Horus" ; -lin horwich_PN = mkPN "Horwich"; -- from DictEng -lin hosea_PN = mkPN "Hosea" ; -lin hosp_PN = mkPN "Hosp"; -- from DictEng -lin host_PN = mkPN "Host" ; -lin hosta_PN = mkPN "Hosta" ; -lin hostaceae_PN = mkPN "Hostaceae" ; -lin hot_springs_PN = mkPN "Hot Springs" ; -lin hot_springs_national_park_PN = mkPN "Hot Springs National Park" ; -lin hotei_PN = mkPN "Hotei" ; -lin hoth_PN = mkPN "Hoth" ; -lin hottentot_bread_PN = mkPN "Hottentot bread" ; -lin hottentot_fig_PN = mkPN "Hottentot fig" ; -lin hottonia_PN = mkPN "Hottonia" ; -lin houdini_PN = mkPN "Houdini" ; -lin houghton_PN = mkPN "Houghton"; -- from DictEng -lin hounslow_PN = mkPN "Hounslow"; -- from DictEng -lin housatonic_PN = mkPN "Housatonic" ; -lin house_of_burgesses_PN = mkPN "House of Burgesses" ; -lin house_of_commons_PN = mkPN "House of Commons" ; -lin house_of_lords_PN = mkPN "House of Lords" ; -lin houses_of_parliament_PN = mkPN "Houses of Parliament" ; -lin housman_PN = mkPN "Housman" ; -lin houston_PN = mkPN "Houston"; -- from DictEng -lin houttuynia_PN = mkPN "Houttuynia" ; -lin houyhnhnm_PN = mkPN "Houyhnhnm" ; -lin houyhnhnms_PN = mkPN "Houyhnhnms" ; -lin hove_PN = mkPN "Hove"; -- from DictEng -lin howard_PN = mkPN "Howard"; -- from DictEng -lin howe_PN = mkPN "Howe" ; -lin howells_PN = mkPN "Howells" ; -lin hoylake_PN = mkPN "Hoylake"; -- from DictEng -lin hoyland_nether_PN = mkPN "Hoyland nether"; -- from DictEng -lin hoyle_PN = mkPN "Hoyle" ; -lin hq_PN = mkPN "Hq"; -- from DictEng -lin hrh_PN = mkPN "Hrh"; -- from DictEng -lin huainaputina_PN = mkPN "Huainaputina" ; -lin huambo_PN = mkPN "Huambo" ; -lin huang_he_PN = mkPN "Huang He" ; -lin huascaran_PN = mkPN "Huascaran" ; -lin huayna_capac_PN = mkPN "Huayna Capac" ; -lin hubbard_PN = mkPN "Hubbard" ; -lin hubble_PN = mkPN "Hubble" ; -lin hubble's_constant_PN = mkPN "Hubble's constant" ; -lin hubble's_law_PN = mkPN "Hubble's law" ; -lin hubel_PN = mkPN "Hubel" ; -lin hubert_PN = mkPN "Hubert"; -- from DictEng -lin huckleberry_finn_PN = mkPN "Huckleberry Finn" ; -lin hucknall_PN = mkPN "Hucknall"; -- from DictEng -lin huddersfield_PN = mkPN "Huddersfield"; -- from DictEng -lin hudson_PN = mkPN "Hudson" ; -lin hudson_bay_PN = mkPN "Hudson Bay" ; -lin hudson_river_school_PN = mkPN "Hudson River school" ; -lin hudson_bay_collared_lemming_PN = mkPN "Hudson bay collared lemming" ; -lin hudsonia_PN = mkPN "Hudsonia" ; -lin hudsonian_godwit_PN = mkPN "Hudsonian godwit" ; -lin huggins_PN = mkPN "Huggins" ; -lin hugh_PN = mkPN "Hugh"; -- from DictEng -lin hughes_PN = mkPN "Hughes" ; -lin hughie_PN = mkPN "Hughie"; -- from DictEng -lin hugo_PN = mkPN "Hugo" ; -lin hugoesque_A = mkA "Hugoesque" ; -lin hugueninia_PN = mkPN "Hugueninia" ; -lin huguenot_PN = mkPN "Huguenot" ; -lin huhehot_PN = mkPN "Huhehot"; -- from DictEng -lin hull_PN = mkPN "Hull" ; -lin hulsea_PN = mkPN "Hulsea" ; -lin human_genome_project_PN = mkPN "Human Genome Project" ; -lin humber_PN = mkPN "Humber" ; -lin humber_bridge_PN = mkPN "Humber Bridge" ; -lin humberside_PN = mkPN "Humberside"; -- from DictEng -lin humberston_PN = mkPN "Humberston"; -- from DictEng -lin humboldt_PN = mkPN "Humboldt" ; -lin hume_PN = mkPN "Hume" ; -lin humperdinck_PN = mkPN "Humperdinck" ; -lin humphrey_PN = mkPN "Humphrey"; -- from DictEng -lin humpty_dumpty_PN = mkPN "Humpty Dumpty" ; -lin humulus_PN = mkPN "Humulus" ; -lin humvee_PN = mkPN "Humvee" ; -lin hun_PN = mkPN "Hun" ; -lin hunan_PN = mkPN "Hunan" ; -lin hundred_years'_war_PN = mkPN "Hundred Years' War" ; -lin hungarian_A = compoundA (mkA "Hungarian"); -- from DictEng -lin hungarian_PN = mkPN "Hungarian" ; -lin hungarian_lilac_PN = mkPN "Hungarian lilac" ; -lin hungarian_monetary_unit_PN = mkPN "Hungarian monetary unit" ; -lin hungarian_partridge_PN = mkPN "Hungarian partridge" ; -lin hungarian_sauce_PN = mkPN "Hungarian sauce" ; -lin hungary_PN = mkPN "Hungary"; -- from DictEng -lin hunkpapa_PN = mkPN "Hunkpapa" ; -lin hunnemannia_PN = mkPN "Hunnemannia" ; -lin hunt_PN = mkPN "Hunt" ; -lin huntingdon_PN = mkPN "Huntingdon"; -- from DictEng -lin huntingdon_elm_PN = mkPN "Huntingdon elm" ; -lin huntington_PN = mkPN "Huntington" ; -lin huntington's_chorea_PN = mkPN "Huntington's chorea" ; -lin huntsville_PN = mkPN "Huntsville" ; -lin hupa_PN = mkPN "Hupa" ; -lin hurler's_syndrome_PN = mkPN "Hurler's syndrome" ; -lin hurok_PN = mkPN "Hurok" ; -lin hurstpierpoint_PN = mkPN "Hurstpierpoint"; -- from DictEng -lin huss_PN = mkPN "Huss" ; -lin hussein_PN = mkPN "Hussein" ; -lin husserl_PN = mkPN "Husserl" ; -lin hussite_PN = mkPN "Hussite" ; -lin huston_PN = mkPN "Huston" ; -lin hutchins_PN = mkPN "Hutchins" ; -lin hutchinson_PN = mkPN "Hutchinson" ; -lin hutton_PN = mkPN "Hutton" ; -lin hutu_PN = mkPN "Hutu" ; -lin huxley_PN = mkPN "Huxley" ; -lin huxleyan_A = mkA "Huxleyan" ; -lin huygens_PN = mkPN "Huygens" ; -lin hwainan_PN = mkPN "Hwainan"; -- from DictEng -lin hyacinthaceae_PN = mkPN "Hyacinthaceae" ; -lin hyacinthoides_PN = mkPN "Hyacinthoides" ; -lin hyades_PN = mkPN "Hyades" ; -lin hyaenidae_PN = mkPN "Hyaenidae" ; -lin hyalophora_PN = mkPN "Hyalophora" ; -lin hyalosperma_PN = mkPN "Hyalosperma" ; -lin hyalospongiae_PN = mkPN "Hyalospongiae" ; -lin hybanthus_PN = mkPN "Hybanthus" ; -lin hyde_PN = mkPN "Hyde"; -- from DictEng -lin hyderabad_PN = mkPN "Hyderabad"; -- from DictEng -lin hydnaceae_PN = mkPN "Hydnaceae" ; -lin hydnocarpus_PN = mkPN "Hydnocarpus" ; -lin hydnocarpus_laurifolia_PN = mkPN "Hydnocarpus laurifolia" ; -lin hydnoraceae_PN = mkPN "Hydnoraceae" ; -lin hydnum_PN = mkPN "Hydnum" ; -lin hydra_PN = mkPN "Hydra" ; -lin hydrangeaceae_PN = mkPN "Hydrangeaceae" ; -lin hydrastis_PN = mkPN "Hydrastis" ; -lin hydrobates_PN = mkPN "Hydrobates" ; -lin hydrobatidae_PN = mkPN "Hydrobatidae" ; -lin hydrocharis_PN = mkPN "Hydrocharis" ; -lin hydrocharitaceae_PN = mkPN "Hydrocharitaceae" ; -lin hydrochoeridae_PN = mkPN "Hydrochoeridae" ; -lin hydrochoerus_PN = mkPN "Hydrochoerus" ; -lin hydrodamalis_PN = mkPN "Hydrodamalis" ; -lin hydromantes_PN = mkPN "Hydromantes" ; -lin hydromyinae_PN = mkPN "Hydromyinae" ; -lin hydromys_PN = mkPN "Hydromys" ; -lin hydrophidae_PN = mkPN "Hydrophidae" ; -lin hydrophyllaceae_PN = mkPN "Hydrophyllaceae" ; -lin hydrophyllum_PN = mkPN "Hydrophyllum" ; -lin hydrozoa_PN = mkPN "Hydrozoa" ; -lin hydrus_PN = mkPN "Hydrus" ; -lin hyemoschus_PN = mkPN "Hyemoschus" ; -lin hygeia_PN = mkPN "Hygeia" ; -lin hygrocybe_PN = mkPN "Hygrocybe" ; -lin hygrocybe_acutoconica_PN = mkPN "Hygrocybe acutoconica" ; -lin hygrophoraceae_PN = mkPN "Hygrophoraceae" ; -lin hygrophorus_PN = mkPN "Hygrophorus" ; -lin hygrophorus_borealis_PN = mkPN "Hygrophorus borealis" ; -lin hygrophorus_caeruleus_PN = mkPN "Hygrophorus caeruleus" ; -lin hygrophorus_inocybiformis_PN = mkPN "Hygrophorus inocybiformis" ; -lin hygrophorus_kauffmanii_PN = mkPN "Hygrophorus kauffmanii" ; -lin hygrophorus_marzuolus_PN = mkPN "Hygrophorus marzuolus" ; -lin hygrophorus_purpurascens_PN = mkPN "Hygrophorus purpurascens" ; -lin hygrophorus_russula_PN = mkPN "Hygrophorus russula" ; -lin hygrophorus_sordidus_PN = mkPN "Hygrophorus sordidus" ; -lin hygrophorus_tennesseensis_PN = mkPN "Hygrophorus tennesseensis" ; -lin hygrophorus_turundus_PN = mkPN "Hygrophorus turundus" ; -lin hygrotrama_PN = mkPN "Hygrotrama" ; -lin hygrotrama_foetens_PN = mkPN "Hygrotrama foetens" ; -lin hyla_PN = mkPN "Hyla" ; -lin hylactophryne_PN = mkPN "Hylactophryne" ; -lin hylidae_PN = mkPN "Hylidae" ; -lin hylobates_PN = mkPN "Hylobates" ; -lin hylobatidae_PN = mkPN "Hylobatidae" ; -lin hylocereus_PN = mkPN "Hylocereus" ; -lin hylocichla_PN = mkPN "Hylocichla" ; -lin hylophylax_PN = mkPN "Hylophylax" ; -lin hymen_PN = mkPN "Hymen" ; -lin hymenaea_PN = mkPN "Hymenaea" ; -lin hymenanthera_PN = mkPN "Hymenanthera" ; -lin hymenogastrales_PN = mkPN "Hymenogastrales" ; -lin hymenomycetes_PN = mkPN "Hymenomycetes" ; -lin hymenophyllaceae_PN = mkPN "Hymenophyllaceae" ; -lin hymenophyllum_PN = mkPN "Hymenophyllum" ; -lin hymenoptera_PN = mkPN "Hymenoptera" ; -lin hynerpeton_PN = mkPN "Hynerpeton" ; -lin hynerpeton_bassetti_PN = mkPN "Hynerpeton bassetti" ; -lin hyoscyamus_PN = mkPN "Hyoscyamus" ; -lin hypatia_PN = mkPN "Hypatia" ; -lin hypentelium_PN = mkPN "Hypentelium" ; -lin hyperborean_PN = mkPN "Hyperborean" ; -lin hypericaceae_PN = mkPN "Hypericaceae" ; -lin hypericum_PN = mkPN "Hypericum" ; -lin hyperion_PN = mkPN "Hyperion" ; -lin hypermastigina_PN = mkPN "Hypermastigina" ; -lin hyperoglyphe_PN = mkPN "Hyperoglyphe" ; -lin hyperoodon_PN = mkPN "Hyperoodon" ; -lin hyphantria_PN = mkPN "Hyphantria" ; -lin hyphantria_cunea_PN = mkPN "Hyphantria cunea" ; -lin hypnos_PN = mkPN "Hypnos" ; -lin hypochaeris_PN = mkPN "Hypochaeris" ; -lin hypocreaceae_PN = mkPN "Hypocreaceae" ; -lin hypocreales_PN = mkPN "Hypocreales" ; -lin hypoderma_PN = mkPN "Hypoderma" ; -lin hypopachus_PN = mkPN "Hypopachus" ; -lin hypopitys_PN = mkPN "Hypopitys" ; -lin hypoxidaceae_PN = mkPN "Hypoxidaceae" ; -lin hypoxis_PN = mkPN "Hypoxis" ; -lin hypsiglena_PN = mkPN "Hypsiglena" ; -lin hypsiprymnodon_PN = mkPN "Hypsiprymnodon" ; -lin hyracoidea_PN = mkPN "Hyracoidea" ; -lin hyracotherium_PN = mkPN "Hyracotherium" ; -lin hyssopus_PN = mkPN "Hyssopus" ; -lin hystricidae_PN = mkPN "Hystricidae" ; -lin hystricomorpha_PN = mkPN "Hystricomorpha" ; -lin hythe_PN = mkPN "Hythe"; -- from DictEng -lin i_PN = mkPN "I" ; -lin i_beam_PN = mkPN "I beam" ; -lin id_PN = mkPN "ID" ; -lin ii_chronicles_PN = mkPN "II Chronicles" ; -lin ii_esdras_PN = mkPN "II Esdras" ; -lin ii_kings_PN = mkPN "II Kings" ; -lin ii_maccabees_PN = mkPN "II Maccabees" ; -lin ii_samuel_PN = mkPN "II Samuel" ; -lin ijssel_PN = mkPN "IJssel" ; -lin ijsselmeer_PN = mkPN "IJsselmeer" ; -lin iou_PN = mkPN "IOU" ; -lin i_chronicles_PN = mkPN "I Chronicles" ; -lin i_esdra_PN = mkPN "I Esdra" ; -lin i_kings_PN = mkPN "I Kings" ; -lin i_maccabees_PN = mkPN "I Maccabees" ; -lin i_samuel_PN = mkPN "I Samuel" ; -lin iago_PN = mkPN "Iago" ; -lin ian_PN = mkPN "Ian"; -- from DictEng -lin iapetus_PN = mkPN "Iapetus" ; -lin ibadan_PN = mkPN "Ibadan"; -- from DictEng -lin iberia_PN = mkPN "Iberia" ; -lin iberian_A = mkA "Iberian" ; -lin iberian_PN = mkPN "Iberian" ; -lin iberian_peninsula_PN = mkPN "Iberian Peninsula" ; -lin iberis_PN = mkPN "Iberis" ; -lin ibero_mesornis_PN = mkPN "Ibero mesornis" ; -lin ibert_PN = mkPN "Ibert" ; -lin ibid_PN = mkPN "Ibid"; -- from DictEng -lin ibizan_hound_PN = mkPN "Ibizan hound" ; -lin ibsen_PN = mkPN "Ibsen" ; -lin ibsenian_A = mkA "Ibsenian" ; -lin icarus_PN = mkPN "Icarus" ; -lin iceland_PN = mkPN "Iceland"; -- from DictEng -lin iceland_moss_PN = mkPN "Iceland moss" ; -lin iceland_poppy_PN = mkPN "Iceland poppy" ; -lin iceland_spar_PN = mkPN "Iceland spar" ; -lin icelander_PN = mkPN "Icelander" ; -lin icelandic_A = compoundA (mkA "icelandic"); -- from DictEng -lin icelandic_PN = mkPN "Icelandic" ; -lin icelandic_speaking_A = compoundA (mkA "Icelandic speaking") ; -lin icelandic_krona_PN = mkPN "Icelandic krona" ; -lin icelandic_monetary_unit_PN = mkPN "Icelandic monetary unit" ; -lin ichneumonidae_PN = mkPN "Ichneumonidae" ; -lin ichthyosauria_PN = mkPN "Ichthyosauria" ; -lin ichthyosauridae_PN = mkPN "Ichthyosauridae" ; -lin ichyostega_PN = mkPN "Ichyostega" ; -lin ictalurus_PN = mkPN "Ictalurus" ; -lin icteria_PN = mkPN "Icteria" ; -lin icteridae_PN = mkPN "Icteridae" ; -lin icterus_PN = mkPN "Icterus" ; -lin ictiobus_PN = mkPN "Ictiobus" ; -lin ictodosauria_PN = mkPN "Ictodosauria" ; -lin ictonyx_PN = mkPN "Ictonyx" ; -lin id_al_adha_PN = mkPN "Id al Adha" ; -lin id_al_fitr_PN = mkPN "Id al Fitr" ; -lin ida_PN = mkPN "Ida"; -- from DictEng -lin idaho_PN = mkPN "Idaho"; -- from DictEng -lin idaho_falls_PN = mkPN "Idaho Falls" ; -lin idahoan_PN = mkPN "Idahoan" ; -lin idem_PN = mkPN "Idem"; -- from DictEng -lin identikit_PN = mkPN "Identikit" ; -lin idiom_neutral_PN = mkPN "Idiom Neutral" ; -lin iditarod_PN = mkPN "Iditarod" ; -lin iditarod_trail_PN = mkPN "Iditarod Trail" ; -lin ido_PN = mkPN "Ido" ; -lin idun_PN = mkPN "Idun" ; -lin ie_PN = mkPN "IE"; -- from DictEng -lin igbo_PN = mkPN "Igbo" ; -lin igigi_PN = mkPN "Igigi" ; -lin iglesias_PN = mkPN "Iglesias" ; -lin ignatius_PN = mkPN "Ignatius" ; -lin ignatius_of_loyola_PN = mkPN "Ignatius of Loyola" ; -lin iguanidae_PN = mkPN "Iguanidae" ; -lin iguanodontidae_PN = mkPN "Iguanodontidae" ; -lin iguazu_PN = mkPN "Iguazu" ; -lin ile_st_louis_PN = mkPN "Ile St Louis" ; -lin ile_de_france_PN = mkPN "Ile de France" ; -lin ilex_PN = mkPN "Ilex" ; -lin ilfracombe_PN = mkPN "Ilfracombe"; -- from DictEng -lin iliad_PN = mkPN "Iliad" ; -lin iliamna_PN = mkPN "Iliamna" ; -lin ilkeston_PN = mkPN "Ilkeston"; -- from DictEng -lin ilkley_PN = mkPN "Ilkley"; -- from DictEng -lin illampu_PN = mkPN "Illampu" ; -lin illecebrum_PN = mkPN "Illecebrum" ; -lin illicium_PN = mkPN "Illicium" ; -lin illimani_PN = mkPN "Illimani" ; -lin illinois_PN = mkPN "Illinois"; -- from DictEng -lin illinois_river_PN = mkPN "Illinois River" ; -lin illinoisan_PN = mkPN "Illinoisan" ; -lin illyria_PN = mkPN "Illyria" ; -lin illyrian_PN = mkPN "Illyrian" ; -lin immaculate_conception_PN = mkPN "Immaculate Conception" ; -lin immigration_and_naturalization_service_PN = mkPN "Immigration and Naturalization Service" ; -lin immingham_PN = mkPN "Immingham"; -- from DictEng -lin impressionism_PN = mkPN "Impressionism" ; -lin inachis_PN = mkPN "Inachis" ; -lin inanna_PN = mkPN "Inanna" ; -lin inauguration_day_PN = mkPN "Inauguration Day" ; -lin inc_PN = mkPN "Inc"; -- from DictEng -lin inca_PN = mkPN "Inca" ; -lin incan_A = mkA "Incan" ; -lin incarnation_PN = mkPN "Incarnation" ; -lin inchon_PN = mkPN "Inchon"; -- from DictEng -lin incl_PN = mkPN "Incl"; -- from DictEng -lin inconel_PN = mkPN "Inconel" ; -lin independence_PN = mkPN "Independence" ; -lin independence_day_PN = mkPN "Independence Day" ; -lin independence_hall_PN = mkPN "Independence Hall" ; -lin india_PN = mkPN "India"; -- from DictEng -lin india_rubber_tree_PN = mkPN "India rubber tree" ; -lin india_ink_PN = mkPN "India ink" ; -lin indiaman_PN = mkPN "Indiaman" ; -lin indian_A = compoundA (mkA "indian"); -- from DictEng -lin indian_PN = mkPN "Indian" ; -lin indian_mutiny_PN = mkPN "Indian Mutiny" ; -lin indian_ocean_PN = mkPN "Indian Ocean" ; -lin indian_agent_PN = mkPN "Indian agent" ; -lin indian_beech_PN = mkPN "Indian beech" ; -lin indian_blackwood_PN = mkPN "Indian blackwood" ; -lin indian_buffalo_PN = mkPN "Indian buffalo" ; -lin indian_button_fern_PN = mkPN "Indian button fern" ; -lin indian_chief_PN = mkPN "Indian chief" ; -lin indian_club_PN = mkPN "Indian club" ; -lin indian_cobra_PN = mkPN "Indian cobra" ; -lin indian_coral_tree_PN = mkPN "Indian coral tree" ; -lin indian_crocus_PN = mkPN "Indian crocus" ; -lin indian_elephant_PN = mkPN "Indian elephant" ; -lin indian_giver_PN = mkPN "Indian giver" ; -lin indian_hemp_PN = mkPN "Indian hemp" ; -lin indian_lettuce_PN = mkPN "Indian lettuce" ; -lin indian_madder_PN = mkPN "Indian madder" ; -lin indian_mallow_PN = mkPN "Indian mallow" ; -lin indian_monetary_unit_PN = mkPN "Indian monetary unit" ; -lin indian_mongoose_PN = mkPN "Indian mongoose" ; -lin indian_paintbrush_PN = mkPN "Indian paintbrush" ; -lin indian_pipe_PN = mkPN "Indian pipe" ; -lin indian_plantain_PN = mkPN "Indian plantain" ; -lin indian_poke_PN = mkPN "Indian poke" ; -lin indian_python_PN = mkPN "Indian python" ; -lin indian_race_PN = mkPN "Indian race" ; -lin indian_rat_snake_PN = mkPN "Indian rat snake" ; -lin indian_rattlebox_PN = mkPN "Indian rattlebox" ; -lin indian_red_PN = mkPN "Indian red" ; -lin indian_reservation_PN = mkPN "Indian reservation" ; -lin indian_rhinoceros_PN = mkPN "Indian rhinoceros" ; -lin indian_rhododendron_PN = mkPN "Indian rhododendron" ; -lin indian_rupee_PN = mkPN "Indian rupee" ; -lin indian_summer_PN = mkPN "Indian summer" ; -lin indian_tobacco_PN = mkPN "Indian tobacco" ; -lin indian_trail_PN = mkPN "Indian trail" ; -lin indiana_PN = mkPN "Indiana"; -- from DictEng -lin indianan_PN = mkPN "Indianan" ; -lin indianapolis_PN = mkPN "Indianapolis"; -- from DictEng -lin indic_PN = mkPN "Indic" ; -lin indicatoridae_PN = mkPN "Indicatoridae" ; -lin indies_PN = mkPN "Indies"; -- from DictEng -lin indigirka_PN = mkPN "Indigirka" ; -lin indigofera_PN = mkPN "Indigofera" ; -lin indo_european_A = compoundA (mkA "indo - european"); -- from DictEng -lin indo_european_PN = mkPN "Indo European" ; -lin indo_iranian_PN = mkPN "Indo Iranian" ; -lin indochina_PN = mkPN "Indochina" ; -lin indonesia_PN = mkPN "Indonesia"; -- from DictEng -lin indonesian_A = compoundA (mkA "indonesian"); -- from DictEng -lin indonesian_PN = mkPN "Indonesian" ; -lin indonesian_borneo_PN = mkPN "Indonesian Borneo" ; -lin indonesian_monetary_unit_PN = mkPN "Indonesian monetary unit" ; -lin indore_PN = mkPN "Indore"; -- from DictEng -lin indra_PN = mkPN "Indra" ; -lin indriidae_PN = mkPN "Indriidae" ; -lin indus_PN = mkPN "Indus" ; -lin indus_civilization_PN = mkPN "Indus civilization" ; -lin industrial_revolution_PN = mkPN "Industrial Revolution" ; -lin industrial_workers_of_the_world_PN = mkPN "Industrial Workers of the World" ; -lin infusoria_PN = mkPN "Infusoria" ; -lin ingatestone_PN = mkPN "Ingatestone"; -- from DictEng -lin inge_PN = mkPN "Inge" ; -lin ingres_PN = mkPN "Ingres" ; -lin ingrian_PN = mkPN "Ingrian" ; -lin ingrid_PN = mkPN "Ingrid"; -- from DictEng -lin inland_passage_PN = mkPN "Inland Passage" ; -lin inland_revenue_PN = mkPN "Inland Revenue" ; -lin inland_sea_PN = mkPN "Inland Sea" ; -lin inner_hebrides_PN = mkPN "Inner Hebrides" ; -lin inner_light_PN = mkPN "Inner Light" ; -lin inner_mongolia_PN = mkPN "Inner Mongolia" ; -lin innocent_iii_PN = mkPN "Innocent III" ; -lin innocent_viii_PN = mkPN "Innocent VIII" ; -lin innocent_xi_PN = mkPN "Innocent XI" ; -lin innocent_xii_PN = mkPN "Innocent XII" ; -lin innsbruck_PN = mkPN "Innsbruck"; -- from DictEng -lin inquisition_PN = mkPN "Inquisition" ; -lin inquisitor_PN = mkPN "Inquisitor" ; -lin insecta_PN = mkPN "Insecta" ; -lin insectivora_PN = mkPN "Insectivora" ; -lin insessores_PN = mkPN "Insessores" ; -lin inspector_maigret_PN = mkPN "Inspector Maigret" ; -lin inst_PN = mkPN "Inst"; -- from DictEng -lin intelligence_community_PN = mkPN "Intelligence Community" ; -lin intelnet_PN = mkPN "Intelnet" ; -lin interlaken_PN = mkPN "Interlaken" ; -lin interlingua_PN = mkPN "Interlingua" ; -lin internal_revenue_service_PN = mkPN "Internal Revenue Service" ; -lin international_PN = mkPN "International" ; -lin international_atomic_energy_agency_PN = mkPN "International Atomic Energy Agency" ; -lin international_bank_for_reconstruction_and_development_PN = mkPN "International Bank for Reconstruction and Development" ; -lin international_civil_aviation_organization_PN = mkPN "International Civil Aviation Organization" ; -lin international_court_of_justice_PN = mkPN "International Court of Justice" ; -lin international_development_association_PN = mkPN "International Development Association" ; -lin international_finance_corporation_PN = mkPN "International Finance Corporation" ; -lin international_grandmaster_PN = mkPN "International Grandmaster" ; -lin international_islamic_front_for_jihad_against_jews_and_crusaders_PN = mkPN "International Islamic Front for Jihad against Jews and Crusaders" ; -lin international_labor_organization_PN = mkPN "International Labor Organization" ; -lin international_maritime_organization_PN = mkPN "International Maritime Organization" ; -lin international_monetary_fund_PN = mkPN "International Monetary Fund" ; -lin international_relations_and_security_network_PN = mkPN "International Relations and Security Network" ; -lin international_wanted_notice_PN = mkPN "International Wanted Notice" ; -lin internationale_PN = mkPN "Internationale" ; -lin internet_explorer_PN = mkPN "Internet Explorer" ; -lin interpol_PN = mkPN "Interpol"; -- from DictEng -lin interstate_commerce_commission_PN = mkPN "Interstate Commerce Commission" ; -lin invar_PN = mkPN "Invar" ; -lin inverkeithing_PN = mkPN "Inverkeithing"; -- from DictEng -lin inverness_PN = mkPN "Inverness"; -- from DictEng -lin inverurie_PN = mkPN "Inverurie"; -- from DictEng -lin io_PN = mkPN "Io" ; -lin ionesco_PN = mkPN "Ionesco" ; -lin ionia_PN = mkPN "Ionia" ; -lin ionian_A = mkA "Ionian" ; -lin ionian_PN = mkPN "Ionian" ; -lin ionian_sea_PN = mkPN "Ionian Sea" ; -lin ionic_A = compoundA (mkA "ionic"); -- from DictEng -lin ionic_order_PN = mkPN "Ionic order" ; -lin iowa_PN = mkPN "Iowa"; -- from DictEng -lin iowa_crab_PN = mkPN "Iowa crab" ; -lin iowan_PN = mkPN "Iowan" ; -lin iphigenia_PN = mkPN "Iphigenia" ; -lin ipomoea_PN = mkPN "Ipomoea" ; -lin ipsus_PN = mkPN "Ipsus" ; -lin ipswich_PN = mkPN "Ipswich"; -- from DictEng -lin iran_PN = mkPN "Iran"; -- from DictEng -lin iran_iraq_war_PN = mkPN "Iran Iraq War" ; -lin irani_PN = mkPN "Irani" ; -lin iranian_A = compoundA (mkA "iranian"); -- from DictEng -lin iranian_PN = mkPN "Iranian" ; -lin iranian_dinar_PN = mkPN "Iranian dinar" ; -lin iranian_monetary_unit_PN = mkPN "Iranian monetary unit" ; -lin iranian_rial_PN = mkPN "Iranian rial" ; -lin iraq_PN = mkPN "Iraq"; -- from DictEng -lin iraqi_A = compoundA (mkA "iraqi"); -- from DictEng -lin iraqi_PN = mkPN "Iraqi" ; -lin iraqi_intelligence_service_PN = mkPN "Iraqi Intelligence Service" ; -lin iraqi_kurdistan_PN = mkPN "Iraqi Kurdistan" ; -lin iraqi_national_congress_PN = mkPN "Iraqi National Congress" ; -lin iraqi_dinar_PN = mkPN "Iraqi dinar" ; -lin iraqi_monetary_unit_PN = mkPN "Iraqi monetary unit" ; -lin ireland_PN = mkPN "Ireland"; -- from DictEng -lin irena_PN = mkPN "Irena" ; -lin irenaeus_PN = mkPN "Irenaeus" ; -lin irene_PN = mkPN "Irene"; -- from DictEng -lin irenidae_PN = mkPN "Irenidae" ; -lin iresine_PN = mkPN "Iresine" ; -lin iridaceae_PN = mkPN "Iridaceae" ; -lin iridoprocne_PN = mkPN "Iridoprocne" ; -lin iris_PN = mkPN "Iris"; -- from DictEng -lin irish_A = compoundA (mkA "irish"); -- from DictEng -lin irish_PN = mkPN "Irish" ; -lin irish_national_liberation_army_PN = mkPN "Irish National Liberation Army" ; -lin irish_republican_army_PN = mkPN "Irish Republican Army" ; -lin irish_sea_PN = mkPN "Irish Sea" ; -lin irish_coffee_PN = mkPN "Irish coffee" ; -lin irish_monetary_unit_PN = mkPN "Irish monetary unit" ; -lin irish_moss_PN = mkPN "Irish moss" ; -lin irish_person_PN = mkPN "Irish person" ; -lin irish_pound_PN = mkPN "Irish pound" ; -lin irish_setter_PN = mkPN "Irish setter" ; -lin irish_soda_bread_PN = mkPN "Irish soda bread" ; -lin irish_stew_PN = mkPN "Irish stew" ; -lin irish_terrier_PN = mkPN "Irish terrier" ; -lin irish_water_spaniel_PN = mkPN "Irish water spaniel" ; -lin irish_wolfhound_PN = mkPN "Irish wolfhound" ; -lin irishman_PN = mkPN "Irishman" ; -lin irishwoman_PN = mkPN "Irishwoman" ; -lin iron_age_PN = mkPN "Iron Age" ; -lin iroquoian_PN = mkPN "Iroquoian" ; -lin iroquois_PN = mkPN "Iroquois" ; -lin iroquois_league_PN = mkPN "Iroquois League" ; -lin irrawaddy_PN = mkPN "Irrawaddy" ; -lin irthlingborough_PN = mkPN "Irthlingborough"; -- from DictEng -lin irtish_PN = mkPN "Irtish" ; -lin irula_PN = mkPN "Irula" ; -lin irvine_PN = mkPN "Irvine"; -- from DictEng -lin irving_PN = mkPN "Irving" ; -lin irvingia_PN = mkPN "Irvingia" ; -lin isaac_PN = mkPN "Isaac"; -- from DictEng -lin isabel_PN = mkPN "Isabel"; -- from DictEng -lin isabella_PN = mkPN "Isabella"; -- from DictEng -lin isaiah_PN = mkPN "Isaiah" ; -lin isatis_PN = mkPN "Isatis" ; -lin ischia_PN = mkPN "Ischia" ; -lin ischigualastia_PN = mkPN "Ischigualastia" ; -lin isere_PN = mkPN "Isere" ; -lin iseult_PN = mkPN "Iseult" ; -lin isfahan_PN = mkPN "Isfahan" ; -lin isherwood_PN = mkPN "Isherwood" ; -lin ishmael_PN = mkPN "Ishmael" ; -lin ishtar_PN = mkPN "Ishtar" ; -lin isis_PN = mkPN "Isis" ; -lin islam_PN = mkPN "Islam" ; -lin islamabad_PN = mkPN "Islamabad" ; -lin islamic_army_of_aden_PN = mkPN "Islamic Army of Aden" ; -lin islamic_great_eastern_raiders_front_PN = mkPN "Islamic Great Eastern Raiders Front" ; -lin islamic_group_of_uzbekistan_PN = mkPN "Islamic Group of Uzbekistan" ; -lin islamic_calendar_PN = mkPN "Islamic calendar" ; -lin islamic_calendar_month_PN = mkPN "Islamic calendar month" ; -lin islamism_PN = mkPN "Islamism" ; -lin islamist_PN = mkPN "Islamist" ; -lin islamophobia_PN = mkPN "Islamophobia" ; -lin islay_PN = mkPN "Islay" ; -lin isle_royal_national_park_PN = mkPN "Isle Royal National Park" ; -lin isle_of_skye_PN = mkPN "Isle of Skye" ; -lin islington_PN = mkPN "Islington"; -- from DictEng -lin ismaili_A = mkA "Ismaili" ; -lin ismaili_PN = mkPN "Ismaili" ; -lin ismailism_PN = mkPN "Ismailism" ; -lin isobel_PN = mkPN "Isobel"; -- from DictEng -lin isocrates_PN = mkPN "Isocrates" ; -lin isoetaceae_PN = mkPN "Isoetaceae" ; -lin isoetales_PN = mkPN "Isoetales" ; -lin isoetes_PN = mkPN "Isoetes" ; -lin isopoda_PN = mkPN "Isopoda" ; -lin isoptera_PN = mkPN "Isoptera" ; -lin isopyrum_PN = mkPN "Isopyrum" ; -lin isospondyli_PN = mkPN "Isospondyli" ; -lin israel_PN = mkPN "Israel"; -- from DictEng -lin israeli_A = compoundA (mkA "israeli"); -- from DictEng -lin israeli_PN = mkPN "Israeli" ; -lin israeli_defense_force_PN = mkPN "Israeli Defense Force" ; -lin israeli_monetary_unit_PN = mkPN "Israeli monetary unit" ; -lin israelite_PN = mkPN "Israelite" ; -lin issachar_PN = mkPN "Issachar" ; -lin issus_PN = mkPN "Issus" ; -lin istanbul_PN = mkPN "Istanbul"; -- from DictEng -lin isthmian_games_PN = mkPN "Isthmian Games" ; -lin isthmus_of_corinth_PN = mkPN "Isthmus of Corinth" ; -lin isthmus_of_kra_PN = mkPN "Isthmus of Kra" ; -lin isthmus_of_panama_PN = mkPN "Isthmus of Panama" ; -lin isthmus_of_suez_PN = mkPN "Isthmus of Suez" ; -lin isthmus_of_tehuantepec_PN = mkPN "Isthmus of Tehuantepec" ; -lin istiophoridae_PN = mkPN "Istiophoridae" ; -lin istiophorus_PN = mkPN "Istiophorus" ; -lin isuridae_PN = mkPN "Isuridae" ; -lin isurus_PN = mkPN "Isurus" ; -lin italian_A = compoundA (mkA "Italian"); -- from DictEng -lin italian_PN = mkPN "Italian" ; -lin italian_speaking_A = compoundA (mkA "Italian speaking") ; -lin italian_peninsula_PN = mkPN "Italian Peninsula" ; -lin italian_renaissance_PN = mkPN "Italian Renaissance" ; -lin italian_bee_PN = mkPN "Italian bee" ; -lin italian_bread_PN = mkPN "Italian bread" ; -lin italian_cypress_PN = mkPN "Italian cypress" ; -lin italian_dressing_PN = mkPN "Italian dressing" ; -lin italian_greyhound_PN = mkPN "Italian greyhound" ; -lin italian_honeysuckle_PN = mkPN "Italian honeysuckle" ; -lin italian_monetary_unit_PN = mkPN "Italian monetary unit" ; -lin italian_parsley_PN = mkPN "Italian parsley" ; -lin italian_region_PN = mkPN "Italian region" ; -lin italian_ryegrass_PN = mkPN "Italian ryegrass" ; -lin italic_A = compoundA (mkA "italic"); -- from DictEng -lin italic_PN = mkPN "Italic" ; -lin italy_PN = mkPN "Italy"; -- from DictEng -lin ithaca_PN = mkPN "Ithaca" ; -lin ivan_PN = mkPN "Ivan"; -- from DictEng -lin ivan_iii_PN = mkPN "Ivan III" ; -lin ivan_iv_PN = mkPN "Ivan IV" ; -lin ivanov_PN = mkPN "Ivanov" ; -lin iver_PN = mkPN "Iver"; -- from DictEng -lin ives_PN = mkPN "Ives" ; -lin ivor_PN = mkPN "Ivor"; -- from DictEng -lin ivory_coast_PN = mkPN "Ivory Coast" ; -lin ivory_coast_franc_PN = mkPN "Ivory Coast franc" ; -lin ivry_PN = mkPN "Ivry" ; -lin ivy_PN = mkPN "Ivy"; -- from DictEng -lin ivy_league_PN = mkPN "Ivy League" ; -lin ivy_leaguer_PN = mkPN "Ivy Leaguer" ; -lin iwo_PN = mkPN "Iwo" ; -lin iwo_jima_PN = mkPN "Iwo Jima" ; -lin ixia_PN = mkPN "Ixia" ; -lin ixobrychus_PN = mkPN "Ixobrychus" ; -lin ixodes_PN = mkPN "Ixodes" ; -lin ixodes_dammini_PN = mkPN "Ixodes dammini" ; -lin ixodes_dentatus_PN = mkPN "Ixodes dentatus" ; -lin ixodes_neotomae_PN = mkPN "Ixodes neotomae" ; -lin ixodes_pacificus_PN = mkPN "Ixodes pacificus" ; -lin ixodes_persulcatus_PN = mkPN "Ixodes persulcatus" ; -lin ixodes_scapularis_PN = mkPN "Ixodes scapularis" ; -lin ixodes_spinipalpis_PN = mkPN "Ixodes spinipalpis" ; -lin ixodidae_PN = mkPN "Ixodidae" ; -lin iyar_PN = mkPN "Iyar" ; -lin izanagi_PN = mkPN "Izanagi" ; -lin izanami_PN = mkPN "Izanami" ; -lin izmir_PN = mkPN "Izmir"; -- from DictEng -lin j_PN = mkPN "J" ; -lin j_particle_PN = mkPN "J particle" ; -lin jabalpur_PN = mkPN "Jabalpur"; -- from DictEng -lin jack_PN = mkPN "Jack"; -- from DictEng -lin jack_frost_PN = mkPN "Jack Frost" ; -lin jack_of_all_trades_PN = mkPN "Jack of all trades" ; -lin jack_the_ripper_PN = mkPN "Jack the Ripper" ; -lin jackie_PN = mkPN "Jackie"; -- from DictEng -lin jackson_PN = mkPN "Jackson" ; -lin jacksonia_PN = mkPN "Jacksonia" ; -lin jacksonian_A = mkA "Jacksonian" ; -lin jacksonian_PN = mkPN "Jacksonian" ; -lin jacksonian_epilepsy_PN = mkPN "Jacksonian epilepsy" ; -lin jacksonville_PN = mkPN "Jacksonville"; -- from DictEng -lin jacob_PN = mkPN "Jacob"; -- from DictEng -lin jacob's_ladder_PN = mkPN "Jacob's ladder" ; -lin jacob's_rod_PN = mkPN "Jacob's rod" ; -lin jacobean_A = compoundA (mkA "jacobean"); -- from DictEng -lin jacobean_PN = mkPN "Jacobean" ; -lin jacobean_lily_PN = mkPN "Jacobean lily" ; -lin jacobi_PN = mkPN "Jacobi" ; -lin jacobin_PN = mkPN "Jacobin" ; -lin jacobinic_A = mkA "Jacobinic" ; -lin jacobinism_PN = mkPN "Jacobinism" ; -lin jacobite_PN = mkPN "Jacobite" ; -lin jacobs_PN = mkPN "Jacobs" ; -lin jacquard_PN = mkPN "Jacquard" ; -lin jacquard_loom_PN = mkPN "Jacquard loom" ; -lin jacqueline_PN = mkPN "Jacqueline"; -- from DictEng -lin jacquemier's_sign_PN = mkPN "Jacquemier's sign" ; -lin jacquinia_PN = mkPN "Jacquinia" ; -lin jaculus_PN = mkPN "Jaculus" ; -lin jaculus_jaculus_PN = mkPN "Jaculus jaculus" ; -lin jaffa_PN = mkPN "Jaffa" ; -lin jaffa_orange_PN = mkPN "Jaffa orange" ; -lin jaffar_PN = mkPN "Jaffar" ; -lin jafnea_semitosta_PN = mkPN "Jafnea semitosta" ; -lin jagannath_PN = mkPN "Jagannath" ; -lin jagger_PN = mkPN "Jagger" ; -lin jain_A = mkA "Jain" ; -lin jainism_PN = mkPN "Jainism" ; -lin jainist_PN = mkPN "Jainist" ; -lin jaipur_PN = mkPN "Jaipur"; -- from DictEng -lin jaish_i_mohammed_PN = mkPN "Jaish i Mohammed" ; -lin jakarta_PN = mkPN "Jakarta"; -- from DictEng -lin jake_PN = mkPN "Jake"; -- from DictEng -lin jakobson_PN = mkPN "Jakobson" ; -lin jalalabad_PN = mkPN "Jalalabad" ; -lin jamaat_ul_fuqra_PN = mkPN "Jamaat ul Fuqra" ; -lin jamaica_PN = mkPN "Jamaica"; -- from DictEng -lin jamaica_dogwood_PN = mkPN "Jamaica dogwood" ; -lin jamaica_honeysuckle_PN = mkPN "Jamaica honeysuckle" ; -lin jamaica_quassia_PN = mkPN "Jamaica quassia" ; -lin jamaica_rum_PN = mkPN "Jamaica rum" ; -lin jamaican_A = compoundA (mkA "jamaican"); -- from DictEng -lin jamaican_PN = mkPN "Jamaican" ; -lin jamaican_cherry_PN = mkPN "Jamaican cherry" ; -lin jamaican_dollar_PN = mkPN "Jamaican dollar" ; -lin jambos_PN = mkPN "Jambos" ; -lin james_PN = mkPN "James"; -- from DictEng -lin james_bay_PN = mkPN "James Bay" ; -lin jamesian_A = mkA "Jamesian" ; -lin jamesonia_PN = mkPN "Jamesonia" ; -lin jamestown_PN = mkPN "Jamestown" ; -lin jamison_PN = mkPN "Jamison" ; -lin jan_PN = mkPN "Jan"; -- from DictEng -lin jane_PN = mkPN "Jane"; -- from DictEng -lin jane_doe_PN = mkPN "Jane Doe" ; -lin janet_PN = mkPN "Janet"; -- from DictEng -lin janice_PN = mkPN "Janice"; -- from DictEng -lin janie_PN = mkPN "Janie"; -- from DictEng -lin janissary_PN = mkPN "Janissary" ; -lin jansen_PN = mkPN "Jansen" ; -lin jansenism_PN = mkPN "Jansenism" ; -lin jansenist_PN = mkPN "Jansenist" ; -lin january_PN = mkPN "January"; -- from DictEng -lin janus_PN = mkPN "Janus"; -- from DictEng -lin janus_faced_A = compoundA (mkA "Janus faced") ; -lin jap_PN = mkPN "Jap" ; -lin japan_PN = mkPN "Japan"; -- from DictEng -lin japan_trench_PN = mkPN "Japan Trench" ; -lin japan_allspice_PN = mkPN "Japan allspice" ; -lin japan_current_PN = mkPN "Japan current" ; -lin japan_wax_PN = mkPN "Japan wax" ; -lin japanese_A = compoundA (mkA "Japanese"); -- from DictEng -lin japanese_PN = mkPN "Japanese" ; -lin japanese_speaking_A = compoundA (mkA "Japanese speaking") ; -lin japanese_red_army_PN = mkPN "Japanese Red Army" ; -lin japanese_angelica_tree_PN = mkPN "Japanese angelica tree" ; -lin japanese_apricot_PN = mkPN "Japanese apricot" ; -lin japanese_banana_PN = mkPN "Japanese banana" ; -lin japanese_barberry_PN = mkPN "Japanese barberry" ; -lin japanese_beech_PN = mkPN "Japanese beech" ; -lin japanese_beetle_PN = mkPN "Japanese beetle" ; -lin japanese_bittersweet_PN = mkPN "Japanese bittersweet" ; -lin japanese_black_pine_PN = mkPN "Japanese black pine" ; -lin japanese_brome_PN = mkPN "Japanese brome" ; -lin japanese_cedar_PN = mkPN "Japanese cedar" ; -lin japanese_chestnut_PN = mkPN "Japanese chestnut" ; -lin japanese_crab_PN = mkPN "Japanese crab" ; -lin japanese_deer_PN = mkPN "Japanese deer" ; -lin japanese_deity_PN = mkPN "Japanese deity" ; -lin japanese_flowering_cherry_PN = mkPN "Japanese flowering cherry" ; -lin japanese_honeysuckle_PN = mkPN "Japanese honeysuckle" ; -lin japanese_hop_PN = mkPN "Japanese hop" ; -lin japanese_iris_PN = mkPN "Japanese iris" ; -lin japanese_lilac_PN = mkPN "Japanese lilac" ; -lin japanese_linden_PN = mkPN "Japanese linden" ; -lin japanese_maple_PN = mkPN "Japanese maple" ; -lin japanese_millet_PN = mkPN "Japanese millet" ; -lin japanese_monetary_unit_PN = mkPN "Japanese monetary unit" ; -lin japanese_morning_glory_PN = mkPN "Japanese morning glory" ; -lin japanese_oak_PN = mkPN "Japanese oak" ; -lin japanese_oyster_PN = mkPN "Japanese oyster" ; -lin japanese_pagoda_tree_PN = mkPN "Japanese pagoda tree" ; -lin japanese_persimmon_PN = mkPN "Japanese persimmon" ; -lin japanese_pink_PN = mkPN "Japanese pink" ; -lin japanese_plum_PN = mkPN "Japanese plum" ; -lin japanese_poinsettia_PN = mkPN "Japanese poinsettia" ; -lin japanese_privet_PN = mkPN "Japanese privet" ; -lin japanese_quince_PN = mkPN "Japanese quince" ; -lin japanese_red_pine_PN = mkPN "Japanese red pine" ; -lin japanese_snowbell_PN = mkPN "Japanese snowbell" ; -lin japanese_spaniel_PN = mkPN "Japanese spaniel" ; -lin japanese_spurge_PN = mkPN "Japanese spurge" ; -lin japanese_stranglehold_PN = mkPN "Japanese stranglehold" ; -lin japanese_tree_lilac_PN = mkPN "Japanese tree lilac" ; -lin japanese_umbrella_pine_PN = mkPN "Japanese umbrella pine" ; -lin japanese_wistaria_PN = mkPN "Japanese wistaria" ; -lin japanese_yew_PN = mkPN "Japanese yew" ; -lin japheth_PN = mkPN "Japheth" ; -lin jarrell_PN = mkPN "Jarrell" ; -lin jarrow_PN = mkPN "Jarrow"; -- from DictEng -lin jarvik_heart_PN = mkPN "Jarvik heart" ; -lin jasminum_PN = mkPN "Jasminum" ; -lin jason_PN = mkPN "Jason"; -- from DictEng -lin jaspers_PN = mkPN "Jaspers" ; -lin jassidae_PN = mkPN "Jassidae" ; -lin jat_PN = mkPN "Jat" ; -lin jatropha_PN = mkPN "Jatropha" ; -lin java_PN = mkPN "Java"; -- from DictEng -lin java_man_PN = mkPN "Java man" ; -lin java_sparrow_PN = mkPN "Java sparrow" ; -lin javanese_A = compoundA (mkA "javanese"); -- from DictEng -lin javanese_PN = mkPN "Javanese" ; -lin javanthropus_PN = mkPN "Javanthropus" ; -lin javelle_water_PN = mkPN "Javelle water" ; -lin jaws_of_life_PN = mkPN "Jaws of Life" ; -lin jay_PN = mkPN "Jay" ; -lin jayshullah_PN = mkPN "Jayshullah" ; -lin jazz_age_PN = mkPN "Jazz Age" ; -lin jc_PN = mkPN "Jc"; -- from DictEng -lin jean_PN = mkPN "Jean"; -- from DictEng -lin jeanie_PN = mkPN "Jeanie"; -- from DictEng -lin jeanne_d'arc_PN = mkPN "Jeanne d'Arc" ; -lin jebel_musa_PN = mkPN "Jebel Musa" ; -lin jedburgh_PN = mkPN "Jedburgh"; -- from DictEng -lin jeddah_PN = mkPN "Jeddah" ; -lin jeff_PN = mkPN "Jeff"; -- from DictEng -lin jeffers_PN = mkPN "Jeffers" ; -lin jefferson_PN = mkPN "Jefferson" ; -lin jefferson_city_PN = mkPN "Jefferson City" ; -lin jefferson_davis'_birthday_PN = mkPN "Jefferson Davis' Birthday" ; -lin jeffersonian_A = mkA "Jeffersonian" ; -lin jeffersonian_PN = mkPN "Jeffersonian" ; -lin jeffrey_PN = mkPN "Jeffrey"; -- from DictEng -lin jeffrey_pine_PN = mkPN "Jeffrey pine" ; -lin jehovah_PN = mkPN "Jehovah"; -- from DictEng -lin jehovah's_witness_PN = mkPN "Jehovah's Witness" ; -lin jehovah's_witnesses_PN = mkPN "Jehovah's Witnesses" ; -lin jekyll_and_hyde_PN = mkPN "Jekyll - and - hyde"; -- from DictEng -lin jemaah_islamiyah_PN = mkPN "Jemaah Islamiyah" ; -lin jena_PN = mkPN "Jena" ; -lin jenner_PN = mkPN "Jenner" ; -lin jennifer_PN = mkPN "Jennifer"; -- from DictEng -lin jenny_PN = mkPN "Jenny"; -- from DictEng -lin jensen_PN = mkPN "Jensen" ; -lin jeremiah_PN = mkPN "Jeremiah" ; -lin jeremy_PN = mkPN "Jeremy"; -- from DictEng -lin jerez_PN = mkPN "Jerez" ; -lin jericho_PN = mkPN "Jericho" ; -lin jeroboam_PN = mkPN "Jeroboam" ; -lin jerome_PN = mkPN "Jerome"; -- from DictEng -lin jerry_PN = mkPN "Jerry"; -- from DictEng -lin jersey_PN = mkPN "Jersey"; -- from DictEng -lin jersey_city_PN = mkPN "Jersey City" ; -lin jersey_elm_PN = mkPN "Jersey elm" ; -lin jersey_knapweed_PN = mkPN "Jersey knapweed" ; -lin jerusalem_PN = mkPN "Jerusalem" ; -lin jerusalem_warriors_PN = mkPN "Jerusalem Warriors" ; -lin jerusalem_artichoke_PN = mkPN "Jerusalem artichoke" ; -lin jerusalem_cherry_PN = mkPN "Jerusalem cherry" ; -lin jerusalem_cross_PN = mkPN "Jerusalem cross" ; -lin jerusalem_oak_PN = mkPN "Jerusalem oak" ; -lin jerusalem_sage_PN = mkPN "Jerusalem sage" ; -lin jerusalem_thorn_PN = mkPN "Jerusalem thorn" ; -lin jespersen_PN = mkPN "Jespersen" ; -lin jess_PN = mkPN "Jess"; -- from DictEng -lin jessica_PN = mkPN "Jessica"; -- from DictEng -lin jessie_PN = mkPN "Jessie"; -- from DictEng -lin jesuit_PN = mkPN "Jesuit" ; -lin jesuitical_A = compoundA (mkA "jesuitical"); -- from DictEng -lin jesuitism_PN = mkPN "Jesuitism" ; -lin jesus_PN = mkPN "Jesus"; -- from DictEng -lin jeth_PN = mkPN "Jeth" ; -lin jevons_PN = mkPN "Jevons" ; -lin jew_PN = mkPN "Jew" ; -lin jew's_ear_PN = mkPN "Jew's ear" ; -lin jewbush_PN = mkPN "Jewbush" ; -lin jewess_PN = mkPN "Jewess" ; -lin jewish_A = compoundA (mkA "jewish"); -- from DictEng -lin jewish_calendar_PN = mkPN "Jewish calendar" ; -lin jewish_calendar_month_PN = mkPN "Jewish calendar month" ; -lin jewish_holy_day_PN = mkPN "Jewish holy day" ; -lin jewish_rye_bread_PN = mkPN "Jewish rye bread" ; -lin jewison_PN = mkPN "Jewison" ; -lin jewry_PN = mkPN "Jewry" ; -lin jezebel_PN = mkPN "Jezebel" ; -lin jihadist_PN = mkPN "Jihadist" ; -lin jill_PN = mkPN "Jill"; -- from DictEng -lin jim_PN = mkPN "Jim"; -- from DictEng -lin jimenez_PN = mkPN "Jimenez" ; -lin jimenez_de_cisneros_PN = mkPN "Jimenez de Cisneros" ; -lin jimmy_PN = mkPN "Jimmy"; -- from DictEng -lin jinghpo_PN = mkPN "Jinghpo" ; -lin jinja_PN = mkPN "Jinja" ; -lin jinnah_PN = mkPN "Jinnah" ; -lin jirga_PN = mkPN "Jirga" ; -lin jnr_PN = mkPN "Jnr"; -- from DictEng -lin jo_PN = mkPN "Jo"; -- from DictEng -lin joachim_PN = mkPN "Joachim" ; -lin joan_PN = mkPN "Joan"; -- from DictEng -lin joanie_PN = mkPN "Joanie"; -- from DictEng -lin joann_PN = mkPN "Joann"; -- from DictEng -lin joanna_PN = mkPN "Joanna"; -- from DictEng -lin joanne_PN = mkPN "Joanne"; -- from DictEng -lin joao_pessoa_PN = mkPN "Joao Pessoa" ; -lin job_PN = mkPN "Job"; -- from DictEng -lin job's_comforter_PN = mkPN "Job's comforter" ; -lin job's_tears_PN = mkPN "Job's tears" ; -lin jocasta_PN = mkPN "Jocasta" ; -lin jocelyn_PN = mkPN "Jocelyn"; -- from DictEng -lin joe_PN = mkPN "Joe"; -- from DictEng -lin joe_pye_weed_PN = mkPN "Joe Pye weed" ; -lin joel_PN = mkPN "Joel" ; -lin joey_PN = mkPN "Joey"; -- from DictEng -lin joffre_PN = mkPN "Joffre" ; -lin joffrey_PN = mkPN "Joffrey" ; -lin johannesburg_PN = mkPN "Johannesburg"; -- from DictEng -lin john_PN = mkPN "John"; -- from DictEng -lin john_chrysostom_PN = mkPN "John Chrysostom" ; -lin john_doe_PN = mkPN "John Doe" ; -lin john_dory_PN = mkPN "John Dory" ; -lin john_henry_PN = mkPN "John Henry" ; -lin john_paul_i_PN = mkPN "John Paul I" ; -lin john_paul_ii_PN = mkPN "John Paul II" ; -lin john_xxiii_PN = mkPN "John XXIII" ; -lin john_of_gaunt_PN = mkPN "John of Gaunt" ; -lin john_the_baptist_PN = mkPN "John the Baptist" ; -lin johnny_PN = mkPN "Johnny"; -- from DictEng -lin johns_PN = mkPN "Johns" ; -lin johns_hopkins_PN = mkPN "Johns Hopkins" ; -lin johnson_PN = mkPN "Johnson" ; -lin johnson_city_PN = mkPN "Johnson City" ; -lin johnson_grass_PN = mkPN "Johnson grass" ; -lin johnston_PN = mkPN "Johnston" ; -lin johnstone_PN = mkPN "Johnstone"; -- from DictEng -lin joint_chiefs_of_staff_PN = mkPN "Joint Chiefs of Staff" ; -lin joint_direct_attack_munition_PN = mkPN "Joint Direct Attack Munition" ; -lin joliot_PN = mkPN "Joliot" ; -lin joliot_curie_PN = mkPN "Joliot Curie" ; -lin jolliet_PN = mkPN "Jolliet" ; -lin jolson_PN = mkPN "Jolson" ; -lin jonah_PN = mkPN "Jonah"; -- from DictEng -lin jonah_crab_PN = mkPN "Jonah crab" ; -lin jonathan_PN = mkPN "Jonathan"; -- from DictEng -lin jones_PN = mkPN "Jones" ; -lin jones'_penstemon_PN = mkPN "Jones' penstemon" ; -lin jonesboro_PN = mkPN "Jonesboro" ; -lin jong_PN = mkPN "Jong" ; -lin jonson_PN = mkPN "Jonson" ; -lin joplin_PN = mkPN "Joplin" ; -lin jordan_PN = mkPN "Jordan"; -- from DictEng -lin jordan_almond_PN = mkPN "Jordan almond" ; -lin jordanella_PN = mkPN "Jordanella" ; -lin jordanian_A = compoundA (mkA "Jordanian"); -- from DictEng -lin jordanian_PN = mkPN "Jordanian" ; -lin jordanian_dinar_PN = mkPN "Jordanian dinar" ; -lin jordanian_monetary_unit_PN = mkPN "Jordanian monetary unit" ; -lin joseph_PN = mkPN "Joseph"; -- from DictEng -lin josephine_PN = mkPN "Josephine"; -- from DictEng -lin josephus_PN = mkPN "Josephus" ; -lin josh_PN = mkPN "Josh"; -- from DictEng -lin joshua_PN = mkPN "Joshua"; -- from DictEng -lin joshua_tree_PN = mkPN "Joshua tree" ; -lin jotun_PN = mkPN "Jotun" ; -lin joule_PN = mkPN "Joule" ; -lin jove_PN = mkPN "Jove"; -- from DictEng -lin jovian_A = mkA "Jovian" ; -lin jovian_planet_PN = mkPN "Jovian planet" ; -lin jowett_PN = mkPN "Jowett" ; -lin joy_PN = mkPN "Joy"; -- from DictEng -lin joyce_PN = mkPN "Joyce"; -- from DictEng -lin juan_carlos_PN = mkPN "Juan Carlos" ; -lin judah_PN = mkPN "Judah" ; -lin judaic_A = compoundA (mkA "judaic"); -- from DictEng -lin judaica_PN = mkPN "Judaica" ; -lin judaism_PN = mkPN "Judaism" ; -lin judas_PN = mkPN "Judas"; -- from DictEng -lin judas_maccabaeus_PN = mkPN "Judas Maccabaeus" ; -lin judas_tree_PN = mkPN "Judas tree" ; -lin jude_PN = mkPN "Jude" ; -lin judea_PN = mkPN "Judea" ; -lin judeo_christian_A = compoundA (mkA "Judeo Christian") ; -lin judeo_spanish_PN = mkPN "Judeo Spanish" ; -lin judges_PN = mkPN "Judges" ; -lin judgment_day_PN = mkPN "Judgment Day" ; -lin judith_PN = mkPN "Judith"; -- from DictEng -lin judy_PN = mkPN "Judy"; -- from DictEng -lin juggernaut_PN = mkPN "Juggernaut" ; -lin juglandaceae_PN = mkPN "Juglandaceae" ; -lin juglandales_PN = mkPN "Juglandales" ; -lin juglans_PN = mkPN "Juglans" ; -lin jul_PN = mkPN "Jul"; -- from DictEng -lin julia_PN = mkPN "Julia"; -- from DictEng -lin julian_A = compoundA (mkA "julian"); -- from DictEng -lin julian_PN = mkPN "Julian"; -- from DictEng -lin julian_calendar_PN = mkPN "Julian calendar" ; -lin julie_PN = mkPN "Julie"; -- from DictEng -lin juliet_PN = mkPN "Juliet"; -- from DictEng -lin july_PN = mkPN "July" ; -lin jumada_i_PN = mkPN "Jumada I" ; -lin jumada_ii_PN = mkPN "Jumada II" ; -lin jun_PN = mkPN "Jun"; -- from DictEng -lin juncaceae_PN = mkPN "Juncaceae" ; -lin juncus_PN = mkPN "Juncus" ; -lin jund_ul_islam_PN = mkPN "Jund ul Islam" ; -lin june_PN = mkPN "June"; -- from DictEng -lin june_beetle_PN = mkPN "June beetle" ; -lin juneau_PN = mkPN "Juneau" ; -lin juneberry_PN = mkPN "Juneberry" ; -lin jung_PN = mkPN "Jung" ; -lin jungermanniaceae_PN = mkPN "Jungermanniaceae" ; -lin jungermanniales_PN = mkPN "Jungermanniales" ; -lin jungian_A = mkA "Jungian" ; -lin jungian_PN = mkPN "Jungian" ; -lin jungian_psychology_PN = mkPN "Jungian psychology" ; -lin junin_virus_PN = mkPN "Junin virus" ; -lin junior_PN = mkPN "Junior" ; -lin juniperus_PN = mkPN "Juniperus" ; -lin junker_PN = mkPN "Junker" ; -lin junkers_PN = mkPN "Junkers" ; -lin juno_PN = mkPN "Juno" ; -lin junoesque_A = compoundA (mkA "junoesque"); -- from DictEng -lin jupiter_PN = mkPN "Jupiter"; -- from DictEng -lin jupiter's_beard_PN = mkPN "Jupiter's beard" ; -lin jupiter_fidius_PN = mkPN "Jupiter Fidius" ; -lin jupiter_fulgur_PN = mkPN "Jupiter Fulgur" ; -lin jupiter_optimus_maximus_PN = mkPN "Jupiter Optimus Maximus" ; -lin jupiter_pluvius_PN = mkPN "Jupiter Pluvius" ; -lin jupiter_tonans_PN = mkPN "Jupiter Tonans" ; -lin jurassic_A = mkA "Jurassic" ; -lin jurassic_PN = mkPN "Jurassic" ; -lin jussieu_PN = mkPN "Jussieu" ; -lin justin_PN = mkPN "Justin"; -- from DictEng -lin justinian_PN = mkPN "Justinian" ; -lin jute_PN = mkPN "Jute" ; -lin jutland_PN = mkPN "Jutland" ; -lin juvenal_PN = mkPN "Juvenal" ; -lin jynx_PN = mkPN "Jynx" ; -lin k_PN = mkPN "K" ; -lin k2_PN = mkPN "K2" ; -lin k_ration_PN = mkPN "K ration" ; -lin ka_PN = mkPN "Ka" ; -lin kaaba_PN = mkPN "Kaaba" ; -lin kabbalah_PN = mkPN "Kabbalah" ; -lin kabbalism_PN = mkPN "Kabbalism" ; -lin kabul_PN = mkPN "Kabul" ; -lin kachaturian_PN = mkPN "Kachaturian" ; -lin kachin_PN = mkPN "Kachin" ; -lin kadai_PN = mkPN "Kadai" ; -lin kafir_PN = mkPN "Kafir" ; -lin kafiri_PN = mkPN "Kafiri" ; -lin kafka_PN = mkPN "Kafka" ; -lin kahane_chai_PN = mkPN "Kahane Chai" ; -lin kahlua_PN = mkPN "Kahlua" ; -lin kahn_PN = mkPN "Kahn" ; -lin kahoolawe_PN = mkPN "Kahoolawe" ; -lin kaiser_PN = mkPN "Kaiser" ; -lin kakatoe_PN = mkPN "Kakatoe" ; -lin kakemono_PN = mkPN "Kakemono" ; -lin kalahari_PN = mkPN "Kalahari" ; -lin kalamazoo_PN = mkPN "Kalamazoo" ; -lin kalapooia_PN = mkPN "Kalapooia" ; -lin kalapooian_PN = mkPN "Kalapooian" ; -lin kalashnikov_PN = mkPN "Kalashnikov" ; -lin kalashnikov_culture_PN = mkPN "Kalashnikov culture" ; -lin kalgan_PN = mkPN "Kalgan"; -- from DictEng -lin kali_PN = mkPN "Kali" ; -lin kalinin_PN = mkPN "Kalinin" ; -lin kalki_PN = mkPN "Kalki" ; -lin kallman's_syndrome_PN = mkPN "Kallman's syndrome" ; -lin kalon_tripa_PN = mkPN "Kalon Tripa" ; -lin kalotermes_PN = mkPN "Kalotermes" ; -lin kalotermitidae_PN = mkPN "Kalotermitidae" ; -lin kaluga_PN = mkPN "Kaluga" ; -lin kam_sui_PN = mkPN "Kam Sui" ; -lin kama_PN = mkPN "Kama" ; -lin kamarupan_PN = mkPN "Kamarupan" ; -lin kamasutra_PN = mkPN "Kamasutra" ; -lin kamba_PN = mkPN "Kamba" ; -lin kamchatka_peninsula_PN = mkPN "Kamchatka Peninsula" ; -lin kamchatkan_sea_eagle_PN = mkPN "Kamchatkan sea eagle" ; -lin kamehameha_i_PN = mkPN "Kamehameha I" ; -lin kamet_PN = mkPN "Kamet" ; -lin kami_PN = mkPN "Kami" ; -lin kamia_PN = mkPN "Kamia" ; -lin kammon_strait_bridge_PN = mkPN "Kammon Strait Bridge" ; -lin kampala_PN = mkPN "Kampala" ; -lin kampuchea_PN = mkPN "Kampuchea"; -- from DictEng -lin kananga_PN = mkPN "Kananga" ; -lin kanara_PN = mkPN "Kanara" ; -lin kanarese_PN = mkPN "Kanarese" ; -lin kanawha_PN = mkPN "Kanawha" ; -lin kanchenjunga_PN = mkPN "Kanchenjunga" ; -lin kandahar_PN = mkPN "Kandahar" ; -lin kandinsky_PN = mkPN "Kandinsky" ; -lin kandy_PN = mkPN "Kandy" ; -lin kannada_PN = mkPN "Kannada" ; -lin kannada_speaking_A = compoundA (mkA "Kannada speaking") ; -lin kanpur_PN = mkPN "Kanpur"; -- from DictEng -lin kansa_PN = mkPN "Kansa" ; -lin kansan_PN = mkPN "Kansan" ; -lin kansas_PN = mkPN "Kansas"; -- from DictEng -lin kansas_city_PN = mkPN "Kansas city"; -- from DictEng -lin kant_PN = mkPN "Kant" ; -lin kantian_A = mkA "Kantian" ; -lin kaohsiung_PN = mkPN "Kaohsiung"; -- from DictEng -lin kaopectate_PN = mkPN "Kaopectate" ; -lin kaplan_group_PN = mkPN "Kaplan Group" ; -lin kaposi's_sarcoma_PN = mkPN "Kaposi's sarcoma" ; -lin kara_kum_PN = mkPN "Kara Kum" ; -lin kara_sea_PN = mkPN "Kara Sea" ; -lin karachi_PN = mkPN "Karachi"; -- from DictEng -lin karaganda_PN = mkPN "Karaganda"; -- from DictEng -lin karaites_PN = mkPN "Karaites" ; -lin karakalpak_PN = mkPN "Karakalpak" ; -lin karakoram_PN = mkPN "Karakoram" ; -lin karelia_PN = mkPN "Karelia" ; -lin karelian_PN = mkPN "Karelian" ; -lin karelian_isthmus_PN = mkPN "Karelian Isthmus" ; -lin karen_PN = mkPN "Karen"; -- from DictEng -lin karlfeldt_PN = mkPN "Karlfeldt" ; -lin karloff_PN = mkPN "Karloff" ; -lin karlsruhe_PN = mkPN "Karlsruhe"; -- from DictEng -lin karnataka_PN = mkPN "Karnataka" ; -lin karok_PN = mkPN "Karok" ; -lin karpov_PN = mkPN "Karpov" ; -lin karsavina_PN = mkPN "Karsavina" ; -lin kartik_PN = mkPN "Kartik" ; -lin kartikeya_PN = mkPN "Kartikeya" ; -lin kasai_PN = mkPN "Kasai" ; -lin kashag_PN = mkPN "Kashag" ; -lin kashmir_PN = mkPN "Kashmir"; -- from DictEng -lin kashmiri_A = compoundA (mkA "kashmiri"); -- from DictEng -lin kashmiri_PN = mkPN "Kashmiri" ; -lin kasparov_PN = mkPN "Kasparov" ; -lin kassel_PN = mkPN "Kassel"; -- from DictEng -lin kassite_PN = mkPN "Kassite" ; -lin kastler_PN = mkPN "Kastler" ; -lin kate_PN = mkPN "Kate"; -- from DictEng -lin kath_PN = mkPN "Kath"; -- from DictEng -lin katharevusa_PN = mkPN "Katharevusa" ; -lin katherine_PN = mkPN "Katherine"; -- from DictEng -lin kathmandu_PN = mkPN "Kathmandu" ; -lin kathy_PN = mkPN "Kathy"; -- from DictEng -lin katie_PN = mkPN "Katie"; -- from DictEng -lin katmai_national_park_PN = mkPN "Katmai National Park" ; -lin katowice_PN = mkPN "Katowice"; -- from DictEng -lin katsina_PN = mkPN "Katsina" ; -lin katsuwonidae_PN = mkPN "Katsuwonidae" ; -lin katsuwonus_PN = mkPN "Katsuwonus" ; -lin kattegatt_PN = mkPN "Kattegatt" ; -lin kauai_PN = mkPN "Kauai" ; -lin kaufman_PN = mkPN "Kaufman" ; -lin kaunas_PN = mkPN "Kaunas" ; -lin kaunda_PN = mkPN "Kaunda" ; -lin kawasaki_disease_PN = mkPN "Kawasaki disease" ; -lin kay_PN = mkPN "Kay"; -- from DictEng -lin kayser_fleischer_ring_PN = mkPN "Kayser Fleischer ring" ; -lin kazak_PN = mkPN "Kazak" ; -lin kazakhstan_PN = mkPN "Kazakhstan" ; -lin kazakhstani_A = mkA "Kazakhstani" ; -lin kazakhstani_PN = mkPN "Kazakhstani" ; -lin kazakhstani_monetary_unit_PN = mkPN "Kazakhstani monetary unit" ; -lin kazan_PN = mkPN "Kazan"; -- from DictEng -lin kean_PN = mkPN "Kean" ; -lin keaton_PN = mkPN "Keaton" ; -lin keats_PN = mkPN "Keats" ; -lin keble_PN = mkPN "Keble" ; -lin kegel_exercises_PN = mkPN "Kegel exercises" ; -lin keighley_PN = mkPN "Keighley"; -- from DictEng -lin keith_PN = mkPN "Keith"; -- from DictEng -lin kekchi_PN = mkPN "Kekchi" ; -lin kekule_PN = mkPN "Kekule" ; -lin keller_PN = mkPN "Keller" ; -lin kellogg_PN = mkPN "Kellogg" ; -lin kelly_PN = mkPN "Kelly" ; -lin kelso_PN = mkPN "Kelso"; -- from DictEng -lin kelty_PN = mkPN "Kelty"; -- from DictEng -lin kelvin_PN = mkPN "Kelvin" ; -lin kelvin_scale_PN = mkPN "Kelvin scale" ; -lin kemsing_PN = mkPN "Kemsing"; -- from DictEng -lin ken_PN = mkPN "Ken"; -- from DictEng -lin kenai_fjords_national_park_PN = mkPN "Kenai Fjords National Park" ; -lin kendal_PN = mkPN "Kendal"; -- from DictEng -lin kendal_green_PN = mkPN "Kendal green" ; -lin kendall_PN = mkPN "Kendall" ; -lin kendall_partial_rank_correlation_PN = mkPN "Kendall partial rank correlation" ; -lin kendall_test_PN = mkPN "Kendall test" ; -lin kendrew_PN = mkPN "Kendrew" ; -lin kenilworth_PN = mkPN "Kenilworth"; -- from DictEng -lin kennan_PN = mkPN "Kennan" ; -lin kennedia_PN = mkPN "Kennedia" ; -lin kennedy_PN = mkPN "Kennedy" ; -lin kennelly_PN = mkPN "Kennelly" ; -lin kennesaw_mountain_PN = mkPN "Kennesaw Mountain" ; -lin kenneth_PN = mkPN "Kenneth"; -- from DictEng -lin kennewick_PN = mkPN "Kennewick" ; -lin kenny_PN = mkPN "Kenny"; -- from DictEng -lin kensington_PN = mkPN "Kensington"; -- from DictEng -lin kent_PN = mkPN "Kent"; -- from DictEng -lin kentish_PN = mkPN "Kentish" ; -lin kentuckian_PN = mkPN "Kentuckian" ; -lin kentucky_PN = mkPN "Kentucky"; -- from DictEng -lin kentucky_derby_PN = mkPN "Kentucky Derby" ; -lin kentucky_black_bass_PN = mkPN "Kentucky black bass" ; -lin kentucky_bluegrass_PN = mkPN "Kentucky bluegrass" ; -lin kentucky_coffee_tree_PN = mkPN "Kentucky coffee tree" ; -lin kentucky_wonder_PN = mkPN "Kentucky wonder" ; -lin kentucky_yellowwood_PN = mkPN "Kentucky yellowwood" ; -lin kenya_PN = mkPN "Kenya"; -- from DictEng -lin kenyan_A = compoundA (mkA "kenyan"); -- from DictEng -lin kenyan_PN = mkPN "Kenyan" ; -lin kenyan_monetary_unit_PN = mkPN "Kenyan monetary unit" ; -lin kenyan_shilling_PN = mkPN "Kenyan shilling" ; -lin kenyapithecus_PN = mkPN "Kenyapithecus" ; -lin kenyata_PN = mkPN "Kenyata" ; -lin keogh_plan_PN = mkPN "Keogh plan" ; -lin keokuk_PN = mkPN "Keokuk" ; -lin kepler_PN = mkPN "Kepler" ; -lin kepler's_first_law_PN = mkPN "Kepler's first law" ; -lin kepler's_law_PN = mkPN "Kepler's law" ; -lin kepler's_second_law_PN = mkPN "Kepler's second law" ; -lin kepler's_third_law_PN = mkPN "Kepler's third law" ; -lin kera_PN = mkPN "Kera" ; -lin kerbala_PN = mkPN "Kerbala" ; -lin kerensky_PN = mkPN "Kerensky" ; -lin kern_PN = mkPN "Kern" ; -lin kernig's_sign_PN = mkPN "Kernig's sign" ; -lin kerouac_PN = mkPN "Kerouac" ; -lin kerr_cell_PN = mkPN "Kerr cell" ; -lin kerry_PN = mkPN "Kerry"; -- from DictEng -lin kerry_blue_terrier_PN = mkPN "Kerry blue terrier" ; -lin kesey_PN = mkPN "Kesey" ; -lin kettering_PN = mkPN "Kettering"; -- from DictEng -lin keuka_lake_PN = mkPN "Keuka Lake" ; -lin kevin_PN = mkPN "Kevin"; -- from DictEng -lin key_PN = mkPN "Key" ; -lin key_west_PN = mkPN "Key West" ; -lin keynes_PN = mkPN "Keynes" ; -lin keynesian_A = mkA "Keynesian" ; -lin keynesian_PN = mkPN "Keynesian" ; -lin keynesianism_PN = mkPN "Keynesianism" ; -lin keynsham_PN = mkPN "Keynsham"; -- from DictEng -lin keyworth_PN = mkPN "Keyworth"; -- from DictEng -lin khabarovsk_PN = mkPN "Khabarovsk" ; -lin khachaturian_PN = mkPN "Khachaturian" ; -lin khalkha_PN = mkPN "Khalkha" ; -lin khalsa_PN = mkPN "Khalsa" ; -lin khama_PN = mkPN "Khama" ; -lin khamti_PN = mkPN "Khamti" ; -lin khanty_PN = mkPN "Khanty" ; -lin kharkov_PN = mkPN "Kharkov"; -- from DictEng -lin khartoum_PN = mkPN "Khartoum"; -- from DictEng -lin khaya_PN = mkPN "Khaya" ; -lin khedive_PN = mkPN "Khedive" ; -lin khepera_PN = mkPN "Khepera" ; -lin khmer_PN = mkPN "Khmer" ; -lin khmer_rouge_PN = mkPN "Khmer Rouge" ; -lin khoikhoin_PN = mkPN "Khoikhoin" ; -lin khoisan_PN = mkPN "Khoisan" ; -lin khomeini_PN = mkPN "Khomeini" ; -lin khowar_PN = mkPN "Khowar" ; -lin khrushchev_PN = mkPN "Khrushchev" ; -lin khuen_PN = mkPN "Khuen" ; -lin khyber_pass_PN = mkPN "Khyber Pass" ; -lin ki_PN = mkPN "Ki" ; -lin kichaga_PN = mkPN "Kichaga" ; -lin kichai_PN = mkPN "Kichai" ; -lin kickapoo_PN = mkPN "Kickapoo" ; -lin kidd_PN = mkPN "Kidd" ; -lin kidderminster_PN = mkPN "Kidderminster"; -- from DictEng -lin kidlington_PN = mkPN "Kidlington"; -- from DictEng -lin kidsgrove_PN = mkPN "Kidsgrove"; -- from DictEng -lin kierkegaard_PN = mkPN "Kierkegaard" ; -lin kieslowski_PN = mkPN "Kieslowski" ; -lin kiev_PN = mkPN "Kiev"; -- from DictEng -lin kigali_PN = mkPN "Kigali" ; -lin kiggelaria_PN = mkPN "Kiggelaria" ; -lin kilbirnie_PN = mkPN "Kilbirnie"; -- from DictEng -lin kildare_PN = mkPN "Kildare"; -- from DictEng -lin kilimanjaro_PN = mkPN "Kilimanjaro" ; -lin kiliwa_PN = mkPN "Kiliwa" ; -lin kilkenny_PN = mkPN "Kilkenny"; -- from DictEng -lin killarney_PN = mkPN "Killarney"; -- from DictEng -lin killarney_fern_PN = mkPN "Killarney fern" ; -lin kilmarnock_PN = mkPN "Kilmarnock"; -- from DictEng -lin kilroy_PN = mkPN "Kilroy" ; -lin kilsyth_PN = mkPN "Kilsyth"; -- from DictEng -lin kilwinning_PN = mkPN "Kilwinning"; -- from DictEng -lin kimberley_PN = mkPN "Kimberley"; -- from DictEng -lin kinetoscope_PN = mkPN "Kinetoscope" ; -lin king_PN = mkPN "King" ; -lin king's_counsel_PN = mkPN "King's Counsel" ; -lin king's_english_PN = mkPN "King's English" ; -lin king's_lynn_PN = mkPN "King's lynn"; -- from DictEng -lin king_charles_spaniel_PN = mkPN "King Charles spaniel" ; -lin king_william_pine_PN = mkPN "King William pine" ; -lin king_of_england_PN = mkPN "King of England" ; -lin king_of_france_PN = mkPN "King of France" ; -lin king_of_the_germans_PN = mkPN "King of the Germans" ; -lin kingdom_of_god_PN = mkPN "Kingdom of God" ; -lin kings_canyon_national_park_PN = mkPN "Kings Canyon National Park" ; -lin kingsbury_PN = mkPN "Kingsbury"; -- from DictEng -lin kingsteignton_PN = mkPN "Kingsteignton"; -- from DictEng -lin kingston_PN = mkPN "Kingston"; -- from DictEng -lin kingston_upon_hull_PN = mkPN "Kingston upon hull"; -- from DictEng -lin kingston_upon_thames_PN = mkPN "Kingston upon thames"; -- from DictEng -lin kingstown_PN = mkPN "Kingstown" ; -lin kinosternidae_PN = mkPN "Kinosternidae" ; -lin kinosternon_PN = mkPN "Kinosternon" ; -lin kinsey_PN = mkPN "Kinsey" ; -lin kinshasa_PN = mkPN "Kinshasa"; -- from DictEng -lin kinyarwanda_PN = mkPN "Kinyarwanda" ; -lin kiowa_PN = mkPN "Kiowa" ; -lin kipling_PN = mkPN "Kipling" ; -lin kiplingesque_A = mkA "Kiplingesque" ; -lin kipp's_apparatus_PN = mkPN "Kipp's apparatus" ; -lin kippax_PN = mkPN "Kippax"; -- from DictEng -lin kirchhoff_PN = mkPN "Kirchhoff" ; -lin kirchhoff's_laws_PN = mkPN "Kirchhoff's laws" ; -lin kirchner_PN = mkPN "Kirchner" ; -lin kirghiz_PN = mkPN "Kirghiz" ; -lin kiribati_PN = mkPN "Kiribati" ; -lin kiribati_dollar_PN = mkPN "Kiribati dollar" ; -lin kirin_PN = mkPN "Kirin"; -- from DictEng -lin kirkby_PN = mkPN "Kirkby"; -- from DictEng -lin kirkby_in_ashfield_PN = mkPN "Kirkby in ashfield"; -- from DictEng -lin kirkcaldy_PN = mkPN "Kirkcaldy"; -- from DictEng -lin kirkham_PN = mkPN "Kirkham"; -- from DictEng -lin kirkia_PN = mkPN "Kirkia" ; -lin kirkintilloch_PN = mkPN "Kirkintilloch"; -- from DictEng -lin kirkuk_PN = mkPN "Kirkuk" ; -lin kirkwall_PN = mkPN "Kirkwall"; -- from DictEng -lin kishar_PN = mkPN "Kishar" ; -lin kishinev_PN = mkPN "Kishinev" ; -lin kislev_PN = mkPN "Kislev" ; -lin kissimmee_PN = mkPN "Kissimmee" ; -lin kissinger_PN = mkPN "Kissinger" ; -lin kisumu_PN = mkPN "Kisumu" ; -lin kiswahili_PN = mkPN "Kiswahili" ; -lin kitakyushu_PN = mkPN "Kitakyushu"; -- from DictEng -lin kitchener_PN = mkPN "Kitchener" ; -lin kitty_PN = mkPN "Kitty"; -- from DictEng -lin kitty_litter_PN = mkPN "Kitty Litter" ; -lin kivu_PN = mkPN "Kivu" ; -lin klaipeda_PN = mkPN "Klaipeda" ; -lin klamath_PN = mkPN "Klamath" ; -lin klamath_falls_PN = mkPN "Klamath Falls" ; -lin klansman_PN = mkPN "Klansman" ; -lin klaproth_PN = mkPN "Klaproth" ; -lin klee_PN = mkPN "Klee" ; -lin kleenex_PN = mkPN "Kleenex" ; -lin klein_PN = mkPN "Klein" ; -lin klein_bottle_PN = mkPN "Klein bottle" ; -lin kleist_PN = mkPN "Kleist" ; -lin klimt_PN = mkPN "Klimt" ; -lin kline_PN = mkPN "Kline" ; -lin klinefelter_PN = mkPN "Klinefelter" ; -lin klinefelter's_syndrome_PN = mkPN "Klinefelter's syndrome" ; -lin klondike_PN = mkPN "Klondike" ; -lin klopstock_PN = mkPN "Klopstock" ; -lin klyuchevskaya_PN = mkPN "Klyuchevskaya" ; -lin knaresborough_PN = mkPN "Knaresborough"; -- from DictEng -lin knesset_PN = mkPN "Knesset" ; -lin knight_templar_PN = mkPN "Knight Templar" ; -lin knight_of_the_round_table_PN = mkPN "Knight of the Round Table" ; -lin knightia_PN = mkPN "Knightia" ; -lin knossos_PN = mkPN "Knossos" ; -lin knottingley_PN = mkPN "Knottingley"; -- from DictEng -lin knowlton's_cactus_PN = mkPN "Knowlton's cactus" ; -lin knox_PN = mkPN "Knox" ; -lin knoxville_PN = mkPN "Knoxville" ; -lin knutsford_PN = mkPN "Knutsford"; -- from DictEng -lin koasati_PN = mkPN "Koasati" ; -lin kobe_PN = mkPN "Kobe"; -- from DictEng -lin koblenz_PN = mkPN "Koblenz"; -- from DictEng -lin kobuk_valley_national_park_PN = mkPN "Kobuk Valley National Park" ; -lin kobus_PN = mkPN "Kobus" ; -lin koch_PN = mkPN "Koch" ; -lin kodiak_PN = mkPN "Kodiak" ; -lin koestler_PN = mkPN "Koestler" ; -lin kogia_PN = mkPN "Kogia" ; -lin koine_PN = mkPN "Koine" ; -lin kokka_A = mkA "Kokka" ; -lin kokka_shinto_PN = mkPN "Kokka Shinto" ; -lin kol_nidre_PN = mkPN "Kol Nidre" ; -lin kola_peninsula_PN = mkPN "Kola Peninsula" ; -lin kolam_PN = mkPN "Kolam" ; -lin kolami_PN = mkPN "Kolami" ; -lin kolkata_PN = mkPN "Kolkata" ; -lin kolkwitzia_PN = mkPN "Kolkwitzia" ; -lin koln_PN = mkPN "Koln"; -- from DictEng -lin kolonia_PN = mkPN "Kolonia" ; -lin komi_PN = mkPN "Komi" ; -lin komodo_dragon_PN = mkPN "Komodo dragon" ; -lin kongo_PN = mkPN "Kongo" ; -lin konoe_PN = mkPN "Konoe" ; -lin konqueror_PN = mkPN "Konqueror" ; -lin koopmans_PN = mkPN "Koopmans" ; -lin koplik's_spots_PN = mkPN "Koplik's spots" ; -lin koran_PN = mkPN "Koran" ; -lin koranic_A = compoundA (mkA "koranic"); -- from DictEng -lin korbut_PN = mkPN "Korbut" ; -lin korchnoi_PN = mkPN "Korchnoi" ; -lin korda_PN = mkPN "Korda" ; -lin kordofan_PN = mkPN "Kordofan" ; -lin kordofanian_PN = mkPN "Kordofanian" ; -lin korea_PN = mkPN "Korea"; -- from DictEng -lin korea_bay_PN = mkPN "Korea Bay" ; -lin korean_A = compoundA (mkA "korean"); -- from DictEng -lin korean_PN = mkPN "Korean" ; -lin korean_strait_PN = mkPN "Korean Strait" ; -lin korean_war_PN = mkPN "Korean War" ; -lin korean_lawn_grass_PN = mkPN "Korean lawn grass" ; -lin korean_lespedeza_PN = mkPN "Korean lespedeza" ; -lin korzybski_PN = mkPN "Korzybski" ; -lin kosciusko_PN = mkPN "Kosciusko" ; -lin kosovo_PN = mkPN "Kosovo" ; -lin kosteletzya_PN = mkPN "Kosteletzya" ; -lin kota_PN = mkPN "Kota" ; -lin kotoko_PN = mkPN "Kotoko" ; -lin koussevitzky_PN = mkPN "Koussevitzky" ; -lin krafft_ebing_PN = mkPN "Krafft Ebing" ; -lin krakatau_PN = mkPN "Krakatau" ; -lin krakow_PN = mkPN "Krakow"; -- from DictEng -lin krasner_PN = mkPN "Krasner" ; -lin krasnoyarsk_PN = mkPN "Krasnoyarsk"; -- from DictEng -lin kraut_PN = mkPN "Kraut" ; -lin krebs_PN = mkPN "Krebs" ; -lin krebs_cycle_PN = mkPN "Krebs cycle" ; -lin krefeld_PN = mkPN "Krefeld"; -- from DictEng -lin kreisler_PN = mkPN "Kreisler" ; -lin kremlin_PN = mkPN "Kremlin" ; -lin krishna_PN = mkPN "Krishna" ; -lin krishnaism_PN = mkPN "Krishnaism" ; -lin krivoi_rog_PN = mkPN "Krivoi rog"; -- from DictEng -lin kroeber_PN = mkPN "Kroeber" ; -lin kronecker_PN = mkPN "Kronecker" ; -lin kronecker_delta_PN = mkPN "Kronecker delta" ; -lin kropotkin_PN = mkPN "Kropotkin" ; -lin kroto_PN = mkPN "Kroto" ; -lin kruger_PN = mkPN "Kruger" ; -lin krupp_PN = mkPN "Krupp" ; -lin krypterophaneron_PN = mkPN "Krypterophaneron" ; -lin kshatriya_PN = mkPN "Kshatriya" ; -lin ku_klux_klan_PN = mkPN "Ku Klux Klan" ; -lin kuala_lumpur_PN = mkPN "Kuala Lumpur" ; -lin kublai_khan_PN = mkPN "Kublai Khan" ; -lin kubrick_PN = mkPN "Kubrick" ; -lin kuchean_PN = mkPN "Kuchean" ; -lin kuhn_PN = mkPN "Kuhn" ; -lin kui_PN = mkPN "Kui" ; -lin kuiper_PN = mkPN "Kuiper" ; -lin kuiper_belt_PN = mkPN "Kuiper belt" ; -lin kuiper_belt_object_PN = mkPN "Kuiper belt object" ; -lin kuki_PN = mkPN "Kuki" ; -lin kulanapan_PN = mkPN "Kulanapan" ; -lin kumasi_PN = mkPN "Kumasi" ; -lin kundt's_tube_PN = mkPN "Kundt's tube" ; -lin kunlun_PN = mkPN "Kunlun" ; -lin kunming_PN = mkPN "Kunming"; -- from DictEng -lin kuomintang_PN = mkPN "Kuomintang" ; -lin kupffer's_cell_PN = mkPN "Kupffer's cell" ; -lin kura_PN = mkPN "Kura" ; -lin kurd_PN = mkPN "Kurd" ; -lin kurdish_A = mkA "Kurdish" ; -lin kurdish_PN = mkPN "Kurdish" ; -lin kurdistan_PN = mkPN "Kurdistan" ; -lin kurdistan_workers_party_PN = mkPN "Kurdistan Workers Party" ; -lin kurosawa_PN = mkPN "Kurosawa" ; -lin kursk_PN = mkPN "Kursk" ; -lin kurux_PN = mkPN "Kurux" ; -lin kusan_PN = mkPN "Kusan" ; -lin kutuzov_PN = mkPN "Kutuzov" ; -lin kuvi_PN = mkPN "Kuvi" ; -lin kuwait_PN = mkPN "Kuwait"; -- from DictEng -lin kuwait_city_PN = mkPN "Kuwait city"; -- from DictEng -lin kuwaiti_A = compoundA (mkA "kuwaiti"); -- from DictEng -lin kuwaiti_PN = mkPN "Kuwaiti" ; -lin kuwaiti_dinar_PN = mkPN "Kuwaiti dinar" ; -lin kuwaiti_dirham_PN = mkPN "Kuwaiti dirham" ; -lin kuwaiti_monetary_unit_PN = mkPN "Kuwaiti monetary unit" ; -lin kuybyshev_PN = mkPN "Kuybyshev"; -- from DictEng -lin kuznets_PN = mkPN "Kuznets" ; -lin kwa_PN = mkPN "Kwa" ; -lin kwajalein_PN = mkPN "Kwajalein" ; -lin kwakiutl_PN = mkPN "Kwakiutl" ; -lin kwan_yin_PN = mkPN "Kwan yin" ; -lin kwangju_PN = mkPN "Kwangju" ; -lin kwannon_PN = mkPN "Kwannon" ; -lin kwanzaa_PN = mkPN "Kwanzaa" ; -lin kweiyang_PN = mkPN "Kweiyang"; -- from DictEng -lin kwell_PN = mkPN "Kwell" ; -lin kyd_PN = mkPN "Kyd" ; -lin kyoto_PN = mkPN "Kyoto"; -- from DictEng -lin kyphosidae_PN = mkPN "Kyphosidae" ; -lin kyphosus_PN = mkPN "Kyphosus" ; -lin kyrgyzstan_PN = mkPN "Kyrgyzstan" ; -lin kyrgyzstani_A = mkA "Kyrgyzstani" ; -lin kyrgyzstani_monetary_unit_PN = mkPN "Kyrgyzstani monetary unit" ; -lin kyushu_PN = mkPN "Kyushu" ; -lin kyyiv_PN = mkPN "Kyyiv" ; -lin kyzyl_kum_PN = mkPN "Kyzyl Kum" ; -lin l_PN = mkPN "L" ; -lin l'enfant_PN = mkPN "L'Enfant" ; -lin l_dopa_PN = mkPN "L dopa" ; -lin l_plate_PN = mkPN "L plate" ; -lin l_shaped_A = compoundA (mkA "L shaped") ; -lin ldl_cholesterol_PN = mkPN "LDL cholesterol" ; -lin lisp_PN = mkPN "LISP" ; -lin lisp_compiler_PN = mkPN "LISP compiler" ; -lin lisp_program_PN = mkPN "LISP program" ; -lin llud_PN = mkPN "LLud" ; -lin lp_PN = mkPN "LP" ; -lin la_PN = mkPN "La"; -- from DictEng -lin lasalle_PN = mkPN "LaSalle" ; -lin la_crosse_PN = mkPN "La Crosse" ; -lin la_fontaine_PN = mkPN "La Fontaine" ; -lin la_paz_PN = mkPN "La paz"; -- from DictEng -lin la_rochefoucauld_PN = mkPN "La Rochefoucauld" ; -lin la_spezia_PN = mkPN "La spezia"; -- from DictEng -lin la_tour_PN = mkPN "La Tour" ; -lin la_habana_PN = mkPN "La habana"; -- from DictEng -lin la_plata_PN = mkPN "La plata"; -- from DictEng -lin lab_PN = mkPN "Lab"; -- from DictEng -lin laban_PN = mkPN "Laban" ; -lin labanotation_PN = mkPN "Labanotation" ; -lin labiatae_PN = mkPN "Labiatae" ; -lin lablab_PN = mkPN "Lablab" ; -lin labor_day_PN = mkPN "Labor Day" ; -lin labourite_PN = mkPN "Labourite" ; -lin labrador_PN = mkPN "Labrador"; -- from DictEng -lin labrador_ungava_peninsula_PN = mkPN "Labrador Ungava Peninsula" ; -lin labrador_sea_PN = mkPN "Labrador Sea" ; -lin labrador_retriever_PN = mkPN "Labrador retriever" ; -lin labrador_tea_PN = mkPN "Labrador tea" ; -lin labridae_PN = mkPN "Labridae" ; -lin labrouste_PN = mkPN "Labrouste" ; -lin laburnum_PN = mkPN "Laburnum" ; -lin labyrinth_of_minos_PN = mkPN "Labyrinth of Minos" ; -lin labyrinthodontia_PN = mkPN "Labyrinthodontia" ; -lin laccopetalum_PN = mkPN "Laccopetalum" ; -lin lacerta_PN = mkPN "Lacerta" ; -lin lacertidae_PN = mkPN "Lacertidae" ; -lin lachaise_PN = mkPN "Lachaise" ; -lin lachesis_PN = mkPN "Lachesis" ; -lin lachnolaimus_PN = mkPN "Lachnolaimus" ; -lin laconia_PN = mkPN "Laconia" ; -lin laconian_PN = mkPN "Laconian" ; -lin lactarius_PN = mkPN "Lactarius" ; -lin lactobacillaceae_PN = mkPN "Lactobacillaceae" ; -lin lactophrys_PN = mkPN "Lactophrys" ; -lin lactuca_PN = mkPN "Lactuca" ; -lin ladin_PN = mkPN "Ladin" ; -lin lady_PN = mkPN "Lady" ; -lin ladyship_PN = mkPN "Ladyship" ; -lin laertes_PN = mkPN "Laertes" ; -lin lafayette_PN = mkPN "Lafayette" ; -lin laffer_PN = mkPN "Laffer" ; -lin laffer_curve_PN = mkPN "Laffer curve" ; -lin laffite_PN = mkPN "Laffite" ; -lin lag_b'omer_PN = mkPN "Lag b'Omer" ; -lin lagarostrobus_PN = mkPN "Lagarostrobus" ; -lin lagenaria_PN = mkPN "Lagenaria" ; -lin lagenophera_PN = mkPN "Lagenophera" ; -lin lagerstroemia_PN = mkPN "Lagerstroemia" ; -lin lagidium_PN = mkPN "Lagidium" ; -lin lagodon_PN = mkPN "Lagodon" ; -lin lagomorpha_PN = mkPN "Lagomorpha" ; -lin lagopus_PN = mkPN "Lagopus" ; -lin lagorchestes_PN = mkPN "Lagorchestes" ; -lin lagos_PN = mkPN "Lagos"; -- from DictEng -lin lagostomus_PN = mkPN "Lagostomus" ; -lin lagothrix_PN = mkPN "Lagothrix" ; -lin laguncularia_PN = mkPN "Laguncularia" ; -lin lahore_PN = mkPN "Lahore"; -- from DictEng -lin lahu_PN = mkPN "Lahu" ; -lin laius_PN = mkPN "Laius" ; -lin lake_albert_PN = mkPN "Lake Albert" ; -lin lake_aral_PN = mkPN "Lake Aral" ; -lin lake_chad_PN = mkPN "Lake Chad" ; -lin lake_champlain_PN = mkPN "Lake Champlain" ; -lin lake_chelan_PN = mkPN "Lake Chelan" ; -lin lake_clark_national_park_PN = mkPN "Lake Clark National Park" ; -lin lake_district_PN = mkPN "Lake District" ; -lin lake_edward_PN = mkPN "Lake Edward" ; -lin lake_erie_PN = mkPN "Lake Erie" ; -lin lake_geneva_PN = mkPN "Lake Geneva" ; -lin lake_huron_PN = mkPN "Lake Huron" ; -lin lake_ilmen_PN = mkPN "Lake Ilmen" ; -lin lake_ladoga_PN = mkPN "Lake Ladoga" ; -lin lake_mead_PN = mkPN "Lake Mead" ; -lin lake_michigan_PN = mkPN "Lake Michigan" ; -lin lake_nasser_PN = mkPN "Lake Nasser" ; -lin lake_nyasa_PN = mkPN "Lake Nyasa" ; -lin lake_onega_PN = mkPN "Lake Onega" ; -lin lake_ontario_PN = mkPN "Lake Ontario" ; -lin lake_powell_PN = mkPN "Lake Powell" ; -lin lake_st__clair_PN = mkPN "Lake St Clair" ; -lin lake_superior_PN = mkPN "Lake Superior" ; -lin lake_tahoe_PN = mkPN "Lake Tahoe" ; -lin lake_tana_PN = mkPN "Lake Tana" ; -lin lake_tanganyika_PN = mkPN "Lake Tanganyika" ; -lin lake_trasimenus_PN = mkPN "Lake Trasimenus" ; -lin lake_urmia_PN = mkPN "Lake Urmia" ; -lin lake_vanern_PN = mkPN "Lake Vanern" ; -lin lake_victoria_PN = mkPN "Lake Victoria" ; -lin lake_volta_PN = mkPN "Lake Volta" ; -lin lakeland_terrier_PN = mkPN "Lakeland terrier" ; -lin lakenheath_PN = mkPN "Lakenheath"; -- from DictEng -lin lakshmi_PN = mkPN "Lakshmi" ; -lin lallans_PN = mkPN "Lallans" ; -lin lama_PN = mkPN "Lama" ; -lin lamaism_PN = mkPN "Lamaism" ; -lin lamaist_PN = mkPN "Lamaist" ; -lin lamarck_PN = mkPN "Lamarck" ; -lin lamarckian_A = mkA "Lamarckian" ; -lin lamarckian_PN = mkPN "Lamarckian" ; -lin lamarckism_PN = mkPN "Lamarckism" ; -lin lamaze_method_of_childbirth_PN = mkPN "Lamaze method of childbirth" ; -lin lamb_PN = mkPN "Lamb" ; -lin lambert_PN = mkPN "Lambert" ; -lin lambert_eaton_syndrome_PN = mkPN "Lambert Eaton syndrome" ; -lin lambertia_PN = mkPN "Lambertia" ; -lin lambeth_PN = mkPN "Lambeth"; -- from DictEng -lin lambis_PN = mkPN "Lambis" ; -lin lamellicornia_PN = mkPN "Lamellicornia" ; -lin lamentations_PN = mkPN "Lamentations" ; -lin laminaria_PN = mkPN "Laminaria" ; -lin laminariaceae_PN = mkPN "Laminariaceae" ; -lin laminariales_PN = mkPN "Laminariales" ; -lin lamium_PN = mkPN "Lamium" ; -lin lammas_PN = mkPN "Lammas"; -- from DictEng -lin lammastide_PN = mkPN "Lammastide" ; -lin lamna_PN = mkPN "Lamna" ; -lin lamnidae_PN = mkPN "Lamnidae" ; -lin lampridae_PN = mkPN "Lampridae" ; -lin lampris_PN = mkPN "Lampris" ; -lin lampropeltis_PN = mkPN "Lampropeltis" ; -lin lampyridae_PN = mkPN "Lampyridae" ; -lin lanai_PN = mkPN "Lanai" ; -lin lanark_PN = mkPN "Lanark"; -- from DictEng -lin lancashire_PN = mkPN "Lancashire"; -- from DictEng -lin lancaster_PN = mkPN "Lancaster"; -- from DictEng -lin lancastrian_A = compoundA (mkA "lancastrian"); -- from DictEng -lin lancastrian_PN = mkPN "Lancastrian" ; -lin lancelot_PN = mkPN "Lancelot" ; -lin lanchow_PN = mkPN "Lanchow"; -- from DictEng -lin lancing_PN = mkPN "Lancing"; -- from DictEng -lin land_PN = mkPN "Land" ; -lin landau_PN = mkPN "Landau" ; -lin lander_PN = mkPN "Lander" ; -lin landowska_PN = mkPN "Landowska" ; -lin landsteiner_PN = mkPN "Landsteiner" ; -lin lane's_prince_albert_PN = mkPN "Lane's Prince Albert" ; -lin laney_PN = mkPN "Laney" ; -lin lange_PN = mkPN "Lange" ; -lin langley_PN = mkPN "Langley" ; -lin langmuir_PN = mkPN "Langmuir" ; -lin langside_PN = mkPN "Langside" ; -lin langtry_PN = mkPN "Langtry" ; -lin langue_d'oc_PN = mkPN "Langue d'oc" ; -lin langue_d'oil_PN = mkPN "Langue d'oil" ; -lin languedoc_roussillon_PN = mkPN "Languedoc Roussillon" ; -lin laniidae_PN = mkPN "Laniidae" ; -lin lanius_PN = mkPN "Lanius" ; -lin lansing_PN = mkPN "Lansing" ; -lin lanthanotidae_PN = mkPN "Lanthanotidae" ; -lin lanthanotus_PN = mkPN "Lanthanotus" ; -lin lanthanotus_borneensis_PN = mkPN "Lanthanotus borneensis" ; -lin lanzhou_PN = mkPN "Lanzhou" ; -lin lao_A = mkA "Lao" ; -lin lao_PN = mkPN "Lao" ; -lin lao_tzu_PN = mkPN "Lao tzu" ; -lin laocoon_PN = mkPN "Laocoon" ; -lin laos_PN = mkPN "Laos"; -- from DictEng -lin laotian_A = compoundA (mkA "laotian"); -- from DictEng -lin laotian_monetary_unit_PN = mkPN "Laotian monetary unit" ; -lin laplace_PN = mkPN "Laplace" ; -lin laportea_PN = mkPN "Laportea" ; -lin lapp_PN = mkPN "Lapp" ; -lin lappic_PN = mkPN "Lappic" ; -lin lappland_PN = mkPN "Lappland" ; -lin laptev_sea_PN = mkPN "Laptev Sea" ; -lin laputa_PN = mkPN "Laputa" ; -lin laputan_A = mkA "Laputan" ; -lin laramie_PN = mkPN "Laramie" ; -lin lardizabala_PN = mkPN "Lardizabala" ; -lin lardizabalaceae_PN = mkPN "Lardizabalaceae" ; -lin lardner_PN = mkPN "Lardner" ; -lin laredo_PN = mkPN "Laredo" ; -lin large_magellanic_cloud_PN = mkPN "Large Magellanic Cloud" ; -lin largs_PN = mkPN "Largs"; -- from DictEng -lin lari_PN = mkPN "Lari" ; -lin laricariidae_PN = mkPN "Laricariidae" ; -lin laridae_PN = mkPN "Laridae" ; -lin larix_PN = mkPN "Larix" ; -lin larkhall_PN = mkPN "Larkhall"; -- from DictEng -lin larne_PN = mkPN "Larne"; -- from DictEng -lin larousse_PN = mkPN "Larousse" ; -lin larrea_PN = mkPN "Larrea" ; -lin larry_PN = mkPN "Larry"; -- from DictEng -lin larus_PN = mkPN "Larus" ; -lin larvacea_PN = mkPN "Larvacea" ; -lin las_cruces_PN = mkPN "Las Cruces" ; -lin las_vegas_PN = mkPN "Las Vegas" ; -lin las_palmas_PN = mkPN "Las palmas"; -- from DictEng -lin lascar_PN = mkPN "Lascar" ; -lin lascaux_PN = mkPN "Lascaux" ; -lin lashkar_e_jhangvi_PN = mkPN "Lashkar e Jhangvi" ; -lin lashkar_e_omar_PN = mkPN "Lashkar e Omar" ; -lin lashkar_e_taiba_PN = mkPN "Lashkar e Taiba" ; -lin lasiocampa_PN = mkPN "Lasiocampa" ; -lin lasiocampidae_PN = mkPN "Lasiocampidae" ; -lin lasiurus_PN = mkPN "Lasiurus" ; -lin laskar_jihad_PN = mkPN "Laskar Jihad" ; -lin lassa_fever_PN = mkPN "Lassa fever" ; -lin lassa_virus_PN = mkPN "Lassa virus" ; -lin lassen_volcanic_national_park_PN = mkPN "Lassen Volcanic National Park" ; -lin lasso_PN = mkPN "Lasso" ; -lin last_supper_PN = mkPN "Last Supper" ; -lin lastex_PN = mkPN "Lastex" ; -lin lasthenia_PN = mkPN "Lasthenia" ; -lin lastreopsis_PN = mkPN "Lastreopsis" ; -lin late_greek_PN = mkPN "Late Greek" ; -lin late_latin_PN = mkPN "Late Latin" ; -lin lateran_PN = mkPN "Lateran" ; -lin lateran_council_PN = mkPN "Lateran Council" ; -lin lateran_palace_PN = mkPN "Lateran Palace" ; -lin lateran_treaty_PN = mkPN "Lateran Treaty" ; -lin lates_PN = mkPN "Lates" ; -lin lathyrus_PN = mkPN "Lathyrus" ; -lin latimeria_PN = mkPN "Latimeria" ; -lin latimeridae_PN = mkPN "Latimeridae" ; -lin latin_A = compoundA (mkA "latin"); -- from DictEng -lin latin_PN = mkPN "Latin" ; -lin latin_american_A = compoundA (mkA "Latin American") ; -lin latin_america_PN = mkPN "Latin America" ; -lin latin_american_PN = mkPN "Latin American" ; -lin latin_cross_PN = mkPN "Latin cross" ; -lin latin_square_PN = mkPN "Latin square" ; -lin latinae_PN = mkPN "Latinae" ; -lin latinesce_PN = mkPN "Latinesce" ; -lin latinism_PN = mkPN "Latinism" ; -lin latinist_PN = mkPN "Latinist" ; -lin latino_PN = mkPN "Latino" ; -lin latino_sine_flexione_PN = mkPN "Latino sine flexione" ; -lin latium_PN = mkPN "Latium" ; -lin latrobe_PN = mkPN "Latrobe" ; -lin latrodectus_PN = mkPN "Latrodectus" ; -lin latter_day_saint_PN = mkPN "Latter Day Saint" ; -lin latvia_PN = mkPN "Latvia" ; -lin latvian_A = mkA "Latvian" ; -lin latvian_PN = mkPN "Latvian" ; -lin latvian_monetary_unit_PN = mkPN "Latvian monetary unit" ; -lin lauder_PN = mkPN "Lauder" ; -lin laudo_PN = mkPN "Laudo" ; -lin laughton_PN = mkPN "Laughton" ; -lin laura_PN = mkPN "Laura"; -- from DictEng -lin lauraceae_PN = mkPN "Lauraceae" ; -lin laurasia_PN = mkPN "Laurasia" ; -lin laurel_PN = mkPN "Laurel" ; -lin laurel_and_hardy_PN = mkPN "Laurel and Hardy" ; -lin laurence_PN = mkPN "Laurence"; -- from DictEng -lin laurens_PN = mkPN "Laurens" ; -lin laurentian_plateau_PN = mkPN "Laurentian Plateau" ; -lin laurus_PN = mkPN "Laurus" ; -lin lausanne_PN = mkPN "Lausanne"; -- from DictEng -lin lautaro_youth_movement_PN = mkPN "Lautaro Youth Movement" ; -lin lavandula_PN = mkPN "Lavandula" ; -lin lavatera_PN = mkPN "Lavatera" ; -lin laver_PN = mkPN "Laver" ; -lin lavoisier_PN = mkPN "Lavoisier" ; -lin lawrence_PN = mkPN "Lawrence"; -- from DictEng -lin lawton_PN = mkPN "Lawton" ; -lin layia_PN = mkPN "Layia" ; -lin lazarus_PN = mkPN "Lazarus"; -- from DictEng -lin lbw_PN = mkPN "Lbw"; -- from DictEng -lin le_chatelier's_principle_PN = mkPN "Le Chatelier's principle" ; -lin le_corbusier_PN = mkPN "Le Corbusier" ; -lin le_duc_tho_PN = mkPN "Le Duc Tho" ; -lin le_gallienne_PN = mkPN "Le Gallienne" ; -lin le_havre_PN = mkPN "Le havre"; -- from DictEng -lin le_notre_PN = mkPN "Le Notre" ; -lin le_mans_PN = mkPN "Le mans"; -- from DictEng -lin leacock_PN = mkPN "Leacock" ; -lin league_of_nations_PN = mkPN "League of Nations" ; -lin leakey_PN = mkPN "Leakey" ; -lin leamington_spa_PN = mkPN "Leamington spa"; -- from DictEng -lin leander_PN = mkPN "Leander" ; -lin leaning_tower_PN = mkPN "Leaning Tower" ; -lin lear_PN = mkPN "Lear" ; -lin leary_PN = mkPN "Leary" ; -lin leatherhead_PN = mkPN "Leatherhead"; -- from DictEng -lin lebanese_A = compoundA (mkA "lebanese"); -- from DictEng -lin lebanese_PN = mkPN "Lebanese" ; -lin lebanese_monetary_unit_PN = mkPN "Lebanese monetary unit" ; -lin lebanese_pound_PN = mkPN "Lebanese pound" ; -lin lebanon_PN = mkPN "Lebanon"; -- from DictEng -lin lebistes_PN = mkPN "Lebistes" ; -lin leboyer_method_of_childbirth_PN = mkPN "Leboyer method of childbirth" ; -lin lecanoraceae_PN = mkPN "Lecanoraceae" ; -lin leccinum_PN = mkPN "Leccinum" ; -lin leccinum_fibrillosum_PN = mkPN "Leccinum fibrillosum" ; -lin lechanorales_PN = mkPN "Lechanorales" ; -lin leclanche_cell_PN = mkPN "Leclanche cell" ; -lin lecythidaceae_PN = mkPN "Lecythidaceae" ; -lin leda_PN = mkPN "Leda" ; -lin ledbetter_PN = mkPN "Ledbetter" ; -lin ledum_PN = mkPN "Ledum" ; -lin lee_PN = mkPN "Lee" ; -lin leeds_PN = mkPN "Leeds"; -- from DictEng -lin leek_PN = mkPN "Leek"; -- from DictEng -lin leeward_islands_PN = mkPN "Leeward Islands" ; -lin left_bank_PN = mkPN "Left Bank" ; -lin leger_PN = mkPN "Leger" ; -lin legionella_pneumophilia_PN = mkPN "Legionella pneumophilia" ; -lin legionnaire_PN = mkPN "Legionnaire" ; -lin legionnaires'_disease_PN = mkPN "Legionnaires' disease" ; -lin lego_PN = mkPN "Lego" ; -lin leguminosae_PN = mkPN "Leguminosae" ; -lin lehar_PN = mkPN "Lehar" ; -lin lehigh_river_PN = mkPN "Lehigh River" ; -lin leibniz_PN = mkPN "Leibniz" ; -lin leibnizian_A = mkA "Leibnizian" ; -lin leicester_PN = mkPN "Leicester"; -- from DictEng -lin leicestershire_PN = mkPN "Leicestershire"; -- from DictEng -lin leichtlin's_camas_PN = mkPN "Leichtlin's camas" ; -lin leiden_PN = mkPN "Leiden"; -- from DictEng -lin leiden_jar_PN = mkPN "Leiden jar" ; -lin leigh_PN = mkPN "Leigh"; -- from DictEng -lin leighton_linslade_PN = mkPN "Leighton - linslade"; -- from DictEng -lin leinster_PN = mkPN "Leinster"; -- from DictEng -lin leiopelma_PN = mkPN "Leiopelma" ; -lin leiopelmatidae_PN = mkPN "Leiopelmatidae" ; -lin leiophyllum_PN = mkPN "Leiophyllum" ; -lin leipzig_PN = mkPN "Leipzig"; -- from DictEng -lin leishmania_PN = mkPN "Leishmania" ; -lin leitneria_PN = mkPN "Leitneria" ; -lin leitneriaceae_PN = mkPN "Leitneriaceae" ; -lin leitrim_PN = mkPN "Leitrim"; -- from DictEng -lin leix_PN = mkPN "Leix"; -- from DictEng -lin lemaireocereus_PN = mkPN "Lemaireocereus" ; -lin lemaitre_PN = mkPN "Lemaitre" ; -lin lemmon_PN = mkPN "Lemmon" ; -lin lemmus_PN = mkPN "Lemmus" ; -lin lemna_PN = mkPN "Lemna" ; -lin lemnaceae_PN = mkPN "Lemnaceae" ; -lin lemnos_PN = mkPN "Lemnos" ; -lin lemuridae_PN = mkPN "Lemuridae" ; -lin lemuroidea_PN = mkPN "Lemuroidea" ; -lin len_PN = mkPN "Len"; -- from DictEng -lin lena_PN = mkPN "Lena" ; -lin lenard_PN = mkPN "Lenard" ; -lin lendl_PN = mkPN "Lendl" ; -lin lenin_PN = mkPN "Lenin" ; -lin leningrad_PN = mkPN "Leningrad"; -- from DictEng -lin leninism_PN = mkPN "Leninism" ; -lin lennoaceae_PN = mkPN "Lennoaceae" ; -lin lennon_PN = mkPN "Lennon" ; -lin lenny_PN = mkPN "Lenny"; -- from DictEng -lin lens_PN = mkPN "Lens"; -- from DictEng -lin lent_PN = mkPN "Lent"; -- from DictEng -lin lente_insulin_PN = mkPN "Lente Insulin" ; -lin lentibulariaceae_PN = mkPN "Lentibulariaceae" ; -lin lentinus_PN = mkPN "Lentinus" ; -lin leo_PN = mkPN "Leo"; -- from DictEng -lin leo_i_PN = mkPN "Leo I" ; -lin leo_iii_PN = mkPN "Leo III" ; -lin leo_ix_PN = mkPN "Leo IX" ; -lin leo_x_PN = mkPN "Leo X" ; -lin leo_xiii_PN = mkPN "Leo XIII" ; -lin leominster_PN = mkPN "Leominster"; -- from DictEng -lin leon_PN = mkPN "Leon"; -- from DictEng -lin leonard_PN = mkPN "Leonard"; -- from DictEng -lin leonardesque_A = mkA "Leonardesque" ; -lin leonardo_PN = mkPN "Leonardo" ; -lin leonberg_PN = mkPN "Leonberg" ; -lin leonidas_PN = mkPN "Leonidas" ; -lin leonotis_PN = mkPN "Leonotis" ; -lin leontief_PN = mkPN "Leontief" ; -lin leontocebus_PN = mkPN "Leontocebus" ; -lin leontodon_PN = mkPN "Leontodon" ; -lin leontopodium_PN = mkPN "Leontopodium" ; -lin leonurus_PN = mkPN "Leonurus" ; -lin leotia_lubrica_PN = mkPN "Leotia lubrica" ; -lin lepadidae_PN = mkPN "Lepadidae" ; -lin lepanto_PN = mkPN "Lepanto" ; -lin lepas_PN = mkPN "Lepas" ; -lin lepechinia_PN = mkPN "Lepechinia" ; -lin lepidium_PN = mkPN "Lepidium" ; -lin lepidobotryaceae_PN = mkPN "Lepidobotryaceae" ; -lin lepidochelys_PN = mkPN "Lepidochelys" ; -lin lepidocybium_PN = mkPN "Lepidocybium" ; -lin lepidodendraceae_PN = mkPN "Lepidodendraceae" ; -lin lepidodendrales_PN = mkPN "Lepidodendrales" ; -lin lepidoptera_PN = mkPN "Lepidoptera" ; -lin lepidosauria_PN = mkPN "Lepidosauria" ; -lin lepidothamnus_PN = mkPN "Lepidothamnus" ; -lin lepiota_clypeolaria_PN = mkPN "Lepiota clypeolaria" ; -lin lepiota_naucina_PN = mkPN "Lepiota naucina" ; -lin lepiota_rhacodes_PN = mkPN "Lepiota rhacodes" ; -lin lepiota_rubrotincta_PN = mkPN "Lepiota rubrotincta" ; -lin lepiotaceae_PN = mkPN "Lepiotaceae" ; -lin lepisma_PN = mkPN "Lepisma" ; -lin lepismatidae_PN = mkPN "Lepismatidae" ; -lin lepisosteidae_PN = mkPN "Lepisosteidae" ; -lin lepisosteus_PN = mkPN "Lepisosteus" ; -lin lepomis_PN = mkPN "Lepomis" ; -lin leporidae_PN = mkPN "Leporidae" ; -lin leptarrhena_PN = mkPN "Leptarrhena" ; -lin leptinotarsa_PN = mkPN "Leptinotarsa" ; -lin leptodactylidae_PN = mkPN "Leptodactylidae" ; -lin leptodactylus_PN = mkPN "Leptodactylus" ; -lin leptoglossus_PN = mkPN "Leptoglossus" ; -lin leptopteris_PN = mkPN "Leptopteris" ; -lin leptoptilus_PN = mkPN "Leptoptilus" ; -lin leptotyphlopidae_PN = mkPN "Leptotyphlopidae" ; -lin leptotyphlops_PN = mkPN "Leptotyphlops" ; -lin lepus_PN = mkPN "Lepus" ; -lin lermontov_PN = mkPN "Lermontov" ; -lin lerner_PN = mkPN "Lerner" ; -lin lerwick_PN = mkPN "Lerwick"; -- from DictEng -lin les_PN = mkPN "Les"; -- from DictEng -lin lesbian_PN = mkPN "Lesbian" ; -lin lesbos_PN = mkPN "Lesbos" ; -lin lesley_PN = mkPN "Lesley"; -- from DictEng -lin leslie_PN = mkPN "Leslie"; -- from DictEng -lin lesotho_PN = mkPN "Lesotho"; -- from DictEng -lin lesotho_monetary_unit_PN = mkPN "Lesotho monetary unit" ; -lin lesquerella_PN = mkPN "Lesquerella" ; -lin lesseps_PN = mkPN "Lesseps" ; -lin lesser_antilles_PN = mkPN "Lesser Antilles" ; -lin lesser_sunda_islands_PN = mkPN "Lesser Sunda Islands" ; -lin lessing_PN = mkPN "Lessing" ; -lin letchworth_PN = mkPN "Letchworth"; -- from DictEng -lin lethe_PN = mkPN "Lethe"; -- from DictEng -lin leto_PN = mkPN "Leto" ; -lin letter_of_jeremiah_PN = mkPN "Letter of Jeremiah" ; -lin leucadendron_PN = mkPN "Leucadendron" ; -lin leucaena_PN = mkPN "Leucaena" ; -lin leucanthemum_PN = mkPN "Leucanthemum" ; -lin leuciscus_PN = mkPN "Leuciscus" ; -lin leucogenes_PN = mkPN "Leucogenes" ; -lin leuctra_PN = mkPN "Leuctra" ; -lin leuwenhoek_PN = mkPN "Leuwenhoek" ; -lin levant_PN = mkPN "Levant"; -- from DictEng -lin levant_cotton_PN = mkPN "Levant cotton" ; -lin levantine_A = compoundA (mkA "levantine"); -- from DictEng -lin levantine_PN = mkPN "Levantine" ; -lin leven_PN = mkPN "Leven"; -- from DictEng -lin leverkusen_PN = mkPN "Leverkusen"; -- from DictEng -lin levi's_PN = mkPN "Levi's" ; -lin levi_strauss_PN = mkPN "Levi Strauss" ; -lin levisticum_PN = mkPN "Levisticum" ; -lin levite_PN = mkPN "Levite" ; -lin levitical_A = mkA "Levitical" ; -lin leviticus_PN = mkPN "Leviticus" ; -lin lewes_PN = mkPN "Lewes"; -- from DictEng -lin lewis_PN = mkPN "Lewis"; -- from DictEng -lin lewis_and_clark_expedition_PN = mkPN "Lewis and Clark Expedition" ; -lin lewisham_PN = mkPN "Lewisham"; -- from DictEng -lin lewisia_PN = mkPN "Lewisia" ; -lin lewiston_PN = mkPN "Lewiston" ; -lin lexington_PN = mkPN "Lexington" ; -lin leycesteria_PN = mkPN "Leycesteria" ; -lin leydig_cell_PN = mkPN "Leydig cell" ; -lin leyland_PN = mkPN "Leyland"; -- from DictEng -lin leymus_PN = mkPN "Leymus" ; -lin leyte_PN = mkPN "Leyte" ; -lin lhasa_PN = mkPN "Lhasa" ; -lin lhotse_PN = mkPN "Lhotse" ; -lin li_po_PN = mkPN "Li Po" ; -lin liao_PN = mkPN "Liao" ; -lin liaodong_peninsula_PN = mkPN "Liaodong Peninsula" ; -lin liatris_PN = mkPN "Liatris" ; -lin lib_PN = mkPN "Lib"; -- from DictEng -lin libby_PN = mkPN "Libby" ; -lin liberal_democrat_party_PN = mkPN "Liberal Democrat Party" ; -lin liberal_party_PN = mkPN "Liberal Party" ; -lin liberation_tigers_of_tamil_eelam_PN = mkPN "Liberation Tigers of Tamil Eelam" ; -lin liberia_PN = mkPN "Liberia"; -- from DictEng -lin liberian_A = compoundA (mkA "liberian"); -- from DictEng -lin liberian_PN = mkPN "Liberian" ; -lin liberian_coffee_PN = mkPN "Liberian coffee" ; -lin liberian_dollar_PN = mkPN "Liberian dollar" ; -lin liberty_bell_PN = mkPN "Liberty Bell" ; -lin liberty_island_PN = mkPN "Liberty Island" ; -lin liberty_party_PN = mkPN "Liberty Party" ; -lin liberty_ship_PN = mkPN "Liberty ship" ; -lin libocedrus_PN = mkPN "Libocedrus" ; -lin libra_PN = mkPN "Libra"; -- from DictEng -lin libreville_PN = mkPN "Libreville" ; -lin libya_PN = mkPN "Libya"; -- from DictEng -lin libyan_A = compoundA (mkA "libyan"); -- from DictEng -lin libyan_PN = mkPN "Libyan" ; -lin libyan_desert_PN = mkPN "Libyan Desert" ; -lin libyan_islamic_fighting_group_PN = mkPN "Libyan Islamic Fighting Group" ; -lin libyan_dinar_PN = mkPN "Libyan dinar" ; -lin libyan_dirham_PN = mkPN "Libyan dirham" ; -lin libyan_monetary_unit_PN = mkPN "Libyan monetary unit" ; -lin lichanura_PN = mkPN "Lichanura" ; -lin lichenales_PN = mkPN "Lichenales" ; -lin lichenes_PN = mkPN "Lichenes" ; -lin lichfield_PN = mkPN "Lichfield"; -- from DictEng -lin lichtenstein_PN = mkPN "Lichtenstein" ; -lin lidocaine_PN = mkPN "Lidocaine" ; -lin lie_PN = mkPN "Lie" ; -lin liebig_condenser_PN = mkPN "Liebig condenser" ; -lin liechtenstein_PN = mkPN "Liechtenstein"; -- from DictEng -lin liechtensteiner_A = compoundA (mkA "liechtensteiner"); -- from DictEng -lin liechtensteiner_PN = mkPN "Liechtensteiner" ; -lin liederkranz_PN = mkPN "Liederkranz" ; -lin liege_PN = mkPN "Liege"; -- from DictEng -lin liepaja_PN = mkPN "Liepaja" ; -lin life_saver_PN = mkPN "Life Saver" ; -lin ligularia_PN = mkPN "Ligularia" ; -lin liguria_PN = mkPN "Liguria" ; -lin ligurian_sea_PN = mkPN "Ligurian Sea" ; -lin ligustrum_PN = mkPN "Ligustrum" ; -lin ligustrum_obtusifolium_PN = mkPN "Ligustrum obtusifolium" ; -lin liliaceae_PN = mkPN "Liliaceae" ; -lin liliales_PN = mkPN "Liliales" ; -lin lilian_PN = mkPN "Lilian"; -- from DictEng -lin liliidae_PN = mkPN "Liliidae" ; -lin lilith_PN = mkPN "Lilith" ; -lin lilium_PN = mkPN "Lilium" ; -lin liliuokalani_PN = mkPN "Liliuokalani" ; -lin lille_PN = mkPN "Lille"; -- from DictEng -lin lillie_PN = mkPN "Lillie" ; -lin lilliput_PN = mkPN "Lilliput" ; -lin lilliputian_A = compoundA (mkA "lilliputian"); -- from DictEng -lin lilliputian_PN = mkPN "Lilliputian" ; -lin lilo_PN = mkPN "Lilo" ; -lin lilongwe_PN = mkPN "Lilongwe" ; -lin lily_PN = mkPN "Lily"; -- from DictEng -lin lima_PN = mkPN "Lima"; -- from DictEng -lin limacidae_PN = mkPN "Limacidae" ; -lin limanda_PN = mkPN "Limanda" ; -lin limax_PN = mkPN "Limax" ; -lin limburger_PN = mkPN "Limburger" ; -lin limeira_PN = mkPN "Limeira" ; -lin limenitis_PN = mkPN "Limenitis" ; -lin limerick_PN = mkPN "Limerick"; -- from DictEng -lin limicolae_PN = mkPN "Limicolae" ; -lin limnobium_PN = mkPN "Limnobium" ; -lin limnocryptes_PN = mkPN "Limnocryptes" ; -lin limnodromus_PN = mkPN "Limnodromus" ; -lin limoges_PN = mkPN "Limoges"; -- from DictEng -lin limonium_PN = mkPN "Limonium" ; -lin limosa_PN = mkPN "Limosa" ; -lin limousin_PN = mkPN "Limousin" ; -lin limpopo_PN = mkPN "Limpopo" ; -lin limulidae_PN = mkPN "Limulidae" ; -lin limulus_PN = mkPN "Limulus" ; -lin lin_PN = mkPN "Lin" ; -lin linaceae_PN = mkPN "Linaceae" ; -lin linanthus_PN = mkPN "Linanthus" ; -lin linaria_PN = mkPN "Linaria" ; -lin lincoln_PN = mkPN "Lincoln"; -- from DictEng -lin lincoln's_birthday_PN = mkPN "Lincoln's Birthday" ; -lin lincoln_memorial_PN = mkPN "Lincoln Memorial" ; -lin lincolnesque_A = mkA "Lincolnesque" ; -lin lincolnshire_PN = mkPN "Lincolnshire"; -- from DictEng -lin lind_PN = mkPN "Lind" ; -lin linda_PN = mkPN "Linda"; -- from DictEng -lin lindbergh_PN = mkPN "Lindbergh" ; -lin lindera_PN = mkPN "Lindera" ; -lin lindesnes_PN = mkPN "Lindesnes" ; -lin lindheimera_PN = mkPN "Lindheimera" ; -lin lindsay_PN = mkPN "Lindsay" ; -lin line_of_control_PN = mkPN "Line of Control" ; -lin linear_a_PN = mkPN "Linear A" ; -lin linear_b_PN = mkPN "Linear B" ; -lin ling_pao_PN = mkPN "Ling pao" ; -lin lingualumina_PN = mkPN "Lingualumina" ; -lin lingvo_kosmopolita_PN = mkPN "Lingvo Kosmopolita" ; -lin link_trainer_PN = mkPN "Link trainer" ; -lin linlithgow_PN = mkPN "Linlithgow"; -- from DictEng -lin linnaea_PN = mkPN "Linnaea" ; -lin linnaean_A = mkA "Linnaean" ; -lin linnaeus_PN = mkPN "Linnaeus" ; -lin linotype_PN = mkPN "Linotype" ; -lin linum_PN = mkPN "Linum" ; -lin linux_PN = mkPN "Linux" ; -lin linwood_PN = mkPN "Linwood"; -- from DictEng -lin linz_PN = mkPN "Linz"; -- from DictEng -lin liomys_PN = mkPN "Liomys" ; -lin lionel_PN = mkPN "Lionel"; -- from DictEng -lin lions_club_PN = mkPN "Lions Club" ; -lin liopelma_hamiltoni_PN = mkPN "Liopelma hamiltoni" ; -lin liparididae_PN = mkPN "Liparididae" ; -lin liparis_PN = mkPN "Liparis" ; -lin lipchitz_PN = mkPN "Lipchitz" ; -lin lipmann_PN = mkPN "Lipmann" ; -lin liposcelis_PN = mkPN "Liposcelis" ; -lin lipotyphla_PN = mkPN "Lipotyphla" ; -lin lippi_PN = mkPN "Lippi" ; -lin lippizan_PN = mkPN "Lippizan" ; -lin lippmann_PN = mkPN "Lippmann" ; -lin lipscomb_PN = mkPN "Lipscomb" ; -lin lir_PN = mkPN "Lir" ; -lin liriodendron_PN = mkPN "Liriodendron" ; -lin liriope_PN = mkPN "Liriope" ; -lin lisa_PN = mkPN "Lisa"; -- from DictEng -lin lisbon_PN = mkPN "Lisbon"; -- from DictEng -lin liskeard_PN = mkPN "Liskeard"; -- from DictEng -lin lister_PN = mkPN "Lister" ; -lin listera_PN = mkPN "Listera" ; -lin listeria_monocytogenes_PN = mkPN "Listeria monocytogenes" ; -lin liston_PN = mkPN "Liston" ; -lin lisu_PN = mkPN "Lisu" ; -lin liszt_PN = mkPN "Liszt" ; -lin litany_PN = mkPN "Litany" ; -lin lithocarpus_PN = mkPN "Lithocarpus" ; -lin lithodidae_PN = mkPN "Lithodidae" ; -lin lithophragma_PN = mkPN "Lithophragma" ; -lin lithospermum_PN = mkPN "Lithospermum" ; -lin lithuania_PN = mkPN "Lithuania" ; -lin lithuanian_A = mkA "Lithuanian" ; -lin lithuanian_PN = mkPN "Lithuanian" ; -lin lithuanian_monetary_unit_PN = mkPN "Lithuanian monetary unit" ; -lin litocranius_PN = mkPN "Litocranius" ; -lin little_bear_PN = mkPN "Little Bear" ; -lin little_bighorn_PN = mkPN "Little Bighorn" ; -lin little_dipper_PN = mkPN "Little Dipper" ; -lin little_john_PN = mkPN "Little John" ; -lin little_missouri_PN = mkPN "Little Missouri" ; -lin little_office_PN = mkPN "Little Office" ; -lin little_red_riding_hood_PN = mkPN "Little Red Riding Hood" ; -lin little_rock_PN = mkPN "Little Rock" ; -lin little_sioux_river_PN = mkPN "Little Sioux River" ; -lin little_wabash_PN = mkPN "Little Wabash" ; -lin littlehampton_PN = mkPN "Littlehampton"; -- from DictEng -lin littorina_PN = mkPN "Littorina" ; -lin littorinidae_PN = mkPN "Littorinidae" ; -lin littre_PN = mkPN "Littre" ; -lin livermore_PN = mkPN "Livermore" ; -lin liverpool_PN = mkPN "Liverpool"; -- from DictEng -lin liverpudlian_A = compoundA (mkA "liverpudlian"); -- from DictEng -lin liverpudlian_PN = mkPN "Liverpudlian" ; -lin livingston_PN = mkPN "Livingston"; -- from DictEng -lin livingstone_PN = mkPN "Livingstone" ; -lin livistona_PN = mkPN "Livistona" ; -lin livonia_PN = mkPN "Livonia" ; -lin livonian_PN = mkPN "Livonian" ; -lin livonian_speaking_A = compoundA (mkA "Livonian speaking") ; -lin livorno_PN = mkPN "Livorno"; -- from DictEng -lin livy_PN = mkPN "Livy" ; -lin liz_PN = mkPN "Liz"; -- from DictEng -lin liza_PN = mkPN "Liza"; -- from DictEng -lin lizzy_PN = mkPN "Lizzy"; -- from DictEng -lin ljubljana_PN = mkPN "Ljubljana"; -- from DictEng -lin llandudno_PN = mkPN "Llandudno"; -- from DictEng -lin llanelli_PN = mkPN "Llanelli"; -- from DictEng -lin llangollen_PN = mkPN "Llangollen"; -- from DictEng -lin llano_estacado_PN = mkPN "Llano Estacado" ; -lin llantrisant_PN = mkPN "Llantrisant"; -- from DictEng -lin llantwit_major_PN = mkPN "Llantwit major"; -- from DictEng -lin llew_llaw_gyffes_PN = mkPN "Llew Llaw Gyffes" ; -lin lloyd_PN = mkPN "Lloyd" ; -lin lloyd's_PN = mkPN "Lloyd's"; -- from DictEng -lin lloyd_webber_PN = mkPN "Lloyd Webber" ; -lin llullaillaco_PN = mkPN "Llullaillaco" ; -lin llyr_PN = mkPN "Llyr" ; -lin lo_ovral_PN = mkPN "Lo Ovral" ; -lin loafer_PN = mkPN "Loafer" ; -lin loanhead_PN = mkPN "Loanhead"; -- from DictEng -lin loasaceae_PN = mkPN "Loasaceae" ; -lin lobachevsky_PN = mkPN "Lobachevsky" ; -lin lobata_PN = mkPN "Lobata" ; -lin lobeliaceae_PN = mkPN "Lobeliaceae" ; -lin lobipes_PN = mkPN "Lobipes" ; -lin lobito_PN = mkPN "Lobito" ; -lin lobotes_PN = mkPN "Lobotes" ; -lin lobotidae_PN = mkPN "Lobotidae" ; -lin lobularia_PN = mkPN "Lobularia" ; -lin loc_cit_PN = mkPN "Loc cit"; -- from DictEng -lin loch_achray_PN = mkPN "Loch Achray" ; -lin loch_linnhe_PN = mkPN "Loch Linnhe" ; -lin loch_ness_PN = mkPN "Loch Ness" ; -lin loch_ness_monster_PN = mkPN "Loch Ness monster" ; -lin lochaber_ax_PN = mkPN "Lochaber ax" ; -lin lochgelly_PN = mkPN "Lochgelly"; -- from DictEng -lin locke_PN = mkPN "Locke" ; -lin locusta_PN = mkPN "Locusta" ; -lin lodge_PN = mkPN "Lodge" ; -lin lodz_PN = mkPN "Lodz"; -- from DictEng -lin loeb_PN = mkPN "Loeb" ; -lin loestrin_PN = mkPN "Loestrin" ; -lin loewe_PN = mkPN "Loewe" ; -lin loewi_PN = mkPN "Loewi" ; -lin lofortyx_PN = mkPN "Lofortyx" ; -lin lofoten_PN = mkPN "Lofoten" ; -lin loftus_PN = mkPN "Loftus"; -- from DictEng -lin logan_PN = mkPN "Logan" ; -lin logania_PN = mkPN "Logania" ; -lin loganiaceae_PN = mkPN "Loganiaceae" ; -lin logrono_PN = mkPN "Logrono" ; -lin loire_PN = mkPN "Loire" ; -lin loire_valley_PN = mkPN "Loire Valley" ; -lin lois_PN = mkPN "Lois"; -- from DictEng -lin loiseleuria_PN = mkPN "Loiseleuria" ; -lin loki_PN = mkPN "Loki" ; -lin lolita_PN = mkPN "Lolita" ; -lin lolium_PN = mkPN "Lolium" ; -lin lolo_PN = mkPN "Lolo" ; -lin lolo_burmese_PN = mkPN "Lolo Burmese" ; -lin loloish_PN = mkPN "Loloish" ; -lin lomariopsidaceae_PN = mkPN "Lomariopsidaceae" ; -lin lombard_PN = mkPN "Lombard" ; -lin lombard_street_PN = mkPN "Lombard Street" ; -lin lombardy_PN = mkPN "Lombardy" ; -lin lombardy_poplar_PN = mkPN "Lombardy poplar" ; -lin lome_PN = mkPN "Lome" ; -lin lomogramma_PN = mkPN "Lomogramma" ; -lin lomotil_PN = mkPN "Lomotil" ; -lin lonas_PN = mkPN "Lonas" ; -lin lonchocarpus_PN = mkPN "Lonchocarpus" ; -lin london_PN = mkPN "London"; -- from DictEng -lin london_plane_PN = mkPN "London plane" ; -lin londonderry_PN = mkPN "Londonderry"; -- from DictEng -lin londoner_PN = mkPN "Londoner" ; -lin long_beach_PN = mkPN "Long Beach" ; -lin long_island_PN = mkPN "Long Island" ; -lin long_island_sound_PN = mkPN "Long Island Sound" ; -lin long_eaton_PN = mkPN "Long eaton"; -- from DictEng -lin longfellow_PN = mkPN "Longfellow" ; -lin longridge_PN = mkPN "Longridge"; -- from DictEng -lin longton_PN = mkPN "Longton"; -- from DictEng -lin lonicera_PN = mkPN "Lonicera" ; -lin loos_PN = mkPN "Loos" ; -lin lophiidae_PN = mkPN "Lophiidae" ; -lin lophius_PN = mkPN "Lophius" ; -lin lophodytes_PN = mkPN "Lophodytes" ; -lin lopholatilus_PN = mkPN "Lopholatilus" ; -lin lophophora_PN = mkPN "Lophophora" ; -lin lophophorus_PN = mkPN "Lophophorus" ; -lin lophosoria_PN = mkPN "Lophosoria" ; -lin lophosoriaceae_PN = mkPN "Lophosoriaceae" ; -lin loranthaceae_PN = mkPN "Loranthaceae" ; -lin loranthus_PN = mkPN "Loranthus" ; -lin lord_PN = mkPN "Lord" ; -lin lord's_prayer_PN = mkPN "Lord's Prayer" ; -lin lord's_resistance_army_PN = mkPN "Lord's Resistance Army" ; -lin lord_chancellor_PN = mkPN "Lord Chancellor" ; -lin lord_privy_seal_PN = mkPN "Lord Privy Seal" ; -lin lord_of_misrule_PN = mkPN "Lord of Misrule" ; -lin lordship_PN = mkPN "Lordship" ; -lin lorelei_PN = mkPN "Lorelei" ; -lin loren_PN = mkPN "Loren" ; -lin lorentz_PN = mkPN "Lorentz" ; -lin lorentz_force_PN = mkPN "Lorentz force" ; -lin lorenz_PN = mkPN "Lorenz" ; -lin lorenzo_de'medici_PN = mkPN "Lorenzo de'Medici" ; -lin lorenzo_dressing_PN = mkPN "Lorenzo dressing" ; -lin loricata_PN = mkPN "Loricata" ; -lin loriinae_PN = mkPN "Loriinae" ; -lin lorisidae_PN = mkPN "Lorisidae" ; -lin lorna_PN = mkPN "Lorna"; -- from DictEng -lin lorraine_PN = mkPN "Lorraine" ; -lin lorraine_cross_PN = mkPN "Lorraine cross" ; -lin lorre_PN = mkPN "Lorre" ; -lin los_alamos_PN = mkPN "Los Alamos" ; -lin los_angeles_PN = mkPN "Los angeles"; -- from DictEng -lin lossiemouth_PN = mkPN "Lossiemouth"; -- from DictEng -lin lost_tribes_PN = mkPN "Lost Tribes" ; -lin lot_PN = mkPN "Lot" ; -lin lot's_wife_PN = mkPN "Lot's wife" ; -lin lota_PN = mkPN "Lota" ; -lin lothario_PN = mkPN "Lothario" ; -lin lothian_PN = mkPN "Lothian"; -- from DictEng -lin lothian_region_PN = mkPN "Lothian Region" ; -lin lotus_PN = mkPN "Lotus" ; -lin loughborough_PN = mkPN "Loughborough"; -- from DictEng -lin louis_PN = mkPN "Louis"; -- from DictEng -lin louis_i_PN = mkPN "Louis I" ; -lin louis_ii_PN = mkPN "Louis II" ; -lin louis_iii_PN = mkPN "Louis III" ; -lin louis_iv_PN = mkPN "Louis IV" ; -lin louis_ix_PN = mkPN "Louis IX" ; -lin louis_v_PN = mkPN "Louis V" ; -lin louis_vi_PN = mkPN "Louis VI" ; -lin louis_vii_PN = mkPN "Louis VII" ; -lin louis_viii_PN = mkPN "Louis VIII" ; -lin louis_x_PN = mkPN "Louis X" ; -lin louis_xi_PN = mkPN "Louis XI" ; -lin louis_xii_PN = mkPN "Louis XII" ; -lin louis_xiii_PN = mkPN "Louis XIII" ; -lin louis_xiv_PN = mkPN "Louis XIV" ; -lin louis_xv_PN = mkPN "Louis XV" ; -lin louis_xvi_PN = mkPN "Louis XVI" ; -lin louise_PN = mkPN "Louise"; -- from DictEng -lin louisiana_PN = mkPN "Louisiana"; -- from DictEng -lin louisiana_purchase_PN = mkPN "Louisiana Purchase" ; -lin louisianan_PN = mkPN "Louisianan" ; -lin louisville_PN = mkPN "Louisville"; -- from DictEng -lin louth_PN = mkPN "Louth"; -- from DictEng -lin louvre_PN = mkPN "Louvre" ; -lin lovelace_PN = mkPN "Lovelace" ; -lin lovell_PN = mkPN "Lovell" ; -lin lovoa_PN = mkPN "Lovoa" ; -lin low_PN = mkPN "Low" ; -lin low_countries_PN = mkPN "Low Countries" ; -lin low_german_PN = mkPN "Low German" ; -lin low_latin_PN = mkPN "Low Latin" ; -lin low_mass_PN = mkPN "Low Mass" ; -lin low_sunday_PN = mkPN "Low Sunday" ; -lin lowell_PN = mkPN "Lowell" ; -lin lower_california_PN = mkPN "Lower California" ; -lin lower_egypt_PN = mkPN "Lower Egypt" ; -lin lower_paleolithic_PN = mkPN "Lower Paleolithic" ; -lin lower_peninsula_PN = mkPN "Lower Peninsula" ; -lin lower_saxony_PN = mkPN "Lower Saxony" ; -lin lowestoft_PN = mkPN "Lowestoft"; -- from DictEng -lin lowlander_PN = mkPN "Lowlander" ; -lin lowlands_PN = mkPN "Lowlands" ; -lin lowry_PN = mkPN "Lowry" ; -lin loxia_PN = mkPN "Loxia" ; -lin loxodonta_PN = mkPN "Loxodonta" ; -lin loxoma_PN = mkPN "Loxoma" ; -lin loxomataceae_PN = mkPN "Loxomataceae" ; -lin loxostege_PN = mkPN "Loxostege" ; -lin loxostege_similalis_PN = mkPN "Loxostege similalis" ; -lin loya_jirga_PN = mkPN "Loya Jirga" ; -lin loyalist_volunteer_force_PN = mkPN "Loyalist Volunteer Force" ; -lin loyang_PN = mkPN "Loyang"; -- from DictEng -lin lozier_PN = mkPN "Lozier" ; -lin lt_PN = mkPN "Lt"; -- from DictEng -lin ltd_PN = mkPN "Ltd"; -- from DictEng -lin luganda_PN = mkPN "LuGanda" ; -lin luanda_PN = mkPN "Luanda" ; -lin luba_PN = mkPN "Luba" ; -lin lubavitch_PN = mkPN "Lubavitch" ; -lin lubavitcher_PN = mkPN "Lubavitcher" ; -lin lubbock_PN = mkPN "Lubbock" ; -lin lubeck_PN = mkPN "Lubeck"; -- from DictEng -lin lubitsch_PN = mkPN "Lubitsch" ; -lin lublin_PN = mkPN "Lublin" ; -lin lubumbashi_PN = mkPN "Lubumbashi" ; -lin lucanidae_PN = mkPN "Lucanidae" ; -lin lucas_PN = mkPN "Lucas" ; -lin luce_PN = mkPN "Luce" ; -lin lucilia_PN = mkPN "Lucilia" ; -lin lucite_PN = mkPN "Lucite" ; -lin lucknow_PN = mkPN "Lucknow"; -- from DictEng -lin lucretius_PN = mkPN "Lucretius" ; -lin lucullus_PN = mkPN "Lucullus" ; -lin luculus_PN = mkPN "Luculus" ; -lin lucy_PN = mkPN "Lucy"; -- from DictEng -lin luda_PN = mkPN "Luda" ; -lin luddite_PN = mkPN "Luddite" ; -lin ludi_saeculares_PN = mkPN "Ludi Saeculares" ; -lin ludian_PN = mkPN "Ludian" ; -lin ludlow_PN = mkPN "Ludlow"; -- from DictEng -lin ludwigshafen_PN = mkPN "Ludwigshafen"; -- from DictEng -lin lufengpithecus_PN = mkPN "Lufengpithecus" ; -lin lufkin_PN = mkPN "Lufkin" ; -lin luftwaffe_PN = mkPN "Luftwaffe" ; -lin lug_PN = mkPN "Lug" ; -lin luger_PN = mkPN "Luger" ; -lin lugosi_PN = mkPN "Lugosi" ; -lin luke_PN = mkPN "Luke"; -- from DictEng -lin lule_burgas_PN = mkPN "Lule Burgas" ; -lin lully_PN = mkPN "Lully" ; -lin lumpenus_PN = mkPN "Lumpenus" ; -lin luna_PN = mkPN "Luna" ; -lin lunaria_PN = mkPN "Lunaria" ; -lin lund_PN = mkPN "Lund" ; -lin lunda_PN = mkPN "Lunda" ; -lin lunt_PN = mkPN "Lunt" ; -lin luo_PN = mkPN "Luo" ; -lin luoyang_PN = mkPN "Luoyang" ; -lin lupinus_PN = mkPN "Lupinus" ; -lin lupus_PN = mkPN "Lupus" ; -lin lusaka_PN = mkPN "Lusaka" ; -lin luscinia_PN = mkPN "Luscinia" ; -lin lushun_PN = mkPN "Lushun" ; -lin lusitania_PN = mkPN "Lusitania" ; -lin lusitanian_A = mkA "Lusitanian" ; -lin luta_PN = mkPN "Luta"; -- from DictEng -lin luther_PN = mkPN "Luther" ; -lin lutheran_A = compoundA (mkA "lutheran"); -- from DictEng -lin lutheran_PN = mkPN "Lutheran" ; -lin lutheran_church_PN = mkPN "Lutheran Church" ; -lin lutheranism_PN = mkPN "Lutheranism" ; -lin lutjanidae_PN = mkPN "Lutjanidae" ; -lin lutjanus_PN = mkPN "Lutjanus" ; -lin luton_PN = mkPN "Luton"; -- from DictEng -lin lutra_PN = mkPN "Lutra" ; -lin lutrinae_PN = mkPN "Lutrinae" ; -lin lutyens_PN = mkPN "Lutyens" ; -lin lutzen_PN = mkPN "Lutzen" ; -lin luvaridae_PN = mkPN "Luvaridae" ; -lin luvarus_PN = mkPN "Luvarus" ; -lin luwian_PN = mkPN "Luwian" ; -lin luxembourg_PN = mkPN "Luxembourg"; -- from DictEng -lin luxembourg_ville_PN = mkPN "Luxembourg Ville" ; -lin luxembourg_franc_PN = mkPN "Luxembourg franc" ; -lin luxembourgian_A = mkA "Luxembourgian" ; -lin luxemburg_PN = mkPN "Luxemburg"; -- from DictEng -lin luxemburger_A = compoundA (mkA "luxemburger"); -- from DictEng -lin luxemburger_PN = mkPN "Luxemburger" ; -lin luxor_PN = mkPN "Luxor" ; -lin luyia_PN = mkPN "Luyia" ; -lin luzon_PN = mkPN "Luzon" ; -lin lvov_PN = mkPN "Lvov"; -- from DictEng -lin lyallpur_PN = mkPN "Lyallpur"; -- from DictEng -lin lycaena_PN = mkPN "Lycaena" ; -lin lycaenidae_PN = mkPN "Lycaenidae" ; -lin lycaeon_PN = mkPN "Lycaeon" ; -lin lycia_PN = mkPN "Lycia" ; -lin lycian_PN = mkPN "Lycian" ; -lin lycium_PN = mkPN "Lycium" ; -lin lycoperdaceae_PN = mkPN "Lycoperdaceae" ; -lin lycoperdales_PN = mkPN "Lycoperdales" ; -lin lycoperdon_PN = mkPN "Lycoperdon" ; -lin lycopersicon_PN = mkPN "Lycopersicon" ; -lin lycophyta_PN = mkPN "Lycophyta" ; -lin lycopodiaceae_PN = mkPN "Lycopodiaceae" ; -lin lycopodiales_PN = mkPN "Lycopodiales" ; -lin lycopodineae_PN = mkPN "Lycopodineae" ; -lin lycopodium_PN = mkPN "Lycopodium" ; -lin lycopsida_PN = mkPN "Lycopsida" ; -lin lycopus_PN = mkPN "Lycopus" ; -lin lycosa_PN = mkPN "Lycosa" ; -lin lycosidae_PN = mkPN "Lycosidae" ; -lin lydia_PN = mkPN "Lydia"; -- from DictEng -lin lydian_PN = mkPN "Lydian" ; -lin lydney_PN = mkPN "Lydney"; -- from DictEng -lin lygaeidae_PN = mkPN "Lygaeidae" ; -lin lyginopteris_PN = mkPN "Lyginopteris" ; -lin lygodium_PN = mkPN "Lygodium" ; -lin lygus_PN = mkPN "Lygus" ; -lin lyly_PN = mkPN "Lyly" ; -lin lymantria_PN = mkPN "Lymantria" ; -lin lymantriidae_PN = mkPN "Lymantriidae" ; -lin lyme_disease_PN = mkPN "Lyme disease" ; -lin lymington_PN = mkPN "Lymington"; -- from DictEng -lin lymm_PN = mkPN "Lymm"; -- from DictEng -lin lynchburg_PN = mkPN "Lynchburg" ; -lin lynn_PN = mkPN "Lynn"; -- from DictEng -lin lynne_PN = mkPN "Lynne"; -- from DictEng -lin lyon_PN = mkPN "Lyon" ; -lin lyonia_PN = mkPN "Lyonia" ; -lin lyonnais_PN = mkPN "Lyonnais" ; -lin lyonnaise_sauce_PN = mkPN "Lyonnaise sauce" ; -lin lyons_PN = mkPN "Lyons"; -- from DictEng -lin lyra_PN = mkPN "Lyra" ; -lin lyrurus_PN = mkPN "Lyrurus" ; -lin lysander_PN = mkPN "Lysander" ; -lin lysenko_PN = mkPN "Lysenko" ; -lin lysichiton_PN = mkPN "Lysichiton" ; -lin lysiloma_PN = mkPN "Lysiloma" ; -lin lysimachia_PN = mkPN "Lysimachia" ; -lin lysimachus_PN = mkPN "Lysimachus" ; -lin lysippus_PN = mkPN "Lysippus" ; -lin lysol_PN = mkPN "Lysol" ; -lin lytham_PN = mkPN "Lytham"; -- from DictEng -lin lytham_st_annes_PN = mkPN "Lytham st annes"; -- from DictEng -lin lythraceae_PN = mkPN "Lythraceae" ; -lin lythrum_PN = mkPN "Lythrum" ; -lin lytton_PN = mkPN "Lytton" ; -lin m_PN = mkPN "M" ; -lin m_theory_PN = mkPN "M theory" ; -lin m1_PN = mkPN "M1" ; -lin m2_PN = mkPN "M2" ; -lin m3_PN = mkPN "M3" ; -lin manpad_PN = mkPN "MANPAD" ; -lin medline_PN = mkPN "MEDLINE" ; -lin mips_PN = mkPN "MIPS" ; -lin mot_PN = mkPN "MOT" ; -lin mpeg_PN = mkPN "MPEG" ; -lin ms_dos_PN = mkPN "MS DOS" ; -lin maalox_PN = mkPN "Maalox" ; -lin maastricht_PN = mkPN "Maastricht"; -- from DictEng -lin mabel_PN = mkPN "Mabel"; -- from DictEng -lin macarthur_PN = mkPN "MacArthur" ; -lin macdowell_PN = mkPN "MacDowell" ; -lin macgregor_PN = mkPN "MacGregor" ; -lin macleish_PN = mkPN "MacLeish" ; -lin macaca_PN = mkPN "Macaca" ; -lin macadamia_integrifolia_PN = mkPN "Macadamia integrifolia" ; -lin macao_PN = mkPN "Macao" ; -lin macao_monetary_unit_PN = mkPN "Macao monetary unit" ; -lin macaulay_PN = mkPN "Macaulay" ; -lin macbeth_PN = mkPN "Macbeth" ; -lin macclesfield_PN = mkPN "Macclesfield"; -- from DictEng -lin mace_PN = mkPN "Mace" ; -lin macedon_PN = mkPN "Macedon" ; -lin macedonia_PN = mkPN "Macedonia" ; -lin macedonian_A = compoundA (mkA "macedonian"); -- from DictEng -lin macedonian_PN = mkPN "Macedonian" ; -lin macedonian_war_PN = mkPN "Macedonian War" ; -lin mach_PN = mkPN "Mach"; -- from DictEng -lin mach_number_PN = mkPN "Mach number" ; -lin machaeranthera_PN = mkPN "Machaeranthera" ; -lin machiavelli_PN = mkPN "Machiavelli" ; -lin machiavellian_A = compoundA (mkA "machiavellian"); -- from DictEng -lin machiavellian_PN = mkPN "Machiavellian" ; -lin machiavellianism_PN = mkPN "Machiavellianism" ; -lin machilidae_PN = mkPN "Machilidae" ; -lin machu_picchu_PN = mkPN "Machu Picchu" ; -lin machupo_virus_PN = mkPN "Machupo virus" ; -lin mackem_PN = mkPN "Mackem" ; -lin mackenzie_PN = mkPN "Mackenzie" ; -lin mackinac_bridge_PN = mkPN "Mackinac Bridge" ; -lin macleaya_PN = mkPN "Macleaya" ; -lin macleod_PN = mkPN "Macleod" ; -lin maclura_PN = mkPN "Maclura" ; -lin macon_PN = mkPN "Macon" ; -lin macoun_PN = mkPN "Macoun" ; -lin macowanites_PN = mkPN "Macowanites" ; -lin macowanites_americanus_PN = mkPN "Macowanites americanus" ; -lin macrocephalon_PN = mkPN "Macrocephalon" ; -lin macrocheira_PN = mkPN "Macrocheira" ; -lin macroclemys_PN = mkPN "Macroclemys" ; -lin macrodactylus_PN = mkPN "Macrodactylus" ; -lin macronectes_PN = mkPN "Macronectes" ; -lin macropodidae_PN = mkPN "Macropodidae" ; -lin macropus_PN = mkPN "Macropus" ; -lin macrorhamphosidae_PN = mkPN "Macrorhamphosidae" ; -lin macrothelypteris_PN = mkPN "Macrothelypteris" ; -lin macrotis_PN = mkPN "Macrotis" ; -lin macrotyloma_PN = mkPN "Macrotyloma" ; -lin macrouridae_PN = mkPN "Macrouridae" ; -lin macrozoarces_PN = mkPN "Macrozoarces" ; -lin madagascan_A = compoundA (mkA "madagascan"); -- from DictEng -lin madagascan_PN = mkPN "Madagascan" ; -lin madagascar_PN = mkPN "Madagascar"; -- from DictEng -lin madagascar_cat_PN = mkPN "Madagascar cat" ; -lin madagascar_franc_PN = mkPN "Madagascar franc" ; -lin madagascar_jasmine_PN = mkPN "Madagascar jasmine" ; -lin maddy_PN = mkPN "Maddy"; -- from DictEng -lin madeira_PN = mkPN "Madeira" ; -lin madeira_islands_PN = mkPN "Madeira Islands" ; -lin madeira_cake_PN = mkPN "Madeira cake" ; -lin madeleine_PN = mkPN "Madeleine"; -- from DictEng -lin madge_PN = mkPN "Madge"; -- from DictEng -lin madia_PN = mkPN "Madia" ; -lin madison_PN = mkPN "Madison" ; -lin madonna_PN = mkPN "Madonna" ; -lin madonna_lily_PN = mkPN "Madonna lily" ; -lin madoqua_PN = mkPN "Madoqua" ; -lin madras_PN = mkPN "Madras"; -- from DictEng -lin madreporaria_PN = mkPN "Madreporaria" ; -lin madrid_PN = mkPN "Madrid"; -- from DictEng -lin madurai_PN = mkPN "Madurai"; -- from DictEng -lin mae_west_PN = mkPN "Mae West" ; -lin maeandra_PN = mkPN "Maeandra" ; -lin maecenas_PN = mkPN "Maecenas"; -- from DictEng -lin maesteg_PN = mkPN "Maesteg"; -- from DictEng -lin maeterlinck_PN = mkPN "Maeterlinck" ; -lin mafia_PN = mkPN "Mafia" ; -lin magadhan_PN = mkPN "Magadhan" ; -lin magdalena_PN = mkPN "Magdalena" ; -lin magdeburg_PN = mkPN "Magdeburg"; -- from DictEng -lin magellan_PN = mkPN "Magellan" ; -lin magellanic_cloud_PN = mkPN "Magellanic Cloud" ; -lin magenta_PN = mkPN "Magenta" ; -lin maggie_PN = mkPN "Maggie"; -- from DictEng -lin magh_PN = mkPN "Magh" ; -lin maghreb_PN = mkPN "Maghreb" ; -lin maghull_PN = mkPN "Maghull"; -- from DictEng -lin magicicada_PN = mkPN "Magicicada" ; -lin maginot_PN = mkPN "Maginot" ; -lin maginot_line_PN = mkPN "Maginot Line" ; -lin magna_carta_PN = mkPN "Magna Carta" ; -lin magnificat_PN = mkPN "Magnificat" ; -lin magnoliaceae_PN = mkPN "Magnoliaceae" ; -lin magnoliidae_PN = mkPN "Magnoliidae" ; -lin magritte_PN = mkPN "Magritte" ; -lin mah_jongg_PN = mkPN "Mah Jongg" ; -lin mahabharata_PN = mkPN "Mahabharata" ; -lin mahan_PN = mkPN "Mahan" ; -lin maharashtra_PN = mkPN "Maharashtra" ; -lin mahayana_PN = mkPN "Mahayana" ; -lin mahayanism_PN = mkPN "Mahayanism" ; -lin mahayanist_PN = mkPN "Mahayanist" ; -lin mahdi_PN = mkPN "Mahdi" ; -lin mahdism_PN = mkPN "Mahdism" ; -lin mahdist_PN = mkPN "Mahdist" ; -lin mahler_PN = mkPN "Mahler" ; -lin mahonia_PN = mkPN "Mahonia" ; -lin maianthemum_PN = mkPN "Maianthemum" ; -lin maidenhead_PN = mkPN "Maidenhead"; -- from DictEng -lin maidstone_PN = mkPN "Maidstone"; -- from DictEng -lin maidu_PN = mkPN "Maidu" ; -lin maiduguri_PN = mkPN "Maiduguri" ; -lin mailer_PN = mkPN "Mailer" ; -lin maillol_PN = mkPN "Maillol" ; -lin maimonides_PN = mkPN "Maimonides" ; -lin main_street_PN = mkPN "Main Street" ; -lin maine_PN = mkPN "Maine"; -- from DictEng -lin mainer_PN = mkPN "Mainer" ; -lin maintenon_PN = mkPN "Maintenon" ; -lin mainz_PN = mkPN "Mainz"; -- from DictEng -lin maitland_PN = mkPN "Maitland" ; -lin maitreya_PN = mkPN "Maitreya" ; -lin maj_PN = mkPN "Maj"; -- from DictEng -lin maja_PN = mkPN "Maja" ; -lin majidae_PN = mkPN "Majidae" ; -lin major_PN = mkPN "Major" ; -lin majorana_PN = mkPN "Majorana" ; -lin majorca_PN = mkPN "Majorca" ; -lin makaira_PN = mkPN "Makaira" ; -lin makalu_PN = mkPN "Makalu" ; -lin makarios_iii_PN = mkPN "Makarios III" ; -lin maksutov_telescope_PN = mkPN "Maksutov telescope" ; -lin maktab_al_khidmat_PN = mkPN "Maktab al Khidmat" ; -lin malabo_PN = mkPN "Malabo" ; -lin malacanthidae_PN = mkPN "Malacanthidae" ; -lin malachi_PN = mkPN "Malachi" ; -lin malaclemys_PN = mkPN "Malaclemys" ; -lin malaconotinae_PN = mkPN "Malaconotinae" ; -lin malacopterygii_PN = mkPN "Malacopterygii" ; -lin malacosoma_PN = mkPN "Malacosoma" ; -lin malacostraca_PN = mkPN "Malacostraca" ; -lin malacothamnus_PN = mkPN "Malacothamnus" ; -lin malaga_PN = mkPN "Malaga"; -- from DictEng -lin malamud_PN = mkPN "Malamud" ; -lin malathion_PN = mkPN "Malathion" ; -lin malawi_PN = mkPN "Malawi"; -- from DictEng -lin malawi_kwacha_PN = mkPN "Malawi kwacha" ; -lin malawian_A = compoundA (mkA "malawian"); -- from DictEng -lin malawian_PN = mkPN "Malawian" ; -lin malawian_monetary_unit_PN = mkPN "Malawian monetary unit" ; -lin malaxis_PN = mkPN "Malaxis" ; -lin malay_A = compoundA (mkA "malay"); -- from DictEng -lin malay_PN = mkPN "Malay" ; -lin malay_archipelago_PN = mkPN "Malay Archipelago" ; -lin malay_peninsula_PN = mkPN "Malay Peninsula" ; -lin malaya_PN = mkPN "Malaya"; -- from DictEng -lin malayalam_PN = mkPN "Malayalam" ; -lin malayan_tapir_PN = mkPN "Malayan tapir" ; -lin malayo_polynesian_A = compoundA (mkA "Malayo Polynesian") ; -lin malayo_polynesian_PN = mkPN "Malayo Polynesian" ; -lin malaysia_PN = mkPN "Malaysia"; -- from DictEng -lin malaysian_A = compoundA (mkA "malaysian"); -- from DictEng -lin malaysian_PN = mkPN "Malaysian" ; -lin malaysian_monetary_unit_PN = mkPN "Malaysian monetary unit" ; -lin malcolm_PN = mkPN "Malcolm"; -- from DictEng -lin malcolm_x_PN = mkPN "Malcolm X" ; -lin malcolm_stock_PN = mkPN "Malcolm stock" ; -lin malcolmia_PN = mkPN "Malcolmia" ; -lin maldives_PN = mkPN "Maldives" ; -lin maldivian_PN = mkPN "Maldivian" ; -lin maldon_PN = mkPN "Maldon"; -- from DictEng -lin male_PN = mkPN "Male" ; -lin malebranche_PN = mkPN "Malebranche" ; -lin malecite_PN = mkPN "Malecite" ; -lin malevich_PN = mkPN "Malevich" ; -lin mali_PN = mkPN "Mali"; -- from DictEng -lin mali_franc_PN = mkPN "Mali franc" ; -lin malian_A = compoundA (mkA "malian"); -- from DictEng -lin malian_PN = mkPN "Malian" ; -lin malinowski_PN = mkPN "Malinowski" ; -lin mallarme_PN = mkPN "Mallarme" ; -lin mallon_PN = mkPN "Mallon" ; -lin mallophaga_PN = mkPN "Mallophaga" ; -lin mallotus_PN = mkPN "Mallotus" ; -lin mallow_PN = mkPN "Mallow"; -- from DictEng -lin malmo_PN = mkPN "Malmo"; -- from DictEng -lin malone_PN = mkPN "Malone" ; -lin malopterurus_PN = mkPN "Malopterurus" ; -lin malory_PN = mkPN "Malory" ; -lin malosma_PN = mkPN "Malosma" ; -lin malpighi_PN = mkPN "Malpighi" ; -lin malpighia_PN = mkPN "Malpighia" ; -lin malpighiaceae_PN = mkPN "Malpighiaceae" ; -lin malraux_PN = mkPN "Malraux" ; -lin malta_PN = mkPN "Malta"; -- from DictEng -lin maltby_PN = mkPN "Maltby"; -- from DictEng -lin maltese_A = compoundA (mkA "maltese"); -- from DictEng -lin maltese_PN = mkPN "Maltese" ; -lin maltese_cross_PN = mkPN "Maltese cross" ; -lin maltese_dog_PN = mkPN "Maltese dog" ; -lin maltese_monetary_unit_PN = mkPN "Maltese monetary unit" ; -lin malthus_PN = mkPN "Malthus" ; -lin malthusian_A = compoundA (mkA "malthusian"); -- from DictEng -lin malthusian_PN = mkPN "Malthusian" ; -lin malthusianism_PN = mkPN "Malthusianism" ; -lin malto_PN = mkPN "Malto" ; -lin malus_PN = mkPN "Malus" ; -lin malva_PN = mkPN "Malva" ; -lin malvaceae_PN = mkPN "Malvaceae" ; -lin malvales_PN = mkPN "Malvales" ; -lin malvastrum_PN = mkPN "Malvastrum" ; -lin malvaviscus_PN = mkPN "Malvaviscus" ; -lin malvern_PN = mkPN "Malvern"; -- from DictEng -lin mam_PN = mkPN "Mam" ; -lin mama_PN = mkPN "Mama" ; -lin mamet_PN = mkPN "Mamet" ; -lin mamie_PN = mkPN "Mamie"; -- from DictEng -lin mammalia_PN = mkPN "Mammalia" ; -lin mammea_PN = mkPN "Mammea" ; -lin mammon_PN = mkPN "Mammon" ; -lin mammoth_cave_national_park_PN = mkPN "Mammoth Cave National Park" ; -lin mammut_PN = mkPN "Mammut" ; -lin mammuthus_PN = mkPN "Mammuthus" ; -lin mammutidae_PN = mkPN "Mammutidae" ; -lin man_PN = mkPN "Man" ; -lin managua_PN = mkPN "Managua" ; -lin manama_PN = mkPN "Manama" ; -lin manannan_PN = mkPN "Manannan" ; -lin manawydan_PN = mkPN "Manawydan" ; -lin manchester_PN = mkPN "Manchester"; -- from DictEng -lin manchester_terrier_PN = mkPN "Manchester terrier" ; -lin manchu_PN = mkPN "Manchu" ; -lin manchuria_PN = mkPN "Manchuria" ; -lin manchurian_A = mkA "Manchurian" ; -lin mancunian_A = compoundA (mkA "mancunian"); -- from DictEng -lin mancunian_PN = mkPN "Mancunian" ; -lin manda_PN = mkPN "Manda" ; -lin mandaean_A = mkA "Mandaean" ; -lin mandaean_PN = mkPN "Mandaean" ; -lin mandaeanism_PN = mkPN "Mandaeanism" ; -lin mandalay_PN = mkPN "Mandalay" ; -lin mandara_PN = mkPN "Mandara" ; -lin mandarin_PN = mkPN "Mandarin" ; -lin mande_PN = mkPN "Mande" ; -lin mandela_PN = mkPN "Mandela" ; -lin mandelbrot_PN = mkPN "Mandelbrot" ; -lin mandelbrot_set_PN = mkPN "Mandelbrot set" ; -lin mandelstam_PN = mkPN "Mandelstam" ; -lin mandevilla_PN = mkPN "Mandevilla" ; -lin mandragora_PN = mkPN "Mandragora" ; -lin mandrillus_PN = mkPN "Mandrillus" ; -lin manduca_PN = mkPN "Manduca" ; -lin manduca_quinquemaculata_PN = mkPN "Manduca quinquemaculata" ; -lin manduca_sexta_PN = mkPN "Manduca sexta" ; -lin mandy_PN = mkPN "Mandy"; -- from DictEng -lin manes_PN = mkPN "Manes" ; -lin manet_PN = mkPN "Manet" ; -lin mangifera_PN = mkPN "Mangifera" ; -lin manhattan_PN = mkPN "Manhattan" ; -lin manhattan_island_PN = mkPN "Manhattan Island" ; -lin manhattan_project_PN = mkPN "Manhattan Project" ; -lin manhattan_clam_chowder_PN = mkPN "Manhattan clam chowder" ; -lin manichaean_A = mkA "Manichaean" ; -lin manichaean_PN = mkPN "Manichaean" ; -lin manichaeism_PN = mkPN "Manichaeism" ; -lin manidae_PN = mkPN "Manidae" ; -lin manihot_PN = mkPN "Manihot" ; -lin manila_PN = mkPN "Manila"; -- from DictEng -lin manila_bay_PN = mkPN "Manila Bay" ; -lin manila_grass_PN = mkPN "Manila grass" ; -lin manila_hemp_PN = mkPN "Manila hemp" ; -lin manilkara_PN = mkPN "Manilkara" ; -lin manipur_PN = mkPN "Manipur" ; -lin maniraptora_PN = mkPN "Maniraptora" ; -lin manis_PN = mkPN "Manis" ; -lin manitoba_PN = mkPN "Manitoba"; -- from DictEng -lin mankato_PN = mkPN "Mankato" ; -lin mann_PN = mkPN "Mann" ; -lin mannheim_PN = mkPN "Mannheim"; -- from DictEng -lin mansart_PN = mkPN "Mansart" ; -lin mansfield_PN = mkPN "Mansfield"; -- from DictEng -lin mansi_PN = mkPN "Mansi" ; -lin manson_PN = mkPN "Manson" ; -lin mantegna_PN = mkPN "Mantegna" ; -lin mantell_PN = mkPN "Mantell" ; -lin manteodea_PN = mkPN "Manteodea" ; -lin mantidae_PN = mkPN "Mantidae" ; -lin mantinea_PN = mkPN "Mantinea" ; -lin mantispidae_PN = mkPN "Mantispidae" ; -lin mantle_PN = mkPN "Mantle" ; -lin mantophasmatodea_PN = mkPN "Mantophasmatodea" ; -lin mantoux_test_PN = mkPN "Mantoux test" ; -lin manuel_rodriquez_patriotic_front_PN = mkPN "Manuel Rodriquez Patriotic Front" ; -lin manx_A = compoundA (mkA "manx"); -- from DictEng -lin manx_PN = mkPN "Manx" ; -lin manx_shearwater_PN = mkPN "Manx shearwater" ; -lin manzanilla_PN = mkPN "Manzanilla" ; -lin manzoni_PN = mkPN "Manzoni" ; -lin mao_PN = mkPN "Mao" ; -lin mao_jacket_PN = mkPN "Mao jacket" ; -lin maoism_PN = mkPN "Maoism" ; -lin maoist_A = mkA "Maoist" ; -lin maoist_PN = mkPN "Maoist" ; -lin maori_PN = mkPN "Maori" ; -lin mapquest_PN = mkPN "MapQuest" ; -lin maputo_PN = mkPN "Maputo" ; -lin maquis_PN = mkPN "Maquis" ; -lin mar_PN = mkPN "Mar"; -- from DictEng -lin mara_PN = mkPN "Mara" ; -lin maracaibo_PN = mkPN "Maracaibo"; -- from DictEng -lin maracay_PN = mkPN "Maracay" ; -lin maraco_PN = mkPN "Maraco" ; -lin marantaceae_PN = mkPN "Marantaceae" ; -lin marasmius_PN = mkPN "Marasmius" ; -lin marat_PN = mkPN "Marat" ; -lin maratha_PN = mkPN "Maratha" ; -lin marathi_PN = mkPN "Marathi" ; -lin marathon_PN = mkPN "Marathon" ; -lin marattia_PN = mkPN "Marattia" ; -lin marattiaceae_PN = mkPN "Marattiaceae" ; -lin marattiales_PN = mkPN "Marattiales" ; -lin marburg_disease_PN = mkPN "Marburg disease" ; -lin marburg_virus_PN = mkPN "Marburg virus" ; -lin marceau_PN = mkPN "Marceau" ; -lin march_PN = mkPN "March"; -- from DictEng -lin marchantia_PN = mkPN "Marchantia" ; -lin marchantiaceae_PN = mkPN "Marchantiaceae" ; -lin marchantiales_PN = mkPN "Marchantiales" ; -lin marche_PN = mkPN "Marche" ; -lin marciano_PN = mkPN "Marciano" ; -lin marcionism_PN = mkPN "Marcionism" ; -lin marco_polo_sheep_PN = mkPN "Marco Polo sheep" ; -lin marconi_PN = mkPN "Marconi" ; -lin marcuse_PN = mkPN "Marcuse" ; -lin mardi_gras_PN = mkPN "Mardi Gras" ; -lin marduk_PN = mkPN "Marduk" ; -lin marengo_PN = mkPN "Marengo" ; -lin marfan's_syndrome_PN = mkPN "Marfan's syndrome" ; -lin margaret_PN = mkPN "Margaret"; -- from DictEng -lin margate_PN = mkPN "Margate"; -- from DictEng -lin marge_PN = mkPN "Marge"; -- from DictEng -lin margery_PN = mkPN "Margery"; -- from DictEng -lin margie_PN = mkPN "Margie"; -- from DictEng -lin marginocephalia_PN = mkPN "Marginocephalia" ; -lin maria_PN = mkPN "Maria"; -- from DictEng -lin marian_A = mkA "Marian" ; -lin marian_PN = mkPN "Marian"; -- from DictEng -lin mariana_islands_PN = mkPN "Mariana Islands" ; -lin maricopa_PN = mkPN "Maricopa" ; -lin marie_PN = mkPN "Marie"; -- from DictEng -lin marie_antoinette_PN = mkPN "Marie Antoinette" ; -lin mariehamn_PN = mkPN "Mariehamn" ; -lin marilyn_PN = mkPN "Marilyn"; -- from DictEng -lin marine_PN = mkPN "Marine" ; -lin marine_corps_intelligence_activity_PN = mkPN "Marine Corps Intelligence Activity" ; -lin marineland_PN = mkPN "Marineland" ; -lin marines_PN = mkPN "Marines" ; -lin marini_PN = mkPN "Marini" ; -lin marion_PN = mkPN "Marion"; -- from DictEng -lin mariposan_PN = mkPN "Mariposan" ; -lin maritime_provinces_PN = mkPN "Maritime Provinces" ; -lin marjorie_PN = mkPN "Marjorie"; -- from DictEng -lin mark_PN = mkPN "Mark"; -- from DictEng -lin markaz_ud_dawa_wal_irshad_PN = mkPN "Markaz ud Dawa wal Irshad" ; -lin market_drayton_PN = mkPN "Market drayton"; -- from DictEng -lin market_harborough_PN = mkPN "Market harborough"; -- from DictEng -lin markov_PN = mkPN "Markov" ; -lin markov_chain_PN = mkPN "Markov chain" ; -lin markov_process_PN = mkPN "Markov process" ; -lin markova_PN = mkPN "Markova" ; -lin markovian_A = mkA "Markovian" ; -lin marks_PN = mkPN "Marks" ; -lin marlborough_PN = mkPN "Marlborough"; -- from DictEng -lin marlene_PN = mkPN "Marlene"; -- from DictEng -lin marley_PN = mkPN "Marley" ; -lin marlow_PN = mkPN "Marlow"; -- from DictEng -lin marlowe_PN = mkPN "Marlowe" ; -lin marmara_PN = mkPN "Marmara" ; -lin marmota_PN = mkPN "Marmota" ; -lin marple_PN = mkPN "Marple"; -- from DictEng -lin marquand_PN = mkPN "Marquand" ; -lin marquesas_islands_PN = mkPN "Marquesas Islands" ; -lin marquette_PN = mkPN "Marquette" ; -lin marquis_PN = mkPN "Marquis" ; -lin marrakesh_PN = mkPN "Marrakesh" ; -lin marrano_PN = mkPN "Marrano" ; -lin marrubium_PN = mkPN "Marrubium" ; -lin mars_PN = mkPN "Mars"; -- from DictEng -lin marsala_PN = mkPN "Marsala" ; -lin marseillaise_PN = mkPN "Marseillaise" ; -lin marseille_PN = mkPN "Marseille" ; -lin marseilles_PN = mkPN "Marseilles"; -- from DictEng -lin marseilles_fever_PN = mkPN "Marseilles fever" ; -lin marsh_PN = mkPN "Marsh" ; -lin marshall_PN = mkPN "Marshall" ; -lin marshall_islands_PN = mkPN "Marshall Islands" ; -lin marshall_plan_PN = mkPN "Marshall Plan" ; -lin marsilea_PN = mkPN "Marsilea" ; -lin marsileaceae_PN = mkPN "Marsileaceae" ; -lin marske_PN = mkPN "Marske"; -- from DictEng -lin marstan_PN = mkPN "Marstan" ; -lin marston_moor_PN = mkPN "Marston Moor" ; -lin marsupialia_PN = mkPN "Marsupialia" ; -lin martes_PN = mkPN "Martes" ; -lin martha_PN = mkPN "Martha"; -- from DictEng -lin martha's_vineyard_PN = mkPN "Martha's Vineyard" ; -lin marti_PN = mkPN "Marti" ; -lin martial_PN = mkPN "Martial" ; -lin martian_A = compoundA (mkA "martian"); -- from DictEng -lin martian_PN = mkPN "Martian" ; -lin martin_PN = mkPN "Martin"; -- from DictEng -lin martin_luther_king_jr's_birthday_PN = mkPN "Martin Luther King Jr's Birthday" ; -lin martin_v_PN = mkPN "Martin V" ; -lin martinique_PN = mkPN "Martinique" ; -lin martinmas_PN = mkPN "Martinmas" ; -lin martyniaceae_PN = mkPN "Martyniaceae" ; -lin marut_PN = mkPN "Marut" ; -lin marvell_PN = mkPN "Marvell" ; -lin marx_PN = mkPN "Marx" ; -lin marx_brothers_PN = mkPN "Marx Brothers" ; -lin marxism_PN = mkPN "Marxism" ; -lin marxist_A = mkA "Marxist" ; -lin marxist_PN = mkPN "Marxist" ; -lin marxist_leninist_A = compoundA (mkA "Marxist Leninist") ; -lin mary_PN = mkPN "Mary"; -- from DictEng -lin mary_i_PN = mkPN "Mary I" ; -lin mary_ii_PN = mkPN "Mary II" ; -lin mary_magdalene_PN = mkPN "Mary Magdalene" ; -lin mary_queen_of_scots_PN = mkPN "Mary Queen of Scots" ; -lin maryland_PN = mkPN "Maryland"; -- from DictEng -lin maryland_chicken_PN = mkPN "Maryland chicken" ; -lin maryland_golden_aster_PN = mkPN "Maryland golden aster" ; -lin marylander_PN = mkPN "Marylander" ; -lin maryport_PN = mkPN "Maryport"; -- from DictEng -lin masa_PN = mkPN "Masa" ; -lin masai_PN = mkPN "Masai" ; -lin masc_PN = mkPN "Masc"; -- from DictEng -lin masefield_PN = mkPN "Masefield" ; -lin maseru_PN = mkPN "Maseru" ; -lin mashhad_PN = mkPN "Mashhad" ; -lin mashi_PN = mkPN "Mashi" ; -lin mashriq_PN = mkPN "Mashriq" ; -lin mason_PN = mkPN "Mason" ; -lin mason_dixon_line_PN = mkPN "Mason Dixon line" ; -lin mason_city_PN = mkPN "Mason City" ; -lin mason_dixon_PN = mkPN "Mason - dixon"; -- from DictEng -lin mason_jar_PN = mkPN "Mason jar" ; -lin masonic_A = compoundA (mkA "masonic"); -- from DictEng -lin masonite_PN = mkPN "Masonite" ; -lin masorah_PN = mkPN "Masorah" ; -lin masorete_PN = mkPN "Masorete" ; -lin masoretic_A = mkA "Masoretic" ; -lin masoud_PN = mkPN "Masoud" ; -lin mass_PN = mkPN "Mass" ; -lin mass_card_PN = mkPN "Mass card" ; -lin massachuset_PN = mkPN "Massachuset" ; -lin massachusetts_PN = mkPN "Massachusetts"; -- from DictEng -lin massachusetts_bay_PN = mkPN "Massachusetts Bay" ; -lin massachusetts_institute_of_technology_PN = mkPN "Massachusetts Institute of Technology" ; -lin massachusetts_fern_PN = mkPN "Massachusetts fern" ; -lin massasoit_PN = mkPN "Massasoit" ; -lin massawa_PN = mkPN "Massawa" ; -lin massenet_PN = mkPN "Massenet" ; -lin massif_central_PN = mkPN "Massif Central" ; -lin massine_PN = mkPN "Massine" ; -lin master_in_business_PN = mkPN "Master in Business" ; -lin master_in_public_affairs_PN = mkPN "Master in Public Affairs" ; -lin master_of_architecture_PN = mkPN "Master of Architecture" ; -lin master_of_arts_PN = mkPN "Master of Arts" ; -lin master_of_arts_in_library_science_PN = mkPN "Master of Arts in Library Science" ; -lin master_of_arts_in_teaching_PN = mkPN "Master of Arts in Teaching" ; -lin master_of_divinity_PN = mkPN "Master of Divinity" ; -lin master_of_education_PN = mkPN "Master of Education" ; -lin master_of_fine_arts_PN = mkPN "Master of Fine Arts" ; -lin master_of_laws_PN = mkPN "Master of Laws" ; -lin master_of_library_science_PN = mkPN "Master of Library Science" ; -lin master_of_literature_PN = mkPN "Master of Literature" ; -lin master_of_science_PN = mkPN "Master of Science" ; -lin master_of_science_in_engineering_PN = mkPN "Master of Science in Engineering" ; -lin master_of_theology_PN = mkPN "Master of Theology" ; -lin masters_PN = mkPN "Masters" ; -lin masticophis_PN = mkPN "Masticophis" ; -lin mastigomycota_PN = mkPN "Mastigomycota" ; -lin mastigophora_PN = mkPN "Mastigophora" ; -lin mastigoproctus_PN = mkPN "Mastigoproctus" ; -lin mastotermes_PN = mkPN "Mastotermes" ; -lin mastotermes_darwiniensis_PN = mkPN "Mastotermes darwiniensis" ; -lin mastotermes_electrodominicus_PN = mkPN "Mastotermes electrodominicus" ; -lin mastotermes_electromexicus_PN = mkPN "Mastotermes electromexicus" ; -lin mastotermitidae_PN = mkPN "Mastotermitidae" ; -lin mata_hari_PN = mkPN "Mata Hari" ; -lin matakam_PN = mkPN "Matakam" ; -lin matamoros_PN = mkPN "Matamoros" ; -lin mathias_PN = mkPN "Mathias" ; -lin matisse_PN = mkPN "Matisse" ; -lin matlock_PN = mkPN "Matlock"; -- from DictEng -lin matricaria_PN = mkPN "Matricaria" ; -lin matt_PN = mkPN "Matt"; -- from DictEng -lin matterhorn_PN = mkPN "Matterhorn" ; -lin matteuccia_PN = mkPN "Matteuccia" ; -lin matthew_PN = mkPN "Matthew"; -- from DictEng -lin matthew_walker_PN = mkPN "Matthew Walker" ; -lin matthiola_PN = mkPN "Matthiola" ; -lin mattole_PN = mkPN "Mattole" ; -lin maud_PN = mkPN "Maud"; -- from DictEng -lin maudie_PN = mkPN "Maudie"; -- from DictEng -lin maugham_PN = mkPN "Maugham" ; -lin maui_PN = mkPN "Maui" ; -lin mauldin_PN = mkPN "Mauldin" ; -lin mauna_kea_PN = mkPN "Mauna Kea" ; -lin mauna_loa_PN = mkPN "Mauna Loa" ; -lin maundy_PN = mkPN "Maundy" ; -lin maundy_thursday_PN = mkPN "Maundy thursday"; -- from DictEng -lin maundy_money_PN = mkPN "Maundy money" ; -lin maupassant_PN = mkPN "Maupassant" ; -lin maureen_PN = mkPN "Maureen"; -- from DictEng -lin mauriac_PN = mkPN "Mauriac" ; -lin maurice_PN = mkPN "Maurice"; -- from DictEng -lin mauritania_PN = mkPN "Mauritania"; -- from DictEng -lin mauritanian_A = compoundA (mkA "mauritanian"); -- from DictEng -lin mauritanian_PN = mkPN "Mauritanian" ; -lin mauritanian_monetary_unit_PN = mkPN "Mauritanian monetary unit" ; -lin mauritian_PN = mkPN "Mauritian" ; -lin mauritian_monetary_unit_PN = mkPN "Mauritian monetary unit" ; -lin mauritian_rupee_PN = mkPN "Mauritian rupee" ; -lin mauritius_PN = mkPN "Mauritius"; -- from DictEng -lin maurois_PN = mkPN "Maurois" ; -lin mauser_PN = mkPN "Mauser" ; -lin mausoleum_at_halicarnasus_PN = mkPN "Mausoleum at Halicarnasus" ; -lin mavis_PN = mkPN "Mavis"; -- from DictEng -lin max_PN = mkPN "Max"; -- from DictEng -lin maxim_PN = mkPN "Maxim" ; -lin maxim_gun_PN = mkPN "Maxim gun" ; -lin maximian_PN = mkPN "Maximian" ; -lin maximilian's_sunflower_PN = mkPN "Maximilian's sunflower" ; -lin maxine_PN = mkPN "Maxine"; -- from DictEng -lin maxostoma_PN = mkPN "Maxostoma" ; -lin maxwell_PN = mkPN "Maxwell" ; -lin maxwell's_demon_PN = mkPN "Maxwell's demon" ; -lin maxwell's_equations_PN = mkPN "Maxwell's equations" ; -lin maxwell_boltzmann_distribution_law_PN = mkPN "Maxwell Boltzmann distribution law" ; -lin maxzide_PN = mkPN "Maxzide" ; -lin may_PN = mkPN "May"; -- from DictEng -lin may_day_PN = mkPN "May Day" ; -lin may_apple_PN = mkPN "May apple" ; -lin may_queen_PN = mkPN "May queen" ; -lin may_wine_PN = mkPN "May wine" ; -lin maya_PN = mkPN "Maya" ; -lin mayaca_PN = mkPN "Mayaca" ; -lin mayacaceae_PN = mkPN "Mayacaceae" ; -lin mayakovski_PN = mkPN "Mayakovski" ; -lin mayan_PN = mkPN "Mayan" ; -lin mayas_PN = mkPN "Mayas" ; -lin mayday_PN = mkPN "Mayday" ; -lin mayenne_PN = mkPN "Mayenne" ; -lin mayer_PN = mkPN "Mayer" ; -lin mayetiola_PN = mkPN "Mayetiola" ; -lin mayfair_PN = mkPN "Mayfair"; -- from DictEng -lin mayfield_PN = mkPN "Mayfield"; -- from DictEng -lin mayflower_PN = mkPN "Mayflower" ; -lin mayo_PN = mkPN "Mayo"; -- from DictEng -lin mays_PN = mkPN "Mays" ; -lin mazama_PN = mkPN "Mazama" ; -lin mazar_i_sharif_PN = mkPN "Mazar i Sharif" ; -lin mazatlan_PN = mkPN "Mazatlan" ; -lin mazzini_PN = mkPN "Mazzini" ; -lin mbabane_PN = mkPN "Mbabane" ; -lin mbeya_PN = mkPN "Mbeya" ; -lin mbundu_PN = mkPN "Mbundu" ; -lin mcalester_PN = mkPN "McAlester" ; -lin mcallen_PN = mkPN "McAllen" ; -lin mcardle's_disease_PN = mkPN "McArdle's disease" ; -lin mcburney's_point_PN = mkPN "McBurney's point" ; -lin mccarthy_PN = mkPN "McCarthy" ; -lin mccarthyism_PN = mkPN "McCarthyism" ; -lin mccartney_PN = mkPN "McCartney" ; -lin mccauley_PN = mkPN "McCauley" ; -lin mccormick_PN = mkPN "McCormick" ; -lin mccullers_PN = mkPN "McCullers" ; -lin mcgraw_PN = mkPN "McGraw" ; -lin mcguffey_PN = mkPN "McGuffey" ; -lin mcguffey_eclectic_readers_PN = mkPN "McGuffey Eclectic Readers" ; -lin mcguffin_PN = mkPN "McGuffin" ; -lin mcintosh_PN = mkPN "McIntosh" ; -lin mckim_PN = mkPN "McKim" ; -lin mckinley_PN = mkPN "McKinley" ; -lin mcluhan_PN = mkPN "McLuhan" ; -lin mcmaster_PN = mkPN "McMaster" ; -lin mcpherson_PN = mkPN "McPherson" ; -lin mead_PN = mkPN "Mead" ; -lin mead's_milkweed_PN = mkPN "Mead's milkweed" ; -lin meade_PN = mkPN "Meade" ; -lin meany_PN = mkPN "Meany" ; -lin meath_PN = mkPN "Meath"; -- from DictEng -lin mecca_PN = mkPN "Mecca"; -- from DictEng -lin meccano_PN = mkPN "Meccano" ; -lin meckel's_diverticulum_PN = mkPN "Meckel's diverticulum" ; -lin meconopsis_PN = mkPN "Meconopsis" ; -lin mecoptera_PN = mkPN "Mecoptera" ; -lin medaille_militaire_PN = mkPN "Medaille Militaire" ; -lin medal_of_honor_PN = mkPN "Medal of Honor" ; -lin medan_PN = mkPN "Medan"; -- from DictEng -lin medawar_PN = mkPN "Medawar" ; -lin medea_PN = mkPN "Medea" ; -lin medellin_PN = mkPN "Medellin"; -- from DictEng -lin medellin_cartel_PN = mkPN "Medellin cartel" ; -lin medford_PN = mkPN "Medford" ; -lin medicago_PN = mkPN "Medicago" ; -lin medicaid_PN = mkPN "Medicaid" ; -lin medicaid_funds_PN = mkPN "Medicaid funds" ; -lin medical_literature_analysis_and_retrieval_system_PN = mkPN "Medical Literature Analysis and Retrieval System" ; -lin medicare_PN = mkPN "Medicare" ; -lin medici_PN = mkPN "Medici" ; -lin medieval_greek_PN = mkPN "Medieval Greek" ; -lin medieval_latin_PN = mkPN "Medieval Latin" ; -lin medina_PN = mkPN "Medina" ; -lin medinilla_PN = mkPN "Medinilla" ; -lin medinilla_magnifica_PN = mkPN "Medinilla magnifica" ; -lin mediterranean_A = compoundA (mkA "mediterranean"); -- from DictEng -lin mediterranean_PN = mkPN "Mediterranean" ; -lin mediterranean_flour_moth_PN = mkPN "Mediterranean flour moth" ; -lin mediterranean_fruit_fly_PN = mkPN "Mediterranean fruit fly" ; -lin mediterranean_snapdragon_PN = mkPN "Mediterranean snapdragon" ; -lin mediterranean_water_shrew_PN = mkPN "Mediterranean water shrew" ; -lin medoc_PN = mkPN "Medoc" ; -lin medusa_PN = mkPN "Medusa" ; -lin meg_PN = mkPN "Meg"; -- from DictEng -lin megachile_PN = mkPN "Megachile" ; -lin megachilidae_PN = mkPN "Megachilidae" ; -lin megachiroptera_PN = mkPN "Megachiroptera" ; -lin megaderma_PN = mkPN "Megaderma" ; -lin megadermatidae_PN = mkPN "Megadermatidae" ; -lin megaera_PN = mkPN "Megaera" ; -lin megalobatrachus_PN = mkPN "Megalobatrachus" ; -lin megalonychidae_PN = mkPN "Megalonychidae" ; -lin megaloptera_PN = mkPN "Megaloptera" ; -lin megalosauridae_PN = mkPN "Megalosauridae" ; -lin megapodiidae_PN = mkPN "Megapodiidae" ; -lin megapodius_PN = mkPN "Megapodius" ; -lin megaptera_PN = mkPN "Megaptera" ; -lin megatheriidae_PN = mkPN "Megatheriidae" ; -lin megatherium_PN = mkPN "Megatherium" ; -lin megillah_PN = mkPN "Megillah" ; -lin meibomian_gland_PN = mkPN "Meibomian gland" ; -lin meiji_tenno_PN = mkPN "Meiji Tenno" ; -lin meir_PN = mkPN "Meir" ; -lin meissner_PN = mkPN "Meissner" ; -lin meitner_PN = mkPN "Meitner" ; -lin mekong_PN = mkPN "Mekong" ; -lin melampodium_PN = mkPN "Melampodium" ; -lin melampsora_PN = mkPN "Melampsora" ; -lin melampsoraceae_PN = mkPN "Melampsoraceae" ; -lin melanchthon_PN = mkPN "Melanchthon" ; -lin melanerpes_PN = mkPN "Melanerpes" ; -lin melanesia_PN = mkPN "Melanesia" ; -lin melanesian_A = mkA "Melanesian" ; -lin melanitta_PN = mkPN "Melanitta" ; -lin melanogrammus_PN = mkPN "Melanogrammus" ; -lin melanoplus_PN = mkPN "Melanoplus" ; -lin melanotis_PN = mkPN "Melanotis" ; -lin melanthiaceae_PN = mkPN "Melanthiaceae" ; -lin melastoma_PN = mkPN "Melastoma" ; -lin melastomataceae_PN = mkPN "Melastomataceae" ; -lin melba_PN = mkPN "Melba" ; -lin melba_toast_PN = mkPN "Melba toast" ; -lin melbourne_PN = mkPN "Melbourne"; -- from DictEng -lin melchior_PN = mkPN "Melchior" ; -lin melcombe_PN = mkPN "Melcombe"; -- from DictEng -lin melcombe_regis_PN = mkPN "Melcombe regis"; -- from DictEng -lin meleagrididae_PN = mkPN "Meleagrididae" ; -lin meleagris_PN = mkPN "Meleagris" ; -lin meles_PN = mkPN "Meles" ; -lin melia_PN = mkPN "Melia" ; -lin meliaceae_PN = mkPN "Meliaceae" ; -lin melicoccus_PN = mkPN "Melicoccus" ; -lin melicytus_PN = mkPN "Melicytus" ; -lin melinae_PN = mkPN "Melinae" ; -lin meliphagidae_PN = mkPN "Meliphagidae" ; -lin melissa_PN = mkPN "Melissa" ; -lin melkite_PN = mkPN "Melkite" ; -lin melksham_PN = mkPN "Melksham"; -- from DictEng -lin mellivora_PN = mkPN "Mellivora" ; -lin mellon_PN = mkPN "Mellon" ; -lin melocactus_PN = mkPN "Melocactus" ; -lin melogale_PN = mkPN "Melogale" ; -lin meloidae_PN = mkPN "Meloidae" ; -lin melolontha_PN = mkPN "Melolontha" ; -lin melolonthidae_PN = mkPN "Melolonthidae" ; -lin melophagus_PN = mkPN "Melophagus" ; -lin melopsittacus_PN = mkPN "Melopsittacus" ; -lin melospiza_PN = mkPN "Melospiza" ; -lin melpomene_PN = mkPN "Melpomene" ; -lin meltham_PN = mkPN "Meltham"; -- from DictEng -lin melton_mowbray_PN = mkPN "Melton mowbray"; -- from DictEng -lin melursus_PN = mkPN "Melursus" ; -lin melville_PN = mkPN "Melville" ; -lin membracidae_PN = mkPN "Membracidae" ; -lin memorial_day_PN = mkPN "Memorial Day" ; -lin memphis_PN = mkPN "Memphis"; -- from DictEng -lin menai_strait_PN = mkPN "Menai Strait" ; -lin menander_PN = mkPN "Menander" ; -lin mencken_PN = mkPN "Mencken" ; -lin mendel_PN = mkPN "Mendel" ; -lin mendel's_law_PN = mkPN "Mendel's law" ; -lin mendeleyev_PN = mkPN "Mendeleyev" ; -lin mendelian_A = compoundA (mkA "mendelian"); -- from DictEng -lin mendelian_PN = mkPN "Mendelian" ; -lin mendelism_PN = mkPN "Mendelism" ; -lin mendelsohn_PN = mkPN "Mendelsohn" ; -lin mendelssohn_PN = mkPN "Mendelssohn" ; -lin mendenhall_glacier_PN = mkPN "Mendenhall Glacier" ; -lin menelaus_PN = mkPN "Menelaus" ; -lin meniere_PN = mkPN "Meniere" ; -lin meniere's_disease_PN = mkPN "Meniere's disease" ; -lin menippe_PN = mkPN "Menippe" ; -lin meniscium_PN = mkPN "Meniscium" ; -lin menispermaceae_PN = mkPN "Menispermaceae" ; -lin menispermum_PN = mkPN "Menispermum" ; -lin menninger_PN = mkPN "Menninger" ; -lin mennonite_PN = mkPN "Mennonite" ; -lin mennonite_church_PN = mkPN "Mennonite Church" ; -lin mennonitism_PN = mkPN "Mennonitism" ; -lin menomini_PN = mkPN "Menomini" ; -lin menopon_PN = mkPN "Menopon" ; -lin menorah_PN = mkPN "Menorah" ; -lin menotti_PN = mkPN "Menotti" ; -lin menotyphla_PN = mkPN "Menotyphla" ; -lin mensa_PN = mkPN "Mensa" ; -lin menshevik_PN = mkPN "Menshevik" ; -lin mentha_PN = mkPN "Mentha" ; -lin menticirrhus_PN = mkPN "Menticirrhus" ; -lin mentzelia_PN = mkPN "Mentzelia" ; -lin menuhin_PN = mkPN "Menuhin" ; -lin menura_PN = mkPN "Menura" ; -lin menurae_PN = mkPN "Menurae" ; -lin menuridae_PN = mkPN "Menuridae" ; -lin menyanthaceae_PN = mkPN "Menyanthaceae" ; -lin menyanthes_PN = mkPN "Menyanthes" ; -lin menziesia_PN = mkPN "Menziesia" ; -lin meopham_PN = mkPN "Meopham"; -- from DictEng -lin mephistopheles_PN = mkPN "Mephistopheles" ; -lin mephitinae_PN = mkPN "Mephitinae" ; -lin mephitis_PN = mkPN "Mephitis" ; -lin mercalli_scale_PN = mkPN "Mercalli scale" ; -lin mercator_PN = mkPN "Mercator"; -- from DictEng -lin mercator_projection_PN = mkPN "Mercator projection" ; -lin mercedario_PN = mkPN "Mercedario" ; -lin mercenaria_PN = mkPN "Mercenaria" ; -lin mercer_PN = mkPN "Mercer" ; -lin merckx_PN = mkPN "Merckx" ; -lin mercouri_PN = mkPN "Mercouri" ; -lin mercurial_A = compoundA (mkA "mercurial"); -- from DictEng -lin mercurialis_PN = mkPN "Mercurialis" ; -lin mercury_PN = mkPN "Mercury"; -- from DictEng -lin mercury_program_PN = mkPN "Mercury program" ; -lin meredith_PN = mkPN "Meredith" ; -lin mergenthaler_PN = mkPN "Mergenthaler" ; -lin merginae_PN = mkPN "Merginae" ; -lin mergus_PN = mkPN "Mergus" ; -lin merida_PN = mkPN "Merida" ; -lin meridian_PN = mkPN "Meridian" ; -lin meriones_PN = mkPN "Meriones" ; -lin merlangus_PN = mkPN "Merlangus" ; -lin merlin_PN = mkPN "Merlin" ; -lin merlot_PN = mkPN "Merlot" ; -lin merluccius_PN = mkPN "Merluccius" ; -lin merman_PN = mkPN "Merman" ; -lin meropidae_PN = mkPN "Meropidae" ; -lin merops_PN = mkPN "Merops" ; -lin merostomata_PN = mkPN "Merostomata" ; -lin merovingian_A = mkA "Merovingian" ; -lin merovingian_PN = mkPN "Merovingian" ; -lin merrimac_PN = mkPN "Merrimac" ; -lin merrimack_PN = mkPN "Merrimack" ; -lin mertensia_PN = mkPN "Mertensia" ; -lin merthyr_tydfil_PN = mkPN "Merthyr tydfil"; -- from DictEng -lin merton_PN = mkPN "Merton"; -- from DictEng -lin meryta_PN = mkPN "Meryta" ; -lin mesa_PN = mkPN "Mesa" ; -lin mesa_verde_national_park_PN = mkPN "Mesa Verde National Park" ; -lin mesabi_range_PN = mkPN "Mesabi Range" ; -lin mesasamkranti_PN = mkPN "Mesasamkranti" ; -lin mesembryanthemum_PN = mkPN "Mesembryanthemum" ; -lin mesmer_PN = mkPN "Mesmer" ; -lin mesoamerica_PN = mkPN "Mesoamerica" ; -lin mesoamerican_A = mkA "Mesoamerican" ; -lin mesoamerican_PN = mkPN "Mesoamerican" ; -lin mesocricetus_PN = mkPN "Mesocricetus" ; -lin mesolithic_age_PN = mkPN "Mesolithic Age" ; -lin mesopotamia_PN = mkPN "Mesopotamia" ; -lin mesozoic_A = mkA "Mesozoic" ; -lin mesozoic_PN = mkPN "Mesozoic" ; -lin mespilus_PN = mkPN "Mespilus" ; -lin messiah_PN = mkPN "Messiah" ; -lin messidor_PN = mkPN "Messidor" ; -lin messina_PN = mkPN "Messina"; -- from DictEng -lin mesua_PN = mkPN "Mesua" ; -lin met_PN = mkPN "Met"; -- from DictEng -lin metatheria_PN = mkPN "Metatheria" ; -lin metaurus_river_PN = mkPN "Metaurus River" ; -lin metazoa_PN = mkPN "Metazoa" ; -lin metchnikoff_PN = mkPN "Metchnikoff" ; -lin methodism_PN = mkPN "Methodism" ; -lin methodist_A = compoundA (mkA "methodist"); -- from DictEng -lin methodist_PN = mkPN "Methodist" ; -lin methodist_church_PN = mkPN "Methodist Church" ; -lin methodist_denomination_PN = mkPN "Methodist denomination" ; -lin methuselah_PN = mkPN "Methuselah"; -- from DictEng -lin metis_PN = mkPN "Metis" ; -lin metroxylon_PN = mkPN "Metroxylon" ; -lin metternich_PN = mkPN "Metternich" ; -lin metz_PN = mkPN "Metz"; -- from DictEng -lin meuniere_butter_PN = mkPN "Meuniere butter" ; -lin meuse_PN = mkPN "Meuse" ; -lin mexicali_PN = mkPN "Mexicali" ; -lin mexican_A = compoundA (mkA "mexican"); -- from DictEng -lin mexican_PN = mkPN "Mexican" ; -lin mexican_american_PN = mkPN "Mexican American" ; -lin mexican_revolution_PN = mkPN "Mexican Revolution" ; -lin mexican_spanish_PN = mkPN "Mexican Spanish" ; -lin mexican_war_PN = mkPN "Mexican War" ; -lin mexican_bean_beetle_PN = mkPN "Mexican bean beetle" ; -lin mexican_cypress_PN = mkPN "Mexican cypress" ; -lin mexican_hairless_PN = mkPN "Mexican hairless" ; -lin mexican_hat_PN = mkPN "Mexican hat" ; -lin mexican_hyssop_PN = mkPN "Mexican hyssop" ; -lin mexican_juniper_PN = mkPN "Mexican juniper" ; -lin mexican_mint_PN = mkPN "Mexican mint" ; -lin mexican_monetary_unit_PN = mkPN "Mexican monetary unit" ; -lin mexican_peso_PN = mkPN "Mexican peso" ; -lin mexican_pocket_mouse_PN = mkPN "Mexican pocket mouse" ; -lin mexican_poppy_PN = mkPN "Mexican poppy" ; -lin mexican_standoff_PN = mkPN "Mexican standoff" ; -lin mexican_sunflower_PN = mkPN "Mexican sunflower" ; -lin mexico_PN = mkPN "Mexico"; -- from DictEng -lin mexico_city_PN = mkPN "Mexico city"; -- from DictEng -lin meyerbeer_PN = mkPN "Meyerbeer" ; -lin meyerhof_PN = mkPN "Meyerhof" ; -lin mgr_PN = mkPN "Mgr"; -- from DictEng -lin mi5_PN = mkPN "Mi5"; -- from DictEng -lin mi6_PN = mkPN "Mi6"; -- from DictEng -lin miami_PN = mkPN "Miami"; -- from DictEng -lin miami_beach_PN = mkPN "Miami Beach" ; -lin micah_PN = mkPN "Micah" ; -lin micawber_PN = mkPN "Micawber" ; -lin michael_PN = mkPN "Michael"; -- from DictEng -lin michaelmas_PN = mkPN "Michaelmas"; -- from DictEng -lin michaelmas_daisy_PN = mkPN "Michaelmas daisy" ; -lin michaelmastide_PN = mkPN "Michaelmastide" ; -lin michelangelesque_A = mkA "Michelangelesque" ; -lin michelangelo_PN = mkPN "Michelangelo" ; -lin michelle_PN = mkPN "Michelle"; -- from DictEng -lin michelson_PN = mkPN "Michelson" ; -lin michelson_morley_experiment_PN = mkPN "Michelson Morley experiment" ; -lin michener_PN = mkPN "Michener" ; -lin michigan_PN = mkPN "Michigan"; -- from DictEng -lin michigan_lily_PN = mkPN "Michigan lily" ; -lin michigander_PN = mkPN "Michigander" ; -lin mick_PN = mkPN "Mick"; -- from DictEng -lin mickey_PN = mkPN "Mickey"; -- from DictEng -lin mickey_finn_PN = mkPN "Mickey Finn" ; -lin mickey_mouse_PN = mkPN "Mickey Mouse" ; -lin micmac_PN = mkPN "Micmac" ; -lin microcentrum_PN = mkPN "Microcentrum" ; -lin microchiroptera_PN = mkPN "Microchiroptera" ; -lin micrococcaceae_PN = mkPN "Micrococcaceae" ; -lin micrococcus_PN = mkPN "Micrococcus" ; -lin microdesmidae_PN = mkPN "Microdesmidae" ; -lin microdipodops_PN = mkPN "Microdipodops" ; -lin microgramma_PN = mkPN "Microgramma" ; -lin microhylidae_PN = mkPN "Microhylidae" ; -lin micromeria_PN = mkPN "Micromeria" ; -lin micromyx_PN = mkPN "Micromyx" ; -lin micronesia_PN = mkPN "Micronesia" ; -lin micronor_PN = mkPN "Micronor" ; -lin micropogonias_PN = mkPN "Micropogonias" ; -lin micropterus_PN = mkPN "Micropterus" ; -lin microscopium_PN = mkPN "Microscopium" ; -lin microsorium_PN = mkPN "Microsorium" ; -lin microsporum_PN = mkPN "Microsporum" ; -lin microstomus_PN = mkPN "Microstomus" ; -lin microstrobos_PN = mkPN "Microstrobos" ; -lin microtaggant_PN = mkPN "Microtaggant" ; -lin microtus_PN = mkPN "Microtus" ; -lin micruroides_PN = mkPN "Micruroides" ; -lin micrurus_PN = mkPN "Micrurus" ; -lin mid_atlantic_ridge_PN = mkPN "Mid Atlantic Ridge" ; -lin mid_atlantic_states_PN = mkPN "Mid Atlantic states" ; -lin midas_PN = mkPN "Midas" ; -lin midas_touch_PN = mkPN "Midas touch" ; -lin middle_ages_PN = mkPN "Middle Ages" ; -lin middle_east_PN = mkPN "Middle East" ; -lin middle_eastern_A = compoundA (mkA "Middle Eastern") ; -lin middle_english_PN = mkPN "Middle English" ; -lin middle_high_german_PN = mkPN "Middle High German" ; -lin middle_irish_PN = mkPN "Middle Irish" ; -lin middle_low_german_PN = mkPN "Middle Low German" ; -lin middle_paleolithic_PN = mkPN "Middle Paleolithic" ; -lin middlesex_PN = mkPN "Middlesex"; -- from DictEng -lin middleton_PN = mkPN "Middleton"; -- from DictEng -lin middlewich_PN = mkPN "Middlewich"; -- from DictEng -lin midgard_PN = mkPN "Midgard" ; -lin midi_PN = mkPN "Midi" ; -lin midi_pyrenees_PN = mkPN "Midi Pyrenees" ; -lin midland_PN = mkPN "Midland" ; -lin midlands_PN = mkPN "Midlands"; -- from DictEng -lin midrash_PN = mkPN "Midrash" ; -lin midsummer_day_PN = mkPN "Midsummer Day" ; -lin midsummer_eve_PN = mkPN "Midsummer Eve" ; -lin midway_PN = mkPN "Midway" ; -lin midway_islands_PN = mkPN "Midway Islands" ; -lin midwest_PN = mkPN "Midwest"; -- from DictEng -lin mies_van_der_rohe_PN = mkPN "Mies Van Der Rohe" ; -lin mighty_mouse_PN = mkPN "Mighty Mouse" ; -lin mikania_PN = mkPN "Mikania" ; -lin mike_PN = mkPN "Mike"; -- from DictEng -lin mikir_meithei_PN = mkPN "Mikir Meithei" ; -lin milady_PN = mkPN "Milady" ; -lin milan_PN = mkPN "Milan"; -- from DictEng -lin milanese_A = mkA "Milanese" ; -lin milanese_PN = mkPN "Milanese" ; -lin milano_PN = mkPN "Milano"; -- from DictEng -lin mildenhall_PN = mkPN "Mildenhall"; -- from DictEng -lin mildred_PN = mkPN "Mildred"; -- from DictEng -lin miles_PN = mkPN "Miles"; -- from DictEng -lin milford_PN = mkPN "Milford"; -- from DictEng -lin milford_haven_PN = mkPN "Milford haven"; -- from DictEng -lin milhaud_PN = mkPN "Milhaud" ; -lin militant_tendency_PN = mkPN "Militant Tendency" ; -lin milk_PN = mkPN "Milk" ; -lin milky_way_PN = mkPN "Milky Way" ; -lin mill_PN = mkPN "Mill" ; -lin millais_PN = mkPN "Millais" ; -lin millay_PN = mkPN "Millay" ; -lin miller_PN = mkPN "Miller" ; -lin millet_PN = mkPN "Millet" ; -lin millicent_PN = mkPN "Millicent"; -- from DictEng -lin millie_PN = mkPN "Millie"; -- from DictEng -lin millikan_PN = mkPN "Millikan" ; -lin millom_PN = mkPN "Millom"; -- from DictEng -lin mills_PN = mkPN "Mills" ; -lin milly_PN = mkPN "Milly"; -- from DictEng -lin milne_PN = mkPN "Milne" ; -lin milngavie_PN = mkPN "Milngavie"; -- from DictEng -lin milnrow_PN = mkPN "Milnrow"; -- from DictEng -lin miltiades_PN = mkPN "Miltiades" ; -lin milton_PN = mkPN "Milton" ; -lin milton_keynes_PN = mkPN "Milton keynes"; -- from DictEng -lin miltonia_PN = mkPN "Miltonia" ; -lin milvus_PN = mkPN "Milvus" ; -lin milwaukee_PN = mkPN "Milwaukee"; -- from DictEng -lin mimamsa_PN = mkPN "Mimamsa" ; -lin mimidae_PN = mkPN "Mimidae" ; -lin mimir_PN = mkPN "Mimir" ; -lin mimosaceae_PN = mkPN "Mimosaceae" ; -lin mimosoideae_PN = mkPN "Mimosoideae" ; -lin mimus_PN = mkPN "Mimus" ; -lin min_PN = mkPN "Min" ; -lin minamata_bay_PN = mkPN "Minamata Bay" ; -lin minamata_disease_PN = mkPN "Minamata disease" ; -lin minato_ohashi_bridge_PN = mkPN "Minato Ohashi Bridge" ; -lin mindanao_PN = mkPN "Mindanao" ; -lin minden_PN = mkPN "Minden" ; -lin mindoro_PN = mkPN "Mindoro" ; -lin minehead_PN = mkPN "Minehead"; -- from DictEng -lin minerva_PN = mkPN "Minerva" ; -lin ming_PN = mkPN "Ming" ; -lin miniconju_PN = mkPN "Miniconju" ; -lin minkowski_PN = mkPN "Minkowski" ; -lin minneapolis_PN = mkPN "Minneapolis"; -- from DictEng -lin minnesota_PN = mkPN "Minnesota"; -- from DictEng -lin minnesota_multiphasic_personality_inventory_PN = mkPN "Minnesota Multiphasic Personality Inventory" ; -lin minnesotan_PN = mkPN "Minnesotan" ; -lin minnie_mouse_PN = mkPN "Minnie Mouse" ; -lin minoan_A = mkA "Minoan" ; -lin minoan_PN = mkPN "Minoan" ; -lin minoan_civilization_PN = mkPN "Minoan civilization" ; -lin minos_PN = mkPN "Minos" ; -lin minotaur_PN = mkPN "Minotaur" ; -lin minsk_PN = mkPN "Minsk"; -- from DictEng -lin minster_in_sheppey_PN = mkPN "Minster - in - sheppey"; -- from DictEng -lin minuartia_PN = mkPN "Minuartia" ; -lin minuit_PN = mkPN "Minuit" ; -lin minuteman_PN = mkPN "Minuteman" ; -lin miocene_PN = mkPN "Miocene" ; -lin mirabeau_PN = mkPN "Mirabeau" ; -lin mirabilis_PN = mkPN "Mirabilis" ; -lin miranda_PN = mkPN "Miranda"; -- from DictEng -lin miranda_rule_PN = mkPN "Miranda rule" ; -lin miri_PN = mkPN "Miri" ; -lin miriam_PN = mkPN "Miriam"; -- from DictEng -lin miridae_PN = mkPN "Miridae" ; -lin miro_PN = mkPN "Miro" ; -lin mirounga_PN = mkPN "Mirounga" ; -lin misc_PN = mkPN "Misc"; -- from DictEng -lin mishna_PN = mkPN "Mishna" ; -lin mishnaic_A = mkA "Mishnaic" ; -lin miss_PN = mkPN "Miss" ; -lin mississippi_PN = mkPN "Mississippi"; -- from DictEng -lin mississippian_PN = mkPN "Mississippian" ; -lin missoula_PN = mkPN "Missoula" ; -lin missouri_PN = mkPN "Missouri"; -- from DictEng -lin missouri_compromise_PN = mkPN "Missouri Compromise" ; -lin missouri_goldenrod_PN = mkPN "Missouri goldenrod" ; -lin missouri_primrose_PN = mkPN "Missouri primrose" ; -lin missourian_PN = mkPN "Missourian" ; -lin mister_PN = mkPN "Mister" ; -lin mitchell_PN = mkPN "Mitchell" ; -lin mitchella_PN = mkPN "Mitchella" ; -lin mitchum_PN = mkPN "Mitchum" ; -lin mitella_PN = mkPN "Mitella" ; -lin mitford_PN = mkPN "Mitford" ; -lin mithraism_PN = mkPN "Mithraism" ; -lin mithraist_PN = mkPN "Mithraist" ; -lin mithras_PN = mkPN "Mithras" ; -lin mithridates_PN = mkPN "Mithridates" ; -lin mitra_PN = mkPN "Mitra" ; -lin mitrula_elegans_PN = mkPN "Mitrula elegans" ; -lin mitterrand_PN = mkPN "Mitterrand" ; -lin miwok_PN = mkPN "Miwok" ; -lin mlle_PN = mkPN "Mlle"; -- from DictEng -lin mme_PN = mkPN "Mme"; -- from DictEng -lin mnemosyne_PN = mkPN "Mnemosyne" ; -lin mniaceae_PN = mkPN "Mniaceae" ; -lin mnium_PN = mkPN "Mnium" ; -lin mo_PN = mkPN "Mo"; -- from DictEng -lin mobile_PN = mkPN "Mobile" ; -lin mobile_bay_PN = mkPN "Mobile Bay" ; -lin mobius_PN = mkPN "Mobius" ; -lin mobius_strip_PN = mkPN "Mobius strip" ; -lin mobula_PN = mkPN "Mobula" ; -lin mobulidae_PN = mkPN "Mobulidae" ; -lin model_t_PN = mkPN "Model T" ; -lin modena_PN = mkPN "Modena"; -- from DictEng -lin modern_A = compoundA (mkA "modern"); -- from DictEng -lin modern_english_PN = mkPN "Modern English" ; -lin modern_greek_PN = mkPN "Modern Greek" ; -lin modern_hebrew_PN = mkPN "Modern Hebrew" ; -lin modicon_PN = mkPN "Modicon" ; -lin modigliani_PN = mkPN "Modigliani" ; -lin moehringia_PN = mkPN "Moehringia" ; -lin moeller's_glossitis_PN = mkPN "Moeller's glossitis" ; -lin mogadishu_PN = mkPN "Mogadishu" ; -lin mogul_PN = mkPN "Mogul" ; -lin mogul_empire_PN = mkPN "Mogul empire" ; -lin mohammed_PN = mkPN "Mohammed" ; -lin mohammed_ali_PN = mkPN "Mohammed Ali" ; -lin mohammedan_PN = mkPN "Mohammedan" ; -lin mohave_PN = mkPN "Mohave" ; -lin mohawk_PN = mkPN "Mohawk" ; -lin mohawk_river_PN = mkPN "Mohawk River" ; -lin mohican_PN = mkPN "Mohican" ; -lin mohorovicic_PN = mkPN "Mohorovicic" ; -lin mohorovicic_discontinuity_PN = mkPN "Mohorovicic discontinuity" ; -lin mohria_PN = mkPN "Mohria" ; -lin mohs_scale_PN = mkPN "Mohs scale" ; -lin moira_PN = mkPN "Moira"; -- from DictEng -lin moirai_PN = mkPN "Moirai" ; -lin mojave_PN = mkPN "Mojave" ; -lin mojave_aster_PN = mkPN "Mojave aster" ; -lin mojave_rattlesnake_PN = mkPN "Mojave rattlesnake" ; -lin mokulu_PN = mkPN "Mokulu" ; -lin mold_PN = mkPN "Mold"; -- from DictEng -lin moldova_PN = mkPN "Moldova" ; -lin moldovan_A = mkA "Moldovan" ; -lin moldovan_monetary_unit_PN = mkPN "Moldovan monetary unit" ; -lin molidae_PN = mkPN "Molidae" ; -lin moliere_PN = mkPN "Moliere" ; -lin moline_PN = mkPN "Moline" ; -lin molise_PN = mkPN "Molise" ; -lin mollienesia_PN = mkPN "Mollienesia" ; -lin molluga_PN = mkPN "Molluga" ; -lin mollusca_PN = mkPN "Mollusca" ; -lin molly_PN = mkPN "Molly"; -- from DictEng -lin molly_miller_PN = mkPN "Molly Miller" ; -lin molnar_PN = mkPN "Molnar" ; -lin moloch_PN = mkPN "Moloch"; -- from DictEng -lin molokai_PN = mkPN "Molokai" ; -lin molossidae_PN = mkPN "Molossidae" ; -lin molothrus_PN = mkPN "Molothrus" ; -lin molotov_PN = mkPN "Molotov" ; -lin molotov_cocktail_PN = mkPN "Molotov cocktail" ; -lin moluccas_PN = mkPN "Moluccas" ; -lin molucella_PN = mkPN "Molucella" ; -lin molva_PN = mkPN "Molva" ; -lin mombasa_PN = mkPN "Mombasa" ; -lin mommsen_PN = mkPN "Mommsen" ; -lin momordica_PN = mkPN "Momordica" ; -lin momotidae_PN = mkPN "Momotidae" ; -lin momotus_PN = mkPN "Momotus" ; -lin momus_PN = mkPN "Momus" ; -lin mon_PN = mkPN "Mon"; -- from DictEng -lin mon_khmer_PN = mkPN "Mon Khmer" ; -lin monacan_A = mkA "Monacan" ; -lin monaco_PN = mkPN "Monaco"; -- from DictEng -lin monaco_ville_PN = mkPN "Monaco Ville" ; -lin monaghan_PN = mkPN "Monaghan"; -- from DictEng -lin monardella_PN = mkPN "Monardella" ; -lin monario_PN = mkPN "Monario" ; -lin monchengladbach_PN = mkPN "Monchengladbach"; -- from DictEng -lin monday_PN = mkPN "Monday"; -- from DictEng -lin mondrian_PN = mkPN "Mondrian" ; -lin monegasque_PN = mkPN "Monegasque" ; -lin monel_metal_PN = mkPN "Monel metal" ; -lin monera_PN = mkPN "Monera" ; -lin moneses_PN = mkPN "Moneses" ; -lin monet_PN = mkPN "Monet" ; -lin mongol_A = compoundA (mkA "mongol"); -- from DictEng -lin mongol_PN = mkPN "Mongol" ; -lin mongolia_PN = mkPN "Mongolia"; -- from DictEng -lin mongolian_A = compoundA (mkA "mongolian"); -- from DictEng -lin mongolian_PN = mkPN "Mongolian" ; -lin mongolian_monetary_unit_PN = mkPN "Mongolian monetary unit" ; -lin mongoloid_PN = mkPN "Mongoloid" ; -lin monica_PN = mkPN "Monica"; -- from DictEng -lin monifieth_PN = mkPN "Monifieth"; -- from DictEng -lin moniliaceae_PN = mkPN "Moniliaceae" ; -lin moniliales_PN = mkPN "Moniliales" ; -lin monitor_PN = mkPN "Monitor" ; -lin monk_PN = mkPN "Monk" ; -lin monmouth_PN = mkPN "Monmouth"; -- from DictEng -lin monmouth_court_house_PN = mkPN "Monmouth Court House" ; -lin monnet_PN = mkPN "Monnet" ; -lin monocanthidae_PN = mkPN "Monocanthidae" ; -lin monocanthus_PN = mkPN "Monocanthus" ; -lin monochamus_PN = mkPN "Monochamus" ; -lin monocotyledones_PN = mkPN "Monocotyledones" ; -lin monod_PN = mkPN "Monod" ; -lin monodon_PN = mkPN "Monodon" ; -lin monodontidae_PN = mkPN "Monodontidae" ; -lin monomorium_PN = mkPN "Monomorium" ; -lin monongahela_PN = mkPN "Monongahela" ; -lin mononychus_olecranus_PN = mkPN "Mononychus olecranus" ; -lin monophysite_A = mkA "Monophysite" ; -lin monophysite_PN = mkPN "Monophysite" ; -lin monophysitism_PN = mkPN "Monophysitism" ; -lin monopoly_PN = mkPN "Monopoly" ; -lin monothelitism_PN = mkPN "Monothelitism" ; -lin monotremata_PN = mkPN "Monotremata" ; -lin monotropa_PN = mkPN "Monotropa" ; -lin monotropaceae_PN = mkPN "Monotropaceae" ; -lin monroe_PN = mkPN "Monroe" ; -lin monroe_doctrine_PN = mkPN "Monroe Doctrine" ; -lin monrovia_PN = mkPN "Monrovia" ; -lin monsieur_PN = mkPN "Monsieur" ; -lin monsignor_PN = mkPN "Monsignor" ; -lin mont_blanc_PN = mkPN "Mont Blanc" ; -lin montagu_PN = mkPN "Montagu" ; -lin montagu's_harrier_PN = mkPN "Montagu's harrier" ; -lin montaigne_PN = mkPN "Montaigne" ; -lin montana_PN = mkPN "Montana"; -- from DictEng -lin montanan_PN = mkPN "Montanan" ; -lin monte_carlo_PN = mkPN "Monte Carlo" ; -lin montego_bay_PN = mkPN "Montego Bay" ; -lin montenegro_PN = mkPN "Montenegro" ; -lin monterey_PN = mkPN "Monterey" ; -lin monterey_bay_PN = mkPN "Monterey Bay" ; -lin monterey_cypress_PN = mkPN "Monterey cypress" ; -lin monterey_pine_PN = mkPN "Monterey pine" ; -lin monterrey_PN = mkPN "Monterrey"; -- from DictEng -lin montespan_PN = mkPN "Montespan" ; -lin montesquieu_PN = mkPN "Montesquieu" ; -lin montessori_PN = mkPN "Montessori" ; -lin monteverdi_PN = mkPN "Monteverdi" ; -lin montevideo_PN = mkPN "Montevideo"; -- from DictEng -lin montez_PN = mkPN "Montez" ; -lin montezuma_PN = mkPN "Montezuma" ; -lin montezuma's_revenge_PN = mkPN "Montezuma's revenge" ; -lin montezuma_ii_PN = mkPN "Montezuma II" ; -lin montezuma_cypress_PN = mkPN "Montezuma cypress" ; -lin montfort_PN = mkPN "Montfort" ; -lin montgolfier_PN = mkPN "Montgolfier" ; -lin montgomery_PN = mkPN "Montgomery" ; -lin montgomery's_tubercle_PN = mkPN "Montgomery's tubercle" ; -lin montia_PN = mkPN "Montia" ; -lin montmartre_PN = mkPN "Montmartre" ; -lin montpelier_PN = mkPN "Montpelier" ; -lin montrachet_PN = mkPN "Montrachet" ; -lin montreal_PN = mkPN "Montreal"; -- from DictEng -lin montrose_PN = mkPN "Montrose"; -- from DictEng -lin montserrat_PN = mkPN "Montserrat"; -- from DictEng -lin montserratian_A = compoundA (mkA "montserratian"); -- from DictEng -lin montserratian_PN = mkPN "Montserratian" ; -lin monza_PN = mkPN "Monza"; -- from DictEng -lin moody_PN = mkPN "Moody" ; -lin moon_PN = mkPN "Moon" ; -lin moonie_PN = mkPN "Moonie" ; -lin moor_PN = mkPN "Moor" ; -lin moore_PN = mkPN "Moore" ; -lin moorish_A = compoundA (mkA "moorish"); -- from DictEng -lin moorish_PN = mkPN "Moorish" ; -lin moorish_arch_PN = mkPN "Moorish arch" ; -lin moquelumnan_PN = mkPN "Moquelumnan" ; -lin moraceae_PN = mkPN "Moraceae" ; -lin moranzanist_patriotic_front_PN = mkPN "Moranzanist Patriotic Front" ; -lin moravia_PN = mkPN "Moravia" ; -lin moravian_A = mkA "Moravian" ; -lin moray_firth_PN = mkPN "Moray Firth" ; -lin morchella_PN = mkPN "Morchella" ; -lin morchella_crassipes_PN = mkPN "Morchella crassipes" ; -lin morchella_semilibera_PN = mkPN "Morchella semilibera" ; -lin morchellaceae_PN = mkPN "Morchellaceae" ; -lin mordva_PN = mkPN "Mordva" ; -lin more_PN = mkPN "More" ; -lin moreau_river_PN = mkPN "Moreau River" ; -lin morecambe_PN = mkPN "Morecambe"; -- from DictEng -lin moreton_bay_PN = mkPN "Moreton Bay" ; -lin moreton_bay_chestnut_PN = mkPN "Moreton Bay chestnut" ; -lin moreton_bay_tulipwood_PN = mkPN "Moreton Bay tulipwood" ; -lin morgan_PN = mkPN "Morgan" ; -lin morgan_city_PN = mkPN "Morgan City" ; -lin morgan_le_fay_PN = mkPN "Morgan le Fay" ; -lin morgantown_PN = mkPN "Morgantown" ; -lin morlett's_crocodile_PN = mkPN "Morlett's crocodile" ; -lin morley_PN = mkPN "Morley"; -- from DictEng -lin mormon_A = compoundA (mkA "mormon"); -- from DictEng -lin mormon_PN = mkPN "Mormon" ; -lin mormonism_PN = mkPN "Mormonism" ; -lin mornay_sauce_PN = mkPN "Mornay sauce" ; -lin moro_PN = mkPN "Moro" ; -lin moro_islamic_liberation_front_PN = mkPN "Moro Islamic Liberation Front" ; -lin moroccan_A = compoundA (mkA "moroccan"); -- from DictEng -lin moroccan_PN = mkPN "Moroccan" ; -lin moroccan_dirham_PN = mkPN "Moroccan dirham" ; -lin moroccan_monetary_unit_PN = mkPN "Moroccan monetary unit" ; -lin morocco_PN = mkPN "Morocco"; -- from DictEng -lin moron_PN = mkPN "Moron" ; -lin morone_PN = mkPN "Morone" ; -lin morpeth_PN = mkPN "Morpeth"; -- from DictEng -lin morpheus_PN = mkPN "Morpheus"; -- from DictEng -lin morrigan_PN = mkPN "Morrigan" ; -lin morris_PN = mkPN "Morris" ; -lin morris_chair_PN = mkPN "Morris chair" ; -lin morrison_PN = mkPN "Morrison" ; -lin morristown_PN = mkPN "Morristown" ; -lin morrow's_honeysuckle_PN = mkPN "Morrow's honeysuckle" ; -lin mors_PN = mkPN "Mors" ; -lin morse_PN = mkPN "Morse" ; -lin mortimer_PN = mkPN "Mortimer" ; -lin morton_PN = mkPN "Morton" ; -lin morus_PN = mkPN "Morus" ; -lin mosaic_A = compoundA (mkA "mosaic"); -- from DictEng -lin mosaic_PN = mkPN "Mosaic" ; -lin mosaic_law_PN = mkPN "Mosaic law" ; -lin mosan_PN = mkPN "Mosan" ; -lin mosander_PN = mkPN "Mosander" ; -lin moschus_PN = mkPN "Moschus" ; -lin moscow_PN = mkPN "Moscow"; -- from DictEng -lin moselle_PN = mkPN "Moselle" ; -lin moses_PN = mkPN "Moses" ; -lin mossad_PN = mkPN "Mossad" ; -lin mossbauer_PN = mkPN "Mossbauer" ; -lin mossley_PN = mkPN "Mossley"; -- from DictEng -lin mosul_PN = mkPN "Mosul" ; -lin motacilla_PN = mkPN "Motacilla" ; -lin motacillidae_PN = mkPN "Motacillidae" ; -lin mother's_day_PN = mkPN "Mother's Day" ; -lin mother_carey's_chicken_PN = mkPN "Mother Carey's chicken" ; -lin mother_goose_PN = mkPN "Mother Goose" ; -lin mother_hubbard_PN = mkPN "Mother Hubbard" ; -lin motherwell_PN = mkPN "Motherwell"; -- from DictEng -lin mott_PN = mkPN "Mott" ; -lin moulmein_PN = mkPN "Moulmein" ; -lin mound_builder_PN = mkPN "Mound Builder" ; -lin mount_bartle_frere_PN = mkPN "Mount Bartle Frere" ; -lin mount_carmel_PN = mkPN "Mount Carmel" ; -lin mount_elbert_PN = mkPN "Mount Elbert" ; -lin mount_ranier_national_park_PN = mkPN "Mount Ranier National Park" ; -lin mount_saint_helens_PN = mkPN "Mount Saint Helens" ; -lin mount_vernon_PN = mkPN "Mount Vernon" ; -lin mountain_time_PN = mkPN "Mountain Time" ; -lin mountain_ash_PN = mkPN "Mountain ash"; -- from DictEng -lin mountie_PN = mkPN "Mountie" ; -lin moynihan_PN = mkPN "Moynihan" ; -lin mozambican_A = compoundA (mkA "mozambican"); -- from DictEng -lin mozambican_PN = mkPN "Mozambican" ; -lin mozambique_PN = mkPN "Mozambique"; -- from DictEng -lin mozambique_channel_PN = mkPN "Mozambique Channel" ; -lin mozambique_monetary_unit_PN = mkPN "Mozambique monetary unit" ; -lin mozart_PN = mkPN "Mozart" ; -lin mozartian_A = mkA "Mozartian" ; -lin mr_PN = mkPN "Mr"; -- from DictEng -lin mr__moto_PN = mkPN "Mr Moto" ; -lin mrs_PN = mkPN "Mrs"; -- from DictEng -lin ms_PN = mkPN "Ms"; -- from DictEng -lin mt_PN = mkPN "Mt"; -- from DictEng -lin mubarak_PN = mkPN "Mubarak" ; -lin mucoraceae_PN = mkPN "Mucoraceae" ; -lin mucorales_PN = mkPN "Mucorales" ; -lin muenster_PN = mkPN "Muenster" ; -lin mugil_PN = mkPN "Mugil" ; -lin mugilidae_PN = mkPN "Mugilidae" ; -lin mugiloidea_PN = mkPN "Mugiloidea" ; -lin mugwump_PN = mkPN "Mugwump" ; -lin muhammad_PN = mkPN "Muhammad"; -- from DictEng -lin muhammadan_A = compoundA (mkA "muhammadan"); -- from DictEng -lin muharram_PN = mkPN "Muharram" ; -lin muhlenbergia_PN = mkPN "Muhlenbergia" ; -lin muir_PN = mkPN "Muir" ; -lin mujahedeen_khalq_PN = mkPN "Mujahedeen Khalq" ; -lin mujahedeen_kompak_PN = mkPN "Mujahedeen Kompak" ; -lin mujahidin_e_khalq_organization_PN = mkPN "Mujahidin e Khalq Organization" ; -lin mukalla_PN = mkPN "Mukalla" ; -lin mukden_PN = mkPN "Mukden"; -- from DictEng -lin mulheim_PN = mkPN "Mulheim"; -- from DictEng -lin mulhouse_PN = mkPN "Mulhouse"; -- from DictEng -lin mull_PN = mkPN "Mull" ; -lin mullah_PN = mkPN "Mullah" ; -lin mullah_omar_PN = mkPN "Mullah Omar" ; -lin muller_PN = mkPN "Muller" ; -lin mullidae_PN = mkPN "Mullidae" ; -lin mulloidichthys_PN = mkPN "Mulloidichthys" ; -lin mullus_PN = mkPN "Mullus" ; -lin multan_PN = mkPN "Multan"; -- from DictEng -lin mumbai_PN = mkPN "Mumbai" ; -lin munch_PN = mkPN "Munch" ; -lin munchausen's_syndrome_PN = mkPN "Munchausen's syndrome" ; -lin munchhausen_PN = mkPN "Munchhausen" ; -lin muncie_PN = mkPN "Muncie" ; -lin munda_PN = mkPN "Munda" ; -lin munich_PN = mkPN "Munich"; -- from DictEng -lin munich_beer_PN = mkPN "Munich beer" ; -lin munro_PN = mkPN "Munro" ; -lin munster_PN = mkPN "Munster"; -- from DictEng -lin muntiacus_PN = mkPN "Muntiacus" ; -lin muntingia_PN = mkPN "Muntingia" ; -lin muraenidae_PN = mkPN "Muraenidae" ; -lin murdoch_PN = mkPN "Murdoch" ; -lin muridae_PN = mkPN "Muridae" ; -lin muriel_PN = mkPN "Muriel"; -- from DictEng -lin murillo_PN = mkPN "Murillo" ; -lin murmansk_PN = mkPN "Murmansk" ; -lin muroidea_PN = mkPN "Muroidea" ; -lin murphy's_law_PN = mkPN "Murphy's Law" ; -lin murphy_bed_PN = mkPN "Murphy bed" ; -lin murray_PN = mkPN "Murray" ; -lin murrow_PN = mkPN "Murrow" ; -lin murrumbidgee_PN = mkPN "Murrumbidgee" ; -lin murton_PN = mkPN "Murton"; -- from DictEng -lin mus_PN = mkPN "Mus" ; -lin musa_PN = mkPN "Musa" ; -lin musaceae_PN = mkPN "Musaceae" ; -lin musales_PN = mkPN "Musales" ; -lin musca_PN = mkPN "Musca" ; -lin muscadet_PN = mkPN "Muscadet" ; -lin muscardinus_PN = mkPN "Muscardinus" ; -lin muscari_PN = mkPN "Muscari" ; -lin muscat_PN = mkPN "Muscat" ; -lin muscicapa_PN = mkPN "Muscicapa" ; -lin muscicapidae_PN = mkPN "Muscicapidae" ; -lin muscidae_PN = mkPN "Muscidae" ; -lin muscivora_PN = mkPN "Muscivora" ; -lin muscoidea_PN = mkPN "Muscoidea" ; -lin muscovite_A = compoundA (mkA "muscovite"); -- from DictEng -lin muscovite_PN = mkPN "Muscovite" ; -lin muscovy_PN = mkPN "Muscovy" ; -lin muse_PN = mkPN "Muse" ; -lin musgu_PN = mkPN "Musgu" ; -lin musial_PN = mkPN "Musial" ; -lin muskhogean_PN = mkPN "Muskhogean" ; -lin muskogee_PN = mkPN "Muskogee" ; -lin muslim_A = mkA "Muslim" ; -lin muslim_PN = mkPN "Muslim" ; -lin muslimah_PN = mkPN "Muslimah" ; -lin musophaga_PN = mkPN "Musophaga" ; -lin musophagidae_PN = mkPN "Musophagidae" ; -lin musselburgh_PN = mkPN "Musselburgh"; -- from DictEng -lin musset_PN = mkPN "Musset" ; -lin mussolini_PN = mkPN "Mussolini" ; -lin mussorgsky_PN = mkPN "Mussorgsky" ; -lin mustela_PN = mkPN "Mustela" ; -lin mustelidae_PN = mkPN "Mustelidae" ; -lin mustelus_PN = mkPN "Mustelus" ; -lin mutawa'een_PN = mkPN "Mutawa'een" ; -lin mutillidae_PN = mkPN "Mutillidae" ; -lin mutinus_PN = mkPN "Mutinus" ; -lin muybridge_PN = mkPN "Muybridge" ; -lin muztag_PN = mkPN "Muztag" ; -lin mwanza_PN = mkPN "Mwanza" ; -lin mwera_PN = mkPN "Mwera" ; -lin mya_PN = mkPN "Mya" ; -lin myaceae_PN = mkPN "Myaceae" ; -lin myacidae_PN = mkPN "Myacidae" ; -lin myadestes_PN = mkPN "Myadestes" ; -lin myanmar_PN = mkPN "Myanmar" ; -lin myanmar_monetary_unit_PN = mkPN "Myanmar monetary unit" ; -lin mycelia_sterilia_PN = mkPN "Mycelia Sterilia" ; -lin mycenae_PN = mkPN "Mycenae" ; -lin mycenaean_A = mkA "Mycenaean" ; -lin mycenaean_civilization_PN = mkPN "Mycenaean civilization" ; -lin mycenaen_PN = mkPN "Mycenaen" ; -lin mycetophilidae_PN = mkPN "Mycetophilidae" ; -lin mycobacteriaceae_PN = mkPN "Mycobacteriaceae" ; -lin mycoplasmataceae_PN = mkPN "Mycoplasmataceae" ; -lin mycoplasmatales_PN = mkPN "Mycoplasmatales" ; -lin mycrosporidia_PN = mkPN "Mycrosporidia" ; -lin mycteria_PN = mkPN "Mycteria" ; -lin mycteroperca_PN = mkPN "Mycteroperca" ; -lin myctophidae_PN = mkPN "Myctophidae" ; -lin mylanta_PN = mkPN "Mylanta" ; -lin mylar_PN = mkPN "Mylar" ; -lin myliobatidae_PN = mkPN "Myliobatidae" ; -lin mylodontidae_PN = mkPN "Mylodontidae" ; -lin myocastor_PN = mkPN "Myocastor" ; -lin myomorpha_PN = mkPN "Myomorpha" ; -lin myopus_PN = mkPN "Myopus" ; -lin myosotis_PN = mkPN "Myosotis" ; -lin myotis_PN = mkPN "Myotis" ; -lin myra_PN = mkPN "Myra"; -- from DictEng -lin myrciaria_PN = mkPN "Myrciaria" ; -lin myrdal_PN = mkPN "Myrdal" ; -lin myrica_PN = mkPN "Myrica" ; -lin myricaceae_PN = mkPN "Myricaceae" ; -lin myricales_PN = mkPN "Myricales" ; -lin myricaria_PN = mkPN "Myricaria" ; -lin myriophyllum_PN = mkPN "Myriophyllum" ; -lin myristica_PN = mkPN "Myristica" ; -lin myristicaceae_PN = mkPN "Myristicaceae" ; -lin myrmecia_PN = mkPN "Myrmecia" ; -lin myrmecobius_PN = mkPN "Myrmecobius" ; -lin myrmecophaga_PN = mkPN "Myrmecophaga" ; -lin myrmecophagidae_PN = mkPN "Myrmecophagidae" ; -lin myrmeleon_PN = mkPN "Myrmeleon" ; -lin myrmeleontidae_PN = mkPN "Myrmeleontidae" ; -lin myrmidon_PN = mkPN "Myrmidon" ; -lin myroxylon_PN = mkPN "Myroxylon" ; -lin myrrhis_PN = mkPN "Myrrhis" ; -lin myrsinaceae_PN = mkPN "Myrsinaceae" ; -lin myrsine_PN = mkPN "Myrsine" ; -lin myrtaceae_PN = mkPN "Myrtaceae" ; -lin myrtales_PN = mkPN "Myrtales" ; -lin myrtillocactus_PN = mkPN "Myrtillocactus" ; -lin myrtus_PN = mkPN "Myrtus" ; -lin mysidacea_PN = mkPN "Mysidacea" ; -lin mysidae_PN = mkPN "Mysidae" ; -lin mysis_PN = mkPN "Mysis" ; -lin mysore_PN = mkPN "Mysore" ; -lin mysore_thorn_PN = mkPN "Mysore thorn" ; -lin mysticeti_PN = mkPN "Mysticeti" ; -lin mytilidae_PN = mkPN "Mytilidae" ; -lin mytilus_PN = mkPN "Mytilus" ; -lin myxine_PN = mkPN "Myxine" ; -lin myxine_glutinosa_PN = mkPN "Myxine glutinosa" ; -lin myxinidae_PN = mkPN "Myxinidae" ; -lin myxiniformes_PN = mkPN "Myxiniformes" ; -lin myxinikela_PN = mkPN "Myxinikela" ; -lin myxinikela_siroka_PN = mkPN "Myxinikela siroka" ; -lin myxocephalus_PN = mkPN "Myxocephalus" ; -lin myxomycetes_PN = mkPN "Myxomycetes" ; -lin myxomycota_PN = mkPN "Myxomycota" ; -lin myxophyceae_PN = mkPN "Myxophyceae" ; -lin myxosporidia_PN = mkPN "Myxosporidia" ; -lin n_PN = mkPN "N" ; -lin n'djamena_PN = mkPN "N'Djamena" ; -lin nada_daiquiri_PN = mkPN "NADA daiquiri" ; -lin nand_circuit_PN = mkPN "NAND circuit" ; -lin nimby_PN = mkPN "NIMBY" ; -lin noc_PN = mkPN "NOC" ; -lin na_dene_PN = mkPN "Na Dene" ; -lin nabalus_PN = mkPN "Nabalus" ; -lin nablus_PN = mkPN "Nablus" ; -lin nabokov_PN = mkPN "Nabokov" ; -lin nabu_PN = mkPN "Nabu" ; -lin nacimiento_PN = mkPN "Nacimiento" ; -lin naegele's_rule_PN = mkPN "Naegele's rule" ; -lin naemorhedus_PN = mkPN "Naemorhedus" ; -lin nag_hammadi_PN = mkPN "Nag Hammadi" ; -lin naga_PN = mkPN "Naga" ; -lin nagano_PN = mkPN "Nagano" ; -lin nagasaki_PN = mkPN "Nagasaki" ; -lin nageia_PN = mkPN "Nageia" ; -lin nagoya_PN = mkPN "Nagoya"; -- from DictEng -lin nagpur_PN = mkPN "Nagpur"; -- from DictEng -lin naha_city_PN = mkPN "Naha City" ; -lin nahuatl_PN = mkPN "Nahuatl" ; -lin nahum_PN = mkPN "Nahum" ; -lin naiadaceae_PN = mkPN "Naiadaceae" ; -lin naiadales_PN = mkPN "Naiadales" ; -lin naias_PN = mkPN "Naias" ; -lin naiki_PN = mkPN "Naiki" ; -lin nailsea_PN = mkPN "Nailsea"; -- from DictEng -lin nairn_PN = mkPN "Nairn"; -- from DictEng -lin nairobi_PN = mkPN "Nairobi"; -- from DictEng -lin naismith_PN = mkPN "Naismith" ; -lin naja_PN = mkPN "Naja" ; -lin nakuru_PN = mkPN "Nakuru" ; -lin nalchik_PN = mkPN "Nalchik" ; -lin namib_desert_PN = mkPN "Namib Desert" ; -lin namibia_PN = mkPN "Namibia"; -- from DictEng -lin namibian_A = compoundA (mkA "namibian"); -- from DictEng -lin namibian_PN = mkPN "Namibian" ; -lin nammu_PN = mkPN "Nammu" ; -lin namoi_PN = mkPN "Namoi" ; -lin nampa_PN = mkPN "Nampa" ; -lin namtar_PN = mkPN "Namtar" ; -lin namur_PN = mkPN "Namur" ; -lin nan_PN = mkPN "Nan" ; -lin nan_ling_PN = mkPN "Nan Ling" ; -lin nanaimo_PN = mkPN "Nanaimo" ; -lin nanak_PN = mkPN "Nanak" ; -lin nancere_PN = mkPN "Nancere" ; -lin nanchang_PN = mkPN "Nanchang"; -- from DictEng -lin nancy_PN = mkPN "Nancy"; -- from DictEng -lin nanda_devi_PN = mkPN "Nanda Devi" ; -lin nanga_parbat_PN = mkPN "Nanga Parbat" ; -lin nanjing_PN = mkPN "Nanjing" ; -lin nanking_PN = mkPN "Nanking"; -- from DictEng -lin nanna_PN = mkPN "Nanna" ; -lin nanning_PN = mkPN "Nanning"; -- from DictEng -lin nansen_PN = mkPN "Nansen" ; -lin nantes_PN = mkPN "Nantes" ; -lin nanticoke_PN = mkPN "Nanticoke" ; -lin nantua_PN = mkPN "Nantua" ; -lin nantucket_PN = mkPN "Nantucket" ; -lin nantwich_PN = mkPN "Nantwich"; -- from DictEng -lin naomi_PN = mkPN "Naomi"; -- from DictEng -lin napaea_PN = mkPN "Napaea" ; -lin napier_PN = mkPN "Napier" ; -lin napier's_bones_PN = mkPN "Napier's bones" ; -lin naples_PN = mkPN "Naples"; -- from DictEng -lin napoleon_PN = mkPN "Napoleon" ; -lin napoleon_iii_PN = mkPN "Napoleon III" ; -lin napoleonic_A = compoundA (mkA "napoleonic"); -- from DictEng -lin napoleonic_wars_PN = mkPN "Napoleonic Wars" ; -lin napoli_PN = mkPN "Napoli"; -- from DictEng -lin narborough_PN = mkPN "Narborough"; -- from DictEng -lin narcissus_PN = mkPN "Narcissus" ; -lin nares_deep_PN = mkPN "Nares Deep" ; -lin narragansett_bay_PN = mkPN "Narragansett Bay" ; -lin narthecium_PN = mkPN "Narthecium" ; -lin nasa_PN = mkPN "NASA"; -- from DictEng -lin nasalis_PN = mkPN "Nasalis" ; -lin naseby_PN = mkPN "Naseby" ; -lin nash_PN = mkPN "Nash" ; -lin nash_equilibrium_PN = mkPN "Nash equilibrium" ; -lin nashville_PN = mkPN "Nashville" ; -lin nassau_PN = mkPN "Nassau" ; -lin nasser_PN = mkPN "Nasser" ; -lin nast_PN = mkPN "Nast" ; -lin nasturtium_PN = mkPN "Nasturtium" ; -lin nasua_PN = mkPN "Nasua" ; -lin nat_PN = mkPN "Nat"; -- from DictEng -lin natal_PN = mkPN "Natal" ; -lin natalie_PN = mkPN "Natalie"; -- from DictEng -lin natantia_PN = mkPN "Natantia" ; -lin natchez_PN = mkPN "Natchez" ; -lin nathaniel_PN = mkPN "Nathaniel"; -- from DictEng -lin naticidae_PN = mkPN "Naticidae" ; -lin nation_PN = mkPN "Nation" ; -lin nation_of_islam_PN = mkPN "Nation of Islam" ; -lin national_academy_of_sciences_PN = mkPN "National Academy of Sciences" ; -lin national_aeronautics_and_space_administration_PN = mkPN "National Aeronautics and Space Administration" ; -lin national_archives_and_records_administration_PN = mkPN "National Archives and Records Administration" ; -lin national_association_of_realtors_PN = mkPN "National Association of Realtors" ; -lin national_association_of_securities_dealers_automated_quotations_PN = mkPN "National Association of Securities Dealers Automated Quotations" ; -lin national_baseball_hall_of_fame_PN = mkPN "National Baseball Hall of Fame" ; -lin national_climatic_data_center_PN = mkPN "National Climatic Data Center" ; -lin national_geospatial_intelligence_agency_PN = mkPN "National Geospatial Intelligence Agency" ; -lin national_guard_PN = mkPN "National Guard" ; -lin national_guard_bureau_PN = mkPN "National Guard Bureau" ; -lin national_institute_of_justice_PN = mkPN "National Institute of Justice" ; -lin national_institute_of_standards_and_technology_PN = mkPN "National Institute of Standards and Technology" ; -lin national_institutes_of_health_PN = mkPN "National Institutes of Health" ; -lin national_labor_relations_board_PN = mkPN "National Labor Relations Board" ; -lin national_liberation_army_PN = mkPN "National Liberation Army" ; -lin national_liberation_front_of_corsica_PN = mkPN "National Liberation Front of Corsica" ; -lin national_library_of_medicine_PN = mkPN "National Library of Medicine" ; -lin national_oceanic_and_atmospheric_administration_PN = mkPN "National Oceanic and Atmospheric Administration" ; -lin national_park_service_PN = mkPN "National Park Service" ; -lin national_reconnaissance_office_PN = mkPN "National Reconnaissance Office" ; -lin national_rifle_association_PN = mkPN "National Rifle Association" ; -lin national_science_foundation_PN = mkPN "National Science Foundation" ; -lin national_security_agency_PN = mkPN "National Security Agency" ; -lin national_security_council_PN = mkPN "National Security Council" ; -lin national_socialist_german_workers'_party_PN = mkPN "National Socialist German Workers' Party" ; -lin national_technical_information_service_PN = mkPN "National Technical Information Service" ; -lin national_trust_PN = mkPN "National Trust" ; -lin national_weather_service_PN = mkPN "National Weather Service" ; -lin native_hawaiian_PN = mkPN "Native Hawaiian" ; -lin nato_PN = mkPN "Nato"; -- from DictEng -lin natrix_PN = mkPN "Natrix" ; -lin natta_PN = mkPN "Natta" ; -lin nauclea_PN = mkPN "Nauclea" ; -lin naucrates_PN = mkPN "Naucrates" ; -lin nauru_PN = mkPN "Nauru"; -- from DictEng -lin nauruan_A = compoundA (mkA "nauruan"); -- from DictEng -lin nauruan_PN = mkPN "Nauruan" ; -lin nautilidae_PN = mkPN "Nautilidae" ; -lin navaho_PN = mkPN "Navaho" ; -lin naval_air_warfare_center_weapons_division_PN = mkPN "Naval Air Warfare Center Weapons Division" ; -lin naval_research_laboratory_PN = mkPN "Naval Research Laboratory" ; -lin naval_special_warfare_PN = mkPN "Naval Special Warfare" ; -lin naval_surface_warfare_center_PN = mkPN "Naval Surface Warfare Center" ; -lin naval_underwater_warfare_center_PN = mkPN "Naval Underwater Warfare Center" ; -lin navarino_PN = mkPN "Navarino" ; -lin navratilova_PN = mkPN "Navratilova" ; -lin navy_cross_PN = mkPN "Navy Cross" ; -lin navy_department_PN = mkPN "Navy Department" ; -lin navy_seal_PN = mkPN "Navy SEAL" ; -lin nazarene_A = mkA "Nazarene" ; -lin nazarene_PN = mkPN "Nazarene" ; -lin nazareth_PN = mkPN "Nazareth" ; -lin nazi_A = compoundA (mkA "nazi"); -- from DictEng -lin nazi_PN = mkPN "Nazi" ; -lin nazification_PN = mkPN "Nazification" ; -lin nazimova_PN = mkPN "Nazimova" ; -lin nazism_PN = mkPN "Nazism" ; -lin nb_PN = mkPN "Nb"; -- from DictEng -lin ndebele_PN = mkPN "Ndebele" ; -lin neandertal_man_PN = mkPN "Neandertal man" ; -lin neanderthal_A = compoundA (mkA "neanderthal"); -- from DictEng -lin neapolitan_A = compoundA (mkA "neapolitan"); -- from DictEng -lin neapolitan_PN = mkPN "Neapolitan" ; -lin neapolitan_ice_cream_PN = mkPN "Neapolitan ice cream" ; -lin neath_PN = mkPN "Neath"; -- from DictEng -lin nebraska_PN = mkPN "Nebraska"; -- from DictEng -lin nebraskan_PN = mkPN "Nebraskan" ; -lin nebuchadnezzar_PN = mkPN "Nebuchadnezzar" ; -lin neckar_PN = mkPN "Neckar" ; -lin necturus_PN = mkPN "Necturus" ; -lin ned_PN = mkPN "Ned"; -- from DictEng -lin neddy_PN = mkPN "Neddy"; -- from DictEng -lin neel_PN = mkPN "Neel" ; -lin nefertiti_PN = mkPN "Nefertiti" ; -lin nefud_PN = mkPN "Nefud" ; -lin negaprion_PN = mkPN "Negaprion" ; -lin negev_PN = mkPN "Negev" ; -lin negress_PN = mkPN "Negress" ; -lin negritude_PN = mkPN "Negritude" ; -lin nehemiah_PN = mkPN "Nehemiah" ; -lin nehru_PN = mkPN "Nehru" ; -lin neil_PN = mkPN "Neil"; -- from DictEng -lin nejd_PN = mkPN "Nejd" ; -lin nell_PN = mkPN "Nell"; -- from DictEng -lin nelly_PN = mkPN "Nelly"; -- from DictEng -lin nelson_PN = mkPN "Nelson"; -- from DictEng -lin nelumbo_PN = mkPN "Nelumbo" ; -lin nelumbonaceae_PN = mkPN "Nelumbonaceae" ; -lin nematocera_PN = mkPN "Nematocera" ; -lin nematoda_PN = mkPN "Nematoda" ; -lin nemea_PN = mkPN "Nemea" ; -lin nemean_games_PN = mkPN "Nemean Games" ; -lin nemean_lion_PN = mkPN "Nemean lion" ; -lin nemertea_PN = mkPN "Nemertea" ; -lin nemesis_PN = mkPN "Nemesis" ; -lin nenets_PN = mkPN "Nenets" ; -lin neo_lamarckism_PN = mkPN "Neo Lamarckism" ; -lin neo_latin_PN = mkPN "Neo Latin" ; -lin neoceratodus_PN = mkPN "Neoceratodus" ; -lin neofiber_PN = mkPN "Neofiber" ; -lin neohygrophorus_PN = mkPN "Neohygrophorus" ; -lin neohygrophorus_angelesianus_PN = mkPN "Neohygrophorus angelesianus" ; -lin neolentinus_PN = mkPN "Neolentinus" ; -lin neolentinus_ponderosus_PN = mkPN "Neolentinus ponderosus" ; -lin neolithic_age_PN = mkPN "Neolithic Age" ; -lin neomys_PN = mkPN "Neomys" ; -lin neophron_PN = mkPN "Neophron" ; -lin neoplatonism_PN = mkPN "Neoplatonism" ; -lin neoplatonist_PN = mkPN "Neoplatonist" ; -lin neopolitan_PN = mkPN "Neopolitan" ; -lin neosho_PN = mkPN "Neosho" ; -lin neosporin_PN = mkPN "Neosporin" ; -lin neotoma_PN = mkPN "Neotoma" ; -lin nepa_PN = mkPN "Nepa" ; -lin nepal_PN = mkPN "Nepal"; -- from DictEng -lin nepal_trumpet_flower_PN = mkPN "Nepal trumpet flower" ; -lin nepalese_A = compoundA (mkA "nepalese"); -- from DictEng -lin nepalese_PN = mkPN "Nepalese" ; -lin nepalese_monetary_unit_PN = mkPN "Nepalese monetary unit" ; -lin nepalese_rupee_PN = mkPN "Nepalese rupee" ; -lin nepali_PN = mkPN "Nepali" ; -lin nepenthaceae_PN = mkPN "Nepenthaceae" ; -lin nepenthes_PN = mkPN "Nepenthes" ; -lin nepeta_PN = mkPN "Nepeta" ; -lin nephelium_PN = mkPN "Nephelium" ; -lin nephrolepis_PN = mkPN "Nephrolepis" ; -lin nephrops_PN = mkPN "Nephrops" ; -lin nephropsidae_PN = mkPN "Nephropsidae" ; -lin nephthys_PN = mkPN "Nephthys" ; -lin nephthytis_afzelii_PN = mkPN "Nephthytis afzelii" ; -lin nepidae_PN = mkPN "Nepidae" ; -lin neptune_PN = mkPN "Neptune"; -- from DictEng -lin nereid_PN = mkPN "Nereid" ; -lin nereus_PN = mkPN "Nereus" ; -lin nergal_PN = mkPN "Nergal" ; -lin neritidae_PN = mkPN "Neritidae" ; -lin nerium_PN = mkPN "Nerium" ; -lin nernst_PN = mkPN "Nernst" ; -lin nero_PN = mkPN "Nero" ; -lin nerodia_PN = mkPN "Nerodia" ; -lin nerthus_PN = mkPN "Nerthus" ; -lin neruda_PN = mkPN "Neruda" ; -lin nerva_PN = mkPN "Nerva" ; -lin nervi_PN = mkPN "Nervi" ; -lin nesokia_PN = mkPN "Nesokia" ; -lin nesselrode_PN = mkPN "Nesselrode" ; -lin neston_PN = mkPN "Neston"; -- from DictEng -lin nestor_PN = mkPN "Nestor"; -- from DictEng -lin nestorian_A = mkA "Nestorian" ; -lin nestorian_PN = mkPN "Nestorian" ; -lin nestorian_church_PN = mkPN "Nestorian Church" ; -lin nestorianism_PN = mkPN "Nestorianism" ; -lin nestorius_PN = mkPN "Nestorius" ; -lin netherlander_PN = mkPN "Netherlander" ; -lin netherlands_PN = mkPN "Netherlands"; -- from DictEng -lin netherlands_antilles_PN = mkPN "Netherlands Antilles" ; -lin netley_PN = mkPN "Netley"; -- from DictEng -lin netscape_PN = mkPN "Netscape" ; -lin neuroptera_PN = mkPN "Neuroptera" ; -lin neurospora_PN = mkPN "Neurospora" ; -lin neurotrichus_PN = mkPN "Neurotrichus" ; -lin neuss_PN = mkPN "Neuss"; -- from DictEng -lin neva_PN = mkPN "Neva" ; -lin nevada_PN = mkPN "Nevada"; -- from DictEng -lin nevadan_PN = mkPN "Nevadan" ; -lin nevelson_PN = mkPN "Nevelson" ; -lin never_never_PN = mkPN "Never Never" ; -lin neville_PN = mkPN "Neville"; -- from DictEng -lin nevis_PN = mkPN "Nevis" ; -lin new_A = mkA "new" "newer"; -- from DictEng -lin new_amsterdam_PN = mkPN "New Amsterdam" ; -lin new_britain_PN = mkPN "New Britain" ; -lin new_brunswick_PN = mkPN "New Brunswick" ; -lin new_caledonia_PN = mkPN "New Caledonia" ; -lin new_caledonian_A = compoundA (mkA "New Caledonian") ; -lin new_caledonian_yew_PN = mkPN "New Caledonian yew" ; -lin new_deal_PN = mkPN "New Deal" ; -lin new_dealer_PN = mkPN "New Dealer" ; -lin new_delhi_PN = mkPN "New Delhi" ; -lin new_england_PN = mkPN "New England" ; -lin new_england_aster_PN = mkPN "New England aster" ; -lin new_england_clam_chowder_PN = mkPN "New England clam chowder" ; -lin new_englander_PN = mkPN "New Englander" ; -lin new_english_bible_PN = mkPN "New English Bible" ; -lin new_forest_PN = mkPN "New Forest" ; -lin new_guinea_PN = mkPN "New Guinea" ; -lin new_hampshire_PN = mkPN "New Hampshire" ; -lin new_hampshirite_PN = mkPN "New Hampshirite" ; -lin new_haven_PN = mkPN "New Haven" ; -lin new_ireland_PN = mkPN "New Ireland" ; -lin new_jersey_PN = mkPN "New Jersey" ; -lin new_jerseyan_PN = mkPN "New Jerseyan" ; -lin new_london_PN = mkPN "New London" ; -lin new_look_PN = mkPN "New Look" ; -lin new_mexican_PN = mkPN "New Mexican" ; -lin new_mexico_PN = mkPN "New Mexico" ; -lin new_netherland_PN = mkPN "New Netherland" ; -lin new_orleans_PN = mkPN "New orleans"; -- from DictEng -lin new_people's_army_PN = mkPN "New People's Army" ; -lin new_river_PN = mkPN "New River" ; -lin new_river_gorge_bridge_PN = mkPN "New River Gorge Bridge" ; -lin new_siberian_islands_PN = mkPN "New Siberian Islands" ; -lin new_south_wales_PN = mkPN "New South Wales" ; -lin new_testament_PN = mkPN "New Testament" ; -lin new_wave_PN = mkPN "New Wave" ; -lin new_waver_PN = mkPN "New Waver" ; -lin new_world_beaver_PN = mkPN "New World beaver" ; -lin new_world_blackbird_PN = mkPN "New World blackbird" ; -lin new_world_chat_PN = mkPN "New World chat" ; -lin new_world_flycatcher_PN = mkPN "New World flycatcher" ; -lin new_world_goldfinch_PN = mkPN "New World goldfinch" ; -lin new_world_jay_PN = mkPN "New World jay" ; -lin new_world_least_weasel_PN = mkPN "New World least weasel" ; -lin new_world_monkey_PN = mkPN "New World monkey" ; -lin new_world_mouse_PN = mkPN "New World mouse" ; -lin new_world_opah_PN = mkPN "New World opah" ; -lin new_world_oriole_PN = mkPN "New World oriole" ; -lin new_world_porcupine_PN = mkPN "New World porcupine" ; -lin new_world_sparrow_PN = mkPN "New World sparrow" ; -lin new_world_tapir_PN = mkPN "New World tapir" ; -lin new_world_vulture_PN = mkPN "New World vulture" ; -lin new_world_warbler_PN = mkPN "New World warbler" ; -lin new_year_PN = mkPN "New Year" ; -lin new_year's_day_PN = mkPN "New Year's Day" ; -lin new_year's_eve_PN = mkPN "New Year's Eve" ; -lin new_york_PN = mkPN "New york"; -- from DictEng -lin new_york_bay_PN = mkPN "New York Bay" ; -lin new_york_state_barge_canal_PN = mkPN "New York State Barge Canal" ; -lin new_york_stock_exchange_PN = mkPN "New York Stock Exchange" ; -lin new_york_fern_PN = mkPN "New York fern" ; -lin new_yorker_PN = mkPN "New Yorker" ; -lin new_zealand_PN = mkPN "New Zealand" ; -lin new_zealand_beech_PN = mkPN "New Zealand beech" ; -lin new_zealand_cotton_PN = mkPN "New Zealand cotton" ; -lin new_zealand_daisybush_PN = mkPN "New Zealand daisybush" ; -lin new_zealand_dollar_PN = mkPN "New Zealand dollar" ; -lin new_zealand_spinach_PN = mkPN "New Zealand spinach" ; -lin new_zealand_wren_PN = mkPN "New Zealand wren" ; -lin new_zealander_A = compoundA (mkA "New Zealander") ; -lin new_zealander_PN = mkPN "New Zealander" ; -lin new_cumnock_PN = mkPN "New cumnock"; -- from DictEng -lin new_mills_PN = mkPN "New mills"; -- from DictEng -lin new_tredegar_PN = mkPN "New tredegar"; -- from DictEng -lin new_windsor_PN = mkPN "New windsor"; -- from DictEng -lin newari_PN = mkPN "Newari" ; -lin newark_PN = mkPN "Newark"; -- from DictEng -lin newarthill_PN = mkPN "Newarthill"; -- from DictEng -lin newbiggin_PN = mkPN "Newbiggin"; -- from DictEng -lin newburg_sauce_PN = mkPN "Newburg sauce" ; -lin newburgh_PN = mkPN "Newburgh" ; -lin newbury_PN = mkPN "Newbury"; -- from DictEng -lin newcastle_PN = mkPN "Newcastle"; -- from DictEng -lin newcastle_disease_PN = mkPN "Newcastle disease" ; -lin newcastle_under_lyme_PN = mkPN "Newcastle - under - lyme"; -- from DictEng -lin newcastle_upon_tyne_PN = mkPN "Newcastle upon tyne"; -- from DictEng -lin newcomb_PN = mkPN "Newcomb" ; -lin newfoundland_PN = mkPN "Newfoundland"; -- from DictEng -lin newfoundland_and_labrador_PN = mkPN "Newfoundland and Labrador" ; -lin newfoundland_dwarf_birch_PN = mkPN "Newfoundland dwarf birch" ; -lin newgate_PN = mkPN "Newgate" ; -lin newham_PN = mkPN "Newham"; -- from DictEng -lin newhaven_PN = mkPN "Newhaven"; -- from DictEng -lin newmains_PN = mkPN "Newmains"; -- from DictEng -lin newman_PN = mkPN "Newman" ; -lin newmarket_PN = mkPN "Newmarket"; -- from DictEng -lin newport_PN = mkPN "Newport"; -- from DictEng -lin newport_news_PN = mkPN "Newport News" ; -lin newport_pagnell_PN = mkPN "Newport pagnell"; -- from DictEng -lin newquay_PN = mkPN "Newquay"; -- from DictEng -lin newry_PN = mkPN "Newry"; -- from DictEng -lin newton_PN = mkPN "Newton" ; -lin newton's_law_of_motion_PN = mkPN "Newton's law of motion" ; -lin newton_abbot_PN = mkPN "Newton abbot"; -- from DictEng -lin newton_aycliffe_PN = mkPN "Newton aycliffe"; -- from DictEng -lin newton_le_willows_PN = mkPN "Newton - le - willows"; -- from DictEng -lin newton_mearns_PN = mkPN "Newton mearns"; -- from DictEng -lin newtonian_A = compoundA (mkA "newtonian"); -- from DictEng -lin newtonian_PN = mkPN "Newtonian" ; -lin newtonian_telescope_PN = mkPN "Newtonian telescope" ; -lin newtown_PN = mkPN "Newtown"; -- from DictEng -lin newtown_wonder_PN = mkPN "Newtown Wonder" ; -lin ney_PN = mkPN "Ney" ; -lin nez_perce_PN = mkPN "Nez Perce" ; -lin nganasan_PN = mkPN "Nganasan" ; -lin nguni_PN = mkPN "Nguni" ; -lin ni_hard_PN = mkPN "Ni hard" ; -lin ni_resist_PN = mkPN "Ni resist" ; -lin niagara_PN = mkPN "Niagara" ; -lin niagara_falls_PN = mkPN "Niagara Falls" ; -lin niamey_PN = mkPN "Niamey" ; -lin nibelung_PN = mkPN "Nibelung" ; -lin nibelungenlied_PN = mkPN "Nibelungenlied" ; -lin nicaea_PN = mkPN "Nicaea" ; -lin nicaean_A = mkA "Nicaean" ; -lin nicandra_PN = mkPN "Nicandra" ; -lin nicaragua_PN = mkPN "Nicaragua"; -- from DictEng -lin nicaraguan_A = compoundA (mkA "nicaraguan"); -- from DictEng -lin nicaraguan_PN = mkPN "Nicaraguan" ; -lin nicaraguan_monetary_unit_PN = mkPN "Nicaraguan monetary unit" ; -lin nice_PN = mkPN "Nice"; -- from DictEng -lin nicene_creed_PN = mkPN "Nicene Creed" ; -lin nicholas_PN = mkPN "Nicholas"; -- from DictEng -lin nicholas_i_PN = mkPN "Nicholas I" ; -lin nicholas_ii_PN = mkPN "Nicholas II" ; -lin nicholas_v_PN = mkPN "Nicholas V" ; -lin nichrome_PN = mkPN "Nichrome" ; -lin nick_PN = mkPN "Nick"; -- from DictEng -lin nicklaus_PN = mkPN "Nicklaus" ; -lin nicol_prism_PN = mkPN "Nicol prism" ; -lin nicola_PN = mkPN "Nicola"; -- from DictEng -lin nicole_PN = mkPN "Nicole"; -- from DictEng -lin nicolson_PN = mkPN "Nicolson" ; -lin nicosia_PN = mkPN "Nicosia" ; -lin nicotiana_PN = mkPN "Nicotiana" ; -lin nidularia_PN = mkPN "Nidularia" ; -lin nidulariaceae_PN = mkPN "Nidulariaceae" ; -lin nidulariales_PN = mkPN "Nidulariales" ; -lin niebuhr_PN = mkPN "Niebuhr" ; -lin nielsen_PN = mkPN "Nielsen" ; -lin niemann_pick_disease_PN = mkPN "Niemann Pick disease" ; -lin nietzsche_PN = mkPN "Nietzsche" ; -lin nigel_PN = mkPN "Nigel"; -- from DictEng -lin niger_PN = mkPN "Niger"; -- from DictEng -lin niger_congo_PN = mkPN "Niger Congo" ; -lin niger_kordofanian_PN = mkPN "Niger Kordofanian" ; -lin niger_franc_PN = mkPN "Niger franc" ; -lin nigeria_PN = mkPN "Nigeria"; -- from DictEng -lin nigerian_A = compoundA (mkA "nigerian"); -- from DictEng -lin nigerian_PN = mkPN "Nigerian" ; -lin nigerian_monetary_unit_PN = mkPN "Nigerian monetary unit" ; -lin nigerien_PN = mkPN "Nigerien" ; -lin nightingale_PN = mkPN "Nightingale" ; -lin nigroporus_PN = mkPN "Nigroporus" ; -lin nigroporus_vinosus_PN = mkPN "Nigroporus vinosus" ; -lin nihau_PN = mkPN "Nihau" ; -lin nijinsky_PN = mkPN "Nijinsky" ; -lin nijmegen_PN = mkPN "Nijmegen"; -- from DictEng -lin nike_PN = mkPN "Nike" ; -lin nile_PN = mkPN "Nile" ; -lin nilgiri_hills_PN = mkPN "Nilgiri Hills" ; -lin nilo_saharan_PN = mkPN "Nilo Saharan" ; -lin nilotic_A = compoundA (mkA "nilotic"); -- from DictEng -lin nilotic_PN = mkPN "Nilotic" ; -lin nilsson_PN = mkPN "Nilsson" ; -lin nimitz_PN = mkPN "Nimitz" ; -lin nimravus_PN = mkPN "Nimravus" ; -lin nimrod_PN = mkPN "Nimrod"; -- from DictEng -lin nina_PN = mkPN "Nina" ; -lin nineteenth_amendment_PN = mkPN "Nineteenth Amendment" ; -lin nineveh_PN = mkPN "Nineveh" ; -lin ningal_PN = mkPN "Ningal" ; -lin ningirsu_PN = mkPN "Ningirsu" ; -lin ningishzida_PN = mkPN "Ningishzida" ; -lin ninigi_PN = mkPN "Ninigi" ; -lin ninkhursag_PN = mkPN "Ninkhursag" ; -lin nintu_PN = mkPN "Nintu" ; -lin ninurta_PN = mkPN "Ninurta" ; -lin niobe_PN = mkPN "Niobe"; -- from DictEng -lin niobrara_PN = mkPN "Niobrara" ; -lin nipa_PN = mkPN "Nipa" ; -lin nisan_PN = mkPN "Nisan" ; -lin nisei_PN = mkPN "Nisei" ; -lin nissen_PN = mkPN "Nissen"; -- from DictEng -lin nissen_hut_PN = mkPN "Nissen hut" ; -lin nitella_PN = mkPN "Nitella" ; -lin nitrobacter_PN = mkPN "Nitrobacter" ; -lin nitrobacteriaceae_PN = mkPN "Nitrobacteriaceae" ; -lin nitrosomonas_PN = mkPN "Nitrosomonas" ; -lin nitrospan_PN = mkPN "Nitrospan" ; -lin nivose_PN = mkPN "Nivose" ; -lin nixon_PN = mkPN "Nixon" ; -lin nizhnyi_novgorod_PN = mkPN "Nizhnyi Novgorod" ; -lin njord_PN = mkPN "Njord" ; -lin noachian_A = mkA "Noachian" ; -lin noah_PN = mkPN "Noah"; -- from DictEng -lin noah's_flood_PN = mkPN "Noah's flood" ; -lin nob_hill_PN = mkPN "Nob Hill" ; -lin nobel_PN = mkPN "Nobel"; -- from DictEng -lin nobel_prize_PN = mkPN "Nobel prize" ; -lin nobelist_PN = mkPN "Nobelist" ; -lin noctua_PN = mkPN "Noctua" ; -lin noctuidae_PN = mkPN "Noctuidae" ; -lin noel_PN = mkPN "Noel"; -- from DictEng -lin noether_PN = mkPN "Noether" ; -lin nogales_PN = mkPN "Nogales" ; -lin noguchi_PN = mkPN "Noguchi" ; -lin nolina_PN = mkPN "Nolina" ; -lin nome_PN = mkPN "Nome" ; -lin nomia_melanderi_PN = mkPN "Nomia melanderi" ; -lin nonconformist_PN = mkPN "Nonconformist" ; -lin nonproliferation_center_PN = mkPN "Nonproliferation Center" ; -lin noonan's_syndrome_PN = mkPN "Noonan's syndrome" ; -lin nootka_PN = mkPN "Nootka" ; -lin nopalea_PN = mkPN "Nopalea" ; -lin nor_q_d_PN = mkPN "Nor Q D" ; -lin nora_PN = mkPN "Nora"; -- from DictEng -lin nord_pas_de_calais_PN = mkPN "Nord Pas de Calais" ; -lin nordic_A = compoundA (mkA "nordic"); -- from DictEng -lin norfolk_PN = mkPN "Norfolk"; -- from DictEng -lin norfolk_island_PN = mkPN "Norfolk Island" ; -lin norfolk_jacket_PN = mkPN "Norfolk jacket" ; -lin norfolk_terrier_PN = mkPN "Norfolk terrier" ; -lin norinyl_PN = mkPN "Norinyl" ; -lin norlestrin_PN = mkPN "Norlestrin" ; -lin norma_PN = mkPN "Norma" ; -lin norman_A = compoundA (mkA "norman"); -- from DictEng -lin norman_PN = mkPN "Norman"; -- from DictEng -lin norman_french_PN = mkPN "Norman French" ; -lin norman_conquest_PN = mkPN "Norman Conquest" ; -lin norman_architecture_PN = mkPN "Norman architecture" ; -lin normandie_PN = mkPN "Normandie" ; -lin normanton_PN = mkPN "Normanton"; -- from DictEng -lin normantown_PN = mkPN "Normantown"; -- from DictEng -lin norn_PN = mkPN "Norn" ; -lin norris_PN = mkPN "Norris" ; -lin norrish_PN = mkPN "Norrish" ; -lin norse_deity_PN = mkPN "Norse deity" ; -lin norse_mythology_PN = mkPN "Norse mythology" ; -lin north_PN = mkPN "North" ; -lin north_africa_PN = mkPN "North Africa" ; -lin north_african_A = compoundA (mkA "North African") ; -lin north_america_PN = mkPN "North America" ; -lin north_american_A = compoundA (mkA "North American") ; -lin north_american_PN = mkPN "North American" ; -lin north_american_free_trade_agreement_PN = mkPN "North American Free Trade Agreement" ; -lin north_american_country_PN = mkPN "North American country" ; -lin north_atlantic_PN = mkPN "North Atlantic" ; -lin north_atlantic_council_PN = mkPN "North Atlantic Council" ; -lin north_atlantic_treaty_PN = mkPN "North Atlantic Treaty" ; -lin north_atlantic_treaty_organization_PN = mkPN "North Atlantic Treaty Organization" ; -lin north_carolina_PN = mkPN "North Carolina" ; -lin north_carolinian_PN = mkPN "North Carolinian" ; -lin north_cascades_national_park_PN = mkPN "North Cascades National Park" ; -lin north_channel_PN = mkPN "North Channel" ; -lin north_dakota_PN = mkPN "North Dakota" ; -lin north_dakotan_PN = mkPN "North Dakotan" ; -lin north_dravidian_PN = mkPN "North Dravidian" ; -lin north_equatorial_current_PN = mkPN "North Equatorial Current" ; -lin north_island_PN = mkPN "North Island" ; -lin north_korea_PN = mkPN "North Korea" ; -lin north_korean_A = compoundA (mkA "North Korean") ; -lin north_korean_PN = mkPN "North Korean" ; -lin north_korean_monetary_unit_PN = mkPN "North Korean monetary unit" ; -lin north_korean_won_PN = mkPN "North Korean won" ; -lin north_pacific_PN = mkPN "North Pacific" ; -lin north_peak_PN = mkPN "North Peak" ; -lin north_platte_PN = mkPN "North Platte" ; -lin north_pole_PN = mkPN "North Pole" ; -lin north_sea_PN = mkPN "North Sea" ; -lin north_temperate_zone_PN = mkPN "North Temperate Zone" ; -lin north_vietnam_PN = mkPN "North Vietnam" ; -lin north_vietnamese_A = compoundA (mkA "North Vietnamese") ; -lin north_yorkshire_PN = mkPN "North Yorkshire" ; -lin north_walsham_PN = mkPN "North walsham"; -- from DictEng -lin northallerton_PN = mkPN "Northallerton"; -- from DictEng -lin northam_PN = mkPN "Northam"; -- from DictEng -lin northampton_PN = mkPN "Northampton"; -- from DictEng -lin northamptonshire_PN = mkPN "Northamptonshire"; -- from DictEng -lin northeast_PN = mkPN "Northeast" ; -lin northern_PN = mkPN "Northern" ; -lin northern_alliance_PN = mkPN "Northern Alliance" ; -lin northern_baptist_PN = mkPN "Northern Baptist" ; -lin northern_cross_PN = mkPN "Northern Cross" ; -lin northern_ireland_PN = mkPN "Northern Ireland" ; -lin northern_marianas_PN = mkPN "Northern Marianas" ; -lin northern_spy_PN = mkPN "Northern Spy" ; -lin northern_territory_PN = mkPN "Northern Territory" ; -lin northern_bedstraw_PN = mkPN "Northern bedstraw" ; -lin northern_dewberry_PN = mkPN "Northern dewberry" ; -lin northerner_PN = mkPN "Northerner" ; -lin northrop_PN = mkPN "Northrop" ; -lin northumberland_PN = mkPN "Northumberland"; -- from DictEng -lin northumbria_PN = mkPN "Northumbria" ; -lin northwest_PN = mkPN "Northwest" ; -lin northwest_passage_PN = mkPN "Northwest Passage" ; -lin northwest_territories_PN = mkPN "Northwest Territories" ; -lin northwich_PN = mkPN "Northwich"; -- from DictEng -lin norton_PN = mkPN "Norton"; -- from DictEng -lin noruz_PN = mkPN "Noruz" ; -lin norway_PN = mkPN "Norway"; -- from DictEng -lin norway_lobster_PN = mkPN "Norway lobster" ; -lin norway_maple_PN = mkPN "Norway maple" ; -lin norway_spruce_PN = mkPN "Norway spruce" ; -lin norwegian_A = compoundA (mkA "norwegian"); -- from DictEng -lin norwegian_PN = mkPN "Norwegian" ; -lin norwegian_sea_PN = mkPN "Norwegian Sea" ; -lin norwegian_elkhound_PN = mkPN "Norwegian elkhound" ; -lin norwegian_krone_PN = mkPN "Norwegian krone" ; -lin norwegian_lobster_PN = mkPN "Norwegian lobster" ; -lin norwegian_monetary_unit_PN = mkPN "Norwegian monetary unit" ; -lin norwich_PN = mkPN "Norwich"; -- from DictEng -lin norwich_terrier_PN = mkPN "Norwich terrier" ; -lin nostocaceae_PN = mkPN "Nostocaceae" ; -lin nostradamus_PN = mkPN "Nostradamus" ; -lin notechis_PN = mkPN "Notechis" ; -lin notemigonus_PN = mkPN "Notemigonus" ; -lin nothofagus_PN = mkPN "Nothofagus" ; -lin nothosauria_PN = mkPN "Nothosauria" ; -lin notomys_PN = mkPN "Notomys" ; -lin notonecta_PN = mkPN "Notonecta" ; -lin notonectidae_PN = mkPN "Notonectidae" ; -lin notophthalmus_PN = mkPN "Notophthalmus" ; -lin notoryctidae_PN = mkPN "Notoryctidae" ; -lin notoryctus_PN = mkPN "Notoryctus" ; -lin notostraca_PN = mkPN "Notostraca" ; -lin notropis_PN = mkPN "Notropis" ; -lin nottingham_PN = mkPN "Nottingham"; -- from DictEng -lin nottinghamshire_PN = mkPN "Nottinghamshire"; -- from DictEng -lin nouakchott_PN = mkPN "Nouakchott" ; -lin nov_PN = mkPN "Nov"; -- from DictEng -lin nov_esperanto_PN = mkPN "Nov Esperanto" ; -lin nov_latin_PN = mkPN "Nov Latin" ; -lin nova_scotia_PN = mkPN "Nova scotia"; -- from DictEng -lin nova_scotia_lox_PN = mkPN "Nova Scotia lox" ; -lin nova_scotian_PN = mkPN "Nova Scotian" ; -lin novara_PN = mkPN "Novara"; -- from DictEng -lin novaya_zemlya_PN = mkPN "Novaya Zemlya" ; -lin november_PN = mkPN "November"; -- from DictEng -lin november_5_PN = mkPN "November 5" ; -lin novgorod_PN = mkPN "Novgorod" ; -lin novial_PN = mkPN "Novial" ; -lin novokuznetsk_PN = mkPN "Novokuznetsk"; -- from DictEng -lin novosibirsk_PN = mkPN "Novosibirsk"; -- from DictEng -lin nox_PN = mkPN "Nox" ; -lin noyes_PN = mkPN "Noyes" ; -lin nr_PN = mkPN "Nr"; -- from DictEng -lin nubia_PN = mkPN "Nubia" ; -lin nubian_PN = mkPN "Nubian" ; -lin nubian_desert_PN = mkPN "Nubian Desert" ; -lin nucifraga_PN = mkPN "Nucifraga" ; -lin nuclear_regulatory_commission_PN = mkPN "Nuclear Regulatory Commission" ; -lin nuda_PN = mkPN "Nuda" ; -lin nudibranchia_PN = mkPN "Nudibranchia" ; -lin nuffield_PN = mkPN "Nuffield" ; -lin nullarbor_plain_PN = mkPN "Nullarbor Plain" ; -lin numbers_PN = mkPN "Numbers" ; -lin numenius_PN = mkPN "Numenius" ; -lin numida_PN = mkPN "Numida" ; -lin numidia_PN = mkPN "Numidia" ; -lin numidian_A = mkA "Numidian" ; -lin numidian_PN = mkPN "Numidian" ; -lin numididae_PN = mkPN "Numididae" ; -lin nummulitidae_PN = mkPN "Nummulitidae" ; -lin nunavut_PN = mkPN "Nunavut" ; -lin nuneaton_PN = mkPN "Nuneaton"; -- from DictEng -lin nung_PN = mkPN "Nung" ; -lin nuphar_PN = mkPN "Nuphar" ; -lin nuptse_PN = mkPN "Nuptse" ; -lin nuremberg_PN = mkPN "Nuremberg" ; -lin nurenburg_PN = mkPN "Nurenburg"; -- from DictEng -lin nureyev_PN = mkPN "Nureyev" ; -lin nusku_PN = mkPN "Nusku" ; -lin nut_PN = mkPN "Nut" ; -lin nuttall_oak_PN = mkPN "Nuttall oak" ; -lin nuytsia_PN = mkPN "Nuytsia" ; -lin nyala_PN = mkPN "Nyala" ; -lin nyamuragira_PN = mkPN "Nyamuragira" ; -lin nyamwezi_PN = mkPN "Nyamwezi" ; -lin nyctaginaceae_PN = mkPN "Nyctaginaceae" ; -lin nyctaginia_PN = mkPN "Nyctaginia" ; -lin nyctanassa_PN = mkPN "Nyctanassa" ; -lin nyctereutes_PN = mkPN "Nyctereutes" ; -lin nycticebus_PN = mkPN "Nycticebus" ; -lin nycticorax_PN = mkPN "Nycticorax" ; -lin nyctimene_PN = mkPN "Nyctimene" ; -lin nyiragongo_PN = mkPN "Nyiragongo" ; -lin nymphaea_PN = mkPN "Nymphaea" ; -lin nymphaeaceae_PN = mkPN "Nymphaeaceae" ; -lin nymphalidae_PN = mkPN "Nymphalidae" ; -lin nymphalis_PN = mkPN "Nymphalis" ; -lin nymphicus_PN = mkPN "Nymphicus" ; -lin nynorsk_PN = mkPN "Nynorsk" ; -lin nyquist_frequency_PN = mkPN "Nyquist frequency" ; -lin nyquist_rate_PN = mkPN "Nyquist rate" ; -lin nyssa_PN = mkPN "Nyssa" ; -lin nyssaceae_PN = mkPN "Nyssaceae" ; -lin nyx_PN = mkPN "Nyx" ; -lin o_PN = mkPN "O" ; -lin o'brien_PN = mkPN "O'Brien" ; -lin o'casey_PN = mkPN "O'Casey" ; -lin o'connor_PN = mkPN "O'Connor" ; -lin o'flaherty_PN = mkPN "O'Flaherty" ; -lin o'hara_PN = mkPN "O'Hara" ; -lin o'keeffe_PN = mkPN "O'Keeffe" ; -lin o'neill_PN = mkPN "O'Neill" ; -lin o'toole_PN = mkPN "O'Toole" ; -lin o_k__PN = mkPN "O K " ; -lin or_circuit_PN = mkPN "OR circuit" ; -lin o_ring_PN = mkPN "O ring" ; -lin oahu_PN = mkPN "Oahu" ; -lin oak_leaf_cluster_PN = mkPN "Oak Leaf Cluster" ; -lin oakengates_PN = mkPN "Oakengates"; -- from DictEng -lin oakland_PN = mkPN "Oakland" ; -lin oakley_PN = mkPN "Oakley" ; -lin oates_PN = mkPN "Oates" ; -lin oaxaca_PN = mkPN "Oaxaca" ; -lin ob_PN = mkPN "Ob"; -- from DictEng -lin obadiah_PN = mkPN "Obadiah" ; -lin oban_PN = mkPN "Oban"; -- from DictEng -lin oberhausen_PN = mkPN "Oberhausen"; -- from DictEng -lin oberson_PN = mkPN "Oberson" ; -lin oblation_PN = mkPN "Oblation" ; -lin occam_PN = mkPN "Occam" ; -lin occam's_razor_PN = mkPN "Occam's Razor" ; -lin occident_PN = mkPN "Occident"; -- from DictEng -lin occidental_PN = mkPN "Occidental" ; -lin occidentalism_PN = mkPN "Occidentalism" ; -lin occupational_safety_and_health_administration_PN = mkPN "Occupational Safety and Health Administration" ; -lin oceania_PN = mkPN "Oceania" ; -lin oceanic_PN = mkPN "Oceanic" ; -lin oceanid_PN = mkPN "Oceanid" ; -lin oceanites_PN = mkPN "Oceanites" ; -lin oceanus_PN = mkPN "Oceanus" ; -lin ochna_PN = mkPN "Ochna" ; -lin ochnaceae_PN = mkPN "Ochnaceae" ; -lin ochoa_PN = mkPN "Ochoa" ; -lin ochotona_PN = mkPN "Ochotona" ; -lin ochotonidae_PN = mkPN "Ochotonidae" ; -lin ochroma_PN = mkPN "Ochroma" ; -lin ochs_PN = mkPN "Ochs" ; -lin ocimum_PN = mkPN "Ocimum" ; -lin ockbrook_PN = mkPN "Ockbrook"; -- from DictEng -lin ockendon_PN = mkPN "Ockendon"; -- from DictEng -lin oct_PN = mkPN "Oct"; -- from DictEng -lin octans_PN = mkPN "Octans" ; -lin october_PN = mkPN "October"; -- from DictEng -lin octopoda_PN = mkPN "Octopoda" ; -lin octopodidae_PN = mkPN "Octopodidae" ; -lin ocyurus_PN = mkPN "Ocyurus" ; -lin oder_PN = mkPN "Oder" ; -lin odessa_PN = mkPN "Odessa"; -- from DictEng -lin odets_PN = mkPN "Odets" ; -lin odin_PN = mkPN "Odin" ; -lin odoacer_PN = mkPN "Odoacer" ; -lin odobenidae_PN = mkPN "Odobenidae" ; -lin odobenus_PN = mkPN "Odobenus" ; -lin odocoileus_PN = mkPN "Odocoileus" ; -lin odonata_PN = mkPN "Odonata" ; -lin odontoceti_PN = mkPN "Odontoceti" ; -lin odontophorus_PN = mkPN "Odontophorus" ; -lin odysseus_PN = mkPN "Odysseus" ; -lin odyssey_PN = mkPN "Odyssey" ; -lin oecanthus_PN = mkPN "Oecanthus" ; -lin oedipus_PN = mkPN "Oedipus"; -- from DictEng -lin oedipus_complex_PN = mkPN "Oedipus complex" ; -lin oedogoniaceae_PN = mkPN "Oedogoniaceae" ; -lin oedogoniales_PN = mkPN "Oedogoniales" ; -lin oedogonium_PN = mkPN "Oedogonium" ; -lin oenanthe_PN = mkPN "Oenanthe" ; -lin oenothera_PN = mkPN "Oenothera" ; -lin oersted_PN = mkPN "Oersted" ; -lin oestridae_PN = mkPN "Oestridae" ; -lin oestrus_PN = mkPN "Oestrus" ; -lin offaly_PN = mkPN "Offaly"; -- from DictEng -lin offenbach_PN = mkPN "Offenbach"; -- from DictEng -lin offertory_PN = mkPN "Offertory" ; -lin office_of_inspector_general_PN = mkPN "Office of Inspector General" ; -lin office_of_intelligence_support_PN = mkPN "Office of Intelligence Support" ; -lin office_of_management_and_budget_PN = mkPN "Office of Management and Budget" ; -lin office_of_naval_intelligence_PN = mkPN "Office of Naval Intelligence" ; -lin office_of_the_dead_PN = mkPN "Office of the Dead" ; -lin ofo_PN = mkPN "Ofo" ; -lin ogcocephalidae_PN = mkPN "Ogcocephalidae" ; -lin ogden_PN = mkPN "Ogden" ; -lin oglala_PN = mkPN "Oglala" ; -lin ogmore_valley_PN = mkPN "Ogmore valley"; -- from DictEng -lin ohio_PN = mkPN "Ohio"; -- from DictEng -lin ohio_state_university_PN = mkPN "Ohio State University" ; -lin ohio_buckeye_PN = mkPN "Ohio buckeye" ; -lin ohio_goldenrod_PN = mkPN "Ohio goldenrod" ; -lin ohioan_PN = mkPN "Ohioan" ; -lin ohm_PN = mkPN "Ohm" ; -lin ohm's_law_PN = mkPN "Ohm's law" ; -lin oireachtas_PN = mkPN "Oireachtas" ; -lin ojibwa_PN = mkPN "Ojibwa" ; -lin ojos_del_salado_PN = mkPN "Ojos del Salado" ; -lin okapia_PN = mkPN "Okapia" ; -lin okeechobee_PN = mkPN "Okeechobee" ; -lin okefenokee_swamp_PN = mkPN "Okefenokee Swamp" ; -lin oken_PN = mkPN "Oken" ; -lin okinawa_PN = mkPN "Okinawa" ; -lin oklahoma_PN = mkPN "Oklahoma"; -- from DictEng -lin oklahoma_city_PN = mkPN "Oklahoma city"; -- from DictEng -lin oklahoman_PN = mkPN "Oklahoman" ; -lin oktoberfest_PN = mkPN "Oktoberfest" ; -lin olaf_ii_PN = mkPN "Olaf II" ; -lin old_A = mkA "old" "older"; -- from DictEng -lin old_bailey_PN = mkPN "Old Bailey" ; -lin old_catholic_PN = mkPN "Old Catholic" ; -lin old_catholic_church_PN = mkPN "Old Catholic Church" ; -lin old_church_slavonic_PN = mkPN "Old Church Slavonic" ; -lin old_english_PN = mkPN "Old English" ; -lin old_english_sheepdog_PN = mkPN "Old English sheepdog" ; -lin old_faithful_PN = mkPN "Old Faithful" ; -lin old_french_PN = mkPN "Old French" ; -lin old_frisian_PN = mkPN "Old Frisian" ; -lin old_high_german_PN = mkPN "Old High German" ; -lin old_icelandic_PN = mkPN "Old Icelandic" ; -lin old_irish_PN = mkPN "Old Irish" ; -lin old_italian_PN = mkPN "Old Italian" ; -lin old_latin_PN = mkPN "Old Latin" ; -lin old_norse_PN = mkPN "Old Norse" ; -lin old_prussian_PN = mkPN "Old Prussian" ; -lin old_saxon_PN = mkPN "Old Saxon" ; -lin old_south_PN = mkPN "Old South" ; -lin old_testament_PN = mkPN "Old Testament" ; -lin old_world_PN = mkPN "Old World" ; -lin old_world_beaver_PN = mkPN "Old World beaver" ; -lin old_world_buffalo_PN = mkPN "Old World buffalo" ; -lin old_world_chat_PN = mkPN "Old World chat" ; -lin old_world_coot_PN = mkPN "Old World coot" ; -lin old_world_crayfish_PN = mkPN "Old World crayfish" ; -lin old_world_flycatcher_PN = mkPN "Old World flycatcher" ; -lin old_world_hop_hornbeam_PN = mkPN "Old World hop hornbeam" ; -lin old_world_jay_PN = mkPN "Old World jay" ; -lin old_world_least_weasel_PN = mkPN "Old World least weasel" ; -lin old_world_monkey_PN = mkPN "Old World monkey" ; -lin old_world_oriole_PN = mkPN "Old World oriole" ; -lin old_world_porcupine_PN = mkPN "Old World porcupine" ; -lin old_world_quail_PN = mkPN "Old World quail" ; -lin old_world_scops_owl_PN = mkPN "Old World scops owl" ; -lin old_world_vulture_PN = mkPN "Old World vulture" ; -lin old_world_warbler_PN = mkPN "Old World warbler" ; -lin old_world_yew_PN = mkPN "Old World yew" ; -lin old_windsor_PN = mkPN "Old windsor"; -- from DictEng -lin old_world_white_pelican_PN = mkPN "Old world white pelican" ; -lin oldenburg_PN = mkPN "Oldenburg"; -- from DictEng -lin oldfield_PN = mkPN "Oldfield" ; -lin oldham_PN = mkPN "Oldham"; -- from DictEng -lin oldland_PN = mkPN "Oldland"; -- from DictEng -lin olduvai_gorge_PN = mkPN "Olduvai Gorge" ; -lin olea_PN = mkPN "Olea" ; -lin oleaceae_PN = mkPN "Oleaceae" ; -lin oleales_PN = mkPN "Oleales" ; -lin oleandra_PN = mkPN "Oleandra" ; -lin oleandraceae_PN = mkPN "Oleandraceae" ; -lin olearia_PN = mkPN "Olearia" ; -lin olfersia_PN = mkPN "Olfersia" ; -lin oligocene_PN = mkPN "Oligocene" ; -lin oligochaeta_PN = mkPN "Oligochaeta" ; -lin oligoplites_PN = mkPN "Oligoplites" ; -lin oligoporus_PN = mkPN "Oligoporus" ; -lin oligoporus_leucospongia_PN = mkPN "Oligoporus leucospongia" ; -lin olive_PN = mkPN "Olive"; -- from DictEng -lin oliver_PN = mkPN "Oliver"; -- from DictEng -lin olivia_PN = mkPN "Olivia"; -- from DictEng -lin olivier_PN = mkPN "Olivier" ; -lin ollari_PN = mkPN "Ollari" ; -lin ollerton_PN = mkPN "Ollerton"; -- from DictEng -lin ollie_PN = mkPN "Ollie"; -- from DictEng -lin olmec_PN = mkPN "Olmec" ; -lin olmsted_PN = mkPN "Olmsted" ; -lin olympia_PN = mkPN "Olympia" ; -lin olympiad_PN = mkPN "Olympiad" ; -lin olympian_A = compoundA (mkA "olympian"); -- from DictEng -lin olympian_PN = mkPN "Olympian" ; -lin olympian_games_PN = mkPN "Olympian Games" ; -lin olympian_zeus_PN = mkPN "Olympian Zeus" ; -lin olympic_A = compoundA (mkA "olympic"); -- from DictEng -lin olympic_games_PN = mkPN "Olympic Games" ; -lin olympic_national_park_PN = mkPN "Olympic National Park" ; -lin olympics_PN = mkPN "Olympics"; -- from DictEng -lin olympus_PN = mkPN "Olympus" ; -lin omaha_PN = mkPN "Omaha" ; -lin oman_PN = mkPN "Oman"; -- from DictEng -lin omani_A = compoundA (mkA "omani"); -- from DictEng -lin omani_PN = mkPN "Omani" ; -lin omani_monetary_unit_PN = mkPN "Omani monetary unit" ; -lin omar_khayyam_PN = mkPN "Omar Khayyam" ; -lin omdurman_PN = mkPN "Omdurman" ; -lin omega_centauri_PN = mkPN "Omega Centauri" ; -lin omiya_PN = mkPN "Omiya" ; -lin omomyid_PN = mkPN "Omomyid" ; -lin omotic_PN = mkPN "Omotic" ; -lin omphalotus_PN = mkPN "Omphalotus" ; -lin omsk_PN = mkPN "Omsk"; -- from DictEng -lin onagraceae_PN = mkPN "Onagraceae" ; -lin oncorhynchus_PN = mkPN "Oncorhynchus" ; -lin ondaatje_PN = mkPN "Ondaatje" ; -lin ondatra_PN = mkPN "Ondatra" ; -lin oneida_PN = mkPN "Oneida" ; -lin ongar_PN = mkPN "Ongar"; -- from DictEng -lin oniscidae_PN = mkPN "Oniscidae" ; -lin oniscus_PN = mkPN "Oniscus" ; -lin ono_PN = mkPN "Ono" ; -lin onobrychis_PN = mkPN "Onobrychis" ; -lin onoclea_PN = mkPN "Onoclea" ; -lin onondaga_PN = mkPN "Onondaga" ; -lin ononis_PN = mkPN "Ononis" ; -lin onopordum_PN = mkPN "Onopordum" ; -lin onosmodium_PN = mkPN "Onosmodium" ; -lin onsager_PN = mkPN "Onsager" ; -lin ontario_PN = mkPN "Ontario"; -- from DictEng -lin onychium_PN = mkPN "Onychium" ; -lin onychogalea_PN = mkPN "Onychogalea" ; -lin onychomys_PN = mkPN "Onychomys" ; -lin onychophora_PN = mkPN "Onychophora" ; -lin oomycetes_PN = mkPN "Oomycetes" ; -lin oort_PN = mkPN "Oort" ; -lin oort_cloud_PN = mkPN "Oort cloud" ; -lin op_PN = mkPN "Op"; -- from DictEng -lin op_cit_PN = mkPN "Op cit"; -- from DictEng -lin opec_PN = mkPN "Opec"; -- from DictEng -lin opel_PN = mkPN "Opel" ; -lin open_university_PN = mkPN "Open University" ; -lin opera_PN = mkPN "Opera" ; -lin operation_desert_storm_PN = mkPN "Operation Desert Storm" ; -lin opheodrys_PN = mkPN "Opheodrys" ; -lin ophidiidae_PN = mkPN "Ophidiidae" ; -lin ophiodon_PN = mkPN "Ophiodon" ; -lin ophiodontidae_PN = mkPN "Ophiodontidae" ; -lin ophioglossaceae_PN = mkPN "Ophioglossaceae" ; -lin ophioglossales_PN = mkPN "Ophioglossales" ; -lin ophioglossum_PN = mkPN "Ophioglossum" ; -lin ophiophagus_PN = mkPN "Ophiophagus" ; -lin ophisaurus_PN = mkPN "Ophisaurus" ; -lin ophiuchus_PN = mkPN "Ophiuchus" ; -lin ophiurida_PN = mkPN "Ophiurida" ; -lin ophiuroidea_PN = mkPN "Ophiuroidea" ; -lin ophrys_PN = mkPN "Ophrys" ; -lin opisthobranchia_PN = mkPN "Opisthobranchia" ; -lin opisthocomidae_PN = mkPN "Opisthocomidae" ; -lin opisthocomus_PN = mkPN "Opisthocomus" ; -lin opisthognathidae_PN = mkPN "Opisthognathidae" ; -lin opp_PN = mkPN "Opp"; -- from DictEng -lin oppenheimer_PN = mkPN "Oppenheimer" ; -lin opposition_PN = mkPN "Opposition" ; -lin ops_PN = mkPN "Ops" ; -lin optez_PN = mkPN "Optez" ; -lin opuntia_PN = mkPN "Opuntia" ; -lin opuntiales_PN = mkPN "Opuntiales" ; -lin oran_PN = mkPN "Oran" ; -lin orange_PN = mkPN "Orange" ; -lin orange_group_PN = mkPN "Orange Group" ; -lin orange_order_PN = mkPN "Orange Order" ; -lin orangeman_PN = mkPN "Orangeman" ; -lin orbignya_PN = mkPN "Orbignya" ; -lin orbison_PN = mkPN "Orbison" ; -lin orchestia_PN = mkPN "Orchestia" ; -lin orchestiidae_PN = mkPN "Orchestiidae" ; -lin orchidaceae_PN = mkPN "Orchidaceae" ; -lin orchidales_PN = mkPN "Orchidales" ; -lin orcinus_PN = mkPN "Orcinus" ; -lin orczy_PN = mkPN "Orczy" ; -lin ord_kangaroo_rat_PN = mkPN "Ord kangaroo rat" ; -lin order_of_the_purple_heart_PN = mkPN "Order of the Purple Heart" ; -lin ordnance_survey_PN = mkPN "Ordnance Survey" ; -lin ordovician_PN = mkPN "Ordovician" ; -lin oread_PN = mkPN "Oread" ; -lin oreamnos_PN = mkPN "Oreamnos" ; -lin orectolobidae_PN = mkPN "Orectolobidae" ; -lin orectolobus_PN = mkPN "Orectolobus" ; -lin oregon_PN = mkPN "Oregon"; -- from DictEng -lin oregon_ash_PN = mkPN "Oregon ash" ; -lin oregon_cedar_PN = mkPN "Oregon cedar" ; -lin oregon_crab_apple_PN = mkPN "Oregon crab apple" ; -lin oregon_grape_PN = mkPN "Oregon grape" ; -lin oregon_maple_PN = mkPN "Oregon maple" ; -lin oregon_white_oak_PN = mkPN "Oregon white oak" ; -lin oregonian_PN = mkPN "Oregonian" ; -lin oreopteris_PN = mkPN "Oreopteris" ; -lin oreortyx_PN = mkPN "Oreortyx" ; -lin orestes_PN = mkPN "Orestes" ; -lin orff_PN = mkPN "Orff" ; -lin organization_for_the_prohibition_of_chemical_weapons_PN = mkPN "Organization for the Prohibition of Chemical Weapons" ; -lin organization_of_american_states_PN = mkPN "Organization of American States" ; -lin organization_of_petroleum_exporting_countries_PN = mkPN "Organization of Petroleum Exporting Countries" ; -lin oriental_PN = mkPN "Oriental" ; -lin oriental_arborvitae_PN = mkPN "Oriental arborvitae" ; -lin oriental_beetle_PN = mkPN "Oriental beetle" ; -lin oriental_scops_owl_PN = mkPN "Oriental scops owl" ; -lin orientalism_PN = mkPN "Orientalism" ; -lin origen_PN = mkPN "Origen" ; -lin orinoco_PN = mkPN "Orinoco" ; -lin oriolidae_PN = mkPN "Oriolidae" ; -lin oriolus_PN = mkPN "Oriolus" ; -lin orion_PN = mkPN "Orion" ; -lin orissa_PN = mkPN "Orissa" ; -lin orites_PN = mkPN "Orites" ; -lin oriya_PN = mkPN "Oriya" ; -lin orizaba_PN = mkPN "Orizaba" ; -lin orkney_PN = mkPN "Orkney"; -- from DictEng -lin orkney_islands_PN = mkPN "Orkney Islands" ; -lin orlando_PN = mkPN "Orlando" ; -lin orleanais_PN = mkPN "Orleanais" ; -lin orleanism_PN = mkPN "Orleanism" ; -lin orleanist_PN = mkPN "Orleanist" ; -lin orleans_PN = mkPN "Orleans"; -- from DictEng -lin orlon_PN = mkPN "Orlon" ; -lin orly_PN = mkPN "Orly" ; -lin ormandy_PN = mkPN "Ormandy" ; -lin ormazd_PN = mkPN "Ormazd" ; -lin ormosia_PN = mkPN "Ormosia" ; -lin ormskirk_PN = mkPN "Ormskirk"; -- from DictEng -lin ornithischia_PN = mkPN "Ornithischia" ; -lin ornithogalum_PN = mkPN "Ornithogalum" ; -lin ornithomimida_PN = mkPN "Ornithomimida" ; -lin ornithorhynchidae_PN = mkPN "Ornithorhynchidae" ; -lin ornithorhynchus_PN = mkPN "Ornithorhynchus" ; -lin orobanchaceae_PN = mkPN "Orobanchaceae" ; -lin orono_PN = mkPN "Orono" ; -lin orontium_PN = mkPN "Orontium" ; -lin orozco_PN = mkPN "Orozco" ; -lin orpheus_PN = mkPN "Orpheus" ; -lin orphic_A = mkA "Orphic" ; -lin orpington_PN = mkPN "Orpington" ; -lin orr_PN = mkPN "Orr" ; -lin ortalis_PN = mkPN "Ortalis" ; -lin ortega_PN = mkPN "Ortega" ; -lin ortega_y_gasset_PN = mkPN "Ortega y Gasset" ; -lin orthilia_PN = mkPN "Orthilia" ; -lin orthodox_A = compoundA (mkA "orthodox"); -- from DictEng -lin orthodox_church_PN = mkPN "Orthodox Church" ; -lin orthodox_jew_PN = mkPN "Orthodox Jew" ; -lin orthodox_judaism_PN = mkPN "Orthodox Judaism" ; -lin orthopristis_PN = mkPN "Orthopristis" ; -lin orthoptera_PN = mkPN "Orthoptera" ; -lin orthotomus_PN = mkPN "Orthotomus" ; -lin orwell_PN = mkPN "Orwell" ; -lin orwellian_A = mkA "Orwellian" ; -lin orycteropodidae_PN = mkPN "Orycteropodidae" ; -lin orycteropus_PN = mkPN "Orycteropus" ; -lin oryctolagus_PN = mkPN "Oryctolagus" ; -lin oryza_PN = mkPN "Oryza" ; -lin oryzomys_PN = mkPN "Oryzomys" ; -lin oryzopsis_PN = mkPN "Oryzopsis" ; -lin osage_PN = mkPN "Osage" ; -lin osaka_PN = mkPN "Osaka"; -- from DictEng -lin osaka_bay_PN = mkPN "Osaka Bay" ; -lin osasco_PN = mkPN "Osasco" ; -lin osborne_PN = mkPN "Osborne" ; -lin oscan_PN = mkPN "Oscan" ; -lin oscan_speaking_A = compoundA (mkA "Oscan speaking") ; -lin oscar_PN = mkPN "Oscar"; -- from DictEng -lin oscillatoriaceae_PN = mkPN "Oscillatoriaceae" ; -lin oscines_PN = mkPN "Oscines" ; -lin osco_umbrian_PN = mkPN "Osco Umbrian" ; -lin osiris_PN = mkPN "Osiris" ; -lin oslo_PN = mkPN "Oslo"; -- from DictEng -lin osman_i_PN = mkPN "Osman I" ; -lin osmanthus_PN = mkPN "Osmanthus" ; -lin osmeridae_PN = mkPN "Osmeridae" ; -lin osmerus_PN = mkPN "Osmerus" ; -lin osmundaceae_PN = mkPN "Osmundaceae" ; -lin osnabruck_PN = mkPN "Osnabruck"; -- from DictEng -lin ossete_PN = mkPN "Ossete" ; -lin ossett_PN = mkPN "Ossett"; -- from DictEng -lin ostariophysi_PN = mkPN "Ostariophysi" ; -lin osteichthyes_PN = mkPN "Osteichthyes" ; -lin osteoglossidae_PN = mkPN "Osteoglossidae" ; -lin osteoglossiformes_PN = mkPN "Osteoglossiformes" ; -lin osteostraci_PN = mkPN "Osteostraci" ; -lin ostraciidae_PN = mkPN "Ostraciidae" ; -lin ostracoda_PN = mkPN "Ostracoda" ; -lin ostracodermi_PN = mkPN "Ostracodermi" ; -lin ostrava_PN = mkPN "Ostrava" ; -lin ostrea_PN = mkPN "Ostrea" ; -lin ostreidae_PN = mkPN "Ostreidae" ; -lin ostrogoth_PN = mkPN "Ostrogoth" ; -lin ostrya_PN = mkPN "Ostrya" ; -lin ostryopsis_PN = mkPN "Ostryopsis" ; -lin ostwald_PN = mkPN "Ostwald" ; -lin ostyak_PN = mkPN "Ostyak" ; -lin oswald_PN = mkPN "Oswald"; -- from DictEng -lin oswestry_PN = mkPN "Oswestry"; -- from DictEng -lin otago_PN = mkPN "Otago"; -- from DictEng -lin otaheite_arrowroot_PN = mkPN "Otaheite arrowroot" ; -lin otaria_PN = mkPN "Otaria" ; -lin otariidae_PN = mkPN "Otariidae" ; -lin othello_PN = mkPN "Othello" ; -lin otides_PN = mkPN "Otides" ; -lin otididae_PN = mkPN "Otididae" ; -lin otis_PN = mkPN "Otis" ; -lin otley_PN = mkPN "Otley"; -- from DictEng -lin oto_PN = mkPN "Oto" ; -lin ottawa_PN = mkPN "Ottawa"; -- from DictEng -lin otto_i_PN = mkPN "Otto I" ; -lin ottoman_A = mkA "Ottoman" ; -lin ottoman_PN = mkPN "Ottoman" ; -lin ottoman_empire_PN = mkPN "Ottoman Empire" ; -lin ottumwa_PN = mkPN "Ottumwa" ; -lin otus_PN = mkPN "Otus" ; -lin ouachita_PN = mkPN "Ouachita" ; -lin ouija_PN = mkPN "Ouija" ; -lin oujda_PN = mkPN "Oujda" ; -lin our_lord's_candle_PN = mkPN "Our Lord's candle" ; -lin ouranopithecus_PN = mkPN "Ouranopithecus" ; -lin ouranos_PN = mkPN "Ouranos" ; -lin ouse_PN = mkPN "Ouse" ; -lin outaouais_PN = mkPN "Outaouais" ; -lin outer_hebrides_PN = mkPN "Outer Hebrides" ; -lin oval_office_PN = mkPN "Oval Office" ; -lin ovalipes_PN = mkPN "Ovalipes" ; -lin oven_stuffer_PN = mkPN "Oven Stuffer" ; -lin ovibos_PN = mkPN "Ovibos" ; -lin ovid_PN = mkPN "Ovid" ; -lin oviedo_PN = mkPN "Oviedo"; -- from DictEng -lin ovis_PN = mkPN "Ovis" ; -lin ovocon_PN = mkPN "Ovocon" ; -lin ovral_PN = mkPN "Ovral" ; -lin ovrette_PN = mkPN "Ovrette" ; -lin ovulen_PN = mkPN "Ovulen" ; -lin owen_PN = mkPN "Owen" ; -lin owens_PN = mkPN "Owens" ; -lin owensboro_PN = mkPN "Owensboro" ; -lin oxalidaceae_PN = mkPN "Oxalidaceae" ; -lin oxandra_PN = mkPN "Oxandra" ; -lin oxbridge_PN = mkPN "Oxbridge"; -- from DictEng -lin oxford_PN = mkPN "Oxford"; -- from DictEng -lin oxford_english_PN = mkPN "Oxford English" ; -lin oxford_english_dictionary_PN = mkPN "Oxford English Dictionary" ; -lin oxford_university_PN = mkPN "Oxford University" ; -lin oxford_movement_PN = mkPN "Oxford movement" ; -lin oxfordshire_PN = mkPN "Oxfordshire"; -- from DictEng -lin oxon_PN = mkPN "Oxon"; -- from DictEng -lin oxonian_A = compoundA (mkA "oxonian"); -- from DictEng -lin oxonian_PN = mkPN "Oxonian" ; -lin oxted_PN = mkPN "Oxted"; -- from DictEng -lin oxybelis_PN = mkPN "Oxybelis" ; -lin oxydendrum_PN = mkPN "Oxydendrum" ; -lin oxylebius_PN = mkPN "Oxylebius" ; -lin oxytropis_PN = mkPN "Oxytropis" ; -lin oxyura_PN = mkPN "Oxyura" ; -lin oxyuranus_PN = mkPN "Oxyuranus" ; -lin oxyuridae_PN = mkPN "Oxyuridae" ; -lin ozark_chinkapin_PN = mkPN "Ozark chinkapin" ; -lin ozarks_PN = mkPN "Ozarks" ; -lin ozawa_PN = mkPN "Ozawa" ; -lin ozonium_PN = mkPN "Ozonium" ; -lin ozothamnus_PN = mkPN "Ozothamnus" ; -lin ozzie_PN = mkPN "Ozzie"; -- from DictEng -lin p_PN = mkPN "P" ; -lin paye_PN = mkPN "Paye"; -- from DictEng -lin pc_board_PN = mkPN "PC board" ; -lin pku_test_PN = mkPN "PKU test" ; -lin psa_blood_test_PN = mkPN "PSA blood test" ; -lin pt_boat_PN = mkPN "PT boat" ; -lin pablum_PN = mkPN "Pablum" ; -lin pachycephala_PN = mkPN "Pachycephala" ; -lin pachyrhizus_PN = mkPN "Pachyrhizus" ; -lin pacific_A = compoundA (mkA "pacific"); -- from DictEng -lin pacific_PN = mkPN "Pacific"; -- from DictEng -lin pacific_coast_PN = mkPN "Pacific Coast" ; -lin pacific_northwest_PN = mkPN "Pacific Northwest" ; -lin pacific_time_PN = mkPN "Pacific Time" ; -lin pacific_bottlenose_dolphin_PN = mkPN "Pacific bottlenose dolphin" ; -lin pacific_cod_PN = mkPN "Pacific cod" ; -lin pacific_giant_salamander_PN = mkPN "Pacific giant salamander" ; -lin pacific_halibut_PN = mkPN "Pacific halibut" ; -lin pacific_herring_PN = mkPN "Pacific herring" ; -lin pacific_newt_PN = mkPN "Pacific newt" ; -lin pacific_ridley_PN = mkPN "Pacific ridley" ; -lin pacific_sardine_PN = mkPN "Pacific sardine" ; -lin pacific_spiny_dogfish_PN = mkPN "Pacific spiny dogfish" ; -lin pacific_sturgeon_PN = mkPN "Pacific sturgeon" ; -lin pacific_tree_toad_PN = mkPN "Pacific tree toad" ; -lin pacific_tripletail_PN = mkPN "Pacific tripletail" ; -lin pacific_walrus_PN = mkPN "Pacific walrus" ; -lin pacific_yew_PN = mkPN "Pacific yew" ; -lin pacinian_corpuscle_PN = mkPN "Pacinian corpuscle" ; -lin packera_PN = mkPN "Packera" ; -lin padda_PN = mkPN "Padda" ; -lin paddy_PN = mkPN "Paddy"; -- from DictEng -lin paderewski_PN = mkPN "Paderewski" ; -lin padova_PN = mkPN "Padova"; -- from DictEng -lin padua_PN = mkPN "Padua"; -- from DictEng -lin paducah_PN = mkPN "Paducah" ; -lin paeonia_PN = mkPN "Paeonia" ; -lin paeoniaceae_PN = mkPN "Paeoniaceae" ; -lin paganini_PN = mkPN "Paganini" ; -lin page_PN = mkPN "Page" ; -lin pagellus_PN = mkPN "Pagellus" ; -lin paget_PN = mkPN "Paget" ; -lin paget's_disease_PN = mkPN "Paget's disease" ; -lin pago_pago_PN = mkPN "Pago Pago" ; -lin pagophila_PN = mkPN "Pagophila" ; -lin pagophilus_PN = mkPN "Pagophilus" ; -lin pagrus_PN = mkPN "Pagrus" ; -lin paguridae_PN = mkPN "Paguridae" ; -lin pagurus_PN = mkPN "Pagurus" ; -lin pahlavi_PN = mkPN "Pahlavi" ; -lin paige_PN = mkPN "Paige" ; -lin paine_PN = mkPN "Paine" ; -lin painted_desert_PN = mkPN "Painted Desert" ; -lin paisley_PN = mkPN "Paisley"; -- from DictEng -lin paiute_PN = mkPN "Paiute" ; -lin paiwanic_PN = mkPN "Paiwanic" ; -lin pakistan_PN = mkPN "Pakistan"; -- from DictEng -lin pakistani_A = compoundA (mkA "pakistani"); -- from DictEng -lin pakistani_PN = mkPN "Pakistani" ; -lin pakistani_monetary_unit_PN = mkPN "Pakistani monetary unit" ; -lin pakistani_rupee_PN = mkPN "Pakistani rupee" ; -lin palaemon_PN = mkPN "Palaemon" ; -lin palaemonidae_PN = mkPN "Palaemonidae" ; -lin palaic_PN = mkPN "Palaic" ; -lin palaquium_PN = mkPN "Palaquium" ; -lin palatinate_PN = mkPN "Palatinate" ; -lin palatine_PN = mkPN "Palatine" ; -lin palau_PN = mkPN "Palau" ; -lin paleacrita_PN = mkPN "Paleacrita" ; -lin paleacrita_vernata_PN = mkPN "Paleacrita vernata" ; -lin palembang_PN = mkPN "Palembang"; -- from DictEng -lin paleo_american_PN = mkPN "Paleo American" ; -lin paleo_american_culture_PN = mkPN "Paleo American culture" ; -lin paleocene_PN = mkPN "Paleocene" ; -lin paleolithic_age_PN = mkPN "Paleolithic Age" ; -lin paleozoic_A = mkA "Paleozoic" ; -lin paleozoic_PN = mkPN "Paleozoic" ; -lin palermo_PN = mkPN "Palermo"; -- from DictEng -lin palestine_PN = mkPN "Palestine"; -- from DictEng -lin palestine_islamic_jihad_PN = mkPN "Palestine Islamic Jihad" ; -lin palestine_liberation_front_PN = mkPN "Palestine Liberation Front" ; -lin palestine_liberation_organization_PN = mkPN "Palestine Liberation Organization" ; -lin palestine_national_authority_PN = mkPN "Palestine National Authority" ; -lin palestinian_A = compoundA (mkA "palestinian"); -- from DictEng -lin palestinian_PN = mkPN "Palestinian" ; -lin palestinian_hizballah_PN = mkPN "Palestinian Hizballah" ; -lin palestrina_PN = mkPN "Palestrina" ; -lin palgrave_PN = mkPN "Palgrave" ; -lin pali_PN = mkPN "Pali" ; -lin palinuridae_PN = mkPN "Palinuridae" ; -lin palinurus_PN = mkPN "Palinurus" ; -lin paliurus_PN = mkPN "Paliurus" ; -lin pall_mall_PN = mkPN "Pall Mall" ; -lin palladian_A = mkA "Palladian" ; -lin palladio_PN = mkPN "Palladio" ; -lin pallas_PN = mkPN "Pallas" ; -lin palm_beach_PN = mkPN "Palm Beach" ; -lin palm_sunday_PN = mkPN "Palm Sunday" ; -lin palmae_PN = mkPN "Palmae" ; -lin palmales_PN = mkPN "Palmales" ; -lin palmer_PN = mkPN "Palmer" ; -lin palo_alto_PN = mkPN "Palo Alto" ; -lin pam_PN = mkPN "Pam"; -- from DictEng -lin pamela_PN = mkPN "Pamela"; -- from DictEng -lin pamir_mountains_PN = mkPN "Pamir Mountains" ; -lin pamlico_PN = mkPN "Pamlico" ; -lin pamplona_PN = mkPN "Pamplona"; -- from DictEng -lin pan_PN = mkPN "Pan" ; -lin pan_american_day_PN = mkPN "Pan American Day" ; -lin pan_american_union_PN = mkPN "Pan American Union" ; -lin panacea_PN = mkPN "Panacea" ; -lin panama_PN = mkPN "Panama"; -- from DictEng -lin panama_canal_PN = mkPN "Panama Canal" ; -lin panama_canal_zone_PN = mkPN "Panama Canal Zone" ; -lin panama_city_PN = mkPN "Panama City" ; -lin panama_redwood_PN = mkPN "Panama redwood" ; -lin panama_redwood_tree_PN = mkPN "Panama redwood tree" ; -lin panama_tree_PN = mkPN "Panama tree" ; -lin panamanian_A = compoundA (mkA "panamanian"); -- from DictEng -lin panamanian_PN = mkPN "Panamanian" ; -lin panamanian_monetary_unit_PN = mkPN "Panamanian monetary unit" ; -lin panax_PN = mkPN "Panax" ; -lin panchen_lama_PN = mkPN "Panchen Lama" ; -lin pandanaceae_PN = mkPN "Pandanaceae" ; -lin pandanales_PN = mkPN "Pandanales" ; -lin pandion_PN = mkPN "Pandion" ; -lin pandionidae_PN = mkPN "Pandionidae" ; -lin pandora_PN = mkPN "Pandora" ; -lin pandora's_box_PN = mkPN "Pandora's box" ; -lin pangaea_PN = mkPN "Pangaea" ; -lin pangloss_PN = mkPN "Pangloss" ; -lin panhellenic_A = mkA "Panhellenic" ; -lin panicum_PN = mkPN "Panicum" ; -lin panini_PN = mkPN "Panini" ; -lin panipat_PN = mkPN "Panipat" ; -lin panofsky_PN = mkPN "Panofsky" ; -lin panonychus_PN = mkPN "Panonychus" ; -lin panorpidae_PN = mkPN "Panorpidae" ; -lin pantaloon_PN = mkPN "Pantaloon" ; -lin panthera_PN = mkPN "Panthera" ; -lin pantotheria_PN = mkPN "Pantotheria" ; -lin paotow_PN = mkPN "Paotow"; -- from DictEng -lin pap_test_PN = mkPN "Pap test" ; -lin papal_states_PN = mkPN "Papal States" ; -lin papaver_PN = mkPN "Papaver" ; -lin papaveraceae_PN = mkPN "Papaveraceae" ; -lin papeete_PN = mkPN "Papeete" ; -lin paphiopedilum_PN = mkPN "Paphiopedilum" ; -lin papilionaceae_PN = mkPN "Papilionaceae" ; -lin papilionoideae_PN = mkPN "Papilionoideae" ; -lin papio_PN = mkPN "Papio" ; -lin paprilus_PN = mkPN "Paprilus" ; -lin papua_PN = mkPN "Papua"; -- from DictEng -lin papua_new_guinea_PN = mkPN "Papua New Guinea" ; -lin papuan_A = compoundA (mkA "papuan"); -- from DictEng -lin papuan_PN = mkPN "Papuan" ; -lin papuan_monetary_unit_PN = mkPN "Papuan monetary unit" ; -lin para_PN = mkPN "Para" ; -lin para_rubber_PN = mkPN "Para rubber" ; -lin para_rubber_tree_PN = mkPN "Para rubber tree" ; -lin paracelsus_PN = mkPN "Paracelsus" ; -lin paracheirodon_PN = mkPN "Paracheirodon" ; -lin paradisaeidae_PN = mkPN "Paradisaeidae" ; -lin paradise_PN = mkPN "Paradise" ; -lin paradoxurus_PN = mkPN "Paradoxurus" ; -lin paraguay_PN = mkPN "Paraguay"; -- from DictEng -lin paraguayan_A = compoundA (mkA "paraguayan"); -- from DictEng -lin paraguayan_PN = mkPN "Paraguayan" ; -lin paraguayan_monetary_unit_PN = mkPN "Paraguayan monetary unit" ; -lin paralichthys_PN = mkPN "Paralichthys" ; -lin paralipomenon_PN = mkPN "Paralipomenon" ; -lin paralithodes_PN = mkPN "Paralithodes" ; -lin parallel_lives_PN = mkPN "Parallel Lives" ; -lin paramaribo_PN = mkPN "Paramaribo" ; -lin parana_PN = mkPN "Parana" ; -lin paranthias_PN = mkPN "Paranthias" ; -lin paranthropus_PN = mkPN "Paranthropus" ; -lin parascalops_PN = mkPN "Parascalops" ; -lin parashurama_PN = mkPN "Parashurama" ; -lin parasitaxus_PN = mkPN "Parasitaxus" ; -lin parathelypteris_PN = mkPN "Parathelypteris" ; -lin parazoa_PN = mkPN "Parazoa" ; -lin parcae_PN = mkPN "Parcae" ; -lin parcheesi_PN = mkPN "Parcheesi" ; -lin pareto_PN = mkPN "Pareto" ; -lin paridae_PN = mkPN "Paridae" ; -lin parietales_PN = mkPN "Parietales" ; -lin parietaria_PN = mkPN "Parietaria" ; -lin paris_PN = mkPN "Paris"; -- from DictEng -lin paris_university_PN = mkPN "Paris University" ; -lin paris_green_PN = mkPN "Paris green" ; -lin parisian_A = compoundA (mkA "parisian"); -- from DictEng -lin parisian_PN = mkPN "Parisian" ; -lin parisienne_PN = mkPN "Parisienne" ; -lin parjanya_PN = mkPN "Parjanya" ; -lin parji_PN = mkPN "Parji" ; -lin park_PN = mkPN "Park" ; -lin park_avenue_PN = mkPN "Park Avenue" ; -lin parker_PN = mkPN "Parker" ; -lin parker_house_roll_PN = mkPN "Parker House roll" ; -lin parkeriaceae_PN = mkPN "Parkeriaceae" ; -lin parkersburg_PN = mkPN "Parkersburg" ; -lin parkia_PN = mkPN "Parkia" ; -lin parkia_javanica_PN = mkPN "Parkia javanica" ; -lin parkinson_PN = mkPN "Parkinson" ; -lin parkinson's_law_PN = mkPN "Parkinson's law" ; -lin parkinsonia_PN = mkPN "Parkinsonia" ; -lin parks_PN = mkPN "Parks" ; -lin parliamentarian_PN = mkPN "Parliamentarian" ; -lin parma_PN = mkPN "Parma"; -- from DictEng -lin parmelia_PN = mkPN "Parmelia" ; -lin parmeliaceae_PN = mkPN "Parmeliaceae" ; -lin parmenides_PN = mkPN "Parmenides" ; -lin parmesan_PN = mkPN "Parmesan" ; -lin parnaiba_PN = mkPN "Parnaiba" ; -lin parnassus_PN = mkPN "Parnassus" ; -lin parnell_PN = mkPN "Parnell" ; -lin parochetus_PN = mkPN "Parochetus" ; -lin paronychia_PN = mkPN "Paronychia" ; -lin parophrys_PN = mkPN "Parophrys" ; -lin parr_PN = mkPN "Parr" ; -lin parrish_PN = mkPN "Parrish" ; -lin parrotia_PN = mkPN "Parrotia" ; -lin parrotiopsis_PN = mkPN "Parrotiopsis" ; -lin parry's_penstemon_PN = mkPN "Parry's penstemon" ; -lin parry's_pinyon_PN = mkPN "Parry's pinyon" ; -lin parry_manzanita_PN = mkPN "Parry manzanita" ; -lin parsee_PN = mkPN "Parsee" ; -lin parsiism_PN = mkPN "Parsiism" ; -lin parsons_PN = mkPN "Parsons" ; -lin parsons_table_PN = mkPN "Parsons table" ; -lin parthenium_PN = mkPN "Parthenium" ; -lin parthenocissus_PN = mkPN "Parthenocissus" ; -lin parthenon_PN = mkPN "Parthenon" ; -lin parthia_PN = mkPN "Parthia" ; -lin parthian_A = compoundA (mkA "parthian"); -- from DictEng -lin parthian_PN = mkPN "Parthian" ; -lin parula_PN = mkPN "Parula" ; -lin parulidae_PN = mkPN "Parulidae" ; -lin parus_PN = mkPN "Parus" ; -lin parvati_PN = mkPN "Parvati" ; -lin pasadena_PN = mkPN "Pasadena" ; -lin pascal_PN = mkPN "Pascal" ; -lin pascal's_law_PN = mkPN "Pascal's law" ; -lin pascal_compiler_PN = mkPN "Pascal compiler" ; -lin pasch_PN = mkPN "Pasch" ; -lin pashto_PN = mkPN "Pashto" ; -lin pasigraphy_PN = mkPN "Pasigraphy" ; -lin pasiphae_PN = mkPN "Pasiphae" ; -lin passamaquody_PN = mkPN "Passamaquody" ; -lin passer_PN = mkPN "Passer" ; -lin passeridae_PN = mkPN "Passeridae" ; -lin passeriformes_PN = mkPN "Passeriformes" ; -lin passerina_PN = mkPN "Passerina" ; -lin passero_PN = mkPN "Passero" ; -lin passiflora_PN = mkPN "Passiflora" ; -lin passifloraceae_PN = mkPN "Passifloraceae" ; -lin passion_PN = mkPN "Passion" ; -lin passion_sunday_PN = mkPN "Passion Sunday" ; -lin passion_play_PN = mkPN "Passion play" ; -lin passover_PN = mkPN "Passover" ; -lin pasternak_PN = mkPN "Pasternak" ; -lin pasteur_PN = mkPN "Pasteur" ; -lin pasteurian_A = mkA "Pasteurian" ; -lin pastinaca_PN = mkPN "Pastinaca" ; -lin pastor_PN = mkPN "Pastor" ; -lin pat_PN = mkPN "Pat"; -- from DictEng -lin patagonia_PN = mkPN "Patagonia" ; -lin patagonian_desert_PN = mkPN "Patagonian Desert" ; -lin patella_PN = mkPN "Patella" ; -lin patellidae_PN = mkPN "Patellidae" ; -lin patent_and_trademark_office_database_PN = mkPN "Patent and Trademark Office Database" ; -lin paternoster_PN = mkPN "Paternoster" ; -lin paterson_PN = mkPN "Paterson" ; -lin pathan_PN = mkPN "Pathan" ; -lin patience_PN = mkPN "Patience"; -- from DictEng -lin paton_PN = mkPN "Paton" ; -lin patrai_PN = mkPN "Patrai"; -- from DictEng -lin patras_PN = mkPN "Patras" ; -lin patricia_PN = mkPN "Patricia"; -- from DictEng -lin patrick_PN = mkPN "Patrick"; -- from DictEng -lin patriot's_day_PN = mkPN "Patriot's Day" ; -lin patroclus_PN = mkPN "Patroclus" ; -lin patty_PN = mkPN "Patty"; -- from DictEng -lin patwin_PN = mkPN "Patwin" ; -lin paul_PN = mkPN "Paul"; -- from DictEng -lin paul_iii_PN = mkPN "Paul III" ; -lin paul_vi_PN = mkPN "Paul VI" ; -lin paula_PN = mkPN "Paula"; -- from DictEng -lin pauli_PN = mkPN "Pauli" ; -lin pauli_exclusion_principle_PN = mkPN "Pauli exclusion principle" ; -lin pauline_A = mkA "Pauline" ; -lin pauline_PN = mkPN "Pauline"; -- from DictEng -lin pauling_PN = mkPN "Pauling" ; -lin paulo_afonso_PN = mkPN "Paulo Afonso" ; -lin pauropoda_PN = mkPN "Pauropoda" ; -lin pavarotti_PN = mkPN "Pavarotti" ; -lin pavlov_PN = mkPN "Pavlov" ; -lin pavlova_PN = mkPN "Pavlova" ; -lin pavlovian_A = mkA "Pavlovian" ; -lin pavo_PN = mkPN "Pavo" ; -lin pawnee_PN = mkPN "Pawnee" ; -lin pax_romana_PN = mkPN "Pax Romana" ; -lin paxton_PN = mkPN "Paxton" ; -lin payena_PN = mkPN "Payena" ; -lin payne's_grey_PN = mkPN "Payne's grey" ; -lin pays_de_la_loire_PN = mkPN "Pays de la Loire" ; -lin pc_PN = mkPN "Pc"; -- from DictEng -lin peabody_PN = mkPN "Peabody" ; -lin peace_corps_PN = mkPN "Peace Corps" ; -lin peace_of_westphalia_PN = mkPN "Peace of Westphalia" ; -lin peacehaven_PN = mkPN "Peacehaven"; -- from DictEng -lin pearl_PN = mkPN "Pearl"; -- from DictEng -lin pearl_harbor_PN = mkPN "Pearl Harbor" ; -lin pearl_river_PN = mkPN "Pearl River" ; -lin pearmain_PN = mkPN "Pearmain" ; -lin peary_PN = mkPN "Peary" ; -lin peasant's_revolt_PN = mkPN "Peasant's Revolt" ; -lin pecos_PN = mkPN "Pecos" ; -lin pectinibranchia_PN = mkPN "Pectinibranchia" ; -lin pectinidae_PN = mkPN "Pectinidae" ; -lin pedaliaceae_PN = mkPN "Pedaliaceae" ; -lin pediculati_PN = mkPN "Pediculati" ; -lin pediculidae_PN = mkPN "Pediculidae" ; -lin pediculus_PN = mkPN "Pediculus" ; -lin pedilanthus_PN = mkPN "Pedilanthus" ; -lin pediocactus_PN = mkPN "Pediocactus" ; -lin pedioecetes_PN = mkPN "Pedioecetes" ; -lin pedionomus_PN = mkPN "Pedionomus" ; -lin pedipalpi_PN = mkPN "Pedipalpi" ; -lin pee_dee_PN = mkPN "Pee Dee" ; -lin peebles_PN = mkPN "Peebles"; -- from DictEng -lin peel_PN = mkPN "Peel" ; -lin peg_PN = mkPN "Peg"; -- from DictEng -lin pegasus_PN = mkPN "Pegasus" ; -lin peggy_PN = mkPN "Peggy"; -- from DictEng -lin pei_PN = mkPN "Pei" ; -lin peirce_PN = mkPN "Peirce" ; -lin pekinese_PN = mkPN "Pekinese" ; -lin peking_PN = mkPN "Peking"; -- from DictEng -lin peking_man_PN = mkPN "Peking man" ; -lin pelagianism_PN = mkPN "Pelagianism" ; -lin pelagius_PN = mkPN "Pelagius" ; -lin pelargonium_PN = mkPN "Pelargonium" ; -lin pelecanidae_PN = mkPN "Pelecanidae" ; -lin pelecaniformes_PN = mkPN "Pelecaniformes" ; -lin pelecanoididae_PN = mkPN "Pelecanoididae" ; -lin pelecanus_PN = mkPN "Pelecanus" ; -lin peleus_PN = mkPN "Peleus" ; -lin pelham_PN = mkPN "Pelham" ; -lin pellaea_PN = mkPN "Pellaea" ; -lin pellicularia_PN = mkPN "Pellicularia" ; -lin pelobatidae_PN = mkPN "Pelobatidae" ; -lin peloponnese_PN = mkPN "Peloponnese" ; -lin peloponnesian_A = mkA "Peloponnesian" ; -lin peloponnesian_war_PN = mkPN "Peloponnesian War" ; -lin peltandra_PN = mkPN "Peltandra" ; -lin pelton_PN = mkPN "Pelton"; -- from DictEng -lin pelycosauria_PN = mkPN "Pelycosauria" ; -lin pembroke_PN = mkPN "Pembroke"; -- from DictEng -lin pempheridae_PN = mkPN "Pempheridae" ; -lin penarth_PN = mkPN "Penarth"; -- from DictEng -lin pendlebury_PN = mkPN "Pendlebury"; -- from DictEng -lin peneidae_PN = mkPN "Peneidae" ; -lin penelope_PN = mkPN "Penelope"; -- from DictEng -lin peneus_PN = mkPN "Peneus" ; -lin pengo_PN = mkPN "Pengo" ; -lin penicillium_PN = mkPN "Penicillium" ; -lin penicuik_PN = mkPN "Penicuik"; -- from DictEng -lin penki_PN = mkPN "Penki"; -- from DictEng -lin penn_PN = mkPN "Penn" ; -lin pennatula_PN = mkPN "Pennatula" ; -lin pennatulidae_PN = mkPN "Pennatulidae" ; -lin pennines_PN = mkPN "Pennines" ; -lin pennisetum_PN = mkPN "Pennisetum" ; -lin pennsylvania_PN = mkPN "Pennsylvania"; -- from DictEng -lin pennsylvania_dutch_PN = mkPN "Pennsylvania Dutch" ; -lin pennsylvanian_PN = mkPN "Pennsylvanian" ; -lin penny_PN = mkPN "Penny"; -- from DictEng -lin penobscot_PN = mkPN "Penobscot" ; -lin penobscot_bay_PN = mkPN "Penobscot Bay" ; -lin penrhyn_PN = mkPN "Penrhyn"; -- from DictEng -lin penrith_PN = mkPN "Penrith"; -- from DictEng -lin penryn_PN = mkPN "Penryn"; -- from DictEng -lin pensacola_PN = mkPN "Pensacola" ; -lin penstemon_PN = mkPN "Penstemon" ; -lin pentagon_PN = mkPN "Pentagon" ; -lin pentagon_gang_PN = mkPN "Pentagon Gang" ; -lin pentastomida_PN = mkPN "Pentastomida" ; -lin pentecost_PN = mkPN "Pentecost" ; -lin pentecostal_PN = mkPN "Pentecostal" ; -lin pentecostal_religion_PN = mkPN "Pentecostal religion" ; -lin penutian_PN = mkPN "Penutian" ; -lin penzance_PN = mkPN "Penzance"; -- from DictEng -lin people's_party_PN = mkPN "People's Party" ; -lin people_against_gangsterism_and_drugs_PN = mkPN "People against Gangsterism and Drugs" ; -lin peoria_PN = mkPN "Peoria" ; -lin pepin_PN = mkPN "Pepin" ; -lin pepsi_PN = mkPN "Pepsi" ; -lin pepto_bismal_PN = mkPN "Pepto bismal" ; -lin pepys_PN = mkPN "Pepys" ; -lin peramelidae_PN = mkPN "Peramelidae" ; -lin perca_PN = mkPN "Perca" ; -lin percheron_PN = mkPN "Percheron" ; -lin percidae_PN = mkPN "Percidae" ; -lin perciformes_PN = mkPN "Perciformes" ; -lin percina_PN = mkPN "Percina" ; -lin percoidea_PN = mkPN "Percoidea" ; -lin percophidae_PN = mkPN "Percophidae" ; -lin percy_PN = mkPN "Percy"; -- from DictEng -lin perdicidae_PN = mkPN "Perdicidae" ; -lin perdix_PN = mkPN "Perdix" ; -lin perejil_PN = mkPN "Perejil" ; -lin pereskia_PN = mkPN "Pereskia" ; -lin pergamum_PN = mkPN "Pergamum" ; -lin pericallis_PN = mkPN "Pericallis" ; -lin pericles_PN = mkPN "Pericles" ; -lin peridiniidae_PN = mkPN "Peridiniidae" ; -lin peridinium_PN = mkPN "Peridinium" ; -lin perilla_PN = mkPN "Perilla" ; -lin periophthalmus_PN = mkPN "Periophthalmus" ; -lin peripatidae_PN = mkPN "Peripatidae" ; -lin peripatopsidae_PN = mkPN "Peripatopsidae" ; -lin peripatopsis_PN = mkPN "Peripatopsis" ; -lin periplaneta_PN = mkPN "Periplaneta" ; -lin periploca_PN = mkPN "Periploca" ; -lin perisoreus_PN = mkPN "Perisoreus" ; -lin perissodactyla_PN = mkPN "Perissodactyla" ; -lin peristediinae_PN = mkPN "Peristediinae" ; -lin peristedion_PN = mkPN "Peristedion" ; -lin perm_PN = mkPN "Perm"; -- from DictEng -lin permalloy_PN = mkPN "Permalloy" ; -lin permian_PN = mkPN "Permian" ; -lin permic_PN = mkPN "Permic" ; -lin pernis_PN = mkPN "Pernis" ; -lin pernod_PN = mkPN "Pernod" ; -lin perodicticus_PN = mkPN "Perodicticus" ; -lin perognathus_PN = mkPN "Perognathus" ; -lin peromyscus_PN = mkPN "Peromyscus" ; -lin peron_PN = mkPN "Peron" ; -lin peronospora_PN = mkPN "Peronospora" ; -lin peronosporaceae_PN = mkPN "Peronosporaceae" ; -lin peronosporales_PN = mkPN "Peronosporales" ; -lin perry_PN = mkPN "Perry" ; -lin perry_mason_PN = mkPN "Perry Mason" ; -lin persea_PN = mkPN "Persea" ; -lin persephone_PN = mkPN "Persephone" ; -lin persepolis_PN = mkPN "Persepolis" ; -lin perseus_PN = mkPN "Perseus" ; -lin pershing_PN = mkPN "Pershing" ; -lin pershore_PN = mkPN "Pershore"; -- from DictEng -lin persia_PN = mkPN "Persia"; -- from DictEng -lin persian_PN = mkPN "Persian" ; -lin persian_gulf_PN = mkPN "Persian Gulf" ; -lin persian_gulf_war_PN = mkPN "Persian Gulf War" ; -lin persian_cat_PN = mkPN "Persian cat" ; -lin persian_deity_PN = mkPN "Persian deity" ; -lin persian_iris_PN = mkPN "Persian iris" ; -lin persian_lamb_PN = mkPN "Persian lamb" ; -lin persian_lilac_PN = mkPN "Persian lilac" ; -lin persian_melon_PN = mkPN "Persian melon" ; -lin persian_violet_PN = mkPN "Persian violet" ; -lin persoonia_PN = mkPN "Persoonia" ; -lin perth_PN = mkPN "Perth"; -- from DictEng -lin pertusaria_PN = mkPN "Pertusaria" ; -lin pertusariaceae_PN = mkPN "Pertusariaceae" ; -lin peru_PN = mkPN "Peru"; -- from DictEng -lin perugia_PN = mkPN "Perugia"; -- from DictEng -lin perutz_PN = mkPN "Perutz" ; -lin peruvian_A = compoundA (mkA "peruvian"); -- from DictEng -lin peruvian_PN = mkPN "Peruvian" ; -lin peruvian_balsam_PN = mkPN "Peruvian balsam" ; -lin peruvian_cotton_PN = mkPN "Peruvian cotton" ; -lin peruvian_current_PN = mkPN "Peruvian current" ; -lin peruvian_lily_PN = mkPN "Peruvian lily" ; -lin peruvian_monetary_unit_PN = mkPN "Peruvian monetary unit" ; -lin pescara_PN = mkPN "Pescara"; -- from DictEng -lin pesh_merga_PN = mkPN "Pesh Merga" ; -lin peshawar_PN = mkPN "Peshawar" ; -lin petasites_PN = mkPN "Petasites" ; -lin petaurista_PN = mkPN "Petaurista" ; -lin petauristidae_PN = mkPN "Petauristidae" ; -lin petaurus_PN = mkPN "Petaurus" ; -lin pete_PN = mkPN "Pete"; -- from DictEng -lin peter_PN = mkPN "Peter"; -- from DictEng -lin peter_i_PN = mkPN "Peter I" ; -lin peter_pan_PN = mkPN "Peter Pan" ; -lin peter_pan_collar_PN = mkPN "Peter Pan collar" ; -lin peterborough_PN = mkPN "Peterborough"; -- from DictEng -lin peterhead_PN = mkPN "Peterhead"; -- from DictEng -lin peterlee_PN = mkPN "Peterlee"; -- from DictEng -lin petersburg_PN = mkPN "Petersburg" ; -lin petersfield_PN = mkPN "Petersfield"; -- from DictEng -lin petrarch_PN = mkPN "Petrarch" ; -lin petrarchan_sonnet_PN = mkPN "Petrarchan sonnet" ; -lin petri_dish_PN = mkPN "Petri dish" ; -lin petrified_forest_national_park_PN = mkPN "Petrified Forest National Park" ; -lin petrocoptis_PN = mkPN "Petrocoptis" ; -lin petrogale_PN = mkPN "Petrogale" ; -lin petromyzon_PN = mkPN "Petromyzon" ; -lin petromyzoniformes_PN = mkPN "Petromyzoniformes" ; -lin petromyzontidae_PN = mkPN "Petromyzontidae" ; -lin petronas_towers_PN = mkPN "Petronas Towers" ; -lin petronius_PN = mkPN "Petronius" ; -lin petroselinum_PN = mkPN "Petroselinum" ; -lin petteria_PN = mkPN "Petteria" ; -lin peyer's_patch_PN = mkPN "Peyer's patch" ; -lin peziza_PN = mkPN "Peziza" ; -lin peziza_domicilina_PN = mkPN "Peziza domicilina" ; -lin pezizaceae_PN = mkPN "Pezizaceae" ; -lin pezizales_PN = mkPN "Pezizales" ; -lin pezophaps_PN = mkPN "Pezophaps" ; -lin ph_d__PN = mkPN "Ph D " ; -lin phacochoerus_PN = mkPN "Phacochoerus" ; -lin phaeophyceae_PN = mkPN "Phaeophyceae" ; -lin phaeophyta_PN = mkPN "Phaeophyta" ; -lin phaethon_PN = mkPN "Phaethon" ; -lin phaethontidae_PN = mkPN "Phaethontidae" ; -lin phagun_PN = mkPN "Phagun" ; -lin phalacrocoracidae_PN = mkPN "Phalacrocoracidae" ; -lin phalacrocorax_PN = mkPN "Phalacrocorax" ; -lin phalaenopsis_PN = mkPN "Phalaenopsis" ; -lin phalaenoptilus_PN = mkPN "Phalaenoptilus" ; -lin phalangeridae_PN = mkPN "Phalangeridae" ; -lin phalangida_PN = mkPN "Phalangida" ; -lin phalangiidae_PN = mkPN "Phalangiidae" ; -lin phalangium_PN = mkPN "Phalangium" ; -lin phalaris_PN = mkPN "Phalaris" ; -lin phalaropidae_PN = mkPN "Phalaropidae" ; -lin phalaropus_PN = mkPN "Phalaropus" ; -lin phallaceae_PN = mkPN "Phallaceae" ; -lin phallales_PN = mkPN "Phallales" ; -lin phallus_PN = mkPN "Phallus" ; -lin phallus_ravenelii_PN = mkPN "Phallus ravenelii" ; -lin phanerogamae_PN = mkPN "Phanerogamae" ; -lin phanerozoic_PN = mkPN "Phanerozoic" ; -lin pharaoh_PN = mkPN "Pharaoh" ; -lin pharaonic_A = mkA "Pharaonic" ; -lin pharisee_PN = mkPN "Pharisee" ; -lin pharomacrus_PN = mkPN "Pharomacrus" ; -lin pharsalus_PN = mkPN "Pharsalus" ; -lin phascogale_PN = mkPN "Phascogale" ; -lin phascolarctos_PN = mkPN "Phascolarctos" ; -lin phaseolus_PN = mkPN "Phaseolus" ; -lin phasianidae_PN = mkPN "Phasianidae" ; -lin phasianus_PN = mkPN "Phasianus" ; -lin phasmida_PN = mkPN "Phasmida" ; -lin phasmidae_PN = mkPN "Phasmidae" ; -lin phasmidia_PN = mkPN "Phasmidia" ; -lin phegopteris_PN = mkPN "Phegopteris" ; -lin phellodendron_PN = mkPN "Phellodendron" ; -lin phidias_PN = mkPN "Phidias" ; -lin phil_PN = mkPN "Phil"; -- from DictEng -lin philadelphaceae_PN = mkPN "Philadelphaceae" ; -lin philadelphia_PN = mkPN "Philadelphia"; -- from DictEng -lin philadelphia_fleabane_PN = mkPN "Philadelphia fleabane" ; -lin philaenus_PN = mkPN "Philaenus" ; -lin philemon_PN = mkPN "Philemon" ; -lin philip_PN = mkPN "Philip"; -- from DictEng -lin philip_ii_PN = mkPN "Philip II" ; -lin philip_v_PN = mkPN "Philip V" ; -lin philip_vi_PN = mkPN "Philip VI" ; -lin philippa_PN = mkPN "Philippa"; -- from DictEng -lin philippi_PN = mkPN "Philippi" ; -lin philippian_PN = mkPN "Philippian" ; -lin philippine_PN = mkPN "Philippine" ; -lin philippine_sea_PN = mkPN "Philippine Sea" ; -lin philippine_mahogany_PN = mkPN "Philippine mahogany" ; -lin philippine_monetary_unit_PN = mkPN "Philippine monetary unit" ; -lin philippine_peso_PN = mkPN "Philippine peso" ; -lin philippines_PN = mkPN "Philippines"; -- from DictEng -lin philistia_PN = mkPN "Philistia" ; -lin philistine_A = mkA "Philistine" ; -lin philistine_PN = mkPN "Philistine" ; -lin phillips_screw_PN = mkPN "Phillips screw" ; -lin phillips_screwdriver_PN = mkPN "Phillips screwdriver" ; -lin phillyrea_PN = mkPN "Phillyrea" ; -lin philohela_PN = mkPN "Philohela" ; -lin philomachus_PN = mkPN "Philomachus" ; -lin philophylla_PN = mkPN "Philophylla" ; -lin phintias_PN = mkPN "Phintias" ; -lin phlebodium_PN = mkPN "Phlebodium" ; -lin phlebotomus_PN = mkPN "Phlebotomus" ; -lin phleum_PN = mkPN "Phleum" ; -lin phnom_penh_PN = mkPN "Phnom - penh"; -- from DictEng -lin phobos_PN = mkPN "Phobos" ; -lin phoca_PN = mkPN "Phoca" ; -lin phocidae_PN = mkPN "Phocidae" ; -lin phocoena_PN = mkPN "Phocoena" ; -lin phoebe_PN = mkPN "Phoebe"; -- from DictEng -lin phoenicia_PN = mkPN "Phoenicia" ; -lin phoenician_A = mkA "Phoenician" ; -lin phoenician_PN = mkPN "Phoenician" ; -lin phoenicopteridae_PN = mkPN "Phoenicopteridae" ; -lin phoeniculidae_PN = mkPN "Phoeniculidae" ; -lin phoeniculus_PN = mkPN "Phoeniculus" ; -lin phoenicurus_PN = mkPN "Phoenicurus" ; -lin phoenix_PN = mkPN "Phoenix"; -- from DictEng -lin pholadidae_PN = mkPN "Pholadidae" ; -lin pholas_PN = mkPN "Pholas" ; -lin pholidae_PN = mkPN "Pholidae" ; -lin pholidota_PN = mkPN "Pholidota" ; -lin pholiota_PN = mkPN "Pholiota" ; -lin pholiota_astragalina_PN = mkPN "Pholiota astragalina" ; -lin pholiota_aurea_PN = mkPN "Pholiota aurea" ; -lin pholiota_destruens_PN = mkPN "Pholiota destruens" ; -lin pholiota_flammans_PN = mkPN "Pholiota flammans" ; -lin pholiota_flavida_PN = mkPN "Pholiota flavida" ; -lin pholiota_squarrosa_PN = mkPN "Pholiota squarrosa" ; -lin pholiota_squarrosa_adiposa_PN = mkPN "Pholiota squarrosa adiposa" ; -lin pholiota_squarrosoides_PN = mkPN "Pholiota squarrosoides" ; -lin pholis_PN = mkPN "Pholis" ; -lin pholistoma_PN = mkPN "Pholistoma" ; -lin phoradendron_PN = mkPN "Phoradendron" ; -lin phoronida_PN = mkPN "Phoronida" ; -lin photinia_PN = mkPN "Photinia" ; -lin photius_PN = mkPN "Photius" ; -lin photoblepharon_PN = mkPN "Photoblepharon" ; -lin photostat_PN = mkPN "Photostat" ; -lin phoxinus_PN = mkPN "Phoxinus" ; -lin phragmipedium_PN = mkPN "Phragmipedium" ; -lin phragmites_PN = mkPN "Phragmites" ; -lin phrygia_PN = mkPN "Phrygia" ; -lin phrygian_PN = mkPN "Phrygian" ; -lin phrygian_deity_PN = mkPN "Phrygian deity" ; -lin phrynosoma_PN = mkPN "Phrynosoma" ; -lin phthiriidae_PN = mkPN "Phthiriidae" ; -lin phthirius_PN = mkPN "Phthirius" ; -lin phthorimaea_PN = mkPN "Phthorimaea" ; -lin phycomycetes_PN = mkPN "Phycomycetes" ; -lin phyllidae_PN = mkPN "Phyllidae" ; -lin phyllis_PN = mkPN "Phyllis"; -- from DictEng -lin phyllitis_PN = mkPN "Phyllitis" ; -lin phyllium_PN = mkPN "Phyllium" ; -lin phyllocladaceae_PN = mkPN "Phyllocladaceae" ; -lin phyllocladus_PN = mkPN "Phyllocladus" ; -lin phyllodoce_PN = mkPN "Phyllodoce" ; -lin phylloporus_PN = mkPN "Phylloporus" ; -lin phylloporus_boletinoides_PN = mkPN "Phylloporus boletinoides" ; -lin phyllorhynchus_PN = mkPN "Phyllorhynchus" ; -lin phylloscopus_PN = mkPN "Phylloscopus" ; -lin phyllostachys_PN = mkPN "Phyllostachys" ; -lin phyllostomidae_PN = mkPN "Phyllostomidae" ; -lin phyllostomus_PN = mkPN "Phyllostomus" ; -lin phyllostomus_hastatus_PN = mkPN "Phyllostomus hastatus" ; -lin phylloxera_PN = mkPN "Phylloxera" ; -lin phylloxeridae_PN = mkPN "Phylloxeridae" ; -lin physalia_PN = mkPN "Physalia" ; -lin physalis_PN = mkPN "Physalis" ; -lin physaria_PN = mkPN "Physaria" ; -lin physeter_PN = mkPN "Physeter" ; -lin physeteridae_PN = mkPN "Physeteridae" ; -lin physidae_PN = mkPN "Physidae" ; -lin physostigma_PN = mkPN "Physostigma" ; -lin phytolacca_PN = mkPN "Phytolacca" ; -lin phytolaccaceae_PN = mkPN "Phytolaccaceae" ; -lin phytomastigina_PN = mkPN "Phytomastigina" ; -lin phytophthora_PN = mkPN "Phytophthora" ; -lin phytophthora_citrophthora_PN = mkPN "Phytophthora citrophthora" ; -lin phytophthora_infestans_PN = mkPN "Phytophthora infestans" ; -lin piacenza_PN = mkPN "Piacenza"; -- from DictEng -lin piaf_PN = mkPN "Piaf" ; -lin piaget_PN = mkPN "Piaget" ; -lin piagetian_A = mkA "Piagetian" ; -lin pica_PN = mkPN "Pica" ; -lin picardie_PN = mkPN "Picardie" ; -lin picariae_PN = mkPN "Picariae" ; -lin picasso_PN = mkPN "Picasso" ; -lin picea_PN = mkPN "Picea" ; -lin picidae_PN = mkPN "Picidae" ; -lin piciformes_PN = mkPN "Piciformes" ; -lin pick's_disease_PN = mkPN "Pick's disease" ; -lin pickeringia_PN = mkPN "Pickeringia" ; -lin pickett_PN = mkPN "Pickett" ; -lin pickford_PN = mkPN "Pickford" ; -lin picoides_PN = mkPN "Picoides" ; -lin picrasma_PN = mkPN "Picrasma" ; -lin picris_PN = mkPN "Picris" ; -lin pictor_PN = mkPN "Pictor" ; -lin picumnus_PN = mkPN "Picumnus" ; -lin picus_PN = mkPN "Picus" ; -lin pied_piper_PN = mkPN "Pied Piper" ; -lin piedmont_PN = mkPN "Piedmont" ; -lin piedmont_glacier_PN = mkPN "Piedmont glacier" ; -lin pierce_PN = mkPN "Pierce" ; -lin pieridae_PN = mkPN "Pieridae" ; -lin pieris_PN = mkPN "Pieris" ; -lin pierre_PN = mkPN "Pierre" ; -lin pierre_laporte_bridge_PN = mkPN "Pierre Laporte Bridge" ; -lin pierrot_PN = mkPN "Pierrot" ; -lin pietism_PN = mkPN "Pietism" ; -lin pike's_peak_PN = mkPN "Pike's Peak" ; -lin pilate_PN = mkPN "Pilate" ; -lin pilea_PN = mkPN "Pilea" ; -lin pilgrim_PN = mkPN "Pilgrim" ; -lin pilgrim's_progress_PN = mkPN "Pilgrim's Progress" ; -lin pill_PN = mkPN "Pill"; -- from DictEng -lin pillars_of_hercules_PN = mkPN "Pillars of Hercules" ; -lin pilosella_PN = mkPN "Pilosella" ; -lin pilsen_PN = mkPN "Pilsen" ; -lin pilsner_PN = mkPN "Pilsner" ; -lin piltdown_man_PN = mkPN "Piltdown man" ; -lin pilularia_PN = mkPN "Pilularia" ; -lin pima_PN = mkPN "Pima" ; -lin pimenta_PN = mkPN "Pimenta" ; -lin pimlico_PN = mkPN "Pimlico" ; -lin pimpinella_PN = mkPN "Pimpinella" ; -lin pinaceae_PN = mkPN "Pinaceae" ; -lin pinatubo_PN = mkPN "Pinatubo" ; -lin pinckneya_PN = mkPN "Pinckneya" ; -lin pinctada_PN = mkPN "Pinctada" ; -lin pincus_PN = mkPN "Pincus" ; -lin pindar_PN = mkPN "Pindar" ; -lin pindaric_ode_PN = mkPN "Pindaric ode" ; -lin pine_bluff_PN = mkPN "Pine Bluff" ; -lin pineus_PN = mkPN "Pineus" ; -lin ping_PN = mkPN "Ping" ; -lin pinguicula_PN = mkPN "Pinguicula" ; -lin pinguinus_PN = mkPN "Pinguinus" ; -lin pinicola_PN = mkPN "Pinicola" ; -lin pinnipedia_PN = mkPN "Pinnipedia" ; -lin pinnotheres_PN = mkPN "Pinnotheres" ; -lin pinnotheridae_PN = mkPN "Pinnotheridae" ; -lin pinopsida_PN = mkPN "Pinopsida" ; -lin pinot_PN = mkPN "Pinot" ; -lin pinot_blanc_PN = mkPN "Pinot blanc" ; -lin pinot_noir_PN = mkPN "Pinot noir" ; -lin pinsk_PN = mkPN "Pinsk" ; -lin pinter_PN = mkPN "Pinter" ; -lin pinus_PN = mkPN "Pinus" ; -lin pipa_PN = mkPN "Pipa" ; -lin piper_PN = mkPN "Piper" ; -lin piperaceae_PN = mkPN "Piperaceae" ; -lin piperales_PN = mkPN "Piperales" ; -lin pipidae_PN = mkPN "Pipidae" ; -lin pipile_PN = mkPN "Pipile" ; -lin pipilo_PN = mkPN "Pipilo" ; -lin pipistrellus_PN = mkPN "Pipistrellus" ; -lin pippin_PN = mkPN "Pippin" ; -lin pipra_PN = mkPN "Pipra" ; -lin pipridae_PN = mkPN "Pipridae" ; -lin piptadenia_PN = mkPN "Piptadenia" ; -lin pipturus_PN = mkPN "Pipturus" ; -lin pipturus_albidus_PN = mkPN "Pipturus albidus" ; -lin piqueria_PN = mkPN "Piqueria" ; -lin piraeus_PN = mkPN "Piraeus"; -- from DictEng -lin pirandello_PN = mkPN "Pirandello" ; -lin piranga_PN = mkPN "Piranga" ; -lin pisa_PN = mkPN "Pisa"; -- from DictEng -lin pisces_PN = mkPN "Pisces"; -- from DictEng -lin piscidia_PN = mkPN "Piscidia" ; -lin pisonia_PN = mkPN "Pisonia" ; -lin pissis_PN = mkPN "Pissis" ; -lin pistacia_PN = mkPN "Pistacia" ; -lin piston_PN = mkPN "Piston" ; -lin pisum_PN = mkPN "Pisum" ; -lin pithecanthropus_PN = mkPN "Pithecanthropus" ; -lin pithecellobium_PN = mkPN "Pithecellobium" ; -lin pithecia_PN = mkPN "Pithecia" ; -lin pitman_PN = mkPN "Pitman" ; -lin pitot_PN = mkPN "Pitot" ; -lin pitot_static_tube_PN = mkPN "Pitot static tube" ; -lin pitot_tube_PN = mkPN "Pitot tube" ; -lin pitt_PN = mkPN "Pitt" ; -lin pittidae_PN = mkPN "Pittidae" ; -lin pittsburgh_PN = mkPN "Pittsburgh"; -- from DictEng -lin pittsfield_PN = mkPN "Pittsfield" ; -lin pituophis_PN = mkPN "Pituophis" ; -lin pitymys_PN = mkPN "Pitymys" ; -lin pityrogramma_PN = mkPN "Pityrogramma" ; -lin pius_ii_PN = mkPN "Pius II" ; -lin pius_ix_PN = mkPN "Pius IX" ; -lin pius_v_PN = mkPN "Pius V" ; -lin pius_vi_PN = mkPN "Pius VI" ; -lin pius_vii_PN = mkPN "Pius VII" ; -lin pius_x_PN = mkPN "Pius X" ; -lin pius_xi_PN = mkPN "Pius XI" ; -lin pius_xii_PN = mkPN "Pius XII" ; -lin pizarro_PN = mkPN "Pizarro" ; -lin placodermi_PN = mkPN "Placodermi" ; -lin placuna_PN = mkPN "Placuna" ; -lin plagianthus_PN = mkPN "Plagianthus" ; -lin plains_indian_PN = mkPN "Plains Indian" ; -lin planck_PN = mkPN "Planck" ; -lin planck's_constant_PN = mkPN "Planck's constant" ; -lin planck's_law_PN = mkPN "Planck's law" ; -lin planck's_radiation_law_PN = mkPN "Planck's radiation law" ; -lin planera_PN = mkPN "Planera" ; -lin plano_PN = mkPN "Plano" ; -lin planococcus_PN = mkPN "Planococcus" ; -lin plantae_PN = mkPN "Plantae" ; -lin plantagenet_PN = mkPN "Plantagenet" ; -lin plantaginaceae_PN = mkPN "Plantaginaceae" ; -lin plantaginales_PN = mkPN "Plantaginales" ; -lin plantago_PN = mkPN "Plantago" ; -lin plantation_PN = mkPN "Plantation" ; -lin plasmodiidae_PN = mkPN "Plasmodiidae" ; -lin plasmodiophora_PN = mkPN "Plasmodiophora" ; -lin plasmodiophoraceae_PN = mkPN "Plasmodiophoraceae" ; -lin plassey_PN = mkPN "Plassey" ; -lin plasticine_PN = mkPN "Plasticine" ; -lin plataea_PN = mkPN "Plataea" ; -lin platalea_PN = mkPN "Platalea" ; -lin plataleidae_PN = mkPN "Plataleidae" ; -lin platanaceae_PN = mkPN "Platanaceae" ; -lin platanistidae_PN = mkPN "Platanistidae" ; -lin platanthera_PN = mkPN "Platanthera" ; -lin platanus_PN = mkPN "Platanus" ; -lin plath_PN = mkPN "Plath" ; -lin platichthys_PN = mkPN "Platichthys" ; -lin plato_PN = mkPN "Plato" ; -lin plato's_academy_PN = mkPN "Plato's Academy" ; -lin platonic_A = compoundA (mkA "platonic"); -- from DictEng -lin platonism_PN = mkPN "Platonism" ; -lin platonist_PN = mkPN "Platonist" ; -lin platonistic_A = mkA "Platonistic" ; -lin platt_national_park_PN = mkPN "Platt National Park" ; -lin platte_PN = mkPN "Platte" ; -lin platte_river_penstemon_PN = mkPN "Platte River penstemon" ; -lin platycephalidae_PN = mkPN "Platycephalidae" ; -lin platycerium_PN = mkPN "Platycerium" ; -lin platyctenea_PN = mkPN "Platyctenea" ; -lin platyhelminthes_PN = mkPN "Platyhelminthes" ; -lin platylobium_PN = mkPN "Platylobium" ; -lin platymiscium_PN = mkPN "Platymiscium" ; -lin platypoecilus_PN = mkPN "Platypoecilus" ; -lin platyrrhini_PN = mkPN "Platyrrhini" ; -lin platystemon_PN = mkPN "Platystemon" ; -lin plautus_PN = mkPN "Plautus" ; -lin plc_PN = mkPN "Plc"; -- from DictEng -lin plecoptera_PN = mkPN "Plecoptera" ; -lin plecotus_PN = mkPN "Plecotus" ; -lin plectania_PN = mkPN "Plectania" ; -lin plectognathi_PN = mkPN "Plectognathi" ; -lin plectomycetes_PN = mkPN "Plectomycetes" ; -lin plectophera_PN = mkPN "Plectophera" ; -lin plectorrhiza_PN = mkPN "Plectorrhiza" ; -lin plectrophenax_PN = mkPN "Plectrophenax" ; -lin pleiades_PN = mkPN "Pleiades" ; -lin pleione_PN = mkPN "Pleione" ; -lin pleiospilos_PN = mkPN "Pleiospilos" ; -lin pleistocene_PN = mkPN "Pleistocene" ; -lin plesianthropus_PN = mkPN "Plesianthropus" ; -lin plesiosauria_PN = mkPN "Plesiosauria" ; -lin plethodon_PN = mkPN "Plethodon" ; -lin plethodontidae_PN = mkPN "Plethodontidae" ; -lin pleurobrachia_PN = mkPN "Pleurobrachia" ; -lin pleurobrachiidae_PN = mkPN "Pleurobrachiidae" ; -lin pleuronectes_PN = mkPN "Pleuronectes" ; -lin pleuronectidae_PN = mkPN "Pleuronectidae" ; -lin pleurosorus_PN = mkPN "Pleurosorus" ; -lin pleurotus_PN = mkPN "Pleurotus" ; -lin plevna_PN = mkPN "Plevna" ; -lin plexiglas_PN = mkPN "Plexiglas" ; -lin plicatoperipatus_PN = mkPN "Plicatoperipatus" ; -lin plicatoperipatus_jamaicensis_PN = mkPN "Plicatoperipatus jamaicensis" ; -lin plinian_eruption_PN = mkPN "Plinian eruption" ; -lin pliny_PN = mkPN "Pliny" ; -lin pliocene_PN = mkPN "Pliocene" ; -lin ploceidae_PN = mkPN "Ploceidae" ; -lin ploceus_PN = mkPN "Ploceus" ; -lin plotinus_PN = mkPN "Plotinus" ; -lin plott_hound_PN = mkPN "Plott hound" ; -lin plovdiv_PN = mkPN "Plovdiv" ; -lin plumbaginaceae_PN = mkPN "Plumbaginaceae" ; -lin plumbaginales_PN = mkPN "Plumbaginales" ; -lin plumeria_PN = mkPN "Plumeria" ; -lin plutarch_PN = mkPN "Plutarch" ; -lin pluteaceae_PN = mkPN "Pluteaceae" ; -lin pluteus_PN = mkPN "Pluteus" ; -lin pluteus_aurantiorugosus_PN = mkPN "Pluteus aurantiorugosus" ; -lin pluteus_magnus_PN = mkPN "Pluteus magnus" ; -lin pluto_PN = mkPN "Pluto"; -- from DictEng -lin pluvialis_PN = mkPN "Pluvialis" ; -lin pluvianus_PN = mkPN "Pluvianus" ; -lin pluviose_PN = mkPN "Pluviose" ; -lin plymouth_PN = mkPN "Plymouth"; -- from DictEng -lin plymouth_colony_PN = mkPN "Plymouth Colony" ; -lin plymouth_rock_PN = mkPN "Plymouth Rock" ; -lin po_PN = mkPN "Po" ; -lin poa_PN = mkPN "Poa" ; -lin pobeda_peak_PN = mkPN "Pobeda Peak" ; -lin pocahontas_PN = mkPN "Pocahontas" ; -lin pocatello_PN = mkPN "Pocatello" ; -lin podalyria_PN = mkPN "Podalyria" ; -lin podargidae_PN = mkPN "Podargidae" ; -lin podargus_PN = mkPN "Podargus" ; -lin podaxaceae_PN = mkPN "Podaxaceae" ; -lin podiceps_PN = mkPN "Podiceps" ; -lin podicipedidae_PN = mkPN "Podicipedidae" ; -lin podicipitiformes_PN = mkPN "Podicipitiformes" ; -lin podilymbus_PN = mkPN "Podilymbus" ; -lin podocarpaceae_PN = mkPN "Podocarpaceae" ; -lin podocarpus_PN = mkPN "Podocarpus" ; -lin podophyllum_PN = mkPN "Podophyllum" ; -lin poe_PN = mkPN "Poe" ; -lin poeciliidae_PN = mkPN "Poeciliidae" ; -lin poecilocapsus_PN = mkPN "Poecilocapsus" ; -lin poecilogale_PN = mkPN "Poecilogale" ; -lin poephila_PN = mkPN "Poephila" ; -lin pogonophora_PN = mkPN "Pogonophora" ; -lin pogostemon_PN = mkPN "Pogostemon" ; -lin poinciana_PN = mkPN "Poinciana" ; -lin poisson_distribution_PN = mkPN "Poisson distribution" ; -lin poitier_PN = mkPN "Poitier" ; -lin poitiers_PN = mkPN "Poitiers" ; -lin poitou_charentes_PN = mkPN "Poitou Charentes" ; -lin pokomo_PN = mkPN "Pokomo" ; -lin poland_PN = mkPN "Poland"; -- from DictEng -lin polanisia_PN = mkPN "Polanisia" ; -lin polaris_PN = mkPN "Polaris" ; -lin polaroid_PN = mkPN "Polaroid" ; -lin polaroid_camera_PN = mkPN "Polaroid camera" ; -lin pole_PN = mkPN "Pole" ; -lin polemoniaceae_PN = mkPN "Polemoniaceae" ; -lin polemoniales_PN = mkPN "Polemoniales" ; -lin polianthes_PN = mkPN "Polianthes" ; -lin polioptila_PN = mkPN "Polioptila" ; -lin polish_A = compoundA (mkA "polish"); -- from DictEng -lin polish_PN = mkPN "Polish" ; -lin polish_monetary_unit_PN = mkPN "Polish monetary unit" ; -lin polistes_PN = mkPN "Polistes" ; -lin polistes_annularis_PN = mkPN "Polistes annularis" ; -lin polk_PN = mkPN "Polk" ; -lin pollachius_PN = mkPN "Pollachius" ; -lin pollack_PN = mkPN "Pollack" ; -lin pollock_PN = mkPN "Pollock" ; -lin pollux_PN = mkPN "Pollux" ; -lin polly_PN = mkPN "Polly"; -- from DictEng -lin polo_PN = mkPN "Polo" ; -lin polyangiaceae_PN = mkPN "Polyangiaceae" ; -lin polyangium_PN = mkPN "Polyangium" ; -lin polyborus_PN = mkPN "Polyborus" ; -lin polybotrya_PN = mkPN "Polybotrya" ; -lin polycarp_PN = mkPN "Polycarp" ; -lin polychaeta_PN = mkPN "Polychaeta" ; -lin polycirrus_PN = mkPN "Polycirrus" ; -lin polydactylus_PN = mkPN "Polydactylus" ; -lin polyergus_PN = mkPN "Polyergus" ; -lin polygala_PN = mkPN "Polygala" ; -lin polygalaceae_PN = mkPN "Polygalaceae" ; -lin polygonaceae_PN = mkPN "Polygonaceae" ; -lin polygonales_PN = mkPN "Polygonales" ; -lin polygonatum_PN = mkPN "Polygonatum" ; -lin polygonia_PN = mkPN "Polygonia" ; -lin polygonum_PN = mkPN "Polygonum" ; -lin polyhymnia_PN = mkPN "Polyhymnia" ; -lin polymastigina_PN = mkPN "Polymastigina" ; -lin polynemidae_PN = mkPN "Polynemidae" ; -lin polynesia_PN = mkPN "Polynesia" ; -lin polynesian_A = mkA "Polynesian" ; -lin polynesian_PN = mkPN "Polynesian" ; -lin polynesian_tattler_PN = mkPN "Polynesian tattler" ; -lin polyodon_PN = mkPN "Polyodon" ; -lin polyodontidae_PN = mkPN "Polyodontidae" ; -lin polypedates_PN = mkPN "Polypedates" ; -lin polypedatidae_PN = mkPN "Polypedatidae" ; -lin polyplacophora_PN = mkPN "Polyplacophora" ; -lin polypodiaceae_PN = mkPN "Polypodiaceae" ; -lin polypodium_PN = mkPN "Polypodium" ; -lin polyporaceae_PN = mkPN "Polyporaceae" ; -lin polyporus_PN = mkPN "Polyporus" ; -lin polyporus_squamosus_PN = mkPN "Polyporus squamosus" ; -lin polyporus_tenuiculus_PN = mkPN "Polyporus tenuiculus" ; -lin polyprion_PN = mkPN "Polyprion" ; -lin polystichum_PN = mkPN "Polystichum" ; -lin pomacanthus_PN = mkPN "Pomacanthus" ; -lin pomacentridae_PN = mkPN "Pomacentridae" ; -lin pomacentrus_PN = mkPN "Pomacentrus" ; -lin pomaderris_PN = mkPN "Pomaderris" ; -lin pomatomidae_PN = mkPN "Pomatomidae" ; -lin pomatomus_PN = mkPN "Pomatomus" ; -lin pomeranian_PN = mkPN "Pomeranian" ; -lin pomo_PN = mkPN "Pomo" ; -lin pomolobus_PN = mkPN "Pomolobus" ; -lin pomoxis_PN = mkPN "Pomoxis" ; -lin pompadour_PN = mkPN "Pompadour" ; -lin pompeii_PN = mkPN "Pompeii" ; -lin pompey_PN = mkPN "Pompey" ; -lin ponca_PN = mkPN "Ponca" ; -lin ponce_de_leon_PN = mkPN "Ponce de Leon" ; -lin poncirus_PN = mkPN "Poncirus" ; -lin pongamia_PN = mkPN "Pongamia" ; -lin pongidae_PN = mkPN "Pongidae" ; -lin pongo_PN = mkPN "Pongo" ; -lin pons_PN = mkPN "Pons" ; -lin ponselle_PN = mkPN "Ponselle" ; -lin pont_llan_fraith_PN = mkPN "Pont - llan - fraith"; -- from DictEng -lin pontardawe_PN = mkPN "Pontardawe"; -- from DictEng -lin pontardulais_PN = mkPN "Pontardulais"; -- from DictEng -lin ponte_25_de_abril_PN = mkPN "Ponte 25 de Abril" ; -lin pontederia_PN = mkPN "Pontederia" ; -lin pontederiaceae_PN = mkPN "Pontederiaceae" ; -lin pontefract_PN = mkPN "Pontefract"; -- from DictEng -lin pontiac_PN = mkPN "Pontiac" ; -lin pontus_PN = mkPN "Pontus" ; -lin pontycymmer_PN = mkPN "Pontycymmer"; -- from DictEng -lin pontypool_PN = mkPN "Pontypool"; -- from DictEng -lin pooecetes_PN = mkPN "Pooecetes" ; -lin poole_PN = mkPN "Poole"; -- from DictEng -lin poona_PN = mkPN "Poona"; -- from DictEng -lin pop_art_PN = mkPN "Pop Art" ; -lin pope_PN = mkPN "Pope" ; -lin popillia_PN = mkPN "Popillia" ; -lin poplar_bluff_PN = mkPN "Poplar Bluff" ; -lin popper_PN = mkPN "Popper" ; -lin popular_front_for_the_liberation_of_palestine_PN = mkPN "Popular Front for the Liberation of Palestine" ; -lin popular_front_for_the_liberation_of_palestine_general_command_PN = mkPN "Popular Front for the Liberation of Palestine General Command" ; -lin popular_struggle_front_PN = mkPN "Popular Struggle Front" ; -lin population_commission_PN = mkPN "Population Commission" ; -lin populus_PN = mkPN "Populus" ; -lin porcellio_PN = mkPN "Porcellio" ; -lin porcellionidae_PN = mkPN "Porcellionidae" ; -lin porifera_PN = mkPN "Porifera" ; -lin poronotus_PN = mkPN "Poronotus" ; -lin porphyra_PN = mkPN "Porphyra" ; -lin porphyrio_PN = mkPN "Porphyrio" ; -lin porphyrula_PN = mkPN "Porphyrula" ; -lin port_au_prince_PN = mkPN "Port au Prince" ; -lin port_arthur_PN = mkPN "Port Arthur" ; -lin port_jackson_fig_PN = mkPN "Port Jackson fig" ; -lin port_jackson_heath_PN = mkPN "Port Jackson heath" ; -lin port_jackson_pine_PN = mkPN "Port Jackson pine" ; -lin port_louis_PN = mkPN "Port Louis" ; -lin port_moresby_PN = mkPN "Port Moresby" ; -lin port_orford_cedar_PN = mkPN "Port Orford cedar" ; -lin port_sudan_PN = mkPN "Port Sudan" ; -lin port_vila_PN = mkPN "Port Vila" ; -lin port_glasgow_PN = mkPN "Port glasgow"; -- from DictEng -lin port_of_spain_PN = mkPN "Port of Spain" ; -lin port_talbot_PN = mkPN "Port talbot"; -- from DictEng -lin porte_PN = mkPN "Porte" ; -lin porter_PN = mkPN "Porter" ; -lin porthcawl_PN = mkPN "Porthcawl"; -- from DictEng -lin porthmadog_PN = mkPN "Porthmadog"; -- from DictEng -lin portishead_PN = mkPN "Portishead"; -- from DictEng -lin portland_PN = mkPN "Portland"; -- from DictEng -lin porto_PN = mkPN "Porto" ; -lin porto_novo_PN = mkPN "Porto Novo" ; -lin porto_alegre_PN = mkPN "Porto alegre"; -- from DictEng -lin portsmouth_PN = mkPN "Portsmouth"; -- from DictEng -lin portugal_PN = mkPN "Portugal"; -- from DictEng -lin portuguese_A = compoundA (mkA "Portuguese"); -- from DictEng -lin portuguese_PN = mkPN "Portuguese" ; -lin portuguese_escudo_PN = mkPN "Portuguese escudo" ; -lin portuguese_man_of_war_PN = mkPN "Portuguese man of war" ; -lin portuguese_monetary_unit_PN = mkPN "Portuguese monetary unit" ; -lin portulacaceae_PN = mkPN "Portulacaceae" ; -lin portunidae_PN = mkPN "Portunidae" ; -lin portunus_PN = mkPN "Portunus" ; -lin porzana_PN = mkPN "Porzana" ; -lin poseidon_PN = mkPN "Poseidon" ; -lin post_PN = mkPN "Post" ; -lin post_it_PN = mkPN "Post It" ; -lin post_office_box_PN = mkPN "Post Office box" ; -lin postal_rate_commission_PN = mkPN "Postal Rate Commission" ; -lin postimpressionist_PN = mkPN "Postimpressionist" ; -lin postum_PN = mkPN "Postum" ; -lin potamogalidae_PN = mkPN "Potamogalidae" ; -lin potamogeton_PN = mkPN "Potamogeton" ; -lin potamogetonaceae_PN = mkPN "Potamogetonaceae" ; -lin potamophis_PN = mkPN "Potamophis" ; -lin potawatomi_PN = mkPN "Potawatomi" ; -lin potemkin_PN = mkPN "Potemkin" ; -lin potemkin_village_PN = mkPN "Potemkin village" ; -lin potentilla_PN = mkPN "Potentilla" ; -lin poterium_PN = mkPN "Poterium" ; -lin potomac_PN = mkPN "Potomac" ; -lin potoroinae_PN = mkPN "Potoroinae" ; -lin potorous_PN = mkPN "Potorous" ; -lin potos_PN = mkPN "Potos" ; -lin potsdam_PN = mkPN "Potsdam"; -- from DictEng -lin potsdam_conference_PN = mkPN "Potsdam Conference" ; -lin pott's_disease_PN = mkPN "Pott's disease" ; -lin potters_bar_PN = mkPN "Potters bar"; -- from DictEng -lin poulenc_PN = mkPN "Poulenc" ; -lin pound_PN = mkPN "Pound" ; -lin poussin_PN = mkPN "Poussin" ; -lin pouteria_PN = mkPN "Pouteria" ; -lin powell_PN = mkPN "Powell" ; -lin powhatan_PN = mkPN "Powhatan" ; -lin powys_PN = mkPN "Powys"; -- from DictEng -lin poyang_PN = mkPN "Poyang" ; -lin poynton_PN = mkPN "Poynton"; -- from DictEng -lin poznan_PN = mkPN "Poznan"; -- from DictEng -lin praetorian_A = compoundA (mkA "praetorian"); -- from DictEng -lin praetorian_guard_PN = mkPN "Praetorian Guard" ; -lin prague_PN = mkPN "Prague"; -- from DictEng -lin praia_PN = mkPN "Praia" ; -lin prairial_PN = mkPN "Prairial" ; -lin prajapati_PN = mkPN "Prajapati" ; -lin prakrit_PN = mkPN "Prakrit" ; -lin prakritic_A = mkA "Prakritic" ; -lin prato_PN = mkPN "Prato"; -- from DictEng -lin praunus_PN = mkPN "Praunus" ; -lin praxiteles_PN = mkPN "Praxiteles" ; -lin prayer_of_azariah_and_song_of_the_three_children_PN = mkPN "Prayer of Azariah and Song of the Three Children" ; -lin pre_raphaelite_A = compoundA (mkA "pre - raphaelite"); -- from DictEng -lin pre_raphaelite_PN = mkPN "Pre Raphaelite" ; -lin preakness_PN = mkPN "Preakness" ; -lin precambrian_PN = mkPN "Precambrian" ; -lin premium_bond_PN = mkPN "Premium Bond" ; -lin prenanthes_PN = mkPN "Prenanthes" ; -lin presbyterian_PN = mkPN "Presbyterian" ; -lin presbyterian_church_PN = mkPN "Presbyterian Church" ; -lin presbyterianism_PN = mkPN "Presbyterianism" ; -lin presbytes_PN = mkPN "Presbytes" ; -lin prescot_PN = mkPN "Prescot"; -- from DictEng -lin prescott_PN = mkPN "Prescott" ; -lin president_of_the_united_states_PN = mkPN "President of the United States" ; -lin presidential_directive_PN = mkPN "Presidential Directive" ; -lin presidents'_day_PN = mkPN "Presidents' Day" ; -lin presley_PN = mkPN "Presley" ; -lin prestatyn_PN = mkPN "Prestatyn"; -- from DictEng -lin preston_PN = mkPN "Preston"; -- from DictEng -lin prestonpans_PN = mkPN "Prestonpans"; -- from DictEng -lin prestwich_PN = mkPN "Prestwich"; -- from DictEng -lin prestwick_PN = mkPN "Prestwick"; -- from DictEng -lin pretender_PN = mkPN "Pretender" ; -lin pretoria_PN = mkPN "Pretoria"; -- from DictEng -lin priacanthidae_PN = mkPN "Priacanthidae" ; -lin priacanthus_PN = mkPN "Priacanthus" ; -lin priam_PN = mkPN "Priam" ; -lin priapus_PN = mkPN "Priapus" ; -lin price_PN = mkPN "Price" ; -lin priestley_PN = mkPN "Priestley" ; -lin prima_PN = mkPN "Prima" ; -lin primates_PN = mkPN "Primates" ; -lin primaxin_PN = mkPN "Primaxin" ; -lin prime_minister_PN = mkPN "Prime Minister" ; -lin primulaceae_PN = mkPN "Primulaceae" ; -lin primulales_PN = mkPN "Primulales" ; -lin primus_stove_PN = mkPN "Primus stove" ; -lin prince_of_wales'_heath_PN = mkPN "Prince of Wales' heath" ; -lin prince_albert_PN = mkPN "Prince Albert" ; -lin prince_albert_yew_PN = mkPN "Prince Albert yew" ; -lin prince_edward_island_PN = mkPN "Prince Edward Island" ; -lin prince_of_wales_PN = mkPN "Prince of Wales" ; -lin princes_risborough_PN = mkPN "Princes risborough"; -- from DictEng -lin princeton_PN = mkPN "Princeton" ; -lin princeton_university_PN = mkPN "Princeton University" ; -lin principe_PN = mkPN "Principe" ; -lin prinia_PN = mkPN "Prinia" ; -lin priodontes_PN = mkPN "Priodontes" ; -lin prionace_PN = mkPN "Prionace" ; -lin prionotus_PN = mkPN "Prionotus" ; -lin priscilla_PN = mkPN "Priscilla"; -- from DictEng -lin pristidae_PN = mkPN "Pristidae" ; -lin pristis_PN = mkPN "Pristis" ; -lin pritzelago_PN = mkPN "Pritzelago" ; -lin prix_goncourt_PN = mkPN "Prix Goncourt" ; -lin prix_de_rome_PN = mkPN "Prix de Rome" ; -lin proboscidea_PN = mkPN "Proboscidea" ; -lin procavia_PN = mkPN "Procavia" ; -lin procaviidae_PN = mkPN "Procaviidae" ; -lin procellaria_PN = mkPN "Procellaria" ; -lin procellariidae_PN = mkPN "Procellariidae" ; -lin procellariiformes_PN = mkPN "Procellariiformes" ; -lin prociphilus_PN = mkPN "Prociphilus" ; -lin procnias_PN = mkPN "Procnias" ; -lin procrustean_A = mkA "Procrustean" ; -lin procrustes_PN = mkPN "Procrustes" ; -lin procyon_PN = mkPN "Procyon" ; -lin procyonidae_PN = mkPN "Procyonidae" ; -lin prof_PN = mkPN "Prof"; -- from DictEng -lin progne_PN = mkPN "Progne" ; -lin progressive_party_PN = mkPN "Progressive Party" ; -lin prohibition_party_PN = mkPN "Prohibition Party" ; -lin prokhorov_PN = mkPN "Prokhorov" ; -lin prokofiev_PN = mkPN "Prokofiev" ; -lin prolog_PN = mkPN "Prolog" ; -lin prometheus_PN = mkPN "Prometheus" ; -lin promised_land_PN = mkPN "Promised Land" ; -lin prophets_PN = mkPN "Prophets" ; -lin prosauropoda_PN = mkPN "Prosauropoda" ; -lin proserpina_PN = mkPN "Proserpina" ; -lin prosimii_PN = mkPN "Prosimii" ; -lin prosopis_PN = mkPN "Prosopis" ; -lin prosopium_PN = mkPN "Prosopium" ; -lin proteaceae_PN = mkPN "Proteaceae" ; -lin proteales_PN = mkPN "Proteales" ; -lin proteidae_PN = mkPN "Proteidae" ; -lin proteles_PN = mkPN "Proteles" ; -lin proterochampsa_PN = mkPN "Proterochampsa" ; -lin proterozoic_PN = mkPN "Proterozoic" ; -lin protestant_A = compoundA (mkA "protestant"); -- from DictEng -lin protestant_PN = mkPN "Protestant" ; -lin protestant_church_PN = mkPN "Protestant Church" ; -lin protestant_denomination_PN = mkPN "Protestant denomination" ; -lin protestantism_PN = mkPN "Protestantism" ; -lin proteus_PN = mkPN "Proteus" ; -lin protista_PN = mkPN "Protista" ; -lin protium_PN = mkPN "Protium" ; -lin protium_guianense_PN = mkPN "Protium guianense" ; -lin protium_heptaphyllum_PN = mkPN "Protium heptaphyllum" ; -lin proto_indo_european_PN = mkPN "Proto Indo European" ; -lin proto_norse_PN = mkPN "Proto Norse" ; -lin protoctista_PN = mkPN "Protoctista" ; -lin prototheria_PN = mkPN "Prototheria" ; -lin protozoa_PN = mkPN "Protozoa" ; -lin protropin_PN = mkPN "Protropin" ; -lin protura_PN = mkPN "Protura" ; -lin proudhon_PN = mkPN "Proudhon" ; -lin proust_PN = mkPN "Proust" ; -lin proustian_A = mkA "Proustian" ; -lin provencal_PN = mkPN "Provencal" ; -lin provence_PN = mkPN "Provence" ; -lin proverbs_PN = mkPN "Proverbs" ; -lin providence_PN = mkPN "Providence"; -- from DictEng -lin provo_PN = mkPN "Provo" ; -lin proxima_PN = mkPN "Proxima" ; -lin pru_PN = mkPN "Pru"; -- from DictEng -lin prudence_PN = mkPN "Prudence"; -- from DictEng -lin prudhoe_PN = mkPN "Prudhoe"; -- from DictEng -lin prudhoe_bay_PN = mkPN "Prudhoe Bay" ; -lin prumnopitys_PN = mkPN "Prumnopitys" ; -lin prunella_PN = mkPN "Prunella" ; -lin prunellidae_PN = mkPN "Prunellidae" ; -lin prunus_PN = mkPN "Prunus" ; -lin prussia_PN = mkPN "Prussia" ; -lin prussian_A = compoundA (mkA "Prussian"); -- from DictEng -lin prussian_PN = mkPN "Prussian" ; -lin prussian_blue_PN = mkPN "Prussian blue" ; -lin przewalski's_horse_PN = mkPN "Przewalski's horse" ; -lin psalm_PN = mkPN "Psalm" ; -lin psalms_PN = mkPN "Psalms" ; -lin psalter_PN = mkPN "Psalter" ; -lin psaltriparus_PN = mkPN "Psaltriparus" ; -lin psenes_PN = mkPN "Psenes" ; -lin psephurus_PN = mkPN "Psephurus" ; -lin psetta_PN = mkPN "Psetta" ; -lin psettichthys_PN = mkPN "Psettichthys" ; -lin pseudacris_PN = mkPN "Pseudacris" ; -lin pseudaletia_PN = mkPN "Pseudaletia" ; -lin pseudechis_PN = mkPN "Pseudechis" ; -lin pseudemys_PN = mkPN "Pseudemys" ; -lin pseudepigrapha_PN = mkPN "Pseudepigrapha" ; -lin pseudobombax_PN = mkPN "Pseudobombax" ; -lin pseudococcidae_PN = mkPN "Pseudococcidae" ; -lin pseudococcus_PN = mkPN "Pseudococcus" ; -lin pseudocolus_PN = mkPN "Pseudocolus" ; -lin pseudolarix_PN = mkPN "Pseudolarix" ; -lin pseudomonadales_PN = mkPN "Pseudomonadales" ; -lin pseudomonas_PN = mkPN "Pseudomonas" ; -lin pseudomonas_pyocanea_PN = mkPN "Pseudomonas pyocanea" ; -lin pseudomonodaceae_PN = mkPN "Pseudomonodaceae" ; -lin pseudopleuronectes_PN = mkPN "Pseudopleuronectes" ; -lin pseudoryx_PN = mkPN "Pseudoryx" ; -lin pseudotaxus_PN = mkPN "Pseudotaxus" ; -lin pseudotsuga_PN = mkPN "Pseudotsuga" ; -lin pseudowintera_PN = mkPN "Pseudowintera" ; -lin psidium_PN = mkPN "Psidium" ; -lin psilophytaceae_PN = mkPN "Psilophytaceae" ; -lin psilophytales_PN = mkPN "Psilophytales" ; -lin psilopsida_PN = mkPN "Psilopsida" ; -lin psilotaceae_PN = mkPN "Psilotaceae" ; -lin psilotales_PN = mkPN "Psilotales" ; -lin psilotum_PN = mkPN "Psilotum" ; -lin psithyrus_PN = mkPN "Psithyrus" ; -lin psittacidae_PN = mkPN "Psittacidae" ; -lin psittaciformes_PN = mkPN "Psittaciformes" ; -lin psittacula_PN = mkPN "Psittacula" ; -lin psittacus_PN = mkPN "Psittacus" ; -lin psocidae_PN = mkPN "Psocidae" ; -lin psocoptera_PN = mkPN "Psocoptera" ; -lin psophia_PN = mkPN "Psophia" ; -lin psophiidae_PN = mkPN "Psophiidae" ; -lin psophocarpus_PN = mkPN "Psophocarpus" ; -lin psoralea_PN = mkPN "Psoralea" ; -lin psyche_PN = mkPN "Psyche" ; -lin psychodidae_PN = mkPN "Psychodidae" ; -lin psychopsis_PN = mkPN "Psychopsis" ; -lin psychopsis_krameriana_PN = mkPN "Psychopsis krameriana" ; -lin psychopsis_papilio_PN = mkPN "Psychopsis papilio" ; -lin psychotria_PN = mkPN "Psychotria" ; -lin psyllidae_PN = mkPN "Psyllidae" ; -lin ptah_PN = mkPN "Ptah" ; -lin pte_PN = mkPN "Pte"; -- from DictEng -lin pteridaceae_PN = mkPN "Pteridaceae" ; -lin pteridium_PN = mkPN "Pteridium" ; -lin pteridophyta_PN = mkPN "Pteridophyta" ; -lin pteridospermae_PN = mkPN "Pteridospermae" ; -lin pteridospermopsida_PN = mkPN "Pteridospermopsida" ; -lin pteriidae_PN = mkPN "Pteriidae" ; -lin pteris_PN = mkPN "Pteris" ; -lin pteris_cretica_PN = mkPN "Pteris cretica" ; -lin pternohyla_PN = mkPN "Pternohyla" ; -lin pterocarpus_PN = mkPN "Pterocarpus" ; -lin pterocarya_PN = mkPN "Pterocarya" ; -lin pterocles_PN = mkPN "Pterocles" ; -lin pteroclididae_PN = mkPN "Pteroclididae" ; -lin pterocnemia_PN = mkPN "Pterocnemia" ; -lin pterodactylidae_PN = mkPN "Pterodactylidae" ; -lin pterodactylus_PN = mkPN "Pterodactylus" ; -lin pterois_PN = mkPN "Pterois" ; -lin pteropsida_PN = mkPN "Pteropsida" ; -lin pteropus_PN = mkPN "Pteropus" ; -lin pteropus_capestratus_PN = mkPN "Pteropus capestratus" ; -lin pteropus_hypomelanus_PN = mkPN "Pteropus hypomelanus" ; -lin pterosauria_PN = mkPN "Pterosauria" ; -lin pterospermum_PN = mkPN "Pterospermum" ; -lin pterostylis_PN = mkPN "Pterostylis" ; -lin ptilocercus_PN = mkPN "Ptilocercus" ; -lin ptilocrinus_PN = mkPN "Ptilocrinus" ; -lin ptilonorhynchidae_PN = mkPN "Ptilonorhynchidae" ; -lin ptilonorhynchus_PN = mkPN "Ptilonorhynchus" ; -lin ptloris_PN = mkPN "Ptloris" ; -lin pto_PN = mkPN "Pto"; -- from DictEng -lin ptolemaic_A = mkA "Ptolemaic" ; -lin ptolemaic_system_PN = mkPN "Ptolemaic system" ; -lin ptolemy_PN = mkPN "Ptolemy" ; -lin ptolemy_i_PN = mkPN "Ptolemy I" ; -lin ptolemy_ii_PN = mkPN "Ptolemy II" ; -lin pty_PN = mkPN "Pty"; -- from DictEng -lin ptyas_PN = mkPN "Ptyas" ; -lin ptychozoon_PN = mkPN "Ptychozoon" ; -lin puccini_PN = mkPN "Puccini" ; -lin puccinia_PN = mkPN "Puccinia" ; -lin pucciniaceae_PN = mkPN "Pucciniaceae" ; -lin puck_PN = mkPN "Puck" ; -lin pudsey_PN = mkPN "Pudsey"; -- from DictEng -lin puebla_PN = mkPN "Puebla" ; -lin pueblo_PN = mkPN "Pueblo" ; -lin pueraria_PN = mkPN "Pueraria" ; -lin puerto_rican_PN = mkPN "Puerto Rican" ; -lin puerto_rico_PN = mkPN "Puerto Rico" ; -lin puffinus_PN = mkPN "Puffinus" ; -lin puget_sound_PN = mkPN "Puget Sound" ; -lin pugin_PN = mkPN "Pugin" ; -lin puglia_PN = mkPN "Puglia" ; -lin pujunan_PN = mkPN "Pujunan" ; -lin puka_inti_PN = mkPN "Puka Inti" ; -lin pulex_PN = mkPN "Pulex" ; -lin pulex_irritans_PN = mkPN "Pulex irritans" ; -lin pulicaria_PN = mkPN "Pulicaria" ; -lin pulicidae_PN = mkPN "Pulicidae" ; -lin pulitzer_PN = mkPN "Pulitzer" ; -lin pullman_PN = mkPN "Pullman" ; -lin pulmonata_PN = mkPN "Pulmonata" ; -lin pulsatilla_PN = mkPN "Pulsatilla" ; -lin punic_PN = mkPN "Punic" ; -lin punic_war_PN = mkPN "Punic War" ; -lin punica_PN = mkPN "Punica" ; -lin punicaceae_PN = mkPN "Punicaceae" ; -lin punjab_PN = mkPN "Punjab" ; -lin punjabi_PN = mkPN "Punjabi" ; -lin punta_arenas_PN = mkPN "Punta Arenas" ; -lin puppis_PN = mkPN "Puppis" ; -lin purace_PN = mkPN "Purace" ; -lin purana_PN = mkPN "Purana" ; -lin puranic_A = mkA "Puranic" ; -lin purcell_PN = mkPN "Purcell" ; -lin purim_PN = mkPN "Purim" ; -lin puritan_PN = mkPN "Puritan" ; -lin puritanism_PN = mkPN "Puritanism" ; -lin purkinje_PN = mkPN "Purkinje" ; -lin purkinje_cell_PN = mkPN "Purkinje cell" ; -lin purkinje_fiber_PN = mkPN "Purkinje fiber" ; -lin purkinje_network_PN = mkPN "Purkinje network" ; -lin purus_PN = mkPN "Purus" ; -lin pus_PN = mkPN "Pus" ; -lin pusan_PN = mkPN "Pusan"; -- from DictEng -lin pusey_PN = mkPN "Pusey" ; -lin pushan_PN = mkPN "Pushan" ; -lin pushkin_PN = mkPN "Pushkin" ; -lin putin_PN = mkPN "Putin" ; -lin putrajaya_PN = mkPN "Putrajaya" ; -lin pwllheli_PN = mkPN "Pwllheli"; -- from DictEng -lin pycnanthemum_PN = mkPN "Pycnanthemum" ; -lin pycnogonida_PN = mkPN "Pycnogonida" ; -lin pydna_PN = mkPN "Pydna" ; -lin pygmalion_PN = mkPN "Pygmalion" ; -lin pygmy_PN = mkPN "Pygmy" ; -lin pygopodidae_PN = mkPN "Pygopodidae" ; -lin pygopus_PN = mkPN "Pygopus" ; -lin pygoscelis_PN = mkPN "Pygoscelis" ; -lin pyle_PN = mkPN "Pyle"; -- from DictEng -lin pylodictus_PN = mkPN "Pylodictus" ; -lin pynchon_PN = mkPN "Pynchon" ; -lin pyongyang_PN = mkPN "Pyongyang"; -- from DictEng -lin pyracantha_PN = mkPN "Pyracantha" ; -lin pyralidae_PN = mkPN "Pyralidae" ; -lin pyralis_PN = mkPN "Pyralis" ; -lin pyramid_PN = mkPN "Pyramid" ; -lin pyrausta_PN = mkPN "Pyrausta" ; -lin pyrenees_PN = mkPN "Pyrenees" ; -lin pyrenees_daisy_PN = mkPN "Pyrenees daisy" ; -lin pyrenomycetes_PN = mkPN "Pyrenomycetes" ; -lin pyrethrum_PN = mkPN "Pyrethrum" ; -lin pyrex_PN = mkPN "Pyrex" ; -lin pyrocephalus_PN = mkPN "Pyrocephalus" ; -lin pyrolaceae_PN = mkPN "Pyrolaceae" ; -lin pyrophorus_PN = mkPN "Pyrophorus" ; -lin pyrrhic_victory_PN = mkPN "Pyrrhic victory" ; -lin pyrrhocoridae_PN = mkPN "Pyrrhocoridae" ; -lin pyrrhula_PN = mkPN "Pyrrhula" ; -lin pyrrhus_PN = mkPN "Pyrrhus" ; -lin pyrrophyta_PN = mkPN "Pyrrophyta" ; -lin pyrrosia_PN = mkPN "Pyrrosia" ; -lin pyrularia_PN = mkPN "Pyrularia" ; -lin pyrus_PN = mkPN "Pyrus" ; -lin pythagoras_PN = mkPN "Pythagoras" ; -lin pythagorean_A = mkA "Pythagorean" ; -lin pythia_PN = mkPN "Pythia" ; -lin pythiaceae_PN = mkPN "Pythiaceae" ; -lin pythian_games_PN = mkPN "Pythian Games" ; -lin pythius_PN = mkPN "Pythius" ; -lin python_PN = mkPN "Python" ; -lin pythonidae_PN = mkPN "Pythonidae" ; -lin pythoninae_PN = mkPN "Pythoninae" ; -lin pyxidanthera_PN = mkPN "Pyxidanthera" ; -lin pyxis_PN = mkPN "Pyxis" ; -lin q_PN = mkPN "Q" ; -lin qwerty_keyboard_PN = mkPN "QWERTY keyboard" ; -lin q_fever_PN = mkPN "Q fever" ; -lin qaddafi_PN = mkPN "Qaddafi" ; -lin qassam_brigades_PN = mkPN "Qassam Brigades" ; -lin qatar_PN = mkPN "Qatar"; -- from DictEng -lin qatari_A = compoundA (mkA "qatari"); -- from DictEng -lin qatari_PN = mkPN "Qatari" ; -lin qatari_dirham_PN = mkPN "Qatari dirham" ; -lin qatari_monetary_unit_PN = mkPN "Qatari monetary unit" ; -lin qatari_riyal_PN = mkPN "Qatari riyal" ; -lin qed_PN = mkPN "Qed"; -- from DictEng -lin qiang_PN = mkPN "Qiang" ; -lin qibla_PN = mkPN "Qibla" ; -lin qin_PN = mkPN "Qin" ; -lin qin_shi_huang_ti_PN = mkPN "Qin Shi Huang Ti" ; -lin qing_PN = mkPN "Qing" ; -lin quadragesima_PN = mkPN "Quadragesima" ; -lin quai_d'orsay_PN = mkPN "Quai d'Orsay" ; -lin quaker_gun_PN = mkPN "Quaker gun" ; -lin quakerism_PN = mkPN "Quakerism" ; -lin quaoar_PN = mkPN "Quaoar" ; -lin quapaw_PN = mkPN "Quapaw" ; -lin quaternary_PN = mkPN "Quaternary" ; -lin quebec_PN = mkPN "Quebec"; -- from DictEng -lin quebec_bridge_PN = mkPN "Quebec Bridge" ; -lin quebecois_A = mkA "Quebecois" ; -lin quebecois_PN = mkPN "Quebecois" ; -lin quechua_PN = mkPN "Quechua" ; -lin quechuan_A = mkA "Quechuan" ; -lin queckenstedt's_test_PN = mkPN "Queckenstedt's test" ; -lin queen's_counsel_PN = mkPN "Queen's Counsel" ; -lin queen's_crape_myrtle_PN = mkPN "Queen's crape myrtle" ; -lin queen_charlotte_sound_PN = mkPN "Queen Charlotte Sound" ; -lin queen_maud_land_PN = mkPN "Queen Maud Land" ; -lin queen_of_england_PN = mkPN "Queen of England" ; -lin queenborough_in_sheppey_PN = mkPN "Queenborough - in - sheppey"; -- from DictEng -lin queens_PN = mkPN "Queens" ; -lin queensboro_bridge_PN = mkPN "Queensboro Bridge" ; -lin queensbury_PN = mkPN "Queensbury"; -- from DictEng -lin queensferry_PN = mkPN "Queensferry"; -- from DictEng -lin queensland_PN = mkPN "Queensland"; -- from DictEng -lin queensland_bottletree_PN = mkPN "Queensland bottletree" ; -lin queensland_grass_cloth_plant_PN = mkPN "Queensland grass cloth plant" ; -lin queensland_hemp_PN = mkPN "Queensland hemp" ; -lin queensland_nut_PN = mkPN "Queensland nut" ; -lin quentin_PN = mkPN "Quentin"; -- from DictEng -lin quercus_PN = mkPN "Quercus" ; -lin quetzalcoatl_PN = mkPN "Quetzalcoatl" ; -lin quezon_city_PN = mkPN "Quezon City" ; -lin quiche_PN = mkPN "Quiche" ; -lin quincy_PN = mkPN "Quincy" ; -lin quine_PN = mkPN "Quine" ; -lin quinquagesima_PN = mkPN "Quinquagesima"; -- from DictEng -lin quintana_roo_PN = mkPN "Quintana Roo" ; -lin quiscalus_PN = mkPN "Quiscalus" ; -lin quito_PN = mkPN "Quito"; -- from DictEng -lin qum_PN = mkPN "Qum" ; -lin quoratean_PN = mkPN "Quoratean" ; -lin qv_PN = mkPN "Qv"; -- from DictEng -lin r_PN = mkPN "R" ; -lin r_2_PN = mkPN "R 2" ; -lin ram_disk_PN = mkPN "RAM disk" ; -lin rem_PN = mkPN "REM" ; -lin ra_PN = mkPN "Ra" ; -lin rabat_PN = mkPN "Rabat" ; -lin rabbi_PN = mkPN "Rabbi" ; -lin rabelais_PN = mkPN "Rabelais" ; -lin rabelaisian_A = compoundA (mkA "rabelaisian"); -- from DictEng -lin rabi_i_PN = mkPN "Rabi I" ; -lin rabi_ii_PN = mkPN "Rabi II" ; -lin rachel_PN = mkPN "Rachel"; -- from DictEng -lin rachmaninoff_PN = mkPN "Rachmaninoff" ; -lin rachycentridae_PN = mkPN "Rachycentridae" ; -lin rachycentron_PN = mkPN "Rachycentron" ; -lin racine_PN = mkPN "Racine" ; -lin rada_PN = mkPN "Rada"; -- from DictEng -lin radcliffe_PN = mkPN "Radcliffe"; -- from DictEng -lin radcliffe_on_trent_PN = mkPN "Radcliffe on trent"; -- from DictEng -lin radhakrishnan_PN = mkPN "Radhakrishnan" ; -lin radiigera_PN = mkPN "Radiigera" ; -lin radiigera_fuscogleba_PN = mkPN "Radiigera fuscogleba" ; -lin radiolaria_PN = mkPN "Radiolaria" ; -lin radlett_PN = mkPN "Radlett"; -- from DictEng -lin radstock_PN = mkPN "Radstock"; -- from DictEng -lin radyera_PN = mkPN "Radyera" ; -lin raffia_PN = mkPN "Raffia" ; -lin raffles_PN = mkPN "Raffles" ; -lin rafflesiaceae_PN = mkPN "Rafflesiaceae" ; -lin rahu_PN = mkPN "Rahu" ; -lin rain_in_the_face_PN = mkPN "Rain in the Face" ; -lin rainford_PN = mkPN "Rainford"; -- from DictEng -lin raja_PN = mkPN "Raja" ; -lin rajab_PN = mkPN "Rajab" ; -lin rajidae_PN = mkPN "Rajidae" ; -lin rajiformes_PN = mkPN "Rajiformes" ; -lin rajput_PN = mkPN "Rajput" ; -lin rakaposhi_PN = mkPN "Rakaposhi" ; -lin raleigh_PN = mkPN "Raleigh" ; -lin rallidae_PN = mkPN "Rallidae" ; -lin ralph_PN = mkPN "Ralph"; -- from DictEng -lin rama_PN = mkPN "Rama" ; -lin ramachandra_PN = mkPN "Ramachandra" ; -lin ramadan_PN = mkPN "Ramadan"; -- from DictEng -lin ramalina_PN = mkPN "Ramalina" ; -lin ramanavami_PN = mkPN "Ramanavami" ; -lin ramayana_PN = mkPN "Ramayana" ; -lin rambouillet_PN = mkPN "Rambouillet" ; -lin rameau_PN = mkPN "Rameau" ; -lin rameses_PN = mkPN "Rameses" ; -lin rameses_ii_PN = mkPN "Rameses II" ; -lin ramman_PN = mkPN "Ramman" ; -lin ramon_y_cajal_PN = mkPN "Ramon y Cajal" ; -lin ramphastidae_PN = mkPN "Ramphastidae" ; -lin ramphomicron_PN = mkPN "Ramphomicron" ; -lin ramsay_hunt_syndrome_PN = mkPN "Ramsay Hunt syndrome" ; -lin ramsbottom_PN = mkPN "Ramsbottom"; -- from DictEng -lin ramsgate_PN = mkPN "Ramsgate"; -- from DictEng -lin rana_PN = mkPN "Rana" ; -lin ranales_PN = mkPN "Ranales" ; -lin ranatra_PN = mkPN "Ranatra" ; -lin rand_PN = mkPN "Rand" ; -lin randolph_PN = mkPN "Randolph"; -- from DictEng -lin rangifer_PN = mkPN "Rangifer" ; -lin rangoon_PN = mkPN "Rangoon"; -- from DictEng -lin ranidae_PN = mkPN "Ranidae" ; -lin ranier_PN = mkPN "Ranier" ; -lin rankin_PN = mkPN "Rankin" ; -lin rankine_PN = mkPN "Rankine" ; -lin rankine_scale_PN = mkPN "Rankine scale" ; -lin ranunculaceae_PN = mkPN "Ranunculaceae" ; -lin ranunculus_PN = mkPN "Ranunculus" ; -lin ranvier's_nodes_PN = mkPN "Ranvier's nodes" ; -lin raoulia_PN = mkPN "Raoulia" ; -lin rapateaceae_PN = mkPN "Rapateaceae" ; -lin raphael_PN = mkPN "Raphael" ; -lin raphanus_PN = mkPN "Raphanus" ; -lin raphicerus_PN = mkPN "Raphicerus" ; -lin raphidae_PN = mkPN "Raphidae" ; -lin raphidiidae_PN = mkPN "Raphidiidae" ; -lin raphus_PN = mkPN "Raphus" ; -lin rapid_city_PN = mkPN "Rapid City" ; -lin rappahannock_PN = mkPN "Rappahannock" ; -lin raptores_PN = mkPN "Raptores" ; -lin rasht_PN = mkPN "Rasht" ; -lin rashtriya_swayamsevak_sangh_PN = mkPN "Rashtriya Swayamsevak Sangh" ; -lin rask_PN = mkPN "Rask" ; -lin raskolnikov_PN = mkPN "Raskolnikov" ; -lin rasmussen_PN = mkPN "Rasmussen" ; -lin rasputin_PN = mkPN "Rasputin" ; -lin rastafari_PN = mkPN "Rastafari" ; -lin rastafarian_A = mkA "Rastafarian" ; -lin rastafarian_PN = mkPN "Rastafarian" ; -lin rastafarianism_PN = mkPN "Rastafarianism" ; -lin ratibida_PN = mkPN "Ratibida" ; -lin ratitae_PN = mkPN "Ratitae" ; -lin rattigan_PN = mkPN "Rattigan" ; -lin rattus_PN = mkPN "Rattus" ; -lin ravel_PN = mkPN "Ravel" ; -lin ravenna_PN = mkPN "Ravenna"; -- from DictEng -lin ravenna_grass_PN = mkPN "Ravenna grass" ; -lin rawalpindi_PN = mkPN "Rawalpindi" ; -lin rawtenstall_PN = mkPN "Rawtenstall"; -- from DictEng -lin ray_PN = mkPN "Ray"; -- from DictEng -lin rayleigh_PN = mkPN "Rayleigh" ; -lin rayleigh_disk_PN = mkPN "Rayleigh disk" ; -lin raymond_PN = mkPN "Raymond"; -- from DictEng -lin rc_PN = mkPN "Rc"; -- from DictEng -lin rd_PN = mkPN "Rd"; -- from DictEng -lin read_method_of_childbirth_PN = mkPN "Read method of childbirth" ; -lin reading_PN = mkPN "Reading"; -- from DictEng -lin reagan_PN = mkPN "Reagan" ; -lin reagan_administration_PN = mkPN "Reagan administration" ; -lin real_estate_investment_trust_PN = mkPN "Real Estate Investment Trust" ; -lin real_ira_PN = mkPN "Real IRA" ; -lin realtor_PN = mkPN "Realtor" ; -lin reaumur_PN = mkPN "Reaumur" ; -lin reaumur_scale_PN = mkPN "Reaumur scale" ; -lin reaumur_thermometer_PN = mkPN "Reaumur thermometer" ; -lin rebecca_PN = mkPN "Rebecca"; -- from DictEng -lin rebel_PN = mkPN "Rebel" ; -lin rec_PN = mkPN "Rec"; -- from DictEng -lin recd_PN = mkPN "Recd"; -- from DictEng -lin received_pronunciation_PN = mkPN "Received Pronunciation" ; -lin recife_PN = mkPN "Recife"; -- from DictEng -lin recklinghausen_PN = mkPN "Recklinghausen"; -- from DictEng -lin reconstruction_PN = mkPN "Reconstruction" ; -lin recurvirostra_PN = mkPN "Recurvirostra" ; -lin recurvirostridae_PN = mkPN "Recurvirostridae" ; -lin red_PN = mkPN "Red" ; -lin red_army_faction_PN = mkPN "Red Army Faction" ; -lin red_brigades_PN = mkPN "Red Brigades" ; -lin red_cloud_PN = mkPN "Red Cloud" ; -lin red_cross_PN = mkPN "Red Cross" ; -lin red_delicious_PN = mkPN "Red Delicious" ; -lin red_guard_PN = mkPN "Red Guard" ; -lin red_hand_defenders_PN = mkPN "Red Hand Defenders" ; -lin red_sea_PN = mkPN "Red Sea" ; -lin red_tai_PN = mkPN "Red Tai" ; -lin redbridge_PN = mkPN "Redbridge"; -- from DictEng -lin redding_PN = mkPN "Redding" ; -lin redditch_PN = mkPN "Redditch"; -- from DictEng -lin redford_PN = mkPN "Redford" ; -lin rediffusion_PN = mkPN "Rediffusion" ; -lin redonda_PN = mkPN "Redonda" ; -lin redruth_PN = mkPN "Redruth"; -- from DictEng -lin redskin_PN = mkPN "Redskin" ; -lin reduviidae_PN = mkPN "Reduviidae" ; -lin redwood_national_park_PN = mkPN "Redwood National Park" ; -lin reed_PN = mkPN "Reed" ; -lin reform_jew_PN = mkPN "Reform Jew" ; -lin reform_judaism_PN = mkPN "Reform Judaism" ; -lin reformation_PN = mkPN "Reformation" ; -lin reg_PN = mkPN "Reg"; -- from DictEng -lin regalecidae_PN = mkPN "Regalecidae" ; -lin regency_PN = mkPN "Regency" ; -lin regensburg_PN = mkPN "Regensburg"; -- from DictEng -lin reggane_PN = mkPN "Reggane" ; -lin regina_PN = mkPN "Regina"; -- from DictEng -lin reginald_PN = mkPN "Reginald"; -- from DictEng -lin regius_professor_PN = mkPN "Regius professor" ; -lin reglaecus_PN = mkPN "Reglaecus" ; -lin regulus_PN = mkPN "Regulus" ; -lin rehnquist_PN = mkPN "Rehnquist" ; -lin reich_PN = mkPN "Reich" ; -lin reichstein_PN = mkPN "Reichstein" ; -lin reid_PN = mkPN "Reid" ; -lin reigate_PN = mkPN "Reigate"; -- from DictEng -lin reign_of_terror_PN = mkPN "Reign of Terror" ; -lin reiter_PN = mkPN "Reiter" ; -lin reiter's_syndrome_PN = mkPN "Reiter's syndrome" ; -lin reithrodontomys_PN = mkPN "Reithrodontomys" ; -lin religious_society_of_friends_PN = mkPN "Religious Society of Friends" ; -lin rembrandt_PN = mkPN "Rembrandt" ; -lin rembrandtesque_A = mkA "Rembrandtesque" ; -lin remembrance_day_PN = mkPN "Remembrance Day" ; -lin remilegia_PN = mkPN "Remilegia" ; -lin remscheid_PN = mkPN "Remscheid"; -- from DictEng -lin remus_PN = mkPN "Remus" ; -lin renaissance_PN = mkPN "Renaissance" ; -lin renaissance_man_PN = mkPN "Renaissance man" ; -lin renfrew_PN = mkPN "Renfrew"; -- from DictEng -lin rennes_PN = mkPN "Rennes"; -- from DictEng -lin reno_PN = mkPN "Reno" ; -lin renoir_PN = mkPN "Renoir" ; -lin reoviridae_PN = mkPN "Reoviridae" ; -lin reptantia_PN = mkPN "Reptantia" ; -lin reptilia_PN = mkPN "Reptilia" ; -lin republican_PN = mkPN "Republican" ; -lin republican_guard_PN = mkPN "Republican Guard" ; -lin republican_party_PN = mkPN "Republican Party" ; -lin requiem_PN = mkPN "Requiem" ; -lin resedaceae_PN = mkPN "Resedaceae" ; -lin reserve_officers_training_corps_PN = mkPN "Reserve Officers Training Corps" ; -lin respighi_PN = mkPN "Respighi" ; -lin restoration_PN = mkPN "Restoration" ; -lin resurrection_PN = mkPN "Resurrection" ; -lin ret_PN = mkPN "Ret"; -- from DictEng -lin retama_PN = mkPN "Retama" ; -lin retd_PN = mkPN "Retd"; -- from DictEng -lin retford_PN = mkPN "Retford"; -- from DictEng -lin reticulitermes_PN = mkPN "Reticulitermes" ; -lin reticulitermes_flanipes_PN = mkPN "Reticulitermes flanipes" ; -lin reticulitermes_lucifugus_PN = mkPN "Reticulitermes lucifugus" ; -lin reticulum_PN = mkPN "Reticulum" ; -lin retrophyllum_PN = mkPN "Retrophyllum" ; -lin reuben_PN = mkPN "Reuben" ; -lin rev_PN = mkPN "Rev"; -- from DictEng -lin revd_PN = mkPN "Revd"; -- from DictEng -lin revelation_PN = mkPN "Revelation" ; -lin revere_PN = mkPN "Revere" ; -lin reverend_PN = mkPN "Reverend" ; -lin revised_standard_version_PN = mkPN "Revised Standard Version" ; -lin revised_version_PN = mkPN "Revised Version" ; -lin revolutionary_armed_forces_of_colombia_PN = mkPN "Revolutionary Armed Forces of Colombia" ; -lin revolutionary_organization_17_november_PN = mkPN "Revolutionary Organization 17 November" ; -lin revolutionary_people's_liberation_party_PN = mkPN "Revolutionary People's Liberation Party" ; -lin revolutionary_people's_struggle_PN = mkPN "Revolutionary People's Struggle" ; -lin revolutionary_proletarian_nucleus_PN = mkPN "Revolutionary Proletarian Nucleus" ; -lin revolutionary_united_front_PN = mkPN "Revolutionary United Front" ; -lin revolutionary_calendar_PN = mkPN "Revolutionary calendar" ; -lin revolutionary_calendar_month_PN = mkPN "Revolutionary calendar month" ; -lin rex_PN = mkPN "Rex"; -- from DictEng -lin reye's_syndrome_PN = mkPN "Reye's syndrome" ; -lin reykjavik_PN = mkPN "Reykjavik"; -- from DictEng -lin reynard_PN = mkPN "Reynard" ; -lin reynolds_PN = mkPN "Reynolds" ; -lin rh_negative_blood_type_PN = mkPN "Rh negative blood type" ; -lin rh_positive_blood_type_PN = mkPN "Rh positive blood type" ; -lin rh_antibody_PN = mkPN "Rh antibody" ; -lin rh_incompatibility_PN = mkPN "Rh incompatibility" ; -lin rhabdoviridae_PN = mkPN "Rhabdoviridae" ; -lin rhadamanthus_PN = mkPN "Rhadamanthus" ; -lin rhaeto_romance_PN = mkPN "Rhaeto Romance" ; -lin rhagoletis_PN = mkPN "Rhagoletis" ; -lin rhamnaceae_PN = mkPN "Rhamnaceae" ; -lin rhamnales_PN = mkPN "Rhamnales" ; -lin rhamnus_PN = mkPN "Rhamnus" ; -lin rhapis_PN = mkPN "Rhapis" ; -lin rhea_PN = mkPN "Rhea" ; -lin rhea_silvia_PN = mkPN "Rhea Silvia" ; -lin rheidae_PN = mkPN "Rheidae" ; -lin rheiformes_PN = mkPN "Rheiformes" ; -lin rheims_PN = mkPN "Rheims"; -- from DictEng -lin rhenish_A = compoundA (mkA "rhenish"); -- from DictEng -lin rheum_PN = mkPN "Rheum" ; -lin rhexia_PN = mkPN "Rhexia" ; -lin rheydt_PN = mkPN "Rheydt"; -- from DictEng -lin rhincodon_PN = mkPN "Rhincodon" ; -lin rhincodontidae_PN = mkPN "Rhincodontidae" ; -lin rhine_PN = mkPN "Rhine"; -- from DictEng -lin rhine_wine_PN = mkPN "Rhine wine" ; -lin rhineland_PN = mkPN "Rhineland" ; -lin rhinobatidae_PN = mkPN "Rhinobatidae" ; -lin rhinocerotidae_PN = mkPN "Rhinocerotidae" ; -lin rhinolophidae_PN = mkPN "Rhinolophidae" ; -lin rhinonicteris_PN = mkPN "Rhinonicteris" ; -lin rhinoptera_PN = mkPN "Rhinoptera" ; -lin rhinotermitidae_PN = mkPN "Rhinotermitidae" ; -lin rhipsalis_PN = mkPN "Rhipsalis" ; -lin rhizobiaceae_PN = mkPN "Rhizobiaceae" ; -lin rhizobium_PN = mkPN "Rhizobium" ; -lin rhizophora_PN = mkPN "Rhizophora" ; -lin rhizophoraceae_PN = mkPN "Rhizophoraceae" ; -lin rhizopoda_PN = mkPN "Rhizopoda" ; -lin rhizopogon_PN = mkPN "Rhizopogon" ; -lin rhizopogon_idahoensis_PN = mkPN "Rhizopogon idahoensis" ; -lin rhizopogonaceae_PN = mkPN "Rhizopogonaceae" ; -lin rhode_PN = mkPN "Rhode"; -- from DictEng -lin rhode_island_PN = mkPN "Rhode Island" ; -lin rhode_island_red_PN = mkPN "Rhode Island red" ; -lin rhode_islander_PN = mkPN "Rhode Islander" ; -lin rhodes_PN = mkPN "Rhodes" ; -lin rhodes_grass_PN = mkPN "Rhodes grass" ; -lin rhodes_scholar_PN = mkPN "Rhodes scholar" ; -lin rhodesian_A = mkA "Rhodesian" ; -lin rhodesian_man_PN = mkPN "Rhodesian man" ; -lin rhodesian_ridgeback_PN = mkPN "Rhodesian ridgeback" ; -lin rhodope_mountains_PN = mkPN "Rhodope Mountains" ; -lin rhodophyceae_PN = mkPN "Rhodophyceae" ; -lin rhodophyta_PN = mkPN "Rhodophyta" ; -lin rhodosphaera_PN = mkPN "Rhodosphaera" ; -lin rhodymenia_PN = mkPN "Rhodymenia" ; -lin rhodymeniaceae_PN = mkPN "Rhodymeniaceae" ; -lin rhoeadales_PN = mkPN "Rhoeadales" ; -lin rhondda_PN = mkPN "Rhondda"; -- from DictEng -lin rhone_PN = mkPN "Rhone" ; -lin rhone_alpes_PN = mkPN "Rhone Alpes" ; -lin rhone_wine_PN = mkPN "Rhone wine" ; -lin rhosllanerchrugog_PN = mkPN "Rhosllanerchrugog"; -- from DictEng -lin rhus_PN = mkPN "Rhus" ; -lin rhus_dermatitis_PN = mkPN "Rhus dermatitis" ; -lin rhyacotriton_PN = mkPN "Rhyacotriton" ; -lin rhyl_PN = mkPN "Rhyl"; -- from DictEng -lin rhymney_PN = mkPN "Rhymney"; -- from DictEng -lin rhynchocephalia_PN = mkPN "Rhynchocephalia" ; -lin rhynchoelaps_PN = mkPN "Rhynchoelaps" ; -lin rhyncostylis_PN = mkPN "Rhyncostylis" ; -lin rhynia_PN = mkPN "Rhynia" ; -lin rhyniaceae_PN = mkPN "Rhyniaceae" ; -lin ribes_PN = mkPN "Ribes" ; -lin ribhus_PN = mkPN "Ribhus" ; -lin ricardo_PN = mkPN "Ricardo" ; -lin rice_PN = mkPN "Rice" ; -lin richard_PN = mkPN "Richard"; -- from DictEng -lin richard_i_PN = mkPN "Richard I" ; -lin richard_ii_PN = mkPN "Richard II" ; -lin richard_iii_PN = mkPN "Richard III" ; -lin richard_roe_PN = mkPN "Richard Roe" ; -lin richards_PN = mkPN "Richards" ; -lin richardson_PN = mkPN "Richardson" ; -lin richardson's_geranium_PN = mkPN "Richardson's geranium" ; -lin richea_PN = mkPN "Richea" ; -lin richelieu_PN = mkPN "Richelieu" ; -lin richler_PN = mkPN "Richler" ; -lin richmond_PN = mkPN "Richmond"; -- from DictEng -lin richmond_upon_thames_PN = mkPN "Richmond upon thames"; -- from DictEng -lin richmondena_PN = mkPN "Richmondena" ; -lin richter_scale_PN = mkPN "Richter scale" ; -lin ricinus_PN = mkPN "Ricinus" ; -lin rick_PN = mkPN "Rick"; -- from DictEng -lin rickenbacker_PN = mkPN "Rickenbacker" ; -lin rickettsiaceae_PN = mkPN "Rickettsiaceae" ; -lin rickettsiales_PN = mkPN "Rickettsiales" ; -lin rickmansworth_PN = mkPN "Rickmansworth"; -- from DictEng -lin rickover_PN = mkPN "Rickover" ; -lin ricky_PN = mkPN "Ricky"; -- from DictEng -lin riemann_PN = mkPN "Riemann" ; -lin riemannian_A = mkA "Riemannian" ; -lin riesling_PN = mkPN "Riesling" ; -lin riesman_PN = mkPN "Riesman" ; -lin riff_PN = mkPN "Riff" ; -lin rift_valley_fever_PN = mkPN "Rift Valley fever" ; -lin rig_veda_PN = mkPN "Rig Veda" ; -lin riga_PN = mkPN "Riga"; -- from DictEng -lin rigel_PN = mkPN "Rigel" ; -lin right_bank_PN = mkPN "Right Bank" ; -lin rijeka_PN = mkPN "Rijeka"; -- from DictEng -lin riksmal_PN = mkPN "Riksmal" ; -lin riley_PN = mkPN "Riley" ; -lin rilke_PN = mkPN "Rilke" ; -lin rimbaud_PN = mkPN "Rimbaud" ; -lin rimini_PN = mkPN "Rimini"; -- from DictEng -lin rimsky_korsakov_PN = mkPN "Rimsky Korsakov" ; -lin ringer's_solution_PN = mkPN "Ringer's solution" ; -lin ringling_PN = mkPN "Ringling" ; -lin ringwood_PN = mkPN "Ringwood"; -- from DictEng -lin rio_grande_PN = mkPN "Rio Grande" ; -lin rio_de_janeiro_PN = mkPN "Rio de janeiro"; -- from DictEng -lin rio_de_la_plata_PN = mkPN "Rio de la Plata" ; -lin rioja_PN = mkPN "Rioja" ; -lin riot_act_PN = mkPN "Riot Act" ; -lin rip_PN = mkPN "Rip"; -- from DictEng -lin rip_van_winkle_PN = mkPN "Rip van Winkle" ; -lin riparia_PN = mkPN "Riparia" ; -lin ripley_PN = mkPN "Ripley"; -- from DictEng -lin ripon_PN = mkPN "Ripon"; -- from DictEng -lin risborough_PN = mkPN "Risborough"; -- from DictEng -lin risca_PN = mkPN "Risca"; -- from DictEng -lin rishton_PN = mkPN "Rishton"; -- from DictEng -lin riss_glaciation_PN = mkPN "Riss glaciation" ; -lin rissa_PN = mkPN "Rissa" ; -lin rita_PN = mkPN "Rita"; -- from DictEng -lin rittenhouse_PN = mkPN "Rittenhouse" ; -lin ritz_PN = mkPN "Ritz" ; -lin rivera_PN = mkPN "Rivera" ; -lin riverside_PN = mkPN "Riverside" ; -lin riviera_PN = mkPN "Riviera"; -- from DictEng -lin rivina_PN = mkPN "Rivina" ; -lin riyadh_PN = mkPN "Riyadh" ; -lin ro_PN = mkPN "Ro" ; -lin roanoke_PN = mkPN "Roanoke" ; -lin rob_PN = mkPN "Rob"; -- from DictEng -lin rob_roy_PN = mkPN "Rob Roy" ; -lin robbins_PN = mkPN "Robbins" ; -lin robert_PN = mkPN "Robert"; -- from DictEng -lin robert's_rules_of_order_PN = mkPN "Robert's Rules of Order" ; -lin robert_e_lee's_birthday_PN = mkPN "Robert E Lee's Birthday" ; -lin roberts_PN = mkPN "Roberts" ; -lin robertson_PN = mkPN "Robertson" ; -lin robeson_PN = mkPN "Robeson" ; -lin robespierre_PN = mkPN "Robespierre" ; -lin robin_PN = mkPN "Robin"; -- from DictEng -lin robin_hood_PN = mkPN "Robin Hood" ; -lin robinia_PN = mkPN "Robinia" ; -lin robinson_PN = mkPN "Robinson" ; -lin robinson_crusoe_PN = mkPN "Robinson Crusoe" ; -lin robitussin_PN = mkPN "Robitussin" ; -lin roccellaceae_PN = mkPN "Roccellaceae" ; -lin roccus_PN = mkPN "Roccus" ; -lin rochambeau_PN = mkPN "Rochambeau" ; -lin rochdale_PN = mkPN "Rochdale"; -- from DictEng -lin rochelle_salt_PN = mkPN "Rochelle salt" ; -lin rochester_PN = mkPN "Rochester"; -- from DictEng -lin rochon_prism_PN = mkPN "Rochon prism" ; -lin rock_PN = mkPN "Rock" ; -lin rock_cornish_PN = mkPN "Rock Cornish" ; -lin rock_cornish_hen_PN = mkPN "Rock Cornish hen" ; -lin rock_island_PN = mkPN "Rock Island" ; -lin rock_springs_PN = mkPN "Rock Springs" ; -lin rockefeller_PN = mkPN "Rockefeller" ; -lin rockford_PN = mkPN "Rockford" ; -lin rockies_PN = mkPN "Rockies" ; -lin rockingham_PN = mkPN "Rockingham" ; -lin rockwell_PN = mkPN "Rockwell" ; -lin rocky_mountain_national_park_PN = mkPN "Rocky Mountain National Park" ; -lin rocky_mountain_bee_plant_PN = mkPN "Rocky Mountain bee plant" ; -lin rocky_mountain_dogbane_PN = mkPN "Rocky Mountain dogbane" ; -lin rocky_mountain_jay_PN = mkPN "Rocky Mountain jay" ; -lin rocky_mountain_spotted_fever_PN = mkPN "Rocky Mountain spotted fever" ; -lin rocky_mountain_whitefish_PN = mkPN "Rocky Mountain whitefish" ; -lin rocky_mountain_pinon_PN = mkPN "Rocky mountain pinon" ; -lin rocroi_PN = mkPN "Rocroi" ; -lin rod_PN = mkPN "Rod"; -- from DictEng -lin rodentia_PN = mkPN "Rodentia" ; -lin rodgers_PN = mkPN "Rodgers" ; -lin rodin_PN = mkPN "Rodin" ; -lin rodney_PN = mkPN "Rodney"; -- from DictEng -lin rodolia_PN = mkPN "Rodolia" ; -lin roebling_PN = mkPN "Roebling" ; -lin roentgen_PN = mkPN "Roentgen" ; -lin rogation_day_PN = mkPN "Rogation Day" ; -lin roger_PN = mkPN "Roger"; -- from DictEng -lin rogers_PN = mkPN "Rogers" ; -lin roget_PN = mkPN "Roget" ; -lin rolaids_PN = mkPN "Rolaids" ; -lin rollerblade_PN = mkPN "Rollerblade" ; -lin rollo_PN = mkPN "Rollo" ; -lin rolodex_PN = mkPN "Rolodex" ; -lin romaic_PN = mkPN "Romaic" ; -lin roman_A = compoundA (mkA "roman"); -- from DictEng -lin roman_PN = mkPN "Roman" ; -lin roman_catholic_PN = mkPN "Roman Catholic" ; -lin roman_emperor_PN = mkPN "Roman Emperor" ; -lin roman_empire_PN = mkPN "Roman Empire" ; -lin roman_inquisition_PN = mkPN "Roman Inquisition" ; -lin roman_legion_PN = mkPN "Roman Legion" ; -lin roman_republic_PN = mkPN "Roman Republic" ; -lin roman_alphabet_PN = mkPN "Roman alphabet" ; -lin roman_arch_PN = mkPN "Roman arch" ; -lin roman_architecture_PN = mkPN "Roman architecture" ; -lin roman_building_PN = mkPN "Roman building" ; -lin roman_calendar_PN = mkPN "Roman calendar" ; -lin roman_candle_PN = mkPN "Roman candle" ; -lin roman_deity_PN = mkPN "Roman deity" ; -lin roman_hyacinth_PN = mkPN "Roman hyacinth" ; -lin roman_law_PN = mkPN "Roman law" ; -lin roman_mythology_PN = mkPN "Roman mythology" ; -lin roman_nettle_PN = mkPN "Roman nettle" ; -lin roman_nose_PN = mkPN "Roman nose" ; -lin roman_numeral_PN = mkPN "Roman numeral" ; -lin roman_pace_PN = mkPN "Roman pace" ; -lin roman_times_PN = mkPN "Roman times" ; -lin roman_wormwood_PN = mkPN "Roman wormwood" ; -lin romanal_PN = mkPN "Romanal" ; -lin romance_A = compoundA (mkA "romance"); -- from DictEng -lin romance_PN = mkPN "Romance" ; -lin romanesque_PN = mkPN "Romanesque" ; -lin romania_PN = mkPN "Romania"; -- from DictEng -lin romanian_A = compoundA (mkA "Romanian"); -- from DictEng -lin romanian_PN = mkPN "Romanian" ; -lin romanian_monetary_unit_PN = mkPN "Romanian monetary unit" ; -lin romanism_PN = mkPN "Romanism" ; -lin romanov_PN = mkPN "Romanov" ; -lin romansh_A = mkA "Romansh" ; -lin romansh_PN = mkPN "Romansh" ; -lin romanticism_PN = mkPN "Romanticism" ; -lin romany_A = compoundA (mkA "romany"); -- from DictEng -lin romany_PN = mkPN "Romany" ; -lin romberg_PN = mkPN "Romberg" ; -lin rome_PN = mkPN "Rome"; -- from DictEng -lin rome_beauty_PN = mkPN "Rome Beauty" ; -lin romeo_PN = mkPN "Romeo" ; -lin rommel_PN = mkPN "Rommel" ; -lin romneya_PN = mkPN "Romneya" ; -lin romsey_PN = mkPN "Romsey"; -- from DictEng -lin romulus_PN = mkPN "Romulus" ; -lin ron_PN = mkPN "Ron"; -- from DictEng -lin ronald_PN = mkPN "Ronald"; -- from DictEng -lin ronnie_PN = mkPN "Ronnie"; -- from DictEng -lin roosevelt_PN = mkPN "Roosevelt" ; -lin rooseveltian_A = mkA "Rooseveltian" ; -lin roquefort_PN = mkPN "Roquefort" ; -lin roridulaceae_PN = mkPN "Roridulaceae" ; -lin rorippa_PN = mkPN "Rorippa" ; -lin rorschach_PN = mkPN "Rorschach" ; -lin rosa_PN = mkPN "Rosa" ; -lin rosaceae_PN = mkPN "Rosaceae" ; -lin rosales_PN = mkPN "Rosales" ; -lin rosalie_PN = mkPN "Rosalie"; -- from DictEng -lin rosalind_PN = mkPN "Rosalind"; -- from DictEng -lin rosamund_PN = mkPN "Rosamund"; -- from DictEng -lin rosario_PN = mkPN "Rosario"; -- from DictEng -lin roscommon_PN = mkPN "Roscommon"; -- from DictEng -lin rose_PN = mkPN "Rose"; -- from DictEng -lin roseau_PN = mkPN "Roseau" ; -lin rosellinia_PN = mkPN "Rosellinia" ; -lin rosemary_PN = mkPN "Rosemary"; -- from DictEng -lin rosetta_stone_PN = mkPN "Rosetta Stone" ; -lin rosh_hashanah_PN = mkPN "Rosh Hashanah" ; -lin rosh_hodesh_PN = mkPN "Rosh Hodesh" ; -lin rosicrucian_A = mkA "Rosicrucian" ; -lin rosicrucian_PN = mkPN "Rosicrucian" ; -lin rosicrucianism_PN = mkPN "Rosicrucianism" ; -lin rosidae_PN = mkPN "Rosidae" ; -lin rosie_PN = mkPN "Rosie"; -- from DictEng -lin roslyn_PN = mkPN "Roslyn"; -- from DictEng -lin rosmarinus_PN = mkPN "Rosmarinus" ; -lin ross_PN = mkPN "Ross" ; -lin ross_sea_PN = mkPN "Ross Sea" ; -lin ross_on_wye_PN = mkPN "Ross - on - wye"; -- from DictEng -lin rossbach_PN = mkPN "Rossbach" ; -lin rossetti_PN = mkPN "Rossetti" ; -lin rossington_PN = mkPN "Rossington"; -- from DictEng -lin rossini_PN = mkPN "Rossini" ; -lin rosslare_PN = mkPN "Rosslare"; -- from DictEng -lin rostand_PN = mkPN "Rostand" ; -lin rostock_PN = mkPN "Rostock"; -- from DictEng -lin rostov_PN = mkPN "Rostov" ; -lin rostov_na_donu_PN = mkPN "Rostov - na - donu"; -- from DictEng -lin roswell_PN = mkPN "Roswell" ; -lin rota_PN = mkPN "Rota" ; -lin rotarian_PN = mkPN "Rotarian" ; -lin rotary_club_PN = mkPN "Rotary Club" ; -lin roth_PN = mkPN "Roth" ; -lin rotherham_PN = mkPN "Rotherham"; -- from DictEng -lin rothesay_PN = mkPN "Rothesay"; -- from DictEng -lin rothko_PN = mkPN "Rothko" ; -lin rothschild_PN = mkPN "Rothschild" ; -lin rothwell_PN = mkPN "Rothwell"; -- from DictEng -lin rotifera_PN = mkPN "Rotifera" ; -lin rotterdam_PN = mkPN "Rotterdam"; -- from DictEng -lin rottweiler_PN = mkPN "Rottweiler" ; -lin roubaix_PN = mkPN "Roubaix"; -- from DictEng -lin rouen_PN = mkPN "Rouen"; -- from DictEng -lin rough_rider_PN = mkPN "Rough Rider" ; -lin round_table_PN = mkPN "Round Table" ; -lin roundhead_PN = mkPN "Roundhead" ; -lin rous_PN = mkPN "Rous" ; -lin rousseau_PN = mkPN "Rousseau" ; -lin rousseauan_A = mkA "Rousseauan" ; -lin rowlands_gill_PN = mkPN "Rowlands gill"; -- from DictEng -lin roy_PN = mkPN "Roy"; -- from DictEng -lin royal_academy_PN = mkPN "Royal Academy" ; -lin royal_air_force_PN = mkPN "Royal Air Force" ; -lin royal_canadian_mounted_police_PN = mkPN "Royal Canadian Mounted Police" ; -lin royal_national_eisteddfod_PN = mkPN "Royal National Eisteddfod" ; -lin royal_society_PN = mkPN "Royal Society" ; -lin royston_PN = mkPN "Royston"; -- from DictEng -lin roystonea_PN = mkPN "Roystonea" ; -lin rsvp_PN = mkPN "Rsvp"; -- from DictEng -lin rt_hon_PN = mkPN "Rt hon"; -- from DictEng -lin rub_al_khali_PN = mkPN "Rub al Khali" ; -lin rubens_PN = mkPN "Rubens" ; -lin rubia_PN = mkPN "Rubia" ; -lin rubiaceae_PN = mkPN "Rubiaceae" ; -lin rubiales_PN = mkPN "Rubiales" ; -lin rubicon_PN = mkPN "Rubicon" ; -lin rubin_test_PN = mkPN "Rubin test" ; -lin rubinstein_PN = mkPN "Rubinstein" ; -lin rubus_PN = mkPN "Rubus" ; -lin rudbeckia_PN = mkPN "Rudbeckia" ; -lin ruddington_PN = mkPN "Ruddington"; -- from DictEng -lin rudolf_PN = mkPN "Rudolf"; -- from DictEng -lin rudra_PN = mkPN "Rudra" ; -lin rudy_PN = mkPN "Rudy"; -- from DictEng -lin rufous_rubber_cup_PN = mkPN "Rufous rubber cup" ; -lin rugby_PN = mkPN "Rugby"; -- from DictEng -lin rugeley_PN = mkPN "Rugeley"; -- from DictEng -lin ruhr_PN = mkPN "Ruhr" ; -lin rumex_PN = mkPN "Rumex" ; -lin ruminantia_PN = mkPN "Ruminantia" ; -lin rumohra_PN = mkPN "Rumohra" ; -lin rumpelstiltskin_PN = mkPN "Rumpelstiltskin" ; -lin runcorn_PN = mkPN "Runcorn"; -- from DictEng -lin rundstedt_PN = mkPN "Rundstedt" ; -lin runyon_PN = mkPN "Runyon" ; -lin rupert_PN = mkPN "Rupert"; -- from DictEng -lin rupicapra_PN = mkPN "Rupicapra" ; -lin rupicola_PN = mkPN "Rupicola" ; -lin ruptiliocarpon_PN = mkPN "Ruptiliocarpon" ; -lin ruritania_PN = mkPN "Ruritania" ; -lin ruritanian_A = compoundA (mkA "ruritanian"); -- from DictEng -lin ruritanian_PN = mkPN "Ruritanian" ; -lin rus_PN = mkPN "Rus" ; -lin ruscaceae_PN = mkPN "Ruscaceae" ; -lin ruscus_PN = mkPN "Ruscus" ; -lin rush_PN = mkPN "Rush" ; -lin rushdie_PN = mkPN "Rushdie" ; -lin rushmore_PN = mkPN "Rushmore" ; -lin ruskin_PN = mkPN "Ruskin" ; -lin russell_PN = mkPN "Russell" ; -lin russell's_body_PN = mkPN "Russell's body" ; -lin russia_PN = mkPN "Russia"; -- from DictEng -lin russia_leather_PN = mkPN "Russia leather" ; -lin russian_A = compoundA (mkA "Russian"); -- from DictEng -lin russian_PN = mkPN "Russian" ; -lin russian_speaking_A = compoundA (mkA "Russian speaking") ; -lin russian_orthodox_church_PN = mkPN "Russian Orthodox Church" ; -lin russian_revolution_PN = mkPN "Russian Revolution" ; -lin russian_river_PN = mkPN "Russian River" ; -lin russian_agency_PN = mkPN "Russian agency" ; -lin russian_almond_PN = mkPN "Russian almond" ; -lin russian_bank_PN = mkPN "Russian bank" ; -lin russian_dandelion_PN = mkPN "Russian dandelion" ; -lin russian_dressing_PN = mkPN "Russian dressing" ; -lin russian_monetary_unit_PN = mkPN "Russian monetary unit" ; -lin russian_olive_PN = mkPN "Russian olive" ; -lin russian_roulette_PN = mkPN "Russian roulette" ; -lin russian_thistle_PN = mkPN "Russian thistle" ; -lin russo_japanese_war_PN = mkPN "Russo Japanese War" ; -lin russula_PN = mkPN "Russula" ; -lin russulaceae_PN = mkPN "Russulaceae" ; -lin rustbelt_PN = mkPN "Rustbelt" ; -lin ruta_PN = mkPN "Ruta" ; -lin rutaceae_PN = mkPN "Rutaceae" ; -lin ruth_PN = mkPN "Ruth"; -- from DictEng -lin rutherford_PN = mkPN "Rutherford" ; -lin rutherford_atom_PN = mkPN "Rutherford atom" ; -lin rutherglen_PN = mkPN "Rutherglen"; -- from DictEng -lin rutilus_PN = mkPN "Rutilus" ; -lin rutland_PN = mkPN "Rutland"; -- from DictEng -lin rutledge_PN = mkPN "Rutledge" ; -lin rwanda_PN = mkPN "Rwanda"; -- from DictEng -lin rwanda_franc_PN = mkPN "Rwanda franc" ; -lin rwandan_A = compoundA (mkA "rwandan"); -- from DictEng -lin rwandan_PN = mkPN "Rwandan" ; -lin rydberg's_penstemon_PN = mkPN "Rydberg's penstemon" ; -lin ryde_PN = mkPN "Ryde"; -- from DictEng -lin ryehill_PN = mkPN "Ryehill"; -- from DictEng -lin rynchopidae_PN = mkPN "Rynchopidae" ; -lin rynchops_PN = mkPN "Rynchops" ; -lin rypticus_PN = mkPN "Rypticus" ; -lin ryukyu_islands_PN = mkPN "Ryukyu Islands" ; -lin ryukyuan_PN = mkPN "Ryukyuan" ; -lin s_PN = mkPN "S" ; -lin s_shape_PN = mkPN "S shape" ; -lin sa_PN = mkPN "SA" ; -lin salt_i_PN = mkPN "SALT I" ; -lin salt_ii_PN = mkPN "SALT II" ; -lin sos_PN = mkPN "SOS" ; -lin stp_PN = mkPN "STP" ; -lin swat_team_PN = mkPN "SWAT team" ; -lin s_wrench_PN = mkPN "S wrench" ; -lin saale_PN = mkPN "Saale" ; -lin saale_glaciation_PN = mkPN "Saale glaciation" ; -lin saarbrucken_PN = mkPN "Saarbrucken"; -- from DictEng -lin saarinen_PN = mkPN "Saarinen" ; -lin saba_PN = mkPN "Saba" ; -lin sabadeli_PN = mkPN "Sabadeli"; -- from DictEng -lin sabah_PN = mkPN "Sabah"; -- from DictEng -lin sabahan_A = compoundA (mkA "sabahan"); -- from DictEng -lin sabahan_PN = mkPN "Sabahan" ; -lin sabal_PN = mkPN "Sabal" ; -lin sabaoth_PN = mkPN "Sabaoth" ; -lin sabbatarian_A = compoundA (mkA "sabbatarian"); -- from DictEng -lin sabbatarian_PN = mkPN "Sabbatarian" ; -lin sabbath_PN = mkPN "Sabbath" ; -lin sabellian_PN = mkPN "Sabellian" ; -lin sabin_PN = mkPN "Sabin" ; -lin sabin_vaccine_PN = mkPN "Sabin vaccine" ; -lin sabine_A = mkA "Sabine" ; -lin sabine_PN = mkPN "Sabine" ; -lin sabinea_PN = mkPN "Sabinea" ; -lin sacagawea_PN = mkPN "Sacagawea" ; -lin saccharomyces_PN = mkPN "Saccharomyces" ; -lin saccharomycetaceae_PN = mkPN "Saccharomycetaceae" ; -lin saccharum_PN = mkPN "Saccharum" ; -lin sacco_PN = mkPN "Sacco" ; -lin sacramento_PN = mkPN "Sacramento"; -- from DictEng -lin sacramento_mountains_PN = mkPN "Sacramento Mountains" ; -lin sacramento_river_PN = mkPN "Sacramento River" ; -lin sacred_college_PN = mkPN "Sacred College" ; -lin sadat_PN = mkPN "Sadat" ; -lin sadducean_A = mkA "Sadducean" ; -lin sadducee_PN = mkPN "Sadducee" ; -lin sade_PN = mkPN "Sade" ; -lin sadleria_PN = mkPN "Sadleria" ; -lin saek_PN = mkPN "Saek" ; -lin safar_PN = mkPN "Safar" ; -lin saffron_walden_PN = mkPN "Saffron walden"; -- from DictEng -lin sagina_PN = mkPN "Sagina" ; -lin saginaw_PN = mkPN "Saginaw" ; -lin sagitta_PN = mkPN "Sagitta" ; -lin sagittaria_PN = mkPN "Sagittaria" ; -lin sagittariidae_PN = mkPN "Sagittariidae" ; -lin sagittarius_PN = mkPN "Sagittarius"; -- from DictEng -lin sahara_PN = mkPN "Sahara" ; -lin saharan_A = mkA "Saharan" ; -lin saharan_PN = mkPN "Saharan" ; -lin saigon_PN = mkPN "Saigon"; -- from DictEng -lin saigon_cinnamon_PN = mkPN "Saigon cinnamon" ; -lin saimiri_PN = mkPN "Saimiri" ; -lin saint_bernard's_lily_PN = mkPN "Saint Bernard's lily" ; -lin saint_mihiel_PN = mkPN "Saint Mihiel" ; -lin saint_saens_PN = mkPN "Saint Saens" ; -lin saint_agnes's_eve_PN = mkPN "Saint Agnes's Eve" ; -lin saint_anthony's_fire_PN = mkPN "Saint Anthony's fire" ; -lin saint_bernard_PN = mkPN "Saint Bernard" ; -lin saint_christopher_PN = mkPN "Saint Christopher" ; -lin saint_cloud_PN = mkPN "Saint Cloud" ; -lin saint_emilion_PN = mkPN "Saint Emilion" ; -lin saint_eustatius_PN = mkPN "Saint Eustatius" ; -lin saint_francis_PN = mkPN "Saint Francis" ; -lin saint_john_PN = mkPN "Saint John" ; -lin saint_john's_PN = mkPN "Saint John's" ; -lin saint_johns_PN = mkPN "Saint Johns" ; -lin saint_joseph_PN = mkPN "Saint Joseph" ; -lin saint_kitts_and_nevis_PN = mkPN "Saint Kitts and Nevis" ; -lin saint_lawrence_PN = mkPN "Saint Lawrence" ; -lin saint_lawrence_seaway_PN = mkPN "Saint Lawrence Seaway" ; -lin saint_louis_PN = mkPN "Saint Louis" ; -lin saint_lucia_PN = mkPN "Saint Lucia" ; -lin saint_martin_PN = mkPN "Saint Martin" ; -lin saint_paul_PN = mkPN "Saint Paul" ; -lin saint_vincent_PN = mkPN "Saint Vincent" ; -lin saint_vincent_and_the_grenadines_PN = mkPN "Saint Vincent and the Grenadines" ; -lin saintpaulia_PN = mkPN "Saintpaulia" ; -lin saints_peter_and_paul_PN = mkPN "Saints Peter and Paul" ; -lin saipan_PN = mkPN "Saipan" ; -lin sajama_PN = mkPN "Sajama" ; -lin sakharov_PN = mkPN "Sakharov" ; -lin saladin_PN = mkPN "Saladin" ; -lin salafism_PN = mkPN "Salafism" ; -lin salafist_group_PN = mkPN "Salafist Group" ; -lin salamanca_PN = mkPN "Salamanca"; -- from DictEng -lin salamandra_PN = mkPN "Salamandra" ; -lin salamandridae_PN = mkPN "Salamandridae" ; -lin sale_PN = mkPN "Sale"; -- from DictEng -lin salem_PN = mkPN "Salem" ; -lin salerno_PN = mkPN "Salerno"; -- from DictEng -lin salford_PN = mkPN "Salford"; -- from DictEng -lin salian_frank_PN = mkPN "Salian Frank" ; -lin salic_law_PN = mkPN "Salic law" ; -lin salicaceae_PN = mkPN "Salicaceae" ; -lin salicales_PN = mkPN "Salicales" ; -lin salicornia_PN = mkPN "Salicornia" ; -lin salientia_PN = mkPN "Salientia" ; -lin salina_PN = mkPN "Salina" ; -lin salinger_PN = mkPN "Salinger" ; -lin salisbury_PN = mkPN "Salisbury"; -- from DictEng -lin salisbury_steak_PN = mkPN "Salisbury steak" ; -lin salish_PN = mkPN "Salish" ; -lin salix_PN = mkPN "Salix" ; -lin salk_PN = mkPN "Salk" ; -lin salk_vaccine_PN = mkPN "Salk vaccine" ; -lin sally_PN = mkPN "Sally"; -- from DictEng -lin sally_lunn_PN = mkPN "Sally Lunn" ; -lin salmacis_PN = mkPN "Salmacis" ; -lin salmo_PN = mkPN "Salmo" ; -lin salmon_PN = mkPN "Salmon" ; -lin salmonella_enteritidis_PN = mkPN "Salmonella enteritidis" ; -lin salmonella_typhimurium_PN = mkPN "Salmonella typhimurium" ; -lin salmonidae_PN = mkPN "Salmonidae" ; -lin salome_PN = mkPN "Salome" ; -lin salomon_PN = mkPN "Salomon" ; -lin salpichroa_PN = mkPN "Salpichroa" ; -lin salpidae_PN = mkPN "Salpidae" ; -lin salpinctes_PN = mkPN "Salpinctes" ; -lin salsola_PN = mkPN "Salsola" ; -lin salt_PN = mkPN "Salt"; -- from DictEng -lin salt_lake_city_PN = mkPN "Salt Lake City" ; -lin saltash_PN = mkPN "Saltash"; -- from DictEng -lin saltburn_PN = mkPN "Saltburn"; -- from DictEng -lin saltcoats_PN = mkPN "Saltcoats"; -- from DictEng -lin salton_sea_PN = mkPN "Salton Sea" ; -lin saluki_PN = mkPN "Saluki" ; -lin salvador_PN = mkPN "Salvador"; -- from DictEng -lin salvadora_PN = mkPN "Salvadora" ; -lin salvadoraceae_PN = mkPN "Salvadoraceae" ; -lin salvadoran_A = mkA "Salvadoran" ; -lin salvadoran_PN = mkPN "Salvadoran" ; -lin salvation_army_PN = mkPN "Salvation Army" ; -lin salvelinus_PN = mkPN "Salvelinus" ; -lin salvinia_PN = mkPN "Salvinia" ; -lin salviniaceae_PN = mkPN "Salviniaceae" ; -lin salyut_PN = mkPN "Salyut" ; -lin salzburg_PN = mkPN "Salzburg"; -- from DictEng -lin sam_PN = mkPN "Sam"; -- from DictEng -lin sam_browne_belt_PN = mkPN "Sam Browne belt" ; -lin sama_veda_PN = mkPN "Sama Veda" ; -lin samantha_PN = mkPN "Samantha"; -- from DictEng -lin samaria_PN = mkPN "Samaria" ; -lin samaritan_PN = mkPN "Samaritan" ; -lin samarkand_PN = mkPN "Samarkand" ; -lin sambre_PN = mkPN "Sambre" ; -lin sambucus_PN = mkPN "Sambucus" ; -lin samhita_PN = mkPN "Samhita" ; -lin samia_PN = mkPN "Samia" ; -lin sammy_PN = mkPN "Sammy"; -- from DictEng -lin samnite_PN = mkPN "Samnite" ; -lin samoa_PN = mkPN "Samoa"; -- from DictEng -lin samoan_A = compoundA (mkA "samoan"); -- from DictEng -lin samoan_PN = mkPN "Samoan" ; -lin samolus_PN = mkPN "Samolus" ; -lin samoyed_PN = mkPN "Samoyed" ; -lin samoyedic_PN = mkPN "Samoyedic" ; -lin samoyedic_speaking_A = compoundA (mkA "Samoyedic speaking") ; -lin samson_PN = mkPN "Samson" ; -lin samuel_PN = mkPN "Samuel"; -- from DictEng -lin san_andreas_fault_PN = mkPN "San Andreas Fault" ; -lin san_angelo_PN = mkPN "San Angelo" ; -lin san_antonio_PN = mkPN "San antonio"; -- from DictEng -lin san_bernardino_PN = mkPN "San bernardino"; -- from DictEng -lin san_carlos_apache_PN = mkPN "San Carlos Apache" ; -lin san_diego_PN = mkPN "San diego"; -- from DictEng -lin san_diego_bay_PN = mkPN "San Diego Bay" ; -lin san_fernando_valley_PN = mkPN "San Fernando Valley" ; -lin san_francisco_PN = mkPN "San francisco"; -- from DictEng -lin san_francisco_bay_PN = mkPN "San Francisco Bay" ; -lin san_joaquin_river_PN = mkPN "San Joaquin River" ; -lin san_joaquin_valley_PN = mkPN "San Joaquin Valley" ; -lin san_jose_PN = mkPN "San jose"; -- from DictEng -lin san_jose_scale_PN = mkPN "San Jose scale" ; -lin san_juan_PN = mkPN "San juan"; -- from DictEng -lin san_juan_hill_PN = mkPN "San Juan Hill" ; -lin san_juan_mountains_PN = mkPN "San Juan Mountains" ; -lin san_luis_potosi_PN = mkPN "San Luis Potosi" ; -lin san_marinese_A = compoundA (mkA "san marinese"); -- from DictEng -lin san_marinese_PN = mkPN "San Marinese" ; -lin san_marino_PN = mkPN "San marino"; -- from DictEng -lin san_mateo_PN = mkPN "San Mateo" ; -lin san_pablo_PN = mkPN "San Pablo" ; -lin san_pedro_sula_PN = mkPN "San Pedro Sula" ; -lin san_salvador_PN = mkPN "San Salvador" ; -lin san_sebastian_PN = mkPN "San sebastian"; -- from DictEng -lin sana_PN = mkPN "Sana" ; -lin sanchez_PN = mkPN "Sanchez" ; -lin sand_PN = mkPN "Sand" ; -lin sandbach_PN = mkPN "Sandbach"; -- from DictEng -lin sandburg_PN = mkPN "Sandburg" ; -lin sandown_PN = mkPN "Sandown"; -- from DictEng -lin sandra_PN = mkPN "Sandra"; -- from DictEng -lin sandy_PN = mkPN "Sandy"; -- from DictEng -lin sangay_PN = mkPN "Sangay" ; -lin sanger_PN = mkPN "Sanger" ; -lin sango_PN = mkPN "Sango" ; -lin sanguinaria_PN = mkPN "Sanguinaria" ; -lin sanhedrin_PN = mkPN "Sanhedrin" ; -lin sanicula_PN = mkPN "Sanicula" ; -lin sanskrit_PN = mkPN "Sanskrit" ; -lin sanskrit_literature_PN = mkPN "Sanskrit literature" ; -lin santa_ana_PN = mkPN "Santa Ana" ; -lin santa_anna_PN = mkPN "Santa Anna" ; -lin santa_barbara_PN = mkPN "Santa Barbara" ; -lin santa_catalina_PN = mkPN "Santa Catalina" ; -lin santa_clara_PN = mkPN "Santa Clara" ; -lin santa_claus_PN = mkPN "Santa claus"; -- from DictEng -lin santa_cruz_PN = mkPN "Santa Cruz" ; -lin santa_cruz_cypress_PN = mkPN "Santa Cruz cypress" ; -lin santa_fe_PN = mkPN "Santa Fe" ; -lin santa_fe_trail_PN = mkPN "Santa Fe Trail" ; -lin santa_gertrudis_PN = mkPN "Santa Gertrudis" ; -lin santa_lucia_fir_PN = mkPN "Santa Lucia fir" ; -lin santa_maria_del_tule_PN = mkPN "Santa Maria del Tule" ; -lin santalaceae_PN = mkPN "Santalaceae" ; -lin santalales_PN = mkPN "Santalales" ; -lin santalum_PN = mkPN "Santalum" ; -lin santander_PN = mkPN "Santander"; -- from DictEng -lin santee_PN = mkPN "Santee" ; -lin santiago_PN = mkPN "Santiago"; -- from DictEng -lin santiago_de_cuba_PN = mkPN "Santiago de Cuba" ; -lin santiago_de_los_caballeros_PN = mkPN "Santiago de los Caballeros" ; -lin santo_domingo_PN = mkPN "Santo domingo"; -- from DictEng -lin santolina_PN = mkPN "Santolina" ; -lin santos_PN = mkPN "Santos"; -- from DictEng -lin sanvitalia_PN = mkPN "Sanvitalia" ; -lin sao_bernardo_do_campo_PN = mkPN "Sao Bernardo do Campo" ; -lin sao_francisco_PN = mkPN "Sao Francisco" ; -lin sao_goncalo_PN = mkPN "Sao Goncalo" ; -lin sao_joao_de_meriti_PN = mkPN "Sao Joao de Meriti" ; -lin sao_jose_dos_campos_PN = mkPN "Sao Jose dos Campos" ; -lin sao_louis_PN = mkPN "Sao Louis" ; -lin sao_paulo_PN = mkPN "Sao Paulo" ; -lin sao_thome_e_principe_monetary_unit_PN = mkPN "Sao Thome e Principe monetary unit" ; -lin sao_tiago_island_PN = mkPN "Sao Tiago Island" ; -lin sao_tome_PN = mkPN "Sao Tome" ; -lin sao_tome_and_principe_PN = mkPN "Sao Tome and Principe" ; -lin sao_paolo_PN = mkPN "Sao paolo"; -- from DictEng -lin saone_PN = mkPN "Saone" ; -lin sapindaceae_PN = mkPN "Sapindaceae" ; -lin sapindales_PN = mkPN "Sapindales" ; -lin sapindus_PN = mkPN "Sapindus" ; -lin sapir_PN = mkPN "Sapir" ; -lin saponaria_PN = mkPN "Saponaria" ; -lin sapotaceae_PN = mkPN "Sapotaceae" ; -lin sapphic_A = compoundA (mkA "sapphic"); -- from DictEng -lin sappho_PN = mkPN "Sappho" ; -lin sapporo_PN = mkPN "Sapporo"; -- from DictEng -lin saprolegnia_PN = mkPN "Saprolegnia" ; -lin saprolegniales_PN = mkPN "Saprolegniales" ; -lin saqqara_PN = mkPN "Saqqara" ; -lin sara_PN = mkPN "Sara"; -- from DictEng -lin saracen_PN = mkPN "Saracen" ; -lin sarah_PN = mkPN "Sarah"; -- from DictEng -lin sarajevo_PN = mkPN "Sarajevo"; -- from DictEng -lin sarasota_PN = mkPN "Sarasota" ; -lin sarasvati_PN = mkPN "Sarasvati" ; -lin saratoga_PN = mkPN "Saratoga" ; -lin saratoga_springs_PN = mkPN "Saratoga Springs" ; -lin saratoga_spittlebug_PN = mkPN "Saratoga spittlebug" ; -lin saratov_PN = mkPN "Saratov"; -- from DictEng -lin sarawak_PN = mkPN "Sarawak"; -- from DictEng -lin sarawakian_A = compoundA (mkA "sarawakian"); -- from DictEng -lin sarawakian_PN = mkPN "Sarawakian" ; -lin sarazen_PN = mkPN "Sarazen" ; -lin sarcobatus_PN = mkPN "Sarcobatus" ; -lin sarcocephalus_PN = mkPN "Sarcocephalus" ; -lin sarcochilus_PN = mkPN "Sarcochilus" ; -lin sarcocystis_PN = mkPN "Sarcocystis" ; -lin sarcodes_PN = mkPN "Sarcodes" ; -lin sarcodina_PN = mkPN "Sarcodina" ; -lin sarcophaga_PN = mkPN "Sarcophaga" ; -lin sarcophilus_PN = mkPN "Sarcophilus" ; -lin sarcoptes_PN = mkPN "Sarcoptes" ; -lin sarcoptidae_PN = mkPN "Sarcoptidae" ; -lin sarcorhamphus_PN = mkPN "Sarcorhamphus" ; -lin sarcoscypha_coccinea_PN = mkPN "Sarcoscypha coccinea" ; -lin sarcoscyphaceae_PN = mkPN "Sarcoscyphaceae" ; -lin sarcosomataceae_PN = mkPN "Sarcosomataceae" ; -lin sarcosporidia_PN = mkPN "Sarcosporidia" ; -lin sarcostemma_PN = mkPN "Sarcostemma" ; -lin sarda_PN = mkPN "Sarda" ; -lin sardina_PN = mkPN "Sardina" ; -lin sardinia_PN = mkPN "Sardinia" ; -lin sardinian_A = mkA "Sardinian" ; -lin sardinian_PN = mkPN "Sardinian" ; -lin sardinops_PN = mkPN "Sardinops" ; -lin sardis_PN = mkPN "Sardis" ; -lin sargasso_sea_PN = mkPN "Sargasso Sea" ; -lin sargent_PN = mkPN "Sargent" ; -lin sarisbury_PN = mkPN "Sarisbury"; -- from DictEng -lin sarnoff_PN = mkPN "Sarnoff" ; -lin saronic_gulf_PN = mkPN "Saronic Gulf" ; -lin saroyan_PN = mkPN "Saroyan" ; -lin sarpanitu_PN = mkPN "Sarpanitu" ; -lin sarpedon_PN = mkPN "Sarpedon" ; -lin sarracenia_PN = mkPN "Sarracenia" ; -lin sarraceniaceae_PN = mkPN "Sarraceniaceae" ; -lin sarraceniales_PN = mkPN "Sarraceniales" ; -lin sartre_PN = mkPN "Sartre" ; -lin saskatchewan_PN = mkPN "Saskatchewan"; -- from DictEng -lin saskatoon_PN = mkPN "Saskatoon" ; -lin sassari_PN = mkPN "Sassari"; -- from DictEng -lin sassenach_PN = mkPN "Sassenach" ; -lin sat_PN = mkPN "Sat"; -- from DictEng -lin satan_PN = mkPN "Satan" ; -lin satanic_A = compoundA (mkA "satanic"); -- from DictEng -lin satanist_PN = mkPN "Satanist" ; -lin satie_PN = mkPN "Satie" ; -lin saturday_PN = mkPN "Saturday"; -- from DictEng -lin saturday_night_special_PN = mkPN "Saturday night special" ; -lin satureja_PN = mkPN "Satureja" ; -lin saturn_PN = mkPN "Saturn"; -- from DictEng -lin saturnalia_PN = mkPN "Saturnalia" ; -lin saturnia_PN = mkPN "Saturnia" ; -lin saturniidae_PN = mkPN "Saturniidae" ; -lin satyagraha_PN = mkPN "Satyagraha" ; -lin satyridae_PN = mkPN "Satyridae" ; -lin sauchie_PN = mkPN "Sauchie"; -- from DictEng -lin saudi_PN = mkPN "Saudi" ; -lin saudi_arabian_A = compoundA (mkA "saudi arabian"); -- from DictEng -lin saudi_arabia_PN = mkPN "Saudi arabia"; -- from DictEng -lin saudi_arabian_monetary_unit_PN = mkPN "Saudi Arabian monetary unit" ; -lin saudi_arabian_riyal_PN = mkPN "Saudi Arabian riyal" ; -lin sauk_PN = mkPN "Sauk" ; -lin saul_PN = mkPN "Saul" ; -lin sault_sainte_marie_PN = mkPN "Sault Sainte Marie" ; -lin sauria_PN = mkPN "Sauria" ; -lin saurischia_PN = mkPN "Saurischia" ; -lin sauromalus_PN = mkPN "Sauromalus" ; -lin sauropoda_PN = mkPN "Sauropoda" ; -lin sauropodomorpha_PN = mkPN "Sauropodomorpha" ; -lin sauropterygia_PN = mkPN "Sauropterygia" ; -lin saurosuchus_PN = mkPN "Saurosuchus" ; -lin saururaceae_PN = mkPN "Saururaceae" ; -lin saururus_PN = mkPN "Saururus" ; -lin saussurea_PN = mkPN "Saussurea" ; -lin sauterne_PN = mkPN "Sauterne" ; -lin sauvignon_blanc_PN = mkPN "Sauvignon blanc" ; -lin sauvignon_grape_PN = mkPN "Sauvignon grape" ; -lin savannah_PN = mkPN "Savannah" ; -lin savara_PN = mkPN "Savara" ; -lin savitar_PN = mkPN "Savitar" ; -lin savonarola_PN = mkPN "Savonarola" ; -lin savoy_PN = mkPN "Savoy" ; -lin savoyard_PN = mkPN "Savoyard" ; -lin sawan_PN = mkPN "Sawan" ; -lin sawbridgeworth_PN = mkPN "Sawbridgeworth"; -- from DictEng -lin sax_PN = mkPN "Sax" ; -lin saxe_PN = mkPN "Saxe" ; -lin saxe_coburg_gotha_PN = mkPN "Saxe Coburg Gotha" ; -lin saxe_gothea_PN = mkPN "Saxe gothea" ; -lin saxicola_PN = mkPN "Saxicola" ; -lin saxifraga_PN = mkPN "Saxifraga" ; -lin saxifragaceae_PN = mkPN "Saxifragaceae" ; -lin saxo_grammaticus_PN = mkPN "Saxo Grammaticus" ; -lin saxon_A = compoundA (mkA "saxon"); -- from DictEng -lin saxon_PN = mkPN "Saxon" ; -lin saxony_PN = mkPN "Saxony" ; -lin sayan_mountains_PN = mkPN "Sayan Mountains" ; -lin sayda_PN = mkPN "Sayda" ; -lin sayeret_matkal_PN = mkPN "Sayeret Matkal" ; -lin sayers_PN = mkPN "Sayers" ; -lin sayornis_PN = mkPN "Sayornis" ; -lin sazerac_PN = mkPN "Sazerac" ; -lin scandentia_PN = mkPN "Scandentia" ; -lin scandinavia_PN = mkPN "Scandinavia" ; -lin scandinavian_A = compoundA (mkA "Scandinavian"); -- from DictEng -lin scandinavian_PN = mkPN "Scandinavian" ; -lin scandinavian_country_PN = mkPN "Scandinavian country" ; -lin scandinavian_lox_PN = mkPN "Scandinavian lox" ; -lin scaphiopus_PN = mkPN "Scaphiopus" ; -lin scaphopoda_PN = mkPN "Scaphopoda" ; -lin scaphosepalum_PN = mkPN "Scaphosepalum" ; -lin scarabaeidae_PN = mkPN "Scarabaeidae" ; -lin scaramouch_PN = mkPN "Scaramouch" ; -lin scarborough_PN = mkPN "Scarborough"; -- from DictEng -lin scardinius_PN = mkPN "Scardinius" ; -lin scaridae_PN = mkPN "Scaridae" ; -lin scartella_PN = mkPN "Scartella" ; -lin sceliphron_PN = mkPN "Sceliphron" ; -lin sceloglaux_PN = mkPN "Sceloglaux" ; -lin sceloporus_PN = mkPN "Sceloporus" ; -lin schadenfreude_PN = mkPN "Schadenfreude" ; -lin schaffneria_PN = mkPN "Schaffneria" ; -lin schaffneria_nigripes_PN = mkPN "Schaffneria nigripes" ; -lin scheele_PN = mkPN "Scheele" ; -lin schefflera_PN = mkPN "Schefflera" ; -lin scheldt_PN = mkPN "Scheldt" ; -lin schenectady_PN = mkPN "Schenectady" ; -lin scheuchzeriaceae_PN = mkPN "Scheuchzeriaceae" ; -lin schiaparelli_PN = mkPN "Schiaparelli" ; -lin schick_test_PN = mkPN "Schick test" ; -lin schiller_PN = mkPN "Schiller" ; -lin schinus_PN = mkPN "Schinus" ; -lin schistosoma_PN = mkPN "Schistosoma" ; -lin schistosomatidae_PN = mkPN "Schistosomatidae" ; -lin schizachyrium_PN = mkPN "Schizachyrium" ; -lin schizaea_PN = mkPN "Schizaea" ; -lin schizaeaceae_PN = mkPN "Schizaeaceae" ; -lin schizomycetes_PN = mkPN "Schizomycetes" ; -lin schizophragma_PN = mkPN "Schizophragma" ; -lin schizophyta_PN = mkPN "Schizophyta" ; -lin schizopoda_PN = mkPN "Schizopoda" ; -lin schizosaccharomyces_PN = mkPN "Schizosaccharomyces" ; -lin schizosaccharomycetaceae_PN = mkPN "Schizosaccharomycetaceae" ; -lin schleiden_PN = mkPN "Schleiden" ; -lin schlesinger_PN = mkPN "Schlesinger" ; -lin schliemann_PN = mkPN "Schliemann" ; -lin schlumbergera_PN = mkPN "Schlumbergera" ; -lin schmidt_PN = mkPN "Schmidt" ; -lin schmidt_telescope_PN = mkPN "Schmidt telescope" ; -lin schnabel_PN = mkPN "Schnabel" ; -lin scholastic_PN = mkPN "Scholastic" ; -lin scholasticism_PN = mkPN "Scholasticism" ; -lin schomburgkia_PN = mkPN "Schomburgkia" ; -lin schonbein_PN = mkPN "Schonbein" ; -lin schonberg_PN = mkPN "Schonberg" ; -lin schoolcraft_PN = mkPN "Schoolcraft" ; -lin schoolman_PN = mkPN "Schoolman" ; -lin schopenhauer_PN = mkPN "Schopenhauer" ; -lin schreiber's_aster_PN = mkPN "Schreiber's aster" ; -lin schrodinger_PN = mkPN "Schrodinger" ; -lin schrodinger_equation_PN = mkPN "Schrodinger equation" ; -lin schubert_PN = mkPN "Schubert" ; -lin schulz_PN = mkPN "Schulz" ; -lin schumann_PN = mkPN "Schumann" ; -lin schumann_heink_PN = mkPN "Schumann Heink" ; -lin schumpeter_PN = mkPN "Schumpeter" ; -lin schutzstaffel_PN = mkPN "Schutzstaffel" ; -lin schwann_PN = mkPN "Schwann" ; -lin schwann_cell_PN = mkPN "Schwann cell" ; -lin schweitzer_PN = mkPN "Schweitzer" ; -lin schwerin_PN = mkPN "Schwerin"; -- from DictEng -lin sciadopityaceae_PN = mkPN "Sciadopityaceae" ; -lin sciadopitys_PN = mkPN "Sciadopitys" ; -lin sciaena_PN = mkPN "Sciaena" ; -lin sciaenidae_PN = mkPN "Sciaenidae" ; -lin sciaenops_PN = mkPN "Sciaenops" ; -lin sciaridae_PN = mkPN "Sciaridae" ; -lin scientology_PN = mkPN "Scientology" ; -lin scilly_islands_PN = mkPN "Scilly Islands" ; -lin scincella_PN = mkPN "Scincella" ; -lin scincidae_PN = mkPN "Scincidae" ; -lin scincus_PN = mkPN "Scincus" ; -lin scindapsus_PN = mkPN "Scindapsus" ; -lin scipio_PN = mkPN "Scipio" ; -lin scirpus_PN = mkPN "Scirpus" ; -lin sciuridae_PN = mkPN "Sciuridae" ; -lin sciuromorpha_PN = mkPN "Sciuromorpha" ; -lin sciurus_PN = mkPN "Sciurus" ; -lin scleranthus_PN = mkPN "Scleranthus" ; -lin scleroderma_PN = mkPN "Scleroderma" ; -lin scleroderma_bovista_PN = mkPN "Scleroderma bovista" ; -lin scleroderma_citrinum_PN = mkPN "Scleroderma citrinum" ; -lin scleroderma_flavidium_PN = mkPN "Scleroderma flavidium" ; -lin sclerodermataceae_PN = mkPN "Sclerodermataceae" ; -lin sclerodermatales_PN = mkPN "Sclerodermatales" ; -lin scleropages_PN = mkPN "Scleropages" ; -lin scleroparei_PN = mkPN "Scleroparei" ; -lin sclerotiniaceae_PN = mkPN "Sclerotiniaceae" ; -lin sclerotium_PN = mkPN "Sclerotium" ; -lin scolopacidae_PN = mkPN "Scolopacidae" ; -lin scolopax_PN = mkPN "Scolopax" ; -lin scolymus_PN = mkPN "Scolymus" ; -lin scolytidae_PN = mkPN "Scolytidae" ; -lin scolytus_PN = mkPN "Scolytus" ; -lin scomber_PN = mkPN "Scomber" ; -lin scomberesocidae_PN = mkPN "Scomberesocidae" ; -lin scomberesox_PN = mkPN "Scomberesox" ; -lin scomberomorus_PN = mkPN "Scomberomorus" ; -lin scomberomorus_maculatus_PN = mkPN "Scomberomorus maculatus" ; -lin scombridae_PN = mkPN "Scombridae" ; -lin scombroidea_PN = mkPN "Scombroidea" ; -lin scopes_PN = mkPN "Scopes" ; -lin scopes_trial_PN = mkPN "Scopes trial" ; -lin scophthalmus_PN = mkPN "Scophthalmus" ; -lin scopolia_PN = mkPN "Scopolia" ; -lin scopolia_carniolica_PN = mkPN "Scopolia carniolica" ; -lin scorpaena_PN = mkPN "Scorpaena" ; -lin scorpaenidae_PN = mkPN "Scorpaenidae" ; -lin scorpaenoidea_PN = mkPN "Scorpaenoidea" ; -lin scorpio_PN = mkPN "Scorpio"; -- from DictEng -lin scorpionida_PN = mkPN "Scorpionida" ; -lin scorpius_PN = mkPN "Scorpius" ; -lin scorsese_PN = mkPN "Scorsese" ; -lin scot_PN = mkPN "Scot" ; -lin scotch_PN = mkPN "Scotch" ; -lin scotch_and_soda_PN = mkPN "Scotch and soda" ; -lin scotch_asphodel_PN = mkPN "Scotch asphodel" ; -lin scotch_broth_PN = mkPN "Scotch broth" ; -lin scotch_egg_PN = mkPN "Scotch egg" ; -lin scotch_kiss_PN = mkPN "Scotch kiss" ; -lin scotch_laburnum_PN = mkPN "Scotch laburnum" ; -lin scotch_pine_PN = mkPN "Scotch pine" ; -lin scotch_terrier_PN = mkPN "Scotch terrier" ; -lin scotch_woodcock_PN = mkPN "Scotch woodcock" ; -lin scotland_PN = mkPN "Scotland"; -- from DictEng -lin scotland_yard_PN = mkPN "Scotland yard"; -- from DictEng -lin scots_A = compoundA (mkA "scots"); -- from DictEng -lin scotswoman_PN = mkPN "Scotswoman" ; -lin scott_PN = mkPN "Scott" ; -lin scottish_PN = mkPN "Scottish" ; -lin scottish_gaelic_PN = mkPN "Scottish Gaelic" ; -lin scottish_deerhound_PN = mkPN "Scottish deerhound" ; -lin scout_PN = mkPN "Scout" ; -lin scrabble_PN = mkPN "Scrabble" ; -lin scranton_PN = mkPN "Scranton" ; -lin scriabin_PN = mkPN "Scriabin" ; -lin scribe_PN = mkPN "Scribe" ; -lin scripps_PN = mkPN "Scripps" ; -lin scrophularia_PN = mkPN "Scrophularia" ; -lin scrophulariaceae_PN = mkPN "Scrophulariaceae" ; -lin scrophulariales_PN = mkPN "Scrophulariales" ; -lin sculptor_PN = mkPN "Sculptor" ; -lin scunthorpe_PN = mkPN "Scunthorpe"; -- from DictEng -lin scutellaria_PN = mkPN "Scutellaria" ; -lin scutigera_PN = mkPN "Scutigera" ; -lin scutigerella_PN = mkPN "Scutigerella" ; -lin scutigeridae_PN = mkPN "Scutigeridae" ; -lin scyliorhinidae_PN = mkPN "Scyliorhinidae" ; -lin scylla_PN = mkPN "Scylla" ; -lin scyphozoa_PN = mkPN "Scyphozoa" ; -lin scythia_PN = mkPN "Scythia" ; -lin scythian_A = mkA "Scythian" ; -lin scythian_PN = mkPN "Scythian" ; -lin scythian_lamb_PN = mkPN "Scythian lamb" ; -lin sea_scout_PN = mkPN "Sea Scout" ; -lin sea_of_azov_PN = mkPN "Sea of Azov" ; -lin sea_of_japan_PN = mkPN "Sea of Japan" ; -lin sea_of_okhotsk_PN = mkPN "Sea of Okhotsk" ; -lin seaborg_PN = mkPN "Seaborg" ; -lin seaford_PN = mkPN "Seaford"; -- from DictEng -lin seaham_PN = mkPN "Seaham"; -- from DictEng -lin sealyham_PN = mkPN "Sealyham" ; -lin sealyham_terrier_PN = mkPN "Sealyham terrier" ; -lin seaman_PN = mkPN "Seaman" ; -lin seamus_PN = mkPN "Seamus"; -- from DictEng -lin sean_PN = mkPN "Sean"; -- from DictEng -lin seanad_eireann_PN = mkPN "Seanad Eireann" ; -lin sears_tower_PN = mkPN "Sears Tower" ; -lin seaton_burn_PN = mkPN "Seaton burn"; -- from DictEng -lin seaton_delaval_PN = mkPN "Seaton delaval"; -- from DictEng -lin seattle_PN = mkPN "Seattle"; -- from DictEng -lin seattle_slew_PN = mkPN "Seattle Slew" ; -lin sebastiana_PN = mkPN "Sebastiana" ; -lin sebastodes_PN = mkPN "Sebastodes" ; -lin sebastopol_PN = mkPN "Sebastopol" ; -lin secale_PN = mkPN "Secale" ; -lin secession_PN = mkPN "Secession" ; -lin second_coming_PN = mkPN "Second Coming" ; -lin second_crusade_PN = mkPN "Second Crusade" ; -lin second_empire_PN = mkPN "Second Empire" ; -lin second_epistel_of_john_PN = mkPN "Second Epistel of John" ; -lin second_epistle_of_paul_the_apostle_to_timothy_PN = mkPN "Second Epistle of Paul the Apostle to Timothy" ; -lin second_epistle_of_paul_the_apostle_to_the_corinthians_PN = mkPN "Second Epistle of Paul the Apostle to the Corinthians" ; -lin second_epistle_of_paul_the_apostle_to_the_thessalonians_PN = mkPN "Second Epistle of Paul the Apostle to the Thessalonians" ; -lin second_epistle_of_peter_PN = mkPN "Second Epistle of Peter" ; -lin second_lateran_council_PN = mkPN "Second Lateran Council" ; -lin second_vatican_council_PN = mkPN "Second Vatican Council" ; -lin secotiaceae_PN = mkPN "Secotiaceae" ; -lin secotiales_PN = mkPN "Secotiales" ; -lin secret_intelligence_service_PN = mkPN "Secret Intelligence Service" ; -lin secretariat_PN = mkPN "Secretariat" ; -lin secretary_general_PN = mkPN "Secretary General" ; -lin secretary_of_agriculture_PN = mkPN "Secretary of Agriculture" ; -lin secretary_of_commerce_PN = mkPN "Secretary of Commerce" ; -lin secretary_of_commerce_and_labor_PN = mkPN "Secretary of Commerce and Labor" ; -lin secretary_of_defense_PN = mkPN "Secretary of Defense" ; -lin secretary_of_education_PN = mkPN "Secretary of Education" ; -lin secretary_of_energy_PN = mkPN "Secretary of Energy" ; -lin secretary_of_health_education_and_welfare_PN = mkPN "Secretary of Health Education and Welfare" ; -lin secretary_of_health_and_human_services_PN = mkPN "Secretary of Health and Human Services" ; -lin secretary_of_housing_and_urban_development_PN = mkPN "Secretary of Housing and Urban Development" ; -lin secretary_of_labor_PN = mkPN "Secretary of Labor" ; -lin secretary_of_state_PN = mkPN "Secretary of State" ; -lin secretary_of_transportation_PN = mkPN "Secretary of Transportation" ; -lin secretary_of_veterans_affairs_PN = mkPN "Secretary of Veterans Affairs" ; -lin secretary_of_war_PN = mkPN "Secretary of War" ; -lin secretary_of_the_interior_PN = mkPN "Secretary of the Interior" ; -lin secretary_of_the_navy_PN = mkPN "Secretary of the Navy" ; -lin secretary_of_the_treasury_PN = mkPN "Secretary of the Treasury" ; -lin section_eight_PN = mkPN "Section Eight" ; -lin securicor_PN = mkPN "Securicor"; -- from DictEng -lin securities_and_exchange_commission_PN = mkPN "Securities and Exchange Commission" ; -lin security_council_PN = mkPN "Security Council" ; -lin security_intelligence_review_committee_PN = mkPN "Security Intelligence Review Committee" ; -lin security_service_PN = mkPN "Security Service" ; -lin sedalia_PN = mkPN "Sedalia" ; -lin seder_PN = mkPN "Seder" ; -lin sedna_PN = mkPN "Sedna" ; -lin seeger_PN = mkPN "Seeger" ; -lin seeing_eye_dog_PN = mkPN "Seeing Eye dog" ; -lin segal_PN = mkPN "Segal" ; -lin segovia_PN = mkPN "Segovia" ; -lin segway_PN = mkPN "Segway" ; -lin seidlitz_powder_PN = mkPN "Seidlitz powder" ; -lin seine_PN = mkPN "Seine" ; -lin seismosaurus_PN = mkPN "Seismosaurus" ; -lin seiurus_PN = mkPN "Seiurus" ; -lin sekhet_PN = mkPN "Sekhet" ; -lin selaginella_PN = mkPN "Selaginella" ; -lin selaginellaceae_PN = mkPN "Selaginellaceae" ; -lin selaginellales_PN = mkPN "Selaginellales" ; -lin selar_PN = mkPN "Selar" ; -lin selby_PN = mkPN "Selby"; -- from DictEng -lin selective_service_PN = mkPN "Selective Service" ; -lin selenarctos_PN = mkPN "Selenarctos" ; -lin selene_PN = mkPN "Selene" ; -lin selenicereus_PN = mkPN "Selenicereus" ; -lin selenipedium_PN = mkPN "Selenipedium" ; -lin seles_PN = mkPN "Seles" ; -lin seleucus_PN = mkPN "Seleucus" ; -lin seljuk_A = mkA "Seljuk" ; -lin seljuk_PN = mkPN "Seljuk" ; -lin selkirk_PN = mkPN "Selkirk"; -- from DictEng -lin selkirk_mountains_PN = mkPN "Selkirk Mountains" ; -lin selkup_PN = mkPN "Selkup" ; -lin sellers_PN = mkPN "Sellers" ; -lin selma_PN = mkPN "Selma" ; -lin selsey_PN = mkPN "Selsey"; -- from DictEng -lin selston_PN = mkPN "Selston"; -- from DictEng -lin selznick_PN = mkPN "Selznick" ; -lin semarang_PN = mkPN "Semarang"; -- from DictEng -lin seminole_PN = mkPN "Seminole" ; -lin semite_A = compoundA (mkA "semite"); -- from DictEng -lin semite_PN = mkPN "Semite" ; -lin semitic_A = compoundA (mkA "semitic"); -- from DictEng -lin semitic_PN = mkPN "Semitic" ; -lin semitic_speaking_A = compoundA (mkA "Semitic speaking") ; -lin semitic_deity_PN = mkPN "Semitic deity" ; -lin sempatch_PN = mkPN "Sempatch" ; -lin seneca_PN = mkPN "Seneca" ; -lin seneca_lake_PN = mkPN "Seneca Lake" ; -lin seneca_snakeroot_PN = mkPN "Seneca snakeroot" ; -lin senecan_A = mkA "Senecan" ; -lin senecio_PN = mkPN "Senecio" ; -lin senefelder_PN = mkPN "Senefelder" ; -lin senegal_PN = mkPN "Senegal"; -- from DictEng -lin senegal_gum_PN = mkPN "Senegal gum" ; -lin senegalese_A = compoundA (mkA "senegalese"); -- from DictEng -lin senegalese_PN = mkPN "Senegalese" ; -lin senegalese_franc_PN = mkPN "Senegalese franc" ; -lin senhor_PN = mkPN "Senhor" ; -lin sennacherib_PN = mkPN "Sennacherib" ; -lin sennenhunde_PN = mkPN "Sennenhunde" ; -lin sennett_PN = mkPN "Sennett" ; -lin senor_PN = mkPN "Senor" ; -lin senora_PN = mkPN "Senora" ; -lin senorita_PN = mkPN "Senorita" ; -lin seoul_PN = mkPN "Seoul"; -- from DictEng -lin sephardi_PN = mkPN "Sephardi" ; -lin sepia_PN = mkPN "Sepia" ; -lin sepiidae_PN = mkPN "Sepiidae" ; -lin sept_PN = mkPN "Sept"; -- from DictEng -lin september_PN = mkPN "September"; -- from DictEng -lin september_elm_PN = mkPN "September elm" ; -lin septobasidiaceae_PN = mkPN "Septobasidiaceae" ; -lin septobasidium_PN = mkPN "Septobasidium" ; -lin septuagesima_PN = mkPN "Septuagesima" ; -lin septuagint_PN = mkPN "Septuagint" ; -lin sequoia_national_park_PN = mkPN "Sequoia National Park" ; -lin sequoiadendron_PN = mkPN "Sequoiadendron" ; -lin sequoya_PN = mkPN "Sequoya" ; -lin serbia_PN = mkPN "Serbia" ; -lin serbia_and_montenegro_PN = mkPN "Serbia and Montenegro" ; -lin serbian_A = mkA "Serbian" ; -lin serbian_PN = mkPN "Serbian" ; -lin serbo_croat_PN = mkPN "Serbo Croat" ; -lin serengeti_PN = mkPN "Serengeti" ; -lin serengeti_national_park_PN = mkPN "Serengeti National Park" ; -lin serenoa_PN = mkPN "Serenoa" ; -lin serer_PN = mkPN "Serer" ; -lin sericocarpus_PN = mkPN "Sericocarpus" ; -lin serinus_PN = mkPN "Serinus" ; -lin seriola_PN = mkPN "Seriola" ; -lin seriphidium_PN = mkPN "Seriphidium" ; -lin seriphus_PN = mkPN "Seriphus" ; -lin serkin_PN = mkPN "Serkin" ; -lin sermon_on_the_mount_PN = mkPN "Sermon on the Mount" ; -lin serpens_PN = mkPN "Serpens" ; -lin serpentes_PN = mkPN "Serpentes" ; -lin serra_PN = mkPN "Serra" ; -lin serranidae_PN = mkPN "Serranidae" ; -lin serranus_PN = mkPN "Serranus" ; -lin serrasalmus_PN = mkPN "Serrasalmus" ; -lin serratia_marcescens_PN = mkPN "Serratia marcescens" ; -lin serratula_PN = mkPN "Serratula" ; -lin sertoli_cell_PN = mkPN "Sertoli cell" ; -lin sertularia_PN = mkPN "Sertularia" ; -lin service_PN = mkPN "Service" ; -lin sesamum_PN = mkPN "Sesamum" ; -lin seseli_PN = mkPN "Seseli" ; -lin sesotho_PN = mkPN "Sesotho" ; -lin sessions_PN = mkPN "Sessions" ; -lin set_PN = mkPN "Set" ; -lin setaria_PN = mkPN "Setaria" ; -lin sete_quedas_PN = mkPN "Sete Quedas" ; -lin seth_PN = mkPN "Seth" ; -lin seton_PN = mkPN "Seton" ; -lin setophaga_PN = mkPN "Setophaga" ; -lin setubal_PN = mkPN "Setubal" ; -lin seurat_PN = mkPN "Seurat" ; -lin seven_hills_of_rome_PN = mkPN "Seven Hills of Rome" ; -lin seven_wonders_of_the_ancient_world_PN = mkPN "Seven Wonders of the Ancient World" ; -lin seven_years'_war_PN = mkPN "Seven Years' War" ; -lin seven_sisters_PN = mkPN "Seven sisters"; -- from DictEng -lin sevenoaks_PN = mkPN "Sevenoaks"; -- from DictEng -lin seventh_day_adventism_PN = mkPN "Seventh Day Adventism" ; -lin seventh_avenue_PN = mkPN "Seventh Avenue" ; -lin seventh_crusade_PN = mkPN "Seventh Crusade" ; -lin severn_PN = mkPN "Severn" ; -lin sevilla_PN = mkPN "Sevilla"; -- from DictEng -lin seville_PN = mkPN "Seville"; -- from DictEng -lin seward_PN = mkPN "Seward" ; -lin seward's_folly_PN = mkPN "Seward's Folly" ; -lin seward_peninsula_PN = mkPN "Seward Peninsula" ; -lin sexton_PN = mkPN "Sexton" ; -lin seychelles_PN = mkPN "Seychelles"; -- from DictEng -lin seychelles_monetary_unit_PN = mkPN "Seychelles monetary unit" ; -lin seychelles_rupee_PN = mkPN "Seychelles rupee" ; -lin seychellois_A = compoundA (mkA "seychellois"); -- from DictEng -lin seychellois_PN = mkPN "Seychellois" ; -lin seyhan_PN = mkPN "Seyhan" ; -lin seymour_PN = mkPN "Seymour" ; -lin sfax_PN = mkPN "Sfax" ; -lin sgd_PN = mkPN "Sgd"; -- from DictEng -lin sgt_PN = mkPN "Sgt"; -- from DictEng -lin sha'ban_PN = mkPN "Sha'ban" ; -lin shah_PN = mkPN "Shah" ; -lin shah_jahan_PN = mkPN "Shah Jahan" ; -lin shahaptian_PN = mkPN "Shahaptian" ; -lin shahn_PN = mkPN "Shahn" ; -lin shaker_PN = mkPN "Shaker" ; -lin shakers_PN = mkPN "Shakers" ; -lin shakespeare_PN = mkPN "Shakespeare" ; -lin shakespearean_sonnet_PN = mkPN "Shakespearean sonnet" ; -lin shakespearian_A = compoundA (mkA "shakespearian"); -- from DictEng -lin shakespearian_PN = mkPN "Shakespearian" ; -lin shakti_PN = mkPN "Shakti" ; -lin shaktism_PN = mkPN "Shaktism" ; -lin shaktist_PN = mkPN "Shaktist" ; -lin shamash_PN = mkPN "Shamash" ; -lin shang_PN = mkPN "Shang" ; -lin shanghai_PN = mkPN "Shanghai"; -- from DictEng -lin shankar_PN = mkPN "Shankar" ; -lin shanklin_PN = mkPN "Shanklin"; -- from DictEng -lin shannon_PN = mkPN "Shannon" ; -lin shapley_PN = mkPN "Shapley" ; -lin shari_PN = mkPN "Shari" ; -lin sharon_PN = mkPN "Sharon"; -- from DictEng -lin sharpie_PN = mkPN "Sharpie" ; -lin shasta_PN = mkPN "Shasta" ; -lin shasta_salamander_PN = mkPN "Shasta salamander" ; -lin shastan_PN = mkPN "Shastan" ; -lin shavian_A = compoundA (mkA "shavian"); -- from DictEng -lin shavian_PN = mkPN "Shavian" ; -lin shavous_PN = mkPN "Shavous" ; -lin shaw_PN = mkPN "Shaw" ; -lin shawn_PN = mkPN "Shawn" ; -lin shawnee_PN = mkPN "Shawnee" ; -lin shawnee_cake_PN = mkPN "Shawnee cake" ; -lin shawwal_PN = mkPN "Shawwal" ; -lin shearer_PN = mkPN "Shearer" ; -lin shebat_PN = mkPN "Shebat" ; -lin sheerness_PN = mkPN "Sheerness"; -- from DictEng -lin sheetrock_PN = mkPN "Sheetrock" ; -lin sheffield_PN = mkPN "Sheffield"; -- from DictEng -lin sheila_PN = mkPN "Sheila"; -- from DictEng -lin shelford_PN = mkPN "Shelford"; -- from DictEng -lin shelley_PN = mkPN "Shelley" ; -lin shem_PN = mkPN "Shem" ; -lin shema_PN = mkPN "Shema" ; -lin shen_pao_PN = mkPN "Shen pao" ; -lin shenandoah_national_park_PN = mkPN "Shenandoah National Park" ; -lin shenandoah_river_PN = mkPN "Shenandoah River" ; -lin shenandoah_valley_PN = mkPN "Shenandoah Valley" ; -lin shenyang_PN = mkPN "Shenyang" ; -lin shepard_PN = mkPN "Shepard" ; -lin shepshed_PN = mkPN "Shepshed"; -- from DictEng -lin shepton_mallet_PN = mkPN "Shepton mallet"; -- from DictEng -lin sheraton_PN = mkPN "Sheraton" ; -lin sherbourne_PN = mkPN "Sherbourne"; -- from DictEng -lin sheridan_PN = mkPN "Sheridan" ; -lin sheringham_PN = mkPN "Sheringham"; -- from DictEng -lin sherlock_holmes_PN = mkPN "Sherlock Holmes" ; -lin sherman_PN = mkPN "Sherman" ; -lin sherpa_PN = mkPN "Sherpa" ; -lin sherrington_PN = mkPN "Sherrington" ; -lin sherwood_PN = mkPN "Sherwood" ; -lin sherwood_forest_PN = mkPN "Sherwood Forest" ; -lin shetland_PN = mkPN "Shetland"; -- from DictEng -lin shetland_pony_PN = mkPN "Shetland pony" ; -lin shetland_sheepdog_PN = mkPN "Shetland sheepdog" ; -lin shetland_wool_PN = mkPN "Shetland wool" ; -lin shevchenko_PN = mkPN "Shevchenko" ; -lin shevington_PN = mkPN "Shevington"; -- from DictEng -lin shiah_PN = mkPN "Shiah" ; -lin shih_tzu_PN = mkPN "Shih Tzu" ; -lin shihkiachwang_PN = mkPN "Shihkiachwang"; -- from DictEng -lin shiism_PN = mkPN "Shiism" ; -lin shiite_PN = mkPN "Shiite" ; -lin shikoku_PN = mkPN "Shikoku" ; -lin shildon_PN = mkPN "Shildon"; -- from DictEng -lin shiloh_PN = mkPN "Shiloh" ; -lin shimchath_torah_PN = mkPN "Shimchath Torah" ; -lin shin_bet_PN = mkPN "Shin Bet" ; -lin shina_PN = mkPN "Shina" ; -lin shingon_PN = mkPN "Shingon" ; -lin shining_path_PN = mkPN "Shining Path" ; -lin shinto_A = mkA "Shinto" ; -lin shinto_PN = mkPN "Shinto" ; -lin shintoist_PN = mkPN "Shintoist" ; -lin shiraz_PN = mkPN "Shiraz" ; -lin shirebrook_PN = mkPN "Shirebrook"; -- from DictEng -lin shiremoor_PN = mkPN "Shiremoor"; -- from DictEng -lin shirer_PN = mkPN "Shirer" ; -lin shirley_PN = mkPN "Shirley"; -- from DictEng -lin shirodkar's_operation_PN = mkPN "Shirodkar's operation" ; -lin shivaism_PN = mkPN "Shivaism" ; -lin shivaist_PN = mkPN "Shivaist" ; -lin shockley_PN = mkPN "Shockley" ; -lin shona_A = mkA "Shona" ; -lin shona_PN = mkPN "Shona" ; -lin shorea_PN = mkPN "Shorea" ; -lin short's_aster_PN = mkPN "Short's aster" ; -lin shoshone_PN = mkPN "Shoshone" ; -lin shoshonean_PN = mkPN "Shoshonean" ; -lin shostakovich_PN = mkPN "Shostakovich" ; -lin shotton_PN = mkPN "Shotton"; -- from DictEng -lin shotts_PN = mkPN "Shotts"; -- from DictEng -lin shreveport_PN = mkPN "Shreveport" ; -lin shrewsbury_PN = mkPN "Shrewsbury"; -- from DictEng -lin shropshire_PN = mkPN "Shropshire"; -- from DictEng -lin shrove_tuesday_PN = mkPN "Shrove tuesday"; -- from DictEng -lin shrovetide_PN = mkPN "Shrovetide" ; -lin shudra_PN = mkPN "Shudra" ; -lin shuha_A = mkA "Shuha" ; -lin shuha_shinto_PN = mkPN "Shuha Shinto" ; -lin shumard_oak_PN = mkPN "Shumard oak" ; -lin shute_PN = mkPN "Shute" ; -lin shylock_PN = mkPN "Shylock" ; -lin sialia_PN = mkPN "Sialia" ; -lin sialidae_PN = mkPN "Sialidae" ; -lin sialis_PN = mkPN "Sialis" ; -lin siam_PN = mkPN "Siam"; -- from DictEng -lin siamese_cat_PN = mkPN "Siamese cat" ; -lin siamese_twin_PN = mkPN "Siamese twin" ; -lin sian_PN = mkPN "Sian"; -- from DictEng -lin sibelius_PN = mkPN "Sibelius" ; -lin siberia_PN = mkPN "Siberia" ; -lin siberian_A = compoundA (mkA "siberian"); -- from DictEng -lin siberian_PN = mkPN "Siberian" ; -lin siberian_crab_PN = mkPN "Siberian crab" ; -lin siberian_elm_PN = mkPN "Siberian elm" ; -lin siberian_husky_PN = mkPN "Siberian husky" ; -lin siberian_larch_PN = mkPN "Siberian larch" ; -lin siberian_millet_PN = mkPN "Siberian millet" ; -lin siberian_pea_tree_PN = mkPN "Siberian pea tree" ; -lin siberian_spruce_PN = mkPN "Siberian spruce" ; -lin siberian_wall_flower_PN = mkPN "Siberian wall flower" ; -lin sibley_tent_PN = mkPN "Sibley tent" ; -lin sicilian_A = compoundA (mkA "sicilian"); -- from DictEng -lin sicilian_PN = mkPN "Sicilian" ; -lin sicilian_pizza_PN = mkPN "Sicilian pizza" ; -lin sicily_PN = mkPN "Sicily" ; -lin sid_PN = mkPN "Sid"; -- from DictEng -lin sida_PN = mkPN "Sida" ; -lin sidalcea_PN = mkPN "Sidalcea" ; -lin siddons_PN = mkPN "Siddons" ; -lin sideritis_PN = mkPN "Sideritis" ; -lin sidmouth_PN = mkPN "Sidmouth"; -- from DictEng -lin sidney_PN = mkPN "Sidney"; -- from DictEng -lin siege_perilous_PN = mkPN "Siege Perilous" ; -lin siegfried_PN = mkPN "Siegfried" ; -lin siegfried_line_PN = mkPN "Siegfried line" ; -lin siemens_PN = mkPN "Siemens" ; -lin sierra_leone_PN = mkPN "Sierra leone"; -- from DictEng -lin sierra_leone_monetary_unit_PN = mkPN "Sierra Leone monetary unit" ; -lin sierra_leonean_A = compoundA (mkA "Sierra Leonean") ; -lin sierra_leonean_PN = mkPN "Sierra Leonean" ; -lin sierra_madre_occidental_PN = mkPN "Sierra Madre Occidental" ; -lin sierra_madre_oriental_PN = mkPN "Sierra Madre Oriental" ; -lin sierra_nevada_PN = mkPN "Sierra Nevada" ; -lin sierra_lodgepole_pine_PN = mkPN "Sierra lodgepole pine" ; -lin sierra_plum_PN = mkPN "Sierra plum" ; -lin sif_PN = mkPN "Sif" ; -lin sigmodon_PN = mkPN "Sigmodon" ; -lin signora_PN = mkPN "Signora" ; -lin signorina_PN = mkPN "Signorina" ; -lin sigurd_PN = mkPN "Sigurd" ; -lin sigyn_PN = mkPN "Sigyn" ; -lin sihasapa_PN = mkPN "Sihasapa" ; -lin sikh_A = mkA "Sikh" ; -lin sikh_PN = mkPN "Sikh" ; -lin sikhism_PN = mkPN "Sikhism" ; -lin sikkim_PN = mkPN "Sikkim" ; -lin sikorsky_PN = mkPN "Sikorsky" ; -lin sileby_PN = mkPN "Sileby"; -- from DictEng -lin silenus_PN = mkPN "Silenus" ; -lin silesia_PN = mkPN "Silesia" ; -lin silex_PN = mkPN "Silex" ; -lin silicon_valley_PN = mkPN "Silicon Valley" ; -lin silk_road_PN = mkPN "Silk Road" ; -lin sillaginidae_PN = mkPN "Sillaginidae" ; -lin sillago_PN = mkPN "Sillago" ; -lin sills_PN = mkPN "Sills" ; -lin silphium_PN = mkPN "Silphium" ; -lin silsden_PN = mkPN "Silsden"; -- from DictEng -lin silurian_PN = mkPN "Silurian" ; -lin siluridae_PN = mkPN "Siluridae" ; -lin siluriformes_PN = mkPN "Siluriformes" ; -lin silurus_PN = mkPN "Silurus" ; -lin silver_city_PN = mkPN "Silver City" ; -lin silver_star_medal_PN = mkPN "Silver Star Medal" ; -lin silverstein_PN = mkPN "Silverstein" ; -lin silvia_PN = mkPN "Silvia"; -- from DictEng -lin silybum_PN = mkPN "Silybum" ; -lin simarouba_PN = mkPN "Simarouba" ; -lin simaroubaceae_PN = mkPN "Simaroubaceae" ; -lin simenon_PN = mkPN "Simenon" ; -lin simeon_PN = mkPN "Simeon" ; -lin simon_PN = mkPN "Simon"; -- from DictEng -lin simon_legree_PN = mkPN "Simon Legree" ; -lin simoniz_PN = mkPN "Simoniz" ; -lin simpson_PN = mkPN "Simpson" ; -lin simpson_desert_PN = mkPN "Simpson Desert" ; -lin simuliidae_PN = mkPN "Simuliidae" ; -lin simulium_PN = mkPN "Simulium" ; -lin sin_PN = mkPN "Sin" ; -lin sinai_PN = mkPN "Sinai" ; -lin sinanthropus_PN = mkPN "Sinanthropus" ; -lin sinapis_PN = mkPN "Sinapis" ; -lin sinatra_PN = mkPN "Sinatra" ; -lin sinbad_the_sailor_PN = mkPN "Sinbad the Sailor" ; -lin sinclair_PN = mkPN "Sinclair" ; -lin sind_PN = mkPN "Sind" ; -lin sindhi_PN = mkPN "Sindhi" ; -lin singapore_PN = mkPN "Singapore"; -- from DictEng -lin singapore_dollar_PN = mkPN "Singapore dollar" ; -lin singaporean_A = compoundA (mkA "singaporean"); -- from DictEng -lin singaporean_PN = mkPN "Singaporean" ; -lin singer_PN = mkPN "Singer" ; -lin singhalese_A = compoundA (mkA "singhalese"); -- from DictEng -lin sinhala_A = mkA "Sinhala" ; -lin sinhalese_PN = mkPN "Sinhalese" ; -lin sining_PN = mkPN "Sining"; -- from DictEng -lin sinitic_A = mkA "Sinitic" ; -lin sinitic_PN = mkPN "Sinitic" ; -lin sinn_fein_PN = mkPN "Sinn fein"; -- from DictEng -lin sinningia_PN = mkPN "Sinningia" ; -lin sino_tibetan_PN = mkPN "Sino Tibetan" ; -lin sinologist_PN = mkPN "Sinologist" ; -lin sinology_PN = mkPN "Sinology" ; -lin sinornis_PN = mkPN "Sinornis" ; -lin siouan_A = mkA "Siouan" ; -lin siouan_PN = mkPN "Siouan" ; -lin siouan_speaking_A = compoundA (mkA "Siouan speaking") ; -lin sioux_PN = mkPN "Sioux" ; -lin sioux_city_PN = mkPN "Sioux City" ; -lin sioux_falls_PN = mkPN "Sioux Falls" ; -lin sipah_e_sahaba_PN = mkPN "Sipah e Sahaba" ; -lin siphonaptera_PN = mkPN "Siphonaptera" ; -lin siphonophora_PN = mkPN "Siphonophora" ; -lin sipuncula_PN = mkPN "Sipuncula" ; -lin siqueiros_PN = mkPN "Siqueiros" ; -lin sir_PN = mkPN "Sir" ; -lin sir_barton_PN = mkPN "Sir Barton" ; -lin siracusa_PN = mkPN "Siracusa"; -- from DictEng -lin siraj_ud_daula_PN = mkPN "Siraj ud daula" ; -lin siren_PN = mkPN "Siren" ; -lin sirenia_PN = mkPN "Sirenia" ; -lin sirenidae_PN = mkPN "Sirenidae" ; -lin sirius_PN = mkPN "Sirius" ; -lin sison_PN = mkPN "Sison" ; -lin sister_PN = mkPN "Sister" ; -lin sistine_chapel_PN = mkPN "Sistine Chapel" ; -lin sistrurus_PN = mkPN "Sistrurus" ; -lin sisyphean_A = mkA "Sisyphean" ; -lin sisyphus_PN = mkPN "Sisyphus" ; -lin sisyridae_PN = mkPN "Sisyridae" ; -lin sisyrinchium_PN = mkPN "Sisyrinchium" ; -lin sita_PN = mkPN "Sita" ; -lin sitka_PN = mkPN "Sitka" ; -lin sitka_spruce_PN = mkPN "Sitka spruce" ; -lin sitka_willow_PN = mkPN "Sitka willow" ; -lin sitophylus_PN = mkPN "Sitophylus" ; -lin sitotroga_PN = mkPN "Sitotroga" ; -lin sitta_PN = mkPN "Sitta" ; -lin sitter_PN = mkPN "Sitter" ; -lin sittidae_PN = mkPN "Sittidae" ; -lin sitting_bull_PN = mkPN "Sitting Bull" ; -lin sittingbourne_PN = mkPN "Sittingbourne"; -- from DictEng -lin sitwell_PN = mkPN "Sitwell" ; -lin sium_PN = mkPN "Sium" ; -lin siva_PN = mkPN "Siva" ; -lin sivan_PN = mkPN "Sivan" ; -lin sivapithecus_PN = mkPN "Sivapithecus" ; -lin sixteen_personality_factor_questionnaire_PN = mkPN "Sixteen Personality Factor Questionnaire" ; -lin sixth_crusade_PN = mkPN "Sixth Crusade" ; -lin sixtus_iv_PN = mkPN "Sixtus IV" ; -lin skagens_odde_PN = mkPN "Skagens Odde" ; -lin skagerrak_PN = mkPN "Skagerrak" ; -lin skagit_PN = mkPN "Skagit" ; -lin skagway_PN = mkPN "Skagway" ; -lin skanda_PN = mkPN "Skanda" ; -lin skeat_PN = mkPN "Skeat" ; -lin skegness_PN = mkPN "Skegness"; -- from DictEng -lin skelmanthorpe_PN = mkPN "Skelmanthorpe"; -- from DictEng -lin skelmersdale_PN = mkPN "Skelmersdale"; -- from DictEng -lin skewen_PN = mkPN "Skewen"; -- from DictEng -lin skinner_PN = mkPN "Skinner" ; -lin skinnerian_A = mkA "Skinnerian" ; -lin skinnerian_PN = mkPN "Skinnerian" ; -lin skipton_PN = mkPN "Skipton"; -- from DictEng -lin skivvies_PN = mkPN "Skivvies" ; -lin skopje_PN = mkPN "Skopje"; -- from DictEng -lin skuld_PN = mkPN "Skuld" ; -lin skye_terrier_PN = mkPN "Skye terrier" ; -lin skylab_PN = mkPN "Skylab" ; -lin slav_A = compoundA (mkA "slav"); -- from DictEng -lin slav_PN = mkPN "Slav" ; -lin slavic_PN = mkPN "Slavic" ; -lin slavic_people_PN = mkPN "Slavic people" ; -lin slavonic_A = compoundA (mkA "slavonic"); -- from DictEng -lin sleaford_PN = mkPN "Sleaford"; -- from DictEng -lin sleeping_beauty_PN = mkPN "Sleeping Beauty" ; -lin sligo_PN = mkPN "Sligo"; -- from DictEng -lin sloanea_PN = mkPN "Sloanea" ; -lin sloppy_joe_PN = mkPN "Sloppy Joe" ; -lin slough_PN = mkPN "Slough"; -- from DictEng -lin slovak_PN = mkPN "Slovak" ; -lin slovakia_PN = mkPN "Slovakia" ; -lin slovakian_A = mkA "Slovakian" ; -lin slovakian_monetary_unit_PN = mkPN "Slovakian monetary unit" ; -lin slovene_PN = mkPN "Slovene" ; -lin slovenia_PN = mkPN "Slovenia" ; -lin slovenian_A = compoundA (mkA "slovenian"); -- from DictEng -lin slovenian_PN = mkPN "Slovenian" ; -lin small_business_administration_PN = mkPN "Small Business Administration" ; -lin small_magellanic_cloud_PN = mkPN "Small Magellanic Cloud" ; -lin smalley_PN = mkPN "Smalley" ; -lin smetana_PN = mkPN "Smetana" ; -lin smilacaceae_PN = mkPN "Smilacaceae" ; -lin smilax_PN = mkPN "Smilax" ; -lin smiledon_PN = mkPN "Smiledon" ; -lin smiledon_californicus_PN = mkPN "Smiledon californicus" ; -lin smitane_PN = mkPN "Smitane" ; -lin smith_PN = mkPN "Smith" ; -lin smolensk_PN = mkPN "Smolensk" ; -lin smollett_PN = mkPN "Smollett" ; -lin smuts_PN = mkPN "Smuts" ; -lin smyrnium_PN = mkPN "Smyrnium" ; -lin snake_PN = mkPN "Snake" ; -lin snead_PN = mkPN "Snead" ; -lin snellen_PN = mkPN "Snellen" ; -lin snellen_chart_PN = mkPN "Snellen chart" ; -lin snellen_test_PN = mkPN "Snellen test" ; -lin sno_cat_PN = mkPN "Sno cat" ; -lin snoopy_PN = mkPN "Snoopy" ; -lin snow_PN = mkPN "Snow" ; -lin snr_PN = mkPN "Snr"; -- from DictEng -lin soho_PN = mkPN "Soho"; -- from DictEng -lin soave_PN = mkPN "Soave" ; -lin social_democratic_party_PN = mkPN "Social Democratic Party" ; -lin social_development_commission_PN = mkPN "Social Development Commission" ; -lin social_security_PN = mkPN "Social Security" ; -lin social_security_administration_PN = mkPN "Social Security Administration" ; -lin social_security_number_PN = mkPN "Social Security number" ; -lin socialist_labor_party_PN = mkPN "Socialist Labor Party" ; -lin socialist_party_PN = mkPN "Socialist Party" ; -lin society_islands_PN = mkPN "Society Islands" ; -lin society_of_jesus_PN = mkPN "Society of Jesus" ; -lin socinian_PN = mkPN "Socinian" ; -lin socinus_PN = mkPN "Socinus" ; -lin socotra_begonia_PN = mkPN "Socotra begonia" ; -lin socrates_PN = mkPN "Socrates" ; -lin socratic_A = compoundA (mkA "socratic"); -- from DictEng -lin socratic_irony_PN = mkPN "Socratic irony" ; -lin socratic_method_PN = mkPN "Socratic method" ; -lin soddy_PN = mkPN "Soddy" ; -lin sodom_PN = mkPN "Sodom" ; -lin sofia_PN = mkPN "Sofia"; -- from DictEng -lin soissons_PN = mkPN "Soissons" ; -lin sokoro_PN = mkPN "Sokoro" ; -lin sol_PN = mkPN "Sol"; -- from DictEng -lin solanaceae_PN = mkPN "Solanaceae" ; -lin solandra_PN = mkPN "Solandra" ; -lin solanopteris_PN = mkPN "Solanopteris" ; -lin solanum_PN = mkPN "Solanum" ; -lin solea_PN = mkPN "Solea" ; -lin soledad_PN = mkPN "Soledad" ; -lin soleidae_PN = mkPN "Soleidae" ; -lin solemnity_of_mary_PN = mkPN "Solemnity of Mary" ; -lin solenichthyes_PN = mkPN "Solenichthyes" ; -lin solenidae_PN = mkPN "Solenidae" ; -lin solenogastres_PN = mkPN "Solenogastres" ; -lin solenopsis_PN = mkPN "Solenopsis" ; -lin solenostemon_PN = mkPN "Solenostemon" ; -lin solent_PN = mkPN "Solent" ; -lin solferino_PN = mkPN "Solferino" ; -lin solidago_PN = mkPN "Solidago" ; -lin solihull_PN = mkPN "Solihull"; -- from DictEng -lin solingen_PN = mkPN "Solingen"; -- from DictEng -lin solo_man_PN = mkPN "Solo man" ; -lin solomon_PN = mkPN "Solomon" ; -lin solomon's_seal_PN = mkPN "Solomon's seal" ; -lin solomon_islands_PN = mkPN "Solomon Islands" ; -lin solomonic_A = mkA "Solomonic" ; -lin solomons_PN = mkPN "Solomons" ; -lin solon_PN = mkPN "Solon"; -- from DictEng -lin solresol_PN = mkPN "Solresol" ; -lin solvay_PN = mkPN "Solvay" ; -lin solvay_process_PN = mkPN "Solvay process" ; -lin solway_firth_PN = mkPN "Solway Firth" ; -lin solzhenitsyn_PN = mkPN "Solzhenitsyn" ; -lin soma_PN = mkPN "Soma" ; -lin somali_PN = mkPN "Somali" ; -lin somali_peninsula_PN = mkPN "Somali peninsula" ; -lin somalia_PN = mkPN "Somalia"; -- from DictEng -lin somalian_A = compoundA (mkA "somalian"); -- from DictEng -lin somalian_PN = mkPN "Somalian" ; -lin somalian_monetary_unit_PN = mkPN "Somalian monetary unit" ; -lin somalian_shilling_PN = mkPN "Somalian shilling" ; -lin somateria_PN = mkPN "Somateria" ; -lin sombrero_PN = mkPN "Sombrero" ; -lin somercotes_PN = mkPN "Somercotes"; -- from DictEng -lin somerset_PN = mkPN "Somerset"; -- from DictEng -lin somme_PN = mkPN "Somme" ; -lin somrai_PN = mkPN "Somrai" ; -lin son_PN = mkPN "Son" ; -lin sonchus_PN = mkPN "Sonchus" ; -lin sondheim_PN = mkPN "Sondheim" ; -lin song_of_songs_PN = mkPN "Song of Songs" ; -lin songhai_PN = mkPN "Songhai" ; -lin sonia_PN = mkPN "Sonia"; -- from DictEng -lin sonora_PN = mkPN "Sonora" ; -lin sonora_gum_PN = mkPN "Sonora gum" ; -lin sonora_lac_PN = mkPN "Sonora lac" ; -lin sonoran_desert_PN = mkPN "Sonoran Desert" ; -lin sonoran_lyre_snake_PN = mkPN "Sonoran lyre snake" ; -lin sonoran_whipsnake_PN = mkPN "Sonoran whipsnake" ; -lin sontag_PN = mkPN "Sontag" ; -lin soochow_PN = mkPN "Soochow"; -- from DictEng -lin sophia_PN = mkPN "Sophia"; -- from DictEng -lin sophie_PN = mkPN "Sophie"; -- from DictEng -lin sophist_PN = mkPN "Sophist" ; -lin sophocles_PN = mkPN "Sophocles" ; -lin sophora_PN = mkPN "Sophora" ; -lin sorbian_PN = mkPN "Sorbian" ; -lin sorbus_PN = mkPN "Sorbus" ; -lin sorensen_PN = mkPN "Sorensen" ; -lin sorex_PN = mkPN "Sorex" ; -lin soricidae_PN = mkPN "Soricidae" ; -lin sotho_A = compoundA (mkA "sotho"); -- from DictEng -lin sotho_PN = mkPN "Sotho" ; -lin soubise_PN = mkPN "Soubise" ; -lin soufflot_PN = mkPN "Soufflot" ; -lin sousa_PN = mkPN "Sousa" ; -lin sousse_PN = mkPN "Sousse" ; -lin south_PN = mkPN "South" ; -lin south_african_yellowwood_PN = mkPN "South African yellowwood" ; -lin south_central_dravidian_PN = mkPN "South Central Dravidian" ; -lin south_africa_PN = mkPN "South Africa" ; -lin south_african_A = compoundA (mkA "South African") ; -lin south_african_PN = mkPN "South African" ; -lin south_african_monetary_unit_PN = mkPN "South African monetary unit" ; -lin south_america_PN = mkPN "South America" ; -lin south_american_A = compoundA (mkA "South American") ; -lin south_american_PN = mkPN "South American" ; -lin south_american_indian_PN = mkPN "South American Indian" ; -lin south_american_country_PN = mkPN "South American country" ; -lin south_american_poison_toad_PN = mkPN "South American poison toad" ; -lin south_american_sea_lion_PN = mkPN "South American sea lion" ; -lin south_american_staghorn_PN = mkPN "South American staghorn" ; -lin south_atlantic_PN = mkPN "South Atlantic" ; -lin south_australia_PN = mkPN "South Australia" ; -lin south_bend_PN = mkPN "South Bend" ; -lin south_carolina_PN = mkPN "South Carolina" ; -lin south_carolinian_PN = mkPN "South Carolinian" ; -lin south_china_sea_PN = mkPN "South China Sea" ; -lin south_dakota_PN = mkPN "South Dakota" ; -lin south_dakotan_PN = mkPN "South Dakotan" ; -lin south_dravidian_PN = mkPN "South Dravidian" ; -lin south_equatorial_current_PN = mkPN "South Equatorial Current" ; -lin south_island_PN = mkPN "South Island" ; -lin south_korea_PN = mkPN "South Korea" ; -lin south_korean_A = compoundA (mkA "South Korean") ; -lin south_korean_PN = mkPN "South Korean" ; -lin south_korean_monetary_unit_PN = mkPN "South Korean monetary unit" ; -lin south_korean_won_PN = mkPN "South Korean won" ; -lin south_pacific_PN = mkPN "South Pacific" ; -lin south_platte_PN = mkPN "South Platte" ; -lin south_pole_PN = mkPN "South Pole" ; -lin south_sea_PN = mkPN "South Sea" ; -lin south_sea_islands_PN = mkPN "South Sea Islands" ; -lin south_temperate_zone_PN = mkPN "South Temperate Zone" ; -lin south_vietnam_PN = mkPN "South Vietnam" ; -lin south_yorkshire_PN = mkPN "South Yorkshire" ; -lin south_kirkby_PN = mkPN "South kirkby"; -- from DictEng -lin south_normantown_PN = mkPN "South normantown"; -- from DictEng -lin south_ockendon_PN = mkPN "South ockendon"; -- from DictEng -lin south_shields_PN = mkPN "South shields"; -- from DictEng -lin southampton_PN = mkPN "Southampton"; -- from DictEng -lin southeast_PN = mkPN "Southeast" ; -lin southeast_asia_PN = mkPN "Southeast Asia" ; -lin southend_on_sea_PN = mkPN "Southend - on - sea"; -- from DictEng -lin southern_baptist_PN = mkPN "Southern Baptist" ; -lin southern_baptist_convention_PN = mkPN "Southern Baptist Convention" ; -lin southern_cross_PN = mkPN "Southern Cross" ; -lin southern_tai_PN = mkPN "Southern Tai" ; -lin southern_crab_apple_PN = mkPN "Southern crab apple" ; -lin southern_dewberry_PN = mkPN "Southern dewberry" ; -lin southerner_PN = mkPN "Southerner" ; -lin southey_PN = mkPN "Southey" ; -lin southport_PN = mkPN "Southport"; -- from DictEng -lin southwark_PN = mkPN "Southwark"; -- from DictEng -lin southwest_PN = mkPN "Southwest" ; -lin southwestern_PN = mkPN "Southwestern" ; -lin soutine_PN = mkPN "Soutine" ; -lin soviet_A = compoundA (mkA "soviet"); -- from DictEng -lin soviet_russia_PN = mkPN "Soviet Russia" ; -lin soviet_socialist_republic_PN = mkPN "Soviet Socialist Republic" ; -lin soviet_union_PN = mkPN "Soviet Union" ; -lin soviets_PN = mkPN "Soviets" ; -lin soweto_PN = mkPN "Soweto" ; -lin space_needle_PN = mkPN "Space Needle" ; -lin spain_PN = mkPN "Spain"; -- from DictEng -lin spalacidae_PN = mkPN "Spalacidae" ; -lin spalax_PN = mkPN "Spalax" ; -lin spalding_PN = mkPN "Spalding"; -- from DictEng -lin spallanzani_PN = mkPN "Spallanzani" ; -lin spam_PN = mkPN "Spam" ; -lin spandau_PN = mkPN "Spandau" ; -lin spaniard_PN = mkPN "Spaniard" ; -lin spanish_A = compoundA (mkA "Spanish"); -- from DictEng -lin spanish_PN = mkPN "Spanish" ; -lin spanish_american_war_PN = mkPN "Spanish American War" ; -lin spanish_speaking_A = compoundA (mkA "Spanish speaking") ; -lin spanish_american_PN = mkPN "Spanish American" ; -lin spanish_armada_PN = mkPN "Spanish Armada" ; -lin spanish_civil_war_PN = mkPN "Spanish Civil War" ; -lin spanish_inquisition_PN = mkPN "Spanish Inquisition" ; -lin spanish_bayonet_PN = mkPN "Spanish bayonet" ; -lin spanish_broom_PN = mkPN "Spanish broom" ; -lin spanish_cedar_PN = mkPN "Spanish cedar" ; -lin spanish_dagger_PN = mkPN "Spanish dagger" ; -lin spanish_elm_PN = mkPN "Spanish elm" ; -lin spanish_fly_PN = mkPN "Spanish fly" ; -lin spanish_grunt_PN = mkPN "Spanish grunt" ; -lin spanish_heath_PN = mkPN "Spanish heath" ; -lin spanish_iris_PN = mkPN "Spanish iris" ; -lin spanish_lime_PN = mkPN "Spanish lime" ; -lin spanish_mackerel_PN = mkPN "Spanish mackerel" ; -lin spanish_monetary_unit_PN = mkPN "Spanish monetary unit" ; -lin spanish_moss_PN = mkPN "Spanish moss" ; -lin spanish_needles_PN = mkPN "Spanish needles" ; -lin spanish_oak_PN = mkPN "Spanish oak" ; -lin spanish_onion_PN = mkPN "Spanish onion" ; -lin spanish_oyster_plant_PN = mkPN "Spanish oyster plant" ; -lin spanish_paprika_PN = mkPN "Spanish paprika" ; -lin spanish_rice_PN = mkPN "Spanish rice" ; -lin spanish_tamarind_PN = mkPN "Spanish tamarind" ; -lin sparaxis_PN = mkPN "Sparaxis" ; -lin sparganiaceae_PN = mkPN "Sparganiaceae" ; -lin sparganium_PN = mkPN "Sparganium" ; -lin sparidae_PN = mkPN "Sparidae" ; -lin spark_PN = mkPN "Spark" ; -lin sparmannia_PN = mkPN "Sparmannia" ; -lin sparrow_unit_PN = mkPN "Sparrow Unit" ; -lin sparta_PN = mkPN "Sparta" ; -lin spartan_A = compoundA (mkA "spartan"); -- from DictEng -lin spartan_PN = mkPN "Spartan" ; -lin spartina_PN = mkPN "Spartina" ; -lin spartium_PN = mkPN "Spartium" ; -lin spassky_PN = mkPN "Spassky" ; -lin spatangoida_PN = mkPN "Spatangoida" ; -lin speaker_PN = mkPN "Speaker" ; -lin special_air_service_PN = mkPN "Special Air Service" ; -lin special_branch_PN = mkPN "Special Branch" ; -lin special_forces_PN = mkPN "Special Forces" ; -lin special_olympics_PN = mkPN "Special Olympics" ; -lin speer_PN = mkPN "Speer" ; -lin speke_PN = mkPN "Speke" ; -lin spenborough_PN = mkPN "Spenborough"; -- from DictEng -lin spencer_PN = mkPN "Spencer" ; -lin spender_PN = mkPN "Spender" ; -lin spengler_PN = mkPN "Spengler" ; -lin spennymoor_PN = mkPN "Spennymoor"; -- from DictEng -lin spenser_PN = mkPN "Spenser" ; -lin spenserian_sonnet_PN = mkPN "Spenserian sonnet" ; -lin spenserian_stanza_PN = mkPN "Spenserian stanza" ; -lin spergula_PN = mkPN "Spergula" ; -lin spergularia_PN = mkPN "Spergularia" ; -lin spermatophyta_PN = mkPN "Spermatophyta" ; -lin sperry_PN = mkPN "Sperry" ; -lin sphacelotheca_PN = mkPN "Sphacelotheca" ; -lin sphaeralcea_PN = mkPN "Sphaeralcea" ; -lin sphaeriaceae_PN = mkPN "Sphaeriaceae" ; -lin sphaeriales_PN = mkPN "Sphaeriales" ; -lin sphaerobolaceae_PN = mkPN "Sphaerobolaceae" ; -lin sphaerocarpaceae_PN = mkPN "Sphaerocarpaceae" ; -lin sphaerocarpales_PN = mkPN "Sphaerocarpales" ; -lin sphaerocarpus_PN = mkPN "Sphaerocarpus" ; -lin sphagnales_PN = mkPN "Sphagnales" ; -lin sphecidae_PN = mkPN "Sphecidae" ; -lin sphecius_PN = mkPN "Sphecius" ; -lin sphecoidea_PN = mkPN "Sphecoidea" ; -lin sphecotheres_PN = mkPN "Sphecotheres" ; -lin spheniscidae_PN = mkPN "Spheniscidae" ; -lin sphenisciformes_PN = mkPN "Sphenisciformes" ; -lin spheniscus_PN = mkPN "Spheniscus" ; -lin sphenodon_PN = mkPN "Sphenodon" ; -lin sphenopsida_PN = mkPN "Sphenopsida" ; -lin sphingidae_PN = mkPN "Sphingidae" ; -lin sphinx_PN = mkPN "Sphinx" ; -lin sphyraena_PN = mkPN "Sphyraena" ; -lin sphyraenidae_PN = mkPN "Sphyraenidae" ; -lin sphyrapicus_PN = mkPN "Sphyrapicus" ; -lin sphyrna_PN = mkPN "Sphyrna" ; -lin sphyrnidae_PN = mkPN "Sphyrnidae" ; -lin spica_PN = mkPN "Spica" ; -lin spielberg_PN = mkPN "Spielberg" ; -lin spielmeyer_vogt_disease_PN = mkPN "Spielmeyer Vogt disease" ; -lin spillane_PN = mkPN "Spillane" ; -lin spilogale_PN = mkPN "Spilogale" ; -lin spinacia_PN = mkPN "Spinacia" ; -lin spinoza_PN = mkPN "Spinoza" ; -lin spinus_PN = mkPN "Spinus" ; -lin spiraea_PN = mkPN "Spiraea" ; -lin spiranthes_PN = mkPN "Spiranthes" ; -lin spirillaceae_PN = mkPN "Spirillaceae" ; -lin spirochaeta_PN = mkPN "Spirochaeta" ; -lin spirochaetaceae_PN = mkPN "Spirochaetaceae" ; -lin spirochaetales_PN = mkPN "Spirochaetales" ; -lin spirodela_PN = mkPN "Spirodela" ; -lin spirulidae_PN = mkPN "Spirulidae" ; -lin spitsbergen_PN = mkPN "Spitsbergen" ; -lin spizella_PN = mkPN "Spizella" ; -lin split_PN = mkPN "Split"; -- from DictEng -lin spock_PN = mkPN "Spock" ; -lin spode_PN = mkPN "Spode" ; -lin spodoptera_PN = mkPN "Spodoptera" ; -lin spodoptera_exigua_PN = mkPN "Spodoptera exigua" ; -lin spodoptera_frugiperda_PN = mkPN "Spodoptera frugiperda" ; -lin spokane_PN = mkPN "Spokane" ; -lin spondias_PN = mkPN "Spondias" ; -lin spork_PN = mkPN "Spork" ; -lin sporobolus_PN = mkPN "Sporobolus" ; -lin sporozoa_PN = mkPN "Sporozoa" ; -lin spotsylvania_PN = mkPN "Spotsylvania" ; -lin spraguea_PN = mkPN "Spraguea" ; -lin springfield_PN = mkPN "Springfield"; -- from DictEng -lin spyeria_PN = mkPN "Spyeria" ; -lin sq_PN = mkPN "Sq"; -- from DictEng -lin squalidae_PN = mkPN "Squalidae" ; -lin squalus_PN = mkPN "Squalus" ; -lin squamata_PN = mkPN "Squamata" ; -lin squatina_PN = mkPN "Squatina" ; -lin squatinidae_PN = mkPN "Squatinidae" ; -lin squillidae_PN = mkPN "Squillidae" ; -lin sr_PN = mkPN "Sr"; -- from DictEng -lin sri_lanka_PN = mkPN "Sri lanka"; -- from DictEng -lin sri_lanka_rupee_PN = mkPN "Sri Lanka rupee" ; -lin sri_lankan_A = compoundA (mkA "sri lankan"); -- from DictEng -lin sri_lankan_PN = mkPN "Sri Lankan" ; -lin sri_lankan_monetary_unit_PN = mkPN "Sri Lankan monetary unit" ; -lin st_PN = mkPN "St"; -- from DictEng -lin st__bruno's_lily_PN = mkPN "St Bruno's lily" ; -lin st__andrew's_cross_PN = mkPN "St Andrew's cross" ; -lin st__augustine_PN = mkPN "St Augustine" ; -lin st__augustine_grass_PN = mkPN "St Augustine grass" ; -lin st__denis_PN = mkPN "St Denis" ; -lin st__elias_range_PN = mkPN "St Elias Range" ; -lin st__george's_PN = mkPN "St George's" ; -lin st__john's_PN = mkPN "St John's" ; -lin st__petersburg_PN = mkPN "St Petersburg" ; -lin st_andrews's_cross_PN = mkPN "St Andrews's cross" ; -lin st_john's_wort_PN = mkPN "St John's wort" ; -lin st_patrick's_day_PN = mkPN "St Patrick's Day" ; -lin st_peter's_wort_PN = mkPN "St Peter's wort" ; -lin st_albans_PN = mkPN "St albans"; -- from DictEng -lin st_andrews_PN = mkPN "St andrews"; -- from DictEng -lin st_andrews_major_PN = mkPN "St andrews major"; -- from DictEng -lin st_austell_PN = mkPN "St austell"; -- from DictEng -lin st_blazey_PN = mkPN "St blazey"; -- from DictEng -lin st_helens_PN = mkPN "St helens"; -- from DictEng -lin st_ives_PN = mkPN "St ives"; -- from DictEng -lin st_louis_PN = mkPN "St louis"; -- from DictEng -lin st_neots_PN = mkPN "St neots"; -- from DictEng -lin st_paul_PN = mkPN "St paul"; -- from DictEng -lin st_petersburg_PN = mkPN "St petersburg"; -- from DictEng -lin st_stephen_PN = mkPN "St stephen"; -- from DictEng -lin sta_PN = mkPN "Sta"; -- from DictEng -lin stachys_PN = mkPN "Stachys" ; -lin stael_PN = mkPN "Stael" ; -lin staffa_PN = mkPN "Staffa" ; -lin stafford_PN = mkPN "Stafford"; -- from DictEng -lin staffordshire_PN = mkPN "Staffordshire"; -- from DictEng -lin staffordshire_bullterrier_PN = mkPN "Staffordshire bullterrier" ; -lin stagira_PN = mkPN "Stagira" ; -lin stakeford_PN = mkPN "Stakeford"; -- from DictEng -lin stalin_PN = mkPN "Stalin" ; -lin stalinist_A = mkA "Stalinist" ; -lin stalinist_PN = mkPN "Stalinist" ; -lin stalinization_PN = mkPN "Stalinization" ; -lin stalybridge_PN = mkPN "Stalybridge"; -- from DictEng -lin stamford_PN = mkPN "Stamford"; -- from DictEng -lin stamp_act_PN = mkPN "Stamp Act" ; -lin stan_PN = mkPN "Stan"; -- from DictEng -lin standard_and_poor's_PN = mkPN "Standard and Poor's" ; -lin standish_PN = mkPN "Standish" ; -lin stanford_PN = mkPN "Stanford"; -- from DictEng -lin stanford_binet_test_PN = mkPN "Stanford Binet test" ; -lin stanford_university_PN = mkPN "Stanford University" ; -lin stanislavsky_PN = mkPN "Stanislavsky" ; -lin stanley_PN = mkPN "Stanley"; -- from DictEng -lin stanley_steamer_PN = mkPN "Stanley Steamer" ; -lin stanleya_PN = mkPN "Stanleya" ; -lin stanton_PN = mkPN "Stanton" ; -lin stapelias_asterias_PN = mkPN "Stapelias asterias" ; -lin staphylaceae_PN = mkPN "Staphylaceae" ; -lin staphylea_PN = mkPN "Staphylea" ; -lin staphylinidae_PN = mkPN "Staphylinidae" ; -lin star_chamber_PN = mkPN "Star Chamber" ; -lin star_of_david_PN = mkPN "Star of David" ; -lin starr_PN = mkPN "Starr" ; -lin stars_and_bars_PN = mkPN "Stars and Bars" ; -lin stassano_furnace_PN = mkPN "Stassano furnace" ; -lin state_department_PN = mkPN "State Department" ; -lin statehouse_PN = mkPN "Statehouse" ; -lin staten_island_PN = mkPN "Staten Island" ; -lin states'_rights_democratic_party_PN = mkPN "States' Rights Democratic Party" ; -lin states_general_PN = mkPN "States General" ; -lin station_of_the_cross_PN = mkPN "Station of the Cross" ; -lin stations_PN = mkPN "Stations" ; -lin statistical_commission_PN = mkPN "Statistical Commission" ; -lin statue_of_liberty_PN = mkPN "Statue of Liberty" ; -lin stavanger_PN = mkPN "Stavanger" ; -lin stayman_PN = mkPN "Stayman" ; -lin stayman_winesap_PN = mkPN "Stayman Winesap" ; -lin std_PN = mkPN "Std"; -- from DictEng -lin steatornis_PN = mkPN "Steatornis" ; -lin steatornithidae_PN = mkPN "Steatornithidae" ; -lin steele_PN = mkPN "Steele" ; -lin steen_PN = mkPN "Steen" ; -lin steffens_PN = mkPN "Steffens" ; -lin steganopus_PN = mkPN "Steganopus" ; -lin stegocephalia_PN = mkPN "Stegocephalia" ; -lin steichen_PN = mkPN "Steichen" ; -lin stein_PN = mkPN "Stein" ; -lin steinbeck_PN = mkPN "Steinbeck" ; -lin steinberg_PN = mkPN "Steinberg" ; -lin steinem_PN = mkPN "Steinem" ; -lin steiner_PN = mkPN "Steiner" ; -lin steinman_PN = mkPN "Steinman" ; -lin steinmetz_PN = mkPN "Steinmetz" ; -lin steinway_PN = mkPN "Steinway" ; -lin stella_PN = mkPN "Stella"; -- from DictEng -lin stellaria_PN = mkPN "Stellaria" ; -lin steller_PN = mkPN "Steller" ; -lin steller's_sea_cow_PN = mkPN "Steller's sea cow" ; -lin steller_sea_lion_PN = mkPN "Steller sea lion" ; -lin stellite_PN = mkPN "Stellite" ; -lin sten_PN = mkPN "Sten"; -- from DictEng -lin sten_gun_PN = mkPN "Sten gun" ; -lin stendhal_PN = mkPN "Stendhal" ; -lin stengel_PN = mkPN "Stengel" ; -lin stenocarpus_PN = mkPN "Stenocarpus" ; -lin stenochlaena_PN = mkPN "Stenochlaena" ; -lin stenopelmatidae_PN = mkPN "Stenopelmatidae" ; -lin stenopelmatus_PN = mkPN "Stenopelmatus" ; -lin stenotaphrum_PN = mkPN "Stenotaphrum" ; -lin stenotomus_PN = mkPN "Stenotomus" ; -lin stenotus_PN = mkPN "Stenotus" ; -lin stentor_PN = mkPN "Stentor" ; -lin stephanie_PN = mkPN "Stephanie"; -- from DictEng -lin stephanomeria_PN = mkPN "Stephanomeria" ; -lin stephen_PN = mkPN "Stephen"; -- from DictEng -lin stephenson_PN = mkPN "Stephenson" ; -lin stercorariidae_PN = mkPN "Stercorariidae" ; -lin stercorarius_PN = mkPN "Stercorarius" ; -lin sterculiaceae_PN = mkPN "Sterculiaceae" ; -lin stereospondyli_PN = mkPN "Stereospondyli" ; -lin stern_PN = mkPN "Stern" ; -lin sterna_PN = mkPN "Sterna" ; -lin sterne_PN = mkPN "Sterne" ; -lin sterninae_PN = mkPN "Sterninae" ; -lin sternotherus_PN = mkPN "Sternotherus" ; -lin sterope_PN = mkPN "Sterope" ; -lin steuben_PN = mkPN "Steuben" ; -lin steve_PN = mkPN "Steve"; -- from DictEng -lin steven_PN = mkPN "Steven"; -- from DictEng -lin stevenage_PN = mkPN "Stevenage"; -- from DictEng -lin stevens_PN = mkPN "Stevens" ; -lin stevens'_law_PN = mkPN "Stevens' law" ; -lin stevenson_PN = mkPN "Stevenson" ; -lin stevenston_PN = mkPN "Stevenston"; -- from DictEng -lin stewart_PN = mkPN "Stewart"; -- from DictEng -lin steyning_PN = mkPN "Steyning"; -- from DictEng -lin stheno_PN = mkPN "Stheno" ; -lin stichaeidae_PN = mkPN "Stichaeidae" ; -lin sticherus_PN = mkPN "Sticherus" ; -lin stictomys_PN = mkPN "Stictomys" ; -lin stictopelia_PN = mkPN "Stictopelia" ; -lin stieglitz_PN = mkPN "Stieglitz" ; -lin still's_disease_PN = mkPN "Still's disease" ; -lin stillson_wrench_PN = mkPN "Stillson wrench" ; -lin stilton_PN = mkPN "Stilton" ; -lin stilwell_PN = mkPN "Stilwell" ; -lin stinger_PN = mkPN "Stinger" ; -lin stirling_PN = mkPN "Stirling"; -- from DictEng -lin stizidae_PN = mkPN "Stizidae" ; -lin stizostedion_PN = mkPN "Stizostedion" ; -lin stockholm_PN = mkPN "Stockholm"; -- from DictEng -lin stockport_PN = mkPN "Stockport"; -- from DictEng -lin stocksbridge_PN = mkPN "Stocksbridge"; -- from DictEng -lin stockton_PN = mkPN "Stockton" ; -lin stoic_PN = mkPN "Stoic" ; -lin stoicism_PN = mkPN "Stoicism" ; -lin stoke_on_trent_PN = mkPN "Stoke - on - trent"; -- from DictEng -lin stoker_PN = mkPN "Stoker" ; -lin stokesia_PN = mkPN "Stokesia" ; -lin stokowski_PN = mkPN "Stokowski" ; -lin stomatopoda_PN = mkPN "Stomatopoda" ; -lin stone_PN = mkPN "Stone"; -- from DictEng -lin stone_age_PN = mkPN "Stone Age" ; -lin stonehenge_PN = mkPN "Stonehenge" ; -lin stonehouse_PN = mkPN "Stonehouse"; -- from DictEng -lin stopes_PN = mkPN "Stopes" ; -lin stoppard_PN = mkPN "Stoppard" ; -lin storeria_PN = mkPN "Storeria" ; -lin stornoway_PN = mkPN "Stornoway"; -- from DictEng -lin stotfold_PN = mkPN "Stotfold"; -- from DictEng -lin stourbridge_PN = mkPN "Stourbridge"; -- from DictEng -lin stourport_on_severn_PN = mkPN "Stourport - on - severn"; -- from DictEng -lin stowe_PN = mkPN "Stowe" ; -lin stowmarket_PN = mkPN "Stowmarket"; -- from DictEng -lin strachey_PN = mkPN "Strachey" ; -lin stradavarius_PN = mkPN "Stradavarius" ; -lin stradivari_PN = mkPN "Stradivari" ; -lin strait_of_dover_PN = mkPN "Strait of Dover" ; -lin strait_of_georgia_PN = mkPN "Strait of Georgia" ; -lin strait_of_gibraltar_PN = mkPN "Strait of Gibraltar" ; -lin strait_of_hormuz_PN = mkPN "Strait of Hormuz" ; -lin strait_of_magellan_PN = mkPN "Strait of Magellan" ; -lin strait_of_messina_PN = mkPN "Strait of Messina" ; -lin strand_PN = mkPN "Strand" ; -lin stranraer_PN = mkPN "Stranraer"; -- from DictEng -lin strasberg_PN = mkPN "Strasberg" ; -lin strasbourg_PN = mkPN "Strasbourg"; -- from DictEng -lin strategic_arms_limitation_talks_PN = mkPN "Strategic Arms Limitation Talks" ; -lin stratford_on_avon_PN = mkPN "Stratford - on - avon"; -- from DictEng -lin stratford_on_avon_PN = mkPN "Stratford - on - avon"; -- from DictEng -lin strathaven_PN = mkPN "Strathaven"; -- from DictEng -lin strathclyde_PN = mkPN "Strathclyde"; -- from DictEng -lin strauss_PN = mkPN "Strauss" ; -lin stravinsky_PN = mkPN "Stravinsky" ; -lin stravinskyan_A = mkA "Stravinskyan" ; -lin streep_PN = mkPN "Streep" ; -lin street_PN = mkPN "Street"; -- from DictEng -lin streisand_PN = mkPN "Streisand" ; -lin strekelia_PN = mkPN "Strekelia" ; -lin strelitzia_PN = mkPN "Strelitzia" ; -lin strelitziaceae_PN = mkPN "Strelitziaceae" ; -lin strepera_PN = mkPN "Strepera" ; -lin strepsirhini_PN = mkPN "Strepsirhini" ; -lin streptococcus_anhemolyticus_PN = mkPN "Streptococcus anhemolyticus" ; -lin streptomyces_erythreus_PN = mkPN "Streptomyces erythreus" ; -lin streptomyces_griseus_PN = mkPN "Streptomyces griseus" ; -lin streptomycetaceae_PN = mkPN "Streptomycetaceae" ; -lin streptopelia_PN = mkPN "Streptopelia" ; -lin streptopelia_turtur_PN = mkPN "Streptopelia turtur" ; -lin streptosolen_PN = mkPN "Streptosolen" ; -lin stretford_PN = mkPN "Stretford"; -- from DictEng -lin strickland_PN = mkPN "Strickland" ; -lin strigidae_PN = mkPN "Strigidae" ; -lin strigiformes_PN = mkPN "Strigiformes" ; -lin strindberg_PN = mkPN "Strindberg" ; -lin strix_PN = mkPN "Strix" ; -lin strobilomyces_PN = mkPN "Strobilomyces" ; -lin stroheim_PN = mkPN "Stroheim" ; -lin stromateidae_PN = mkPN "Stromateidae" ; -lin strombidae_PN = mkPN "Strombidae" ; -lin strombus_PN = mkPN "Strombus" ; -lin strongylodon_PN = mkPN "Strongylodon" ; -lin strophanthus_kombe_PN = mkPN "Strophanthus kombe" ; -lin stropharia_PN = mkPN "Stropharia" ; -lin stropharia_ambigua_PN = mkPN "Stropharia ambigua" ; -lin stropharia_hornemannii_PN = mkPN "Stropharia hornemannii" ; -lin stropharia_rugoso_annulata_PN = mkPN "Stropharia rugoso annulata" ; -lin strophariaceae_PN = mkPN "Strophariaceae" ; -lin stroud_PN = mkPN "Stroud"; -- from DictEng -lin struthio_PN = mkPN "Struthio" ; -lin struthionidae_PN = mkPN "Struthionidae" ; -lin struthioniformes_PN = mkPN "Struthioniformes" ; -lin strymon_PN = mkPN "Strymon" ; -lin strymon_melinus_PN = mkPN "Strymon melinus" ; -lin stuart_PN = mkPN "Stuart"; -- from DictEng -lin stubbs_PN = mkPN "Stubbs" ; -lin studley_PN = mkPN "Studley"; -- from DictEng -lin sturnella_PN = mkPN "Sturnella" ; -lin sturnidae_PN = mkPN "Sturnidae" ; -lin sturnus_PN = mkPN "Sturnus" ; -lin stuttgart_PN = mkPN "Stuttgart"; -- from DictEng -lin stuyvesant_PN = mkPN "Stuyvesant" ; -lin stygian_A = compoundA (mkA "stygian"); -- from DictEng -lin stylomecon_PN = mkPN "Stylomecon" ; -lin stylophorum_PN = mkPN "Stylophorum" ; -lin styphelia_PN = mkPN "Styphelia" ; -lin styracaceae_PN = mkPN "Styracaceae" ; -lin styrofoam_PN = mkPN "Styrofoam" ; -lin styron_PN = mkPN "Styron" ; -lin styx_PN = mkPN "Styx"; -- from DictEng -lin sub_saharan_africa_PN = mkPN "Sub Saharan Africa" ; -lin subularia_PN = mkPN "Subularia" ; -lin succoth_PN = mkPN "Succoth" ; -lin suchow_PN = mkPN "Suchow"; -- from DictEng -lin suckling_PN = mkPN "Suckling" ; -lin sucre_PN = mkPN "Sucre" ; -lin sudan_PN = mkPN "Sudan"; -- from DictEng -lin sudanese_A = compoundA (mkA "sudanese"); -- from DictEng -lin sudanese_PN = mkPN "Sudanese" ; -lin sudanese_monetary_unit_PN = mkPN "Sudanese monetary unit" ; -lin sudanese_pound_PN = mkPN "Sudanese pound" ; -lin sudbury_PN = mkPN "Sudbury"; -- from DictEng -lin sue_PN = mkPN "Sue"; -- from DictEng -lin suez_PN = mkPN "Suez" ; -lin suez_canal_PN = mkPN "Suez Canal" ; -lin suffolk_PN = mkPN "Suffolk"; -- from DictEng -lin sufi_A = mkA "Sufi" ; -lin sufi_PN = mkPN "Sufi" ; -lin sufism_PN = mkPN "Sufism" ; -lin suharto_PN = mkPN "Suharto" ; -lin suidae_PN = mkPN "Suidae" ; -lin suillus_PN = mkPN "Suillus" ; -lin suillus_albivelatus_PN = mkPN "Suillus albivelatus" ; -lin sukarno_PN = mkPN "Sukarno" ; -lin sukur_PN = mkPN "Sukur" ; -lin sula_PN = mkPN "Sula" ; -lin sulidae_PN = mkPN "Sulidae" ; -lin sulla_PN = mkPN "Sulla" ; -lin sullivan_PN = mkPN "Sullivan" ; -lin sully_PN = mkPN "Sully" ; -lin sumatra_PN = mkPN "Sumatra"; -- from DictEng -lin sumatran_A = compoundA (mkA "sumatran"); -- from DictEng -lin sumatran_PN = mkPN "Sumatran" ; -lin sumer_PN = mkPN "Sumer" ; -lin sumerian_A = mkA "Sumerian" ; -lin sumerian_PN = mkPN "Sumerian" ; -lin sumerology_PN = mkPN "Sumerology" ; -lin sumner_PN = mkPN "Sumner" ; -lin sun_PN = mkPN "Sun"; -- from DictEng -lin sun_city_PN = mkPN "Sun City" ; -lin sun_river_PN = mkPN "Sun River" ; -lin sun_valley_PN = mkPN "Sun Valley" ; -lin sun_yat_sen_PN = mkPN "Sun Yat sen" ; -lin sunbelt_PN = mkPN "Sunbelt" ; -lin sunda_islands_PN = mkPN "Sunda Islands" ; -lin sundacarpus_PN = mkPN "Sundacarpus" ; -lin sundacarpus_amara_PN = mkPN "Sundacarpus amara" ; -lin sundanese_PN = mkPN "Sundanese" ; -lin sunday_PN = mkPN "Sunday"; -- from DictEng -lin sunday_best_PN = mkPN "Sunday best" ; -lin sunday_school_PN = mkPN "Sunday school" ; -lin sunderland_PN = mkPN "Sunderland"; -- from DictEng -lin sung_PN = mkPN "Sung" ; -lin sunnah_PN = mkPN "Sunnah" ; -lin sunni_PN = mkPN "Sunni" ; -lin sunnite_PN = mkPN "Sunnite" ; -lin superfund_program_PN = mkPN "Superfund program" ; -lin superior_PN = mkPN "Superior" ; -lin supreme_allied_commander_atlantic_PN = mkPN "Supreme Allied Commander Atlantic" ; -lin supreme_allied_commander_europe_PN = mkPN "Supreme Allied Commander Europe" ; -lin supreme_court_PN = mkPN "Supreme Court" ; -lin supreme_headquarters_allied_powers_europe_PN = mkPN "Supreme Headquarters Allied Powers Europe" ; -lin supt_PN = mkPN "Supt"; -- from DictEng -lin sur_PN = mkPN "Sur" ; -lin surabaja_PN = mkPN "Surabaja"; -- from DictEng -lin surgeon_general_PN = mkPN "Surgeon General" ; -lin suricata_PN = mkPN "Suricata" ; -lin surinam_cherry_PN = mkPN "Surinam cherry" ; -lin surinam_toad_PN = mkPN "Surinam toad" ; -lin suriname_PN = mkPN "Suriname" ; -lin suriname_river_PN = mkPN "Suriname River" ; -lin surinamese_monetary_unit_PN = mkPN "Surinamese monetary unit" ; -lin surnia_PN = mkPN "Surnia" ; -lin surrey_PN = mkPN "Surrey"; -- from DictEng -lin surya_PN = mkPN "Surya" ; -lin sus_PN = mkPN "Sus" ; -lin susan_PN = mkPN "Susan"; -- from DictEng -lin susan_b_anthony_dollar_PN = mkPN "Susan B Anthony dollar" ; -lin susanna_PN = mkPN "Susanna"; -- from DictEng -lin susie_PN = mkPN "Susie"; -- from DictEng -lin susquehanna_PN = mkPN "Susquehanna" ; -lin sussex_PN = mkPN "Sussex"; -- from DictEng -lin sussex_spaniel_PN = mkPN "Sussex spaniel" ; -lin sutherland_PN = mkPN "Sutherland" ; -lin sutton_PN = mkPN "Sutton"; -- from DictEng -lin sutton_at_hone_PN = mkPN "Sutton - at - hone"; -- from DictEng -lin sutton_coldfield_PN = mkPN "Sutton coldfield"; -- from DictEng -lin sutton_in_ashfield_PN = mkPN "Sutton in ashfield"; -- from DictEng -lin suva_PN = mkPN "Suva" ; -lin suzanne_PN = mkPN "Suzanne"; -- from DictEng -lin svalbard_PN = mkPN "Svalbard" ; -lin svengali_PN = mkPN "Svengali" ; -lin sverdlovsk_PN = mkPN "Sverdlovsk"; -- from DictEng -lin sverdrup_PN = mkPN "Sverdrup" ; -lin swadlincote_PN = mkPN "Swadlincote"; -- from DictEng -lin swahili_PN = mkPN "Swahili" ; -lin swainsona_PN = mkPN "Swainsona" ; -lin swammerdam_PN = mkPN "Swammerdam" ; -lin swan_river_daisy_PN = mkPN "Swan River daisy" ; -lin swan_river_everlasting_PN = mkPN "Swan River everlasting" ; -lin swanage_PN = mkPN "Swanage"; -- from DictEng -lin swanley_PN = mkPN "Swanley"; -- from DictEng -lin swansea_PN = mkPN "Swansea"; -- from DictEng -lin swanson_PN = mkPN "Swanson" ; -lin swazi_A = compoundA (mkA "swazi"); -- from DictEng -lin swazi_PN = mkPN "Swazi" ; -lin swaziland_PN = mkPN "Swaziland"; -- from DictEng -lin swaziland_monetary_unit_PN = mkPN "Swaziland monetary unit" ; -lin swede_PN = mkPN "Swede" ; -lin sweden_PN = mkPN "Sweden"; -- from DictEng -lin swedenborg_PN = mkPN "Swedenborg" ; -lin swedish_A = compoundA (mkA "Swedish"); -- from DictEng -lin swedish_PN = mkPN "Swedish" ; -lin swedish_iron_PN = mkPN "Swedish iron" ; -lin swedish_krona_PN = mkPN "Swedish krona" ; -lin swedish_massage_PN = mkPN "Swedish massage" ; -lin swedish_meatball_PN = mkPN "Swedish meatball" ; -lin swedish_monetary_unit_PN = mkPN "Swedish monetary unit" ; -lin swedish_rye_bread_PN = mkPN "Swedish rye bread" ; -lin sweet_PN = mkPN "Sweet" ; -lin swertia_PN = mkPN "Swertia" ; -lin swietinia_PN = mkPN "Swietinia" ; -lin swift_PN = mkPN "Swift" ; -lin swinburne_PN = mkPN "Swinburne" ; -lin swindon_PN = mkPN "Swindon"; -- from DictEng -lin swinton_PN = mkPN "Swinton"; -- from DictEng -lin swiss_A = compoundA (mkA "swiss"); -- from DictEng -lin swiss_PN = mkPN "Swiss" ; -lin swiss_canton_PN = mkPN "Swiss canton" ; -lin swiss_cheese_PN = mkPN "Swiss cheese" ; -lin swiss_franc_PN = mkPN "Swiss franc" ; -lin swiss_mountain_pine_PN = mkPN "Swiss mountain pine" ; -lin swiss_pine_PN = mkPN "Swiss pine" ; -lin swiss_steak_PN = mkPN "Swiss steak" ; -lin switzerland_PN = mkPN "Switzerland"; -- from DictEng -lin sydenham_PN = mkPN "Sydenham" ; -lin sydenham's_chorea_PN = mkPN "Sydenham's chorea" ; -lin sydney_PN = mkPN "Sydney"; -- from DictEng -lin sydney_harbor_bridge_PN = mkPN "Sydney Harbor Bridge" ; -lin sylvanus_PN = mkPN "Sylvanus" ; -lin sylvester_ii_PN = mkPN "Sylvester II" ; -lin sylvia_PN = mkPN "Sylvia"; -- from DictEng -lin sylviidae_PN = mkPN "Sylviidae" ; -lin sylviinae_PN = mkPN "Sylviinae" ; -lin sylvilagus_PN = mkPN "Sylvilagus" ; -lin symbion_pandora_PN = mkPN "Symbion pandora" ; -lin symonds_PN = mkPN "Symonds" ; -lin symons_PN = mkPN "Symons" ; -lin symphalangus_PN = mkPN "Symphalangus" ; -lin symphoricarpos_PN = mkPN "Symphoricarpos" ; -lin symphyla_PN = mkPN "Symphyla" ; -lin symphytum_PN = mkPN "Symphytum" ; -lin symplocaceae_PN = mkPN "Symplocaceae" ; -lin symplocarpus_PN = mkPN "Symplocarpus" ; -lin symplocus_PN = mkPN "Symplocus" ; -lin synagrops_PN = mkPN "Synagrops" ; -lin synanceja_PN = mkPN "Synanceja" ; -lin synapsida_PN = mkPN "Synapsida" ; -lin synaptomys_PN = mkPN "Synaptomys" ; -lin synchytriaceae_PN = mkPN "Synchytriaceae" ; -lin synchytrium_PN = mkPN "Synchytrium" ; -lin synentognathi_PN = mkPN "Synentognathi" ; -lin synercus_PN = mkPN "Synercus" ; -lin synge_PN = mkPN "Synge" ; -lin syngnathidae_PN = mkPN "Syngnathidae" ; -lin syngnathus_PN = mkPN "Syngnathus" ; -lin syngonium_PN = mkPN "Syngonium" ; -lin synodontidae_PN = mkPN "Synodontidae" ; -lin synoptic_gospels_PN = mkPN "Synoptic Gospels" ; -lin syracuse_PN = mkPN "Syracuse"; -- from DictEng -lin syria_PN = mkPN "Syria"; -- from DictEng -lin syrian_A = compoundA (mkA "syrian"); -- from DictEng -lin syrian_PN = mkPN "Syrian" ; -lin syrian_desert_PN = mkPN "Syrian Desert" ; -lin syrian_bear_PN = mkPN "Syrian bear" ; -lin syrian_monetary_unit_PN = mkPN "Syrian monetary unit" ; -lin syrian_pound_PN = mkPN "Syrian pound" ; -lin syringa_PN = mkPN "Syringa" ; -lin syrrhaptes_PN = mkPN "Syrrhaptes" ; -lin systeme_international_d'unites_PN = mkPN "Systeme International d'Unites" ; -lin syston_PN = mkPN "Syston"; -- from DictEng -lin syzygium_PN = mkPN "Syzygium" ; -lin szechwan_PN = mkPN "Szechwan" ; -lin szell_PN = mkPN "Szell" ; -lin szent_gyorgyi_PN = mkPN "Szent Gyorgyi" ; -lin szilard_PN = mkPN "Szilard" ; -lin t_PN = mkPN "T" ; -lin t_bar_lift_PN = mkPN "T bar lift" ; -lin t_bone_steak_PN = mkPN "T bone steak" ; -lin t_junction_PN = mkPN "T junction" ; -lin t_man_PN = mkPN "T man" ; -lin t_network_PN = mkPN "T network" ; -lin t_shaped_A = compoundA (mkA "T shaped") ; -lin t_square_PN = mkPN "T square" ; -lin tnt_PN = mkPN "TNT" ; -lin tv_dinner_PN = mkPN "TV dinner" ; -lin t_cell_PN = mkPN "T cell" ; -lin ta'ziyeh_PN = mkPN "Ta'ziyeh" ; -lin tabanidae_PN = mkPN "Tabanidae" ; -lin tabasco_PN = mkPN "Tabasco" ; -lin tabernacle_PN = mkPN "Tabernacle" ; -lin tabernaemontana_PN = mkPN "Tabernaemontana" ; -lin tabora_PN = mkPN "Tabora" ; -lin tabriz_PN = mkPN "Tabriz" ; -lin tabuk_PN = mkPN "Tabuk" ; -lin tacca_PN = mkPN "Tacca" ; -lin taccaceae_PN = mkPN "Taccaceae" ; -lin tachinidae_PN = mkPN "Tachinidae" ; -lin tachyglossidae_PN = mkPN "Tachyglossidae" ; -lin tachyglossus_PN = mkPN "Tachyglossus" ; -lin tachypleus_PN = mkPN "Tachypleus" ; -lin tacitus_PN = mkPN "Tacitus" ; -lin tacoma_PN = mkPN "Tacoma" ; -lin tacoma_narrows_bridge_PN = mkPN "Tacoma Narrows Bridge" ; -lin taconic_mountains_PN = mkPN "Taconic Mountains" ; -lin tadarida_PN = mkPN "Tadarida" ; -lin tadley_PN = mkPN "Tadley"; -- from DictEng -lin tadorna_PN = mkPN "Tadorna" ; -lin taegu_PN = mkPN "Taegu"; -- from DictEng -lin taeniidae_PN = mkPN "Taeniidae" ; -lin taft_PN = mkPN "Taft" ; -lin tagalog_PN = mkPN "Tagalog" ; -lin tageteste_PN = mkPN "Tageteste" ; -lin tagore_PN = mkPN "Tagore" ; -lin tagus_PN = mkPN "Tagus" ; -lin tahiti_PN = mkPN "Tahiti"; -- from DictEng -lin tahitian_A = compoundA (mkA "tahitian"); -- from DictEng -lin tahitian_PN = mkPN "Tahitian" ; -lin tai_PN = mkPN "Tai" ; -lin tai_dam_PN = mkPN "Tai Dam" ; -lin tai_long_PN = mkPN "Tai Long" ; -lin tai_lue_PN = mkPN "Tai Lue" ; -lin tai_nuea_PN = mkPN "Tai Nuea" ; -lin tai_yuan_PN = mkPN "Tai Yuan" ; -lin taichung_PN = mkPN "Taichung" ; -lin taif_PN = mkPN "Taif" ; -lin taimyr_peninsula_PN = mkPN "Taimyr Peninsula" ; -lin taipei_PN = mkPN "Taipei"; -- from DictEng -lin taiwan_PN = mkPN "Taiwan"; -- from DictEng -lin taiwan_dollar_PN = mkPN "Taiwan dollar" ; -lin taiwanese_A = compoundA (mkA "taiwanese"); -- from DictEng -lin taiwanese_PN = mkPN "Taiwanese" ; -lin taiyuan_PN = mkPN "Taiyuan"; -- from DictEng -lin taj_mahal_PN = mkPN "Taj Mahal" ; -lin tajik_PN = mkPN "Tajik" ; -lin tajiki_PN = mkPN "Tajiki" ; -lin tajikistan_PN = mkPN "Tajikistan" ; -lin tajikistani_A = mkA "Tajikistani" ; -lin tajikistani_monetary_unit_PN = mkPN "Tajikistani monetary unit" ; -lin takakkaw_PN = mkPN "Takakkaw" ; -lin takayasu's_arteritis_PN = mkPN "Takayasu's arteritis" ; -lin takelma_PN = mkPN "Takelma" ; -lin takilman_PN = mkPN "Takilman" ; -lin taklimakan_desert_PN = mkPN "Taklimakan Desert" ; -lin talbot_PN = mkPN "Talbot" ; -lin taliban_PN = mkPN "Taliban" ; -lin talinum_PN = mkPN "Talinum" ; -lin tallahassee_PN = mkPN "Tallahassee" ; -lin tallapoosa_PN = mkPN "Tallapoosa" ; -lin tallchief_PN = mkPN "Tallchief" ; -lin talleyrand_PN = mkPN "Talleyrand" ; -lin tallinn_PN = mkPN "Tallinn" ; -lin tallis_PN = mkPN "Tallis" ; -lin talmud_PN = mkPN "Talmud" ; -lin talmudic_literature_PN = mkPN "Talmudic literature" ; -lin talpidae_PN = mkPN "Talpidae" ; -lin tamale_PN = mkPN "Tamale" ; -lin tamaricaceae_PN = mkPN "Tamaricaceae" ; -lin tamarindus_PN = mkPN "Tamarindus" ; -lin tamarix_PN = mkPN "Tamarix" ; -lin tamerlane_PN = mkPN "Tamerlane" ; -lin tamias_PN = mkPN "Tamias" ; -lin tamiasciurus_PN = mkPN "Tamiasciurus" ; -lin tamil_A = compoundA (mkA "tamil"); -- from DictEng -lin tamil_PN = mkPN "Tamil" ; -lin tamil_nadu_PN = mkPN "Tamil Nadu" ; -lin tamm_PN = mkPN "Tamm" ; -lin tammany_hall_PN = mkPN "Tammany Hall" ; -lin tammuz_PN = mkPN "Tammuz" ; -lin tampa_PN = mkPN "Tampa" ; -lin tampa_bay_PN = mkPN "Tampa Bay" ; -lin tampax_PN = mkPN "Tampax" ; -lin tampere_PN = mkPN "Tampere"; -- from DictEng -lin tampico_PN = mkPN "Tampico" ; -lin tamus_PN = mkPN "Tamus" ; -lin tamworth_PN = mkPN "Tamworth"; -- from DictEng -lin tanacetum_PN = mkPN "Tanacetum" ; -lin tanakh_PN = mkPN "Tanakh" ; -lin tancred_PN = mkPN "Tancred" ; -lin tandy_PN = mkPN "Tandy" ; -lin taney_PN = mkPN "Taney" ; -lin tang_PN = mkPN "Tang" ; -lin tanga_PN = mkPN "Tanga" ; -lin tanganyika_PN = mkPN "Tanganyika" ; -lin tange_PN = mkPN "Tange" ; -lin tangier_PN = mkPN "Tangier" ; -lin tangier_pea_PN = mkPN "Tangier pea" ; -lin tangshan_PN = mkPN "Tangshan"; -- from DictEng -lin tanguy_PN = mkPN "Tanguy" ; -lin tannenberg_PN = mkPN "Tannenberg" ; -lin tanoan_PN = mkPN "Tanoan" ; -lin tantalus_PN = mkPN "Tantalus" ; -lin tantilla_PN = mkPN "Tantilla" ; -lin tantra_PN = mkPN "Tantra" ; -lin tantric_A = mkA "Tantric" ; -lin tantrism_PN = mkPN "Tantrism" ; -lin tantrist_PN = mkPN "Tantrist" ; -lin tanzania_PN = mkPN "Tanzania"; -- from DictEng -lin tanzanian_A = compoundA (mkA "tanzanian"); -- from DictEng -lin tanzanian_PN = mkPN "Tanzanian" ; -lin tanzanian_monetary_unit_PN = mkPN "Tanzanian monetary unit" ; -lin tanzanian_shilling_PN = mkPN "Tanzanian shilling" ; -lin tao_PN = mkPN "Tao" ; -lin taoism_PN = mkPN "Taoism" ; -lin taoist_A = mkA "Taoist" ; -lin taoist_PN = mkPN "Taoist" ; -lin taoist_trinity_PN = mkPN "Taoist Trinity" ; -lin taos_PN = mkPN "Taos" ; -lin tapiridae_PN = mkPN "Tapiridae" ; -lin tapirus_PN = mkPN "Tapirus" ; -lin tappan_PN = mkPN "Tappan" ; -lin tappan_zee_bridge_PN = mkPN "Tappan Zee Bridge" ; -lin tara_PN = mkPN "Tara" ; -lin tarabulus_PN = mkPN "Tarabulus" ; -lin taracahitian_PN = mkPN "Taracahitian" ; -lin tarahumara_PN = mkPN "Tarahumara" ; -lin taranaki_PN = mkPN "Taranaki"; -- from DictEng -lin tarantino_PN = mkPN "Tarantino" ; -lin taranto_PN = mkPN "Taranto"; -- from DictEng -lin tarawa_PN = mkPN "Tarawa" ; -lin taraxacum_PN = mkPN "Taraxacum" ; -lin tarbell_PN = mkPN "Tarbell" ; -lin tardigrada_PN = mkPN "Tardigrada" ; -lin tareekh_e_kasas_PN = mkPN "Tareekh e Kasas" ; -lin taricha_PN = mkPN "Taricha" ; -lin tarkovsky_PN = mkPN "Tarkovsky" ; -lin tarquin_PN = mkPN "Tarquin" ; -lin tarrasa_PN = mkPN "Tarrasa"; -- from DictEng -lin tarrietia_PN = mkPN "Tarrietia" ; -lin tarsiidae_PN = mkPN "Tarsiidae" ; -lin tarsioidea_PN = mkPN "Tarsioidea" ; -lin tarsius_PN = mkPN "Tarsius" ; -lin tarsius_glis_PN = mkPN "Tarsius glis" ; -lin tarsius_syrichta_PN = mkPN "Tarsius syrichta" ; -lin tartary_PN = mkPN "Tartary" ; -lin tartu_PN = mkPN "Tartu" ; -lin tartuffe_PN = mkPN "Tartuffe" ; -lin tarzan_PN = mkPN "Tarzan" ; -lin tashkent_PN = mkPN "Tashkent"; -- from DictEng -lin tashmit_PN = mkPN "Tashmit" ; -lin tasman_PN = mkPN "Tasman" ; -lin tasman_sea_PN = mkPN "Tasman Sea" ; -lin tasman_dwarf_pine_PN = mkPN "Tasman dwarf pine" ; -lin tasmania_PN = mkPN "Tasmania"; -- from DictEng -lin tasmanian_A = mkA "Tasmanian" ; -lin tasmanian_devil_PN = mkPN "Tasmanian devil" ; -lin tasso_PN = mkPN "Tasso" ; -lin tatahumara_PN = mkPN "Tatahumara" ; -lin tatar_PN = mkPN "Tatar" ; -lin tate_PN = mkPN "Tate" ; -lin tati_PN = mkPN "Tati" ; -lin tatum_PN = mkPN "Tatum" ; -lin taunton_PN = mkPN "Taunton"; -- from DictEng -lin taurotragus_PN = mkPN "Taurotragus" ; -lin taurus_PN = mkPN "Taurus"; -- from DictEng -lin tautoga_PN = mkPN "Tautoga" ; -lin tautogolabrus_PN = mkPN "Tautogolabrus" ; -lin taverham_PN = mkPN "Taverham"; -- from DictEng -lin tavistock_PN = mkPN "Tavistock"; -- from DictEng -lin tawney_PN = mkPN "Tawney" ; -lin taxaceae_PN = mkPN "Taxaceae" ; -lin taxales_PN = mkPN "Taxales" ; -lin taxidea_PN = mkPN "Taxidea" ; -lin taxodiaceae_PN = mkPN "Taxodiaceae" ; -lin taxodium_PN = mkPN "Taxodium" ; -lin taxopsida_PN = mkPN "Taxopsida" ; -lin taxus_PN = mkPN "Taxus" ; -lin tay_PN = mkPN "Tay" ; -lin tay_sachs_disease_PN = mkPN "Tay Sachs disease" ; -lin tayalic_PN = mkPN "Tayalic" ; -lin tayassu_PN = mkPN "Tayassu" ; -lin tayassuidae_PN = mkPN "Tayassuidae" ; -lin taylor_PN = mkPN "Taylor" ; -lin tayside_PN = mkPN "Tayside"; -- from DictEng -lin tazir_crime_PN = mkPN "Tazir crime" ; -lin tbilisi_PN = mkPN "Tbilisi"; -- from DictEng -lin tchaikovsky_PN = mkPN "Tchaikovsky" ; -lin te_deum_PN = mkPN "Te Deum" ; -lin te_kanawa_PN = mkPN "Te Kanawa" ; -lin teach_PN = mkPN "Teach" ; -lin teamsters_union_PN = mkPN "Teamsters Union" ; -lin teapot_dome_PN = mkPN "Teapot Dome" ; -lin teasdale_PN = mkPN "Teasdale" ; -lin tebaldi_PN = mkPN "Tebaldi" ; -lin tebet_PN = mkPN "Tebet" ; -lin technology_administration_PN = mkPN "Technology Administration" ; -lin tecophilaeacea_PN = mkPN "Tecophilaeacea" ; -lin tectaria_PN = mkPN "Tectaria" ; -lin tectona_PN = mkPN "Tectona" ; -lin tecumseh_PN = mkPN "Tecumseh" ; -lin ted_PN = mkPN "Ted"; -- from DictEng -lin teddy_PN = mkPN "Teddy"; -- from DictEng -lin teesside_PN = mkPN "Teesside"; -- from DictEng -lin teflon_PN = mkPN "Teflon" ; -lin tegucigalpa_PN = mkPN "Tegucigalpa" ; -lin teheran_PN = mkPN "Teheran"; -- from DictEng -lin teignmouth_PN = mkPN "Teignmouth"; -- from DictEng -lin teiidae_PN = mkPN "Teiidae" ; -lin teilhard_de_chardin_PN = mkPN "Teilhard de Chardin" ; -lin tel_PN = mkPN "Tel"; -- from DictEng -lin tel_aviv_PN = mkPN "Tel - aviv"; -- from DictEng -lin telanthera_PN = mkPN "Telanthera" ; -lin telemann_PN = mkPN "Telemann" ; -lin teleostei_PN = mkPN "Teleostei" ; -lin teleprompter_PN = mkPN "Teleprompter" ; -lin telescopium_PN = mkPN "Telescopium" ; -lin telford_PN = mkPN "Telford"; -- from DictEng -lin tell_PN = mkPN "Tell" ; -lin teller_PN = mkPN "Teller" ; -lin tellima_PN = mkPN "Tellima" ; -lin tellus_PN = mkPN "Tellus" ; -lin telopea_PN = mkPN "Telopea" ; -lin telosporidia_PN = mkPN "Telosporidia" ; -lin telstar_PN = mkPN "Telstar"; -- from DictEng -lin telugu_PN = mkPN "Telugu" ; -lin temnospondyli_PN = mkPN "Temnospondyli" ; -lin temperate_zone_PN = mkPN "Temperate Zone" ; -lin temple_of_apollo_PN = mkPN "Temple of Apollo" ; -lin temple_of_artemis_PN = mkPN "Temple of Artemis" ; -lin temple_of_jerusalem_PN = mkPN "Temple of Jerusalem" ; -lin templetonia_PN = mkPN "Templetonia" ; -lin temuco_PN = mkPN "Temuco" ; -lin tenby_PN = mkPN "Tenby"; -- from DictEng -lin tenebrionidae_PN = mkPN "Tenebrionidae" ; -lin tenerife_PN = mkPN "Tenerife" ; -lin tennessean_PN = mkPN "Tennessean" ; -lin tennessee_PN = mkPN "Tennessee"; -- from DictEng -lin tennessee_walker_PN = mkPN "Tennessee walker" ; -lin tenniel_PN = mkPN "Tenniel" ; -lin tennyson_PN = mkPN "Tennyson" ; -lin tenoretic_PN = mkPN "Tenoretic" ; -lin tenrecidae_PN = mkPN "Tenrecidae" ; -lin tentaculata_PN = mkPN "Tentaculata" ; -lin tenterden_PN = mkPN "Tenterden"; -- from DictEng -lin tenthredinidae_PN = mkPN "Tenthredinidae" ; -lin tenzing_norgay_PN = mkPN "Tenzing Norgay" ; -lin tephrosia_PN = mkPN "Tephrosia" ; -lin tepic_PN = mkPN "Tepic" ; -lin tera_PN = mkPN "Tera" ; -lin terebella_PN = mkPN "Terebella" ; -lin terebellidae_PN = mkPN "Terebellidae" ; -lin teredinidae_PN = mkPN "Teredinidae" ; -lin terence_PN = mkPN "Terence"; -- from DictEng -lin teresa_PN = mkPN "Teresa"; -- from DictEng -lin teresa_of_avila_PN = mkPN "Teresa of Avila" ; -lin tereshkova_PN = mkPN "Tereshkova" ; -lin termes_PN = mkPN "Termes" ; -lin termi_PN = mkPN "Termi"; -- from DictEng -lin termitidae_PN = mkPN "Termitidae" ; -lin terpsichore_PN = mkPN "Terpsichore" ; -lin terr_PN = mkPN "Terr"; -- from DictEng -lin terrapene_PN = mkPN "Terrapene" ; -lin territorial_army_PN = mkPN "Territorial Army" ; -lin terry_PN = mkPN "Terry"; -- from DictEng -lin tertiary_PN = mkPN "Tertiary" ; -lin tertry_PN = mkPN "Tertry" ; -lin tertullian_PN = mkPN "Tertullian" ; -lin tesla_PN = mkPN "Tesla" ; -lin tesla_coil_PN = mkPN "Tesla coil" ; -lin tess_PN = mkPN "Tess"; -- from DictEng -lin tessa_PN = mkPN "Tessa"; -- from DictEng -lin testacea_PN = mkPN "Testacea" ; -lin testament_PN = mkPN "Testament" ; -lin testudinidae_PN = mkPN "Testudinidae" ; -lin testudo_PN = mkPN "Testudo" ; -lin tet_PN = mkPN "Tet" ; -lin tethys_PN = mkPN "Tethys" ; -lin teton_PN = mkPN "Teton" ; -lin teton_range_PN = mkPN "Teton Range" ; -lin tetraclinis_PN = mkPN "Tetraclinis" ; -lin tetragonia_PN = mkPN "Tetragonia" ; -lin tetragonurus_PN = mkPN "Tetragonurus" ; -lin tetragrammaton_PN = mkPN "Tetragrammaton" ; -lin tetraneuris_PN = mkPN "Tetraneuris" ; -lin tetranychidae_PN = mkPN "Tetranychidae" ; -lin tetrao_PN = mkPN "Tetrao" ; -lin tetraodontidae_PN = mkPN "Tetraodontidae" ; -lin tetraonidae_PN = mkPN "Tetraonidae" ; -lin tetrapturus_PN = mkPN "Tetrapturus" ; -lin tetrazzini_PN = mkPN "Tetrazzini" ; -lin tettigoniidae_PN = mkPN "Tettigoniidae" ; -lin teucrium_PN = mkPN "Teucrium" ; -lin teutoburger_wald_PN = mkPN "Teutoburger Wald" ; -lin teuton_PN = mkPN "Teuton" ; -lin teutonic_A = compoundA (mkA "teutonic"); -- from DictEng -lin teutonic_deity_PN = mkPN "Teutonic deity" ; -lin teutonist_PN = mkPN "Teutonist" ; -lin tewkesbury_PN = mkPN "Tewkesbury"; -- from DictEng -lin texan_A = compoundA (mkA "texan"); -- from DictEng -lin texan_PN = mkPN "Texan" ; -lin texarkana_PN = mkPN "Texarkana" ; -lin texas_PN = mkPN "Texas"; -- from DictEng -lin texas_independence_day_PN = mkPN "Texas Independence Day" ; -lin texas_ranger_PN = mkPN "Texas Ranger" ; -lin texas_bluebonnet_PN = mkPN "Texas bluebonnet" ; -lin texas_chachalaca_PN = mkPN "Texas chachalaca" ; -lin texas_fever_PN = mkPN "Texas fever" ; -lin texas_horned_lizard_PN = mkPN "Texas horned lizard" ; -lin texas_leaguer_PN = mkPN "Texas leaguer" ; -lin texas_purple_spike_PN = mkPN "Texas purple spike" ; -lin texas_snowbell_PN = mkPN "Texas snowbell" ; -lin texas_star_PN = mkPN "Texas star" ; -lin texas_storksbill_PN = mkPN "Texas storksbill" ; -lin texas_toad_PN = mkPN "Texas toad" ; -lin texas_tortoise_PN = mkPN "Texas tortoise" ; -lin thackeray_PN = mkPN "Thackeray" ; -lin thai_A = compoundA (mkA "thai"); -- from DictEng -lin thai_PN = mkPN "Thai" ; -lin thai_monetary_unit_PN = mkPN "Thai monetary unit" ; -lin thailand_PN = mkPN "Thailand"; -- from DictEng -lin thalarctos_PN = mkPN "Thalarctos" ; -lin thalassoma_PN = mkPN "Thalassoma" ; -lin thales_PN = mkPN "Thales" ; -lin thalia_PN = mkPN "Thalia" ; -lin thaliacea_PN = mkPN "Thaliacea" ; -lin thalictrum_PN = mkPN "Thalictrum" ; -lin thallophyta_PN = mkPN "Thallophyta" ; -lin thame_PN = mkPN "Thame"; -- from DictEng -lin thames_PN = mkPN "Thames" ; -lin thamnophilus_PN = mkPN "Thamnophilus" ; -lin thamnophis_PN = mkPN "Thamnophis" ; -lin thanatos_PN = mkPN "Thanatos" ; -lin thanksgiving_PN = mkPN "Thanksgiving" ; -lin thar_desert_PN = mkPN "Thar Desert" ; -lin tharp_PN = mkPN "Tharp" ; -lin thatcham_PN = mkPN "Thatcham"; -- from DictEng -lin thatcher_PN = mkPN "Thatcher" ; -lin thatcherism_PN = mkPN "Thatcherism" ; -lin thatcherite_PN = mkPN "Thatcherite" ; -lin the_hague_PN = mkPN "The Hague" ; -lin the_star_spangled_banner_PN = mkPN "The Star Spangled Banner" ; -lin thea_PN = mkPN "Thea" ; -lin theaceae_PN = mkPN "Theaceae" ; -lin theban_A = mkA "Theban" ; -lin theban_PN = mkPN "Theban" ; -lin thebes_PN = mkPN "Thebes" ; -lin thecodontia_PN = mkPN "Thecodontia" ; -lin thelephoraceae_PN = mkPN "Thelephoraceae" ; -lin thelypteridaceae_PN = mkPN "Thelypteridaceae" ; -lin thelypteris_PN = mkPN "Thelypteris" ; -lin thematic_apperception_test_PN = mkPN "Thematic Apperception Test" ; -lin themis_PN = mkPN "Themis" ; -lin themistocles_PN = mkPN "Themistocles" ; -lin theo_PN = mkPN "Theo"; -- from DictEng -lin theobroma_PN = mkPN "Theobroma" ; -lin theodore_PN = mkPN "Theodore"; -- from DictEng -lin theodore_roosevelt_memorial_national_park_PN = mkPN "Theodore Roosevelt Memorial National Park" ; -lin theodosius_PN = mkPN "Theodosius" ; -lin theophrastaceae_PN = mkPN "Theophrastaceae" ; -lin theophrastus_PN = mkPN "Theophrastus" ; -lin theraphosidae_PN = mkPN "Theraphosidae" ; -lin therapsida_PN = mkPN "Therapsida" ; -lin theravada_PN = mkPN "Theravada" ; -lin theresa_PN = mkPN "Theresa"; -- from DictEng -lin theridiidae_PN = mkPN "Theridiidae" ; -lin thermidor_PN = mkPN "Thermidor" ; -lin thermobia_PN = mkPN "Thermobia" ; -lin thermopsis_PN = mkPN "Thermopsis" ; -lin thermopylae_PN = mkPN "Thermopylae" ; -lin theropoda_PN = mkPN "Theropoda" ; -lin theseus_PN = mkPN "Theseus" ; -lin thespesia_PN = mkPN "Thespesia" ; -lin thespis_PN = mkPN "Thespis" ; -lin thessalia_PN = mkPN "Thessalia" ; -lin thessalian_PN = mkPN "Thessalian" ; -lin thessalonian_PN = mkPN "Thessalonian" ; -lin thessaloniki_PN = mkPN "Thessaloniki"; -- from DictEng -lin thetford_PN = mkPN "Thetford"; -- from DictEng -lin thetis_PN = mkPN "Thetis" ; -lin thevetia_PN = mkPN "Thevetia" ; -lin thielavia_PN = mkPN "Thielavia" ; -lin thiobacteriaceae_PN = mkPN "Thiobacteriaceae" ; -lin thionville_PN = mkPN "Thionville"; -- from DictEng -lin thiosulfil_PN = mkPN "Thiosulfil" ; -lin third_crusade_PN = mkPN "Third Crusade" ; -lin third_epistel_of_john_PN = mkPN "Third Epistel of John" ; -lin third_lateran_council_PN = mkPN "Third Lateran Council" ; -lin third_reich_PN = mkPN "Third Reich" ; -lin third_world_PN = mkPN "Third World" ; -lin thirsk_PN = mkPN "Thirsk"; -- from DictEng -lin thirty_years'_war_PN = mkPN "Thirty Years' War" ; -lin thlaspi_PN = mkPN "Thlaspi" ; -lin tho_PN = mkPN "Tho" ; -lin thomas_PN = mkPN "Thomas"; -- from DictEng -lin thomism_PN = mkPN "Thomism" ; -lin thomomys_PN = mkPN "Thomomys" ; -lin thompson_PN = mkPN "Thompson" ; -lin thompson_seedless_PN = mkPN "Thompson Seedless" ; -lin thomson_PN = mkPN "Thomson" ; -lin thomson's_gazelle_PN = mkPN "Thomson's gazelle" ; -lin thor_PN = mkPN "Thor" ; -lin thoreau_PN = mkPN "Thoreau" ; -lin thoreauvian_A = mkA "Thoreauvian" ; -lin thornbury_PN = mkPN "Thornbury"; -- from DictEng -lin thorndike_PN = mkPN "Thorndike" ; -lin thorne_PN = mkPN "Thorne"; -- from DictEng -lin thornton_PN = mkPN "Thornton" ; -lin thorpe_PN = mkPN "Thorpe" ; -lin thorshavn_PN = mkPN "Thorshavn" ; -lin thoth_PN = mkPN "Thoth" ; -lin thousand_island_dressing_PN = mkPN "Thousand Island dressing" ; -lin thrace_PN = mkPN "Thrace" ; -lin thracian_A = mkA "Thracian" ; -lin thracian_PN = mkPN "Thracian" ; -lin thraco_phrygian_PN = mkPN "Thraco Phrygian" ; -lin thraupidae_PN = mkPN "Thraupidae" ; -lin threskiornis_PN = mkPN "Threskiornis" ; -lin threskiornithidae_PN = mkPN "Threskiornithidae" ; -lin thrinax_PN = mkPN "Thrinax" ; -lin thripidae_PN = mkPN "Thripidae" ; -lin thryothorus_PN = mkPN "Thryothorus" ; -lin thucydides_PN = mkPN "Thucydides" ; -lin thuja_PN = mkPN "Thuja" ; -lin thujopsis_PN = mkPN "Thujopsis" ; -lin thule_PN = mkPN "Thule" ; -lin thunbergia_PN = mkPN "Thunbergia" ; -lin thunder_bay_PN = mkPN "Thunder Bay" ; -lin thunnus_PN = mkPN "Thunnus" ; -lin thurber_PN = mkPN "Thurber" ; -lin thurcroft_PN = mkPN "Thurcroft"; -- from DictEng -lin thuringia_PN = mkPN "Thuringia" ; -lin thurmaston_PN = mkPN "Thurmaston"; -- from DictEng -lin thurrock_PN = mkPN "Thurrock"; -- from DictEng -lin thurs_PN = mkPN "Thurs"; -- from DictEng -lin thursday_PN = mkPN "Thursday"; -- from DictEng -lin thurso_PN = mkPN "Thurso"; -- from DictEng -lin thylacinus_PN = mkPN "Thylacinus" ; -lin thylogale_PN = mkPN "Thylogale" ; -lin thymelaeaceae_PN = mkPN "Thymelaeaceae" ; -lin thymus_PN = mkPN "Thymus" ; -lin thyreophora_PN = mkPN "Thyreophora" ; -lin thysanocarpus_PN = mkPN "Thysanocarpus" ; -lin thysanoptera_PN = mkPN "Thysanoptera" ; -lin thysanura_PN = mkPN "Thysanura" ; -lin tiamat_PN = mkPN "Tiamat" ; -lin tianjin_PN = mkPN "Tianjin" ; -lin tiarella_PN = mkPN "Tiarella" ; -lin tiber_PN = mkPN "Tiber" ; -lin tiberius_PN = mkPN "Tiberius" ; -lin tibet_PN = mkPN "Tibet"; -- from DictEng -lin tibetan_A = compoundA (mkA "tibetan"); -- from DictEng -lin tibetan_PN = mkPN "Tibetan" ; -lin tibetan_mastiff_PN = mkPN "Tibetan mastiff" ; -lin tibetan_terrier_PN = mkPN "Tibetan terrier" ; -lin tibeto_burman_PN = mkPN "Tibeto Burman" ; -lin tibicen_PN = mkPN "Tibicen" ; -lin tichodroma_PN = mkPN "Tichodroma" ; -lin ticino_PN = mkPN "Ticino" ; -lin tidewater_PN = mkPN "Tidewater" ; -lin tidworth_PN = mkPN "Tidworth"; -- from DictEng -lin tien_pao_PN = mkPN "Tien pao" ; -lin tien_shan_PN = mkPN "Tien Shan" ; -lin tientsin_PN = mkPN "Tientsin"; -- from DictEng -lin tiepolo_PN = mkPN "Tiepolo" ; -lin tierra_del_fuego_PN = mkPN "Tierra del Fuego" ; -lin tietze's_syndrome_PN = mkPN "Tietze's syndrome" ; -lin tiffany_PN = mkPN "Tiffany" ; -lin tiffany_glass_PN = mkPN "Tiffany glass" ; -lin tigris_PN = mkPN "Tigris" ; -lin tijuana_PN = mkPN "Tijuana" ; -lin tilapia_PN = mkPN "Tilapia" ; -lin tilburg_PN = mkPN "Tilburg"; -- from DictEng -lin tilbury_PN = mkPN "Tilbury"; -- from DictEng -lin tilden_PN = mkPN "Tilden" ; -lin tilia_PN = mkPN "Tilia" ; -lin tiliaceae_PN = mkPN "Tiliaceae" ; -lin tiliomycetes_PN = mkPN "Tiliomycetes" ; -lin tillandsia_PN = mkPN "Tillandsia" ; -lin tilletia_PN = mkPN "Tilletia" ; -lin tilletiaceae_PN = mkPN "Tilletiaceae" ; -lin tillich_PN = mkPN "Tillich" ; -lin tim_PN = mkPN "Tim"; -- from DictEng -lin timalia_PN = mkPN "Timalia" ; -lin timaliidae_PN = mkPN "Timaliidae" ; -lin timbuktu_PN = mkPN "Timbuktu" ; -lin times_square_PN = mkPN "Times Square" ; -lin timgad_PN = mkPN "Timgad" ; -lin timimoun_PN = mkPN "Timimoun" ; -lin timmy_PN = mkPN "Timmy"; -- from DictEng -lin timor_PN = mkPN "Timor" ; -lin timor_sea_PN = mkPN "Timor Sea" ; -lin timorese_A = mkA "Timorese" ; -lin timorese_PN = mkPN "Timorese" ; -lin timothy_PN = mkPN "Timothy"; -- from DictEng -lin tin_pan_alley_PN = mkPN "Tin Pan Alley" ; -lin tina_PN = mkPN "Tina"; -- from DictEng -lin tinamidae_PN = mkPN "Tinamidae" ; -lin tinamiformes_PN = mkPN "Tinamiformes" ; -lin tinbergen_PN = mkPN "Tinbergen" ; -lin tinca_PN = mkPN "Tinca" ; -lin tinea_PN = mkPN "Tinea" ; -lin tineidae_PN = mkPN "Tineidae" ; -lin tineoidea_PN = mkPN "Tineoidea" ; -lin tineola_PN = mkPN "Tineola" ; -lin tingidae_PN = mkPN "Tingidae" ; -lin tintoretto_PN = mkPN "Tintoretto" ; -lin tipperary_PN = mkPN "Tipperary"; -- from DictEng -lin tipuana_PN = mkPN "Tipuana" ; -lin tipulidae_PN = mkPN "Tipulidae" ; -lin tirana_PN = mkPN "Tirana" ; -lin tiresias_PN = mkPN "Tiresias" ; -lin tirich_mir_PN = mkPN "Tirich Mir" ; -lin tirso_de_molina_PN = mkPN "Tirso de Molina" ; -lin tishah_b'av_PN = mkPN "Tishah b'Av" ; -lin tishri_PN = mkPN "Tishri" ; -lin tisiphone_PN = mkPN "Tisiphone" ; -lin titan_PN = mkPN "Titan" ; -lin titaness_PN = mkPN "Titaness" ; -lin titania_PN = mkPN "Titania" ; -lin titanosauridae_PN = mkPN "Titanosauridae" ; -lin titanosaurus_PN = mkPN "Titanosaurus" ; -lin titian_PN = mkPN "Titian" ; -lin tito_PN = mkPN "Tito" ; -lin titus_PN = mkPN "Titus" ; -lin tiu_PN = mkPN "Tiu" ; -lin tiverton_PN = mkPN "Tiverton"; -- from DictEng -lin tivoli_PN = mkPN "Tivoli" ; -lin tlingit_PN = mkPN "Tlingit" ; -lin tobago_PN = mkPN "Tobago"; -- from DictEng -lin tobagonian_A = compoundA (mkA "tobagonian"); -- from DictEng -lin tobagonian_PN = mkPN "Tobagonian" ; -lin tobey_PN = mkPN "Tobey" ; -lin tobin_PN = mkPN "Tobin" ; -lin tobit_PN = mkPN "Tobit" ; -lin toby_PN = mkPN "Toby"; -- from DictEng -lin tocantins_PN = mkPN "Tocantins" ; -lin tocharian_PN = mkPN "Tocharian" ; -lin tocqueville_PN = mkPN "Tocqueville" ; -lin toda_PN = mkPN "Toda" ; -lin todd_PN = mkPN "Todd" ; -lin todea_PN = mkPN "Todea" ; -lin todidae_PN = mkPN "Todidae" ; -lin todmorden_PN = mkPN "Todmorden"; -- from DictEng -lin todus_PN = mkPN "Todus" ; -lin tofieldia_PN = mkPN "Tofieldia" ; -lin togaviridae_PN = mkPN "Togaviridae" ; -lin togo_PN = mkPN "Togo"; -- from DictEng -lin togo_franc_PN = mkPN "Togo franc" ; -lin togolese_A = compoundA (mkA "togolese"); -- from DictEng -lin togolese_PN = mkPN "Togolese" ; -lin tojo_PN = mkPN "Tojo" ; -lin tokay_PN = mkPN "Tokay" ; -lin toklas_PN = mkPN "Toklas" ; -lin tokyo_PN = mkPN "Tokyo"; -- from DictEng -lin toledo_PN = mkPN "Toledo" ; -lin tolkien_PN = mkPN "Tolkien" ; -lin tolmiea_PN = mkPN "Tolmiea" ; -lin tolstoy_PN = mkPN "Tolstoy" ; -lin toltec_PN = mkPN "Toltec" ; -lin tolypeutes_PN = mkPN "Tolypeutes" ; -lin tom_PN = mkPN "Tom"; -- from DictEng -lin tom_sawyer_PN = mkPN "Tom Sawyer" ; -lin tom_thumb_PN = mkPN "Tom Thumb" ; -lin tom_and_jerry_PN = mkPN "Tom and Jerry" ; -lin tombaugh_PN = mkPN "Tombaugh" ; -lin tombigbee_PN = mkPN "Tombigbee" ; -lin tomistoma_PN = mkPN "Tomistoma" ; -lin tommy_PN = mkPN "Tommy"; -- from DictEng -lin tommy_gun_PN = mkPN "Tommy gun" ; -lin tonbridge_PN = mkPN "Tonbridge"; -- from DictEng -lin tonegawa_susumu_PN = mkPN "Tonegawa Susumu" ; -lin tonga_PN = mkPN "Tonga"; -- from DictEng -lin tongan_A = compoundA (mkA "tongan"); -- from DictEng -lin tongan_PN = mkPN "Tongan" ; -lin tongan_monetary_unit_PN = mkPN "Tongan monetary unit" ; -lin tony_PN = mkPN "Tony"; -- from DictEng -lin tonyrefail_PN = mkPN "Tonyrefail"; -- from DictEng -lin toona_PN = mkPN "Toona" ; -lin topeka_PN = mkPN "Topeka" ; -lin torah_PN = mkPN "Torah" ; -lin torbay_PN = mkPN "Torbay"; -- from DictEng -lin torino_PN = mkPN "Torino"; -- from DictEng -lin toronto_PN = mkPN "Toronto"; -- from DictEng -lin torpedinidae_PN = mkPN "Torpedinidae" ; -lin torpediniformes_PN = mkPN "Torpediniformes" ; -lin torquemada_PN = mkPN "Torquemada" ; -lin torreon_PN = mkPN "Torreon" ; -lin torres_strait_PN = mkPN "Torres Strait" ; -lin torrey_pine_PN = mkPN "Torrey pine" ; -lin torreya_PN = mkPN "Torreya" ; -lin torricelli_PN = mkPN "Torricelli" ; -lin torrid_zone_PN = mkPN "Torrid Zone" ; -lin tortricidae_PN = mkPN "Tortricidae" ; -lin tory_PN = mkPN "Tory" ; -lin toscanini_PN = mkPN "Toscanini" ; -lin tosk_PN = mkPN "Tosk" ; -lin totnes_PN = mkPN "Totnes"; -- from DictEng -lin toulon_PN = mkPN "Toulon"; -- from DictEng -lin toulouse_PN = mkPN "Toulouse"; -- from DictEng -lin toulouse_lautrec_PN = mkPN "Toulouse Lautrec" ; -lin tour_de_france_PN = mkPN "Tour de France" ; -lin tourette_PN = mkPN "Tourette" ; -lin tourette's_syndrome_PN = mkPN "Tourette's syndrome" ; -lin tours_PN = mkPN "Tours"; -- from DictEng -lin tower_hamlets_PN = mkPN "Tower hamlets"; -- from DictEng -lin tower_of_babel_PN = mkPN "Tower of Babel" ; -lin tower_of_london_PN = mkPN "Tower of London" ; -lin tower_of_pharos_PN = mkPN "Tower of Pharos" ; -lin town_PN = mkPN "Town" ; -lin townes_PN = mkPN "Townes" ; -lin townsend_PN = mkPN "Townsend" ; -lin townsendia_PN = mkPN "Townsendia" ; -lin toxicodendron_PN = mkPN "Toxicodendron" ; -lin toxostoma_PN = mkPN "Toxostoma" ; -lin toxotes_PN = mkPN "Toxotes" ; -lin toxotidae_PN = mkPN "Toxotidae" ; -lin toynbee_PN = mkPN "Toynbee" ; -lin toyohashi_PN = mkPN "Toyohashi" ; -lin toyonaki_PN = mkPN "Toyonaki" ; -lin toyota_PN = mkPN "Toyota" ; -lin trachelospermum_PN = mkPN "Trachelospermum" ; -lin tracheophyta_PN = mkPN "Tracheophyta" ; -lin trachinotus_PN = mkPN "Trachinotus" ; -lin trachipteridae_PN = mkPN "Trachipteridae" ; -lin trachipterus_PN = mkPN "Trachipterus" ; -lin trachurus_PN = mkPN "Trachurus" ; -lin tractarian_PN = mkPN "Tractarian" ; -lin tractarianism_PN = mkPN "Tractarianism" ; -lin tracy_PN = mkPN "Tracy"; -- from DictEng -lin tradescant_PN = mkPN "Tradescant" ; -lin tradescantia_PN = mkPN "Tradescantia" ; -lin trafalgar_PN = mkPN "Trafalgar" ; -lin trafalgar_square_PN = mkPN "Trafalgar Square" ; -lin tragelaphus_PN = mkPN "Tragelaphus" ; -lin tragopogon_PN = mkPN "Tragopogon" ; -lin tragulidae_PN = mkPN "Tragulidae" ; -lin tragulus_PN = mkPN "Tragulus" ; -lin trajan_PN = mkPN "Trajan" ; -lin tralee_PN = mkPN "Tralee"; -- from DictEng -lin tranent_PN = mkPN "Tranent"; -- from DictEng -lin trans_PN = mkPN "Trans"; -- from DictEng -lin transcaucasia_PN = mkPN "Transcaucasia" ; -lin transfiguration_PN = mkPN "Transfiguration" ; -lin transportation_security_administration_PN = mkPN "Transportation Security Administration" ; -lin transvaal_PN = mkPN "Transvaal" ; -lin transylvania_PN = mkPN "Transylvania" ; -lin transylvanian_alps_PN = mkPN "Transylvanian Alps" ; -lin trapa_PN = mkPN "Trapa" ; -lin trapaceae_PN = mkPN "Trapaceae" ; -lin trapezium_PN = mkPN "Trapezium" ; -lin trappist_PN = mkPN "Trappist" ; -lin trasimeno_PN = mkPN "Trasimeno" ; -lin traubel_PN = mkPN "Traubel" ; -lin trautvetteria_PN = mkPN "Trautvetteria" ; -lin traverse_city_PN = mkPN "Traverse City" ; -lin treasury_PN = mkPN "Treasury" ; -lin treasury_bill_PN = mkPN "Treasury bill" ; -lin treasury_bond_PN = mkPN "Treasury bond" ; -lin treasury_note_PN = mkPN "Treasury note" ; -lin treaty_of_versailles_PN = mkPN "Treaty of Versailles" ; -lin tredegar_PN = mkPN "Tredegar"; -- from DictEng -lin tree_PN = mkPN "Tree" ; -lin trema_PN = mkPN "Trema" ; -lin trematoda_PN = mkPN "Trematoda" ; -lin tremella_PN = mkPN "Tremella" ; -lin tremella_foliacea_PN = mkPN "Tremella foliacea" ; -lin tremella_reticulata_PN = mkPN "Tremella reticulata" ; -lin tremellaceae_PN = mkPN "Tremellaceae" ; -lin tremellales_PN = mkPN "Tremellales" ; -lin trent_PN = mkPN "Trent" ; -lin trentino_alto_adige_PN = mkPN "Trentino Alto Adige" ; -lin trento_PN = mkPN "Trento" ; -lin trenton_PN = mkPN "Trenton" ; -lin treponemataceae_PN = mkPN "Treponemataceae" ; -lin trevelyan_PN = mkPN "Trevelyan" ; -lin trevino_PN = mkPN "Trevino" ; -lin trevithick_PN = mkPN "Trevithick" ; -lin trevor_PN = mkPN "Trevor"; -- from DictEng -lin triaenodon_PN = mkPN "Triaenodon" ; -lin triakidae_PN = mkPN "Triakidae" ; -lin trialeurodes_PN = mkPN "Trialeurodes" ; -lin triangulum_PN = mkPN "Triangulum" ; -lin triangulum_australe_PN = mkPN "Triangulum Australe" ; -lin triassic_A = mkA "Triassic" ; -lin triassic_PN = mkPN "Triassic" ; -lin triatoma_PN = mkPN "Triatoma" ; -lin tribes_of_israel_PN = mkPN "Tribes of Israel" ; -lin tribolium_PN = mkPN "Tribolium" ; -lin tribonema_PN = mkPN "Tribonema" ; -lin tribonemaceae_PN = mkPN "Tribonemaceae" ; -lin tribulus_PN = mkPN "Tribulus" ; -lin trichechidae_PN = mkPN "Trichechidae" ; -lin trichechus_PN = mkPN "Trichechus" ; -lin trichiuridae_PN = mkPN "Trichiuridae" ; -lin trichoceros_PN = mkPN "Trichoceros" ; -lin trichodontidae_PN = mkPN "Trichodontidae" ; -lin trichoglossus_PN = mkPN "Trichoglossus" ; -lin tricholoma_PN = mkPN "Tricholoma" ; -lin tricholoma_aurantium_PN = mkPN "Tricholoma aurantium" ; -lin tricholoma_pardinum_PN = mkPN "Tricholoma pardinum" ; -lin tricholoma_pessundatum_PN = mkPN "Tricholoma pessundatum" ; -lin tricholoma_sejunctum_PN = mkPN "Tricholoma sejunctum" ; -lin tricholoma_vaccinum_PN = mkPN "Tricholoma vaccinum" ; -lin tricholoma_venenata_PN = mkPN "Tricholoma venenata" ; -lin tricholomataceae_PN = mkPN "Tricholomataceae" ; -lin trichomanes_PN = mkPN "Trichomanes" ; -lin trichophaga_PN = mkPN "Trichophaga" ; -lin trichophyton_PN = mkPN "Trichophyton" ; -lin trichoptera_PN = mkPN "Trichoptera" ; -lin trichostema_PN = mkPN "Trichostema" ; -lin trichostigma_PN = mkPN "Trichostigma" ; -lin trichosurus_PN = mkPN "Trichosurus" ; -lin trichys_PN = mkPN "Trichys" ; -lin tridacna_PN = mkPN "Tridacna" ; -lin tridacnidae_PN = mkPN "Tridacnidae" ; -lin trieste_PN = mkPN "Trieste"; -- from DictEng -lin trifolium_PN = mkPN "Trifolium" ; -lin triga_PN = mkPN "Triga" ; -lin triglidae_PN = mkPN "Triglidae" ; -lin triglinae_PN = mkPN "Triglinae" ; -lin triglochin_PN = mkPN "Triglochin" ; -lin trigonella_PN = mkPN "Trigonella" ; -lin trilby_PN = mkPN "Trilby" ; -lin trilisa_PN = mkPN "Trilisa" ; -lin trilliaceae_PN = mkPN "Trilliaceae" ; -lin trilling_PN = mkPN "Trilling" ; -lin trimorphodon_PN = mkPN "Trimorphodon" ; -lin trimurti_PN = mkPN "Trimurti" ; -lin trinectes_PN = mkPN "Trinectes" ; -lin tring_PN = mkPN "Tring"; -- from DictEng -lin tringa_PN = mkPN "Tringa" ; -lin trinidad_PN = mkPN "Trinidad"; -- from DictEng -lin trinidad_and_tobago_PN = mkPN "Trinidad and Tobago" ; -lin trinidad_and_tobago_dollar_PN = mkPN "Trinidad and Tobago dollar" ; -lin trinidadian_A = compoundA (mkA "trinidadian"); -- from DictEng -lin trinidadian_PN = mkPN "Trinidadian" ; -lin trinitarian_PN = mkPN "Trinitarian" ; -lin trinitarianism_PN = mkPN "Trinitarianism" ; -lin trinity_PN = mkPN "Trinity" ; -lin trinity_river_PN = mkPN "Trinity River" ; -lin trinity_sunday_PN = mkPN "Trinity Sunday" ; -lin trionychidae_PN = mkPN "Trionychidae" ; -lin trionyx_PN = mkPN "Trionyx" ; -lin triopidae_PN = mkPN "Triopidae" ; -lin triops_PN = mkPN "Triops" ; -lin triostium_PN = mkPN "Triostium" ; -lin triple_frontier_PN = mkPN "Triple Frontier" ; -lin tripleurospermum_PN = mkPN "Tripleurospermum" ; -lin triplochiton_PN = mkPN "Triplochiton" ; -lin tripoli_PN = mkPN "Tripoli" ; -lin tristan_PN = mkPN "Tristan" ; -lin triticum_PN = mkPN "Triticum" ; -lin triton_PN = mkPN "Triton" ; -lin triturus_PN = mkPN "Triturus" ; -lin trochilidae_PN = mkPN "Trochilidae" ; -lin trogium_PN = mkPN "Trogium" ; -lin troglodytes_PN = mkPN "Troglodytes" ; -lin troglodytidae_PN = mkPN "Troglodytidae" ; -lin trogonidae_PN = mkPN "Trogonidae" ; -lin trogoniformes_PN = mkPN "Trogoniformes" ; -lin trojan_A = compoundA (mkA "trojan"); -- from DictEng -lin trojan_PN = mkPN "Trojan" ; -lin trojan_horse_PN = mkPN "Trojan Horse" ; -lin trojan_war_PN = mkPN "Trojan War" ; -lin trollius_PN = mkPN "Trollius" ; -lin trollope_PN = mkPN "Trollope" ; -lin trombicula_PN = mkPN "Trombicula" ; -lin trombiculidae_PN = mkPN "Trombiculidae" ; -lin trombidiidae_PN = mkPN "Trombidiidae" ; -lin trondheim_PN = mkPN "Trondheim" ; -lin trondheim_fjord_PN = mkPN "Trondheim Fjord" ; -lin troon_PN = mkPN "Troon"; -- from DictEng -lin tropaeolaceae_PN = mkPN "Tropaeolaceae" ; -lin tropaeolum_PN = mkPN "Tropaeolum" ; -lin tropic_of_cancer_PN = mkPN "Tropic of Cancer" ; -lin tropic_of_capricorn_PN = mkPN "Tropic of Capricorn" ; -lin tropidoclonion_PN = mkPN "Tropidoclonion" ; -lin trotsky_PN = mkPN "Trotsky" ; -lin trotskyism_PN = mkPN "Trotskyism" ; -lin trotskyite_PN = mkPN "Trotskyite" ; -lin trowbridge_PN = mkPN "Trowbridge"; -- from DictEng -lin troy_PN = mkPN "Troy" ; -lin truffaut_PN = mkPN "Truffaut" ; -lin truman_PN = mkPN "Truman" ; -lin truman_doctrine_PN = mkPN "Truman doctrine" ; -lin trumbo_PN = mkPN "Trumbo" ; -lin trumbull_PN = mkPN "Trumbull" ; -lin truncocolumella_PN = mkPN "Truncocolumella" ; -lin truncocolumella_citrina_PN = mkPN "Truncocolumella citrina" ; -lin truro_PN = mkPN "Truro"; -- from DictEng -lin trusteeship_council_PN = mkPN "Trusteeship Council" ; -lin truth_PN = mkPN "Truth" ; -lin trypetidae_PN = mkPN "Trypetidae" ; -lin tsimshian_PN = mkPN "Tsimshian" ; -lin tsinan_PN = mkPN "Tsinan"; -- from DictEng -lin tsingtao_PN = mkPN "Tsingtao"; -- from DictEng -lin tsitsihar_PN = mkPN "Tsitsihar"; -- from DictEng -lin tsouic_PN = mkPN "Tsouic" ; -lin tsuga_PN = mkPN "Tsuga" ; -lin tsushima_PN = mkPN "Tsushima" ; -lin tswana_PN = mkPN "Tswana" ; -lin tuamotu_archipelago_PN = mkPN "Tuamotu Archipelago" ; -lin tuareg_PN = mkPN "Tuareg" ; -lin tuatha_de_danann_PN = mkPN "Tuatha De Danann" ; -lin tuber_PN = mkPN "Tuber" ; -lin tuberaceae_PN = mkPN "Tuberaceae" ; -lin tuberales_PN = mkPN "Tuberales" ; -lin tubercularia_PN = mkPN "Tubercularia" ; -lin tuberculariaceae_PN = mkPN "Tuberculariaceae" ; -lin tubman_PN = mkPN "Tubman" ; -lin tubuai_islands_PN = mkPN "Tubuai Islands" ; -lin tubulidentata_PN = mkPN "Tubulidentata" ; -lin tucana_PN = mkPN "Tucana" ; -lin tuchman_PN = mkPN "Tuchman" ; -lin tucker_PN = mkPN "Tucker" ; -lin tucson_PN = mkPN "Tucson" ; -lin tudor_A = mkA "Tudor" ; -lin tudor_PN = mkPN "Tudor" ; -lin tudor_arch_PN = mkPN "Tudor arch" ; -lin tudor_architecture_PN = mkPN "Tudor architecture" ; -lin tues_PN = mkPN "Tues"; -- from DictEng -lin tuesday_PN = mkPN "Tuesday"; -- from DictEng -lin tugela_PN = mkPN "Tugela" ; -lin tuileries_PN = mkPN "Tuileries" ; -lin tulipa_PN = mkPN "Tulipa" ; -lin tulipa_gesneriana_PN = mkPN "Tulipa gesneriana" ; -lin tullibody_PN = mkPN "Tullibody"; -- from DictEng -lin tulostoma_PN = mkPN "Tulostoma" ; -lin tulostomaceae_PN = mkPN "Tulostomaceae" ; -lin tulostomatales_PN = mkPN "Tulostomatales" ; -lin tulsa_PN = mkPN "Tulsa" ; -lin tulu_PN = mkPN "Tulu" ; -lin tums_PN = mkPN "Tums" ; -lin tunbridge_wells_PN = mkPN "Tunbridge wells"; -- from DictEng -lin tunga_PN = mkPN "Tunga" ; -lin tungus_PN = mkPN "Tungus" ; -lin tungusic_PN = mkPN "Tungusic" ; -lin tunguska_PN = mkPN "Tunguska" ; -lin tunis_PN = mkPN "Tunis"; -- from DictEng -lin tunisia_PN = mkPN "Tunisia"; -- from DictEng -lin tunisian_A = compoundA (mkA "tunisian"); -- from DictEng -lin tunisian_PN = mkPN "Tunisian" ; -lin tunisian_dinar_PN = mkPN "Tunisian dinar" ; -lin tunisian_dirham_PN = mkPN "Tunisian dirham" ; -lin tunisian_monetary_unit_PN = mkPN "Tunisian monetary unit" ; -lin tunney_PN = mkPN "Tunney" ; -lin tupac_amaru_revolutionary_movement_PN = mkPN "Tupac Amaru Revolutionary Movement" ; -lin tupac_katari_guerrilla_army_PN = mkPN "Tupac Katari Guerrilla Army" ; -lin tupaia_PN = mkPN "Tupaia" ; -lin tupaiidae_PN = mkPN "Tupaiidae" ; -lin tupelo_PN = mkPN "Tupelo" ; -lin tupi_PN = mkPN "Tupi" ; -lin tupi_guarani_PN = mkPN "Tupi Guarani" ; -lin tupinambis_PN = mkPN "Tupinambis" ; -lin tupungatito_PN = mkPN "Tupungatito" ; -lin tupungato_PN = mkPN "Tupungato" ; -lin turbellaria_PN = mkPN "Turbellaria" ; -lin turdidae_PN = mkPN "Turdidae" ; -lin turdinae_PN = mkPN "Turdinae" ; -lin turdus_PN = mkPN "Turdus" ; -lin turfan_PN = mkPN "Turfan" ; -lin turgenev_PN = mkPN "Turgenev" ; -lin turgot_PN = mkPN "Turgot" ; -lin turin_PN = mkPN "Turin"; -- from DictEng -lin turing_PN = mkPN "Turing" ; -lin turing_machine_PN = mkPN "Turing machine" ; -lin turk_PN = mkPN "Turk" ; -lin turk's_cap_PN = mkPN "Turk's cap" ; -lin turk's_head_PN = mkPN "Turk's head" ; -lin turkey_PN = mkPN "Turkey"; -- from DictEng -lin turkey_red_PN = mkPN "Turkey red" ; -lin turki_PN = mkPN "Turki" ; -lin turkic_A = mkA "Turkic" ; -lin turkic_speaking_A = compoundA (mkA "Turkic speaking") ; -lin turkish_A = compoundA (mkA "Turkish"); -- from DictEng -lin turkish_PN = mkPN "Turkish" ; -lin turkish_delight_PN = mkPN "Turkish Delight" ; -lin turkish_hizballah_PN = mkPN "Turkish Hizballah" ; -lin turkish_bath_PN = mkPN "Turkish bath" ; -lin turkish_coffee_PN = mkPN "Turkish coffee" ; -lin turkish_monetary_unit_PN = mkPN "Turkish monetary unit" ; -lin turkish_tobacco_PN = mkPN "Turkish tobacco" ; -lin turkish_towel_PN = mkPN "Turkish towel" ; -lin turkistan_PN = mkPN "Turkistan" ; -lin turkmen_A = mkA "Turkmen" ; -lin turkmen_PN = mkPN "Turkmen" ; -lin turkmen_monetary_unit_PN = mkPN "Turkmen monetary unit" ; -lin turkmenistan_PN = mkPN "Turkmenistan" ; -lin turkoman_PN = mkPN "Turkoman" ; -lin turku_PN = mkPN "Turku"; -- from DictEng -lin turner_PN = mkPN "Turner" ; -lin turner's_syndrome_PN = mkPN "Turner's syndrome" ; -lin turnicidae_PN = mkPN "Turnicidae" ; -lin turnix_PN = mkPN "Turnix" ; -lin turpin_PN = mkPN "Turpin" ; -lin turritis_PN = mkPN "Turritis" ; -lin tursiops_PN = mkPN "Tursiops" ; -lin tuscaloosa_PN = mkPN "Tuscaloosa" ; -lin tuscan_A = mkA "Tuscan" ; -lin tuscan_PN = mkPN "Tuscan" ; -lin tuscan_order_PN = mkPN "Tuscan order" ; -lin tuscany_PN = mkPN "Tuscany" ; -lin tuscarora_PN = mkPN "Tuscarora" ; -lin tuskegee_PN = mkPN "Tuskegee" ; -lin tussaud_PN = mkPN "Tussaud" ; -lin tussilago_PN = mkPN "Tussilago" ; -lin tutankhamen_PN = mkPN "Tutankhamen" ; -lin tutelo_PN = mkPN "Tutelo" ; -lin tutsi_PN = mkPN "Tutsi" ; -lin tutu_PN = mkPN "Tutu" ; -lin tuvalu_PN = mkPN "Tuvalu" ; -lin tuvalu_dollar_PN = mkPN "Tuvalu dollar" ; -lin tuxtla_gutierrez_PN = mkPN "Tuxtla Gutierrez" ; -lin tweedledum_and_tweedledee_PN = mkPN "Tweedledum and Tweedledee" ; -lin twelfth_night_PN = mkPN "Twelfth - night"; -- from DictEng -lin twelfthtide_PN = mkPN "Twelfthtide" ; -lin twin_PN = mkPN "Twin" ; -lin twin_cities_PN = mkPN "Twin Cities" ; -lin twin_falls_PN = mkPN "Twin Falls" ; -lin twinkie_PN = mkPN "Twinkie" ; -lin two_kettle_PN = mkPN "Two Kettle" ; -lin tyche_PN = mkPN "Tyche" ; -lin tyke_PN = mkPN "Tyke" ; -lin tylenchidae_PN = mkPN "Tylenchidae" ; -lin tylenchus_PN = mkPN "Tylenchus" ; -lin tyler_PN = mkPN "Tyler" ; -lin tympanuchus_PN = mkPN "Tympanuchus" ; -lin tyndale_PN = mkPN "Tyndale" ; -lin tyndall_PN = mkPN "Tyndall" ; -lin tyndall_effect_PN = mkPN "Tyndall effect" ; -lin tyne_PN = mkPN "Tyne"; -- from DictEng -lin tynemouth_PN = mkPN "Tynemouth"; -- from DictEng -lin typha_PN = mkPN "Typha" ; -lin typhaceae_PN = mkPN "Typhaceae" ; -lin typhlopidae_PN = mkPN "Typhlopidae" ; -lin typhoeus_PN = mkPN "Typhoeus" ; -lin typhon_PN = mkPN "Typhon" ; -lin tyr_PN = mkPN "Tyr" ; -lin tyranni_PN = mkPN "Tyranni" ; -lin tyrannidae_PN = mkPN "Tyrannidae" ; -lin tyrannus_PN = mkPN "Tyrannus" ; -lin tyrian_purple_PN = mkPN "Tyrian purple" ; -lin tyrol_PN = mkPN "Tyrol" ; -lin tyrolean_A = mkA "Tyrolean" ; -lin tyrolean_PN = mkPN "Tyrolean" ; -lin tyrolean_alps_PN = mkPN "Tyrolean Alps" ; -lin tyrone_PN = mkPN "Tyrone"; -- from DictEng -lin tyrrhenian_sea_PN = mkPN "Tyrrhenian Sea" ; -lin tyson_PN = mkPN "Tyson" ; -lin tyto_PN = mkPN "Tyto" ; -lin tytonidae_PN = mkPN "Tytonidae" ; -lin tzara_PN = mkPN "Tzara" ; -lin tzupo_PN = mkPN "Tzupo"; -- from DictEng -lin u_PN = mkPN "U" ; -lin u_shaped_A = compoundA (mkA "U shaped") ; -lin unix_PN = mkPN "UNIX" ; -lin unix_guru_PN = mkPN "UNIX guru" ; -lin url_PN = mkPN "URL" ; -lin uss_cole_PN = mkPN "USS Cole" ; -lin ubykh_PN = mkPN "Ubykh" ; -lin uca_PN = mkPN "Uca" ; -lin uddingston_PN = mkPN "Uddingston"; -- from DictEng -lin udi_PN = mkPN "Udi"; -- from DictEng -lin udine_PN = mkPN "Udine"; -- from DictEng -lin udmurt_PN = mkPN "Udmurt" ; -lin ufa_PN = mkPN "Ufa"; -- from DictEng -lin uganda_PN = mkPN "Uganda"; -- from DictEng -lin ugandan_A = compoundA (mkA "ugandan"); -- from DictEng -lin ugandan_PN = mkPN "Ugandan" ; -lin ugandan_monetary_unit_PN = mkPN "Ugandan monetary unit" ; -lin ugandan_shilling_PN = mkPN "Ugandan shilling" ; -lin ugaritic_PN = mkPN "Ugaritic" ; -lin ugric_PN = mkPN "Ugric" ; -lin uhland_PN = mkPN "Uhland" ; -lin uighur_PN = mkPN "Uighur" ; -lin uintatheriidae_PN = mkPN "Uintatheriidae" ; -lin uintatherium_PN = mkPN "Uintatherium" ; -lin uk_PN = mkPN "UK"; -- from DictEng -lin ukraine_PN = mkPN "Ukraine" ; -lin ukrainian_A = mkA "Ukrainian" ; -lin ukrainian_PN = mkPN "Ukrainian" ; -lin ukranian_PN = mkPN "Ukranian" ; -lin ukranian_monetary_unit_PN = mkPN "Ukranian monetary unit" ; -lin ulan_bator_PN = mkPN "Ulan Bator" ; -lin ulanova_PN = mkPN "Ulanova" ; -lin ulex_PN = mkPN "Ulex" ; -lin ulfilas_PN = mkPN "Ulfilas" ; -lin ull_PN = mkPN "Ull" ; -lin ulmaceae_PN = mkPN "Ulmaceae" ; -lin ulmus_PN = mkPN "Ulmus" ; -lin ulster_PN = mkPN "Ulster"; -- from DictEng -lin ulster_defence_association_PN = mkPN "Ulster Defence Association" ; -lin ultrasuede_PN = mkPN "Ultrasuede" ; -lin ulugh_muztagh_PN = mkPN "Ulugh Muztagh" ; -lin ulva_PN = mkPN "Ulva" ; -lin ulvaceae_PN = mkPN "Ulvaceae" ; -lin ulvales_PN = mkPN "Ulvales" ; -lin ulverston_PN = mkPN "Ulverston"; -- from DictEng -lin ulvophyceae_PN = mkPN "Ulvophyceae" ; -lin ulysses_PN = mkPN "Ulysses" ; -lin uma_PN = mkPN "Uma" ; -lin umayyad_PN = mkPN "Umayyad" ; -lin umbellales_PN = mkPN "Umbellales" ; -lin umbelliferae_PN = mkPN "Umbelliferae" ; -lin umbellularia_PN = mkPN "Umbellularia" ; -lin umbria_PN = mkPN "Umbria" ; -lin umbrian_PN = mkPN "Umbrian" ; -lin umbrina_PN = mkPN "Umbrina" ; -lin umbundu_PN = mkPN "Umbundu" ; -lin umma_tameer_e_nau_PN = mkPN "Umma Tameer e Nau" ; -lin ummah_PN = mkPN "Ummah" ; -lin uncle_remus_PN = mkPN "Uncle Remus" ; -lin uncle_sam_PN = mkPN "Uncle Sam" ; -lin uncle_tom_PN = mkPN "Uncle Tom" ; -lin uncompahgre_peak_PN = mkPN "Uncompahgre Peak" ; -lin underground_railroad_PN = mkPN "Underground Railroad" ; -lin undset_PN = mkPN "Undset" ; -lin unesco_PN = mkPN "Unesco"; -- from DictEng -lin unguiculata_PN = mkPN "Unguiculata" ; -lin ungulata_PN = mkPN "Ungulata" ; -lin uniat_PN = mkPN "Uniat" ; -lin uniat_church_PN = mkPN "Uniat Church" ; -lin uniate_A = mkA "Uniate" ; -lin unicef_PN = mkPN "Unicef"; -- from DictEng -lin unification_church_PN = mkPN "Unification Church" ; -lin unio_PN = mkPN "Unio" ; -lin union_PN = mkPN "Union" ; -lin union_army_PN = mkPN "Union Army" ; -lin union_jack_PN = mkPN "Union Jack" ; -lin unionidae_PN = mkPN "Unionidae" ; -lin unitarian_A = compoundA (mkA "unitarian"); -- from DictEng -lin unitarian_PN = mkPN "Unitarian" ; -lin unitarian_church_PN = mkPN "Unitarian Church" ; -lin unitarianism_PN = mkPN "Unitarianism" ; -lin united_arab_emirate_dirham_PN = mkPN "United Arab Emirate dirham" ; -lin united_arab_emirate_monetary_unit_PN = mkPN "United Arab Emirate monetary unit" ; -lin united_arab_emirates_PN = mkPN "United Arab Emirates" ; -lin united_church_of_christ_PN = mkPN "United Church of Christ" ; -lin united_kingdom_PN = mkPN "United Kingdom" ; -lin united_methodist_church_PN = mkPN "United Methodist Church" ; -lin united_mine_workers_of_america_PN = mkPN "United Mine Workers of America" ; -lin united_nations_PN = mkPN "United Nations" ; -lin united_nations_children's_fund_PN = mkPN "United Nations Children's Fund" ; -lin united_nations_crime_prevention_and_criminal_justice_PN = mkPN "United Nations Crime Prevention and Criminal Justice" ; -lin united_nations_day_PN = mkPN "United Nations Day" ; -lin united_nations_educational_scientific_and_cultural_organization_PN = mkPN "United Nations Educational Scientific and Cultural Organization" ; -lin united_nations_office_for_drug_control_and_crime_prevention_PN = mkPN "United Nations Office for Drug Control and Crime Prevention" ; -lin united_nations_secretariat_PN = mkPN "United Nations Secretariat" ; -lin united_nations_agency_PN = mkPN "United Nations agency" ; -lin united_self_defense_force_of_colombia_PN = mkPN "United Self Defense Force of Colombia" ; -lin united_states_PN = mkPN "United States" ; -lin united_states_air_force_PN = mkPN "United States Air Force" ; -lin united_states_air_force_academy_PN = mkPN "United States Air Force Academy" ; -lin united_states_army_PN = mkPN "United States Army" ; -lin united_states_army_criminal_investigation_laboratory_PN = mkPN "United States Army Criminal Investigation Laboratory" ; -lin united_states_army_rangers_PN = mkPN "United States Army Rangers" ; -lin united_states_border_patrol_PN = mkPN "United States Border Patrol" ; -lin united_states_cabinet_PN = mkPN "United States Cabinet" ; -lin united_states_coast_guard_PN = mkPN "United States Coast Guard" ; -lin united_states_code_PN = mkPN "United States Code" ; -lin united_states_constitution_PN = mkPN "United States Constitution" ; -lin united_states_customary_system_PN = mkPN "United States Customary System" ; -lin united_states_fish_and_wildlife_service_PN = mkPN "United States Fish and Wildlife Service" ; -lin united_states_government_printing_office_PN = mkPN "United States Government Printing Office" ; -lin united_states_house_of_representatives_PN = mkPN "United States House of Representatives" ; -lin united_states_marine_corps_PN = mkPN "United States Marine Corps" ; -lin united_states_marshals_service_PN = mkPN "United States Marshals Service" ; -lin united_states_military_academy_PN = mkPN "United States Military Academy" ; -lin united_states_mint_PN = mkPN "United States Mint" ; -lin united_states_naval_academy_PN = mkPN "United States Naval Academy" ; -lin united_states_navy_PN = mkPN "United States Navy" ; -lin united_states_post_office_PN = mkPN "United States Post Office" ; -lin united_states_postal_inspection_service_PN = mkPN "United States Postal Inspection Service" ; -lin united_states_postal_service_PN = mkPN "United States Postal Service" ; -lin united_states_public_health_service_PN = mkPN "United States Public Health Service" ; -lin united_states_secret_service_PN = mkPN "United States Secret Service" ; -lin united_states_senate_PN = mkPN "United States Senate" ; -lin united_states_trade_representative_PN = mkPN "United States Trade Representative" ; -lin united_states_virgin_islands_PN = mkPN "United States Virgin Islands" ; -lin united_states_dollar_PN = mkPN "United States dollar" ; -lin united_states_dry_unit_PN = mkPN "United States dry unit" ; -lin united_states_government_PN = mkPN "United States government" ; -lin united_states_intelligence_agency_PN = mkPN "United States intelligence agency" ; -lin united_states_liquid_unit_PN = mkPN "United States liquid unit" ; -lin united_states_waters_PN = mkPN "United States waters" ; -lin univ_PN = mkPN "Univ"; -- from DictEng -lin university_of_california_at_berkeley_PN = mkPN "University of California at Berkeley" ; -lin university_of_chicago_PN = mkPN "University of Chicago" ; -lin university_of_michigan_PN = mkPN "University of Michigan" ; -lin university_of_nebraska_PN = mkPN "University of Nebraska" ; -lin university_of_north_carolina_PN = mkPN "University of North Carolina" ; -lin university_of_pennsylvania_PN = mkPN "University of Pennsylvania" ; -lin university_of_pittsburgh_PN = mkPN "University of Pittsburgh" ; -lin university_of_sussex_PN = mkPN "University of Sussex" ; -lin university_of_texas_PN = mkPN "University of Texas" ; -lin university_of_vermont_PN = mkPN "University of Vermont" ; -lin university_of_washington_PN = mkPN "University of Washington" ; -lin university_of_west_virginia_PN = mkPN "University of West Virginia" ; -lin university_of_wisconsin_PN = mkPN "University of Wisconsin" ; -lin unknown_soldier_PN = mkPN "Unknown Soldier" ; -lin untermeyer_PN = mkPN "Untermeyer" ; -lin up_holland_PN = mkPN "Up holland"; -- from DictEng -lin upanishad_PN = mkPN "Upanishad" ; -lin updike_PN = mkPN "Updike" ; -lin upjohn_PN = mkPN "Upjohn" ; -lin upper_egypt_PN = mkPN "Upper Egypt" ; -lin upper_paleolithic_PN = mkPN "Upper Paleolithic" ; -lin upper_peninsula_PN = mkPN "Upper Peninsula" ; -lin uppsala_PN = mkPN "Uppsala" ; -lin upton_PN = mkPN "Upton"; -- from DictEng -lin upupa_PN = mkPN "Upupa" ; -lin upupidae_PN = mkPN "Upupidae" ; -lin ur_PN = mkPN "Ur" ; -lin ural_altaic_PN = mkPN "Ural Altaic" ; -lin uralic_PN = mkPN "Uralic" ; -lin urals_PN = mkPN "Urals" ; -lin urania_PN = mkPN "Urania" ; -lin uranoscopidae_PN = mkPN "Uranoscopidae" ; -lin uranus_PN = mkPN "Uranus"; -- from DictEng -lin urban_ii_PN = mkPN "Urban II" ; -lin urban_v_PN = mkPN "Urban V" ; -lin urban_vi_PN = mkPN "Urban VI" ; -lin urban_viii_PN = mkPN "Urban VIII" ; -lin urbana_PN = mkPN "Urbana" ; -lin urd_PN = mkPN "Urd" ; -lin urdu_PN = mkPN "Urdu" ; -lin uredinales_PN = mkPN "Uredinales" ; -lin urey_PN = mkPN "Urey" ; -lin urginea_PN = mkPN "Urginea" ; -lin uria_PN = mkPN "Uria" ; -lin uriah_PN = mkPN "Uriah" ; -lin urim_and_thummim_PN = mkPN "Urim and Thummim" ; -lin urmia_PN = mkPN "Urmia" ; -lin urnula_craterium_PN = mkPN "Urnula craterium" ; -lin urochordata_PN = mkPN "Urochordata" ; -lin urocyon_PN = mkPN "Urocyon" ; -lin urocystis_PN = mkPN "Urocystis" ; -lin urodella_PN = mkPN "Urodella" ; -lin urophycis_PN = mkPN "Urophycis" ; -lin uropsilus_PN = mkPN "Uropsilus" ; -lin urosaurus_PN = mkPN "Urosaurus" ; -lin ursidae_PN = mkPN "Ursidae" ; -lin ursula_PN = mkPN "Ursula"; -- from DictEng -lin ursus_PN = mkPN "Ursus" ; -lin urtica_PN = mkPN "Urtica" ; -lin urticaceae_PN = mkPN "Urticaceae" ; -lin urticales_PN = mkPN "Urticales" ; -lin urubupunga_PN = mkPN "Urubupunga" ; -lin uruguay_PN = mkPN "Uruguay"; -- from DictEng -lin uruguay_river_PN = mkPN "Uruguay River" ; -lin uruguay_potato_PN = mkPN "Uruguay potato" ; -lin uruguayan_A = compoundA (mkA "uruguayan"); -- from DictEng -lin uruguayan_PN = mkPN "Uruguayan" ; -lin uruguayan_monetary_unit_PN = mkPN "Uruguayan monetary unit" ; -lin uruguayan_peso_PN = mkPN "Uruguayan peso" ; -lin urumchi_PN = mkPN "Urumchi"; -- from DictEng -lin us_PN = mkPN "US"; -- from DictEng -lin usa_PN = mkPN "USA"; -- from DictEng -lin ushas_PN = mkPN "Ushas" ; -lin ushaw_moor_PN = mkPN "Ushaw moor"; -- from DictEng -lin usnea_PN = mkPN "Usnea" ; -lin usneaceae_PN = mkPN "Usneaceae" ; -lin ussher_PN = mkPN "Ussher" ; -lin ustilaginaceae_PN = mkPN "Ustilaginaceae" ; -lin ustilaginales_PN = mkPN "Ustilaginales" ; -lin ustilaginoidea_PN = mkPN "Ustilaginoidea" ; -lin ustilago_PN = mkPN "Ustilago" ; -lin ustinov_PN = mkPN "Ustinov" ; -lin usuli_PN = mkPN "Usuli" ; -lin uta_PN = mkPN "Uta" ; -lin utah_PN = mkPN "Utah"; -- from DictEng -lin utahan_PN = mkPN "Utahan" ; -lin ute_PN = mkPN "Ute" ; -lin utica_PN = mkPN "Utica" ; -lin utnapishtim_PN = mkPN "Utnapishtim" ; -lin uto_aztecan_PN = mkPN "Uto Aztecan" ; -lin utopia_PN = mkPN "Utopia" ; -lin utopian_PN = mkPN "Utopian" ; -lin utopianism_PN = mkPN "Utopianism" ; -lin utrecht_PN = mkPN "Utrecht"; -- from DictEng -lin utricularia_PN = mkPN "Utricularia" ; -lin utrillo_PN = mkPN "Utrillo" ; -lin uttar_pradesh_PN = mkPN "Uttar Pradesh" ; -lin uttoxeter_PN = mkPN "Uttoxeter"; -- from DictEng -lin utu_PN = mkPN "Utu" ; -lin uvularia_PN = mkPN "Uvularia" ; -lin uvulariaceae_PN = mkPN "Uvulariaceae" ; -lin uzbek_PN = mkPN "Uzbek" ; -lin uzbekistan_PN = mkPN "Uzbekistan" ; -lin uzbekistani_A = mkA "Uzbekistani" ; -lin uzbekistani_monetary_unit_PN = mkPN "Uzbekistani monetary unit" ; -lin uzi_PN = mkPN "Uzi" ; -lin v_PN = mkPN "V" ; -lin v_8_juice_PN = mkPN "V 8 juice" ; -lin v_e_day_PN = mkPN "V E Day" ; -lin v_j_day_PN = mkPN "V J Day" ; -lin v_day_PN = mkPN "V day" ; -lin vat_PN = mkPN "VAT" ; -lin vx_gas_PN = mkPN "VX gas" ; -lin v_neck_PN = mkPN "V neck" ; -lin v_sign_PN = mkPN "V sign" ; -lin vaccaria_PN = mkPN "Vaccaria" ; -lin vaccinium_PN = mkPN "Vaccinium" ; -lin vaduz_PN = mkPN "Vaduz" ; -lin vaishnava_PN = mkPN "Vaishnava" ; -lin vaishnavism_PN = mkPN "Vaishnavism" ; -lin vaisya_PN = mkPN "Vaisya" ; -lin vajra_PN = mkPN "Vajra" ; -lin valdez_PN = mkPN "Valdez" ; -lin valdosta_PN = mkPN "Valdosta" ; -lin valencia_PN = mkPN "Valencia"; -- from DictEng -lin valencia_orange_PN = mkPN "Valencia orange" ; -lin valenciennes_PN = mkPN "Valenciennes"; -- from DictEng -lin valentine_PN = mkPN "Valentine" ; -lin valentine_day_PN = mkPN "Valentine Day" ; -lin valeriana_PN = mkPN "Valeriana" ; -lin valerianaceae_PN = mkPN "Valerianaceae" ; -lin valerianella_PN = mkPN "Valerianella" ; -lin valhalla_PN = mkPN "Valhalla" ; -lin vali_PN = mkPN "Vali" ; -lin valkyrie_PN = mkPN "Valkyrie" ; -lin valladolid_PN = mkPN "Valladolid"; -- from DictEng -lin valle_d'aosta_PN = mkPN "Valle D'Aosta" ; -lin valletta_PN = mkPN "Valletta" ; -lin vallisneria_PN = mkPN "Vallisneria" ; -lin valmy_PN = mkPN "Valmy" ; -lin valois_PN = mkPN "Valois" ; -lin valparaiso_PN = mkPN "Valparaiso" ; -lin van_allen_PN = mkPN "Van Allen" ; -lin van_allen_belt_PN = mkPN "Van Allen belt" ; -lin van_buren_PN = mkPN "Van Buren" ; -lin van_doren_PN = mkPN "Van Doren" ; -lin van_vleck_PN = mkPN "Van Vleck" ; -lin van_de_graaff_PN = mkPN "Van de Graaff" ; -lin vanbrugh_PN = mkPN "Vanbrugh" ; -lin vancouver_PN = mkPN "Vancouver"; -- from DictEng -lin vancouver_island_PN = mkPN "Vancouver Island" ; -lin vandal_PN = mkPN "Vandal" ; -lin vanderbilt_PN = mkPN "Vanderbilt" ; -lin vandyke_PN = mkPN "Vandyke" ; -lin vandyke_brown_PN = mkPN "Vandyke brown" ; -lin vanellus_PN = mkPN "Vanellus" ; -lin vanessa_PN = mkPN "Vanessa"; -- from DictEng -lin vangueria_PN = mkPN "Vangueria" ; -lin vanir_PN = mkPN "Vanir" ; -lin vanua_levu_PN = mkPN "Vanua Levu" ; -lin vanuatu_PN = mkPN "Vanuatu" ; -lin vanzetti_PN = mkPN "Vanzetti" ; -lin varanasi_PN = mkPN "Varanasi"; -- from DictEng -lin varanidae_PN = mkPN "Varanidae" ; -lin varanus_PN = mkPN "Varanus" ; -lin varese_PN = mkPN "Varese" ; -lin vargas_PN = mkPN "Vargas" ; -lin vargas_llosa_PN = mkPN "Vargas Llosa" ; -lin varna_PN = mkPN "Varna" ; -lin varro_PN = mkPN "Varro" ; -lin varuna_PN = mkPN "Varuna" ; -lin vasarely_PN = mkPN "Vasarely" ; -lin vasari_PN = mkPN "Vasari" ; -lin vaseline_PN = mkPN "Vaseline" ; -lin vasteras_PN = mkPN "Vasteras"; -- from DictEng -lin vatican_PN = mkPN "Vatican" ; -lin vatican_city_PN = mkPN "Vatican City" ; -lin vatican_council_PN = mkPN "Vatican Council" ; -lin vaughan_PN = mkPN "Vaughan" ; -lin vaughan_williams_PN = mkPN "Vaughan Williams" ; -lin vaux_PN = mkPN "Vaux" ; -lin vayu_PN = mkPN "Vayu" ; -lin veadar_PN = mkPN "Veadar" ; -lin veblen_PN = mkPN "Veblen" ; -lin vedanga_PN = mkPN "Vedanga" ; -lin vedanta_PN = mkPN "Vedanta" ; -lin vedic_A = mkA "Vedic" ; -lin vedic_literature_PN = mkPN "Vedic literature" ; -lin vedism_PN = mkPN "Vedism" ; -lin vedist_PN = mkPN "Vedist" ; -lin vega_PN = mkPN "Vega" ; -lin vela_PN = mkPN "Vela" ; -lin velazquez_PN = mkPN "Velazquez" ; -lin velcro_PN = mkPN "Velcro" ; -lin velveeta_PN = mkPN "Velveeta" ; -lin vendemiaire_PN = mkPN "Vendemiaire" ; -lin veneridae_PN = mkPN "Veneridae" ; -lin venetian_A = compoundA (mkA "venetian"); -- from DictEng -lin venetian_PN = mkPN "Venetian" ; -lin venetian_blind_PN = mkPN "Venetian blind" ; -lin venetian_glass_PN = mkPN "Venetian glass" ; -lin venetian_sumac_PN = mkPN "Venetian sumac" ; -lin veneto_PN = mkPN "Veneto" ; -lin venezia_PN = mkPN "Venezia"; -- from DictEng -lin venezuela_PN = mkPN "Venezuela"; -- from DictEng -lin venezuelan_A = compoundA (mkA "venezuelan"); -- from DictEng -lin venezuelan_PN = mkPN "Venezuelan" ; -lin venezuelan_monetary_unit_PN = mkPN "Venezuelan monetary unit" ; -lin venice_PN = mkPN "Venice"; -- from DictEng -lin venn_PN = mkPN "Venn" ; -lin venn_diagram_PN = mkPN "Venn diagram" ; -lin ventner_PN = mkPN "Ventner" ; -lin ventnor_PN = mkPN "Ventnor"; -- from DictEng -lin ventose_PN = mkPN "Ventose" ; -lin venturi_PN = mkPN "Venturi" ; -lin venturi_tube_PN = mkPN "Venturi tube" ; -lin venus_PN = mkPN "Venus"; -- from DictEng -lin venus'_slipper_PN = mkPN "Venus' slipper" ; -lin venus's_flower_basket_PN = mkPN "Venus's flower basket" ; -lin venus's_flytrap_PN = mkPN "Venus's flytrap" ; -lin venus's_girdle_PN = mkPN "Venus's girdle" ; -lin veps_PN = mkPN "Veps" ; -lin vera_PN = mkPN "Vera"; -- from DictEng -lin veracruz_PN = mkPN "Veracruz" ; -lin veratrum_PN = mkPN "Veratrum" ; -lin verbascum_PN = mkPN "Verbascum" ; -lin verbenaceae_PN = mkPN "Verbenaceae" ; -lin verbesina_PN = mkPN "Verbesina" ; -lin verdandi_PN = mkPN "Verdandi" ; -lin verdi_PN = mkPN "Verdi" ; -lin verdicchio_PN = mkPN "Verdicchio" ; -lin verdun_PN = mkPN "Verdun" ; -lin verlaine_PN = mkPN "Verlaine" ; -lin vermeer_PN = mkPN "Vermeer" ; -lin vermont_PN = mkPN "Vermont"; -- from DictEng -lin vermonter_PN = mkPN "Vermonter" ; -lin verne_PN = mkPN "Verne" ; -lin verner_PN = mkPN "Verner" ; -lin verner's_law_PN = mkPN "Verner's law" ; -lin vernier_PN = mkPN "Vernier" ; -lin vernon_PN = mkPN "Vernon"; -- from DictEng -lin verona_PN = mkPN "Verona"; -- from DictEng -lin veronese_PN = mkPN "Veronese" ; -lin veronica_PN = mkPN "Veronica"; -- from DictEng -lin verpa_PN = mkPN "Verpa" ; -lin verpa_bohemica_PN = mkPN "Verpa bohemica" ; -lin verpa_conica_PN = mkPN "Verpa conica" ; -lin verrazano_PN = mkPN "Verrazano" ; -lin verrazano_narrows_bridge_PN = mkPN "Verrazano Narrows Bridge" ; -lin verrazano_narrows_PN = mkPN "Verrazano Narrows" ; -lin versace_PN = mkPN "Versace" ; -lin versailles_PN = mkPN "Versailles" ; -lin vertebrata_PN = mkPN "Vertebrata" ; -lin verwoerd_PN = mkPN "Verwoerd" ; -lin very_reverend_PN = mkPN "Very Reverend" ; -lin very_light_PN = mkPN "Very light" ; -lin very_pistol_PN = mkPN "Very pistol" ; -lin vesalius_PN = mkPN "Vesalius" ; -lin vesey_PN = mkPN "Vesey" ; -lin vesicaria_PN = mkPN "Vesicaria" ; -lin vespa_PN = mkPN "Vespa" ; -lin vespasian_PN = mkPN "Vespasian" ; -lin vespertilio_PN = mkPN "Vespertilio" ; -lin vespertilionidae_PN = mkPN "Vespertilionidae" ; -lin vespidae_PN = mkPN "Vespidae" ; -lin vespucci_PN = mkPN "Vespucci" ; -lin vespula_PN = mkPN "Vespula" ; -lin vesta_PN = mkPN "Vesta" ; -lin vestris_PN = mkPN "Vestris" ; -lin vesuvius_PN = mkPN "Vesuvius" ; -lin veterans_day_PN = mkPN "Veterans Day" ; -lin veterans_of_foreign_wars_PN = mkPN "Veterans of Foreign Wars" ; -lin vetluga_PN = mkPN "Vetluga" ; -lin vhf_PN = mkPN "Vhf"; -- from DictEng -lin viborg_PN = mkPN "Viborg" ; -lin vibrio_fetus_PN = mkPN "Vibrio fetus" ; -lin viburnum_PN = mkPN "Viburnum" ; -lin vic_PN = mkPN "Vic"; -- from DictEng -lin vice_president_of_the_united_states_PN = mkPN "Vice President of the United States" ; -lin vicente_lopez_PN = mkPN "Vicente Lopez" ; -lin vicenza_PN = mkPN "Vicenza"; -- from DictEng -lin vichy_PN = mkPN "Vichy" ; -lin vichy_water_PN = mkPN "Vichy water" ; -lin vicia_PN = mkPN "Vicia" ; -lin vicksburg_PN = mkPN "Vicksburg" ; -lin vicky_PN = mkPN "Vicky"; -- from DictEng -lin victor_PN = mkPN "Victor"; -- from DictEng -lin victor_emanuel_ii_PN = mkPN "Victor Emanuel II" ; -lin victor_emanuel_iii_PN = mkPN "Victor Emanuel III" ; -lin victoria_PN = mkPN "Victoria"; -- from DictEng -lin victoria_cross_PN = mkPN "Victoria Cross" ; -lin victoria_day_PN = mkPN "Victoria Day" ; -lin victoria_land_PN = mkPN "Victoria Land" ; -lin victoria_plum_PN = mkPN "Victoria plum" ; -lin victoria_sandwich_PN = mkPN "Victoria sandwich" ; -lin victorian_A = compoundA (mkA "victorian"); -- from DictEng -lin victorian_PN = mkPN "Victorian" ; -lin victorian_age_PN = mkPN "Victorian age" ; -lin victorian_architecture_PN = mkPN "Victorian architecture" ; -lin victoriana_PN = mkPN "Victoriana" ; -lin victrola_PN = mkPN "Victrola" ; -lin vicugna_PN = mkPN "Vicugna" ; -lin vidal_PN = mkPN "Vidal" ; -lin vidalia_PN = mkPN "Vidalia" ; -lin vidalia_onion_PN = mkPN "Vidalia onion" ; -lin vidua_PN = mkPN "Vidua" ; -lin vienna_PN = mkPN "Vienna"; -- from DictEng -lin vienna_sausage_PN = mkPN "Vienna sausage" ; -lin vienne_PN = mkPN "Vienne" ; -lin viennese_A = mkA "Viennese" ; -lin vientiane_PN = mkPN "Vientiane" ; -lin vieques_PN = mkPN "Vieques" ; -lin vietnam_PN = mkPN "Vietnam"; -- from DictEng -lin vietnam_war_PN = mkPN "Vietnam War" ; -lin vietnamese_A = compoundA (mkA "Vietnamese"); -- from DictEng -lin vietnamese_PN = mkPN "Vietnamese" ; -lin vietnamese_monetary_unit_PN = mkPN "Vietnamese monetary unit" ; -lin viewpark_PN = mkPN "Viewpark"; -- from DictEng -lin vigee_lebrun_PN = mkPN "Vigee Lebrun" ; -lin vigna_PN = mkPN "Vigna" ; -lin vigo_PN = mkPN "Vigo"; -- from DictEng -lin viking_PN = mkPN "Viking" ; -lin villa_PN = mkPN "Villa" ; -lin villa_lobos_PN = mkPN "Villa Lobos" ; -lin villahermosa_PN = mkPN "Villahermosa" ; -lin villard_PN = mkPN "Villard" ; -lin villon_PN = mkPN "Villon" ; -lin vilnius_PN = mkPN "Vilnius" ; -lin viminaria_PN = mkPN "Viminaria" ; -lin vina_del_mar_PN = mkPN "Vina del Mar" ; -lin vinca_PN = mkPN "Vinca" ; -lin vince_PN = mkPN "Vince"; -- from DictEng -lin vincent_PN = mkPN "Vincent"; -- from DictEng -lin vincent's_angina_PN = mkPN "Vincent's angina" ; -lin vincetoxicum_PN = mkPN "Vincetoxicum" ; -lin vinogradoff_PN = mkPN "Vinogradoff" ; -lin vinson_PN = mkPN "Vinson" ; -lin vinylite_PN = mkPN "Vinylite" ; -lin viola_PN = mkPN "Viola"; -- from DictEng -lin violaceae_PN = mkPN "Violaceae" ; -lin violet_PN = mkPN "Violet"; -- from DictEng -lin vipera_PN = mkPN "Vipera" ; -lin viperidae_PN = mkPN "Viperidae" ; -lin virchow_PN = mkPN "Virchow" ; -lin vireonidae_PN = mkPN "Vireonidae" ; -lin virgil_PN = mkPN "Virgil" ; -lin virgilia_PN = mkPN "Virgilia" ; -lin virgin_birth_PN = mkPN "Virgin Birth" ; -lin virgin_islands_PN = mkPN "Virgin Islands" ; -lin virgin_islands_national_park_PN = mkPN "Virgin Islands National Park" ; -lin virgin_mary_PN = mkPN "Virgin Mary" ; -lin virginia_PN = mkPN "Virginia"; -- from DictEng -lin virginia_beach_PN = mkPN "Virginia Beach" ; -lin virginia_bluebell_PN = mkPN "Virginia bluebell" ; -lin virginia_chain_fern_PN = mkPN "Virginia chain fern" ; -lin virginia_creeper_PN = mkPN "Virginia creeper" ; -lin virginia_crownbeard_PN = mkPN "Virginia crownbeard" ; -lin virginia_deer_PN = mkPN "Virginia deer" ; -lin virginia_ham_PN = mkPN "Virginia ham" ; -lin virginia_mallow_PN = mkPN "Virginia mallow" ; -lin virginia_oyster_PN = mkPN "Virginia oyster" ; -lin virginia_reel_PN = mkPN "Virginia reel" ; -lin virginia_snakeroot_PN = mkPN "Virginia snakeroot" ; -lin virginia_spring_beauty_PN = mkPN "Virginia spring beauty" ; -lin virginia_strawberry_PN = mkPN "Virginia strawberry" ; -lin virginia_thimbleweed_PN = mkPN "Virginia thimbleweed" ; -lin virginia_water_PN = mkPN "Virginia water"; -- from DictEng -lin virginia_waterleaf_PN = mkPN "Virginia waterleaf" ; -lin virginian_PN = mkPN "Virginian" ; -lin virginian_stock_PN = mkPN "Virginian stock" ; -lin virginian_witch_hazel_PN = mkPN "Virginian witch hazel" ; -lin virgo_PN = mkPN "Virgo"; -- from DictEng -lin visayan_PN = mkPN "Visayan" ; -lin visayan_islands_PN = mkPN "Visayan Islands" ; -lin viscaceae_PN = mkPN "Viscaceae" ; -lin visconti_PN = mkPN "Visconti" ; -lin viscum_PN = mkPN "Viscum" ; -lin vishnu_PN = mkPN "Vishnu" ; -lin visigoth_PN = mkPN "Visigoth" ; -lin vistula_PN = mkPN "Vistula" ; -lin vitaceae_PN = mkPN "Vitaceae" ; -lin vitharr_PN = mkPN "Vitharr" ; -lin viti_levu_PN = mkPN "Viti Levu" ; -lin vitis_PN = mkPN "Vitis" ; -lin vitoria_PN = mkPN "Vitoria"; -- from DictEng -lin vittaria_PN = mkPN "Vittaria" ; -lin vittariaceae_PN = mkPN "Vittariaceae" ; -lin vitus_PN = mkPN "Vitus" ; -lin viv_PN = mkPN "Viv"; -- from DictEng -lin vivaldi_PN = mkPN "Vivaldi" ; -lin viverra_PN = mkPN "Viverra" ; -lin viverricula_PN = mkPN "Viverricula" ; -lin viverridae_PN = mkPN "Viverridae" ; -lin vivian_PN = mkPN "Vivian"; -- from DictEng -lin vivien_PN = mkPN "Vivien"; -- from DictEng -lin vivienne_PN = mkPN "Vivienne"; -- from DictEng -lin viyella_PN = mkPN "Viyella" ; -lin viz_PN = mkPN "Viz"; -- from DictEng -lin vizcaino_PN = mkPN "Vizcaino" ; -lin vladivostok_PN = mkPN "Vladivostok" ; -lin vlaminck_PN = mkPN "Vlaminck" ; -lin vogul_PN = mkPN "Vogul" ; -lin volans_PN = mkPN "Volans" ; -lin volapuk_PN = mkPN "Volapuk" ; -lin volcano_islands_PN = mkPN "Volcano Islands" ; -lin volga_PN = mkPN "Volga" ; -lin volgaic_PN = mkPN "Volgaic" ; -lin volgograd_PN = mkPN "Volgograd"; -- from DictEng -lin volkhov_PN = mkPN "Volkhov" ; -lin volta_PN = mkPN "Volta" ; -lin voltaire_PN = mkPN "Voltaire" ; -lin voltarian_A = mkA "Voltarian" ; -lin volund_PN = mkPN "Volund" ; -lin volvaria_PN = mkPN "Volvaria" ; -lin volvaria_bombycina_PN = mkPN "Volvaria bombycina" ; -lin volvariaceae_PN = mkPN "Volvariaceae" ; -lin volvariella_PN = mkPN "Volvariella" ; -lin volvariella_bombycina_PN = mkPN "Volvariella bombycina" ; -lin volvocaceae_PN = mkPN "Volvocaceae" ; -lin volvocales_PN = mkPN "Volvocales" ; -lin volvox_PN = mkPN "Volvox" ; -lin vombatidae_PN = mkPN "Vombatidae" ; -lin vonnegut_PN = mkPN "Vonnegut" ; -lin voronezh_PN = mkPN "Voronezh"; -- from DictEng -lin vouvray_PN = mkPN "Vouvray" ; -lin voyageurs_national_park_PN = mkPN "Voyageurs National Park" ; -lin voznesenski_PN = mkPN "Voznesenski" ; -lin vs_PN = mkPN "Vs"; -- from DictEng -lin vso_PN = mkPN "Vso"; -- from DictEng -lin vuillard_PN = mkPN "Vuillard" ; -lin vulcan_PN = mkPN "Vulcan" ; -lin vulgar_latin_PN = mkPN "Vulgar Latin" ; -lin vulgate_PN = mkPN "Vulgate" ; -lin vulpecula_PN = mkPN "Vulpecula" ; -lin vulpes_PN = mkPN "Vulpes" ; -lin vultur_PN = mkPN "Vultur" ; -lin w_PN = mkPN "W" ; -lin w_shaped_A = compoundA (mkA "W shaped") ; -lin wasp_PN = mkPN "WASP" ; -lin wats_PN = mkPN "WATS" ; -lin wysiwyg_A = mkA "WYSIWYG" ; -lin wabash_PN = mkPN "Wabash" ; -lin wac_PN = mkPN "Wac" ; -lin waco_PN = mkPN "Waco" ; -lin wade_PN = mkPN "Wade" ; -lin wagga_wagga_PN = mkPN "Wagga Wagga" ; -lin wagner_PN = mkPN "Wagner" ; -lin wagnerian_A = mkA "Wagnerian" ; -lin wagnerian_PN = mkPN "Wagnerian" ; -lin wagram_PN = mkPN "Wagram" ; -lin wahhabi_PN = mkPN "Wahhabi" ; -lin wahhabism_PN = mkPN "Wahhabism" ; -lin waikiki_PN = mkPN "Waikiki" ; -lin wailing_wall_PN = mkPN "Wailing Wall" ; -lin wain_PN = mkPN "Wain" ; -lin waite_PN = mkPN "Waite" ; -lin wajda_PN = mkPN "Wajda" ; -lin wakashan_PN = mkPN "Wakashan" ; -lin wake_island_PN = mkPN "Wake Island" ; -lin wakefield_PN = mkPN "Wakefield"; -- from DictEng -lin walapai_PN = mkPN "Walapai" ; -lin walbiri_PN = mkPN "Walbiri" ; -lin waldenses_PN = mkPN "Waldenses" ; -lin waldheim_PN = mkPN "Waldheim" ; -lin waldorf_salad_PN = mkPN "Waldorf salad" ; -lin wales_PN = mkPN "Wales"; -- from DictEng -lin walesa_PN = mkPN "Walesa" ; -lin walker_PN = mkPN "Walker" ; -lin walker_hound_PN = mkPN "Walker hound" ; -lin walkman_PN = mkPN "Walkman" ; -lin wall_street_PN = mkPN "Wall street"; -- from DictEng -lin walla_walla_PN = mkPN "Walla Walla" ; -lin wallace_PN = mkPN "Wallace"; -- from DictEng -lin wallasey_PN = mkPN "Wallasey"; -- from DictEng -lin wallenstein_PN = mkPN "Wallenstein" ; -lin waller_PN = mkPN "Waller" ; -lin wallingford_PN = mkPN "Wallingford"; -- from DictEng -lin walloon_PN = mkPN "Walloon" ; -lin walloons_PN = mkPN "Walloons" ; -lin wallsend_PN = mkPN "Wallsend"; -- from DictEng -lin wally_PN = mkPN "Wally"; -- from DictEng -lin walpole_PN = mkPN "Walpole" ; -lin walpurgis_night_PN = mkPN "Walpurgis Night" ; -lin walsall_PN = mkPN "Walsall"; -- from DictEng -lin walsham_PN = mkPN "Walsham"; -- from DictEng -lin walt_disney_world_PN = mkPN "Walt Disney World" ; -lin walt_whitman_bridge_PN = mkPN "Walt Whitman Bridge" ; -lin walter_PN = mkPN "Walter"; -- from DictEng -lin walter_mitty_PN = mkPN "Walter Mitty" ; -lin waltham_forest_PN = mkPN "Waltham forest"; -- from DictEng -lin walton_PN = mkPN "Walton"; -- from DictEng -lin wampanoag_PN = mkPN "Wampanoag" ; -lin wanamaker_PN = mkPN "Wanamaker" ; -lin wandering_jew_PN = mkPN "Wandering Jew" ; -lin wandsworth_PN = mkPN "Wandsworth"; -- from DictEng -lin wankel_engine_PN = mkPN "Wankel engine" ; -lin wantage_PN = mkPN "Wantage"; -- from DictEng -lin war_admiral_PN = mkPN "War Admiral" ; -lin war_department_PN = mkPN "War Department" ; -lin war_of_1812_PN = mkPN "War of 1812" ; -lin war_of_greek_independence_PN = mkPN "War of Greek Independence" ; -lin war_of_the_austrian_succession_PN = mkPN "War of the Austrian Succession" ; -lin war_of_the_grand_alliance_PN = mkPN "War of the Grand Alliance" ; -lin war_of_the_roses_PN = mkPN "War of the Roses" ; -lin war_of_the_spanish_succession_PN = mkPN "War of the Spanish Succession" ; -lin warburg_PN = mkPN "Warburg" ; -lin ward_PN = mkPN "Ward" ; -lin ware_PN = mkPN "Ware"; -- from DictEng -lin warhol_PN = mkPN "Warhol" ; -lin warji_PN = mkPN "Warji" ; -lin warley_PN = mkPN "Warley"; -- from DictEng -lin warminster_PN = mkPN "Warminster"; -- from DictEng -lin warner_PN = mkPN "Warner" ; -lin warren_PN = mkPN "Warren" ; -lin warrington_PN = mkPN "Warrington"; -- from DictEng -lin warsaw_PN = mkPN "Warsaw"; -- from DictEng -lin warsop_PN = mkPN "Warsop"; -- from DictEng -lin warszawa_PN = mkPN "Warszawa" ; -lin warwick_PN = mkPN "Warwick"; -- from DictEng -lin warwickshire_PN = mkPN "Warwickshire"; -- from DictEng -lin washington_PN = mkPN "Washington"; -- from DictEng -lin washington's_birthday_PN = mkPN "Washington's Birthday" ; -lin washington_monument_PN = mkPN "Washington Monument" ; -lin washington_dc_PN = mkPN "Washington dc"; -- from DictEng -lin washingtonian_A = mkA "Washingtonian" ; -lin washingtonian_PN = mkPN "Washingtonian" ; -lin wassermann_PN = mkPN "Wassermann" ; -lin wassermann_test_PN = mkPN "Wassermann test" ; -lin waterbury_PN = mkPN "Waterbury" ; -lin waterford_PN = mkPN "Waterford"; -- from DictEng -lin watergate_PN = mkPN "Watergate" ; -lin waterhouse_friderichsen_syndrome_PN = mkPN "Waterhouse Friderichsen syndrome" ; -lin waterloo_PN = mkPN "Waterloo"; -- from DictEng -lin waters_PN = mkPN "Waters" ; -lin watertown_PN = mkPN "Watertown" ; -lin watford_PN = mkPN "Watford"; -- from DictEng -lin watson_PN = mkPN "Watson" ; -lin watt_PN = mkPN "Watt" ; -lin watteau_PN = mkPN "Watteau" ; -lin watts_PN = mkPN "Watts" ; -lin waugh_PN = mkPN "Waugh" ; -lin wausau_PN = mkPN "Wausau" ; -lin wave_PN = mkPN "Wave" ; -lin wavell_PN = mkPN "Wavell" ; -lin wayland_PN = mkPN "Wayland" ; -lin wayne_PN = mkPN "Wayne"; -- from DictEng -lin ways_and_means_committee_PN = mkPN "Ways and Means Committee" ; -lin wear_PN = mkPN "Wear"; -- from DictEng -lin web_map_service_PN = mkPN "Web Map Service" ; -lin webb_PN = mkPN "Webb" ; -lin weber_PN = mkPN "Weber" ; -lin weber's_law_PN = mkPN "Weber's law" ; -lin webster_PN = mkPN "Webster" ; -lin wed_PN = mkPN "Wed"; -- from DictEng -lin weddell_sea_PN = mkPN "Weddell Sea" ; -lin wedgwood_PN = mkPN "Wedgwood" ; -lin wednesday_PN = mkPN "Wednesday"; -- from DictEng -lin wegener_PN = mkPN "Wegener" ; -lin wei_PN = mkPN "Wei" ; -lin weil_PN = mkPN "Weil" ; -lin weil's_disease_PN = mkPN "Weil's disease" ; -lin weill_PN = mkPN "Weill" ; -lin weimar_PN = mkPN "Weimar" ; -lin weimar_republic_PN = mkPN "Weimar Republic" ; -lin weimaraner_PN = mkPN "Weimaraner" ; -lin weinberg_PN = mkPN "Weinberg" ; -lin weismann_PN = mkPN "Weismann" ; -lin weissbier_PN = mkPN "Weissbier" ; -lin weisshorn_PN = mkPN "Weisshorn" ; -lin weizenbier_PN = mkPN "Weizenbier" ; -lin weizenbock_PN = mkPN "Weizenbock" ; -lin weizmann_PN = mkPN "Weizmann" ; -lin weld_PN = mkPN "Weld" ; -lin welles_PN = mkPN "Welles" ; -lin wellingborough_PN = mkPN "Wellingborough"; -- from DictEng -lin wellington_PN = mkPN "Wellington"; -- from DictEng -lin wells_PN = mkPN "Wells"; -- from DictEng -lin welsh_A = compoundA (mkA "welsh"); -- from DictEng -lin welsh_PN = mkPN "Welsh" ; -lin welsh_onion_PN = mkPN "Welsh onion" ; -lin welsh_pony_PN = mkPN "Welsh pony" ; -lin welsh_poppy_PN = mkPN "Welsh poppy" ; -lin welsh_rarebit_PN = mkPN "Welsh rarebit" ; -lin welsh_springer_spaniel_PN = mkPN "Welsh springer spaniel" ; -lin welsh_terrier_PN = mkPN "Welsh terrier" ; -lin welshman_PN = mkPN "Welshman" ; -lin welshpool_PN = mkPN "Welshpool"; -- from DictEng -lin weltanschauung_PN = mkPN "Weltanschauung" ; -lin welty_PN = mkPN "Welty" ; -lin welwitschiaceae_PN = mkPN "Welwitschiaceae" ; -lin welwyn_PN = mkPN "Welwyn"; -- from DictEng -lin welwyn_garden_city_PN = mkPN "Welwyn garden city"; -- from DictEng -lin wembley_PN = mkPN "Wembley" ; -lin wen_ch'ang_PN = mkPN "Wen Ch'ang" ; -lin wendover_PN = mkPN "Wendover"; -- from DictEng -lin wendy_PN = mkPN "Wendy"; -- from DictEng -lin werdnig_hoffman_disease_PN = mkPN "Werdnig Hoffman disease" ; -lin werfel_PN = mkPN "Werfel" ; -lin wernicke_PN = mkPN "Wernicke" ; -lin wernicke's_aphasia_PN = mkPN "Wernicke's aphasia" ; -lin wernicke's_area_PN = mkPN "Wernicke's area" ; -lin wernicke's_encephalopathy_PN = mkPN "Wernicke's encephalopathy" ; -lin weser_PN = mkPN "Weser" ; -lin wesley_PN = mkPN "Wesley" ; -lin wesleyan_PN = mkPN "Wesleyan" ; -lin wesleyan_methodist_church_PN = mkPN "Wesleyan Methodist Church" ; -lin wesleyanism_PN = mkPN "Wesleyanism" ; -lin wessex_PN = mkPN "Wessex" ; -lin west_PN = mkPN "West" ; -lin west_sider_PN = mkPN "West sider" ; -lin west_africa_PN = mkPN "West Africa" ; -lin west_african_A = compoundA (mkA "West African") ; -lin west_african_PN = mkPN "West African" ; -lin west_bank_PN = mkPN "West Bank" ; -lin west_bengal_PN = mkPN "West Bengal" ; -lin west_berlin_PN = mkPN "West Berlin" ; -lin west_berliner_PN = mkPN "West Berliner" ; -lin west_chadic_PN = mkPN "West Chadic" ; -lin west_coast_PN = mkPN "West Coast" ; -lin west_country_PN = mkPN "West Country" ; -lin west_end_PN = mkPN "West End" ; -lin west_germanic_PN = mkPN "West Germanic" ; -lin west_germany_PN = mkPN "West Germany" ; -lin west_highland_white_terrier_PN = mkPN "West Highland white terrier" ; -lin west_indian_PN = mkPN "West Indian" ; -lin west_indian_jasmine_PN = mkPN "West Indian jasmine" ; -lin west_indies_PN = mkPN "West Indies" ; -lin west_malaysia_PN = mkPN "West Malaysia" ; -lin west_midland_PN = mkPN "West Midland" ; -lin west_nile_encephalitis_PN = mkPN "West Nile encephalitis" ; -lin west_nile_virus_PN = mkPN "West Nile virus" ; -lin west_palm_beach_PN = mkPN "West Palm Beach" ; -lin west_point_PN = mkPN "West Point" ; -lin west_saxon_PN = mkPN "West Saxon" ; -lin west_sussex_PN = mkPN "West Sussex" ; -lin west_virginia_PN = mkPN "West Virginia" ; -lin west_virginian_PN = mkPN "West Virginian" ; -lin west_yorkshire_PN = mkPN "West Yorkshire" ; -lin west_bromwich_PN = mkPN "West bromwich"; -- from DictEng -lin westbury_PN = mkPN "Westbury"; -- from DictEng -lin western_PN = mkPN "Western" ; -lin western_australia_PN = mkPN "Western Australia" ; -lin western_australia_coral_pea_PN = mkPN "Western Australia coral pea" ; -lin western_malayo_polynesian_PN = mkPN "Western Malayo Polynesian" ; -lin western_roman_empire_PN = mkPN "Western Roman Empire" ; -lin western_sahara_PN = mkPN "Western Sahara" ; -lin western_samoan_monetary_unit_PN = mkPN "Western Samoan monetary unit" ; -lin western_box_turtle_PN = mkPN "Western box turtle" ; -lin western_culture_PN = mkPN "Western culture" ; -lin western_diamondback_PN = mkPN "Western diamondback" ; -lin western_mountain_ash_PN = mkPN "Western mountain ash" ; -lin western_pasqueflower_PN = mkPN "Western pasqueflower" ; -lin western_ribbon_snake_PN = mkPN "Western ribbon snake" ; -lin western_sand_cherry_PN = mkPN "Western sand cherry" ; -lin western_silvery_aster_PN = mkPN "Western silvery aster" ; -lin westernization_PN = mkPN "Westernization" ; -lin westhoughton_PN = mkPN "Westhoughton"; -- from DictEng -lin westinghouse_PN = mkPN "Westinghouse" ; -lin westmeath_PN = mkPN "Westmeath"; -- from DictEng -lin westminster_PN = mkPN "Westminster"; -- from DictEng -lin westminster_abbey_PN = mkPN "Westminster Abbey" ; -lin westmoreland_PN = mkPN "Westmoreland"; -- from DictEng -lin weston_PN = mkPN "Weston" ; -lin weston_cell_PN = mkPN "Weston cell" ; -lin weston_super_mare_PN = mkPN "Weston - super - mare"; -- from DictEng -lin wetherby_PN = mkPN "Wetherby"; -- from DictEng -lin wexford_PN = mkPN "Wexford"; -- from DictEng -lin weymouth_PN = mkPN "Weymouth"; -- from DictEng -lin whaley_bridge_PN = mkPN "Whaley bridge"; -- from DictEng -lin wharton_PN = mkPN "Wharton" ; -lin wheatley_PN = mkPN "Wheatley" ; -lin wheatley_hill_PN = mkPN "Wheatley hill"; -- from DictEng -lin wheatstone_PN = mkPN "Wheatstone" ; -lin wheatstone_bridge_PN = mkPN "Wheatstone bridge" ; -lin wheeler_PN = mkPN "Wheeler" ; -lin wheeler_peak_PN = mkPN "Wheeler Peak" ; -lin wheeling_PN = mkPN "Wheeling" ; -lin whig_PN = mkPN "Whig" ; -lin whig_party_PN = mkPN "Whig Party" ; -lin whipple's_penstemon_PN = mkPN "Whipple's penstemon" ; -lin whirlaway_PN = mkPN "Whirlaway" ; -lin whistler_PN = mkPN "Whistler" ; -lin whit_tuesday_PN = mkPN "Whit Tuesday" ; -lin whitburn_PN = mkPN "Whitburn"; -- from DictEng -lin whitby_PN = mkPN "Whitby"; -- from DictEng -lin whitchurch_PN = mkPN "Whitchurch"; -- from DictEng -lin white_PN = mkPN "White" ; -lin white_house_PN = mkPN "White House" ; -lin white_nile_PN = mkPN "White Nile" ; -lin white_russian_PN = mkPN "White Russian" ; -lin white_sea_PN = mkPN "White Sea" ; -lin white_tai_PN = mkPN "White Tai" ; -lin white_race_PN = mkPN "White race" ; -lin whitehall_PN = mkPN "Whitehall"; -- from DictEng -lin whitehaven_PN = mkPN "Whitehaven"; -- from DictEng -lin whitehead_PN = mkPN "Whitehead" ; -lin whitehorse_PN = mkPN "Whitehorse" ; -lin whitley_bay_PN = mkPN "Whitley bay"; -- from DictEng -lin whitman_PN = mkPN "Whitman" ; -lin whitmonday_PN = mkPN "Whitmonday" ; -lin whitney_PN = mkPN "Whitney" ; -lin whitstable_PN = mkPN "Whitstable"; -- from DictEng -lin whitsun_PN = mkPN "Whitsun"; -- from DictEng -lin whitsuntide_PN = mkPN "Whitsuntide"; -- from DictEng -lin whittier_PN = mkPN "Whittier" ; -lin whittle_PN = mkPN "Whittle" ; -lin whittle_le_woods_PN = mkPN "Whittle - le - woods"; -- from DictEng -lin whittlesey_PN = mkPN "Whittlesey"; -- from DictEng -lin whitworth_PN = mkPN "Whitworth"; -- from DictEng -lin wicca_PN = mkPN "Wicca" ; -lin wiccan_A = mkA "Wiccan" ; -lin wiccan_PN = mkPN "Wiccan" ; -lin wichita_PN = mkPN "Wichita" ; -lin wichita_falls_PN = mkPN "Wichita Falls" ; -lin wick_PN = mkPN "Wick"; -- from DictEng -lin wickford_PN = mkPN "Wickford"; -- from DictEng -lin wicklow_PN = mkPN "Wicklow"; -- from DictEng -lin widal_test_PN = mkPN "Widal test" ; -lin widnes_PN = mkPN "Widnes"; -- from DictEng -lin wiener_PN = mkPN "Wiener" ; -lin wiesbaden_PN = mkPN "Wiesbaden"; -- from DictEng -lin wiesel_PN = mkPN "Wiesel" ; -lin wiesenthal_PN = mkPN "Wiesenthal" ; -lin wiffle_PN = mkPN "Wiffle" ; -lin wigan_PN = mkPN "Wigan"; -- from DictEng -lin wight_PN = mkPN "Wight"; -- from DictEng -lin wigner_PN = mkPN "Wigner" ; -lin wild_west_PN = mkPN "Wild West" ; -lin wild_west_show_PN = mkPN "Wild West Show" ; -lin wilde_PN = mkPN "Wilde" ; -lin wilder_PN = mkPN "Wilder" ; -lin wilderness_PN = mkPN "Wilderness" ; -lin wilderness_campaign_PN = mkPN "Wilderness Campaign" ; -lin wilf_PN = mkPN "Wilf"; -- from DictEng -lin wilfrid_PN = mkPN "Wilfrid"; -- from DictEng -lin wilhelm_ii_PN = mkPN "Wilhelm II" ; -lin wilhelmshaven_PN = mkPN "Wilhelmshaven"; -- from DictEng -lin wilkes_PN = mkPN "Wilkes" ; -lin wilkes_land_PN = mkPN "Wilkes Land" ; -lin wilkins_PN = mkPN "Wilkins" ; -lin wilkinson_PN = mkPN "Wilkinson" ; -lin will_PN = mkPN "Will"; -- from DictEng -lin willamette_PN = mkPN "Willamette" ; -lin willard_PN = mkPN "Willard" ; -lin willebrand_PN = mkPN "Willebrand" ; -lin william_PN = mkPN "William"; -- from DictEng -lin william_i_PN = mkPN "William I" ; -lin william_ii_PN = mkPN "William II" ; -lin william_iii_PN = mkPN "William III" ; -lin william_iv_PN = mkPN "William IV" ; -lin william_and_mary_PN = mkPN "William and Mary" ; -lin williams_PN = mkPN "Williams" ; -lin williams_syndrome_PN = mkPN "Williams syndrome" ; -lin williamstown_PN = mkPN "Williamstown" ; -lin willie_PN = mkPN "Willie"; -- from DictEng -lin willington_PN = mkPN "Willington"; -- from DictEng -lin willis_PN = mkPN "Willis" ; -lin willy_PN = mkPN "Willy"; -- from DictEng -lin wilmington_PN = mkPN "Wilmington" ; -lin wilms'_tumor_PN = mkPN "Wilms' tumor" ; -lin wilmslow_PN = mkPN "Wilmslow"; -- from DictEng -lin wilmut_PN = mkPN "Wilmut" ; -lin wilson_PN = mkPN "Wilson" ; -lin wilson's_phalarope_PN = mkPN "Wilson's phalarope" ; -lin wilson's_snipe_PN = mkPN "Wilson's snipe" ; -lin wilson's_warbler_PN = mkPN "Wilson's warbler" ; -lin wilsonian_A = mkA "Wilsonian" ; -lin wilton_PN = mkPN "Wilton" ; -lin wiltshire_PN = mkPN "Wiltshire"; -- from DictEng -lin wimbledon_PN = mkPN "Wimbledon" ; -lin wimbourne_PN = mkPN "Wimbourne"; -- from DictEng -lin wimbourne_minster_PN = mkPN "Wimbourne minster"; -- from DictEng -lin winchester_PN = mkPN "Winchester"; -- from DictEng -lin winchester_college_PN = mkPN "Winchester College" ; -lin winckelmann_PN = mkPN "Winckelmann" ; -lin wind_cave_national_park_PN = mkPN "Wind Cave National Park" ; -lin windaus_PN = mkPN "Windaus" ; -lin windermere_PN = mkPN "Windermere"; -- from DictEng -lin windhoek_PN = mkPN "Windhoek" ; -lin windows_PN = mkPN "Windows" ; -lin windsor_PN = mkPN "Windsor"; -- from DictEng -lin windsor_chair_PN = mkPN "Windsor chair" ; -lin windsor_green_PN = mkPN "Windsor green" ; -lin windsor_knot_PN = mkPN "Windsor knot" ; -lin windsor_tie_PN = mkPN "Windsor tie" ; -lin windward_islands_PN = mkPN "Windward Islands" ; -lin windward_passage_PN = mkPN "Windward Passage" ; -lin winesap_PN = mkPN "Winesap" ; -lin wingate_PN = mkPN "Wingate"; -- from DictEng -lin winifred_PN = mkPN "Winifred"; -- from DictEng -lin winnebago_PN = mkPN "Winnebago" ; -lin winnie_PN = mkPN "Winnie"; -- from DictEng -lin winnipeg_PN = mkPN "Winnipeg"; -- from DictEng -lin winsford_PN = mkPN "Winsford"; -- from DictEng -lin winslow_PN = mkPN "Winslow" ; -lin winston_salem_PN = mkPN "Winston Salem" ; -lin winter_olympic_games_PN = mkPN "Winter Olympic Games" ; -lin winteraceae_PN = mkPN "Winteraceae" ; -lin wintun_PN = mkPN "Wintun" ; -lin wisbech_PN = mkPN "Wisbech"; -- from DictEng -lin wisconsin_PN = mkPN "Wisconsin"; -- from DictEng -lin wisconsin_weeping_willow_PN = mkPN "Wisconsin weeping willow" ; -lin wisconsinite_PN = mkPN "Wisconsinite" ; -lin wisdom_of_solomon_PN = mkPN "Wisdom of Solomon" ; -lin wise_PN = mkPN "Wise" ; -lin wise_men_PN = mkPN "Wise Men" ; -lin wister_PN = mkPN "Wister" ; -lin witham_PN = mkPN "Witham"; -- from DictEng -lin withernsea_PN = mkPN "Withernsea"; -- from DictEng -lin witherspoon_PN = mkPN "Witherspoon" ; -lin witney_PN = mkPN "Witney"; -- from DictEng -lin wittgenstein_PN = mkPN "Wittgenstein" ; -lin wittgensteinian_A = mkA "Wittgensteinian" ; -lin witwatersrand_PN = mkPN "Witwatersrand" ; -lin wobbly_PN = mkPN "Wobbly" ; -lin woburn_PN = mkPN "Woburn"; -- from DictEng -lin wodehouse_PN = mkPN "Wodehouse" ; -lin woden_PN = mkPN "Woden" ; -lin wokingham_PN = mkPN "Wokingham"; -- from DictEng -lin wolf_PN = mkPN "Wolf" ; -lin wolfe_PN = mkPN "Wolfe" ; -lin wolff_PN = mkPN "Wolff" ; -lin wolffia_PN = mkPN "Wolffia" ; -lin wolffiella_PN = mkPN "Wolffiella" ; -lin wollaston_PN = mkPN "Wollaston" ; -lin wollemi_pine_PN = mkPN "Wollemi pine" ; -lin wollstonecraft_PN = mkPN "Wollstonecraft" ; -lin wolof_PN = mkPN "Wolof" ; -lin wolstonian_glaciation_PN = mkPN "Wolstonian glaciation" ; -lin wolverhampton_PN = mkPN "Wolverhampton"; -- from DictEng -lin wolverton_PN = mkPN "Wolverton"; -- from DictEng -lin wombourne_PN = mkPN "Wombourne"; -- from DictEng -lin women's_army_corps_PN = mkPN "Women's Army Corps" ; -lin wood_PN = mkPN "Wood" ; -lin wood's_metal_PN = mkPN "Wood's metal" ; -lin woodbridge_PN = mkPN "Woodbridge"; -- from DictEng -lin woodbury_PN = mkPN "Woodbury" ; -lin woodhull_PN = mkPN "Woodhull" ; -lin woodward_PN = mkPN "Woodward" ; -lin woodwardia_PN = mkPN "Woodwardia" ; -lin woolf_PN = mkPN "Woolf" ; -lin woollcott_PN = mkPN "Woollcott" ; -lin woolley_PN = mkPN "Woolley" ; -lin woolworth_PN = mkPN "Woolworth" ; -lin wootton_bassett_PN = mkPN "Wootton bassett"; -- from DictEng -lin worcester_PN = mkPN "Worcester"; -- from DictEng -lin worcester_sauce_PN = mkPN "Worcester sauce" ; -lin wordnet_PN = mkPN "WordNet" ; -lin word_of_god_PN = mkPN "Word of God" ; -lin wordsworth_PN = mkPN "Wordsworth" ; -lin wordsworthian_A = mkA "Wordsworthian" ; -lin workington_PN = mkPN "Workington"; -- from DictEng -lin worksop_PN = mkPN "Worksop"; -- from DictEng -lin world_council_of_churches_PN = mkPN "World Council of Churches" ; -lin world_cup_PN = mkPN "World Cup" ; -lin world_health_organization_PN = mkPN "World Health Organization" ; -lin world_meteorological_organization_PN = mkPN "World Meteorological Organization" ; -lin world_series_PN = mkPN "World Series" ; -lin world_trade_center_PN = mkPN "World Trade Center" ; -lin world_trade_organization_PN = mkPN "World Trade Organization" ; -lin world_war_i_PN = mkPN "World War I" ; -lin world_war_ii_PN = mkPN "World War II" ; -lin world_wide_web_PN = mkPN "World Wide Web" ; -lin wormian_bone_PN = mkPN "Wormian bone" ; -lin worth_PN = mkPN "Worth" ; -lin worthing_PN = mkPN "Worthing"; -- from DictEng -lin wotan_PN = mkPN "Wotan" ; -lin wouk_PN = mkPN "Wouk" ; -lin wrangell_st__elias_national_park_PN = mkPN "Wrangell St Elias National Park" ; -lin wren_PN = mkPN "Wren" ; -lin wrexham_PN = mkPN "Wrexham"; -- from DictEng -lin wright_PN = mkPN "Wright" ; -lin writtle_PN = mkPN "Writtle"; -- from DictEng -lin wroclaw_PN = mkPN "Wroclaw"; -- from DictEng -lin wroughton_PN = mkPN "Wroughton"; -- from DictEng -lin wu_PN = mkPN "Wu" ; -lin wuhan_PN = mkPN "Wuhan"; -- from DictEng -lin wuppertal_PN = mkPN "Wuppertal"; -- from DictEng -lin wurlitzer_PN = mkPN "Wurlitzer" ; -lin wurzburg_PN = mkPN "Wurzburg"; -- from DictEng -lin wusih_PN = mkPN "Wusih"; -- from DictEng -lin wyatt_PN = mkPN "Wyatt" ; -lin wycherley_PN = mkPN "Wycherley" ; -lin wycliffe_PN = mkPN "Wycliffe" ; -lin wycombe_PN = mkPN "Wycombe"; -- from DictEng -lin wyeth_PN = mkPN "Wyeth" ; -lin wykeham_PN = mkPN "Wykeham" ; -lin wykehamist_PN = mkPN "Wykehamist" ; -lin wyler_PN = mkPN "Wyler" ; -lin wylie_PN = mkPN "Wylie" ; -lin wymondham_PN = mkPN "Wymondham"; -- from DictEng -lin wynette_PN = mkPN "Wynette" ; -lin wynnea_PN = mkPN "Wynnea" ; -lin wynnea_americana_PN = mkPN "Wynnea americana" ; -lin wynnea_sparassoides_PN = mkPN "Wynnea sparassoides" ; -lin wyoming_PN = mkPN "Wyoming"; -- from DictEng -lin wyomingite_PN = mkPN "Wyomingite" ; -lin wyrd_PN = mkPN "Wyrd" ; -lin wyszynski_PN = mkPN "Wyszynski" ; -lin wythall_PN = mkPN "Wythall"; -- from DictEng -lin x_PN = mkPN "X" ; -lin x_or_circuit_PN = mkPN "X OR circuit" ; -lin x_linked_A = compoundA (mkA "X linked") ; -lin x_linked_scid_PN = mkPN "X linked SCID" ; -lin x_linked_dominant_inheritance_PN = mkPN "X linked dominant inheritance" ; -lin x_linked_gene_PN = mkPN "X linked gene" ; -lin x_linked_recessive_inheritance_PN = mkPN "X linked recessive inheritance" ; -lin x_ray_diffraction_PN = mkPN "X ray diffraction" ; -lin x_ray_film_PN = mkPN "X ray film" ; -lin x_ray_machine_PN = mkPN "X ray machine" ; -lin x_ray_therapy_PN = mkPN "X ray therapy" ; -lin x_ray_tube_PN = mkPN "X ray tube" ; -lin x_raying_PN = mkPN "X raying" ; -lin xx_PN = mkPN "XX" ; -lin xxx_PN = mkPN "XXX" ; -lin xxy_PN = mkPN "XXY" ; -lin xy_PN = mkPN "XY" ; -lin xyy_PN = mkPN "XYY" ; -lin x_chromosome_PN = mkPN "X chromosome" ; -lin x_ray_PN = mkPN "X ray" ; -lin xanthium_PN = mkPN "Xanthium" ; -lin xanthomonas_PN = mkPN "Xanthomonas" ; -lin xanthophyceae_PN = mkPN "Xanthophyceae" ; -lin xanthorrhoeaceae_PN = mkPN "Xanthorrhoeaceae" ; -lin xanthorroea_PN = mkPN "Xanthorroea" ; -lin xanthosoma_PN = mkPN "Xanthosoma" ; -lin xantusiidae_PN = mkPN "Xantusiidae" ; -lin xavier_PN = mkPN "Xavier" ; -lin xenarthra_PN = mkPN "Xenarthra" ; -lin xenicidae_PN = mkPN "Xenicidae" ; -lin xenicus_PN = mkPN "Xenicus" ; -lin xenophanes_PN = mkPN "Xenophanes" ; -lin xenophon_PN = mkPN "Xenophon" ; -lin xenopodidae_PN = mkPN "Xenopodidae" ; -lin xenopus_PN = mkPN "Xenopus" ; -lin xenorhyncus_PN = mkPN "Xenorhyncus" ; -lin xenosauridae_PN = mkPN "Xenosauridae" ; -lin xenosaurus_PN = mkPN "Xenosaurus" ; -lin xerobates_PN = mkPN "Xerobates" ; -lin xerophyllum_PN = mkPN "Xerophyllum" ; -lin xerox_PN = mkPN "Xerox" ; -lin xerxes_i_PN = mkPN "Xerxes I" ; -lin xhosa_PN = mkPN "Xhosa" ; -lin xian_PN = mkPN "Xian" ; -lin xinjiang_PN = mkPN "Xinjiang" ; -lin xiphias_PN = mkPN "Xiphias" ; -lin xiphiidae_PN = mkPN "Xiphiidae" ; -lin xiphosura_PN = mkPN "Xiphosura" ; -lin xmas_PN = mkPN "Xmas"; -- from DictEng -lin xylaria_PN = mkPN "Xylaria" ; -lin xylariaceae_PN = mkPN "Xylariaceae" ; -lin xylocopa_PN = mkPN "Xylocopa" ; -lin xylomelum_PN = mkPN "Xylomelum" ; -lin xylopia_PN = mkPN "Xylopia" ; -lin xyphophorus_PN = mkPN "Xyphophorus" ; -lin xyridaceae_PN = mkPN "Xyridaceae" ; -lin xyridales_PN = mkPN "Xyridales" ; -lin xyris_PN = mkPN "Xyris" ; -lin y_PN = mkPN "Y" ; -lin y_linked_gene_PN = mkPN "Y linked gene" ; -lin y_shaped_A = compoundA (mkA "Y shaped") ; -lin y2k_PN = mkPN "Y2K" ; -lin y2k_compliant_A = compoundA (mkA "Y2K compliant") ; -lin y_chromosome_PN = mkPN "Y chromosome" ; -lin yahi_PN = mkPN "Yahi" ; -lin yahoo_PN = mkPN "Yahoo" ; -lin yahweh_PN = mkPN "Yahweh" ; -lin yajur_veda_PN = mkPN "Yajur Veda" ; -lin yakima_PN = mkPN "Yakima" ; -lin yakut_PN = mkPN "Yakut" ; -lin yale_PN = mkPN "Yale" ; -lin yale_university_PN = mkPN "Yale University" ; -lin yalta_PN = mkPN "Yalta" ; -lin yalta_conference_PN = mkPN "Yalta Conference" ; -lin yalu_PN = mkPN "Yalu" ; -lin yalu_river_PN = mkPN "Yalu River" ; -lin yama_PN = mkPN "Yama" ; -lin yamamoto_PN = mkPN "Yamamoto" ; -lin yamani_PN = mkPN "Yamani" ; -lin yamoussukro_PN = mkPN "Yamoussukro" ; -lin yana_PN = mkPN "Yana" ; -lin yanan_PN = mkPN "Yanan" ; -lin yang_chen_ning_PN = mkPN "Yang Chen Ning" ; -lin yangon_PN = mkPN "Yangon" ; -lin yankee_A = mkA "Yankee" ; -lin yankee_PN = mkPN "Yankee" ; -lin yaounde_PN = mkPN "Yaounde" ; -lin yarmouth_PN = mkPN "Yarmouth"; -- from DictEng -lin yaroslavi_PN = mkPN "Yaroslavi"; -- from DictEng -lin yastrzemski_PN = mkPN "Yastrzemski" ; -lin yate_PN = mkPN "Yate"; -- from DictEng -lin yateley_PN = mkPN "Yateley"; -- from DictEng -lin yavapai_PN = mkPN "Yavapai" ; -lin yay_PN = mkPN "Yay" ; -lin yazoo_PN = mkPN "Yazoo" ; -lin yeats_PN = mkPN "Yeats" ; -lin yeatsian_A = mkA "Yeatsian" ; -lin yellow_sea_PN = mkPN "Yellow Sea" ; -lin yellow_race_PN = mkPN "Yellow race" ; -lin yellowknife_PN = mkPN "Yellowknife" ; -lin yellowstone_PN = mkPN "Yellowstone" ; -lin yellowstone_national_park_PN = mkPN "Yellowstone National Park" ; -lin yemen_PN = mkPN "Yemen"; -- from DictEng -lin yemeni_A = compoundA (mkA "yemeni"); -- from DictEng -lin yemeni_PN = mkPN "Yemeni" ; -lin yemeni_fils_PN = mkPN "Yemeni fils" ; -lin yemeni_monetary_unit_PN = mkPN "Yemeni monetary unit" ; -lin yemeni_rial_PN = mkPN "Yemeni rial" ; -lin yenisei_PN = mkPN "Yenisei" ; -lin yeniseian_PN = mkPN "Yeniseian" ; -lin yeovil_PN = mkPN "Yeovil"; -- from DictEng -lin yerevan_PN = mkPN "Yerevan"; -- from DictEng -lin yerkes_PN = mkPN "Yerkes" ; -lin yersin_PN = mkPN "Yersin" ; -lin yersinia_pestis_PN = mkPN "Yersinia pestis" ; -lin yerupaja_PN = mkPN "Yerupaja" ; -lin yevtushenko_PN = mkPN "Yevtushenko" ; -lin yggdrasil_PN = mkPN "Yggdrasil" ; -lin yiddish_PN = mkPN "Yiddish" ; -lin ymir_PN = mkPN "Ymir" ; -lin yogacara_PN = mkPN "Yogacara" ; -lin yokohama_PN = mkPN "Yokohama"; -- from DictEng -lin yokuts_PN = mkPN "Yokuts" ; -lin yom_kippur_PN = mkPN "Yom Kippur" ; -lin york_PN = mkPN "York"; -- from DictEng -lin yorkley_PN = mkPN "Yorkley"; -- from DictEng -lin yorkshire_PN = mkPN "Yorkshire"; -- from DictEng -lin yorkshire_pudding_PN = mkPN "Yorkshire pudding" ; -lin yorkshire_terrier_PN = mkPN "Yorkshire terrier" ; -lin yorktown_PN = mkPN "Yorktown" ; -lin yoruba_PN = mkPN "Yoruba" ; -lin yosemite_PN = mkPN "Yosemite" ; -lin yosemite_national_park_PN = mkPN "Yosemite National Park" ; -lin yosemite_toad_PN = mkPN "Yosemite toad" ; -lin young_PN = mkPN "Young" ; -lin young's_modulus_PN = mkPN "Young's modulus" ; -lin young_turk_PN = mkPN "Young Turk" ; -lin youngstown_PN = mkPN "Youngstown" ; -lin ypres_PN = mkPN "Ypres" ; -lin yquem_PN = mkPN "Yquem" ; -lin ystradgynlais_PN = mkPN "Ystradgynlais"; -- from DictEng -lin yuan_PN = mkPN "Yuan" ; -lin yucatan_PN = mkPN "Yucatan" ; -lin yucatec_PN = mkPN "Yucatec" ; -lin yue_PN = mkPN "Yue" ; -lin yugoslav_PN = mkPN "Yugoslav" ; -lin yugoslavia_PN = mkPN "Yugoslavia"; -- from DictEng -lin yugoslavian_A = compoundA (mkA "yugoslavian"); -- from DictEng -lin yugoslavian_dinar_PN = mkPN "Yugoslavian dinar" ; -lin yugoslavian_monetary_unit_PN = mkPN "Yugoslavian monetary unit" ; -lin yukawa_PN = mkPN "Yukawa" ; -lin yukon_PN = mkPN "Yukon"; -- from DictEng -lin yukon_white_birch_PN = mkPN "Yukon white birch" ; -lin yule_log_PN = mkPN "Yule log" ; -lin yuma_PN = mkPN "Yuma" ; -lin yuman_A = mkA "Yuman" ; -lin yuman_PN = mkPN "Yuman" ; -lin yunnan_PN = mkPN "Yunnan" ; -lin yvonne_PN = mkPN "Yvonne"; -- from DictEng -lin z_PN = mkPN "Z" ; -lin zip_code_PN = mkPN "ZIP code" ; -lin zaar_PN = mkPN "Zaar" ; -lin zabrze_PN = mkPN "Zabrze" ; -lin zaglossus_PN = mkPN "Zaglossus" ; -lin zagreb_PN = mkPN "Zagreb"; -- from DictEng -lin zaharias_PN = mkPN "Zaharias" ; -lin zaire_PN = mkPN "Zaire"; -- from DictEng -lin zairean_A = compoundA (mkA "zairean"); -- from DictEng -lin zairese_PN = mkPN "Zairese" ; -lin zairese_monetary_unit_PN = mkPN "Zairese monetary unit" ; -lin zalophus_PN = mkPN "Zalophus" ; -lin zama_PN = mkPN "Zama" ; -lin zambezi_PN = mkPN "Zambezi" ; -lin zambia_PN = mkPN "Zambia"; -- from DictEng -lin zambian_A = compoundA (mkA "zambian"); -- from DictEng -lin zambian_PN = mkPN "Zambian" ; -lin zambian_kwacha_PN = mkPN "Zambian kwacha" ; -lin zambian_monetary_unit_PN = mkPN "Zambian monetary unit" ; -lin zamboni_PN = mkPN "Zamboni" ; -lin zamiaceae_PN = mkPN "Zamiaceae" ; -lin zangwill_PN = mkPN "Zangwill" ; -lin zannichellia_PN = mkPN "Zannichellia" ; -lin zannichelliaceae_PN = mkPN "Zannichelliaceae" ; -lin zantedeschia_PN = mkPN "Zantedeschia" ; -lin zanthoxylum_PN = mkPN "Zanthoxylum" ; -lin zanuck_PN = mkPN "Zanuck" ; -lin zanzibar_PN = mkPN "Zanzibar" ; -lin zanzibar_copal_PN = mkPN "Zanzibar copal" ; -lin zapata_PN = mkPN "Zapata" ; -lin zapodidae_PN = mkPN "Zapodidae" ; -lin zaporozhye_PN = mkPN "Zaporozhye"; -- from DictEng -lin zapotec_A = mkA "Zapotec" ; -lin zapotec_PN = mkPN "Zapotec" ; -lin zapus_PN = mkPN "Zapus" ; -lin zaragoza_PN = mkPN "Zaragoza"; -- from DictEng -lin zaria_PN = mkPN "Zaria" ; -lin zea_PN = mkPN "Zea" ; -lin zealand_PN = mkPN "Zealand"; -- from DictEng -lin zealander_PN = mkPN "Zealander" ; -lin zealot_PN = mkPN "Zealot" ; -lin zechariah_PN = mkPN "Zechariah" ; -lin zeeman_PN = mkPN "Zeeman" ; -lin zeidae_PN = mkPN "Zeidae" ; -lin zeitgeist_PN = mkPN "Zeitgeist" ; -lin zen_PN = mkPN "Zen" ; -lin zen_buddhist_PN = mkPN "Zen Buddhist" ; -lin zenaidura_PN = mkPN "Zenaidura" ; -lin zeno_PN = mkPN "Zeno" ; -lin zeomorphi_PN = mkPN "Zeomorphi" ; -lin zephaniah_PN = mkPN "Zephaniah" ; -lin zephyr_PN = mkPN "Zephyr" ; -lin zeppelin_PN = mkPN "Zeppelin" ; -lin zeus_PN = mkPN "Zeus" ; -lin zhou_PN = mkPN "Zhou" ; -lin zhou_en_lai_PN = mkPN "Zhou En lai" ; -lin zhu_jiang_PN = mkPN "Zhu Jiang" ; -lin zhuang_PN = mkPN "Zhuang" ; -lin zhukov_PN = mkPN "Zhukov" ; -lin ziegfeld_PN = mkPN "Ziegfeld" ; -lin ziegfeld_follies_PN = mkPN "Ziegfeld Follies" ; -lin ziegler_PN = mkPN "Ziegler" ; -lin zigadenus_PN = mkPN "Zigadenus" ; -lin zimbabwe_PN = mkPN "Zimbabwe"; -- from DictEng -lin zimbabwean_A = compoundA (mkA "zimbabwean"); -- from DictEng -lin zimbabwean_PN = mkPN "Zimbabwean" ; -lin zimbabwean_dollar_PN = mkPN "Zimbabwean dollar" ; -lin zimbalist_PN = mkPN "Zimbalist" ; -lin zinfandel_PN = mkPN "Zinfandel" ; -lin zingiber_PN = mkPN "Zingiber" ; -lin zingiberaceae_PN = mkPN "Zingiberaceae" ; -lin zinjanthropus_PN = mkPN "Zinjanthropus" ; -lin zinnemann_PN = mkPN "Zinnemann" ; -lin zinsser_PN = mkPN "Zinsser" ; -lin zinzendorf_PN = mkPN "Zinzendorf" ; -lin zion_PN = mkPN "Zion" ; -lin zion_national_park_PN = mkPN "Zion National Park" ; -lin zionism_PN = mkPN "Zionism" ; -lin zionist_A = compoundA (mkA "zionist"); -- from DictEng -lin zionist_PN = mkPN "Zionist" ; -lin ziphiidae_PN = mkPN "Ziphiidae" ; -lin zizania_PN = mkPN "Zizania" ; -lin ziziphus_PN = mkPN "Ziziphus" ; -lin zoarces_PN = mkPN "Zoarces" ; -lin zoarcidae_PN = mkPN "Zoarcidae" ; -lin zoe_PN = mkPN "Zoe"; -- from DictEng -lin zola_PN = mkPN "Zola" ; -lin zolaesque_A = mkA "Zolaesque" ; -lin zollinger_ellison_syndrome_PN = mkPN "Zollinger Ellison syndrome" ; -lin zomba_PN = mkPN "Zomba" ; -lin zonotrichia_PN = mkPN "Zonotrichia" ; -lin zoomastigina_PN = mkPN "Zoomastigina" ; -lin zoroaster_PN = mkPN "Zoroaster" ; -lin zoroastrian_A = mkA "Zoroastrian" ; -lin zoroastrian_PN = mkPN "Zoroastrian" ; -lin zoroastrianism_PN = mkPN "Zoroastrianism" ; -lin zostera_PN = mkPN "Zostera" ; -lin zosteraceae_PN = mkPN "Zosteraceae" ; -lin zsigmondy_PN = mkPN "Zsigmondy" ; -lin zu_PN = mkPN "Zu" ; -lin zuider_zee_PN = mkPN "Zuider Zee" ; -lin zukerman_PN = mkPN "Zukerman" ; -lin zulu_PN = mkPN "Zulu" ; -lin zuni_PN = mkPN "Zuni" ; -lin zurich_PN = mkPN "Zurich"; -- from DictEng -lin zurvan_PN = mkPN "Zurvan" ; -lin zurvanism_PN = mkPN "Zurvanism" ; -lin zweig_PN = mkPN "Zweig" ; -lin zwingli_PN = mkPN "Zwingli" ; -lin zworykin_PN = mkPN "Zworykin" ; -lin zygnema_PN = mkPN "Zygnema" ; -lin zygnemataceae_PN = mkPN "Zygnemataceae" ; -lin zygnematales_PN = mkPN "Zygnematales" ; -lin zygocactus_PN = mkPN "Zygocactus" ; -lin zygomycetes_PN = mkPN "Zygomycetes" ; -lin zygomycota_PN = mkPN "Zygomycota" ; -lin zygophyllaceae_PN = mkPN "Zygophyllaceae" ; -lin zygophyllum_PN = mkPN "Zygophyllum" ; -lin zygoptera_PN = mkPN "Zygoptera" ; -lin a_ok_A = compoundA (mkA "a ok") ; -lin a_kempis_PN = mkPN "a Kempis" ; -lin a_bit_Adv = mkAdv "a bit" ; -lin a_bomb_N = mkN "a - bomb" "a - bombs"; -- from DictEng -lin a_cappella_A = compoundA (mkA "a cappella") ; -lin a_cappella_Adv = mkAdv "a cappella" ; -lin a_few_A = compoundA (mkA "a few") ; -lin a_fortiori_Adv = mkAdv "a fortiori"; -- from DictEng -lin a_la_carte_A = compoundA (mkA "a la carte") ; -lin a_la_carte_Adv = mkAdv "à la carte"; -- from DictEng -lin a_la_mode_Adv = mkAdv "à la mode"; -- from DictEng -lin a_level_N = mkN "a - level" "a - levels"; -- from DictEng -lin a_lot_Adv = mkAdv "a lot" ; -lin a_posteriori_A = compoundA (mkA "a posteriori"); -- from DictEng -lin a_posteriori_Adv = mkAdv "a posteriori"; -- from DictEng -lin a_priori_A = compoundA (mkA "a priori"); -- from DictEng -lin a_priori_Adv = mkAdv "a priori"; -- from DictEng -lin aa_N = mkN "aa" ; -lin aalii_N = mkN "aalii" ; -lin aardvark_N = mkN "aardvark" ; -lin aardwolf_N = mkN "aardwolf" ; -lin ab_initio_Adv = mkAdv "ab initio"; -- from DictEng -lin aba_N = mkN "aba" ; -lin abaca_N = mkN "abaca" ; -lin aback_Adv = mkAdv "aback"; -- from DictEng -lin abactinal_A = mkA "abactinal" ; -lin abacus_N = mkN "abacus" "abacuses"; -- from DictEng -lin abaft_Adv = mkAdv "abaft"; -- from DictEng -lin abaft_Prep = mkPrep "abaft"; -- from DictEng -lin abalone_N = mkN "abalone" ; -lin abampere_N = mkN "abampere" ; -lin abandon_N = mkN "abandon" ; -- from DictEng -lin abandon_V2 = mkV2 (mkV "abandon" "abandons" "abandoned" "abandoned" "abandoning"); -- from DictEng -lin abandoned_A = compoundA (mkA "abandoned"); -- from DictEng -lin abandonment_N = mkN "abandonment" ; -- from DictEng -lin abarticulation_N = mkN "abarticulation" ; -lin abase_V2 = mkV2 (mkV "abase" "abases" "abased" "abased" "abasing"); -- from DictEng -lin abasement_N = mkN "abasement" ; -- from DictEng -lin abash_V2 = mkV2 (mkV "abash" "abashes" "abashed" "abashed" "abashing"); -- from DictEng -lin abashed_A = mkA "abashed" ; -lin abashment_N = mkN "abashment" ; -lin abasia_N = mkN "abasia" ; -lin abasic_A = mkA "abasic" ; -lin abatable_A = mkA "abatable" ; -lin abate_V = mkV "abate" "abates" "abated" "abated" "abating"; -- from DictEng -lin abate_V2 = mkV2 (mkV "abate" "abates" "abated" "abated" "abating"); -- from DictEng -lin abatement_N = mkN "abatement" ; -- from DictEng -lin abator_N = mkN "abator" ; -lin abattis_N = mkN "abattis" ; -lin abattoir_N = mkN "abattoir" "abattoirs"; -- from DictEng -lin abaxial_A = mkA "abaxial" ; -lin abaxially_Adv = mkAdv "abaxially" ; -lin abaya_N = mkN "abaya" ; -lin abbacy_N = mkN "abbacy" ; -lin abbatial_A = mkA "abbatial" ; -lin abbe_N = mkN "abbé" "abbés"; -- from DictEng -lin abbess_N = mkN "abbess" "abbesses"; -- from DictEng -lin abbey_N = mkN "abbey" "abbeys"; -- from DictEng -lin abbot_N = mkN "abbot" "abbots"; -- from DictEng -lin abbreviate_V2 = mkV2 (mkV "abbreviate" "abbreviates" "abbreviated" "abbreviated" "abbreviating"); -- from DictEng -lin abbreviated_A = mkA "abbreviated" ; -lin abbreviation_N = mkN "abbreviation" "abbreviations"; -- from DictEng -lin abc_N = mkN "abc" "abcs" ; -- from DictEng -lin abcoulomb_N = mkN "abcoulomb" ; -lin abdicable_A = mkA "abdicable" ; -lin abdicate_V = mkV "abdicate" "abdicates" "abdicated" "abdicated" "abdicating"; -- from DictEng -lin abdicate_V2 = mkV2 (mkV "abdicate" "abdicates" "abdicated" "abdicated" "abdicating"); -- from DictEng -lin abdication_N = mkN "abdication" "abdications"; -- from DictEng -lin abdicator_N = mkN "abdicator" ; -lin abdomen_N = mkN "abdomen" "abdomens"; -- from DictEng -lin abdominal_A = compoundA (mkA "abdominal"); -- from DictEng -lin abdominal_N = mkN "abdominal" ; -lin abdominocentesis_N = mkN "abdominocentesis" ; -lin abdominoplasty_N = mkN "abdominoplasty" ; -lin abdominous_A = mkA "abdominous" ; -lin abdominousness_N = mkN "abdominousness" ; -lin abdominovesical_A = mkA "abdominovesical" ; -lin abducent_A = mkA "abducent" ; -lin abducent_N = mkN "abducent" ; -lin abduct_V2 = mkV2 (mkV "abduct" "abducts" "abducted" "abducted" "abducting"); -- from DictEng -lin abduction_N = mkN "abduction" "abductions"; -- from DictEng -lin abductor_N = mkN "abductor" ; -lin abeam_Adv = mkAdv "abeam"; -- from DictEng -lin abecedarian_A = mkA "abecedarian" ; -lin abecedarian_N = mkN "abecedarian" ; -lin abecedarius_N = mkN "abecedarius" ; -lin abed_Adv = mkAdv "abed"; -- from DictEng -lin abelia_N = mkN "abelia" ; -lin abelmosk_N = mkN "abelmosk" ; -lin aberrance_N = mkN "aberrance" ; -lin aberrant_A = compoundA (mkA "aberrant"); -- from DictEng -lin aberrant_N = mkN "aberrant" ; -lin aberration_N = mkN "aberration" "aberrations"; -- from DictEng -lin abet_V = mkV "abet"; -- from DictEng -lin abet_V2 = mkV2 (mkV "abet" "abets" "abetted" "abetted" "abetting"); -- from DictEng -lin abetalipoproteinemia_N = mkN "abetalipoproteinemia" ; -lin abetment_N = mkN "abetment" ; -lin abettor_N = mkN "abettor" ; -lin abeyance_N = mkN "abeyance" ; -- from DictEng -lin abeyant_A = mkA "abeyant" ; -lin abfarad_N = mkN "abfarad" ; -lin abhenry_N = mkN "abhenry" ; -lin abhor_V2 = mkV2 (mkV "abhor" "abhors" "abhorred" "abhorred" "abhorring"); -- from DictEng -lin abhorrence_N = mkN "abhorrence" ; -- from DictEng -lin abhorrent_A = compoundA (mkA "abhorrent"); -- from DictEng -lin abhorrer_N = mkN "abhorrer" ; -lin abidance_N = mkN "abidance" ; -lin abide_V = mkV "abide" "abides" "abided" "abided" "abiding"; -- from DictEng -lin abide_V2 = mkV2 (mkV "abide" "abides" "abided" "abided" "abiding"); -- from DictEng -lin abiding_A = compoundA (mkA "abiding"); -- from DictEng -lin abience_N = mkN "abience" ; -lin abient_A = mkA "abient" ; -lin ability_N = mkN "ability" "abilities"; -- from DictEng -lin abiogenesis_N = mkN "abiogenesis" ; -lin abiogenetic_A = mkA "abiogenetic" ; -lin abiogenist_N = mkN "abiogenist" ; -lin abiotrophy_N = mkN "abiotrophy" ; -lin abject_A = compoundA (mkA "abject"); -- from DictEng -lin abjection_N = mkN "abjection" "abjections"; -- from DictEng -lin abjectly_Adv = mkAdv "abjectly" ; -lin abjuration_N = mkN "abjuration" "abjurations"; -- from DictEng -lin abjure_V2 = mkV2 (mkV "abjure" "abjures" "abjured" "abjured" "abjuring"); -- from DictEng -lin abjurer_N = mkN "abjurer" ; -lin ablactation_N = mkN "ablactation" ; -lin ablated_A = mkA "ablated" ; -lin ablation_N = mkN "ablation" ; -lin ablative_A = compoundA (mkA "ablative"); -- from DictEng -lin ablative_N = mkN "ablative" "ablatives"; -- from DictEng -lin ablaut_N = mkN "ablaut" "ablauts"; -- from DictEng -lin ablaze_A = compoundA (mkA "ablaze"); -- from DictEng -lin ablaze_Adv = mkAdv "ablaze"; -- from DictEng -lin able_A = mkA "able" "abler"; -- from DictEng -lin able_bodied_A = compoundA (mkA "able - bodied"); -- from DictEng -lin ableism_N = mkN "ableism" ; -lin ablepharia_N = mkN "ablepharia" ; -lin abloom_A = mkA "abloom" ; -lin ablution_N = mkN "ablution" "ablutions"; -- from DictEng -lin ablutionary_A = mkA "ablutionary" ; -lin ably_Adv = mkAdv "ably"; -- from DictEng -lin abnegation_N = mkN "abnegation" ; -- from DictEng -lin abnegator_N = mkN "abnegator" ; -lin abnormal_A = compoundA (mkA "abnormal"); -- from DictEng -lin abnormality_N = mkN "abnormality" "abnormalities"; -- from DictEng -lin abnormally_Adv = mkAdv "abnormally" ; -lin abo_N = mkN "abo" "abos"; -- from DictEng -lin aboard_Adv = mkAdv "aboard"; -- from DictEng -lin aboard_Prep = mkPrep "aboard"; -- from DictEng -lin abocclusion_N = mkN "abocclusion" ; -lin abode_N = mkN "abode" "abodes"; -- from DictEng -lin abohm_N = mkN "abohm" ; -lin abolish_V2 = mkV2 (mkV "abolish" "abolishes" "abolished" "abolished" "abolishing"); -- from DictEng -lin abolishable_A = mkA "abolishable" ; -lin abolition_N = mkN "abolition" ; -- from DictEng -lin abolitionary_A = mkA "abolitionary" ; -lin abolitionism_N = mkN "abolitionism" ; -lin abolitionist_N = mkN "abolitionist" "abolitionists"; -- from DictEng -lin abomasal_A = mkA "abomasal" ; -lin abomasum_N = mkN "abomasum" ; -lin abominable_A = compoundA (mkA "abominable"); -- from DictEng -lin abominate_V2 = mkV2 (mkV "abominate" "abominates" "abominated" "abominated" "abominating"); -- from DictEng -lin abomination_N = mkN "abomination" "abominations"; -- from DictEng -lin abominator_N = mkN "abominator" ; -lin aborad_Adv = mkAdv "aborad" ; -lin aboral_A = mkA "aboral" ; -lin aboriginal_A = compoundA (mkA "aboriginal"); -- from DictEng -lin aboriginal_N = mkN "aboriginal" "aboriginals"; -- from DictEng -lin aborigine_N = mkN "aborigine" "aborigines"; -- from DictEng -lin abort_N = mkN "abort" ; -lin abort_V = mkV "abort" "aborts" "aborted" "aborted" "aborting"; -- from DictEng -lin abort_V2 = mkV2 (mkV "abort" "aborts" "aborted" "aborted" "aborting"); -- from DictEng -lin aborticide_N = mkN "aborticide" ; -lin abortifacient_A = mkA "abortifacient" ; -lin abortifacient_N = mkN "abortifacient" ; -lin abortion_N = mkN "abortion" "abortions"; -- from DictEng -lin abortionist_N = mkN "abortionist" "abortionists"; -- from DictEng -lin abortive_A = compoundA (mkA "abortive"); -- from DictEng -lin abortively_Adv = mkAdv "abortively" ; -lin abortus_N = mkN "abortus" ; -lin abound_V = mkV "abound" "abounds" "abounded" "abounded" "abounding"; -- from DictEng -lin abounding_A = mkA "abounding" ; -lin about_A = mkA "about" ; -lin about_AdN = mkAdN "about"; -- from DictEng -lin about_Adv = mkAdv "about"; -- from DictEng -lin about_Prep = mkPrep "about"; -- from DictEng -lin about_face_N = mkN "about - face" "about - faces"; -- from DictEng -lin about_face_N = mkN "about - face" "about - faces"; -- from DictEng -lin about_face_V = mkV "about - face" "about - faces" "about - faced" "about - faced" "about - facing"; -- from DictEng -lin above_A = mkA "above" ; -lin above_Adv = mkAdv "above"; -- from DictEng -lin above_N = mkN "above" ; -lin above_Prep = mkPrep "above"; -- from DictEng -lin above_mentioned_A = compoundA (mkA "above - mentioned"); -- from DictEng -lin above_all_Adv = mkAdv "above all" ; -lin above_board_A = compoundA (mkA "above board"); -- from DictEng -lin above_board_Adv = mkAdv "above board"; -- from DictEng -lin above_mentioned_A = compoundA (mkA "above - mentioned"); -- from DictEng -lin above_named_A = compoundA (mkA "above - named"); -- from DictEng -lin aboveboard_A = mkA "aboveboard" ; -lin aboveground_A = mkA "aboveground" ; -lin abracadabra_N = mkN "abracadabra" ; -- from DictEng -lin abrachia_N = mkN "abrachia" ; -lin abrade_V2 = mkV2 (mkV "abrade" "abrades" "abraded" "abraded" "abrading"); -- from DictEng -lin abrader_N = mkN "abrader" ; -lin abranchiate_A = mkA "abranchiate" ; -lin abrasion_N = mkN "abrasion" "abrasions"; -- from DictEng -lin abrasive_A = compoundA (mkA "abrasive"); -- from DictEng -lin abrasive_N = mkN "abrasive" "abrasives"; -- from DictEng -lin abrasiveness_N = mkN "abrasiveness" ; -lin abreast_A = mkA "abreast" ; -lin abreast_Adv = mkAdv "abreast"; -- from DictEng -lin abridge_V2 = mkV2 (mkV "abridge" "abridges" "abridged" "abridged" "abridging"); -- from DictEng -lin abridged_A = mkA "abridged" ; -lin abridgement_N = mkN "abridgement" "abridgements"; -- from DictEng -lin abridger_N = mkN "abridger" ; -lin abridgment_N = mkN "abridgment" "abridgments"; -- from DictEng -lin abroach_A = mkA "abroach" ; -lin abroad_A = mkA "abroad" ; -lin abroad_Adv = mkAdv "abroad"; -- from DictEng -lin abrocome_N = mkN "abrocome" ; -lin abrogate_V2 = mkV2 (mkV "abrogate" "abrogates" "abrogated" "abrogated" "abrogating"); -- from DictEng -lin abrogation_N = mkN "abrogation" "abrogations"; -- from DictEng -lin abrogator_N = mkN "abrogator" ; -lin abrupt_A = compoundA (mkA "abrupt"); -- from DictEng -lin abruptly_Adv = mkAdv "abruptly" ; -lin abruptness_N = mkN "abruptness" ; -- from DictEng -lin abscess_N = mkN "abscess" "abscesses"; -- from DictEng -lin abscessed_A = mkA "abscessed" ; -lin abscissa_N = mkN "abscissa" ; -lin abscission_N = mkN "abscission" ; -lin abscond_V = mkV "abscond" "absconds" "absconded" "absconded" "absconding"; -- from DictEng -lin absconder_N = mkN "absconder" ; -lin abscondment_N = mkN "abscondment" ; -lin abseiler_N = mkN "abseiler" ; -lin absence_N = mkN "absence" "absences"; -- from DictEng -lin absent_A = compoundA (mkA "absent"); -- from DictEng -lin absent_V2 = mkV2 (mkV "absent" "absents" "absented" "absented" "absenting"); -- from DictEng -lin absent_minded_A = compoundA (mkA "absent - minded"); -- from DictEng -lin absent_mindedness_N = mkN "absent - mindedness" ; -- from DictEng -lin absentee_N = mkN "absentee" "absentees"; -- from DictEng -lin absenteeism_N = mkN "absenteeism" ; -- from DictEng -lin absently_Adv = mkAdv "absently" ; -lin absentmindedness_N = mkN "absentmindedness" ; -lin absinth_N = mkN "absinth" ; -- from DictEng -lin absinthe_N = mkN "absinthe" ; -- from DictEng -lin absolute_A = compoundA (mkA "absolute"); -- from DictEng -lin absolute_N = mkN "absolute" ; -lin absolutely_Adv = mkAdv "absolutely" ; -lin absoluteness_N = mkN "absoluteness" ; -lin absolution_N = mkN "absolution" ; -- from DictEng -lin absolutism_N = mkN "absolutism" ; -- from DictEng -lin absolutist_A = mkA "absolutist" ; -lin absolutist_N = mkN "absolutist" ; -lin absolve_V2 = mkV2 (mkV "absolve" "absolves" "absolved" "absolved" "absolving"); -- from DictEng -lin absolved_A = mkA "absolved" ; -lin absolver_N = mkN "absolver" ; -lin absolvitory_A = mkA "absolvitory" ; -lin absorb_V2 = mkV2 (mkV "absorb" "absorbs" "absorbed" "absorbed" "absorbing"); -- from DictEng -lin absorbable_A = mkA "absorbable" ; -lin absorbate_N = mkN "absorbate" ; -lin absorbed_A = mkA "absorbed" ; -lin absorbefacient_A = mkA "absorbefacient" ; -lin absorbency_N = mkN "absorbency" ; -lin absorbent_A = compoundA (mkA "absorbent"); -- from DictEng -lin absorbent_N = mkN "absorbent" "absorbents"; -- from DictEng -lin absorber_N = mkN "absorber" ; -lin absorbing_A = mkA "absorbing" ; -lin absorption_N = mkN "absorption" ; -- from DictEng -lin absorptivity_N = mkN "absorptivity" ; -lin abstain_V = mkV "abstain" "abstains" "abstained" "abstained" "abstaining"; -- from DictEng -lin abstainer_N = mkN "abstainer" "abstainers"; -- from DictEng -lin abstemious_A = compoundA (mkA "abstemious"); -- from DictEng -lin abstemiously_Adv = mkAdv "abstemiously" ; -lin abstemiousness_N = mkN "abstemiousness" ; -- from DictEng -lin abstention_N = mkN "abstention" "abstentions"; -- from DictEng -lin abstinence_N = mkN "abstinence" ; -- from DictEng -lin abstinent_A = mkA "abstinent" ; -lin abstract_A = compoundA (mkA "abstract"); -- from DictEng -lin abstract_N = mkN "abstract" "abstracts"; -- from DictEng -lin abstract_V2 = mkV2 (mkV "abstract" "abstracts" "abstracted" "abstracted" "abstracting"); -- from DictEng -lin abstracted_A = compoundA (mkA "abstracted"); -- from DictEng -lin abstractedness_N = mkN "abstractedness" ; -lin abstraction_N = mkN "abstraction" "abstractions"; -- from DictEng -lin abstractionism_N = mkN "abstractionism" ; -lin abstractionist_N = mkN "abstractionist" ; -lin abstractive_A = mkA "abstractive" ; -lin abstractly_Adv = mkAdv "abstractly" ; -lin abstractness_N = mkN "abstractness" ; -lin abstractor_N = mkN "abstractor" ; -lin abstruse_A = compoundA (mkA "abstruse"); -- from DictEng -lin abstrusely_Adv = mkAdv "abstrusely" ; -lin abstruseness_N = mkN "abstruseness" ; -- from DictEng -lin absurd_A = compoundA (mkA "absurd"); -- from DictEng -lin absurd_N = mkN "absurd" ; -lin absurdity_N = mkN "absurdity" "absurdities"; -- from DictEng -lin absurdly_Adv = mkAdv "absurdly" ; -lin abulia_N = mkN "abulia" ; -lin abulic_A = mkA "abulic" ; -lin abundance_N = mkN "abundance" ; -- from DictEng -lin abundant_A = compoundA (mkA "abundant"); -- from DictEng -lin abundantly_Adv = mkAdv "abundantly" ; -lin abuse_N = mkN "abuse" "abuses"; -- from DictEng -lin abuse_V2 = mkV2 (mkV "abuse" "abuses" "abused" "abused" "abusing"); -- from DictEng -lin abused_A = mkA "abused" ; -lin abuser_N = mkN "abuser" ; -lin abusive_A = compoundA (mkA "abusive"); -- from DictEng -lin abusively_Adv = mkAdv "abusively" ; -lin abut_V = mkV "abut" "abuts" "abutted" "abutted" "abutting"; -- from DictEng -lin abutment_N = mkN "abutment" "abutments"; -- from DictEng -lin abutter_N = mkN "abutter" ; -lin abuzz_A = mkA "abuzz" ; -lin abvolt_N = mkN "abvolt" ; -lin abwatt_N = mkN "abwatt" ; -lin abysm_N = mkN "abysm" "abysms"; -- from DictEng -lin abysmal_A = compoundA (mkA "abysmal"); -- from DictEng -lin abyss_N = mkN "abyss" "abysses"; -- from DictEng -lin abyssal_A = mkA "abyssal" ; -lin acacia_N = mkN "acacia" "acacias"; -- from DictEng -lin academia_N = mkN "academia" ; -lin academic_A = compoundA (mkA "academic"); -- from DictEng -lin academic_N = mkN "academic" "academics"; -- from DictEng -lin academically_Adv = mkAdv "academically"; -- from DictEng -lin academician_N = mkN "academician" "academicians"; -- from DictEng -lin academicianship_N = mkN "academicianship" ; -lin academy_N = mkN "academy" "academies"; -- from DictEng -lin acanthion_N = mkN "acanthion" ; -lin acanthocephalan_N = mkN "acanthocephalan" ; -lin acanthocyte_N = mkN "acanthocyte" ; -lin acanthocytosis_N = mkN "acanthocytosis" ; -lin acanthoid_A = mkA "acanthoid" ; -lin acantholysis_N = mkN "acantholysis" ; -lin acanthoma_N = mkN "acanthoma" ; -lin acanthosis_N = mkN "acanthosis" ; -lin acanthotic_A = mkA "acanthotic" ; -lin acanthus_N = mkN "acanthus" ; -lin acapnic_A = mkA "acapnic" ; -lin acardia_N = mkN "acardia" ; -lin acariasis_N = mkN "acariasis" ; -lin acaricide_N = mkN "acaricide" ; -lin acarid_N = mkN "acarid" ; -lin acarine_N = mkN "acarine" ; -lin acarophobia_N = mkN "acarophobia" ; -lin acarpelous_A = mkA "acarpelous" ; -lin acarpous_A = mkA "acarpous" ; -lin acarus_N = mkN "acarus" ; -lin acatalectic_A = mkA "acatalectic" ; -lin acatalectic_N = mkN "acatalectic" ; -lin acataphasia_N = mkN "acataphasia" ; -lin acathexia_N = mkN "acathexia" ; -lin acathexis_N = mkN "acathexis" ; -lin acaudate_A = mkA "acaudate" ; -lin acaulescent_A = mkA "acaulescent" ; -lin accede_V = mkV "accede" "accedes" "acceded" "acceded" "acceding"; -- from DictEng -lin accelerando_A = compoundA (mkA "accelerando"); -- from DictEng -lin accelerando_Adv = mkAdv "accelerando"; -- from DictEng -lin accelerando_N = mkN "accelerando" "accelerandos"; -- from DictEng -lin accelerate_V = mkV "accelerate" "accelerates" "accelerated" "accelerated" "accelerating"; -- from DictEng -lin accelerate_V2 = mkV2 (mkV "accelerate" "accelerates" "accelerated" "accelerated" "accelerating"); -- from DictEng -lin accelerated_A = mkA "accelerated" ; -lin acceleration_N = mkN "acceleration" ; -- from DictEng -lin accelerative_A = mkA "accelerative" ; -lin accelerator_N = mkN "accelerator" "accelerators"; -- from DictEng -lin accelerometer_N = mkN "accelerometer" ; -lin accent_N = mkN "accent" "accents"; -- from DictEng -lin accent_V2 = mkV2 (mkV "accent" "accents" "accented" "accented" "accenting"); -- from DictEng -lin accentor_N = mkN "accentor" ; -lin accentual_A = mkA "accentual" ; -lin accentuate_V2 = mkV2 (mkV "accentuate" "accentuates" "accentuated" "accentuated" "accentuating"); -- from DictEng -lin accentuation_N = mkN "accentuation" "accentuations"; -- from DictEng -lin accept_V = mkV "accept" "accepts" "accepted" "accepted" "accepting"; -- from DictEng -lin accept_V2 = mkV2 (mkV "accept" "accepts" "accepted" "accepted" "accepting"); -- from DictEng -lin accept_VS = mkVS (mkV "accept" "accepts" "accepted" "accepted" "accepting"); -- from DictEng -lin acceptability_N = mkN "acceptability" ; -- from DictEng -lin acceptable_A = compoundA (mkA "acceptable"); -- from DictEng -lin acceptably_Adv = mkAdv "acceptably" ; -lin acceptance_N = mkN "acceptance" ; -- from DictEng -lin acceptation_N = mkN "acceptation" "acceptations"; -- from DictEng -lin accepted_A = mkA "accepted" ; -lin accepting_A = mkA "accepting" ; -lin acceptive_A = mkA "acceptive" ; -lin acceptor_N = mkN "acceptor" ; -lin access_N = mkN "access" ; -- from DictEng -lin access_V2 = mkV2 (mkV "access"); -- from DictEng -lin accessary_A = mkA "accessary" ; -lin accessary_N = mkN "accessary" "accessaries"; -- from DictEng -lin accessibility_N = mkN "accessibility" ; -- from DictEng -lin accessible_A = compoundA (mkA "accessible"); -- from DictEng -lin accession_N = mkN "accession" "accessions"; -- from DictEng -lin accessional_A = mkA "accessional" ; -lin accessorial_A = mkA "accessorial" ; -lin accessory_A = mkA "accessory" ; -lin accessory_N = mkN "accessory" "accessories"; -- from DictEng -lin accidence_N = mkN "accidence" ; -- from DictEng -lin accident_N = mkN "accident" "accidents"; -- from DictEng -lin accident_prone_A = compoundA (mkA "accident - prone"); -- from DictEng -lin accident_prone_A = compoundA (mkA "accident - prone"); -- from DictEng -lin accidental_A = compoundA (mkA "accidental"); -- from DictEng -lin accidental_N = mkN "accidental" ; -lin accipitrine_A = mkA "accipitrine" ; -lin acclaim_N = mkN "acclaim" ; -- from DictEng -lin acclaim_V2 = mkV2 (mkV "acclaim" "acclaims" "acclaimed" "acclaimed" "acclaiming"); -- from DictEng -lin acclamation_N = mkN "acclamation" ; -- from DictEng -lin acclimate_V = mkV "acclimate" "acclimates" "acclimated" "acclimated" "acclimating"; -- from DictEng -lin acclimate_V2 = mkV2 (mkV "acclimate" "acclimates" "acclimated" "acclimated" "acclimating"); -- from DictEng -lin acclimation_N = mkN "acclimation" ; -- from DictEng -lin acclimatization_N = mkN "acclimatization" ; -- from DictEng -lin acclimatize_V = mkV "acclimatize" "acclimatizes" "acclimatized" "acclimatized" "acclimatizing"; -- from DictEng -lin acclimatize_V2 = mkV2 (mkV "acclimatize" "acclimatizes" "acclimatized" "acclimatized" "acclimatizing"); -- from DictEng -lin acclivitous_A = mkA "acclivitous" ; -lin acclivity_N = mkN "acclivity" "acclivities"; -- from DictEng -lin accolade_N = mkN "accolade" "accolades"; -- from DictEng -lin accommodate_V = mkV "accommodate"; -- from DictEng -lin accommodate_V2 = mkV2 (mkV "accommodate" "accommodates" "accommodated" "accommodated" "accommodating"); -- from DictEng -lin accommodating_A = compoundA (mkA "accommodating"); -- from DictEng -lin accommodation_N = mkN "accommodation" "accommodations"; -- from DictEng -lin accommodational_A = mkA "accommodational" ; -lin accommodative_A = mkA "accommodative" ; -lin accompanied_A = mkA "accompanied" ; -lin accompaniment_N = mkN "accompaniment" "accompaniments"; -- from DictEng -lin accompanist_N = mkN "accompanist" "accompanists"; -- from DictEng -lin accompany_V2 = mkV2 (mkV "accompany" "accompanies" "accompanied" "accompanied" "accompanying"); -- from DictEng -lin accomplice_N = mkN "accomplice" "accomplices"; -- from DictEng -lin accomplish_V2 = mkV2 (mkV "accomplish" "accomplishes" "accomplished" "accomplished" "accomplishing"); -- from DictEng -lin accomplishable_A = mkA "accomplishable" ; -lin accomplished_A = compoundA (mkA "accomplished"); -- from DictEng -lin accomplishment_N = mkN "accomplishment" "accomplishments"; -- from DictEng -lin accord_N = mkN "accord" "accords"; -- from DictEng -lin accord_V = mkV "accord" "accords" "accorded" "accorded" "according"; -- from DictEng -lin accord_V2 = mkV2 (mkV "accord" "accords" "accorded" "accorded" "according"); -- from DictEng -lin accordance_N = mkN "accordance" "accordances"; -- from DictEng -lin accordant_A = mkA "accordant" ; -lin according_A = mkA "according" ; -lin accordingly_Adv = mkAdv "accordingly"; -- from DictEng -lin accordion_N = mkN "accordion" "accordions"; -- from DictEng -lin accordionist_N = mkN "accordionist" ; -lin accost_V2 = mkV2 (mkV "accost" "accosts" "accosted" "accosted" "accosting"); -- from DictEng -lin accouchement_N = mkN "accouchement" "accouchements"; -- from DictEng -lin account_N = mkN "account" "accounts"; -- from DictEng -lin account_V = mkV "account" "accounts" "accounted" "accounted" "accounting"; -- from DictEng -lin account_V2 = mkV2 (mkV "account" "accounts" "accounted" "accounted" "accounting"); -- from DictEng -lin accountability_N = mkN "accountability" ; -lin accountable_A = compoundA (mkA "accountable"); -- from DictEng -lin accountancy_N = mkN "accountancy" ; -- from DictEng -lin accountant_N = mkN "accountant" "accountants"; -- from DictEng -lin accountantship_N = mkN "accountantship" ; -lin accounting_N = mkN "accounting" ; -lin accoutered_A = mkA "accoutered" ; -lin accredit_V2 = mkV2 (mkV "accredit" "accredits" "accredited" "accredited" "accrediting"); -- from DictEng -lin accreditation_N = mkN "accreditation" ; -lin accredited_A = compoundA (mkA "accredited"); -- from DictEng -lin accretion_N = mkN "accretion" "accretions"; -- from DictEng -lin accretionary_A = mkA "accretionary" ; -lin accretive_A = mkA "accretive" ; -lin accrue_V = mkV "accrue" "accrues" "accrued" "accrued" "accruing"; -- from DictEng -lin accrue_V2 = mkV2 (mkV "accrue" "accrues" "accrued" "accrued" "accruing"); -- from DictEng -lin accrued_A = mkA "accrued" ; -lin acculturation_N = mkN "acculturation" ; -lin acculturational_A = mkA "acculturational" ; -lin accumbent_A = mkA "accumbent" ; -lin accumulate_V = mkV "accumulate" "accumulates" "accumulated" "accumulated" "accumulating"; -- from DictEng -lin accumulate_V2 = mkV2 (mkV "accumulate" "accumulates" "accumulated" "accumulated" "accumulating"); -- from DictEng -lin accumulation_N = mkN "accumulation" "accumulations"; -- from DictEng -lin accumulative_A = compoundA (mkA "accumulative"); -- from DictEng -lin accumulator_N = mkN "accumulator" "accumulators"; -- from DictEng -lin accuracy_N = mkN "accuracy" "accuracies"; -- from DictEng -lin accurate_A = compoundA (mkA "accurate"); -- from DictEng -lin accurately_Adv = mkAdv "accurately" ; -lin accurse_V2 = mkV2 (mkV "accurse") ; -lin accursed_A = compoundA (mkA "accursed"); -- from DictEng -lin accurst_A = compoundA (mkA "accurst"); -- from DictEng -lin accusation_N = mkN "accusation" "accusations"; -- from DictEng -lin accusative_A = compoundA (mkA "accusative"); -- from DictEng -lin accusative_N = mkN "accusative" "accusatives"; -- from DictEng -lin accusatorial_A = mkA "accusatorial" ; -lin accuse_V2 = mkV2 (mkV "accuse" "accuses" "accused" "accused" "accusing"); -- from DictEng -lin accused_N = mkN "accused" ; -lin accuser_N = mkN "accuser" "accusers"; -- from DictEng -lin accusingly_Adv = mkAdv "accusingly"; -- from DictEng -lin accustom_V2 = mkV2 (mkV "accustom" "accustoms" "accustomed" "accustomed" "accustoming"); -- from DictEng -lin accustomed_A = compoundA (mkA "accustomed"); -- from DictEng -lin ace_A = mkA "ace" ; -lin ace_N = mkN "ace" "aces"; -- from DictEng -lin acebutolol_N = mkN "acebutolol" ; -lin acentric_A = mkA "acentric" ; -lin acephalia_N = mkN "acephalia" ; -lin acephalous_A = mkA "acephalous" ; -lin acerate_A = mkA "acerate" ; -lin acerb_A = mkA "acerb" ; -lin acerbity_N = mkN "acerbity" "acerbities"; -- from DictEng -lin acerola_N = mkN "acerola" ; -lin acervate_A = mkA "acervate" ; -lin acervulus_N = mkN "acervulus" ; -lin acetabular_A = mkA "acetabular" ; -lin acetabulum_N = mkN "acetabulum" ; -lin acetal_N = mkN "acetal" ; -lin acetaldehyde_N = mkN "acetaldehyde" ; -lin acetaldol_N = mkN "acetaldol" ; -lin acetamide_N = mkN "acetamide" ; -lin acetaminophen_N = mkN "acetaminophen" ; -lin acetanilide_N = mkN "acetanilide" ; -lin acetate_N = mkN "acetate" "acetates"; -- from DictEng -lin acetic_A = compoundA (mkA "acetic"); -- from DictEng -lin acetin_N = mkN "acetin" ; -lin acetone_N = mkN "acetone" ; -lin acetonic_A = mkA "acetonic" ; -lin acetophenetidin_N = mkN "acetophenetidin" ; -lin acetose_A = mkA "acetose" ; -lin acetum_N = mkN "acetum" ; -lin acetyl_N = mkN "acetyl" ; -lin acetylation_N = mkN "acetylation" ; -lin acetylcholine_N = mkN "acetylcholine" ; -lin acetylene_N = mkN "acetylene" ; -- from DictEng -lin acetylenic_A = mkA "acetylenic" ; -lin acetylic_A = mkA "acetylic" ; -lin ache_N = mkN "ache" "aches"; -- from DictEng -lin ache_V = mkV "ache" "aches" "ached" "ached" "aching"; -- from DictEng -lin achene_N = mkN "achene" ; -lin achenial_A = mkA "achenial" ; -lin achievability_N = mkN "achievability" ; -lin achievable_A = compoundA (mkA "achievable"); -- from DictEng -lin achieve_V2 = mkV2 (mkV "achieve" "achieves" "achieved" "achieved" "achieving"); -- from DictEng -lin achievement_N = mkN "achievement" "achievements"; -- from DictEng -lin achiever_N = mkN "achiever" ; -lin achillea_N = mkN "achillea" ; -lin achimenes_N = mkN "achimenes" ; -lin aching_A = mkA "aching" ; -lin achira_N = mkN "achira" ; -lin achlamydeous_A = mkA "achlamydeous" ; -lin achlorhydria_N = mkN "achlorhydria" ; -lin achlorhydric_A = mkA "achlorhydric" ; -lin acholia_N = mkN "acholia" ; -lin achondrite_N = mkN "achondrite" ; -lin achondritic_A = mkA "achondritic" ; -lin achondroplasia_N = mkN "achondroplasia" ; -lin achondroplastic_A = mkA "achondroplastic" ; -lin achromatic_A = mkA "achromatic" ; -lin achromatin_N = mkN "achromatin" ; -lin achromatinic_A = mkA "achromatinic" ; -lin achromatous_A = mkA "achromatous" ; -lin achromia_N = mkN "achromia" ; -lin achromic_A = mkA "achromic" ; -lin achylia_N = mkN "achylia" ; -lin acicula_N = mkN "acicula" ; -lin aciculate_A = mkA "aciculate" ; -lin acid_A = compoundA (mkA "acid"); -- from DictEng -lin acid_N = mkN "acid" "acids"; -- from DictEng -lin acid_fast_A = compoundA (mkA "acid fast") ; -lin acid_forming_A = compoundA (mkA "acid forming") ; -lin acid_loving_A = compoundA (mkA "acid loving") ; -lin acid_tasting_A = compoundA (mkA "acid tasting") ; -lin acidemia_N = mkN "acidemia" ; -lin acidic_A = compoundA (mkA "acidic"); -- from DictEng -lin acidification_N = mkN "acidification" ; -lin acidify_V = mkV "acidify" "acidifies" "acidified" "acidified" "acidifying"; -- from DictEng -lin acidify_V2 = mkV2 (mkV "acidify" "acidifies" "acidified" "acidified" "acidifying"); -- from DictEng -lin acidimetric_A = mkA "acidimetric" ; -lin acidimetry_N = mkN "acidimetry" ; -lin acidity_N = mkN "acidity" ; -- from DictEng -lin acidophil_N = mkN "acidophil" ; -lin acidophilic_A = mkA "acidophilic" ; -lin acidophilus_N = mkN "acidophilus" ; -lin acidosis_N = mkN "acidosis" ; -lin acidotic_A = mkA "acidotic" ; -lin acidulated_A = compoundA (mkA "acidulated"); -- from DictEng -lin acidulous_A = compoundA (mkA "acidulous"); -- from DictEng -lin acinar_A = mkA "acinar" ; -lin acinus_N = mkN "acinus" ; -lin ack_ack_N = mkN "ack - ack" ; -- from DictEng -lin ackee_N = mkN "ackee" ; -lin acknowledge_V = mkV "acknowledge"; -- from DictEng -lin acknowledge_V2 = mkV2 (mkV "acknowledge" "acknowledges" "acknowledged" "acknowledged" "acknowledging"); -- from DictEng -lin acknowledge_VS = mkVS (mkV "acknowledge"); -- from DictEng -lin acknowledgeable_A = mkA "acknowledgeable" ; -lin acknowledged_A = mkA "acknowledged" ; -lin acknowledgement_N = mkN "acknowledgement" "acknowledgements"; -- from DictEng -lin acknowledgment_N = mkN "acknowledgment" ; -lin acme_N = mkN "acme" "IRREG"; -- from DictEng -lin acne_N = mkN "acne" ; -- from DictEng -lin acned_A = mkA "acned" ; -lin acneiform_A = mkA "acneiform" ; -lin acold_A = mkA "acold" ; -lin acolyte_N = mkN "acolyte" "acolytes"; -- from DictEng -lin aconite_N = mkN "aconite" "aconites"; -- from DictEng -lin acorea_N = mkN "acorea" ; -lin acorn_N = mkN "acorn" "acorns"; -- from DictEng -lin acorn_shaped_A = compoundA (mkA "acorn shaped") ; -lin acorn_cup_N = mkN "acorn - cup" "acorn - cups"; -- from DictEng -lin acoustic_A = compoundA (mkA "acoustic"); -- from DictEng -lin acoustic_N = mkN "acoustic" "acoustics"; -- from DictEng -lin acoustically_Adv = mkAdv "acoustically" ; -lin acoustician_N = mkN "acoustician" ; -lin acoustics_N = mkN "acoustics" "acoustics"; -- from DictEng -lin acquaint_V2 = mkV2 (mkV "acquaint" "acquaints" "acquainted" "acquainted" "acquainting"); -- from DictEng -lin acquaintance_N = mkN "acquaintance" "acquaintances"; -- from DictEng -lin acquaintanceship_N = mkN "acquaintanceship" "acquaintanceships"; -- from DictEng -lin acquainted_A = mkA "acquainted" ; -lin acquiesce_V = mkV "acquiesce" "acquiesces" "acquiesced" "acquiesced" "acquiescing"; -- from DictEng -lin acquiescence_N = mkN "acquiescence" "acquiescences"; -- from DictEng -lin acquiescent_A = compoundA (mkA "acquiescent"); -- from DictEng -lin acquirable_A = mkA "acquirable" ; -lin acquire_V2 = mkV2 (mkV "acquire" "acquires" "acquired" "acquired" "acquiring"); -- from DictEng -lin acquired_A = mkA "acquired" ; -lin acquirement_N = mkN "acquirement" "acquirements"; -- from DictEng -lin acquirer_N = mkN "acquirer" ; -lin acquiring_N = mkN "acquiring" ; -lin acquisition_N = mkN "acquisition" "acquisitions"; -- from DictEng -lin acquisitive_A = compoundA (mkA "acquisitive"); -- from DictEng -lin acquisitiveness_N = mkN "acquisitiveness" ; -lin acquit_V2 = mkV2 (mkV "acquit" "acquits" "acquitted" "acquitted" "acquitting"); -- from DictEng -lin acquittal_N = mkN "acquittal" "acquittals"; -- from DictEng -lin acquittance_N = mkN "acquittance" ; -lin acquitted_A = mkA "acquitted" ; -lin acre_N = mkN "acre" "acres"; -- from DictEng -lin acre_foot_N = mkN "acre foot" ; -lin acreage_N = mkN "acreage" ; -- from DictEng -lin acrid_A = compoundA (mkA "acrid"); -- from DictEng -lin acridity_N = mkN "acridity" ; -lin acrimonious_A = compoundA (mkA "acrimonious"); -- from DictEng -lin acrimony_N = mkN "acrimony" ; -- from DictEng -lin acritical_A = mkA "acritical" ; -lin acroanesthesia_N = mkN "acroanesthesia" ; -lin acrobat_N = mkN "acrobat" "acrobats"; -- from DictEng -lin acrobatic_A = compoundA (mkA "acrobatic"); -- from DictEng -lin acrobatics_N = mkN "acrobatics" "acrobatics"; -- from DictEng -lin acrocarp_N = mkN "acrocarp" ; -lin acrocarpous_A = mkA "acrocarpous" ; -lin acrocentric_A = mkA "acrocentric" ; -lin acrocyanosis_N = mkN "acrocyanosis" ; -lin acrodont_N = mkN "acrodont" ; -lin acrogen_N = mkN "acrogen" ; -lin acrogenic_A = mkA "acrogenic" ; -lin acromegalic_A = mkA "acromegalic" ; -lin acromegaly_N = mkN "acromegaly" ; -lin acromicria_N = mkN "acromicria" ; -lin acromion_N = mkN "acromion" ; -lin acromphalus_N = mkN "acromphalus" ; -lin acromyotonia_N = mkN "acromyotonia" ; -lin acronym_N = mkN "acronym" "acronyms"; -- from DictEng -lin acronymic_A = mkA "acronymic" ; -lin acropetal_A = mkA "acropetal" ; -lin acrophobia_N = mkN "acrophobia" ; -lin acrophobic_A = mkA "acrophobic" ; -lin acrophony_N = mkN "acrophony" ; -lin acropolis_N = mkN "acropolis" "acropolises"; -- from DictEng -lin acroscopic_A = mkA "acroscopic" ; -lin acrosome_N = mkN "acrosome" ; -lin across_Adv = mkAdv "across"; -- from DictEng -lin across_Prep = mkPrep "across"; -- from DictEng -lin across_the_board_A = compoundA (mkA "across the board") ; -lin across_the_board_Adv = mkAdv "across the board" ; -lin acrostic_N = mkN "acrostic" "acrostics"; -- from DictEng -lin acrylamide_N = mkN "acrylamide" ; -lin acrylic_N = mkN "acrylic" "acrylics"; -- from DictEng -lin acrylonitrile_butadiene_styrene_N = mkN "acrylonitrile butadiene styrene" ; -lin act_N = mkN "act" "acts"; -- from DictEng -lin act_V = mkV "act" "acts" "acted" "acted" "acting"; -- from DictEng -lin act_V2 = mkV2 (mkV "act" "acts" "acted" "acted" "acting"); -- from DictEng -lin act_V2V = mkV2V (mkV "act" "acts" "acted" "acted" "acting") noPrep to_Prep ; -- from DictEng -lin act_VA = mkVA (mkV "act" "acts" "acted" "acted" "acting"); -- from DictEng -lin act_of_god_PN = mkPN "act of God" ; -lin actable_A = mkA "actable" ; -lin actin_N = mkN "actin" ; -lin actinal_A = mkA "actinal" ; -lin acting_A = compoundA (mkA "acting"); -- from DictEng -lin acting_N = mkN "acting" ; -- from DictEng -lin actinia_N = mkN "actinia" ; -lin actinic_A = compoundA (mkA "actinic"); -- from DictEng -lin actinism_N = mkN "actinism" ; -- from DictEng -lin actinium_N = mkN "actinium" ; -lin actinoid_A = mkA "actinoid" ; -lin actinoid_N = mkN "actinoid" ; -lin actinolite_N = mkN "actinolite" ; -lin actinometer_N = mkN "actinometer" ; -lin actinometric_A = mkA "actinometric" ; -lin actinometry_N = mkN "actinometry" ; -lin actinomorphic_A = mkA "actinomorphic" ; -lin actinomyces_N = mkN "actinomyces" ; -lin actinomycetal_A = mkA "actinomycetal" ; -lin actinomycete_N = mkN "actinomycete" ; -lin actinomycin_N = mkN "actinomycin" ; -lin actinomycosis_N = mkN "actinomycosis" ; -lin actinomycotic_A = mkA "actinomycotic" ; -lin actinomyxidian_N = mkN "actinomyxidian" ; -lin actinopod_N = mkN "actinopod" ; -lin action_N = mkN "action" "actions"; -- from DictEng -lin actionable_A = compoundA (mkA "actionable"); -- from DictEng -lin activate_V2 = mkV2 (mkV "activate" "activates" "activated" "activated" "activating"); -- from DictEng -lin activated_A = mkA "activated" ; -lin activating_A = mkA "activating" ; -lin activation_N = mkN "activation" "activations"; -- from DictEng -lin activator_N = mkN "activator" ; -lin active_A = compoundA (mkA "active"); -- from DictEng -lin active_N = mkN "active" ; -lin actively_Adv = mkAdv "actively" ; -lin activeness_N = mkN "activeness" ; -lin activism_N = mkN "activism" ; -lin activist_A = mkA "activist" ; -lin activist_N = mkN "activist" "activists"; -- from DictEng -lin activity_N = mkN "activity" "activities"; -- from DictEng -lin actomyosin_N = mkN "actomyosin" ; -lin actor_N = mkN "actor" "actors"; -- from DictEng -lin actress_N = mkN "actress" "actresses"; -- from DictEng -lin actual_A = compoundA (mkA "actual"); -- from DictEng -lin actuality_N = mkN "actuality" "actualities"; -- from DictEng -lin actually_Adv = mkAdv "actually" ; -lin actuarial_A = compoundA (mkA "actuarial"); -- from DictEng -lin actuary_N = mkN "actuary" "actuaries"; -- from DictEng -lin actuate_V2 = mkV2 (mkV "actuate" "actuates" "actuated" "actuated" "actuating"); -- from DictEng -lin actuated_A = mkA "actuated" ; -lin actuator_N = mkN "actuator" ; -lin acuate_A = mkA "acuate" ; -lin acuity_N = mkN "acuity" ; -- from DictEng -lin aculea_N = mkN "aculea" ; -lin aculeate_A = mkA "aculeate" ; -lin aculeus_N = mkN "aculeus" ; -lin acumen_N = mkN "acumen" ; -- from DictEng -lin acuminate_A = mkA "acuminate" ; -lin acupressure_N = mkN "acupressure" ; -lin acupuncture_N = mkN "acupuncture" ; -- from DictEng -lin acute_A = compoundA (mkA "acute"); -- from DictEng -lin acutely_Adv = mkAdv "acutely" ; -lin acuteness_N = mkN "acuteness" ; -- from DictEng -lin acyclic_A = mkA "acyclic" ; -lin acyclovir_N = mkN "acyclovir" ; -lin acyl_N = mkN "acyl" ; -lin acylation_N = mkN "acylation" ; -lin ad_N = mkN "ad" "ads"; -- from DictEng -lin ad_lib_A = compoundA (mkA "ad - lib"); -- from DictEng -lin ad_lib_N = mkN "ad lib" ; -lin ad_hoc_A = compoundA (mkA "ad hoc"); -- from DictEng -lin ad_hoc_Adv = mkAdv "ad hoc"; -- from DictEng -lin ad_hominem_A = compoundA (mkA "ad hominem") ; -lin ad_infinitum_Adv = mkAdv "ad infinitum"; -- from DictEng -lin ad_interim_Adv = mkAdv "ad interim"; -- from DictEng -lin ad_lib_A = compoundA (mkA "ad - lib"); -- from DictEng -lin ad_lib_Adv = mkAdv "ad lib"; -- from DictEng -lin ad_lib_V = mkV "ad - lib" "ad - libs" "ad - libbed" "ad - libbed" "ad - libbing"; -- from DictEng -lin ad_libitum_Adv = mkAdv "ad libitum"; -- from DictEng -lin ad_man_N = mkN "ad - man" "ad - men"; -- from DictEng -lin ad_nauseam_Adv = mkAdv "ad nauseam"; -- from DictEng -lin ad_val_Adv = mkAdv "ad val" ; -lin ad_valorem_Adv = mkAdv "ad valorem"; -- from DictEng -lin adactylia_N = mkN "adactylia" ; -lin adactylous_A = mkA "adactylous" ; -lin adage_N = mkN "adage" "adages"; -- from DictEng -lin adagio_A = compoundA (mkA "adagio"); -- from DictEng -lin adagio_Adv = mkAdv "adagio"; -- from DictEng -lin adagio_N = mkN "adagio" "adagios"; -- from DictEng -lin adamance_N = mkN "adamance" ; -lin adamant_A = compoundA (mkA "adamant"); -- from DictEng -lin adamant_N = mkN "adamant" "adamants"; -- from DictEng -lin adamantine_A = compoundA (mkA "adamantine"); -- from DictEng -lin adamantly_Adv = mkAdv "adamantly" ; -lin adapt_V = mkV "adapt"; -- from DictEng -lin adapt_V2 = mkV2 (mkV "adapt" "adapts" "adapted" "adapted" "adapting"); -- from DictEng -lin adaptability_N = mkN "adaptability" ; -- from DictEng -lin adaptable_A = compoundA (mkA "adaptable"); -- from DictEng -lin adaptation_N = mkN "adaptation" "adaptations"; -- from DictEng -lin adaptational_A = mkA "adaptational" ; -lin adapted_A = mkA "adapted" ; -lin adapter_N = mkN "adapter" "adapters"; -- from DictEng -lin adaptive_A = mkA "adaptive" ; -lin adaptor_N = mkN "adaptor" "adaptors"; -- from DictEng -lin adaxial_A = mkA "adaxial" ; -lin adaxially_Adv = mkAdv "adaxially" ; -lin add_V = mkV "add"; -- from DictEng -lin add_V2 = mkV2 (mkV "add"); -- from DictEng -lin add_VS = mkVS (mkV "add"); -- from DictEng -lin addable_A = mkA "addable" ; -lin addax_N = mkN "addax" ; -lin addend_N = mkN "addend" ; -lin addendum_N = mkN "addendum" "addenda" {- FIXME: guessed plural form -}; -- from DictEng -lin adder_N = mkN "adder" "adders"; -- from DictEng -lin addict_N = mkN "addict" "addicts"; -- from DictEng -lin addict_V2 = mkV2 (mkV "addict" "addicts" "addicted" "addicted" "addicting"); -- from DictEng -lin addicted_A = mkA "addicted" ; -lin addiction_N = mkN "addiction" "addictions"; -- from DictEng -lin addictive_A = compoundA (mkA "addictive"); -- from DictEng -lin adding_machine_N = mkN "adding - machine" "adding - machines"; -- from DictEng -lin addition_N = mkN "addition" "additions"; -- from DictEng -lin additional_A = compoundA (mkA "additional"); -- from DictEng -lin additionally_Adv = mkAdv "additionally" ; -lin additive_A = mkA "additive" ; -lin additive_N = mkN "additive" "additives"; -- from DictEng -lin addle_A = compoundA (mkA "addle"); -- from DictEng -lin addle_V = mkV "addle" "addles" "addled" "addled" "addling"; -- from DictEng -lin addle_V2 = mkV2 (mkV "addle" "addles" "addled" "addled" "addling"); -- from DictEng -lin addle_head_N = mkN "addle - head" "addle - heads"; -- from DictEng -lin addle_brained_A = compoundA (mkA "addle - brained"); -- from DictEng -lin addle_head_N = mkN "addle - head" "addle - heads"; -- from DictEng -lin addle_pated_A = compoundA (mkA "addle - pated"); -- from DictEng -lin addlebrained_A = mkA "addlebrained" ; -lin addled_A = mkA "addled" ; -lin address_N = mkN "address" "addresses"; -- from DictEng -lin address_V2 = mkV2 (mkV "address" "addresses" "addressed" "addressed" "addressing"); -- from DictEng -lin addressable_A = mkA "addressable" ; -lin addressed_A = mkA "addressed" ; -lin addressee_N = mkN "addressee" "addressees"; -- from DictEng -lin addressograph_N = mkN "addressograph" "addressographs"; -- from DictEng -lin adduce_V2 = mkV2 (mkV "adduce" "adduces" "adduced" "adduced" "adducing"); -- from DictEng -lin adducent_A = mkA "adducent" ; -lin adducer_N = mkN "adducer" ; -lin adducing_N = mkN "adducing" ; -lin adduct_N = mkN "adduct" ; -lin adduction_N = mkN "adduction" ; -lin adductor_N = mkN "adductor" ; -lin adelgid_N = mkN "adelgid" ; -lin adenine_N = mkN "adenine" ; -lin adenitis_N = mkN "adenitis" ; -lin adenocarcinoma_N = mkN "adenocarcinoma" ; -lin adenocarcinomatous_A = mkA "adenocarcinomatous" ; -lin adenoid_A = mkA "adenoid" ; -lin adenoidal_A = compoundA (mkA "adenoidal"); -- from DictEng -lin adenoidectomy_N = mkN "adenoidectomy" ; -lin adenoma_N = mkN "adenoma" ; -lin adenomegaly_N = mkN "adenomegaly" ; -lin adenopathy_N = mkN "adenopathy" ; -lin adenosine_N = mkN "adenosine" ; -lin adenovirus_N = mkN "adenovirus" ; -lin adept_A = compoundA (mkA "adept"); -- from DictEng -lin adept_N = mkN "adept" "adepts"; -- from DictEng -lin adeptness_N = mkN "adeptness" ; -lin adequacy_N = mkN "adequacy" ; -- from DictEng -lin adequate_A = compoundA (mkA "adequate"); -- from DictEng -lin adequate_to_A = compoundA (mkA "adequate to") ; -lin adequately_Adv = mkAdv "adequately" ; -lin adesite_N = mkN "adesite" ; -lin adhere_V = mkV "adhere" "adheres" "adhered" "adhered" "adhering"; -- from DictEng -lin adherence_N = mkN "adherence" "adherences"; -- from DictEng -lin adherent_A = mkA "adherent" ; -lin adherent_N = mkN "adherent" "adherents"; -- from DictEng -lin adhesion_N = mkN "adhesion" "adhesions"; -- from DictEng -lin adhesive_A = compoundA (mkA "adhesive"); -- from DictEng -lin adhesive_N = mkN "adhesive" "adhesives"; -- from DictEng -lin adhesiveness_N = mkN "adhesiveness" ; -lin adhocracy_N = mkN "adhocracy" ; -lin adiabatic_A = mkA "adiabatic" ; -lin adience_N = mkN "adience" ; -lin adient_A = mkA "adient" ; -lin adieu_N = mkN "adieu" "adieus"; -- from DictEng -lin adipose_A = compoundA (mkA "adipose"); -- from DictEng -lin adiposity_N = mkN "adiposity" ; -lin adit_N = mkN "adit" ; -lin adjacency_N = mkN "adjacency" ; -lin adjacent_A = compoundA (mkA "adjacent"); -- from DictEng -lin adjectival_A = compoundA (mkA "adjectival"); -- from DictEng -lin adjectivally_Adv = mkAdv "adjectivally" ; -lin adjective_A = mkA "adjective" ; -lin adjective_N = mkN "adjective" "adjectives"; -- from DictEng -lin adjectively_Adv = mkAdv "adjectively" ; -lin adjoin_V = mkV "adjoin" "adjoins" "adjoined" "adjoined" "adjoining"; -- from DictEng -lin adjoin_V2 = mkV2 (mkV "adjoin" "adjoins" "adjoined" "adjoined" "adjoining"); -- from DictEng -lin adjoining_A = compoundA (mkA "adjoining"); -- from DictEng -lin adjourn_V = mkV "adjourn" "adjourns" "adjourned" "adjourned" "adjourning"; -- from DictEng -lin adjourn_V2 = mkV2 (mkV "adjourn" "adjourns" "adjourned" "adjourned" "adjourning"); -- from DictEng -lin adjournment_N = mkN "adjournment" "adjournments"; -- from DictEng -lin adjudge_V2 = mkV2 (mkV "adjudge" "adjudges" "adjudged" "adjudged" "adjudging"); -- from DictEng -lin adjudicate_V = mkV "adjudicate" "adjudicates" "adjudicated" "adjudicated" "adjudicating"; -- from DictEng -lin adjudicate_V2 = mkV2 (mkV "adjudicate" "adjudicates" "adjudicated" "adjudicated" "adjudicating"); -- from DictEng -lin adjudication_N = mkN "adjudication" "adjudications"; -- from DictEng -lin adjudicative_A = mkA "adjudicative" ; -lin adjudicator_N = mkN "adjudicator" "adjudicators"; -- from DictEng -lin adjunct_A = mkA "adjunct" ; -lin adjunct_N = mkN "adjunct" "adjuncts"; -- from DictEng -lin adjunctive_A = mkA "adjunctive" ; -lin adjuration_N = mkN "adjuration" "adjurations"; -- from DictEng -lin adjuratory_A = mkA "adjuratory" ; -lin adjure_V2 = mkV2 (mkV "adjure" "adjures" "adjured" "adjured" "adjuring"); -- from DictEng -lin adjust_V = mkV "adjust"; -- from DictEng -lin adjust_V2 = mkV2 (mkV "adjust" "adjusts" "adjusted" "adjusted" "adjusting"); -- from DictEng -lin adjust_V2V = mkV2V (mkV "adjust") noPrep to_Prep ; -- from DictEng -lin adjustable_A = compoundA (mkA "adjustable"); -- from DictEng -lin adjusted_A = mkA "adjusted" ; -lin adjuster_N = mkN "adjuster" "adjusters"; -- from DictEng -lin adjustive_A = mkA "adjustive" ; -lin adjustment_N = mkN "adjustment" "adjustments"; -- from DictEng -lin adjutant_N = mkN "adjutant" "adjutants"; -- from DictEng -lin adjuvant_A = mkA "adjuvant" ; -lin adjuvant_N = mkN "adjuvant" ; -lin admass_N = mkN "admass" ; -- from DictEng -lin administer_V = mkV "administer" "administers" "administered" "administered" "administering"; -- from DictEng -lin administer_V2 = mkV2 (mkV "administer" "administers" "administered" "administered" "administering"); -- from DictEng -lin administrable_A = mkA "administrable" ; -lin administration_N = mkN "administration" "administrations"; -- from DictEng -lin administrative_A = compoundA (mkA "administrative"); -- from DictEng -lin administratively_Adv = mkAdv "administratively" ; -lin administrator_N = mkN "administrator" "administrators"; -- from DictEng -lin administrivia_N = mkN "administrivia" ; -lin admirability_N = mkN "admirability" ; -lin admirable_A = compoundA (mkA "admirable"); -- from DictEng -lin admirably_Adv = mkAdv "admirably" ; -lin admiral_N = mkN "admiral" "admirals"; -- from DictEng -lin admiralty_N = mkN "admiralty" "admiralties"; -- from DictEng -lin admiration_N = mkN "admiration" ; -- from DictEng -lin admire_V2 = mkV2 (mkV "admire" "admires" "admired" "admired" "admiring"); -- from DictEng -lin admired_A = mkA "admired" ; -lin admirer_N = mkN "admirer" "admirers"; -- from DictEng -lin admiring_A = compoundA (mkA "admiring"); -- from DictEng -lin admiringly_Adv = mkAdv "admiringly" ; -lin admissibility_N = mkN "admissibility" ; -- from DictEng -lin admissible_A = compoundA (mkA "admissible"); -- from DictEng -lin admission_N = mkN "admission" "admissions"; -- from DictEng -lin admissive_A = mkA "admissive" ; -lin admit_V = mkV "admit" "admits" "admitted" "admitted" "admitting"; -- from DictEng -lin admit_V2 = mkV2 (mkV "admit" "admits" "admitted" "admitted" "admitting"); -- from DictEng -lin admit_VS = mkVS (mkV "admit" "admits" "admitted" "admitted" "admitting"); -- from DictEng -lin admittable_A = mkA "admittable" ; -lin admittance_N = mkN "admittance" ; -- from DictEng -lin admittedly_Adv = mkAdv "admittedly"; -- from DictEng -lin admix_V = mkV "admix" "admixes" "admixed" "admixed" "admixing"; -- from DictEng -lin admix_V2 = mkV2 (mkV "admix" "admixes" "admixed" "admixed" "admixing"); -- from DictEng -lin admixture_N = mkN "admixture" "admixtures"; -- from DictEng -lin admonish_V2 = mkV2 (mkV "admonish" "admonishes" "admonished" "admonished" "admonishing"); -- from DictEng -lin admonish_VS = mkVS (mkV "admonish" ); -lin admonisher_N = mkN "admonisher" ; -lin admonition_N = mkN "admonition" "admonitions"; -- from DictEng -lin admonitory_A = compoundA (mkA "admonitory"); -- from DictEng -lin adnate_A = mkA "adnate" ; -lin adnexa_N = mkN "adnexa" ; -lin adnexal_A = mkA "adnexal" ; -lin adnoun_N = mkN "adnoun" ; -lin ado_N = mkN "ado" ; -- from DictEng -lin adobe_N = mkN "adobe" ; -- from DictEng -lin adobo_N = mkN "adobo" ; -lin adolescence_N = mkN "adolescence" ; -- from DictEng -lin adolescent_A = compoundA (mkA "adolescent"); -- from DictEng -lin adolescent_N = mkN "adolescent" "adolescents"; -- from DictEng -lin adonis_N = mkN "adonis" ; -lin adopt_V2 = mkV2 (mkV "adopt" "adopts" "adopted" "adopted" "adopting"); -- from DictEng -lin adoptable_A = mkA "adoptable" ; -lin adopted_A = mkA "adopted" ; -lin adoptee_N = mkN "adoptee" ; -lin adoption_N = mkN "adoption" "adoptions"; -- from DictEng -lin adoptive_A = compoundA (mkA "adoptive"); -- from DictEng -lin adorability_N = mkN "adorability" ; -lin adorable_A = compoundA (mkA "adorable"); -- from DictEng -lin adorably_Adv = mkAdv "adorably" ; -lin adoration_N = mkN "adoration" ; -- from DictEng -lin adore_V2 = mkV2 (mkV "adore" "adores" "adored" "adored" "adoring"); -- from DictEng -lin adored_A = mkA "adored" ; -lin adorer_N = mkN "adorer" "adorers"; -- from DictEng -lin adoring_A = compoundA (mkA "adoring"); -- from DictEng -lin adoringly_Adv = mkAdv "adoringly" ; -lin adorn_V2 = mkV2 (mkV "adorn" "adorns" "adorned" "adorned" "adorning"); -- from DictEng -lin adorned_A = mkA "adorned" ; -lin adornment_N = mkN "adornment" "adornments"; -- from DictEng -lin adoxography_N = mkN "adoxography" ; -lin adrenal_A = compoundA (mkA "adrenal"); -- from DictEng -lin adrenalectomy_N = mkN "adrenalectomy" ; -lin adrenalin_N = mkN "adrenalin" ; -- from DictEng -lin adrenarche_N = mkN "adrenarche" ; -lin adrenergic_A = mkA "adrenergic" ; -lin adrenergic_N = mkN "adrenergic" ; -lin adrenocortical_A = mkA "adrenocortical" ; -lin adrenocorticotropic_A = mkA "adrenocorticotropic" ; -lin adrenosterone_N = mkN "adrenosterone" ; -lin adrift_A = compoundA (mkA "adrift"); -- from DictEng -lin adrift_Adv = mkAdv "adrift"; -- from DictEng -lin adroit_A = compoundA (mkA "adroit"); -- from DictEng -lin adroitly_Adv = mkAdv "adroitly" ; -lin adroitness_N = mkN "adroitness" ; -- from DictEng -lin adscititious_A = mkA "adscititious" ; -lin adscript_A = mkA "adscript" ; -lin adsorbable_A = mkA "adsorbable" ; -lin adsorbate_N = mkN "adsorbate" ; -lin adsorbent_A = mkA "adsorbent" ; -lin adsorbent_N = mkN "adsorbent" ; -lin adsorption_N = mkN "adsorption" ; -lin adulation_N = mkN "adulation" ; -- from DictEng -lin adulatory_A = mkA "adulatory" ; -lin adult_A = compoundA (mkA "adult"); -- from DictEng -lin adult_N = mkN "adult" "adults"; -- from DictEng -lin adulterant_N = mkN "adulterant" "adulterants"; -- from DictEng -lin adulterate_A = mkA "adulterate" ; -lin adulterate_V2 = mkV2 (mkV "adulterate" "adulterates" "adulterated" "adulterated" "adulterating"); -- from DictEng -lin adulterating_A = mkA "adulterating" ; -lin adulteration_N = mkN "adulteration" "adulterations"; -- from DictEng -lin adulterator_N = mkN "adulterator" ; -lin adulterer_N = mkN "adulterer" "adulterers"; -- from DictEng -lin adulteress_N = mkN "adulteress" "adulteresses"; -- from DictEng -lin adulterine_A = mkA "adulterine" ; -lin adulterous_A = compoundA (mkA "adulterous"); -- from DictEng -lin adulterously_Adv = mkAdv "adulterously" ; -lin adultery_N = mkN "adultery" "adulteries"; -- from DictEng -lin adulthood_N = mkN "adulthood" "adulthoods"; -- from DictEng -lin adumbrate_V2 = mkV2 (mkV "adumbrate" "adumbrates" "adumbrated" "adumbrated" "adumbrating"); -- from DictEng -lin adumbration_N = mkN "adumbration" ; -lin adumbrative_A = mkA "adumbrative" ; -lin adust_A = mkA "adust" ; -lin advance_A = mkA "advance" ; -lin advance_N = mkN "advance" "advances"; -- from DictEng -lin advance_V = mkV "advance" "advances" "advanced" "advanced" "advancing"; -- from DictEng -lin advance_V2 = mkV2 (mkV "advance" "advances" "advanced" "advanced" "advancing"); -- from DictEng -lin advanced_A = compoundA (mkA "advanced"); -- from DictEng -lin advancement_N = mkN "advancement" ; -- from DictEng -lin advancer_N = mkN "advancer" ; -lin advancing_A = mkA "advancing" ; -lin advantage_N = mkN "advantage" "advantages"; -- from DictEng -lin advantage_V2 = mkV2 (mkV "advantage" "advantages" "advantaged" "advantaged" "advantaging"); -- from DictEng -lin advantageous_A = compoundA (mkA "advantageous"); -- from DictEng -lin advection_N = mkN "advection" ; -lin advective_A = mkA "advective" ; -lin advent_N = mkN "advent" "advents"; -- from DictEng -lin adventist_N = mkN "adventist" "adventists"; -- from DictEng -lin adventitial_A = mkA "adventitial" ; -lin adventitious_A = compoundA (mkA "adventitious"); -- from DictEng -lin adventive_A = mkA "adventive" ; -lin adventure_N = mkN "adventure" "adventures"; -- from DictEng -lin adventure_V2 = mkV2 (mkV "adventure" "adventures" "adventured" "adventured" "adventuring"); -- from DictEng -lin adventurer_N = mkN "adventurer" "adventurers"; -- from DictEng -lin adventuresome_A = compoundA (mkA "adventuresome"); -- from DictEng -lin adventuress_N = mkN "adventuress" "adventuresses"; -- from DictEng -lin adventurism_N = mkN "adventurism" ; -lin adventuristic_A = mkA "adventuristic" ; -lin adventurous_A = compoundA (mkA "adventurous"); -- from DictEng -lin adventurousness_N = mkN "adventurousness" ; -lin adverb_N = mkN "adverb" "adverbs"; -- from DictEng -lin adverbial_A = compoundA (mkA "adverbial"); -- from DictEng -lin adverbial_N = mkN "adverbial" ; -lin adverbially_Adv = mkAdv "adverbially" ; -lin adversary_N = mkN "adversary" "adversaries"; -- from DictEng -lin adversative_A = mkA "adversative" ; -lin adverse_A = compoundA (mkA "adverse"); -- from DictEng -lin adversely_Adv = mkAdv "adversely" ; -lin adversity_N = mkN "adversity" "adversities"; -- from DictEng -lin advert_N = mkN "advert" "adverts"; -- from DictEng -lin advert_V = mkV "advert" "adverts" "adverted" "adverted" "adverting"; -- from DictEng -lin advertence_N = mkN "advertence" ; -lin advertent_A = mkA "advertent" ; -lin advertise_V = mkV "advertise" "advertises" "advertised" "advertised" "advertising"; -- from DictEng -lin advertise_V2 = mkV2 (mkV "advertise" "advertises" "advertised" "advertised" "advertising"); -- from DictEng -lin advertised_A = mkA "advertised" ; -lin advertisement_N = mkN "advertisement" "advertisements"; -- from DictEng -lin advertiser_N = mkN "advertiser" "advertisers"; -- from DictEng -lin advertising_N = mkN "advertising" ; -lin advertorial_N = mkN "advertorial" ; -lin advice_N = mkN "advice" "advices"; -- from DictEng -lin advisability_N = mkN "advisability" ; -- from DictEng -lin advisable_A = compoundA (mkA "advisable"); -- from DictEng -lin advise_V = mkV "advise" "advises" "advised" "advised" "advising"; -- from DictEng -lin advise_V2 = mkV2 (mkV "advise" "advises" "advised" "advised" "advising"); -- from DictEng -lin advise_VS = mkVS (mkV "advise" "advises" "advised" "advised" "advising"); -- from DictEng -lin advised_A = compoundA (mkA "advised"); -- from DictEng -lin advisee_N = mkN "advisee" ; -lin adviser_N = mkN "adviser" "advisers"; -- from DictEng -lin advisory_A = compoundA (mkA "advisory"); -- from DictEng -lin advisory_N = mkN "advisory" ; -lin advocacy_N = mkN "advocacy" ; -- from DictEng -lin advocate_N = mkN "advocate" "advocates"; -- from DictEng -lin advocate_V2 = mkV2 (mkV "advocate" "advocates" "advocated" "advocated" "advocating"); -- from DictEng -lin advocate_VS = mkVS (mkV "advocate"); -- from DictEng -lin advowson_N = mkN "advowson" "advowsons"; -- from DictEng -lin adynamia_N = mkN "adynamia" ; -lin adynamic_A = mkA "adynamic" ; -lin adz_N = mkN "adz" "adzes"; -- from DictEng -lin adze_N = mkN "adze" "adzes"; -- from DictEng -lin aecial_A = mkA "aecial" ; -lin aeciospore_N = mkN "aeciospore" ; -lin aecium_N = mkN "aecium" ; -lin aegis_N = mkN "aegis" "aegises"; -- from DictEng -lin aeolotropic_A = mkA "aeolotropic" ; -lin aeon_N = mkN "aeon" "aeons"; -- from DictEng -lin aerate_V2 = mkV2 (mkV "aerate" "aerates" "aerated" "aerated" "aerating"); -- from DictEng -lin aerated_A = mkA "aerated" ; -lin aeration_N = mkN "aeration" "aerations"; -- from DictEng -lin aerator_N = mkN "aerator" ; -lin aerial_A = compoundA (mkA "aerial"); -- from DictEng -lin aerial_N = mkN "aerial" "aerials"; -- from DictEng -lin aerialist_N = mkN "aerialist" ; -lin aerially_Adv = mkAdv "aerially" ; -lin aerides_N = mkN "aerides" ; -lin aerie_N = mkN "aerie" "aeries"; -- from DictEng -lin aeriferous_A = mkA "aeriferous" ; -lin aeriform_A = mkA "aeriform" ; -lin aerobatics_N = mkN "aerobatics" "aerobatics"; -- from DictEng -lin aerobe_N = mkN "aerobe" ; -lin aerobic_A = mkA "aerobic" ; -lin aerobics_N = mkN "aerobics" ; -lin aerobiosis_N = mkN "aerobiosis" ; -lin aerobiotic_A = mkA "aerobiotic" ; -lin aerodontalgia_N = mkN "aerodontalgia" ; -lin aerodrome_N = mkN "aerodrome" "aerodromes"; -- from DictEng -lin aerodynamic_A = compoundA (mkA "aerodynamic"); -- from DictEng -lin aerodynamics_N = mkN "aerodynamics" "aerodynamics"; -- from DictEng -lin aerolite_N = mkN "aerolite" ; -lin aerolitic_A = mkA "aerolitic" ; -lin aerological_A = mkA "aerological" ; -lin aerology_N = mkN "aerology" ; -lin aeromechanic_A = mkA "aeromechanic" ; -lin aeromechanics_N = mkN "aeromechanics" ; -lin aeromedical_A = mkA "aeromedical" ; -lin aeromedicine_N = mkN "aeromedicine" ; -lin aeronaut_N = mkN "aeronaut" "aeronauts"; -- from DictEng -lin aeronautical_A = mkA "aeronautical" ; -lin aeronautics_N = mkN "aeronautics" "aeronautics"; -- from DictEng -lin aerophagia_N = mkN "aerophagia" ; -lin aerophilatelic_A = mkA "aerophilatelic" ; -lin aerophilately_N = mkN "aerophilately" ; -lin aerophile_N = mkN "aerophile" ; -lin aeroplane_N = mkN "aeroplane" "aeroplanes"; -- from DictEng -lin aerosol_N = mkN "aerosol" "aerosols"; -- from DictEng -lin aerosolized_A = mkA "aerosolized" ; -lin aerospace_N = mkN "aerospace" ; -- from DictEng -lin aertex_N = mkN "aertex" ; -- from DictEng -lin aery_N = mkN "aery" "aeries"; -- from DictEng -lin aeschynanthus_N = mkN "aeschynanthus" ; -lin aesculapian_A = mkA "aesculapian" ; -lin aesthete_N = mkN "aesthete" "aesthetes"; -- from DictEng -lin aesthetic_A = compoundA (mkA "aesthetic"); -- from DictEng -lin aesthetic_N = mkN "aesthetic" ; -- from DictEng -lin aesthetical_A = compoundA (mkA "aesthetical"); -- from DictEng -lin aesthetically_Adv = mkAdv "aesthetically" ; -lin aesthetics_N = mkN "aesthetics" "aesthetics"; -- from DictEng -lin aestival_A = mkA "aestival" ; -lin aether_N = mkN "aether" ; -- from DictEng -lin aetiology_N = mkN "aetiology" "aetiologies"; -- from DictEng -lin afar_Adv = mkAdv "afar"; -- from DictEng -lin afeard_A = mkA "afeard" ; -lin afebrile_A = mkA "afebrile" ; -lin affability_N = mkN "affability" ; -- from DictEng -lin affable_A = compoundA (mkA "affable"); -- from DictEng -lin affably_Adv = mkAdv "affably" ; -lin affair_N = mkN "affair" "affairs"; -- from DictEng -lin affairs_N = mkN "affairs" ; -lin affect_N = mkN "affect" ; -lin affect_V2 = mkV2 (mkV "affect" "affects" "affected" "affected" "affecting"); -- from DictEng -lin affectation_N = mkN "affectation" "affectations"; -- from DictEng -lin affected_A = compoundA (mkA "affected"); -- from DictEng -lin affectedly_Adv = mkAdv "affectedly" ; -lin affectedness_N = mkN "affectedness" ; -lin affecting_A = compoundA (mkA "affecting"); -- from DictEng -lin affectingly_Adv = mkAdv "affectingly" ; -lin affection_N = mkN "affection" "affections"; -- from DictEng -lin affectional_A = mkA "affectional" ; -lin affectionate_A = compoundA (mkA "affectionate"); -- from DictEng -lin affectionateness_N = mkN "affectionateness" ; -lin affenpinscher_N = mkN "affenpinscher" ; -lin afferent_A = mkA "afferent" ; -lin affiance_V2 = mkV2 (mkV "affiance" "affiances" "affianced" "affianced" "affiancing"); -- from DictEng -lin affiant_N = mkN "affiant" ; -lin affidavit_N = mkN "affidavit" "affidavits"; -- from DictEng -lin affiliate_N = mkN "affiliate" ; -lin affiliate_V = mkV "affiliate" "affiliates" "affiliated" "affiliated" "affiliating"; -- from DictEng -lin affiliate_V2 = mkV2 (mkV "affiliate" "affiliates" "affiliated" "affiliated" "affiliating"); -- from DictEng -lin affiliated_A = mkA "affiliated" ; -lin affiliation_N = mkN "affiliation" "affiliations"; -- from DictEng -lin affinal_A = mkA "affinal" ; -lin affine_A = mkA "affine" ; -lin affine_N = mkN "affine" ; -lin affined_A = mkA "affined" ; -lin affinity_N = mkN "affinity" "affinities"; -- from DictEng -lin affirm_V = mkV "affirm" "affirms" "affirmed" "affirmed" "affirming"; -- from DictEng -lin affirm_V2 = mkV2 (mkV "affirm" "affirms" "affirmed" "affirmed" "affirming"); -- from DictEng -lin affirm_VS = mkVS (mkV "affirm" "affirms" "affirmed" "affirmed" "affirming"); -- from DictEng -lin affirmable_A = mkA "affirmable" ; -lin affirmation_N = mkN "affirmation" "affirmations"; -- from DictEng -lin affirmative_A = compoundA (mkA "affirmative"); -- from DictEng -lin affirmative_N = mkN "affirmative" "affirmatives"; -- from DictEng -lin affirmatively_Adv = mkAdv "affirmatively" ; -lin affirmativeness_N = mkN "affirmativeness" ; -lin affix_N = mkN "affix" "affixes"; -- from DictEng -lin affix_V2 = mkV2 (mkV "affix" "affixes" "affixed" "affixed" "affixing"); -- from DictEng -lin affixal_A = mkA "affixal" ; -lin affixation_N = mkN "affixation" ; -lin affixed_A = mkA "affixed" ; -lin afflatus_N = mkN "afflatus" ; -- from DictEng -lin afflict_V2 = mkV2 (mkV "afflict" "afflicts" "afflicted" "afflicted" "afflicting"); -- from DictEng -lin afflicted_A = mkA "afflicted" ; -lin affliction_N = mkN "affliction" "afflictions"; -- from DictEng -lin afflictive_A = mkA "afflictive" ; -lin affluence_N = mkN "affluence" ; -- from DictEng -lin affluent_A = compoundA (mkA "affluent"); -- from DictEng -lin affluent_N = mkN "affluent" "affluents"; -- from DictEng -lin afford_V2 = mkV2 (mkV "afford" "affords" "afforded" "afforded" "affording"); -- from DictEng -lin afford_V2V = mkV2V (mkV "afford") noPrep to_Prep ; -- from DictEng -lin afforest_V2 = mkV2 (mkV "afforest" "afforests" "afforested" "afforested" "afforesting"); -- from DictEng -lin afforestation_N = mkN "afforestation" "afforestations"; -- from DictEng -lin affranchise_V2 = mkV2 (mkV "affranchise" "affranchises" "affranchised" "affranchised" "affranchising"); -- from DictEng -lin affray_N = mkN "affray" "affrays"; -- from DictEng -lin affricate_N = mkN "affricate" ; -lin affrication_N = mkN "affrication" ; -lin affront_N = mkN "affront" "affronts"; -- from DictEng -lin affront_V2 = mkV2 (mkV "affront" "affronts" "affronted" "affronted" "affronting"); -- from DictEng -lin affusion_N = mkN "affusion" ; -lin afghan_A = compoundA (mkA "afghan"); -- from DictEng -lin afghan_N = mkN "afghan" "afghans"; -- from DictEng -lin afghani_N = mkN "afghani" ; -lin afghanistani_A = compoundA (mkA "afghanistani"); -- from DictEng -lin afghanistani_N = mkN "afghanistani" "afghanistanis"; -- from DictEng -lin afibrinogenemia_N = mkN "afibrinogenemia" ; -lin aficionado_N = mkN "aficionado" ; -lin afield_Adv = mkAdv "afield"; -- from DictEng -lin afire_A = compoundA (mkA "afire"); -- from DictEng -lin aflame_A = compoundA (mkA "aflame"); -- from DictEng -lin aflare_A = mkA "aflare" ; -lin aflatoxin_N = mkN "aflatoxin" ; -lin afloat_A = compoundA (mkA "afloat"); -- from DictEng -lin aflutter_A = mkA "aflutter" ; -lin afoot_A = compoundA (mkA "afoot"); -- from DictEng -lin afoot_Adv = mkAdv "afoot" ; -lin afore_Adv = mkAdv "afore"; -- from DictEng -lin afore_Prep = mkPrep "afore"; -- from DictEng -lin aforesaid_A = compoundA (mkA "aforesaid"); -- from DictEng -lin aforethought_A = mkA "aforethought" ; -lin aforethought_Adv = mkAdv "aforethought"; -- from DictEng -lin afoul_A = mkA "afoul" ; -lin afoul_Adv = mkAdv "afoul"; -- from DictEng -lin afraid_A = compoundA (mkA "afraid"); -- from DictEng -lin afresh_Adv = mkAdv "afresh"; -- from DictEng -lin african_A = compoundA (mkA "African"); -- from DictEng -lin african_N = mkN "African" "Africans"; -- from DictEng -lin afrikaans_N = mkN "Afrikaans" ; -- from DictEng -lin afrikaner_A = compoundA (mkA "Afrikaner"); -- from DictEng -lin afrikaner_N = mkN "Afrikaner" "Afrikaners"; -- from DictEng -lin afro_american_N = mkN "Afro - American" "Afro - Americans"; -- from DictEng -lin afro_asian_A = compoundA (mkA "Afro - Asian"); -- from DictEng -lin afro_wig_N = mkN "afro - wig" "afro - wigs"; -- from DictEng -lin afropavo_N = mkN "afropavo" ; -lin aft_A = mkA "aft" ; -lin aft_Adv = mkAdv "aft"; -- from DictEng -lin after_A = compoundA (mkA "after"); -- from DictEng -lin after_Adv = mkAdv "after"; -- from DictEng -lin after_Prep = mkPrep "after"; -- from DictEng -lin after_hours_A = compoundA (mkA "after hours") ; -lin after_school_A = compoundA (mkA "after school") ; -lin after_shave_N = mkN "after shave" ; -lin after_a_fashion_Adv = mkAdv "after a fashion" ; -lin after_all_Adv = mkAdv "after all" ; -lin after_hours_Adv = mkAdv "after hours" ; -lin afterbirth_N = mkN "afterbirth" ; -lin afterburner_N = mkN "afterburner" ; -lin aftercare_N = mkN "aftercare" ; -- from DictEng -lin afterdamp_N = mkN "afterdamp" ; -- from DictEng -lin afterdeck_N = mkN "afterdeck" ; -lin aftereffect_N = mkN "aftereffect" "aftereffects"; -- from DictEng -lin afterglow_N = mkN "afterglow"; -- from DictEng -lin afterimage_N = mkN "afterimage" ; -lin afterlife_N = mkN "afterlife" ; -lin aftermath_N = mkN "aftermath"; -- from DictEng -lin aftermost_A = mkA "aftermost" ; -lin afternoon_N = mkN "afternoon" "afternoons"; -- from DictEng -lin afterpains_N = mkN "afterpains" ; -lin afterpiece_N = mkN "afterpiece" ; -lin aftershaft_N = mkN "aftershaft" ; -lin aftershafted_A = mkA "aftershafted" ; -lin aftershock_N = mkN "aftershock" ; -lin aftertaste_N = mkN "aftertaste" ; -lin afterthought_N = mkN "afterthought" "afterthoughts"; -- from DictEng -lin afterwards_Adv = mkAdv "afterwards"; -- from DictEng -lin afterworld_N = mkN "afterworld" ; -lin again_Adv = mkAdv "again"; -- from DictEng -lin against_Prep = mkPrep "against"; -- from DictEng -lin against_the_clock_Adv = mkAdv "against the clock" ; -lin agal_N = mkN "agal" ; -lin agalactia_N = mkN "agalactia" ; -lin agama_N = mkN "agama" ; -lin agamete_N = mkN "agamete" ; -lin agamic_A = mkA "agamic" ; -lin agamid_N = mkN "agamid" ; -lin agammaglobulinemia_N = mkN "agammaglobulinemia" ; -lin agapanthus_N = mkN "agapanthus" ; -lin agape_A = compoundA (mkA "agape"); -- from DictEng -lin agape_N = mkN "agape" ; -lin agar_N = mkN "agar" ; -lin agar_agar_N = mkN "agar - agar" ; -- from DictEng -lin agaric_N = mkN "agaric" ; -lin agate_N = mkN "agate" "agates"; -- from DictEng -lin agateware_N = mkN "agateware" ; -lin agave_N = mkN "agave" "agaves"; -- from DictEng -lin agaze_A = mkA "agaze" ; -lin age_N = mkN "age" "ages"; -- from DictEng -lin age_V = mkV "age" "ages" "aged" "aged" "aging"; -- from DictEng -lin age_V2 = mkV2 (mkV "age" "ages" "aged" "aged" "aging"); -- from DictEng -lin age_old_A = compoundA (mkA "age - old"); -- from DictEng -lin age_related_A = compoundA (mkA "age related") ; -lin age_bracket_N = mkN "age - bracket" "age - brackets"; -- from DictEng -lin age_group_N = mkN "age - group" "age - groups"; -- from DictEng -lin age_long_A = compoundA (mkA "age - long"); -- from DictEng -lin age_old_A = compoundA (mkA "age - old"); -- from DictEng -lin aged_A = compoundA (mkA "aged"); -- from DictEng -lin aged_N = mkN "aged" ; -lin agedness_N = mkN "agedness" ; -lin ageing_N = mkN "ageing" ; -- from DictEng -lin ageism_N = mkN "ageism" ; -lin ageless_A = compoundA (mkA "ageless"); -- from DictEng -lin agelessness_N = mkN "agelessness" ; -lin agelong_A = mkA "agelong" ; -lin agency_N = mkN "agency" "agencies"; -- from DictEng -lin agenda_N = mkN "agenda" "agendas"; -- from DictEng -lin agenesis_N = mkN "agenesis" ; -lin agent_N = mkN "agent" "agents"; -- from DictEng -lin agent_in_place_N = mkN "agent in place" ; -lin agent_provocateur_N = mkN "agent provocateur" "IRREG"; -- from DictEng -lin agential_A = mkA "agential" ; -lin agerasia_N = mkN "agerasia" ; -lin ageratum_N = mkN "ageratum" ; -lin agglomerate_A = compoundA (mkA "agglomerate"); -- from DictEng -lin agglomerate_N = mkN "agglomerate" ; -lin agglomerate_V = mkV "agglomerate" "agglomerates" "agglomerated" "agglomerated" "agglomerating"; -- from DictEng -lin agglomerate_V2 = mkV2 (mkV "agglomerate" "agglomerates" "agglomerated" "agglomerated" "agglomerating"); -- from DictEng -lin agglomeration_N = mkN "agglomeration" "agglomerations"; -- from DictEng -lin agglomerator_N = mkN "agglomerator" ; -lin agglutinate_A = mkA "agglutinate" ; -lin agglutinate_V2 = mkV2 (mkV "agglutinate" "agglutinates" "agglutinated" "agglutinated" "agglutinating"); -- from DictEng -lin agglutination_N = mkN "agglutination" ; -lin agglutinative_A = compoundA (mkA "agglutinative"); -- from DictEng -lin agglutinin_N = mkN "agglutinin" ; -lin agglutinogen_N = mkN "agglutinogen" ; -lin aggrandize_V2 = mkV2 (mkV "aggrandize" "aggrandizes" "aggrandized" "aggrandized" "aggrandizing"); -- from DictEng -lin aggrandizement_N = mkN "aggrandizement" "aggrandizements"; -- from DictEng -lin aggravate_V2 = mkV2 (mkV "aggravate" "aggravates" "aggravated" "aggravated" "aggravating"); -- from DictEng -lin aggravated_A = mkA "aggravated" ; -lin aggravating_A = mkA "aggravating" ; -lin aggravatingly_Adv = mkAdv "aggravatingly" ; -lin aggravation_N = mkN "aggravation" "aggravations"; -- from DictEng -lin aggravator_N = mkN "aggravator" ; -lin aggregate_A = mkA "aggregate" ; -lin aggregate_N = mkN "aggregate" "aggregates"; -- from DictEng -lin aggregate_V = mkV "aggregate" "aggregates" "aggregated" "aggregated" "aggregating"; -- from DictEng -lin aggregate_V2 = mkV2 (mkV "aggregate" "aggregates" "aggregated" "aggregated" "aggregating"); -- from DictEng -lin aggregation_N = mkN "aggregation" "aggregations"; -- from DictEng -lin aggression_N = mkN "aggression" "aggressions"; -- from DictEng -lin aggressive_A = compoundA (mkA "aggressive"); -- from DictEng -lin aggressively_Adv = mkAdv "aggressively" ; -lin aggressiveness_N = mkN "aggressiveness" ; -- from DictEng -lin aggressor_N = mkN "aggressor" "aggressors"; -- from DictEng -lin aggrieve_V2 = mkV2 (mkV "aggrieve" "aggrieves" "aggrieved" "aggrieved" "aggrieving"); -- from DictEng -lin aggro_N = mkN "aggro" ; -- from DictEng -lin aghast_A = compoundA (mkA "aghast"); -- from DictEng -lin agile_A = compoundA (mkA "agile"); -- from DictEng -lin agilely_Adv = mkAdv "agilely" ; -lin agility_N = mkN "agility" ; -- from DictEng -lin agin_Prep = mkPrep "agin"; -- from DictEng -lin aging_A = mkA "aging" ; -lin aging_N = mkN "aging" ; -- from DictEng -lin agio_N = mkN "agio" ; -lin agitate_V = mkV "agitate" "agitates" "agitated" "agitated" "agitating"; -- from DictEng -lin agitate_V2 = mkV2 (mkV "agitate" "agitates" "agitated" "agitated" "agitating"); -- from DictEng -lin agitated_A = compoundA (mkA "agitated"); -- from DictEng -lin agitating_A = compoundA (mkA "agitating"); -- from DictEng -lin agitation_N = mkN "agitation" "agitations"; -- from DictEng -lin agitative_A = mkA "agitative" ; -lin agitator_N = mkN "agitator" "agitators"; -- from DictEng -lin agitprop_N = mkN "agitprop" ; -lin agleam_A = mkA "agleam" ; -lin aglet_N = mkN "aglet" ; -lin aglitter_A = mkA "aglitter" ; -lin aglow_A = compoundA (mkA "aglow"); -- from DictEng -lin agm_N = mkN "agm" ; -- from DictEng -lin agnail_N = mkN "agnail" ; -- from DictEng -lin agnate_A = mkA "agnate" ; -lin agnate_N = mkN "agnate" ; -lin agnomen_N = mkN "agnomen" ; -lin agnosia_N = mkN "agnosia" ; -lin agnostic_A = compoundA (mkA "agnostic"); -- from DictEng -lin agnostic_N = mkN "agnostic" "agnostics"; -- from DictEng -lin agnosticism_N = mkN "agnosticism" ; -- from DictEng -lin ago_A = mkA "ago" ; -lin ago_Adv = mkAdv "ago"; -- from DictEng -lin ago_Prep = mkPrep "ago"; -- from DictEng -lin agog_A = compoundA (mkA "agog"); -- from DictEng -lin agon_N = mkN "agon" ; -lin agonadal_A = mkA "agonadal" ; -lin agonal_A = mkA "agonal" ; -lin agonist_N = mkN "agonist" ; -lin agonistic_A = mkA "agonistic" ; -lin agonize_V = mkV "agonize"; -- from DictEng -lin agonize_V2 = mkV2 (mkV "agonize") ; -lin agonized_A = compoundA (mkA "agonized"); -- from DictEng -lin agonizing_A = compoundA (mkA "agonizing"); -- from DictEng -lin agonizingly_Adv = mkAdv "agonizingly" ; -lin agony_N = mkN "agony" "agonies"; -- from DictEng -lin agora_N = mkN "agora" "agoras"; -- from DictEng -lin agoraphobia_N = mkN "agoraphobia" ; -- from DictEng -lin agoraphobic_A = mkA "agoraphobic" ; -lin agouti_N = mkN "agouti" ; -lin agranulocytic_A = mkA "agranulocytic" ; -lin agranulocytosis_N = mkN "agranulocytosis" ; -lin agrapha_N = mkN "agrapha" ; -lin agraphia_N = mkN "agraphia" ; -lin agraphic_A = mkA "agraphic" ; -lin agrarian_A = compoundA (mkA "agrarian"); -- from DictEng -lin agree_V = mkV "agree"; -- from DictEng -lin agree_V2 = mkV2 (mkV "agree"); -- from DictEng -lin agree_VS = mkVS (mkV "agree"); -- from DictEng -lin agree_VV = mkVV (mkV "agree"); -- from DictEng -lin agreeable_A = compoundA (mkA "agreeable"); -- from DictEng -lin agreeableness_N = mkN "agreeableness" ; -lin agreed_A = mkA "agreed" ; -lin agreed_upon_A = compoundA (mkA "agreed upon") ; -lin agreement_N = mkN "agreement" "agreements"; -- from DictEng -lin agrestic_A = mkA "agrestic" ; -lin agribusiness_N = mkN "agribusiness" ; -lin agricultural_A = compoundA (mkA "agricultural"); -- from DictEng -lin agriculture_N = mkN "agriculture" ; -- from DictEng -lin agriculturist_N = mkN "agriculturist" ; -lin agrimonia_N = mkN "agrimonia" ; -lin agrobiologic_A = mkA "agrobiologic" ; -lin agrobiology_N = mkN "agrobiology" ; -lin agrologic_A = mkA "agrologic" ; -lin agrology_N = mkN "agrology" ; -lin agromania_N = mkN "agromania" ; -lin agronomic_A = mkA "agronomic" ; -lin agronomist_N = mkN "agronomist" ; -lin agronomy_N = mkN "agronomy" ; -lin aground_A = compoundA (mkA "aground"); -- from DictEng -lin aground_Adv = mkAdv "aground"; -- from DictEng -lin agrypnia_N = mkN "agrypnia" ; -lin agrypnotic_A = mkA "agrypnotic" ; -lin agua_N = mkN "agua" ; -lin ague_N = mkN "ague" "agues"; -- from DictEng -lin agueweed_N = mkN "agueweed" ; -lin aguish_A = mkA "aguish" ; -lin ahead_A = mkA "ahead" ; -lin ahead_Adv = mkAdv "ahead"; -- from DictEng -lin ahead_of_the_game_Adv = mkAdv "ahead of the game" ; -lin ahimsa_N = mkN "ahimsa" ; -lin ahistorical_A = mkA "ahistorical" ; -lin ahorse_A = mkA "ahorse" ; -lin aid_N = mkN "aid" "aids"; -- from DictEng -lin aid_V = mkV "aid"; -- from DictEng -lin aid_V2 = mkV2 (mkV "aid" "aids" "aided" "aided" "aiding"); -- from DictEng -lin aide_N = mkN "aide" ; -lin aide_memoire_N = mkN "aide - mémoire" "aide - mémoires"; -- from DictEng -lin aide_de_camp_N = mkN "aide - de - camp"; -- from DictEng -lin aide_memoire_N = mkN "aide - mémoire" "aide - mémoires"; -- from DictEng -lin aids_N = mkN "aids" ; -- from DictEng -lin aigret_N = mkN "aigret" "aigrets"; -- from DictEng -lin aigrette_N = mkN "aigrette" "aigrettes"; -- from DictEng -lin aikido_N = mkN "aikido" ; -lin ail_V = mkV "ail" "ails" "ailed" "ailed" "ailing"; -- from DictEng -lin ail_V2 = mkV2 (mkV "ail" "ails" "ailed" "ailed" "ailing"); -- from DictEng -lin ailanthus_N = mkN "ailanthus" ; -lin aileron_N = mkN "aileron" "ailerons"; -- from DictEng -lin ailing_A = mkA "ailing" ; -lin ailment_N = mkN "ailment" "ailments"; -- from DictEng -lin ailurophobia_N = mkN "ailurophobia" ; -lin aim_N = mkN "aim" "aims"; -- from DictEng -lin aim_V = mkV "aim" "aims" "aimed" "aimed" "aiming"; -- from DictEng -lin aim_V2 = mkV2 (mkV "aim" "aims" "aimed" "aimed" "aiming"); -- from DictEng -lin aim_VV = mkVV (mkV "aim" "aims" "aimed" "aimed" "aiming"); -- from DictEng -lin aimless_A = compoundA (mkA "aimless"); -- from DictEng -lin aimlessly_Adv = mkAdv "aimlessly" ; -lin aioli_N = mkN "aioli" ; -lin air_N = mkN "air" "airs"; -- from DictEng -lin air_V = mkV "air"; -- from DictEng -lin air_V2 = mkV2 (mkV "air" "airs" "aired" "aired" "airing"); -- from DictEng -lin air_breathing_A = compoundA (mkA "air breathing") ; -lin air_conditioned_A = compoundA (mkA "air - conditioned"); -- from DictEng -lin air_cooled_A = compoundA (mkA "air - cooled"); -- from DictEng -lin air_dried_A = compoundA (mkA "air dried") ; -lin air_dry_A = compoundA (mkA "air dry") ; -lin air_filled_A = compoundA (mkA "air filled") ; -lin air_intake_N = mkN "air intake" ; -lin air_to_air_A = compoundA (mkA "air - to - air"); -- from DictEng -lin air_to_surface_A = compoundA (mkA "air to surface") ; -lin air_bladder_N = mkN "air - bladder" "air - bladders"; -- from DictEng -lin air_conditioned_A = compoundA (mkA "air - conditioned"); -- from DictEng -lin air_conditioning_N = mkN "air - conditioning" ; -- from DictEng -lin air_cooled_A = compoundA (mkA "air - cooled"); -- from DictEng -lin air_minded_A = compoundA (mkA "air - minded"); -- from DictEng -lin air_pump_N = mkN "air - pump" "air - pumps"; -- from DictEng -lin air_raid_N = mkN "air - raid" "air - raids"; -- from DictEng -lin air_shaft_N = mkN "air - shaft" "air - shafts"; -- from DictEng -lin air_sick_A = compoundA (mkA "air - sick"); -- from DictEng -lin air_sickness_N = mkN "air - sickness" ; -- from DictEng -lin air_to_air_A = compoundA (mkA "air - to - air"); -- from DictEng -lin air_to_ground_A = compoundA (mkA "air - to - ground"); -- from DictEng -lin airbed_N = mkN "airbed" "airbeds"; -- from DictEng -lin airborne_A = compoundA (mkA "airborne"); -- from DictEng -lin airbrake_N = mkN "airbrake" "airbrakes"; -- from DictEng -lin airbrush_N = mkN "airbrush" ; -lin airburst_N = mkN "airburst" ; -lin airbus_N = mkN "airbus" ; -lin aircraft_N = mkN "aircraft" "aircraft"; -- from DictEng -lin aircraftman_N = mkN "aircraftman" "aircraftmen" {- FIXME: guessed plural form -}; -- from DictEng -lin aircraftsman_N = mkN "aircraftsman" ; -lin aircrew_N = mkN "aircrew" "aircrews"; -- from DictEng -lin aircrewman_N = mkN "aircrewman" ; -lin airdock_N = mkN "airdock" ; -lin airdrome_N = mkN "airdrome" "airdromes"; -- from DictEng -lin airdrop_N = mkN "airdrop" ; -lin aired_A = mkA "aired" ; -lin airedale_N = mkN "airedale" "airedales"; -- from DictEng -lin airfare_N = mkN "airfare" ; -lin airfield_N = mkN "airfield" "airfields"; -- from DictEng -lin airflow_N = mkN "airflow" "airflows"; -- from DictEng -lin airfoil_N = mkN "airfoil" ; -lin airframe_N = mkN "airframe" "airframes"; -- from DictEng -lin airhead_N = mkN "airhead" ; -lin airheaded_A = mkA "airheaded" ; -lin airiness_N = mkN "airiness" ; -lin airing_N = mkN "airing" "airings"; -- from DictEng -lin airing_cupboard_N = mkN "airing - cupboard" "airing - cupboards"; -- from DictEng -lin airless_A = compoundA (mkA "airless"); -- from DictEng -lin airlift_N = mkN "airlift" ; -lin airline_N = mkN "airline" "airlines"; -- from DictEng -lin airliner_N = mkN "airliner" "airliners"; -- from DictEng -lin airlock_N = mkN "airlock" ; -lin airmail_N = mkN "airmail" ; -- from DictEng -lin airmailer_N = mkN "airmailer" ; -lin airman_N = mkN "airman" "airmen" {- FIXME: guessed plural form -}; -- from DictEng -lin airplane_N = mkN "airplane" "airplanes"; -- from DictEng -lin airport_N = mkN "airport" "airports"; -- from DictEng -lin airs_N = mkN "airs" ; -lin airscrew_N = mkN "airscrew" "airscrews"; -- from DictEng -lin airship_N = mkN "airship" "airships"; -- from DictEng -lin airsick_A = mkA "airsick" ; -lin airsickness_N = mkN "airsickness" ; -lin airspace_N = mkN "airspace" ; -lin airspeed_N = mkN "airspeed" ; -lin airstream_N = mkN "airstream" ; -lin airstrip_N = mkN "airstrip" "airstrips"; -- from DictEng -lin airtight_A = compoundA (mkA "airtight"); -- from DictEng -lin airway_N = mkN "airway" "airways"; -- from DictEng -lin airwoman_N = mkN "airwoman" "airwomen" {- FIXME: guessed plural form -}; -- from DictEng -lin airworthiness_N = mkN "airworthiness" ; -- from DictEng -lin airworthy_A = compoundA (mkA "airworthy"); -- from DictEng -lin airy_A = compoundA (mkA "airy"); -- from DictEng -lin aisle_N = mkN "aisle" "aisles"; -- from DictEng -lin aitch_N = mkN "aitch" "aitches"; -- from DictEng -lin aitch_bone_N = mkN "aitch - bone" "aitch - bones"; -- from DictEng -lin aitchbone_N = mkN "aitchbone" ; -lin ajar_A = compoundA (mkA "ajar"); -- from DictEng -lin aka_Prep = mkPrep "a/k/a"; -- from DictEng -lin akaryocyte_N = mkN "akaryocyte" ; -lin akee_N = mkN "akee" ; -lin akimbo_A = mkA "akimbo" ; -lin akimbo_Adv = mkAdv "akimbo"; -- from DictEng -lin akin_A = compoundA (mkA "akin"); -- from DictEng -lin akinesis_N = mkN "akinesis" ; -lin al_fatah_N = mkN "al Fatah" ; -lin al_jihad_N = mkN "al Jihad" ; -lin al_ma'unah_N = mkN "al Ma'unah" ; -lin al_muhajiroun_N = mkN "al Muhajiroun" ; -lin al_qaeda_N = mkN "al Qaeda" ; -lin al_rashid_trust_PN = mkPN "al Rashid Trust" ; -lin al_tawhid_N = mkN "al Tawhid" ; -lin al_ummah_N = mkN "al Ummah" ; -lin al_itihaad_al_islamiya_PN = mkPN "al Itihaad al Islamiya" ; -lin al_sunna_wal_jamma_PN = mkPN "al Sunna Wal Jamma" ; -lin al_dente_A = compoundA (mkA "al dente") ; -lin ala_N = mkN "ala" ; -lin alabaster_A = compoundA (mkA "alabaster"); -- from DictEng -lin alabaster_N = mkN "alabaster" ; -- from DictEng -lin alacritous_A = mkA "alacritous" ; -lin alacrity_N = mkN "alacrity" ; -- from DictEng -lin alalia_N = mkN "alalia" ; -lin alanine_N = mkN "alanine" ; -lin alar_A = mkA "alar" ; -lin alarm_N = mkN "alarm" "alarms"; -- from DictEng -lin alarm_V2 = mkV2 (mkV "alarm" "alarms" "alarmed" "alarmed" "alarming"); -- from DictEng -lin alarm_clock_N = mkN "alarm - clock" "alarm - clocks"; -- from DictEng -lin alarmed_A = mkA "alarmed" ; -lin alarming_A = compoundA (mkA "alarming"); -- from DictEng -lin alarmingly_Adv = mkAdv "alarmingly" ; -lin alarmism_N = mkN "alarmism" ; -lin alarmist_N = mkN "alarmist" "alarmists"; -- from DictEng -lin alastrim_N = mkN "alastrim" ; -lin alate_A = mkA "alate" ; -lin alb_N = mkN "alb" "albs"; -- from DictEng -lin albacore_N = mkN "albacore" ; -lin albanian_A = compoundA (mkA "albanian"); -- from DictEng -lin albanian_N = mkN "albanian" "albanians"; -- from DictEng -lin albatross_N = mkN "albatross" "albatrosses"; -- from DictEng -lin albedo_N = mkN "albedo" ; -lin albeit_Subj = mkSubj "albeit"; -- from DictEng -lin albescent_A = mkA "albescent" ; -lin albinal_A = mkA "albinal" ; -lin albinism_N = mkN "albinism" ; -lin albino_N = mkN "albino" "albinos"; -- from DictEng -lin albite_N = mkN "albite" ; -lin albitic_A = mkA "albitic" ; -lin albizzia_N = mkN "albizzia" ; -lin albuca_N = mkN "albuca" ; -lin albuginea_N = mkN "albuginea" ; -lin album_N = mkN "album" "albums"; -- from DictEng -lin albumen_N = mkN "albumen" ; -- from DictEng -lin albumin_N = mkN "albumin" ; -lin albuminous_A = mkA "albuminous" ; -lin albuminuria_N = mkN "albuminuria" ; -lin albuminuric_A = mkA "albuminuric" ; -lin albuterol_N = mkN "albuterol" ; -lin alcalde_N = mkN "alcalde" ; -lin alcazar_N = mkN "alcazar" ; -lin alchemic_A = mkA "alchemic" ; -lin alchemist_N = mkN "alchemist" "alchemists"; -- from DictEng -lin alchemistic_A = mkA "alchemistic" ; -lin alchemy_N = mkN "alchemy" ; -- from DictEng -lin alcohol_N = mkN "alcohol" "alcohols"; -- from DictEng -lin alcohol_soluble_A = compoundA (mkA "alcohol soluble") ; -lin alcoholic_A = compoundA (mkA "alcoholic"); -- from DictEng -lin alcoholic_N = mkN "alcoholic" "alcoholics"; -- from DictEng -lin alcoholism_N = mkN "alcoholism" ; -- from DictEng -lin alcove_N = mkN "alcove" "alcoves"; -- from DictEng -lin aldehyde_N = mkN "aldehyde" ; -lin aldehydic_A = mkA "aldehydic" ; -lin alder_N = mkN "alder" "alders"; -- from DictEng -lin alderfly_N = mkN "alderfly" ; -lin alderleaf_juneberry_PN = mkPN "alderleaf Juneberry" ; -lin alderman_N = mkN "alderman" "aldermen" {- FIXME: guessed plural form -}; -- from DictEng -lin aldermanic_A = compoundA (mkA "aldermanic"); -- from DictEng -lin aldohexose_N = mkN "aldohexose" ; -lin aldol_N = mkN "aldol" ; -lin aldose_N = mkN "aldose" ; -lin aldosterone_N = mkN "aldosterone" ; -lin aldosteronism_N = mkN "aldosteronism" ; -lin ale_N = mkN "ale" "ales"; -- from DictEng -lin ale_house_N = mkN "ale - house" "ale - houses"; -- from DictEng -lin aleatory_A = mkA "aleatory" ; -lin alee_A = compoundA (mkA "alee"); -- from DictEng -lin alee_Adv = mkAdv "alee"; -- from DictEng -lin alehouse_N = mkN "alehouse" ; -lin alembic_N = mkN "alembic" ; -lin alendronate_N = mkN "alendronate" ; -lin aleph_N = mkN "aleph" ; -lin aleph_null_N = mkN "aleph null" ; -lin alert_A = compoundA (mkA "alert"); -- from DictEng -lin alert_N = mkN "alert" "alerts"; -- from DictEng -lin alert_V2 = mkV2 (mkV "alert" "alerts" "alerted" "alerted" "alerting"); -- from DictEng -lin alertly_Adv = mkAdv "alertly" ; -lin alertness_N = mkN "alertness" ; -- from DictEng -lin aleurone_N = mkN "aleurone" ; -lin aleuronic_A = mkA "aleuronic" ; -lin alewife_N = mkN "alewife" ; -lin alexandrine_N = mkN "alexandrine" "alexandrines"; -- from DictEng -lin alexandrite_N = mkN "alexandrite" ; -lin alexia_N = mkN "alexia" ; -- from DictEng -lin alexic_A = compoundA (mkA "alexic"); -- from DictEng -lin alexic_N = mkN "alexic" "alexics"; -- from DictEng -lin alfalfa_N = mkN "alfalfa" ; -- from DictEng -lin alfresco_A = compoundA (mkA "alfresco"); -- from DictEng -lin alfresco_Adv = mkAdv "alfresco"; -- from DictEng -lin alga_N = mkN "alga" "algae" {- FIXME: guessed plural form -}; -- from DictEng -lin algal_A = mkA "algal" ; -lin algarroba_N = mkN "algarroba" ; -lin algebra_N = mkN "algebra" "algebras"; -- from DictEng -lin algebraic_A = compoundA (mkA "algebraic"); -- from DictEng -lin algebraical_A = compoundA (mkA "algebraical"); -- from DictEng -lin algebraically_Adv = mkAdv "algebraically" ; -lin algebraist_N = mkN "algebraist" ; -lin algerian_A = compoundA (mkA "algerian"); -- from DictEng -lin algerian_N = mkN "algerian" "algerians"; -- from DictEng -lin algid_A = mkA "algid" ; -lin algidity_N = mkN "algidity" ; -lin algin_N = mkN "algin" ; -lin algoid_A = mkA "algoid" ; -lin algolagnia_N = mkN "algolagnia" ; -lin algolagnic_A = mkA "algolagnic" ; -lin algometer_N = mkN "algometer" ; -lin algometric_A = mkA "algometric" ; -lin algometry_N = mkN "algometry" ; -lin algophobia_N = mkN "algophobia" ; -lin algophobic_A = mkA "algophobic" ; -lin algorism_N = mkN "algorism" ; -lin algorithm_N = mkN "algorithm" ; -lin algorithmic_A = mkA "algorithmic" ; -lin alias_Adv = mkAdv "alias"; -- from DictEng -lin alias_N = mkN "alias" "aliases"; -- from DictEng -lin alibi_N = mkN "alibi" "alibis"; -- from DictEng -lin alidade_N = mkN "alidade" ; -lin alien_A = compoundA (mkA "alien"); -- from DictEng -lin alien_N = mkN "alien" "aliens"; -- from DictEng -lin alienable_A = mkA "alienable" ; -lin alienage_N = mkN "alienage" ; -lin alienate_V2 = mkV2 (mkV "alienate" "alienates" "alienated" "alienated" "alienating"); -- from DictEng -lin alienated_A = mkA "alienated" ; -lin alienating_A = mkA "alienating" ; -lin alienation_N = mkN "alienation" ; -- from DictEng -lin alienator_N = mkN "alienator" ; -lin alienee_N = mkN "alienee" ; -lin alienism_N = mkN "alienism" ; -lin alienist_N = mkN "alienist" "alienists"; -- from DictEng -lin alienor_N = mkN "alienor" ; -lin alight_A = compoundA (mkA "alight"); -- from DictEng -lin alight_V = mkV "alight" "alights" "alighted" "alighted" "alighting"; -- from DictEng -lin align_V = mkV "align" "aligns" "aligned" "aligned" "aligning"; -- from DictEng -lin align_V2 = mkV2 (mkV "align" "aligns" "aligned" "aligned" "aligning"); -- from DictEng -lin aligned_A = mkA "aligned" ; -lin aligning_A = mkA "aligning" ; -lin alignment_N = mkN "alignment" "alignments"; -- from DictEng -lin alike_A = compoundA (mkA "alike"); -- from DictEng -lin alike_Adv = mkAdv "alike"; -- from DictEng -lin alimentary_A = compoundA (mkA "alimentary"); -- from DictEng -lin alimentative_A = mkA "alimentative" ; -lin alimony_N = mkN "alimony" ; -- from DictEng -lin aliphatic_A = mkA "aliphatic" ; -lin aliquant_N = mkN "aliquant" ; -lin aliquot_A = mkA "aliquot" ; -lin aliquot_N = mkN "aliquot" ; -lin aliterate_N = mkN "aliterate" ; -lin alive_A = compoundA (mkA "alive"); -- from DictEng -lin aliyah_N = mkN "aliyah" ; -lin alizarin_N = mkN "alizarin" ; -lin alkahest_N = mkN "alkahest" ; -lin alkahestic_A = mkA "alkahestic" ; -lin alkalemia_N = mkN "alkalemia" ; -lin alkalescent_A = mkA "alkalescent" ; -lin alkali_N = mkN "alkali" "alkalis"; -- from DictEng -lin alkalimetry_N = mkN "alkalimetry" ; -lin alkaline_A = compoundA (mkA "alkaline"); -- from DictEng -lin alkaline_loving_A = compoundA (mkA "alkaline loving") ; -lin alkalinity_N = mkN "alkalinity" ; -lin alkalinuria_N = mkN "alkalinuria" ; -lin alkaloid_N = mkN "alkaloid" ; -lin alkaloidal_A = mkA "alkaloidal" ; -lin alkalosis_N = mkN "alkalosis" ; -lin alkalotic_A = mkA "alkalotic" ; -lin alkapton_N = mkN "alkapton" ; -lin alkaptonuria_N = mkN "alkaptonuria" ; -lin alkene_N = mkN "alkene" ; -lin alkyd_N = mkN "alkyd" ; -lin alkyl_N = mkN "alkyl" ; -lin alkylbenzene_N = mkN "alkylbenzene" ; -lin alkylbenzenesulfonate_N = mkN "alkylbenzenesulfonate" ; -lin alkylic_A = mkA "alkylic" ; -lin all_A = mkA "all" ; -lin all_Predet = ss "all"; -- from DictEng -lin all_around_A = compoundA (mkA "all around") ; -lin all_devouring_A = compoundA (mkA "all devouring") ; -lin all_fired_A = compoundA (mkA "all fired") ; -lin all_important_A = compoundA (mkA "all important") ; -lin all_knowing_A = compoundA (mkA "all knowing") ; -lin all_mains_A = compoundA (mkA "all - mains"); -- from DictEng -lin all_metal_A = compoundA (mkA "all metal") ; -lin all_or_none_A = compoundA (mkA "all or none") ; -lin all_out_A = compoundA (mkA "all out") ; -lin all_rounder_N = mkN "all - rounder" "all - rounders"; -- from DictEng -lin all_time_A = compoundA (mkA "all time") ; -lin all_victorious_A = compoundA (mkA "all victorious") ; -lin all_weather_A = compoundA (mkA "all weather") ; -lin all_along_Adv = mkAdv "all along" ; -lin all_in_A = compoundA (mkA "all in") ; -lin all_in_all_Adv = mkAdv "all in all" ; -lin all_mains_A = compoundA (mkA "all - mains"); -- from DictEng -lin all_of_a_sudden_Adv = mkAdv "all of a sudden" ; -lin all_over_Adv = mkAdv "all over" ; -lin all_right_A = compoundA (mkA "all right") ; -lin all_right_Adv = mkAdv "all right" ; -lin all_round_A = compoundA (mkA "all - round"); -- from DictEng -lin all_rounder_N = mkN "all - rounder" "all - rounders"; -- from DictEng -lin all_the_way_Adv = mkAdv "all the way" ; -lin all_together_Adv = mkAdv "all together" ; -lin all_too_Adv = mkAdv "all too" ; -lin allamanda_N = mkN "allamanda" ; -lin allantoic_A = mkA "allantoic" ; -lin allantoid_A = mkA "allantoid" ; -lin allantois_N = mkN "allantois" ; -lin allargando_A = mkA "allargando" ; -lin allay_V2 = mkV2 (mkV "allay" "allays" "allayed" "allayed" "allaying"); -- from DictEng -lin allegation_N = mkN "allegation" "allegations"; -- from DictEng -lin allege_V2 = mkV2 (mkV "allege" "alleges" "alleged" "alleged" "alleging"); -- from DictEng -lin allege_V2V = mkV2V (mkV "allege") noPrep to_Prep ; -- from DictEng -lin allege_VS = mkVS (mkV "allege"); -- from DictEng -lin alleged_A = mkA "alleged" ; -lin allegedly_Adv = mkAdv "allegedly"; -- from DictEng -lin allegiance_N = mkN "allegiance" ; -- from DictEng -lin allegiant_A = mkA "allegiant" ; -lin allegoric_A = compoundA (mkA "allegoric"); -- from DictEng -lin allegorical_A = compoundA (mkA "allegorical"); -- from DictEng -lin allegorically_Adv = mkAdv "allegorically" ; -lin allegorizer_N = mkN "allegorizer" ; -lin allegory_N = mkN "allegory" "allegories"; -- from DictEng -lin allegretto_A = compoundA (mkA "allegretto"); -- from DictEng -lin allegretto_Adv = mkAdv "allegretto"; -- from DictEng -lin allegretto_N = mkN "allegretto" "allegrettos"; -- from DictEng -lin allegro_A = compoundA (mkA "allegro"); -- from DictEng -lin allegro_Adv = mkAdv "allegro"; -- from DictEng -lin allegro_N = mkN "allegro" "allegros"; -- from DictEng -lin allele_N = mkN "allele" ; -lin allelic_A = mkA "allelic" ; -lin allemande_N = mkN "allemande" ; -lin allergen_N = mkN "allergen" "allergens"; -- from DictEng -lin allergenic_A = mkA "allergenic" ; -lin allergic_A = compoundA (mkA "allergic"); -- from DictEng -lin allergist_N = mkN "allergist" ; -lin allergology_N = mkN "allergology" ; -lin allergy_N = mkN "allergy" "allergies"; -- from DictEng -lin alleviate_V2 = mkV2 (mkV "alleviate" "alleviates" "alleviated" "alleviated" "alleviating"); -- from DictEng -lin alleviated_A = mkA "alleviated" ; -lin alleviation_N = mkN "alleviation" "alleviations"; -- from DictEng -lin alleviative_A = mkA "alleviative" ; -lin alleviator_N = mkN "alleviator" ; -lin alley_N = mkN "alley" "alleys"; -- from DictEng -lin alleyway_N = mkN "alleyway" "alleyways"; -- from DictEng -lin alliaceous_A = mkA "alliaceous" ; -lin alliance_N = mkN "alliance" "alliances"; -- from DictEng -lin allied_A = mkA "allied" ; -lin allies_N = mkN "allies" ; -lin alligator_N = mkN "alligator" "alligators"; -- from DictEng -lin alligatored_A = mkA "alligatored" ; -lin alligatorfish_N = mkN "alligatorfish" ; -lin alliteration_N = mkN "alliteration" ; -- from DictEng -lin alliterative_A = compoundA (mkA "alliterative"); -- from DictEng -lin alliteratively_Adv = mkAdv "alliteratively" ; -lin alliterator_N = mkN "alliterator" ; -lin allocable_A = mkA "allocable" ; -lin allocate_V = mkV "allocate"; -- from DictEng -lin allocate_V2 = mkV2 (mkV "allocate" "allocates" "allocated" "allocated" "allocating"); -- from DictEng -lin allocation_N = mkN "allocation" "allocations"; -- from DictEng -lin allocator_N = mkN "allocator" ; -lin allochronic_A = mkA "allochronic" ; -lin allochthonous_A = mkA "allochthonous" ; -lin allocution_N = mkN "allocution" ; -lin allogamous_A = mkA "allogamous" ; -lin allogamy_N = mkN "allogamy" ; -lin allogeneic_A = mkA "allogeneic" ; -lin allograph_N = mkN "allograph" ; -lin allographic_A = mkA "allographic" ; -lin allomerism_N = mkN "allomerism" ; -lin allomerous_A = mkA "allomerous" ; -lin allometric_A = mkA "allometric" ; -lin allometry_N = mkN "allometry" ; -lin allomorph_N = mkN "allomorph" ; -lin allomorphic_A = mkA "allomorphic" ; -lin allopathic_A = mkA "allopathic" ; -lin allopathy_N = mkN "allopathy" ; -lin allopatric_A = mkA "allopatric" ; -lin allopatry_N = mkN "allopatry" ; -lin allophone_N = mkN "allophone" ; -lin allophonic_A = mkA "allophonic" ; -lin allopurinol_N = mkN "allopurinol" ; -lin allosaur_N = mkN "allosaur" ; -lin allot_V2 = mkV2 (mkV "allot" "allots" "allotted" "allotted" "allotting"); -- from DictEng -lin allotment_N = mkN "allotment" "allotments"; -- from DictEng -lin allotrope_N = mkN "allotrope" ; -lin allotropic_A = mkA "allotropic" ; -lin allotropy_N = mkN "allotropy" ; -lin allotted_A = mkA "allotted" ; -lin allover_A = mkA "allover" ; -lin allow_V = mkV "allow" "allows" "allowed" "allowed" "allowing"; -- from DictEng -lin allow_V2 = mkV2 (mkV "allow" "allows" "allowed" "allowed" "allowing"); -- from DictEng -lin allow_V2V = mkV2V (mkV "allow" "allows" "allowed" "allowed" "allowing") noPrep to_Prep ; -- from DictEng -lin allow_VS = mkVS (mkV "allow" "allows" "allowed" "allowed" "allowing"); -- from DictEng -lin allowable_A = compoundA (mkA "allowable"); -- from DictEng -lin allowance_N = mkN "allowance" "allowances"; -- from DictEng -lin alloy_N = mkN "alloy" "alloys"; -- from DictEng -lin alloy_V2 = mkV2 (mkV "alloy" "alloys" "alloyed" "alloyed" "alloying"); -- from DictEng -lin alloyed_A = mkA "alloyed" ; -lin allspice_N = mkN "allspice" ; -- from DictEng -lin allude_V = mkV "allude" "alludes" "alluded" "alluded" "alluding"; -- from DictEng -lin allure_N = mkN "allure" "allures"; -- from DictEng -lin allure_V2 = mkV2 (mkV "allure" "allures" "allured" "allured" "alluring"); -- from DictEng -lin allurement_N = mkN "allurement" "allurements"; -- from DictEng -lin alluring_A = compoundA (mkA "alluring"); -- from DictEng -lin allusion_N = mkN "allusion" "allusions"; -- from DictEng -lin allusive_A = compoundA (mkA "allusive"); -- from DictEng -lin allusiveness_N = mkN "allusiveness" ; -lin alluvial_A = compoundA (mkA "alluvial"); -- from DictEng -lin alluvion_N = mkN "alluvion" ; -lin ally_N = mkN "ally" "allies"; -- from DictEng -lin ally_V = mkV "ally" ; -lin ally_V2 = mkV2 (mkV "ally" "allies" "allied" "allied" "allying"); -- from DictEng -lin allyl_N = mkN "allyl" ; -lin allylic_A = mkA "allylic" ; -lin alma_mater_N = mkN "alma mater" "alma maters"; -- from DictEng -lin almanac_N = mkN "almanac" "almanacs"; -- from DictEng -lin almandine_N = mkN "almandine" ; -lin almandite_N = mkN "almandite" ; -lin almighty_A = compoundA (mkA "almighty"); -- from DictEng -lin almighty_N = mkN "almighty"; -- from DictEng -lin almond_N = mkN "almond" "almonds"; -- from DictEng -lin almond_eyed_A = compoundA (mkA "almond - eyed"); -- from DictEng -lin almond_scented_A = compoundA (mkA "almond scented") ; -lin almond_shaped_A = compoundA (mkA "almond shaped") ; -lin almond_eyed_A = compoundA (mkA "almond - eyed"); -- from DictEng -lin almoner_N = mkN "almoner" "almoners"; -- from DictEng -lin almost_AdN = mkAdN "almost" ; -- from DictEng -lin almost_Adv = mkAdv "almost"; -- from DictEng -lin almost_Predet = {s="almost"} ; -- from DictEng -lin alms_N = mkN "alms" ; -lin alms_giving_N = mkN "alms - giving" ; -- from DictEng -lin alms_box_N = mkN "alms - box" "alms - boxes"; -- from DictEng -lin alms_giving_N = mkN "alms - giving" ; -- from DictEng -lin alms_house_N = mkN "alms - house" "alms - houses"; -- from DictEng -lin almsgiver_N = mkN "almsgiver" ; -lin alocasia_N = mkN "alocasia" ; -lin aloe_N = mkN "aloe" "aloes"; -- from DictEng -lin aloes_N = mkN "aloes" ; -lin aloft_Adv = mkAdv "aloft"; -- from DictEng -lin aloha_N = mkN "aloha" ; -lin alone_A = compoundA (mkA "alone"); -- from DictEng -lin alone_Adv = mkAdv "alone"; -- from DictEng -lin aloneness_N = mkN "aloneness" ; -lin along_Adv = mkAdv "along"; -- from DictEng -lin along_Prep = mkPrep "along"; -- from DictEng -lin alongside_Adv = mkAdv "alongside"; -- from DictEng -lin alongside_Prep = mkPrep "alongside"; -- from DictEng -lin aloof_A = compoundA (mkA "aloof"); -- from DictEng -lin aloof_Adv = mkAdv "aloof"; -- from DictEng -lin aloofness_N = mkN "aloofness" ; -- from DictEng -lin alopecia_N = mkN "alopecia" ; -lin alopecic_A = mkA "alopecic" ; -lin aloud_Adv = mkAdv "aloud"; -- from DictEng -lin alp_N = mkN "alp" "alps"; -- from DictEng -lin alpaca_N = mkN "alpaca" "alpacas"; -- from DictEng -lin alpenstock_N = mkN "alpenstock" "alpenstocks"; -- from DictEng -lin alpestrine_A = mkA "alpestrine" ; -lin alpha_A = mkA "alpha" ; -lin alpha_N = mkN "alpha" "alphas"; -- from DictEng -lin alpha_interferon_N = mkN "alpha interferon" ; -lin alpha_naphthol_N = mkN "alpha naphthol" ; -lin alpha_tocopheral_N = mkN "alpha tocopheral" ; -lin alphabet_N = mkN "alphabet" "alphabets"; -- from DictEng -lin alphabetic_A = mkA "alphabetic" ; -lin alphabetical_A = compoundA (mkA "alphabetical"); -- from DictEng -lin alphabetically_Adv = mkAdv "alphabetically" ; -lin alphabetization_N = mkN "alphabetization" ; -lin alphabetized_A = mkA "alphabetized" ; -lin alphabetizer_N = mkN "alphabetizer" ; -lin alphanumeric_A = mkA "alphanumeric" ; -lin alphanumerics_N = mkN "alphanumerics" ; -lin alphavirus_N = mkN "alphavirus" ; -lin alpine_A = compoundA (mkA "alpine"); -- from DictEng -lin alpinist_N = mkN "alpinist" "alpinists"; -- from DictEng -lin alprazolam_N = mkN "alprazolam" ; -lin already_AdV = mkAdV "already"; -- from DictEng -lin already_Adv = mkAdv "already"; -- from DictEng -lin alright_A = mkA "alright" ; -lin alright_Adv = mkAdv "alright"; -- from DictEng -lin alsatian_N = mkN "alsatian" "alsatians"; -- from DictEng -lin also_AdV = mkAdV "also"; -- from DictEng -lin also_Adv = mkAdv "also"; -- from DictEng -lin also_ran_N = mkN "also - ran" "also - rans"; -- from DictEng -lin alstroemeria_N = mkN "alstroemeria" ; -lin altar_N = mkN "altar" "altars"; -- from DictEng -lin altar_piece_N = mkN "altar - piece" "altar - pieces"; -- from DictEng -lin altarpiece_N = mkN "altarpiece" ; -lin altazimuth_N = mkN "altazimuth" ; -lin alter_V = mkV "alter" "alters" "altered" "altered" "altering"; -- from DictEng -lin alter_V2 = mkV2 (mkV "alter" "alters" "altered" "altered" "altering"); -- from DictEng -lin alter_ego_N = mkN "alter ego" "alter egos"; -- from DictEng -lin alterability_N = mkN "alterability" ; -lin alterable_A = compoundA (mkA "alterable"); -- from DictEng -lin alteration_N = mkN "alteration" "alterations"; -- from DictEng -lin altercation_N = mkN "altercation" "altercations"; -- from DictEng -lin altered_A = mkA "altered" ; -lin alternate_A = compoundA (mkA "alternate"); -- from DictEng -lin alternate_V = mkV "alternate" "alternates" "alternated" "alternated" "alternating"; -- from DictEng -lin alternate_V2 = mkV2 (mkV "alternate" "alternates" "alternated" "alternated" "alternating"); -- from DictEng -lin alternately_Adv = mkAdv "alternately" ; -lin alternating_A = mkA "alternating" ; -lin alternation_N = mkN "alternation" "alternations"; -- from DictEng -lin alternative_A = compoundA (mkA "alternative"); -- from DictEng -lin alternative_N = mkN "alternative" "alternatives"; -- from DictEng -lin alternatively_Adv = mkAdv "alternatively" ; -lin alternator_N = mkN "alternator" ; -lin althea_N = mkN "althea" ; -lin although_Subj = mkSubj "although"; -- from DictEng -lin altimeter_N = mkN "altimeter" "altimeters"; -- from DictEng -lin altissimo_A = mkA "altissimo" ; -lin altitude_N = mkN "altitude" "altitudes"; -- from DictEng -lin altitudinal_A = mkA "altitudinal" ; -lin altitudinous_A = mkA "altitudinous" ; -lin alto_A = mkA "alto" ; -lin alto_N = mkN "alto" "altos"; -- from DictEng -lin altocumulus_N = mkN "altocumulus" ; -lin altogether_Adv = mkAdv "altogether"; -- from DictEng -lin altostratus_N = mkN "altostratus" ; -lin altricial_A = mkA "altricial" ; -lin altruism_N = mkN "altruism" "altruisms"; -- from DictEng -lin altruist_N = mkN "altruist" "altruists"; -- from DictEng -lin altruistic_A = compoundA (mkA "altruistic"); -- from DictEng -lin altruistically_Adv = mkAdv "altruistically"; -- from DictEng -lin alula_N = mkN "alula" ; -lin alular_A = mkA "alular" ; -lin alum_N = mkN "alum" ; -- from DictEng -lin alumina_N = mkN "alumina" ; -lin aluminate_N = mkN "aluminate" ; -lin aluminiferous_A = mkA "aluminiferous" ; -lin aluminium_N = mkN "aluminium" ; -- from DictEng -lin aluminous_A = mkA "aluminous" ; -lin aluminum_N = mkN "aluminum" ; -lin alumna_N = mkN "alumna" "alumnae" {- FIXME: guessed plural form -}; -- from DictEng -lin alumnus_N = mkN "alumnus" "alumni" {- FIXME: guessed plural form -}; -- from DictEng -lin alumroot_N = mkN "alumroot" ; -lin alundum_N = mkN "alundum" ; -lin alveolar_A = compoundA (mkA "alveolar"); -- from DictEng -lin alveolar_N = mkN "alveolar" "alveolars"; -- from DictEng -lin alveolate_A = mkA "alveolate" ; -lin alveolitis_N = mkN "alveolitis" ; -lin alveolus_N = mkN "alveolus" ; -lin alvine_A = mkA "alvine" ; -lin always_AdV = mkAdV "always"; -- from DictEng -lin always_Adv = mkAdv "always" ; -lin alyssum_N = mkN "alyssum" ; -lin amah_N = mkN "amah" "amahs"; -- from DictEng -lin amain_Adv = mkAdv "amain"; -- from DictEng -lin amalgam_N = mkN "amalgam" "amalgams"; -- from DictEng -lin amalgamate_A = mkA "amalgamate" ; -lin amalgamate_V = mkV "amalgamate" "amalgamates" "amalgamated" "amalgamated" "amalgamating"; -- from DictEng -lin amalgamate_V2 = mkV2 (mkV "amalgamate" "amalgamates" "amalgamated" "amalgamated" "amalgamating"); -- from DictEng -lin amalgamation_N = mkN "amalgamation" "amalgamations"; -- from DictEng -lin amalgamative_A = mkA "amalgamative" ; -lin amalgamator_N = mkN "amalgamator" ; -lin amanuensis_N = mkN "amanuensis" "amanuenses" {- FIXME: guessed plural form -}; -- from DictEng -lin amaranth_N = mkN "amaranth" ; -lin amaranthine_A = mkA "amaranthine" ; -lin amarelle_N = mkN "amarelle" ; -lin amaretto_N = mkN "amaretto" ; -lin amaryllis_N = mkN "amaryllis" "amaryllises"; -- from DictEng -lin amass_V = mkV "amass" ; -lin amass_V2 = mkV2 (mkV "amass" "amasses" "amassed" "amassed" "amassing"); -- from DictEng -lin amastia_N = mkN "amastia" ; -lin amateur_A = mkA "amateur" ; -lin amateur_N = mkN "amateur" "amateurs"; -- from DictEng -lin amateurish_A = compoundA (mkA "amateurish"); -- from DictEng -lin amateurishly_Adv = mkAdv "amateurishly" ; -lin amateurishness_N = mkN "amateurishness" ; -lin amateurism_N = mkN "amateurism" ; -- from DictEng -lin amative_A = mkA "amative" ; -lin amatory_A = compoundA (mkA "amatory"); -- from DictEng -lin amaurosis_N = mkN "amaurosis" ; -lin amaurotic_A = mkA "amaurotic" ; -lin amaze_V2 = mkV2 (mkV "amaze" "amazes" "amazed" "amazed" "amazing"); -- from DictEng -lin amaze_V2V = mkV2V (mkV "amaze") noPrep to_Prep ; -- from DictEng -lin amazed_A = mkA "amazed" ; -lin amazement_N = mkN "amazement" ; -- from DictEng -lin amazing_A = compoundA (mkA "amazing"); -- from DictEng -lin amazingly_Adv = mkAdv "amazingly" ; -lin amazon_N = mkN "amazon" "amazons"; -- from DictEng -lin ambages_N = mkN "ambages" ; -lin ambassador_N = mkN "ambassador" "ambassadors"; -- from DictEng -lin ambassadorial_A = compoundA (mkA "ambassadorial"); -- from DictEng -lin ambassadorship_N = mkN "ambassadorship" ; -lin ambassadress_N = mkN "ambassadress" "ambassadresses"; -- from DictEng -lin amber_A = mkA "amber" ; -lin amber_N = mkN "amber" ; -- from DictEng -lin amber_green_A = compoundA (mkA "amber green") ; -lin ambergris_N = mkN "ambergris" ; -- from DictEng -lin amberjack_N = mkN "amberjack" ; -lin ambiance_N = mkN "ambiance" ; -lin ambidexterity_N = mkN "ambidexterity" ; -lin ambidextrous_A = compoundA (mkA "ambidextrous"); -- from DictEng -lin ambience_N = mkN "ambience"; -- from DictEng -lin ambient_A = compoundA (mkA "ambient"); -- from DictEng -lin ambiguity_N = mkN "ambiguity" "ambiguities"; -- from DictEng -lin ambiguous_A = compoundA (mkA "ambiguous"); -- from DictEng -lin ambiguously_Adv = mkAdv "ambiguously" ; -lin ambit_N = mkN "ambit" "ambits"; -- from DictEng -lin ambition_N = mkN "ambition" "ambitions"; -- from DictEng -lin ambitious_A = compoundA (mkA "ambitious"); -- from DictEng -lin ambitiously_Adv = mkAdv "ambitiously" ; -lin ambivalence_N = mkN "ambivalence" ; -- from DictEng -lin ambivalent_A = compoundA (mkA "ambivalent"); -- from DictEng -lin ambiversion_N = mkN "ambiversion" ; -lin ambiversive_A = mkA "ambiversive" ; -lin amble_N = mkN "amble" "ambles"; -- from DictEng -lin amble_V = mkV "amble" "ambles" "ambled" "ambled" "ambling"; -- from DictEng -lin amble_V2 = mkV2 (mkV "amble") ; -lin amblygonite_N = mkN "amblygonite" ; -lin amblyopia_N = mkN "amblyopia" ; -lin amblyopic_A = mkA "amblyopic" ; -lin amboyna_N = mkN "amboyna" ; -lin ambrosia_N = mkN "ambrosia" ; -- from DictEng -lin ambrosial_A = mkA "ambrosial" ; -lin ambulacral_A = mkA "ambulacral" ; -lin ambulacrum_N = mkN "ambulacrum" ; -lin ambulance_N = mkN "ambulance" "ambulances"; -- from DictEng -lin ambulant_A = mkA "ambulant" ; -lin ambulation_N = mkN "ambulation" ; -lin ambulatory_A = mkA "ambulatory" ; -lin ambulatory_N = mkN "ambulatory" ; -lin ambuscade_N = mkN "ambuscade" "ambuscades"; -- from DictEng -lin ambuscade_V2 = mkV2 (mkV "ambuscade" "ambuscades" "ambuscaded" "ambuscaded" "ambuscading"); -- from DictEng -lin ambush_N = mkN "ambush" "ambushes"; -- from DictEng -lin ambush_V2 = mkV2 (mkV "ambush" "ambushes" "ambushed" "ambushed" "ambushing"); -- from DictEng -lin ambusher_N = mkN "ambusher" ; -lin ambystomid_N = mkN "ambystomid" ; -lin ameba_N = mkN "ameba" "amebas"; -- from DictEng -lin amebiasis_N = mkN "amebiasis" ; -lin ameboid_A = mkA "ameboid" ; -lin ameer_N = mkN "ameer" "ameers"; -- from DictEng -lin amelia_N = mkN "amelia" ; -lin ameliorate_V = mkV "ameliorate" "ameliorates" "ameliorated" "ameliorated" "ameliorating"; -- from DictEng -lin ameliorate_V2 = mkV2 (mkV "ameliorate" "ameliorates" "ameliorated" "ameliorated" "ameliorating"); -- from DictEng -lin ameliorating_A = mkA "ameliorating" ; -lin amelioration_N = mkN "amelioration" "ameliorations"; -- from DictEng -lin ameloblast_N = mkN "ameloblast" ; -lin amelogenesis_N = mkN "amelogenesis" ; -lin amenability_N = mkN "amenability" ; -lin amenable_A = compoundA (mkA "amenable"); -- from DictEng -lin amend_V = mkV "amend" "amends" "amended" "amended" "amending"; -- from DictEng -lin amend_V2 = mkV2 (mkV "amend" "amends" "amended" "amended" "amending"); -- from DictEng -lin amend_V2V = mkV2V (mkV "amend" "amends" "amended" "amended" "amending") noPrep to_Prep ; -- from DictEng -lin amendable_A = compoundA (mkA "amendable"); -- from DictEng -lin amendatory_A = mkA "amendatory" ; -lin amended_A = mkA "amended" ; -lin amendment_N = mkN "amendment" "amendments"; -- from DictEng -lin amenity_N = mkN "amenity" "amenities"; -- from DictEng -lin amenorrhea_N = mkN "amenorrhea" ; -lin amenorrheic_A = mkA "amenorrheic" ; -lin amentiferous_A = mkA "amentiferous" ; -lin amerciable_A = mkA "amerciable" ; -lin american_A = compoundA (mkA "American"); -- from DictEng -lin american_N = mkN "American" "Americans"; -- from DictEng -lin americanism_N = mkN "americanism" "americanisms"; -- from DictEng -lin americanize_V2 = mkV2 (mkV "americanize"); -- from DictEng -lin americium_N = mkN "americium" ; -lin ametabolic_A = mkA "ametabolic" ; -lin amethyst_A = mkA "amethyst" ; -lin amethyst_N = mkN "amethyst" "amethysts"; -- from DictEng -lin amethystine_A = mkA "amethystine" ; -lin ametria_N = mkN "ametria" ; -lin ametropia_N = mkN "ametropia" ; -lin ametropic_A = mkA "ametropic" ; -lin amharic_N = mkN "amharic" ; -- from DictEng -lin amiability_N = mkN "amiability" ; -- from DictEng -lin amiable_A = compoundA (mkA "amiable"); -- from DictEng -lin amicability_N = mkN "amicability" ; -- from DictEng -lin amicable_A = compoundA (mkA "amicable"); -- from DictEng -lin amicably_Adv = mkAdv "amicably" ; -lin amid_Prep = mkPrep "amid"; -- from DictEng -lin amide_N = mkN "amide" ; -lin amidship_A = mkA "amidship" ; -lin amidship_Adv = mkAdv "amidship" ; -lin amidships_Adv = mkAdv "amidships"; -- from DictEng -lin amidst_Prep = mkPrep "amidst"; -- from DictEng -lin amigo_N = mkN "amigo" ; -lin amine_N = mkN "amine" ; -lin amino_A = mkA "amino" ; -lin amino_N = mkN "amino" ; -lin aminoaciduria_N = mkN "aminoaciduria" ; -lin aminomethane_N = mkN "aminomethane" ; -lin aminophylline_N = mkN "aminophylline" ; -lin aminopyrine_N = mkN "aminopyrine" ; -lin amiodarone_N = mkN "amiodarone" ; -lin amir_N = mkN "amir" "amirs"; -- from DictEng -lin amiss_A = compoundA (mkA "amiss"); -- from DictEng -lin amiss_Adv = mkAdv "amiss"; -- from DictEng -lin amitosis_N = mkN "amitosis" ; -lin amitotic_A = mkA "amitotic" ; -lin amitriptyline_N = mkN "amitriptyline" ; -lin amity_N = mkN "amity" ; -- from DictEng -lin ammeter_N = mkN "ammeter" "ammeters"; -- from DictEng -lin ammine_N = mkN "ammine" ; -lin ammino_A = mkA "ammino" ; -lin ammobium_N = mkN "ammobium" ; -lin ammonia_N = mkN "ammonia" ; -- from DictEng -lin ammoniac_A = mkA "ammoniac" ; -lin ammoniac_N = mkN "ammoniac" ; -lin ammoniated_A = compoundA (mkA "ammoniated"); -- from DictEng -lin ammonification_N = mkN "ammonification" ; -lin ammonite_N = mkN "ammonite" "ammonites"; -- from DictEng -lin ammonitic_A = mkA "ammonitic" ; -lin ammonium_N = mkN "ammonium" ; -lin ammoniuria_N = mkN "ammoniuria" ; -lin ammunition_N = mkN "ammunition" ; -- from DictEng -lin amnesia_N = mkN "amnesia" ; -- from DictEng -lin amnesic_A = mkA "amnesic" ; -lin amnesic_N = mkN "amnesic" ; -lin amnestic_A = mkA "amnestic" ; -lin amnesty_N = mkN "amnesty" "amnesties"; -- from DictEng -lin amniocentesis_N = mkN "amniocentesis" ; -lin amnion_N = mkN "amnion" ; -lin amniote_N = mkN "amniote" ; -lin amniotic_A = mkA "amniotic" ; -lin amobarbital_N = mkN "amobarbital" ; -lin amoeba_N = mkN "amoeba" "amoebas"; -- from DictEng -lin amoebic_A = compoundA (mkA "amoebic"); -- from DictEng -lin amok_Adv = mkAdv "amok"; -- from DictEng -lin among_Prep = mkPrep "among"; -- from DictEng -lin amongst_Prep = mkPrep "amongst"; -- from DictEng -lin amora_N = mkN "amora" ; -lin amoral_A = compoundA (mkA "amoral"); -- from DictEng -lin amoralism_N = mkN "amoralism" ; -lin amoralist_N = mkN "amoralist" ; -lin amorality_N = mkN "amorality" ; -lin amorist_N = mkN "amorist" ; -lin amoristic_A = mkA "amoristic" ; -lin amorous_A = compoundA (mkA "amorous"); -- from DictEng -lin amorously_Adv = mkAdv "amorously" ; -lin amorousness_N = mkN "amorousness" ; -lin amorpha_N = mkN "amorpha" ; -lin amorphophallus_N = mkN "amorphophallus" ; -lin amorphous_A = compoundA (mkA "amorphous"); -- from DictEng -lin amort_A = mkA "amort" ; -lin amortization_N = mkN "amortization" "amortizations"; -- from DictEng -lin amortize_V2 = mkV2 (mkV "amortize" "amortizes" "amortized" "amortized" "amortizing"); -- from DictEng -lin amount_N = mkN "amount" "amounts"; -- from DictEng -lin amount_V = mkV "amount" "amounts" "amounted" "amounted" "amounting"; -- from DictEng -lin amour_N = mkN "amour" "amours"; -- from DictEng -lin amour_propre_N = mkN "amour - propre" ; -- from DictEng -lin amoxicillin_N = mkN "amoxicillin" ; -lin amp_Conj = mkConj "&"; -- from DictEng -lin amp_N = mkN "amp" "amps"; -- from DictEng -lin amperage_N = mkN "amperage" ; -lin ampere_N = mkN "ampere" "amperes"; -- from DictEng -lin ampere_hour_N = mkN "ampere hour" ; -lin ampere_minute_N = mkN "ampere minute" ; -lin ampere_turn_N = mkN "ampere turn" ; -lin ampersand_N = mkN "ampersand" ; -lin amphetamine_N = mkN "amphetamine" "amphetamines"; -- from DictEng -lin amphibia_N = mkN "amphibia" ; -lin amphibian_N = mkN "amphibian" "amphibians"; -- from DictEng -lin amphibiotic_A = mkA "amphibiotic" ; -lin amphibious_A = compoundA (mkA "amphibious"); -- from DictEng -lin amphibole_N = mkN "amphibole" ; -lin amphibolite_N = mkN "amphibolite" ; -lin amphibology_N = mkN "amphibology" ; -lin amphibrach_N = mkN "amphibrach" ; -lin amphictyony_N = mkN "amphictyony" ; -lin amphidiploid_N = mkN "amphidiploid" ; -lin amphidiploidy_N = mkN "amphidiploidy" ; -lin amphigory_N = mkN "amphigory" ; -lin amphimixis_N = mkN "amphimixis" ; -lin amphipod_N = mkN "amphipod" ; -lin amphiprostylar_A = mkA "amphiprostylar" ; -lin amphisbaena_N = mkN "amphisbaena" ; -lin amphistylar_A = mkA "amphistylar" ; -lin amphitheater_N = mkN "amphitheater" ; -lin amphitheatre_N = mkN "amphitheatre" "amphitheatres"; -- from DictEng -lin amphitheatric_A = mkA "amphitheatric" ; -lin amphitropous_A = mkA "amphitropous" ; -lin amphiuma_N = mkN "amphiuma" ; -lin amphora_N = mkN "amphora" "amphoras"; -- from DictEng -lin amphoric_A = mkA "amphoric" ; -lin amphoteric_A = mkA "amphoteric" ; -lin amphotericin_N = mkN "amphotericin" ; -lin ampicillin_N = mkN "ampicillin" ; -lin ample_A = irregAdv (mkA "ample" "ampler") "amply" ; -- from DictEng -lin ampleness_N = mkN "ampleness" ; -lin amplification_N = mkN "amplification" "amplifications"; -- from DictEng -lin amplifier_N = mkN "amplifier" "amplifiers"; -- from DictEng -lin amplify_V2 = mkV2 (mkV "amplify" "amplifies" "amplified" "amplified" "amplifying"); -- from DictEng -lin amplitude_N = mkN "amplitude" ; -- from DictEng -lin amply_Adv = mkAdv "amply" ; -lin ampoule_N = mkN "ampoule" "ampoules"; -- from DictEng -lin ampulla_N = mkN "ampulla" ; -lin ampullar_A = mkA "ampullar" ; -lin amputate_V2 = mkV2 (mkV "amputate" "amputates" "amputated" "amputated" "amputating"); -- from DictEng -lin amputation_N = mkN "amputation" "amputations"; -- from DictEng -lin amputator_N = mkN "amputator" ; -lin amputee_N = mkN "amputee" ; -lin amrinone_N = mkN "amrinone" ; -lin amuck_A = mkA "amuck" ; -lin amuck_Adv = mkAdv "amuck"; -- from DictEng -lin amulet_N = mkN "amulet" "amulets"; -- from DictEng -lin amuse_V2 = mkV2 (mkV "amuse" "amuses" "amused" "amused" "amusing"); -- from DictEng -lin amused_A = mkA "amused" ; -lin amusement_N = mkN "amusement" "amusements"; -- from DictEng -lin amusing_A = compoundA (mkA "amusing"); -- from DictEng -lin amusingly_Adv = mkAdv "amusingly" ; -lin amygdala_N = mkN "amygdala" ; -lin amygdalin_N = mkN "amygdalin" ; -lin amygdaline_A = mkA "amygdaline" ; -lin amygdaloid_N = mkN "amygdaloid" ; -lin amygdalotomy_N = mkN "amygdalotomy" ; -lin amyl_N = mkN "amyl" ; -lin amylase_N = mkN "amylase" ; -lin amyloid_N = mkN "amyloid" ; -lin amyloidosis_N = mkN "amyloidosis" ; -lin amylolysis_N = mkN "amylolysis" ; -lin amylolytic_A = mkA "amylolytic" ; -lin amyotrophia_N = mkN "amyotrophia" ; -lin amyxia_N = mkN "amyxia" ; -lin ana_N = mkN "ana" ; -lin anabatic_A = mkA "anabatic" ; -lin anabiosis_N = mkN "anabiosis" ; -lin anabiotic_A = mkA "anabiotic" ; -lin anabolic_A = mkA "anabolic" ; -lin anabolism_N = mkN "anabolism" ; -lin anachronic_A = mkA "anachronic" ; -lin anachronism_N = mkN "anachronism" "anachronisms"; -- from DictEng -lin anachronistic_A = compoundA (mkA "anachronistic"); -- from DictEng -lin anachronistically_Adv = mkAdv "anachronistically" ; -lin anaclinal_A = mkA "anaclinal" ; -lin anaclisis_N = mkN "anaclisis" ; -lin anaclitic_A = mkA "anaclitic" ; -lin anacoluthia_N = mkN "anacoluthia" ; -lin anacoluthic_A = mkA "anacoluthic" ; -lin anaconda_N = mkN "anaconda" "anacondas"; -- from DictEng -lin anadiplosis_N = mkN "anadiplosis" ; -lin anadromous_A = mkA "anadromous" ; -lin anaemia_N = mkN "anaemia" ; -- from DictEng -lin anaemic_A = compoundA (mkA "anaemic"); -- from DictEng -lin anaerobe_N = mkN "anaerobe" ; -lin anaerobic_A = mkA "anaerobic" ; -lin anaesthesia_N = mkN "anaesthesia" ; -- from DictEng -lin anaesthetic_A = compoundA (mkA "anaesthetic"); -- from DictEng -lin anaesthetic_N = mkN "anaesthetic" "anaesthetics"; -- from DictEng -lin anaesthetist_N = mkN "anaesthetist" "anaesthetists"; -- from DictEng -lin anaesthetize_V2 = mkV2 (mkV "anaesthetize" "anaesthetizes" "anaesthetized" "anaesthetized" "anaesthetizing"); -- from DictEng -lin anaglyph_N = mkN "anaglyph" ; -lin anaglyphic_A = mkA "anaglyphic" ; -lin anaglyphy_N = mkN "anaglyphy" ; -lin anagnost_N = mkN "anagnost" ; -lin anagoge_N = mkN "anagoge" ; -lin anagogic_A = mkA "anagogic" ; -lin anagram_N = mkN "anagram" "anagrams"; -- from DictEng -lin anagrammatic_A = mkA "anagrammatic" ; -lin anagrams_N = mkN "anagrams" ; -lin anal_A = compoundA (mkA "anal"); -- from DictEng -lin analbuminemia_N = mkN "analbuminemia" ; -lin analects_N = mkN "analects" ; -lin analeptic_A = mkA "analeptic" ; -lin analeptic_N = mkN "analeptic" ; -lin analgesia_N = mkN "analgesia" ; -- from DictEng -lin analgesic_A = mkA "analgesic" ; -lin analgesic_N = mkN "analgesic" "analgesics"; -- from DictEng -lin analog_N = mkN "analog" "analogs"; -- from DictEng -lin analogical_A = mkA "analogical" ; -lin analogist_N = mkN "analogist" ; -lin analogous_A = compoundA (mkA "analogous"); -- from DictEng -lin analogously_Adv = mkAdv "analogously" ; -lin analogue_A = mkA "analogue" ; -lin analogue_N = mkN "analogue" "analogues"; -- from DictEng -lin analogy_N = mkN "analogy" "analogies"; -- from DictEng -lin analphabet_N = mkN "analphabet" ; -lin analphabetic_A = mkA "analphabetic" ; -lin analysand_N = mkN "analysand" ; -lin analyse_V2 = mkV2 (mkV "analyse" "analyses" "analysed" "analysed" "analysing"); -- from DictEng -lin analysis_N = mkN "analysis" "analyses" {- FIXME: guessed plural form -}; -- from DictEng -lin analyst_N = mkN "analyst" "analysts"; -- from DictEng -lin analytic_A = compoundA (mkA "analytic"); -- from DictEng -lin analytical_A = compoundA (mkA "analytical"); -- from DictEng -lin analytically_Adv = mkAdv "analytically" ; -lin analyticity_N = mkN "analyticity" ; -lin analyzable_A = mkA "analyzable" ; -lin analyze_V2 = mkV2 (mkV "analyze" "analyzes" "analyzed" "analyzed" "analyzing"); -- from DictEng -lin analyzed_A = mkA "analyzed" ; -lin analyzer_N = mkN "analyzer" ; -lin anamnestic_A = mkA "anamnestic" ; -lin anamorphic_A = mkA "anamorphic" ; -lin anamorphism_N = mkN "anamorphism" ; -lin anamorphosis_N = mkN "anamorphosis" ; -lin anapaest_N = mkN "anapaest" "anapaests"; -- from DictEng -lin anapaestic_A = compoundA (mkA "anapaestic"); -- from DictEng -lin anapest_N = mkN "anapest" ; -lin anapestic_A = mkA "anapestic" ; -lin anaphase_N = mkN "anaphase" ; -lin anaphasic_A = mkA "anaphasic" ; -lin anaphor_N = mkN "anaphor" ; -lin anaphora_N = mkN "anaphora" ; -lin anaphoric_A = mkA "anaphoric" ; -lin anaphrodisia_N = mkN "anaphrodisia" ; -lin anaphrodisiac_A = mkA "anaphrodisiac" ; -lin anaphylactic_A = mkA "anaphylactic" ; -lin anaphylaxis_N = mkN "anaphylaxis" ; -lin anaplasia_N = mkN "anaplasia" ; -lin anaplasmosis_N = mkN "anaplasmosis" ; -lin anaplastic_A = mkA "anaplastic" ; -lin anapsid_N = mkN "anapsid" ; -lin anarchic_A = compoundA (mkA "anarchic"); -- from DictEng -lin anarchically_Adv = mkAdv "anarchically"; -- from DictEng -lin anarchism_N = mkN "anarchism" ; -- from DictEng -lin anarchist_N = mkN "anarchist" "anarchists"; -- from DictEng -lin anarchistic_A = mkA "anarchistic" ; -lin anarchy_N = mkN "anarchy" ; -- from DictEng -lin anarthria_N = mkN "anarthria" ; -lin anasarca_N = mkN "anasarca" ; -lin anasarcous_A = mkA "anasarcous" ; -lin anaspid_N = mkN "anaspid" ; -lin anastalsis_N = mkN "anastalsis" ; -lin anastigmat_N = mkN "anastigmat" ; -lin anastigmatic_A = mkA "anastigmatic" ; -lin anastomosis_N = mkN "anastomosis" ; -lin anastomotic_A = mkA "anastomotic" ; -lin anastrophe_N = mkN "anastrophe" ; -lin anastylosis_N = mkN "anastylosis" ; -lin anathema_N = mkN "anathema" "anathemas"; -- from DictEng -lin anathematization_N = mkN "anathematization" ; -lin anathematize_V = mkV "anathematize" "anathematizes" "anathematized" "anathematized" "anathematizing"; -- from DictEng -lin anathematize_V2 = mkV2 (mkV "anathematize" "anathematizes" "anathematized" "anathematized" "anathematizing"); -- from DictEng -lin anatomic_A = mkA "anatomic" ; -lin anatomical_A = compoundA (mkA "anatomical"); -- from DictEng -lin anatomically_Adv = mkAdv "anatomically" ; -lin anatomist_N = mkN "anatomist" "anatomists"; -- from DictEng -lin anatomy_N = mkN "anatomy" ; -- from DictEng -lin anatotitan_N = mkN "anatotitan" ; -lin anatoxin_N = mkN "anatoxin" ; -lin anatropous_A = mkA "anatropous" ; -lin ancestor_N = mkN "ancestor" "ancestors"; -- from DictEng -lin ancestral_A = compoundA (mkA "ancestral"); -- from DictEng -lin ancestress_N = mkN "ancestress" "ancestresses"; -- from DictEng -lin ancestry_N = mkN "ancestry" "ancestries"; -- from DictEng -lin anchor_N = mkN "anchor" "anchors"; -- from DictEng -lin anchor_V = mkV "anchor" "anchors" "anchored" "anchored" "anchoring"; -- from DictEng -lin anchor_V2 = mkV2 (mkV "anchor" "anchors" "anchored" "anchored" "anchoring"); -- from DictEng -lin anchorage_N = mkN "anchorage" "anchorages"; -- from DictEng -lin anchorite_N = mkN "anchorite" "anchorites"; -- from DictEng -lin anchoritic_A = mkA "anchoritic" ; -lin anchorman_N = mkN "anchorman" "anchormen" {- FIXME: guessed plural form -}; -- from DictEng -lin anchovy_N = mkN "anchovy" "anchovies"; -- from DictEng -lin anchusa_N = mkN "anchusa" ; -lin ancient_A = compoundA (mkA "ancient"); -- from DictEng -lin ancient_N = mkN "ancient" ; -lin anciently_Adv = mkAdv "anciently" ; -lin ancientness_N = mkN "ancientness" ; -lin ancients_N = mkN "ancients" ; -lin ancillary_A = compoundA (mkA "ancillary"); -- from DictEng -lin and_Conj = mkConj "and" ; -- from DictEng -lin and_how_Adv = mkAdv "and how" ; -lin and_so_forth_Adv = mkAdv "and so forth" ; -lin and_then_some_Adv = mkAdv "and then some" ; -lin andante_A = compoundA (mkA "andante"); -- from DictEng -lin andante_Adv = mkAdv "andante"; -- from DictEng -lin andante_N = mkN "andante" "andantes"; -- from DictEng -lin andantino_A = mkA "andantino" ; -lin andesite_N = mkN "andesite" ; -lin andiron_N = mkN "andiron" "andirons"; -- from DictEng -lin andorran_A = compoundA (mkA "andorran"); -- from DictEng -lin andorran_N = mkN "andorran" "andorrans"; -- from DictEng -lin andradite_N = mkN "andradite" ; -lin andrena_N = mkN "andrena" ; -lin androecium_N = mkN "androecium" ; -lin androgen_N = mkN "androgen" ; -lin androgenesis_N = mkN "androgenesis" ; -lin androgenetic_A = mkA "androgenetic" ; -lin androgenic_A = mkA "androgenic" ; -lin androglossia_N = mkN "androglossia" ; -lin androgynous_A = mkA "androgynous" ; -lin androgyny_N = mkN "androgyny" ; -lin android_N = mkN "android" ; -lin andromeda_N = mkN "andromeda" ; -lin androphobia_N = mkN "androphobia" ; -lin androsterone_N = mkN "androsterone" ; -lin andryala_N = mkN "andryala" ; -lin anecdotal_A = compoundA (mkA "anecdotal"); -- from DictEng -lin anecdote_N = mkN "anecdote" "anecdotes"; -- from DictEng -lin anecdotic_A = mkA "anecdotic" ; -lin anecdotist_N = mkN "anecdotist" ; -lin anechoic_A = mkA "anechoic" ; -lin anemia_N = mkN "anemia" ; -lin anemic_A = mkA "anemic" ; -lin anemographic_A = mkA "anemographic" ; -lin anemography_N = mkN "anemography" ; -lin anemometer_N = mkN "anemometer" "anemometers"; -- from DictEng -lin anemometric_A = mkA "anemometric" ; -lin anemometry_N = mkN "anemometry" ; -lin anemone_N = mkN "anemone" "anemones"; -- from DictEng -lin anemophilous_A = mkA "anemophilous" ; -lin anencephalic_A = mkA "anencephalic" ; -lin anencephaly_N = mkN "anencephaly" ; -lin anent_Prep = mkPrep "anent"; -- from DictEng -lin anergy_N = mkN "anergy" ; -lin aneroid_A = compoundA (mkA "aneroid"); -- from DictEng -lin aneroid_N = mkN "aneroid" "aneroids"; -- from DictEng -lin anesthesia_N = mkN "anesthesia" ; -lin anesthesiologist_N = mkN "anesthesiologist" ; -lin anesthesiology_N = mkN "anesthesiology" ; -lin anesthetic_A = compoundA (mkA "anesthetic"); -- from DictEng -lin anesthetic_N = mkN "anesthetic" "anesthetics"; -- from DictEng -lin anesthetist_N = mkN "anesthetist" "anesthetists"; -- from DictEng -lin anesthetize_V2 = mkV2 (mkV "anesthetize" "anesthetizes" "anesthetized" "anesthetized" "anesthetizing"); -- from DictEng -lin anesthyl_N = mkN "anesthyl" ; -lin anestrous_A = mkA "anestrous" ; -lin anestrus_N = mkN "anestrus" ; -lin aneuploid_A = mkA "aneuploid" ; -lin aneuploidy_N = mkN "aneuploidy" ; -lin aneurysm_N = mkN "aneurysm" ; -lin aneurysmal_A = mkA "aneurysmal" ; -lin anew_Adv = mkAdv "anew"; -- from DictEng -lin anfractuous_A = mkA "anfractuous" ; -lin angel_N = mkN "angel" "angels"; -- from DictEng -lin angelfish_N = mkN "angelfish" ; -lin angelic_A = compoundA (mkA "angelic"); -- from DictEng -lin angelica_N = mkN "angelica" ; -- from DictEng -lin angelically_Adv = mkAdv "angelically"; -- from DictEng -lin angelim_N = mkN "angelim" ; -lin angelology_N = mkN "angelology" ; -lin angelus_N = mkN "angelus" "angeluses"; -- from DictEng -lin anger_N = mkN "anger" ; -- from DictEng -lin anger_V2 = mkV2 (mkV "anger" "angers" "angered" "angered" "angering"); -- from DictEng -lin angered_A = mkA "angered" ; -lin angiitis_N = mkN "angiitis" ; -lin angina_N = mkN "angina" ; -- from DictEng -lin anginal_A = mkA "anginal" ; -lin angiocardiogram_N = mkN "angiocardiogram" ; -lin angiocarp_N = mkN "angiocarp" ; -lin angiocarpic_A = mkA "angiocarpic" ; -lin angioedema_N = mkN "angioedema" ; -lin angiogenesis_N = mkN "angiogenesis" ; -lin angiogram_N = mkN "angiogram" ; -lin angiography_N = mkN "angiography" ; -lin angiologist_N = mkN "angiologist" ; -lin angiology_N = mkN "angiology" ; -lin angioma_N = mkN "angioma" ; -lin angiomatous_A = mkA "angiomatous" ; -lin angiopathy_N = mkN "angiopathy" ; -lin angioplasty_N = mkN "angioplasty" ; -lin angiopteris_N = mkN "angiopteris" ; -lin angiosarcoma_N = mkN "angiosarcoma" ; -lin angioscope_N = mkN "angioscope" ; -lin angiosperm_N = mkN "angiosperm" ; -lin angiospermous_A = mkA "angiospermous" ; -lin angiotelectasia_N = mkN "angiotelectasia" ; -lin angiotensin_N = mkN "angiotensin" ; -lin angiotensin_i_PN = mkPN "angiotensin I" ; -lin angiotensin_ii_PN = mkPN "angiotensin II" ; -lin angiotensin_ii_inhibitor_PN = mkPN "angiotensin II inhibitor" ; -lin angle_N = mkN "angle" "angles"; -- from DictEng -lin angle_V = mkV "angle" "angles" "angled" "angled" "angling"; -- from DictEng -lin angle_V2 = mkV2 (mkV "angle" "angles" "angled" "angled" "angling"); -- from DictEng -lin angle_dozer_N = mkN "angle - dozer" "angle - dozers"; -- from DictEng -lin angle_iron_N = mkN "angle - iron" "angle - irons"; -- from DictEng -lin angle_park_V = mkV "angle - park" "angle - parks" "angle - parked" "angle - parked" "angle - parking"; -- from DictEng -lin angle_park_V2 = mkV2 (mkV "angle - park" "angle - parks" "angle - parked" "angle - parked" "angle - parking"); -- from DictEng -lin angled_A = mkA "angled" ; -lin angledozer_N = mkN "angledozer" ; -lin angler_N = mkN "angler" "anglers"; -- from DictEng -lin anglewing_N = mkN "anglewing" ; -lin anglican_A = compoundA (mkA "anglican"); -- from DictEng -lin anglican_N = mkN "anglican" "anglicans"; -- from DictEng -lin anglicism_N = mkN "anglicism" "anglicisms"; -- from DictEng -lin anglicize_V2 = mkV2 (mkV "anglicize" "anglicizes" "anglicized" "anglicized" "anglicizing"); -- from DictEng -lin angling_N = mkN "angling" ; -- from DictEng -lin anglo_catholic_A = compoundA (mkA "anglo - catholic"); -- from DictEng -lin anglo_catholic_N = mkN "anglo - catholic" "anglo - catholics"; -- from DictEng -lin anglo_indian_A = compoundA (mkA "anglo - indian"); -- from DictEng -lin anglo_indian_N = mkN "anglo - indian" "anglo - indians"; -- from DictEng -lin anglo_saxon_A = compoundA (mkA "anglo - saxon"); -- from DictEng -lin anglo_saxon_N = mkN "anglo - saxon" "anglo - saxons"; -- from DictEng -lin anglomania_N = mkN "anglomania" ; -- from DictEng -lin anglophil_N = mkN "anglophil" "anglophils"; -- from DictEng -lin anglophile_N = mkN "anglophile" "anglophiles"; -- from DictEng -lin anglophobe_N = mkN "anglophobe" "anglophobes"; -- from DictEng -lin anglophobia_N = mkN "anglophobia" ; -- from DictEng -lin angolan_A = compoundA (mkA "angolan"); -- from DictEng -lin angolan_N = mkN "angolan" "angolans"; -- from DictEng -lin angora_N = mkN "angora" "angoras"; -- from DictEng -lin angostura_N = mkN "angostura" ; -- from DictEng -lin angrecum_N = mkN "angrecum" ; -lin angrily_Adv = mkAdv "angrily" ; -lin angry_A = mkA "angry" "angrier"; -- from DictEng -lin angst_N = mkN "angst" ; -- from DictEng -lin angstrom_N = mkN "angstrom" ; -lin anguillan_A = compoundA (mkA "anguillan"); -- from DictEng -lin anguillan_N = mkN "anguillan" "anguillans"; -- from DictEng -lin anguine_A = mkA "anguine" ; -lin anguish_N = mkN "anguish" ; -- from DictEng -lin anguished_A = compoundA (mkA "anguished"); -- from DictEng -lin angular_A = compoundA (mkA "angular"); -- from DictEng -lin angularity_N = mkN "angularity" "angularities"; -- from DictEng -lin angulation_N = mkN "angulation" ; -lin angwantibo_N = mkN "angwantibo" ; -lin anhedonia_N = mkN "anhedonia" ; -lin anhidrosis_N = mkN "anhidrosis" ; -lin anhydride_N = mkN "anhydride" ; -lin anhydrous_A = mkA "anhydrous" ; -lin ani_N = mkN "ani" ; -lin anicteric_A = mkA "anicteric" ; -lin anil_N = mkN "anil" ; -lin anile_A = mkA "anile" ; -lin aniline_N = mkN "aniline" "anilines"; -- from DictEng -lin anima_N = mkN "anima" ; -lin animadversion_N = mkN "animadversion" "animadversions"; -- from DictEng -lin animadvert_V = mkV "animadvert" "animadverts" "animadverted" "animadverted" "animadverting"; -- from DictEng -lin animal_A = mkA "animal" ; -lin animal_N = mkN "animal" "animals"; -- from DictEng -lin animalcule_N = mkN "animalcule" "animalcules"; -- from DictEng -lin animalism_N = mkN "animalism" ; -lin animalistic_A = mkA "animalistic" ; -lin animality_N = mkN "animality" ; -lin animalization_N = mkN "animalization" ; -lin animate_A = compoundA (mkA "animate"); -- from DictEng -lin animate_V2 = mkV2 (mkV "animate" "animates" "animated" "animated" "animating"); -- from DictEng -lin animated_A = mkA "animated" ; -lin animatedly_A = compoundA (mkA "animatedly"); -- from DictEng -lin animatedly_Adv = mkAdv "animatedly" ; -lin animateness_N = mkN "animateness" ; -lin animating_A = mkA "animating" ; -lin animation_N = mkN "animation" ; -- from DictEng -lin animatism_N = mkN "animatism" ; -lin animatistic_A = mkA "animatistic" ; -lin animator_N = mkN "animator" ; -lin animatronics_N = mkN "animatronics" ; -lin anime_N = mkN "anime" ; -lin animism_N = mkN "animism" ; -- from DictEng -lin animist_A = mkA "animist" ; -lin animist_N = mkN "animist" ; -lin animosity_N = mkN "animosity" "animosities"; -- from DictEng -lin animus_N = mkN "animus" ; -- from DictEng -lin anion_N = mkN "anion" ; -lin anionic_A = mkA "anionic" ; -lin anise_N = mkN "anise" "anises"; -- from DictEng -lin anise_scented_A = compoundA (mkA "anise scented") ; -lin aniseed_N = mkN "aniseed" ; -- from DictEng -lin aniseikonia_N = mkN "aniseikonia" ; -lin aniseikonic_A = mkA "aniseikonic" ; -lin anisette_N = mkN "anisette" ; -lin anisogamete_N = mkN "anisogamete" ; -lin anisogametic_A = mkA "anisogametic" ; -lin anisogamic_A = mkA "anisogamic" ; -lin anisogamy_N = mkN "anisogamy" ; -lin anisometric_A = mkA "anisometric" ; -lin anisometropia_N = mkN "anisometropia" ; -lin anisometropic_A = mkA "anisometropic" ; -lin anisotropic_A = mkA "anisotropic" ; -lin anisotropically_Adv = mkAdv "anisotropically" ; -lin anisotropy_N = mkN "anisotropy" ; -lin anjou_N = mkN "anjou" ; -lin ankle_N = mkN "ankle" "ankles"; -- from DictEng -lin ankle_deep_A = compoundA (mkA "ankle deep") ; -lin anklebone_N = mkN "anklebone" ; -lin anklet_N = mkN "anklet" "anklets"; -- from DictEng -lin ankus_N = mkN "ankus" ; -lin ankylosaur_N = mkN "ankylosaur" ; -lin ankylosis_N = mkN "ankylosis" ; -lin ankylotic_A = mkA "ankylotic" ; -lin anna_N = mkN "anna" "annas"; -- from DictEng -lin annalist_N = mkN "annalist" "annalists"; -- from DictEng -lin annalistic_A = mkA "annalistic" ; -lin annals_N = mkN "annals" ; -lin anneal_V2 = mkV2 (mkV "anneal" "anneals" "annealed" "annealed" "annealing"); -- from DictEng -lin annealing_N = mkN "annealing" ; -lin annelid_A = mkA "annelid" ; -lin annelid_N = mkN "annelid" ; -lin annex_N = mkN "annex" "annexes"; -- from DictEng -lin annex_V2 = mkV2 (mkV "annex" "annexes" "annexed" "annexed" "annexing"); -- from DictEng -lin annexation_N = mkN "annexation" ; -- from DictEng -lin annexational_A = mkA "annexational" ; -lin annexe_N = mkN "annexe" "annexes"; -- from DictEng -lin annihilate_V2 = mkV2 (mkV "annihilate" "annihilates" "annihilated" "annihilated" "annihilating"); -- from DictEng -lin annihilated_A = mkA "annihilated" ; -lin annihilating_A = mkA "annihilating" ; -lin annihilation_N = mkN "annihilation" ; -- from DictEng -lin annihilative_A = mkA "annihilative" ; -lin annihilator_N = mkN "annihilator" ; -lin anniversary_N = mkN "anniversary" "anniversaries"; -- from DictEng -lin annotate_V = mkV "annotate" ; -lin annotate_V2 = mkV2 (mkV "annotate" "annotates" "annotated" "annotated" "annotating"); -- from DictEng -lin annotation_N = mkN "annotation" "annotations"; -- from DictEng -lin annotator_N = mkN "annotator" ; -lin announce_V2 = mkV2 (mkV "announce" "announces" "announced" "announced" "announcing"); -- from DictEng -lin announce_VS = mkVS (mkV "announce" "announces" "announced" "announced" "announcing"); -- from DictEng -lin announced_A = mkA "announced" ; -lin announcement_N = mkN "announcement" "announcements"; -- from DictEng -lin announcer_N = mkN "announcer" "announcers"; -- from DictEng -lin annoy_V2 = mkV2 (mkV "annoy" "annoys" "annoyed" "annoyed" "annoying"); -- from DictEng -lin annoyance_N = mkN "annoyance" "annoyances"; -- from DictEng -lin annoyed_A = mkA "annoyed" ; -lin annoying_A = compoundA (mkA "annoying"); -- from DictEng -lin annoyingly_Adv = mkAdv "annoyingly" ; -lin annual_A = compoundA (mkA "annual"); -- from DictEng -lin annual_N = mkN "annual" "annuals"; -- from DictEng -lin annually_Adv = mkAdv "annually" ; -lin annuitant_N = mkN "annuitant" "annuitants"; -- from DictEng -lin annuity_N = mkN "annuity" "annuities"; -- from DictEng -lin annul_V2 = mkV2 (mkV "annul" "annuls" "annulled" "annulled" "annulling"); -- from DictEng -lin annular_A = compoundA (mkA "annular"); -- from DictEng -lin annulet_N = mkN "annulet" ; -lin annulment_N = mkN "annulment" "annulments"; -- from DictEng -lin annulus_N = mkN "annulus" ; -lin annum_N = mkN "annum" ; -lin annunciate_V2 = mkV2 (mkV "annunciate" "annunciates" "annunciated" "annunciated" "annunciating"); -- from DictEng -lin annunciation_N = mkN "annunciation" "annunciations"; -- from DictEng -lin annunciator_N = mkN "annunciator" ; -lin annunciatory_A = mkA "annunciatory" ; -lin anoa_N = mkN "anoa" ; -lin anode_N = mkN "anode" "anodes"; -- from DictEng -lin anodic_A = mkA "anodic" ; -lin anodyne_A = compoundA (mkA "anodyne"); -- from DictEng -lin anodyne_N = mkN "anodyne" "anodynes"; -- from DictEng -lin anoint_V2 = mkV2 (mkV "anoint" "anoints" "anointed" "anointed" "anointing"); -- from DictEng -lin anointer_N = mkN "anointer" ; -lin anointing_N = mkN "anointing" ; -lin anointment_N = mkN "anointment" "anointments"; -- from DictEng -lin anomalist_N = mkN "anomalist" ; -lin anomalops_N = mkN "anomalops" ; -lin anomalopteryx_N = mkN "anomalopteryx" ; -lin anomalous_A = compoundA (mkA "anomalous"); -- from DictEng -lin anomalously_Adv = mkAdv "anomalously" ; -lin anomaly_N = mkN "anomaly" "anomalies"; -- from DictEng -lin anomie_N = mkN "anomie" ; -lin anon_Adv = mkAdv "anon"; -- from DictEng -lin anonymity_N = mkN "anonymity" ; -- from DictEng -lin anonymous_A = compoundA (mkA "anonymous"); -- from DictEng -lin anonymously_Adv = mkAdv "anonymously" ; -lin anoperineal_A = mkA "anoperineal" ; -lin anopheles_N = mkN "anopheles" "anopheles"; -- from DictEng -lin anopheline_A = mkA "anopheline" ; -lin anopheline_N = mkN "anopheline" ; -lin anopia_N = mkN "anopia" ; -lin anorak_N = mkN "anorak" "anoraks"; -- from DictEng -lin anorchism_N = mkN "anorchism" ; -lin anorectal_A = mkA "anorectal" ; -lin anorectic_A = mkA "anorectic" ; -lin anorexia_N = mkN "anorexia" ; -lin anorexic_A = mkA "anorexic" ; -lin anorexic_N = mkN "anorexic" ; -lin anorgasmia_N = mkN "anorgasmia" ; -lin anorthite_N = mkN "anorthite" ; -lin anorthitic_A = mkA "anorthitic" ; -lin anorthopia_N = mkN "anorthopia" ; -lin anosmia_N = mkN "anosmia" ; -lin anosmic_A = mkA "anosmic" ; -lin another_A = mkA "another" ; -lin another_Quant = mkQuant "another" "other"; -- from DictEng -lin anovulation_N = mkN "anovulation" ; -lin anoxemia_N = mkN "anoxemia" ; -lin anoxemic_A = mkA "anoxemic" ; -lin anoxia_N = mkN "anoxia" ; -lin anoxic_A = mkA "anoxic" ; -lin anserine_A = mkA "anserine" ; -lin answer_N = mkN "answer" "answers"; -- from DictEng -lin answer_V = mkV "answer" "answers" "answered" "answered" "answering"; -- from DictEng -lin answer_V2 = mkV2 (mkV "answer" "answers" "answered" "answered" "answering"); -- from DictEng -lin answerable_A = compoundA (mkA "answerable"); -- from DictEng -lin answering_A = mkA "answering" ; -lin ant_N = mkN "ant" "ants"; -- from DictEng -lin ant_eater_N = mkN "ant - eater" "ant - eaters"; -- from DictEng -lin ant_hill_N = mkN "ant - hill" "ant - hills"; -- from DictEng -lin antacid_A = mkA "antacid" ; -lin antacid_N = mkN "antacid" ; -lin antagonism_N = mkN "antagonism" "antagonisms"; -- from DictEng -lin antagonist_N = mkN "antagonist" "antagonists"; -- from DictEng -lin antagonistic_A = compoundA (mkA "antagonistic"); -- from DictEng -lin antagonistically_Adv = mkAdv "antagonistically"; -- from DictEng -lin antagonize_V2 = mkV2 (mkV "antagonize" "antagonizes" "antagonized" "antagonized" "antagonizing"); -- from DictEng -lin antapex_N = mkN "antapex" ; -lin antarctic_A = compoundA (mkA "antarctic"); -- from DictEng -lin antbird_N = mkN "antbird" ; -lin ante_N = mkN "ante" "antes"; -- from DictEng -lin ante_meridiem_A = compoundA (mkA "ante meridiem") ; -lin ante_meridiem_Adv = mkAdv "ante meridiem"; -- from DictEng -lin anteater_N = mkN "anteater" ; -lin antebellum_A = mkA "antebellum" ; -lin antecedence_N = mkN "antecedence" "antecedences"; -- from DictEng -lin antecedent_A = compoundA (mkA "antecedent"); -- from DictEng -lin antecedent_N = mkN "antecedent" "antecedents"; -- from DictEng -lin antechamber_N = mkN "antechamber" "antechambers"; -- from DictEng -lin antecubital_A = mkA "antecubital" ; -lin antedate_V2 = mkV2 (mkV "antedate" "antedates" "antedated" "antedated" "antedating"); -- from DictEng -lin antediluvian_A = compoundA (mkA "antediluvian"); -- from DictEng -lin antediluvian_N = mkN "antediluvian" "antediluvians"; -- from DictEng -lin antefix_N = mkN "antefix" ; -lin antelope_N = mkN "antelope" "antelopes"; -- from DictEng -lin antemeridian_A = mkA "antemeridian" ; -lin antemortem_A = mkA "antemortem" ; -lin antenatal_A = compoundA (mkA "antenatal"); -- from DictEng -lin antenna_N = mkN "antenna" "antennae" {- FIXME: guessed plural form -}; -- from DictEng -lin antennal_A = mkA "antennal" ; -lin antenuptial_A = compoundA (mkA "antenuptial"); -- from DictEng -lin antepenult_N = mkN "antepenult" ; -lin antepenultimate_A = compoundA (mkA "antepenultimate"); -- from DictEng -lin anterior_A = compoundA (mkA "anterior"); -- from DictEng -lin anteriority_N = mkN "anteriority" ; -lin anteriorly_Adv = mkAdv "anteriorly" ; -lin anterograde_A = mkA "anterograde" ; -lin anteroom_N = mkN "anteroom" "anterooms"; -- from DictEng -lin anthelmintic_A = mkA "anthelmintic" ; -lin anthem_N = mkN "anthem" "anthems"; -- from DictEng -lin anther_N = mkN "anther" "anthers"; -- from DictEng -lin antheral_A = mkA "antheral" ; -lin antheridial_A = mkA "antheridial" ; -lin antheridiophore_N = mkN "antheridiophore" ; -lin antheridium_N = mkN "antheridium" ; -lin antherozoid_N = mkN "antherozoid" ; -lin anthill_N = mkN "anthill" ; -lin anthologist_N = mkN "anthologist" ; -lin anthology_N = mkN "anthology" "anthologies"; -- from DictEng -lin anthophagous_A = mkA "anthophagous" ; -lin anthophyllite_N = mkN "anthophyllite" ; -lin anthozoan_N = mkN "anthozoan" ; -lin anthracite_N = mkN "anthracite" ; -- from DictEng -lin anthracitic_A = mkA "anthracitic" ; -lin anthracosis_N = mkN "anthracosis" ; -lin anthrax_N = mkN "anthrax" ; -- from DictEng -lin anthropic_A = mkA "anthropic" ; -lin anthropocentric_A = mkA "anthropocentric" ; -lin anthropocentrism_N = mkN "anthropocentrism" ; -lin anthropogenesis_N = mkN "anthropogenesis" ; -lin anthropogenetic_A = mkA "anthropogenetic" ; -lin anthropoid_A = compoundA (mkA "anthropoid"); -- from DictEng -lin anthropoid_N = mkN "anthropoid" "anthropoids"; -- from DictEng -lin anthropolatry_N = mkN "anthropolatry" ; -lin anthropological_A = compoundA (mkA "anthropological"); -- from DictEng -lin anthropologist_N = mkN "anthropologist" "anthropologists"; -- from DictEng -lin anthropology_N = mkN "anthropology" ; -- from DictEng -lin anthropometric_A = mkA "anthropometric" ; -lin anthropometry_N = mkN "anthropometry" ; -lin anthropomorphic_A = mkA "anthropomorphic" ; -lin anthropomorphism_N = mkN "anthropomorphism" ; -lin anthropophagous_A = mkA "anthropophagous" ; -lin anthropophagy_N = mkN "anthropophagy" ; -lin anthroposophy_N = mkN "anthroposophy" ; -lin anthurium_N = mkN "anthurium" ; -lin anti_A = mkA "anti" ; -lin anti_N = mkN "anti" ; -lin anti_american_A = compoundA (mkA "anti American") ; -lin anti_american_N = mkN "anti American" ; -lin anti_catholicism_N = mkN "anti Catholicism" ; -lin anti_semite_N = mkN "anti - semite" "anti - semites"; -- from DictEng -lin anti_semitism_N = mkN "anti - semitism" ; -- from DictEng -lin anti_inflammatory_N = mkN "anti inflammatory" ; -lin anti_intellectual_A = compoundA (mkA "anti intellectual") ; -lin anti_semitic_A = compoundA (mkA "anti - semitic"); -- from DictEng -lin anti_aircraft_A = compoundA (mkA "anti - aircraft"); -- from DictEng -lin anti_hero_N = mkN "anti - hero" "anti - heroes"; -- from DictEng -lin anti_personnel_A = compoundA (mkA "anti - personnel"); -- from DictEng -lin anti_semite_A = compoundA (mkA "anti - semite"); -- from DictEng -lin anti_semite_N = mkN "anti - semite" "anti - semites"; -- from DictEng -lin anti_semitic_A = compoundA (mkA "anti - semitic"); -- from DictEng -lin anti_semitism_N = mkN "anti - semitism" ; -- from DictEng -lin antiadrenergic_A = mkA "antiadrenergic" ; -lin antiaircraft_A = mkA "antiaircraft" ; -lin antiaircraft_N = mkN "antiaircraft" ; -lin antialiasing_N = mkN "antialiasing" ; -lin antiapartheid_A = mkA "antiapartheid" ; -lin antiarrhythmic_N = mkN "antiarrhythmic" ; -lin antiauthoritarian_A = mkA "antiauthoritarian" ; -lin antibacterial_A = mkA "antibacterial" ; -lin antibacterial_N = mkN "antibacterial" ; -lin antibaryon_N = mkN "antibaryon" ; -lin antibiosis_N = mkN "antibiosis" ; -lin antibiotic_A = compoundA (mkA "antibiotic"); -- from DictEng -lin antibiotic_N = mkN "antibiotic" "antibiotics"; -- from DictEng -lin antibody_N = mkN "antibody" "antibodies"; -- from DictEng -lin antic_A = mkA "antic" ; -lin antic_N = mkN "antic" "antics"; -- from DictEng -lin anticancer_A = mkA "anticancer" ; -lin anticatalyst_N = mkN "anticatalyst" ; -lin anticholinergic_A = mkA "anticholinergic" ; -lin anticholinergic_N = mkN "anticholinergic" ; -lin anticholinesterase_N = mkN "anticholinesterase" ; -lin anticipant_A = mkA "anticipant" ; -lin anticipate_V = mkV "anticipate"; -- from DictEng -lin anticipate_V2 = mkV2 (mkV "anticipate" "anticipates" "anticipated" "anticipated" "anticipating"); -- from DictEng -lin anticipate_VS = mkVS (mkV "anticipate" "anticipates" "anticipated" "anticipated" "anticipating"); -- from DictEng -lin anticipate_VV = ingVV (mkV "anticipate" "anticipates" "anticipated" "anticipated" "anticipating"); -- from DictEng -lin anticipated_A = mkA "anticipated" ; -lin anticipation_N = mkN "anticipation" "anticipations"; -- from DictEng -lin anticipator_N = mkN "anticipator" ; -lin anticipatory_A = compoundA (mkA "anticipatory"); -- from DictEng -lin anticlimactic_A = mkA "anticlimactic" ; -lin anticlimax_N = mkN "anticlimax" "anticlimaxes"; -- from DictEng -lin anticlinal_A = mkA "anticlinal" ; -lin anticlockwise_Adv = mkAdv "anticlockwise"; -- from DictEng -lin anticoagulant_N = mkN "anticoagulant" ; -lin anticoagulation_N = mkN "anticoagulation" ; -lin anticoagulative_A = mkA "anticoagulative" ; -lin anticonvulsant_N = mkN "anticonvulsant" ; -lin anticyclone_N = mkN "anticyclone" "anticyclones"; -- from DictEng -lin anticyclonic_A = mkA "anticyclonic" ; -lin antidepressant_N = mkN "antidepressant" ; -lin antidiabetic_N = mkN "antidiabetic" ; -lin antidiarrheal_N = mkN "antidiarrheal" ; -lin antidiuretic_N = mkN "antidiuretic" ; -lin antidotal_A = mkA "antidotal" ; -lin antidote_N = mkN "antidote" "antidotes"; -- from DictEng -lin antidromic_A = mkA "antidromic" ; -lin antiemetic_N = mkN "antiemetic" ; -lin antiestablishmentarianism_N = mkN "antiestablishmentarianism" ; -lin antifeminist_N = mkN "antifeminist" ; -lin antiferromagnetic_A = mkA "antiferromagnetic" ; -lin antiferromagnetism_N = mkN "antiferromagnetism" ; -lin antiflatulent_N = mkN "antiflatulent" ; -lin antifreeze_N = mkN "antifreeze" ; -- from DictEng -lin antifungal_N = mkN "antifungal" ; -lin antigen_N = mkN "antigen" ; -lin antigenic_A = mkA "antigenic" ; -lin antigram_N = mkN "antigram" ; -lin antiguan_A = compoundA (mkA "antiguan"); -- from DictEng -lin antiguan_N = mkN "antiguan" "antiguans"; -- from DictEng -lin antiheretical_A = mkA "antiheretical" ; -lin antihero_N = mkN "antihero" ; -lin antihistamine_N = mkN "antihistamine" ; -lin antihypertensive_N = mkN "antihypertensive" ; -lin antiknock_A = mkA "antiknock" ; -lin antiknock_N = mkN "antiknock" ; -- from DictEng -lin antilepton_N = mkN "antilepton" ; -lin antilogarithm_N = mkN "antilogarithm" "antilogarithms"; -- from DictEng -lin antimacassar_N = mkN "antimacassar" "antimacassars"; -- from DictEng -lin antimagnetic_A = mkA "antimagnetic" ; -lin antimalarial_N = mkN "antimalarial" ; -lin antimatter_N = mkN "antimatter" ; -lin antimeson_N = mkN "antimeson" ; -lin antimetabolite_N = mkN "antimetabolite" ; -lin antimicrobial_A = mkA "antimicrobial" ; -lin antimonial_A = mkA "antimonial" ; -lin antimonic_A = mkA "antimonic" ; -lin antimonopoly_A = mkA "antimonopoly" ; -lin antimony_N = mkN "antimony" ; -- from DictEng -lin antimuon_N = mkN "antimuon" ; -lin antimycin_N = mkN "antimycin" ; -lin antineoplastic_N = mkN "antineoplastic" ; -lin antineutrino_N = mkN "antineutrino" ; -lin antineutron_N = mkN "antineutron" ; -lin antinode_N = mkN "antinode" ; -lin antinomasia_N = mkN "antinomasia" ; -lin antinomian_A = mkA "antinomian" ; -lin antinomian_N = mkN "antinomian" ; -lin antinomianism_N = mkN "antinomianism" ; -lin antinomy_N = mkN "antinomy" ; -lin antioxidant_N = mkN "antioxidant" ; -lin antiparallel_A = mkA "antiparallel" ; -lin antiparticle_N = mkN "antiparticle" ; -lin antipasto_N = mkN "antipasto" ; -lin antipathetic_A = compoundA (mkA "antipathetic"); -- from DictEng -lin antipathy_N = mkN "antipathy" "antipathies"; -- from DictEng -lin antipersonnel_A = mkA "antipersonnel" ; -lin antiperspirant_N = mkN "antiperspirant" ; -lin antiphlogistic_A = mkA "antiphlogistic" ; -lin antiphon_N = mkN "antiphon" ; -lin antiphonary_A = mkA "antiphonary" ; -lin antiphonary_N = mkN "antiphonary" ; -lin antiphony_N = mkN "antiphony" ; -lin antiphrasis_N = mkN "antiphrasis" ; -lin antipodal_A = mkA "antipodal" ; -lin antipodal_N = mkN "antipodal" ; -lin antipode_N = mkN "antipode" ; -lin antipodes_N = mkN "antipodes" ; -lin antipollution_A = mkA "antipollution" ; -lin antipope_N = mkN "antipope" ; -lin antiproton_N = mkN "antiproton" ; -lin antiprotozoal_N = mkN "antiprotozoal" ; -lin antipruritic_N = mkN "antipruritic" ; -lin antipyresis_N = mkN "antipyresis" ; -lin antipyretic_A = mkA "antipyretic" ; -lin antipyretic_N = mkN "antipyretic" ; -lin antiquarian_A = compoundA (mkA "antiquarian"); -- from DictEng -lin antiquarian_N = mkN "antiquarian" "antiquarians"; -- from DictEng -lin antiquark_N = mkN "antiquark" ; -lin antiquary_N = mkN "antiquary" "antiquaries"; -- from DictEng -lin antiquated_A = compoundA (mkA "antiquated"); -- from DictEng -lin antique_A = compoundA (mkA "antique"); -- from DictEng -lin antique_N = mkN "antique" "antiques"; -- from DictEng -lin antique_V = mkV "antique" ; -lin antiquity_N = mkN "antiquity" "antiquities"; -- from DictEng -lin antiredeposition_N = mkN "antiredeposition" ; -lin antirrhinum_N = mkN "antirrhinum" "antirrhinums"; -- from DictEng -lin antisatellite_A = mkA "antisatellite" ; -lin antisepsis_N = mkN "antisepsis" ; -lin antiseptic_A = compoundA (mkA "antiseptic"); -- from DictEng -lin antiseptic_N = mkN "antiseptic" "antiseptics"; -- from DictEng -lin antiserum_N = mkN "antiserum" ; -lin antisocial_A = compoundA (mkA "antisocial"); -- from DictEng -lin antispasmodic_N = mkN "antispasmodic" ; -lin antistrophe_N = mkN "antistrophe" ; -lin antistrophic_A = mkA "antistrophic" ; -lin antisubmarine_A = mkA "antisubmarine" ; -lin antisyphilitic_N = mkN "antisyphilitic" ; -lin antitank_A = compoundA (mkA "antitank"); -- from DictEng -lin antitauon_N = mkN "antitauon" ; -lin antithesis_N = mkN "antithesis" "antitheses" {- FIXME: guessed plural form -}; -- from DictEng -lin antithetic_A = compoundA (mkA "antithetic"); -- from DictEng -lin antithetical_A = compoundA (mkA "antithetical"); -- from DictEng -lin antithetically_Adv = mkAdv "antithetically" ; -lin antithyroid_A = mkA "antithyroid" ; -lin antitoxic_A = mkA "antitoxic" ; -lin antitoxin_N = mkN "antitoxin" "antitoxins"; -- from DictEng -lin antitrade_A = compoundA (mkA "antitrade"); -- from DictEng -lin antitrade_N = mkN "antitrade" "antitrades"; -- from DictEng -lin antitrades_N = mkN "antitrades" ; -lin antitussive_N = mkN "antitussive" ; -lin antitype_N = mkN "antitype" ; -lin antitypic_A = mkA "antitypic" ; -lin antivenin_N = mkN "antivenin" ; -lin antiviral_A = mkA "antiviral" ; -lin antiviral_N = mkN "antiviral" ; -lin antler_N = mkN "antler" "antlers"; -- from DictEng -lin antler_like_A = compoundA (mkA "antler like") ; -lin antlered_A = mkA "antlered" ; -lin antonym_N = mkN "antonym" "antonyms"; -- from DictEng -lin antonymous_A = mkA "antonymous" ; -lin antonymy_N = mkN "antonymy" ; -lin antrorse_A = mkA "antrorse" ; -lin antrum_N = mkN "antrum" ; -lin antsy_A = mkA "antsy" ; -lin anuran_A = mkA "anuran" ; -lin anuresis_N = mkN "anuresis" ; -lin anuretic_A = mkA "anuretic" ; -lin anurous_A = mkA "anurous" ; -lin anus_N = mkN "anus" "anuses"; -- from DictEng -lin anvil_N = mkN "anvil" "anvils"; -- from DictEng -lin anxiety_N = mkN "anxiety" "anxieties"; -- from DictEng -lin anxiolytic_A = mkA "anxiolytic" ; -lin anxious_A = compoundA (mkA "anxious"); -- from DictEng -lin anxiously_Adv = mkAdv "anxiously" ; -lin anxiousness_N = mkN "anxiousness" ; -lin any_A = mkA "any" ; -lin any_Adv = mkAdv "any" ; -lin anyPl_Det = mkDeterminer plural "any"; -- from DictEng -lin anySg_Det = mkDeterminer singular "any"; -- from DictEng -lin anybody_NP = regNP "anybody" singular; -- from DictEng -lin anyhow_Adv = mkAdv "anyhow"; -- from DictEng -lin anymore_Adv = mkAdv "anymore" ; -lin anyone_NP = regNP "anyone" singular; -- from DictEng -lin anyplace_Adv = mkAdv "anyplace"; -- from DictEng -lin anything_NP = regNP "anything" singular; -- from DictEng -lin anyway_Adv = mkAdv "anyway"; -- from DictEng -lin anywhere_Adv = mkAdv "anywhere"; -- from DictEng -lin aorist_N = mkN "aorist" ; -lin aoristic_A = mkA "aoristic" ; -lin aorta_N = mkN "aorta" "aortas"; -- from DictEng -lin aortal_A = mkA "aortal" ; -lin aortitis_N = mkN "aortitis" ; -lin aoudad_N = mkN "aoudad" ; -lin apace_Adv = mkAdv "apace"; -- from DictEng -lin apache_N = mkN "apache" "apaches"; -- from DictEng -lin apadana_N = mkN "apadana" ; -lin apanage_N = mkN "apanage" ; -- from DictEng -lin apar_N = mkN "apar" ; -lin apart_A = mkA "apart" ; -lin apart_Adv = mkAdv "apart"; -- from DictEng -lin apartheid_N = mkN "apartheid" ; -- from DictEng -lin apartment_N = mkN "apartment" "apartments"; -- from DictEng -lin apathetic_A = compoundA (mkA "apathetic"); -- from DictEng -lin apathetically_Adv = mkAdv "apathetically"; -- from DictEng -lin apathy_N = mkN "apathy" ; -- from DictEng -lin apatite_N = mkN "apatite" ; -lin apatosaur_N = mkN "apatosaur" ; -lin ape_N = mkN "ape" "apes"; -- from DictEng -lin ape_V2 = mkV2 (mkV "ape" "apes" "aped" "aped" "aping"); -- from DictEng -lin ape_man_N = mkN "ape man" ; -lin apercu_N = mkN "apercu" ; -lin aperea_N = mkN "aperea" ; -lin aperient_A = compoundA (mkA "aperient"); -- from DictEng -lin aperient_N = mkN "aperient" "aperients"; -- from DictEng -lin aperiodic_A = mkA "aperiodic" ; -lin aperitif_N = mkN "aperitif" "aperitifs"; -- from DictEng -lin aperture_N = mkN "aperture" "apertures"; -- from DictEng -lin apery_N = mkN "apery" ; -lin apetalous_A = mkA "apetalous" ; -lin apex_N = mkN "apex" "apexes"; -- from DictEng -lin aphaeresis_N = mkN "aphaeresis" ; -lin aphaeretic_A = mkA "aphaeretic" ; -lin aphagia_N = mkN "aphagia" ; -lin aphakia_N = mkN "aphakia" ; -lin aphakic_A = mkA "aphakic" ; -lin aphakic_N = mkN "aphakic" ; -lin aphanite_N = mkN "aphanite" ; -lin aphanitic_A = mkA "aphanitic" ; -lin aphasia_N = mkN "aphasia" ; -- from DictEng -lin aphasic_A = mkA "aphasic" ; -lin aphasic_N = mkN "aphasic" ; -lin aphelion_N = mkN "aphelion" ; -lin apheresis_N = mkN "apheresis" ; -lin aphesis_N = mkN "aphesis" ; -lin aphetic_A = mkA "aphetic" ; -lin aphid_N = mkN "aphid" "aphids"; -- from DictEng -lin aphis_N = mkN "aphis" "aphes" {- FIXME: guessed plural form -}; -- from DictEng -lin aphonia_N = mkN "aphonia" ; -lin aphonic_A = mkA "aphonic" ; -lin aphorism_N = mkN "aphorism" "aphorisms"; -- from DictEng -lin aphorist_N = mkN "aphorist" ; -lin aphoristic_A = mkA "aphoristic" ; -lin aphotic_A = mkA "aphotic" ; -lin aphrodisia_N = mkN "aphrodisia" ; -lin aphrodisiac_A = compoundA (mkA "aphrodisiac"); -- from DictEng -lin aphrodisiac_N = mkN "aphrodisiac" "aphrodisiacs"; -- from DictEng -lin aphyllous_A = mkA "aphyllous" ; -lin apian_A = mkA "apian" ; -lin apiarian_A = mkA "apiarian" ; -lin apiarist_N = mkN "apiarist" "apiarists"; -- from DictEng -lin apiary_N = mkN "apiary" "apiaries"; -- from DictEng -lin apical_A = mkA "apical" ; -lin apiculate_A = mkA "apiculate" ; -lin apicultural_A = mkA "apicultural" ; -lin apiculture_N = mkN "apiculture" "apicultures"; -- from DictEng -lin apiece_Adv = mkAdv "apiece"; -- from DictEng -lin apish_A = compoundA (mkA "apish"); -- from DictEng -lin apishamore_N = mkN "apishamore" ; -lin apivorous_A = mkA "apivorous" ; -lin aplacental_A = mkA "aplacental" ; -lin aplanatic_A = mkA "aplanatic" ; -lin aplasia_N = mkN "aplasia" ; -lin aplite_N = mkN "aplite" ; -lin aplitic_A = mkA "aplitic" ; -lin aplomb_N = mkN "aplomb" ; -- from DictEng -lin apnea_N = mkN "apnea" ; -lin apneic_A = mkA "apneic" ; -lin apoapsis_N = mkN "apoapsis" ; -lin apocalypse_N = mkN "apocalypse" "apocalypses"; -- from DictEng -lin apocalyptic_A = compoundA (mkA "apocalyptic"); -- from DictEng -lin apocarpous_A = mkA "apocarpous" ; -lin apochromatic_A = mkA "apochromatic" ; -lin apocope_N = mkN "apocope" ; -lin apocrine_A = mkA "apocrine" ; -lin apocrypha_N = mkN "apocrypha" "apocrypha"; -- from DictEng -lin apocryphal_A = compoundA (mkA "apocryphal"); -- from DictEng -lin apocynaceous_A = mkA "apocynaceous" ; -lin apodal_A = mkA "apodal" ; -lin apodeme_N = mkN "apodeme" ; -lin apodictic_A = mkA "apodictic" ; -lin apoenzyme_N = mkN "apoenzyme" ; -lin apogamic_A = mkA "apogamic" ; -lin apogamy_N = mkN "apogamy" ; -lin apogean_A = mkA "apogean" ; -lin apogee_N = mkN "apogee" "apogees"; -- from DictEng -lin apojove_N = mkN "apojove" ; -lin apolemia_N = mkN "apolemia" ; -lin apolitical_A = mkA "apolitical" ; -lin apologetic_A = compoundA (mkA "apologetic"); -- from DictEng -lin apologetically_Adv = mkAdv "apologetically"; -- from DictEng -lin apologetics_N = mkN "apologetics" "apologetics"; -- from DictEng -lin apologist_N = mkN "apologist" "apologists"; -- from DictEng -lin apologize_V = mkV "apologize" "apologizes" "apologized" "apologized" "apologizing"; -- from DictEng -lin apology_N = mkN "apology" "apologies"; -- from DictEng -lin apomict_N = mkN "apomict" ; -lin apomictic_A = mkA "apomictic" ; -lin apomixis_N = mkN "apomixis" ; -lin apomorphine_N = mkN "apomorphine" ; -lin aponeurosis_N = mkN "aponeurosis" ; -lin aponeurotic_A = mkA "aponeurotic" ; -lin apopemptic_A = mkA "apopemptic" ; -lin apophasis_N = mkN "apophasis" ; -lin apophatic_A = mkA "apophatic" ; -lin apophatism_N = mkN "apophatism" ; -lin apophthegm_N = mkN "apophthegm" "apophthegms"; -- from DictEng -lin apophyseal_A = mkA "apophyseal" ; -lin apophysis_N = mkN "apophysis" ; -lin apoplectic_A = compoundA (mkA "apoplectic"); -- from DictEng -lin apoplectiform_A = mkA "apoplectiform" ; -lin apoplexy_N = mkN "apoplexy" ; -- from DictEng -lin apoptosis_N = mkN "apoptosis" ; -lin aposelene_N = mkN "aposelene" ; -lin aposiopesis_N = mkN "aposiopesis" ; -lin aposiopetic_A = mkA "aposiopetic" ; -lin apostasy_N = mkN "apostasy" "apostasies"; -- from DictEng -lin apostate_A = compoundA (mkA "apostate"); -- from DictEng -lin apostate_N = mkN "apostate" "apostates"; -- from DictEng -lin apostle_N = mkN "apostle" "apostles"; -- from DictEng -lin apostleship_N = mkN "apostleship" ; -lin apostolic_A = compoundA (mkA "apostolic"); -- from DictEng -lin apostrophe_N = mkN "apostrophe" "apostrophes"; -- from DictEng -lin apostrophic_A = mkA "apostrophic" ; -lin apostrophize_V2 = mkV2 (mkV "apostrophize" "apostrophizes" "apostrophized" "apostrophized" "apostrophizing"); -- from DictEng -lin apothecary_N = mkN "apothecary" "apothecaries"; -- from DictEng -lin apothecial_A = mkA "apothecial" ; -lin apothecium_N = mkN "apothecium" ; -lin apothegm_N = mkN "apothegm" "apothegms"; -- from DictEng -lin apothegmatic_A = mkA "apothegmatic" ; -lin apotheosis_N = mkN "apotheosis" "apotheoses" {- FIXME: guessed plural form -}; -- from DictEng -lin apotropaic_A = mkA "apotropaic" ; -lin appal_V2 = mkV2 (mkV "appal" "appals" "appalled" "appalled" "appalling"); -- from DictEng -lin appall_V2 = mkV2 (mkV "appall") ; -lin appalling_A = compoundA (mkA "appalling"); -- from DictEng -lin appalling_N = mkN "appalling" ; -lin appallingly_Adv = mkAdv "appallingly" ; -lin appanage_N = mkN "appanage" ; -- from DictEng -lin apparatchik_N = mkN "apparatchik" ; -lin apparatus_N = mkN "apparatus" "apparatuses"; -- from DictEng -lin apparel_N = mkN "apparel" ; -- from DictEng -lin apparel_V2 = mkV2 (mkV "apparel" "apparels" "apparelled" "apparelled" "apparelling"); -- from DictEng -lin appareled_A = mkA "appareled" ; -lin apparent_A = compoundA (mkA "apparent"); -- from DictEng -lin apparently_Adv = mkAdv "apparently" ; -lin apparentness_N = mkN "apparentness" ; -lin apparition_N = mkN "apparition" "apparitions"; -- from DictEng -lin apparitional_A = mkA "apparitional" ; -lin appeal_N = mkN "appeal" "appeals"; -- from DictEng -lin appeal_V = mkV "appeal"; -- from DictEng -lin appeal_V2 = mkV2 (mkV "appeal"); -- from DictEng -lin appeal_V2V = mkV2V (mkV "appeal" "appeals" "appealed" "appealed" "appealing") to_Prep to_Prep; -- from DictEng -lin appealable_A = mkA "appealable" ; -lin appealing_A = compoundA (mkA "appealing"); -- from DictEng -lin appealingly_Adv = mkAdv "appealingly" ; -lin appear_V = mkV "appear" "appears" "appeared" "appeared" "appearing"; -- from DictEng -lin appear_V2 = mkV2 (mkV "appear" "appears" "appeared" "appeared" "appearing"); -- from DictEng -lin appear_VA = mkVA (mkV "appear" "appears" "appeared" "appeared" "appearing"); -- from DictEng -lin appear_VS = mkVS (mkV "appear" "appears" "appeared" "appeared" "appearing"); -- from DictEng -lin appear_VV = mkVV (mkV "appear" "appears" "appeared" "appeared" "appearing"); -- from DictEng -lin appearance_N = mkN "appearance" "appearances"; -- from DictEng -lin appeasable_A = mkA "appeasable" ; -lin appease_V2 = mkV2 (mkV "appease" "appeases" "appeased" "appeased" "appeasing"); -- from DictEng -lin appeasement_N = mkN "appeasement" ; -- from DictEng -lin appeaser_N = mkN "appeaser" ; -lin appeasing_A = mkA "appeasing" ; -lin appellant_A = compoundA (mkA "appellant"); -- from DictEng -lin appellant_N = mkN "appellant" "appellants"; -- from DictEng -lin appellate_A = mkA "appellate" ; -lin appellation_N = mkN "appellation" "appellations"; -- from DictEng -lin appellative_A = mkA "appellative" ; -lin append_V2 = mkV2 (mkV "append" "appends" "appended" "appended" "appending"); -- from DictEng -lin appendage_N = mkN "appendage" "appendages"; -- from DictEng -lin appendaged_A = mkA "appendaged" ; -lin appendant_A = mkA "appendant" ; -lin appendectomy_N = mkN "appendectomy" "appendectomies"; -- from DictEng -lin appendicitis_N = mkN "appendicitis" ; -- from DictEng -lin appendicle_N = mkN "appendicle" ; -lin appendicular_A = mkA "appendicular" ; -lin appendicularia_N = mkN "appendicularia" ; -lin appendix_N = mkN "appendix" "appendixes"; -- from DictEng -lin apperception_N = mkN "apperception" ; -lin apperceptive_A = mkA "apperceptive" ; -lin appertain_V = mkV "appertain" "appertains" "appertained" "appertained" "appertaining"; -- from DictEng -lin appetent_A = mkA "appetent" ; -lin appetite_N = mkN "appetite" "appetites"; -- from DictEng -lin appetitive_A = mkA "appetitive" ; -lin appetizer_N = mkN "appetizer" "appetizers"; -- from DictEng -lin appetizing_A = compoundA (mkA "appetizing"); -- from DictEng -lin appetizingness_N = mkN "appetizingness" ; -lin applaud_V = mkV "applaud" "applauds" "applauded" "applauded" "applauding"; -- from DictEng -lin applaud_V2 = mkV2 (mkV "applaud" "applauds" "applauded" "applauded" "applauding"); -- from DictEng -lin applaudable_A = mkA "applaudable" ; -lin applause_N = mkN "applause" ; -- from DictEng -lin apple_N = mkN "apple" "apples"; -- from DictEng -lin apple_scented_A = compoundA (mkA "apple scented") ; -lin apple_shaped_A = compoundA (mkA "apple shaped") ; -lin apple_sized_A = compoundA (mkA "apple sized") ; -lin apple_of_peru_PN = mkPN "apple of Peru" ; -lin applecart_N = mkN "applecart" ; -lin applejack_N = mkN "applejack" ; -- from DictEng -lin applesauce_N = mkN "applesauce" ; -lin applet_N = mkN "applet" ; -lin applewood_N = mkN "applewood" ; -lin appliance_N = mkN "appliance" "appliances"; -- from DictEng -lin applicability_N = mkN "applicability" ; -- from DictEng -lin applicable_A = compoundA (mkA "applicable"); -- from DictEng -lin applicant_N = mkN "applicant" "applicants"; -- from DictEng -lin application_N = mkN "application" "applications"; -- from DictEng -lin applicative_A = mkA "applicative" ; -lin applicator_N = mkN "applicator" ; -lin applied_A = compoundA (mkA "applied"); -- from DictEng -lin applique_N = mkN "appliqué" ; -- from DictEng -lin applique_V = mkV "applique" ; -lin applique_V2 = mkV2 (mkV "appliqué" "appliqués" "appliquéed" "appliquéed" "appliquéing"); -- from DictEng -lin apply_V = mkV "apply" "applies" "applied" "applied" "applying"; -- from DictEng -lin apply_V2 = mkV2 (mkV "apply" "applies" "applied" "applied" "applying"); -- from DictEng -lin apply_V2V = mkV2V (mkV "apply" "applies" "applied" "applied" "applying") noPrep to_Prep ; -- from DictEng -lin apply_VV = mkVV (mkV "apply" "applies" "applied" "applied" "applying"); -- from DictEng -lin appoint_V2 = mkV2 (mkV "appoint" "appoints" "appointed" "appointed" "appointing"); -- from DictEng -lin appoint_V2V = mkV2V (mkV "appoint") noPrep to_Prep ; -- from DictEng -lin appoint_VS = mkVS (mkV "appoint"); -- from DictEng -lin appointed_A = mkA "appointed" ; -lin appointee_N = mkN "appointee" "appointees"; -- from DictEng -lin appointive_A = mkA "appointive" ; -lin appointment_N = mkN "appointment" "appointments"; -- from DictEng -lin apportion_V2 = mkV2 (mkV "apportion" "apportions" "apportioned" "apportioned" "apportioning"); -- from DictEng -lin apportioned_A = mkA "apportioned" ; -lin apportionment_N = mkN "apportionment" ; -- from DictEng -lin apposite_A = compoundA (mkA "apposite"); -- from DictEng -lin apposition_N = mkN "apposition" ; -- from DictEng -lin appositional_A = mkA "appositional" ; -lin appositively_Adv = mkAdv "appositively" ; -lin appraisal_N = mkN "appraisal" "appraisals"; -- from DictEng -lin appraise_V2 = mkV2 (mkV "appraise" "appraises" "appraised" "appraised" "appraising"); -- from DictEng -lin appraiser_N = mkN "appraiser" ; -lin appraising_A = mkA "appraising" ; -lin appreciable_A = compoundA (mkA "appreciable"); -- from DictEng -lin appreciably_Adv = mkAdv "appreciably" ; -lin appreciate_V = mkV "appreciate" "appreciates" "appreciated" "appreciated" "appreciating"; -- from DictEng -lin appreciate_V2 = mkV2 (mkV "appreciate" "appreciates" "appreciated" "appreciated" "appreciating"); -- from DictEng -lin appreciated_A = mkA "appreciated" ; -lin appreciation_N = mkN "appreciation" "appreciations"; -- from DictEng -lin appreciative_A = compoundA (mkA "appreciative"); -- from DictEng -lin appreciatively_Adv = mkAdv "appreciatively" ; -lin appreciator_N = mkN "appreciator" ; -lin apprehend_V2 = mkV2 (mkV "apprehend" "apprehends" "apprehended" "apprehended" "apprehending"); -- from DictEng -lin apprehender_N = mkN "apprehender" ; -lin apprehensible_A = compoundA (mkA "apprehensible"); -- from DictEng -lin apprehension_N = mkN "apprehension" "apprehensions"; -- from DictEng -lin apprehensive_A = compoundA (mkA "apprehensive"); -- from DictEng -lin apprentice_N = mkN "apprentice" "apprentices"; -- from DictEng -lin apprentice_V2 = mkV2 (mkV "apprentice" "apprentices" "apprenticed" "apprenticed" "apprenticing"); -- from DictEng -lin apprenticed_A = mkA "apprenticed" ; -lin apprenticeship_N = mkN "apprenticeship" "apprenticeships"; -- from DictEng -lin appressed_A = mkA "appressed" ; -lin apprise_V2 = mkV2 (mkV "apprise" "apprises" "apprised" "apprised" "apprising"); -- from DictEng -lin appro_N = mkN "appro" ; -- from DictEng -lin approach_N = mkN "approach" "approaches"; -- from DictEng -lin approach_V = mkV "approach" "approaches" "approached" "approached" "approaching"; -- from DictEng -lin approach_V2 = mkV2 (mkV "approach" "approaches" "approached" "approached" "approaching"); -- from DictEng -lin approachability_N = mkN "approachability" ; -lin approachable_A = compoundA (mkA "approachable"); -- from DictEng -lin approaching_A = mkA "approaching" ; -lin approbation_N = mkN "approbation" ; -- from DictEng -lin appropriable_A = mkA "appropriable" ; -lin appropriate_A = compoundA (mkA "appropriate"); -- from DictEng -lin appropriate_V2 = mkV2 (mkV "appropriate" "appropriates" "appropriated" "appropriated" "appropriating"); -- from DictEng -lin appropriately_Adv = mkAdv "appropriately" ; -lin appropriateness_N = mkN "appropriateness" ; -lin appropriation_N = mkN "appropriation" "appropriations"; -- from DictEng -lin appropriative_A = mkA "appropriative" ; -lin appropriator_N = mkN "appropriator" ; -lin approval_N = mkN "approval" ; -- from DictEng -lin approve_V = mkV "approve" "approves" "approved" "approved" "approving"; -- from DictEng -lin approve_V2 = mkV2 (mkV "approve" "approves" "approved" "approved" "approving"); -- from DictEng -lin approved_A = mkA "approved" ; -lin approver_N = mkN "approver" ; -lin approving_A = mkA "approving" ; -lin approvingly_Adv = mkAdv "approvingly"; -- from DictEng -lin approximate_A = compoundA (mkA "approximate"); -- from DictEng -lin approximate_V = mkV "approximate" "approximates" "approximated" "approximated" "approximating"; -- from DictEng -lin approximate_V2 = mkV2 (mkV "approximate" "approximates" "approximated" "approximated" "approximating"); -- from DictEng -lin approximately_Adv = mkAdv "approximately" ; -lin approximation_N = mkN "approximation" "approximations"; -- from DictEng -lin appurtenance_N = mkN "appurtenance" "appurtenances"; -- from DictEng -lin apractic_A = mkA "apractic" ; -lin apraxia_N = mkN "apraxia" ; -lin apres_ski_A = compoundA (mkA "après - ski"); -- from DictEng -lin apricot_N = mkN "apricot" "apricots"; -- from DictEng -lin april_N = mkN "april" "aprils"; -- from DictEng -lin apron_N = mkN "apron" "aprons"; -- from DictEng -lin apropos_A = compoundA (mkA "apropos"); -- from DictEng -lin apropos_Adv = mkAdv "apropos"; -- from DictEng -lin apse_N = mkN "apse" "apses"; -- from DictEng -lin apsidal_A = mkA "apsidal" ; -lin apt_A = mkA "apt" "apter"; -- from DictEng -lin apteral_A = mkA "apteral" ; -lin apterous_A = mkA "apterous" ; -lin aptitude_N = mkN "aptitude" "aptitudes"; -- from DictEng -lin aptitudinal_A = mkA "aptitudinal" ; -lin aptness_N = mkN "aptness" ; -- from DictEng -lin aquaculture_N = mkN "aquaculture" ; -lin aqualung_N = mkN "aqualung" "aqualungs"; -- from DictEng -lin aquamarine_N = mkN "aquamarine" "aquamarines"; -- from DictEng -lin aquanaut_N = mkN "aquanaut" "aquanauts"; -- from DictEng -lin aquaphobia_N = mkN "aquaphobia" ; -lin aquaplane_N = mkN "aquaplane" "aquaplanes"; -- from DictEng -lin aquaplane_V = mkV "aquaplane" "aquaplanes" "aquaplaned" "aquaplaned" "aquaplaning"; -- from DictEng -lin aquarium_N = mkN "aquarium" "aquariums"; -- from DictEng -lin aquatic_A = compoundA (mkA "aquatic"); -- from DictEng -lin aquatic_N = mkN "aquatic" ; -lin aquatint_N = mkN "aquatint" "aquatints"; -- from DictEng -lin aquavit_N = mkN "aquavit" ; -- from DictEng -lin aqueduct_N = mkN "aqueduct" "aqueducts"; -- from DictEng -lin aqueous_A = compoundA (mkA "aqueous"); -- from DictEng -lin aquicultural_A = mkA "aquicultural" ; -lin aquifer_N = mkN "aquifer" ; -lin aquiferous_A = mkA "aquiferous" ; -lin aquiline_A = compoundA (mkA "aquiline"); -- from DictEng -lin arab_N = mkN "arab" "arabs"; -- from DictEng -lin arabesque_N = mkN "arabesque" "arabesques"; -- from DictEng -lin arabian_A = compoundA (mkA "arabian"); -- from DictEng -lin arabian_N = mkN "arabian" "arabians"; -- from DictEng -lin arabic_A = compoundA (mkA "arabic"); -- from DictEng -lin arabic_N = mkN "arabic" ; -- from DictEng -lin arability_N = mkN "arability" ; -lin arabist_N = mkN "arabist" "arabists"; -- from DictEng -lin arable_A = compoundA (mkA "arable"); -- from DictEng -lin arachnid_N = mkN "arachnid" "arachnids"; -- from DictEng -lin arachnoid_A = mkA "arachnoid" ; -lin arachnoid_N = mkN "arachnoid" ; -lin arachnophobia_N = mkN "arachnophobia" ; -lin aragonite_N = mkN "aragonite" ; -lin aralia_N = mkN "aralia" ; -lin arame_N = mkN "arame" ; -lin araneidal_A = mkA "araneidal" ; -lin arariba_N = mkN "arariba" ; -lin araroba_N = mkN "araroba" ; -lin araucaria_N = mkN "araucaria" ; -lin arbiter_N = mkN "arbiter" "arbiters"; -- from DictEng -lin arbitrable_A = mkA "arbitrable" ; -lin arbitrage_N = mkN "arbitrage" ; -lin arbitrageur_N = mkN "arbitrageur" ; -lin arbitral_A = mkA "arbitral" ; -lin arbitrament_N = mkN "arbitrament" "arbitraments"; -- from DictEng -lin arbitrary_A = compoundA (mkA "arbitrary"); -- from DictEng -lin arbitrate_V = mkV "arbitrate" "arbitrates" "arbitrated" "arbitrated" "arbitrating"; -- from DictEng -lin arbitrate_V2 = mkV2 (mkV "arbitrate" "arbitrates" "arbitrated" "arbitrated" "arbitrating"); -- from DictEng -lin arbitration_N = mkN "arbitration" "arbitrations"; -- from DictEng -lin arbitrative_A = mkA "arbitrative" ; -lin arbitrator_N = mkN "arbitrator" "arbitrators"; -- from DictEng -lin arbor_N = mkN "arbor" ; -lin arboraceous_A = mkA "arboraceous" ; -lin arboreal_A = compoundA (mkA "arboreal"); -- from DictEng -lin arboretum_N = mkN "arboretum" ; -lin arborical_A = mkA "arborical" ; -lin arboriculture_N = mkN "arboriculture" ; -lin arborolatry_N = mkN "arborolatry" ; -lin arborvitae_N = mkN "arborvitae" ; -lin arbour_N = mkN "arbour" "arbours"; -- from DictEng -lin arbovirus_N = mkN "arbovirus" ; -lin arbutus_N = mkN "arbutus" ; -lin arc_N = mkN "arc" "arcs"; -- from DictEng -lin arc_lamp_N = mkN "arc - lamp" "arc - lamps"; -- from DictEng -lin arc_light_N = mkN "arc - light" "arc - lights"; -- from DictEng -lin arcade_N = mkN "arcade" "arcades"; -- from DictEng -lin arcadian_A = compoundA (mkA "arcadian"); -- from DictEng -lin arcadian_N = mkN "arcadian" "arcadians"; -- from DictEng -lin arcane_A = compoundA (mkA "arcane"); -- from DictEng -lin arced_A = mkA "arced" ; -lin arcella_N = mkN "arcella" ; -lin arch_A = compoundA (mkA "arch"); -- from DictEng -lin arch_N = mkN "arch" "arches"; -- from DictEng -lin arch_V = mkV "arch" "arches" "arched" "arched" "arching"; -- from DictEng -lin arch_V2 = mkV2 (mkV "arch" "arches" "arched" "arched" "arching"); -- from DictEng -lin archaebacteria_N = mkN "archaebacteria" ; -lin archaeological_A = compoundA (mkA "archaeological"); -- from DictEng -lin archaeologist_N = mkN "archaeologist" "archaeologists"; -- from DictEng -lin archaeology_N = mkN "archaeology" ; -- from DictEng -lin archaeopteryx_N = mkN "archaeopteryx" ; -lin archaeornis_N = mkN "archaeornis" ; -lin archaic_A = compoundA (mkA "archaic"); -- from DictEng -lin archaism_N = mkN "archaism" "archaisms"; -- from DictEng -lin archaist_N = mkN "archaist" ; -lin archaistic_A = mkA "archaistic" ; -lin archangel_N = mkN "archangel" "archangels"; -- from DictEng -lin archangelic_A = mkA "archangelic" ; -lin archbishop_N = mkN "archbishop" "archbishops"; -- from DictEng -lin archbishopric_N = mkN "archbishopric" "archbishoprics"; -- from DictEng -lin archdeacon_N = mkN "archdeacon" "archdeacons"; -- from DictEng -lin archdeaconry_N = mkN "archdeaconry" "archdeaconries"; -- from DictEng -lin archdiocesan_A = mkA "archdiocesan" ; -lin archdiocese_N = mkN "archdiocese" "archdioceses"; -- from DictEng -lin archducal_A = mkA "archducal" ; -lin archduchess_N = mkN "archduchess" ; -lin archduchy_N = mkN "archduchy" ; -lin archduke_N = mkN "archduke" "archdukes"; -- from DictEng -lin archean_A = mkA "archean" ; -lin arched_A = mkA "arched" ; -lin archegonial_A = mkA "archegonial" ; -lin archegonium_N = mkN "archegonium" ; -lin archenteron_N = mkN "archenteron" ; -lin archeologist_N = mkN "archeologist" ; -lin archeology_N = mkN "archeology" ; -- from DictEng -lin archeozoic_A = mkA "archeozoic" ; -lin archer_N = mkN "archer" "archers"; -- from DictEng -lin archerfish_N = mkN "archerfish" ; -lin archery_N = mkN "archery" ; -- from DictEng -lin archespore_N = mkN "archespore" ; -lin archesporial_A = mkA "archesporial" ; -lin archetypal_A = compoundA (mkA "archetypal"); -- from DictEng -lin archetype_N = mkN "archetype" "archetypes"; -- from DictEng -lin archiannelid_N = mkN "archiannelid" ; -lin archidiaconal_A = mkA "archidiaconal" ; -lin archidiaconate_N = mkN "archidiaconate" ; -lin archiepiscopal_A = mkA "archiepiscopal" ; -lin archil_N = mkN "archil" ; -lin archimandrite_N = mkN "archimandrite" "archimandrites"; -- from DictEng -lin archine_N = mkN "archine" ; -lin archipallium_N = mkN "archipallium" ; -lin archipelagic_A = mkA "archipelagic" ; -lin archipelago_N = mkN "archipelago" "archipelagos"; -- from DictEng -lin architect_N = mkN "architect" "architects"; -- from DictEng -lin architectonics_N = mkN "architectonics" ; -lin architectural_A = compoundA (mkA "architectural"); -- from DictEng -lin architecturally_Adv = mkAdv "architecturally" ; -lin architecture_N = mkN "architecture" ; -- from DictEng -lin architeuthis_N = mkN "architeuthis" ; -lin architrave_N = mkN "architrave" ; -lin archival_A = mkA "archival" ; -lin archive_N = mkN "archive" ; -lin archives_N = mkN "archives" ; -lin archivist_N = mkN "archivist" "archivists"; -- from DictEng -lin archly_Adv = mkAdv "archly" ; -lin archosaur_N = mkN "archosaur" ; -lin archosaurian_A = mkA "archosaurian" ; -lin archpriest_N = mkN "archpriest" ; -lin archway_N = mkN "archway" "archways"; -- from DictEng -lin arco_A = mkA "arco" ; -lin arctic_A = compoundA (mkA "arctic"); -- from DictEng -lin arctic_N = mkN "arctic" ; -lin arctiid_N = mkN "arctiid" ; -lin arcus_N = mkN "arcus" ; -lin ardeb_N = mkN "ardeb" ; -lin ardent_A = compoundA (mkA "ardent"); -- from DictEng -lin ardently_Adv = mkAdv "ardently" ; -lin ardor_N = mkN "ardor" ; -lin ardour_N = mkN "ardour" "ardours"; -- from DictEng -lin arduous_A = compoundA (mkA "arduous"); -- from DictEng -lin arduously_Adv = mkAdv "arduously" ; -lin arduousness_N = mkN "arduousness" ; -lin are_N = mkN "are" "ares"; -- from DictEng -lin area_N = mkN "area" "areas"; -- from DictEng -lin areal_A = mkA "areal" ; -lin areaway_N = mkN "areaway" ; -lin areca_N = mkN "areca" "arecas"; -- from DictEng -lin areflexia_N = mkN "areflexia" ; -lin arena_N = mkN "arena" "arenas"; -- from DictEng -lin arenaceous_A = mkA "arenaceous" ; -lin arenavirus_N = mkN "arenavirus" ; -lin arenicolous_A = mkA "arenicolous" ; -lin areola_N = mkN "areola" ; -lin areolar_A = mkA "areolar" ; -lin arete_N = mkN "arête" "arêtes"; -- from DictEng -lin arethusa_N = mkN "arethusa" ; -lin argali_N = mkN "argali" ; -lin argent_A = compoundA (mkA "argent"); -- from DictEng -lin argent_N = mkN "argent" "argents"; -- from DictEng -lin argentic_A = mkA "argentic" ; -lin argentiferous_A = mkA "argentiferous" ; -lin argentine_N = mkN "argentine" ; -lin argentinian_A = compoundA (mkA "argentinian"); -- from DictEng -lin argentinian_N = mkN "argentinian" "argentinians"; -- from DictEng -lin argentinosaur_N = mkN "argentinosaur" ; -lin argentite_N = mkN "argentite" ; -lin argentous_A = mkA "argentous" ; -lin argil_N = mkN "argil" ; -lin argillaceous_A = mkA "argillaceous" ; -lin argillite_N = mkN "argillite" ; -lin arginine_N = mkN "arginine" ; -lin argon_N = mkN "argon" ; -- from DictEng -lin argonaut_N = mkN "argonaut" "argonauts"; -- from DictEng -lin argosy_N = mkN "argosy" "argosies"; -- from DictEng -lin argot_N = mkN "argot" ; -- from DictEng -lin arguable_A = compoundA (mkA "arguable"); -- from DictEng -lin arguably_Adv = mkAdv "arguably" ; -lin argue_V = mkV "argue" "argues" "argued" "argued" "arguing"; -- from DictEng -lin argue_V2 = mkV2 (mkV "argue" "argues" "argued" "argued" "arguing"); -- from DictEng -lin argue_VS = mkVS (mkV "argue" "argues" "argued" "argued" "arguing"); -- from DictEng -lin argument_N = mkN "argument" "arguments"; -- from DictEng -lin argumentation_N = mkN "argumentation" ; -- from DictEng -lin argumentative_A = compoundA (mkA "argumentative"); -- from DictEng -lin argus_N = mkN "argus" "arguses"; -- from DictEng -lin argus_eyed_A = compoundA (mkA "argus - eyed"); -- from DictEng -lin argus_eyed_A = compoundA (mkA "argus - eyed"); -- from DictEng -lin argy_bargy_N = mkN "argy bargy" ; -lin argyle_N = mkN "argyle" ; -lin argyll_N = mkN "argyll" ; -lin argyrodite_N = mkN "argyrodite" ; -lin aria_N = mkN "aria" "arias"; -- from DictEng -lin arianist_N = mkN "arianist" ; -lin arid_A = compoundA (mkA "arid"); -- from DictEng -lin aridity_N = mkN "aridity" ; -- from DictEng -lin arietta_N = mkN "arietta" ; -lin aright_Adv = mkAdv "aright"; -- from DictEng -lin aril_N = mkN "aril" ; -lin ariled_A = mkA "ariled" ; -lin ariose_A = mkA "ariose" ; -lin arioso_N = mkN "arioso" ; -lin arise_V = mkV "a" IrregEng.rise_V; -- from DictEng -lin arise_VS = mkVS (mkV "a" IrregEng.rise_V); -- from DictEng -lin arista_N = mkN "arista" ; -lin aristocracy_N = mkN "aristocracy" "aristocracies"; -- from DictEng -lin aristocrat_N = mkN "aristocrat" "aristocrats"; -- from DictEng -lin aristocratic_A = compoundA (mkA "aristocratic"); -- from DictEng -lin aristocratically_Adv = mkAdv "aristocratically"; -- from DictEng -lin arithmancy_N = mkN "arithmancy" ; -lin arithmetic_N = mkN "arithmetic" ; -- from DictEng -lin arithmetical_A = compoundA (mkA "arithmetical"); -- from DictEng -lin arithmetically_Adv = mkAdv "arithmetically" ; -lin arithmetician_N = mkN "arithmetician" "arithmeticians"; -- from DictEng -lin arity_N = mkN "arity" ; -lin ark_N = mkN "ark" "arks"; -- from DictEng -lin arm_N = mkN "arm" "arms"; -- from DictEng -lin arm_V = mkV "arm" "arms" "armed" "armed" "arming"; -- from DictEng -lin arm_V2 = mkV2 (mkV "arm" "arms" "armed" "armed" "arming"); -- from DictEng -lin arm_twisting_N = mkN "arm twisting" ; -lin arm_hole_N = mkN "arm - hole" "arm - holes"; -- from DictEng -lin armada_N = mkN "armada" "armadas"; -- from DictEng -lin armadillo_N = mkN "armadillo" "armadillos"; -- from DictEng -lin armament_N = mkN "armament" "armaments"; -- from DictEng -lin armamentarium_N = mkN "armamentarium" ; -lin armature_N = mkN "armature" "armatures"; -- from DictEng -lin armband_N = mkN "armband" "armbands"; -- from DictEng -lin armchair_N = mkN "armchair" "armchairs"; -- from DictEng -lin armed_A = mkA "armed" ; -lin armet_N = mkN "armet" ; -lin armful_N = mkN "armful" "armfuls"; -- from DictEng -lin armhole_N = mkN "armhole" ; -lin armiger_N = mkN "armiger" ; -lin armilla_N = mkN "armilla" ; -lin armillary_A = mkA "armillary" ; -lin arming_N = mkN "arming" ; -lin armistice_N = mkN "armistice" "armistices"; -- from DictEng -lin armless_A = mkA "armless" ; -lin armlet_N = mkN "armlet" "armlets"; -- from DictEng -lin armlike_A = mkA "armlike" ; -lin armoire_N = mkN "armoire" "armoires"; -- from DictEng -lin armor_N = mkN "armor" ; -lin armor_clad_A = compoundA (mkA "armor clad") ; -lin armored_A = mkA "armored" ; -lin armorer_N = mkN "armorer" ; -lin armorial_A = compoundA (mkA "armorial"); -- from DictEng -lin armory_N = mkN "armory" ; -lin armour_N = mkN "armour" ; -- from DictEng -lin armour_plate_N = mkN "armour - plate" "armour - plates"; -- from DictEng -lin armoured_A = compoundA (mkA "armoured"); -- from DictEng -lin armourer_N = mkN "armourer" "armourers"; -- from DictEng -lin armoury_N = mkN "armoury" "armouries"; -- from DictEng -lin armpit_N = mkN "armpit" "armpits"; -- from DictEng -lin armrest_N = mkN "armrest" ; -lin arms_race_N = mkN "arms - race" "IRREG"; -- from DictEng -lin arms_runner_N = mkN "arms - runner" "arms - runners"; -- from DictEng -lin army_N = mkN "army" "armies"; -- from DictEng -lin armyworm_N = mkN "armyworm" ; -lin arnica_N = mkN "arnica" ; -- from DictEng -lin aroid_A = mkA "aroid" ; -lin aroma_N = mkN "aroma" "aromas"; -- from DictEng -lin aromatherapy_N = mkN "aromatherapy" ; -lin aromatic_A = compoundA (mkA "aromatic"); -- from DictEng -lin arose_V2 = mkV2 (mkV "arose"); -- from DictEng -lin arose_VS = mkVS (mkV "arose"); -- from DictEng -lin around_AdN = mkAdN "around"; -- from DictEng -lin around_Adv = mkAdv "around"; -- from DictEng -lin around_Prep = mkPrep "around"; -- from DictEng -lin around_the_clock_A = compoundA (mkA "around the clock") ; -lin around_the_clock_Adv = mkAdv "around the clock" ; -lin arousal_N = mkN "arousal" ; -lin arouse_V2 = mkV2 (mkV "arouse" "arouses" "aroused" "aroused" "arousing"); -- from DictEng -lin arouse_V2V = mkV2V (mkV "arouse") noPrep to_Prep ; -- from DictEng -lin aroused_A = mkA "aroused" ; -lin arpeggio_N = mkN "arpeggio" "arpeggios"; -- from DictEng -lin arpent_N = mkN "arpent" ; -lin arquebus_N = mkN "arquebus" "arquebuses"; -- from DictEng -lin arrack_N = mkN "arrack" ; -- from DictEng -lin arraign_V2 = mkV2 (mkV "arraign" "arraigns" "arraigned" "arraigned" "arraigning"); -- from DictEng -lin arraignment_N = mkN "arraignment" "arraignments"; -- from DictEng -lin arrange_V = mkV "arrange" "arranges" "arranged" "arranged" "arranging"; -- from DictEng -lin arrange_V2 = mkV2 (mkV "arrange" "arranges" "arranged" "arranged" "arranging"); -- from DictEng -lin arranged_A = mkA "arranged" ; -lin arrangement_N = mkN "arrangement" "arrangements"; -- from DictEng -lin arranger_N = mkN "arranger" ; -lin arrant_A = compoundA (mkA "arrant"); -- from DictEng -lin arras_N = mkN "arras" "arrases"; -- from DictEng -lin array_N = mkN "array" "arrays"; -- from DictEng -lin array_V2 = mkV2 (mkV "array" "arrays" "arrayed" "arrayed" "arraying"); -- from DictEng -lin arrayed_A = mkA "arrayed" ; -lin arrears_N = mkN "arrears" ; -lin arrest_N = mkN "arrest" "arrests"; -- from DictEng -lin arrest_V2 = mkV2 (mkV "arrest" "arrests" "arrested" "arrested" "arresting"); -- from DictEng -lin arrester_N = mkN "arrester" "arresters"; -- from DictEng -lin arresting_A = compoundA (mkA "arresting"); -- from DictEng -lin arrhythmic_A = mkA "arrhythmic" ; -lin arriere_pensee_N = mkN "arrière pensée" "arrière pensées"; -- from DictEng -lin arrival_N = mkN "arrival" "arrivals"; -- from DictEng -lin arrive_V = mkV "arrive" "arrives" "arrived" "arrived" "arriving"; -- from DictEng -lin arrive_V2 = mkV2 (mkV "arrive" "arrives" "arrived" "arrived" "arriving"); -- from DictEng -lin arroba_N = mkN "arroba" ; -lin arrogance_N = mkN "arrogance" ; -- from DictEng -lin arrogant_A = compoundA (mkA "arrogant"); -- from DictEng -lin arrogantly_Adv = mkAdv "arrogantly" ; -lin arrogate_V2 = mkV2 (mkV "arrogate" "arrogates" "arrogated" "arrogated" "arrogating"); -- from DictEng -lin arrogator_N = mkN "arrogator" ; -lin arrow_N = mkN "arrow" "arrows"; -- from DictEng -lin arrowhead_N = mkN "arrowhead" "arrowheads"; -- from DictEng -lin arrowroot_N = mkN "arrowroot" ; -- from DictEng -lin arrowsmith_N = mkN "arrowsmith" ; -lin arrowworm_N = mkN "arrowworm" ; -lin arroyo_N = mkN "arroyo" ; -lin arse_N = mkN "arse" "arses"; -- from DictEng -lin arsehole_N = mkN "arsehole" "arseholes"; -- from DictEng -lin arsenal_N = mkN "arsenal" "arsenals"; -- from DictEng -lin arsenate_N = mkN "arsenate" ; -lin arsenic_N = mkN "arsenic" ; -- from DictEng -lin arsenical_A = mkA "arsenical" ; -lin arsenical_N = mkN "arsenical" ; -lin arsenide_N = mkN "arsenide" ; -lin arsenious_A = mkA "arsenious" ; -lin arsenopyrite_N = mkN "arsenopyrite" ; -lin arsine_N = mkN "arsine" ; -lin arson_N = mkN "arson" ; -- from DictEng -lin arsonist_N = mkN "arsonist" ; -lin art_N = mkN "art" "arts"; -- from DictEng -lin artefact_N = mkN "artefact" "artefacts"; -- from DictEng -lin artemisia_N = mkN "artemisia" ; -lin arterial_A = compoundA (mkA "arterial"); -- from DictEng -lin arteriectasis_N = mkN "arteriectasis" ; -lin arteriogram_N = mkN "arteriogram" ; -lin arteriography_N = mkN "arteriography" ; -lin arteriolar_A = mkA "arteriolar" ; -lin arteriole_N = mkN "arteriole" ; -lin arteriolosclerosis_N = mkN "arteriolosclerosis" ; -lin arteriosclerosis_N = mkN "arteriosclerosis" ; -- from DictEng -lin arteriosclerotic_A = mkA "arteriosclerotic" ; -lin arteriovenous_A = mkA "arteriovenous" ; -lin arteritis_N = mkN "arteritis" ; -lin artery_N = mkN "artery" "arteries"; -- from DictEng -lin artesian_A = compoundA (mkA "artesian"); -- from DictEng -lin artful_A = compoundA (mkA "artful"); -- from DictEng -lin artfully_Adv = mkAdv "artfully" ; -lin artfulness_N = mkN "artfulness" ; -- from DictEng -lin arthralgia_N = mkN "arthralgia" ; -lin arthralgic_A = mkA "arthralgic" ; -lin arthritic_A = compoundA (mkA "arthritic"); -- from DictEng -lin arthritic_N = mkN "arthritic" ; -lin arthritis_N = mkN "arthritis" ; -- from DictEng -lin arthrocentesis_N = mkN "arthrocentesis" ; -lin arthrodesis_N = mkN "arthrodesis" ; -lin arthrogram_N = mkN "arthrogram" ; -lin arthrography_N = mkN "arthrography" ; -lin arthromere_N = mkN "arthromere" ; -lin arthromeric_A = mkA "arthromeric" ; -lin arthropathy_N = mkN "arthropathy" ; -lin arthroplasty_N = mkN "arthroplasty" ; -lin arthropod_N = mkN "arthropod" ; -lin arthropodal_A = mkA "arthropodal" ; -lin arthroscope_N = mkN "arthroscope" ; -lin arthroscopy_N = mkN "arthroscopy" ; -lin arthrospore_N = mkN "arthrospore" ; -lin arthrosporic_A = mkA "arthrosporic" ; -lin artichoke_N = mkN "artichoke" "artichokes"; -- from DictEng -lin article_N = mkN "article" "articles"; -- from DictEng -lin article_V2 = mkV2 (mkV "article" "articles" "articled" "articled" "articling"); -- from DictEng -lin articular_A = mkA "articular" ; -lin articulate_A = compoundA (mkA "articulate"); -- from DictEng -lin articulate_V = mkV "articulate" "articulates" "articulated" "articulated" "articulating"; -- from DictEng -lin articulate_V2 = mkV2 (mkV "articulate" "articulates" "articulated" "articulated" "articulating"); -- from DictEng -lin articulated_A = mkA "articulated" ; -lin articulately_Adv = mkAdv "articulately" ; -lin articulation_N = mkN "articulation" ; -- from DictEng -lin articulator_N = mkN "articulator" ; -lin articulatory_A = mkA "articulatory" ; -lin artifact_N = mkN "artifact" "artifacts"; -- from DictEng -lin artifactual_A = mkA "artifactual" ; -lin artifice_N = mkN "artifice" "artifices"; -- from DictEng -lin artificer_N = mkN "artificer" "artificers"; -- from DictEng -lin artificial_A = compoundA (mkA "artificial"); -- from DictEng -lin artificiality_N = mkN "artificiality" ; -lin artificially_Adv = mkAdv "artificially" ; -lin artillery_N = mkN "artillery" ; -- from DictEng -lin artilleryman_N = mkN "artilleryman" ; -lin artiodactyl_A = mkA "artiodactyl" ; -lin artisan_N = mkN "artisan" "artisans"; -- from DictEng -lin artist_N = mkN "artist" "artists"; -- from DictEng -lin artiste_N = mkN "artiste" "artistes"; -- from DictEng -lin artistic_A = compoundA (mkA "artistic"); -- from DictEng -lin artistically_Adv = mkAdv "artistically"; -- from DictEng -lin artistry_N = mkN "artistry" ; -- from DictEng -lin artless_A = compoundA (mkA "artless"); -- from DictEng -lin artlessly_Adv = mkAdv "artlessly" ; -lin artlessness_N = mkN "artlessness" ; -- from DictEng -lin artsy_craftsy_A = compoundA (mkA "artsy craftsy") ; -lin artwork_N = mkN "artwork" ; -lin arty_A = compoundA (mkA "arty"); -- from DictEng -lin arty_crafty_A = compoundA (mkA "arty - crafty"); -- from DictEng -lin arum_N = mkN "arum" "arums"; -- from DictEng -lin arundinaceous_A = mkA "arundinaceous" ; -lin aryan_A = compoundA (mkA "aryan"); -- from DictEng -lin aryan_N = mkN "aryan" "aryans"; -- from DictEng -lin arytenoid_N = mkN "arytenoid" ; -lin as_Prep = mkPrep "as"; -- from DictEng -lin as_far_as_possible_Adv = mkAdv "as far as possible" ; -lin as_follows_Adv = mkAdv "as follows" ; -lin as_it_is_Adv = mkAdv "as it is" ; -lin as_it_were_Adv = mkAdv "as it were" ; -lin as_needed_Adv = mkAdv "as needed" ; -lin as_the_crow_flies_Adv = mkAdv "as the crow flies" ; -lin as_usual_Adv = mkAdv "as usual" ; -lin as_we_say_Adv = mkAdv "as we say" ; -lin asafetida_N = mkN "asafetida" ; -lin asana_N = mkN "asana" ; -lin asarabacca_N = mkN "asarabacca" ; -lin asbestos_N = mkN "asbestos" ; -- from DictEng -lin asbestosis_N = mkN "asbestosis" ; -lin ascariasis_N = mkN "ascariasis" ; -lin ascend_V = mkV "ascend" "ascends" "ascended" "ascended" "ascending"; -- from DictEng -lin ascend_V2 = mkV2 (mkV "ascend" "ascends" "ascended" "ascended" "ascending"); -- from DictEng -lin ascendable_A = mkA "ascendable" ; -lin ascendancy_N = mkN "ascendancy" ; -- from DictEng -lin ascendant_A = mkA "ascendant" ; -lin ascendant_N = mkN "ascendant" "ascendants"; -- from DictEng -lin ascendency_N = mkN "ascendency" ; -- from DictEng -lin ascendent_N = mkN "ascendent" "ascendents"; -- from DictEng -lin ascender_N = mkN "ascender" ; -lin ascending_A = mkA "ascending" ; -lin ascension_N = mkN "ascension" "ascensions"; -- from DictEng -lin ascensional_A = mkA "ascensional" ; -lin ascent_N = mkN "ascent" "ascents"; -- from DictEng -lin ascertain_V2 = mkV2 (mkV "ascertain" "ascertains" "ascertained" "ascertained" "ascertaining"); -- from DictEng -lin ascertain_VS = mkVS (mkV "ascertain" ); -lin ascertainable_A = compoundA (mkA "ascertainable"); -- from DictEng -lin ascertained_A = mkA "ascertained" ; -lin ascetic_A = compoundA (mkA "ascetic"); -- from DictEng -lin ascetic_N = mkN "ascetic" "ascetics"; -- from DictEng -lin ascetically_Adv = mkAdv "ascetically"; -- from DictEng -lin asceticism_N = mkN "asceticism" ; -- from DictEng -lin ascidian_N = mkN "ascidian" ; -lin ascites_N = mkN "ascites" ; -lin ascitic_A = mkA "ascitic" ; -lin asclepiad_N = mkN "asclepiad" ; -lin asclepiadaceous_A = mkA "asclepiadaceous" ; -lin ascocarp_N = mkN "ascocarp" ; -lin ascocarpous_A = mkA "ascocarpous" ; -lin ascolichen_N = mkN "ascolichen" ; -lin ascoma_N = mkN "ascoma" ; -lin ascomycete_N = mkN "ascomycete" ; -lin ascomycetous_A = mkA "ascomycetous" ; -lin ascorbic_A = compoundA (mkA "ascorbic"); -- from DictEng -lin ascospore_N = mkN "ascospore" ; -lin ascosporic_A = mkA "ascosporic" ; -lin ascot_N = mkN "ascot" ; -lin ascribable_A = compoundA (mkA "ascribable"); -- from DictEng -lin ascribe_V2 = mkV2 (mkV "ascribe" "ascribes" "ascribed" "ascribed" "ascribing"); -- from DictEng -lin ascription_N = mkN "ascription" "ascriptions"; -- from DictEng -lin ascus_N = mkN "ascus" ; -lin asdic_N = mkN "asdic" "asdics"; -- from DictEng -lin asepsis_N = mkN "asepsis" ; -- from DictEng -lin aseptic_A = compoundA (mkA "aseptic"); -- from DictEng -lin asexual_A = compoundA (mkA "asexual"); -- from DictEng -lin asexuality_N = mkN "asexuality" ; -- from DictEng -lin asexually_Adv = mkAdv "asexually" ; -lin ash_N = mkN "ash" "ashes"; -- from DictEng -lin ash_blonde_A = compoundA (mkA "ash blonde") ; -lin ash_grey_A = compoundA (mkA "ash grey") ; -lin ash_key_N = mkN "ash - key" "ash - keys"; -- from DictEng -lin ash_pan_N = mkN "ash - pan" "ash - pans"; -- from DictEng -lin ash_bin_N = mkN "ash - bin" "ash - bins"; -- from DictEng -lin ash_can_N = mkN "ash - can" "ash - cans"; -- from DictEng -lin ash_key_N = mkN "ash - key" "ash - keys"; -- from DictEng -lin ash_pan_N = mkN "ash - pan" "ash - pans"; -- from DictEng -lin ashamed_A = compoundA (mkA "ashamed"); -- from DictEng -lin ashamedly_Adv = mkAdv "ashamedly" ; -lin ashcake_N = mkN "ashcake" ; -lin ashcan_N = mkN "ashcan" ; -lin ashen_A = compoundA (mkA "ashen"); -- from DictEng -lin ashlar_N = mkN "ashlar" ; -lin ashore_Adv = mkAdv "ashore"; -- from DictEng -lin ashram_N = mkN "ashram" ; -lin ashtray_N = mkN "ashtray" "ashtrays"; -- from DictEng -lin ashy_A = compoundA (mkA "ashy"); -- from DictEng -lin asian_A = compoundA (mkA "Asian"); -- from DictEng -lin asian_N = mkN "Asian" "Asians"; -- from DictEng -lin asiatic_A = compoundA (mkA "asiatic"); -- from DictEng -lin asiatic_N = mkN "asiatic" "asiatics"; -- from DictEng -lin aside_Adv = mkAdv "aside"; -- from DictEng -lin aside_N = mkN "aside" "asides"; -- from DictEng -lin asinine_A = compoundA (mkA "asinine"); -- from DictEng -lin asininity_N = mkN "asininity" ; -lin ask_V = mkV "ask" "asks" "asked" "asked" "asking"; -- from DictEng -lin ask_V2 = mkV2 (mkV "ask"); -- from DictEng -lin ask_V2Q = mkV2Q (mkV "ask") noPrep; -lin ask_V2V = mkV2V (mkV "ask") noPrep to_Prep; -- from DictEng -lin ask_VS = mkVS (mkV "ask" "asks" "asked" "asked" "asking"); -- from DictEng -lin ask_VV = mkVV (mkV "ask" "asks" "asked" "asked" "asking"); -- from DictEng -lin askance_A = mkA "askance" ; -lin askance_Adv = mkAdv "askance"; -- from DictEng -lin askew_A = compoundA (mkA "askew"); -- from DictEng -lin askew_Adv = mkAdv "askew"; -- from DictEng -lin asking_N = mkN "asking" "IRREG"; -- from DictEng -lin aslant_A = mkA "aslant" ; -lin aslant_Adv = mkAdv "aslant"; -- from DictEng -lin asleep_A = compoundA (mkA "asleep"); -- from DictEng -lin asleep_Adv = mkAdv "asleep"; -- from DictEng -lin asocial_A = mkA "asocial" ; -lin asp_N = mkN "asp" "asps"; -- from DictEng -lin asparaginase_N = mkN "asparaginase" ; -lin asparagine_N = mkN "asparagine" ; -lin asparagus_N = mkN "asparagus" ; -- from DictEng -lin aspartame_N = mkN "aspartame" ; -lin aspect_N = mkN "aspect" "aspects"; -- from DictEng -lin aspectual_A = compoundA (mkA "aspectual"); -- from DictEng -lin aspen_N = mkN "aspen" "aspens"; -- from DictEng -lin asper_N = mkN "asper" ; -lin aspergill_N = mkN "aspergill" ; -lin aspergillosis_N = mkN "aspergillosis" ; -lin asperity_N = mkN "asperity" "asperities"; -- from DictEng -lin asperse_V2 = mkV2 (mkV "asperse" "asperses" "aspersed" "aspersed" "aspersing"); -- from DictEng -lin aspersion_N = mkN "aspersion" "aspersions"; -- from DictEng -lin aspersorium_N = mkN "aspersorium" ; -lin asphalt_N = mkN "asphalt" ; -- from DictEng -lin asphalt_V2 = mkV2 (mkV "asphalt" "asphalts" "asphalted" "asphalted" "asphalting"); -- from DictEng -lin asphaltic_A = mkA "asphaltic" ; -lin aspheric_A = mkA "aspheric" ; -lin asphodel_N = mkN "asphodel" "asphodels"; -- from DictEng -lin asphyxia_N = mkN "asphyxia" ; -- from DictEng -lin asphyxiate_V2 = mkV2 (mkV "asphyxiate" "asphyxiates" "asphyxiated" "asphyxiated" "asphyxiating"); -- from DictEng -lin asphyxiated_A = mkA "asphyxiated" ; -lin asphyxiating_A = mkA "asphyxiating" ; -lin asphyxiation_N = mkN "asphyxiation" ; -- from DictEng -lin aspic_N = mkN "aspic" ; -- from DictEng -lin aspidistra_N = mkN "aspidistra" "aspidistras"; -- from DictEng -lin aspirant_A = mkA "aspirant" ; -lin aspirant_N = mkN "aspirant" "aspirants"; -- from DictEng -lin aspirate_N = mkN "aspirate" "aspirates"; -- from DictEng -lin aspirate_V2 = mkV2 (mkV "aspirate" "aspirates" "aspirated" "aspirated" "aspirating"); -- from DictEng -lin aspiration_N = mkN "aspiration" "aspirations"; -- from DictEng -lin aspirator_N = mkN "aspirator" ; -lin aspire_V = mkV "aspire" "aspires" "aspired" "aspired" "aspiring"; -- from DictEng -lin aspirin_N = mkN "aspirin" "aspirins"; -- from DictEng -lin ass_N = mkN "ass" "asses"; -- from DictEng -lin assagai_N = mkN "assagai" "assagais"; -- from DictEng -lin assail_V2 = mkV2 (mkV "assail" "assails" "assailed" "assailed" "assailing"); -- from DictEng -lin assailability_N = mkN "assailability" ; -lin assailable_A = compoundA (mkA "assailable"); -- from DictEng -lin assailant_N = mkN "assailant" "assailants"; -- from DictEng -lin assassin_N = mkN "assassin" "assassins"; -- from DictEng -lin assassinate_V2 = mkV2 (mkV "assassinate" "assassinates" "assassinated" "assassinated" "assassinating"); -- from DictEng -lin assassinated_A = mkA "assassinated" ; -lin assassination_N = mkN "assassination" "assassinations"; -- from DictEng -lin assault_N = mkN "assault" "assaults"; -- from DictEng -lin assault_V2 = mkV2 (mkV "assault" "assaults" "assaulted" "assaulted" "assaulting"); -- from DictEng -lin assaultive_A = mkA "assaultive" ; -lin assay_N = mkN "assay" "assays"; -- from DictEng -lin assay_V2 = mkV2 (mkV "assay" "assays" "assayed" "assayed" "assaying"); -- from DictEng -lin assayer_N = mkN "assayer" ; -lin assegai_N = mkN "assegai" "assegais"; -- from DictEng -lin assemblage_N = mkN "assemblage" "assemblages"; -- from DictEng -lin assemble_V = mkV "assemble" "assembles" "assembled" "assembled" "assembling"; -- from DictEng -lin assemble_V2 = mkV2 (mkV "assemble" "assembles" "assembled" "assembled" "assembling"); -- from DictEng -lin assembler_N = mkN "assembler" ; -lin assembly_N = mkN "assembly" "assemblies"; -- from DictEng -lin assemblyman_N = mkN "assemblyman" ; -lin assemblywoman_N = mkN "assemblywoman" ; -lin assent_N = mkN "assent" "assents"; -- from DictEng -lin assent_V = mkV "assent" "assents" "assented" "assented" "assenting"; -- from DictEng -lin assenter_N = mkN "assenter" ; -lin assentient_A = mkA "assentient" ; -lin assert_V = mkV "assert"; -- from DictEng -lin assert_V2 = mkV2 (mkV "assert" "asserts" "asserted" "asserted" "asserting"); -- from DictEng -lin assert_VS = mkVS (mkV "assert"); -- from DictEng -lin asserted_A = mkA "asserted" ; -lin asserter_N = mkN "asserter" ; -lin assertion_N = mkN "assertion" "assertions"; -- from DictEng -lin assertive_A = compoundA (mkA "assertive"); -- from DictEng -lin assertively_Adv = mkAdv "assertively" ; -lin assertiveness_N = mkN "assertiveness" ; -lin assess_V2 = mkV2 (mkV "assess" "assesses" "assessed" "assessed" "assessing"); -- from DictEng -lin assessable_A = mkA "assessable" ; -lin assessee_N = mkN "assessee" ; -lin assessment_N = mkN "assessment" "assessments"; -- from DictEng -lin assessor_N = mkN "assessor" "assessors"; -- from DictEng -lin asset_N = mkN "asset" "assets"; -- from DictEng -lin assets_N = mkN "assets" ; -lin asseverate_V2 = mkV2 (mkV "asseverate" "asseverates" "asseverated" "asseverated" "asseverating"); -- from DictEng -lin asseveration_N = mkN "asseveration" "asseverations"; -- from DictEng -lin asshole_N = mkN "asshole" "assholes"; -- from DictEng -lin assibilation_N = mkN "assibilation" ; -lin assiduity_N = mkN "assiduity" "assiduities"; -- from DictEng -lin assiduous_A = compoundA (mkA "assiduous"); -- from DictEng -lin assiduously_Adv = mkAdv "assiduously" ; -lin assign_V2 = mkV2 (mkV "assign" "assigns" "assigned" "assigned" "assigning"); -- from DictEng -lin assign_V2V = mkV2V (mkV "assign") noPrep to_Prep ; -- from DictEng -lin assignable_A = compoundA (mkA "assignable"); -- from DictEng -lin assignation_N = mkN "assignation" "assignations"; -- from DictEng -lin assigned_A = mkA "assigned" ; -lin assignee_N = mkN "assignee" ; -lin assignment_N = mkN "assignment" "assignments"; -- from DictEng -lin assignor_N = mkN "assignor" ; -lin assimilable_A = mkA "assimilable" ; -lin assimilate_V = mkV "assimilate" "assimilates" "assimilated" "assimilated" "assimilating"; -- from DictEng -lin assimilate_V2 = mkV2 (mkV "assimilate" "assimilates" "assimilated" "assimilated" "assimilating"); -- from DictEng -lin assimilating_A = mkA "assimilating" ; -lin assimilation_N = mkN "assimilation" ; -- from DictEng -lin assimilative_A = mkA "assimilative" ; -lin assist_N = mkN "assist" ; -lin assist_V = mkV "assist" "assists" "assisted" "assisted" "assisting"; -- from DictEng -lin assist_V2 = mkV2 (mkV "assist" "assists" "assisted" "assisted" "assisting"); -- from DictEng -lin assistance_N = mkN "assistance" ; -- from DictEng -lin assistant_N = mkN "assistant" "assistants"; -- from DictEng -lin assisted_A = mkA "assisted" ; -lin assistive_A = mkA "assistive" ; -lin assize_N = mkN "assize" ; -- from DictEng -lin assizes_N = mkN "assizes" ; -lin assoc_N = mkN "assoc" ; -- from DictEng -lin associability_N = mkN "associability" ; -lin associable_A = mkA "associable" ; -lin associate_A = compoundA (mkA "associate"); -- from DictEng -lin associate_N = mkN "associate" "associates"; -- from DictEng -lin associate_V = mkV "associate" "associates" "associated" "associated" "associating"; -- from DictEng -lin associate_V2 = mkV2 (mkV "associate" "associates" "associated" "associated" "associating"); -- from DictEng -lin associateship_N = mkN "associateship" ; -lin association_N = mkN "association" "associations"; -- from DictEng -lin associational_A = mkA "associational" ; -lin associationism_N = mkN "associationism" ; -lin associative_A = mkA "associative" ; -lin assonance_N = mkN "assonance" "assonances"; -- from DictEng -lin assonant_A = mkA "assonant" ; -lin assorted_A = compoundA (mkA "assorted"); -- from DictEng -lin assortment_N = mkN "assortment" "assortments"; -- from DictEng -lin asst_N = mkN "asst" ; -- from DictEng -lin assuage_V2 = mkV2 (mkV "assuage" "assuages" "assuaged" "assuaged" "assuaging"); -- from DictEng -lin assuasive_A = mkA "assuasive" ; -lin assume_V = mkV "assume"; -- from DictEng -lin assume_V2 = mkV2 (mkV "assume" "assumes" "assumed" "assumed" "assuming"); -- from DictEng -lin assume_VS = mkVS (mkV "assume"); -- from DictEng -lin assumed_A = mkA "assumed" ; -lin assumption_N = mkN "assumption" "assumptions"; -- from DictEng -lin assumptive_A = mkA "assumptive" ; -lin assurance_N = mkN "assurance" "assurances"; -- from DictEng -lin assure_V2 = mkV2 (mkV "assure" "assures" "assured" "assured" "assuring"); -- from DictEng -lin assure_VS = mkVS (mkV "assure"); -- from DictEng -lin assured_A = compoundA (mkA "assured"); -- from DictEng -lin assuredly_Adv = mkAdv "assuredly" ; -lin assuredness_N = mkN "assuredness" ; -- from DictEng -lin assurgent_A = mkA "assurgent" ; -lin assuring_A = mkA "assuring" ; -lin astasia_N = mkN "astasia" ; -lin astatic_A = mkA "astatic" ; -lin astatine_N = mkN "astatine" ; -lin aster_N = mkN "aster" "asters"; -- from DictEng -lin astereognosis_N = mkN "astereognosis" ; -lin asteriated_A = mkA "asteriated" ; -lin asterion_N = mkN "asterion" ; -lin asterisk_N = mkN "asterisk" "asterisks"; -- from DictEng -lin asterisked_A = mkA "asterisked" ; -lin asterism_N = mkN "asterism" ; -lin asterismal_A = mkA "asterismal" ; -lin astern_Adv = mkAdv "astern"; -- from DictEng -lin asternal_A = mkA "asternal" ; -lin asteroid_A = mkA "asteroid" ; -lin asteroid_N = mkN "asteroid" "asteroids"; -- from DictEng -lin asteroidal_A = mkA "asteroidal" ; -lin asthenia_N = mkN "asthenia" ; -lin asthenic_A = mkA "asthenic" ; -lin asthenosphere_N = mkN "asthenosphere" ; -lin asthma_N = mkN "asthma" ; -- from DictEng -lin asthmatic_A = compoundA (mkA "asthmatic"); -- from DictEng -lin asthmatic_N = mkN "asthmatic" ; -lin astigmatic_A = compoundA (mkA "astigmatic"); -- from DictEng -lin astigmatism_N = mkN "astigmatism" ; -- from DictEng -lin astilbe_N = mkN "astilbe" ; -lin astir_A = compoundA (mkA "astir"); -- from DictEng -lin astir_Adv = mkAdv "astir"; -- from DictEng -lin astomatal_A = mkA "astomatal" ; -lin astomatous_A = mkA "astomatous" ; -lin astonish_V2 = mkV2 (mkV "astonish" "astonishes" "astonished" "astonished" "astonishing"); -- from DictEng -lin astonishing_A = compoundA (mkA "astonishing"); -- from DictEng -lin astonishment_N = mkN "astonishment" ; -- from DictEng -lin astound_V2 = mkV2 (mkV "astound" "astounds" "astounded" "astounded" "astounding"); -- from DictEng -lin astounding_A = mkA "astounding" ; -lin astragalar_A = mkA "astragalar" ; -lin astrakhan_N = mkN "astrakhan" ; -- from DictEng -lin astral_A = compoundA (mkA "astral"); -- from DictEng -lin astrantia_N = mkN "astrantia" ; -lin astraphobia_N = mkN "astraphobia" ; -lin astray_A = compoundA (mkA "astray"); -- from DictEng -lin astray_Adv = mkAdv "astray"; -- from DictEng -lin astride_A = compoundA (mkA "astride"); -- from DictEng -lin astride_Adv = mkAdv "astride"; -- from DictEng -lin astride_Prep = mkPrep "astride"; -- from DictEng -lin astringency_N = mkN "astringency" ; -- from DictEng -lin astringent_A = compoundA (mkA "astringent"); -- from DictEng -lin astringent_N = mkN "astringent" "astringents"; -- from DictEng -lin astrocyte_N = mkN "astrocyte" ; -lin astrocytic_A = mkA "astrocytic" ; -lin astrodome_N = mkN "astrodome" "astrodomes"; -- from DictEng -lin astrodynamics_N = mkN "astrodynamics" ; -lin astrogator_N = mkN "astrogator" ; -lin astroglia_N = mkN "astroglia" ; -lin astrolabe_N = mkN "astrolabe" "astrolabes"; -- from DictEng -lin astrolatry_N = mkN "astrolatry" ; -lin astrologer_N = mkN "astrologer" "astrologers"; -- from DictEng -lin astrological_A = compoundA (mkA "astrological"); -- from DictEng -lin astrology_N = mkN "astrology" ; -- from DictEng -lin astrometry_N = mkN "astrometry" ; -lin astronaut_N = mkN "astronaut" "astronauts"; -- from DictEng -lin astronautic_A = mkA "astronautic" ; -lin astronautics_N = mkN "astronautics" "astronautics"; -- from DictEng -lin astronomer_N = mkN "astronomer" "astronomers"; -- from DictEng -lin astronomic_A = mkA "astronomic" ; -lin astronomical_A = compoundA (mkA "astronomical"); -- from DictEng -lin astronomically_Adv = mkAdv "astronomically" ; -lin astronomy_N = mkN "astronomy" ; -- from DictEng -lin astrophysical_A = mkA "astrophysical" ; -lin astrophysicist_N = mkN "astrophysicist" ; -lin astrophysics_N = mkN "astrophysics" "astrophysics"; -- from DictEng -lin astute_A = compoundA (mkA "astute"); -- from DictEng -lin astutely_Adv = mkAdv "astutely" ; -lin astuteness_N = mkN "astuteness" ; -- from DictEng -lin astylar_A = mkA "astylar" ; -lin asunder_A = mkA "asunder" ; -lin asunder_Adv = mkAdv "asunder"; -- from DictEng -lin asylum_N = mkN "asylum" "asylums"; -- from DictEng -lin asymmetric_A = compoundA (mkA "asymmetric"); -- from DictEng -lin asymmetrical_A = compoundA (mkA "asymmetrical"); -- from DictEng -lin asymmetrically_Adv = mkAdv "asymmetrically" ; -lin asymmetry_N = mkN "asymmetry" ; -- from DictEng -lin asymptomatic_A = mkA "asymptomatic" ; -lin asymptote_N = mkN "asymptote" "asymptotes"; -- from DictEng -lin asymptotic_A = compoundA (mkA "asymptotic"); -- from DictEng -lin asymptotically_Adv = mkAdv "asymptotically"; -- from DictEng -lin asynchronism_N = mkN "asynchronism" ; -lin asynchronous_A = mkA "asynchronous" ; -lin asynclitism_N = mkN "asynclitism" ; -lin asyndetic_A = mkA "asyndetic" ; -lin asyndeton_N = mkN "asyndeton" ; -lin asynergic_A = mkA "asynergic" ; -lin asynergy_N = mkN "asynergy" ; -lin asystole_N = mkN "asystole" ; -lin at_N = mkN "at" ; -lin at_Prep = mkPrep "at"; -- from DictEng -lin at_a_loss_A = compoundA (mkA "at a loss") ; -lin at_a_loss_Adv = mkAdv "at a loss" ; -lin at_a_time_Adv = mkAdv "at a time" ; -lin at_all_Adv = mkAdv "at all" ; -lin at_all_costs_Adv = mkAdv "at all costs" ; -lin at_arm's_length_Adv = mkAdv "at arm's length" ; -lin at_bay_A = compoundA (mkA "at bay") ; -lin at_best_Adv = mkAdv "at best" ; -lin at_fault_A = compoundA (mkA "at fault") ; -lin at_first_blush_Adv = mkAdv "at first blush" ; -lin at_first_sight_Adv = mkAdv "at first sight" ; -lin at_hand_A = compoundA (mkA "at hand") ; -lin at_heart_Adv = mkAdv "at heart" ; -lin at_home_Adv = mkAdv "at home" ; -lin at_home_N = mkN "at - home" "at - homes"; -- from DictEng -lin at_large_A = compoundA (mkA "at large") ; -lin at_large_Adv = mkAdv "at large" ; -lin at_least_Adv = mkAdv "at least" ; -lin at_leisure_Adv = mkAdv "at leisure" ; -lin at_loggerheads_A = compoundA (mkA "at loggerheads") ; -lin at_most_Adv = mkAdv "at most" ; -lin at_odds_A = compoundA (mkA "at odds") ; -lin at_rest_A = compoundA (mkA "at rest") ; -lin at_stake_Adv = mkAdv "at stake" ; -lin at_the_ready_A = compoundA (mkA "at the ready") ; -lin at_variance_A = compoundA (mkA "at variance") ; -lin at_will_Adv = mkAdv "at will" ; -lin at_work_A = compoundA (mkA "at work") ; -lin at_worst_Adv = mkAdv "at worst" ; -lin atabrine_N = mkN "atabrine" ; -- from DictEng -lin ataractic_A = mkA "ataractic" ; -lin ataraxia_N = mkN "ataraxia" ; -lin atavism_N = mkN "atavism" "atavisms"; -- from DictEng -lin atavist_N = mkN "atavist" ; -lin atavistic_A = compoundA (mkA "atavistic"); -- from DictEng -lin ataxia_N = mkN "ataxia" ; -lin ataxic_A = mkA "ataxic" ; -lin atelectasis_N = mkN "atelectasis" ; -lin ateleiosis_N = mkN "ateleiosis" ; -lin ateleiotic_A = mkA "ateleiotic" ; -lin atelier_N = mkN "atelier" "ateliers"; -- from DictEng -lin atenolol_N = mkN "atenolol" ; -lin athanor_N = mkN "athanor" ; -lin atheism_N = mkN "atheism" ; -- from DictEng -lin atheist_A = mkA "atheist" ; -lin atheist_N = mkN "atheist" "atheists"; -- from DictEng -lin atheistic_A = compoundA (mkA "atheistic"); -- from DictEng -lin athenaeum_N = mkN "athenaeum" ; -lin athenian_A = compoundA (mkA "athenian"); -- from DictEng -lin athenian_N = mkN "athenian" "athenians"; -- from DictEng -lin atherogenesis_N = mkN "atherogenesis" ; -lin atheroma_N = mkN "atheroma" ; -lin atheromatous_A = mkA "atheromatous" ; -lin atherosclerosis_N = mkN "atherosclerosis" ; -lin atherosclerotic_A = mkA "atherosclerotic" ; -lin athetosis_N = mkN "athetosis" ; -lin athirst_A = compoundA (mkA "athirst"); -- from DictEng -lin athlete_N = mkN "athlete" "athletes"; -- from DictEng -lin athletic_A = compoundA (mkA "athletic"); -- from DictEng -lin athleticism_N = mkN "athleticism" ; -lin athletics_N = mkN "athletics" "athletics"; -- from DictEng -lin athwart_Adv = mkAdv "athwart"; -- from DictEng -lin atilt_A = mkA "atilt" ; -lin atlas_N = mkN "atlas" "atlases"; -- from DictEng -lin atmometer_N = mkN "atmometer" ; -lin atmosphere_N = mkN "atmosphere" "atmospheres"; -- from DictEng -lin atmospheric_A = compoundA (mkA "atmospheric"); -- from DictEng -lin atmospherics_N = mkN "atmospherics" "atmospherics"; -- from DictEng -lin atole_N = mkN "atole" ; -lin atoll_N = mkN "atoll" "atolls"; -- from DictEng -lin atom_N = mkN "atom" "atoms"; -- from DictEng -lin atomic_A = compoundA (mkA "atomic"); -- from DictEng -lin atomism_N = mkN "atomism" ; -lin atomistic_A = mkA "atomistic" ; -lin atomization_N = mkN "atomization" ; -lin atomize_V2 = mkV2 (mkV "atomize" "atomizes" "atomized" "atomized" "atomizing"); -- from DictEng -lin atomizer_N = mkN "atomizer" "atomizers"; -- from DictEng -lin atonal_A = compoundA (mkA "atonal"); -- from DictEng -lin atonalistic_A = mkA "atonalistic" ; -lin atonality_N = mkN "atonality" ; -- from DictEng -lin atonally_Adv = mkAdv "atonally" ; -lin atone_V = mkV "atone" "atones" "atoned" "atoned" "atoning"; -- from DictEng -lin atonement_N = mkN "atonement" ; -- from DictEng -lin atonic_A = mkA "atonic" ; -lin atonicity_N = mkN "atonicity" ; -lin atop_Adv = mkAdv "atop"; -- from DictEng -lin atop_Prep = mkPrep "atop"; -- from DictEng -lin atopognosia_N = mkN "atopognosia" ; -lin atorvastatin_N = mkN "atorvastatin" ; -lin atrabilious_A = compoundA (mkA "atrabilious"); -- from DictEng -lin atrazine_N = mkN "atrazine" ; -lin atresia_N = mkN "atresia" ; -lin atrial_A = mkA "atrial" ; -lin atrioventricular_A = mkA "atrioventricular" ; -lin atrium_N = mkN "atrium" ; -lin atrocious_A = compoundA (mkA "atrocious"); -- from DictEng -lin atrocity_N = mkN "atrocity" "atrocities"; -- from DictEng -lin atrophic_A = mkA "atrophic" ; -lin atrophied_A = mkA "atrophied" ; -lin atrophy_N = mkN "atrophy" ; -- from DictEng -lin atrophy_V = mkV "atrophy" "atrophies" "atrophied" "atrophied" "atrophying"; -- from DictEng -lin atrophy_V2 = mkV2 (mkV "atrophy" "atrophies" "atrophied" "atrophied" "atrophying"); -- from DictEng -lin atropine_N = mkN "atropine" ; -lin attach_V = mkV "attach" "attaches" "attached" "attached" "attaching"; -- from DictEng -lin attach_V2 = mkV2 (mkV "attach" "attaches" "attached" "attached" "attaching"); -- from DictEng -lin attachable_A = mkA "attachable" ; -lin attache_N = mkN "attaché" "attachés"; -- from DictEng -lin attached_A = mkA "attached" ; -lin attachment_N = mkN "attachment" "attachments"; -- from DictEng -lin attack_N = mkN "attack" "attacks"; -- from DictEng -lin attack_V2 = mkV2 (mkV "attack" "attacks" "attacked" "attacked" "attacking"); -- from DictEng -lin attacker_N = mkN "attacker" "attackers"; -- from DictEng -lin attain_V = mkV "attain" "attains" "attained" "attained" "attaining"; -- from DictEng -lin attain_V2 = mkV2 (mkV "attain" "attains" "attained" "attained" "attaining"); -- from DictEng -lin attainable_A = compoundA (mkA "attainable"); -- from DictEng -lin attainder_N = mkN "attainder" "attainders"; -- from DictEng -lin attained_A = mkA "attained" ; -lin attainment_N = mkN "attainment" "attainments"; -- from DictEng -lin attar_N = mkN "attar" ; -- from DictEng -lin attempt_N = mkN "attempt" "attempts"; -- from DictEng -lin attempt_V2 = mkV2 (mkV "attempt" "attempts" "attempted" "attempted" "attempting"); -- from DictEng -lin attempt_VV = mkVV (mkV "attempt"); -- from DictEng -lin attempted_A = mkA "attempted" ; -lin attend_V = mkV "attend" "attends" "attended" "attended" "attending"; -- from DictEng -lin attend_V2 = mkV2 (mkV "attend" "attends" "attended" "attended" "attending"); -- from DictEng -lin attendance_N = mkN "attendance" "attendances"; -- from DictEng -lin attendant_A = compoundA (mkA "attendant"); -- from DictEng -lin attendant_N = mkN "attendant" "attendants"; -- from DictEng -lin attended_A = mkA "attended" ; -lin attention_N = mkN "attention" "attentions"; -- from DictEng -lin attention_getting_A = compoundA (mkA "attention getting") ; -lin attentional_A = mkA "attentional" ; -lin attentive_A = compoundA (mkA "attentive"); -- from DictEng -lin attentively_Adv = mkAdv "attentively" ; -lin attentiveness_N = mkN "attentiveness" ; -- from DictEng -lin attenuate_A = mkA "attenuate" ; -lin attenuate_V2 = mkV2 (mkV "attenuate" "attenuates" "attenuated" "attenuated" "attenuating"); -- from DictEng -lin attenuated_A = mkA "attenuated" ; -lin attenuation_N = mkN "attenuation" ; -- from DictEng -lin attenuator_N = mkN "attenuator" ; -lin attest_V = mkV "attest" "attests" "attested" "attested" "attesting"; -- from DictEng -lin attest_V2 = mkV2 (mkV "attest" "attests" "attested" "attested" "attesting"); -- from DictEng -lin attest_VS = mkVS (mkV "attest" "attests" "attested" "attested" "attesting"); -- from DictEng -lin attestation_N = mkN "attestation" ; -lin attested_A = mkA "attested" ; -lin attester_N = mkN "attester" ; -lin attic_A = compoundA (mkA "attic"); -- from DictEng -lin attic_N = mkN "attic" "attics"; -- from DictEng -lin attire_N = mkN "attire" ; -- from DictEng -lin attire_V2 = mkV2 (mkV "attire" "attires" "attired" "attired" "attiring"); -- from DictEng -lin attitude_N = mkN "attitude" "attitudes"; -- from DictEng -lin attitudinal_A = mkA "attitudinal" ; -lin attitudinize_V = mkV "attitudinize" "attitudinizes" "attitudinized" "attitudinized" "attitudinizing"; -- from DictEng -lin attorney_N = mkN "attorney" "attorneys"; -- from DictEng -lin attorneyship_N = mkN "attorneyship" ; -lin attosecond_N = mkN "attosecond" ; -lin attract_V2 = mkV2 (mkV "attract" "attracts" "attracted" "attracted" "attracting"); -- from DictEng -lin attractable_A = mkA "attractable" ; -lin attraction_N = mkN "attraction" "attractions"; -- from DictEng -lin attractive_A = compoundA (mkA "attractive"); -- from DictEng -lin attractiveness_N = mkN "attractiveness" ; -lin attractor_N = mkN "attractor" ; -lin attributable_A = compoundA (mkA "attributable"); -- from DictEng -lin attribute_N = mkN "attribute" "attributes"; -- from DictEng -lin attribute_V2 = mkV2 (mkV "attribute" "attributes" "attributed" "attributed" "attributing"); -- from DictEng -lin attribution_N = mkN "attribution" "attributions"; -- from DictEng -lin attributive_A = compoundA (mkA "attributive"); -- from DictEng -lin attributive_genitive_A = compoundA (mkA "attributive genitive") ; -lin attributively_Adv = mkAdv "attributively" ; -lin attrited_A = mkA "attrited" ; -lin attrition_N = mkN "attrition" ; -- from DictEng -lin attritional_A = mkA "attritional" ; -lin attune_V2 = mkV2 (mkV "attune" "attunes" "attuned" "attuned" "attuning"); -- from DictEng -lin atypical_A = compoundA (mkA "atypical"); -- from DictEng -lin atypicality_N = mkN "atypicality" ; -lin atypically_Adv = mkAdv "atypically" ; -lin au_fait_A = compoundA (mkA "au fait"); -- from DictEng -lin au_fond_Adv = mkAdv "au fond"; -- from DictEng -lin au_gratin_A = compoundA (mkA "au gratin") ; -lin au_jus_A = compoundA (mkA "au jus") ; -lin au_pair_N = mkN "au pair" "au pairs"; -- from DictEng -lin aubergine_N = mkN "aubergine" "aubergines"; -- from DictEng -lin aubrietia_N = mkN "aubrietia" "aubrietias"; -- from DictEng -lin auburn_A = compoundA (mkA "auburn"); -- from DictEng -lin auction_N = mkN "auction" "auctions"; -- from DictEng -lin auction_V2 = mkV2 (mkV "auction" "auctions" "auctioned" "auctioned" "auctioning"); -- from DictEng -lin auctioneer_N = mkN "auctioneer" "auctioneers"; -- from DictEng -lin audacious_A = compoundA (mkA "audacious"); -- from DictEng -lin audaciously_Adv = mkAdv "audaciously" ; -lin audacity_N = mkN "audacity" ; -- from DictEng -lin audibility_N = mkN "audibility" ; -- from DictEng -lin audible_A = compoundA (mkA "audible"); -- from DictEng -lin audible_N = mkN "audible" ; -lin audibly_Adv = mkAdv "audibly" ; -lin audience_N = mkN "audience" "audiences"; -- from DictEng -lin audile_N = mkN "audile" ; -lin audio_N = mkN "audio" ; -lin audio_lingual_A = compoundA (mkA "audio - lingual"); -- from DictEng -lin audio_cd_PN = mkPN "audio CD" ; -lin audio_lingual_A = compoundA (mkA "audio - lingual"); -- from DictEng -lin audiocassette_N = mkN "audiocassette" ; -lin audiogram_N = mkN "audiogram" ; -lin audiology_N = mkN "audiology" ; -lin audiometer_N = mkN "audiometer" ; -lin audiometric_A = mkA "audiometric" ; -lin audiometry_N = mkN "audiometry" ; -lin audiotape_N = mkN "audiotape" ; -lin audiovisual_A = mkA "audiovisual" ; -lin audiovisual_N = mkN "audiovisual" ; -lin audit_N = mkN "audit" "audits"; -- from DictEng -lin audit_V2 = mkV2 (mkV "audit" "audits" "audited" "audited" "auditing"); -- from DictEng -lin audition_N = mkN "audition" "auditions"; -- from DictEng -lin audition_V = mkV "audition"; -- from DictEng -lin audition_V2 = mkV2 (mkV "audition" "auditions" "auditioned" "auditioned" "auditioning"); -- from DictEng -lin auditor_N = mkN "auditor" "auditors"; -- from DictEng -lin auditorium_N = mkN "auditorium" "auditoriums"; -- from DictEng -lin auditory_A = compoundA (mkA "auditory"); -- from DictEng -lin augend_N = mkN "augend" ; -lin auger_N = mkN "auger" "augers"; -- from DictEng -lin aught_N = mkN "aught" ; -- from DictEng -lin augite_N = mkN "augite" ; -lin augitic_A = mkA "augitic" ; -lin augment_V = mkV "augment" "augments" "augmented" "augmented" "augmenting"; -- from DictEng -lin augment_V2 = mkV2 (mkV "augment" "augments" "augmented" "augmented" "augmenting"); -- from DictEng -lin augmentation_N = mkN "augmentation" "augmentations"; -- from DictEng -lin augmentative_A = mkA "augmentative" ; -lin augmented_A = mkA "augmented" ; -lin augur_N = mkN "augur" "augurs"; -- from DictEng -lin augur_V = mkV "augur" "augurs" "augured" "augured" "auguring"; -- from DictEng -lin augur_V2 = mkV2 (mkV "augur" "augurs" "augured" "augured" "auguring"); -- from DictEng -lin augury_N = mkN "augury" "auguries"; -- from DictEng -lin august_A = compoundA (mkA "august"); -- from DictEng -lin august_N = mkN "august" "augusts"; -- from DictEng -lin augustan_A = compoundA (mkA "augustan"); -- from DictEng -lin auk_N = mkN "auk" "auks"; -- from DictEng -lin auklet_N = mkN "auklet" ; -lin auld_A = mkA "auld" ; -lin auld_lang_syne_N = mkN "auld lang syne" "IRREG"; -- from DictEng -lin aunt_N = mkN "aunt" "aunts"; -- from DictEng -lin auntie_N = mkN "auntie" "aunties"; -- from DictEng -lin aunty_N = mkN "aunty" "aunties"; -- from DictEng -lin aura_N = mkN "aura" "auras"; -- from DictEng -lin aural_A = compoundA (mkA "aural"); -- from DictEng -lin aurally_Adv = mkAdv "aurally" ; -lin aureate_A = mkA "aureate" ; -lin aureole_N = mkN "aureole" "aureoles"; -- from DictEng -lin auricle_N = mkN "auricle" "auricles"; -- from DictEng -lin auricula_N = mkN "auricula" ; -lin auricular_A = compoundA (mkA "auricular"); -- from DictEng -lin auriculare_N = mkN "auriculare" ; -lin auriculate_A = mkA "auriculate" ; -lin auriferous_A = compoundA (mkA "auriferous"); -- from DictEng -lin auriform_A = mkA "auriform" ; -lin aurochs_N = mkN "aurochs" ; -lin aurora_N = mkN "aurora" "auroras"; -- from DictEng -lin auroral_A = mkA "auroral" ; -lin aurous_A = mkA "aurous" ; -lin auscultation_N = mkN "auscultation" ; -lin auscultatory_A = mkA "auscultatory" ; -lin auspice_N = mkN "auspice" ; -lin auspices_N = mkN "auspices" ; -lin auspicious_A = compoundA (mkA "auspicious"); -- from DictEng -lin auspiciously_Adv = mkAdv "auspiciously" ; -lin auspiciousness_N = mkN "auspiciousness" ; -lin aussie_N = mkN "aussie" "aussies"; -- from DictEng -lin austenite_N = mkN "austenite" ; -lin austenitic_A = mkA "austenitic" ; -lin austere_A = compoundA (mkA "austere"); -- from DictEng -lin austerely_Adv = mkAdv "austerely" ; -lin austereness_N = mkN "austereness" ; -lin austerity_N = mkN "austerity" "austerities"; -- from DictEng -lin austral_A = mkA "austral" ; -lin austral_N = mkN "austral" ; -lin australian_A = compoundA (mkA "australian"); -- from DictEng -lin australian_N = mkN "australian" "australians"; -- from DictEng -lin australopithecine_A = mkA "australopithecine" ; -lin australopithecine_N = mkN "australopithecine" ; -lin austrian_A = compoundA (mkA "austrian"); -- from DictEng -lin austrian_N = mkN "austrian" "austrians"; -- from DictEng -lin autacoid_N = mkN "autacoid" ; -lin autacoidal_A = mkA "autacoidal" ; -lin autarchic_A = mkA "autarchic" ; -lin autarchy_N = mkN "autarchy" "autarchies"; -- from DictEng -lin autarkic_A = mkA "autarkic" ; -lin autarky_N = mkN "autarky" ; -- from DictEng -lin auteur_N = mkN "auteur" ; -lin authentic_A = compoundA (mkA "authentic"); -- from DictEng -lin authentically_Adv = mkAdv "authentically"; -- from DictEng -lin authenticate_V2 = mkV2 (mkV "authenticate" "authenticates" "authenticated" "authenticated" "authenticating"); -- from DictEng -lin authentication_N = mkN "authentication" ; -- from DictEng -lin authenticity_N = mkN "authenticity" ; -- from DictEng -lin author_N = mkN "author" "authors"; -- from DictEng -lin authore_V2 = mkV2 (mkV "authore"); -- from DictEng -lin authoress_N = mkN "authoress" "authoresses"; -- from DictEng -lin authorial_A = mkA "authorial" ; -lin authoritarian_A = compoundA (mkA "authoritarian"); -- from DictEng -lin authoritarian_N = mkN "authoritarian" "authoritarians"; -- from DictEng -lin authoritarianism_N = mkN "authoritarianism" ; -- from DictEng -lin authoritative_A = compoundA (mkA "authoritative"); -- from DictEng -lin authoritatively_Adv = mkAdv "authoritatively" ; -lin authority_N = mkN "authority" "authorities"; -- from DictEng -lin authorization_N = mkN "authorization" ; -- from DictEng -lin authorize_V2 = mkV2 (mkV "authorize" "authorizes" "authorized" "authorized" "authorizing"); -- from DictEng -lin authorize_V2V = mkV2V (mkV "authorize") noPrep to_Prep ; -- from DictEng -lin authorized_A = mkA "authorized" ; -lin authorizer_N = mkN "authorizer" ; -lin authorship_N = mkN "authorship" ; -- from DictEng -lin autism_N = mkN "autism" ; -- from DictEng -lin autistic_A = compoundA (mkA "autistic"); -- from DictEng -lin auto_N = mkN "auto" "autos"; -- from DictEng -lin auto_da_fe_N = mkN "auto - da - fé" (variants {"autos - de - fé"; "auto - de - fés"}); -- from DictEng -lin auto_changer_N = mkN "auto - changer" "auto - changers"; -- from DictEng -lin auto_da_fe_N = mkN "auto - da - fé" (variants {"autos - de - fé"; "auto - de - fés"}); -- from DictEng -lin autoantibody_N = mkN "autoantibody" ; -lin autobahn_N = mkN "autobahn" "autobahns"; -- from DictEng -lin autobiographer_N = mkN "autobiographer" ; -lin autobiographic_A = compoundA (mkA "autobiographic"); -- from DictEng -lin autobiographical_A = compoundA (mkA "autobiographical"); -- from DictEng -lin autobiography_N = mkN "autobiography" "autobiographies"; -- from DictEng -lin autocatalysis_N = mkN "autocatalysis" ; -lin autocatalytic_A = mkA "autocatalytic" ; -lin autochthon_N = mkN "autochthon" ; -lin autochthonal_A = mkA "autochthonal" ; -lin autochthonous_A = mkA "autochthonous" ; -lin autoclave_N = mkN "autoclave" ; -lin autocracy_N = mkN "autocracy" "autocracies"; -- from DictEng -lin autocrat_N = mkN "autocrat" "autocrats"; -- from DictEng -lin autocratic_A = compoundA (mkA "autocratic"); -- from DictEng -lin autocratically_Adv = mkAdv "autocratically"; -- from DictEng -lin autodidact_N = mkN "autodidact" ; -lin autodidactic_A = mkA "autodidactic" ; -lin autoecious_A = mkA "autoecious" ; -lin autoerotic_A = mkA "autoerotic" ; -lin autoeroticism_N = mkN "autoeroticism" ; -lin autofluorescence_N = mkN "autofluorescence" ; -lin autofluorescent_A = mkA "autofluorescent" ; -lin autofocus_N = mkN "autofocus" ; -lin autogamous_A = mkA "autogamous" ; -lin autogamy_N = mkN "autogamy" ; -lin autogenetic_A = mkA "autogenetic" ; -lin autogenous_A = mkA "autogenous" ; -lin autogiro_N = mkN "autogiro" "autogiros"; -- from DictEng -lin autograft_N = mkN "autograft" ; -lin autograph_N = mkN "autograph" "autographs"; -- from DictEng -lin autograph_V2 = mkV2 (mkV "autograph" "autographs" "autographed" "autographed" "autographing"); -- from DictEng -lin autographed_A = mkA "autographed" ; -lin autographic_A = mkA "autographic" ; -lin autogyro_N = mkN "autogyro" "autogyros"; -- from DictEng -lin autoicous_A = mkA "autoicous" ; -lin autoimmune_A = mkA "autoimmune" ; -lin autoimmunity_N = mkN "autoimmunity" ; -lin autoinjector_N = mkN "autoinjector" ; -lin autoloader_N = mkN "autoloader" ; -lin autoloading_A = mkA "autoloading" ; -lin autologous_A = mkA "autologous" ; -lin autolysis_N = mkN "autolysis" ; -lin autolytic_A = mkA "autolytic" ; -lin automat_N = mkN "automat" "automats"; -- from DictEng -lin automate_V2 = mkV2 (mkV "automate" "automates" "automated" "automated" "automating"); -- from DictEng -lin automated_A = mkA "automated" ; -lin automatic_A = compoundA (mkA "automatic"); -- from DictEng -lin automatic_N = mkN "automatic" "automatics"; -- from DictEng -lin automatically_Adv = mkAdv "automatically"; -- from DictEng -lin automation_N = mkN "automation" ; -- from DictEng -lin automatism_N = mkN "automatism" ; -lin automaton_N = mkN "automaton" "automatons"; -- from DictEng -lin automobile_N = mkN "automobile" "automobiles"; -- from DictEng -lin automotive_A = mkA "automotive" ; -lin automysophobia_N = mkN "automysophobia" ; -lin autonomic_A = mkA "autonomic" ; -lin autonomous_A = compoundA (mkA "autonomous"); -- from DictEng -lin autonomy_N = mkN "autonomy" "autonomies"; -- from DictEng -lin autophyte_N = mkN "autophyte" ; -lin autopilot_N = mkN "autopilot" ; -lin autoplastic_A = mkA "autoplastic" ; -lin autoplasty_N = mkN "autoplasty" ; -lin autopsy_N = mkN "autopsy" "autopsies"; -- from DictEng -lin autoradiograph_N = mkN "autoradiograph" ; -lin autoradiographic_A = mkA "autoradiographic" ; -lin autoradiography_N = mkN "autoradiography" ; -lin autoregulation_N = mkN "autoregulation" ; -lin autosemantic_A = mkA "autosemantic" ; -lin autosexing_N = mkN "autosexing" ; -lin autosomal_A = mkA "autosomal" ; -lin autosome_N = mkN "autosome" ; -lin autostrada_N = mkN "autostrada" "autostradas"; -- from DictEng -lin autosuggestion_N = mkN "autosuggestion" ; -lin autotelic_A = mkA "autotelic" ; -lin autotelism_N = mkN "autotelism" ; -lin autotomic_A = mkA "autotomic" ; -lin autotomy_N = mkN "autotomy" ; -lin autotrophic_A = mkA "autotrophic" ; -lin autotype_N = mkN "autotype" ; -lin autotypic_A = mkA "autotypic" ; -lin autumn_N = mkN "autumn" "autumns"; -- from DictEng -lin autumn_flowering_A = compoundA (mkA "autumn flowering") ; -lin autumnal_A = compoundA (mkA "autumnal"); -- from DictEng -lin auxesis_N = mkN "auxesis" ; -lin auxetic_A = mkA "auxetic" ; -lin auxiliary_A = compoundA (mkA "auxiliary"); -- from DictEng -lin auxiliary_N = mkN "auxiliary" "auxiliaries"; -- from DictEng -lin auxin_N = mkN "auxin" ; -lin auxinic_A = mkA "auxinic" ; -lin avadavat_N = mkN "avadavat" ; -lin avail_N = mkN "avail" ; -- from DictEng -lin avail_V = mkV "avail" "avails" "availed" "availed" "availing"; -- from DictEng -lin avail_V2 = mkV2 (mkV "avail" "avails" "availed" "availed" "availing"); -- from DictEng -lin availability_N = mkN "availability" ; -- from DictEng -lin available_A = compoundA (mkA "available"); -- from DictEng -lin avalanche_N = mkN "avalanche" "avalanches"; -- from DictEng -lin avant_garde_A = compoundA (mkA "avant garde") ; -lin avant_garde_N = mkN "avant - garde" "avant - gardes"; -- from DictEng -lin avant_garde_N = mkN "avant - garde" "avant - gardes"; -- from DictEng -lin avaram_N = mkN "avaram" ; -lin avarice_N = mkN "avarice" ; -- from DictEng -lin avaricious_A = compoundA (mkA "avaricious"); -- from DictEng -lin avariciously_Adv = mkAdv "avariciously" ; -lin avascular_A = mkA "avascular" ; -lin avatar_N = mkN "avatar" "avatars"; -- from DictEng -lin avellan_A = mkA "avellan" ; -lin avenge_V2 = mkV2 (mkV "avenge" "avenges" "avenged" "avenged" "avenging"); -- from DictEng -lin avenged_A = mkA "avenged" ; -lin avenger_N = mkN "avenger" "avengers"; -- from DictEng -lin avens_N = mkN "avens" ; -lin avenue_N = mkN "avenue" "avenues"; -- from DictEng -lin aver_V2 = mkV2 (mkV "aver" "avers" "averred" "averred" "averring"); -- from DictEng -lin average_A = compoundA (mkA "average"); -- from DictEng -lin average_N = mkN "average" "averages"; -- from DictEng -lin average_V = mkV "average" "averages" "averaged" "averaged" "averaging"; -- from DictEng -lin average_V2 = mkV2 (mkV "average" "averages" "averaged" "averaged" "averaging"); -- from DictEng -lin averageness_N = mkN "averageness" ; -lin averr_VS = mkVS (mkV "averr"); -- from DictEng -lin averse_A = compoundA (mkA "averse"); -- from DictEng -lin aversion_N = mkN "aversion" "aversions"; -- from DictEng -lin aversive_A = mkA "aversive" ; -lin avert_V2 = mkV2 (mkV "avert" "averts" "averted" "averted" "averting"); -- from DictEng -lin averting_N = mkN "averting" ; -lin avian_A = mkA "avian" ; -lin aviary_N = mkN "aviary" "aviaries"; -- from DictEng -lin aviation_N = mkN "aviation" ; -- from DictEng -lin aviator_N = mkN "aviator" "aviators"; -- from DictEng -lin aviatrix_N = mkN "aviatrix" ; -lin avid_A = compoundA (mkA "avid"); -- from DictEng -lin avidity_N = mkN "avidity" ; -- from DictEng -lin avidly_Adv = mkAdv "avidly" ; -lin avifauna_N = mkN "avifauna" ; -lin avifaunal_A = mkA "avifaunal" ; -lin avionic_A = mkA "avionic" ; -lin avionics_N = mkN "avionics" ; -lin avirulent_A = mkA "avirulent" ; -lin avitaminosis_N = mkN "avitaminosis" ; -lin avitaminotic_A = mkA "avitaminotic" ; -lin avo_N = mkN "avo" ; -lin avocado_A = mkA "avocado" ; -lin avocado_N = mkN "avocado" "avocados"; -- from DictEng -lin avocation_N = mkN "avocation" "avocations"; -- from DictEng -lin avocational_A = mkA "avocational" ; -lin avocet_N = mkN "avocet" ; -lin avoid_V2 = mkV2 (mkV "avoid" "avoids" "avoided" "avoided" "avoiding"); -- from DictEng -lin avoid_VV = ingVV (mkV "avoid" "avoids" "avoided" "avoided" "avoiding"); -- from DictEng -lin avoidable_A = compoundA (mkA "avoidable"); -- from DictEng -lin avoidance_N = mkN "avoidance" ; -- from DictEng -lin avoirdupois_N = mkN "avoirdupois" ; -- from DictEng -lin avouch_V = mkV "avouch" "avouches" "avouched" "avouched" "avouching"; -- from DictEng -lin avouch_V2 = mkV2 (mkV "avouch" "avouches" "avouched" "avouched" "avouching"); -- from DictEng -lin avow_V2 = mkV2 (mkV "avow" "avows" "avowed" "avowed" "avowing"); -- from DictEng -lin avowal_N = mkN "avowal" "avowals"; -- from DictEng -lin avowed_A = mkA "avowed" ; -lin avowedly_Adv = mkAdv "avowedly"; -- from DictEng -lin avower_N = mkN "avower" ; -lin avulsion_N = mkN "avulsion" ; -lin avuncular_A = compoundA (mkA "avuncular"); -- from DictEng -lin await_V2 = mkV2 (mkV "await" "awaits" "awaited" "awaited" "awaiting"); -- from DictEng -lin awake_A = compoundA (mkA "awake"); -- from DictEng -lin awake_V = IrregEng.awake_V; -- from DictEng -lin awaken_V = mkV "awaken" ; -lin awaken_V2 = mkV2 (mkV "awaken" "awakens" "awakened" "awakened" "awakening"); -- from DictEng -lin awakened_A = mkA "awakened" ; -lin awakening_N = mkN "awakening" "awakenings"; -- from DictEng -lin award_N = mkN "award" "awards"; -- from DictEng -lin award_V2 = mkV2 (mkV "award" "awards" "awarded" "awarded" "awarding"); -- from DictEng -lin award_winning_A = compoundA (mkA "award winning") ; -lin aware_A = compoundA (mkA "aware"); -- from DictEng -lin awareness_N = mkN "awareness" ; -- from DictEng -lin awash_A = compoundA (mkA "awash"); -- from DictEng -lin away_A = compoundA (mkA "away"); -- from DictEng -lin away_Adv = mkAdv "away"; -- from DictEng -lin awayness_N = mkN "awayness" ; -lin awe_N = mkN "awe" ; -- from DictEng -lin awe_V2 = mkV2 (mkV "awe" "awes" "awed" "awed" "awing"); -- from DictEng -lin awe_inspiring_A = compoundA (mkA "awe - inspiring"); -- from DictEng -lin awe_stricken_A = compoundA (mkA "awe - stricken"); -- from DictEng -lin awe_struck_A = compoundA (mkA "awe - struck"); -- from DictEng -lin aweary_A = mkA "aweary" ; -lin awed_A = mkA "awed" ; -lin aweigh_A = mkA "aweigh" ; -lin aweigh_Adv = mkAdv "aweigh"; -- from DictEng -lin aweless_A = mkA "aweless" ; -lin awesome_A = compoundA (mkA "awesome"); -- from DictEng -lin awful_A = compoundA (mkA "awful"); -- from DictEng -lin awfulness_N = mkN "awfulness" ; -lin awheel_A = mkA "awheel" ; -lin awhile_Adv = mkAdv "awhile"; -- from DictEng -lin awkward_A = compoundA (mkA "awkward"); -- from DictEng -lin awkwardly_Adv = mkAdv "awkwardly" ; -lin awkwardness_N = mkN "awkwardness" ; -- from DictEng -lin awl_N = mkN "awl" "awls"; -- from DictEng -lin awl_shaped_A = compoundA (mkA "awl shaped") ; -lin awlwort_N = mkN "awlwort" ; -lin awn_N = mkN "awn" ; -lin awned_A = mkA "awned" ; -lin awning_N = mkN "awning" "awnings"; -- from DictEng -lin awninged_A = mkA "awninged" ; -lin awnless_A = mkA "awnless" ; -lin awry_A = compoundA (mkA "awry"); -- from DictEng -lin awry_Adv = mkAdv "awry"; -- from DictEng -lin ax_N = mkN "ax" "axes"; -- from DictEng -lin ax_V2 = mkV2 (mkV "ax" "axes" "axed" "axed" "axing"); -- from DictEng -lin axe_N = mkN "axe" "axes"; -- from DictEng -lin axe_V2 = mkV2 (mkV "axe" "axes" "axed" "axed" "axing"); -- from DictEng -lin axenic_A = mkA "axenic" ; -lin axial_A = mkA "axial" ; -lin axially_Adv = mkAdv "axially" ; -lin axil_N = mkN "axil" ; -lin axile_A = mkA "axile" ; -lin axillary_A = mkA "axillary" ; -lin axiological_A = mkA "axiological" ; -lin axiology_N = mkN "axiology" ; -lin axiom_N = mkN "axiom" "axioms"; -- from DictEng -lin axiomatic_A = compoundA (mkA "axiomatic"); -- from DictEng -lin axiomatically_Adv = mkAdv "axiomatically"; -- from DictEng -lin axis_N = mkN "axis" "axes" {- FIXME: guessed plural form -}; -- from DictEng -lin axle_N = mkN "axle" "axles"; -- from DictEng -lin axletree_N = mkN "axletree" ; -lin axolemma_N = mkN "axolemma" ; -lin axolotl_N = mkN "axolotl" ; -lin axon_N = mkN "axon" ; -lin axonal_A = mkA "axonal" ; -lin axseed_N = mkN "axseed" ; -lin ay_Adv = mkAdv "ay"; -- from DictEng -lin ayah_N = mkN "ayah" "ayahs"; -- from DictEng -lin ayapana_N = mkN "ayapana" ; -lin ayatollah_N = mkN "ayatollah" ; -lin aye_Adv = mkAdv "aye"; -- from DictEng -lin aye_aye_N = mkN "aye aye" ; -lin ayin_N = mkN "ayin" ; -lin azadirachtin_N = mkN "azadirachtin" ; -lin azalea_N = mkN "azalea" "azaleas"; -- from DictEng -lin azathioprine_N = mkN "azathioprine" ; -lin azide_N = mkN "azide" ; -lin azido_A = mkA "azido" ; -lin azimuth_N = mkN "azimuth" "azimuths"; -- from DictEng -lin azimuthal_A = mkA "azimuthal" ; -lin azithromycin_N = mkN "azithromycin" ; -lin azo_A = mkA "azo" ; -lin azoic_A = mkA "azoic" ; -lin azonal_A = mkA "azonal" ; -lin azonic_A = mkA "azonic" ; -lin azote_N = mkN "azote" ; -lin azotemic_A = mkA "azotemic" ; -lin azotic_A = mkA "azotic" ; -lin azoturia_N = mkN "azoturia" ; -lin aztreonam_N = mkN "aztreonam" ; -lin azure_A = compoundA (mkA "azure"); -- from DictEng -lin azure_N = mkN "azure" "azures"; -- from DictEng -lin azurite_N = mkN "azurite" ; -lin azygous_A = mkA "azygous" ; -lin azymia_N = mkN "azymia" ; -lin b_meson_N = mkN "b meson" ; -lin b_ed_N = mkN "b ed" ; -- from DictEng -lin ba_N = mkN "ba" ; -- from DictEng -lin baa_N = mkN "baa" "baas"; -- from DictEng -lin baa_V = mkV "baa" "baas" "baaed" "baaed" "baaing"; -- from DictEng -lin baa_lamb_N = mkN "baa - lamb" "baa - lambs"; -- from DictEng -lin baa_lamb_N = mkN "baa - lamb" "baa - lambs"; -- from DictEng -lin baas_N = mkN "baas" ; -lin baba_N = mkN "baba" ; -lin babassu_N = mkN "babassu" ; -lin babbitting_N = mkN "babbitting" ; -lin babble_N = mkN "babble" ; -- from DictEng -lin babble_V = mkV "babble" "babbles" "babbled" "babbled" "babbling"; -- from DictEng -lin babble_V2 = mkV2 (mkV "babble" "babbles" "babbled" "babbled" "babbling"); -- from DictEng -lin babbler_N = mkN "babbler" "babblers"; -- from DictEng -lin babe_N = mkN "babe" "babes"; -- from DictEng -lin babel_N = mkN "babel" "babels"; -- from DictEng -lin babelike_A = mkA "babelike" ; -lin babirusa_N = mkN "babirusa" ; -lin babka_N = mkN "babka" ; -lin baboo_N = mkN "baboo" "baboos"; -- from DictEng -lin baboon_N = mkN "baboon" "baboons"; -- from DictEng -lin baboonish_A = mkA "baboonish" ; -lin babu_N = mkN "babu" "babus"; -- from DictEng -lin babushka_N = mkN "babushka" ; -lin baby_N = mkN "baby" "babies"; -- from DictEng -lin baby_V2 = mkV2 (mkV "baby" "babies" "babied" "babied" "babying"); -- from DictEng -lin baby_faced_A = compoundA (mkA "baby - faced"); -- from DictEng -lin baby_wise_Adv = mkAdv "baby wise" ; -lin baby_faced_A = compoundA (mkA "baby - faced"); -- from DictEng -lin baby_farmer_N = mkN "baby - farmer" "baby - farmers"; -- from DictEng -lin baby_minder_N = mkN "baby - minder" "baby - minders"; -- from DictEng -lin baby_talk_N = mkN "baby - talk"; -- from DictEng -lin babyhood_N = mkN "babyhood"; -- from DictEng -lin babyish_A = compoundA (mkA "babyish"); -- from DictEng -lin babyminder_N = mkN "babyminder" ; -lin babysit_V = mkV "baby" IrregEng.sit_V; -- from DictEng -lin babysitter_N = mkN "babysitter" "babysitters"; -- from DictEng -lin babysitting_N = mkN "babysitting" ; -- from DictEng -lin baccalaureate_N = mkN "baccalaureate" "baccalaureates"; -- from DictEng -lin baccarat_N = mkN "baccarat" ; -- from DictEng -lin baccate_A = mkA "baccate" ; -lin bacchanal_A = compoundA (mkA "bacchanal"); -- from DictEng -lin bacchanal_N = mkN "bacchanal" "bacchanals"; -- from DictEng -lin bacchanalian_A = compoundA (mkA "bacchanalian"); -- from DictEng -lin bacchant_N = mkN "bacchant" ; -lin bacchante_N = mkN "bacchante" ; -lin bacchantic_A = mkA "bacchantic" ; -lin baccivorous_A = mkA "baccivorous" ; -lin baccy_N = mkN "baccy" ; -- from DictEng -lin bachelor_N = mkN "bachelor" "bachelors"; -- from DictEng -lin bachelorhood_N = mkN "bachelorhood" ; -lin bacillar_A = mkA "bacillar" ; -lin bacillus_N = mkN "bacillus" "bacilli" {- FIXME: guessed plural form -}; -- from DictEng -lin bacitracin_N = mkN "bacitracin" ; -lin back_A = mkA "back" ; -lin back_Adv = mkAdv "back"; -- from DictEng -lin back_N = mkN "back" "backs"; -- from DictEng -lin back_V = mkV "back" "backs" "backed" "backed" "backing"; -- from DictEng -lin back_V2 = mkV2 (mkV "back" "backs" "backed" "backed" "backing"); -- from DictEng -lin back_channel_A = compoundA (mkA "back channel") ; -lin back_formation_N = mkN "back - formation" "back - formations"; -- from DictEng -lin back_geared_A = compoundA (mkA "back geared") ; -lin back_to_back_A = compoundA (mkA "back to back") ; -lin back_and_forth_Adv = mkAdv "back and forth" ; -lin back_breaking_A = compoundA (mkA "back - breaking"); -- from DictEng -lin back_down_N = mkN "back - down" "back - downs"; -- from DictEng -lin back_formation_N = mkN "back - formation" "back - formations"; -- from DictEng -lin back_up_N = mkN "back - up" "back - ups"; -- from DictEng -lin backache_N = mkN "backache" "backaches"; -- from DictEng -lin backband_N = mkN "backband" "backbands"; -- from DictEng -lin backbeat_N = mkN "backbeat" ; -lin backbench_N = mkN "backbench" "backbenches"; -- from DictEng -lin backbencher_N = mkN "backbencher" "backbenchers"; -- from DictEng -lin backbend_N = mkN "backbend" ; -lin backbite_V = mkV "back" IrregEng.bite_V; -- from DictEng -lin backbite_V2 = mkV2 (mkV "back" IrregEng.bite_V); -- from DictEng -lin backbiter_N = mkN "backbiter" "backbiters"; -- from DictEng -lin backblast_N = mkN "backblast" ; -lin backboard_N = mkN "backboard" "backboards"; -- from DictEng -lin backbone_N = mkN "backbone" "backbones"; -- from DictEng -lin backchat_N = mkN "backchat" ; -- from DictEng -lin backcloth_N = mkN "backcloth" "backcloths"; -- from DictEng -lin backdate_V2 = mkV2 (mkV "backdate" "backdates" "backdated" "backdated" "backdating"); -- from DictEng -lin backdoor_N = mkN "backdoor" "backdoors"; -- from DictEng -lin backdrop_N = mkN "backdrop" "backdrops"; -- from DictEng -lin backed_A = mkA "backed" ; -lin backer_N = mkN "backer" "backers"; -- from DictEng -lin backfield_N = mkN "backfield" ; -lin backfire_N = mkN "backfire" "backfires"; -- from DictEng -lin backfire_V = mkV "backfire" "backfires" "backfired" "backfired" "backfiring"; -- from DictEng -lin backflow_N = mkN "backflow" ; -lin backgammon_N = mkN "backgammon" ; -- from DictEng -lin background_N = mkN "background" "backgrounds"; -- from DictEng -lin backgrounder_N = mkN "backgrounder" ; -lin backhand_A = compoundA (mkA "backhand"); -- from DictEng -lin backhand_N = mkN "backhand" ; -lin backhanded_A = compoundA (mkA "backhanded"); -- from DictEng -lin backhander_N = mkN "backhander" ; -lin backhoe_N = mkN "backhoe" ; -lin backing_N = mkN "backing" "backings"; -- from DictEng -lin backlash_N = mkN "backlash" ; -- from DictEng -lin backless_A = compoundA (mkA "backless"); -- from DictEng -lin backlighting_N = mkN "backlighting" ; -lin backlog_N = mkN "backlog" "backlogs"; -- from DictEng -lin backmost_A = compoundA (mkA "backmost"); -- from DictEng -lin backpack_N = mkN "backpack" ; -lin backpack_V = mkV "backpack" ; -lin backpack_V2 = mkV2 (mkV "backpack") ; -lin backpacker_N = mkN "backpacker" ; -lin backpedal_V = mkV "backpedal" "backpedals" "backpedalled" "backpedalled" "backpedalling"; -- from DictEng -lin backpedaling_V = mkV "backpedaling"; -- from DictEng -lin backplate_N = mkN "backplate" ; -lin backroom_N = mkN "backroom" "backrooms"; -- from DictEng -lin backsaw_N = mkN "backsaw" ; -lin backscratcher_N = mkN "backscratcher" "backscratchers"; -- from DictEng -lin backseat_N = mkN "backseat" "backseats"; -- from DictEng -lin backsheesh_N = mkN "backsheesh" "backsheesh"; -- from DictEng -lin backside_N = mkN "backside" "backsides"; -- from DictEng -lin backslapper_N = mkN "backslapper" ; -lin backslide_V = mkV "back" IrregEng.slide_V; -- from DictEng -lin backsliding_N = mkN "backsliding" ; -lin backspace_V = mkV "backspace" "backspaces" "backspaced" "backspaced" "backspacing"; -- from DictEng -lin backspin_N = mkN "backspin" ; -lin backstage_Adv = mkAdv "backstage"; -- from DictEng -lin backstair_A = compoundA (mkA "backstair"); -- from DictEng -lin backstairs_N = mkN "backstairs" ; -lin backstay_N = mkN "backstay" ; -lin backstitch_N = mkN "backstitch" ; -lin backstop_N = mkN "backstop" ; -lin backstroke_N = mkN "backstroke" "backstrokes"; -- from DictEng -lin backstroker_N = mkN "backstroker" ; -lin backswept_A = mkA "backswept" ; -lin backswimmer_N = mkN "backswimmer" ; -lin backsword_N = mkN "backsword" "backswords"; -- from DictEng -lin backtalk_N = mkN "backtalk" ; -- from DictEng -lin backup_N = mkN "backup" ; -lin backward_A = compoundA (mkA "backward"); -- from DictEng -lin backward_Adv = mkAdv "backward"; -- from DictEng -lin backwards_A = compoundA (mkA "backwards"); -- from DictEng -lin backwards_Adv = mkAdv "backwards"; -- from DictEng -lin backwash_N = mkN "backwash" ; -- from DictEng -lin backwater_N = mkN "backwater" "backwaters"; -- from DictEng -lin backwoods_N = mkN "backwoods" ; -lin backwoodsman_N = mkN "backwoodsman" "backwoodsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin backyard_N = mkN "backyard" ; -lin bacon_N = mkN "bacon" ; -- from DictEng -lin bacteremia_N = mkN "bacteremia" ; -lin bacteremic_A = mkA "bacteremic" ; -lin bacteria_N = mkN "bacteria" ; -lin bacterial_A = compoundA (mkA "bacterial"); -- from DictEng -lin bacterially_Adv = mkAdv "bacterially" ; -lin bactericidal_A = mkA "bactericidal" ; -lin bactericide_N = mkN "bactericide" ; -lin bacteriochlorophyll_N = mkN "bacteriochlorophyll" ; -lin bacteriological_A = mkA "bacteriological" ; -lin bacteriologist_N = mkN "bacteriologist" "bacteriologists"; -- from DictEng -lin bacteriology_N = mkN "bacteriology" ; -- from DictEng -lin bacteriolysis_N = mkN "bacteriolysis" ; -lin bacteriolytic_A = mkA "bacteriolytic" ; -lin bacteriophage_N = mkN "bacteriophage" ; -lin bacteriophagic_A = mkA "bacteriophagic" ; -lin bacteriostasis_N = mkN "bacteriostasis" ; -lin bacteriostat_N = mkN "bacteriostat" ; -lin bacteriostatic_A = mkA "bacteriostatic" ; -lin bacterium_N = mkN "bacterium" "bacteria" {- FIXME: guessed plural form -}; -- from DictEng -lin bacteroid_N = mkN "bacteroid" ; -lin bacteroidal_A = mkA "bacteroidal" ; -lin bad_A = mkA "bad" "badder*"; -- from DictEng -lin bad_N = mkN "bad" ; -- from DictEng -lin baddeleyite_N = mkN "baddeleyite" ; -lin badge_N = mkN "badge" "badges"; -- from DictEng -lin badger_N = mkN "badger" "badgers"; -- from DictEng -lin badger_V2 = mkV2 (mkV "badger" "badgers" "badgered" "badgered" "badgering"); -- from DictEng -lin badger_VS = mkVS (mkV "badger" ); -lin badgering_N = mkN "badgering" ; -lin badinage_N = mkN "badinage" ; -- from DictEng -lin badlands_N = mkN "badlands" ; -lin badly_Adv = mkAdv "badly" ; -lin badly_behaved_A = compoundA (mkA "badly - behaved"); -- from DictEng -lin badminton_N = mkN "badminton" ; -- from DictEng -lin badness_N = mkN "badness" ; -- from DictEng -lin baedeker_N = mkN "baedeker" ; -lin baffle_N = mkN "baffle" "baffles"; -- from DictEng -lin baffle_V2 = mkV2 (mkV "baffle" "baffles" "baffled" "baffled" "baffling"); -- from DictEng -lin baffled_A = mkA "baffled" ; -lin baffled_N = mkN "baffled" ; -lin baffling_A = mkA "baffling" ; -lin bag_N = mkN "bag" "bags"; -- from DictEng -lin bag_V = mkV "bag" "bags" "bagged" "bagged" "bagging"; -- from DictEng -lin bag_V2 = mkV2 (mkV "bag" "bags" "bagged" "bagged" "bagging"); -- from DictEng -lin bag_shaped_A = compoundA (mkA "bag shaped") ; -lin bagasse_N = mkN "bagasse" ; -lin bagassosis_N = mkN "bagassosis" ; -lin bagatelle_N = mkN "bagatelle" "bagatelles"; -- from DictEng -lin bagel_N = mkN "bagel" ; -lin baggage_N = mkN "baggage" ; -- from DictEng -lin baggageman_N = mkN "baggageman" ; -lin bagger_N = mkN "bagger" ; -lin baggy_A = compoundA (mkA "baggy"); -- from DictEng -lin bagman_N = mkN "bagman" ; -lin bagnio_N = mkN "bagnio" "bagnios"; -- from DictEng -lin bagpipe_N = mkN "bagpipe" "bagpipes"; -- from DictEng -lin baguet_N = mkN "baguet" ; -lin bahamian_A = compoundA (mkA "bahamian"); -- from DictEng -lin bahamian_N = mkN "bahamian" "bahamians"; -- from DictEng -lin bahasa_N = mkN "bahasa" ; -- from DictEng -lin bahraini_A = compoundA (mkA "bahraini"); -- from DictEng -lin bahraini_N = mkN "bahraini" "bahrainis"; -- from DictEng -lin baht_N = mkN "baht" ; -lin bail_N = mkN "bail" "bails"; -- from DictEng -lin bail_V = mkV "bail" "bails" "bailed" "bailed" "bailing"; -- from DictEng -lin bail_V2 = mkV2 (mkV "bail" "bails" "bailed" "bailed" "bailing"); -- from DictEng -lin bailable_A = mkA "bailable" ; -lin bailee_N = mkN "bailee" "bailees"; -- from DictEng -lin bailey_N = mkN "bailey" "baileys"; -- from DictEng -lin bailiff_N = mkN "bailiff" "bailiffs"; -- from DictEng -lin bailiffship_N = mkN "bailiffship" ; -lin bailiwick_N = mkN "bailiwick" ; -lin bailment_N = mkN "bailment" "bailments"; -- from DictEng -lin bailor_N = mkN "bailor" "bailors"; -- from DictEng -lin bain_marie_N = mkN "bain marie" ; -lin bairn_N = mkN "bairn" "bairns"; -- from DictEng -lin bait_N = mkN "bait" "baits"; -- from DictEng -lin bait_V = mkV "bait" "baits" "baited" "baited" "baiting"; -- from DictEng -lin bait_V2 = mkV2 (mkV "bait" "baits" "baited" "baited" "baiting"); -- from DictEng -lin baiting_N = mkN "baiting" ; -lin baiza_N = mkN "baiza" ; -lin baize_N = mkN "baize" ; -- from DictEng -lin bake_V = mkV "bake" "bakes" "baked" "baked" "baking"; -- from DictEng -lin bake_V2 = mkV2 (mkV "bake" "bakes" "baked" "baked" "baking"); -- from DictEng -lin baked_A = mkA "baked" ; -lin baked_alaska_PN = mkPN "baked Alaska" ; -lin bakelite_N = mkN "bakelite" ; -- from DictEng -lin baker_N = mkN "baker" "bakers"; -- from DictEng -lin bakery_N = mkN "bakery" "bakeries"; -- from DictEng -lin baking_A = mkA "baking" ; -lin baking_N = mkN "baking" ; -lin baking_hot_A = compoundA (mkA "baking - hot"); -- from DictEng -lin baking_powder_N = mkN "baking - powder" "baking - powders"; -- from DictEng -lin baklava_N = mkN "baklava" ; -lin baksheesh_N = mkN "baksheesh" "baksheesh"; -- from DictEng -lin balaclava_N = mkN "balaclava" "balaclavas"; -- from DictEng -lin balagan_N = mkN "balagan" ; -lin balalaika_N = mkN "balalaika" "balalaikas"; -- from DictEng -lin balance_N = mkN "balance" "balances"; -- from DictEng -lin balance_V = mkV "balance" "balances" "balanced" "balanced" "balancing"; -- from DictEng -lin balance_V2 = mkV2 (mkV "balance" "balances" "balanced" "balanced" "balancing"); -- from DictEng -lin balance_sheet_N = mkN "balance - sheet" "balance - sheets"; -- from DictEng -lin balance_wheel_N = mkN "balance - wheel" "balance - wheels"; -- from DictEng -lin balanced_A = mkA "balanced" ; -lin balancer_N = mkN "balancer" ; -lin balanitis_N = mkN "balanitis" ; -lin balanoposthitis_N = mkN "balanoposthitis" ; -lin balas_N = mkN "balas" ; -lin balata_N = mkN "balata" ; -lin balboa_N = mkN "balboa" ; -lin balbriggan_N = mkN "balbriggan" ; -lin balconied_A = compoundA (mkA "balconied"); -- from DictEng -lin balcony_N = mkN "balcony" "balconies"; -- from DictEng -lin bald_A = mkA "bald" "balder"; -- from DictEng -lin bald_faced_A = compoundA (mkA "bald faced") ; -lin bald_head_N = mkN "bald - head" "bald - heads"; -- from DictEng -lin bald_pate_N = mkN "bald - pate" "bald - pates"; -- from DictEng -lin baldachin_N = mkN "baldachin" ; -lin balderdash_N = mkN "balderdash" ; -- from DictEng -lin baldhead_N = mkN "baldhead" ; -lin balding_A = mkA "balding" ; -lin baldly_Adv = mkAdv "baldly" ; -lin baldness_N = mkN "baldness" ; -- from DictEng -lin baldric_N = mkN "baldric" "baldrics"; -- from DictEng -lin bale_N = mkN "bale" "bales"; -- from DictEng -lin bale_V2 = mkV2 (mkV "bale" "bales" "baled" "baled" "baling"); -- from DictEng -lin baleful_A = compoundA (mkA "baleful"); -- from DictEng -lin balefully_Adv = mkAdv "balefully" ; -lin balk_N = mkN "balk" "balks"; -- from DictEng -lin balk_V = mkV "balk" "balks" "balked" "balked" "balking"; -- from DictEng -lin balk_V2 = mkV2 (mkV "balk" "balks" "balked" "balked" "balking"); -- from DictEng -lin balker_N = mkN "balker" ; -lin balkiness_N = mkN "balkiness" ; -lin balking_A = mkA "balking" ; -lin balkline_N = mkN "balkline" ; -lin ball_N = mkN "ball" "balls"; -- from DictEng -lin ball_V = mkV "ball" "balls" "balled" "balled" "balling"; -- from DictEng -lin ball_V2 = mkV2 (mkV "ball" "balls" "balled" "balled" "balling"); -- from DictEng -lin ball_buster_N = mkN "ball buster" ; -lin ball_hawking_A = compoundA (mkA "ball hawking") ; -lin ball_shaped_A = compoundA (mkA "ball shaped") ; -lin ball_cartridge_N = mkN "ball - cartridge" "ball - cartridges"; -- from DictEng -lin ball_dress_N = mkN "ball - dress" "ball - dresses"; -- from DictEng -lin ballad_N = mkN "ballad" "ballads"; -- from DictEng -lin ballade_N = mkN "ballade" "ballades"; -- from DictEng -lin ballast_N = mkN "ballast" ; -- from DictEng -lin ballast_V2 = mkV2 (mkV "ballast" "ballasts" "ballasted" "ballasted" "ballasting"); -- from DictEng -lin ballbearing_N = mkN "ballbearing" "ballbearings"; -- from DictEng -lin ballcock_N = mkN "ballcock" "ballcocks"; -- from DictEng -lin balldress_N = mkN "balldress" ; -lin ballerina_N = mkN "ballerina" "ballerinas"; -- from DictEng -lin ballet_N = mkN "ballet" "ballets"; -- from DictEng -lin ballet_dancer_N = mkN "ballet - dancer" "ballet - dancers"; -- from DictEng -lin ballet_skirt_N = mkN "ballet - skirt" "ballet - skirts"; -- from DictEng -lin balletic_A = mkA "balletic" ; -lin balletomane_N = mkN "balletomane" ; -lin balletomania_N = mkN "balletomania" ; -lin ballgame_N = mkN "ballgame" ; -lin ballistic_A = compoundA (mkA "ballistic"); -- from DictEng -lin ballistics_N = mkN "ballistics" "ballistics"; -- from DictEng -lin ballistocardiogram_N = mkN "ballistocardiogram" ; -lin ballistocardiograph_N = mkN "ballistocardiograph" ; -lin ballock_N = mkN "ballock" "ballocks"; -- from DictEng -lin balloon_N = mkN "balloon" "balloons"; -- from DictEng -lin balloon_V = mkV "balloon" "balloons" "ballooned" "ballooned" "ballooning"; -- from DictEng -lin balloon_V2 = mkV2 (mkV "balloon" "balloons" "ballooned" "ballooned" "ballooning"); -- from DictEng -lin balloonfish_N = mkN "balloonfish" ; -lin ballooning_N = mkN "ballooning" ; -lin balloonist_N = mkN "balloonist" "balloonists"; -- from DictEng -lin ballot_N = mkN "ballot" "ballots"; -- from DictEng -lin ballot_V = mkV "ballot" "ballots" "balloted" "balloted" "balloting"; -- from DictEng -lin ballot_box_N = mkN "ballot - box" "ballot - boxes"; -- from DictEng -lin ballottement_N = mkN "ballottement" ; -lin ballpark_N = mkN "ballpark" ; -lin ballpen_N = mkN "ballpen" "ballpens"; -- from DictEng -lin ballplayer_N = mkN "ballplayer" ; -lin ballpoint_N = mkN "ballpoint" "ballpoints"; -- from DictEng -lin ballpoint_pen_N = mkN "ballpoint - pen" "ballpoint - pens"; -- from DictEng -lin ballroom_N = mkN "ballroom" "ballrooms"; -- from DictEng -lin balls_up_N = mkN "balls - up" "balls - ups"; -- from DictEng -lin ballup_N = mkN "ballup" ; -lin bally_A = compoundA (mkA "bally"); -- from DictEng -lin bally_Adv = mkAdv "bally"; -- from DictEng -lin ballyhoo_N = mkN "ballyhoo" ; -- from DictEng -lin balm_N = mkN "balm" ; -- from DictEng -lin balm_of_gilead_PN = mkPN "balm of Gilead" ; -lin balminess_N = mkN "balminess" ; -lin balmoral_N = mkN "balmoral" ; -lin balmy_A = mkA "balmy" "balmier"; -- from DictEng -lin baloney_N = mkN "baloney" ; -- from DictEng -lin balsa_N = mkN "balsa" "balsas"; -- from DictEng -lin balsam_N = mkN "balsam" "balsams"; -- from DictEng -lin balsam_scented_A = compoundA (mkA "balsam scented") ; -lin balsam_of_peru_PN = mkPN "balsam of Peru" ; -lin balsamic_A = mkA "balsamic" ; -lin balsamroot_N = mkN "balsamroot" ; -lin baluster_N = mkN "baluster" "balusters"; -- from DictEng -lin balustrade_N = mkN "balustrade" "balustrades"; -- from DictEng -lin bambino_N = mkN "bambino" "bambinos"; -- from DictEng -lin bamboo_N = mkN "bamboo" "bamboos"; -- from DictEng -lin bamboozle_V2 = mkV2 (mkV "bamboozle" "bamboozles" "bamboozled" "bamboozled" "bamboozling"); -- from DictEng -lin ban_N = mkN "ban" "bans"; -- from DictEng -lin ban_V2 = mkV2 (mkV "ban" "bans" "banned" "banned" "banning"); -- from DictEng -lin banal_A = compoundA (mkA "banal"); -- from DictEng -lin banality_N = mkN "banality" "banalities"; -- from DictEng -lin banana_N = mkN "banana" "bananas"; -- from DictEng -lin banausic_A = mkA "banausic" ; -lin band_N = mkN "band" "bands"; -- from DictEng -lin band_V = mkV "band" "bands" "banded" "banded" "banding"; -- from DictEng -lin band_V2 = mkV2 (mkV "band" "bands" "banded" "banded" "banding"); -- from DictEng -lin band_saw_N = mkN "band - saw" "band - saws"; -- from DictEng -lin bandage_N = mkN "bandage" "bandages"; -- from DictEng -lin bandage_V2 = mkV2 (mkV "bandage" "bandages" "bandaged" "bandaged" "bandaging"); -- from DictEng -lin bandaged_A = mkA "bandaged" ; -lin bandanna_N = mkN "bandanna" "bandannas"; -- from DictEng -lin bandbox_N = mkN "bandbox" "bandboxes"; -- from DictEng -lin bandeau_N = mkN "bandeau" "bandeaux" {- FIXME: guessed plural form -}; -- from DictEng -lin banded_A = mkA "banded" ; -lin banderilla_N = mkN "banderilla" ; -lin banderillero_N = mkN "banderillero" ; -lin bandicoot_N = mkN "bandicoot" ; -lin bandit_N = mkN "bandit" "bandits"; -- from DictEng -lin banditry_N = mkN "banditry" ; -- from DictEng -lin bandleader_N = mkN "bandleader" "bandleaders"; -- from DictEng -lin bandmaster_N = mkN "bandmaster" "bandmasters"; -- from DictEng -lin bandoleer_N = mkN "bandoleer" "bandoleers"; -- from DictEng -lin bandolier_N = mkN "bandolier" "bandoliers"; -- from DictEng -lin bandoneon_N = mkN "bandoneon" ; -lin bandsaw_N = mkN "bandsaw" ; -lin bandsman_N = mkN "bandsman" "bandsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin bandstand_N = mkN "bandstand" "bandstands"; -- from DictEng -lin bandwagon_N = mkN "bandwagon" "bandwagons"; -- from DictEng -lin bandwidth_N = mkN "bandwidth" ; -lin bandy_A = mkA "bandy" "bandier"; -- from DictEng -lin bandy_V2 = mkV2 (mkV "bandy" "bandies" "bandied" "bandied" "bandying"); -- from DictEng -lin bandy_legged_A = compoundA (mkA "bandy - legged"); -- from DictEng -lin bane_N = mkN "bane" ; -- from DictEng -lin baneberry_N = mkN "baneberry" ; -lin baneful_A = compoundA (mkA "baneful"); -- from DictEng -lin banefully_Adv = mkAdv "banefully" ; -lin bang_Adv = mkAdv "bang"; -- from DictEng -lin bang_N = mkN "bang" "bangs"; -- from DictEng -lin bang_V = mkV "bang" "bangs" "banged" "banged" "banging"; -- from DictEng -lin bang_V2 = mkV2 (mkV "bang" "bangs" "banged" "banged" "banging"); -- from DictEng -lin bang_up_A = compoundA (mkA "bang up") ; -lin banger_N = mkN "banger" "bangers"; -- from DictEng -lin banging_N = mkN "banging" ; -lin bangladeshi_A = compoundA (mkA "bangladeshi"); -- from DictEng -lin bangladeshi_N = mkN "bangladeshi" "bangladeshis"; -- from DictEng -lin bangle_N = mkN "bangle" "bangles"; -- from DictEng -lin banian_N = mkN "banian" "banians"; -- from DictEng -lin banian_tree_N = mkN "banian - tree" "banian - trees"; -- from DictEng -lin banish_V2 = mkV2 (mkV "banish" "banishes" "banished" "banished" "banishing"); -- from DictEng -lin banishment_N = mkN "banishment" ; -- from DictEng -lin banister_N = mkN "banister" "banisters"; -- from DictEng -lin banjo_N = mkN "banjo" "banjos"; -- from DictEng -lin bank_N = mkN "bank" "banks"; -- from DictEng -lin bank_V = mkV "bank" "banks" "banked" "banked" "banking"; -- from DictEng -lin bank_V2 = mkV2 (mkV "bank" "banks" "banked" "banked" "banking"); -- from DictEng -lin bank_bill_N = mkN "bank - bill" "bank - bills"; -- from DictEng -lin bank_book_N = mkN "bank - book" "bank - books"; -- from DictEng -lin bank_draft_N = mkN "bank - draft" "bank - drafts"; -- from DictEng -lin bank_rate_N = mkN "bank - rate" "bank - rates"; -- from DictEng -lin bankable_A = mkA "bankable" ; -lin bankbook_N = mkN "bankbook" ; -lin banker_N = mkN "banker" "bankers"; -- from DictEng -lin banking_N = mkN "banking" ; -- from DictEng -lin banknote_N = mkN "banknote" "banknotes"; -- from DictEng -lin bankroll_N = mkN "bankroll" "bankrolls"; -- from DictEng -lin bankrupt_A = compoundA (mkA "bankrupt"); -- from DictEng -lin bankrupt_N = mkN "bankrupt" "bankrupts"; -- from DictEng -lin bankrupt_V2 = mkV2 (mkV "bankrupt" "bankrupts" "bankrupted" "bankrupted" "bankrupting"); -- from DictEng -lin bankruptcy_N = mkN "bankruptcy" "bankruptcies"; -- from DictEng -lin banksia_N = mkN "banksia" ; -lin banned_A = mkA "banned" ; -lin banner_A = mkA "banner" ; -lin banner_N = mkN "banner" "banners"; -- from DictEng -lin bannerlike_Adv = mkAdv "bannerlike" ; -lin banning_order_N = mkN "banning - order" "banning - orders"; -- from DictEng -lin banning_order_N = mkN "banning - order" "banning - orders"; -- from DictEng -lin bannister_N = mkN "bannister" "bannisters"; -- from DictEng -lin bannock_N = mkN "bannock" "bannocks"; -- from DictEng -lin banns_N = mkN "banns" ; -lin banquet_N = mkN "banquet" "banquets"; -- from DictEng -lin banquet_V = mkV "banquet" "banquets" "banqueted" "banqueted" "banqueting"; -- from DictEng -lin banquet_V2 = mkV2 (mkV "banquet" "banquets" "banqueted" "banqueted" "banqueting"); -- from DictEng -lin banquette_N = mkN "banquette" ; -lin banshee_N = mkN "banshee" "banshees"; -- from DictEng -lin bant_V = mkV "bant" "bants" "banted" "banted" "banting"; -- from DictEng -lin bantam_A = mkA "bantam" ; -lin bantam_N = mkN "bantam" "bantams"; -- from DictEng -lin bantamweight_N = mkN "bantamweight" ; -lin banteng_N = mkN "banteng" ; -lin banter_N = mkN "banter" ; -- from DictEng -lin banter_V = mkV "banter" "banters" "bantered" "bantered" "bantering"; -- from DictEng -lin banter_V2 = mkV2 (mkV "banter" "banters" "bantered" "bantered" "bantering"); -- from DictEng -lin bantering_A = compoundA (mkA "bantering"); -- from DictEng -lin banteringly_Adv = mkAdv "banteringly" ; -lin banting_N = mkN "banting" ; -- from DictEng -lin bantu_A = compoundA (mkA "bantu"); -- from DictEng -lin bantu_N = mkN "bantu" "bantu"; -- from DictEng -lin banyan_N = mkN "banyan" "banyans"; -- from DictEng -lin banzai_N = mkN "banzai" ; -lin baobab_N = mkN "baobab" "baobabs"; -- from DictEng -lin bap_N = mkN "bap" ; -lin baptism_N = mkN "baptism" "baptisms"; -- from DictEng -lin baptismal_A = compoundA (mkA "baptismal"); -- from DictEng -lin baptist_A = compoundA (mkA "baptist"); -- from DictEng -lin baptist_N = mkN "baptist" "baptists"; -- from DictEng -lin baptize_V2 = mkV2 (mkV "baptize" "baptizes" "baptized" "baptized" "baptizing"); -- from DictEng -lin baptized_A = mkA "baptized" ; -lin bar_N = mkN "bar" "bars"; -- from DictEng -lin bar_Prep = mkPrep "bar"; -- from DictEng -lin bar_V2 = mkV2 (mkV "bar" "bars" "barred" "barred" "barring"); -- from DictEng -lin bar_shaped_A = compoundA (mkA "bar shaped") ; -lin barb_N = mkN "barb" "barbs"; -- from DictEng -lin barbadian_A = compoundA (mkA "barbadian"); -- from DictEng -lin barbadian_N = mkN "barbadian" "barbadians"; -- from DictEng -lin barbarian_A = compoundA (mkA "barbarian"); -- from DictEng -lin barbarian_N = mkN "barbarian" "barbarians"; -- from DictEng -lin barbaric_A = compoundA (mkA "barbaric"); -- from DictEng -lin barbarism_N = mkN "barbarism" "barbarisms"; -- from DictEng -lin barbarity_N = mkN "barbarity" "barbarities"; -- from DictEng -lin barbarization_N = mkN "barbarization" ; -lin barbarize_V2 = mkV2 (mkV "barbarize" "barbarizes" "barbarized" "barbarized" "barbarizing"); -- from DictEng -lin barbarous_A = compoundA (mkA "barbarous"); -- from DictEng -lin barbarously_Adv = mkAdv "barbarously" ; -lin barbasco_N = mkN "barbasco" ; -lin barbecue_N = mkN "barbecue" "barbecues"; -- from DictEng -lin barbecue_V2 = mkV2 (mkV "barbecue" "barbecues" "barbecued" "barbecued" "barbecuing"); -- from DictEng -lin barbecued_A = mkA "barbecued" ; -lin barbecuing_N = mkN "barbecuing" ; -lin barbed_A = compoundA (mkA "barbed"); -- from DictEng -lin barbel_N = mkN "barbel" "barbels"; -- from DictEng -lin barbell_N = mkN "barbell" ; -lin barber_N = mkN "barber" "barbers"; -- from DictEng -lin barberry_N = mkN "barberry" ; -lin barbershop_N = mkN "barbershop" ; -lin barbet_N = mkN "barbet" ; -lin barbette_N = mkN "barbette" ; -lin barbican_N = mkN "barbican" "barbicans"; -- from DictEng -lin barbital_N = mkN "barbital" ; -lin barbitone_N = mkN "barbitone" ; -- from DictEng -lin barbiturate_N = mkN "barbiturate" "barbiturates"; -- from DictEng -lin barbu_N = mkN "barbu" ; -lin barcarole_N = mkN "barcarole" "barcaroles"; -- from DictEng -lin barcarolle_N = mkN "barcarolle" "barcarolles"; -- from DictEng -lin bard_N = mkN "bard" "bards"; -- from DictEng -lin bardic_A = compoundA (mkA "bardic"); -- from DictEng -lin bardolatry_N = mkN "bardolatry" ; -- from DictEng -lin bare_A = mkA "bare" "barer"; -- from DictEng -lin bare_V2 = mkV2 (mkV "bare" "bares" "bared" "bared" "baring"); -- from DictEng -lin bare_assed_A = compoundA (mkA "bare assed") ; -lin bare_breasted_A = compoundA (mkA "bare breasted") ; -lin bareback_A = mkA "bareback" ; -lin bareback_Adv = mkAdv "bareback"; -- from DictEng -lin barebacked_A = compoundA (mkA "barebacked"); -- from DictEng -lin barebacked_Adv = mkAdv "barebacked"; -- from DictEng -lin bareboat_N = mkN "bareboat" ; -lin bareboating_N = mkN "bareboating" ; -lin barefaced_A = compoundA (mkA "barefaced"); -- from DictEng -lin barefoot_A = mkA "barefoot" ; -lin barefoot_Adv = mkAdv "barefoot"; -- from DictEng -lin barefooted_A = compoundA (mkA "barefooted"); -- from DictEng -lin barefooted_Adv = mkAdv "barefooted"; -- from DictEng -lin barehanded_A = mkA "barehanded" ; -lin bareheaded_A = compoundA (mkA "bareheaded"); -- from DictEng -lin barelegged_A = compoundA (mkA "barelegged"); -- from DictEng -lin barely_Adv = mkAdv "barely" ; -lin bareness_N = mkN "bareness" ; -- from DictEng -lin barf_V = mkV "barf" ; -lin bargain_N = mkN "bargain" "bargains"; -- from DictEng -lin bargain_V = mkV "bargain" "bargains" "bargained" "bargained" "bargaining"; -- from DictEng -lin bargain_V2 = mkV2 (mkV "bargain" "bargains" "bargained" "bargained" "bargaining"); -- from DictEng -lin bargain_priced_A = compoundA (mkA "bargain priced") ; -lin bargainer_N = mkN "bargainer" ; -lin bargaining_N = mkN "bargaining" ; -lin barge_N = mkN "barge" "barges"; -- from DictEng -lin barge_V = mkV "barge" "barges" "barged" "barged" "barging"; -- from DictEng -lin bargee_N = mkN "bargee" "bargees"; -- from DictEng -lin bargello_N = mkN "bargello" ; -lin bargepole_N = mkN "bargepole" "bargepoles"; -- from DictEng -lin baric_A = mkA "baric" ; -lin barilla_N = mkN "barilla" ; -lin baritone_A = mkA "baritone" ; -lin baritone_N = mkN "baritone" "baritones"; -- from DictEng -lin barium_N = mkN "barium" ; -- from DictEng -lin bark_N = mkN "bark" "barks"; -- from DictEng -lin bark_V = mkV "bark" "barks" "barked" "barked" "barking"; -- from DictEng -lin bark_V2 = mkV2 (mkV "bark" "barks" "barked" "barked" "barking"); -- from DictEng -lin bark_louse_N = mkN "bark louse" ; -lin barker_N = mkN "barker" "barkers"; -- from DictEng -lin barky_A = mkA "barky" ; -lin barley_N = mkN "barley" ; -- from DictEng -lin barley_sugar_N = mkN "barley - sugar" "barley - sugars"; -- from DictEng -lin barley_sugar_N = mkN "barley - sugar" "barley - sugars"; -- from DictEng -lin barley_water_N = mkN "barley - water" ; -- from DictEng -lin barleycorn_N = mkN "barleycorn" "barleycorns"; -- from DictEng -lin barm_N = mkN "barm" ; -- from DictEng -lin barmaid_N = mkN "barmaid" "barmaids"; -- from DictEng -lin barman_N = mkN "barman" "barmen" {- FIXME: guessed plural form -}; -- from DictEng -lin barmbrack_N = mkN "barmbrack" ; -lin barmy_A = compoundA (mkA "barmy"); -- from DictEng -lin barn_N = mkN "barn" "barns"; -- from DictEng -lin barn_door_N = mkN "barn - door" "barn - doors"; -- from DictEng -lin barnacle_N = mkN "barnacle" "barnacles"; -- from DictEng -lin barnburner_N = mkN "barnburner" ; -lin barndoor_N = mkN "barndoor" ; -lin barnful_N = mkN "barnful" ; -lin barnstorm_V = mkV "barnstorm" "barnstorms" "barnstormed" "barnstormed" "barnstorming"; -- from DictEng -lin barnstormer_N = mkN "barnstormer" "barnstormers"; -- from DictEng -lin barnyard_N = mkN "barnyard" "barnyards"; -- from DictEng -lin barograph_N = mkN "barograph" ; -lin barographic_A = mkA "barographic" ; -lin barometer_N = mkN "barometer" "barometers"; -- from DictEng -lin barometric_A = compoundA (mkA "barometric"); -- from DictEng -lin baron_N = mkN "baron" "barons"; -- from DictEng -lin baronage_N = mkN "baronage" "baronages"; -- from DictEng -lin baronduki_N = mkN "baronduki" ; -lin baroness_N = mkN "baroness" "baronesses"; -- from DictEng -lin baronet_N = mkN "baronet" "baronets"; -- from DictEng -lin baronetage_N = mkN "baronetage" ; -lin baronetcy_N = mkN "baronetcy" "baronetcies"; -- from DictEng -lin barong_N = mkN "barong" ; -lin baronial_A = compoundA (mkA "baronial"); -- from DictEng -lin barony_N = mkN "barony" "baronies"; -- from DictEng -lin baroque_A = compoundA (mkA "baroque"); -- from DictEng -lin baroque_N = mkN "baroque" "IRREG"; -- from DictEng -lin baroreceptor_N = mkN "baroreceptor" ; -lin barosaur_N = mkN "barosaur" ; -lin barouche_N = mkN "barouche" "barouches"; -- from DictEng -lin barque_N = mkN "barque" "barques"; -- from DictEng -lin barrack_N = mkN "barrack" "barracks"; -- from DictEng -lin barrack_V = mkV "barrack" "barracks" "barracked" "barracked" "barracking"; -- from DictEng -lin barrack_V2 = mkV2 (mkV "barrack" "barracks" "barracked" "barracked" "barracking"); -- from DictEng -lin barracking_N = mkN "barracking" ; -- from DictEng -lin barracouta_N = mkN "barracouta" ; -lin barracuda_N = mkN "barracuda" "barracudas"; -- from DictEng -lin barrage_N = mkN "barrage" "barrages"; -- from DictEng -lin barramundi_N = mkN "barramundi" ; -lin barrator_N = mkN "barrator" ; -lin barratry_N = mkN "barratry" ; -lin barred_A = mkA "barred" ; -lin barrel_N = mkN "barrel" "barrels"; -- from DictEng -lin barrel_V2 = mkV2 (mkV "barrel" "barrels" "barrelled" "barrelled" "barrelling"); -- from DictEng -lin barrel_shaped_A = compoundA (mkA "barrel shaped") ; -lin barreled_A = mkA "barreled" ; -lin barrelfish_N = mkN "barrelfish" ; -lin barrelhouse_N = mkN "barrelhouse" ; -lin barrelled_A = compoundA (mkA "barrelled"); -- from DictEng -lin barrels_N = mkN "barrels" ; -lin barren_A = compoundA (mkA "barren"); -- from DictEng -lin barren_N = mkN "barren" ; -lin barrenness_N = mkN "barrenness" ; -- from DictEng -lin barrenwort_N = mkN "barrenwort" ; -lin barrette_N = mkN "barrette" ; -lin barricade_N = mkN "barricade" "barricades"; -- from DictEng -lin barricade_V2 = mkV2 (mkV "barricade" "barricades" "barricaded" "barricaded" "barricading"); -- from DictEng -lin barricaded_A = mkA "barricaded" ; -lin barrier_N = mkN "barrier" "barriers"; -- from DictEng -lin barring_N = mkN "barring" ; -lin barrio_N = mkN "barrio" ; -lin barrister_N = mkN "barrister" "barristers"; -- from DictEng -lin barroom_N = mkN "barroom" ; -lin barrow_N = mkN "barrow" "barrows"; -- from DictEng -lin barrow_boy_N = mkN "barrow - boy" "barrow - boys"; -- from DictEng -lin barrow_man_N = mkN "barrow - man" "barrow - men"; -- from DictEng -lin bartender_N = mkN "bartender" "bartenders"; -- from DictEng -lin barter_N = mkN "barter" ; -- from DictEng -lin barter_V = mkV "barter" "barters" "bartered" "bartered" "bartering"; -- from DictEng -lin barter_V2 = mkV2 (mkV "barter" "barters" "bartered" "bartered" "bartering"); -- from DictEng -lin barterer_N = mkN "barterer" "barterers"; -- from DictEng -lin bartlett_N = mkN "bartlett" ; -lin bartonia_N = mkN "bartonia" ; -lin barycenter_N = mkN "barycenter" ; -lin barye_N = mkN "barye" ; -lin baryon_N = mkN "baryon" ; -lin baryta_N = mkN "baryta" ; -lin barytic_A = mkA "barytic" ; -lin bas_relief_N = mkN "bas - relief" "bas - reliefs"; -- from DictEng -lin basal_A = compoundA (mkA "basal"); -- from DictEng -lin basalt_N = mkN "basalt" ; -- from DictEng -lin basaltic_A = mkA "basaltic" ; -lin bascule_N = mkN "bascule" "bascules"; -- from DictEng -lin base_A = mkA "base" "baser"; -- from DictEng -lin base_N = mkN "base" "bases"; -- from DictEng -lin base_V = mkV "base"; -- from DictEng -lin base_V2 = mkV2 (mkV "base" "bases" "based" "based" "basing"); -- from DictEng -lin base_forming_A = compoundA (mkA "base forming") ; -lin baseball_N = mkN "baseball" "baseballs"; -- from DictEng -lin baseboard_N = mkN "baseboard" "baseboards"; -- from DictEng -lin based_A = mkA "based" ; -lin baseless_A = compoundA (mkA "baseless"); -- from DictEng -lin baseline_N = mkN "baseline" ; -lin basement_N = mkN "basement" "basements"; -- from DictEng -lin baseness_N = mkN "baseness" ; -lin basenji_N = mkN "basenji" ; -lin bash_N = mkN "bash" "bashes"; -- from DictEng -lin bash_V2 = mkV2 (mkV "bash" "bashes" "bashed" "bashed" "bashing"); -- from DictEng -lin bashful_A = compoundA (mkA "bashful"); -- from DictEng -lin basic_A = compoundA (mkA "basic"); -- from DictEng -lin basic_N = mkN "basic" ; -lin basically_Adv = mkAdv "basically"; -- from DictEng -lin basics_N = mkN "basics" ; -lin basidial_A = mkA "basidial" ; -lin basidiocarp_N = mkN "basidiocarp" ; -lin basidiolichen_N = mkN "basidiolichen" ; -lin basidiomycete_N = mkN "basidiomycete" ; -lin basidiomycetous_A = mkA "basidiomycetous" ; -lin basidiospore_N = mkN "basidiospore" ; -lin basidiosporous_A = mkA "basidiosporous" ; -lin basidium_N = mkN "basidium" ; -lin basifixed_A = mkA "basifixed" ; -lin basil_N = mkN "basil" ; -- from DictEng -lin basilar_A = mkA "basilar" ; -lin basileus_N = mkN "basileus" ; -lin basilica_N = mkN "basilica" "basilicas"; -- from DictEng -lin basilican_A = mkA "basilican" ; -lin basilisk_N = mkN "basilisk" "basilisks"; -- from DictEng -lin basin_N = mkN "basin" "basins"; -- from DictEng -lin basinal_A = mkA "basinal" ; -lin basined_A = mkA "basined" ; -lin basinet_N = mkN "basinet" ; -lin basipetal_A = mkA "basipetal" ; -lin basis_N = mkN "basis" "bases" {- FIXME: guessed plural form -}; -- from DictEng -lin basiscopic_A = mkA "basiscopic" ; -lin bask_V = mkV "bask" "basks" "basked" "basked" "basking"; -- from DictEng -lin basket_N = mkN "basket" "baskets"; -- from DictEng -lin basket_shaped_A = compoundA (mkA "basket shaped") ; -lin basketball_N = mkN "basketball" "basketballs"; -- from DictEng -lin basketry_N = mkN "basketry" ; -- from DictEng -lin basketweaver_N = mkN "basketweaver" ; -lin basophil_N = mkN "basophil" ; -lin basophilia_N = mkN "basophilia" ; -lin basophilic_A = mkA "basophilic" ; -lin bass_A = compoundA (mkA "bass"); -- from DictEng -lin bass_N = mkN "bass" ; -- from DictEng -lin bassarisk_N = mkN "bassarisk" ; -lin basset_N = mkN "basset" ; -lin bassine_N = mkN "bassine" ; -lin bassinet_N = mkN "bassinet" "bassinets"; -- from DictEng -lin bassist_N = mkN "bassist" ; -lin bassoon_N = mkN "bassoon" "bassoons"; -- from DictEng -lin bassoonist_N = mkN "bassoonist" ; -lin basswood_N = mkN "basswood" ; -lin bast_N = mkN "bast" ; -- from DictEng -lin bastard_N = mkN "bastard" "bastards"; -- from DictEng -lin bastardization_N = mkN "bastardization" ; -lin bastardize_V2 = mkV2 (mkV "bastardize" "bastardizes" "bastardized" "bastardized" "bastardizing"); -- from DictEng -lin bastardized_A = mkA "bastardized" ; -lin bastardly_A = mkA "bastardly" ; -lin bastardy_N = mkN "bastardy" "bastardies"; -- from DictEng -lin baste_N = mkN "baste" ; -lin baste_V2 = mkV2 (mkV "baste" "bastes" "basted" "basted" "basting"); -- from DictEng -lin baster_N = mkN "baster" ; -lin bastille_N = mkN "bastille" ; -lin bastinado_N = mkN "bastinado" "bastinadi" {- FIXME: guessed plural form -}; -- from DictEng -lin bastinado_V2 = mkV2 (mkV "bastinado" "bastinados" "bastinadoed" "bastinadoed" "bastinadoing"); -- from DictEng -lin basting_N = mkN "basting" ; -lin bastion_N = mkN "bastion" "bastions"; -- from DictEng -lin bastioned_A = mkA "bastioned" ; -lin bastnasite_N = mkN "bastnasite" ; -lin basuco_N = mkN "basuco" ; -lin bat_N = mkN "bat" "bats"; -- from DictEng -lin bat_V = mkV "bat" "bats" "batted" "batted" "batting"; -- from DictEng -lin bat_V2 = mkV2 (mkV "bat" "bats" "batted" "batted" "batting"); -- from DictEng -lin batch_N = mkN "batch" "batches"; -- from DictEng -lin bate_V2 = mkV2 (mkV "bate" "bates" "bated" "bated" "bating"); -- from DictEng -lin bated_A = mkA "bated" ; -lin batfish_N = mkN "batfish" ; -lin bath_N = mkN "bath" "baths"; -- from DictEng -lin bath_V = mkV "bath" "baths" "bathed" "bathed" "bathing"; -- from DictEng -lin bath_V2 = mkV2 (mkV "bath" "baths" "bathed" "bathed" "bathing"); -- from DictEng -lin bath_chair_N = mkN "bath - chair" "bath - chairs"; -- from DictEng -lin bathe_N = mkN "bathe" "bathes"; -- from DictEng -lin bathe_V = mkV "bathe" "bathes" "bathed" "bathed" "bathing"; -- from DictEng -lin bathe_V2 = mkV2 (mkV "bathe" "bathes" "bathed" "bathed" "bathing"); -- from DictEng -lin bather_N = mkN "bather" "bathers"; -- from DictEng -lin bathetic_A = mkA "bathetic" ; -lin bathhouse_N = mkN "bathhouse" ; -lin bathing_N = mkN "bathing" "bathings"; -- from DictEng -lin bathing_cap_N = mkN "bathing - cap" "bathing - caps"; -- from DictEng -lin bathing_costume_N = mkN "bathing - costume" "bathing - costumes"; -- from DictEng -lin bathing_machine_N = mkN "bathing - machine" "bathing - machines"; -- from DictEng -lin bathing_suit_N = mkN "bathing - suit" "bathing - suits"; -- from DictEng -lin batholith_N = mkN "batholith" ; -lin batholithic_A = mkA "batholithic" ; -lin bathos_N = mkN "bathos" ; -- from DictEng -lin bathrobe_N = mkN "bathrobe" "bathrobes"; -- from DictEng -lin bathroom_N = mkN "bathroom" "bathrooms"; -- from DictEng -lin bathtub_N = mkN "bathtub" "bathtubs"; -- from DictEng -lin bathyal_A = mkA "bathyal" ; -lin bathymeter_N = mkN "bathymeter" ; -lin bathymetric_A = mkA "bathymetric" ; -lin bathymetry_N = mkN "bathymetry" ; -lin bathyscaphe_N = mkN "bathyscaphe" ; -lin bathysphere_N = mkN "bathysphere" "bathyspheres"; -- from DictEng -lin batik_N = mkN "batik" "batiks"; -- from DictEng -lin batiste_N = mkN "batiste" ; -- from DictEng -lin batman_N = mkN "batman" "batmen" {- FIXME: guessed plural form -}; -- from DictEng -lin baton_N = mkN "baton" "batons"; -- from DictEng -lin batrachomyomachia_N = mkN "batrachomyomachia" ; -lin bats_A = compoundA (mkA "bats"); -- from DictEng -lin batsman_N = mkN "batsman" "batsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin battalion_N = mkN "battalion" "battalions"; -- from DictEng -lin batten_N = mkN "batten" "battens"; -- from DictEng -lin batten_V = mkV "batten" "battens" "battened" "battened" "battening"; -- from DictEng -lin batten_V2 = mkV2 (mkV "batten" "battens" "battened" "battened" "battening"); -- from DictEng -lin batter_N = mkN "batter" ; -- from DictEng -lin batter_V = mkV "batter" "batters" "battered" "battered" "battering"; -- from DictEng -lin batter_V2 = mkV2 (mkV "batter" "batters" "battered" "battered" "battering"); -- from DictEng -lin batter_fried_A = compoundA (mkA "batter fried") ; -lin battered_A = mkA "battered" ; -lin battering_N = mkN "battering" ; -lin battery_N = mkN "battery" "batteries"; -- from DictEng -lin battery_powered_A = compoundA (mkA "battery powered") ; -lin batting_N = mkN "batting" ; -- from DictEng -lin battle_N = mkN "battle" "battles"; -- from DictEng -lin battle_V = mkV "battle" "battles" "battled" "battled" "battling"; -- from DictEng -lin battle_V2 = mkV2 (mkV "battle" "battles" "battled" "battled" "battling"); -- from DictEng -lin battle_ax_N = mkN "battle ax" ; -lin battle_scarred_A = compoundA (mkA "battle scarred") ; -lin battle_axe_N = mkN "battle - axe" "battle - axes"; -- from DictEng -lin battle_cruiser_N = mkN "battle - cruiser" "battle - cruisers"; -- from DictEng -lin battledore_N = mkN "battledore" "battledores"; -- from DictEng -lin battledress_N = mkN "battledress"; -- from DictEng -lin battlefield_N = mkN "battlefield" "battlefields"; -- from DictEng -lin battlefront_N = mkN "battlefront" ; -lin battleful_A = mkA "battleful" ; -lin battleground_N = mkN "battleground" "battlegrounds"; -- from DictEng -lin battlement_N = mkN "battlement" ; -lin battlemented_A = mkA "battlemented" ; -lin battleship_N = mkN "battleship" "battleships"; -- from DictEng -lin battue_N = mkN "battue" "battues"; -- from DictEng -lin batty_A = compoundA (mkA "batty"); -- from DictEng -lin batwing_A = mkA "batwing" ; -lin batwing_N = mkN "batwing" ; -lin bauble_N = mkN "bauble" "baubles"; -- from DictEng -lin baud_N = mkN "baud" ; -lin baulk_N = mkN "baulk" "baulks"; -- from DictEng -lin baulk_V = mkV "baulk" "baulks" "baulked" "baulked" "baulking"; -- from DictEng -lin baulk_V2 = mkV2 (mkV "baulk" "baulks" "baulked" "baulked" "baulking"); -- from DictEng -lin bauxite_N = mkN "bauxite" ; -- from DictEng -lin bauxitic_A = mkA "bauxitic" ; -lin bawbee_N = mkN "bawbee" "bawbees"; -- from DictEng -lin bawd_N = mkN "bawd" "bawds"; -- from DictEng -lin bawdily_Adv = mkAdv "bawdily"; -- from DictEng -lin bawdry_N = mkN "bawdry" ; -lin bawdy_A = mkA "bawdy" "bawdier"; -- from DictEng -lin bawdy_N = mkN "bawdy" ; -- from DictEng -lin bawl_V = mkV "bawl" "bawls" "bawled" "bawled" "bawling"; -- from DictEng -lin bawl_V2 = mkV2 (mkV "bawl" "bawls" "bawled" "bawled" "bawling"); -- from DictEng -lin bawler_N = mkN "bawler" ; -lin bay_A = compoundA (mkA "bay"); -- from DictEng -lin bay_N = mkN "bay" "bays"; -- from DictEng -lin bay_V = mkV "bay" "bays" "bayed" "bayed" "baying"; -- from DictEng -lin bay_wreath_N = mkN "bay - wreath" "bay - wreaths"; -- from DictEng -lin baya_N = mkN "baya" ; -lin bayat_N = mkN "bayat" ; -lin bayberry_N = mkN "bayberry" ; -lin bayonet_N = mkN "bayonet" "bayonets"; -- from DictEng -lin bayonet_V2 = mkV2 (mkV "bayonet" "bayonets" "bayoneted" "bayoneted" "bayoneting"); -- from DictEng -lin bayou_N = mkN "bayou" "bayous"; -- from DictEng -lin bazaar_N = mkN "bazaar" "bazaars"; -- from DictEng -lin bazooka_N = mkN "bazooka" "bazookas"; -- from DictEng -lin bdellium_N = mkN "bdellium" ; -lin beach_N = mkN "beach" "beaches"; -- from DictEng -lin beach_V2 = mkV2 (mkV "beach" "beaches" "beached" "beached" "beaching"); -- from DictEng -lin beachcomber_N = mkN "beachcomber" "beachcombers"; -- from DictEng -lin beachfront_N = mkN "beachfront" ; -lin beachhead_N = mkN "beachhead" "beachheads"; -- from DictEng -lin beachwear_N = mkN "beachwear" ; -- from DictEng -lin beacon_N = mkN "beacon" "beacons"; -- from DictEng -lin beacon_fire_N = mkN "beacon - fire" "beacon - fires"; -- from DictEng -lin beacon_light_N = mkN "beacon - light" "beacon - lights"; -- from DictEng -lin bead_N = mkN "bead" "beads"; -- from DictEng -lin beaded_A = mkA "beaded" ; -lin beading_N = mkN "beading" ; -- from DictEng -lin beadle_N = mkN "beadle" "beadles"; -- from DictEng -lin beads_N = mkN "beads" ; -lin beadsman_N = mkN "beadsman" ; -lin beady_A = compoundA (mkA "beady"); -- from DictEng -lin beady_eyed_A = compoundA (mkA "beady eyed") ; -lin beagle_N = mkN "beagle" "beagles"; -- from DictEng -lin beagling_N = mkN "beagling" ; -- from DictEng -lin beak_N = mkN "beak" "beaks"; -- from DictEng -lin beaked_A = mkA "beaked" ; -lin beaker_N = mkN "beaker" "beakers"; -- from DictEng -lin beakless_A = mkA "beakless" ; -lin beaklike_A = mkA "beaklike" ; -lin beam_N = mkN "beam" "beams"; -- from DictEng -lin beam_V = mkV "beam" "beams" "beamed" "beamed" "beaming"; -- from DictEng -lin beam_V2 = mkV2 (mkV "beam" "beams" "beamed" "beamed" "beaming"); -- from DictEng -lin beam_ends_N = mkN "beam ends" ; -lin beaming_A = mkA "beaming" ; -lin beamish_A = mkA "beamish" ; -lin beamy_A = mkA "beamy" ; -lin bean_N = mkN "bean" "beans"; -- from DictEng -lin bean_shaped_A = compoundA (mkA "bean shaped") ; -lin beanbag_N = mkN "beanbag" ; -lin beanball_N = mkN "beanball" ; -lin beanfeast_N = mkN "beanfeast" "beanfeasts"; -- from DictEng -lin beanie_N = mkN "beanie" ; -lin beano_N = mkN "beano" "beanos"; -- from DictEng -lin beanstalk_N = mkN "beanstalk" "beanstalks"; -- from DictEng -lin bear_N = mkN "bear" "bears"; -- from DictEng -lin bear_V = IrregEng.bear_V; -- from DictEng -lin bear_V2 = mkV2 (IrregEng.bear_V); -- from DictEng -lin bear_sized_A = compoundA (mkA "bear sized") ; -lin bearable_A = compoundA (mkA "bearable"); -- from DictEng -lin bearberry_N = mkN "bearberry" ; -lin beard_N = mkN "beard" "beards"; -- from DictEng -lin beard_V2 = mkV2 (mkV "beard" "beards" "bearded" "bearded" "bearding"); -- from DictEng -lin bearded_A = compoundA (mkA "bearded"); -- from DictEng -lin beardless_A = compoundA (mkA "beardless"); -- from DictEng -lin beardown_A = mkA "beardown" ; -lin bearer_N = mkN "bearer" "bearers"; -- from DictEng -lin bearing_A = mkA "bearing" ; -lin bearing_N = mkN "bearing" "bearings"; -- from DictEng -lin bearish_A = compoundA (mkA "bearish"); -- from DictEng -lin bearnaise_N = mkN "bearnaise" ; -lin bearskin_N = mkN "bearskin" "bearskins"; -- from DictEng -lin beast_N = mkN "beast" "beasts"; -- from DictEng -lin beastliness_N = mkN "beastliness" ; -- from DictEng -lin beastly_A = mkA "beastly" "beastlier"; -- from DictEng -lin beastly_Adv = mkAdv "beastly"; -- from DictEng -lin beat_A = compoundA (mkA "beat"); -- from DictEng -lin beat_N = mkN "beat" "beats"; -- from DictEng -lin beat_V = IrregEng.beat_V; -- from DictEng -lin beat_V2 = mkV2 (IrregEng.beat_V); -- from DictEng -lin beatable_A = mkA "beatable" ; -lin beaten_A = compoundA (mkA "beaten"); -- from DictEng -lin beater_N = mkN "beater" "beaters"; -- from DictEng -lin beatific_A = compoundA (mkA "beatific"); -- from DictEng -lin beatification_N = mkN "beatification" "beatifications"; -- from DictEng -lin beatified_A = mkA "beatified" ; -lin beatify_V2 = mkV2 (mkV "beatify" "beatifies" "beatified" "beatified" "beatifying"); -- from DictEng -lin beating_N = mkN "beating" "beatings"; -- from DictEng -lin beatitude_N = mkN "beatitude" "beatitudes"; -- from DictEng -lin beatnik_N = mkN "beatnik" "beatniks"; -- from DictEng -lin beau_N = mkN "beau" "beaux" {- FIXME: guessed plural form -}; -- from DictEng -lin beaugregory_N = mkN "beaugregory" ; -lin beaujolais_N = mkN "beaujolais" ; -- from DictEng -lin beauteous_A = compoundA (mkA "beauteous"); -- from DictEng -lin beautician_N = mkN "beautician" "beauticians"; -- from DictEng -lin beautification_N = mkN "beautification" ; -lin beautiful_A = compoundA (mkA "beautiful"); -- from DictEng -lin beautifully_Adv = mkAdv "beautifully" ; -lin beautify_V2 = mkV2 (mkV "beautify" "beautifies" "beautified" "beautified" "beautifying"); -- from DictEng -lin beauty_N = mkN "beauty" "beauties"; -- from DictEng -lin beauty_parlour_N = mkN "beauty - parlour" "beauty - parlours"; -- from DictEng -lin beauty_salon_N = mkN "beauty - salon" "beauty - salons"; -- from DictEng -lin beauty_sleep_N = mkN "beauty - sleep" ; -- from DictEng -lin beauty_spot_N = mkN "beauty - spot" "beauty - spots"; -- from DictEng -lin beaver_N = mkN "beaver" "beavers"; -- from DictEng -lin beaver_V = mkV "beaver" "beavers" "beavered" "beavered" "beavering"; -- from DictEng -lin becalmed_A = compoundA (mkA "becalmed"); -- from DictEng -lin because_Subj = mkSubj "because"; -- from DictEng -lin beck_N = mkN "beck" "becks"; -- from DictEng -lin becket_N = mkN "becket" ; -lin beckon_V = mkV "beckon" "beckons" "beckoned" "beckoned" "beckoning"; -- from DictEng -lin beckon_V2 = mkV2 (mkV "beckon" "beckons" "beckoned" "beckoned" "beckoning"); -- from DictEng -lin become_V = IrregEng.become_V; -- from DictEng -lin become_V2 = mkV2 (IrregEng.become_V); -- from DictEng -lin become_VA = mkVA (IrregEng.become_V); -- from DictEng -lin become_VS = mkVS (IrregEng.become_V); -- from DictEng -lin becoming_A = compoundA (mkA "becoming"); -- from DictEng -lin becomingly_Adv = mkAdv "becomingly" ; -lin becomingness_N = mkN "becomingness" ; -lin bed_N = mkN "bed" "beds"; -- from DictEng -lin bed_V2 = mkV2 (mkV "bed" "beds" "bedded" "bedded" "bedding"); -- from DictEng -lin bed_wetting_N = mkN "bed wetting" ; -lin bedaubed_A = compoundA (mkA "bedaubed"); -- from DictEng -lin bedbug_N = mkN "bedbug" "bedbugs"; -- from DictEng -lin bedclothes_N = mkN "bedclothes" ; -lin bedded_A = compoundA (mkA "bedded"); -- from DictEng -lin bedder_N = mkN "bedder" ; -lin bedding_N = mkN "bedding" ; -- from DictEng -lin bedecked_A = compoundA (mkA "bedecked"); -- from DictEng -lin bedevil_V2 = mkV2 (mkV "bedevil" "bedevils" "bedevilled" "bedevilled" "bedevilling"); -- from DictEng -lin bedevilment_N = mkN "bedevilment" "bedevilments"; -- from DictEng -lin bedewed_A = compoundA (mkA "bedewed"); -- from DictEng -lin bedfast_A = mkA "bedfast" ; -lin bedfellow_N = mkN "bedfellow" "bedfellows"; -- from DictEng -lin bedimmed_A = compoundA (mkA "bedimmed"); -- from DictEng -lin bedlam_N = mkN "bedlam" "bedlams"; -- from DictEng -lin bedlamite_N = mkN "bedlamite" ; -lin bedless_A = mkA "bedless" ; -lin bedouin_N = mkN "bedouin" "bedouin"; -- from DictEng -lin bedpan_N = mkN "bedpan" "bedpans"; -- from DictEng -lin bedpost_N = mkN "bedpost" "bedposts"; -- from DictEng -lin bedraggled_A = compoundA (mkA "bedraggled"); -- from DictEng -lin bedrest_N = mkN "bedrest" ; -lin bedridden_A = compoundA (mkA "bedridden"); -- from DictEng -lin bedrock_N = mkN "bedrock" "bedrocks"; -- from DictEng -lin bedroll_N = mkN "bedroll" "bedrolls"; -- from DictEng -lin bedroom_N = mkN "bedroom" "bedrooms"; -- from DictEng -lin bedroomed_A = compoundA (mkA "bedroomed"); -- from DictEng -lin bedside_N = mkN "bedside" "bedsides"; -- from DictEng -lin bedsit_N = mkN "bedsit" "bedsits"; -- from DictEng -lin bedsitter_N = mkN "bedsitter" "bedsitters"; -- from DictEng -lin bedsitting_room_N = mkN "bedsitting - room" "bedsitting - rooms"; -- from DictEng -lin bedsore_N = mkN "bedsore" "bedsores"; -- from DictEng -lin bedspread_N = mkN "bedspread" "bedspreads"; -- from DictEng -lin bedspring_N = mkN "bedspring" ; -lin bedstead_N = mkN "bedstead" "bedsteads"; -- from DictEng -lin bedstraw_N = mkN "bedstraw" ; -lin bedtime_N = mkN "bedtime" "bedtimes"; -- from DictEng -lin beduin_N = mkN "beduin" "beduin"; -- from DictEng -lin bedwetter_N = mkN "bedwetter" ; -lin bee_N = mkN "bee" "bees"; -- from DictEng -lin beebread_N = mkN "beebread" ; -lin beech_N = mkN "beech" "beeches"; -- from DictEng -lin beechen_A = mkA "beechen" ; -lin beechnut_N = mkN "beechnut" ; -lin beef_N = mkN "beef" "beeves" {- FIXME: guessed plural form -}; -- from DictEng -lin beef_V = mkV "beef" "beefs" "beefed" "beefed" "beefing"; -- from DictEng -lin beef_bourguignonne_PN = mkPN "beef Bourguignonne" ; -lin beef_stroganoff_PN = mkPN "beef Stroganoff" ; -lin beef_wellington_PN = mkPN "beef Wellington" ; -lin beefcake_N = mkN "beefcake" ; -lin beefeater_N = mkN "beefeater" "beefeaters"; -- from DictEng -lin beefed_up_A = compoundA (mkA "beefed up") ; -lin beefsteak_N = mkN "beefsteak" "beefsteaks"; -- from DictEng -lin beefwood_N = mkN "beefwood" ; -lin beefy_A = mkA "beefy" "beefier"; -- from DictEng -lin beehive_N = mkN "beehive" "beehives"; -- from DictEng -lin beekeeper_N = mkN "beekeeper" ; -lin beekeeping_N = mkN "beekeeping" ; -lin beeline_N = mkN "beeline" ; -lin beep_N = mkN "beep" "beeps"; -- from DictEng -lin beep_V = mkV "beep" ; -lin beep_V2 = mkV2 (mkV "beep") ; -lin beeper_N = mkN "beeper" ; -lin beer_N = mkN "beer" "beers"; -- from DictEng -lin beery_A = mkA "beery" "beerier"; -- from DictEng -lin beeswax_N = mkN "beeswax" ; -- from DictEng -lin beeswax_V2 = mkV2 (mkV "beeswax" "beeswaxes" "beeswaxed" "beeswaxed" "beeswaxing"); -- from DictEng -lin beet_N = mkN "beet" "beets"; -- from DictEng -lin beetle_A = mkA "beetle" ; -lin beetle_N = mkN "beetle" "beetles"; -- from DictEng -lin beetle_V = mkV "beetle" "beetles" "beetled" "beetled" "beetling"; -- from DictEng -lin beetle_browed_A = compoundA (mkA "beetle - browed"); -- from DictEng -lin beetle_browed_A = compoundA (mkA "beetle - browed"); -- from DictEng -lin beetroot_N = mkN "beetroot" "beetroots"; -- from DictEng -lin befall_V = mkV "be" IrregEng.fall_V; -- from DictEng -lin befall_V2 = mkV2 (mkV "be" IrregEng.fall_V); -- from DictEng -lin befit_V2 = mkV2 (mkV "befit" "befits" "befitted" "befitted" "befitting"); -- from DictEng -lin befitting_A = compoundA (mkA "befitting"); -- from DictEng -lin befogged_A = compoundA (mkA "befogged"); -- from DictEng -lin before_Adv = mkAdv "before"; -- from DictEng -lin before_Prep = mkPrep "before"; -- from DictEng -lin beforehand_A = compoundA (mkA "beforehand"); -- from DictEng -lin beforehand_Adv = mkAdv "beforehand"; -- from DictEng -lin befoul_V2 = mkV2 (mkV "befoul" "befouls" "befouled" "befouled" "befouling"); -- from DictEng -lin befouled_A = mkA "befouled" ; -lin befoulment_N = mkN "befoulment" ; -lin befriend_V = mkV "befriend" ; -lin befriend_V2 = mkV2 (mkV "befriend" "befriends" "befriended" "befriended" "befriending"); -- from DictEng -lin befuddle_V2 = mkV2 (mkV "befuddle") ; -lin beg_V = mkV "beg" "begs" "begged" "begged" "begging"; -- from DictEng -lin beg_V2 = mkV2 (mkV "beg" "begs" "begged" "begged" "begging"); -- from DictEng -lin beg_VS = mkVS (mkV "beg" ); -lin beget_V2 = mkV2 (mkV "be" IrregEng.get_V); -- from DictEng -lin begetter_N = mkN "begetter" "begetters"; -- from DictEng -lin beggar_N = mkN "beggar" "beggars"; -- from DictEng -lin beggar_V2 = mkV2 (mkV "beggar" "beggars" "beggared" "beggared" "beggaring"); -- from DictEng -lin beggar_my_neighbor_N = mkN "beggar my neighbor" ; -lin beggarly_A = compoundA (mkA "beggarly"); -- from DictEng -lin beggarman_N = mkN "beggarman" "beggarmen" {- FIXME: guessed plural form -}; -- from DictEng -lin beggarweed_N = mkN "beggarweed" ; -lin beggarwoman_N = mkN "beggarwoman" "beggarwomen" {- FIXME: guessed plural form -}; -- from DictEng -lin beggary_N = mkN "beggary" ; -- from DictEng -lin begin_V = IrregEng.begin_V; -- from DictEng -lin begin_V2 = mkV2 (IrregEng.begin_V); -- from DictEng -lin begin_VV = ingVV (IrregEng.begin_V); -- from DictEng -lin beginner_N = mkN "beginner" "beginners"; -- from DictEng -lin beginning_A = mkA "beginning" ; -lin beginning_N = mkN "beginning" "beginnings"; -- from DictEng -lin begonia_N = mkN "begonia" "begonias"; -- from DictEng -lin begotten_A = mkA "begotten" ; -lin begrimed_A = compoundA (mkA "begrimed"); -- from DictEng -lin begrudge_V2 = mkV2 (mkV "begrudge" "begrudges" "begrudged" "begrudged" "begrudging"); -- from DictEng -lin beguile_V2 = mkV2 (mkV "beguile" "beguiles" "beguiled" "beguiled" "beguiling"); -- from DictEng -lin beguiled_A = mkA "beguiled" ; -lin beguilement_N = mkN "beguilement" ; -lin beguiling_A = mkA "beguiling" ; -lin beguine_N = mkN "beguine" ; -lin begum_N = mkN "begum" "begums"; -- from DictEng -lin behalf_N = mkN "behalf" "behalves" {- FIXME: guessed plural form -}; -- from DictEng -lin behave_V = mkV "behave" "behaves" "behaved" "behaved" "behaving"; -- from DictEng -lin behaved_A = compoundA (mkA "behaved"); -- from DictEng -lin behavior_N = mkN "behavior" ; -lin behavioral_A = mkA "behavioral" ; -lin behaviorism_N = mkN "behaviorism" ; -lin behaviorist_N = mkN "behaviorist" ; -lin behavioristic_A = mkA "behavioristic" ; -lin behaviour_N = mkN "behaviour" ; -- from DictEng -lin behaviourism_N = mkN "behaviourism" ; -- from DictEng -lin behaviourist_N = mkN "behaviourist" "behaviourists"; -- from DictEng -lin behead_V2 = mkV2 (mkV "behead" "beheads" "beheaded" "beheaded" "beheading"); -- from DictEng -lin beheaded_A = mkA "beheaded" ; -lin behest_N = mkN "behest" "behests"; -- from DictEng -lin behind_A = mkA "behind" ; -lin behind_Adv = mkAdv "behind"; -- from DictEng -lin behind_N = mkN "behind" "behinds"; -- from DictEng -lin behind_Prep = mkPrep "behind"; -- from DictEng -lin behindhand_A = compoundA (mkA "behindhand"); -- from DictEng -lin behold_V2 = mkV2 (mkV "be" IrregEng.hold_V); -- from DictEng -lin beholden_A = compoundA (mkA "beholden"); -- from DictEng -lin beholder_N = mkN "beholder" "beholders"; -- from DictEng -lin behove_V2 = mkV2 (mkV "behove" "behoves" "behoved" "behoved" "behoving"); -- from DictEng -lin beige_A = mkA "beige" ; -lin beige_N = mkN "beige" ; -- from DictEng -lin being_N = mkN "being" "beings"; -- from DictEng -lin bejewelled_A = compoundA (mkA "bejewelled"); -- from DictEng -lin belabour_V2 = mkV2 (mkV "belabour" "belabours" "belaboured" "belaboured" "belabouring"); -- from DictEng -lin belated_A = compoundA (mkA "belated"); -- from DictEng -lin belay_N = mkN "belay" "belays"; -- from DictEng -lin belay_V2 = mkV2 (mkV "belay" "belays" "belayed" "belayed" "belaying"); -- from DictEng -lin belaying_pin_N = mkN "belaying - pin" "belaying - pins"; -- from DictEng -lin belch_N = mkN "belch" "belches"; -- from DictEng -lin belch_V = mkV "belch" "belches" "belched" "belched" "belching"; -- from DictEng -lin belch_V2 = mkV2 (mkV "belch" "belches" "belched" "belched" "belching"); -- from DictEng -lin belching_N = mkN "belching" ; -lin beldam_N = mkN "beldam" "beldams"; -- from DictEng -lin beldame_N = mkN "beldame" "beldames"; -- from DictEng -lin beleaguer_V2 = mkV2 (mkV "beleaguer" "beleaguers" "beleaguered" "beleaguered" "beleaguering"); -- from DictEng -lin belemnite_N = mkN "belemnite" ; -lin belemnitic_A = mkA "belemnitic" ; -lin belfry_N = mkN "belfry" "belfries"; -- from DictEng -lin belgian_A = compoundA (mkA "belgian"); -- from DictEng -lin belgian_N = mkN "belgian" "belgians"; -- from DictEng -lin belie_V2 = mkV2 (mkV "be" IrregEng.lie_V); -- from DictEng -lin belief_N = mkN "belief" "beliefs"; -- from DictEng -lin believable_A = compoundA (mkA "believable"); -- from DictEng -lin believably_Adv = mkAdv "believably" ; -lin believe_V = mkV "believe" "believes" "believed" "believed" "believing"; -- from DictEng -lin believe_V2 = mkV2 (mkV "believe" "believes" "believed" "believed" "believing"); -- from DictEng -lin believe_V2V = mkV2V (mkV "believe" "believes" "believed" "believed" "believing") noPrep to_Prep ; -- from DictEng -lin believe_VS = mkVS (mkV "believe" "believes" "believed" "believed" "believing"); -- from DictEng -lin believer_N = mkN "believer" "believers"; -- from DictEng -lin believing_N = mkN "believing" ; -- from DictEng -lin belike_Adv = mkAdv "belike"; -- from DictEng -lin belittle_V2 = mkV2 (mkV "belittle" "belittles" "belittled" "belittled" "belittling"); -- from DictEng -lin belittled_A = mkA "belittled" ; -lin belittling_A = mkA "belittling" ; -lin belittling_N = mkN "belittling" ; -lin bell_N = mkN "bell" "bells"; -- from DictEng -lin bell_V2 = mkV2 (mkV "bell" "bells" "belled" "belled" "belling"); -- from DictEng -lin bell_bottomed_A = compoundA (mkA "bell - bottomed"); -- from DictEng -lin bell_shaped_A = compoundA (mkA "bell shaped") ; -lin bell_bottomed_A = compoundA (mkA "bell - bottomed"); -- from DictEng -lin bell_buoy_N = mkN "bell - buoy" "bell - buoys"; -- from DictEng -lin bell_flower_N = mkN "bell - flower" "bell - flowers"; -- from DictEng -lin bell_founder_N = mkN "bell - founder" "bell - founders"; -- from DictEng -lin bell_foundry_N = mkN "bell - foundry" "bell - foundries"; -- from DictEng -lin bell_metal_N = mkN "bell - metal" ; -- from DictEng -lin bell_push_N = mkN "bell - push" "bell - pushes"; -- from DictEng -lin bell_ringer_N = mkN "bell - ringer" "bell - ringers"; -- from DictEng -lin bell_tent_N = mkN "bell - tent" "bell - tents"; -- from DictEng -lin belladonna_N = mkN "belladonna" "belladonnas"; -- from DictEng -lin bellarmine_N = mkN "bellarmine" ; -lin bellbird_N = mkN "bellbird" ; -lin bellboy_N = mkN "bellboy" "bellboys"; -- from DictEng -lin belle_N = mkN "belle" "belles"; -- from DictEng -lin belles_lettres_N = mkN "belles lettres" ; -lin belletristic_A = mkA "belletristic" ; -lin bellhop_N = mkN "bellhop" "bellhops"; -- from DictEng -lin bellicose_A = compoundA (mkA "bellicose"); -- from DictEng -lin bellicosity_N = mkN "bellicosity" ; -lin bellied_A = compoundA (mkA "bellied"); -- from DictEng -lin belligerence_N = mkN "belligerence" ; -lin belligerency_N = mkN "belligerency" ; -- from DictEng -lin belligerent_A = compoundA (mkA "belligerent"); -- from DictEng -lin belligerent_N = mkN "belligerent" "belligerents"; -- from DictEng -lin belligerently_Adv = mkAdv "belligerently" ; -lin bellow_N = mkN "bellow" ; -lin bellow_V = mkV "bellow" "bellows" "bellowed" "bellowed" "bellowing"; -- from DictEng -lin bellow_V2 = mkV2 (mkV "bellow" "bellows" "bellowed" "bellowed" "bellowing"); -- from DictEng -lin bellows_N = mkN "bellows" ; -lin bellpull_N = mkN "bellpull" ; -lin bellwether_N = mkN "bellwether" "bellwethers"; -- from DictEng -lin bellwort_N = mkN "bellwort" ; -lin belly_N = mkN "belly" "bellies"; -- from DictEng -lin belly_V = mkV "belly" "bellies" "bellied" "bellied" "bellying"; -- from DictEng -lin belly_V2 = mkV2 (mkV "belly" "bellies" "bellied" "bellied" "bellying"); -- from DictEng -lin bellyache_N = mkN "bellyache" "bellyaches"; -- from DictEng -lin bellyache_V = mkV "bellyache" "bellyaches" "bellyached" "bellyached" "bellyaching"; -- from DictEng -lin bellyband_N = mkN "bellyband" ; -lin bellyflop_N = mkN "bellyflop" "bellyflops"; -- from DictEng -lin bellyful_N = mkN "bellyful" "bellyfuls"; -- from DictEng -lin bellyland_V = mkV "bellyland" "bellylands" "bellylanded" "bellylanded" "bellylanding"; -- from DictEng -lin bellylaugh_N = mkN "bellylaugh" "bellylaughs"; -- from DictEng -lin bellylaugh_V = mkV "bellylaugh" "bellylaughs" "bellylaughed" "bellylaughed" "bellylaughing"; -- from DictEng -lin bellyless_A = mkA "bellyless" ; -lin belong_V = mkV "belong" "belongs" "belonged" "belonged" "belonging"; -- from DictEng -lin belonging_N = mkN "belonging" ; -lin beloved_A = compoundA (mkA "beloved"); -- from DictEng -lin beloved_N = mkN "beloved" "beloveds"; -- from DictEng -lin below_Adv = mkAdv "below"; -- from DictEng -lin below_Prep = mkPrep "below"; -- from DictEng -lin below_the_belt_A = compoundA (mkA "below the belt") ; -lin belowground_A = mkA "belowground" ; -lin belt_N = mkN "belt" "belts"; -- from DictEng -lin belt_V2 = mkV2 (mkV "belt" "belts" "belted" "belted" "belting"); -- from DictEng -lin belt_fed_A = compoundA (mkA "belt fed") ; -lin belt_shaped_A = compoundA (mkA "belt shaped") ; -lin belted_A = mkA "belted" ; -lin belting_N = mkN "belting" "beltings"; -- from DictEng -lin beltlike_A = mkA "beltlike" ; -lin beltway_N = mkN "beltway" ; -lin beluga_N = mkN "beluga" ; -lin belvedere_N = mkN "belvedere" ; -lin bemoan_V2 = mkV2 (mkV "bemoan" "bemoans" "bemoaned" "bemoaned" "bemoaning"); -- from DictEng -lin bemused_A = compoundA (mkA "bemused"); -- from DictEng -lin ben_N = mkN "ben" "bens"; -- from DictEng -lin bench_N = mkN "bench" "benches"; -- from DictEng -lin benchmark_N = mkN "benchmark" ; -lin bend_N = mkN "bend" "bends"; -- from DictEng -lin bend_V = mkV "bend" "bends" "bended" "bended" "bending"; -- from DictEng -lin bend_V2 = mkV2 (mkV "bend" "bends" "bended" "bended" "bending"); -- from DictEng -lin bendability_N = mkN "bendability" ; -lin bendable_A = mkA "bendable" ; -lin bended_A = mkA "bended" ; -lin bender_N = mkN "bender" ; -lin bending_N = mkN "bending" ; -lin beneath_Adv = mkAdv "beneath"; -- from DictEng -lin beneath_Prep = mkPrep "beneath"; -- from DictEng -lin benedick_N = mkN "benedick" "benedicks"; -- from DictEng -lin benedictine_A = compoundA (mkA "benedictine"); -- from DictEng -lin benedictine_N = mkN "benedictine" "benedictines"; -- from DictEng -lin benediction_N = mkN "benediction" "benedictions"; -- from DictEng -lin benedictory_A = mkA "benedictory" ; -lin benefaction_N = mkN "benefaction" "benefactions"; -- from DictEng -lin benefactor_N = mkN "benefactor" "benefactors"; -- from DictEng -lin benefactress_N = mkN "benefactress" "benefactresses"; -- from DictEng -lin benefic_A = mkA "benefic" ; -lin benefice_N = mkN "benefice" "benefices"; -- from DictEng -lin beneficed_A = compoundA (mkA "beneficed"); -- from DictEng -lin beneficence_N = mkN "beneficence" ; -- from DictEng -lin beneficent_A = compoundA (mkA "beneficent"); -- from DictEng -lin beneficial_A = compoundA (mkA "beneficial"); -- from DictEng -lin beneficially_Adv = mkAdv "beneficially" ; -lin beneficiary_A = mkA "beneficiary" ; -lin beneficiary_N = mkN "beneficiary" "beneficiaries"; -- from DictEng -lin benefit_N = mkN "benefit" "benefits"; -- from DictEng -lin benefit_V = mkV "benefit" "benefits" "benefited" "benefited" "benefiting"; -- from DictEng -lin benefit_V2 = mkV2 (mkV "benefit" "benefits" "benefited" "benefited" "benefiting"); -- from DictEng -lin benevolence_N = mkN "benevolence" ; -- from DictEng -lin benevolent_A = compoundA (mkA "benevolent"); -- from DictEng -lin benevolently_Adv = mkAdv "benevolently" ; -lin bengali_A = compoundA (mkA "bengali"); -- from DictEng -lin bengali_N = mkN "bengali" "bengalis"; -- from DictEng -lin benighted_A = compoundA (mkA "benighted"); -- from DictEng -lin benign_A = compoundA (mkA "benign"); -- from DictEng -lin benignant_A = compoundA (mkA "benignant"); -- from DictEng -lin benignity_N = mkN "benignity" "benignities"; -- from DictEng -lin benignly_Adv = mkAdv "benignly" ; -lin beninese_A = compoundA (mkA "beninese"); -- from DictEng -lin beninese_N = mkN "beninese" "beninese"; -- from DictEng -lin benison_N = mkN "benison" "benisons"; -- from DictEng -lin bennet_N = mkN "bennet" ; -lin bent_A = compoundA (mkA "bent"); -- from DictEng -lin bent_N = mkN "bent" "bents"; -- from DictEng -lin benthic_A = mkA "benthic" ; -lin benthos_N = mkN "benthos" ; -lin bentonite_N = mkN "bentonite" ; -lin bentonitic_A = mkA "bentonitic" ; -lin bentwood_N = mkN "bentwood" ; -lin benumbed_A = compoundA (mkA "benumbed"); -- from DictEng -lin benzedrine_N = mkN "benzedrine" "benzedrines"; -- from DictEng -lin benzene_N = mkN "benzene" ; -- from DictEng -lin benzenoid_A = mkA "benzenoid" ; -lin benzine_N = mkN "benzine" ; -- from DictEng -lin benzoate_N = mkN "benzoate" ; -lin benzocaine_N = mkN "benzocaine" ; -lin benzodiazepine_N = mkN "benzodiazepine" ; -lin benzofuran_N = mkN "benzofuran" ; -lin benzoic_A = mkA "benzoic" ; -lin benzoin_N = mkN "benzoin" ; -lin benzol_N = mkN "benzol" ; -- from DictEng -lin benzyl_N = mkN "benzyl" ; -lin benzylic_A = mkA "benzylic" ; -lin bequeath_V2 = mkV2 (mkV "bequeath" "bequeaths" "bequeathed" "bequeathed" "bequeathing"); -- from DictEng -lin bequest_N = mkN "bequest" "bequests"; -- from DictEng -lin berate_V2 = mkV2 (mkV "berate" "berates" "berated" "berated" "berating"); -- from DictEng -lin berating_N = mkN "berating" ; -lin bereave_V2 = mkV2 (mkV "bereave" "bereaves" "bereaved" "bereaved" "bereaving"); -- from DictEng -lin bereaved_A = mkA "bereaved" ; -lin bereaved_N = mkN "bereaved" ; -lin bereavement_N = mkN "bereavement" "bereavements"; -- from DictEng -lin bereft_A = mkA "bereft" ; -lin beret_N = mkN "beret" "berets"; -- from DictEng -lin berg_N = mkN "berg" "bergs"; -- from DictEng -lin bergamot_N = mkN "bergamot" ; -lin bergenia_N = mkN "bergenia" ; -lin beri_beri_N = mkN "beri - beri" ; -- from DictEng -lin beriberi_N = mkN "beriberi" ; -lin berk_N = mkN "berk" ; -lin berkelium_N = mkN "berkelium" ; -lin berlin_N = mkN "berlin" ; -lin berm_N = mkN "berm" ; -lin bermudan_A = compoundA (mkA "bermudan"); -- from DictEng -lin bermudan_N = mkN "bermudan" "bermudans"; -- from DictEng -lin beroe_N = mkN "beroe" ; -lin berried_A = mkA "berried" ; -lin berry_N = mkN "berry" "berries"; -- from DictEng -lin berry_V = mkV "berry" ; -lin berserk_A = compoundA (mkA "berserk"); -- from DictEng -lin berserker_N = mkN "berserker" ; -lin berth_N = mkN "berth" "berths"; -- from DictEng -lin berth_V = mkV "berth" "berths" "berthed" "berthed" "berthing"; -- from DictEng -lin berth_V2 = mkV2 (mkV "berth" "berths" "berthed" "berthed" "berthing"); -- from DictEng -lin beryl_N = mkN "beryl" "beryls"; -- from DictEng -lin beryllium_N = mkN "beryllium" ; -lin beseech_V2 = mkV2 (mkV "beseech" "beseeches" "beseeched" "beseeched" "beseeching"); -- from DictEng -lin beseeching_A = compoundA (mkA "beseeching"); -- from DictEng -lin beseechingly_Adv = mkAdv "beseechingly" ; -lin beseem_V2 = mkV2 (mkV "beseem" "beseems" "beseemed" "beseemed" "beseeming"); -- from DictEng -lin beset_V2 = mkV2 (IrregEng.beset_V); -- from DictEng -lin beshrew_V2 = mkV2 (mkV "beshrew" "beshrews" "beshrewed" "beshrewed" "beshrewing"); -- from DictEng -lin beside_Prep = mkPrep "beside"; -- from DictEng -lin besides_Adv = mkAdv "besides"; -- from DictEng -lin besides_Prep = mkPrep "besides"; -- from DictEng -lin besiege_V2 = mkV2 (mkV "besiege" "besieges" "besieged" "besieged" "besieging"); -- from DictEng -lin besieged_A = mkA "besieged" ; -lin besieger_N = mkN "besieger" "besiegers"; -- from DictEng -lin besmear_V2 = mkV2 (mkV "besmear" "besmears" "besmeared" "besmeared" "besmearing"); -- from DictEng -lin besmirch_V2 = mkV2 (mkV "besmirch" "besmirches" "besmirched" "besmirched" "besmirching"); -- from DictEng -lin besom_N = mkN "besom" "besoms"; -- from DictEng -lin besotted_A = compoundA (mkA "besotted"); -- from DictEng -lin bespangled_A = compoundA (mkA "bespangled"); -- from DictEng -lin bespattered_A = compoundA (mkA "bespattered"); -- from DictEng -lin bespeak_V2 = mkV2 (mkV "be" IrregEng.speak_V); -- from DictEng -lin bespectacled_A = compoundA (mkA "bespectacled"); -- from DictEng -lin bespoke_A = mkA "bespoke" ; -lin bespoken_A = mkA "bespoken" ; -lin besprent_A = mkA "besprent" ; -lin best_A = mkA "best" ; -lin best_Adv = mkAdv "best"; -- from DictEng -lin best_N = mkN "best" ; -lin best_V2 = mkV2 (mkV "best" "bests" "bested" "bested" "besting"); -- from DictEng -lin best_known_A = compoundA (mkA "best known") ; -lin best_selling_A = compoundA (mkA "best selling") ; -lin best_of_all_Adv = mkAdv "best of all" ; -lin best_seller_N = mkN "best - seller" "best - sellers"; -- from DictEng -lin bestial_A = compoundA (mkA "bestial"); -- from DictEng -lin bestiality_N = mkN "bestiality" "bestialities"; -- from DictEng -lin bestially_Adv = mkAdv "bestially" ; -lin bestiary_N = mkN "bestiary" "bestiaries"; -- from DictEng -lin bestir_V2 = mkV2 (mkV "bestir" "bestirs" "bestirred" "bestirred" "bestirring"); -- from DictEng -lin bestow_V2 = mkV2 (mkV "bestow" "bestows" "bestowed" "bestowed" "bestowing"); -- from DictEng -lin bestowal_N = mkN "bestowal" "bestowals"; -- from DictEng -lin bestrew_V2 = mkV2 (mkV "bestrew" "bestrews" "bestrewed" "bestrewed" "bestrewing"); -- from DictEng -lin bestride_V2 = mkV2 (mkV "be" IrregEng.stride_V); -- from DictEng -lin bestubbled_A = mkA "bestubbled" ; -lin bet_N = mkN "bet" "bets"; -- from DictEng -lin bet_V = mkV "bet" "bets" "betted" "betted" "betting"; -- from DictEng -lin bet_V2 = mkV2 (mkV "bet" "bets" "betted" "betted" "betting"); -- from DictEng -lin bet_VS = mkVS (mkV "bet" "bets" "betted" "betted" "betting"); -- from DictEng -lin beta_A = mkA "beta" ; -lin beta_N = mkN "beta" "betas"; -- from DictEng -lin beta_carotene_N = mkN "beta carotene" ; -lin beta_interferon_N = mkN "beta interferon" ; -lin beta_naphthol_N = mkN "beta naphthol" ; -lin betaine_N = mkN "betaine" ; -lin betake_V2 = mkV2 (mkV "be" IrregEng.take_V); -- from DictEng -lin betatron_N = mkN "betatron" ; -lin bete_noire_N = mkN "bête noire" "IRREG"; -- from DictEng -lin betel_N = mkN "betel" "betels"; -- from DictEng -lin betel_nut_N = mkN "betel - nut" "betel - nuts"; -- from DictEng -lin beth_N = mkN "beth" ; -lin bethel_N = mkN "bethel" "bethels"; -- from DictEng -lin bethink_V2 = mkV2 (mkV "be" IrregEng.think_V); -- from DictEng -lin betide_V2 = mkV2 (mkV "betide" "betides" "betided" "betided" "betiding"); -- from DictEng -lin betimes_Adv = mkAdv "betimes"; -- from DictEng -lin betoken_V2 = mkV2 (mkV "betoken" "betokens" "betokened" "betokened" "betokening"); -- from DictEng -lin betray_V2 = mkV2 (mkV "betray" "betrays" "betrayed" "betrayed" "betraying"); -- from DictEng -lin betrayal_N = mkN "betrayal" "betrayals"; -- from DictEng -lin betrayer_N = mkN "betrayer" "betrayers"; -- from DictEng -lin betroth_V2 = mkV2 (mkV "betroth" "betroths" "betrothed" "betrothed" "betrothing"); -- from DictEng -lin betrothal_N = mkN "betrothal" "betrothals"; -- from DictEng -lin betrothed_N = mkN "betrothed" "betrotheds"; -- from DictEng -lin better_A = mkA "better" ; -lin better_Adv = mkAdv "better"; -- from DictEng -lin better_N = mkN "better" "betters"; -- from DictEng -lin better_V2 = mkV2 (mkV "better" "betters" "bettered" "bettered" "bettering"); -- from DictEng -lin better_known_A = compoundA (mkA "better known") ; -lin better_off_A = compoundA (mkA "better off") ; -lin bettering_A = mkA "bettering" ; -lin betterment_N = mkN "betterment" ; -- from DictEng -lin bettong_N = mkN "bettong" ; -lin bettor_N = mkN "bettor" "bettors"; -- from DictEng -lin betulaceous_A = mkA "betulaceous" ; -lin between_Adv = mkAdv "between"; -- from DictEng -lin between_Prep = mkPrep "between"; -- from DictEng -lin between_decks_Adv = mkAdv "between decks" ; -lin betwixt_Prep = mkPrep "betwixt"; -- from DictEng -lin bevatron_N = mkN "bevatron" ; -lin bevel_N = mkN "bevel" "bevels"; -- from DictEng -lin bevel_V2 = mkV2 (mkV "bevel" "bevels" "bevelled" "bevelled" "bevelling"); -- from DictEng -lin beverage_N = mkN "beverage" "beverages"; -- from DictEng -lin bevy_N = mkN "bevy" "bevies"; -- from DictEng -lin bewail_V2 = mkV2 (mkV "bewail" "bewails" "bewailed" "bewailed" "bewailing"); -- from DictEng -lin beware_V = mkV "beware" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin beware_V2 = mkV2 (mkV "beware" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin bewilder_V2 = mkV2 (mkV "bewilder" "bewilders" "bewildered" "bewildered" "bewildering"); -- from DictEng -lin bewilderedly_Adv = mkAdv "bewilderedly" ; -lin bewildering_A = compoundA (mkA "bewildering"); -- from DictEng -lin bewilderingly_Adv = mkAdv "bewilderingly" ; -lin bewilderment_N = mkN "bewilderment" ; -- from DictEng -lin bewitch_V2 = mkV2 (mkV "bewitch" "bewitches" "bewitched" "bewitched" "bewitching"); -- from DictEng -lin bewitched_A = mkA "bewitched" ; -lin bewitchery_N = mkN "bewitchery" ; -lin bewitching_A = compoundA (mkA "bewitching"); -- from DictEng -lin bewitchingly_Adv = mkAdv "bewitchingly" ; -lin bey_N = mkN "bey" "beys"; -- from DictEng -lin beyond_Adv = mkAdv "beyond"; -- from DictEng -lin beyond_Prep = mkPrep "beyond"; -- from DictEng -lin beyond_doubt_A = compoundA (mkA "beyond doubt") ; -lin beyond_measure_Adv = mkAdv "beyond measure" ; -lin bezant_N = mkN "bezant" ; -lin bezel_N = mkN "bezel" ; -lin bezique_N = mkN "bezique" ; -- from DictEng -lin bhakti_N = mkN "bhakti" ; -lin bhang_N = mkN "bhang" "bhangs"; -- from DictEng -lin bhutani_A = compoundA (mkA "bhutani"); -- from DictEng -lin bhutani_N = mkN "bhutani" "bhutanis"; -- from DictEng -lin bialy_N = mkN "bialy" ; -lin biannually_Adv = mkAdv "biannually" ; -lin bias_A = mkA "bias" ; -lin bias_N = mkN "bias" "biases"; -- from DictEng -lin bias_V2 = mkV2 (mkV "bias" "biases" "biased" "biased" "biasing"); -- from DictEng -lin biased_A = mkA "biased" ; -lin biauricular_A = mkA "biauricular" ; -lin biaxial_A = mkA "biaxial" ; -lin bib_N = mkN "bib" "bibs"; -- from DictEng -lin bib_V = mkV "bib" "bibs" "bibbed" "bibbed" "bibbing"; -- from DictEng -lin bib_and_tucker_N = mkN "bib and tucker" ; -lin bibbed_A = mkA "bibbed" ; -lin bible_N = mkN "bible" "bibles"; -- from DictEng -lin bibless_A = mkA "bibless" ; -lin biblical_A = compoundA (mkA "biblical"); -- from DictEng -lin bibliographer_N = mkN "bibliographer" "bibliographers"; -- from DictEng -lin bibliographic_A = mkA "bibliographic" ; -lin bibliography_N = mkN "bibliography" "bibliographies"; -- from DictEng -lin bibliolatrous_A = mkA "bibliolatrous" ; -lin bibliolatry_N = mkN "bibliolatry" ; -lin bibliomania_N = mkN "bibliomania" ; -lin bibliomaniacal_A = mkA "bibliomaniacal" ; -lin bibliophile_N = mkN "bibliophile" "bibliophiles"; -- from DictEng -lin bibliophilic_A = mkA "bibliophilic" ; -lin bibliopole_N = mkN "bibliopole" ; -lin bibliopolic_A = mkA "bibliopolic" ; -lin bibliotheca_N = mkN "bibliotheca" ; -lin bibliothecal_A = mkA "bibliothecal" ; -lin bibliotic_A = mkA "bibliotic" ; -lin bibliotics_N = mkN "bibliotics" ; -lin bibliotist_N = mkN "bibliotist" ; -lin bibulous_A = compoundA (mkA "bibulous"); -- from DictEng -lin bicameral_A = compoundA (mkA "bicameral"); -- from DictEng -lin bicapsular_A = mkA "bicapsular" ; -lin bicarbonate_N = mkN "bicarbonate" ; -- from DictEng -lin bicentenary_N = mkN "bicentenary" "bicentenaries"; -- from DictEng -lin bicentennial_A = compoundA (mkA "bicentennial"); -- from DictEng -lin bicentennial_N = mkN "bicentennial" "bicentennials"; -- from DictEng -lin bicentric_A = mkA "bicentric" ; -lin bicephalous_A = mkA "bicephalous" ; -lin biceps_N = mkN "biceps" "biceps"; -- from DictEng -lin bichromate_N = mkN "bichromate" ; -lin bichromated_A = mkA "bichromated" ; -lin bicipital_A = mkA "bicipital" ; -lin bicker_N = mkN "bicker" ; -lin bicker_V = mkV "bicker" "bickers" "bickered" "bickered" "bickering"; -- from DictEng -lin bicolor_A = mkA "bicolor" ; -lin biconcave_A = mkA "biconcave" ; -lin biconvex_A = mkA "biconvex" ; -lin bicorn_A = mkA "bicorn" ; -lin bicorn_N = mkN "bicorn" ; -lin bicuspid_A = mkA "bicuspid" ; -lin bicycle_N = mkN "bicycle" "bicycles"; -- from DictEng -lin bicycle_V = mkV "bicycle" "bicycles" "bicycled" "bicycled" "bicycling"; -- from DictEng -lin bicycle_built_for_two_N = mkN "bicycle built for two" ; -lin bicyclic_A = mkA "bicyclic" ; -lin bicycling_N = mkN "bicycling" ; -lin bicylindrical_A = mkA "bicylindrical" ; -lin bid_N = mkN "bid" "bids"; -- from DictEng -lin bid_V = IrregEng.bid_V; -- from DictEng -lin bid_V2 = mkV2 (IrregEng.bid_V); -- from DictEng -lin biddable_A = compoundA (mkA "biddable"); -- from DictEng -lin bidder_N = mkN "bidder" "bidders"; -- from DictEng -lin bidding_N = mkN "bidding" ; -- from DictEng -lin bide_V2 = mkV2 (mkV "bide" "bides" "bided" "bided" "biding"); -- from DictEng -lin bidentate_A = mkA "bidentate" ; -lin bidet_N = mkN "bidet" "bidets"; -- from DictEng -lin bidirectional_A = mkA "bidirectional" ; -lin biennial_A = compoundA (mkA "biennial"); -- from DictEng -lin biennial_N = mkN "biennial" "biennials"; -- from DictEng -lin biennially_Adv = mkAdv "biennially" ; -lin bier_N = mkN "bier" "biers"; -- from DictEng -lin biface_A = mkA "biface" ; -lin biff_N = mkN "biff" "biffs"; -- from DictEng -lin biff_V2 = mkV2 (mkV "biff" "biffs" "biffed" "biffed" "biffing"); -- from DictEng -lin bifid_A = mkA "bifid" ; -lin bifilar_A = mkA "bifilar" ; -lin biflagellate_A = mkA "biflagellate" ; -lin bifocal_A = compoundA (mkA "bifocal"); -- from DictEng -lin bifocals_N = mkN "bifocals" ; -lin bifoliate_A = mkA "bifoliate" ; -lin biform_A = mkA "biform" ; -lin bifurcate_A = compoundA (mkA "bifurcate"); -- from DictEng -lin bifurcate_V = mkV "bifurcate" "bifurcates" "bifurcated" "bifurcated" "bifurcating"; -- from DictEng -lin bifurcate_V2 = mkV2 (mkV "bifurcate" "bifurcates" "bifurcated" "bifurcated" "bifurcating"); -- from DictEng -lin bifurcated_A = compoundA (mkA "bifurcated"); -- from DictEng -lin bifurcation_N = mkN "bifurcation" "bifurcations"; -- from DictEng -lin big_A = mkA "big" "bigger*"; -- from DictEng -lin big_Adv = mkAdv "big" ; -lin big_bellied_A = compoundA (mkA "big bellied") ; -lin big_boned_A = compoundA (mkA "big - boned"); -- from DictEng -lin big_chested_A = compoundA (mkA "big chested") ; -lin big_shouldered_A = compoundA (mkA "big shouldered") ; -lin big_ticket_A = compoundA (mkA "big ticket") ; -lin big_h_PN = mkPN "big H" ; -lin big_boned_A = compoundA (mkA "big - boned"); -- from DictEng -lin bigamist_N = mkN "bigamist" "bigamists"; -- from DictEng -lin bigamous_A = compoundA (mkA "bigamous"); -- from DictEng -lin bigamy_N = mkN "bigamy" ; -- from DictEng -lin bigeminal_A = mkA "bigeminal" ; -lin bigeneric_A = mkA "bigeneric" ; -lin bigeye_N = mkN "bigeye" ; -lin bigger_A = mkA "bigger" ; -lin biggin_N = mkN "biggin" ; -lin biggish_A = mkA "biggish" ; -lin bighead_N = mkN "bighead" ; -lin bigheaded_A = mkA "bigheaded" ; -lin bigheartedness_N = mkN "bigheartedness" ; -lin bighorn_N = mkN "bighorn" ; -lin bight_N = mkN "bight" "bights"; -- from DictEng -lin bigmouthed_A = mkA "bigmouthed" ; -lin bignoniaceous_A = mkA "bignoniaceous" ; -lin bignoniad_N = mkN "bignoniad" ; -lin bigos_N = mkN "bigos" ; -lin bigot_N = mkN "bigot" "bigots"; -- from DictEng -lin bigoted_A = compoundA (mkA "bigoted"); -- from DictEng -lin bigotry_N = mkN "bigotry" "bigotries"; -- from DictEng -lin bigram_N = mkN "bigram" ; -lin bigwig_N = mkN "bigwig" "bigwigs"; -- from DictEng -lin bijou_A = compoundA (mkA "bijou"); -- from DictEng -lin bijou_N = mkN "bijou"; -- from DictEng -lin bike_N = mkN "bike" "bikes"; -- from DictEng -lin bike_V = mkV "bike" "bikes" "biked" "biked" "biking"; -- from DictEng -lin bike_V2 = mkV2 (mkV "bike") ; -lin bikini_N = mkN "bikini" "bikinis"; -- from DictEng -lin bilabial_A = compoundA (mkA "bilabial"); -- from DictEng -lin bilabial_N = mkN "bilabial" "bilabials"; -- from DictEng -lin bilabiate_A = mkA "bilabiate" ; -lin bilateral_A = compoundA (mkA "bilateral"); -- from DictEng -lin bilateralism_N = mkN "bilateralism" "bilateralisms"; -- from DictEng -lin bilaterality_N = mkN "bilaterality" ; -lin bilaterally_Adv = mkAdv "bilaterally" ; -lin bilberry_N = mkN "bilberry" "bilberries"; -- from DictEng -lin bile_N = mkN "bile" ; -- from DictEng -lin bile_duct_N = mkN "bile - duct" "bile - ducts"; -- from DictEng -lin bilge_N = mkN "bilge" ; -- from DictEng -lin bilge_water_N = mkN "bilge - water" ; -- from DictEng -lin bilges_N = mkN "bilges" ; -lin bilgy_A = mkA "bilgy" ; -lin bilharzia_N = mkN "bilharzia" ; -- from DictEng -lin biliary_A = mkA "biliary" ; -lin bilimbi_N = mkN "bilimbi" ; -lin bilinear_A = mkA "bilinear" ; -lin bilingual_A = compoundA (mkA "bilingual"); -- from DictEng -lin bilingual_N = mkN "bilingual" "bilinguals"; -- from DictEng -lin bilingualism_N = mkN "bilingualism" ; -lin bilingually_Adv = mkAdv "bilingually" ; -lin bilious_A = compoundA (mkA "bilious"); -- from DictEng -lin biliousness_N = mkN "biliousness" ; -- from DictEng -lin bilirubin_N = mkN "bilirubin" ; -lin bilk_V2 = mkV2 (mkV "bilk" "bilks" "bilked" "bilked" "bilking"); -- from DictEng -lin bill_N = mkN "bill" "bills"; -- from DictEng -lin bill_V = mkV "bill" "bills" "billed" "billed" "billing"; -- from DictEng -lin bill_V2 = mkV2 (mkV "bill" "bills" "billed" "billed" "billing"); -- from DictEng -lin bill_of_particulars_PN = mkPN "bill of Particulars" ; -lin bill_poster_N = mkN "bill - poster" "bill - posters"; -- from DictEng -lin bill_sticker_N = mkN "bill - sticker" "bill - stickers"; -- from DictEng -lin billabong_N = mkN "billabong" ; -lin billboard_N = mkN "billboard" "billboards"; -- from DictEng -lin billed_A = mkA "billed" ; -lin billet_N = mkN "billet" "billets"; -- from DictEng -lin billet_V2 = mkV2 (mkV "billet" "billets" "billeted" "billeted" "billeting"); -- from DictEng -lin billet_doux_N = mkN "billet - doux" "billets - doux"; -- from DictEng -lin billfish_N = mkN "billfish" ; -lin billfold_N = mkN "billfold" "billfolds"; -- from DictEng -lin billhook_N = mkN "billhook" "billhooks"; -- from DictEng -lin billiard_A = mkA "billiard" ; -lin billiard_marker_N = mkN "billiard - marker" "billiard - markers"; -- from DictEng -lin billiard_player_N = mkN "billiard - player" "billiard - players"; -- from DictEng -lin billiard_room_N = mkN "billiard - room" "billiard - rooms"; -- from DictEng -lin billiard_table_N = mkN "billiard - table" "billiard - tables"; -- from DictEng -lin billiards_N = mkN "billiards" "billiards"; -- from DictEng -lin billingsgate_N = mkN "billingsgate" ; -- from DictEng -lin billion_A = compoundA (mkA "billion"); -- from DictEng -lin billion_N = mkN "billion" "billions"; -- from DictEng -lin billionaire_N = mkN "billionaire" ; -lin billionth_A = compoundA (mkA "billionth"); -- from DictEng -lin billionth_N = mkN "billionth" "billionths"; -- from DictEng -lin billow_N = mkN "billow" "billows"; -- from DictEng -lin billow_V = mkV "billow" "billows" "billowed" "billowed" "billowing"; -- from DictEng -lin billowy_A = compoundA (mkA "billowy"); -- from DictEng -lin billy_N = mkN "billy" "billies"; -- from DictEng -lin billy_goat_N = mkN "billy - goat" "billy - goats"; -- from DictEng -lin billy_ho_N = mkN "billy - ho" "billy - hi" {- FIXME: guessed plural form -}; -- from DictEng -lin billy_o_N = mkN "billy - o" ; -- from DictEng -lin billyo_N = mkN "billyo" ; -lin bilobate_A = mkA "bilobate" ; -lin bilocation_N = mkN "bilocation" ; -lin bilocular_A = mkA "bilocular" ; -lin biltong_N = mkN "biltong" ; -- from DictEng -lin bimbo_N = mkN "bimbo" ; -lin bimester_N = mkN "bimester" ; -lin bimestrial_A = mkA "bimestrial" ; -lin bimetal_A = mkA "bimetal" ; -lin bimetal_N = mkN "bimetal" ; -lin bimetallic_A = compoundA (mkA "bimetallic"); -- from DictEng -lin bimetallism_N = mkN "bimetallism" ; -- from DictEng -lin bimetallist_N = mkN "bimetallist" ; -lin bimetallistic_A = mkA "bimetallistic" ; -lin bimillenial_A = mkA "bimillenial" ; -lin bimillennium_N = mkN "bimillennium" ; -lin bimodal_A = mkA "bimodal" ; -lin bimolecular_A = mkA "bimolecular" ; -lin bimonthly_A = mkA "bimonthly" ; -lin bimonthly_Adv = mkAdv "bimonthly" ; -lin bimonthly_N = mkN "bimonthly" ; -lin bimorphemic_A = mkA "bimorphemic" ; -lin bimotored_A = mkA "bimotored" ; -lin bin_N = mkN "bin" "bins"; -- from DictEng -lin bin_laden_PN = mkPN "bin Laden" ; -lin binary_A = compoundA (mkA "binary"); -- from DictEng -lin binary_N = mkN "binary" ; -lin binate_A = mkA "binate" ; -lin binaural_A = mkA "binaural" ; -lin binaurally_Adv = mkAdv "binaurally" ; -lin bind_N = mkN "bind" "binds"; -- from DictEng -lin bind_V = IrregEng.bind_V; -- from DictEng -lin bind_V2 = mkV2 (IrregEng.bind_V); -- from DictEng -lin bindable_A = mkA "bindable" ; -lin binder_N = mkN "binder" "binders"; -- from DictEng -lin bindery_N = mkN "bindery" "binderies"; -- from DictEng -lin binding_A = compoundA (mkA "binding"); -- from DictEng -lin binding_N = mkN "binding" ; -lin bindweed_N = mkN "bindweed" ; -- from DictEng -lin bine_N = mkN "bine" "bines"; -- from DictEng -lin binge_N = mkN "binge" "binges"; -- from DictEng -lin bingo_N = mkN "bingo" ; -- from DictEng -lin binnacle_N = mkN "binnacle" "binnacles"; -- from DictEng -lin binocular_A = mkA "binocular" ; -lin binoculars_N = mkN "binoculars" ; -lin binomial_A = compoundA (mkA "binomial"); -- from DictEng -lin binomial_N = mkN "binomial" ; -lin binturong_N = mkN "binturong" ; -lin binucleate_A = mkA "binucleate" ; -lin bioassay_N = mkN "bioassay" ; -lin biocatalyst_N = mkN "biocatalyst" ; -lin biocatalytic_A = mkA "biocatalytic" ; -lin biochemical_A = mkA "biochemical" ; -lin biochemically_Adv = mkAdv "biochemically" ; -lin biochemist_N = mkN "biochemist" ; -lin biochemistry_N = mkN "biochemistry" ; -- from DictEng -lin biochip_N = mkN "biochip" ; -lin bioclimatic_A = mkA "bioclimatic" ; -lin bioclimatology_N = mkN "bioclimatology" ; -lin biodegradable_A = compoundA (mkA "biodegradable"); -- from DictEng -lin biodiversity_N = mkN "biodiversity" ; -lin bioelectricity_N = mkN "bioelectricity" ; -lin bioethics_N = mkN "bioethics" ; -lin biofeedback_N = mkN "biofeedback" ; -lin biogenesis_N = mkN "biogenesis" ; -lin biogenetic_A = mkA "biogenetic" ; -lin biogenic_A = mkA "biogenic" ; -lin biogenous_A = mkA "biogenous" ; -lin biogeographic_A = mkA "biogeographic" ; -lin biogeography_N = mkN "biogeography" ; -lin biograph_N = mkN "biograph" "biographs"; -- from DictEng -lin biographer_N = mkN "biographer" "biographers"; -- from DictEng -lin biographic_A = compoundA (mkA "biographic"); -- from DictEng -lin biographical_A = compoundA (mkA "biographical"); -- from DictEng -lin biography_N = mkN "biography" "biographies"; -- from DictEng -lin biohazard_N = mkN "biohazard" ; -lin biological_A = compoundA (mkA "biological"); -- from DictEng -lin biologically_Adv = mkAdv "biologically" ; -lin biologism_N = mkN "biologism" ; -lin biologist_N = mkN "biologist" "biologists"; -- from DictEng -lin biologistic_A = mkA "biologistic" ; -lin biology_N = mkN "biology" ; -- from DictEng -lin bioluminescence_N = mkN "bioluminescence" ; -lin bioluminescent_A = mkA "bioluminescent" ; -lin biomass_N = mkN "biomass" ; -lin biome_N = mkN "biome" ; -lin biomedical_A = mkA "biomedical" ; -lin biomedicine_N = mkN "biomedicine" ; -lin biometrics_N = mkN "biometrics" ; -lin bionic_A = mkA "bionic" ; -lin bionics_N = mkN "bionics" ; -lin biont_N = mkN "biont" ; -lin biophysicist_N = mkN "biophysicist" ; -lin biophysics_N = mkN "biophysics" ; -lin biopiracy_N = mkN "biopiracy" ; -lin biopsy_N = mkN "biopsy" ; -lin bioremediation_N = mkN "bioremediation" ; -lin biosafety_N = mkN "biosafety" ; -lin bioscope_N = mkN "bioscope" "bioscopes"; -- from DictEng -lin biosphere_N = mkN "biosphere" ; -lin biosynthesis_N = mkN "biosynthesis" ; -lin biosynthetic_A = mkA "biosynthetic" ; -lin biosystematic_A = mkA "biosystematic" ; -lin biosystematics_N = mkN "biosystematics" ; -lin biota_N = mkN "biota" ; -lin biotechnology_N = mkN "biotechnology" ; -lin bioterrorism_N = mkN "bioterrorism" ; -lin biotic_A = mkA "biotic" ; -lin biotin_N = mkN "biotin" ; -lin biotite_N = mkN "biotite" ; -lin biotitic_A = mkA "biotitic" ; -lin biotype_N = mkN "biotype" ; -lin biotypic_A = mkA "biotypic" ; -lin bioweapon_N = mkN "bioweapon" ; -lin biparous_A = mkA "biparous" ; -lin bipartisan_A = compoundA (mkA "bipartisan"); -- from DictEng -lin bipartite_A = mkA "bipartite" ; -lin biped_N = mkN "biped" "bipeds"; -- from DictEng -lin bipedal_A = mkA "bipedal" ; -lin bipedalism_N = mkN "bipedalism" ; -lin bipinnate_A = mkA "bipinnate" ; -lin bipinnatifid_A = mkA "bipinnatifid" ; -lin biplane_N = mkN "biplane" "biplanes"; -- from DictEng -lin bipolar_A = mkA "bipolar" ; -lin biprism_N = mkN "biprism" ; -lin biquadrate_N = mkN "biquadrate" ; -lin biquadratic_A = mkA "biquadratic" ; -lin biquadratic_N = mkN "biquadratic" ; -lin biracial_A = mkA "biracial" ; -lin biradial_A = mkA "biradial" ; -lin biradially_Adv = mkAdv "biradially" ; -lin birch_A = mkA "birch" ; -lin birch_N = mkN "birch" "birches"; -- from DictEng -lin birch_V2 = mkV2 (mkV "birch" "birches" "birched" "birched" "birching"); -- from DictEng -lin birch_rod_N = mkN "birch - rod" "birch - rods"; -- from DictEng -lin bird_N = mkN "bird" "birds"; -- from DictEng -lin bird's_eye_A = compoundA (mkA "bird's - eye"); -- from DictEng -lin bird's_eye_A = compoundA (mkA "bird's - eye"); -- from DictEng -lin bird_fancier_N = mkN "bird - fancier" "bird - fanciers"; -- from DictEng -lin birdbath_N = mkN "birdbath" ; -lin birdcage_N = mkN "birdcage" "birdcages"; -- from DictEng -lin birdcall_N = mkN "birdcall" ; -lin birdhouse_N = mkN "birdhouse" ; -lin birdie_N = mkN "birdie" ; -lin birdlime_N = mkN "birdlime" "birdlimes"; -- from DictEng -lin birdnest_V = mkV "birdnest" ; -lin birdnesting_N = mkN "birdnesting" ; -- from DictEng -lin birdwatcher_N = mkN "birdwatcher" "birdwatchers"; -- from DictEng -lin birefringent_A = mkA "birefringent" ; -lin biretta_N = mkN "biretta" "birettas"; -- from DictEng -lin birling_N = mkN "birling" ; -lin biro_N = mkN "biro" "biros"; -- from DictEng -lin birr_N = mkN "birr" ; -lin birth_N = mkN "birth" "births"; -- from DictEng -lin birth_control_N = mkN "birth - control" ; -- from DictEng -lin birthday_N = mkN "birthday" "birthdays"; -- from DictEng -lin birthmark_N = mkN "birthmark" "birthmarks"; -- from DictEng -lin birthplace_N = mkN "birthplace" "birthplaces"; -- from DictEng -lin birthrate_N = mkN "birthrate" "birthrates"; -- from DictEng -lin birthright_N = mkN "birthright" "birthrights"; -- from DictEng -lin birthwort_N = mkN "birthwort" ; -lin biryani_N = mkN "biryani" ; -lin biscuit_N = mkN "biscuit" "biscuits"; -- from DictEng -lin bise_N = mkN "bise" ; -lin bisect_V2 = mkV2 (mkV "bisect" "bisects" "bisected" "bisected" "bisecting"); -- from DictEng -lin bisection_N = mkN "bisection" ; -- from DictEng -lin bisectional_A = mkA "bisectional" ; -lin biserrate_A = mkA "biserrate" ; -lin bisexual_A = compoundA (mkA "bisexual"); -- from DictEng -lin bisexual_N = mkN "bisexual" "bisexuals"; -- from DictEng -lin bisexuality_N = mkN "bisexuality" ; -- from DictEng -lin bishop_N = mkN "bishop" "bishops"; -- from DictEng -lin bishopric_N = mkN "bishopric" "bishoprics"; -- from DictEng -lin bishopry_N = mkN "bishopry" ; -lin bismuth_N = mkN "bismuth" ; -- from DictEng -lin bismuthal_A = mkA "bismuthal" ; -lin bismuthic_A = mkA "bismuthic" ; -lin bison_N = mkN "bison" "bison"; -- from DictEng -lin bisontine_A = mkA "bisontine" ; -lin bisque_N = mkN "bisque" ; -lin bister_N = mkN "bister" ; -lin bistered_A = mkA "bistered" ; -lin bistro_N = mkN "bistro" "bistros"; -- from DictEng -lin bistroic_A = mkA "bistroic" ; -lin bit_N = mkN "bit" "bits"; -- from DictEng -lin bit_by_bit_A = compoundA (mkA "bit by bit") ; -lin bitartrate_N = mkN "bitartrate" ; -lin bitch_N = mkN "bitch" "bitches"; -- from DictEng -lin bitch_V = mkV "bitch" "bitches" "bitched" "bitched" "bitching"; -- from DictEng -lin bitchery_N = mkN "bitchery" ; -lin bitchy_A = mkA "bitchy" "bitchier"; -- from DictEng -lin bite_N = mkN "bite" "bites"; -- from DictEng -lin bite_V = IrregEng.bite_V; -- from DictEng -lin bite_V2 = mkV2 (IrregEng.bite_V); -- from DictEng -lin biter_N = mkN "biter" ; -lin bitewing_N = mkN "bitewing" ; -lin biting_A = compoundA (mkA "biting"); -- from DictEng -lin bitmap_N = mkN "bitmap" ; -lin bitok_N = mkN "bitok" ; -lin bitter_A = compoundA (mkA "bitter"); -- from DictEng -lin bitter_N = mkN "bitter" "bitters"; -- from DictEng -lin bitter_sweet_A = compoundA (mkA "bitter - sweet"); -- from DictEng -lin bittercress_N = mkN "bittercress" ; -lin bitterish_A = mkA "bitterish" ; -lin bitterly_Adv = mkAdv "bitterly" ; -lin bittern_N = mkN "bittern" "bitterns"; -- from DictEng -lin bitterness_N = mkN "bitterness" ; -- from DictEng -lin bitternut_N = mkN "bitternut" ; -lin bitterroot_N = mkN "bitterroot" ; -lin bitters_N = mkN "bitters" ; -lin bittersweet_A = mkA "bittersweet" ; -lin bittersweet_N = mkN "bittersweet" ; -lin bitthead_N = mkN "bitthead" ; -lin bitty_A = mkA "bitty" ; -lin bitumastic_N = mkN "bitumastic" ; -lin bitumen_N = mkN "bitumen" ; -- from DictEng -lin bituminoid_A = mkA "bituminoid" ; -lin bituminous_A = compoundA (mkA "bituminous"); -- from DictEng -lin bivalent_A = mkA "bivalent" ; -lin bivalve_A = mkA "bivalve" ; -lin bivalve_N = mkN "bivalve" "bivalves"; -- from DictEng -lin bivariate_A = mkA "bivariate" ; -lin bivouac_N = mkN "bivouac" "bivouacs"; -- from DictEng -lin bivouac_V = mkV "bivouac" (variants {"bivouacs"; "bivouacks"}) "bivouacked" "bivouacked" "bivouacking"; -- from DictEng -lin biweekly_N = mkN "biweekly" ; -lin biz_N = mkN "biz" ; -- from DictEng -lin bizarre_A = compoundA (mkA "bizarre"); -- from DictEng -lin bizonal_A = compoundA (mkA "bizonal"); -- from DictEng -lin blab_V = mkV "blab" "blabs" "blabbed" "blabbed" "blabbing"; -- from DictEng -lin blab_V2 = mkV2 (mkV "blab" "blabs" "blabbed" "blabbed" "blabbing"); -- from DictEng -lin blabber_V = mkV "blabber" "blabbers" "blabbered" "blabbered" "blabbering"; -- from DictEng -lin blabber_V2 = mkV2 (mkV "blabber" "blabbers" "blabbered" "blabbered" "blabbering"); -- from DictEng -lin blabbermouth_N = mkN "blabbermouth" "blabbermouths"; -- from DictEng -lin blabbermouthed_A = mkA "blabbermouthed" ; -lin black_A = mkA "black" "blacker"; -- from DictEng -lin black_N = mkN "black" "blacks"; -- from DictEng -lin black_V2 = mkV2 (mkV "black" "blacks" "blacked" "blacked" "blacking"); -- from DictEng -lin black_and_blue_A = compoundA (mkA "black and blue") ; -lin black_and_tan_A = compoundA (mkA "black and tan") ; -lin black_and_white_A = compoundA (mkA "black and white") ; -lin black_barred_A = compoundA (mkA "black barred") ; -lin black_coated_A = compoundA (mkA "black coated") ; -lin black_eyed_susan_PN = mkPN "black eyed Susan" ; -lin black_grey_A = compoundA (mkA "black grey") ; -lin black_marked_A = compoundA (mkA "black marked") ; -lin black_seeded_A = compoundA (mkA "black seeded") ; -lin black_beetle_N = mkN "black - beetle" "black - beetles"; -- from DictEng -lin black_lead_N = mkN "black - lead" ; -- from DictEng -lin black_lead_V2 = mkV2 (mkV "black - lead" "black - leads" "black - leaded" "black - leaded" "black - leading"); -- from DictEng -lin blackamoor_N = mkN "blackamoor" "blackamoors"; -- from DictEng -lin blackball_V2 = mkV2 (mkV "blackball" "blackballs" "blackballed" "blackballed" "blackballing"); -- from DictEng -lin blackberry_N = mkN "blackberry" "blackberries"; -- from DictEng -lin blackberry_V = mkV "blackberry" ; -lin blackberry_lily_N = mkN "blackberry lily" ; -lin blackbird_N = mkN "blackbird" "blackbirds"; -- from DictEng -lin blackboard_N = mkN "blackboard" "blackboards"; -- from DictEng -lin blackbuck_N = mkN "blackbuck" ; -lin blackcap_N = mkN "blackcap" ; -lin blackcock_N = mkN "blackcock" ; -lin blackcurrant_N = mkN "blackcurrant" "blackcurrants"; -- from DictEng -lin blacken_V = mkV "blacken" "blackens" "blackened" "blackened" "blackening"; -- from DictEng -lin blacken_V2 = mkV2 (mkV "blacken" "blackens" "blackened" "blackened" "blackening"); -- from DictEng -lin blackened_A = mkA "blackened" ; -lin blackening_N = mkN "blackening" ; -lin blackface_N = mkN "blackface" ; -lin blackfish_N = mkN "blackfish" ; -lin blackfly_N = mkN "blackfly" ; -lin blackguard_N = mkN "blackguard" "blackguards"; -- from DictEng -lin blackguard_V2 = mkV2 (mkV "blackguard" "blackguards" "blackguarded" "blackguarded" "blackguarding"); -- from DictEng -lin blackguardly_A = compoundA (mkA "blackguardly"); -- from DictEng -lin blackhead_N = mkN "blackhead" "blackheads"; -- from DictEng -lin blackheart_N = mkN "blackheart" ; -lin blacking_N = mkN "blacking" ; -- from DictEng -lin blackish_A = compoundA (mkA "blackish"); -- from DictEng -lin blackish_brown_A = compoundA (mkA "blackish brown") ; -lin blackish_red_A = compoundA (mkA "blackish red") ; -lin blackjack_N = mkN "blackjack" ; -lin blackleg_N = mkN "blackleg" "blacklegs"; -- from DictEng -lin blackleg_V = mkV "blackleg" "blacklegs" "blacklegged" "blacklegged" "blacklegging"; -- from DictEng -lin blackleg_V2 = mkV2 (mkV "blackleg" "blacklegs" "blacklegged" "blacklegged" "blacklegging"); -- from DictEng -lin blacklist_N = mkN "blacklist" "blacklists"; -- from DictEng -lin blacklist_V2 = mkV2 (mkV "blacklist" "blacklists" "blacklisted" "blacklisted" "blacklisting"); -- from DictEng -lin blackmail_N = mkN "blackmail" ; -- from DictEng -lin blackmail_V2 = mkV2 (mkV "blackmail" "blackmails" "blackmailed" "blackmailed" "blackmailing"); -- from DictEng -lin blackmailer_N = mkN "blackmailer" "blackmailers"; -- from DictEng -lin blackness_N = mkN "blackness" ; -- from DictEng -lin blackout_N = mkN "blackout" "blackouts"; -- from DictEng -lin blackpoll_N = mkN "blackpoll" ; -lin blackshirt_N = mkN "blackshirt" "blackshirts"; -- from DictEng -lin blacksmith_N = mkN "blacksmith" "blacksmiths"; -- from DictEng -lin blacksnake_N = mkN "blacksnake" ; -lin blackthorn_N = mkN "blackthorn" "blackthorns"; -- from DictEng -lin blacktop_N = mkN "blacktop" ; -lin blackwash_N = mkN "blackwash" ; -lin blackwater_A = compoundA (mkA "blackwater"); -- from DictEng -lin blackwater_N = mkN "blackwater" ; -lin blackwood_N = mkN "blackwood" ; -lin bladder_N = mkN "bladder" "bladders"; -- from DictEng -lin bladderpod_N = mkN "bladderpod" ; -lin bladderwort_N = mkN "bladderwort" ; -lin bladderwrack_N = mkN "bladderwrack" ; -lin bladdery_A = mkA "bladdery" ; -lin blade_N = mkN "blade" "blades"; -- from DictEng -lin bladed_A = mkA "bladed" ; -lin blae_A = mkA "blae" ; -lin blaeberry_N = mkN "blaeberry" "blaeberries"; -- from DictEng -lin blah_N = mkN "blah" ; -- from DictEng -lin blahs_N = mkN "blahs" ; -lin blain_N = mkN "blain" ; -lin blame_N = mkN "blame" ; -- from DictEng -lin blame_V = mkV "blame"; -- from DictEng -lin blame_V2 = mkV2 (mkV "blame" "blames" "blamed" "blamed" "blaming"); -- from DictEng -lin blameless_A = compoundA (mkA "blameless"); -- from DictEng -lin blamelessness_N = mkN "blamelessness" ; -lin blameworthiness_N = mkN "blameworthiness" ; -lin blameworthy_A = compoundA (mkA "blameworthy"); -- from DictEng -lin blanc_N = mkN "blanc" ; -lin blanch_V = mkV "blanch" "blanches" "blanched" "blanched" "blanching"; -- from DictEng -lin blanch_V2 = mkV2 (mkV "blanch" "blanches" "blanched" "blanched" "blanching"); -- from DictEng -lin blancmange_N = mkN "blancmange" "blancmanges"; -- from DictEng -lin bland_A = mkA "bland" "blander"; -- from DictEng -lin blandishment_N = mkN "blandishment" "blandishments"; -- from DictEng -lin blandly_Adv = mkAdv "blandly" ; -lin blandness_N = mkN "blandness" ; -- from DictEng -lin blank_A = compoundA (mkA "blank"); -- from DictEng -lin blank_N = mkN "blank" "blanks"; -- from DictEng -lin blanket_N = mkN "blanket" "blankets"; -- from DictEng -lin blanket_V2 = mkV2 (mkV "blanket" "blankets" "blanketed" "blanketed" "blanketing"); -- from DictEng -lin blanketed_A = mkA "blanketed" ; -lin blankly_Adv = mkAdv "blankly" ; -lin blankness_N = mkN "blankness" ; -lin blanquillo_N = mkN "blanquillo" ; -lin blare_N = mkN "blare" ; -- from DictEng -lin blare_V = mkV "blare" "blares" "blared" "blared" "blaring"; -- from DictEng -lin blare_V2 = mkV2 (mkV "blare" "blares" "blared" "blared" "blaring"); -- from DictEng -lin blaring_A = mkA "blaring" ; -lin blarney_N = mkN "blarney" ; -- from DictEng -lin blase_A = compoundA (mkA "blasé"); -- from DictEng -lin blaspheme_V = mkV "blaspheme" "blasphemes" "blasphemed" "blasphemed" "blaspheming"; -- from DictEng -lin blaspheme_V2 = mkV2 (mkV "blaspheme" "blasphemes" "blasphemed" "blasphemed" "blaspheming"); -- from DictEng -lin blasphemer_N = mkN "blasphemer" "blasphemers"; -- from DictEng -lin blasphemous_A = compoundA (mkA "blasphemous"); -- from DictEng -lin blasphemously_Adv = mkAdv "blasphemously" ; -lin blasphemy_N = mkN "blasphemy" "blasphemies"; -- from DictEng -lin blast_N = mkN "blast" "blasts"; -- from DictEng -lin blast_V = mkV "blast"; -- from DictEng -lin blast_V2 = mkV2 (mkV "blast" "blasts" "blasted" "blasted" "blasting"); -- from DictEng -lin blast_furnace_N = mkN "blast - furnace" "blast - furnaces"; -- from DictEng -lin blast_off_N = mkN "blast - off" "blast - offs"; -- from DictEng -lin blasted_A = compoundA (mkA "blasted"); -- from DictEng -lin blastema_N = mkN "blastema" ; -lin blastemal_A = mkA "blastemal" ; -lin blaster_N = mkN "blaster" ; -lin blasting_A = mkA "blasting" ; -lin blastocoel_N = mkN "blastocoel" ; -lin blastocoelic_A = mkA "blastocoelic" ; -lin blastocyst_N = mkN "blastocyst" ; -lin blastocyte_N = mkN "blastocyte" ; -lin blastoderm_N = mkN "blastoderm" ; -lin blastodermatic_A = mkA "blastodermatic" ; -lin blastoff_N = mkN "blastoff" ; -lin blastogenesis_N = mkN "blastogenesis" ; -lin blastogenetic_A = mkA "blastogenetic" ; -lin blastoma_N = mkN "blastoma" ; -lin blastomere_N = mkN "blastomere" ; -lin blastomeric_A = mkA "blastomeric" ; -lin blastomycete_N = mkN "blastomycete" ; -lin blastomycosis_N = mkN "blastomycosis" ; -lin blastomycotic_A = mkA "blastomycotic" ; -lin blastoporal_A = mkA "blastoporal" ; -lin blastopore_N = mkN "blastopore" ; -lin blastospheric_A = mkA "blastospheric" ; -lin blastula_N = mkN "blastula" ; -lin blat_V = mkV "blat" ; -lin blat_V2 = mkV2 (mkV "blat") ; -lin blatancy_N = mkN "blatancy" ; -lin blatant_A = compoundA (mkA "blatant"); -- from DictEng -lin blatantly_Adv = mkAdv "blatantly" ; -lin blather_N = mkN "blather" "blathers"; -- from DictEng -lin blather_V = mkV "blather" "blathers" "blathered" "blathered" "blathering"; -- from DictEng -lin blaxploitation_N = mkN "blaxploitation" ; -lin blaze_N = mkN "blaze" "blazes"; -- from DictEng -lin blaze_V = mkV "blaze" "blazes" "blazed" "blazed" "blazing"; -- from DictEng -lin blaze_V2 = mkV2 (mkV "blaze" "blazes" "blazed" "blazed" "blazing"); -- from DictEng -lin blazer_N = mkN "blazer" "blazers"; -- from DictEng -lin blazing_A = compoundA (mkA "blazing"); -- from DictEng -lin blazon_N = mkN "blazon" "blazons"; -- from DictEng -lin blazon_V2 = mkV2 (mkV "blazon" "blazons" "blazoned" "blazoned" "blazoning"); -- from DictEng -lin blazonry_N = mkN "blazonry" "blazonries"; -- from DictEng -lin bleach_N = mkN "bleach" "bleaches"; -- from DictEng -lin bleach_V = mkV "bleach" "bleaches" "bleached" "bleached" "bleaching"; -- from DictEng -lin bleach_V2 = mkV2 (mkV "bleach" "bleaches" "bleached" "bleached" "bleaching"); -- from DictEng -lin bleached_A = mkA "bleached" ; -lin bleacher_N = mkN "bleacher" ; -lin bleachers_N = mkN "bleachers" ; -lin bleaching_powder_N = mkN "bleaching - powder" "bleaching - powders"; -- from DictEng -lin bleak_A = mkA "bleak" "bleaker"; -- from DictEng -lin bleakly_Adv = mkAdv "bleakly" ; -lin bleakness_N = mkN "bleakness" ; -lin bleary_A = compoundA (mkA "bleary"); -- from DictEng -lin bleary_eyed_A = compoundA (mkA "bleary - eyed"); -- from DictEng -lin bleat_N = mkN "bleat" "bleats"; -- from DictEng -lin bleat_V = mkV "bleat" "bleats" "bleated" "bleated" "bleating"; -- from DictEng -lin bleat_V2 = mkV2 (mkV "bleat" "bleats" "bleated" "bleated" "bleating"); -- from DictEng -lin blebbed_A = mkA "blebbed" ; -lin blebby_A = mkA "blebby" ; -lin bleed_V = IrregEng.bleed_V; -- from DictEng -lin bleed_V2 = mkV2 (IrregEng.bleed_V); -- from DictEng -lin bleed_VS = mkVS (IrregEng.bleed_V); -- from DictEng -lin bleeding_N = mkN "bleeding" ; -lin bleep_N = mkN "bleep" "bleeps"; -- from DictEng -lin bleep_V = mkV "bleep" "bleeps" "bleeped" "bleeped" "bleeping"; -- from DictEng -lin blemish_N = mkN "blemish" "blemishes"; -- from DictEng -lin blemish_V2 = mkV2 (mkV "blemish" "blemishes" "blemished" "blemished" "blemishing"); -- from DictEng -lin blemished_A = mkA "blemished" ; -lin blench_V = mkV "blench" "blenches" "blenched" "blenched" "blenching"; -- from DictEng -lin blend_N = mkN "blend" "blends"; -- from DictEng -lin blend_V = mkV "blend" "blends" "blended" "blended" "blending"; -- from DictEng -lin blend_V2 = mkV2 (mkV "blend" "blends" "blended" "blended" "blending"); -- from DictEng -lin blended_A = mkA "blended" ; -lin blender_N = mkN "blender" ; -lin blenny_N = mkN "blenny" ; -lin blepharism_N = mkN "blepharism" ; -lin blepharitis_N = mkN "blepharitis" ; -lin blepharospasm_N = mkN "blepharospasm" ; -lin bless_V2 = mkV2 (mkV "bless" "blesses" "blessed" "blessed" "blessing"); -- from DictEng -lin blessed_A = compoundA (mkA "blessed"); -- from DictEng -lin blessedly_Adv = mkAdv "blessedly" ; -lin blessedness_N = mkN "blessedness" ; -- from DictEng -lin blessing_N = mkN "blessing" "blessings"; -- from DictEng -lin blether_N = mkN "blether" ; -- from DictEng -lin blether_V = mkV "blether" "blethers" "blethered" "blethered" "blethering"; -- from DictEng -lin bletia_N = mkN "bletia" ; -lin bleu_N = mkN "bleu" ; -lin blewits_N = mkN "blewits" ; -lin blight_N = mkN "blight" "blights"; -- from DictEng -lin blight_V2 = mkV2 (mkV "blight" "blights" "blighted" "blighted" "blighting"); -- from DictEng -lin blighted_A = mkA "blighted" ; -lin blighter_N = mkN "blighter" "blighters"; -- from DictEng -lin blighty_N = mkN "blighty"; -- from DictEng -lin blimp_N = mkN "blimp" "blimps"; -- from DictEng -lin blimpish_A = mkA "blimpish" ; -lin blind_A = compoundA (mkA "blind"); -- from DictEng -lin blind_N = mkN "blind" "blinds"; -- from DictEng -lin blind_V2 = mkV2 (mkV "blind" "blinds" "blinded" "blinded" "blinding"); -- from DictEng -lin blinded_A = mkA "blinded" ; -lin blindfold_A = compoundA (mkA "blindfold"); -- from DictEng -lin blindfold_N = mkN "blindfold" "blindfolds"; -- from DictEng -lin blindfold_V2 = mkV2 (mkV "blindfold" "blindfolds" "blindfolded" "blindfolded" "blindfolding"); -- from DictEng -lin blindly_Adv = mkAdv "blindly" ; -lin blindman's_buff_N = mkN "blindman's buff" ; -- from DictEng -lin blindness_N = mkN "blindness" ; -- from DictEng -lin blindworm_N = mkN "blindworm" ; -lin bling_N = mkN "bling" ; -lin blini_N = mkN "blini" ; -lin blink_N = mkN "blink" "blinks"; -- from DictEng -lin blink_V = mkV "blink" "blinks" "blinked" "blinked" "blinking"; -- from DictEng -lin blink_V2 = mkV2 (mkV "blink" "blinks" "blinked" "blinked" "blinking"); -- from DictEng -lin blinker_N = mkN "blinker" ; -lin blinking_A = compoundA (mkA "blinking"); -- from DictEng -lin blinks_N = mkN "blinks" ; -lin blintz_N = mkN "blintz" ; -lin blip_N = mkN "blip" "blips"; -- from DictEng -lin bliss_N = mkN "bliss" ; -- from DictEng -lin blissful_A = compoundA (mkA "blissful"); -- from DictEng -lin blissfully_Adv = mkAdv "blissfully" ; -lin blister_N = mkN "blister" "blisters"; -- from DictEng -lin blister_V = mkV "blister" "blisters" "blistered" "blistered" "blistering"; -- from DictEng -lin blister_V2 = mkV2 (mkV "blister" "blisters" "blistered" "blistered" "blistering"); -- from DictEng -lin blistering_A = mkA "blistering" ; -lin blithe_A = compoundA (mkA "blithe"); -- from DictEng -lin blithering_A = compoundA (mkA "blithering"); -- from DictEng -lin blithesome_A = compoundA (mkA "blithesome"); -- from DictEng -lin blitz_N = mkN "blitz" "blitzes"; -- from DictEng -lin blitz_V2 = mkV2 (mkV "blitz" "blitzes" "blitzed" "blitzed" "blitzing"); -- from DictEng -lin blizzard_N = mkN "blizzard" "blizzards"; -- from DictEng -lin bloat_N = mkN "bloat" ; -lin bloated_A = compoundA (mkA "bloated"); -- from DictEng -lin bloater_N = mkN "bloater" "bloaters"; -- from DictEng -lin blob_N = mkN "blob" "blobs"; -- from DictEng -lin bloc_N = mkN "bloc" "blocs"; -- from DictEng -lin block_N = mkN "block" "blocks"; -- from DictEng -lin block_V2 = mkV2 (mkV "block" "blocks" "blocked" "blocked" "blocking"); -- from DictEng -lin blockade_N = mkN "blockade" "blockades"; -- from DictEng -lin blockade_V2 = mkV2 (mkV "blockade" "blockades" "blockaded" "blockaded" "blockading"); -- from DictEng -lin blockade_runner_N = mkN "blockade - runner" "blockade - runners"; -- from DictEng -lin blockade_runner_N = mkN "blockade - runner" "blockade - runners"; -- from DictEng -lin blockading_A = mkA "blockading" ; -lin blockage_N = mkN "blockage" "blockages"; -- from DictEng -lin blockbuster_N = mkN "blockbuster" "blockbusters"; -- from DictEng -lin blocked_A = mkA "blocked" ; -lin blocker_N = mkN "blocker" ; -lin blockhead_N = mkN "blockhead" "blockheads"; -- from DictEng -lin blockheaded_A = mkA "blockheaded" ; -lin blockhouse_N = mkN "blockhouse" "blockhouses"; -- from DictEng -lin blocking_N = mkN "blocking" ; -lin blockish_A = mkA "blockish" ; -lin blogger_N = mkN "blogger" ; -lin bloke_N = mkN "bloke" "blokes"; -- from DictEng -lin blolly_N = mkN "blolly" ; -lin blond_A = mkA "blond" "blonder"; -- from DictEng -lin blond_N = mkN "blond" "blonds"; -- from DictEng -lin blonde_A = compoundA (mkA "blonde"); -- from DictEng -lin blonde_N = mkN "blonde" "blondes"; -- from DictEng -lin blood_N = mkN "blood" "bloods"; -- from DictEng -lin blood_V2 = mkV2 (mkV "blood" "bloods" "blooded" "blooded" "blooding"); -- from DictEng -lin blood_and_guts_A = compoundA (mkA "blood and guts") ; -lin blood_filled_A = compoundA (mkA "blood filled") ; -lin blood_bath_N = mkN "blood - bath" "blood - baths"; -- from DictEng -lin blood_donor_N = mkN "blood - donor" "blood - donors"; -- from DictEng -lin blood_group_N = mkN "blood - group" "blood - groups"; -- from DictEng -lin blood_heat_N = mkN "blood - heat" ; -- from DictEng -lin blood_letting_N = mkN "blood - letting" "blood - lettings"; -- from DictEng -lin blood_money_N = mkN "blood - money" ; -- from DictEng -lin blood_poisoning_N = mkN "blood - poisoning" ; -- from DictEng -lin blood_pressure_N = mkN "blood - pressure" "blood - pressures"; -- from DictEng -lin blood_relation_N = mkN "blood - relation" "blood - relations"; -- from DictEng -lin blood_transfusion_N = mkN "blood - transfusion" "blood - transfusions"; -- from DictEng -lin blood_type_N = mkN "blood - type" "blood - types"; -- from DictEng -lin blood_vessel_N = mkN "blood - vessel" "blood - vessels"; -- from DictEng -lin bloodbath_N = mkN "bloodbath" ; -lin bloodberry_N = mkN "bloodberry" ; -lin bloodcurdling_A = compoundA (mkA "bloodcurdling"); -- from DictEng -lin bloodguilt_N = mkN "bloodguilt" ; -lin bloodguilty_A = mkA "bloodguilty" ; -lin bloodhound_N = mkN "bloodhound" "bloodhounds"; -- from DictEng -lin bloodily_Adv = mkAdv "bloodily" ; -lin bloodiness_N = mkN "bloodiness" ; -lin bloodleaf_N = mkN "bloodleaf" ; -lin bloodless_A = compoundA (mkA "bloodless"); -- from DictEng -lin bloodlessly_Adv = mkAdv "bloodlessly" ; -lin bloodletting_N = mkN "bloodletting" ; -lin bloodlust_N = mkN "bloodlust" ; -- from DictEng -lin bloodmobile_N = mkN "bloodmobile" ; -lin bloodroot_N = mkN "bloodroot" ; -lin bloodshed_N = mkN "bloodshed" "bloodsheds"; -- from DictEng -lin bloodshot_A = compoundA (mkA "bloodshot"); -- from DictEng -lin bloodstain_N = mkN "bloodstain" "bloodstains"; -- from DictEng -lin bloodstained_A = compoundA (mkA "bloodstained"); -- from DictEng -lin bloodstock_N = mkN "bloodstock" "bloodstocks"; -- from DictEng -lin bloodstone_N = mkN "bloodstone" ; -lin bloodstream_N = mkN "bloodstream" ; -lin bloodsucker_N = mkN "bloodsucker" "bloodsuckers"; -- from DictEng -lin bloodsucking_A = mkA "bloodsucking" ; -lin bloodthirstiness_N = mkN "bloodthirstiness" ; -- from DictEng -lin bloodthirsty_A = compoundA (mkA "bloodthirsty"); -- from DictEng -lin bloodworm_N = mkN "bloodworm" ; -lin bloodwort_N = mkN "bloodwort" ; -lin bloody_A = mkA "bloody" "bloodier"; -- from DictEng -lin bloody_Adv = mkAdv "bloody"; -- from DictEng -lin bloody_minded_A = compoundA (mkA "bloody - minded"); -- from DictEng -lin bloody_minded_A = compoundA (mkA "bloody - minded"); -- from DictEng -lin bloom_N = mkN "bloom" "blooms"; -- from DictEng -lin bloom_V = mkV "bloom" "blooms" "bloomed" "bloomed" "blooming"; -- from DictEng -lin bloomer_N = mkN "bloomer" "bloomers"; -- from DictEng -lin bloomers_N = mkN "bloomers" ; -lin blooming_A = compoundA (mkA "blooming"); -- from DictEng -lin blooming_N = mkN "blooming" ; -lin blossom_N = mkN "blossom" "blossoms"; -- from DictEng -lin blossom_V = mkV "blossom" "blossoms" "blossomed" "blossomed" "blossoming"; -- from DictEng -lin blossoming_N = mkN "blossoming" ; -lin blot_N = mkN "blot" "blots"; -- from DictEng -lin blot_V2 = mkV2 (mkV "blot" "blots" "blotted" "blotted" "blotting"); -- from DictEng -lin blotch_N = mkN "blotch" "blotches"; -- from DictEng -lin blotched_A = mkA "blotched" ; -lin blotchy_A = mkA "blotchy" ; -lin blotted_out_A = compoundA (mkA "blotted out") ; -lin blotter_N = mkN "blotter" "blotters"; -- from DictEng -lin blotting_paper_N = mkN "blotting - paper" "blotting - papers"; -- from DictEng -lin blotto_A = compoundA (mkA "blotto"); -- from DictEng -lin blouse_N = mkN "blouse" "blouses"; -- from DictEng -lin blow_N = mkN "blow" "blows"; -- from DictEng -lin blow_V = IrregEng.blow_V; -- from DictEng -lin blow_V2 = mkV2 (IrregEng.blow_V); -- from DictEng -lin blow_by_blow_A = compoundA (mkA "blow by blow") ; -lin blow_dry_V2 = mkV2 (mkV "blow - dry" "blow - dries" "blow - dried" "blow - dried" "blow - drying"); -- from DictEng -lin blow_up_N = mkN "blow - up" "blow - ups"; -- from DictEng -lin blowback_N = mkN "blowback" "blowbacks"; -- from DictEng -lin blower_N = mkN "blower" "blowers"; -- from DictEng -lin blowfish_N = mkN "blowfish" ; -lin blowfly_N = mkN "blowfly" "blowflies"; -- from DictEng -lin blowgun_N = mkN "blowgun" ; -lin blowhole_N = mkN "blowhole" "blowholes"; -- from DictEng -lin blowing_N = mkN "blowing" ; -lin blowing_up_N = mkN "blowing - up" "blowing - ups"; -- from DictEng -lin blowlamp_N = mkN "blowlamp" "blowlamps"; -- from DictEng -lin blown_A = mkA "blown" ; -lin blown_up_A = compoundA (mkA "blown up") ; -lin blowout_N = mkN "blowout" "blowouts"; -- from DictEng -lin blowpipe_N = mkN "blowpipe" "blowpipes"; -- from DictEng -lin blowsy_A = mkA "blowsy" ; -lin blowtorch_N = mkN "blowtorch" "blowtorches"; -- from DictEng -lin blowtube_N = mkN "blowtube" ; -lin blowy_A = mkA "blowy" ; -lin blowzy_A = compoundA (mkA "blowzy"); -- from DictEng -lin blubber_N = mkN "blubber" ; -- from DictEng -lin blubber_V = mkV "blubber" "blubbers" "blubbered" "blubbered" "blubbering"; -- from DictEng -lin blubber_V2 = mkV2 (mkV "blubber" "blubbers" "blubbered" "blubbered" "blubbering"); -- from DictEng -lin blubberer_N = mkN "blubberer" ; -lin blubbery_A = mkA "blubbery" ; -lin blucher_N = mkN "blucher" ; -lin bludgeon_N = mkN "bludgeon" "bludgeons"; -- from DictEng -lin bludgeon_V2 = mkV2 (mkV "bludgeon" "bludgeons" "bludgeoned" "bludgeoned" "bludgeoning"); -- from DictEng -lin bludgeoner_N = mkN "bludgeoner" ; -lin blue_A = mkA "blue" "bluer"; -- from DictEng -lin blue_N = mkN "blue" "blues"; -- from DictEng -lin blue_V2 = mkV2 (mkV "blue" "blues" "blued" "blued" "bluing"); -- from DictEng -lin blue_black_A = compoundA (mkA "blue black") ; -lin blue_chip_A = compoundA (mkA "blue chip") ; -lin blue_collar_A = compoundA (mkA "blue - collar"); -- from DictEng -lin blue_eyed_A = compoundA (mkA "blue eyed") ; -lin blue_eyed_african_daisy_PN = mkPN "blue eyed African daisy" ; -lin blue_eyed_mary_PN = mkPN "blue eyed Mary" ; -lin blue_flowered_A = compoundA (mkA "blue flowered") ; -lin blue_fruited_A = compoundA (mkA "blue fruited") ; -lin blue_grey_A = compoundA (mkA "blue grey") ; -lin blue_lilac_A = compoundA (mkA "blue lilac") ; -lin blue_purple_A = compoundA (mkA "blue purple") ; -lin blue_ribbon_A = compoundA (mkA "blue ribbon") ; -lin blue_sky_A = compoundA (mkA "blue sky") ; -lin blue_violet_A = compoundA (mkA "blue violet") ; -lin blue_white_A = compoundA (mkA "blue white") ; -lin blue_collar_A = compoundA (mkA "blue - collar"); -- from DictEng -lin blue_jacket_N = mkN "blue - jacket" "blue - jackets"; -- from DictEng -lin blue_pencil_V2 = mkV2 (mkV "blue - pencil" "blue - pencils" "blue - pencilled" "blue - pencilled" "blue - pencilling"); -- from DictEng -lin blue_point_siamese_PN = mkPN "blue point Siamese" ; -lin bluebell_N = mkN "bluebell" "bluebells"; -- from DictEng -lin blueberry_N = mkN "blueberry" ; -lin bluebird_N = mkN "bluebird" ; -lin bluebonnet_N = mkN "bluebonnet" ; -lin bluebottle_N = mkN "bluebottle" "bluebottles"; -- from DictEng -lin bluecoat_N = mkN "bluecoat" ; -lin bluefin_N = mkN "bluefin" ; -lin bluefish_N = mkN "bluefish" ; -lin bluegill_N = mkN "bluegill" ; -lin bluegrass_N = mkN "bluegrass" ; -lin bluehead_N = mkN "bluehead" ; -lin bluejacket_N = mkN "bluejacket" ; -lin bluepoint_N = mkN "bluepoint" ; -lin blueprint_N = mkN "blueprint" "blueprints"; -- from DictEng -lin blues_N = mkN "blues" ; -lin bluestem_N = mkN "bluestem" ; -lin bluestocking_N = mkN "bluestocking" "bluestockings"; -- from DictEng -lin bluestone_N = mkN "bluestone" ; -lin bluethroat_N = mkN "bluethroat" ; -lin bluetick_N = mkN "bluetick" ; -lin bluetongue_N = mkN "bluetongue" ; -lin blueweed_N = mkN "blueweed" ; -lin bluewing_N = mkN "bluewing" ; -lin bluff_A = compoundA (mkA "bluff"); -- from DictEng -lin bluff_N = mkN "bluff" "bluffs"; -- from DictEng -lin bluff_V = mkV "bluff" "bluffs" "bluffed" "bluffed" "bluffing"; -- from DictEng -lin bluff_V2 = mkV2 (mkV "bluff" "bluffs" "bluffed" "bluffed" "bluffing"); -- from DictEng -lin bluffer_N = mkN "bluffer" "bluffers"; -- from DictEng -lin bluffly_Adv = mkAdv "bluffly" ; -lin bluffness_N = mkN "bluffness" ; -- from DictEng -lin bluing_N = mkN "bluing" ; -lin bluish_A = compoundA (mkA "bluish"); -- from DictEng -lin bluish_green_A = compoundA (mkA "bluish green") ; -lin blunder_N = mkN "blunder" "blunders"; -- from DictEng -lin blunder_V = mkV "blunder" "blunders" "blundered" "blundered" "blundering"; -- from DictEng -lin blunder_V2 = mkV2 (mkV "blunder" "blunders" "blundered" "blundered" "blundering"); -- from DictEng -lin blunderbuss_N = mkN "blunderbuss" "blunderbusses"; -- from DictEng -lin blunderer_N = mkN "blunderer" "blunderers"; -- from DictEng -lin blunt_A = mkA "blunt" "blunter"; -- from DictEng -lin blunt_V2 = mkV2 (mkV "blunt" "blunts" "blunted" "blunted" "blunting"); -- from DictEng -lin blunted_A = mkA "blunted" ; -lin bluntness_N = mkN "bluntness" ; -- from DictEng -lin blur_N = mkN "blur" "blurs"; -- from DictEng -lin blur_V = mkV "blur" "blurs" "blurred" "blurred" "blurring"; -- from DictEng -lin blur_V2 = mkV2 (mkV "blur" "blurs" "blurred" "blurred" "blurring"); -- from DictEng -lin blurb_N = mkN "blurb" "blurbs"; -- from DictEng -lin blurred_A = mkA "blurred" ; -lin blurt_V2 = mkV2 (mkV "blurt" "blurts" "blurted" "blurted" "blurting"); -- from DictEng -lin blush_N = mkN "blush" "blushes"; -- from DictEng -lin blush_V = mkV "blush" "blushes" "blushed" "blushed" "blushing"; -- from DictEng -lin blushful_A = mkA "blushful" ; -lin blushing_A = compoundA (mkA "blushing"); -- from DictEng -lin bluster_N = mkN "bluster" "blusters"; -- from DictEng -lin bluster_V = mkV "bluster" "blusters" "blustered" "blustered" "blustering"; -- from DictEng -lin bluster_V2 = mkV2 (mkV "bluster" "blusters" "blustered" "blustered" "blustering"); -- from DictEng -lin blustering_A = mkA "blustering" ; -lin blustery_A = compoundA (mkA "blustery"); -- from DictEng -lin blvd_N = mkN "blvd" ; -- from DictEng -lin bma_N = mkN "bma" ; -- from DictEng -lin bmus_N = mkN "bmus" ; -- from DictEng -lin bo'sn_N = mkN "bo'sn" "bo'sns"; -- from DictEng -lin bo'sun_N = mkN "bo'sun" "bo'suns"; -- from DictEng -lin boa_N = mkN "boa" "boas"; -- from DictEng -lin boa_constrictor_N = mkN "boa - constrictor" "boa - constrictors"; -- from DictEng -lin boar_N = mkN "boar" "boars"; -- from DictEng -lin board_N = mkN "board" "boards"; -- from DictEng -lin board_V = mkV "board" "boards" "boarded" "boarded" "boarding"; -- from DictEng -lin board_V2 = mkV2 (mkV "board" "boards" "boarded" "boarded" "boarding"); -- from DictEng -lin boarder_N = mkN "boarder" "boarders"; -- from DictEng -lin boarding_N = mkN "boarding" ; -- from DictEng -lin boarding_card_N = mkN "boarding - card" "boarding - cards"; -- from DictEng -lin boarding_house_N = mkN "boarding - house" "boarding - houses"; -- from DictEng -lin boarding_school_N = mkN "boarding - school" "boarding - schools"; -- from DictEng -lin boardroom_N = mkN "boardroom" "boardrooms"; -- from DictEng -lin boards_N = mkN "boards" ; -lin boardwalk_N = mkN "boardwalk" "boardwalks"; -- from DictEng -lin boarfish_N = mkN "boarfish" ; -lin boarhound_N = mkN "boarhound" ; -lin boast_N = mkN "boast" "boasts"; -- from DictEng -lin boast_V = mkV "boast" "boasts" "boasted" "boasted" "boasting"; -- from DictEng -lin boast_V2 = mkV2 (mkV "boast" "boasts" "boasted" "boasted" "boasting"); -- from DictEng -lin boast_VS = mkVS (mkV "boast" "boasts" "boasted" "boasted" "boasting"); -- from DictEng -lin boaster_N = mkN "boaster" "boasters"; -- from DictEng -lin boastful_A = compoundA (mkA "boastful"); -- from DictEng -lin boastfully_Adv = mkAdv "boastfully" ; -lin boastfulness_N = mkN "boastfulness" ; -lin boat_N = mkN "boat" "boats"; -- from DictEng -lin boat_V = mkV "boat" "boats" "boated" "boated" "boating"; -- from DictEng -lin boat_V2 = mkV2 (mkV "boat") ; -lin boat_shaped_A = compoundA (mkA "boat shaped") ; -lin boat_hook_N = mkN "boat - hook" "boat - hooks"; -- from DictEng -lin boat_house_N = mkN "boat - house" "boat - houses"; -- from DictEng -lin boat_race_N = mkN "boat - race" "boat - races"; -- from DictEng -lin boat_train_N = mkN "boat - train" "boat - trains"; -- from DictEng -lin boatbill_N = mkN "boatbill" ; -lin boatbuilder_N = mkN "boatbuilder" ; -lin boater_N = mkN "boater" "boaters"; -- from DictEng -lin boathouse_N = mkN "boathouse" ; -lin boating_N = mkN "boating" ; -lin boatload_N = mkN "boatload" ; -lin boatman_N = mkN "boatman" "boatmen" {- FIXME: guessed plural form -}; -- from DictEng -lin boatmanship_N = mkN "boatmanship" ; -lin boatswain_N = mkN "boatswain" "boatswains"; -- from DictEng -lin boatyard_N = mkN "boatyard" ; -lin bob_N = mkN "bob" "bob"; -- from DictEng -lin bob_V = mkV "bob" "bobs" "bobbed" "bobbed" "bobbing"; -- from DictEng -lin bob_V2 = mkV2 (mkV "bob" "bobs" "bobbed" "bobbed" "bobbing"); -- from DictEng -lin bobbin_N = mkN "bobbin" "bobbins"; -- from DictEng -lin bobble_N = mkN "bobble" ; -lin bobby_N = mkN "bobby" "bobbies"; -- from DictEng -lin bobby_soxer_N = mkN "bobby - soxer" "bobby - soxers"; -- from DictEng -lin bobbysoxer_N = mkN "bobbysoxer" ; -lin bobcat_N = mkN "bobcat" ; -lin bobolink_N = mkN "bobolink" "bobolinks"; -- from DictEng -lin bobsled_N = mkN "bobsled" "bobsleds"; -- from DictEng -lin bobsled_V2 = mkV2 (mkV "bobsled") ; -lin bobsledding_N = mkN "bobsledding" ; -lin bobsleigh_N = mkN "bobsleigh" "bobsleighs"; -- from DictEng -lin bobtail_A = mkA "bobtail" ; -lin bobtail_N = mkN "bobtail" "bobtails"; -- from DictEng -lin bobwhite_N = mkN "bobwhite" ; -lin bocce_N = mkN "bocce" ; -lin bocconia_N = mkN "bocconia" ; -lin boche_A = compoundA (mkA "boche"); -- from DictEng -lin bock_N = mkN "bock" ; -lin bodacious_A = mkA "bodacious" ; -lin bode_V = mkV "bode" "bodes" "boded" "boded" "boding"; -- from DictEng -lin bode_V2 = mkV2 (mkV "bode" "bodes" "boded" "boded" "boding"); -- from DictEng -lin bodega_N = mkN "bodega" ; -lin bodice_N = mkN "bodice" "bodices"; -- from DictEng -lin bodied_A = compoundA (mkA "bodied"); -- from DictEng -lin bodiless_A = mkA "bodiless" ; -lin bodily_A = compoundA (mkA "bodily"); -- from DictEng -lin bodily_Adv = mkAdv "bodily"; -- from DictEng -lin boding_N = mkN "boding" ; -- from DictEng -lin bodkin_N = mkN "bodkin" "bodkins"; -- from DictEng -lin body_N = mkN "body" "bodies"; -- from DictEng -lin body_english_PN = mkPN "body English" ; -lin body_servant_N = mkN "body - servant" "body - servants"; -- from DictEng -lin body_snatcher_N = mkN "body - snatcher" "body - snatchers"; -- from DictEng -lin bodybuilder_N = mkN "bodybuilder" ; -lin bodybuilding_N = mkN "bodybuilding" ; -lin bodyguard_N = mkN "bodyguard" "bodyguards"; -- from DictEng -lin bodywork_N = mkN "bodywork" "bodyworks"; -- from DictEng -lin boer_A = compoundA (mkA "boer"); -- from DictEng -lin boer_N = mkN "boer" "boers"; -- from DictEng -lin boffin_N = mkN "boffin" "boffins"; -- from DictEng -lin boffo_A = mkA "boffo" ; -lin bog_N = mkN "bog" "bogs"; -- from DictEng -lin bog_V = mkV "bog" "bogs" "bogged" "bogged" "bogging"; -- from DictEng -lin bog_V2 = mkV2 (mkV "bog" "bogs" "bogged" "bogged" "bogging"); -- from DictEng -lin bogey_N = mkN "bogey" "bogeys"; -- from DictEng -lin bogeyman_N = mkN "bogeyman" "bogeymen" {- FIXME: guessed plural form -}; -- from DictEng -lin boggle_V = mkV "boggle" "boggles" "boggled" "boggled" "boggling"; -- from DictEng -lin boggle_V2 = mkV2 (mkV "boggle") ; -lin boggy_A = mkA "boggy" "boggier"; -- from DictEng -lin bogie_N = mkN "bogie" "bogies"; -- from DictEng -lin bogus_A = compoundA (mkA "bogus"); -- from DictEng -lin bogy_N = mkN "bogy" "bogies"; -- from DictEng -lin bohemia_N = mkN "bohemia" ; -lin bohemian_A = compoundA (mkA "bohemian"); -- from DictEng -lin bohemian_N = mkN "bohemian" "bohemians"; -- from DictEng -lin bohemianism_N = mkN "bohemianism" ; -lin bohrium_N = mkN "bohrium" ; -lin boil_N = mkN "boil" "boils"; -- from DictEng -lin boil_V = mkV "boil" "boils" "boiled" "boiled" "boiling"; -- from DictEng -lin boil_V2 = mkV2 (mkV "boil" "boils" "boiled" "boiled" "boiling"); -- from DictEng -lin boiled_A = mkA "boiled" ; -lin boiler_N = mkN "boiler" "boilers"; -- from DictEng -lin boilerplate_N = mkN "boilerplate" ; -lin boilersuit_N = mkN "boilersuit" "boilersuits"; -- from DictEng -lin boiling_Adv = mkAdv "boiling" ; -lin boiling_N = mkN "boiling" ; -lin boiling_point_N = mkN "boiling - point" "boiling - points"; -- from DictEng -lin boisterous_A = compoundA (mkA "boisterous"); -- from DictEng -lin boisterousness_N = mkN "boisterousness" ; -- from DictEng -lin bola_N = mkN "bola" ; -lin bold_A = mkA "bold" "bolder"; -- from DictEng -lin boldface_N = mkN "boldface" ; -lin boldly_Adv = mkAdv "boldly" ; -lin boldness_N = mkN "boldness" ; -- from DictEng -lin bole_N = mkN "bole" "boles"; -- from DictEng -lin bolero_N = mkN "bolero" "boleros"; -- from DictEng -lin bolete_N = mkN "bolete" ; -lin bolide_N = mkN "bolide" ; -lin bolivar_N = mkN "bolivar" ; -lin bolivia_N = mkN "bolivia" ; -lin bolivian_A = compoundA (mkA "bolivian"); -- from DictEng -lin bolivian_N = mkN "bolivian" "bolivians"; -- from DictEng -lin boliviano_N = mkN "boliviano" ; -lin boll_N = mkN "boll" "bolls"; -- from DictEng -lin bollard_N = mkN "bollard" "bollards"; -- from DictEng -lin bollock_N = mkN "bollock" "bollocks"; -- from DictEng -lin bollworm_N = mkN "bollworm" ; -lin bolo_N = mkN "bolo" ; -lin bologna_N = mkN "bologna" ; -lin bologram_N = mkN "bologram" ; -lin bolographic_A = mkA "bolographic" ; -lin bolometer_N = mkN "bolometer" ; -lin bolometric_A = mkA "bolometric" ; -lin boloney_N = mkN "boloney" ; -- from DictEng -lin bolshevik_N = mkN "bolshevik" "bolsheviks"; -- from DictEng -lin bolshy_A = compoundA (mkA "bolshy"); -- from DictEng -lin bolster_N = mkN "bolster" "bolsters"; -- from DictEng -lin bolster_V = mkV "bolster"; -- from DictEng -lin bolster_V2 = mkV2 (mkV "bolster" "bolsters" "bolstered" "bolstered" "bolstering"); -- from DictEng -lin bolt_Adv = mkAdv "bolt"; -- from DictEng -lin bolt_N = mkN "bolt" "bolts"; -- from DictEng -lin bolt_V = mkV "bolt" "bolts" "bolted" "bolted" "bolting"; -- from DictEng -lin bolt_V2 = mkV2 (mkV "bolt" "bolts" "bolted" "bolted" "bolting"); -- from DictEng -lin bolt_hole_N = mkN "bolt - hole" "bolt - holes"; -- from DictEng -lin bolt_hole_N = mkN "bolt - hole" "bolt - holes"; -- from DictEng -lin bolti_N = mkN "bolti" ; -lin bolus_N = mkN "bolus" ; -lin bomb_N = mkN "bomb" "bombs"; -- from DictEng -lin bomb_V = mkV "bomb" "bombs" "bombed" "bombed" "bombing"; -- from DictEng -lin bomb_V2 = mkV2 (mkV "bomb" "bombs" "bombed" "bombed" "bombing"); -- from DictEng -lin bomb_proof_A = compoundA (mkA "bomb - proof"); -- from DictEng -lin bomb_sight_N = mkN "bomb - sight" "bomb - sights"; -- from DictEng -lin bomb_site_N = mkN "bomb - site" "bomb - sites"; -- from DictEng -lin bombard_V2 = mkV2 (mkV "bombard" "bombards" "bombarded" "bombarded" "bombarding"); -- from DictEng -lin bombardier_N = mkN "bombardier" "bombardiers"; -- from DictEng -lin bombardment_N = mkN "bombardment" "bombardments"; -- from DictEng -lin bombardon_N = mkN "bombardon" ; -lin bombast_N = mkN "bombast" ; -- from DictEng -lin bombastic_A = compoundA (mkA "bombastic"); -- from DictEng -lin bombastically_Adv = mkAdv "bombastically"; -- from DictEng -lin bombazine_N = mkN "bombazine" ; -lin bomber_N = mkN "bomber" "bombers"; -- from DictEng -lin bombie_N = mkN "bombie" ; -lin bombing_N = mkN "bombing" ; -lin bomblet_N = mkN "bomblet" ; -lin bombproof_A = mkA "bombproof" ; -lin bombshell_N = mkN "bombshell" "bombshells"; -- from DictEng -lin bombsight_N = mkN "bombsight" ; -lin bombycid_N = mkN "bombycid" ; -lin bon_mot_N = mkN "bon mot" "IRREG"; -- from DictEng -lin bona_fide_A = compoundA (mkA "bona fide"); -- from DictEng -lin bona_fide_Adv = mkAdv "bona fide"; -- from DictEng -lin bonanza_N = mkN "bonanza" "bonanzas"; -- from DictEng -lin bonbon_N = mkN "bonbon" "bonbons"; -- from DictEng -lin bond_N = mkN "bond" "bonds"; -- from DictEng -lin bond_V2 = mkV2 (mkV "bond" "bonds" "bonded" "bonded" "bonding"); -- from DictEng -lin bond_holder_N = mkN "bond - holder" "bond - holders"; -- from DictEng -lin bondable_A = mkA "bondable" ; -lin bondage_N = mkN "bondage" ; -- from DictEng -lin bondholder_N = mkN "bondholder" ; -lin bonding_N = mkN "bonding" ; -lin bondman_N = mkN "bondman" ; -lin bondsman_N = mkN "bondsman" ; -lin bonduc_N = mkN "bonduc" ; -lin bondwoman_N = mkN "bondwoman" ; -lin bone_A = mkA "bone" ; -lin bone_N = mkN "bone" "bones"; -- from DictEng -lin bone_V2 = mkV2 (mkV "bone" "bones" "boned" "boned" "boning"); -- from DictEng -lin bone_covered_A = compoundA (mkA "bone covered") ; -lin bone_dry_A = compoundA (mkA "bone - dry"); -- from DictEng -lin bone_idle_A = compoundA (mkA "bone - idle"); -- from DictEng -lin bone_dry_A = compoundA (mkA "bone - dry"); -- from DictEng -lin bone_head_N = mkN "bone - head" "bone - heads"; -- from DictEng -lin bone_idle_A = compoundA (mkA "bone - idle"); -- from DictEng -lin bone_lazy_A = compoundA (mkA "bone - lazy"); -- from DictEng -lin bone_setter_N = mkN "bone - setter" "bone - setters"; -- from DictEng -lin boned_A = mkA "boned" ; -lin bonefish_N = mkN "bonefish" ; -lin boneless_A = compoundA (mkA "boneless"); -- from DictEng -lin bonelike_A = mkA "bonelike" ; -lin bonemeal_N = mkN "bonemeal" "bonemeals"; -- from DictEng -lin boner_N = mkN "boner" "boners"; -- from DictEng -lin bones_N = mkN "bones" ; -lin boneset_N = mkN "boneset" ; -lin bonesetter_N = mkN "bonesetter" ; -lin boneshaker_N = mkN "boneshaker" "boneshakers"; -- from DictEng -lin bonfire_N = mkN "bonfire" "bonfires"; -- from DictEng -lin bong_N = mkN "bong" ; -lin bongo_N = mkN "bongo" "bongos"; -- from DictEng -lin bonheur_N = mkN "bonheur" ; -lin bonhomie_N = mkN "bonhomie" ; -- from DictEng -lin bonito_N = mkN "bonito" "bonitos"; -- from DictEng -lin bonk_V2 = mkV2 (mkV "bonk") ; -lin bonkers_A = compoundA (mkA "bonkers"); -- from DictEng -lin bonnet_N = mkN "bonnet" "bonnets"; -- from DictEng -lin bonnily_Adv = mkAdv "bonnily"; -- from DictEng -lin bonny_A = mkA "bonny" "bonnier"; -- from DictEng -lin bonsai_N = mkN "bonsai" ; -lin bonus_N = mkN "bonus" "bonuses"; -- from DictEng -lin bony_A = mkA "bony" "bonier"; -- from DictEng -lin bony_plated_A = compoundA (mkA "bony plated") ; -lin bonyness_N = mkN "bonyness" ; -lin bonzer_A = mkA "bonzer" ; -lin boo_N = mkN "boo" "boos"; -- from DictEng -lin boo_V = mkV "boo" "boos" "booed" "booed" "booing"; -- from DictEng -lin boo_V2 = mkV2 (mkV "boo" "boos" "booed" "booed" "booing"); -- from DictEng -lin boob_N = mkN "boob" "boobs"; -- from DictEng -lin boob_V = mkV "boob" "boobs" "boobed" "boobed" "boobing"; -- from DictEng -lin booboisie_N = mkN "booboisie" ; -lin booby_N = mkN "booby" "boobies"; -- from DictEng -lin booby_trap_N = mkN "booby - trap" "booby - traps"; -- from DictEng -lin boodle_N = mkN "boodle" ; -lin booger_N = mkN "booger" ; -lin boogie_N = mkN "boogie" "boogies"; -- from DictEng -lin boogie_woogie_N = mkN "boogie - woogie" "boogie - woogies"; -- from DictEng -lin book_N = mkN "book" "books"; -- from DictEng -lin book_V2 = mkV2 (mkV "book" "books" "booked" "booked" "booking"); -- from DictEng -lin book_end_N = mkN "book - end" "book - ends"; -- from DictEng -lin book_keeper_N = mkN "book - keeper" "book - keepers"; -- from DictEng -lin bookable_A = compoundA (mkA "bookable"); -- from DictEng -lin bookbinder_N = mkN "bookbinder" ; -lin bookbindery_N = mkN "bookbindery" ; -lin bookbinding_N = mkN "bookbinding" ; -lin bookcase_N = mkN "bookcase" "bookcases"; -- from DictEng -lin bookclub_N = mkN "bookclub" "bookclubs"; -- from DictEng -lin bookdealer_N = mkN "bookdealer" ; -lin booked_A = mkA "booked" ; -lin bookend_N = mkN "bookend" ; -lin booker_N = mkN "booker" ; -lin bookie_N = mkN "bookie" "bookies"; -- from DictEng -lin booking_N = mkN "booking" "bookings"; -- from DictEng -lin bookish_A = compoundA (mkA "bookish"); -- from DictEng -lin bookishness_N = mkN "bookishness" ; -- from DictEng -lin bookkeeper_N = mkN "bookkeeper" "bookkeepers"; -- from DictEng -lin bookkeeping_N = mkN "bookkeeping" ; -- from DictEng -lin booklet_N = mkN "booklet" "booklets"; -- from DictEng -lin booklouse_N = mkN "booklouse" ; -lin bookmaker_N = mkN "bookmaker" "bookmakers"; -- from DictEng -lin bookmark_N = mkN "bookmark" "bookmarks"; -- from DictEng -lin bookmarker_N = mkN "bookmarker" "bookmarkers"; -- from DictEng -lin bookmobile_N = mkN "bookmobile" "bookmobiles"; -- from DictEng -lin bookplate_N = mkN "bookplate" ; -lin bookseller_N = mkN "bookseller" "booksellers"; -- from DictEng -lin bookshelf_N = mkN "bookshelf" ; -lin bookshop_N = mkN "bookshop" "bookshops"; -- from DictEng -lin bookstall_N = mkN "bookstall" "bookstalls"; -- from DictEng -lin bookworm_N = mkN "bookworm" "bookworms"; -- from DictEng -lin boom_N = mkN "boom" "booms"; -- from DictEng -lin boom_V = mkV "boom" "booms" "boomed" "boomed" "booming"; -- from DictEng -lin boom_V2 = mkV2 (mkV "boom" "booms" "boomed" "boomed" "booming"); -- from DictEng -lin boomerang_N = mkN "boomerang" "boomerangs"; -- from DictEng -lin booming_A = mkA "booming" ; -lin boon_A = compoundA (mkA "boon"); -- from DictEng -lin boon_N = mkN "boon" "boons"; -- from DictEng -lin boondoggle_N = mkN "boondoggle" ; -lin boor_N = mkN "boor" "boors"; -- from DictEng -lin boorish_A = compoundA (mkA "boorish"); -- from DictEng -lin boorishly_Adv = mkAdv "boorishly" ; -lin boorishness_N = mkN "boorishness" ; -- from DictEng -lin boost_N = mkN "boost" "boosts"; -- from DictEng -lin boost_V2 = mkV2 (mkV "boost" "boosts" "boosted" "boosted" "boosting"); -- from DictEng -lin booster_N = mkN "booster" "boosters"; -- from DictEng -lin boot_N = mkN "boot" "boots"; -- from DictEng -lin boot_V2 = mkV2 (mkV "boot" "boots" "booted" "booted" "booting"); -- from DictEng -lin boot_shaped_A = compoundA (mkA "boot shaped") ; -lin bootblack_N = mkN "bootblack" ; -lin booted_A = compoundA (mkA "booted"); -- from DictEng -lin bootee_N = mkN "bootee" "bootees"; -- from DictEng -lin booth_N = mkN "booth" "booths"; -- from DictEng -lin boothose_N = mkN "boothose" ; -lin bootjack_N = mkN "bootjack" ; -lin bootlace_N = mkN "bootlace" "bootlaces"; -- from DictEng -lin bootleg_A = mkA "bootleg" ; -lin bootleg_N = mkN "bootleg" ; -lin bootleg_V2 = mkV2 (mkV "bootleg" "bootlegs" "bootlegged" "bootlegged" "bootlegging"); -- from DictEng -lin bootlegger_N = mkN "bootlegger" "bootleggers"; -- from DictEng -lin bootlegging_N = mkN "bootlegging" ; -lin bootless_A = compoundA (mkA "bootless"); -- from DictEng -lin bootlicking_A = mkA "bootlicking" ; -lin bootmaker_N = mkN "bootmaker" ; -lin bootstrap_N = mkN "bootstrap" ; -lin booty_N = mkN "booty" ; -- from DictEng -lin booze_N = mkN "booze" ; -- from DictEng -lin booze_V = mkV "booze" "boozes" "boozed" "boozed" "boozing"; -- from DictEng -lin booze_up_N = mkN "booze - up" "booze - ups"; -- from DictEng -lin boozer_N = mkN "boozer" "boozers"; -- from DictEng -lin boozy_A = mkA "boozy" "boozier"; -- from DictEng -lin bop_N = mkN "bop" ; -lin bopeep_N = mkN "bopeep" ; -- from DictEng -lin boracic_A = compoundA (mkA "boracic"); -- from DictEng -lin borage_N = mkN "borage" ; -- from DictEng -lin borate_N = mkN "borate" ; -lin borated_A = mkA "borated" ; -lin borax_N = mkN "borax" ; -- from DictEng -lin bordeaux_N = mkN "bordeaux" ; -- from DictEng -lin bordelaise_N = mkN "bordelaise" ; -lin border_N = mkN "border" "borders"; -- from DictEng -lin border_V = mkV "border" "borders" "bordered" "bordered" "bordering"; -- from DictEng -lin border_V2 = mkV2 (mkV "border" "borders" "bordered" "bordered" "bordering"); -- from DictEng -lin bordered_A = mkA "bordered" ; -lin borderer_N = mkN "borderer" "borderers"; -- from DictEng -lin borderland_N = mkN "borderland" "borderlands"; -- from DictEng -lin borderline_A = mkA "borderline" ; -lin borderline_N = mkN "borderline" "borderlines"; -- from DictEng -lin bore_N = mkN "bore" "bores"; -- from DictEng -lin bore_V = mkV "bore" "bores" "bored" "bored" "boring"; -- from DictEng -lin bore_V2 = mkV2 (mkV "bore" "bores" "bored" "bored" "boring"); -- from DictEng -lin bore_hole_N = mkN "bore - hole" "bore - holes"; -- from DictEng -lin boreal_A = mkA "boreal" ; -lin bored_A = mkA "bored" ; -lin boredom_N = mkN "boredom" ; -- from DictEng -lin borer_N = mkN "borer" "borers"; -- from DictEng -lin boric_A = compoundA (mkA "boric"); -- from DictEng -lin boring_A = compoundA (mkA "boring"); -- from DictEng -lin boring_N = mkN "boring" ; -lin boringly_Adv = mkAdv "boringly" ; -lin boringness_N = mkN "boringness" ; -lin born_A = mkA "born" ; -lin born_again_A = compoundA (mkA "born again") ; -lin born_again_christian_PN = mkPN "born again Christian" ; -lin bornite_N = mkN "bornite" ; -lin boron_N = mkN "boron" ; -- from DictEng -lin boronic_A = mkA "boronic" ; -lin borosilicate_N = mkN "borosilicate" ; -lin borough_N = mkN "borough" "boroughs"; -- from DictEng -lin borough_english_PN = mkPN "borough English" ; -lin borrelia_N = mkN "borrelia" ; -lin borrow_V = mkV "borrow"; -- from DictEng -lin borrow_V2 = mkV2 (mkV "borrow" "borrows" "borrowed" "borrowed" "borrowing"); -- from DictEng -lin borrow_VV = mkVV (mkV "borrow" "borrows" "borrowed" "borrowed" "borrowing"); -- from DictEng -lin borrower_N = mkN "borrower" "borrowers"; -- from DictEng -lin borrowing_N = mkN "borrowing" ; -lin borsch_N = mkN "borsch" ; -- from DictEng -lin borstal_N = mkN "borstal" "borstals"; -- from DictEng -lin bortsch_N = mkN "bortsch" ; -- from DictEng -lin borzoi_N = mkN "borzoi" "borzois"; -- from DictEng -lin bosc_N = mkN "bosc" ; -lin bosh_N = mkN "bosh" ; -- from DictEng -lin bosk_N = mkN "bosk" ; -lin boskopoid_A = mkA "boskopoid" ; -lin bosky_A = compoundA (mkA "bosky"); -- from DictEng -lin bosom_N = mkN "bosom" "bosoms"; -- from DictEng -lin bosomed_A = mkA "bosomed" ; -lin bosomy_A = mkA "bosomy" ; -lin boson_N = mkN "boson" ; -lin boss_A = mkA "boss" ; -lin boss_N = mkN "boss" "bosses"; -- from DictEng -lin boss_V2 = mkV2 (mkV "boss" "bosses" "bossed" "bossed" "bossing"); -- from DictEng -lin boss_eyed_A = compoundA (mkA "boss - eyed"); -- from DictEng -lin boss_eyed_A = compoundA (mkA "boss - eyed"); -- from DictEng -lin bossism_N = mkN "bossism" ; -lin bossy_A = mkA "bossy" "bossier"; -- from DictEng -lin bot_N = mkN "bot" ; -lin bota_N = mkN "bota" ; -lin botanic_A = mkA "botanic" ; -lin botanical_A = compoundA (mkA "botanical"); -- from DictEng -lin botanical_N = mkN "botanical" ; -lin botanist_N = mkN "botanist" "botanists"; -- from DictEng -lin botanize_V = mkV "botanize" "botanizes" "botanized" "botanized" "botanizing"; -- from DictEng -lin botany_N = mkN "botany" ; -- from DictEng -lin botch_N = mkN "botch" "botches"; -- from DictEng -lin botch_V2 = mkV2 (mkV "botch" "botches" "botched" "botched" "botching"); -- from DictEng -lin botcher_N = mkN "botcher" "botchers"; -- from DictEng -lin botchy_A = mkA "botchy" ; -lin botfly_N = mkN "botfly" ; -lin both_A = mkA "both" ; -lin both_Adv = mkAdv "both"; -- from DictEng -lin both_Det = mkDeterminer plural "both"; -- from DictEng -lin both7and_DConj = mkConj "both" "and"; -- from DictEng -lin bother_N = mkN "bother" ; -- from DictEng -lin bother_V = mkV "bother" "bothers" "bothered" "bothered" "bothering"; -- from DictEng -lin bother_V2 = mkV2 (mkV "bother" "bothers" "bothered" "bothered" "bothering"); -- from DictEng -lin bother_V2V = mkV2V (mkV "bother" "bothers" "bothered" "bothered" "bothering") noPrep to_Prep ; -- from DictEng -lin bothered_A = mkA "bothered" ; -lin bothersome_A = compoundA (mkA "bothersome"); -- from DictEng -lin botonee_A = mkA "botonee" ; -lin botryoid_A = mkA "botryoid" ; -lin bottle_N = mkN "bottle" "bottles"; -- from DictEng -lin bottle_V2 = mkV2 (mkV "bottle" "bottles" "bottled" "bottled" "bottling"); -- from DictEng -lin bottle_fed_A = compoundA (mkA "bottle - fed"); -- from DictEng -lin bottle_green_A = compoundA (mkA "bottle - green"); -- from DictEng -lin bottle_shaped_A = compoundA (mkA "bottle shaped") ; -lin bottle_tree_N = mkN "bottle tree" ; -lin bottle_fed_A = compoundA (mkA "bottle - fed"); -- from DictEng -lin bottle_green_A = compoundA (mkA "bottle - green"); -- from DictEng -lin bottlebrush_N = mkN "bottlebrush" ; -lin bottlecap_N = mkN "bottlecap" ; -lin bottlefeed_V2 = mkV2 (mkV "bottlefeed") ; -lin bottleneck_N = mkN "bottleneck" "bottlenecks"; -- from DictEng -lin bottler_N = mkN "bottler" ; -lin bottom_A = mkA "bottom" ; -lin bottom_N = mkN "bottom" "bottoms"; -- from DictEng -lin bottom_V = mkV "bottom" "bottoms" "bottomed" "bottomed" "bottoming"; -- from DictEng -lin bottom_dwelling_A = compoundA (mkA "bottom dwelling") ; -lin bottom_feeder_N = mkN "bottom feeder" ; -lin bottom_feeding_A = compoundA (mkA "bottom feeding") ; -lin bottom_up_A = compoundA (mkA "bottom up") ; -lin bottomed_A = mkA "bottomed" ; -lin bottomland_N = mkN "bottomland" ; -lin bottomless_A = compoundA (mkA "bottomless"); -- from DictEng -lin bottomlessness_N = mkN "bottomlessness" ; -lin bottommost_A = mkA "bottommost" ; -lin botuliform_A = mkA "botuliform" ; -lin botulin_N = mkN "botulin" ; -lin botulinal_A = mkA "botulinal" ; -lin botulinum_toxin_a_PN = mkPN "botulinum toxin A" ; -lin botulinus_N = mkN "botulinus" ; -lin botulism_N = mkN "botulism" ; -- from DictEng -lin boucle_N = mkN "boucle" ; -lin boudoir_N = mkN "boudoir" "boudoirs"; -- from DictEng -lin bouffant_A = mkA "bouffant" ; -lin bouffant_N = mkN "bouffant" ; -lin bougainvillea_N = mkN "bougainvillea" "bougainvilleas"; -- from DictEng -lin bough_N = mkN "bough" "boughs"; -- from DictEng -lin boughed_A = mkA "boughed" ; -lin boughless_A = mkA "boughless" ; -lin boughten_A = mkA "boughten" ; -lin bouillabaisse_N = mkN "bouillabaisse" ; -lin bouillon_N = mkN "bouillon" ; -- from DictEng -lin boulder_N = mkN "boulder" "boulders"; -- from DictEng -lin boulevard_N = mkN "boulevard" "boulevards"; -- from DictEng -lin boulevardier_N = mkN "boulevardier" ; -lin boulle_N = mkN "boulle" ; -lin bounce_N = mkN "bounce" "bounces"; -- from DictEng -lin bounce_V = mkV "bounce" "bounces" "bounced" "bounced" "bouncing"; -- from DictEng -lin bounce_V2 = mkV2 (mkV "bounce" "bounces" "bounced" "bounced" "bouncing"); -- from DictEng -lin bouncer_N = mkN "bouncer" ; -lin bouncing_A = compoundA (mkA "bouncing"); -- from DictEng -lin bouncy_A = mkA "bouncy" "bouncier"; -- from DictEng -lin bound_A = compoundA (mkA "bound"); -- from DictEng -lin bound_N = mkN "bound" "bounds"; -- from DictEng -lin bound_V = mkV "bound" "bounds" "bounded" "bounded" "bounding"; -- from DictEng -lin bound_V2 = mkV2 (mkV "bound" "bounds" "bounded" "bounded" "bounding"); -- from DictEng -lin bound_V2V = mkV2V (mkV "bound" "bounds" "bounded" "bounded" "bounding") noPrep to_Prep ; -- from DictEng -lin bound_up_A = compoundA (mkA "bound up") ; -lin boundary_N = mkN "boundary" "boundaries"; -- from DictEng -lin bounded_A = mkA "bounded" ; -lin bounden_A = compoundA (mkA "bounden"); -- from DictEng -lin bounder_N = mkN "bounder" "bounders"; -- from DictEng -lin boundless_A = compoundA (mkA "boundless"); -- from DictEng -lin boundlessly_Adv = mkAdv "boundlessly" ; -lin bounteous_A = compoundA (mkA "bounteous"); -- from DictEng -lin bountied_A = mkA "bountied" ; -lin bountiful_A = compoundA (mkA "bountiful"); -- from DictEng -lin bountifully_Adv = mkAdv "bountifully" ; -lin bounty_N = mkN "bounty" "bounties"; -- from DictEng -lin bouquet_N = mkN "bouquet" "bouquets"; -- from DictEng -lin bourbon_N = mkN "bourbon" "bourbons"; -- from DictEng -lin bourgeois_A = compoundA (mkA "bourgeois"); -- from DictEng -lin bourgeois_N = mkN "bourgeois" "bourgeois"; -- from DictEng -lin bourgeoisie_N = mkN "bourgeoisie" "bourgeoisies"; -- from DictEng -lin bourguignon_N = mkN "bourguignon" ; -lin bourn_N = mkN "bourn" "bourns"; -- from DictEng -lin bourne_N = mkN "bourne" "bournes"; -- from DictEng -lin bourse_N = mkN "bourse" "bourses"; -- from DictEng -lin bourtree_N = mkN "bourtree" ; -lin boustrophedon_N = mkN "boustrophedon" ; -lin boustrophedonic_A = mkA "boustrophedonic" ; -lin bout_N = mkN "bout" "bouts"; -- from DictEng -lin boutique_N = mkN "boutique" "boutiques"; -- from DictEng -lin boutonniere_N = mkN "boutonniere" ; -lin bovid_N = mkN "bovid" ; -lin bovine_A = compoundA (mkA "bovine"); -- from DictEng -lin bovine_N = mkN "bovine" ; -lin bovril_N = mkN "bovril" ; -- from DictEng -lin bow_N = mkN "bow" "bows"; -- from DictEng -lin bow_V = mkV "bow" "bows" "bowed" "bowed" "bowing"; -- from DictEng -lin bow_V2 = mkV2 (mkV "bow" "bows" "bowed" "bowed" "bowing"); -- from DictEng -lin bow_wow_N = mkN "bow - wow" "bow - wows"; -- from DictEng -lin bow_wow_N = mkN "bow - wow" "bow - wows"; -- from DictEng -lin bowdlerization_N = mkN "bowdlerization" ; -lin bowdlerize_V2 = mkV2 (mkV "bowdlerize" "bowdlerizes" "bowdlerized" "bowdlerized" "bowdlerizing"); -- from DictEng -lin bowed_A = mkA "bowed" ; -lin bowed_down_A = compoundA (mkA "bowed down") ; -lin bowel_N = mkN "bowel" "bowels"; -- from DictEng -lin bowels_N = mkN "bowels" ; -lin bower_N = mkN "bower" "bowers"; -- from DictEng -lin bowerbird_N = mkN "bowerbird" ; -lin bowery_A = mkA "bowery" ; -lin bowfin_N = mkN "bowfin" ; -lin bowfront_A = mkA "bowfront" ; -lin bowhead_N = mkN "bowhead" ; -lin bowie_knife_N = mkN "bowie knife" "bowie knives"; -- from DictEng -lin bowing_N = mkN "bowing" ; -- from DictEng -lin bowl_N = mkN "bowl" "bowls"; -- from DictEng -lin bowl_V = mkV "bowl" "bowls" "bowled" "bowled" "bowling"; -- from DictEng -lin bowl_V2 = mkV2 (mkV "bowl" "bowls" "bowled" "bowled" "bowling"); -- from DictEng -lin bowl_shaped_A = compoundA (mkA "bowl shaped") ; -lin bowleg_N = mkN "bowleg" ; -lin bowler_N = mkN "bowler" "bowlers"; -- from DictEng -lin bowline_N = mkN "bowline" "bowlines"; -- from DictEng -lin bowling_N = mkN "bowling" ; -lin bowling_green_N = mkN "bowling - green" "bowling - greens"; -- from DictEng -lin bowls_N = mkN "bowls" "bowls"; -- from DictEng -lin bowman_N = mkN "bowman" "bowmen" {- FIXME: guessed plural form -}; -- from DictEng -lin bowsprit_N = mkN "bowsprit" "bowsprits"; -- from DictEng -lin bowstring_N = mkN "bowstring" ; -lin box_N = mkN "box" "boxes"; -- from DictEng -lin box_V = mkV "box" "boxes" "boxed" "boxed" "boxing"; -- from DictEng -lin box_V2 = mkV2 (mkV "box" "boxes" "boxed" "boxed" "boxing"); -- from DictEng -lin box_kite_N = mkN "box - kite" "box - kites"; -- from DictEng -lin box_number_N = mkN "box - number" "box - numbers"; -- from DictEng -lin box_office_N = mkN "box - office" "box - offices"; -- from DictEng -lin boxcar_N = mkN "boxcar" ; -lin boxcars_N = mkN "boxcars" ; -lin boxed_A = mkA "boxed" ; -lin boxer_N = mkN "boxer" "boxers"; -- from DictEng -lin boxfish_N = mkN "boxfish" ; -lin boxful_N = mkN "boxful" "boxfuls"; -- from DictEng -lin boxing_N = mkN "boxing" ; -- from DictEng -lin boxing_day_N = mkN "boxing day" "boxing days"; -- from DictEng -lin boxing_glove_N = mkN "boxing - glove" "boxing - gloves"; -- from DictEng -lin boxing_match_N = mkN "boxing - match" "boxing - matches"; -- from DictEng -lin boxlike_A = mkA "boxlike" ; -lin boxwood_N = mkN "boxwood" ; -- from DictEng -lin boy_N = mkN "boy" "boys"; -- from DictEng -lin boycott_N = mkN "boycott" "boycotts"; -- from DictEng -lin boycott_V2 = mkV2 (mkV "boycott" "boycotts" "boycotted" "boycotted" "boycotting"); -- from DictEng -lin boyfriend_N = mkN "boyfriend" "boyfriends"; -- from DictEng -lin boyhood_N = mkN "boyhood" ; -- from DictEng -lin boyish_A = compoundA (mkA "boyish"); -- from DictEng -lin boyishly_Adv = mkAdv "boyishly" ; -lin boyishness_N = mkN "boyishness" ; -lin boysenberry_N = mkN "boysenberry" ; -lin bra_N = mkN "bra" "bras"; -- from DictEng -lin brace_N = mkN "brace" "brace"; -- from DictEng -lin brace_V = mkV "brace" "braces" "braced" "braced" "bracing"; -- from DictEng -lin brace_V2 = mkV2 (mkV "brace" "braces" "braced" "braced" "bracing"); -- from DictEng -lin braced_A = mkA "braced" ; -lin bracelet_N = mkN "bracelet" "bracelets"; -- from DictEng -lin bracer_N = mkN "bracer" ; -lin bracero_N = mkN "bracero" ; -lin brachial_A = mkA "brachial" ; -lin brachiate_A = mkA "brachiate" ; -lin brachiation_N = mkN "brachiation" ; -lin brachiopod_A = mkA "brachiopod" ; -lin brachiopod_N = mkN "brachiopod" ; -lin brachium_N = mkN "brachium" ; -lin brachycephalic_A = mkA "brachycephalic" ; -lin brachycephalic_N = mkN "brachycephalic" ; -lin brachycephaly_N = mkN "brachycephaly" ; -lin brachydactylic_A = mkA "brachydactylic" ; -lin brachydactyly_N = mkN "brachydactyly" ; -lin brachypterous_A = mkA "brachypterous" ; -lin brachyuran_N = mkN "brachyuran" ; -lin brachyurous_A = mkA "brachyurous" ; -lin bracing_A = mkA "bracing" ; -lin bracken_N = mkN "bracken" ; -- from DictEng -lin bracket_N = mkN "bracket" "brackets"; -- from DictEng -lin bracket_V2 = mkV2 (mkV "bracket" "brackets" "bracketed" "bracketed" "bracketing"); -- from DictEng -lin brackish_A = compoundA (mkA "brackish"); -- from DictEng -lin brackishness_N = mkN "brackishness" ; -lin bract_N = mkN "bract" "bracts"; -- from DictEng -lin bracteal_A = mkA "bracteal" ; -lin bracteate_A = mkA "bracteate" ; -lin bracteolate_A = mkA "bracteolate" ; -lin bracteole_N = mkN "bracteole" ; -lin brad_N = mkN "brad" "brads"; -- from DictEng -lin bradawl_N = mkN "bradawl" "bradawls"; -- from DictEng -lin bradycardia_N = mkN "bradycardia" ; -lin brae_N = mkN "brae" "braes"; -- from DictEng -lin brag_N = mkN "brag" ; -lin brag_V = mkV "brag" "brags" "bragged" "bragged" "bragging"; -- from DictEng -lin braggadocio_N = mkN "braggadocio" ; -lin braggart_N = mkN "braggart" "braggarts"; -- from DictEng -lin bragger_N = mkN "bragger" ; -lin bragging_N = mkN "bragging" ; -- from DictEng -lin brahman_N = mkN "brahman" ; -lin brahmin_N = mkN "brahmin" "brahmins"; -- from DictEng -lin brahminic_A = mkA "brahminic" ; -lin braid_N = mkN "braid" "braids"; -- from DictEng -lin braid_V2 = mkV2 (mkV "braid" "braids" "braided" "braided" "braiding"); -- from DictEng -lin braided_A = mkA "braided" ; -lin brail_N = mkN "brail" ; -lin braille_N = mkN "braille" ; -- from DictEng -lin brain_N = mkN "brain" "brains"; -- from DictEng -lin brain_V2 = mkV2 (mkV "brain" "brains" "brained" "brained" "braining"); -- from DictEng -lin brain_dead_A = compoundA (mkA "brain dead") ; -lin brain_fag_N = mkN "brain - fag" ; -- from DictEng -lin brain_teaser_N = mkN "brain - teaser" "brain - teasers"; -- from DictEng -lin brainchild_N = mkN "brainchild" "brainchildren" {- FIXME: guessed plural form -}; -- from DictEng -lin brainless_A = compoundA (mkA "brainless"); -- from DictEng -lin brainsick_A = mkA "brainsick" ; -lin brainstem_N = mkN "brainstem" ; -lin brainstorm_N = mkN "brainstorm" "brainstorms"; -- from DictEng -lin brainstorming_N = mkN "brainstorming" ; -lin brainwash_V2 = mkV2 (mkV "brainwash" "brainwashes" "brainwashed" "brainwashed" "brainwashing"); -- from DictEng -lin brainwashed_A = compoundA (mkA "brainwashed"); -- from DictEng -lin brainwashing_N = mkN "brainwashing" ; -- from DictEng -lin brainwave_N = mkN "brainwave" "brainwaves"; -- from DictEng -lin brainworker_N = mkN "brainworker" ; -lin brainy_A = mkA "brainy" "brainier"; -- from DictEng -lin braise_V2 = mkV2 (mkV "braise" "braises" "braised" "braised" "braising"); -- from DictEng -lin braised_A = mkA "braised" ; -lin braising_N = mkN "braising" ; -lin brake_N = mkN "brake" "brakes"; -- from DictEng -lin brake_V = mkV "brake" "brakes" "braked" "braked" "braking"; -- from DictEng -lin brake_V2 = mkV2 (mkV "brake" "brakes" "braked" "braked" "braking"); -- from DictEng -lin brakeman_N = mkN "brakeman" "brakemen" {- FIXME: guessed plural form -}; -- from DictEng -lin braky_A = mkA "braky" ; -lin bramble_N = mkN "bramble" "brambles"; -- from DictEng -lin brambling_N = mkN "brambling" ; -lin bran_N = mkN "bran" ; -- from DictEng -lin bran_new_A = compoundA (mkA "bran - new"); -- from DictEng -lin branch_N = mkN "branch" "branches"; -- from DictEng -lin branch_V = mkV "branch" "branches" "branched" "branched" "branching"; -- from DictEng -lin branched_A = mkA "branched" ; -lin branchial_A = mkA "branchial" ; -lin branchiate_A = mkA "branchiate" ; -lin branching_A = mkA "branching" ; -lin branching_N = mkN "branching" ; -lin branchiopod_A = mkA "branchiopod" ; -lin branchless_A = mkA "branchless" ; -lin branchlet_N = mkN "branchlet" ; -lin branchy_A = mkA "branchy" "branchier"; -- from DictEng -lin brand_N = mkN "brand" "brands"; -- from DictEng -lin brand_V2 = mkV2 (mkV "brand" "brands" "branded" "branded" "branding"); -- from DictEng -lin brand_new_A = compoundA (mkA "brand - new"); -- from DictEng -lin brand_newness_N = mkN "brand newness" ; -lin brand_new_A = compoundA (mkA "brand - new"); -- from DictEng -lin branded_A = mkA "branded" ; -lin branding_iron_N = mkN "branding - iron" "branding - irons"; -- from DictEng -lin brandish_V2 = mkV2 (mkV "brandish" "brandishes" "brandished" "brandished" "brandishing"); -- from DictEng -lin brandy_N = mkN "brandy" "brandies"; -- from DictEng -lin brandy_ball_N = mkN "brandy - ball" "brandy - balls"; -- from DictEng -lin brandy_snap_N = mkN "brandy - snap" "brandy - snaps"; -- from DictEng -lin brandyball_N = mkN "brandyball" ; -lin brandysnap_N = mkN "brandysnap" ; -lin brant_N = mkN "brant" ; -lin brash_A = mkA "brash" "brasher"; -- from DictEng -lin brashness_N = mkN "brashness" ; -lin brass_N = mkN "brass" "brasses"; -- from DictEng -lin brassard_N = mkN "brassard" "brassards"; -- from DictEng -lin brassavola_N = mkN "brassavola" ; -lin brassbound_A = mkA "brassbound" ; -lin brasserie_N = mkN "brasserie" "brasseries"; -- from DictEng -lin brassie_N = mkN "brassie" ; -lin brassiere_N = mkN "brassiere" ; -lin brassiere_1_N = mkN "brassiere" "brassieres"; -- from DictEng -lin brassiere_2_N = mkN "brassière" "brassières"; -- from DictEng -lin brassy_A = mkA "brassy" "brassier"; -- from DictEng -lin brat_N = mkN "brat" "brats"; -- from DictEng -lin brattice_N = mkN "brattice" ; -lin bratty_A = mkA "bratty" ; -lin bratwurst_N = mkN "bratwurst" ; -lin bravado_N = mkN "bravado" "bravados"; -- from DictEng -lin brave_A = mkA "brave" "braver"; -- from DictEng -lin brave_N = mkN "brave" "braves"; -- from DictEng -lin brave_V2 = mkV2 (mkV "brave" "braves" "braved" "braved" "braving"); -- from DictEng -lin bravely_Adv = mkAdv "bravely" ; -lin bravery_N = mkN "bravery" ; -- from DictEng -lin bravo_N = mkN "bravo" "bravos"; -- from DictEng -lin bravura_N = mkN "bravura" ; -lin brawl_N = mkN "brawl" "brawls"; -- from DictEng -lin brawl_V = mkV "brawl" "brawls" "brawled" "brawled" "brawling"; -- from DictEng -lin brawler_N = mkN "brawler" "brawlers"; -- from DictEng -lin brawn_N = mkN "brawn" ; -- from DictEng -lin brawny_A = mkA "brawny" "brawnier"; -- from DictEng -lin bray_N = mkN "bray" "brays"; -- from DictEng -lin bray_V = mkV "bray" ; -lin bray_V2 = mkV2 (mkV "bray" "brays" "brayed" "brayed" "braying"); -- from DictEng -lin braze_V2 = mkV2 (mkV "braze" "brazes" "brazed" "brazed" "brazing"); -- from DictEng -lin brazen_A = compoundA (mkA "brazen"); -- from DictEng -lin brazen_V2 = mkV2 (mkV "brazen" "brazens" "brazened" "brazened" "brazening"); -- from DictEng -lin brazen_faced_A = compoundA (mkA "brazen - faced"); -- from DictEng -lin brazenly_Adv = mkAdv "brazenly" ; -lin brazier_N = mkN "brazier" "braziers"; -- from DictEng -lin brazilian_A = compoundA (mkA "brazilian"); -- from DictEng -lin brazilian_N = mkN "brazilian" "brazilians"; -- from DictEng -lin brazilwood_N = mkN "brazilwood" ; -lin breach_N = mkN "breach" "breaches"; -- from DictEng -lin breach_V2 = mkV2 (mkV "breach" "breaches" "breached" "breached" "breaching"); -- from DictEng -lin bread_N = mkN "bread" ; -- from DictEng -lin bread_bin_N = mkN "bread bin" ; -lin breadbasket_N = mkN "breadbasket" ; -lin breadboard_N = mkN "breadboard" ; -lin breadcrumb_N = mkN "breadcrumb" "breadcrumbs"; -- from DictEng -lin breadfruit_N = mkN "breadfruit" "breadfruit"; -- from DictEng -lin breadline_N = mkN "breadline" "breadlines"; -- from DictEng -lin breadroot_N = mkN "breadroot" ; -lin breadstick_N = mkN "breadstick" ; -lin breadstuff_N = mkN "breadstuff" ; -lin breadth_N = mkN "breadth" "breadths"; -- from DictEng -lin breadthways_Adv = mkAdv "breadthways"; -- from DictEng -lin breadthwise_Adv = mkAdv "breadthwise"; -- from DictEng -lin breadwinner_N = mkN "breadwinner" "breadwinners"; -- from DictEng -lin break_N = mkN "break" "breaks"; -- from DictEng -lin break_V = IrregEng.break_V; -- from DictEng -lin break_V2 = mkV2 (IrregEng.break_V); -- from DictEng -lin break_apart_V2 = mkV2 (mkV "break apart") ; -lin break_down_V2 = mkV2 (mkV "break down") ; -lin break_in_N = mkN "break - in" "break - ins"; -- from DictEng -lin break_up_N = mkN "break - up" "break - ups"; -- from DictEng -lin break_up_V2 = mkV2 (mkV "break up") ; -lin breakable_A = compoundA (mkA "breakable"); -- from DictEng -lin breakable_N = mkN "breakable" ; -lin breakableness_N = mkN "breakableness" ; -lin breakage_N = mkN "breakage" "breakages"; -- from DictEng -lin breakaway_A = mkA "breakaway" ; -lin breakaway_N = mkN "breakaway" "breakaways"; -- from DictEng -lin breakaways_N = mkN "breakaways" "breakawayss"; -- from DictEng -lin breakax_N = mkN "breakax" ; -lin breakdown_N = mkN "breakdown" "breakdowns"; -- from DictEng -lin breaker_N = mkN "breaker" "breakers"; -- from DictEng -lin breakfast_N = mkN "breakfast" "breakfasts"; -- from DictEng -lin breakfast_V = mkV "breakfast" "breakfasts" "breakfasted" "breakfasted" "breakfasting"; -- from DictEng -lin breakneck_A = compoundA (mkA "breakneck"); -- from DictEng -lin breakthrough_N = mkN "breakthrough" "breakthroughs"; -- from DictEng -lin breakwater_N = mkN "breakwater" "breakwaters"; -- from DictEng -lin bream_N = mkN "bream" "bream"; -- from DictEng -lin breast_N = mkN "breast" "breasts"; -- from DictEng -lin breast_V2 = mkV2 (mkV "breast" "breasts" "breasted" "breasted" "breasting"); -- from DictEng -lin breast_deep_Adv = mkAdv "breast - deep"; -- from DictEng -lin breast_fed_A = compoundA (mkA "breast - fed"); -- from DictEng -lin breast_deep_Adv = mkAdv "breast - deep"; -- from DictEng -lin breast_fed_A = compoundA (mkA "breast - fed"); -- from DictEng -lin breast_high_Adv = mkAdv "breast - high"; -- from DictEng -lin breast_plate_N = mkN "breast - plate" "breast - plates"; -- from DictEng -lin breasted_A = mkA "breasted" ; -lin breastfeed_V = mkV "breast" IrregEng.feed_V; -- from DictEng -lin breastfeed_V2 = mkV2 (mkV "breast" IrregEng.feed_V); -- from DictEng -lin breastless_A = mkA "breastless" ; -lin breastplate_N = mkN "breastplate" ; -lin breaststroke_N = mkN "breaststroke" ; -- from DictEng -lin breaststroker_N = mkN "breaststroker" ; -lin breastwork_N = mkN "breastwork" "breastworks"; -- from DictEng -lin breath_N = mkN "breath" "breaths"; -- from DictEng -lin breathalyser_N = mkN "breathalyser" "breathalysers"; -- from DictEng -lin breathalyzer_N = mkN "breathalyzer" ; -lin breathe_V = mkV "breathe" "breathes" "breathed" "breathed" "breathing"; -- from DictEng -lin breathe_V2 = mkV2 (mkV "breathe" "breathes" "breathed" "breathed" "breathing"); -- from DictEng -lin breathed_A = mkA "breathed" ; -lin breather_N = mkN "breather" "breathers"; -- from DictEng -lin breathing_A = mkA "breathing" ; -lin breathing_N = mkN "breathing" ; -- from DictEng -lin breathing_space_N = mkN "breathing - space" "breathing - spaces"; -- from DictEng -lin breathless_A = compoundA (mkA "breathless"); -- from DictEng -lin breathlessly_Adv = mkAdv "breathlessly" ; -lin breathtaking_A = compoundA (mkA "breathtaking"); -- from DictEng -lin breccia_N = mkN "breccia" ; -lin breech_N = mkN "breech" "breeches"; -- from DictEng -lin breech_loading_A = compoundA (mkA "breech loading") ; -lin breech_block_N = mkN "breech - block" "breech - blocks"; -- from DictEng -lin breechblock_N = mkN "breechblock" ; -lin breechcloth_N = mkN "breechcloth" ; -lin breeched_A = mkA "breeched" ; -lin breeches_N = mkN "breeches" ; -lin breeches_buoy_N = mkN "breeches - buoy" "breeches - buoys"; -- from DictEng -lin breechloader_N = mkN "breechloader" ; -lin breed_N = mkN "breed" "breeds"; -- from DictEng -lin breed_V = IrregEng.breed_V; -- from DictEng -lin breed_V2 = mkV2 (IrregEng.breed_V); -- from DictEng -lin breeder_N = mkN "breeder" "breeders"; -- from DictEng -lin breeding_A = mkA "breeding" ; -lin breeding_N = mkN "breeding" ; -- from DictEng -lin breeze_N = mkN "breeze" "breezes"; -- from DictEng -lin breeze_V = mkV "breeze" "breezes" "breezed" "breezed" "breezing"; -- from DictEng -lin breezily_Adv = mkAdv "breezily"; -- from DictEng -lin breeziness_N = mkN "breeziness" ; -- from DictEng -lin breezy_A = mkA "breezy" "breezier"; -- from DictEng -lin bregma_N = mkN "bregma" ; -lin bregmatic_A = mkA "bregmatic" ; -lin bren_N = mkN "bren" "brens"; -- from DictEng -lin bren_gun_N = mkN "bren - gun" "bren - guns"; -- from DictEng -lin brethren_N = mkN "brethren" ; -lin breve_N = mkN "breve" "breves"; -- from DictEng -lin brevet_N = mkN "brevet" "brevets"; -- from DictEng -lin breviary_N = mkN "breviary" "breviaries"; -- from DictEng -lin brevity_N = mkN "brevity" ; -- from DictEng -lin brew_N = mkN "brew" "brews"; -- from DictEng -lin brew_V = mkV "brew" "brews" "brewed" "brewed" "brewing"; -- from DictEng -lin brew_V2 = mkV2 (mkV "brew" "brews" "brewed" "brewed" "brewing"); -- from DictEng -lin brewer_N = mkN "brewer" "brewers"; -- from DictEng -lin brewery_N = mkN "brewery" "breweries"; -- from DictEng -lin brewing_N = mkN "brewing" ; -lin brewpub_N = mkN "brewpub" ; -lin briar_N = mkN "briar" "briars"; -- from DictEng -lin briard_N = mkN "briard" ; -lin briarroot_N = mkN "briarroot" ; -lin briarwood_N = mkN "briarwood" ; -lin bribable_A = compoundA (mkA "bribable"); -- from DictEng -lin bribe_N = mkN "bribe" "bribes"; -- from DictEng -lin bribe_V = mkV "bribe"; -- from DictEng -lin bribe_V2 = mkV2 (mkV "bribe" "bribes" "bribed" "bribed" "bribing"); -- from DictEng -lin briber_N = mkN "briber" ; -lin bribery_N = mkN "bribery" ; -- from DictEng -lin bric_a_brac_N = mkN "bric - a - brac" ; -- from DictEng -lin bric_a_brac_N = mkN "bric - a - brac" ; -- from DictEng -lin brick_N = mkN "brick" "bricks"; -- from DictEng -lin brick_V2 = mkV2 (mkV "brick" "bricks" "bricked" "bricked" "bricking"); -- from DictEng -lin brick_shaped_A = compoundA (mkA "brick shaped") ; -lin brick_field_N = mkN "brick - field" "brick - fields"; -- from DictEng -lin brickbat_N = mkN "brickbat" "brickbats"; -- from DictEng -lin brickkiln_N = mkN "brickkiln" "brickkilns"; -- from DictEng -lin bricklayer_N = mkN "bricklayer" "bricklayers"; -- from DictEng -lin bricklaying_N = mkN "bricklaying" ; -lin brickwork_N = mkN "brickwork" "brickworks"; -- from DictEng -lin brickyard_N = mkN "brickyard" ; -lin bridal_A = compoundA (mkA "bridal"); -- from DictEng -lin bridal_N = mkN "bridal" "bridals"; -- from DictEng -lin bride_N = mkN "bride" "brides"; -- from DictEng -lin bride_gift_N = mkN "bride gift" ; -lin bridecake_N = mkN "bridecake" "bridecakes"; -- from DictEng -lin bridegroom_N = mkN "bridegroom" "bridegrooms"; -- from DictEng -lin bridesmaid_N = mkN "bridesmaid" "bridesmaids"; -- from DictEng -lin bridge_N = mkN "bridge" "bridges"; -- from DictEng -lin bridge_V2 = mkV2 (mkV "bridge" "bridges" "bridged" "bridged" "bridging"); -- from DictEng -lin bridgeable_A = mkA "bridgeable" ; -lin bridged_t_N = mkN "bridged T" ; -lin bridgehead_N = mkN "bridgehead" "bridgeheads"; -- from DictEng -lin bridle_N = mkN "bridle" "bridles"; -- from DictEng -lin bridle_V = mkV "bridle" "bridles" "bridled" "bridled" "bridling"; -- from DictEng -lin bridle_V2 = mkV2 (mkV "bridle" "bridles" "bridled" "bridled" "bridling"); -- from DictEng -lin bridle_path_N = mkN "bridle - path" "bridle - paths"; -- from DictEng -lin bridle_road_N = mkN "bridle - road" "bridle - roads"; -- from DictEng -lin bridoon_N = mkN "bridoon" ; -lin brief_A = mkA "brief" "briefer"; -- from DictEng -lin brief_N = mkN "brief" "briefs"; -- from DictEng -lin brief_V2 = mkV2 (mkV "brief" "briefs" "briefed" "briefed" "briefing"); -- from DictEng -lin briefcase_N = mkN "briefcase" "briefcases"; -- from DictEng -lin briefing_N = mkN "briefing" "briefings"; -- from DictEng -lin briefless_A = mkA "briefless" ; -lin briefly_Adv = mkAdv "briefly" ; -lin briefness_N = mkN "briefness" ; -lin briefs_N = mkN "briefs" ; -lin brier_N = mkN "brier" "briers"; -- from DictEng -lin brig_N = mkN "brig" "brigs"; -- from DictEng -lin brigade_N = mkN "brigade" "brigades"; -- from DictEng -lin brigadier_N = mkN "brigadier" "brigadiers"; -- from DictEng -lin brigand_N = mkN "brigand" "brigands"; -- from DictEng -lin brigandine_N = mkN "brigandine" ; -lin brigantine_N = mkN "brigantine" "brigantines"; -- from DictEng -lin bright_A = mkA "bright" "brighter"; -- from DictEng -lin bright_Adv = mkAdv "bright"; -- from DictEng -lin bright_red_A = compoundA (mkA "bright red") ; -lin bright_as_a_new_penny_A = compoundA (mkA "bright as a new penny") ; -lin brighten_V = mkV "brighten" "brightens" "brightened" "brightened" "brightening"; -- from DictEng -lin brighten_V2 = mkV2 (mkV "brighten" "brightens" "brightened" "brightened" "brightening"); -- from DictEng -lin brightly_colored_A = compoundA (mkA "brightly colored") ; -lin brightness_N = mkN "brightness" ; -- from DictEng -lin brill_N = mkN "brill" "brill"; -- from DictEng -lin brilliance_N = mkN "brilliance" ; -- from DictEng -lin brilliancy_N = mkN "brilliancy" ; -- from DictEng -lin brilliant_A = compoundA (mkA "brilliant"); -- from DictEng -lin brilliantine_N = mkN "brilliantine" ; -- from DictEng -lin brilliantly_Adv = mkAdv "brilliantly" ; -lin brim_N = mkN "brim" "brims"; -- from DictEng -lin brim_V = mkV "brim" "brims" "brimmed" "brimmed" "brimming"; -- from DictEng -lin brimful_A = compoundA (mkA "brimful"); -- from DictEng -lin brimfull_A = compoundA (mkA "brimfull"); -- from DictEng -lin brimless_A = mkA "brimless" ; -lin brimstone_N = mkN "brimstone" ; -- from DictEng -lin brindled_A = compoundA (mkA "brindled"); -- from DictEng -lin brine_N = mkN "brine" "brines"; -- from DictEng -lin bring_V2 = mkV2 (IrregEng.bring_V); -- from DictEng -lin bring_V2V = mkV2V (mkV "bring") noPrep to_Prep ; -- from DictEng -lin bring_about_V2 = mkV2 (mkV "bring about") ; -lin brininess_N = mkN "brininess" ; -lin brink_N = mkN "brink" "brinks"; -- from DictEng -lin brinkmanship_N = mkN "brinkmanship" ; -- from DictEng -lin briny_A = mkA "briny" "brinier"; -- from DictEng -lin brioche_N = mkN "brioche" "brioches"; -- from DictEng -lin briquet_N = mkN "briquet" "briquets"; -- from DictEng -lin briquette_N = mkN "briquette" "briquettes"; -- from DictEng -lin brisance_N = mkN "brisance" ; -lin brisant_A = mkA "brisant" ; -lin brisk_A = mkA "brisk" "brisker"; -- from DictEng -lin brisket_N = mkN "brisket" ; -- from DictEng -lin briskly_Adv = mkAdv "briskly" ; -lin brisling_N = mkN "brisling" ; -lin bristle_N = mkN "bristle" "bristles"; -- from DictEng -lin bristle_V = mkV "bristle" "bristles" "bristled" "bristled" "bristling"; -- from DictEng -lin bristle_pointed_A = compoundA (mkA "bristle pointed") ; -lin bristlegrass_N = mkN "bristlegrass" ; -lin bristlelike_A = mkA "bristlelike" ; -lin bristletail_N = mkN "bristletail" ; -lin bristly_A = mkA "bristly" "bristlier"; -- from DictEng -lin brit_N = mkN "brit" "brits"; -- from DictEng -lin britannic_A = compoundA (mkA "britannic"); -- from DictEng -lin britches_N = mkN "britches" ; -lin british_A = compoundA (mkA "British"); -- from DictEng -lin britisher_N = mkN "britisher" "britishers"; -- from DictEng -lin briton_A = compoundA (mkA "briton"); -- from DictEng -lin briton_N = mkN "briton" "britons"; -- from DictEng -lin brittle_A = compoundA (mkA "brittle"); -- from DictEng -lin brittle_N = mkN "brittle" ; -lin brittlebush_N = mkN "brittlebush" ; -lin brittleness_N = mkN "brittleness" ; -lin broach_V = mkV "broach" "broaches" "broached" "broached" "broaching"; -- from DictEng -lin broach_V2 = mkV2 (mkV "broach" "broaches" "broached" "broached" "broaching"); -- from DictEng -lin broad_A = mkA "broad" "broader"; -- from DictEng -lin broad_N = mkN "broad" "broads"; -- from DictEng -lin broad_brimmed_A = compoundA (mkA "broad brimmed") ; -lin broad_headed_A = compoundA (mkA "broad headed") ; -lin broad_minded_A = compoundA (mkA "broad - minded"); -- from DictEng -lin broad_mindedly_Adv = mkAdv "broad mindedly" ; -lin broad_mindedness_N = mkN "broad - mindedness" ; -- from DictEng -lin broad_minded_A = compoundA (mkA "broad - minded"); -- from DictEng -lin broad_mindedness_N = mkN "broad - mindedness" ; -- from DictEng -lin broadax_N = mkN "broadax" ; -lin broadband_A = mkA "broadband" ; -lin broadbill_N = mkN "broadbill" ; -lin broadcast_Adv = mkAdv "broadcast"; -- from DictEng -lin broadcast_N = mkN "broadcast" "broadcasts"; -- from DictEng -lin broadcast_V = mkV "broadcast" "broadcasts" "broadcasted" "broadcasted" "broadcasting"; -- from DictEng -lin broadcast_V2 = mkV2 (mkV "broadcast" "broadcasts" "broadcasted" "broadcasted" "broadcasting"); -- from DictEng -lin broadcaster_N = mkN "broadcaster" ; -lin broadcasting_A = compoundA (mkA "broadcasting"); -- from DictEng -lin broadcasting_N = mkN "broadcasting" ; -- from DictEng -lin broadcloth_N = mkN "broadcloth" ; -- from DictEng -lin broaden_V = mkV "broaden" "broadens" "broadened" "broadened" "broadening"; -- from DictEng -lin broaden_V2 = mkV2 (mkV "broaden" "broadens" "broadened" "broadened" "broadening"); -- from DictEng -lin broadening_N = mkN "broadening" ; -lin broadleaf_A = mkA "broadleaf" ; -lin broadloom_A = mkA "broadloom" ; -lin broadloom_N = mkN "broadloom" ; -lin broadly_Adv = mkAdv "broadly" ; -lin broadness_N = mkN "broadness" ; -- from DictEng -lin broadsheet_N = mkN "broadsheet" "broadsheets"; -- from DictEng -lin broadside_A = mkA "broadside" ; -lin broadside_Adv = mkAdv "broadside" ; -lin broadside_N = mkN "broadside" "broadsides"; -- from DictEng -lin broadsword_N = mkN "broadsword" ; -lin broadtail_N = mkN "broadtail" ; -lin broadways_Adv = mkAdv "broadways"; -- from DictEng -lin broadwise_Adv = mkAdv "broadwise"; -- from DictEng -lin brocade_N = mkN "brocade" "brocades"; -- from DictEng -lin brocade_V2 = mkV2 (mkV "brocade" "brocades" "brocaded" "brocaded" "brocading"); -- from DictEng -lin brocaded_A = mkA "brocaded" ; -lin broccoli_N = mkN "broccoli" ; -- from DictEng -lin brochette_N = mkN "brochette" ; -lin brochure_N = mkN "brochure" "brochures"; -- from DictEng -lin brocket_N = mkN "brocket" ; -lin brodiaea_N = mkN "brodiaea" ; -lin brogan_N = mkN "brogan" ; -lin brogue_N = mkN "brogue" "brogues"; -- from DictEng -lin broil_N = mkN "broil" ; -lin broil_V = mkV "broil" "broils" "broiled" "broiled" "broiling"; -- from DictEng -lin broil_V2 = mkV2 (mkV "broil" "broils" "broiled" "broiled" "broiling"); -- from DictEng -lin broiled_A = mkA "broiled" ; -lin broiler_N = mkN "broiler" "broilers"; -- from DictEng -lin broke_A = compoundA (mkA "broke"); -- from DictEng -lin broke_VA = mkVA (mkV "broke"); -- from DictEng -lin broke_VS = mkVS (mkV "broke"); -- from DictEng -lin broken_A = mkA "broken" ; -lin broken_backed_A = compoundA (mkA "broken backed") ; -lin broken_down_A = compoundA (mkA "broken down") ; -lin broken_field_A = compoundA (mkA "broken field") ; -lin broken_hearted_A = compoundA (mkA "broken - hearted"); -- from DictEng -lin brokenhearted_A = mkA "brokenhearted" ; -lin broker_N = mkN "broker" "brokers"; -- from DictEng -lin broker_dealer_N = mkN "broker dealer" ; -lin brokerage_N = mkN "brokerage" ; -- from DictEng -lin brolly_N = mkN "brolly" "brollies"; -- from DictEng -lin brome_N = mkN "brome" ; -lin bromic_A = mkA "bromic" ; -lin bromide_N = mkN "bromide" "bromides"; -- from DictEng -lin bromidic_A = mkA "bromidic" ; -lin bromine_N = mkN "bromine" ; -- from DictEng -lin bromoform_N = mkN "bromoform" ; -lin bronchial_A = compoundA (mkA "bronchial"); -- from DictEng -lin bronchiolar_A = mkA "bronchiolar" ; -lin bronchiole_N = mkN "bronchiole" ; -lin bronchiolitis_N = mkN "bronchiolitis" ; -lin bronchitic_A = compoundA (mkA "bronchitic"); -- from DictEng -lin bronchitis_N = mkN "bronchitis" ; -- from DictEng -lin bronchodilator_N = mkN "bronchodilator" ; -lin bronchopneumonia_N = mkN "bronchopneumonia" ; -lin bronchoscope_N = mkN "bronchoscope" ; -lin bronchoscopic_A = mkA "bronchoscopic" ; -lin bronchospasm_N = mkN "bronchospasm" ; -lin bronchus_N = mkN "bronchus" "bronchi" {- FIXME: guessed plural form -}; -- from DictEng -lin bronco_N = mkN "bronco" "broncos"; -- from DictEng -lin bronze_A = mkA "bronze" ; -lin bronze_N = mkN "bronze" "bronzes"; -- from DictEng -lin bronze_V = mkV "bronze" "bronzes" "bronzed" "bronzed" "bronzing"; -- from DictEng -lin bronze_V2 = mkV2 (mkV "bronze" "bronzes" "bronzed" "bronzed" "bronzing"); -- from DictEng -lin bronze_red_A = compoundA (mkA "bronze red") ; -lin bronzed_A = mkA "bronzed" ; -lin brooch_N = mkN "brooch" "brooches"; -- from DictEng -lin brood_N = mkN "brood" "broods"; -- from DictEng -lin brood_V = mkV "brood" "broods" "brooded" "brooded" "brooding"; -- from DictEng -lin brood_hen_N = mkN "brood - hen" "brood - hens"; -- from DictEng -lin brood_mare_N = mkN "brood - mare" "brood - mares"; -- from DictEng -lin brooding_A = mkA "brooding" ; -lin brooding_N = mkN "brooding" ; -lin broodmare_N = mkN "broodmare" ; -lin broody_A = mkA "broody" "broodier"; -- from DictEng -lin brook_N = mkN "brook" "brooks"; -- from DictEng -lin brook_V2 = mkV2 (mkV "brook" "brooks" "brooked" "brooked" "brooking"); -- from DictEng -lin brooklet_N = mkN "brooklet" ; -lin brooklime_N = mkN "brooklime" ; -lin brookweed_N = mkN "brookweed" ; -lin broom_N = mkN "broom" "brooms"; -- from DictEng -lin broomcorn_N = mkN "broomcorn" ; -lin broomstick_N = mkN "broomstick" "broomsticks"; -- from DictEng -lin broomweed_N = mkN "broomweed" ; -lin broth_N = mkN "broth" ; -- from DictEng -lin brothel_N = mkN "brothel" "brothels"; -- from DictEng -lin brother_N = mkN "brother" "brothers"; -- from DictEng -lin brother_in_law_N = mkN "brother - in - law" "brothers - in - law"; -- from DictEng -lin brother_in_law_N = mkN "brother - in - law" "brothers - in - law"; -- from DictEng -lin brotherhood_N = mkN "brotherhood" "brotherhoods"; -- from DictEng -lin brotherly_A = compoundA (mkA "brotherly"); -- from DictEng -lin brotherly_Adv = mkAdv "brotherly" ; -lin brotula_N = mkN "brotula" ; -lin brougham_N = mkN "brougham" "broughams"; -- from DictEng -lin brought_V = mkV "brought"; -- from DictEng -lin brought_VS = mkVS (mkV "brought"); -- from DictEng -lin brouhaha_N = mkN "brouhaha" "brouhahas"; -- from DictEng -lin brow_N = mkN "brow" "brows"; -- from DictEng -lin browbeat_V2 = mkV2 (mkV "brow" IrregEng.beat_V); -- from DictEng -lin brown_A = mkA "brown" "browner"; -- from DictEng -lin brown_N = mkN "brown" ; -lin brown_V = mkV "brown" "browns" "browned" "browned" "browning"; -- from DictEng -lin brown_V2 = mkV2 (mkV "brown" "browns" "browned" "browned" "browning"); -- from DictEng -lin brown_black_A = compoundA (mkA "brown black") ; -lin brown_green_A = compoundA (mkA "brown green") ; -lin brown_grey_A = compoundA (mkA "brown grey") ; -lin brown_purple_A = compoundA (mkA "brown purple") ; -lin brown_speckled_A = compoundA (mkA "brown speckled") ; -lin brown_striped_A = compoundA (mkA "brown striped") ; -lin brown_betty_PN = mkPN "brown Betty" ; -lin brownie_N = mkN "brownie" "brownies"; -- from DictEng -lin brownish_A = compoundA (mkA "brownish"); -- from DictEng -lin brownstone_N = mkN "brownstone" "brownstones"; -- from DictEng -lin browntail_N = mkN "browntail" ; -lin browse_N = mkN "browse" "browses"; -- from DictEng -lin browse_V = mkV "browse" "browses" "browsed" "browsed" "browsing"; -- from DictEng -lin browser_N = mkN "browser" ; -lin brucellosis_N = mkN "brucellosis" ; -lin brucine_N = mkN "brucine" ; -lin bruin_N = mkN "bruin" "bruins"; -- from DictEng -lin bruise_N = mkN "bruise" "bruises"; -- from DictEng -lin bruise_V = mkV "bruise" "bruises" "bruised" "bruised" "bruising"; -- from DictEng -lin bruise_V2 = mkV2 (mkV "bruise" "bruises" "bruised" "bruised" "bruising"); -- from DictEng -lin bruiser_N = mkN "bruiser" "bruisers"; -- from DictEng -lin bruising_A = mkA "bruising" ; -lin bruit_V2 = mkV2 (mkV "bruit" "bruits" "bruited" "bruited" "bruiting"); -- from DictEng -lin brumal_A = mkA "brumal" ; -lin brumous_A = mkA "brumous" ; -lin brunch_N = mkN "brunch" "brunches"; -- from DictEng -lin brunch_V = mkV "brunch" ; -lin bruneian_A = compoundA (mkA "bruneian"); -- from DictEng -lin bruneian_N = mkN "bruneian" "bruneians"; -- from DictEng -lin brunet_A = mkA "brunet" ; -lin brunet_N = mkN "brunet" ; -lin brunette_N = mkN "brunette" "brunettes"; -- from DictEng -lin brunt_N = mkN "brunt" "brunts"; -- from DictEng -lin brush_N = mkN "brush" "brushes"; -- from DictEng -lin brush_V = mkV "brush" "brushes" "brushed" "brushed" "brushing"; -- from DictEng -lin brush_V2 = mkV2 (mkV "brush" "brushes" "brushed" "brushed" "brushing"); -- from DictEng -lin brush_off_N = mkN "brush - off" "brush - offs"; -- from DictEng -lin brush_off_N = mkN "brush - off" "brush - offs"; -- from DictEng -lin brush_up_N = mkN "brush - up" "brush - ups"; -- from DictEng -lin brushed_A = mkA "brushed" ; -lin brushlike_A = mkA "brushlike" ; -lin brushwood_N = mkN "brushwood" ; -- from DictEng -lin brushwork_N = mkN "brushwork" "brushworks"; -- from DictEng -lin brusque_A = compoundA (mkA "brusque"); -- from DictEng -lin brusqueness_N = mkN "brusqueness" ; -- from DictEng -lin brut_A = mkA "brut" ; -lin brutal_A = compoundA (mkA "brutal"); -- from DictEng -lin brutality_N = mkN "brutality" "brutalities"; -- from DictEng -lin brutalization_N = mkN "brutalization" ; -lin brutalize_V2 = mkV2 (mkV "brutalize" "brutalizes" "brutalized" "brutalized" "brutalizing"); -- from DictEng -lin brute_N = mkN "brute" "brutes"; -- from DictEng -lin brutish_A = compoundA (mkA "brutish"); -- from DictEng -lin bruxism_N = mkN "bruxism" ; -lin bryanthus_N = mkN "bryanthus" ; -lin bryony_N = mkN "bryony" ; -lin bryophyte_N = mkN "bryophyte" ; -lin bryophytic_A = mkA "bryophytic" ; -lin bryozoan_N = mkN "bryozoan" ; -lin bsc_N = mkN "bsc" ; -- from DictEng -lin bubaline_A = mkA "bubaline" ; -lin bubble_N = mkN "bubble" "bubbles"; -- from DictEng -lin bubble_V = mkV "bubble" "bubbles" "bubbled" "bubbled" "bubbling"; -- from DictEng -lin bubble_V2 = mkV2 (mkV "bubble") ; -lin bubbler_N = mkN "bubbler" ; -lin bubbliness_N = mkN "bubbliness" ; -lin bubbling_A = mkA "bubbling" ; -lin bubbly_A = mkA "bubbly" "bubblier"; -- from DictEng -lin bubbly_N = mkN "bubbly" ; -- from DictEng -lin bubo_N = mkN "bubo" ; -lin bubonic_A = compoundA (mkA "bubonic"); -- from DictEng -lin buccal_A = mkA "buccal" ; -lin buccaneer_N = mkN "buccaneer" "buccaneers"; -- from DictEng -lin buck_N = mkN "buck" "bucks"; -- from DictEng -lin buck_V = mkV "buck" "bucks" "bucked" "bucked" "bucking"; -- from DictEng -lin buck_V2 = mkV2 (mkV "buck" "bucks" "bucked" "bucked" "bucking"); -- from DictEng -lin buck_and_wing_N = mkN "buck and wing" ; -lin buck_toothed_A = compoundA (mkA "buck toothed") ; -lin buckboard_N = mkN "buckboard" ; -lin bucked_up_A = compoundA (mkA "bucked up") ; -lin bucket_N = mkN "bucket" "buckets"; -- from DictEng -lin bucket_V = mkV "bucket" "buckets" "bucketed" "bucketed" "bucketing"; -- from DictEng -lin bucketful_N = mkN "bucketful" "bucketfuls"; -- from DictEng -lin buckeye_N = mkN "buckeye" ; -lin buckle_N = mkN "buckle" "buckles"; -- from DictEng -lin buckle_V = mkV "buckle" "buckles" "buckled" "buckled" "buckling"; -- from DictEng -lin buckle_V2 = mkV2 (mkV "buckle" "buckles" "buckled" "buckled" "buckling"); -- from DictEng -lin buckler_N = mkN "buckler" "bucklers"; -- from DictEng -lin buckleya_N = mkN "buckleya" ; -lin buckminsterfullerene_N = mkN "buckminsterfullerene" ; -lin buckram_N = mkN "buckram" ; -- from DictEng -lin bucksaw_N = mkN "bucksaw" ; -lin buckshee_A = mkA "buckshee" ; -lin buckshot_N = mkN "buckshot" ; -- from DictEng -lin buckskin_N = mkN "buckskin" ; -- from DictEng -lin buckskins_N = mkN "buckskins" ; -lin buckthorn_N = mkN "buckthorn" ; -lin bucktooth_N = mkN "bucktooth" "buckteeth" {- FIXME: guessed plural form -}; -- from DictEng -lin buckwheat_N = mkN "buckwheat" ; -- from DictEng -lin bucolic_A = compoundA (mkA "bucolic"); -- from DictEng -lin bucolics_N = mkN "bucolics" "bucolics"; -- from DictEng -lin bud_N = mkN "bud" "buds"; -- from DictEng -lin bud_V = mkV "bud" "buds" "budded" "budded" "budding"; -- from DictEng -lin buddhism_N = mkN "buddhism" ; -- from DictEng -lin buddhist_N = mkN "buddhist" "buddhists"; -- from DictEng -lin budding_A = compoundA (mkA "budding"); -- from DictEng -lin budding_N = mkN "budding" ; -lin buddy_N = mkN "buddy" "buddies"; -- from DictEng -lin budge_V = mkV "budge" "budges" "budged" "budged" "budging"; -- from DictEng -lin budge_V2 = mkV2 (mkV "budge" "budges" "budged" "budged" "budging"); -- from DictEng -lin budgerigar_N = mkN "budgerigar" "budgerigars"; -- from DictEng -lin budget_N = mkN "budget" "budgets"; -- from DictEng -lin budget_V = mkV "budget" "budgets" "budgeted" "budgeted" "budgeting"; -- from DictEng -lin budget_V2 = mkV2 (mkV "budget" "budgets" "budgeted" "budgeted" "budgeting"); -- from DictEng -lin budgetary_A = compoundA (mkA "budgetary"); -- from DictEng -lin budgie_N = mkN "budgie" "budgies"; -- from DictEng -lin buff_A = mkA "buff" ; -lin buff_N = mkN "buff" "buffs"; -- from DictEng -lin buff_V2 = mkV2 (mkV "buff" "buffs" "buffed" "buffed" "buffing"); -- from DictEng -lin buff_brown_A = compoundA (mkA "buff brown") ; -lin buff_colored_A = compoundA (mkA "buff colored") ; -lin buffalo_N = mkN "buffalo" "buffalo"; -- from DictEng -lin buffalofish_N = mkN "buffalofish" ; -lin buffer_N = mkN "buffer" "buffers"; -- from DictEng -lin buffer_V2 = mkV2 (mkV "buffer"); -- from DictEng -lin buffet_N = mkN "buffet" "buffets"; -- from DictEng -lin buffet_V = mkV "buffet" "buffets" "buffeted" "buffeted" "buffeting"; -- from DictEng -lin buffet_V2 = mkV2 (mkV "buffet" "buffets" "buffeted" "buffeted" "buffeting"); -- from DictEng -lin buffeted_A = mkA "buffeted" ; -lin bufflehead_N = mkN "bufflehead" ; -lin buffoon_N = mkN "buffoon" "buffoons"; -- from DictEng -lin buffoonery_N = mkN "buffoonery" ; -- from DictEng -lin buffoonish_A = mkA "buffoonish" ; -lin bufo_N = mkN "bufo" ; -lin bug_N = mkN "bug" "bugs"; -- from DictEng -lin bug_V2 = mkV2 (mkV "bug" "bugs" "bugged" "bugged" "bugging"); -- from DictEng -lin bug_hunter_N = mkN "bug - hunter" "bug - hunters"; -- from DictEng -lin bugaboo_N = mkN "bugaboo" "bugaboos"; -- from DictEng -lin bugbane_N = mkN "bugbane" ; -lin bugbear_N = mkN "bugbear" "bugbears"; -- from DictEng -lin bugged_A = mkA "bugged" ; -lin bugger_N = mkN "bugger" "buggers"; -- from DictEng -lin bugger_V = mkV "bugger" "buggers" "buggered" "buggered" "buggering"; -- from DictEng -lin bugger_V2 = mkV2 (mkV "bugger" "buggers" "buggered" "buggered" "buggering"); -- from DictEng -lin bugger_all_N = mkN "bugger - all" ; -- from DictEng -lin buggery_N = mkN "buggery" ; -- from DictEng -lin bugginess_N = mkN "bugginess" ; -lin buggy_A = mkA "buggy" ; -lin buggy_N = mkN "buggy" "buggies"; -- from DictEng -lin bugle_N = mkN "bugle" "bugles"; -- from DictEng -lin bugler_N = mkN "bugler" "buglers"; -- from DictEng -lin bugleweed_N = mkN "bugleweed" ; -lin bugloss_N = mkN "bugloss" ; -lin buhl_N = mkN "buhl" ; -- from DictEng -lin build_N = mkN "build" ; -- from DictEng -lin build_V = IrregEng.build_V; -- from DictEng -lin build_V2 = mkV2 (IrregEng.build_V); -- from DictEng -lin build_up_N = mkN "build - up" "build - ups"; -- from DictEng -lin builder_N = mkN "builder" "builders"; -- from DictEng -lin building_N = mkN "building" "buildings"; -- from DictEng -lin building_society_N = mkN "building - society" "building - societies"; -- from DictEng -lin buildup_N = mkN "buildup" ; -lin built_A = mkA "built" ; -lin built_in_A = compoundA (mkA "built - in"); -- from DictEng -lin built_up_A = compoundA (mkA "built - up"); -- from DictEng -lin built_in_A = compoundA (mkA "built - in"); -- from DictEng -lin built_up_A = compoundA (mkA "built - up"); -- from DictEng -lin bulb_N = mkN "bulb" "bulbs"; -- from DictEng -lin bulbaceous_A = mkA "bulbaceous" ; -lin bulbar_A = mkA "bulbar" ; -lin bulbed_A = mkA "bulbed" ; -lin bulbil_N = mkN "bulbil" ; -lin bulblike_A = mkA "bulblike" ; -lin bulbous_A = compoundA (mkA "bulbous"); -- from DictEng -lin bulbul_N = mkN "bulbul" "bulbuls"; -- from DictEng -lin bulgarian_A = compoundA (mkA "Bulgarian"); -- from DictEng -lin bulgarian_N = mkN "Bulgarian" "Bulgarians"; -- from DictEng -lin bulge_N = mkN "bulge" "bulges"; -- from DictEng -lin bulge_V = mkV "bulge" "bulges" "bulged" "bulged" "bulging"; -- from DictEng -lin bulge_V2 = mkV2 (mkV "bulge" "bulges" "bulged" "bulged" "bulging"); -- from DictEng -lin bulgur_N = mkN "bulgur" ; -lin bulimarexia_N = mkN "bulimarexia" ; -lin bulimia_N = mkN "bulimia" ; -lin bulimic_A = mkA "bulimic" ; -lin bulimic_N = mkN "bulimic" ; -lin bulk_N = mkN "bulk" ; -- from DictEng -lin bulk_V = mkV "bulk" "bulks" "bulked" "bulked" "bulking"; -- from DictEng -lin bulkhead_N = mkN "bulkhead" "bulkheads"; -- from DictEng -lin bulkiness_N = mkN "bulkiness" ; -lin bulky_A = mkA "bulky" "bulkier"; -- from DictEng -lin bull_N = mkN "bull" "bulls"; -- from DictEng -lin bull's_eye_N = mkN "bull's - eye" "bull's - eyes"; -- from DictEng -lin bull_headed_A = compoundA (mkA "bull - headed"); -- from DictEng -lin bull_neck_N = mkN "bull - neck" "bull - necks"; -- from DictEng -lin bull_terrier_N = mkN "bull - terrier" "bull - terriers"; -- from DictEng -lin bulla_N = mkN "bulla" ; -lin bullace_N = mkN "bullace" ; -lin bullate_A = mkA "bullate" ; -lin bullbrier_N = mkN "bullbrier" ; -lin bulldog_N = mkN "bulldog" "bulldogs"; -- from DictEng -lin bulldoze_V2 = mkV2 (mkV "bulldoze" "bulldozes" "bulldozed" "bulldozed" "bulldozing"); -- from DictEng -lin bulldozer_N = mkN "bulldozer" "bulldozers"; -- from DictEng -lin bullet_N = mkN "bullet" "bullets"; -- from DictEng -lin bullet_headed_A = compoundA (mkA "bullet - headed"); -- from DictEng -lin bullet_headed_A = compoundA (mkA "bullet - headed"); -- from DictEng -lin bullethead_N = mkN "bullethead" ; -lin bulletin_N = mkN "bulletin" "bulletins"; -- from DictEng -lin bulletproof_A = compoundA (mkA "bulletproof"); -- from DictEng -lin bullfight_N = mkN "bullfight" "bullfights"; -- from DictEng -lin bullfighter_N = mkN "bullfighter" "bullfighters"; -- from DictEng -lin bullfighting_N = mkN "bullfighting" ; -lin bullfinch_N = mkN "bullfinch" "bullfinches"; -- from DictEng -lin bullfrog_N = mkN "bullfrog" "bullfrogs"; -- from DictEng -lin bullhead_N = mkN "bullhead" ; -lin bullheaded_A = mkA "bullheaded" ; -lin bullhorn_N = mkN "bullhorn" ; -lin bullion_N = mkN "bullion" ; -- from DictEng -lin bullish_A = mkA "bullish" ; -lin bullnecked_A = mkA "bullnecked" ; -lin bullnose_N = mkN "bullnose" ; -lin bullock_N = mkN "bullock" "bullocks"; -- from DictEng -lin bullock_V2 = mkV2 (mkV "bullock") ; -lin bullocky_A = mkA "bullocky" ; -lin bullpen_N = mkN "bullpen" ; -lin bullring_N = mkN "bullring" "bullrings"; -- from DictEng -lin bullshit_N = mkN "bullshit" ; -- from DictEng -lin bullshit_V = mkV "bullshit" "bullshits" "bullshitted" "bullshitted" "bullshitting"; -- from DictEng -lin bullshot_N = mkN "bullshot" ; -lin bullterrier_N = mkN "bullterrier" ; -lin bully_A = compoundA (mkA "bully"); -- from DictEng -lin bully_N = mkN "bully" "bullies"; -- from DictEng -lin bully_V = mkV "bully" "bullies" "bullied" "bullied" "bullying"; -- from DictEng -lin bully_V2 = mkV2 (mkV "bully" "bullies" "bullied" "bullied" "bullying"); -- from DictEng -lin bullyboy_N = mkN "bullyboy" ; -lin bullying_N = mkN "bullying" ; -lin bulrush_N = mkN "bulrush" "bulrushes"; -- from DictEng -lin bulwark_N = mkN "bulwark" "bulwarks"; -- from DictEng -lin bum_A = compoundA (mkA "bum"); -- from DictEng -lin bum_N = mkN "bum" "bums"; -- from DictEng -lin bum_V = mkV "bum" "bums" "bummed" "bummed" "bumming"; -- from DictEng -lin bum_V2 = mkV2 (mkV "bum" "bums" "bummed" "bummed" "bumming"); -- from DictEng -lin bumblebee_N = mkN "bumblebee" "bumblebees"; -- from DictEng -lin bumbling_A = mkA "bumbling" ; -lin bumboat_N = mkN "bumboat" "bumboats"; -- from DictEng -lin bumf_N = mkN "bumf" ; -lin bummer_N = mkN "bummer" ; -lin bump_Adv = mkAdv "bump"; -- from DictEng -lin bump_N = mkN "bump" "bumps"; -- from DictEng -lin bump_V = mkV "bump" "bumps" "bumped" "bumped" "bumping"; -- from DictEng -lin bump_V2 = mkV2 (mkV "bump" "bumps" "bumped" "bumped" "bumping"); -- from DictEng -lin bumper_N = mkN "bumper" "bumpers"; -- from DictEng -lin bumper_to_bumper_A = compoundA (mkA "bumper to bumper") ; -lin bumpiness_N = mkN "bumpiness" ; -lin bumpkin_N = mkN "bumpkin" "bumpkins"; -- from DictEng -lin bumpkinly_A = mkA "bumpkinly" ; -lin bumptious_A = compoundA (mkA "bumptious"); -- from DictEng -lin bumptiously_Adv = mkAdv "bumptiously" ; -lin bumptiousness_N = mkN "bumptiousness" ; -- from DictEng -lin bumpy_A = mkA "bumpy" "bumpier"; -- from DictEng -lin bun_N = mkN "bun" "buns"; -- from DictEng -lin buna_N = mkN "buna" ; -- from DictEng -lin bunch_N = mkN "bunch" "bunches"; -- from DictEng -lin bunch_V = mkV "bunch" "bunches" "bunched" "bunched" "bunching"; -- from DictEng -lin bunch_V2 = mkV2 (mkV "bunch" "bunches" "bunched" "bunched" "bunching"); -- from DictEng -lin bunchberry_N = mkN "bunchberry" ; -lin bunchgrass_N = mkN "bunchgrass" ; -lin bunchy_A = mkA "bunchy" ; -lin bunco_N = mkN "bunco" ; -lin bundle_N = mkN "bundle" "bundles"; -- from DictEng -lin bundle_V = mkV "bundle" "bundles" "bundled" "bundled" "bundling"; -- from DictEng -lin bundle_V2 = mkV2 (mkV "bundle" "bundles" "bundled" "bundled" "bundling"); -- from DictEng -lin bundled_up_A = compoundA (mkA "bundled up") ; -lin bundling_N = mkN "bundling" ; -lin bunfight_N = mkN "bunfight" ; -lin bung_N = mkN "bung" "bungs"; -- from DictEng -lin bung_V2 = mkV2 (mkV "bung" "bungs" "bunged" "bunged" "bunging"); -- from DictEng -lin bung_hole_N = mkN "bung - hole" "bung - holes"; -- from DictEng -lin bungaloid_A = compoundA (mkA "bungaloid"); -- from DictEng -lin bungalow_N = mkN "bungalow" "bungalows"; -- from DictEng -lin bungee_N = mkN "bungee" ; -lin bunghole_N = mkN "bunghole" ; -lin bungle_N = mkN "bungle" "bungles"; -- from DictEng -lin bungle_V = mkV "bungle" "bungles" "bungled" "bungled" "bungling"; -- from DictEng -lin bungle_V2 = mkV2 (mkV "bungle" "bungles" "bungled" "bungled" "bungling"); -- from DictEng -lin bungled_A = mkA "bungled" ; -lin bungler_N = mkN "bungler" "bunglers"; -- from DictEng -lin bungling_A = mkA "bungling" ; -lin bunion_N = mkN "bunion" "bunions"; -- from DictEng -lin bunji_bunji_N = mkN "bunji bunji" ; -lin bunk_N = mkN "bunk" "bunks"; -- from DictEng -lin bunk_V = mkV "bunk" "bunks" "bunked" "bunked" "bunking"; -- from DictEng -lin bunker_N = mkN "bunker" "bunkers"; -- from DictEng -lin bunker_V = mkV "bunker" "bunkers" "bunkered" "bunkered" "bunkering"; -- from DictEng -lin bunker_V2 = mkV2 (mkV "bunker" "bunkers" "bunkered" "bunkered" "bunkering"); -- from DictEng -lin bunkmate_N = mkN "bunkmate" ; -lin bunkum_N = mkN "bunkum" ; -- from DictEng -lin bunny_N = mkN "bunny" "bunnies"; -- from DictEng -lin bunsen_N = mkN "bunsen" "bunsens"; -- from DictEng -lin bunt_N = mkN "bunt" ; -lin buntal_N = mkN "buntal" ; -lin bunter_N = mkN "bunter" ; -lin bunting_N = mkN "bunting" ; -- from DictEng -lin bunyavirus_N = mkN "bunyavirus" ; -lin buoy_N = mkN "buoy" "buoys"; -- from DictEng -lin buoy_V = mkV "buoy" "buoys" "buoyed" "buoyed" "buoying"; -- from DictEng -lin buoy_V2 = mkV2 (mkV "buoy" "buoys" "buoyed" "buoyed" "buoying"); -- from DictEng -lin buoyancy_N = mkN "buoyancy" ; -- from DictEng -lin buoyant_A = compoundA (mkA "buoyant"); -- from DictEng -lin buoyantly_Adv = mkAdv "buoyantly" ; -lin bur_N = mkN "bur" "burs"; -- from DictEng -lin burberry_N = mkN "burberry" "burberries"; -- from DictEng -lin burble_V = mkV "burble" "burbles" "burbled" "burbled" "burbling"; -- from DictEng -lin burble_V2 = mkV2 (mkV "burble") ; -lin burble_VS = mkVS (mkV "burble"); -- from DictEng -lin burbling_A = mkA "burbling" ; -lin burbot_N = mkN "burbot" ; -lin burden_N = mkN "burden" "burdens"; -- from DictEng -lin burden_V2 = mkV2 (mkV "burden" "burdens" "burdened" "burdened" "burdening"); -- from DictEng -lin burdened_A = mkA "burdened" ; -lin burdenless_A = mkA "burdenless" ; -lin burdensome_A = compoundA (mkA "burdensome"); -- from DictEng -lin burdensomeness_N = mkN "burdensomeness" ; -lin burdock_N = mkN "burdock" "burdocks"; -- from DictEng -lin bureau_N = mkN "bureau" "bureaux" {- FIXME: guessed plural form -}; -- from DictEng -lin bureaucracy_N = mkN "bureaucracy" "bureaucracies"; -- from DictEng -lin bureaucrat_N = mkN "bureaucrat" "bureaucrats"; -- from DictEng -lin bureaucratic_A = compoundA (mkA "bureaucratic"); -- from DictEng -lin bureaucratically_Adv = mkAdv "bureaucratically"; -- from DictEng -lin burette_N = mkN "burette" "burettes"; -- from DictEng -lin burg_N = mkN "burg" "burgs"; -- from DictEng -lin burgeon_V = mkV "burgeon" "burgeons" "burgeoned" "burgeoned" "burgeoning"; -- from DictEng -lin burgess_N = mkN "burgess" "burgesses"; -- from DictEng -lin burgh_N = mkN "burgh" "burghs"; -- from DictEng -lin burgher_N = mkN "burgher" "burghers"; -- from DictEng -lin burglar_N = mkN "burglar" "burglars"; -- from DictEng -lin burglar_alarm_N = mkN "burglar - alarm" "burglar - alarms"; -- from DictEng -lin burglar_proof_A = compoundA (mkA "burglar - proof"); -- from DictEng -lin burglarious_A = compoundA (mkA "burglarious"); -- from DictEng -lin burglarproof_A = mkA "burglarproof" ; -lin burglary_N = mkN "burglary" "burglaries"; -- from DictEng -lin burgle_V = mkV "burgle" "burgles" "burgled" "burgled" "burgling"; -- from DictEng -lin burgle_V2 = mkV2 (mkV "burgle" "burgles" "burgled" "burgled" "burgling"); -- from DictEng -lin burgomaster_N = mkN "burgomaster" "burgomasters"; -- from DictEng -lin burgoo_N = mkN "burgoo" ; -lin burgrass_N = mkN "burgrass" ; -lin burgrave_N = mkN "burgrave" ; -lin burgundy_N = mkN "burgundy" ; -- from DictEng -lin burial_N = mkN "burial" "burials"; -- from DictEng -lin burial_ground_N = mkN "burial - ground" "burial - grounds"; -- from DictEng -lin buried_A = mkA "buried" ; -lin burin_N = mkN "burin" ; -lin burke_V2 = mkV2 (mkV "burke" "burkes" "burked" "burked" "burking"); -- from DictEng -lin burked_A = mkA "burked" ; -lin burl_N = mkN "burl" ; -lin burl_V2 = mkV2 (mkV "burl") ; -lin burlap_N = mkN "burlap" ; -- from DictEng -lin burled_A = mkA "burled" ; -lin burlesque_A = mkA "burlesque" ; -lin burlesque_N = mkN "burlesque" "burlesques"; -- from DictEng -lin burlesque_V2 = mkV2 (mkV "burlesque" "burlesques" "burlesqued" "burlesqued" "burlesquing"); -- from DictEng -lin burly_A = mkA "burly" "burlier"; -- from DictEng -lin burmese_A = compoundA (mkA "burmese"); -- from DictEng -lin burmese_N = mkN "burmese" "burmese"; -- from DictEng -lin burn_N = mkN "burn" "burns"; -- from DictEng -lin burn_V = mkV "burn" "burns" "burned" "burned" "burning"; -- from DictEng -lin burn_V2 = mkV2 (mkV "burn" "burns" "burned" "burned" "burning"); -- from DictEng -lin burn_up_N = mkN "burn - up" "burn - ups"; -- from DictEng -lin burnable_A = mkA "burnable" ; -lin burned_A = mkA "burned" ; -lin burned_out_A = compoundA (mkA "burned out") ; -lin burner_N = mkN "burner" "burners"; -- from DictEng -lin burning_A = compoundA (mkA "burning"); -- from DictEng -lin burning_N = mkN "burning" ; -lin burnish_V = mkV "burnish" "burnishes" "burnished" "burnished" "burnishing"; -- from DictEng -lin burnish_V2 = mkV2 (mkV "burnish" "burnishes" "burnished" "burnished" "burnishing"); -- from DictEng -lin burnous_N = mkN "burnous" ; -lin burnouse_N = mkN "burnouse" "burnouses"; -- from DictEng -lin burnup_N = mkN "burnup" ; -lin burp_N = mkN "burp" "burps"; -- from DictEng -lin burp_V = mkV "burp" "burps" "burped" "burped" "burping"; -- from DictEng -lin burp_V2 = mkV2 (mkV "burp" "burps" "burped" "burped" "burping"); -- from DictEng -lin burqa_N = mkN "burqa" ; -lin burr_N = mkN "burr" "burrs"; -- from DictEng -lin burr_V = mkV "burr" ; -lin burr_V2 = mkV2 (mkV "burr") ; -lin burr_headed_A = compoundA (mkA "burr headed") ; -lin burr_drill_N = mkN "burr - drill" "burr - drills"; -- from DictEng -lin burrawong_N = mkN "burrawong" ; -lin burrfish_N = mkN "burrfish" ; -lin burrito_N = mkN "burrito" ; -lin burrlike_A = mkA "burrlike" ; -lin burro_N = mkN "burro" ; -lin burrow_N = mkN "burrow" "burrows"; -- from DictEng -lin burrow_V = mkV "burrow" "burrows" "burrowed" "burrowed" "burrowing"; -- from DictEng -lin burrow_V2 = mkV2 (mkV "burrow" "burrows" "burrowed" "burrowed" "burrowing"); -- from DictEng -lin bursa_N = mkN "bursa" ; -lin bursal_A = mkA "bursal" ; -lin bursar_N = mkN "bursar" "bursars"; -- from DictEng -lin bursary_N = mkN "bursary" "bursaries"; -- from DictEng -lin bursiform_A = mkA "bursiform" ; -lin bursitis_N = mkN "bursitis" ; -lin burst_N = mkN "burst" "bursts"; -- from DictEng -lin burst_V = IrregEng.burst_V; -- from DictEng -lin burst_V2 = mkV2 (IrregEng.burst_V); -- from DictEng -lin burthen_N = mkN "burthen" "burthens"; -- from DictEng -lin burthen_V2 = mkV2 (mkV "burthen" "burthens" "burthened" "burthened" "burthening"); -- from DictEng -lin burton_N = mkN "burton" "burtons"; -- from DictEng -lin burundian_A = compoundA (mkA "burundian"); -- from DictEng -lin burundian_N = mkN "burundian" "burundians"; -- from DictEng -lin bury_V = mkV "bury"; -- from DictEng -lin bury_V2 = mkV2 (mkV "bury" "buries" "buried" "buried" "burying"); -- from DictEng -lin burying_N = mkN "burying" ; -lin burying_ground_N = mkN "burying - ground" "burying - grounds"; -- from DictEng -lin bus_N = mkN "bus" "buses"; -- from DictEng -lin bus_V = mkV "bus" "buses" "bused" "bused" "busing"; -- from DictEng -lin bus_V2 = mkV2 (mkV "bus" "buses" "bused" "bused" "busing"); -- from DictEng -lin busbar_N = mkN "busbar" ; -lin busboy_N = mkN "busboy" ; -lin busby_N = mkN "busby" "busbies"; -- from DictEng -lin bush_N = mkN "bush" "bushes"; -- from DictEng -lin bush_league_A = compoundA (mkA "bush league") ; -lin bushbuck_N = mkN "bushbuck" ; -lin bushel_N = mkN "bushel" "bushels"; -- from DictEng -lin bushing_N = mkN "bushing" ; -lin bushman_N = mkN "bushman" "bushmen" {- FIXME: guessed plural form -}; -- from DictEng -lin bushtit_N = mkN "bushtit" ; -lin bushwhacker_N = mkN "bushwhacker" ; -lin bushwhacking_A = mkA "bushwhacking" ; -lin bushy_A = compoundA (mkA "bushy"); -- from DictEng -lin busily_Adv = mkAdv "busily"; -- from DictEng -lin business_N = mkN "business" "businesses"; -- from DictEng -lin businesslike_A = compoundA (mkA "businesslike"); -- from DictEng -lin businessman_N = mkN "businessman" "businessmen" {- FIXME: guessed plural form -}; -- from DictEng -lin businessmen_N = mkN "businessmen" ; -lin businessperson_N = mkN "businessperson" ; -lin businesswoman_N = mkN "businesswoman" ; -lin busker_N = mkN "busker" "buskers"; -- from DictEng -lin buskin_N = mkN "buskin" ; -lin busload_N = mkN "busload" ; -lin busman_N = mkN "busman" "busmen" {- FIXME: guessed plural form -}; -- from DictEng -lin buspirone_N = mkN "buspirone" ; -lin bust_N = mkN "bust" "busts"; -- from DictEng -lin bust_V = mkV "bust" "busts" "busted" "busted" "busting"; -- from DictEng -lin bust_V2 = mkV2 (mkV "bust" "busts" "busted" "busted" "busting"); -- from DictEng -lin bust_up_N = mkN "bust - up" "bust - ups"; -- from DictEng -lin bust_up_N = mkN "bust - up" "bust - ups"; -- from DictEng -lin bustard_N = mkN "bustard" "bustards"; -- from DictEng -lin buster_N = mkN "buster" "busters"; -- from DictEng -lin bustier_N = mkN "bustier" ; -lin bustle_N = mkN "bustle" "bustles"; -- from DictEng -lin bustle_V = mkV "bustle" "bustles" "bustled" "bustled" "bustling"; -- from DictEng -lin bustle_V2 = mkV2 (mkV "bustle" "bustles" "bustled" "bustled" "bustling"); -- from DictEng -lin bustling_A = mkA "bustling" ; -lin busy_A = mkA "busy" "busier"; -- from DictEng -lin busy_V2 = mkV2 (mkV "busy" "busies" "busied" "busied" "busying"); -- from DictEng -lin busybody_N = mkN "busybody" "busybodies"; -- from DictEng -lin busyness_N = mkN "busyness" ; -lin busywork_N = mkN "busywork" ; -lin but_Adv = mkAdv "but"; -- from DictEng -lin but_Prep = mkPrep "but"; -- from DictEng -lin butacaine_N = mkN "butacaine" ; -lin butadiene_N = mkN "butadiene" ; -lin butane_N = mkN "butane" ; -- from DictEng -lin butanone_N = mkN "butanone" ; -lin butch_A = compoundA (mkA "butch"); -- from DictEng -lin butch_N = mkN "butch" ; -lin butcher_N = mkN "butcher" "butchers"; -- from DictEng -lin butcher_V2 = mkV2 (mkV "butcher" "butchers" "butchered" "butchered" "butchering"); -- from DictEng -lin butcherbird_N = mkN "butcherbird" ; -lin butchery_N = mkN "butchery" ; -- from DictEng -lin buteonine_A = mkA "buteonine" ; -lin buteonine_N = mkN "buteonine" ; -lin butler_N = mkN "butler" "butlers"; -- from DictEng -lin butt_N = mkN "butt" "butts"; -- from DictEng -lin butt_V = mkV "butt" "butts" "butted" "butted" "butting"; -- from DictEng -lin butt_V2 = mkV2 (mkV "butt" "butts" "butted" "butted" "butting"); -- from DictEng -lin butte_N = mkN "butte" ; -lin butter_N = mkN "butter" ; -- from DictEng -lin butter_V2 = mkV2 (mkV "butter" "butters" "buttered" "buttered" "buttering"); -- from DictEng -lin butterbean_N = mkN "butterbean" "butterbeans"; -- from DictEng -lin butterbur_N = mkN "butterbur" ; -lin buttercrunch_N = mkN "buttercrunch" ; -lin buttercup_N = mkN "buttercup" "buttercups"; -- from DictEng -lin butterfat_N = mkN "butterfat" ; -lin butterfingers_N = mkN "butterfingers" "butterfingers"; -- from DictEng -lin butterfish_N = mkN "butterfish" ; -lin butterfly_N = mkN "butterfly" "butterflies"; -- from DictEng -lin butterfly_shaped_A = compoundA (mkA "butterfly shaped") ; -lin buttermilk_N = mkN "buttermilk" ; -- from DictEng -lin butternut_N = mkN "butternut" ; -lin butterscotch_N = mkN "butterscotch" ; -- from DictEng -lin butterweed_N = mkN "butterweed" ; -lin butterwort_N = mkN "butterwort" ; -lin buttery_A = mkA "buttery" ; -lin buttery_N = mkN "buttery" "butteries"; -- from DictEng -lin buttinsky_N = mkN "buttinsky" ; -lin buttock_N = mkN "buttock" "buttocks"; -- from DictEng -lin buttocks_N = mkN "buttocks" ; -lin button_N = mkN "button" "buttons"; -- from DictEng -lin button_V = mkV "button" "buttons" "buttoned" "buttoned" "buttoning"; -- from DictEng -lin button_V2 = mkV2 (mkV "button" "buttons" "buttoned" "buttoned" "buttoning"); -- from DictEng -lin button_down_A = compoundA (mkA "button down") ; -lin button_shaped_A = compoundA (mkA "button shaped") ; -lin buttoned_A = mkA "buttoned" ; -lin buttoned_up_A = compoundA (mkA "buttoned - up"); -- from DictEng -lin buttoned_up_A = compoundA (mkA "buttoned - up"); -- from DictEng -lin buttonhole_N = mkN "buttonhole" "buttonholes"; -- from DictEng -lin buttonhole_V2 = mkV2 (mkV "buttonhole" "buttonholes" "buttonholed" "buttonholed" "buttonholing"); -- from DictEng -lin buttonhook_N = mkN "buttonhook" "buttonhooks"; -- from DictEng -lin buttonwood_N = mkN "buttonwood" "buttonwoods"; -- from DictEng -lin buttony_A = mkA "buttony" ; -lin buttress_N = mkN "buttress" "buttresses"; -- from DictEng -lin buttress_V2 = mkV2 (mkV "buttress" "buttresses" "buttressed" "buttressed" "buttressing"); -- from DictEng -lin butty_N = mkN "butty" ; -lin butut_N = mkN "butut" ; -lin butyl_N = mkN "butyl" ; -lin butylene_N = mkN "butylene" ; -lin butyraceous_A = mkA "butyraceous" ; -lin butyric_A = mkA "butyric" ; -lin butyrin_N = mkN "butyrin" ; -lin buxom_A = compoundA (mkA "buxom"); -- from DictEng -lin buxomness_N = mkN "buxomness" ; -lin buy_N = mkN "buy" "buys"; -- from DictEng -lin buy_V = IrregEng.buy_V; -- from DictEng -lin buy_V2 = mkV2 (IrregEng.buy_V); -- from DictEng -lin buyer_N = mkN "buyer" "buyers"; -- from DictEng -lin buying_N = mkN "buying" ; -lin buyout_N = mkN "buyout" ; -lin buzz_N = mkN "buzz" "buzzes"; -- from DictEng -lin buzz_V = mkV "buzz" "buzzes" "buzzed" "buzzed" "buzzing"; -- from DictEng -lin buzz_V2 = mkV2 (mkV "buzz" "buzzes" "buzzed" "buzzed" "buzzing"); -- from DictEng -lin buzzard_N = mkN "buzzard" "buzzards"; -- from DictEng -lin buzzer_N = mkN "buzzer" "buzzers"; -- from DictEng -lin buzzword_N = mkN "buzzword" ; -lin bvm_N = mkN "bvm" ; -- from DictEng -lin by_Adv = mkAdv "by"; -- from DictEng -lin by_Prep = mkPrep "by"; -- from DictEng -lin by_and_by_N = mkN "by and by" ; -lin by_catch_N = mkN "by catch" ; -lin by_election_N = mkN "by - election" "by - elections"; -- from DictEng -lin by_line_N = mkN "by line" ; -lin by_product_N = mkN "by product" ; -lin by_a_long_shot_Adv = mkAdv "by a long shot" ; -lin by_all_means_Adv = mkAdv "by all means" ; -lin by_and_by_Adv = mkAdv "by and by" ; -lin by_and_large_Adv = mkAdv "by and large" ; -lin by_chance_Adv = mkAdv "by chance" ; -lin by_election_N = mkN "by - election" "by - elections"; -- from DictEng -lin by_far_Adv = mkAdv "by far" ; -lin by_fits_and_starts_Adv = mkAdv "by fits and starts" ; -lin by_hand_Adv = mkAdv "by hand" ; -lin by_heart_Adv = mkAdv "by heart" ; -lin by_hook_or_by_crook_Adv = mkAdv "by hook or by crook" ; -lin by_inches_Adv = mkAdv "by inches" ; -lin by_machine_Adv = mkAdv "by machine" ; -lin by_no_means_Adv = mkAdv "by no means" ; -lin by_rights_Adv = mkAdv "by rights" ; -lin by_the_piece_Adv = mkAdv "by the piece" ; -lin by_the_way_Adv = mkAdv "by the way" ; -lin by_word_of_mouth_Adv = mkAdv "by word of mouth" ; -lin bye_N = mkN "bye" "byes"; -- from DictEng -lin bye_bye_N = mkN "bye - bye" "bye - byes"; -- from DictEng -lin bye_law_N = mkN "bye - law" "bye - laws"; -- from DictEng -lin bygone_A = compoundA (mkA "bygone"); -- from DictEng -lin bygone_N = mkN "bygone" ; -lin bylaw_N = mkN "bylaw" "bylaws"; -- from DictEng -lin bypass_N = mkN "bypass" "bypasses"; -- from DictEng -lin bypass_V2 = mkV2 (mkV "bypass" "bypasses" "bypassed" "bypassed" "bypassing"); -- from DictEng -lin bypath_N = mkN "bypath" "bypaths"; -- from DictEng -lin byplay_N = mkN "byplay" ; -- from DictEng -lin byproduct_N = mkN "byproduct" "byproducts"; -- from DictEng -lin byroad_N = mkN "byroad" "byroads"; -- from DictEng -lin byssus_N = mkN "byssus" ; -lin bystander_N = mkN "bystander" "bystanders"; -- from DictEng -lin byte_N = mkN "byte" ; -lin byway_N = mkN "byway" "byways"; -- from DictEng -lin byword_N = mkN "byword" "bywords"; -- from DictEng -lin c_of_e_N = mkN "c of e" ; -- from DictEng -lin ca'canny_N = mkN "ca'canny" "IRREG"; -- from DictEng -lin cab_N = mkN "cab" "cabs"; -- from DictEng -lin cab_V2 = mkV2 (mkV "cab") ; -lin cab_rank_N = mkN "cab - rank" "cab - ranks"; -- from DictEng -lin cabal_N = mkN "cabal" "cabals"; -- from DictEng -lin cabala_N = mkN "cabala" ; -lin cabalist_N = mkN "cabalist" ; -lin cabalistic_A = mkA "cabalistic" ; -lin cabana_N = mkN "cabana" ; -lin cabaret_N = mkN "cabaret" "cabarets"; -- from DictEng -lin cabbage_N = mkN "cabbage" "cabbages"; -- from DictEng -lin cabbage_V2 = mkV2 (mkV "cabbage") ; -lin cabbageworm_N = mkN "cabbageworm" ; -lin cabby_N = mkN "cabby" "cabbies"; -- from DictEng -lin caber_N = mkN "caber" "cabers"; -- from DictEng -lin cabin_N = mkN "cabin" "cabins"; -- from DictEng -lin cabinet_N = mkN "cabinet" "cabinets"; -- from DictEng -lin cabinet_maker_N = mkN "cabinet - maker" "cabinet - makers"; -- from DictEng -lin cabinetmaker_N = mkN "cabinetmaker" ; -lin cabinetmaking_N = mkN "cabinetmaking" ; -lin cabinetwork_N = mkN "cabinetwork" ; -lin cable_N = mkN "cable" "cables"; -- from DictEng -lin cable_V = mkV "cable" "cables" "cabled" "cabled" "cabling"; -- from DictEng -lin cable_V2 = mkV2 (mkV "cable" "cables" "cabled" "cabled" "cabling"); -- from DictEng -lin cable's_length_N = mkN "cable's - length" "cable's - lengths"; -- from DictEng -lin cable_car_N = mkN "cable - car" "cable - cars"; -- from DictEng -lin cable_length_N = mkN "cable - length" "cable - lengths"; -- from DictEng -lin cable_railway_N = mkN "cable - railway" "cable - railways"; -- from DictEng -lin cablegram_N = mkN "cablegram" "cablegrams"; -- from DictEng -lin cabman_N = mkN "cabman" "cabmen" {- FIXME: guessed plural form -}; -- from DictEng -lin cabochon_N = mkN "cabochon" ; -lin caboodle_N = mkN "caboodle" "caboodles"; -- from DictEng -lin caboose_N = mkN "caboose" "cabooses"; -- from DictEng -lin cabotage_N = mkN "cabotage" ; -lin cabstand_N = mkN "cabstand" "cabstands"; -- from DictEng -lin cacao_N = mkN "cacao" "cacaos"; -- from DictEng -lin cacao_bean_N = mkN "cacao - bean" "cacao - beans"; -- from DictEng -lin cacao_tree_N = mkN "cacao - tree" "cacao - trees"; -- from DictEng -lin cache_N = mkN "cache" "caches"; -- from DictEng -lin cache_V2 = mkV2 (mkV "cache" "caches" "cached" "cached" "caching"); -- from DictEng -lin cachectic_A = mkA "cachectic" ; -lin cachet_N = mkN "cachet" "cachets"; -- from DictEng -lin cachexia_N = mkN "cachexia" ; -lin cachinnation_N = mkN "cachinnation" ; -lin cachou_N = mkN "cachou" "cachous"; -- from DictEng -lin cacique_N = mkN "cacique" ; -lin cackle_N = mkN "cackle" "cackles"; -- from DictEng -lin cackle_V = mkV "cackle" "cackles" "cackled" "cackled" "cackling"; -- from DictEng -lin cackle_V2 = mkV2 (mkV "cackle") ; -lin cackler_N = mkN "cackler" "cacklers"; -- from DictEng -lin cackly_A = mkA "cackly" ; -lin cacodemon_N = mkN "cacodemon" ; -lin cacodemonic_A = mkA "cacodemonic" ; -lin cacodyl_N = mkN "cacodyl" ; -lin cacodylic_A = mkA "cacodylic" ; -lin cacogenesis_N = mkN "cacogenesis" ; -lin cacophonous_A = compoundA (mkA "cacophonous"); -- from DictEng -lin cacophony_N = mkN "cacophony" "cacophonies"; -- from DictEng -lin cactus_N = mkN "cactus" "cactuses"; -- from DictEng -lin cacuminal_A = mkA "cacuminal" ; -lin cad_N = mkN "cad" "cads"; -- from DictEng -lin cadaster_N = mkN "cadaster" ; -lin cadastral_A = mkA "cadastral" ; -lin cadaver_N = mkN "cadaver" "cadavers"; -- from DictEng -lin cadaverine_N = mkN "cadaverine" ; -lin cadaverous_A = compoundA (mkA "cadaverous"); -- from DictEng -lin caddie_N = mkN "caddie" "caddies"; -- from DictEng -lin caddish_A = compoundA (mkA "caddish"); -- from DictEng -lin caddisworm_N = mkN "caddisworm" ; -lin caddy_N = mkN "caddy" "caddies"; -- from DictEng -lin cadence_N = mkN "cadence" "cadences"; -- from DictEng -lin cadenced_A = mkA "cadenced" ; -lin cadenza_N = mkN "cadenza" "cadenzas"; -- from DictEng -lin cadet_N = mkN "cadet" "cadets"; -- from DictEng -lin cadetship_N = mkN "cadetship" ; -lin cadge_V = mkV "cadge" "cadges" "cadged" "cadged" "cadging"; -- from DictEng -lin cadge_V2 = mkV2 (mkV "cadge" "cadges" "cadged" "cadged" "cadging"); -- from DictEng -lin cadger_N = mkN "cadger" "cadgers"; -- from DictEng -lin cadmium_N = mkN "cadmium" ; -- from DictEng -lin cadre_N = mkN "cadre" "cadres"; -- from DictEng -lin caducean_A = mkA "caducean" ; -lin caduceus_N = mkN "caduceus" ; -lin caducous_A = mkA "caducous" ; -lin caecilian_A = mkA "caecilian" ; -lin caecilian_N = mkN "caecilian" ; -lin caesar_N = mkN "caesar" "caesars"; -- from DictEng -lin caesarian_A = compoundA (mkA "caesarian"); -- from DictEng -lin caespitose_A = mkA "caespitose" ; -lin caesura_N = mkN "caesura" "caesuras"; -- from DictEng -lin caesural_A = mkA "caesural" ; -lin cafe_N = mkN "café" "cafés"; -- from DictEng -lin cafe_au_lait_N = mkN "cafe - au - lait" "cafe - au - laits"; -- from DictEng -lin cafeteria_N = mkN "cafeteria" "cafeterias"; -- from DictEng -lin caff_N = mkN "caff" "caffs"; -- from DictEng -lin caffeine_N = mkN "caffeine" ; -- from DictEng -lin caffeinic_A = mkA "caffeinic" ; -lin caffeinism_N = mkN "caffeinism" ; -lin caftan_N = mkN "caftan" "caftans"; -- from DictEng -lin cage_N = mkN "cage" "cages"; -- from DictEng -lin cage_V2 = mkV2 (mkV "cage" "cages" "caged" "caged" "caging"); -- from DictEng -lin cagey_A = compoundA (mkA "cagey"); -- from DictEng -lin cagily_Adv = mkAdv "cagily"; -- from DictEng -lin cagoule_N = mkN "cagoule" "cagoules"; -- from DictEng -lin cahoot_N = mkN "cahoot" ; -lin caiman_N = mkN "caiman" "caimans"; -- from DictEng -lin cairn_N = mkN "cairn" "cairns"; -- from DictEng -lin cairned_A = mkA "cairned" ; -lin cairngorm_N = mkN "cairngorm" ; -lin caisson_N = mkN "caisson" "caissons"; -- from DictEng -lin caitiff_A = mkA "caitiff" ; -lin caitiff_N = mkN "caitiff" "caitiffs"; -- from DictEng -lin cajole_V2 = mkV2 (mkV "cajole" "cajoles" "cajoled" "cajoled" "cajoling"); -- from DictEng -lin cajolery_N = mkN "cajolery" ; -- from DictEng -lin cake_N = mkN "cake" "cakes"; -- from DictEng -lin cake_V = mkV "cake" "cakes" "caked" "caked" "caking"; -- from DictEng -lin cake_V2 = mkV2 (mkV "cake" "cakes" "caked" "caked" "caking"); -- from DictEng -lin cakewalk_N = mkN "cakewalk" ; -lin calaba_N = mkN "calaba" ; -lin calabash_N = mkN "calabash" "calabashes"; -- from DictEng -lin caladenia_N = mkN "caladenia" ; -lin caladium_N = mkN "caladium" ; -lin calamint_N = mkN "calamint" ; -lin calamitous_A = compoundA (mkA "calamitous"); -- from DictEng -lin calamity_N = mkN "calamity" "calamities"; -- from DictEng -lin calamus_N = mkN "calamus" ; -lin calando_A = mkA "calando" ; -lin calanthe_N = mkN "calanthe" ; -lin calash_N = mkN "calash" ; -lin calcaneal_A = mkA "calcaneal" ; -lin calcareous_A = mkA "calcareous" ; -lin calced_A = mkA "calced" ; -lin calceolaria_N = mkN "calceolaria" ; -lin calceolate_A = mkA "calceolate" ; -lin calceus_N = mkN "calceus" ; -lin calcic_A = mkA "calcic" ; -lin calcicolous_A = mkA "calcicolous" ; -lin calciferous_A = mkA "calciferous" ; -lin calcific_A = mkA "calcific" ; -lin calcification_N = mkN "calcification" ; -lin calcifugous_A = mkA "calcifugous" ; -lin calcify_V = mkV "calcify" "calcifies" "calcified" "calcified" "calcifying"; -- from DictEng -lin calcify_V2 = mkV2 (mkV "calcify" "calcifies" "calcified" "calcified" "calcifying"); -- from DictEng -lin calcimine_N = mkN "calcimine" ; -lin calcination_N = mkN "calcination" "calcinations"; -- from DictEng -lin calcine_V = mkV "calcine" "calcines" "calcined" "calcined" "calcining"; -- from DictEng -lin calcine_V2 = mkV2 (mkV "calcine" "calcines" "calcined" "calcined" "calcining"); -- from DictEng -lin calcite_N = mkN "calcite" ; -lin calcitic_A = mkA "calcitic" ; -lin calcitonin_N = mkN "calcitonin" ; -lin calcium_N = mkN "calcium" ; -- from DictEng -lin calcium_cyanamide_N = mkN "calcium cyanamide" ; -lin calculable_A = compoundA (mkA "calculable"); -- from DictEng -lin calculate_V = mkV "calculate" "calculates" "calculated" "calculated" "calculating"; -- from DictEng -lin calculate_V2 = mkV2 (mkV "calculate" "calculates" "calculated" "calculated" "calculating"); -- from DictEng -lin calculate_VS = mkVS (mkV "calculate" "calculates" "calculated" "calculated" "calculating"); -- from DictEng -lin calculating_A = compoundA (mkA "calculating"); -- from DictEng -lin calculatingly_Adv = mkAdv "calculatingly" ; -lin calculation_N = mkN "calculation" "calculations"; -- from DictEng -lin calculator_N = mkN "calculator" "calculators"; -- from DictEng -lin calculous_A = mkA "calculous" ; -lin calculus_N = mkN "calculus" "calculuses"; -- from DictEng -lin caldera_N = mkN "caldera" ; -lin caldron_N = mkN "caldron" "caldrons"; -- from DictEng -lin calefacient_A = mkA "calefacient" ; -lin calefaction_N = mkN "calefaction" ; -lin calefactory_A = mkA "calefactory" ; -lin calendar_N = mkN "calendar" "calendars"; -- from DictEng -lin calender_N = mkN "calender" "calenders"; -- from DictEng -lin calender_V2 = mkV2 (mkV "calender" "calenders" "calendered" "calendered" "calendering"); -- from DictEng -lin calendric_A = mkA "calendric" ; -lin calendula_N = mkN "calendula" ; -lin calf_N = mkN "calf" "calves" {- FIXME: guessed plural form -}; -- from DictEng -lin calf_love_N = mkN "calf - love" ; -- from DictEng -lin calibrate_V2 = mkV2 (mkV "calibrate" "calibrates" "calibrated" "calibrated" "calibrating"); -- from DictEng -lin calibrated_A = mkA "calibrated" ; -lin calibration_N = mkN "calibration" "calibrations"; -- from DictEng -lin calibre_N = mkN "calibre" "calibres"; -- from DictEng -lin caliche_N = mkN "caliche" ; -lin caliche_topped_A = compoundA (mkA "caliche topped") ; -lin calico_A = mkA "calico" ; -lin calico_N = mkN "calico" ; -- from DictEng -lin calif_N = mkN "calif" "califs"; -- from DictEng -lin californian_A = compoundA (mkA "californian"); -- from DictEng -lin californian_N = mkN "californian" "californians"; -- from DictEng -lin californium_N = mkN "californium" ; -lin caliginous_A = mkA "caliginous" ; -lin caliper_N = mkN "caliper" ; -lin caliph_N = mkN "caliph" "caliphs"; -- from DictEng -lin caliphate_N = mkN "caliphate" "caliphates"; -- from DictEng -lin calisaya_N = mkN "calisaya" ; -lin calisthenic_A = mkA "calisthenic" ; -lin calisthenics_N = mkN "calisthenics" "calisthenics"; -- from DictEng -lin calk_N = mkN "calk" "calks"; -- from DictEng -lin calk_V2 = mkV2 (mkV "calk" "calks" "calked" "calked" "calking"); -- from DictEng -lin call_N = mkN "call" "calls"; -- from DictEng -lin call_V = mkV "call" "calls" "called" "called" "calling"; -- from DictEng -lin call_V2 = mkV2 (mkV "call" "calls" "called" "called" "calling"); -- from DictEng -lin call_V2V = mkV2V (mkV "call" "calls" "called" "called" "calling") noPrep to_Prep ; -- from DictEng -lin call_VS = mkVS (mkV "call" "calls" "called" "called" "calling"); -- from DictEng -lin call_back_N = mkN "call back" ; -lin call_board_N = mkN "call board" ; -lin call_in_N = mkN "call in" ; -lin call_out_N = mkN "call out" ; -lin call_box_N = mkN "call - box" "call - boxes"; -- from DictEng -lin call_girl_N = mkN "call - girl" "call - girls"; -- from DictEng -lin call_over_N = mkN "call - over" "call - overs"; -- from DictEng -lin call_up_N = mkN "call - up" "call - ups"; -- from DictEng -lin callable_A = mkA "callable" ; -lin caller_A = mkA "caller" ; -lin caller_N = mkN "caller" "callers"; -- from DictEng -lin caller_id_PN = mkPN "caller ID" ; -lin calliandra_N = mkN "calliandra" ; -lin calligrapher_N = mkN "calligrapher" ; -lin calligraphic_A = mkA "calligraphic" ; -lin calligraphy_N = mkN "calligraphy" ; -- from DictEng -lin calling_N = mkN "calling" "callings"; -- from DictEng -lin calliope_N = mkN "calliope" "calliopes"; -- from DictEng -lin calliopsis_N = mkN "calliopsis" ; -lin callipygian_A = mkA "callipygian" ; -lin callisthenics_N = mkN "callisthenics" "callisthenics"; -- from DictEng -lin callithump_N = mkN "callithump" ; -lin callithumpian_A = mkA "callithumpian" ; -lin callosity_N = mkN "callosity" "callosities"; -- from DictEng -lin callosotomy_N = mkN "callosotomy" ; -lin callous_A = compoundA (mkA "callous"); -- from DictEng -lin calloused_A = mkA "calloused" ; -lin callously_Adv = mkAdv "callously" ; -lin callousness_N = mkN "callousness" ; -- from DictEng -lin callow_A = compoundA (mkA "callow"); -- from DictEng -lin callowness_N = mkN "callowness" ; -- from DictEng -lin callus_N = mkN "callus" "calluses"; -- from DictEng -lin calm_A = mkA "calm" "calmer"; -- from DictEng -lin calm_N = mkN "calm" "calms"; -- from DictEng -lin calm_V = mkV "calm" "calms" "calmed" "calmed" "calming"; -- from DictEng -lin calm_V2 = mkV2 (mkV "calm" "calms" "calmed" "calmed" "calming"); -- from DictEng -lin calm_down_V2 = mkV2 (mkV "calm down") ; -lin calmly_Adv = mkAdv "calmly" ; -lin calmness_N = mkN "calmness" ; -- from DictEng -lin calomel_N = mkN "calomel" ; -- from DictEng -lin caloric_A = mkA "caloric" ; -lin calorie_N = mkN "calorie" "calories"; -- from DictEng -lin calorifacient_A = mkA "calorifacient" ; -lin calorific_A = compoundA (mkA "calorific"); -- from DictEng -lin calorimeter_N = mkN "calorimeter" ; -lin calorimetric_A = mkA "calorimetric" ; -lin calorimetry_N = mkN "calorimetry" ; -lin calosoma_N = mkN "calosoma" ; -lin calpac_N = mkN "calpac" ; -lin calque_N = mkN "calque" ; -lin caltrop_N = mkN "caltrop" ; -lin calumet_N = mkN "calumet" ; -lin calumniate_V2 = mkV2 (mkV "calumniate" "calumniates" "calumniated" "calumniated" "calumniating"); -- from DictEng -lin calumniatory_A = mkA "calumniatory" ; -lin calumny_N = mkN "calumny" "calumnies"; -- from DictEng -lin calvaria_N = mkN "calvaria" ; -lin calvary_N = mkN "calvary" "calvaries"; -- from DictEng -lin calve_V = mkV "calve" "calves" "calved" "calved" "calving"; -- from DictEng -lin calving_N = mkN "calving" ; -lin calvinism_N = mkN "calvinism" ; -- from DictEng -lin calvinist_N = mkN "calvinist" "calvinists"; -- from DictEng -lin calyceal_A = mkA "calyceal" ; -lin calycular_A = mkA "calycular" ; -lin calyculate_A = mkA "calyculate" ; -lin calyculus_N = mkN "calyculus" ; -lin calypso_N = mkN "calypso" "calypsos"; -- from DictEng -lin calyptra_N = mkN "calyptra" ; -lin calyptrate_A = mkA "calyptrate" ; -lin calyx_N = mkN "calyx" "calyxes"; -- from DictEng -lin cam_N = mkN "cam" "cams"; -- from DictEng -lin camail_N = mkN "camail" ; -lin camaraderie_N = mkN "camaraderie" ; -- from DictEng -lin camas_N = mkN "camas" ; -lin camber_N = mkN "camber" "cambers"; -- from DictEng -lin camber_V = mkV "camber" "cambers" "cambered" "cambered" "cambering"; -- from DictEng -lin camber_V2 = mkV2 (mkV "camber" "cambers" "cambered" "cambered" "cambering"); -- from DictEng -lin cambial_A = mkA "cambial" ; -lin cambium_N = mkN "cambium" ; -lin cambodian_A = compoundA (mkA "cambodian"); -- from DictEng -lin cambodian_N = mkN "cambodian" "cambodians"; -- from DictEng -lin cambric_N = mkN "cambric" ; -- from DictEng -lin camcorder_N = mkN "camcorder" ; -lin camel_N = mkN "camel" "camels"; -- from DictEng -lin camel_hair_N = mkN "camel - hair" ; -- from DictEng -lin camellia_N = mkN "camellia" "camellias"; -- from DictEng -lin camelpox_N = mkN "camelpox" ; -lin camembert_N = mkN "camembert" "camemberts"; -- from DictEng -lin cameo_N = mkN "cameo" "cameos"; -- from DictEng -lin camera_N = mkN "camera" "cameras"; -- from DictEng -lin cameraman_N = mkN "cameraman" "cameramen" {- FIXME: guessed plural form -}; -- from DictEng -lin cameroonian_A = compoundA (mkA "cameroonian"); -- from DictEng -lin cameroonian_N = mkN "cameroonian" "cameroonians"; -- from DictEng -lin camion_N = mkN "camion" "camions"; -- from DictEng -lin camise_N = mkN "camise" ; -lin camisole_N = mkN "camisole" ; -lin camlet_N = mkN "camlet" ; -lin camomile_N = mkN "camomile" ; -- from DictEng -lin camouflage_N = mkN "camouflage" ; -- from DictEng -lin camouflage_V2 = mkV2 (mkV "camouflage" "camouflages" "camouflaged" "camouflaged" "camouflaging"); -- from DictEng -lin camouflaged_A = mkA "camouflaged" ; -lin camp_A = compoundA (mkA "camp"); -- from DictEng -lin camp_N = mkN "camp" "camps"; -- from DictEng -lin camp_V = mkV "camp" "camps" "camped" "camped" "camping"; -- from DictEng -lin camp_V2 = mkV2 (mkV "camp" "camps" "camped" "camped" "camping"); -- from DictEng -lin camp_made_A = compoundA (mkA "camp made") ; -lin camp_bed_N = mkN "camp - bed" "camp - beds"; -- from DictEng -lin camp_chair_N = mkN "camp - chair" "camp - chairs"; -- from DictEng -lin camp_fire_N = mkN "camp - fire" "camp - fires"; -- from DictEng -lin camp_follower_N = mkN "camp - follower" "camp - followers"; -- from DictEng -lin camp_stool_N = mkN "camp - stool" "camp - stools"; -- from DictEng -lin campaign_N = mkN "campaign" "campaigns"; -- from DictEng -lin campaign_V = mkV "campaign" "campaigns" "campaigned" "campaigned" "campaigning"; -- from DictEng -lin campaigner_N = mkN "campaigner" "campaigners"; -- from DictEng -lin campaigning_N = mkN "campaigning" ; -lin campanile_N = mkN "campanile" "campaniles"; -- from DictEng -lin campanula_N = mkN "campanula" "campanulas"; -- from DictEng -lin campanulate_A = mkA "campanulate" ; -lin camper_N = mkN "camper" "campers"; -- from DictEng -lin campestral_A = mkA "campestral" ; -lin campfire_N = mkN "campfire" ; -lin camphor_N = mkN "camphor" ; -- from DictEng -lin camphoraceous_A = mkA "camphoraceous" ; -lin camphorated_A = compoundA (mkA "camphorated"); -- from DictEng -lin camphoric_A = mkA "camphoric" ; -lin camping_N = mkN "camping" ; -- from DictEng -lin campion_N = mkN "campion" ; -- from DictEng -lin campmate_N = mkN "campmate" ; -lin campsite_N = mkN "campsite" ; -lin campstool_N = mkN "campstool" ; -lin campus_N = mkN "campus" "campuses"; -- from DictEng -lin campylotropous_A = mkA "campylotropous" ; -lin camshaft_N = mkN "camshaft" "camshafts"; -- from DictEng -lin camwood_N = mkN "camwood" ; -lin can_N = mkN "can" "cans"; -- from DictEng -lin can_V2 = mkV2 (mkV "can" "cans" "canned" "canned" "canning"); -- from DictEng -lin can_VV = { - s = table { - VVF VInf => ["be able to"] ; - VVF VPres => "can" ; - VVF VPPart => ["been able to"] ; - VVF VPresPart => ["being able to"] ; - VVF VPast => "could" ; - VVPastNeg => "couldn't" ; - VVPresNeg => "can't" - } ; - typ = VVAux - } ; -lin can_do_A = compoundA (mkA "can do") ; -lin canadian_A = compoundA (mkA "Canadian"); -- from DictEng -lin canadian_N = mkN "Canadian" "Canadians"; -- from DictEng -lin canal_N = mkN "canal" "canals"; -- from DictEng -lin canal_of_schlemm_PN = mkPN "canal of Schlemm" ; -lin canalicular_A = mkA "canalicular" ; -lin canaliculate_A = mkA "canaliculate" ; -lin canaliculus_N = mkN "canaliculus" ; -lin canalization_N = mkN "canalization" "canalizations"; -- from DictEng -lin canalize_V2 = mkV2 (mkV "canalize" "canalizes" "canalized" "canalized" "canalizing"); -- from DictEng -lin canape_N = mkN "canapé" "canapés"; -- from DictEng -lin canard_N = mkN "canard" "canards"; -- from DictEng -lin canary_A = mkA "canary" ; -lin canary_N = mkN "canary" "canaries"; -- from DictEng -lin canary_bird_N = mkN "canary - bird" "canary - birds"; -- from DictEng -lin canary_wine_N = mkN "canary - wine" "canary - wines"; -- from DictEng -lin canasta_N = mkN "canasta" "canastas"; -- from DictEng -lin canavanine_N = mkN "canavanine" ; -lin cancan_N = mkN "cancan" "cancans"; -- from DictEng -lin cancel_V = variants {mkV "cancel" "cancels" "canceled" "canceled" "canceling"}; -- from DictEng -lin cancel_V2 = mkV2 (variants {mkV "cancel" "cancels" "canceled" "canceled" "canceling"}); -- from DictEng -lin cancellate_A = mkA "cancellate" ; -lin cancellation_N = mkN "cancellation" "cancellations"; -- from DictEng -lin cancer_N = mkN "cancer" "cancers"; -- from DictEng -lin cancerous_A = compoundA (mkA "cancerous"); -- from DictEng -lin cancerweed_N = mkN "cancerweed" ; -lin cancroid_A = mkA "cancroid" ; -lin cancroid_N = mkN "cancroid" ; -lin candelabrum_N = mkN "candelabrum" "candelabra" {- FIXME: guessed plural form -}; -- from DictEng -lin candelilla_N = mkN "candelilla" ; -lin candescent_A = mkA "candescent" ; -lin candid_A = compoundA (mkA "candid"); -- from DictEng -lin candida_N = mkN "candida" ; -lin candidate_N = mkN "candidate" "candidates"; -- from DictEng -lin candidature_N = mkN "candidature" "candidatures"; -- from DictEng -lin candidiasis_N = mkN "candidiasis" ; -lin candied_A = compoundA (mkA "candied"); -- from DictEng -lin candle_N = mkN "candle" "candles"; -- from DictEng -lin candle_power_N = mkN "candle - power" ; -- from DictEng -lin candlelight_N = mkN "candlelight" ; -- from DictEng -lin candlemaker_N = mkN "candlemaker" ; -lin candlenut_N = mkN "candlenut" ; -lin candlepin_N = mkN "candlepin" ; -lin candlepins_N = mkN "candlepins" ; -lin candlepower_N = mkN "candlepower" ; -lin candlesnuffer_N = mkN "candlesnuffer" ; -lin candlestick_N = mkN "candlestick" "candlesticks"; -- from DictEng -lin candlewick_N = mkN "candlewick" ; -- from DictEng -lin candlewood_N = mkN "candlewood" ; -lin candor_N = mkN "candor" ; -lin candour_N = mkN "candour" ; -- from DictEng -lin candy_N = mkN "candy" "candies"; -- from DictEng -lin candy_V = mkV "candy" "candies" "candied" "candied" "candying"; -- from DictEng -lin candy_V2 = mkV2 (mkV "candy" "candies" "candied" "candied" "candying"); -- from DictEng -lin candy_like_A = compoundA (mkA "candy like") ; -lin candy_scented_A = compoundA (mkA "candy scented") ; -lin candy_floss_N = mkN "candy - floss" ; -- from DictEng -lin candytuft_N = mkN "candytuft" "candytufts"; -- from DictEng -lin cane_N = mkN "cane" "canes"; -- from DictEng -lin cane_V2 = mkV2 (mkV "cane" "canes" "caned" "caned" "caning"); -- from DictEng -lin canebrake_N = mkN "canebrake" ; -lin canella_N = mkN "canella" ; -lin canescent_A = mkA "canescent" ; -lin canfield_N = mkN "canfield" ; -lin cangue_N = mkN "cangue" ; -lin canicular_A = mkA "canicular" ; -lin canine_A = compoundA (mkA "canine"); -- from DictEng -lin canine_N = mkN "canine" ; -lin canistel_N = mkN "canistel" ; -lin canister_N = mkN "canister" "canisters"; -- from DictEng -lin canker_N = mkN "canker" ; -- from DictEng -lin canker_V2 = mkV2 (mkV "canker" "cankers" "cankered" "cankered" "cankering"); -- from DictEng -lin cankerous_A = compoundA (mkA "cankerous"); -- from DictEng -lin cankerworm_N = mkN "cankerworm" ; -lin canna_N = mkN "canna" "cannas"; -- from DictEng -lin cannabin_N = mkN "cannabin" ; -lin cannabis_N = mkN "cannabis" ; -- from DictEng -lin canned_A = compoundA (mkA "canned"); -- from DictEng -lin cannelloni_N = mkN "cannelloni" ; -lin cannery_N = mkN "cannery" "canneries"; -- from DictEng -lin cannibal_N = mkN "cannibal" "cannibals"; -- from DictEng -lin cannibalic_A = mkA "cannibalic" ; -lin cannibalism_N = mkN "cannibalism" ; -- from DictEng -lin cannibalistic_A = compoundA (mkA "cannibalistic"); -- from DictEng -lin cannibalize_V2 = mkV2 (mkV "cannibalize" "cannibalizes" "cannibalized" "cannibalized" "cannibalizing"); -- from DictEng -lin cannikin_N = mkN "cannikin" ; -lin cannily_Adv = mkAdv "cannily"; -- from DictEng -lin cannon_N = mkN "cannon" "cannons"; -- from DictEng -lin cannon_fodder_N = mkN "cannon - fodder" ; -- from DictEng -lin cannonade_N = mkN "cannonade" "cannonades"; -- from DictEng -lin cannonball_N = mkN "cannonball" ; -lin cannula_N = mkN "cannula" ; -lin cannulation_N = mkN "cannulation" ; -lin canny_A = mkA "canny" "cannier"; -- from DictEng -lin canoe_N = mkN "canoe" "canoes"; -- from DictEng -lin canoe_V2 = mkV2 (mkV "canoe" "canoes" "canoed" "canoed" "canoeing"); -- from DictEng -lin canoeist_N = mkN "canoeist" "canoeists"; -- from DictEng -lin canon_N = mkN "canon" ; -lin canon_1_N = mkN "canon" "canons"; -- from DictEng -lin canon_2_N = mkN "cañon" "cañons"; -- from DictEng -lin canonic_A = mkA "canonic" ; -lin canonical_A = compoundA (mkA "canonical"); -- from DictEng -lin canonically_Adv = mkAdv "canonically" ; -lin canonist_A = mkA "canonist" ; -lin canonist_N = mkN "canonist" ; -lin canonization_N = mkN "canonization" "canonizations"; -- from DictEng -lin canonize_V2 = mkV2 (mkV "canonize" "canonizes" "canonized" "canonized" "canonizing"); -- from DictEng -lin canonized_A = mkA "canonized" ; -lin canopied_A = compoundA (mkA "canopied"); -- from DictEng -lin canopy_N = mkN "canopy" "canopies"; -- from DictEng -lin canorous_A = mkA "canorous" ; -lin cant_N = mkN "cant" "cants"; -- from DictEng -lin cant_V = mkV "cant" "cants" "canted" "canted" "canting"; -- from DictEng -lin cant_V2 = mkV2 (mkV "cant" "cants" "canted" "canted" "canting"); -- from DictEng -lin cantabile_A = mkA "cantabile" ; -lin cantala_N = mkN "cantala" ; -lin cantaloup_N = mkN "cantaloup" "cantaloups"; -- from DictEng -lin cantaloupe_N = mkN "cantaloupe" "cantaloupes"; -- from DictEng -lin cantankerous_A = compoundA (mkA "cantankerous"); -- from DictEng -lin cantankerously_Adv = mkAdv "cantankerously" ; -lin cantata_N = mkN "cantata" "cantatas"; -- from DictEng -lin canteen_N = mkN "canteen" "canteens"; -- from DictEng -lin canter_N = mkN "canter" "canters"; -- from DictEng -lin canter_V = mkV "canter" "canters" "cantered" "cantered" "cantering"; -- from DictEng -lin canter_V2 = mkV2 (mkV "canter" "canters" "cantered" "cantered" "cantering"); -- from DictEng -lin cantering_A = mkA "cantering" ; -lin canthus_N = mkN "canthus" ; -lin canticle_N = mkN "canticle" "canticles"; -- from DictEng -lin cantilever_N = mkN "cantilever" "cantilevers"; -- from DictEng -lin cantillation_N = mkN "cantillation" ; -lin cantle_N = mkN "cantle" ; -lin canto_N = mkN "canto" "cantos"; -- from DictEng -lin canton_N = mkN "canton" "cantons"; -- from DictEng -lin cantonal_A = mkA "cantonal" ; -lin cantonment_N = mkN "cantonment" "cantonments"; -- from DictEng -lin cantor_N = mkN "cantor" "cantors"; -- from DictEng -lin canty_A = mkA "canty" ; -lin canuck_N = mkN "canuck" "canucks"; -- from DictEng -lin canvas_N = mkN "canvas" "canvases"; -- from DictEng -lin canvasback_N = mkN "canvasback" ; -lin canvass_N = mkN "canvass" "canvasses"; -- from DictEng -lin canvass_V = mkV "canvass" "canvasses" "canvassed" "canvassed" "canvassing"; -- from DictEng -lin canvass_V2 = mkV2 (mkV "canvass" "canvasses" "canvassed" "canvassed" "canvassing"); -- from DictEng -lin canvasser_N = mkN "canvasser" ; -lin canyon_N = mkN "canyon" "canyons"; -- from DictEng -lin canyonside_N = mkN "canyonside" ; -lin cap_N = mkN "cap" "caps"; -- from DictEng -lin cap_V2 = mkV2 (mkV "cap" "caps" "capped" "capped" "capping"); -- from DictEng -lin cap_a_pie_Adv = mkAdv "cap - à - pie"; -- from DictEng -lin cap_a_pie_Adv = mkAdv "cap - à - pie"; -- from DictEng -lin capability_N = mkN "capability" "capabilities"; -- from DictEng -lin capable_A = compoundA (mkA "capable"); -- from DictEng -lin capacious_A = compoundA (mkA "capacious"); -- from DictEng -lin capaciousness_N = mkN "capaciousness" ; -lin capacitance_N = mkN "capacitance" ; -lin capacitive_A = mkA "capacitive" ; -lin capacitor_N = mkN "capacitor" ; -lin capacity_N = mkN "capacity" "capacities"; -- from DictEng -lin caparison_N = mkN "caparison" "caparisons"; -- from DictEng -lin caparison_V2 = mkV2 (mkV "caparison" "caparisons" "caparisoned" "caparisoned" "caparisoning"); -- from DictEng -lin caparisoned_A = mkA "caparisoned" ; -lin cape_N = mkN "cape" "capes"; -- from DictEng -lin capelin_N = mkN "capelin" ; -lin caper_N = mkN "caper" "capers"; -- from DictEng -lin caper_V = mkV "caper" "capers" "capered" "capered" "capering"; -- from DictEng -lin capercaillie_N = mkN "capercaillie" ; -lin capful_N = mkN "capful" ; -lin capillarity_N = mkN "capillarity" ; -lin capillary_A = mkA "capillary" ; -lin capillary_N = mkN "capillary" "capillaries"; -- from DictEng -lin capital_A = compoundA (mkA "capital"); -- from DictEng -lin capital_N = mkN "capital" "capitals"; -- from DictEng -lin capitalism_A = compoundA (mkA "capitalism"); -- from DictEng -lin capitalism_N = mkN "capitalism" ; -- from DictEng -lin capitalist_A = mkA "capitalist" ; -lin capitalist_N = mkN "capitalist" "capitalists"; -- from DictEng -lin capitalistic_A = compoundA (mkA "capitalistic"); -- from DictEng -lin capitalization_N = mkN "capitalization" "capitalizations"; -- from DictEng -lin capitalize_V = mkV "capitalize" "capitalizes" "capitalized" "capitalized" "capitalizing"; -- from DictEng -lin capitalize_V2 = mkV2 (mkV "capitalize" "capitalizes" "capitalized" "capitalized" "capitalizing"); -- from DictEng -lin capitate_A = mkA "capitate" ; -lin capitate_N = mkN "capitate" ; -lin capitation_N = mkN "capitation" "capitations"; -- from DictEng -lin capitol_N = mkN "capitol" "capitols"; -- from DictEng -lin capitular_A = mkA "capitular" ; -lin capitulate_V = mkV "capitulate"; -- from DictEng -lin capitulate_V2 = mkV2 (mkV "capitulate" "capitulates" "capitulated" "capitulated" "capitulating"); -- from DictEng -lin capitulation_N = mkN "capitulation" ; -- from DictEng -lin capitulum_N = mkN "capitulum" ; -lin capo_N = mkN "capo" ; -lin capon_N = mkN "capon" "capons"; -- from DictEng -lin capote_N = mkN "capote" ; -lin capped_A = mkA "capped" ; -lin cappuccino_N = mkN "cappuccino" ; -lin capriccio_N = mkN "capriccio" ; -lin caprice_N = mkN "caprice" "caprices"; -- from DictEng -lin capricious_A = compoundA (mkA "capricious"); -- from DictEng -lin capriciously_Adv = mkAdv "capriciously" ; -lin capriciousness_N = mkN "capriciousness" ; -- from DictEng -lin caprifig_N = mkN "caprifig" ; -lin caprine_A = mkA "caprine" ; -lin capriole_N = mkN "capriole" ; -lin capsaicin_N = mkN "capsaicin" ; -lin capsicum_N = mkN "capsicum" "capsicums"; -- from DictEng -lin capsid_N = mkN "capsid" ; -lin capsize_V = mkV "capsize" "capsizes" "capsized" "capsized" "capsizing"; -- from DictEng -lin capsize_V2 = mkV2 (mkV "capsize" "capsizes" "capsized" "capsized" "capsizing"); -- from DictEng -lin capsizing_N = mkN "capsizing" ; -lin capstan_N = mkN "capstan" "capstans"; -- from DictEng -lin capstone_N = mkN "capstone" ; -lin capsular_A = mkA "capsular" ; -lin capsulate_A = mkA "capsulate" ; -lin capsule_N = mkN "capsule" "capsules"; -- from DictEng -lin captain_N = mkN "captain" "captains"; -- from DictEng -lin captain_V2 = mkV2 (mkV "captain" "captains" "captained" "captained" "captaining"); -- from DictEng -lin captainship_N = mkN "captainship" ; -lin caption_N = mkN "caption" "captions"; -- from DictEng -lin captious_A = compoundA (mkA "captious"); -- from DictEng -lin captiously_Adv = mkAdv "captiously" ; -lin captivate_V2 = mkV2 (mkV "captivate" "captivates" "captivated" "captivated" "captivating"); -- from DictEng -lin captivated_A = mkA "captivated" ; -lin captivation_N = mkN "captivation" ; -lin captive_A = compoundA (mkA "captive"); -- from DictEng -lin captive_N = mkN "captive" "captives"; -- from DictEng -lin captivity_N = mkN "captivity" ; -- from DictEng -lin captopril_N = mkN "captopril" ; -lin captor_N = mkN "captor" "captors"; -- from DictEng -lin capture_N = mkN "capture" "captures"; -- from DictEng -lin capture_V2 = mkV2 (mkV "capture" "captures" "captured" "captured" "capturing"); -- from DictEng -lin capuchin_N = mkN "capuchin" ; -lin capulin_N = mkN "capulin" ; -lin caput_N = mkN "caput" ; -lin capybara_N = mkN "capybara" ; -lin car_N = mkN "car" "cars"; -- from DictEng -lin car_ferry_N = mkN "car - ferry" "car - ferries"; -- from DictEng -lin car_ferry_N = mkN "car - ferry" "car - ferries"; -- from DictEng -lin carabao_N = mkN "carabao" ; -lin carabiner_N = mkN "carabiner" ; -lin caracal_N = mkN "caracal" ; -lin caracara_N = mkN "caracara" ; -lin caracolito_N = mkN "caracolito" ; -lin carafe_N = mkN "carafe" "carafes"; -- from DictEng -lin carambola_N = mkN "carambola" ; -lin caramel_A = mkA "caramel" ; -lin caramel_N = mkN "caramel" "caramels"; -- from DictEng -lin carancha_N = mkN "carancha" ; -lin caranday_N = mkN "caranday" ; -lin carangid_A = mkA "carangid" ; -lin carapace_N = mkN "carapace" "carapaces"; -- from DictEng -lin carat_N = mkN "carat" "carats"; -- from DictEng -lin caravan_N = mkN "caravan" "caravans"; -- from DictEng -lin caravan_V2 = mkV2 (mkV "caravan") ; -lin caravanning_N = mkN "caravanning" ; -- from DictEng -lin caravansary_N = mkN "caravansary" "caravansaries"; -- from DictEng -lin caravanserai_N = mkN "caravanserai" "caravanserais"; -- from DictEng -lin caraway_N = mkN "caraway" "caraways"; -- from DictEng -lin carbamate_N = mkN "carbamate" ; -lin carbide_N = mkN "carbide" "carbides"; -- from DictEng -lin carbine_N = mkN "carbine" "carbines"; -- from DictEng -lin carbineer_N = mkN "carbineer" ; -lin carbocyclic_A = mkA "carbocyclic" ; -lin carbohydrate_N = mkN "carbohydrate" "carbohydrates"; -- from DictEng -lin carbolated_A = mkA "carbolated" ; -lin carbolic_A = compoundA (mkA "carbolic"); -- from DictEng -lin carbomycin_N = mkN "carbomycin" ; -lin carbon_N = mkN "carbon" "carbons"; -- from DictEng -lin carbon_paper_N = mkN "carbon - paper" ; -- from DictEng -lin carbonaceous_A = mkA "carbonaceous" ; -lin carbonado_N = mkN "carbonado" ; -lin carbonara_N = mkN "carbonara" ; -lin carbonate_N = mkN "carbonate" ; -lin carbonated_A = compoundA (mkA "carbonated"); -- from DictEng -lin carbonation_N = mkN "carbonation" ; -lin carbonic_A = compoundA (mkA "carbonic"); -- from DictEng -lin carboniferous_A = compoundA (mkA "carboniferous"); -- from DictEng -lin carbonization_N = mkN "carbonization" "carbonizations"; -- from DictEng -lin carbonize_V2 = mkV2 (mkV "carbonize" "carbonizes" "carbonized" "carbonized" "carbonizing"); -- from DictEng -lin carbonyl_A = mkA "carbonyl" ; -lin carbonyl_N = mkN "carbonyl" ; -lin carborundum_N = mkN "carborundum" ; -- from DictEng -lin carboxyl_A = mkA "carboxyl" ; -lin carboxyl_N = mkN "carboxyl" ; -lin carboy_N = mkN "carboy" "carboys"; -- from DictEng -lin carbuncle_N = mkN "carbuncle" "carbuncles"; -- from DictEng -lin carbuncled_A = mkA "carbuncled" ; -lin carburetor_N = mkN "carburetor" ; -lin carburettor_N = mkN "carburettor" "carburettors"; -- from DictEng -lin carcase_N = mkN "carcase" "carcases"; -- from DictEng -lin carcass_N = mkN "carcass" "carcasses"; -- from DictEng -lin carcinogen_N = mkN "carcinogen" ; -lin carcinogenic_A = mkA "carcinogenic" ; -lin carcinoid_N = mkN "carcinoid" ; -lin carcinoma_N = mkN "carcinoma" ; -lin carcinomatous_A = mkA "carcinomatous" ; -lin carcinosarcoma_N = mkN "carcinosarcoma" ; -lin card_N = mkN "card" "cards"; -- from DictEng -lin card_V2 = mkV2 (mkV "card" "cards" "carded" "carded" "carding"); -- from DictEng -lin card_sharper_N = mkN "card - sharper" "card - sharpers"; -- from DictEng -lin cardamom_N = mkN "cardamom" ; -- from DictEng -lin cardboard_A = mkA "cardboard" ; -lin cardboard_N = mkN "cardboard" ; -- from DictEng -lin cardcase_N = mkN "cardcase" ; -lin cardholder_N = mkN "cardholder" ; -lin cardia_N = mkN "cardia" ; -lin cardiac_A = compoundA (mkA "cardiac"); -- from DictEng -lin cardigan_N = mkN "cardigan" "cardigans"; -- from DictEng -lin cardinal_A = compoundA (mkA "cardinal"); -- from DictEng -lin cardinal_N = mkN "cardinal" "cardinals"; -- from DictEng -lin cardinalate_N = mkN "cardinalate" ; -lin cardinalfish_N = mkN "cardinalfish" ; -lin cardinality_N = mkN "cardinality" ; -lin cardinalship_N = mkN "cardinalship" ; -lin cardiograph_N = mkN "cardiograph" ; -lin cardiographic_A = mkA "cardiographic" ; -lin cardiography_N = mkN "cardiography" ; -lin cardioid_N = mkN "cardioid" ; -lin cardiologic_A = mkA "cardiologic" ; -lin cardiologist_N = mkN "cardiologist" ; -lin cardiology_N = mkN "cardiology" ; -lin cardiomegaly_N = mkN "cardiomegaly" ; -lin cardiomyopathy_N = mkN "cardiomyopathy" ; -lin cardiopulmonary_A = mkA "cardiopulmonary" ; -lin cardiospasm_N = mkN "cardiospasm" ; -lin cardiovascular_A = mkA "cardiovascular" ; -lin carditis_N = mkN "carditis" ; -lin cardoon_N = mkN "cardoon" ; -lin cardroom_N = mkN "cardroom" ; -lin cardsharp_N = mkN "cardsharp" ; -lin care_N = mkN "care" "cares"; -- from DictEng -lin care_V = mkV "care" "cares" "cared" "cared" "caring"; -- from DictEng -lin care_laden_A = compoundA (mkA "care laden") ; -lin cared_for_A = compoundA (mkA "cared for") ; -lin careen_V = mkV "careen" "careens" "careened" "careened" "careening"; -- from DictEng -lin careen_V2 = mkV2 (mkV "careen" "careens" "careened" "careened" "careening"); -- from DictEng -lin career_N = mkN "career" "careers"; -- from DictEng -lin career_V = mkV "career" "careers" "careered" "careered" "careering"; -- from DictEng -lin careerism_N = mkN "careerism" ; -lin careerist_N = mkN "careerist" "careerists"; -- from DictEng -lin carefree_A = compoundA (mkA "carefree"); -- from DictEng -lin carefreeness_N = mkN "carefreeness" ; -lin careful_A = compoundA (mkA "careful"); -- from DictEng -lin carefully_Adv = mkAdv "carefully" ; -lin carefulness_N = mkN "carefulness" ; -- from DictEng -lin caregiver_N = mkN "caregiver" ; -lin careladen_A = compoundA (mkA "careladen"); -- from DictEng -lin careless_A = compoundA (mkA "careless"); -- from DictEng -lin carelessly_Adv = mkAdv "carelessly" ; -lin carelessness_N = mkN "carelessness" ; -- from DictEng -lin caress_N = mkN "caress" "caresses"; -- from DictEng -lin caress_V2 = mkV2 (mkV "caress" "caresses" "caressed" "caressed" "caressing"); -- from DictEng -lin caressing_A = compoundA (mkA "caressing"); -- from DictEng -lin caressing_N = mkN "caressing" ; -lin caret_N = mkN "caret" "carets"; -- from DictEng -lin caretaker_N = mkN "caretaker" "caretakers"; -- from DictEng -lin careworn_A = compoundA (mkA "careworn"); -- from DictEng -lin carful_N = mkN "carful" ; -lin cargo_N = mkN "cargo" "cargoes"; -- from DictEng -lin carhop_N = mkN "carhop" ; -lin caribou_N = mkN "caribou" "caribou"; -- from DictEng -lin caricature_N = mkN "caricature" "caricatures"; -- from DictEng -lin caricature_V2 = mkV2 (mkV "caricature" "caricatures" "caricatured" "caricatured" "caricaturing"); -- from DictEng -lin caricaturist_N = mkN "caricaturist" "caricaturists"; -- from DictEng -lin caries_N = mkN "caries" ; -- from DictEng -lin carillon_N = mkN "carillon" "carillons"; -- from DictEng -lin carillonneur_N = mkN "carillonneur" ; -lin carina_N = mkN "carina" ; -lin carinal_A = mkA "carinal" ; -lin carinate_N = mkN "carinate" ; -lin caring_A = mkA "caring" ; -lin carioca_N = mkN "carioca" ; -lin carious_A = compoundA (mkA "carious"); -- from DictEng -lin carissa_N = mkN "carissa" ; -lin carjack_V2 = mkV2 (mkV "carjack") ; -lin carjacking_N = mkN "carjacking" ; -lin carload_N = mkN "carload" ; -lin carmelite_A = compoundA (mkA "carmelite"); -- from DictEng -lin carmelite_N = mkN "carmelite" "carmelites"; -- from DictEng -lin carminative_A = mkA "carminative" ; -lin carminative_N = mkN "carminative" ; -lin carmine_A = compoundA (mkA "carmine"); -- from DictEng -lin carmine_N = mkN "carmine" "carmines"; -- from DictEng -lin carnage_N = mkN "carnage" ; -- from DictEng -lin carnal_A = compoundA (mkA "carnal"); -- from DictEng -lin carnallite_N = mkN "carnallite" ; -lin carnally_Adv = mkAdv "carnally" ; -lin carnassial_A = mkA "carnassial" ; -lin carnation_A = mkA "carnation" ; -lin carnation_N = mkN "carnation" "carnations"; -- from DictEng -lin carnauba_N = mkN "carnauba" ; -lin carnelian_N = mkN "carnelian" ; -lin carnival_N = mkN "carnival" "carnivals"; -- from DictEng -lin carnivore_N = mkN "carnivore" "carnivores"; -- from DictEng -lin carnivorous_A = compoundA (mkA "carnivorous"); -- from DictEng -lin carnosaur_N = mkN "carnosaur" ; -lin carnotite_N = mkN "carnotite" ; -lin carob_N = mkN "carob" ; -lin caroche_N = mkN "caroche" ; -lin carol_N = mkN "carol" "carols"; -- from DictEng -lin carol_V2 = mkV2 (mkV "carol" "carols" "carolled" "carolled" "carolling"); -- from DictEng -lin caroler_N = mkN "caroler" ; -lin caroling_N = mkN "caroling" ; -lin caroller_N = mkN "caroller" "carollers"; -- from DictEng -lin carom_N = mkN "carom" ; -lin carom_V = mkV "carom" ; -lin carom_V2 = mkV2 (mkV "carom") ; -lin carotene_N = mkN "carotene" ; -lin carotenemia_N = mkN "carotenemia" ; -lin carotenoid_N = mkN "carotenoid" ; -lin carotid_A = mkA "carotid" ; -lin carousal_N = mkN "carousal" "carousals"; -- from DictEng -lin carouse_N = mkN "carouse" ; -lin carouse_V2 = mkV2 (mkV "carouse" "carouses" "caroused" "caroused" "carousing"); -- from DictEng -lin carousel_N = mkN "carousel" "carousels"; -- from DictEng -lin carp_N = mkN "carp" "carp"; -- from DictEng -lin carp_V = mkV "carp"; -- from DictEng -lin carp_V2 = mkV2 (mkV "carp" "carps" "carped" "carped" "carping"); -- from DictEng -lin carpal_A = compoundA (mkA "carpal"); -- from DictEng -lin carpal_N = mkN "carpal" "carpals"; -- from DictEng -lin carpel_N = mkN "carpel" ; -lin carpellary_A = mkA "carpellary" ; -lin carpellate_A = mkA "carpellate" ; -lin carpenter_N = mkN "carpenter" "carpenters"; -- from DictEng -lin carpenteria_N = mkN "carpenteria" ; -lin carpentry_N = mkN "carpentry" ; -- from DictEng -lin carper_N = mkN "carper" ; -lin carpet_N = mkN "carpet" "carpets"; -- from DictEng -lin carpet_V2 = mkV2 (mkV "carpet" "carpets" "carpeted" "carpeted" "carpeting"); -- from DictEng -lin carpet_beater_N = mkN "carpet - beater" "carpet - beaters"; -- from DictEng -lin carpet_knight_N = mkN "carpet - knight" "carpet - knights"; -- from DictEng -lin carpet_sweeper_N = mkN "carpet - sweeper" "carpet - sweepers"; -- from DictEng -lin carpetbag_A = mkA "carpetbag" ; -lin carpetbag_N = mkN "carpetbag" "carpetbags"; -- from DictEng -lin carpetbagger_N = mkN "carpetbagger" "carpetbaggers"; -- from DictEng -lin carpeted_A = mkA "carpeted" ; -lin carpetweed_N = mkN "carpetweed" ; -lin carpophagous_A = mkA "carpophagous" ; -lin carpophore_N = mkN "carpophore" ; -lin carport_N = mkN "carport" "carports"; -- from DictEng -lin carpospore_N = mkN "carpospore" ; -lin carposporic_A = mkA "carposporic" ; -lin carposporous_A = mkA "carposporous" ; -lin carrack_N = mkN "carrack" ; -lin carrageenin_N = mkN "carrageenin" ; -lin carrel_N = mkN "carrel" ; -lin carriage_N = mkN "carriage" "carriages"; -- from DictEng -lin carriageway_N = mkN "carriageway" "carriageways"; -- from DictEng -lin carrier_N = mkN "carrier" "carriers"; -- from DictEng -lin carrier_bag_N = mkN "carrier - bag" "carrier - bags"; -- from DictEng -lin carrier_pigeon_N = mkN "carrier - pigeon" "carrier - pigeons"; -- from DictEng -lin carrion_N = mkN "carrion" ; -- from DictEng -lin carrion_crow_N = mkN "carrion - crow" "carrion - crows"; -- from DictEng -lin carrot_N = mkN "carrot" "carrots"; -- from DictEng -lin carroty_A = compoundA (mkA "carroty"); -- from DictEng -lin carry_N = mkN "carry" "carries"; -- from DictEng -lin carry_V = mkV "carry" "carries" "carried" "carried" "carrying"; -- from DictEng -lin carry_V2 = mkV2 (mkV "carry" "carries" "carried" "carried" "carrying"); -- from DictEng -lin carry_over_N = mkN "carry over" ; -lin carry_on_V2 = mkV2 (mkV "carry on") ; -lin carry_out_V2 = mkV2 (mkV "carry out" "carries out" "carried out" "carried out" "carrying out"); -- from DictEng -lin carryall_N = mkN "carryall" ; -lin carrycot_N = mkN "carrycot" "carrycots"; -- from DictEng -lin carsick_A = compoundA (mkA "carsick"); -- from DictEng -lin carsickness_N = mkN "carsickness" ; -- from DictEng -lin cart_N = mkN "cart" "carts"; -- from DictEng -lin cart_V2 = mkV2 (mkV "cart" "carts" "carted" "carted" "carting"); -- from DictEng -lin cart_track_N = mkN "cart - track" "cart - tracks"; -- from DictEng -lin cartage_N = mkN "cartage" ; -- from DictEng -lin carte_blanche_N = mkN "carte blanche" "cartes blanches"; -- from DictEng -lin cartel_N = mkN "cartel" "cartels"; -- from DictEng -lin carter_N = mkN "carter" "carters"; -- from DictEng -lin carthorse_N = mkN "carthorse" "carthorses"; -- from DictEng -lin cartilage_N = mkN "cartilage" "cartilages"; -- from DictEng -lin cartilaginification_N = mkN "cartilaginification" ; -lin cartilaginous_A = compoundA (mkA "cartilaginous"); -- from DictEng -lin cartload_N = mkN "cartload" "cartloads"; -- from DictEng -lin cartographer_N = mkN "cartographer" "cartographers"; -- from DictEng -lin cartographic_A = mkA "cartographic" ; -lin cartography_N = mkN "cartography" ; -- from DictEng -lin carton_N = mkN "carton" "cartons"; -- from DictEng -lin cartoon_N = mkN "cartoon" "cartoons"; -- from DictEng -lin cartoon_V2 = mkV2 (mkV "cartoon" "cartoons" "cartooned" "cartooned" "cartooning"); -- from DictEng -lin cartoonist_N = mkN "cartoonist" "cartoonists"; -- from DictEng -lin cartouche_N = mkN "cartouche" ; -lin cartridge_N = mkN "cartridge" "cartridges"; -- from DictEng -lin cartridge_belt_N = mkN "cartridge - belt" "cartridge - belts"; -- from DictEng -lin cartridge_paper_N = mkN "cartridge - paper" "cartridge - papers"; -- from DictEng -lin cartroad_N = mkN "cartroad" "cartroads"; -- from DictEng -lin cartwheel_N = mkN "cartwheel" "cartwheels"; -- from DictEng -lin cartwright_N = mkN "cartwright" ; -lin caruncle_N = mkN "caruncle" ; -lin caruncular_A = mkA "caruncular" ; -lin carunculate_A = mkA "carunculate" ; -lin carve_V = mkV "carve" "carves" "carved" "carved" "carving"; -- from DictEng -lin carve_V2 = mkV2 (mkV "carve" "carves" "carved" "carved" "carving"); -- from DictEng -lin carved_A = mkA "carved" ; -lin carvedilol_N = mkN "carvedilol" ; -lin carvel_built_A = compoundA (mkA "carvel built") ; -lin carver_N = mkN "carver" "carvers"; -- from DictEng -lin carving_N = mkN "carving" "carvings"; -- from DictEng -lin carving_fork_N = mkN "carving - fork" "carving - forks"; -- from DictEng -lin carving_knife_N = mkN "carving - knife" "carving - knives"; -- from DictEng -lin caryatid_N = mkN "caryatid" "caryatids"; -- from DictEng -lin caryophyllaceous_A = mkA "caryophyllaceous" ; -lin casaba_N = mkN "casaba" ; -lin cascade_N = mkN "cascade" "cascades"; -- from DictEng -lin cascade_V = mkV "cascade" "cascades" "cascaded" "cascaded" "cascading"; -- from DictEng -lin cascara_N = mkN "cascara" ; -lin cascarilla_N = mkN "cascarilla" ; -lin case_N = mkN "case" "cases"; -- from DictEng -lin case_V2 = mkV2 (mkV "case" "cases" "cased" "cased" "casing"); -- from DictEng -lin case_hardened_A = compoundA (mkA "case - hardened"); -- from DictEng -lin case_hardened_A = compoundA (mkA "case - hardened"); -- from DictEng -lin case_history_N = mkN "case - history" "case - histories"; -- from DictEng -lin case_law_N = mkN "case - law" "case - laws"; -- from DictEng -lin casebook_A = mkA "casebook" ; -lin casebook_N = mkN "casebook" "casebooks"; -- from DictEng -lin cased_A = mkA "cased" ; -lin casein_N = mkN "casein" ; -- from DictEng -lin casement_N = mkN "casement" "casements"; -- from DictEng -lin caseous_A = mkA "caseous" ; -lin casern_N = mkN "casern" ; -lin casework_N = mkN "casework" "caseworks"; -- from DictEng -lin caseworm_N = mkN "caseworm" ; -lin cash_N = mkN "cash" ; -- from DictEng -lin cash_V = mkV "cash" "cashes" "cashed" "cashed" "cashing"; -- from DictEng -lin cash_V2 = mkV2 (mkV "cash" "cashes" "cashed" "cashed" "cashing"); -- from DictEng -lin cash_and_carry_A = compoundA (mkA "cash and carry") ; -lin cashable_A = compoundA (mkA "cashable"); -- from DictEng -lin cashbox_N = mkN "cashbox" ; -lin cashed_A = mkA "cashed" ; -lin cashew_N = mkN "cashew" "cashews"; -- from DictEng -lin cashier_N = mkN "cashier" "cashiers"; -- from DictEng -lin cashier_V2 = mkV2 (mkV "cashier" "cashiers" "cashiered" "cashiered" "cashiering"); -- from DictEng -lin cashmere_N = mkN "cashmere" ; -- from DictEng -lin casing_N = mkN "casing" "casings"; -- from DictEng -lin casino_N = mkN "casino" "casinos"; -- from DictEng -lin cask_N = mkN "cask" "casks"; -- from DictEng -lin casket_N = mkN "casket" "caskets"; -- from DictEng -lin caspase_N = mkN "caspase" ; -lin casque_N = mkN "casque" ; -lin casquet_N = mkN "casquet" ; -lin cassareep_N = mkN "cassareep" ; -lin cassava_N = mkN "cassava" ; -- from DictEng -lin casserole_N = mkN "casserole" "casseroles"; -- from DictEng -lin cassette_N = mkN "cassette" "cassettes"; -- from DictEng -lin cassia_N = mkN "cassia" ; -lin cassiri_N = mkN "cassiri" ; -lin cassiterite_N = mkN "cassiterite" ; -lin cassock_N = mkN "cassock" "cassocks"; -- from DictEng -lin cassocked_A = mkA "cassocked" ; -lin cassowary_N = mkN "cassowary" "cassowaries"; -- from DictEng -lin cast_N = mkN "cast" "casts"; -- from DictEng -lin cast_V = IrregEng.cast_V; -- from DictEng -lin cast_V2 = mkV2 (IrregEng.cast_V); -- from DictEng -lin cast_iron_A = compoundA (mkA "cast - iron"); -- from DictEng -lin cast_off_A = compoundA (mkA "cast - off"); -- from DictEng -lin cast_iron_A = compoundA (mkA "cast - iron"); -- from DictEng -lin cast_off_A = compoundA (mkA "cast - off"); -- from DictEng -lin castaway_N = mkN "castaway" "castaways"; -- from DictEng -lin caste_N = mkN "caste" "castes"; -- from DictEng -lin castellated_A = compoundA (mkA "castellated"); -- from DictEng -lin caster_N = mkN "caster" "casters"; -- from DictEng -lin castigate_V2 = mkV2 (mkV "castigate" "castigates" "castigated" "castigated" "castigating"); -- from DictEng -lin castigation_N = mkN "castigation" "castigations"; -- from DictEng -lin casting_N = mkN "casting" "castings"; -- from DictEng -lin castle_N = mkN "castle" "castles"; -- from DictEng -lin castle_V = mkV "castle" "castles" "castled" "castled" "castling"; -- from DictEng -lin castor_N = mkN "castor" "castors"; -- from DictEng -lin castor_oil_N = mkN "castor oil" ; -- from DictEng -lin castrate_V2 = mkV2 (mkV "castrate" "castrates" "castrated" "castrated" "castrating"); -- from DictEng -lin castrated_A = mkA "castrated" ; -lin castration_N = mkN "castration" "castrations"; -- from DictEng -lin castrato_N = mkN "castrato" ; -lin casual_A = compoundA (mkA "casual"); -- from DictEng -lin casually_Adv = mkAdv "casually" ; -lin casualness_N = mkN "casualness" ; -lin casualty_N = mkN "casualty" "casualties"; -- from DictEng -lin casuarina_N = mkN "casuarina" ; -lin casuist_N = mkN "casuist" "casuists"; -- from DictEng -lin casuistic_A = compoundA (mkA "casuistic"); -- from DictEng -lin casuistical_A = compoundA (mkA "casuistical"); -- from DictEng -lin casuistry_N = mkN "casuistry" "casuistries"; -- from DictEng -lin casus_belli_N = mkN "casus belli" "casus belli"; -- from DictEng -lin cat_N = mkN "cat" "cats"; -- from DictEng -lin cat's_claw_N = mkN "cat's claw" ; -lin cat's_ear_N = mkN "cat's ear" ; -lin cat's_paw_N = mkN "cat's paw" ; -lin cat's_tail_N = mkN "cat's tail" ; -lin cat_o'_nine_tails_N = mkN "cat - o'-nine - tails" "IRREG"; -- from DictEng -lin cat_nap_N = mkN "cat - nap" "cat - naps"; -- from DictEng -lin cat_o'_nine_tails_N = mkN "cat - o'-nine - tails" "IRREG"; -- from DictEng -lin cat_sleep_N = mkN "cat - sleep" "cat - sleeps"; -- from DictEng -lin catabiosis_N = mkN "catabiosis" ; -lin catabolic_A = mkA "catabolic" ; -lin catabolism_N = mkN "catabolism" ; -lin catachresis_N = mkN "catachresis" ; -lin catachrestic_A = mkA "catachrestic" ; -lin cataclinal_A = mkA "cataclinal" ; -lin cataclysm_N = mkN "cataclysm" "cataclysms"; -- from DictEng -lin cataclysmal_A = mkA "cataclysmal" ; -lin cataclysmic_A = compoundA (mkA "cataclysmic"); -- from DictEng -lin catacomb_N = mkN "catacomb" ; -lin catacorner_A = mkA "catacorner" ; -lin catadromous_A = mkA "catadromous" ; -lin catafalque_N = mkN "catafalque" "catafalques"; -- from DictEng -lin catalan_A = compoundA (mkA "catalan"); -- from DictEng -lin catalan_N = mkN "catalan" ; -- from DictEng -lin catalase_N = mkN "catalase" ; -lin catalatic_A = mkA "catalatic" ; -lin catalectic_A = mkA "catalectic" ; -lin catalectic_N = mkN "catalectic" ; -lin catalepsy_N = mkN "catalepsy" ; -- from DictEng -lin cataleptic_A = compoundA (mkA "cataleptic"); -- from DictEng -lin cataleptic_N = mkN "cataleptic" "cataleptics"; -- from DictEng -lin catalexis_N = mkN "catalexis" ; -lin catalog_N = mkN "catalog" ; -lin catalog_V2 = mkV2 (mkV "catalog"); -- from DictEng -lin cataloger_N = mkN "cataloger" ; -lin catalogue_N = mkN "catalogue" "catalogues"; -- from DictEng -lin catalogue_V2 = mkV2 (mkV "catalogue" "catalogues" "catalogued" "catalogued" "cataloguing"); -- from DictEng -lin catalpa_N = mkN "catalpa" "catalpas"; -- from DictEng -lin catalufa_N = mkN "catalufa" ; -lin catalysis_N = mkN "catalysis" ; -- from DictEng -lin catalyst_N = mkN "catalyst" "catalysts"; -- from DictEng -lin catalytic_A = compoundA (mkA "catalytic"); -- from DictEng -lin catalytically_Adv = mkAdv "catalytically" ; -lin catamaran_N = mkN "catamaran" "catamarans"; -- from DictEng -lin catamite_N = mkN "catamite" ; -lin catananche_N = mkN "catananche" ; -lin cataphasia_N = mkN "cataphasia" ; -lin cataphatic_A = mkA "cataphatic" ; -lin cataphatism_N = mkN "cataphatism" ; -lin cataphyll_N = mkN "cataphyll" ; -lin cataplasia_N = mkN "cataplasia" ; -lin cataplastic_A = mkA "cataplastic" ; -lin catapult_N = mkN "catapult" "catapults"; -- from DictEng -lin catapult_V2 = mkV2 (mkV "catapult" "catapults" "catapulted" "catapulted" "catapulting"); -- from DictEng -lin catapultic_A = mkA "catapultic" ; -lin cataract_N = mkN "cataract" "cataracts"; -- from DictEng -lin catarrh_N = mkN "catarrh" ; -- from DictEng -lin catarrhal_A = mkA "catarrhal" ; -lin catarrhine_A = mkA "catarrhine" ; -lin catastrophe_N = mkN "catastrophe" "catastrophes"; -- from DictEng -lin catastrophic_A = compoundA (mkA "catastrophic"); -- from DictEng -lin catastrophically_Adv = mkAdv "catastrophically"; -- from DictEng -lin catatonia_N = mkN "catatonia" ; -lin catatonic_A = mkA "catatonic" ; -lin catbird_N = mkN "catbird" ; -lin catboat_N = mkN "catboat" ; -lin catcall_N = mkN "catcall" "catcalls"; -- from DictEng -lin catcall_V = mkV "catcall" "catcalls" "catcalled" "catcalled" "catcalling"; -- from DictEng -lin catch_N = mkN "catch" "catches"; -- from DictEng -lin catch_V = IrregEng.catch_V; -- from DictEng -lin catch_V2 = mkV2 (IrregEng.catch_V); -- from DictEng -lin catch_VS = mkVS (IrregEng.catch_V); -- from DictEng -lin catch_crop_N = mkN "catch - crop" "catch - crops"; -- from DictEng -lin catchall_N = mkN "catchall" ; -lin catcher_N = mkN "catcher" "catchers"; -- from DictEng -lin catching_A = compoundA (mkA "catching"); -- from DictEng -lin catching_N = mkN "catching" ; -lin catchment_N = mkN "catchment" "catchments"; -- from DictEng -lin catchment_area_N = mkN "catchment - area" "catchment - areas"; -- from DictEng -lin catchment_basin_N = mkN "catchment - basin" "catchment - basins"; -- from DictEng -lin catchpenny_A = compoundA (mkA "catchpenny"); -- from DictEng -lin catchphrase_N = mkN "catchphrase" ; -lin catchup_N = mkN "catchup" "catchups"; -- from DictEng -lin catchword_N = mkN "catchword" "catchwords"; -- from DictEng -lin catchy_A = mkA "catchy" "catchier"; -- from DictEng -lin catechesis_N = mkN "catechesis" ; -lin catechetical_A = mkA "catechetical" ; -lin catechin_N = mkN "catechin" ; -lin catechism_N = mkN "catechism" "catechisms"; -- from DictEng -lin catechismal_A = mkA "catechismal" ; -lin catechist_N = mkN "catechist" ; -lin catechistic_A = mkA "catechistic" ; -lin catechize_V2 = mkV2 (mkV "catechize" "catechizes" "catechized" "catechized" "catechizing"); -- from DictEng -lin catecholamine_N = mkN "catecholamine" ; -lin catechu_N = mkN "catechu" ; -lin catechumen_N = mkN "catechumen" ; -lin categorem_N = mkN "categorem" ; -lin categorematic_A = mkA "categorematic" ; -lin categorial_A = mkA "categorial" ; -lin categoric_A = mkA "categoric" ; -lin categorical_A = compoundA (mkA "categorical"); -- from DictEng -lin categorization_N = mkN "categorization" ; -lin categorize_V2 = mkV2 (mkV "categorize" "categorizes" "categorized" "categorized" "categorizing"); -- from DictEng -lin categorized_A = mkA "categorized" ; -lin category_N = mkN "category" "categories"; -- from DictEng -lin catena_N = mkN "catena" ; -lin catenary_N = mkN "catenary" ; -lin catenulate_A = mkA "catenulate" ; -lin cater_V = mkV "cater" "caters" "catered" "catered" "catering"; -- from DictEng -lin caterer_N = mkN "caterer" "caterers"; -- from DictEng -lin catering_N = mkN "catering" ; -lin caterpillar_N = mkN "caterpillar" "caterpillars"; -- from DictEng -lin caterpillar_tracked_A = compoundA (mkA "caterpillar tracked") ; -lin caterwaul_N = mkN "caterwaul" "caterwauls"; -- from DictEng -lin caterwaul_V = mkV "caterwaul" "caterwauls" "caterwauled" "caterwauled" "caterwauling"; -- from DictEng -lin catfish_N = mkN "catfish" "catfish"; -- from DictEng -lin catgut_N = mkN "catgut" ; -- from DictEng -lin catharsis_N = mkN "catharsis" "catharses" {- FIXME: guessed plural form -}; -- from DictEng -lin cathartic_A = mkA "cathartic" ; -lin cathartic_N = mkN "cathartic" "cathartics"; -- from DictEng -lin cathectic_A = mkA "cathectic" ; -lin cathedra_N = mkN "cathedra" ; -lin cathedral_A = mkA "cathedral" ; -lin cathedral_N = mkN "cathedral" "cathedrals"; -- from DictEng -lin catheter_N = mkN "catheter" ; -lin catheterization_N = mkN "catheterization" ; -lin cathexis_N = mkN "cathexis" ; -lin cathode_N = mkN "cathode" "cathodes"; -- from DictEng -lin cathodic_A = mkA "cathodic" ; -lin catholic_A = compoundA (mkA "catholic"); -- from DictEng -lin catholic_N = mkN "catholic" "catholics"; -- from DictEng -lin catholicism_N = mkN "catholicism" ; -- from DictEng -lin catholicity_N = mkN "catholicity" ; -- from DictEng -lin cation_N = mkN "cation" ; -lin cationic_A = mkA "cationic" ; -lin catkin_N = mkN "catkin" "catkins"; -- from DictEng -lin catkinate_A = mkA "catkinate" ; -lin catling_N = mkN "catling" ; -lin catmint_N = mkN "catmint" ; -lin catnap_V2 = mkV2 (mkV "catnap") ; -lin catoptric_A = mkA "catoptric" ; -lin catoptrics_N = mkN "catoptrics" ; -lin catostomid_N = mkN "catostomid" ; -lin catsup_N = mkN "catsup" "catsups"; -- from DictEng -lin cattail_N = mkN "cattail" ; -lin cattalo_N = mkN "cattalo" ; -lin cattiness_N = mkN "cattiness" ; -- from DictEng -lin cattish_A = compoundA (mkA "cattish"); -- from DictEng -lin cattle_N = mkN "cattle" ; -lin cattle_cake_N = mkN "cattle - cake" ; -- from DictEng -lin cattleman_N = mkN "cattleman" "cattlemen" {- FIXME: guessed plural form -}; -- from DictEng -lin cattleship_N = mkN "cattleship" ; -lin cattleya_N = mkN "cattleya" ; -lin catty_A = mkA "catty" "cattier"; -- from DictEng -lin catty_N = mkN "catty" ; -lin catwalk_N = mkN "catwalk" "catwalks"; -- from DictEng -lin caucasian_A = compoundA (mkA "caucasian"); -- from DictEng -lin caucasian_N = mkN "caucasian" "caucasians"; -- from DictEng -lin caucus_N = mkN "caucus" "caucuses"; -- from DictEng -lin cauda_N = mkN "cauda" ; -lin caudal_A = mkA "caudal" ; -lin caudally_Adv = mkAdv "caudally" ; -lin caudate_A = mkA "caudate" ; -lin caudex_N = mkN "caudex" ; -lin caught_up_A = compoundA (mkA "caught up") ; -lin caul_N = mkN "caul" "cauls"; -- from DictEng -lin cauldron_N = mkN "cauldron" "cauldrons"; -- from DictEng -lin caulescent_A = mkA "caulescent" ; -lin cauliflower_N = mkN "cauliflower" "cauliflowers"; -- from DictEng -lin cauline_A = mkA "cauline" ; -lin caulk_N = mkN "caulk" ; -lin caulk_V2 = mkV2 (mkV "caulk" "caulks" "caulked" "caulked" "caulking"); -- from DictEng -lin caulked_A = mkA "caulked" ; -lin causal_A = compoundA (mkA "causal"); -- from DictEng -lin causalgia_N = mkN "causalgia" ; -lin causality_N = mkN "causality" ; -- from DictEng -lin causally_Adv = mkAdv "causally" ; -lin causation_N = mkN "causation" ; -- from DictEng -lin causative_A = compoundA (mkA "causative"); -- from DictEng -lin cause_N = mkN "cause" "causes"; -- from DictEng -lin cause_V2 = mkV2 (mkV "cause" "causes" "caused" "caused" "causing"); -- from DictEng -lin cause_V2V = mkV2V (mkV "cause") noPrep to_Prep ; -- from DictEng -lin cause_VS = mkVS (mkV "cause"); -- from DictEng -lin causeless_A = compoundA (mkA "causeless"); -- from DictEng -lin causerie_N = mkN "causerie" "causeries"; -- from DictEng -lin causeway_N = mkN "causeway" "causeways"; -- from DictEng -lin causing_N = mkN "causing" ; -lin caustic_A = compoundA (mkA "caustic"); -- from DictEng -lin caustic_N = mkN "caustic" ; -lin caustically_Adv = mkAdv "caustically"; -- from DictEng -lin cauterize_V2 = mkV2 (mkV "cauterize" "cauterizes" "cauterized" "cauterized" "cauterizing"); -- from DictEng -lin cautery_N = mkN "cautery" ; -lin caution_N = mkN "caution" "cautions"; -- from DictEng -lin caution_V = mkV "caution" "cautions" "cautioned" "cautioned" "cautioning"; -- from DictEng -lin caution_V2 = mkV2 (mkV "caution" "cautions" "cautioned" "cautioned" "cautioning"); -- from DictEng -lin caution_V2V = mkV2V (mkV "caution" "cautions" "cautioned" "cautioned" "cautioning") noPrep to_Prep ; -- from DictEng -lin caution_VS = mkVS (mkV "caution" "cautions" "cautioned" "cautioned" "cautioning"); -- from DictEng -lin cautionary_A = compoundA (mkA "cautionary"); -- from DictEng -lin cautious_A = compoundA (mkA "cautious"); -- from DictEng -lin cautiously_Adv = mkAdv "cautiously" ; -lin cavalcade_N = mkN "cavalcade" "cavalcades"; -- from DictEng -lin cavalier_A = compoundA (mkA "cavalier"); -- from DictEng -lin cavalier_N = mkN "cavalier" "cavaliers"; -- from DictEng -lin cavalry_N = mkN "cavalry" "cavalries"; -- from DictEng -lin cavalryman_N = mkN "cavalryman" "cavalrymen" {- FIXME: guessed plural form -}; -- from DictEng -lin cave_N = mkN "cave" "caves"; -- from DictEng -lin cave_V = mkV "cave" "caves" "caved" "caved" "caving"; -- from DictEng -lin cave_V2 = mkV2 (mkV "cave" "caves" "caved" "caved" "caving"); -- from DictEng -lin cave_dweller_N = mkN "cave - dweller" "cave - dwellers"; -- from DictEng -lin cave_in_N = mkN "cave - in" "cave - ins"; -- from DictEng -lin caveat_N = mkN "caveat" "caveats"; -- from DictEng -lin caveman_N = mkN "caveman" "cavemen" {- FIXME: guessed plural form -}; -- from DictEng -lin cavern_N = mkN "cavern" "caverns"; -- from DictEng -lin cavernous_A = compoundA (mkA "cavernous"); -- from DictEng -lin cavetto_N = mkN "cavetto" ; -lin caviar_N = mkN "caviar" ; -- from DictEng -lin caviare_N = mkN "caviare" ; -- from DictEng -lin cavil_V = mkV "cavil" "cavils" "cavilled" "cavilled" "cavilling"; -- from DictEng -lin cavity_N = mkN "cavity" "cavities"; -- from DictEng -lin cavort_V = mkV "cavort" "cavorts" "cavorted" "cavorted" "cavorting"; -- from DictEng -lin cavort_V2 = mkV2 (mkV "cavort") ; -lin cavy_N = mkN "cavy" ; -lin caw_N = mkN "caw" "caws"; -- from DictEng -lin caw_V = mkV "caw" "caws" "cawed" "cawed" "cawing"; -- from DictEng -lin caw_V2 = mkV2 (mkV "caw" "caws" "cawed" "cawed" "cawing"); -- from DictEng -lin cayenne_N = mkN "cayenne" ; -- from DictEng -lin cayenne_pepper_N = mkN "cayenne pepper" ; -- from DictEng -lin cayman_N = mkN "cayman" "caymans"; -- from DictEng -lin cayuse_N = mkN "cayuse" ; -lin cbi_N = mkN "cbi" ; -- from DictEng -lin cc_N = mkN "cc" "cc"; -- from DictEng -lin cd_N = mkN "cd" ; -- from DictEng -lin cease_N = mkN "cease" "ceases"; -- from DictEng -lin cease_V = mkV "cease" "ceases" "ceased" "ceased" "ceasing"; -- from DictEng -lin cease_V2 = mkV2 (mkV "cease" "ceases" "ceased" "ceased" "ceasing"); -- from DictEng -lin cease_V2V = mkV2V (mkV "cease" "ceases" "ceased" "ceased" "ceasing") noPrep to_Prep ; -- from DictEng -lin cease_VS = mkVS (mkV "cease" "ceases" "ceased" "ceased" "ceasing"); -- from DictEng -lin cease_fire_N = mkN "cease - fire" "cease - fires"; -- from DictEng -lin ceaseless_A = compoundA (mkA "ceaseless"); -- from DictEng -lin cecal_A = mkA "cecal" ; -lin cecropia_N = mkN "cecropia" ; -lin cecum_N = mkN "cecum" ; -lin cedar_N = mkN "cedar" "cedars"; -- from DictEng -lin cedar_scented_A = compoundA (mkA "cedar scented") ; -lin cedar_of_lebanon_PN = mkPN "cedar of Lebanon" ; -lin cedarn_A = mkA "cedarn" ; -lin cede_V2 = mkV2 (mkV "cede" "cedes" "ceded" "ceded" "ceding"); -- from DictEng -lin cedi_N = mkN "cedi" ; -lin cedilla_N = mkN "cedilla" "cedillas"; -- from DictEng -lin cefadroxil_N = mkN "cefadroxil" ; -lin cefoperazone_N = mkN "cefoperazone" ; -lin cefotaxime_N = mkN "cefotaxime" ; -lin ceftazidime_N = mkN "ceftazidime" ; -lin ceftriaxone_N = mkN "ceftriaxone" ; -lin cefuroxime_N = mkN "cefuroxime" ; -lin ceibo_N = mkN "ceibo" ; -lin ceilidh_N = mkN "ceilidh" ; -lin ceiling_N = mkN "ceiling" "ceilings"; -- from DictEng -lin ceilinged_A = mkA "ceilinged" ; -lin celandine_N = mkN "celandine" "celandines"; -- from DictEng -lin celebrant_N = mkN "celebrant" "celebrants"; -- from DictEng -lin celebrate_V2 = mkV2 (mkV "celebrate" "celebrates" "celebrated" "celebrated" "celebrating"); -- from DictEng -lin celebrated_A = compoundA (mkA "celebrated"); -- from DictEng -lin celebration_N = mkN "celebration" "celebrations"; -- from DictEng -lin celebratory_A = mkA "celebratory" ; -lin celebrity_N = mkN "celebrity" "celebrities"; -- from DictEng -lin celecoxib_N = mkN "celecoxib" ; -lin celeriac_N = mkN "celeriac" ; -lin celerity_N = mkN "celerity" ; -- from DictEng -lin celery_N = mkN "celery" ; -- from DictEng -lin celesta_N = mkN "celesta" ; -lin celestial_A = compoundA (mkA "celestial"); -- from DictEng -lin celestite_N = mkN "celestite" ; -lin celiac_A = mkA "celiac" ; -lin celibacy_N = mkN "celibacy" ; -- from DictEng -lin celibate_A = mkA "celibate" ; -lin celibate_N = mkN "celibate" "celibates"; -- from DictEng -lin celiocentesis_N = mkN "celiocentesis" ; -lin celioma_N = mkN "celioma" ; -lin celioscopy_N = mkN "celioscopy" ; -lin cell_N = mkN "cell" "cells"; -- from DictEng -lin cell_free_A = compoundA (mkA "cell free") ; -lin cell_like_A = compoundA (mkA "cell like") ; -lin cellar_N = mkN "cellar" "cellars"; -- from DictEng -lin cellarage_N = mkN "cellarage" "cellarages"; -- from DictEng -lin cellblock_N = mkN "cellblock" ; -lin cellist_N = mkN "cellist" "cellists"; -- from DictEng -lin cello_N = mkN "cello" "cellos"; -- from DictEng -lin cellophane_N = mkN "cellophane" ; -- from DictEng -lin cellular_A = compoundA (mkA "cellular"); -- from DictEng -lin cellularity_N = mkN "cellularity" ; -lin cellulite_N = mkN "cellulite" ; -lin cellulitis_N = mkN "cellulitis" ; -lin celluloid_A = mkA "celluloid" ; -lin celluloid_N = mkN "celluloid" ; -- from DictEng -lin cellulose_N = mkN "cellulose" ; -- from DictEng -lin cellulosic_N = mkN "cellulosic" ; -lin cellulosid_A = mkA "cellulosid" ; -lin celom_N = mkN "celom" ; -lin celt_N = mkN "celt" "celts"; -- from DictEng -lin celtic_A = compoundA (mkA "celtic"); -- from DictEng -lin celtic_N = mkN "celtic" "celtics"; -- from DictEng -lin celtuce_N = mkN "celtuce" ; -lin cement_N = mkN "cement" ; -- from DictEng -lin cement_V2 = mkV2 (mkV "cement" "cements" "cemented" "cemented" "cementing"); -- from DictEng -lin cement_mixer_N = mkN "cement - mixer" "cement - mixers"; -- from DictEng -lin cementite_N = mkN "cementite" ; -lin cementitious_A = mkA "cementitious" ; -lin cementum_N = mkN "cementum" ; -lin cemetery_N = mkN "cemetery" "cemeteries"; -- from DictEng -lin cenobite_N = mkN "cenobite" ; -lin cenobitic_A = mkA "cenobitic" ; -lin cenogenesis_N = mkN "cenogenesis" ; -lin cenogenetic_A = mkA "cenogenetic" ; -lin cenotaph_N = mkN "cenotaph" "cenotaphs"; -- from DictEng -lin censer_N = mkN "censer" "censers"; -- from DictEng -lin censor_N = mkN "censor" "censors"; -- from DictEng -lin censor_V2 = mkV2 (mkV "censor" "censors" "censored" "censored" "censoring"); -- from DictEng -lin censored_A = mkA "censored" ; -lin censorial_A = mkA "censorial" ; -lin censoring_N = mkN "censoring" ; -lin censorious_A = compoundA (mkA "censorious"); -- from DictEng -lin censorship_N = mkN "censorship" "censorships"; -- from DictEng -lin censure_N = mkN "censure" "censures"; -- from DictEng -lin censure_V2 = mkV2 (mkV "censure" "censures" "censured" "censured" "censuring"); -- from DictEng -lin census_N = mkN "census" "censuses"; -- from DictEng -lin cent_N = mkN "cent" "cents"; -- from DictEng -lin centas_N = mkN "centas" ; -lin centaur_N = mkN "centaur" "centaurs"; -- from DictEng -lin centaury_N = mkN "centaury" ; -lin centavo_N = mkN "centavo" ; -lin centenarian_A = compoundA (mkA "centenarian"); -- from DictEng -lin centenarian_N = mkN "centenarian" "centenarians"; -- from DictEng -lin centenary_A = compoundA (mkA "centenary"); -- from DictEng -lin centenary_N = mkN "centenary" "centenaries"; -- from DictEng -lin centennial_A = compoundA (mkA "centennial"); -- from DictEng -lin centennial_N = mkN "centennial" "centennials"; -- from DictEng -lin centennially_Adv = mkAdv "centennially" ; -lin center_A = mkA "center" ; -lin center_N = mkN "center" ; -lin center_V = mkV "center"; -- from DictEng -lin center_V2 = mkV2 (mkV "center"); -- from DictEng -lin centerboard_N = mkN "centerboard" ; -lin centered_A = mkA "centered" ; -lin centerfold_N = mkN "centerfold" ; -lin centering_N = mkN "centering" ; -lin centerline_N = mkN "centerline" ; -lin centerpiece_N = mkN "centerpiece" ; -lin centesimal_A = mkA "centesimal" ; -lin centesimo_N = mkN "centesimo" ; -lin centesis_N = mkN "centesis" ; -lin centigrade_A = compoundA (mkA "centigrade"); -- from DictEng -lin centiliter_N = mkN "centiliter" ; -lin centime_N = mkN "centime" "centimes"; -- from DictEng -lin centimeter_N = mkN "centimeter" ; -lin centimetre_N = mkN "centimetre" "centimetres"; -- from DictEng -lin centimo_N = mkN "centimo" ; -lin centipede_N = mkN "centipede" "centipedes"; -- from DictEng -lin centner_N = mkN "centner" ; -lin central_A = compoundA (mkA "central"); -- from DictEng -lin central_N = mkN "central" "centrals"; -- from DictEng -lin centralism_N = mkN "centralism" ; -lin centralist_A = mkA "centralist" ; -lin centrality_N = mkN "centrality" ; -lin centralization_N = mkN "centralization" "centralizations"; -- from DictEng -lin centralize_V = mkV "centralize" "centralizes" "centralized" "centralized" "centralizing"; -- from DictEng -lin centralize_V2 = mkV2 (mkV "centralize" "centralizes" "centralized" "centralized" "centralizing"); -- from DictEng -lin centralized_A = mkA "centralized" ; -lin centralizing_A = mkA "centralizing" ; -lin centrally_Adv = mkAdv "centrally" ; -lin centre_N = mkN "centre" "centres"; -- from DictEng -lin centre_V = mkV "centre" "centres" "centred" "centred" "centring"; -- from DictEng -lin centre_V2 = mkV2 (mkV "centre" "centres" "centred" "centred" "centring"); -- from DictEng -lin centre_bit_N = mkN "centre - bit" "centre - bits"; -- from DictEng -lin centre_board_N = mkN "centre - board" "centre - boards"; -- from DictEng -lin centrepiece_N = mkN "centrepiece" "centrepieces"; -- from DictEng -lin centrex_N = mkN "centrex" ; -lin centric_A = mkA "centric" ; -lin centrifugal_A = compoundA (mkA "centrifugal"); -- from DictEng -lin centrifugation_N = mkN "centrifugation" ; -lin centrifuge_N = mkN "centrifuge" "centrifuges"; -- from DictEng -lin centriole_N = mkN "centriole" ; -lin centripetal_A = compoundA (mkA "centripetal"); -- from DictEng -lin centrism_N = mkN "centrism" ; -lin centrist_A = mkA "centrist" ; -lin centrist_N = mkN "centrist" ; -lin centroid_N = mkN "centroid" ; -lin centroidal_A = mkA "centroidal" ; -lin centromere_N = mkN "centromere" ; -lin centromeric_A = mkA "centromeric" ; -lin centrosome_N = mkN "centrosome" ; -lin centrosomic_A = mkA "centrosomic" ; -lin centrum_N = mkN "centrum" ; -lin centurion_N = mkN "centurion" "centurions"; -- from DictEng -lin century_N = mkN "century" "centuries"; -- from DictEng -lin cephalexin_N = mkN "cephalexin" ; -lin cephalhematoma_N = mkN "cephalhematoma" ; -lin cephalic_A = mkA "cephalic" ; -lin cephalochordate_N = mkN "cephalochordate" ; -lin cephaloglycin_N = mkN "cephaloglycin" ; -lin cephalometry_N = mkN "cephalometry" ; -lin cephalopod_A = mkA "cephalopod" ; -lin cephalopod_N = mkN "cephalopod" ; -lin cephaloridine_N = mkN "cephaloridine" ; -lin cephalosporin_N = mkN "cephalosporin" ; -lin cephalothin_N = mkN "cephalothin" ; -lin ceramic_A = compoundA (mkA "ceramic"); -- from DictEng -lin ceramic_N = mkN "ceramic" ; -lin ceramics_N = mkN "ceramics" "ceramics"; -- from DictEng -lin ceras_N = mkN "ceras" ; -lin cerate_N = mkN "cerate" ; -lin ceratodus_N = mkN "ceratodus" ; -lin ceratopsian_N = mkN "ceratopsian" ; -lin ceratosaur_N = mkN "ceratosaur" ; -lin ceratozamia_N = mkN "ceratozamia" ; -lin cercaria_N = mkN "cercaria" ; -lin cercarial_A = mkA "cercarial" ; -lin cere_N = mkN "cere" ; -lin cereal_A = mkA "cereal" ; -lin cereal_N = mkN "cereal" "cereals"; -- from DictEng -lin cerebellar_A = mkA "cerebellar" ; -lin cerebellum_N = mkN "cerebellum" ; -lin cerebral_A = compoundA (mkA "cerebral"); -- from DictEng -lin cerebrally_Adv = mkAdv "cerebrally" ; -lin cerebration_N = mkN "cerebration" ; -- from DictEng -lin cerebrospinal_A = mkA "cerebrospinal" ; -lin cerebrovascular_A = mkA "cerebrovascular" ; -lin cerebrum_N = mkN "cerebrum" ; -lin cerecloth_N = mkN "cerecloth" ; -lin ceremonial_A = compoundA (mkA "ceremonial"); -- from DictEng -lin ceremonial_N = mkN "ceremonial" "ceremonials"; -- from DictEng -lin ceremonially_Adv = mkAdv "ceremonially" ; -lin ceremonious_A = compoundA (mkA "ceremonious"); -- from DictEng -lin ceremoniously_Adv = mkAdv "ceremoniously" ; -lin ceremoniousness_N = mkN "ceremoniousness" ; -lin ceremony_N = mkN "ceremony" "ceremonies"; -- from DictEng -lin ceresin_N = mkN "ceresin" ; -lin ceric_A = mkA "ceric" ; -lin ceriman_N = mkN "ceriman" ; -lin cerise_A = compoundA (mkA "cerise"); -- from DictEng -lin cerise_N = mkN "cerise" "cerises"; -- from DictEng -lin cerium_N = mkN "cerium" ; -lin cerivastatin_N = mkN "cerivastatin" ; -lin cernuous_A = mkA "cernuous" ; -lin cero_N = mkN "cero" ; -lin cerous_A = mkA "cerous" ; -lin cert_N = mkN "cert" "certs"; -- from DictEng -lin certain_A = compoundA (mkA "certain"); -- from DictEng -lin certainty_N = mkN "certainty" "certainties"; -- from DictEng -lin certifiable_A = compoundA (mkA "certifiable"); -- from DictEng -lin certificate_N = mkN "certificate" "certificates"; -- from DictEng -lin certificate_V2 = mkV2 (mkV "certificate" "certificates" "certificated" "certificated" "certificating"); -- from DictEng -lin certificated_A = compoundA (mkA "certificated"); -- from DictEng -lin certification_N = mkN "certification" "certifications"; -- from DictEng -lin certificatory_A = mkA "certificatory" ; -lin certified_A = mkA "certified" ; -lin certify_V = mkV "certify" "certifies" "certified" "certified" "certifying"; -- from DictEng -lin certify_V2 = mkV2 (mkV "certify" "certifies" "certified" "certified" "certifying"); -- from DictEng -lin certiorari_N = mkN "certiorari" ; -lin certitude_N = mkN "certitude" ; -- from DictEng -lin cerulean_A = compoundA (mkA "cerulean"); -- from DictEng -lin cerumen_N = mkN "cerumen" ; -lin ceruminous_A = mkA "ceruminous" ; -lin cerussite_N = mkN "cerussite" ; -lin cervical_A = compoundA (mkA "cervical"); -- from DictEng -lin cervicitis_N = mkN "cervicitis" ; -lin cervine_A = mkA "cervine" ; -lin cervix_N = mkN "cervix" "cervixes"; -- from DictEng -lin cesarean_A = compoundA (mkA "cesarean"); -- from DictEng -lin cesium_N = mkN "cesium" ; -lin cessation_N = mkN "cessation" ; -- from DictEng -lin cession_N = mkN "cession" "cessions"; -- from DictEng -lin cesspit_N = mkN "cesspit" "cesspits"; -- from DictEng -lin cesspool_N = mkN "cesspool" "cesspools"; -- from DictEng -lin cetacean_A = mkA "cetacean" ; -lin cetacean_N = mkN "cetacean" ; -lin ceteris_paribus_Adv = mkAdv "ceteris paribus" ; -lin cetrimide_N = mkN "cetrimide" ; -lin cf__Adv = mkAdv "cf " ; -lin cgs_N = mkN "cgs" ; -lin cha_cha_N = mkN "cha cha" ; -lin chabazite_N = mkN "chabazite" ; -lin chachalaca_N = mkN "chachalaca" ; -lin chachka_N = mkN "chachka" ; -lin chacma_N = mkN "chacma" ; -lin chad_N = mkN "chad" ; -lin chadian_A = compoundA (mkA "chadian"); -- from DictEng -lin chadian_N = mkN "chadian" "chadians"; -- from DictEng -lin chador_N = mkN "chador" ; -lin chaenactis_N = mkN "chaenactis" ; -lin chaeta_N = mkN "chaeta" ; -lin chaetal_A = mkA "chaetal" ; -lin chaetodon_N = mkN "chaetodon" ; -lin chaetognathan_A = mkA "chaetognathan" ; -lin chafe_N = mkN "chafe" "chafes"; -- from DictEng -lin chafe_V = mkV "chafe" "chafes" "chafed" "chafed" "chafing"; -- from DictEng -lin chafe_V2 = mkV2 (mkV "chafe" "chafes" "chafed" "chafed" "chafing"); -- from DictEng -lin chafed_A = mkA "chafed" ; -lin chafeweed_N = mkN "chafeweed" ; -lin chaff_N = mkN "chaff" ; -- from DictEng -lin chaff_V2 = mkV2 (mkV "chaff" "chaffs" "chaffed" "chaffed" "chaffing"); -- from DictEng -lin chaffinch_N = mkN "chaffinch" "chaffinches"; -- from DictEng -lin chaffweed_N = mkN "chaffweed" ; -lin chaffy_A = mkA "chaffy" ; -lin chafing_N = mkN "chafing" ; -lin chafing_dish_N = mkN "chafing dish" "chafing dishes"; -- from DictEng -lin chagrin_N = mkN "chagrin" ; -- from DictEng -lin chagrin_V2 = mkV2 (mkV "chagrin" "chagrins" "chagrined" "chagrined" "chagrining"); -- from DictEng -lin chain_N = mkN "chain" "chains"; -- from DictEng -lin chain_V2 = mkV2 (mkV "chain" "chains" "chained" "chained" "chaining"); -- from DictEng -lin chain_smoker_N = mkN "chain - smoker" "chain - smokers"; -- from DictEng -lin chain_armour_N = mkN "chain - armour" ; -- from DictEng -lin chain_gang_N = mkN "chain - gang" "chain - gangs"; -- from DictEng -lin chain_letter_N = mkN "chain - letter" "chain - letters"; -- from DictEng -lin chain_mail_N = mkN "chain - mail" ; -- from DictEng -lin chain_smoker_N = mkN "chain - smoker" "chain - smokers"; -- from DictEng -lin chain_stitch_N = mkN "chain - stitch" "chain - stitches"; -- from DictEng -lin chain_store_N = mkN "chain - store" "chain - stores"; -- from DictEng -lin chained_A = mkA "chained" ; -lin chair_N = mkN "chair" "chairs"; -- from DictEng -lin chair_V2 = mkV2 (mkV "chair" "chairs" "chaired" "chaired" "chairing"); -- from DictEng -lin chair_lift_N = mkN "chair - lift" "chair - lifts"; -- from DictEng -lin chairlift_N = mkN "chairlift" ; -lin chairman_N = mkN "chairman" "chairmen" {- FIXME: guessed plural form -}; -- from DictEng -lin chairmanship_N = mkN "chairmanship" ; -- from DictEng -lin chaise_N = mkN "chaise" "chaises"; -- from DictEng -lin chaise_longue_N = mkN "chaise longue" "chaise longues"; -- from DictEng -lin chaja_N = mkN "chaja" ; -lin chalaza_N = mkN "chalaza" ; -lin chalazion_N = mkN "chalazion" ; -lin chalcedony_N = mkN "chalcedony" ; -lin chalcocite_N = mkN "chalcocite" ; -lin chalcopyrite_N = mkN "chalcopyrite" ; -lin chaldron_N = mkN "chaldron" ; -lin chalet_N = mkN "chalet" "chalets"; -- from DictEng -lin chalice_N = mkN "chalice" "chalices"; -- from DictEng -lin chalk_N = mkN "chalk" "chalks"; -- from DictEng -lin chalk_V = mkV "chalk" ; -lin chalk_V2 = mkV2 (mkV "chalk" "chalks" "chalked" "chalked" "chalking"); -- from DictEng -lin chalkpit_N = mkN "chalkpit" "chalkpits"; -- from DictEng -lin chalky_A = mkA "chalky" "chalkier"; -- from DictEng -lin challah_N = mkN "challah" ; -lin challenge_N = mkN "challenge" "challenges"; -- from DictEng -lin challenge_V = mkV "challenge"; -- from DictEng -lin challenge_V2 = mkV2 (mkV "challenge" "challenges" "challenged" "challenged" "challenging"); -- from DictEng -lin challengeable_A = mkA "challengeable" ; -lin challenger_N = mkN "challenger" "challengers"; -- from DictEng -lin challenging_A = mkA "challenging" ; -lin challis_N = mkN "challis" ; -lin chalybeate_A = mkA "chalybeate" ; -lin chamber_N = mkN "chamber" "chambers"; -- from DictEng -lin chambered_A = mkA "chambered" ; -lin chamberlain_N = mkN "chamberlain" "chamberlains"; -- from DictEng -lin chambermaid_N = mkN "chambermaid" "chambermaids"; -- from DictEng -lin chamberpot_N = mkN "chamberpot" "chamberpots"; -- from DictEng -lin chambray_N = mkN "chambray" ; -lin chameleon_N = mkN "chameleon" "chameleons"; -- from DictEng -lin chammy_leather_N = mkN "chammy - leather" "chammy - leathers"; -- from DictEng -lin chamois_N = mkN "chamois" "chamoises"; -- from DictEng -lin chamois_leather_N = mkN "chamois - leather" "chamois - leathers"; -- from DictEng -lin chamomile_N = mkN "chamomile" ; -lin chamosite_N = mkN "chamosite" ; -lin champ_N = mkN "champ" "champs"; -- from DictEng -lin champ_V = mkV "champ" "champs" "champed" "champed" "champing"; -- from DictEng -lin champ_V2 = mkV2 (mkV "champ" "champs" "champed" "champed" "champing"); -- from DictEng -lin champagne_N = mkN "champagne" "champagnes"; -- from DictEng -lin champerty_N = mkN "champerty" ; -lin champion_A = compoundA (mkA "champion"); -- from DictEng -lin champion_Adv = mkAdv "champion"; -- from DictEng -lin champion_N = mkN "champion" "champions"; -- from DictEng -lin champion_V2 = mkV2 (mkV "champion" "champions" "championed" "championed" "championing"); -- from DictEng -lin championship_N = mkN "championship" "championships"; -- from DictEng -lin champleve_A = mkA "champleve" ; -lin chanar_N = mkN "chanar" ; -lin chance_N = mkN "chance" "chances"; -- from DictEng -lin chance_V = mkV "chance" "chances" "chanced" "chanced" "chancing"; -- from DictEng -lin chance_V2 = mkV2 (mkV "chance" "chances" "chanced" "chanced" "chancing"); -- from DictEng -lin chance_VS = mkVS (mkV "chance" "chances" "chanced" "chanced" "chancing"); -- from DictEng -lin chance_medley_N = mkN "chance medley" ; -lin chancel_N = mkN "chancel" "chancels"; -- from DictEng -lin chancellery_N = mkN "chancellery" "chancelleries"; -- from DictEng -lin chancellor_N = mkN "chancellor" "chancellors"; -- from DictEng -lin chancellorship_N = mkN "chancellorship" ; -lin chancery_N = mkN "chancery" "chanceries"; -- from DictEng -lin chancre_N = mkN "chancre" ; -lin chancroid_N = mkN "chancroid" ; -lin chancroidal_A = mkA "chancroidal" ; -lin chancrous_A = mkA "chancrous" ; -lin chancy_A = compoundA (mkA "chancy"); -- from DictEng -lin chandelier_N = mkN "chandelier" "chandeliers"; -- from DictEng -lin chandelle_N = mkN "chandelle" ; -lin chandler_N = mkN "chandler" "chandlers"; -- from DictEng -lin chandlery_N = mkN "chandlery" ; -lin chanfron_N = mkN "chanfron" ; -lin change_N = mkN "change" "changes"; -- from DictEng -lin change_V = mkV "change" "changes" "changed" "changed" "changing"; -- from DictEng -lin change_V2 = mkV2 (mkV "change" "changes" "changed" "changed" "changing"); -- from DictEng -lin change_up_N = mkN "change up" ; -lin changeable_A = compoundA (mkA "changeable"); -- from DictEng -lin changeableness_N = mkN "changeableness" ; -- from DictEng -lin changed_A = mkA "changed" ; -lin changeful_A = compoundA (mkA "changeful"); -- from DictEng -lin changeless_A = compoundA (mkA "changeless"); -- from DictEng -lin changelessness_N = mkN "changelessness" ; -lin changeling_N = mkN "changeling" "changelings"; -- from DictEng -lin changeover_N = mkN "changeover" "changeovers"; -- from DictEng -lin changer_N = mkN "changer" ; -lin changing_A = mkA "changing" ; -lin channel_N = mkN "channel" "channels"; -- from DictEng -lin channel_V2 = mkV2 (mkV "channel" "channels" "channelled" "channelled" "channelling"); -- from DictEng -lin channelization_N = mkN "channelization" ; -lin channels_N = mkN "channels" ; -lin chant_N = mkN "chant" "chants"; -- from DictEng -lin chant_V = mkV "chant" "chants" "chanted" "chanted" "chanting"; -- from DictEng -lin chant_V2 = mkV2 (mkV "chant" "chants" "chanted" "chanted" "chanting"); -- from DictEng -lin chanted_A = mkA "chanted" ; -lin chanter_N = mkN "chanter" ; -lin chanterelle_N = mkN "chanterelle" ; -lin chantey_N = mkN "chantey" ; -lin chantlike_A = mkA "chantlike" ; -lin chantry_N = mkN "chantry" ; -lin chaos_N = mkN "chaos" ; -- from DictEng -lin chaotic_A = compoundA (mkA "chaotic"); -- from DictEng -lin chaotically_Adv = mkAdv "chaotically"; -- from DictEng -lin chap_N = mkN "chap" "chaps"; -- from DictEng -lin chap_V = mkV "chap" "chaps" "chapped" "chapped" "chapping"; -- from DictEng -lin chap_V2 = mkV2 (mkV "chap" "chaps" "chapped" "chapped" "chapping"); -- from DictEng -lin chapatti_N = mkN "chapatti" ; -lin chapel_N = mkN "chapel" "chapels"; -- from DictEng -lin chapelgoer_N = mkN "chapelgoer" "chapelgoers"; -- from DictEng -lin chaperon_N = mkN "chaperon" "chaperons"; -- from DictEng -lin chaperon_V2 = mkV2 (mkV "chaperon" "chaperons" "chaperoned" "chaperoned" "chaperoning"); -- from DictEng -lin chapfallen_A = compoundA (mkA "chapfallen"); -- from DictEng -lin chaplain_N = mkN "chaplain" "chaplains"; -- from DictEng -lin chaplaincy_N = mkN "chaplaincy" "chaplaincies"; -- from DictEng -lin chaplet_N = mkN "chaplet" "chaplets"; -- from DictEng -lin chapleted_A = mkA "chapleted" ; -lin chapman_N = mkN "chapman" "chapmen" {- FIXME: guessed plural form -}; -- from DictEng -lin chapped_A = mkA "chapped" ; -lin chapter_N = mkN "chapter" "chapters"; -- from DictEng -lin chapterhouse_N = mkN "chapterhouse" "chapterhouses"; -- from DictEng -lin char_N = mkN "char" "chars"; -- from DictEng -lin char_V = mkV "char" "chars" "charred" "charred" "charring"; -- from DictEng -lin char_V2 = mkV2 (mkV "char" "chars" "charred" "charred" "charring"); -- from DictEng -lin charabanc_1_N = mkN "charabanc" "charabancs"; -- from DictEng -lin charabanc_2_N = mkN "charàbanc" "charàbancs"; -- from DictEng -lin characin_N = mkN "characin" ; -lin character_N = mkN "character" "characters"; -- from DictEng -lin characteristic_A = compoundA (mkA "characteristic"); -- from DictEng -lin characteristic_N = mkN "characteristic" "characteristics"; -- from DictEng -lin characteristically_Adv = mkAdv "characteristically"; -- from DictEng -lin characterization_N = mkN "characterization" ; -- from DictEng -lin characterize_V2 = mkV2 (mkV "characterize" "characterizes" "characterized" "characterized" "characterizing"); -- from DictEng -lin characterless_A = compoundA (mkA "characterless"); -- from DictEng -lin charade_N = mkN "charade" "charades"; -- from DictEng -lin charades_N = mkN "charades" ; -lin charcoal_A = mkA "charcoal" ; -lin charcoal_N = mkN "charcoal" ; -- from DictEng -lin charcoal_V = mkV "charcoal" ; -lin charcoal_V2 = mkV2 (mkV "charcoal") ; -lin charcoal_burner_N = mkN "charcoal - burner" "charcoal - burners"; -- from DictEng -lin charcuterie_N = mkN "charcuterie" ; -lin chard_N = mkN "chard" "chards"; -- from DictEng -lin charge_N = mkN "charge" "charges"; -- from DictEng -lin charge_V = mkV "charge" "charges" "charged" "charged" "charging"; -- from DictEng -lin charge_V2 = mkV2 (mkV "charge" "charges" "charged" "charged" "charging"); -- from DictEng -lin charge_VS = mkVS (mkV "charge" "charges" "charged" "charged" "charging"); -- from DictEng -lin charge_account_N = mkN "charge - account" "charge - accounts"; -- from DictEng -lin charge_d'affaires_N = mkN "chargé d'affaires" "IRREG"; -- from DictEng -lin charge_sheet_N = mkN "charge - sheet" "charge - sheets"; -- from DictEng -lin chargeable_A = compoundA (mkA "chargeable"); -- from DictEng -lin charged_A = mkA "charged" ; -lin charger_N = mkN "charger" "chargers"; -- from DictEng -lin charily_Adv = mkAdv "charily" ; -lin chariot_N = mkN "chariot" "chariots"; -- from DictEng -lin chariot_V2 = mkV2 (mkV "chariot") ; -lin charioteer_N = mkN "charioteer" "charioteers"; -- from DictEng -lin charisma_N = mkN "charisma" "charismas"; -- from DictEng -lin charismatic_A = compoundA (mkA "charismatic"); -- from DictEng -lin charitable_A = compoundA (mkA "charitable"); -- from DictEng -lin charitableness_N = mkN "charitableness" ; -lin charitably_Adv = mkAdv "charitably" ; -lin charity_N = mkN "charity" "charities"; -- from DictEng -lin charivari_N = mkN "charivari" ; -- from DictEng -lin charlady_N = mkN "charlady" "charladies"; -- from DictEng -lin charlatan_N = mkN "charlatan" "charlatans"; -- from DictEng -lin charlatanism_N = mkN "charlatanism" ; -lin charleston_N = mkN "charleston" "charlestons"; -- from DictEng -lin charlock_N = mkN "charlock" ; -- from DictEng -lin charlotte_N = mkN "charlotte" ; -lin charm_N = mkN "charm" "charms"; -- from DictEng -lin charm_V = mkV "charm" "charms" "charmed" "charmed" "charming"; -- from DictEng -lin charm_V2 = mkV2 (mkV "charm" "charms" "charmed" "charmed" "charming"); -- from DictEng -lin charmer_N = mkN "charmer" "charmers"; -- from DictEng -lin charming_A = compoundA (mkA "charming"); -- from DictEng -lin charmingly_Adv = mkAdv "charmingly" ; -lin charnel_A = mkA "charnel" ; -lin charnel_house_N = mkN "charnel house" "charnel houses"; -- from DictEng -lin chart_N = mkN "chart" "charts"; -- from DictEng -lin chart_V2 = mkV2 (mkV "chart" "charts" "charted" "charted" "charting"); -- from DictEng -lin chartaceous_A = mkA "chartaceous" ; -lin charter_N = mkN "charter" "charters"; -- from DictEng -lin charter_V2 = mkV2 (mkV "charter" "charters" "chartered" "chartered" "chartering"); -- from DictEng -lin charter_party_N = mkN "charter - party" "charter - parties"; -- from DictEng -lin chartered_A = mkA "chartered" ; -lin charterhouse_N = mkN "charterhouse" ; -lin chartism_N = mkN "chartism" ; -- from DictEng -lin chartist_N = mkN "chartist" "chartists"; -- from DictEng -lin chartless_A = mkA "chartless" ; -lin chartreuse_A = mkA "chartreuse" ; -lin chartreuse_N = mkN "chartreuse" ; -- from DictEng -lin charwoman_N = mkN "charwoman" "charwomen" {- FIXME: guessed plural form -}; -- from DictEng -lin chary_A = compoundA (mkA "chary"); -- from DictEng -lin chase_N = mkN "chase" "chases"; -- from DictEng -lin chase_V = mkV "chase" "chases" "chased" "chased" "chasing"; -- from DictEng -lin chase_V2 = mkV2 (mkV "chase" "chases" "chased" "chased" "chasing"); -- from DictEng -lin chaser_N = mkN "chaser" "chasers"; -- from DictEng -lin chasm_N = mkN "chasm" "chasms"; -- from DictEng -lin chasse_N = mkN "chasse" ; -lin chassis_N = mkN "chassis" "chassis"; -- from DictEng -lin chaste_A = compoundA (mkA "chaste"); -- from DictEng -lin chastely_Adv = mkAdv "chastely" ; -lin chasten_V2 = mkV2 (mkV "chasten" "chastens" "chastened" "chastened" "chastening"); -- from DictEng -lin chasteness_N = mkN "chasteness" ; -lin chastise_V2 = mkV2 (mkV "chastise" "chastises" "chastised" "chastised" "chastising"); -- from DictEng -lin chastisement_N = mkN "chastisement" ; -- from DictEng -lin chastity_N = mkN "chastity" ; -- from DictEng -lin chasuble_N = mkN "chasuble" "chasubles"; -- from DictEng -lin chat_N = mkN "chat" "chats"; -- from DictEng -lin chat_V = mkV "chat" "chats" "chatted" "chatted" "chatting"; -- from DictEng -lin chat_V2 = mkV2 (mkV "chat" "chats" "chatted" "chatted" "chatting"); -- from DictEng -lin chateau_N = mkN "château" "châteaux" {- FIXME: guessed plural form -}; -- from DictEng -lin chatelaine_N = mkN "chatelaine" "chatelaines"; -- from DictEng -lin chattel_N = mkN "chattel" "chattels"; -- from DictEng -lin chatter_N = mkN "chatter" ; -- from DictEng -lin chatter_V = mkV "chatter" "chatters" "chattered" "chattered" "chattering"; -- from DictEng -lin chatter_V2 = mkV2 (mkV "chatter") ; -lin chatterbox_N = mkN "chatterbox" "chatterboxes"; -- from DictEng -lin chatterer_N = mkN "chatterer" ; -lin chattily_Adv = mkAdv "chattily"; -- from DictEng -lin chatty_A = mkA "chatty" "chattier"; -- from DictEng -lin chauffeur_N = mkN "chauffeur" "chauffeurs"; -- from DictEng -lin chauffeur_V2 = mkV2 (mkV "chauffeur"); -- from DictEng -lin chauffeuse_N = mkN "chauffeuse" "IRREG"; -- from DictEng -lin chaulmoogra_N = mkN "chaulmoogra" ; -lin chauvinism_N = mkN "chauvinism" ; -- from DictEng -lin chauvinist_N = mkN "chauvinist" "chauvinists"; -- from DictEng -lin chauvinistic_A = compoundA (mkA "chauvinistic"); -- from DictEng -lin chaw_N = mkN "chaw" "chaws"; -- from DictEng -lin chaw_V2 = mkV2 (mkV "chaw" "chaws" "chawed" "chawed" "chawing"); -- from DictEng -lin chaw_bacon_N = mkN "chaw - bacon" "chaw - bacons"; -- from DictEng -lin cheap_A = mkA "cheap" "cheaper"; -- from DictEng -lin cheapen_V = mkV "cheapen" "cheapens" "cheapened" "cheapened" "cheapening"; -- from DictEng -lin cheapen_V2 = mkV2 (mkV "cheapen" "cheapens" "cheapened" "cheapened" "cheapening"); -- from DictEng -lin cheapjack_A = compoundA (mkA "cheapjack"); -- from DictEng -lin cheapjack_N = mkN "cheapjack" ; -lin cheaply_Adv = mkAdv "cheaply" ; -lin cheapness_N = mkN "cheapness" ; -- from DictEng -lin cheapskate_N = mkN "cheapskate" ; -lin cheat_N = mkN "cheat" "cheats"; -- from DictEng -lin cheat_V = mkV "cheat" "cheats" "cheated" "cheated" "cheating"; -- from DictEng -lin cheat_V2 = mkV2 (mkV "cheat" "cheats" "cheated" "cheated" "cheating"); -- from DictEng -lin cheating_A = mkA "cheating" ; -lin chebab_N = mkN "chebab" ; -lin check_N = mkN "check" "checks"; -- from DictEng -lin check_V = mkV "check" "checks" "checked" "checked" "checking"; -- from DictEng -lin check_V2 = mkV2 (mkV "check" "checks" "checked" "checked" "checking"); -- from DictEng -lin check_in_N = mkN "check in" ; -lin checkbook_N = mkN "checkbook" "checkbooks"; -- from DictEng -lin checked_A = compoundA (mkA "checked"); -- from DictEng -lin checker_N = mkN "checker" "checkers"; -- from DictEng -lin checker_V2 = mkV2 (mkV "checker" "checkers" "checkered" "checkered" "checkering"); -- from DictEng -lin checkerbloom_N = mkN "checkerbloom" ; -lin checkerboard_N = mkN "checkerboard" ; -lin checkered_A = mkA "checkered" ; -lin checkers_N = mkN "checkers" "checkers"; -- from DictEng -lin checklist_N = mkN "checklist" "checklists"; -- from DictEng -lin checkmate_N = mkN "checkmate" "checkmates"; -- from DictEng -lin checkmate_V2 = mkV2 (mkV "checkmate" "checkmates" "checkmated" "checkmated" "checkmating"); -- from DictEng -lin checkout_N = mkN "checkout" "checkouts"; -- from DictEng -lin checkpoint_N = mkN "checkpoint" "checkpoints"; -- from DictEng -lin checkroom_N = mkN "checkroom" "checkrooms"; -- from DictEng -lin checksum_N = mkN "checksum" ; -lin checkup_N = mkN "checkup" "checkups"; -- from DictEng -lin cheddar_N = mkN "cheddar" ; -- from DictEng -lin cheek_N = mkN "cheek" "cheeks"; -- from DictEng -lin cheek_V2 = mkV2 (mkV "cheek" "cheeks" "cheeked" "cheeked" "cheeking"); -- from DictEng -lin cheek_by_jowl_Adv = mkAdv "cheek by jowl" ; -lin cheekbone_N = mkN "cheekbone" "cheekbones"; -- from DictEng -lin cheeked_A = compoundA (mkA "cheeked"); -- from DictEng -lin cheekily_Adv = mkAdv "cheekily"; -- from DictEng -lin cheekpiece_N = mkN "cheekpiece" ; -lin cheeky_A = mkA "cheeky" "cheekier"; -- from DictEng -lin cheep_N = mkN "cheep" "cheeps"; -- from DictEng -lin cheep_V = mkV "cheep" "cheeps" "cheeped" "cheeped" "cheeping"; -- from DictEng -lin cheer_N = mkN "cheer" "cheers"; -- from DictEng -lin cheer_V = mkV "cheer" "cheers" "cheered" "cheered" "cheering"; -- from DictEng -lin cheer_V2 = mkV2 (mkV "cheer" "cheers" "cheered" "cheered" "cheering"); -- from DictEng -lin cheerer_N = mkN "cheerer" ; -lin cheerful_A = compoundA (mkA "cheerful"); -- from DictEng -lin cheerfully_Adv = mkAdv "cheerfully" ; -lin cheerfulness_N = mkN "cheerfulness" ; -- from DictEng -lin cheering_A = compoundA (mkA "cheering"); -- from DictEng -lin cheering_N = mkN "cheering" ; -- from DictEng -lin cheerleader_N = mkN "cheerleader" "cheerleaders"; -- from DictEng -lin cheerless_A = compoundA (mkA "cheerless"); -- from DictEng -lin cheerlessly_Adv = mkAdv "cheerlessly" ; -lin cheerlessness_N = mkN "cheerlessness" ; -- from DictEng -lin cheery_A = compoundA (mkA "cheery"); -- from DictEng -lin cheese_N = mkN "cheese" "cheeses"; -- from DictEng -lin cheeseboard_N = mkN "cheeseboard" ; -lin cheeseburger_N = mkN "cheeseburger" ; -lin cheesecake_N = mkN "cheesecake" "cheesecakes"; -- from DictEng -lin cheesecloth_N = mkN "cheesecloth" "cheesecloths"; -- from DictEng -lin cheeselike_A = mkA "cheeselike" ; -lin cheesemonger_N = mkN "cheesemonger" ; -lin cheeseparing_A = compoundA (mkA "cheeseparing"); -- from DictEng -lin cheetah_N = mkN "cheetah" "cheetahs"; -- from DictEng -lin chef_N = mkN "chef" "chefs"; -- from DictEng -lin chef_d'oeuvre_N = mkN "chef - d'oeuvre" "chefs - d'oeuvre"; -- from DictEng -lin cheilitis_N = mkN "cheilitis" ; -lin cheilosis_N = mkN "cheilosis" ; -lin chela_N = mkN "chela" ; -lin chelate_A = mkA "chelate" ; -lin chelate_N = mkN "chelate" ; -lin chelation_N = mkN "chelation" ; -lin chelicera_N = mkN "chelicera" ; -lin cheliceral_A = mkA "cheliceral" ; -lin chelicerous_A = mkA "chelicerous" ; -lin cheliferous_A = mkA "cheliferous" ; -lin chelonian_A = mkA "chelonian" ; -lin chelonian_N = mkN "chelonian" ; -lin chemical_A = compoundA (mkA "chemical"); -- from DictEng -lin chemical_N = mkN "chemical" "chemicals"; -- from DictEng -lin chemically_Adv = mkAdv "chemically" ; -lin chemiluminescence_N = mkN "chemiluminescence" ; -lin chemiluminescent_A = mkA "chemiluminescent" ; -lin chemise_N = mkN "chemise" "chemises"; -- from DictEng -lin chemisorption_N = mkN "chemisorption" ; -lin chemisorptive_A = mkA "chemisorptive" ; -lin chemist_N = mkN "chemist" "chemists"; -- from DictEng -lin chemistry_N = mkN "chemistry" ; -- from DictEng -lin chemoreceptive_A = mkA "chemoreceptive" ; -lin chemoreceptor_N = mkN "chemoreceptor" ; -lin chemosis_N = mkN "chemosis" ; -lin chemosurgery_N = mkN "chemosurgery" ; -lin chemosynthesis_N = mkN "chemosynthesis" ; -lin chemotaxis_N = mkN "chemotaxis" ; -lin chemotherapeutic_A = mkA "chemotherapeutic" ; -lin chemotherapy_N = mkN "chemotherapy" ; -- from DictEng -lin chenille_N = mkN "chenille" ; -- from DictEng -lin cheque_N = mkN "cheque" "cheques"; -- from DictEng -lin chequebook_N = mkN "chequebook" "chequebooks"; -- from DictEng -lin chequer_V2 = mkV2 (mkV "chequer" "chequers" "chequered" "chequered" "chequering"); -- from DictEng -lin cherimoya_N = mkN "cherimoya" ; -lin cherish_V2 = mkV2 (mkV "cherish" "cherishes" "cherished" "cherished" "cherishing"); -- from DictEng -lin cherished_A = mkA "cherished" ; -lin cheroot_N = mkN "cheroot" "cheroots"; -- from DictEng -lin cherry_A = compoundA (mkA "cherry"); -- from DictEng -lin cherry_N = mkN "cherry" "cherries"; -- from DictEng -lin cherry_sized_A = compoundA (mkA "cherry sized") ; -lin cherrystone_N = mkN "cherrystone" ; -lin chert_N = mkN "chert" ; -lin cherty_A = mkA "cherty" ; -lin cherub_N = mkN "cherub" "cherubs"; -- from DictEng -lin cherubic_A = compoundA (mkA "cherubic"); -- from DictEng -lin chervil_N = mkN "chervil" ; -- from DictEng -lin chess_N = mkN "chess" ; -- from DictEng -lin chessboard_N = mkN "chessboard" "chessboards"; -- from DictEng -lin chessman_N = mkN "chessman" "chessmen" {- FIXME: guessed plural form -}; -- from DictEng -lin chest_N = mkN "chest" "chests"; -- from DictEng -lin chesterfield_N = mkN "chesterfield" "chesterfields"; -- from DictEng -lin chestnut_A = mkA "chestnut" ; -lin chestnut_N = mkN "chestnut" "chestnuts"; -- from DictEng -lin chestnut_brown_A = compoundA (mkA "chestnut brown") ; -lin chestnut_colored_A = compoundA (mkA "chestnut colored") ; -lin chetrum_N = mkN "chetrum" ; -lin cheval_de_frise_N = mkN "cheval de frise" ; -lin cheval_glass_N = mkN "cheval glass" "cheval glasses"; -- from DictEng -lin chevron_N = mkN "chevron" "chevrons"; -- from DictEng -lin chevrotain_N = mkN "chevrotain" ; -lin chew_N = mkN "chew" "chews"; -- from DictEng -lin chew_V = mkV "chew" "chews" "chewed" "chewed" "chewing"; -- from DictEng -lin chew_V2 = mkV2 (mkV "chew" "chews" "chewed" "chewed" "chewing"); -- from DictEng -lin chewable_A = mkA "chewable" ; -lin chewer_N = mkN "chewer" ; -lin chewing_gum_N = mkN "chewing - gum" ; -- from DictEng -lin chewink_N = mkN "chewink" ; -lin chewy_A = mkA "chewy" ; -lin chi_N = mkN "chi" ; -lin chianti_N = mkN "chianti" ; -- from DictEng -lin chiaroscuro_N = mkN "chiaroscuro" ; -- from DictEng -lin chiasma_N = mkN "chiasma" ; -lin chiasmal_A = mkA "chiasmal" ; -lin chiasmus_N = mkN "chiasmus" ; -lin chic_A = compoundA (mkA "chic"); -- from DictEng -lin chic_N = mkN "chic" ; -- from DictEng -lin chicane_N = mkN "chicane" ; -lin chicanery_N = mkN "chicanery" "chicaneries"; -- from DictEng -lin chichi_A = compoundA (mkA "chichi"); -- from DictEng -lin chichi_N = mkN "chichi" ; -lin chichipe_N = mkN "chichipe" ; -lin chick_N = mkN "chick" "chicks"; -- from DictEng -lin chickadee_N = mkN "chickadee" ; -lin chicken_A = mkA "chicken" ; -lin chicken_N = mkN "chicken" "chickens"; -- from DictEng -lin chicken_kiev_PN = mkPN "chicken Kiev" ; -lin chicken_marengo_PN = mkPN "chicken Marengo" ; -lin chicken_tetrazzini_PN = mkPN "chicken Tetrazzini" ; -lin chicken_hearted_A = compoundA (mkA "chicken - hearted"); -- from DictEng -lin chicken_run_N = mkN "chicken - run" "chicken - runs"; -- from DictEng -lin chickenfeed_N = mkN "chickenfeed" ; -- from DictEng -lin chickenpox_N = mkN "chickenpox" ; -- from DictEng -lin chickenshit_N = mkN "chickenshit" ; -lin chickeree_N = mkN "chickeree" ; -lin chickpea_N = mkN "chickpea" "chickpeas"; -- from DictEng -lin chickweed_N = mkN "chickweed" ; -- from DictEng -lin chicle_N = mkN "chicle" ; -- from DictEng -lin chicory_N = mkN "chicory" ; -- from DictEng -lin chide_V = mkV "chide" "chides" "chided" "chided" "chiding"; -- from DictEng -lin chide_V2 = mkV2 (mkV "chide" "chides" "chided" "chided" "chiding"); -- from DictEng -lin chiding_N = mkN "chiding" ; -lin chief_A = compoundA (mkA "chief"); -- from DictEng -lin chief_N = mkN "chief" "chiefs"; -- from DictEng -lin chiefly_Adv = mkAdv "chiefly" ; -lin chieftain_N = mkN "chieftain" "chieftains"; -- from DictEng -lin chieftaincy_N = mkN "chieftaincy" "chieftaincies"; -- from DictEng -lin chiffon_N = mkN "chiffon" ; -- from DictEng -lin chiffonier_N = mkN "chiffonier" "chiffoniers"; -- from DictEng -lin chigetai_N = mkN "chigetai" ; -lin chignon_N = mkN "chignon" "chignons"; -- from DictEng -lin chigoe_N = mkN "chigoe" ; -lin chilblain_N = mkN "chilblain" "chilblains"; -- from DictEng -lin chilblained_A = compoundA (mkA "chilblained"); -- from DictEng -lin child_N = mkN "child" "children" {- FIXME: guessed plural form -}; -- from DictEng -lin child's_play_N = mkN "child's - play" ; -- from DictEng -lin child_centered_A = compoundA (mkA "child centered") ; -lin child_bearing_N = mkN "child - bearing" ; -- from DictEng -lin childbearing_A = mkA "childbearing" ; -lin childbirth_N = mkN "childbirth" ; -- from DictEng -lin childcare_N = mkN "childcare" ; -lin childhood_N = mkN "childhood" ; -- from DictEng -lin childish_A = compoundA (mkA "childish"); -- from DictEng -lin childishly_Adv = mkAdv "childishly" ; -lin childishness_N = mkN "childishness" ; -lin childless_A = compoundA (mkA "childless"); -- from DictEng -lin childlessness_N = mkN "childlessness" ; -lin childlike_A = compoundA (mkA "childlike"); -- from DictEng -lin chilean_A = compoundA (mkA "chilean"); -- from DictEng -lin chilean_N = mkN "chilean" "chileans"; -- from DictEng -lin chili_N = mkN "chili" ; -lin chill_A = compoundA (mkA "chill"); -- from DictEng -lin chill_N = mkN "chill" "chills"; -- from DictEng -lin chill_V = mkV "chill" "chills" "chilled" "chilled" "chilling"; -- from DictEng -lin chill_V2 = mkV2 (mkV "chill" "chills" "chilled" "chilled" "chilling"); -- from DictEng -lin chilli_N = mkN "chilli" "chillies"; -- from DictEng -lin chilliness_N = mkN "chilliness" ; -lin chilling_A = mkA "chilling" ; -lin chilly_A = mkA "chilly" "chillier"; -- from DictEng -lin chilly_N = mkN "chilly" "chillies"; -- from DictEng -lin chimaera_N = mkN "chimaera" "chimaeras"; -- from DictEng -lin chime_N = mkN "chime" "chimes"; -- from DictEng -lin chime_V = mkV "chime" "chimes" "chimed" "chimed" "chiming"; -- from DictEng -lin chime_V2 = mkV2 (mkV "chime" "chimes" "chimed" "chimed" "chiming"); -- from DictEng -lin chimera_N = mkN "chimera" "chimeras"; -- from DictEng -lin chimeric_A = mkA "chimeric" ; -lin chimerical_A = compoundA (mkA "chimerical"); -- from DictEng -lin chimney_N = mkN "chimney" "chimneys"; -- from DictEng -lin chimney_sweep_N = mkN "chimney - sweep" "chimney - sweeps"; -- from DictEng -lin chimneybreast_N = mkN "chimneybreast" "chimneybreasts"; -- from DictEng -lin chimneypiece_N = mkN "chimneypiece" "chimneypieces"; -- from DictEng -lin chimneypot_N = mkN "chimneypot" "chimneypots"; -- from DictEng -lin chimneystack_N = mkN "chimneystack" "chimneystacks"; -- from DictEng -lin chimneysweep_N = mkN "chimneysweep" "chimneysweeps"; -- from DictEng -lin chimneysweeper_N = mkN "chimneysweeper" "chimneysweepers"; -- from DictEng -lin chimp_N = mkN "chimp" "chimps"; -- from DictEng -lin chimpanzee_N = mkN "chimpanzee" "chimpanzees"; -- from DictEng -lin chin_N = mkN "chin" "chins"; -- from DictEng -lin chin_strap_N = mkN "chin - strap" "chin - straps"; -- from DictEng -lin chin_wagging_N = mkN "chin - wagging" ; -- from DictEng -lin china_N = mkN "china" ; -- from DictEng -lin china_closet_N = mkN "china - closet" "china - closets"; -- from DictEng -lin chinaberry_N = mkN "chinaberry" ; -lin chinaware_N = mkN "chinaware" ; -- from DictEng -lin chincapin_N = mkN "chincapin" ; -lin chincherinchee_N = mkN "chincherinchee" ; -lin chinchilla_N = mkN "chinchilla" "chinchillas"; -- from DictEng -lin chine_N = mkN "chine" "chines"; -- from DictEng -lin chinese_A = compoundA (mkA "Chinese"); -- from DictEng -lin chinese_N = mkN "Chinese" "Chinese"; -- from DictEng -lin chink_N = mkN "chink" "chinks"; -- from DictEng -lin chink_V = mkV "chink" "chinks" "chinked" "chinked" "chinking"; -- from DictEng -lin chink_V2 = mkV2 (mkV "chink" "chinks" "chinked" "chinked" "chinking"); -- from DictEng -lin chinked_A = mkA "chinked" ; -lin chinless_A = mkA "chinless" ; -lin chino_N = mkN "chino" ; -lin chinoiserie_N = mkN "chinoiserie" ; -lin chinook_N = mkN "chinook" ; -lin chintz_N = mkN "chintz" ; -- from DictEng -lin chip_N = mkN "chip" "chips"; -- from DictEng -lin chip_V = mkV "chip" "chips" "chipped" "chipped" "chipping"; -- from DictEng -lin chip_V2 = mkV2 (mkV "chip" "chips" "chipped" "chipped" "chipping"); -- from DictEng -lin chipboard_N = mkN "chipboard" ; -- from DictEng -lin chipmunk_N = mkN "chipmunk" "chipmunks"; -- from DictEng -lin chipolata_N = mkN "chipolata" ; -lin chipotle_N = mkN "chipotle" ; -lin chippendale_N = mkN "chippendale" "chippendales"; -- from DictEng -lin chipper_A = mkA "chipper" ; -lin chir_V = mkV "chir" ; -lin chir_V2 = mkV2 (mkV "chir") ; -lin chiralgia_N = mkN "chiralgia" ; -lin chiromantic_A = mkA "chiromantic" ; -lin chiropodist_N = mkN "chiropodist" "chiropodists"; -- from DictEng -lin chiropody_N = mkN "chiropody" ; -- from DictEng -lin chiropractic_N = mkN "chiropractic" ; -lin chiropractor_N = mkN "chiropractor" "chiropractors"; -- from DictEng -lin chirp_N = mkN "chirp" "chirps"; -- from DictEng -lin chirp_V = mkV "chirp" "chirps" "chirped" "chirped" "chirping"; -- from DictEng -lin chirp_V2 = mkV2 (mkV "chirp" "chirps" "chirped" "chirped" "chirping"); -- from DictEng -lin chirpiness_N = mkN "chirpiness" ; -- from DictEng -lin chirpy_A = compoundA (mkA "chirpy"); -- from DictEng -lin chirrup_N = mkN "chirrup" "chirrups"; -- from DictEng -lin chirrup_V = mkV "chirrup" "chirrups" "chirruped" "chirruped" "chirruping"; -- from DictEng -lin chirrup_V2 = mkV2 (mkV "chirrup" "chirrups" "chirruped" "chirruped" "chirruping"); -- from DictEng -lin chisel_N = mkN "chisel" "chisels"; -- from DictEng -lin chisel_V = mkV "chisel" ; -lin chisel_V2 = mkV2 (mkV "chisel" "chisels" "chiselled" "chiselled" "chiselling"); -- from DictEng -lin chisel_like_A = compoundA (mkA "chisel like") ; -lin chiseled_A = mkA "chiseled" ; -lin chiseller_N = mkN "chiseller" "chisellers"; -- from DictEng -lin chit_N = mkN "chit" "chits"; -- from DictEng -lin chit_chat_N = mkN "chit - chat" ; -- from DictEng -lin chitchat_N = mkN "chitchat" ; -lin chitchat_V = mkV "chitchat" ; -lin chitin_N = mkN "chitin" ; -lin chitinous_A = mkA "chitinous" ; -lin chiton_N = mkN "chiton" ; -lin chitter_V = mkV "chitter" ; -lin chitter_V2 = mkV2 (mkV "chitter") ; -lin chitterlings_N = mkN "chitterlings" ; -lin chivalric_A = mkA "chivalric" ; -lin chivalrous_A = compoundA (mkA "chivalrous"); -- from DictEng -lin chivalry_N = mkN "chivalry" ; -- from DictEng -lin chive_N = mkN "chive" "chives"; -- from DictEng -lin chives_N = mkN "chives" ; -lin chivvy_V2 = mkV2 (mkV "chivvy" "chivvies" "chivvied" "chivvied" "chivvying"); -- from DictEng -lin chivy_V2 = mkV2 (mkV "chivy" "chivies" "chivied" "chivied" "chivying"); -- from DictEng -lin chlamydeous_A = mkA "chlamydeous" ; -lin chlamydia_N = mkN "chlamydia" ; -lin chlamydial_A = mkA "chlamydial" ; -lin chlamydospore_N = mkN "chlamydospore" ; -lin chlamys_N = mkN "chlamys" ; -lin chloasma_N = mkN "chloasma" ; -lin chlorambucil_N = mkN "chlorambucil" ; -lin chloramine_N = mkN "chloramine" ; -lin chloramphenicol_N = mkN "chloramphenicol" ; -lin chlorate_N = mkN "chlorate" ; -lin chlordiazepoxide_N = mkN "chlordiazepoxide" ; -lin chlorella_N = mkN "chlorella" ; -lin chlorenchyma_N = mkN "chlorenchyma" ; -lin chlorhexidine_N = mkN "chlorhexidine" ; -lin chloride_N = mkN "chloride" ; -- from DictEng -lin chlorinate_V2 = mkV2 (mkV "chlorinate" "chlorinates" "chlorinated" "chlorinated" "chlorinating"); -- from DictEng -lin chlorination_N = mkN "chlorination" ; -- from DictEng -lin chlorine_N = mkN "chlorine" ; -- from DictEng -lin chlorinity_N = mkN "chlorinity" ; -lin chlorite_N = mkN "chlorite" ; -lin chloroacetophenone_N = mkN "chloroacetophenone" ; -lin chlorobenzene_N = mkN "chlorobenzene" ; -lin chlorobenzylidenemalononitrile_N = mkN "chlorobenzylidenemalononitrile" ; -lin chlorofluorocarbon_N = mkN "chlorofluorocarbon" ; -lin chloroform_N = mkN "chloroform" ; -- from DictEng -lin chlorophyll_N = mkN "chlorophyll" ; -- from DictEng -lin chlorophyllose_A = mkA "chlorophyllose" ; -lin chloropicrin_N = mkN "chloropicrin" ; -lin chloroplast_N = mkN "chloroplast" ; -lin chloroprene_N = mkN "chloroprene" ; -lin chloroquine_N = mkN "chloroquine" ; -lin chlorosis_N = mkN "chlorosis" ; -lin chlorothiazide_N = mkN "chlorothiazide" ; -lin chlorotic_A = mkA "chlorotic" ; -lin chlorpromazine_N = mkN "chlorpromazine" ; -lin chlorpyrifos_N = mkN "chlorpyrifos" ; -lin chlortetracycline_N = mkN "chlortetracycline" ; -lin chlorthalidone_N = mkN "chlorthalidone" ; -lin choanocyte_N = mkN "choanocyte" ; -lin choc_N = mkN "choc" "chocs"; -- from DictEng -lin choc_ice_N = mkN "choc - ice" "choc - ices"; -- from DictEng -lin choc_ice_N = mkN "choc - ice" "choc - ices"; -- from DictEng -lin chock_Adv = mkAdv "chock" ; -lin chock_N = mkN "chock" "chocks"; -- from DictEng -lin chock_V2 = mkV2 (mkV "chock" "chocks" "chocked" "chocked" "chocking"); -- from DictEng -lin chock_a_block_A = compoundA (mkA "chock - a - block"); -- from DictEng -lin chock_a_block_Adv = mkAdv "chock - a - block"; -- from DictEng -lin chock_full_A = compoundA (mkA "chock - full"); -- from DictEng -lin chockablock_A = mkA "chockablock" ; -lin chocolate_N = mkN "chocolate" "chocolates"; -- from DictEng -lin chocolate_colored_A = compoundA (mkA "chocolate colored") ; -lin choice_A = compoundA (mkA "choice"); -- from DictEng -lin choice_N = mkN "choice" "choices"; -- from DictEng -lin choir_N = mkN "choir" "choirs"; -- from DictEng -lin choir_school_N = mkN "choir - school" "choir - schools"; -- from DictEng -lin choirboy_N = mkN "choirboy" "choirboys"; -- from DictEng -lin choirmaster_N = mkN "choirmaster" ; -lin choke_N = mkN "choke" "chokes"; -- from DictEng -lin choke_V = mkV "choke" "chokes" "choked" "choked" "choking"; -- from DictEng -lin choke_V2 = mkV2 (mkV "choke" "chokes" "choked" "choked" "choking"); -- from DictEng -lin choke_damp_N = mkN "choke - damp" ; -- from DictEng -lin chokecherry_N = mkN "chokecherry" ; -lin choked_A = mkA "choked" ; -lin chokedamp_N = mkN "chokedamp" ; -lin chokehold_N = mkN "chokehold" ; -lin chokepoint_N = mkN "chokepoint" ; -lin choker_N = mkN "choker" "chokers"; -- from DictEng -lin chokey_N = mkN "chokey" "chokeys"; -- from DictEng -lin choking_N = mkN "choking" ; -lin choky_A = mkA "choky" ; -lin choky_N = mkN "choky" "chokies"; -- from DictEng -lin cholangiography_N = mkN "cholangiography" ; -lin cholangitis_N = mkN "cholangitis" ; -lin cholecystectomy_N = mkN "cholecystectomy" ; -lin cholecystitis_N = mkN "cholecystitis" ; -lin cholecystokinin_N = mkN "cholecystokinin" ; -lin cholelithiasis_N = mkN "cholelithiasis" ; -lin cholelithotomy_N = mkN "cholelithotomy" ; -lin choler_N = mkN "choler" "cholers"; -- from DictEng -lin cholera_N = mkN "cholera" ; -- from DictEng -lin choleraic_A = mkA "choleraic" ; -lin choleric_A = compoundA (mkA "choleric"); -- from DictEng -lin cholesterol_N = mkN "cholesterol" ; -lin choline_N = mkN "choline" ; -lin cholinergic_A = mkA "cholinergic" ; -lin cholinesterase_N = mkN "cholinesterase" ; -lin cholla_N = mkN "cholla" ; -lin chomping_N = mkN "chomping" ; -lin chon_N = mkN "chon" ; -lin chondrin_N = mkN "chondrin" ; -lin chondrite_N = mkN "chondrite" ; -lin chondritic_A = mkA "chondritic" ; -lin chondroma_N = mkN "chondroma" ; -lin chondrosarcoma_N = mkN "chondrosarcoma" ; -lin chondrule_N = mkN "chondrule" ; -lin choo_choo_N = mkN "choo choo" ; -lin choose_V = IrregEng.choose_V; -- from DictEng -lin choose_V2 = mkV2 (IrregEng.choose_V); -- from DictEng -lin choose_V2V = mkV2V (IrregEng.choose_V) noPrep to_Prep ; -- from DictEng -lin choose_VS = mkVS (IrregEng.choose_V); -- from DictEng -lin choose_VV = mkVV (IrregEng.choose_V) ; -- from DictEng -lin choosey_A = compoundA (mkA "choosey"); -- from DictEng -lin choosy_A = mkA "choosy" "choosier"; -- from DictEng -lin chop_N = mkN "chop" "chops"; -- from DictEng -lin chop_V = mkV "chop" "chops" "chopped" "chopped" "chopping"; -- from DictEng -lin chop_V2 = mkV2 (mkV "chop" "chops" "chopped" "chopped" "chopping"); -- from DictEng -lin chop_chop_Adv = mkAdv "chop - chop"; -- from DictEng -lin chop_house_N = mkN "chop - house" "chop - houses"; -- from DictEng -lin chop_suey_N = mkN "chop suey" ; -- from DictEng -lin chopine_N = mkN "chopine" ; -lin chopped_A = mkA "chopped" ; -lin chopper_N = mkN "chopper" "choppers"; -- from DictEng -lin choppiness_N = mkN "choppiness" ; -lin choppy_A = mkA "choppy" "choppier"; -- from DictEng -lin chopstick_N = mkN "chopstick" ; -lin choragic_A = mkA "choragic" ; -lin choragus_N = mkN "choragus" ; -lin choral_A = compoundA (mkA "choral"); -- from DictEng -lin chorale_N = mkN "chorale" "chorales"; -- from DictEng -lin chorally_Adv = mkAdv "chorally" ; -lin chord_N = mkN "chord" "chords"; -- from DictEng -lin chordal_A = mkA "chordal" ; -lin chordamesoderm_N = mkN "chordamesoderm" ; -lin chordate_A = mkA "chordate" ; -lin chordate_N = mkN "chordate" ; -lin chorditis_N = mkN "chorditis" ; -lin chordophone_N = mkN "chordophone" ; -lin chore_N = mkN "chore" "chores"; -- from DictEng -lin chorea_N = mkN "chorea" ; -lin choreographer_N = mkN "choreographer" "choreographers"; -- from DictEng -lin choreographic_A = mkA "choreographic" ; -lin choreography_N = mkN "choreography" ; -- from DictEng -lin choric_A = mkA "choric" ; -lin chorioallantois_N = mkN "chorioallantois" ; -lin choriomeningitis_N = mkN "choriomeningitis" ; -lin chorion_N = mkN "chorion" ; -lin chorionic_A = mkA "chorionic" ; -lin chorioretinitis_N = mkN "chorioretinitis" ; -lin chorister_N = mkN "chorister" "choristers"; -- from DictEng -lin chorizo_N = mkN "chorizo" ; -lin choroid_N = mkN "choroid" ; -lin chortle_N = mkN "chortle" "chortles"; -- from DictEng -lin chortle_V = mkV "chortle" "chortles" "chortled" "chortled" "chortling"; -- from DictEng -lin chortle_V2 = mkV2 (mkV "chortle") ; -lin chorus_N = mkN "chorus" "choruses"; -- from DictEng -lin chorus_V2 = mkV2 (mkV "chorus" "choruses" "chorused" "chorused" "chorusing"); -- from DictEng -lin chorus_girl_N = mkN "chorus - girl" "chorus - girls"; -- from DictEng -lin chosen_N = mkN "chosen" ; -lin chough_N = mkN "chough" ; -lin chow_N = mkN "chow" "chows"; -- from DictEng -lin chowchow_N = mkN "chowchow" ; -lin chowder_N = mkN "chowder" "chowders"; -- from DictEng -lin chrestomathy_N = mkN "chrestomathy" ; -lin chrism_N = mkN "chrism" ; -lin christella_N = mkN "christella" ; -lin christen_V2 = mkV2 (mkV "christen" "christens" "christened" "christened" "christening"); -- from DictEng -lin christendom_N = mkN "christendom" "christendoms"; -- from DictEng -lin christening_N = mkN "christening" "christenings"; -- from DictEng -lin christian_A = compoundA (mkA "christian"); -- from DictEng -lin christian_N = mkN "christian" "christians"; -- from DictEng -lin christianity_N = mkN "christianity" ; -- from DictEng -lin christianly_A = mkA "christianly" ; -lin christless_A = mkA "christless" ; -lin christlike_A = compoundA (mkA "christlike"); -- from DictEng -lin christmas_N = mkN "christmas" "christmases"; -- from DictEng -lin christmas_box_N = mkN "christmas - box" "christmas - boxes"; -- from DictEng -lin christmas_tree_N = mkN "christmas - tree" "christmas - trees"; -- from DictEng -lin christmastide_N = mkN "christmastide" "christmastides"; -- from DictEng -lin christmastime_N = mkN "christmastime" "christmastimes"; -- from DictEng -lin chromate_N = mkN "chromate" ; -lin chromatic_A = compoundA (mkA "chromatic"); -- from DictEng -lin chromatically_Adv = mkAdv "chromatically" ; -lin chromatid_N = mkN "chromatid" ; -lin chromatin_N = mkN "chromatin" ; -lin chromatinic_A = mkA "chromatinic" ; -lin chromatism_N = mkN "chromatism" ; -lin chromatogram_N = mkN "chromatogram" ; -lin chromatographic_A = mkA "chromatographic" ; -lin chromatographically_Adv = mkAdv "chromatographically" ; -lin chromatography_N = mkN "chromatography" ; -lin chrome_N = mkN "chrome" ; -- from DictEng -lin chromesthesia_N = mkN "chromesthesia" ; -lin chromite_N = mkN "chromite" ; -lin chromium_N = mkN "chromium" ; -- from DictEng -lin chromoblastomycosis_N = mkN "chromoblastomycosis" ; -lin chromogen_N = mkN "chromogen" ; -lin chromolithography_N = mkN "chromolithography" ; -lin chromophore_N = mkN "chromophore" ; -lin chromoplast_N = mkN "chromoplast" ; -lin chromosomal_A = mkA "chromosomal" ; -lin chromosome_N = mkN "chromosome" "chromosomes"; -- from DictEng -lin chromosphere_N = mkN "chromosphere" ; -lin chronic_A = compoundA (mkA "chronic"); -- from DictEng -lin chronically_Adv = mkAdv "chronically"; -- from DictEng -lin chronicle_N = mkN "chronicle" "chronicles"; -- from DictEng -lin chronicle_V2 = mkV2 (mkV "chronicle" "chronicles" "chronicled" "chronicled" "chronicling"); -- from DictEng -lin chronicler_N = mkN "chronicler" "chroniclers"; -- from DictEng -lin chronograph_N = mkN "chronograph" ; -lin chronological_A = compoundA (mkA "chronological"); -- from DictEng -lin chronologically_Adv = mkAdv "chronologically" ; -lin chronology_N = mkN "chronology" "chronologies"; -- from DictEng -lin chronometer_N = mkN "chronometer" "chronometers"; -- from DictEng -lin chronoscope_N = mkN "chronoscope" ; -lin chrysalis_N = mkN "chrysalis" "chrysalises"; -- from DictEng -lin chrysanthemum_N = mkN "chrysanthemum" "chrysanthemums"; -- from DictEng -lin chrysoberyl_N = mkN "chrysoberyl" ; -lin chrysolite_N = mkN "chrysolite" ; -lin chrysoprase_N = mkN "chrysoprase" ; -lin chrysotherapy_N = mkN "chrysotherapy" ; -lin chrysotile_N = mkN "chrysotile" ; -lin chthonian_A = mkA "chthonian" ; -lin chub_N = mkN "chub" ; -lin chubbiness_N = mkN "chubbiness" ; -lin chubby_A = mkA "chubby" "chubbier"; -- from DictEng -lin chuck_N = mkN "chuck" "chucks"; -- from DictEng -lin chuck_V2 = mkV2 (mkV "chuck" "chucks" "chucked" "chucked" "chucking"); -- from DictEng -lin chuck_will's_widow_N = mkN "chuck will's widow" ; -lin chucker_out_N = mkN "chucker - out" "IRREG"; -- from DictEng -lin chuckle_N = mkN "chuckle" "chuckles"; -- from DictEng -lin chuckle_V = mkV "chuckle" "chuckles" "chuckled" "chuckled" "chuckling"; -- from DictEng -lin chuckle_V2 = mkV2 (mkV "chuckle") ; -lin chuckle_VS = mkVS (mkV "chuckle" "chuckles" "chuckled" "chuckled" "chuckling"); -- from DictEng -lin chuckwalla_N = mkN "chuckwalla" ; -lin chufa_N = mkN "chufa" ; -lin chuffed_A = mkA "chuffed" ; -lin chug_N = mkN "chug" "chugs"; -- from DictEng -lin chug_V = mkV "chug" "chugs" "chugged" "chugged" "chugging"; -- from DictEng -lin chug_V2 = mkV2 (mkV "chug") ; -lin chukka_N = mkN "chukka" ; -lin chukker_N = mkN "chukker" "chukkers"; -- from DictEng -lin chum_N = mkN "chum" "chums"; -- from DictEng -lin chum_V = mkV "chum" "chums" "chummed" "chummed" "chumming"; -- from DictEng -lin chumminess_N = mkN "chumminess" ; -lin chummy_A = mkA "chummy" "chummier"; -- from DictEng -lin chump_N = mkN "chump" "chumps"; -- from DictEng -lin chunga_N = mkN "chunga" ; -lin chunk_N = mkN "chunk" "chunks"; -- from DictEng -lin chunk_V2 = mkV2 (mkV "chunk") ; -lin chunky_A = mkA "chunky" "chunkier"; -- from DictEng -lin chunnel_N = mkN "chunnel" ; -lin church_N = mkN "church" "churches"; -- from DictEng -lin church_state_N = mkN "church state" ; -lin churchgoer_N = mkN "churchgoer" "churchgoers"; -- from DictEng -lin churchgoing_A = mkA "churchgoing" ; -lin churchly_A = mkA "churchly" ; -lin churchman_N = mkN "churchman" "churchmen" {- FIXME: guessed plural form -}; -- from DictEng -lin churchwarden_N = mkN "churchwarden" "churchwardens"; -- from DictEng -lin churchyard_N = mkN "churchyard" "churchyards"; -- from DictEng -lin churidars_N = mkN "churidars" ; -lin churl_N = mkN "churl" "churls"; -- from DictEng -lin churlish_A = compoundA (mkA "churlish"); -- from DictEng -lin churlishly_Adv = mkAdv "churlishly" ; -lin churn_N = mkN "churn" "churns"; -- from DictEng -lin churn_V = mkV "churn" "churns" "churned" "churned" "churning"; -- from DictEng -lin churn_V2 = mkV2 (mkV "churn" "churns" "churned" "churned" "churning"); -- from DictEng -lin churning_A = mkA "churning" ; -lin chute_N = mkN "chute" "chutes"; -- from DictEng -lin chutney_N = mkN "chutney" "chutneys"; -- from DictEng -lin chutzpa_N = mkN "chutzpa" ; -lin chutzpanik_N = mkN "chutzpanik" ; -lin chylaceous_A = mkA "chylaceous" ; -lin chyle_N = mkN "chyle" ; -lin chyliferous_A = mkA "chyliferous" ; -lin chylific_A = mkA "chylific" ; -lin chylomicron_N = mkN "chylomicron" ; -lin chyme_N = mkN "chyme" ; -lin cia_N = mkN "cia" ; -- from DictEng -lin cicada_N = mkN "cicada" "cicadas"; -- from DictEng -lin cicala_N = mkN "cicala" "cicalas"; -- from DictEng -lin cicatrice_N = mkN "cicatrice" "cicatrices"; -- from DictEng -lin cicatrix_N = mkN "cicatrix" "cicatrices" {- FIXME: guessed plural form -}; -- from DictEng -lin cicero_N = mkN "cicero" ; -lin cicerone_N = mkN "cicerone" "ciceroni"; -- from DictEng -lin cichlid_N = mkN "cichlid" ; -lin cid_N = mkN "cid" ; -- from DictEng -lin cider_N = mkN "cider" "ciders"; -- from DictEng -lin ciderpress_N = mkN "ciderpress" "ciderpresses"; -- from DictEng -lin cigar_N = mkN "cigar" "cigars"; -- from DictEng -lin cigar_shaped_A = compoundA (mkA "cigar - shaped"); -- from DictEng -lin cigarette_N = mkN "cigarette" "cigarettes"; -- from DictEng -lin cigarette_case_N = mkN "cigarette - case" "cigarette - cases"; -- from DictEng -lin cigarette_holder_N = mkN "cigarette - holder" "cigarette - holders"; -- from DictEng -lin cigarette_paper_N = mkN "cigarette - paper" "cigarette - papers"; -- from DictEng -lin cigarillo_N = mkN "cigarillo" ; -lin ciliary_A = mkA "ciliary" ; -lin ciliate_A = mkA "ciliate" ; -lin ciliate_N = mkN "ciliate" ; -lin cilium_N = mkN "cilium" ; -lin cimetidine_N = mkN "cimetidine" ; -lin cinch_N = mkN "cinch" "cinches"; -- from DictEng -lin cinch_V2 = mkV2 (mkV "cinch"); -- from DictEng -lin cinchona_N = mkN "cinchona" "cinchonas"; -- from DictEng -lin cinchonine_N = mkN "cinchonine" ; -lin cincture_N = mkN "cincture" "cinctures"; -- from DictEng -lin cinder_N = mkN "cinder" "cinders"; -- from DictEng -lin cinder_track_N = mkN "cinder - track" "cinder - tracks"; -- from DictEng -lin cinderella_N = mkN "cinderella" "cinderellas"; -- from DictEng -lin cine_camera_N = mkN "cine - camera" "cine - cameras"; -- from DictEng -lin cine_film_N = mkN "cine - film" "cine - films"; -- from DictEng -lin cine_projector_N = mkN "cine - projector" "cine - projectors"; -- from DictEng -lin cinema_N = mkN "cinema" "cinemas"; -- from DictEng -lin cinematic_A = compoundA (mkA "cinematic"); -- from DictEng -lin cinematography_N = mkN "cinematography" ; -- from DictEng -lin cineraria_N = mkN "cineraria" ; -lin cinerary_A = mkA "cinerary" ; -lin cingulum_N = mkN "cingulum" ; -lin cinnabar_N = mkN "cinnabar" ; -lin cinnamon_N = mkN "cinnamon" ; -- from DictEng -lin cinnamon_red_A = compoundA (mkA "cinnamon red") ; -lin cinnamon_scented_A = compoundA (mkA "cinnamon scented") ; -lin cinnamon_colored_A = compoundA (mkA "cinnamon colored") ; -lin cinquefoil_N = mkN "cinquefoil" "cinquefoils"; -- from DictEng -lin cipher_N = mkN "cipher" "ciphers"; -- from DictEng -lin cipher_V = mkV "cipher" "ciphers" "ciphered" "ciphered" "ciphering"; -- from DictEng -lin cipher_V2 = mkV2 (mkV "cipher" "ciphers" "ciphered" "ciphered" "ciphering"); -- from DictEng -lin ciprofloxacin_N = mkN "ciprofloxacin" ; -lin circa_Prep = mkPrep "circa"; -- from DictEng -lin circadian_A = mkA "circadian" ; -lin circle_N = mkN "circle" "circles"; -- from DictEng -lin circle_V = mkV "circle" "circles" "circled" "circled" "circling"; -- from DictEng -lin circle_V2 = mkV2 (mkV "circle" "circles" "circled" "circled" "circling"); -- from DictEng -lin circle_of_willis_PN = mkPN "circle of Willis" ; -lin circlet_N = mkN "circlet" "circlets"; -- from DictEng -lin circuit_N = mkN "circuit" "circuits"; -- from DictEng -lin circuitous_A = compoundA (mkA "circuitous"); -- from DictEng -lin circuitry_N = mkN "circuitry" ; -lin circular_A = compoundA (mkA "circular"); -- from DictEng -lin circular_N = mkN "circular" "circulars"; -- from DictEng -lin circular_knit_A = compoundA (mkA "circular knit") ; -lin circularity_N = mkN "circularity" ; -- from DictEng -lin circularization_N = mkN "circularization" ; -lin circularize_V2 = mkV2 (mkV "circularize" "circularizes" "circularized" "circularized" "circularizing"); -- from DictEng -lin circularly_Adv = mkAdv "circularly" ; -lin circulate_V = mkV "circulate" "circulates" "circulated" "circulated" "circulating"; -- from DictEng -lin circulate_V2 = mkV2 (mkV "circulate" "circulates" "circulated" "circulated" "circulating"); -- from DictEng -lin circulating_A = mkA "circulating" ; -lin circulation_N = mkN "circulation" "circulations"; -- from DictEng -lin circulative_A = mkA "circulative" ; -lin circulatory_A = mkA "circulatory" ; -lin circumcise_V2 = mkV2 (mkV "circumcise" "circumcises" "circumcised" "circumcised" "circumcising"); -- from DictEng -lin circumcision_N = mkN "circumcision" "circumcisions"; -- from DictEng -lin circumduction_N = mkN "circumduction" ; -lin circumference_N = mkN "circumference" "circumferences"; -- from DictEng -lin circumferential_A = mkA "circumferential" ; -lin circumflex_N = mkN "circumflex" "circumflexes"; -- from DictEng -lin circumlocution_N = mkN "circumlocution" "circumlocutions"; -- from DictEng -lin circumlocutious_A = mkA "circumlocutious" ; -lin circumnavigate_V2 = mkV2 (mkV "circumnavigate" "circumnavigates" "circumnavigated" "circumnavigated" "circumnavigating"); -- from DictEng -lin circumnavigation_N = mkN "circumnavigation" "circumnavigations"; -- from DictEng -lin circumpolar_A = mkA "circumpolar" ; -lin circumscribe_V2 = mkV2 (mkV "circumscribe" "circumscribes" "circumscribed" "circumscribed" "circumscribing"); -- from DictEng -lin circumscribed_A = mkA "circumscribed" ; -lin circumscription_N = mkN "circumscription" "circumscriptions"; -- from DictEng -lin circumspect_A = compoundA (mkA "circumspect"); -- from DictEng -lin circumspection_N = mkN "circumspection" ; -- from DictEng -lin circumstance_N = mkN "circumstance" "circumstances"; -- from DictEng -lin circumstances_N = mkN "circumstances" ; -lin circumstantial_A = compoundA (mkA "circumstantial"); -- from DictEng -lin circumstantially_Adv = mkAdv "circumstantially" ; -lin circumvent_V2 = mkV2 (mkV "circumvent" "circumvents" "circumvented" "circumvented" "circumventing"); -- from DictEng -lin circumvention_N = mkN "circumvention" "circumventions"; -- from DictEng -lin circumvolution_N = mkN "circumvolution" ; -lin circus_N = mkN "circus" "circuses"; -- from DictEng -lin cirque_N = mkN "cirque" ; -lin cirrhosis_N = mkN "cirrhosis" ; -- from DictEng -lin cirrocumulus_N = mkN "cirrocumulus" ; -lin cirrostratus_N = mkN "cirrostratus" ; -lin cirrus_N = mkN "cirrus" ; -- from DictEng -lin cisalpine_A = mkA "cisalpine" ; -lin cisco_N = mkN "cisco" ; -lin cismontane_A = mkA "cismontane" ; -lin cissy_A = compoundA (mkA "cissy"); -- from DictEng -lin cissy_N = mkN "cissy" "cissies"; -- from DictEng -lin cistern_N = mkN "cistern" "cisterns"; -- from DictEng -lin cisterna_N = mkN "cisterna" ; -lin citadel_N = mkN "citadel" "citadels"; -- from DictEng -lin citation_N = mkN "citation" "citations"; -- from DictEng -lin cite_V2 = mkV2 (mkV "cite" "cites" "cited" "cited" "citing"); -- from DictEng -lin citified_A = mkA "citified" ; -lin citizen_N = mkN "citizen" "citizens"; -- from DictEng -lin citizenry_N = mkN "citizenry" ; -lin citizenship_N = mkN "citizenship" "citizenships"; -- from DictEng -lin citrange_N = mkN "citrange" ; -lin citrate_N = mkN "citrate" ; -lin citric_A = compoundA (mkA "citric"); -- from DictEng -lin citrine_N = mkN "citrine" ; -lin citron_N = mkN "citron" "citrons"; -- from DictEng -lin citronwood_N = mkN "citronwood" ; -lin citrous_A = compoundA (mkA "citrous"); -- from DictEng -lin citrulline_N = mkN "citrulline" ; -lin citrus_N = mkN "citrus" "citruses"; -- from DictEng -lin cittern_N = mkN "cittern" ; -lin city_N = mkN "city" "cities"; -- from DictEng -lin city_like_A = compoundA (mkA "city like") ; -lin cityscape_N = mkN "cityscape" ; -lin citywide_A = mkA "citywide" ; -lin civet_N = mkN "civet" "civets"; -- from DictEng -lin civet_cat_N = mkN "civet - cat" "civet - cats"; -- from DictEng -lin civic_A = compoundA (mkA "civic"); -- from DictEng -lin civics_N = mkN "civics" "civics"; -- from DictEng -lin civies_N = mkN "civies" ; -lin civil_A = compoundA (mkA "civil"); -- from DictEng -lin civil_libertarian_A = compoundA (mkA "civil libertarian") ; -lin civilian_A = compoundA (mkA "civilian"); -- from DictEng -lin civilian_N = mkN "civilian" "civilians"; -- from DictEng -lin civility_N = mkN "civility" "civilities"; -- from DictEng -lin civilization_N = mkN "civilization" "civilizations"; -- from DictEng -lin civilize_V2 = mkV2 (mkV "civilize" "civilizes" "civilized" "civilized" "civilizing"); -- from DictEng -lin civilized_A = mkA "civilized" ; -lin civilly_Adv = mkAdv "civilly" ; -lin clabber_N = mkN "clabber" ; -lin clack_N = mkN "clack" "clacks"; -- from DictEng -lin clack_V = mkV "clack" "clacks" "clacked" "clacked" "clacking"; -- from DictEng -lin clack_V2 = mkV2 (mkV "clack") ; -lin clad_A = mkA "clad" ; -lin clad_V = mkV "clad" "clads" "clad" "clad" "cladding"; -- from DictEng -lin clad_V2 = mkV2 (mkV "clad" "clads" "clad" "clad" "cladding"); -- from DictEng -lin clade_N = mkN "clade" ; -lin cladistics_N = mkN "cladistics" ; -lin cladode_N = mkN "cladode" ; -lin cladogram_N = mkN "cladogram" ; -lin claim_N = mkN "claim" "claims"; -- from DictEng -lin claim_V = mkV "claim" "claims" "claimed" "claimed" "claiming"; -- from DictEng -lin claim_V2 = mkV2 (mkV "claim" "claims" "claimed" "claimed" "claiming"); -- from DictEng -lin claim_VS = mkVS (mkV "claim" "claims" "claimed" "claimed" "claiming"); -- from DictEng -lin claim_VV = mkVV (mkV "claim" "claims" "claimed" "claimed" "claiming"); -- from DictEng -lin claimant_N = mkN "claimant" "claimants"; -- from DictEng -lin clairvoyance_N = mkN "clairvoyance" ; -- from DictEng -lin clairvoyant_A = mkA "clairvoyant" ; -lin clairvoyant_N = mkN "clairvoyant" "clairvoyants"; -- from DictEng -lin clam_N = mkN "clam" "clams"; -- from DictEng -lin clam_V = mkV "clam" "clams" "clammed" "clammed" "clamming"; -- from DictEng -lin clamant_A = mkA "clamant" ; -lin clamatorial_A = mkA "clamatorial" ; -lin clambake_N = mkN "clambake" "clambakes"; -- from DictEng -lin clamber_N = mkN "clamber" "clambers"; -- from DictEng -lin clamber_V = mkV "clamber" "clambers" "clambered" "clambered" "clambering"; -- from DictEng -lin clamber_V2 = mkV2 (mkV "clamber") ; -lin clammily_Adv = mkAdv "clammily"; -- from DictEng -lin clammy_A = mkA "clammy" "clammier"; -- from DictEng -lin clammyweed_N = mkN "clammyweed" ; -lin clamor_N = mkN "clamor" ; -lin clamorous_A = compoundA (mkA "clamorous"); -- from DictEng -lin clamour_N = mkN "clamour" "clamours"; -- from DictEng -lin clamour_V = mkV "clamour" "clamours" "clamoured" "clamoured" "clamouring"; -- from DictEng -lin clamour_V2 = mkV2 (mkV "clamour" "clamours" "clamoured" "clamoured" "clamouring"); -- from DictEng -lin clamp_N = mkN "clamp" "clamps"; -- from DictEng -lin clamp_V = mkV "clamp" "clamps" "clamped" "clamped" "clamping"; -- from DictEng -lin clamp_V2 = mkV2 (mkV "clamp" "clamps" "clamped" "clamped" "clamping"); -- from DictEng -lin clamp_down_N = mkN "clamp - down" "clamp - downs"; -- from DictEng -lin clampdown_N = mkN "clampdown" ; -lin clamshell_N = mkN "clamshell" ; -lin clan_N = mkN "clan" "clans"; -- from DictEng -lin clandestine_A = compoundA (mkA "clandestine"); -- from DictEng -lin clang_N = mkN "clang" "clangs"; -- from DictEng -lin clang_V = mkV "clang" "clangs" "clanged" "clanged" "clanging"; -- from DictEng -lin clang_V2 = mkV2 (mkV "clang" "clangs" "clanged" "clanged" "clanging"); -- from DictEng -lin clanger_N = mkN "clanger" "clangers"; -- from DictEng -lin clangorous_A = compoundA (mkA "clangorous"); -- from DictEng -lin clangour_N = mkN "clangour" ; -- from DictEng -lin clank_N = mkN "clank" "clanks"; -- from DictEng -lin clank_V = mkV "clank" "clanks" "clanked" "clanked" "clanking"; -- from DictEng -lin clank_V2 = mkV2 (mkV "clank" "clanks" "clanked" "clanked" "clanking"); -- from DictEng -lin clanking_A = mkA "clanking" ; -lin clannish_A = compoundA (mkA "clannish"); -- from DictEng -lin clannishly_Adv = mkAdv "clannishly" ; -lin clannishness_N = mkN "clannishness" ; -lin clansman_N = mkN "clansman" "clansmen" {- FIXME: guessed plural form -}; -- from DictEng -lin clap_N = mkN "clap" "claps"; -- from DictEng -lin clap_V = mkV "clap" "claps" "clapped" "clapped" "clapping"; -- from DictEng -lin clap_V2 = mkV2 (mkV "clap" "claps" "clapped" "clapped" "clapping"); -- from DictEng -lin clapboard_N = mkN "clapboard" "clapboards"; -- from DictEng -lin clapped_out_A = compoundA (mkA "clapped out") ; -lin clapper_N = mkN "clapper" "clappers"; -- from DictEng -lin clapperboard_N = mkN "clapperboard" "clapperboards"; -- from DictEng -lin claptrap_N = mkN "claptrap" ; -- from DictEng -lin claque_N = mkN "claque" "claques"; -- from DictEng -lin clarence_N = mkN "clarence" ; -lin claret_N = mkN "claret" "clarets"; -- from DictEng -lin clarification_N = mkN "clarification" ; -- from DictEng -lin clarify_V = mkV "clarify" "clarifies" "clarified" "clarified" "clarifying"; -- from DictEng -lin clarify_V2 = mkV2 (mkV "clarify" "clarifies" "clarified" "clarified" "clarifying"); -- from DictEng -lin clarifying_A = mkA "clarifying" ; -lin clarinet_N = mkN "clarinet" "clarinets"; -- from DictEng -lin clarinetist_N = mkN "clarinetist" "clarinetists"; -- from DictEng -lin clarinettist_N = mkN "clarinettist" "clarinettists"; -- from DictEng -lin clarion_A = mkA "clarion" ; -lin clarion_N = mkN "clarion" "clarions"; -- from DictEng -lin clarity_N = mkN "clarity" ; -- from DictEng -lin claro_N = mkN "claro" ; -lin clary_N = mkN "clary" ; -lin clash_N = mkN "clash" "clashes"; -- from DictEng -lin clash_V = mkV "clash" "clashes" "clashed" "clashed" "clashing"; -- from DictEng -lin clash_V2 = mkV2 (mkV "clash" "clashes" "clashed" "clashed" "clashing"); -- from DictEng -lin clashing_A = mkA "clashing" ; -lin clasp_N = mkN "clasp" "clasps"; -- from DictEng -lin clasp_V = mkV "clasp" "clasps" "clasped" "clasped" "clasping"; -- from DictEng -lin clasp_V2 = mkV2 (mkV "clasp" "clasps" "clasped" "clasped" "clasping"); -- from DictEng -lin clasp_knife_N = mkN "clasp - knife" "clasp - knives"; -- from DictEng -lin class_N = mkN "class" "classes"; -- from DictEng -lin class_V2 = mkV2 (mkV "class" "classes" "classed" "classed" "classing"); -- from DictEng -lin class_conscious_A = compoundA (mkA "class - conscious"); -- from DictEng -lin class_cyanobacteria_PN = mkPN "class Cyanobacteria" ; -lin class_conscious_A = compoundA (mkA "class - conscious"); -- from DictEng -lin class_feeling_N = mkN "class - feeling" ; -- from DictEng -lin class_fellow_N = mkN "class - fellow" "class - fellows"; -- from DictEng -lin class_list_N = mkN "class - list" "class - lists"; -- from DictEng -lin class_warfare_N = mkN "class - warfare" ; -- from DictEng -lin classic_A = compoundA (mkA "classic"); -- from DictEng -lin classic_N = mkN "classic" "classics"; -- from DictEng -lin classical_A = compoundA (mkA "classical"); -- from DictEng -lin classical_latin_PN = mkPN "classical Latin" ; -lin classically_Adv = mkAdv "classically" ; -lin classicism_N = mkN "classicism" ; -- from DictEng -lin classicist_N = mkN "classicist" "classicists"; -- from DictEng -lin classicistic_A = mkA "classicistic" ; -lin classics_N = mkN "classics" "classics"; -- from DictEng -lin classifiable_A = compoundA (mkA "classifiable"); -- from DictEng -lin classification_N = mkN "classification" "classifications"; -- from DictEng -lin classificatory_A = mkA "classificatory" ; -lin classified_A = compoundA (mkA "classified"); -- from DictEng -lin classifier_N = mkN "classifier" ; -lin classify_V2 = mkV2 (mkV "classify" "classifies" "classified" "classified" "classifying"); -- from DictEng -lin classless_A = compoundA (mkA "classless"); -- from DictEng -lin classmate_N = mkN "classmate" "classmates"; -- from DictEng -lin classroom_N = mkN "classroom" "classrooms"; -- from DictEng -lin classwork_N = mkN "classwork" ; -lin classy_A = mkA "classy" "classier"; -- from DictEng -lin clast_N = mkN "clast" ; -lin clastic_A = mkA "clastic" ; -lin clathrate_A = mkA "clathrate" ; -lin clatter_N = mkN "clatter" "clatters"; -- from DictEng -lin clatter_V = mkV "clatter" "clatters" "clattered" "clattered" "clattering"; -- from DictEng -lin clatter_V2 = mkV2 (mkV "clatter" "clatters" "clattered" "clattered" "clattering"); -- from DictEng -lin clattery_A = mkA "clattery" ; -lin clausal_A = mkA "clausal" ; -lin clause_N = mkN "clause" "clauses"; -- from DictEng -lin claustrophobe_N = mkN "claustrophobe" ; -lin claustrophobia_N = mkN "claustrophobia" ; -- from DictEng -lin claustrophobic_A = compoundA (mkA "claustrophobic"); -- from DictEng -lin claustrum_N = mkN "claustrum" ; -lin clavichord_N = mkN "clavichord" "clavichords"; -- from DictEng -lin clavicle_N = mkN "clavicle" "clavicles"; -- from DictEng -lin clavier_N = mkN "clavier" ; -lin claw_N = mkN "claw" "claws"; -- from DictEng -lin claw_V2 = mkV2 (mkV "claw" "claws" "clawed" "clawed" "clawing"); -- from DictEng -lin claw_shaped_A = compoundA (mkA "claw shaped") ; -lin clawback_N = mkN "clawback" ; -- from DictEng -lin clawed_A = mkA "clawed" ; -lin clawfoot_N = mkN "clawfoot" ; -lin clawhammer_N = mkN "clawhammer" "clawhammers"; -- from DictEng -lin clawlike_A = mkA "clawlike" ; -lin clay_N = mkN "clay" ; -- from DictEng -lin clayey_A = compoundA (mkA "clayey"); -- from DictEng -lin claymore_N = mkN "claymore" ; -lin claystone_N = mkN "claystone" ; -lin clean_A = mkA "clean" "cleaner"; -- from DictEng -lin clean_Adv = mkAdv "clean"; -- from DictEng -lin clean_N = mkN "clean" "cleans"; -- from DictEng -lin clean_V = mkV "clean" "cleans" "cleaned" "cleaned" "cleaning"; -- from DictEng -lin clean_V2 = mkV2 (mkV "clean" "cleans" "cleaned" "cleaned" "cleaning"); -- from DictEng -lin clean_burning_A = compoundA (mkA "clean burning") ; -lin clean_cut_A = compoundA (mkA "clean - cut"); -- from DictEng -lin clean_limbed_A = compoundA (mkA "clean - limbed"); -- from DictEng -lin clean_shaven_A = compoundA (mkA "clean - shaven"); -- from DictEng -lin clean_bowled_A = compoundA (mkA "clean - bowled"); -- from DictEng -lin clean_cut_A = compoundA (mkA "clean - cut"); -- from DictEng -lin clean_limbed_A = compoundA (mkA "clean - limbed"); -- from DictEng -lin clean_living_A = compoundA (mkA "clean - living"); -- from DictEng -lin clean_shaven_A = compoundA (mkA "clean - shaven"); -- from DictEng -lin clean_up_N = mkN "clean - up" "clean - ups"; -- from DictEng -lin cleanable_A = mkA "cleanable" ; -lin cleaner_N = mkN "cleaner" "cleaners"; -- from DictEng -lin cleaners_N = mkN "cleaners" ; -lin cleaning_N = mkN "cleaning" ; -lin cleanliness_N = mkN "cleanliness" ; -- from DictEng -lin cleanly_A = mkA "cleanly" "cleanlier"; -- from DictEng -lin cleanly_Adv = mkAdv "cleanly" ; -lin cleanness_N = mkN "cleanness" ; -lin cleanse_V2 = mkV2 (mkV "cleanse" "cleanses" "cleansed" "cleansed" "cleansing"); -- from DictEng -lin cleanser_N = mkN "cleanser" "cleansers"; -- from DictEng -lin cleansing_A = mkA "cleansing" ; -lin cleanup_N = mkN "cleanup" ; -lin clear_A = mkA "clear" "clearer"; -- from DictEng -lin clear_Adv = mkAdv "clear"; -- from DictEng -lin clear_N = mkN "clear" "clears"; -- from DictEng -lin clear_V = mkV "clear" "clears" "cleared" "cleared" "clearing"; -- from DictEng -lin clear_V2 = mkV2 (mkV "clear" "clears" "cleared" "cleared" "clearing"); -- from DictEng -lin clear_V2V = mkV2V (mkV "clear" "clears" "cleared" "cleared" "clearing") noPrep to_Prep ; -- from DictEng -lin clear_cut_A = compoundA (mkA "clear cut") ; -lin clear_eyed_A = compoundA (mkA "clear eyed") ; -lin clear_sighted_A = compoundA (mkA "clear - sighted"); -- from DictEng -lin clear_cut_Adv = mkAdv "clear - cut"; -- from DictEng -lin clear_headed_A = compoundA (mkA "clear - headed"); -- from DictEng -lin clear_sighted_A = compoundA (mkA "clear - sighted"); -- from DictEng -lin clearance_N = mkN "clearance" "clearances"; -- from DictEng -lin cleared_A = mkA "cleared" ; -lin clearheaded_A = mkA "clearheaded" ; -lin clearing_N = mkN "clearing" "clearings"; -- from DictEng -lin clearing_house_N = mkN "clearing - house" "clearing - houses"; -- from DictEng -lin clearly_Adv = mkAdv "clearly" ; -lin clearness_N = mkN "clearness" ; -- from DictEng -lin clearway_N = mkN "clearway" "clearways"; -- from DictEng -lin cleat_N = mkN "cleat" "cleats"; -- from DictEng -lin cleats_N = mkN "cleats" ; -lin cleavable_A = mkA "cleavable" ; -lin cleavage_N = mkN "cleavage" "cleavages"; -- from DictEng -lin cleave_V = mkV "cleave" "cleaves" "cleaved" "cleaved" "cleaving"; -- from DictEng -lin cleave_V2 = mkV2 (mkV "cleave" "cleaves" "cleaved" "cleaved" "cleaving"); -- from DictEng -lin cleaver_N = mkN "cleaver" "cleavers"; -- from DictEng -lin cleavers_N = mkN "cleavers" ; -lin clef_N = mkN "clef" "clefs"; -- from DictEng -lin cleft_A = mkA "cleft" ; -lin cleft_N = mkN "cleft" "clefts"; -- from DictEng -lin cleistogamous_A = mkA "cleistogamous" ; -lin cleistogamy_N = mkN "cleistogamy" ; -lin cleistothecium_N = mkN "cleistothecium" ; -lin clematis_N = mkN "clematis" ; -- from DictEng -lin clemency_N = mkN "clemency" ; -- from DictEng -lin clement_A = compoundA (mkA "clement"); -- from DictEng -lin clementine_N = mkN "clementine" ; -lin clench_V2 = mkV2 (mkV "clench" "clenches" "clenched" "clenched" "clenching"); -- from DictEng -lin clenched_A = mkA "clenched" ; -lin clerestory_N = mkN "clerestory" "clerestories"; -- from DictEng -lin clergy_N = mkN "clergy" "clergies"; -- from DictEng -lin clergyman_N = mkN "clergyman" "clergymen" {- FIXME: guessed plural form -}; -- from DictEng -lin cleric_N = mkN "cleric" "clerics"; -- from DictEng -lin clerical_A = compoundA (mkA "clerical"); -- from DictEng -lin clericalism_N = mkN "clericalism" ; -lin clericalist_N = mkN "clericalist" ; -lin clerihew_N = mkN "clerihew" "clerihews"; -- from DictEng -lin clerk_N = mkN "clerk" "clerks"; -- from DictEng -lin clerk_V = mkV "clerk" "clerks" "clerked" "clerked" "clerking"; -- from DictEng -lin clerkship_N = mkN "clerkship" ; -lin clever_A = mkA "clever" "cleverer"; -- from DictEng -lin clever_dick_PN = mkPN "clever Dick" ; -lin cleverly_Adv = mkAdv "cleverly" ; -lin cleverness_N = mkN "cleverness" ; -- from DictEng -lin clevis_N = mkN "clevis" ; -lin clew_N = mkN "clew" "clews"; -- from DictEng -lin clew_V2 = mkV2 (mkV "clew" "clews" "clewed" "clewed" "clewing"); -- from DictEng -lin clews_N = mkN "clews" ; -lin cliche_N = mkN "cliché" "clichés"; -- from DictEng -lin cliched_A = mkA "cliched" ; -lin click_N = mkN "click" "clicks"; -- from DictEng -lin click_V = mkV "click" "clicks" "clicked" "clicked" "clicking"; -- from DictEng -lin click_V2 = mkV2 (mkV "click") ; -lin click_clack_N = mkN "click clack" ; -lin clickety_clack_N = mkN "clickety clack" ; -lin client_N = mkN "client" "clients"; -- from DictEng -lin client_server_A = compoundA (mkA "client server") ; -lin clientage_N = mkN "clientage" ; -lin clientele_N = mkN "clientele" "clienteles"; -- from DictEng -lin cliff_N = mkN "cliff" "cliffs"; -- from DictEng -lin cliff_hanging_A = compoundA (mkA "cliff hanging") ; -lin cliff_hanger_N = mkN "cliff - hanger" "cliff - hangers"; -- from DictEng -lin cliffhanger_N = mkN "cliffhanger" ; -lin climacteric_N = mkN "climacteric" "climacterics"; -- from DictEng -lin climactic_A = compoundA (mkA "climactic"); -- from DictEng -lin climate_N = mkN "climate" "climates"; -- from DictEng -lin climatic_A = compoundA (mkA "climatic"); -- from DictEng -lin climatically_Adv = mkAdv "climatically"; -- from DictEng -lin climatologist_N = mkN "climatologist" ; -lin climatology_N = mkN "climatology" ; -- from DictEng -lin climax_N = mkN "climax" "climaxes"; -- from DictEng -lin climax_V = mkV "climax" "climaxes" "climaxed" "climaxed" "climaxing"; -- from DictEng -lin climax_V2 = mkV2 (mkV "climax" "climaxes" "climaxed" "climaxed" "climaxing"); -- from DictEng -lin climb_N = mkN "climb" "climbs"; -- from DictEng -lin climb_V = mkV "climb" "climbs" "climbed" "climbed" "climbing"; -- from DictEng -lin climb_V2 = mkV2 (mkV "climb" "climbs" "climbed" "climbed" "climbing"); -- from DictEng -lin climb_down_N = mkN "climb - down" "climb - downs"; -- from DictEng -lin climber_N = mkN "climber" "climbers"; -- from DictEng -lin clime_N = mkN "clime" "climes"; -- from DictEng -lin clinch_N = mkN "clinch" "clinches"; -- from DictEng -lin clinch_V = mkV "clinch" "clinches" "clinched" "clinched" "clinching"; -- from DictEng -lin clinch_V2 = mkV2 (mkV "clinch" "clinches" "clinched" "clinched" "clinching"); -- from DictEng -lin clincher_N = mkN "clincher" "clinchers"; -- from DictEng -lin cling_N = mkN "cling" ; -lin cling_V = IrregEng.cling_V; -- from DictEng -lin cling_V2 = mkV2 (irregV "cling" "clung" "clung"); -lin clingfish_N = mkN "clingfish" ; -lin clinic_N = mkN "clinic" "clinics"; -- from DictEng -lin clinical_A = compoundA (mkA "clinical"); -- from DictEng -lin clinically_Adv = mkAdv "clinically" ; -lin clinician_N = mkN "clinician" ; -lin clinid_N = mkN "clinid" ; -lin clink_N = mkN "clink" "clinks"; -- from DictEng -lin clink_V = mkV "clink" "clinks" "clinked" "clinked" "clinking"; -- from DictEng -lin clink_V2 = mkV2 (mkV "clink" "clinks" "clinked" "clinked" "clinking"); -- from DictEng -lin clinker_N = mkN "clinker" "clinkers"; -- from DictEng -lin clinker_built_A = compoundA (mkA "clinker - built"); -- from DictEng -lin clinker_built_A = compoundA (mkA "clinker - built"); -- from DictEng -lin clinking_A = mkA "clinking" ; -lin clinocephaly_N = mkN "clinocephaly" ; -lin clinodactyly_N = mkN "clinodactyly" ; -lin clinometer_N = mkN "clinometer" ; -lin clinquant_A = mkA "clinquant" ; -lin clintonia_N = mkN "clintonia" ; -lin clip_N = mkN "clip" "clips"; -- from DictEng -lin clip_V2 = mkV2 (mkV "clip" "clips" "clipped" "clipped" "clipping"); -- from DictEng -lin clip_clop_N = mkN "clip clop" ; -lin clip_on_A = compoundA (mkA "clip - on"); -- from DictEng -lin clip_on_N = mkN "clip on" ; -lin clip_joint_N = mkN "clip - joint" "clip - joints"; -- from DictEng -lin clip_on_A = compoundA (mkA "clip - on"); -- from DictEng -lin clipboard_N = mkN "clipboard" ; -lin clipped_A = mkA "clipped" ; -lin clipper_N = mkN "clipper" "clippers"; -- from DictEng -lin clipping_N = mkN "clipping" "clippings"; -- from DictEng -lin clique_N = mkN "clique" "cliques"; -- from DictEng -lin cliquish_A = compoundA (mkA "cliquish"); -- from DictEng -lin clitoral_A = mkA "clitoral" ; -lin clitoridectomy_N = mkN "clitoridectomy" ; -lin clitoris_N = mkN "clitoris" "clitorises"; -- from DictEng -lin cloaca_N = mkN "cloaca" ; -lin cloak_N = mkN "cloak" "cloaks"; -- from DictEng -lin cloak_V2 = mkV2 (mkV "cloak" "cloaks" "cloaked" "cloaked" "cloaking"); -- from DictEng -lin cloaked_A = mkA "cloaked" ; -lin cloakmaker_N = mkN "cloakmaker" ; -lin cloakroom_N = mkN "cloakroom" "cloakrooms"; -- from DictEng -lin clobber_N = mkN "clobber" "clobbers"; -- from DictEng -lin clobber_V2 = mkV2 (mkV "clobber" "clobbers" "clobbered" "clobbered" "clobbering"); -- from DictEng -lin cloche_N = mkN "cloche" "cloches"; -- from DictEng -lin clock_N = mkN "clock" "clocks"; -- from DictEng -lin clock_V = mkV "clock" "clocks" "clocked" "clocked" "clocking"; -- from DictEng -lin clock_V2 = mkV2 (mkV "clock" "clocks" "clocked" "clocked" "clocking"); -- from DictEng -lin clock_watching_N = mkN "clock - watching" ; -- from DictEng -lin clock_dial_N = mkN "clock - dial" "clock - dials"; -- from DictEng -lin clock_face_N = mkN "clock - face" "clock - faces"; -- from DictEng -lin clock_golf_N = mkN "clock - golf" ; -- from DictEng -lin clock_tower_N = mkN "clock - tower" "clock - towers"; -- from DictEng -lin clock_watching_N = mkN "clock - watching" ; -- from DictEng -lin clocking_N = mkN "clocking" ; -lin clocksmith_N = mkN "clocksmith" ; -lin clockwise_A = mkA "clockwise" ; -lin clockwise_Adv = mkAdv "clockwise"; -- from DictEng -lin clockwork_N = mkN "clockwork" "clockworks"; -- from DictEng -lin clod_N = mkN "clod" "clods"; -- from DictEng -lin cloddish_A = mkA "cloddish" ; -lin clodhopper_N = mkN "clodhopper" "clodhoppers"; -- from DictEng -lin clofibrate_N = mkN "clofibrate" ; -lin clog_N = mkN "clog" "clogs"; -- from DictEng -lin clog_V = mkV "clog" "clogs" "clogged" "clogged" "clogging"; -- from DictEng -lin clog_V2 = mkV2 (mkV "clog" "clogs" "clogged" "clogged" "clogging"); -- from DictEng -lin clog_dance_N = mkN "clog - dance" "clog - dances"; -- from DictEng -lin clogged_A = mkA "clogged" ; -lin clogging_A = mkA "clogging" ; -lin cloggy_A = mkA "cloggy" "cloggier"; -- from DictEng -lin cloisonne_N = mkN "cloisonné" ; -- from DictEng -lin cloister_N = mkN "cloister" "cloisters"; -- from DictEng -lin cloister_V2 = mkV2 (mkV "cloister" "cloisters" "cloistered" "cloistered" "cloistering"); -- from DictEng -lin cloistered_A = mkA "cloistered" ; -lin clomiphene_N = mkN "clomiphene" ; -lin clomipramine_N = mkN "clomipramine" ; -lin clomp_V = mkV "clomp" ; -lin clomp_V2 = mkV2 (mkV "clomp") ; -lin clonal_A = mkA "clonal" ; -lin clone_N = mkN "clone" "clones"; -- from DictEng -lin clone_V2 = mkV2 (mkV "clone"); -- from DictEng -lin clonic_A = mkA "clonic" ; -lin clonidine_N = mkN "clonidine" ; -lin cloning_N = mkN "cloning" ; -lin clonus_N = mkN "clonus" ; -lin close_A = mkA "close" "closer"; -- from DictEng -lin close_Adv = mkAdv "close"; -- from DictEng -lin close_N = mkN "close" "closes"; -- from DictEng -lin close_V = mkV "close" "closes" "closed" "closed" "closing"; -- from DictEng -lin close_V2 = mkV2 (mkV "close" "closes" "closed" "closed" "closing"); -- from DictEng -lin close_V2V = mkV2V (mkV "close" "closes" "closed" "closed" "closing") noPrep to_Prep ; -- from DictEng -lin close_VA = mkVA (mkV "close" "closes" "closed" "closed" "closing"); -- from DictEng -lin close_VS = mkVS (mkV "close" "closes" "closed" "closed" "closing"); -- from DictEng -lin close_grained_A = compoundA (mkA "close - grained"); -- from DictEng -lin close_hauled_A = compoundA (mkA "close - hauled"); -- from DictEng -lin close_knit_A = compoundA (mkA "close knit") ; -lin close_minded_A = compoundA (mkA "close minded") ; -lin close_packed_A = compoundA (mkA "close packed") ; -lin close_set_A = compoundA (mkA "close - set"); -- from DictEng -lin close_cropped_A = compoundA (mkA "close - cropped"); -- from DictEng -lin close_cut_A = compoundA (mkA "close - cut"); -- from DictEng -lin close_down_N = mkN "close - down" "close - downs"; -- from DictEng -lin close_fisted_A = compoundA (mkA "close - fisted"); -- from DictEng -lin close_fitting_A = compoundA (mkA "close - fitting"); -- from DictEng -lin close_grained_A = compoundA (mkA "close - grained"); -- from DictEng -lin close_hauled_A = compoundA (mkA "close - hauled"); -- from DictEng -lin close_set_A = compoundA (mkA "close - set"); -- from DictEng -lin close_to_the_wind_Adv = mkAdv "close to the wind" ; -lin close_up_Adv = mkAdv "close up" ; -lin close_up_N = mkN "close - up" "close - ups"; -- from DictEng -lin closed_A = mkA "closed" ; -lin closed_captioned_A = compoundA (mkA "closed captioned") ; -lin closed_chain_A = compoundA (mkA "closed chain") ; -lin closed_circuit_A = compoundA (mkA "closed circuit") ; -lin closed_door_A = compoundA (mkA "closed door") ; -lin closefisted_A = mkA "closefisted" ; -lin closely_Adv = mkAdv "closely" ; -lin closely_held_A = compoundA (mkA "closely held") ; -lin closeness_N = mkN "closeness" ; -- from DictEng -lin closeout_N = mkN "closeout" ; -lin closer_N = mkN "closer" ; -lin closet_A = compoundA (mkA "closet"); -- from DictEng -lin closet_N = mkN "closet" "closets"; -- from DictEng -lin closet_V2 = mkV2 (mkV "closet" "closets" "closeted" "closeted" "closeting"); -- from DictEng -lin closeup_N = mkN "closeup" ; -lin closing_A = mkA "closing" ; -lin closing_N = mkN "closing" ; -lin clostridium_N = mkN "clostridium" ; -lin closure_N = mkN "closure" "closures"; -- from DictEng -lin clot_N = mkN "clot" "clots"; -- from DictEng -lin clot_V = mkV "clot" "clots" "clotted" "clotted" "clotting"; -- from DictEng -lin clot_V2 = mkV2 (mkV "clot" "clots" "clotted" "clotted" "clotting"); -- from DictEng -lin cloth_N = mkN "cloth" "cloths"; -- from DictEng -lin clothe_V = irregV "clothe" "clad" "clad"; -lin clothe_V2 = mkV2 (mkV "clothe" "clothes" "clothed" "clothed" "clothing"); -- from DictEng -lin clothed_A = mkA "clothed" ; -lin clothes_basket_N = mkN "clothes - basket" "clothes - baskets"; -- from DictEng -lin clothes_hanger_N = mkN "clothes - hanger" "clothes - hangers"; -- from DictEng -lin clothes_moth_N = mkN "clothes - moth" "clothes - moths"; -- from DictEng -lin clothes_peg_N = mkN "clothes - peg" "clothes - pegs"; -- from DictEng -lin clothes_pin_N = mkN "clothes - pin" "clothes - pins"; -- from DictEng -lin clothesbrush_N = mkN "clothesbrush" ; -lin clotheshorse_N = mkN "clotheshorse" "clotheshorses"; -- from DictEng -lin clothesless_A = mkA "clothesless" ; -lin clothesline_N = mkN "clothesline" "clotheslines"; -- from DictEng -lin clothespin_N = mkN "clothespin" ; -lin clothier_N = mkN "clothier" "clothiers"; -- from DictEng -lin clothing_N = mkN "clothing" ; -- from DictEng -lin cloud_N = mkN "cloud" "clouds"; -- from DictEng -lin cloud_V = mkV "cloud" "clouds" "clouded" "clouded" "clouding"; -- from DictEng -lin cloud_V2 = mkV2 (mkV "cloud" "clouds" "clouded" "clouded" "clouding"); -- from DictEng -lin cloud_covered_A = compoundA (mkA "cloud covered") ; -lin cloud_cuckoo_land_N = mkN "cloud - cuckoo - land" "cloud - cuckoo - lands"; -- from DictEng -lin cloud_bank_N = mkN "cloud - bank" "cloud - banks"; -- from DictEng -lin cloud_capped_A = compoundA (mkA "cloud - capped"); -- from DictEng -lin cloud_cuckoo_land_N = mkN "cloud - cuckoo - land" "cloud - cuckoo - lands"; -- from DictEng -lin cloudberry_N = mkN "cloudberry" ; -lin cloudburst_N = mkN "cloudburst" "cloudbursts"; -- from DictEng -lin clouded_A = mkA "clouded" ; -lin cloudiness_N = mkN "cloudiness" ; -lin clouding_N = mkN "clouding" ; -lin cloudless_A = compoundA (mkA "cloudless"); -- from DictEng -lin cloudlessness_N = mkN "cloudlessness" ; -lin cloudlike_A = mkA "cloudlike" ; -lin cloudy_A = mkA "cloudy" "cloudier"; -- from DictEng -lin clout_N = mkN "clout" "clouts"; -- from DictEng -lin clout_V2 = mkV2 (mkV "clout" "clouts" "clouted" "clouted" "clouting"); -- from DictEng -lin clove_N = mkN "clove" "cloves"; -- from DictEng -lin clove_scented_A = compoundA (mkA "clove scented") ; -lin clove_hitch_N = mkN "clove hitch" "clove hitches"; -- from DictEng -lin cloven_A = mkA "cloven" ; -lin cloven_hoofed_A = compoundA (mkA "cloven hoofed") ; -lin clover_N = mkN "clover" ; -- from DictEng -lin cloverleaf_N = mkN "cloverleaf" "cloverleaves" {- FIXME: guessed plural form -}; -- from DictEng -lin clowder_N = mkN "clowder" ; -lin clown_N = mkN "clown" "clowns"; -- from DictEng -lin clown_V = mkV "clown" "clowns" "clowned" "clowned" "clowning"; -- from DictEng -lin clownish_A = compoundA (mkA "clownish"); -- from DictEng -lin cloy_V = mkV "cloy" "cloys" "cloyed" "cloyed" "cloying"; -- from DictEng -lin cloy_V2 = mkV2 (mkV "cloy" "cloys" "cloyed" "cloyed" "cloying"); -- from DictEng -lin cloying_A = mkA "cloying" ; -lin cloyingly_Adv = mkAdv "cloyingly" ; -lin clozapine_N = mkN "clozapine" ; -lin cloze_A = mkA "cloze" ; -lin club_N = mkN "club" "clubs"; -- from DictEng -lin club_V = mkV "club" "clubs" "clubbed" "clubbed" "clubbing"; -- from DictEng -lin club_V2 = mkV2 (mkV "club" "clubs" "clubbed" "clubbed" "clubbing"); -- from DictEng -lin club_shaped_A = compoundA (mkA "club shaped") ; -lin club_footed_A = compoundA (mkA "club - footed"); -- from DictEng -lin clubbable_A = compoundA (mkA "clubbable"); -- from DictEng -lin clubbing_N = mkN "clubbing" ; -lin clubbish_A = mkA "clubbish" ; -lin clubfoot_N = mkN "clubfoot" "clubfeet" {- FIXME: guessed plural form -}; -- from DictEng -lin clubfooted_A = mkA "clubfooted" ; -lin clubhouse_N = mkN "clubhouse" "clubhouses"; -- from DictEng -lin clubroom_N = mkN "clubroom" ; -lin cluck_N = mkN "cluck" "clucks"; -- from DictEng -lin cluck_V = mkV "cluck" "clucks" "clucked" "clucked" "clucking"; -- from DictEng -lin cluck_V2 = mkV2 (mkV "cluck") ; -lin clue_N = mkN "clue" "clues"; -- from DictEng -lin clueless_A = mkA "clueless" ; -lin clumber_N = mkN "clumber" ; -lin clump_N = mkN "clump" "clumps"; -- from DictEng -lin clump_V = mkV "clump" "clumps" "clumped" "clumped" "clumping"; -- from DictEng -lin clump_V2 = mkV2 (mkV "clump" "clumps" "clumped" "clumped" "clumping"); -- from DictEng -lin clumsily_Adv = mkAdv "clumsily"; -- from DictEng -lin clumsiness_N = mkN "clumsiness" ; -- from DictEng -lin clumsy_A = mkA "clumsy" "clumsier"; -- from DictEng -lin clunch_N = mkN "clunch" ; -lin clunk_N = mkN "clunk" "clunks"; -- from DictEng -lin clunk_V = mkV "clunk" "clunks" "clunked" "clunked" "clunking"; -- from DictEng -lin clunk_V2 = mkV2 (mkV "clunk") ; -lin clunky_A = mkA "clunky" ; -lin clusia_N = mkN "clusia" ; -lin cluster_N = mkN "cluster" "clusters"; -- from DictEng -lin cluster_V = mkV "cluster" "clusters" "clustered" "clustered" "clustering"; -- from DictEng -lin cluster_V2 = mkV2 (mkV "cluster" "clusters" "clustered" "clustered" "clustering"); -- from DictEng -lin clustered_A = mkA "clustered" ; -lin clutch_N = mkN "clutch" "clutches"; -- from DictEng -lin clutch_V = mkV "clutch" "clutches" "clutched" "clutched" "clutching"; -- from DictEng -lin clutch_V2 = mkV2 (mkV "clutch" "clutches" "clutched" "clutched" "clutching"); -- from DictEng -lin clutter_N = mkN "clutter" "clutters"; -- from DictEng -lin clutter_V2 = mkV2 (mkV "clutter" "clutters" "cluttered" "cluttered" "cluttering"); -- from DictEng -lin cluttered_A = mkA "cluttered" ; -lin clypeus_N = mkN "clypeus" ; -lin cm_N = mkN "cm" "cm"; -- from DictEng -lin co_N = mkN "co" ; -- from DictEng -lin co_beneficiary_N = mkN "co beneficiary" ; -lin co_discoverer_N = mkN "co discoverer" ; -lin co_ed_A = compoundA (mkA "co ed") ; -lin co_ed_N = mkN "co - ed" "co - eds"; -- from DictEng -lin co_option_N = mkN "co option" ; -lin co_star_N = mkN "co - star" "co - stars"; -- from DictEng -lin co_author_V2 = mkV2 (mkV "co - author"); -- from DictEng -lin co_ed_N = mkN "co - ed" "co - eds"; -- from DictEng -lin co_edit_V2 = mkV2 (mkV "co - edit"); -- from DictEng -lin co_exist_V = mkV "co - exist"; -- from DictEng -lin co_found_V2 = mkV2 (mkV "co - found"); -- from DictEng -lin co_manage_V2 = mkV2 (mkV "co - manage"); -- from DictEng -lin co_op_N = mkN "co - op" ; -- from DictEng -lin co_opt_V2 = mkV2 (mkV "co - opt" "co - opts" "co - opted" "co - opted" "co - opting"); -- from DictEng -lin co_respondent_N = mkN "co - respondent" "co - respondents"; -- from DictEng -lin co_sponsor_V2 = mkV2 (mkV "co - sponsor"); -- from DictEng -lin co_star_N = mkN "co - star" "co - stars"; -- from DictEng -lin co_star_V = mkV "co - star" "co - stars" "co - starred" "co - starred" "co - starring"; -- from DictEng -lin co_star_V2 = mkV2 (mkV "co - star" "co - stars" "co - starred" "co - starred" "co - starring"); -- from DictEng -lin coach_N = mkN "coach" "coaches"; -- from DictEng -lin coach_V = mkV "coach" "coaches" "coached" "coached" "coaching"; -- from DictEng -lin coach_V2 = mkV2 (mkV "coach" "coaches" "coached" "coached" "coaching"); -- from DictEng -lin coach_builder_N = mkN "coach - builder" "coach - builders"; -- from DictEng -lin coachbuilder_N = mkN "coachbuilder" ; -lin coaching_N = mkN "coaching" ; -lin coachman_N = mkN "coachman" "coachmen" {- FIXME: guessed plural form -}; -- from DictEng -lin coachwhip_N = mkN "coachwhip" ; -lin coadjutor_N = mkN "coadjutor" ; -lin coagulable_A = mkA "coagulable" ; -lin coagulant_N = mkN "coagulant" ; -lin coagulase_N = mkN "coagulase" ; -lin coagulate_A = mkA "coagulate" ; -lin coagulate_V = mkV "coagulate" "coagulates" "coagulated" "coagulated" "coagulating"; -- from DictEng -lin coagulate_V2 = mkV2 (mkV "coagulate" "coagulates" "coagulated" "coagulated" "coagulating"); -- from DictEng -lin coagulated_A = mkA "coagulated" ; -lin coagulation_N = mkN "coagulation" "coagulations"; -- from DictEng -lin coal_N = mkN "coal" "coals"; -- from DictEng -lin coal_V = mkV "coal" "coals" "coaled" "coaled" "coaling"; -- from DictEng -lin coal_V2 = mkV2 (mkV "coal" "coals" "coaled" "coaled" "coaling"); -- from DictEng -lin coal_black_A = compoundA (mkA "coal black") ; -lin coal_fired_A = compoundA (mkA "coal fired") ; -lin coal_gas_N = mkN "coal - gas" ; -- from DictEng -lin coal_hole_N = mkN "coal - hole" "coal - holes"; -- from DictEng -lin coal_house_N = mkN "coal - house" "coal - houses"; -- from DictEng -lin coal_scuttle_N = mkN "coal - scuttle" "coal - scuttles"; -- from DictEng -lin coal_seam_N = mkN "coal - seam" "coal - seams"; -- from DictEng -lin coal_tar_N = mkN "coal - tar" ; -- from DictEng -lin coalbin_N = mkN "coalbin" ; -lin coalesce_V = mkV "coalesce" "coalesces" "coalesced" "coalesced" "coalescing"; -- from DictEng -lin coalescence_N = mkN "coalescence" "coalescences"; -- from DictEng -lin coalescent_A = mkA "coalescent" ; -lin coalface_N = mkN "coalface" "coalfaces"; -- from DictEng -lin coalfield_N = mkN "coalfield" "coalfields"; -- from DictEng -lin coaling_station_N = mkN "coaling - station" "coaling - stations"; -- from DictEng -lin coalition_N = mkN "coalition" "coalitions"; -- from DictEng -lin coalman_N = mkN "coalman" "coalmen" {- FIXME: guessed plural form -}; -- from DictEng -lin coalmine_N = mkN "coalmine" "coalmines"; -- from DictEng -lin coalpit_N = mkN "coalpit" "coalpits"; -- from DictEng -lin coaming_N = mkN "coaming" "coamings"; -- from DictEng -lin coarctate_A = mkA "coarctate" ; -lin coarctation_N = mkN "coarctation" ; -lin coarse_A = mkA "coarse" "coarser"; -- from DictEng -lin coarse_grained_A = compoundA (mkA "coarse grained") ; -lin coarse_haired_A = compoundA (mkA "coarse haired") ; -lin coarsely_Adv = mkAdv "coarsely" ; -lin coarsen_V = mkV "coarsen" "coarsens" "coarsened" "coarsened" "coarsening"; -- from DictEng -lin coarsen_V2 = mkV2 (mkV "coarsen" "coarsens" "coarsened" "coarsened" "coarsening"); -- from DictEng -lin coarsened_A = mkA "coarsened" ; -lin coarseness_N = mkN "coarseness" ; -- from DictEng -lin coast_N = mkN "coast" "coasts"; -- from DictEng -lin coast_V = mkV "coast" "coasts" "coasted" "coasted" "coasting"; -- from DictEng -lin coast_V2 = mkV2 (mkV "coast" "coasts" "coasted" "coasted" "coasting"); -- from DictEng -lin coastal_A = compoundA (mkA "coastal"); -- from DictEng -lin coaster_N = mkN "coaster" "coasters"; -- from DictEng -lin coastguard_N = mkN "coastguard" "coastguards"; -- from DictEng -lin coastguardsman_N = mkN "coastguardsman" ; -lin coastland_N = mkN "coastland" ; -lin coastline_N = mkN "coastline" "coastlines"; -- from DictEng -lin coastward_Adv = mkAdv "coastward" ; -lin coastwise_A = compoundA (mkA "coastwise"); -- from DictEng -lin coastwise_Adv = mkAdv "coastwise"; -- from DictEng -lin coat_N = mkN "coat" "coats"; -- from DictEng -lin coat_V2 = mkV2 (mkV "coat" "coats" "coated" "coated" "coating"); -- from DictEng -lin coat_hanger_N = mkN "coat - hanger" "coat - hangers"; -- from DictEng -lin coatdress_N = mkN "coatdress" ; -lin coated_A = mkA "coated" ; -lin coatee_N = mkN "coatee" "coatees"; -- from DictEng -lin coati_N = mkN "coati" ; -lin coating_N = mkN "coating" "coatings"; -- from DictEng -lin coatrack_N = mkN "coatrack" ; -lin coattail_N = mkN "coattail" ; -lin coauthor_N = mkN "coauthor" ; -lin coax_V = mkV "coax" "coaxes" "coaxed" "coaxed" "coaxing"; -- from DictEng -lin coax_V2 = mkV2 (mkV "coax" "coaxes" "coaxed" "coaxed" "coaxing"); -- from DictEng -lin coaxial_A = mkA "coaxial" ; -lin coaxing_A = mkA "coaxing" ; -lin coaxing_N = mkN "coaxing" "coaxings"; -- from DictEng -lin coaxingly_Adv = mkAdv "coaxingly"; -- from DictEng -lin cob_N = mkN "cob" "cobs"; -- from DictEng -lin cob_nut_N = mkN "cob - nut" "cob - nuts"; -- from DictEng -lin cobalt_N = mkN "cobalt" ; -- from DictEng -lin cobaltite_N = mkN "cobaltite" ; -lin cobber_N = mkN "cobber" "cobbers"; -- from DictEng -lin cobble_N = mkN "cobble" "cobbles"; -- from DictEng -lin cobble_V2 = mkV2 (mkV "cobble" "cobbles" "cobbled" "cobbled" "cobbling"); -- from DictEng -lin cobbler_N = mkN "cobbler" "cobblers"; -- from DictEng -lin cobblers_N = mkN "cobblers" ; -lin cobblestone_N = mkN "cobblestone" "cobblestones"; -- from DictEng -lin cobia_N = mkN "cobia" ; -lin cobnut_N = mkN "cobnut" ; -lin cobra_N = mkN "cobra" "cobras"; -- from DictEng -lin cobweb_N = mkN "cobweb" "cobwebs"; -- from DictEng -lin cobwebby_A = mkA "cobwebby" ; -lin coca_N = mkN "coca" ; -lin coca_cola_N = mkN "coca - cola" "coca - colas"; -- from DictEng -lin cocaine_N = mkN "cocaine" ; -- from DictEng -lin cocarboxylase_N = mkN "cocarboxylase" ; -lin coccal_A = mkA "coccal" ; -lin coccidioidomycosis_N = mkN "coccidioidomycosis" ; -lin coccidiosis_N = mkN "coccidiosis" ; -lin coccidium_N = mkN "coccidium" ; -lin coccobacillus_N = mkN "coccobacillus" ; -lin coccoid_A = mkA "coccoid" ; -lin coccus_N = mkN "coccus" ; -lin coccygeal_A = mkA "coccygeal" ; -lin coccyx_N = mkN "coccyx" ; -lin cochin_N = mkN "cochin" ; -lin cochineal_N = mkN "cochineal" ; -- from DictEng -lin cochlea_N = mkN "cochlea" "cochleas"; -- from DictEng -lin cochlear_A = mkA "cochlear" ; -lin cock_N = mkN "cock" "cocks"; -- from DictEng -lin cock_V2 = mkV2 (mkV "cock" "cocks" "cocked" "cocked" "cocking"); -- from DictEng -lin cock_a_doodle_doo_N = mkN "cock - a - doodle - doo" "cock - a - doodle - doos"; -- from DictEng -lin cock_a_leekie_N = mkN "cock a leekie" ; -lin cock_a_doodle_doo_N = mkN "cock - a - doodle - doo" "cock - a - doodle - doos"; -- from DictEng -lin cock_a_hoop_A = compoundA (mkA "cock - a - hoop"); -- from DictEng -lin cock_a_hoop_Adv = mkAdv "cock - a - hoop"; -- from DictEng -lin cock_crow_N = mkN "cock - crow" "cock - crows"; -- from DictEng -lin cockade_N = mkN "cockade" "cockades"; -- from DictEng -lin cockamamie_A = mkA "cockamamie" ; -lin cockateel_N = mkN "cockateel" ; -lin cockatoo_N = mkN "cockatoo" "cockatoos"; -- from DictEng -lin cockatrice_N = mkN "cockatrice" ; -lin cockchafer_N = mkN "cockchafer" "cockchafers"; -- from DictEng -lin cocker_N = mkN "cocker" "cockers"; -- from DictEng -lin cockerel_N = mkN "cockerel" "cockerels"; -- from DictEng -lin cockeyed_A = compoundA (mkA "cockeyed"); -- from DictEng -lin cockfight_N = mkN "cockfight" ; -lin cockfighting_N = mkN "cockfighting" ; -- from DictEng -lin cockhorse_N = mkN "cockhorse" "cockhorses"; -- from DictEng -lin cockle_N = mkN "cockle" "cockles"; -- from DictEng -lin cocklebur_N = mkN "cocklebur" ; -lin cockleshell_N = mkN "cockleshell" "cockleshells"; -- from DictEng -lin cockloft_N = mkN "cockloft" ; -lin cockney_A = compoundA (mkA "cockney"); -- from DictEng -lin cockney_N = mkN "cockney" "cockneys"; -- from DictEng -lin cockpit_N = mkN "cockpit" "cockpits"; -- from DictEng -lin cockroach_N = mkN "cockroach" "cockroaches"; -- from DictEng -lin cockscomb_N = mkN "cockscomb" "cockscombs"; -- from DictEng -lin cockspur_N = mkN "cockspur" ; -lin cocksucker_N = mkN "cocksucker" ; -lin cocksure_A = compoundA (mkA "cocksure"); -- from DictEng -lin cocktail_N = mkN "cocktail" "cocktails"; -- from DictEng -lin cockup_N = mkN "cockup" "cockups"; -- from DictEng -lin cocky_A = mkA "cocky" "cockier"; -- from DictEng -lin coco_N = mkN "coco" "cocos"; -- from DictEng -lin cocoa_N = mkN "cocoa" ; -- from DictEng -lin cocobolo_N = mkN "cocobolo" ; -lin coconut_N = mkN "coconut" "coconuts"; -- from DictEng -lin cocoon_N = mkN "cocoon" "cocoons"; -- from DictEng -lin cocoon_V2 = mkV2 (mkV "cocoon" "cocoons" "cocooned" "cocooned" "cocooning"); -- from DictEng -lin cocooning_N = mkN "cocooning" ; -lin cocotte_N = mkN "cocotte" "cocottes"; -- from DictEng -lin cocozelle_N = mkN "cocozelle" ; -lin cocuswood_N = mkN "cocuswood" ; -lin cod_N = mkN "cod" "cods"; -- from DictEng -lin cod_V = mkV "cod" "cods" "codded" "codded" "codding"; -- from DictEng -lin cod_V2 = mkV2 (mkV "cod" "cods" "codded" "codded" "codding"); -- from DictEng -lin cod_liver_oil_N = mkN "cod - liver oil" ; -- from DictEng -lin coda_N = mkN "coda" "codas"; -- from DictEng -lin coddle_V2 = mkV2 (mkV "coddle" "coddles" "coddled" "coddled" "coddling"); -- from DictEng -lin code_N = mkN "code" "codes"; -- from DictEng -lin code_V2 = mkV2 (mkV "code" "codes" "coded" "coded" "coding"); -- from DictEng -lin codefendant_N = mkN "codefendant" ; -lin codeine_N = mkN "codeine" ; -- from DictEng -lin codetalker_N = mkN "codetalker" ; -lin codex_N = mkN "codex" "codices" {- FIXME: guessed plural form -}; -- from DictEng -lin codfish_N = mkN "codfish" "codfish"; -- from DictEng -lin codger_N = mkN "codger" "codgers"; -- from DictEng -lin codicil_N = mkN "codicil" "codicils"; -- from DictEng -lin codification_N = mkN "codification" "codifications"; -- from DictEng -lin codified_A = mkA "codified" ; -lin codify_V2 = mkV2 (mkV "codify" "codifies" "codified" "codified" "codifying"); -- from DictEng -lin codling_N = mkN "codling" "codlings"; -- from DictEng -lin codon_N = mkN "codon" ; -lin codpiece_N = mkN "codpiece" "codpieces"; -- from DictEng -lin coeducation_N = mkN "coeducation" ; -- from DictEng -lin coeducational_A = compoundA (mkA "coeducational"); -- from DictEng -lin coefficient_N = mkN "coefficient" "coefficients"; -- from DictEng -lin coelacanth_N = mkN "coelacanth" ; -lin coelenterate_N = mkN "coelenterate" ; -lin coelenteron_N = mkN "coelenteron" ; -lin coeliac_A = mkA "coeliac" ; -lin coelogyne_N = mkN "coelogyne" ; -lin coelophysis_N = mkN "coelophysis" ; -lin coelostat_N = mkN "coelostat" ; -lin coenzyme_N = mkN "coenzyme" ; -lin coenzyme_a_PN = mkPN "coenzyme A" ; -lin coequal_A = mkA "coequal" ; -lin coerce_V2 = mkV2 (mkV "coerce" "coerces" "coerced" "coerced" "coercing"); -- from DictEng -lin coercion_N = mkN "coercion" ; -- from DictEng -lin coercive_A = compoundA (mkA "coercive"); -- from DictEng -lin coetaneous_A = mkA "coetaneous" ; -lin coeval_A = compoundA (mkA "coeval"); -- from DictEng -lin coeval_N = mkN "coeval" "coevals"; -- from DictEng -lin coevals_N = mkN "coevals" ; -lin coexist_V = mkV "coexist" "coexists" "coexisted" "coexisted" "coexisting"; -- from DictEng -lin coexistence_N = mkN "coexistence" ; -- from DictEng -lin coexistent_A = mkA "coexistent" ; -lin coextension_N = mkN "coextension" ; -lin coextensive_A = mkA "coextensive" ; -lin coextrude_V2 = mkV2 (mkV "coextrude"); -- from DictEng -lin cofactor_N = mkN "cofactor" ; -lin coffee_N = mkN "coffee" "coffees"; -- from DictEng -lin coffee_house_N = mkN "coffee - house" "coffee - houses"; -- from DictEng -lin coffee_mill_N = mkN "coffee - mill" "coffee - mills"; -- from DictEng -lin coffee_stall_N = mkN "coffee - stall" "coffee - stalls"; -- from DictEng -lin coffeeberry_N = mkN "coffeeberry" ; -lin coffeecake_N = mkN "coffeecake" ; -lin coffeepot_N = mkN "coffeepot" ; -lin coffer_N = mkN "coffer" "coffers"; -- from DictEng -lin coffer_dam_N = mkN "coffer - dam" "coffer - dams"; -- from DictEng -lin coffin_N = mkN "coffin" "coffins"; -- from DictEng -lin cofounder_N = mkN "cofounder" ; -lin cog_N = mkN "cog" "cogs"; -- from DictEng -lin cogency_N = mkN "cogency" ; -- from DictEng -lin cogent_A = compoundA (mkA "cogent"); -- from DictEng -lin cogged_A = mkA "cogged" ; -lin cogitable_A = mkA "cogitable" ; -lin cogitate_V = mkV "cogitate" "cogitates" "cogitated" "cogitated" "cogitating"; -- from DictEng -lin cogitate_V2 = mkV2 (mkV "cogitate" "cogitates" "cogitated" "cogitated" "cogitating"); -- from DictEng -lin cogitation_N = mkN "cogitation" ; -- from DictEng -lin cogitative_A = mkA "cogitative" ; -lin cognac_N = mkN "cognac" ; -- from DictEng -lin cognate_A = compoundA (mkA "cognate"); -- from DictEng -lin cognate_N = mkN "cognate" "cognates"; -- from DictEng -lin cognition_N = mkN "cognition" ; -- from DictEng -lin cognitive_A = mkA "cognitive" ; -lin cognitively_Adv = mkAdv "cognitively" ; -lin cognizance_N = mkN "cognizance" ; -- from DictEng -lin cognizant_A = compoundA (mkA "cognizant"); -- from DictEng -lin cognomen_N = mkN "cognomen" "cognomens"; -- from DictEng -lin cogwheel_N = mkN "cogwheel" "cogwheels"; -- from DictEng -lin cohabit_V = mkV "cohabit" "cohabits" "cohabited" "cohabited" "cohabiting"; -- from DictEng -lin cohabitation_N = mkN "cohabitation" "cohabitations"; -- from DictEng -lin cohere_V = mkV "cohere" "coheres" "cohered" "cohered" "cohering"; -- from DictEng -lin coherence_N = mkN "coherence" ; -- from DictEng -lin coherency_N = mkN "coherency" ; -- from DictEng -lin coherent_A = compoundA (mkA "coherent"); -- from DictEng -lin coherently_Adv = mkAdv "coherently" ; -lin cohesion_N = mkN "cohesion" ; -- from DictEng -lin cohesive_A = compoundA (mkA "cohesive"); -- from DictEng -lin cohesiveness_N = mkN "cohesiveness" ; -lin coho_N = mkN "coho" ; -lin cohort_N = mkN "cohort" "cohorts"; -- from DictEng -lin coif_N = mkN "coif" "coifs"; -- from DictEng -lin coiffeur_N = mkN "coiffeur" "coiffeurs"; -- from DictEng -lin coiffeuse_N = mkN "coiffeuse" ; -lin coiffure_N = mkN "coiffure" "coiffures"; -- from DictEng -lin coign_N = mkN "coign" "coigns"; -- from DictEng -lin coil_N = mkN "coil" "coils"; -- from DictEng -lin coil_V = mkV "coil" "coils" "coiled" "coiled" "coiling"; -- from DictEng -lin coil_V2 = mkV2 (mkV "coil" "coils" "coiled" "coiled" "coiling"); -- from DictEng -lin coiled_A = mkA "coiled" ; -lin coiling_A = mkA "coiling" ; -lin coin_N = mkN "coin" "coins"; -- from DictEng -lin coin_V2 = mkV2 (mkV "coin" "coins" "coined" "coined" "coining"); -- from DictEng -lin coin_operated_A = compoundA (mkA "coin operated") ; -lin coinage_N = mkN "coinage" "coinages"; -- from DictEng -lin coincide_V = mkV "coincide" "coincides" "coincided" "coincided" "coinciding"; -- from DictEng -lin coincidence_N = mkN "coincidence" "coincidences"; -- from DictEng -lin coincident_A = compoundA (mkA "coincident"); -- from DictEng -lin coincidental_A = compoundA (mkA "coincidental"); -- from DictEng -lin coincidentally_Adv = mkAdv "coincidentally" ; -lin coiner_N = mkN "coiner" "coiners"; -- from DictEng -lin coinsurance_N = mkN "coinsurance" ; -lin coir_N = mkN "coir" ; -- from DictEng -lin coital_A = mkA "coital" ; -lin coition_N = mkN "coition" ; -- from DictEng -lin coitus_N = mkN "coitus" ; -- from DictEng -lin coke_N = mkN "coke" "cokes"; -- from DictEng -lin coke_V2 = mkV2 (mkV "coke" "cokes" "coked" "coked" "coking"); -- from DictEng -lin col_N = mkN "col" "cols"; -- from DictEng -lin cola_N = mkN "cola" "colas"; -- from DictEng -lin colander_N = mkN "colander" "colanders"; -- from DictEng -lin colchicine_N = mkN "colchicine" ; -lin cold_A = mkA "cold" "colder"; -- from DictEng -lin cold_N = mkN "cold" "colds"; -- from DictEng -lin cold_blooded_A = compoundA (mkA "cold - blooded"); -- from DictEng -lin cold_bloodedly_Adv = mkAdv "cold bloodedly" ; -lin cold_temperate_A = compoundA (mkA "cold temperate") ; -lin cold_blooded_A = compoundA (mkA "cold - blooded"); -- from DictEng -lin cold_hearted_A = compoundA (mkA "cold - hearted"); -- from DictEng -lin cold_shoulder_V2 = mkV2 (mkV "cold - shoulder" "cold - shoulders" "cold - shouldered" "cold - shouldered" "cold - shouldering"); -- from DictEng -lin cold_sober_A = compoundA (mkA "cold sober") ; -lin coldcream_V2 = mkV2 (mkV "coldcream") ; -lin coldhearted_A = mkA "coldhearted" ; -lin coldly_Adv = mkAdv "coldly" ; -lin coldness_N = mkN "coldness" ; -- from DictEng -lin coleslaw_N = mkN "coleslaw" ; -- from DictEng -lin coleus_N = mkN "coleus" ; -lin colic_N = mkN "colic" ; -- from DictEng -lin colicky_A = mkA "colicky" ; -lin colicroot_N = mkN "colicroot" ; -lin coliphage_N = mkN "coliphage" ; -lin colitis_N = mkN "colitis" ; -- from DictEng -lin collaborate_V = mkV "collaborate" "collaborates" "collaborated" "collaborated" "collaborating"; -- from DictEng -lin collaboration_N = mkN "collaboration" ; -- from DictEng -lin collaborationist_N = mkN "collaborationist" "collaborationists"; -- from DictEng -lin collaborative_A = mkA "collaborative" ; -lin collaborator_N = mkN "collaborator" "collaborators"; -- from DictEng -lin collage_N = mkN "collage" "collages"; -- from DictEng -lin collagen_N = mkN "collagen" ; -lin collagenase_N = mkN "collagenase" ; -lin collagenous_A = mkA "collagenous" ; -lin collapsable_A = compoundA (mkA "collapsable"); -- from DictEng -lin collapse_N = mkN "collapse" "collapses"; -- from DictEng -lin collapse_V = mkV "collapse" "collapses" "collapsed" "collapsed" "collapsing"; -- from DictEng -lin collapse_V2 = mkV2 (mkV "collapse" "collapses" "collapsed" "collapsed" "collapsing"); -- from DictEng -lin collapsible_A = compoundA (mkA "collapsible"); -- from DictEng -lin collar_N = mkN "collar" "collars"; -- from DictEng -lin collar_V2 = mkV2 (mkV "collar" "collars" "collared" "collared" "collaring"); -- from DictEng -lin collarbone_N = mkN "collarbone" "collarbones"; -- from DictEng -lin collard_N = mkN "collard" ; -lin collards_N = mkN "collards" ; -lin collarless_A = mkA "collarless" ; -lin collate_V2 = mkV2 (mkV "collate" "collates" "collated" "collated" "collating"); -- from DictEng -lin collateral_A = compoundA (mkA "collateral"); -- from DictEng -lin collateral_N = mkN "collateral" ; -- from DictEng -lin collation_N = mkN "collation" "collations"; -- from DictEng -lin colleague_N = mkN "colleague" "colleagues"; -- from DictEng -lin collect_A = compoundA (mkA "collect"); -- from DictEng -lin collect_Adv = mkAdv "collect"; -- from DictEng -lin collect_N = mkN "collect" "collects"; -- from DictEng -lin collect_V = mkV "collect" "collects" "collected" "collected" "collecting"; -- from DictEng -lin collect_V2 = mkV2 (mkV "collect" "collects" "collected" "collected" "collecting"); -- from DictEng -lin collected_A = compoundA (mkA "collected"); -- from DictEng -lin collectedly_Adv = mkAdv "collectedly" ; -lin collectible_A = mkA "collectible" ; -lin collectible_N = mkN "collectible" ; -lin collection_N = mkN "collection" "collections"; -- from DictEng -lin collective_A = compoundA (mkA "collective"); -- from DictEng -lin collective_N = mkN "collective" ; -lin collectivism_N = mkN "collectivism" ; -lin collectivist_A = mkA "collectivist" ; -lin collectivist_N = mkN "collectivist" ; -lin collectivization_N = mkN "collectivization" "collectivizations"; -- from DictEng -lin collectivize_V2 = mkV2 (mkV "collectivize" "collectivizes" "collectivized" "collectivized" "collectivizing"); -- from DictEng -lin collectivized_A = mkA "collectivized" ; -lin collector_N = mkN "collector" "collectors"; -- from DictEng -lin colleen_N = mkN "colleen" "colleens"; -- from DictEng -lin college_N = mkN "college" "colleges"; -- from DictEng -lin collegial_A = mkA "collegial" ; -lin collegian_N = mkN "collegian" ; -lin collegiate_A = compoundA (mkA "collegiate"); -- from DictEng -lin collembolan_N = mkN "collembolan" ; -lin collet_N = mkN "collet" ; -lin collide_V = mkV "collide" "collides" "collided" "collided" "colliding"; -- from DictEng -lin collider_N = mkN "collider" ; -lin collie_N = mkN "collie" "collies"; -- from DictEng -lin collier_N = mkN "collier" "colliers"; -- from DictEng -lin colliery_N = mkN "colliery" "collieries"; -- from DictEng -lin colligation_N = mkN "colligation" ; -lin collimation_N = mkN "collimation" ; -lin collimator_N = mkN "collimator" ; -lin collinear_A = mkA "collinear" ; -lin collins_N = mkN "collins" ; -lin collision_N = mkN "collision" "collisions"; -- from DictEng -lin collocate_V = mkV "collocate" "collocates" "collocated" "collocated" "collocating"; -- from DictEng -lin collocation_N = mkN "collocation" "collocations"; -- from DictEng -lin collodion_N = mkN "collodion" ; -lin colloid_N = mkN "colloid" ; -lin colloidal_A = mkA "colloidal" ; -lin colloidally_Adv = mkAdv "colloidally" ; -lin colloquial_A = compoundA (mkA "colloquial"); -- from DictEng -lin colloquialism_N = mkN "colloquialism" "colloquialisms"; -- from DictEng -lin colloquially_Adv = mkAdv "colloquially" ; -lin colloquium_N = mkN "colloquium" ; -lin colloquy_N = mkN "colloquy" "colloquies"; -- from DictEng -lin collotype_N = mkN "collotype" ; -lin collude_V = mkV "collude" ; -lin collusion_N = mkN "collusion" ; -- from DictEng -lin collusive_A = compoundA (mkA "collusive"); -- from DictEng -lin colobus_N = mkN "colobus" ; -lin cologne_N = mkN "cologne" ; -lin colombian_A = compoundA (mkA "colombian"); -- from DictEng -lin colombian_N = mkN "colombian" "colombians"; -- from DictEng -lin colon_N = mkN "colon" "colons"; -- from DictEng -lin colonel_N = mkN "colonel" "colonels"; -- from DictEng -lin colonial_A = compoundA (mkA "colonial"); -- from DictEng -lin colonial_N = mkN "colonial" "colonials"; -- from DictEng -lin colonialism_N = mkN "colonialism" ; -- from DictEng -lin colonialist_N = mkN "colonialist" "colonialists"; -- from DictEng -lin colonic_A = mkA "colonic" ; -lin colonist_N = mkN "colonist" "colonists"; -- from DictEng -lin colonization_N = mkN "colonization" ; -- from DictEng -lin colonize_V2 = mkV2 (mkV "colonize" "colonizes" "colonized" "colonized" "colonizing"); -- from DictEng -lin colonized_A = mkA "colonized" ; -lin colonizer_N = mkN "colonizer" "colonizers"; -- from DictEng -lin colonnade_N = mkN "colonnade" "colonnades"; -- from DictEng -lin colonnaded_A = compoundA (mkA "colonnaded"); -- from DictEng -lin colonoscope_N = mkN "colonoscope" ; -lin colonoscopy_N = mkN "colonoscopy" ; -lin colony_N = mkN "colony" "colonies"; -- from DictEng -lin colophon_N = mkN "colophon" ; -lin colophony_N = mkN "colophony" ; -lin color_A = mkA "color" ; -lin color_N = mkN "color" ; -lin color_V2 = mkV2 (mkV "color"); -- from DictEng -lin color_blind_A = compoundA (mkA "color blind") ; -lin color_code_V2 = mkV2 (mkV "color - code"); -- from DictEng -lin coloration_N = mkN "coloration" ; -lin coloratura_N = mkN "coloratura" ; -- from DictEng -lin colorcast_N = mkN "colorcast" ; -lin colorectal_A = mkA "colorectal" ; -lin colored_A = mkA "colored" ; -lin colorfast_A = mkA "colorfast" ; -lin colorful_A = mkA "colorful" ; -lin colorimeter_N = mkN "colorimeter" ; -lin colorimetric_A = mkA "colorimetric" ; -lin colorimetry_N = mkN "colorimetry" ; -lin coloring_N = mkN "coloring" ; -lin colorist_N = mkN "colorist" ; -lin colorless_A = mkA "colorless" ; -lin colorlessness_N = mkN "colorlessness" ; -lin colors_N = mkN "colors" ; -lin colossal_A = compoundA (mkA "colossal"); -- from DictEng -lin colossus_N = mkN "colossus" "colossi" {- FIXME: guessed plural form -}; -- from DictEng -lin colostomy_N = mkN "colostomy" ; -lin colostrum_N = mkN "colostrum" ; -lin colour_N = mkN "colour" "colours"; -- from DictEng -lin colour_V = mkV "colour" "colours" "coloured" "coloured" "colouring"; -- from DictEng -lin colour_V2 = mkV2 (mkV "colour" "colours" "coloured" "coloured" "colouring"); -- from DictEng -lin colour_bar_N = mkN "colour - bar" "colour - bars"; -- from DictEng -lin colour_blind_A = compoundA (mkA "colour - blind"); -- from DictEng -lin colour_wash_N = mkN "colour - wash" "colour - washes"; -- from DictEng -lin coloured_A = compoundA (mkA "coloured"); -- from DictEng -lin colourful_A = compoundA (mkA "colourful"); -- from DictEng -lin colouring_N = mkN "colouring" ; -- from DictEng -lin colourless_A = compoundA (mkA "colourless"); -- from DictEng -lin colpitis_N = mkN "colpitis" ; -lin colpocele_N = mkN "colpocele" ; -lin colpocystitis_N = mkN "colpocystitis" ; -lin colpoxerosis_N = mkN "colpoxerosis" ; -lin colt_N = mkN "colt" "colts"; -- from DictEng -lin colter_N = mkN "colter" ; -lin coltish_A = compoundA (mkA "coltish"); -- from DictEng -lin coltsfoot_N = mkN "coltsfoot" ; -lin columbarium_N = mkN "columbarium" ; -lin columbine_N = mkN "columbine" "columbines"; -- from DictEng -lin columbite_tantalite_N = mkN "columbite tantalite" ; -lin columbium_N = mkN "columbium" ; -lin columbo_N = mkN "columbo" ; -lin columella_N = mkN "columella" ; -lin column_N = mkN "column" "columns"; -- from DictEng -lin columnar_A = mkA "columnar" ; -lin columnea_N = mkN "columnea" ; -lin columned_A = mkA "columned" ; -lin columniation_N = mkN "columniation" ; -lin columniform_A = mkA "columniform" ; -lin columnist_N = mkN "columnist" "columnists"; -- from DictEng -lin coma_N = mkN "coma" "comas"; -- from DictEng -lin comate_A = mkA "comate" ; -lin comatose_A = compoundA (mkA "comatose"); -- from DictEng -lin comb_N = mkN "comb" "combs"; -- from DictEng -lin comb_V = mkV "comb" "combs" "combed" "combed" "combing"; -- from DictEng -lin comb_V2 = mkV2 (mkV "comb" "combs" "combed" "combed" "combing"); -- from DictEng -lin comb_out_N = mkN "comb - out" "comb - outs"; -- from DictEng -lin comb_out_N = mkN "comb - out" "comb - outs"; -- from DictEng -lin combat_N = mkN "combat" "combats"; -- from DictEng -lin combat_V = mkV "combat" "combats" "combated" "combated" "combating"; -- from DictEng -lin combat_V2 = mkV2 (mkV "combat" "combats" "combated" "combated" "combating"); -- from DictEng -lin combatant_A = compoundA (mkA "combatant"); -- from DictEng -lin combatant_N = mkN "combatant" "combatants"; -- from DictEng -lin combative_A = compoundA (mkA "combative"); -- from DictEng -lin combatively_Adv = mkAdv "combatively" ; -lin combativeness_N = mkN "combativeness" ; -lin combed_A = mkA "combed" ; -lin comber_N = mkN "comber" ; -lin combinable_A = mkA "combinable" ; -lin combination_N = mkN "combination" "combinations"; -- from DictEng -lin combination_lock_N = mkN "combination - lock" "combination - locks"; -- from DictEng -lin combinative_A = mkA "combinative" ; -lin combinatorial_A = mkA "combinatorial" ; -lin combine_N = mkN "combine" "combines"; -- from DictEng -lin combine_V = mkV "combine" "combines" "combined" "combined" "combining"; -- from DictEng -lin combine_V2 = mkV2 (mkV "combine" "combines" "combined" "combined" "combining"); -- from DictEng -lin combine_V2V = mkV2V (mkV "combine" "combines" "combined" "combined" "combining") noPrep to_Prep ; -- from DictEng -lin combine_VV = mkVV (mkV "combine" "combines" "combined" "combined" "combining"); -- from DictEng -lin combined_A = mkA "combined" ; -lin combining_N = mkN "combining" ; -lin combretum_N = mkN "combretum" ; -lin comburent_A = mkA "comburent" ; -lin combustibility_N = mkN "combustibility" ; -lin combustible_A = compoundA (mkA "combustible"); -- from DictEng -lin combustible_N = mkN "combustible" "combustibles"; -- from DictEng -lin combustion_N = mkN "combustion" ; -- from DictEng -lin come_V = IrregEng.come_V; -- from DictEng -lin come_V2 = mkV2 (IrregEng.come_V); -- from DictEng -lin come_VA = mkVA (IrregEng.come_V); -- from DictEng -lin come_VS = mkVS (IrregEng.come_V); -- from DictEng -lin come_VV = mkVV (IrregEng.come_V); -- from DictEng -lin come_at_able_A = compoundA (mkA "come - at - able"); -- from DictEng -lin come_at_able_A = compoundA (mkA "come - at - able"); -- from DictEng -lin come_hell_or_high_water_Adv = mkAdv "come hell or high water" ; -lin come_on_N = mkN "come - on" "come - ons"; -- from DictEng -lin comeback_N = mkN "comeback" "comebacks"; -- from DictEng -lin comedian_N = mkN "comedian" "comedians"; -- from DictEng -lin comedienne_N = mkN "comedienne" "comediennes"; -- from DictEng -lin comedown_N = mkN "comedown" "comedowns"; -- from DictEng -lin comedy_N = mkN "comedy" "comedies"; -- from DictEng -lin comeliness_N = mkN "comeliness" ; -- from DictEng -lin comely_A = mkA "comely" "comelier"; -- from DictEng -lin comer_N = mkN "comer" "comers"; -- from DictEng -lin comestible_N = mkN "comestible" "comestibles"; -- from DictEng -lin comet_N = mkN "comet" "comets"; -- from DictEng -lin comet_like_A = compoundA (mkA "comet like") ; -lin cometary_A = mkA "cometary" ; -lin comfit_N = mkN "comfit" "comfits"; -- from DictEng -lin comfort_N = mkN "comfort" "comforts"; -- from DictEng -lin comfort_V2 = mkV2 (mkV "comfort" "comforts" "comforted" "comforted" "comforting"); -- from DictEng -lin comfortable_A = compoundA (mkA "comfortable"); -- from DictEng -lin comfortableness_N = mkN "comfortableness" ; -lin comfortably_Adv = mkAdv "comfortably" ; -lin comforted_A = mkA "comforted" ; -lin comforter_N = mkN "comforter" "comforters"; -- from DictEng -lin comforting_A = mkA "comforting" ; -lin comfortingly_Adv = mkAdv "comfortingly"; -- from DictEng -lin comfortless_A = compoundA (mkA "comfortless"); -- from DictEng -lin comforts_N = mkN "comforts" ; -lin comfrey_N = mkN "comfrey" ; -- from DictEng -lin comfy_A = mkA "comfy" "comfier"; -- from DictEng -lin comic_A = compoundA (mkA "comic"); -- from DictEng -lin comic_N = mkN "comic" "comics"; -- from DictEng -lin comical_A = compoundA (mkA "comical"); -- from DictEng -lin comicality_N = mkN "comicality" ; -lin comically_Adv = mkAdv "comically" ; -lin coming_A = compoundA (mkA "coming"); -- from DictEng -lin coming_N = mkN "coming" "comings"; -- from DictEng -lin comity_N = mkN "comity" ; -- from DictEng -lin comma_N = mkN "comma" "commas"; -- from DictEng -lin command_N = mkN "command" "commands"; -- from DictEng -lin command_V = mkV "command" "commands" "commanded" "commanded" "commanding"; -- from DictEng -lin command_V2 = mkV2 (mkV "command" "commands" "commanded" "commanded" "commanding"); -- from DictEng -lin commandant_N = mkN "commandant" "commandants"; -- from DictEng -lin commandeer_V2 = mkV2 (mkV "commandeer" "commandeers" "commandeered" "commandeered" "commandeering"); -- from DictEng -lin commander_N = mkN "commander" "commanders"; -- from DictEng -lin commandership_N = mkN "commandership" ; -lin commanding_A = compoundA (mkA "commanding"); -- from DictEng -lin commandment_N = mkN "commandment" "commandments"; -- from DictEng -lin commando_N = mkN "commando" "commandos"; -- from DictEng -lin commelina_N = mkN "commelina" ; -lin commemorate_V2 = mkV2 (mkV "commemorate" "commemorates" "commemorated" "commemorated" "commemorating"); -- from DictEng -lin commemoration_N = mkN "commemoration" "commemorations"; -- from DictEng -lin commemorative_A = compoundA (mkA "commemorative"); -- from DictEng -lin commemorative_N = mkN "commemorative" ; -lin commence_V = mkV "commence" "commences" "commenced" "commenced" "commencing"; -- from DictEng -lin commence_V2 = mkV2 (mkV "commence" "commences" "commenced" "commenced" "commencing"); -- from DictEng -lin commencement_N = mkN "commencement" "commencements"; -- from DictEng -lin commend_V2 = mkV2 (mkV "commend" "commends" "commended" "commended" "commending"); -- from DictEng -lin commendable_A = compoundA (mkA "commendable"); -- from DictEng -lin commendation_N = mkN "commendation" "commendations"; -- from DictEng -lin commensal_A = mkA "commensal" ; -lin commensal_N = mkN "commensal" ; -lin commensalism_N = mkN "commensalism" ; -lin commensally_Adv = mkAdv "commensally" ; -lin commensurable_A = compoundA (mkA "commensurable"); -- from DictEng -lin commensurate_A = compoundA (mkA "commensurate"); -- from DictEng -lin commensurateness_N = mkN "commensurateness" ; -lin comment_N = mkN "comment" "comments"; -- from DictEng -lin comment_V = mkV "comment" "comments" "commented" "commented" "commenting"; -- from DictEng -lin comment_V2 = mkV2 (mkV "comment" "comments" "commented" "commented" "commenting"); -- from DictEng -lin comment_VS = mkVS (mkV "comment" "comments" "commented" "commented" "commenting"); -- from DictEng -lin commentary_N = mkN "commentary" "commentaries"; -- from DictEng -lin commentate_V = mkV "commentate" "commentates" "commentated" "commentated" "commentating"; -- from DictEng -lin commentator_N = mkN "commentator" "commentators"; -- from DictEng -lin commerce_N = mkN "commerce" ; -- from DictEng -lin commercial_A = compoundA (mkA "commercial"); -- from DictEng -lin commercial_N = mkN "commercial" "commercials"; -- from DictEng -lin commercialism_N = mkN "commercialism" ; -- from DictEng -lin commercialization_N = mkN "commercialization" ; -lin commercialize_V2 = mkV2 (mkV "commercialize" "commercializes" "commercialized" "commercialized" "commercializing"); -- from DictEng -lin commercialized_A = mkA "commercialized" ; -lin commercially_Adv = mkAdv "commercially" ; -lin commination_N = mkN "commination" "comminations"; -- from DictEng -lin comminatory_A = compoundA (mkA "comminatory"); -- from DictEng -lin commingle_V = mkV "commingle" "commingles" "commingled" "commingled" "commingling"; -- from DictEng -lin commingle_V2 = mkV2 (mkV "commingle" "commingles" "commingled" "commingled" "commingling"); -- from DictEng -lin commiserate_V = mkV "commiserate" "commiserates" "commiserated" "commiserated" "commiserating"; -- from DictEng -lin commiseration_N = mkN "commiseration" "commiserations"; -- from DictEng -lin commiserative_A = mkA "commiserative" ; -lin commissar_N = mkN "commissar" "commissars"; -- from DictEng -lin commissariat_N = mkN "commissariat" "commissariats"; -- from DictEng -lin commissary_N = mkN "commissary" "commissaries"; -- from DictEng -lin commission_N = mkN "commission" "commissions"; -- from DictEng -lin commission_V2 = mkV2 (mkV "commission" "commissions" "commissioned" "commissioned" "commissioning"); -- from DictEng -lin commission_V2V = mkV2V (mkV "commission") noPrep to_Prep ; -- from DictEng -lin commissionaire_N = mkN "commissionaire" "commissionaires"; -- from DictEng -lin commissioned_A = compoundA (mkA "commissioned"); -- from DictEng -lin commissioner_N = mkN "commissioner" "commissioners"; -- from DictEng -lin commissure_N = mkN "commissure" ; -lin commit_V2 = mkV2 (mkV "commit" "commits" "committed" "committed" "committing"); -- from DictEng -lin commit_V2V = mkV2V (mkV "commit") noPrep to_Prep ; -- from DictEng -lin commital_N = mkN "commital" "commitals"; -- from DictEng -lin commitment_N = mkN "commitment" "commitments"; -- from DictEng -lin committed_A = mkA "committed" ; -lin committedness_N = mkN "committedness" ; -lin committee_N = mkN "committee" "committees"; -- from DictEng -lin committeeman_N = mkN "committeeman" ; -lin committeewoman_N = mkN "committeewoman" ; -lin commode_N = mkN "commode" "commodes"; -- from DictEng -lin commodious_A = compoundA (mkA "commodious"); -- from DictEng -lin commodity_N = mkN "commodity" "commodities"; -- from DictEng -lin commodore_N = mkN "commodore" "commodores"; -- from DictEng -lin common_A = mkA "common" "commoner"; -- from DictEng -lin common_N = mkN "common" "commons"; -- from DictEng -lin common_law_A = compoundA (mkA "common law") ; -lin common_american_shad_PN = mkPN "common American shad" ; -lin common_european_dogwood_PN = mkPN "common European dogwood" ; -lin common_european_earwig_PN = mkPN "common European earwig" ; -lin common_european_jay_PN = mkPN "common European jay" ; -lin common_st_john's_wort_PN = mkPN "common St John's wort" ; -lin common_or_garden_A = compoundA (mkA "common or garden") ; -lin common_room_N = mkN "common - room" "common - rooms"; -- from DictEng -lin commonage_N = mkN "commonage" ; -lin commonality_N = mkN "commonality" ; -lin commonalty_N = mkN "commonalty" "commonalties"; -- from DictEng -lin commoner_N = mkN "commoner" "commoners"; -- from DictEng -lin commonness_N = mkN "commonness" ; -lin commonplace_A = compoundA (mkA "commonplace"); -- from DictEng -lin commonplace_N = mkN "commonplace" "commonplaces"; -- from DictEng -lin commons_N = mkN "commons" ; -lin commonsense_A = mkA "commonsense" ; -lin commonwealth_N = mkN "commonwealth" "commonwealths"; -- from DictEng -lin commotion_N = mkN "commotion" "commotions"; -- from DictEng -lin communal_A = compoundA (mkA "communal"); -- from DictEng -lin communalism_N = mkN "communalism" ; -lin communally_Adv = mkAdv "communally" ; -lin commune_N = mkN "commune" "communes"; -- from DictEng -lin commune_V = mkV "commune" "communes" "communed" "communed" "communing"; -- from DictEng -lin communicable_A = compoundA (mkA "communicable"); -- from DictEng -lin communicant_N = mkN "communicant" "communicants"; -- from DictEng -lin communicate_V = mkV "communicate" "communicates" "communicated" "communicated" "communicating"; -- from DictEng -lin communicate_V2 = mkV2 (mkV "communicate" "communicates" "communicated" "communicated" "communicating"); -- from DictEng -lin communication_N = mkN "communication" "communications"; -- from DictEng -lin communicational_A = mkA "communicational" ; -lin communications_N = mkN "communications" ; -lin communicative_A = compoundA (mkA "communicative"); -- from DictEng -lin communicativeness_N = mkN "communicativeness" ; -lin communicator_N = mkN "communicator" ; -lin communion_N = mkN "communion" "communions"; -- from DictEng -lin communique_N = mkN "communiqué" "communiqués"; -- from DictEng -lin communism_N = mkN "communism" ; -- from DictEng -lin communist_A = compoundA (mkA "communist"); -- from DictEng -lin communist_N = mkN "communist" "communists"; -- from DictEng -lin community_N = mkN "community" "communities"; -- from DictEng -lin communization_N = mkN "communization" ; -lin commutability_N = mkN "commutability" ; -lin commutable_A = compoundA (mkA "commutable"); -- from DictEng -lin commutation_N = mkN "commutation" "commutations"; -- from DictEng -lin commutative_A = mkA "commutative" ; -lin commutator_N = mkN "commutator" "commutators"; -- from DictEng -lin commute_N = mkN "commute" ; -lin commute_V = mkV "commute" "commutes" "commuted" "commuted" "commuting"; -- from DictEng -lin commute_V2 = mkV2 (mkV "commute" "commutes" "commuted" "commuted" "commuting"); -- from DictEng -lin commuter_N = mkN "commuter" "commuters"; -- from DictEng -lin compact_A = compoundA (mkA "compact"); -- from DictEng -lin compact_N = mkN "compact" "compacts"; -- from DictEng -lin compact_V2 = mkV2 (mkV "compact" "compacts" "compacted" "compacted" "compacting"); -- from DictEng -lin compaction_N = mkN "compaction" ; -lin compactly_Adv = mkAdv "compactly" ; -lin compactness_N = mkN "compactness" ; -- from DictEng -lin companion_N = mkN "companion" "companions"; -- from DictEng -lin companionability_N = mkN "companionability" ; -lin companionable_A = compoundA (mkA "companionable"); -- from DictEng -lin companionate_A = mkA "companionate" ; -lin companionship_N = mkN "companionship" ; -- from DictEng -lin companionway_N = mkN "companionway" "companionways"; -- from DictEng -lin company_N = mkN "company" "companies"; -- from DictEng -lin comparability_N = mkN "comparability" ; -- from DictEng -lin comparable_A = compoundA (mkA "comparable"); -- from DictEng -lin comparable_to_A = compoundA (mkA "comparable to") ; -lin comparable_with_A = compoundA (mkA "comparable with") ; -lin comparably_Adv = mkAdv "comparably" ; -lin comparative_A = compoundA (mkA "comparative"); -- from DictEng -lin comparative_N = mkN "comparative" "comparatives"; -- from DictEng -lin compare_N = mkN "compare" "compares"; -- from DictEng -lin compare_V = mkV "compare" "compares" "compared" "compared" "comparing"; -- from DictEng -lin compare_V2 = mkV2 (mkV "compare" "compares" "compared" "compared" "comparing"); -- from DictEng -lin comparison_N = mkN "comparison" "comparisons"; -- from DictEng -lin compartment_N = mkN "compartment" "compartments"; -- from DictEng -lin compartmental_A = mkA "compartmental" ; -lin compartmentalization_N = mkN "compartmentalization" ; -lin compartmentalize_V2 = mkV2 (mkV "compartmentalize" "compartmentalizes" "compartmentalized" "compartmentalized" "compartmentalizing"); -- from DictEng -lin compartmented_A = mkA "compartmented" ; -lin compass_N = mkN "compass" "compasses"; -- from DictEng -lin compass_V2 = mkV2 (mkV "compass" "compasses" "compassed" "compassed" "compassing"); -- from DictEng -lin compassion_N = mkN "compassion" ; -- from DictEng -lin compassionate_A = compoundA (mkA "compassionate"); -- from DictEng -lin compatibility_N = mkN "compatibility" ; -- from DictEng -lin compatible_A = compoundA (mkA "compatible"); -- from DictEng -lin compatibly_Adv = mkAdv "compatibly" ; -lin compatriot_N = mkN "compatriot" "compatriots"; -- from DictEng -lin compeer_N = mkN "compeer" "compeers"; -- from DictEng -lin compel_V2 = mkV2 (mkV "compel" "compels" "compelled" "compelled" "compelling"); -- from DictEng -lin compel_VV = mkVV (mkV "compel" "compels" "compelled" "compelled" "compelling"); -- from DictEng -lin compelling_A = mkA "compelling" ; -lin compendious_A = compoundA (mkA "compendious"); -- from DictEng -lin compendium_N = mkN "compendium" "compendiums"; -- from DictEng -lin compensable_A = mkA "compensable" ; -lin compensate_V = mkV "compensate" "compensates" "compensated" "compensated" "compensating"; -- from DictEng -lin compensate_V2 = mkV2 (mkV "compensate" "compensates" "compensated" "compensated" "compensating"); -- from DictEng -lin compensated_A = mkA "compensated" ; -lin compensation_N = mkN "compensation" "compensations"; -- from DictEng -lin compensatory_A = compoundA (mkA "compensatory"); -- from DictEng -lin compere_N = mkN "compère" "compères"; -- from DictEng -lin compere_V2 = mkV2 (mkV "compère" "compères" "compèred" "compèred" "compèring"); -- from DictEng -lin compete_V = mkV "compete" "competes" "competed" "competed" "competing"; -- from DictEng -lin competence_N = mkN "competence" ; -- from DictEng -lin competent_A = compoundA (mkA "competent"); -- from DictEng -lin competently_Adv = mkAdv "competently" ; -lin competition_N = mkN "competition" "competitions"; -- from DictEng -lin competitive_A = compoundA (mkA "competitive"); -- from DictEng -lin competitively_Adv = mkAdv "competitively" ; -lin competitiveness_N = mkN "competitiveness" ; -- from DictEng -lin competitor_N = mkN "competitor" "competitors"; -- from DictEng -lin compilation_N = mkN "compilation" "compilations"; -- from DictEng -lin compile_V = mkV "compile" ; -lin compile_V2 = mkV2 (mkV "compile" "compiles" "compiled" "compiled" "compiling"); -- from DictEng -lin compiler_N = mkN "compiler" "compilers"; -- from DictEng -lin complacence_N = mkN "complacence" ; -- from DictEng -lin complacency_N = mkN "complacency" ; -- from DictEng -lin complacent_A = compoundA (mkA "complacent"); -- from DictEng -lin complacently_Adv = mkAdv "complacently" ; -lin complain_V = mkV "complain" "complains" "complained" "complained" "complaining"; -- from DictEng -lin complain_VS = mkVS (mkV "complain" "complains" "complained" "complained" "complaining"); -- from DictEng -lin complainant_N = mkN "complainant" "complainants"; -- from DictEng -lin complaining_A = mkA "complaining" ; -lin complainingly_Adv = mkAdv "complainingly"; -- from DictEng -lin complaint_N = mkN "complaint" "complaints"; -- from DictEng -lin complaisance_N = mkN "complaisance" ; -- from DictEng -lin complaisant_A = compoundA (mkA "complaisant"); -- from DictEng -lin complement_N = mkN "complement" "complements"; -- from DictEng -lin complement_V2 = mkV2 (mkV "complement" "complements" "complemented" "complemented" "complementing"); -- from DictEng -lin complemental_A = mkA "complemental" ; -lin complementarity_N = mkN "complementarity" ; -lin complementary_A = compoundA (mkA "complementary"); -- from DictEng -lin complementary_dna_PN = mkPN "complementary DNA" ; -lin complementation_N = mkN "complementation" ; -lin complete_A = compoundA (mkA "complete"); -- from DictEng -lin complete_V = mkV "complete"; -- from DictEng -lin complete_V2 = mkV2 (mkV "complete" "completes" "completed" "completed" "completing"); -- from DictEng -lin completed_A = mkA "completed" ; -lin completely_Adv = mkAdv "completely" ; -lin completeness_N = mkN "completeness" ; -- from DictEng -lin completion_N = mkN "completion" ; -- from DictEng -lin complex_A = compoundA (mkA "complex"); -- from DictEng -lin complex_N = mkN "complex" "complexes"; -- from DictEng -lin complexifier_N = mkN "complexifier" ; -lin complexion_N = mkN "complexion" "complexions"; -- from DictEng -lin complexity_N = mkN "complexity" "complexities"; -- from DictEng -lin complexly_Adv = mkAdv "complexly" ; -lin compliance_N = mkN "compliance" ; -- from DictEng -lin compliant_A = compoundA (mkA "compliant"); -- from DictEng -lin complicate_V2 = mkV2 (mkV "complicate" "complicates" "complicated" "complicated" "complicating"); -- from DictEng -lin complicated_A = compoundA (mkA "complicated"); -- from DictEng -lin complicatedness_N = mkN "complicatedness" ; -lin complication_N = mkN "complication" "complications"; -- from DictEng -lin complicity_N = mkN "complicity" ; -- from DictEng -lin compliment_N = mkN "compliment" "compliments"; -- from DictEng -lin compliment_V2 = mkV2 (mkV "compliment" "compliments" "complimented" "complimented" "complimenting"); -- from DictEng -lin complimentary_A = compoundA (mkA "complimentary"); -- from DictEng -lin complin_N = mkN "complin" "complins"; -- from DictEng -lin compline_N = mkN "compline" "complines"; -- from DictEng -lin comply_V = mkV "comply"; -- from DictEng -lin comply_V2 = mkV2 (mkV "comply" "complies" "complied" "complied" "complying"); -- from DictEng -lin component_A = compoundA (mkA "component"); -- from DictEng -lin component_N = mkN "component" "components"; -- from DictEng -lin comport_V = mkV "comport" "comports" "comported" "comported" "comporting"; -- from DictEng -lin comport_V2 = mkV2 (mkV "comport" "comports" "comported" "comported" "comporting"); -- from DictEng -lin comportment_N = mkN "comportment" "comportments"; -- from DictEng -lin compos_mentis_A = compoundA (mkA "compos mentis"); -- from DictEng -lin compose_V = mkV "compose" "composes" "composed" "composed" "composing"; -- from DictEng -lin compose_V2 = mkV2 (mkV "compose" "composes" "composed" "composed" "composing"); -- from DictEng -lin composed_A = compoundA (mkA "composed"); -- from DictEng -lin composer_N = mkN "composer" "composers"; -- from DictEng -lin composing_N = mkN "composing" ; -lin composite_A = compoundA (mkA "composite"); -- from DictEng -lin composite_N = mkN "composite" ; -lin compositeness_N = mkN "compositeness" ; -lin composition_N = mkN "composition" "compositions"; -- from DictEng -lin compositional_A = mkA "compositional" ; -lin compositor_N = mkN "compositor" "compositors"; -- from DictEng -lin compost_N = mkN "compost" ; -- from DictEng -lin compost_V2 = mkV2 (mkV "compost" "composts" "composted" "composted" "composting"); -- from DictEng -lin composure_N = mkN "composure" ; -- from DictEng -lin compote_N = mkN "compote" "compotes"; -- from DictEng -lin compound_A = compoundA (mkA "compound"); -- from DictEng -lin compound_N = mkN "compound" "compounds"; -- from DictEng -lin compound_V = mkV "compound" "compounds" "compounded" "compounded" "compounding"; -- from DictEng -lin compound_V2 = mkV2 (mkV "compound" "compounds" "compounded" "compounded" "compounding"); -- from DictEng -lin compounded_A = mkA "compounded" ; -lin comprehend_V2 = mkV2 (mkV "comprehend" "comprehends" "comprehended" "comprehended" "comprehending"); -- from DictEng -lin comprehensibility_N = mkN "comprehensibility" ; -- from DictEng -lin comprehensible_A = compoundA (mkA "comprehensible"); -- from DictEng -lin comprehension_N = mkN "comprehension" "comprehensions"; -- from DictEng -lin comprehensive_A = compoundA (mkA "comprehensive"); -- from DictEng -lin comprehensively_Adv = mkAdv "comprehensively" ; -lin comprehensiveness_N = mkN "comprehensiveness" ; -- from DictEng -lin compress_N = mkN "compress" "compresses"; -- from DictEng -lin compress_V2 = mkV2 (mkV "compress" "compresses" "compressed" "compressed" "compressing"); -- from DictEng -lin compressed_A = mkA "compressed" ; -lin compressibility_N = mkN "compressibility" ; -lin compressible_A = mkA "compressible" ; -lin compression_N = mkN "compression" ; -- from DictEng -lin compressor_N = mkN "compressor" "compressors"; -- from DictEng -lin comprise_V2 = mkV2 (mkV "comprise" "comprises" "comprised" "comprised" "comprising"); -- from DictEng -lin compromise_N = mkN "compromise" "compromises"; -- from DictEng -lin compromise_V = mkV "compromise" "compromises" "compromised" "compromised" "compromising"; -- from DictEng -lin compromise_V2 = mkV2 (mkV "compromise" "compromises" "compromised" "compromised" "compromising"); -- from DictEng -lin compromiser_N = mkN "compromiser" ; -lin compromising_A = mkA "compromising" ; -lin compsognathus_N = mkN "compsognathus" ; -lin comptroller_N = mkN "comptroller" "comptrollers"; -- from DictEng -lin comptrollership_N = mkN "comptrollership" ; -lin compulsion_N = mkN "compulsion" ; -- from DictEng -lin compulsive_A = compoundA (mkA "compulsive"); -- from DictEng -lin compulsive_N = mkN "compulsive" ; -lin compulsively_Adv = mkAdv "compulsively" ; -lin compulsiveness_N = mkN "compulsiveness" ; -lin compulsorily_Adv = mkAdv "compulsorily" ; -lin compulsory_A = compoundA (mkA "compulsory"); -- from DictEng -lin compunction_N = mkN "compunction" ; -- from DictEng -lin computable_A = mkA "computable" ; -lin computation_N = mkN "computation" "computations"; -- from DictEng -lin computational_A = compoundA (mkA "computational"); -- from DictEng -lin computationally_Adv = mkAdv "computationally" ; -lin compute_V = mkV "compute" "computes" "computed" "computed" "computing"; -- from DictEng -lin compute_V2 = mkV2 (mkV "compute" "computes" "computed" "computed" "computing"); -- from DictEng -lin computer_N = mkN "computer" "computers"; -- from DictEng -lin computerization_N = mkN "computerization" ; -lin computerize_V2 = mkV2 (mkV "computerize" "computerizes" "computerized" "computerized" "computerizing"); -- from DictEng -lin comrade_N = mkN "comrade" "comrades"; -- from DictEng -lin comradely_A = mkA "comradely" ; -lin comradely_Adv = mkAdv "comradely"; -- from DictEng -lin comradeship_N = mkN "comradeship" "comradeships"; -- from DictEng -lin con_Adv = mkAdv "con"; -- from DictEng -lin con_N = mkN "con" "cons"; -- from DictEng -lin con_V2 = mkV2 (mkV "con" "cons" "conned" "conned" "conning"); -- from DictEng -lin con_brio_A = compoundA (mkA "con brio") ; -lin con_brio_Adv = mkAdv "con brio" ; -lin con_man_N = mkN "con - man" "con - men"; -- from DictEng -lin conacaste_N = mkN "conacaste" ; -lin concatenation_N = mkN "concatenation" "concatenations"; -- from DictEng -lin concave_A = compoundA (mkA "concave"); -- from DictEng -lin concavely_Adv = mkAdv "concavely" ; -lin concavity_N = mkN "concavity" "concavities"; -- from DictEng -lin concavo_convex_A = compoundA (mkA "concavo convex") ; -lin conceal_V2 = mkV2 (mkV "conceal" "conceals" "concealed" "concealed" "concealing"); -- from DictEng -lin conceale_V = mkV "conceale"; -- from DictEng -lin concealed_A = mkA "concealed" ; -lin concealing_A = mkA "concealing" ; -lin concealment_N = mkN "concealment" ; -- from DictEng -lin concede_V = mkV "concede"; -- from DictEng -lin concede_V2 = mkV2 (mkV "concede" "concedes" "conceded" "conceded" "conceding"); -- from DictEng -lin concede_VS = mkVS (mkV "concede"); -- from DictEng -lin conceit_N = mkN "conceit" "conceits"; -- from DictEng -lin conceited_A = compoundA (mkA "conceited"); -- from DictEng -lin conceitedly_Adv = mkAdv "conceitedly" ; -lin conceivable_A = compoundA (mkA "conceivable"); -- from DictEng -lin conceivableness_N = mkN "conceivableness" ; -lin conceivably_Adv = mkAdv "conceivably" ; -lin conceive_V = mkV "conceive" "conceives" "conceived" "conceived" "conceiving"; -- from DictEng -lin conceive_V2 = mkV2 (mkV "conceive" "conceives" "conceived" "conceived" "conceiving"); -- from DictEng -lin concentrate_N = mkN "concentrate" "concentrates"; -- from DictEng -lin concentrate_V = mkV "concentrate" "concentrates" "concentrated" "concentrated" "concentrating"; -- from DictEng -lin concentrate_V2 = mkV2 (mkV "concentrate" "concentrates" "concentrated" "concentrated" "concentrating"); -- from DictEng -lin concentrated_A = compoundA (mkA "concentrated"); -- from DictEng -lin concentration_N = mkN "concentration" "concentrations"; -- from DictEng -lin concentric_A = compoundA (mkA "concentric"); -- from DictEng -lin concentricity_N = mkN "concentricity" ; -lin concept_N = mkN "concept" "concepts"; -- from DictEng -lin conception_N = mkN "conception" "conceptions"; -- from DictEng -lin conceptional_A = mkA "conceptional" ; -lin conceptive_A = mkA "conceptive" ; -lin conceptual_A = compoundA (mkA "conceptual"); -- from DictEng -lin conceptualism_N = mkN "conceptualism" ; -lin conceptualistic_A = mkA "conceptualistic" ; -lin conceptualization_N = mkN "conceptualization" ; -lin conceptually_Adv = mkAdv "conceptually" ; -lin concern_N = mkN "concern" "concerns"; -- from DictEng -lin concern_V = mkV "concern"; -- from DictEng -lin concern_V2 = mkV2 (mkV "concern" "concerns" "concerned" "concerned" "concerning"); -- from DictEng -lin concern_VS = mkVS (mkV "concern"); -- from DictEng -lin concerned_A = compoundA (mkA "concerned"); -- from DictEng -lin concernedly_Adv = mkAdv "concernedly" ; -lin concert_N = mkN "concert" "concerts"; -- from DictEng -lin concert_V2 = mkV2 (mkV "concert" "concerts" "concerted" "concerted" "concerting"); -- from DictEng -lin concert_goer_N = mkN "concert goer" ; -lin concert_hall_N = mkN "concert - hall" "concert - halls"; -- from DictEng -lin concerted_A = compoundA (mkA "concerted"); -- from DictEng -lin concertina_N = mkN "concertina" "concertinas"; -- from DictEng -lin concerto_N = mkN "concerto" "concertos"; -- from DictEng -lin concession_N = mkN "concession" "concessions"; -- from DictEng -lin concessionaire_N = mkN "concessionaire" "concessionaires"; -- from DictEng -lin concessive_A = compoundA (mkA "concessive"); -- from DictEng -lin conch_N = mkN "conch" "conches"; -- from DictEng -lin concha_N = mkN "concha" ; -lin conchfish_N = mkN "conchfish" ; -lin conchologist_N = mkN "conchologist" ; -lin conchology_N = mkN "conchology" ; -- from DictEng -lin concierge_N = mkN "concierge" "concierges"; -- from DictEng -lin conciliate_V2 = mkV2 (mkV "conciliate" "conciliates" "conciliated" "conciliated" "conciliating"); -- from DictEng -lin conciliation_N = mkN "conciliation" ; -- from DictEng -lin conciliator_N = mkN "conciliator" ; -lin conciliatory_A = compoundA (mkA "conciliatory"); -- from DictEng -lin concise_A = compoundA (mkA "concise"); -- from DictEng -lin concisely_Adv = mkAdv "concisely" ; -lin conciseness_N = mkN "conciseness" ; -- from DictEng -lin conclave_N = mkN "conclave" "conclaves"; -- from DictEng -lin conclude_V = mkV "conclude" "concludes" "concluded" "concluded" "concluding"; -- from DictEng -lin conclude_V2 = mkV2 (mkV "conclude" "concludes" "concluded" "concluded" "concluding"); -- from DictEng -lin conclude_VS = mkVS (mkV "conclude" "concludes" "concluded" "concluded" "concluding"); -- from DictEng -lin concluding_A = mkA "concluding" ; -lin conclusion_N = mkN "conclusion" "conclusions"; -- from DictEng -lin conclusive_A = compoundA (mkA "conclusive"); -- from DictEng -lin conclusively_Adv = mkAdv "conclusively" ; -lin concoct_V2 = mkV2 (mkV "concoct" "concocts" "concocted" "concocted" "concocting"); -- from DictEng -lin concoction_N = mkN "concoction" "concoctions"; -- from DictEng -lin concomitance_N = mkN "concomitance" ; -lin concomitant_A = compoundA (mkA "concomitant"); -- from DictEng -lin concomitant_N = mkN "concomitant" "concomitants"; -- from DictEng -lin concord_N = mkN "concord" "concords"; -- from DictEng -lin concordance_N = mkN "concordance" "concordances"; -- from DictEng -lin concordant_A = compoundA (mkA "concordant"); -- from DictEng -lin concordat_N = mkN "concordat" "concordats"; -- from DictEng -lin concourse_N = mkN "concourse" "concourses"; -- from DictEng -lin concrete_A = compoundA (mkA "concrete"); -- from DictEng -lin concrete_N = mkN "concrete" ; -- from DictEng -lin concrete_V = mkV "concrete" "concretes" "concreted" "concreted" "concreting"; -- from DictEng -lin concrete_V2 = mkV2 (mkV "concrete" "concretes" "concreted" "concreted" "concreting"); -- from DictEng -lin concretely_Adv = mkAdv "concretely" ; -lin concreteness_N = mkN "concreteness" ; -lin concretion_N = mkN "concretion" "concretions"; -- from DictEng -lin concretism_N = mkN "concretism" ; -lin concretistic_A = mkA "concretistic" ; -lin concubinage_N = mkN "concubinage" ; -lin concubine_N = mkN "concubine" "concubines"; -- from DictEng -lin concupiscence_N = mkN "concupiscence" ; -- from DictEng -lin concur_V = mkV "concur" "concurs" "concurred" "concurred" "concurring"; -- from DictEng -lin concurrence_N = mkN "concurrence" "concurrences"; -- from DictEng -lin concurrent_A = compoundA (mkA "concurrent"); -- from DictEng -lin concurrently_Adv = mkAdv "concurrently" ; -lin concuss_V2 = mkV2 (mkV "concuss" "concusses" "concussed" "concussed" "concussing"); -- from DictEng -lin concussion_N = mkN "concussion" "concussions"; -- from DictEng -lin condemn_V2 = mkV2 (mkV "condemn" "condemns" "condemned" "condemned" "condemning"); -- from DictEng -lin condemnable_A = mkA "condemnable" ; -lin condemnation_N = mkN "condemnation" "condemnations"; -- from DictEng -lin condemnatory_A = mkA "condemnatory" ; -lin condensate_N = mkN "condensate" ; -lin condensation_N = mkN "condensation" "condensations"; -- from DictEng -lin condense_V = mkV "condense" "condenses" "condensed" "condensed" "condensing"; -- from DictEng -lin condense_V2 = mkV2 (mkV "condense" "condenses" "condensed" "condensed" "condensing"); -- from DictEng -lin condenser_N = mkN "condenser" "condensers"; -- from DictEng -lin condensing_N = mkN "condensing" ; -lin condescend_V = mkV "condescend" "condescends" "condescended" "condescended" "condescending"; -- from DictEng -lin condescending_A = compoundA (mkA "condescending"); -- from DictEng -lin condescendingly_Adv = mkAdv "condescendingly" ; -lin condescension_N = mkN "condescension" "condescensions"; -- from DictEng -lin condign_A = compoundA (mkA "condign"); -- from DictEng -lin condiment_N = mkN "condiment" "condiments"; -- from DictEng -lin condition_N = mkN "condition" "conditions"; -- from DictEng -lin condition_V2 = mkV2 (mkV "condition" "conditions" "conditioned" "conditioned" "conditioning"); -- from DictEng -lin conditional_A = compoundA (mkA "conditional"); -- from DictEng -lin conditionality_N = mkN "conditionality" ; -lin conditionally_Adv = mkAdv "conditionally" ; -lin conditioned_A = compoundA (mkA "conditioned"); -- from DictEng -lin conditioner_N = mkN "conditioner" "conditioners"; -- from DictEng -lin conditioning_N = mkN "conditioning" ; -lin conditions_N = mkN "conditions" ; -lin condole_V = mkV "condole" "condoles" "condoled" "condoled" "condoling"; -- from DictEng -lin condolence_N = mkN "condolence" "condolences"; -- from DictEng -lin condolent_A = mkA "condolent" ; -lin condom_N = mkN "condom" ; -lin condominium_N = mkN "condominium" "condominiums"; -- from DictEng -lin condonation_N = mkN "condonation" "condonations"; -- from DictEng -lin condone_V2 = mkV2 (mkV "condone" "condones" "condoned" "condoned" "condoning"); -- from DictEng -lin condor_N = mkN "condor" "condors"; -- from DictEng -lin conduce_V = mkV "conduce" "conduces" "conduced" "conduced" "conducing"; -- from DictEng -lin conducive_A = compoundA (mkA "conducive"); -- from DictEng -lin conduct_N = mkN "conduct" ; -- from DictEng -lin conduct_V = mkV "conduct" "conducts" "conducted" "conducted" "conducting"; -- from DictEng -lin conduct_V2 = mkV2 (mkV "conduct" "conducts" "conducted" "conducted" "conducting"); -- from DictEng -lin conductance_N = mkN "conductance" ; -lin conducting_N = mkN "conducting" ; -lin conduction_N = mkN "conduction" ; -- from DictEng -lin conductive_A = compoundA (mkA "conductive"); -- from DictEng -lin conductivity_N = mkN "conductivity" "conductivities"; -- from DictEng -lin conductor_N = mkN "conductor" "conductors"; -- from DictEng -lin conductress_N = mkN "conductress" "conductresses"; -- from DictEng -lin conduit_N = mkN "conduit" "conduits"; -- from DictEng -lin condylar_A = mkA "condylar" ; -lin condyle_N = mkN "condyle" ; -lin condylion_N = mkN "condylion" ; -lin cone_N = mkN "cone" "cones"; -- from DictEng -lin cone_V2 = mkV2 (mkV "cone" "cones" "coned" "coned" "coning"); -- from DictEng -lin coneflower_N = mkN "coneflower" ; -lin conenose_N = mkN "conenose" ; -lin coney_N = mkN "coney" "coneys"; -- from DictEng -lin confab_N = mkN "confab" "confabs"; -- from DictEng -lin confab_V = mkV "confab" "confabs" "confabbed" "confabbed" "confabbing"; -- from DictEng -lin confabulate_V = mkV "confabulate" "confabulates" "confabulated" "confabulated" "confabulating"; -- from DictEng -lin confabulation_N = mkN "confabulation" "confabulations"; -- from DictEng -lin confection_N = mkN "confection" "confections"; -- from DictEng -lin confectioner_N = mkN "confectioner" "confectioners"; -- from DictEng -lin confectionery_N = mkN "confectionery" "confectioneries"; -- from DictEng -lin confederacy_N = mkN "confederacy" "confederacies"; -- from DictEng -lin confederate_A = compoundA (mkA "confederate"); -- from DictEng -lin confederate_N = mkN "confederate" "confederates"; -- from DictEng -lin confederate_V = mkV "confederate" "confederates" "confederated" "confederated" "confederating"; -- from DictEng -lin confederate_V2 = mkV2 (mkV "confederate" "confederates" "confederated" "confederated" "confederating"); -- from DictEng -lin confederation_N = mkN "confederation" "confederations"; -- from DictEng -lin confer_V = mkV "confer" "confers" "conferred" "conferred" "conferring"; -- from DictEng -lin confer_V2 = mkV2 (mkV "confer" "confers" "conferred" "conferred" "conferring"); -- from DictEng -lin conferee_N = mkN "conferee" ; -lin conference_N = mkN "conference" "conferences"; -- from DictEng -lin conferment_N = mkN "conferment" "conferments"; -- from DictEng -lin conferrer_N = mkN "conferrer" ; -lin conferva_N = mkN "conferva" ; -lin confess_V = mkV "confess" "confesses" "confessed" "confessed" "confessing"; -- from DictEng -lin confess_V2 = mkV2 (mkV "confess" "confesses" "confessed" "confessed" "confessing"); -- from DictEng -lin confess_VS = mkVS (mkV "confess" "confesses" "confessed" "confessed" "confessing"); -- from DictEng -lin confessedly_Adv = mkAdv "confessedly"; -- from DictEng -lin confession_N = mkN "confession" "confessions"; -- from DictEng -lin confessional_N = mkN "confessional" "confessionals"; -- from DictEng -lin confessor_N = mkN "confessor" "confessors"; -- from DictEng -lin confetti_N = mkN "confetti" "confetti"; -- from DictEng -lin confidant_N = mkN "confidant" "confidants"; -- from DictEng -lin confidante_N = mkN "confidante" ; -lin confide_V = mkV "confide" "confides" "confided" "confided" "confiding"; -- from DictEng -lin confide_V2 = mkV2 (mkV "confide" "confides" "confided" "confided" "confiding"); -- from DictEng -lin confide_VS = mkVS (mkV "confide" "confides" "confided" "confided" "confiding"); -- from DictEng -lin confidence_N = mkN "confidence" "confidences"; -- from DictEng -lin confident_A = compoundA (mkA "confident"); -- from DictEng -lin confidential_A = compoundA (mkA "confidential"); -- from DictEng -lin confidentiality_N = mkN "confidentiality" "confidentialities"; -- from DictEng -lin confidentially_Adv = mkAdv "confidentially" ; -lin confidently_Adv = mkAdv "confidently" ; -lin confiding_A = compoundA (mkA "confiding"); -- from DictEng -lin configuration_N = mkN "configuration" "configurations"; -- from DictEng -lin configurational_A = mkA "configurational" ; -lin configure_V2 = mkV2 (mkV "configure" "configures" "configured" "configured" "configuring"); -- from DictEng -lin configured_A = compoundA (mkA "configured"); -- from DictEng -lin confine_V2 = mkV2 (mkV "confine" "confines" "confined" "confined" "confining"); -- from DictEng -lin confined_A = compoundA (mkA "confined"); -- from DictEng -lin confinement_N = mkN "confinement" "confinements"; -- from DictEng -lin confines_N = mkN "confines" ; -lin confining_A = mkA "confining" ; -lin confirm_V2 = mkV2 (mkV "confirm" "confirms" "confirmed" "confirmed" "confirming"); -- from DictEng -lin confirm_VS = mkVS (mkV "confirm"); -- from DictEng -lin confirmable_A = mkA "confirmable" ; -lin confirmation_N = mkN "confirmation" "confirmations"; -- from DictEng -lin confirmed_A = compoundA (mkA "confirmed"); -- from DictEng -lin confiscate_A = mkA "confiscate" ; -lin confiscate_V2 = mkV2 (mkV "confiscate" "confiscates" "confiscated" "confiscated" "confiscating"); -- from DictEng -lin confiscation_N = mkN "confiscation" "confiscations"; -- from DictEng -lin confit_N = mkN "confit" ; -lin confiture_N = mkN "confiture" ; -lin conflagration_N = mkN "conflagration" "conflagrations"; -- from DictEng -lin conflict_N = mkN "conflict" "conflicts"; -- from DictEng -lin conflict_V = mkV "conflict" "conflicts" "conflicted" "conflicted" "conflicting"; -- from DictEng -lin conflicting_A = compoundA (mkA "conflicting"); -- from DictEng -lin confluence_N = mkN "confluence" "confluences"; -- from DictEng -lin confluent_A = compoundA (mkA "confluent"); -- from DictEng -lin conform_V = mkV "conform" "conforms" "conformed" "conformed" "conforming"; -- from DictEng -lin conform_V2 = mkV2 (mkV "conform" "conforms" "conformed" "conformed" "conforming"); -- from DictEng -lin conformable_A = compoundA (mkA "conformable"); -- from DictEng -lin conformably_Adv = mkAdv "conformably" ; -lin conformation_N = mkN "conformation" "conformations"; -- from DictEng -lin conforming_A = mkA "conforming" ; -lin conformist_A = mkA "conformist" ; -lin conformist_N = mkN "conformist" "conformists"; -- from DictEng -lin conformity_N = mkN "conformity" ; -- from DictEng -lin confound_V2 = mkV2 (mkV "confound" "confounds" "confounded" "confounded" "confounding"); -- from DictEng -lin confounded_A = compoundA (mkA "confounded"); -- from DictEng -lin confounding_A = mkA "confounding" ; -lin confrere_N = mkN "confrère" "confrères"; -- from DictEng -lin confront_V2 = mkV2 (mkV "confront" "confronts" "confronted" "confronted" "confronting"); -- from DictEng -lin confrontation_N = mkN "confrontation" "confrontations"; -- from DictEng -lin confrontational_A = mkA "confrontational" ; -lin confucian_A = compoundA (mkA "confucian"); -- from DictEng -lin confucian_N = mkN "confucian" "confucians"; -- from DictEng -lin confusable_A = mkA "confusable" ; -lin confuse_V2 = mkV2 (mkV "confuse" "confuses" "confused" "confused" "confusing"); -- from DictEng -lin confused_A = mkA "confused" ; -lin confusedly_Adv = mkAdv "confusedly"; -- from DictEng -lin confusing_A = mkA "confusing" ; -lin confusion_N = mkN "confusion" ; -- from DictEng -lin confutation_N = mkN "confutation" "confutations"; -- from DictEng -lin confute_V2 = mkV2 (mkV "confute" "confutes" "confuted" "confuted" "confuting"); -- from DictEng -lin conga_N = mkN "conga" ; -lin conge_N = mkN "congé" "congés"; -- from DictEng -lin congeal_V = mkV "congeal" "congeals" "congealed" "congealed" "congealing"; -- from DictEng -lin congeal_V2 = mkV2 (mkV "congeal" "congeals" "congealed" "congealed" "congealing"); -- from DictEng -lin congealed_A = mkA "congealed" ; -lin congealment_N = mkN "congealment" ; -lin congee_N = mkN "congee" ; -lin congener_N = mkN "congener" ; -lin congeneric_A = mkA "congeneric" ; -lin congenial_A = compoundA (mkA "congenial"); -- from DictEng -lin congeniality_N = mkN "congeniality" ; -lin congenially_Adv = mkAdv "congenially" ; -lin congenialness_N = mkN "congenialness" ; -lin congenital_A = compoundA (mkA "congenital"); -- from DictEng -lin conger_N = mkN "conger" "congers"; -- from DictEng -lin conger_eel_N = mkN "conger - eel" "conger - eels"; -- from DictEng -lin congested_A = compoundA (mkA "congested"); -- from DictEng -lin congestion_N = mkN "congestion" ; -- from DictEng -lin congestive_A = mkA "congestive" ; -lin conglomerate_A = compoundA (mkA "conglomerate"); -- from DictEng -lin conglomerate_N = mkN "conglomerate" "conglomerates"; -- from DictEng -lin conglomerate_V = mkV "conglomerate" "conglomerates" "conglomerated" "conglomerated" "conglomerating"; -- from DictEng -lin conglomerate_V2 = mkV2 (mkV "conglomerate" "conglomerates" "conglomerated" "conglomerated" "conglomerating"); -- from DictEng -lin conglomeration_N = mkN "conglomeration" "conglomerations"; -- from DictEng -lin congolese_A = compoundA (mkA "congolese"); -- from DictEng -lin congolese_N = mkN "congolese" "congolese"; -- from DictEng -lin congou_N = mkN "congou" ; -lin congratulate_V2 = mkV2 (mkV "congratulate" "congratulates" "congratulated" "congratulated" "congratulating"); -- from DictEng -lin congratulation_N = mkN "congratulation" "congratulations"; -- from DictEng -lin congratulatory_A = compoundA (mkA "congratulatory"); -- from DictEng -lin congregant_N = mkN "congregant" ; -lin congregate_V = mkV "congregate" "congregates" "congregated" "congregated" "congregating"; -- from DictEng -lin congregate_V2 = mkV2 (mkV "congregate" "congregates" "congregated" "congregated" "congregating"); -- from DictEng -lin congregation_N = mkN "congregation" "congregations"; -- from DictEng -lin congregational_A = compoundA (mkA "congregational"); -- from DictEng -lin congress_N = mkN "congress" "congresses"; -- from DictEng -lin congressional_A = compoundA (mkA "congressional"); -- from DictEng -lin congressman_N = mkN "congressman" "congressmen" {- FIXME: guessed plural form -}; -- from DictEng -lin congresswoman_N = mkN "congresswoman" "congresswomen" {- FIXME: guessed plural form -}; -- from DictEng -lin congruent_A = compoundA (mkA "congruent"); -- from DictEng -lin congruity_N = mkN "congruity" ; -lin congruous_A = compoundA (mkA "congruous"); -- from DictEng -lin conic_A = compoundA (mkA "conic"); -- from DictEng -lin conical_A = compoundA (mkA "conical"); -- from DictEng -lin conically_Adv = mkAdv "conically" ; -lin conidiophore_N = mkN "conidiophore" ; -lin conidium_N = mkN "conidium" ; -lin conifer_N = mkN "conifer" "conifers"; -- from DictEng -lin coniferous_A = compoundA (mkA "coniferous"); -- from DictEng -lin conima_N = mkN "conima" ; -lin conjectural_A = compoundA (mkA "conjectural"); -- from DictEng -lin conjecturally_Adv = mkAdv "conjecturally" ; -lin conjecture_N = mkN "conjecture" "conjectures"; -- from DictEng -lin conjecture_V = mkV "conjecture" "conjectures" "conjectured" "conjectured" "conjecturing"; -- from DictEng -lin conjecture_V2 = mkV2 (mkV "conjecture" "conjectures" "conjectured" "conjectured" "conjecturing"); -- from DictEng -lin conjoin_V = mkV "conjoin" "conjoins" "conjoined" "conjoined" "conjoining"; -- from DictEng -lin conjoin_V2 = mkV2 (mkV "conjoin" "conjoins" "conjoined" "conjoined" "conjoining"); -- from DictEng -lin conjoined_A = mkA "conjoined" ; -lin conjoint_A = compoundA (mkA "conjoint"); -- from DictEng -lin conjugal_A = compoundA (mkA "conjugal"); -- from DictEng -lin conjugally_Adv = mkAdv "conjugally" ; -lin conjugate_A = mkA "conjugate" ; -lin conjugate_V = mkV "conjugate" "conjugates" "conjugated" "conjugated" "conjugating"; -- from DictEng -lin conjugate_V2 = mkV2 (mkV "conjugate" "conjugates" "conjugated" "conjugated" "conjugating"); -- from DictEng -lin conjugation_N = mkN "conjugation" "conjugations"; -- from DictEng -lin conjunct_A = mkA "conjunct" ; -lin conjunction_N = mkN "conjunction" "conjunctions"; -- from DictEng -lin conjunctiva_N = mkN "conjunctiva" ; -lin conjunctival_A = mkA "conjunctival" ; -lin conjunctive_A = compoundA (mkA "conjunctive"); -- from DictEng -lin conjunctive_N = mkN "conjunctive" "conjunctives"; -- from DictEng -lin conjunctivitis_N = mkN "conjunctivitis" ; -lin conjuncture_N = mkN "conjuncture" "conjunctures"; -- from DictEng -lin conjuration_N = mkN "conjuration" "conjurations"; -- from DictEng -lin conjure_V = mkV "conjure" "conjures" "conjured" "conjured" "conjuring"; -- from DictEng -lin conjure_V2 = mkV2 (mkV "conjure" "conjures" "conjured" "conjured" "conjuring"); -- from DictEng -lin conjurer_N = mkN "conjurer" "conjurers"; -- from DictEng -lin conjuring_N = mkN "conjuring" ; -lin conjuror_N = mkN "conjuror" "conjurors"; -- from DictEng -lin conk_N = mkN "conk" "conks"; -- from DictEng -lin conk_V = mkV "conk" "conks" "conked" "conked" "conking"; -- from DictEng -lin conk_V2 = mkV2 (mkV "conk") ; -lin conker_N = mkN "conker" "conkers"; -- from DictEng -lin connate_A = mkA "connate" ; -lin connatural_A = mkA "connatural" ; -lin connect_V = mkV "connect" "connects" "connected" "connected" "connecting"; -- from DictEng -lin connect_V2 = mkV2 (mkV "connect" "connects" "connected" "connected" "connecting"); -- from DictEng -lin connected_A = mkA "connected" ; -lin connection_N = mkN "connection" "connections"; -- from DictEng -lin connective_A = compoundA (mkA "connective"); -- from DictEng -lin connective_N = mkN "connective" "connectives"; -- from DictEng -lin connectivity_N = mkN "connectivity" ; -lin connexion_N = mkN "connexion" "connexions"; -- from DictEng -lin conning_A = compoundA (mkA "conning"); -- from DictEng -lin connivance_N = mkN "connivance" ; -- from DictEng -lin connive_V = mkV "connive" "connives" "connived" "connived" "conniving"; -- from DictEng -lin connoisseur_N = mkN "connoisseur" "connoisseurs"; -- from DictEng -lin connotation_N = mkN "connotation" "connotations"; -- from DictEng -lin connotational_A = mkA "connotational" ; -lin connotative_A = mkA "connotative" ; -lin connote_V2 = mkV2 (mkV "connote" "connotes" "connoted" "connoted" "connoting"); -- from DictEng -lin connubial_A = compoundA (mkA "connubial"); -- from DictEng -lin conodont_N = mkN "conodont" ; -lin conquer_V2 = mkV2 (mkV "conquer" "conquers" "conquered" "conquered" "conquering"); -- from DictEng -lin conquerable_A = mkA "conquerable" ; -lin conqueror_N = mkN "conqueror" "conquerors"; -- from DictEng -lin conquest_N = mkN "conquest" "conquests"; -- from DictEng -lin conquistador_N = mkN "conquistador" "conquistadors"; -- from DictEng -lin consanguinity_N = mkN "consanguinity" ; -- from DictEng -lin conscience_N = mkN "conscience" "consciences"; -- from DictEng -lin conscience_smitten_A = compoundA (mkA "conscience - smitten"); -- from DictEng -lin conscience_smitten_A = compoundA (mkA "conscience - smitten"); -- from DictEng -lin conscienceless_A = mkA "conscienceless" ; -lin conscientious_A = compoundA (mkA "conscientious"); -- from DictEng -lin conscientiousness_N = mkN "conscientiousness" ; -- from DictEng -lin conscionable_A = mkA "conscionable" ; -lin conscious_A = compoundA (mkA "conscious"); -- from DictEng -lin consciously_Adv = mkAdv "consciously" ; -lin consciousness_N = mkN "consciousness" ; -- from DictEng -lin conscript_N = mkN "conscript" "conscripts"; -- from DictEng -lin conscript_V2 = mkV2 (mkV "conscript" "conscripts" "conscripted" "conscripted" "conscripting"); -- from DictEng -lin conscription_N = mkN "conscription" ; -- from DictEng -lin consecrate_V2 = mkV2 (mkV "consecrate" "consecrates" "consecrated" "consecrated" "consecrating"); -- from DictEng -lin consecrated_A = mkA "consecrated" ; -lin consecration_N = mkN "consecration" "consecrations"; -- from DictEng -lin consecutive_A = compoundA (mkA "consecutive"); -- from DictEng -lin consecutive_Adv = mkAdv "consecutive" ; -lin consecutively_Adv = mkAdv "consecutively" ; -lin consensual_A = mkA "consensual" ; -lin consensus_N = mkN "consensus" "consensi" {- FIXME: guessed plural form -}; -- from DictEng -lin consent_N = mkN "consent" ; -- from DictEng -lin consent_V = mkV "consent" "consents" "consented" "consented" "consenting"; -- from DictEng -lin consent_V2V = mkV2V (mkV "consent" "consents" "consented" "consented" "consenting") noPrep to_Prep ; -- from DictEng -lin consentaneous_A = mkA "consentaneous" ; -lin consenting_A = mkA "consenting" ; -lin consequence_N = mkN "consequence" "consequences"; -- from DictEng -lin consequent_A = compoundA (mkA "consequent"); -- from DictEng -lin consequential_A = compoundA (mkA "consequential"); -- from DictEng -lin consequentially_Adv = mkAdv "consequentially" ; -lin consequently_Adv = mkAdv "consequently" ; -lin conservancy_N = mkN "conservancy" "conservancies"; -- from DictEng -lin conservation_N = mkN "conservation" ; -- from DictEng -lin conservatism_N = mkN "conservatism" ; -- from DictEng -lin conservative_A = compoundA (mkA "conservative"); -- from DictEng -lin conservative_N = mkN "conservative" "conservatives"; -- from DictEng -lin conservatively_Adv = mkAdv "conservatively" ; -lin conservatoire_N = mkN "conservatoire" "conservatoires"; -- from DictEng -lin conservator_N = mkN "conservator" ; -lin conservatory_N = mkN "conservatory" "conservatories"; -- from DictEng -lin conserve_N = mkN "conserve" "conserves"; -- from DictEng -lin conserve_V2 = mkV2 (mkV "conserve" "conserves" "conserved" "conserved" "conserving"); -- from DictEng -lin conserved_A = mkA "conserved" ; -lin consider_V = mkV "consider" "considers" "considered" "considered" "considering"; -- from DictEng -lin consider_V2 = mkV2 (mkV "consider" "considers" "considered" "considered" "considering"); -- from DictEng -lin consider_V2V = mkV2V (mkV "consider" "considers" "considered" "considered" "considering") noPrep to_Prep ; -- from DictEng -lin consider_VA = mkVA (mkV "consider" "considers" "considered" "considered" "considering"); -- from DictEng -lin consider_VS = mkVS (mkV "consider" "considers" "considered" "considered" "considering"); -- from DictEng -lin consider_VV = mkVV (mkV "consider" "considers" "considered" "considered" "considering"); -- from DictEng -lin considerable_A = compoundA (mkA "considerable"); -- from DictEng -lin considerate_A = compoundA (mkA "considerate"); -- from DictEng -lin considerately_Adv = mkAdv "considerately" ; -lin considerateness_N = mkN "considerateness" ; -- from DictEng -lin consideration_N = mkN "consideration" "considerations"; -- from DictEng -lin considered_A = mkA "considered" ; -lin consign_V2 = mkV2 (mkV "consign" "consigns" "consigned" "consigned" "consigning"); -- from DictEng -lin consignee_N = mkN "consignee" "consignees"; -- from DictEng -lin consigner_N = mkN "consigner" "consigners"; -- from DictEng -lin consignment_N = mkN "consignment" "consignments"; -- from DictEng -lin consignor_N = mkN "consignor" "consignors"; -- from DictEng -lin consist_V = mkV "consist" "consists" "consisted" "consisted" "consisting"; -- from DictEng -lin consistence_N = mkN "consistence" ; -- from DictEng -lin consistency_N = mkN "consistency" "consistencies"; -- from DictEng -lin consistent_A = compoundA (mkA "consistent"); -- from DictEng -lin consistory_N = mkN "consistory" "consistories"; -- from DictEng -lin consolable_A = compoundA (mkA "consolable"); -- from DictEng -lin consolation_N = mkN "consolation" "consolations"; -- from DictEng -lin consolatory_A = compoundA (mkA "consolatory"); -- from DictEng -lin console_N = mkN "console" "consoles"; -- from DictEng -lin console_V2 = mkV2 (mkV "console" "consoles" "consoled" "consoled" "consoling"); -- from DictEng -lin consolidate_V = mkV "consolidate" "consolidates" "consolidated" "consolidated" "consolidating"; -- from DictEng -lin consolidate_V2 = mkV2 (mkV "consolidate" "consolidates" "consolidated" "consolidated" "consolidating"); -- from DictEng -lin consolidated_A = mkA "consolidated" ; -lin consolidation_N = mkN "consolidation" "consolidations"; -- from DictEng -lin consolidative_A = mkA "consolidative" ; -lin consomme_N = mkN "consommé" "consommés"; -- from DictEng -lin consonance_N = mkN "consonance" ; -- from DictEng -lin consonant_A = compoundA (mkA "consonant"); -- from DictEng -lin consonant_N = mkN "consonant" "consonants"; -- from DictEng -lin consonantal_A = mkA "consonantal" ; -lin consort_N = mkN "consort" "consorts"; -- from DictEng -lin consort_V = mkV "consort" "consorts" "consorted" "consorted" "consorting"; -- from DictEng -lin consortium_N = mkN "consortium" "consortia" {- FIXME: guessed plural form -}; -- from DictEng -lin conspecific_A = mkA "conspecific" ; -lin conspecific_N = mkN "conspecific" ; -lin conspectus_N = mkN "conspectus" "conspectuses"; -- from DictEng -lin conspicuous_A = compoundA (mkA "conspicuous"); -- from DictEng -lin conspicuously_Adv = mkAdv "conspicuously" ; -lin conspicuousness_N = mkN "conspicuousness" ; -- from DictEng -lin conspiracy_N = mkN "conspiracy" "conspiracies"; -- from DictEng -lin conspirator_N = mkN "conspirator" "conspirators"; -- from DictEng -lin conspiratorial_A = compoundA (mkA "conspiratorial"); -- from DictEng -lin conspire_V = mkV "conspire" "conspires" "conspired" "conspired" "conspiring"; -- from DictEng -lin conspire_V2 = mkV2 (mkV "conspire" "conspires" "conspired" "conspired" "conspiring"); -- from DictEng -lin conspire_V2V = mkV2V (mkV "conspire" "conspires" "conspired" "conspired" "conspiring") noPrep to_Prep ; -- from DictEng -lin constable_N = mkN "constable" "constables"; -- from DictEng -lin constabulary_N = mkN "constabulary" "constabularies"; -- from DictEng -lin constancy_N = mkN "constancy" ; -- from DictEng -lin constant_A = compoundA (mkA "constant"); -- from DictEng -lin constant_N = mkN "constant" "constants"; -- from DictEng -lin constantan_N = mkN "constantan" ; -lin constantly_Adv = mkAdv "constantly" ; -lin constellation_N = mkN "constellation" "constellations"; -- from DictEng -lin consternation_N = mkN "consternation" ; -- from DictEng -lin constipate_V2 = mkV2 (mkV "constipate" "constipates" "constipated" "constipated" "constipating"); -- from DictEng -lin constipated_A = compoundA (mkA "constipated"); -- from DictEng -lin constipation_N = mkN "constipation" ; -- from DictEng -lin constituency_N = mkN "constituency" "constituencies"; -- from DictEng -lin constituent_A = compoundA (mkA "constituent"); -- from DictEng -lin constituent_N = mkN "constituent" "constituents"; -- from DictEng -lin constitute_V2 = mkV2 (mkV "constitute" "constitutes" "constituted" "constituted" "constituting"); -- from DictEng -lin constitution_N = mkN "constitution" "constitutions"; -- from DictEng -lin constitutional_A = compoundA (mkA "constitutional"); -- from DictEng -lin constitutional_N = mkN "constitutional" "constitutionals"; -- from DictEng -lin constitutionalism_N = mkN "constitutionalism" ; -- from DictEng -lin constitutionalist_N = mkN "constitutionalist" "constitutionalists"; -- from DictEng -lin constitutionalize_V2 = mkV2 (mkV "constitutionalize" "constitutionalizes" "constitutionalized" "constitutionalized" "constitutionalizing"); -- from DictEng -lin constitutionally_Adv = mkAdv "constitutionally" ; -lin constitutive_A = compoundA (mkA "constitutive"); -- from DictEng -lin constrain_V2 = mkV2 (mkV "constrain" "constrains" "constrained" "constrained" "constraining"); -- from DictEng -lin constrained_A = compoundA (mkA "constrained"); -- from DictEng -lin constrainedly_Adv = mkAdv "constrainedly" ; -lin constraint_N = mkN "constraint" "constraints"; -- from DictEng -lin constrict_V2 = mkV2 (mkV "constrict" "constricts" "constricted" "constricted" "constricting"); -- from DictEng -lin constricted_A = mkA "constricted" ; -lin constricting_A = mkA "constricting" ; -lin constriction_N = mkN "constriction" "constrictions"; -- from DictEng -lin constrictor_N = mkN "constrictor" ; -lin construal_N = mkN "construal" ; -lin construct_V2 = mkV2 (mkV "construct" "constructs" "constructed" "constructed" "constructing"); -- from DictEng -lin construction_N = mkN "construction" "constructions"; -- from DictEng -lin constructional_A = compoundA (mkA "constructional"); -- from DictEng -lin constructive_A = compoundA (mkA "constructive"); -- from DictEng -lin constructive_metabolic_A = compoundA (mkA "constructive metabolic") ; -lin constructively_Adv = mkAdv "constructively" ; -lin constructiveness_N = mkN "constructiveness" ; -lin constructivism_N = mkN "constructivism" ; -lin constructivist_N = mkN "constructivist" ; -lin constructor_N = mkN "constructor" "constructors"; -- from DictEng -lin construe_V = mkV "construe" "construes" "construed" "construed" "construing"; -- from DictEng -lin construe_V2 = mkV2 (mkV "construe" "construes" "construed" "construed" "construing"); -- from DictEng -lin construe_V2V = mkV2V (mkV "construe" "construes" "construed" "construed" "construing") noPrep to_Prep ; -- from DictEng -lin consubstantial_A = mkA "consubstantial" ; -lin consubstantiation_N = mkN "consubstantiation" ; -- from DictEng -lin consuetude_N = mkN "consuetude" ; -lin consuetudinary_N = mkN "consuetudinary" ; -lin consul_N = mkN "consul" "consuls"; -- from DictEng -lin consular_A = compoundA (mkA "consular"); -- from DictEng -lin consulate_N = mkN "consulate" "consulates"; -- from DictEng -lin consulship_N = mkN "consulship" "consulships"; -- from DictEng -lin consult_V = mkV "consult" "consults" "consulted" "consulted" "consulting"; -- from DictEng -lin consult_V2 = mkV2 (mkV "consult" "consults" "consulted" "consulted" "consulting"); -- from DictEng -lin consult_V2Q = mkV2Q (mkV "consult") noPrep; -lin consultancy_N = mkN "consultancy" ; -lin consultant_N = mkN "consultant" "consultants"; -- from DictEng -lin consultation_N = mkN "consultation" "consultations"; -- from DictEng -lin consultative_A = compoundA (mkA "consultative"); -- from DictEng -lin consumable_A = mkA "consumable" ; -lin consume_V = mkV "consume" "consumes" "consumed" "consumed" "consuming"; -- from DictEng -lin consume_V2 = mkV2 (mkV "consume" "consumes" "consumed" "consumed" "consuming"); -- from DictEng -lin consumer_N = mkN "consumer" "consumers"; -- from DictEng -lin consumerism_N = mkN "consumerism" ; -lin consuming_A = compoundA (mkA "consuming"); -- from DictEng -lin consummate_A = compoundA (mkA "consummate"); -- from DictEng -lin consummate_V2 = mkV2 (mkV "consummate" "consummates" "consummated" "consummated" "consummating"); -- from DictEng -lin consummated_A = mkA "consummated" ; -lin consummation_N = mkN "consummation" "consummations"; -- from DictEng -lin consumption_N = mkN "consumption" ; -- from DictEng -lin consumptive_A = compoundA (mkA "consumptive"); -- from DictEng -lin consumptive_N = mkN "consumptive" "consumptives"; -- from DictEng -lin contact_N = mkN "contact" "contacts"; -- from DictEng -lin contact_V2 = mkV2 (mkV "contact" "contacts" "contacted" "contacted" "contacting"); -- from DictEng -lin contadino_N = mkN "contadino" ; -lin contagion_N = mkN "contagion" "contagions"; -- from DictEng -lin contagious_A = compoundA (mkA "contagious"); -- from DictEng -lin contagiously_Adv = mkAdv "contagiously" ; -lin contain_V2 = mkV2 (mkV "contain" "contains" "contained" "contained" "containing"); -- from DictEng -lin contained_A = mkA "contained" ; -lin container_N = mkN "container" "containers"; -- from DictEng -lin containerful_N = mkN "containerful" ; -lin containment_N = mkN "containment" ; -- from DictEng -lin contaminant_N = mkN "contaminant" "contaminants"; -- from DictEng -lin contaminate_V2 = mkV2 (mkV "contaminate" "contaminates" "contaminated" "contaminated" "contaminating"); -- from DictEng -lin contaminated_A = mkA "contaminated" ; -lin contamination_N = mkN "contamination" "contaminations"; -- from DictEng -lin contaminative_A = mkA "contaminative" ; -lin contemn_V2 = mkV2 (mkV "contemn" "contemns" "contemned" "contemned" "contemning"); -- from DictEng -lin contemplate_V = mkV "contemplate" "contemplates" "contemplated" "contemplated" "contemplating"; -- from DictEng -lin contemplate_V2 = mkV2 (mkV "contemplate" "contemplates" "contemplated" "contemplated" "contemplating"); -- from DictEng -lin contemplate_VS = mkVS (mkV "contemplate" "contemplates" "contemplated" "contemplated" "contemplating"); -- from DictEng -lin contemplation_N = mkN "contemplation" ; -- from DictEng -lin contemplative_A = compoundA (mkA "contemplative"); -- from DictEng -lin contemplative_N = mkN "contemplative" ; -lin contemporaneity_N = mkN "contemporaneity" ; -lin contemporaneous_A = compoundA (mkA "contemporaneous"); -- from DictEng -lin contemporaneously_Adv = mkAdv "contemporaneously" ; -lin contemporary_A = compoundA (mkA "contemporary"); -- from DictEng -lin contemporary_N = mkN "contemporary" "contemporaries"; -- from DictEng -lin contempt_N = mkN "contempt" ; -- from DictEng -lin contempt_of_congress_PN = mkPN "contempt of Congress" ; -lin contemptible_A = compoundA (mkA "contemptible"); -- from DictEng -lin contemptibly_Adv = mkAdv "contemptibly" ; -lin contemptuous_A = compoundA (mkA "contemptuous"); -- from DictEng -lin contemptuously_Adv = mkAdv "contemptuously" ; -lin contemptuousness_N = mkN "contemptuousness" ; -lin contend_V = mkV "contend" "contends" "contended" "contended" "contending"; -- from DictEng -lin contend_VS = mkVS (mkV "contend" "contends" "contended" "contended" "contending"); -- from DictEng -lin contender_N = mkN "contender" "contenders"; -- from DictEng -lin content_A = compoundA (mkA "content"); -- from DictEng -lin content_N = mkN "content" "contents"; -- from DictEng -lin content_V2 = mkV2 (mkV "content" "contents" "contented" "contented" "contenting"); -- from DictEng -lin contented_A = compoundA (mkA "contented"); -- from DictEng -lin contentedly_Adv = mkAdv "contentedly" ; -lin contentedness_N = mkN "contentedness" ; -lin contention_N = mkN "contention" "contentions"; -- from DictEng -lin contentious_A = compoundA (mkA "contentious"); -- from DictEng -lin contentment_N = mkN "contentment" ; -- from DictEng -lin contents_N = mkN "contents" ; -lin conterminous_A = compoundA (mkA "conterminous"); -- from DictEng -lin contest_N = mkN "contest" "contests"; -- from DictEng -lin contest_V = mkV "contest" "contests" "contested" "contested" "contesting"; -- from DictEng -lin contest_V2 = mkV2 (mkV "contest" "contests" "contested" "contested" "contesting"); -- from DictEng -lin contestable_A = mkA "contestable" ; -lin contestant_N = mkN "contestant" "contestants"; -- from DictEng -lin contested_A = mkA "contested" ; -lin contestee_N = mkN "contestee" ; -lin contester_N = mkN "contester" ; -lin context_N = mkN "context" "contexts"; -- from DictEng -lin contextual_A = compoundA (mkA "contextual"); -- from DictEng -lin contextualism_N = mkN "contextualism" ; -lin contextually_Adv = mkAdv "contextually" ; -lin contiguity_N = mkN "contiguity" ; -- from DictEng -lin contiguous_A = compoundA (mkA "contiguous"); -- from DictEng -lin continence_N = mkN "continence" ; -- from DictEng -lin continent_A = compoundA (mkA "continent"); -- from DictEng -lin continent_N = mkN "continent" "continents"; -- from DictEng -lin continent_wide_A = compoundA (mkA "continent wide") ; -lin continental_A = compoundA (mkA "continental"); -- from DictEng -lin contingency_N = mkN "contingency" "contingencies"; -- from DictEng -lin contingent_A = compoundA (mkA "contingent"); -- from DictEng -lin contingent_N = mkN "contingent" "contingents"; -- from DictEng -lin continual_A = compoundA (mkA "continual"); -- from DictEng -lin continually_Adv = mkAdv "continually" ; -lin continuance_N = mkN "continuance" "IRREG"; -- from DictEng -lin continuation_N = mkN "continuation" "continuations"; -- from DictEng -lin continue_V = mkV "continue" "continues" "continued" "continued" "continuing"; -- from DictEng -lin continue_V2 = mkV2 (mkV "continue" "continues" "continued" "continued" "continuing"); -- from DictEng -lin continue_VS = mkVS (mkV "continue" "continues" "continued" "continued" "continuing"); -- from DictEng -lin continue_VV = mkVV (mkV "continue" "continues" "continued" "continued" "continuing"); -- from DictEng -lin continued_A = mkA "continued" ; -lin continuing_A = mkA "continuing" ; -lin continuity_N = mkN "continuity" ; -- from DictEng -lin continuous_A = compoundA (mkA "continuous"); -- from DictEng -lin continuously_Adv = mkAdv "continuously" ; -lin continuousness_N = mkN "continuousness" ; -lin continuum_N = mkN "continuum" ; -lin conto_N = mkN "conto" ; -lin contort_V2 = mkV2 (mkV "contort" "contorts" "contorted" "contorted" "contorting"); -- from DictEng -lin contorted_A = mkA "contorted" ; -lin contortion_N = mkN "contortion" "contortions"; -- from DictEng -lin contortionist_N = mkN "contortionist" "contortionists"; -- from DictEng -lin contour_N = mkN "contour" "contours"; -- from DictEng -lin contour_V2 = mkV2 (mkV "contour" "contours" "contoured" "contoured" "contouring"); -- from DictEng -lin contraband_N = mkN "contraband" ; -- from DictEng -lin contrabass_A = mkA "contrabass" ; -lin contrabass_N = mkN "contrabass" "contrabasses"; -- from DictEng -lin contrabassoon_N = mkN "contrabassoon" ; -lin contraception_N = mkN "contraception" ; -- from DictEng -lin contraceptive_A = compoundA (mkA "contraceptive"); -- from DictEng -lin contraceptive_N = mkN "contraceptive" "contraceptives"; -- from DictEng -lin contract_N = mkN "contract" "contracts"; -- from DictEng -lin contract_V = mkV "contract" "contracts" "contracted" "contracted" "contracting"; -- from DictEng -lin contract_V2 = mkV2 (mkV "contract" "contracts" "contracted" "contracted" "contracting"); -- from DictEng -lin contract_V2V = mkV2V (mkV "contract" "contracts" "contracted" "contracted" "contracting") noPrep to_Prep ; -- from DictEng -lin contracted_A = mkA "contracted" ; -lin contractible_A = compoundA (mkA "contractible"); -- from DictEng -lin contractile_A = compoundA (mkA "contractile"); -- from DictEng -lin contractility_N = mkN "contractility" ; -lin contraction_N = mkN "contraction" "contractions"; -- from DictEng -lin contractor_N = mkN "contractor" "contractors"; -- from DictEng -lin contractual_A = compoundA (mkA "contractual"); -- from DictEng -lin contractually_Adv = mkAdv "contractually" ; -lin contracture_N = mkN "contracture" ; -lin contradict_V2 = mkV2 (mkV "contradict" "contradicts" "contradicted" "contradicted" "contradicting"); -- from DictEng -lin contradiction_N = mkN "contradiction" "contradictions"; -- from DictEng -lin contradictorily_Adv = mkAdv "contradictorily" ; -lin contradictoriness_N = mkN "contradictoriness" ; -lin contradictory_A = compoundA (mkA "contradictory"); -- from DictEng -lin contradictory_N = mkN "contradictory" ; -lin contradistinction_N = mkN "contradistinction" "contradistinctions"; -- from DictEng -lin contradistinguish_V2 = mkV2 (mkV "contradistinguish" "contradistinguishes" "contradistinguished" "contradistinguished" "contradistinguishing"); -- from DictEng -lin contrail_N = mkN "contrail" ; -lin contraindication_N = mkN "contraindication" ; -lin contralateral_A = mkA "contralateral" ; -lin contralto_N = mkN "contralto" "contraltos"; -- from DictEng -lin contraption_N = mkN "contraption" "contraptions"; -- from DictEng -lin contrapuntal_A = compoundA (mkA "contrapuntal"); -- from DictEng -lin contrapuntist_N = mkN "contrapuntist" ; -lin contrarian_N = mkN "contrarian" ; -lin contrariety_N = mkN "contrariety" "contrarieties"; -- from DictEng -lin contrarily_Adv = mkAdv "contrarily" ; -lin contrariness_N = mkN "contrariness" ; -- from DictEng -lin contrarious_A = mkA "contrarious" ; -lin contrariwise_Adv = mkAdv "contrariwise"; -- from DictEng -lin contrary_A = compoundA (mkA "contrary"); -- from DictEng -lin contrary_N = mkN "contrary" "contraries"; -- from DictEng -lin contrast_N = mkN "contrast" "contrasts"; -- from DictEng -lin contrast_V = mkV "contrast" "contrasts" "contrasted" "contrasted" "contrasting"; -- from DictEng -lin contrast_V2 = mkV2 (mkV "contrast" "contrasts" "contrasted" "contrasted" "contrasting"); -- from DictEng -lin contrasting_A = mkA "contrasting" ; -lin contrastingly_Adv = mkAdv "contrastingly"; -- from DictEng -lin contrastive_A = mkA "contrastive" ; -lin contrasty_A = mkA "contrasty" ; -lin contravene_V2 = mkV2 (mkV "contravene" "contravenes" "contravened" "contravened" "contravening"); -- from DictEng -lin contravention_N = mkN "contravention" "contraventions"; -- from DictEng -lin contretemps_N = mkN "contretemps" "contretemps"; -- from DictEng -lin contribute_V = mkV "contribute" "contributes" "contributed" "contributed" "contributing"; -- from DictEng -lin contribute_V2 = mkV2 (mkV "contribute" "contributes" "contributed" "contributed" "contributing"); -- from DictEng -lin contribute_V2V = mkV2V (mkV "contribute" "contributes" "contributed" "contributed" "contributing") noPrep to_Prep ; -- from DictEng -lin contribution_N = mkN "contribution" "contributions"; -- from DictEng -lin contributor_N = mkN "contributor" "contributors"; -- from DictEng -lin contributory_A = compoundA (mkA "contributory"); -- from DictEng -lin contrite_A = compoundA (mkA "contrite"); -- from DictEng -lin contrition_N = mkN "contrition" ; -- from DictEng -lin contrivance_N = mkN "contrivance" "contrivances"; -- from DictEng -lin contrive_V = mkV "contrive" "contrives" "contrived" "contrived" "contriving"; -- from DictEng -lin contrive_V2 = mkV2 (mkV "contrive" "contrives" "contrived" "contrived" "contriving"); -- from DictEng -lin contrived_A = mkA "contrived" ; -lin contriver_N = mkN "contriver" "contrivers"; -- from DictEng -lin control_N = mkN "control" "controls"; -- from DictEng -lin control_V = mkV "control"; -- from DictEng -lin control_V2 = mkV2 (mkV "control" "controls" "controlled" "controlled" "controlling"); -- from DictEng -lin controllable_A = compoundA (mkA "controllable"); -- from DictEng -lin controlled_A = mkA "controlled" ; -lin controller_N = mkN "controller" "controllers"; -- from DictEng -lin controllership_N = mkN "controllership" ; -lin controlling_A = mkA "controlling" ; -lin controversial_A = compoundA (mkA "controversial"); -- from DictEng -lin controversialist_N = mkN "controversialist" "controversialists"; -- from DictEng -lin controversially_Adv = mkAdv "controversially" ; -lin controversy_N = mkN "controversy" "controversies"; -- from DictEng -lin controvert_V2 = mkV2 (mkV "controvert" "controverts" "controverted" "controverted" "controverting"); -- from DictEng -lin contumacious_A = compoundA (mkA "contumacious"); -- from DictEng -lin contumacy_N = mkN "contumacy" "contumacies"; -- from DictEng -lin contumelious_A = compoundA (mkA "contumelious"); -- from DictEng -lin contumely_N = mkN "contumely" "contumelies"; -- from DictEng -lin contuse_V2 = mkV2 (mkV "contuse" "contuses" "contused" "contused" "contusing"); -- from DictEng -lin contusion_N = mkN "contusion" "contusions"; -- from DictEng -lin conundrum_N = mkN "conundrum" "conundrums"; -- from DictEng -lin conurbation_N = mkN "conurbation" "conurbations"; -- from DictEng -lin convalesce_V = mkV "convalesce" "convalesces" "convalesced" "convalesced" "convalescing"; -- from DictEng -lin convalescence_N = mkN "convalescence" ; -- from DictEng -lin convalescent_A = compoundA (mkA "convalescent"); -- from DictEng -lin convalescent_N = mkN "convalescent" "convalescents"; -- from DictEng -lin convection_N = mkN "convection" ; -- from DictEng -lin convector_N = mkN "convector" "convectors"; -- from DictEng -lin convene_V = mkV "convene" "convenes" "convened" "convened" "convening"; -- from DictEng -lin convene_V2 = mkV2 (mkV "convene" "convenes" "convened" "convened" "convening"); -- from DictEng -lin convener_N = mkN "convener" "conveners"; -- from DictEng -lin convenience_N = mkN "convenience" "conveniences"; -- from DictEng -lin convenient_A = compoundA (mkA "convenient"); -- from DictEng -lin convent_N = mkN "convent" "convents"; -- from DictEng -lin conventicle_N = mkN "conventicle" "conventicles"; -- from DictEng -lin convention_N = mkN "convention" "conventions"; -- from DictEng -lin conventional_A = compoundA (mkA "conventional"); -- from DictEng -lin conventionality_N = mkN "conventionality" "conventionalities"; -- from DictEng -lin conventionalization_N = mkN "conventionalization" ; -lin conventionalized_A = mkA "conventionalized" ; -lin conventionally_Adv = mkAdv "conventionally" ; -lin conventioneer_N = mkN "conventioneer" ; -lin converge_V = mkV "converge" "converges" "converged" "converged" "converging"; -- from DictEng -lin convergence_N = mkN "convergence" "convergences"; -- from DictEng -lin convergent_A = compoundA (mkA "convergent"); -- from DictEng -lin conversant_A = compoundA (mkA "conversant"); -- from DictEng -lin conversation_N = mkN "conversation" "conversations"; -- from DictEng -lin conversational_A = compoundA (mkA "conversational"); -- from DictEng -lin conversationalist_N = mkN "conversationalist" "conversationalists"; -- from DictEng -lin converse_A = compoundA (mkA "converse"); -- from DictEng -lin converse_N = mkN "converse" "converses"; -- from DictEng -lin converse_V = mkV "converse" "converses" "conversed" "conversed" "conversing"; -- from DictEng -lin conversely_Adv = mkAdv "conversely" ; -lin conversion_N = mkN "conversion" "conversions"; -- from DictEng -lin convert_N = mkN "convert" "converts"; -- from DictEng -lin convert_V = mkV "convert"; -- from DictEng -lin convert_V2 = mkV2 (mkV "convert" "converts" "converted" "converted" "converting"); -- from DictEng -lin converted_A = compoundA (mkA "converted"); -- from DictEng -lin converter_N = mkN "converter" "converters"; -- from DictEng -lin convertibility_N = mkN "convertibility" ; -- from DictEng -lin convertible_A = compoundA (mkA "convertible"); -- from DictEng -lin convertible_N = mkN "convertible" "convertibles"; -- from DictEng -lin convex_A = compoundA (mkA "convex"); -- from DictEng -lin convexity_N = mkN "convexity" ; -- from DictEng -lin convexly_Adv = mkAdv "convexly" ; -lin convexo_concave_A = compoundA (mkA "convexo concave") ; -lin convey_V2 = mkV2 (mkV "convey" "conveys" "conveyed" "conveyed" "conveying"); -- from DictEng -lin conveyance_N = mkN "conveyance" "conveyances"; -- from DictEng -lin conveyancer_N = mkN "conveyancer" "conveyancers"; -- from DictEng -lin conveyer_N = mkN "conveyer" "conveyers"; -- from DictEng -lin conveyer_belt_N = mkN "conveyer - belt" "conveyer - belts"; -- from DictEng -lin conveyor_N = mkN "conveyor" "conveyors"; -- from DictEng -lin convict_N = mkN "convict" "convicts"; -- from DictEng -lin convict_V2 = mkV2 (mkV "convict" "convicts" "convicted" "convicted" "convicting"); -- from DictEng -lin conviction_N = mkN "conviction" "convictions"; -- from DictEng -lin convince_V2 = mkV2 (mkV "convince" "convinces" "convinced" "convinced" "convincing"); -- from DictEng -lin convince_V2V = mkV2V (mkV "convince") noPrep to_Prep ; -- from DictEng -lin convince_VS = mkVS (mkV "convince" ); -lin convinced_A = mkA "convinced" ; -lin convincible_A = compoundA (mkA "convincible"); -- from DictEng -lin convincing_A = compoundA (mkA "convincing"); -- from DictEng -lin convincingly_Adv = mkAdv "convincingly" ; -lin convincingness_N = mkN "convincingness" ; -lin convivial_A = compoundA (mkA "convivial"); -- from DictEng -lin conviviality_N = mkN "conviviality" "convivialities"; -- from DictEng -lin convivially_Adv = mkAdv "convivially" ; -lin convocation_N = mkN "convocation" "convocations"; -- from DictEng -lin convoke_V2 = mkV2 (mkV "convoke" "convokes" "convoked" "convoked" "convoking"); -- from DictEng -lin convolute_A = mkA "convolute" ; -lin convoluted_A = compoundA (mkA "convoluted"); -- from DictEng -lin convolution_N = mkN "convolution" "convolutions"; -- from DictEng -lin convolvulus_N = mkN "convolvulus" "convolvuluses"; -- from DictEng -lin convoy_N = mkN "convoy" "convoys"; -- from DictEng -lin convoy_V2 = mkV2 (mkV "convoy" "convoys" "convoyed" "convoyed" "convoying"); -- from DictEng -lin convulse_V = mkV "convulse" ; -lin convulse_V2 = mkV2 (mkV "convulse" "convulses" "convulsed" "convulsed" "convulsing"); -- from DictEng -lin convulsion_N = mkN "convulsion" "convulsions"; -- from DictEng -lin convulsive_A = compoundA (mkA "convulsive"); -- from DictEng -lin convulsively_Adv = mkAdv "convulsively" ; -lin cony_N = mkN "cony" "conies"; -- from DictEng -lin coo_N = mkN "coo" "coos"; -- from DictEng -lin coo_V = mkV "coo" "coos" "cooed" "cooed" "cooing"; -- from DictEng -lin coo_V2 = mkV2 (mkV "coo" "coos" "cooed" "cooed" "cooing"); -- from DictEng -lin cook_N = mkN "cook" "cooks"; -- from DictEng -lin cook_V = mkV "cook" "cooks" "cooked" "cooked" "cooking"; -- from DictEng -lin cook_V2 = mkV2 (mkV "cook" "cooks" "cooked" "cooked" "cooking"); -- from DictEng -lin cookbook_N = mkN "cookbook" "cookbooks"; -- from DictEng -lin cooked_A = mkA "cooked" ; -lin cooker_N = mkN "cooker" "cookers"; -- from DictEng -lin cookery_N = mkN "cookery" ; -- from DictEng -lin cookery_book_N = mkN "cookery - book" "cookery - books"; -- from DictEng -lin cookfire_N = mkN "cookfire" ; -lin cookhouse_N = mkN "cookhouse" "cookhouses"; -- from DictEng -lin cookie_N = mkN "cookie" "cookies"; -- from DictEng -lin cookie_cutter_A = compoundA (mkA "cookie cutter") ; -lin cookie_sized_A = compoundA (mkA "cookie sized") ; -lin cooking_N = mkN "cooking" ; -- from DictEng -lin cookout_N = mkN "cookout" ; -lin cookstove_N = mkN "cookstove" ; -lin cooky_N = mkN "cooky" "cookies"; -- from DictEng -lin cool_A = mkA "cool" "cooler"; -- from DictEng -lin cool_N = mkN "cool" ; -- from DictEng -lin cool_V = mkV "cool" "cools" "cooled" "cooled" "cooling"; -- from DictEng -lin cool_V2 = mkV2 (mkV "cool" "cools" "cooled" "cooled" "cooling"); -- from DictEng -lin cool_headed_A = compoundA (mkA "cool - headed"); -- from DictEng -lin coolant_N = mkN "coolant" "coolants"; -- from DictEng -lin cooler_N = mkN "cooler" "coolers"; -- from DictEng -lin coolie_N = mkN "coolie" "coolies"; -- from DictEng -lin cooling_N = mkN "cooling" ; -lin cooling_tower_N = mkN "cooling - tower" "cooling - towers"; -- from DictEng -lin coolly_Adv = mkAdv "coolly" ; -lin coolness_N = mkN "coolness" ; -- from DictEng -lin coon_N = mkN "coon" "coons"; -- from DictEng -lin coondog_N = mkN "coondog" ; -lin coonhound_N = mkN "coonhound" ; -lin coontie_N = mkN "coontie" ; -lin coop_N = mkN "coop" "coops"; -- from DictEng -lin coop_V2 = mkV2 (mkV "coop" "coops" "cooped" "cooped" "cooping"); -- from DictEng -lin cooper_N = mkN "cooper" "coopers"; -- from DictEng -lin cooperate_V = mkV "cooperate" "cooperates" "cooperated" "cooperated" "cooperating"; -- from DictEng -lin cooperation_N = mkN "cooperation" ; -- from DictEng -lin cooperative_A = compoundA (mkA "cooperative"); -- from DictEng -lin cooperative_N = mkN "cooperative" "cooperatives"; -- from DictEng -lin cooperator_N = mkN "cooperator" "cooperators"; -- from DictEng -lin coordinate_A = compoundA (mkA "coordinate"); -- from DictEng -lin coordinate_N = mkN "coordinate" "coordinates"; -- from DictEng -lin coordinate_V = mkV "coordinate"; -- from DictEng -lin coordinate_V2 = mkV2 (mkV "coordinate" "coordinates" "coordinated" "coordinated" "coordinating"); -- from DictEng -lin coordinated_A = mkA "coordinated" ; -lin coordinately_Adv = mkAdv "coordinately" ; -lin coordinating_A = mkA "coordinating" ; -lin coordination_N = mkN "coordination" "coordinations"; -- from DictEng -lin coordinator_N = mkN "coordinator" "coordinators"; -- from DictEng -lin coot_N = mkN "coot" "coots"; -- from DictEng -lin cooter_N = mkN "cooter" ; -lin cop_N = mkN "cop" "cops"; -- from DictEng -lin cop_V = mkV "cop" "cops" "copped" "copped" "copping"; -- from DictEng -lin cop_V2 = mkV2 (mkV "cop" "cops" "copped" "copped" "copping"); -- from DictEng -lin cop_out_N = mkN "cop - out" "cop - outs"; -- from DictEng -lin copacetic_A = mkA "copacetic" ; -lin copaiba_N = mkN "copaiba" ; -lin copal_N = mkN "copal" ; -lin copalite_N = mkN "copalite" ; -lin copartner_N = mkN "copartner" "copartners"; -- from DictEng -lin copartnership_N = mkN "copartnership" "copartnerships"; -- from DictEng -lin cope_N = mkN "cope" "copes"; -- from DictEng -lin cope_V = mkV "cope" "copes" "coped" "coped" "coping"; -- from DictEng -lin copeck_N = mkN "copeck" "copecks"; -- from DictEng -lin copepod_N = mkN "copepod" ; -lin copernican_A = compoundA (mkA "copernican"); -- from DictEng -lin copilot_N = mkN "copilot" ; -lin coping_N = mkN "coping" "copings"; -- from DictEng -lin coping_stone_N = mkN "coping - stone" "coping - stones"; -- from DictEng -lin copious_A = compoundA (mkA "copious"); -- from DictEng -lin coplanar_A = mkA "coplanar" ; -lin copolymer_N = mkN "copolymer" ; -lin copout_N = mkN "copout" ; -lin copper_N = mkN "copper" "coppers"; -- from DictEng -lin copper_V2 = mkV2 (mkV "copper" "coppers" "coppered" "coppered" "coppering"); -- from DictEng -lin copper_bottomed_A = compoundA (mkA "copper - bottomed"); -- from DictEng -lin copper_bottom_V2 = mkV2 (mkV "copper - bottom" "copper - bottoms" "copper - bottomed" "copper - bottomed" "copper - bottoming"); -- from DictEng -lin copper_bottomed_A = compoundA (mkA "copper - bottomed"); -- from DictEng -lin copperhead_N = mkN "copperhead" "copperheads"; -- from DictEng -lin copperplate_N = mkN "copperplate" ; -- from DictEng -lin coppersmith_N = mkN "coppersmith" "coppersmiths"; -- from DictEng -lin copperware_N = mkN "copperware" ; -lin coppery_A = mkA "coppery" ; -lin coppice_N = mkN "coppice" "coppices"; -- from DictEng -lin copra_N = mkN "copra" ; -- from DictEng -lin coprolalia_N = mkN "coprolalia" ; -lin coprolite_N = mkN "coprolite" ; -lin coprolith_N = mkN "coprolith" ; -lin coprophagy_N = mkN "coprophagy" ; -lin copse_N = mkN "copse" "copses"; -- from DictEng -lin copt_A = compoundA (mkA "copt"); -- from DictEng -lin copt_N = mkN "copt" "copts"; -- from DictEng -lin coptic_N = mkN "coptic" "coptics"; -- from DictEng -lin copula_N = mkN "copula" "copulas"; -- from DictEng -lin copular_A = mkA "copular" ; -lin copulate_V = mkV "copulate" "copulates" "copulated" "copulated" "copulating"; -- from DictEng -lin copulation_N = mkN "copulation" "copulations"; -- from DictEng -lin copulative_A = compoundA (mkA "copulative"); -- from DictEng -lin copulative_N = mkN "copulative" "copulatives"; -- from DictEng -lin copy_N = mkN "copy" "copies"; -- from DictEng -lin copy_V = mkV "copy" "copies" "copied" "copied" "copying"; -- from DictEng -lin copy_V2 = mkV2 (mkV "copy" "copies" "copied" "copied" "copying"); -- from DictEng -lin copybook_N = mkN "copybook" "copybooks"; -- from DictEng -lin copycat_N = mkN "copycat" "copycats"; -- from DictEng -lin copyhold_N = mkN "copyhold" ; -- from DictEng -lin copyholder_N = mkN "copyholder" "copyholders"; -- from DictEng -lin copying_N = mkN "copying" ; -lin copyist_N = mkN "copyist" "copyists"; -- from DictEng -lin copyright_N = mkN "copyright" "copyrights"; -- from DictEng -lin copyright_V2 = mkV2 (mkV "copyright" "copyrights" "copyrighted" "copyrighted" "copyrighting"); -- from DictEng -lin copyrighted_A = mkA "copyrighted" ; -lin copywriter_N = mkN "copywriter" "copywriters"; -- from DictEng -lin coquetry_N = mkN "coquetry" "coquetries"; -- from DictEng -lin coquette_N = mkN "coquette" "coquettes"; -- from DictEng -lin coquettish_A = compoundA (mkA "coquettish"); -- from DictEng -lin coquettishly_Adv = mkAdv "coquettishly" ; -lin coquille_N = mkN "coquille" ; -lin coquilles_saint_jacques_PN = mkPN "coquilles Saint Jacques" ; -lin cor_anglais_N = mkN "cor anglais" "cor anglaes" {- FIXME: guessed plural form -}; -- from DictEng -lin coracle_N = mkN "coracle" "coracles"; -- from DictEng -lin coral_A = compoundA (mkA "coral"); -- from DictEng -lin coral_N = mkN "coral" "corals"; -- from DictEng -lin coral_red_A = compoundA (mkA "coral red") ; -lin coral_reef_N = mkN "coral - reef" "coral - reefs"; -- from DictEng -lin coralbells_N = mkN "coralbells" ; -lin coralberry_N = mkN "coralberry" ; -lin coralwood_N = mkN "coralwood" ; -lin corbel_N = mkN "corbel" "corbels"; -- from DictEng -lin corbelled_A = mkA "corbelled" ; -lin corbina_N = mkN "corbina" ; -lin corchorus_N = mkN "corchorus" ; -lin cord_N = mkN "cord" "cords"; -- from DictEng -lin cord_V2 = mkV2 (mkV "cord" "cords" "corded" "corded" "cording"); -- from DictEng -lin cordage_N = mkN "cordage" ; -- from DictEng -lin cordate_A = mkA "cordate" ; -lin corded_A = mkA "corded" ; -lin cordgrass_N = mkN "cordgrass" ; -lin cordial_A = compoundA (mkA "cordial"); -- from DictEng -lin cordial_N = mkN "cordial" "cordials"; -- from DictEng -lin cordiality_N = mkN "cordiality" "cordialities"; -- from DictEng -lin cordierite_N = mkN "cordierite" ; -lin cordite_N = mkN "cordite" ; -- from DictEng -lin corditis_N = mkN "corditis" ; -lin cordless_A = mkA "cordless" ; -lin cordoba_N = mkN "cordoba" ; -lin cordon_N = mkN "cordon" "cordons"; -- from DictEng -lin cordon_V2 = mkV2 (mkV "cordon" "cordons" "cordoned" "cordoned" "cordoning"); -- from DictEng -lin cordon_bleu_A = compoundA (mkA "cordon bleu"); -- from DictEng -lin cordovan_N = mkN "cordovan" ; -lin cords_N = mkN "cords" ; -lin corduroy_N = mkN "corduroy" ; -- from DictEng -lin cordwood_N = mkN "cordwood" ; -lin core_N = mkN "core" "cores"; -- from DictEng -lin core_V2 = mkV2 (mkV "core" "cores" "cored" "cored" "coring"); -- from DictEng -lin coreference_N = mkN "coreference" ; -lin coreferent_A = mkA "coreferent" ; -lin coreferential_A = mkA "coreferential" ; -lin coreligionist_N = mkN "coreligionist" "coreligionists"; -- from DictEng -lin coreopsis_N = mkN "coreopsis" ; -lin corer_N = mkN "corer" ; -lin corespondent_N = mkN "corespondent" ; -lin corgi_N = mkN "corgi" "corgis"; -- from DictEng -lin coriaceous_A = mkA "coriaceous" ; -lin coriander_N = mkN "coriander" ; -lin corinthian_A = compoundA (mkA "corinthian"); -- from DictEng -lin corinthian_N = mkN "corinthian" "corinthians"; -- from DictEng -lin cork_N = mkN "cork" "corks"; -- from DictEng -lin cork_V2 = mkV2 (mkV "cork" "corks" "corked" "corked" "corking"); -- from DictEng -lin corkage_N = mkN "corkage" ; -- from DictEng -lin corkboard_N = mkN "corkboard" ; -lin corked_A = compoundA (mkA "corked"); -- from DictEng -lin corker_N = mkN "corker" "corkers"; -- from DictEng -lin corkscrew_N = mkN "corkscrew" "corkscrews"; -- from DictEng -lin corkwood_N = mkN "corkwood" ; -lin corm_N = mkN "corm" "corms"; -- from DictEng -lin cormorant_N = mkN "cormorant" "cormorants"; -- from DictEng -lin cormous_A = mkA "cormous" ; -lin corn_N = mkN "corn" "corns"; -- from DictEng -lin corn_V2 = mkV2 (mkV "corn" "corns" "corned" "corned" "corning"); -- from DictEng -lin corn_fed_A = compoundA (mkA "corn fed") ; -lin corn_exchange_N = mkN "corn - exchange" "corn - exchanges"; -- from DictEng -lin cornbread_N = mkN "cornbread" ; -lin corncob_N = mkN "corncob" "corncobs"; -- from DictEng -lin corncrake_N = mkN "corncrake" "corncrakes"; -- from DictEng -lin corncrib_N = mkN "corncrib" ; -lin cornea_N = mkN "cornea" "corneas"; -- from DictEng -lin corneal_A = mkA "corneal" ; -lin corned_A = mkA "corned" ; -lin cornelian_N = mkN "cornelian" "cornelians"; -- from DictEng -lin corneous_A = mkA "corneous" ; -lin corner_N = mkN "corner" "corners"; -- from DictEng -lin corner_V = mkV "corner" "corners" "cornered" "cornered" "cornering"; -- from DictEng -lin corner_V2 = mkV2 (mkV "corner" "corners" "cornered" "cornered" "cornering"); -- from DictEng -lin corner_kick_N = mkN "corner - kick" "corner - kicks"; -- from DictEng -lin cornerback_N = mkN "cornerback" ; -lin cornered_A = compoundA (mkA "cornered"); -- from DictEng -lin cornerstone_N = mkN "cornerstone" "cornerstones"; -- from DictEng -lin cornet_N = mkN "cornet" "cornets"; -- from DictEng -lin cornetfish_N = mkN "cornetfish" ; -lin cornfield_N = mkN "cornfield" ; -lin cornflake_N = mkN "cornflake" "cornflakes"; -- from DictEng -lin cornflour_N = mkN "cornflour" ; -- from DictEng -lin cornflower_N = mkN "cornflower" "cornflowers"; -- from DictEng -lin cornhusk_N = mkN "cornhusk" ; -lin cornhusker_N = mkN "cornhusker" ; -lin cornhusking_N = mkN "cornhusking" ; -lin cornice_N = mkN "cornice" "cornices"; -- from DictEng -lin cornmeal_N = mkN "cornmeal" ; -lin cornpone_N = mkN "cornpone" ; -- from DictEng -lin cornsilk_N = mkN "cornsilk" ; -lin cornsmut_N = mkN "cornsmut" ; -lin cornstalk_N = mkN "cornstalk" ; -lin cornstarch_N = mkN "cornstarch" ; -- from DictEng -lin cornu_N = mkN "cornu" ; -lin cornucopia_N = mkN "cornucopia" "cornucopias"; -- from DictEng -lin corny_A = mkA "corny" "cornier"; -- from DictEng -lin corolla_N = mkN "corolla" "corollas"; -- from DictEng -lin corollary_N = mkN "corollary" "corollaries"; -- from DictEng -lin corona_N = mkN "corona" "coronas"; -- from DictEng -lin coronary_A = compoundA (mkA "coronary"); -- from DictEng -lin coronary_N = mkN "coronary" "coronaries"; -- from DictEng -lin coronate_V2 = mkV2 (mkV "coronate") ; -lin coronation_N = mkN "coronation" "coronations"; -- from DictEng -lin coroner_N = mkN "coroner" "coroners"; -- from DictEng -lin coronet_N = mkN "coronet" "coronets"; -- from DictEng -lin coroneted_A = mkA "coroneted" ; -lin coronilla_N = mkN "coronilla" ; -lin coronion_N = mkN "coronion" ; -lin corozo_N = mkN "corozo" ; -lin corporal_A = compoundA (mkA "corporal"); -- from DictEng -lin corporal_N = mkN "corporal" "corporals"; -- from DictEng -lin corporate_A = compoundA (mkA "corporate"); -- from DictEng -lin corporation_N = mkN "corporation" "corporations"; -- from DictEng -lin corporatism_N = mkN "corporatism" ; -lin corporatist_A = mkA "corporatist" ; -lin corporatist_N = mkN "corporatist" ; -lin corporeal_A = compoundA (mkA "corporeal"); -- from DictEng -lin corps_N = mkN "corps" "corps"; -- from DictEng -lin corps_de_ballet_N = mkN "corps de ballet" "IRREG"; -- from DictEng -lin corps_diplomatique_N = mkN "corps diplomatique" "IRREG"; -- from DictEng -lin corpse_N = mkN "corpse" "corpses"; -- from DictEng -lin corpulence_N = mkN "corpulence" ; -- from DictEng -lin corpulent_A = compoundA (mkA "corpulent"); -- from DictEng -lin corpus_N = mkN "corpus" "corpi" {- FIXME: guessed plural form -}; -- from DictEng -lin corpuscle_N = mkN "corpuscle" "corpuscles"; -- from DictEng -lin corpuscular_A = mkA "corpuscular" ; -lin corral_N = mkN "corral" "corrals"; -- from DictEng -lin corral_V2 = mkV2 (mkV "corral" "corrals" "corralled" "corralled" "corralling"); -- from DictEng -lin correct_A = compoundA (mkA "correct"); -- from DictEng -lin correct_V = mkV "correct"; -- from DictEng -lin correct_V2 = mkV2 (mkV "correct" "corrects" "corrected" "corrected" "correcting"); -- from DictEng -lin correct_VS = mkVS (mkV "correct"); -- from DictEng -lin correctable_A = mkA "correctable" ; -lin corrected_A = mkA "corrected" ; -lin correction_N = mkN "correction" "corrections"; -- from DictEng -lin correctional_A = mkA "correctional" ; -lin corrections_N = mkN "corrections" ; -lin correctitude_N = mkN "correctitude" ; -- from DictEng -lin corrective_A = compoundA (mkA "corrective"); -- from DictEng -lin corrective_N = mkN "corrective" "correctives"; -- from DictEng -lin correctly_Adv = mkAdv "correctly" ; -lin correctness_N = mkN "correctness" ; -- from DictEng -lin correlate_N = mkN "correlate" ; -lin correlate_V = mkV "correlate" "correlates" "correlated" "correlated" "correlating"; -- from DictEng -lin correlate_V2 = mkV2 (mkV "correlate" "correlates" "correlated" "correlated" "correlating"); -- from DictEng -lin correlation_N = mkN "correlation" "correlations"; -- from DictEng -lin correlational_A = mkA "correlational" ; -lin correlative_A = compoundA (mkA "correlative"); -- from DictEng -lin correlative_N = mkN "correlative" "correlatives"; -- from DictEng -lin correspond_V = mkV "correspond" "corresponds" "corresponded" "corresponded" "corresponding"; -- from DictEng -lin correspondence_N = mkN "correspondence" "correspondences"; -- from DictEng -lin correspondent_N = mkN "correspondent" "correspondents"; -- from DictEng -lin corresponding_A = compoundA (mkA "corresponding"); -- from DictEng -lin correspondingly_Adv = mkAdv "correspondingly" ; -lin corridor_N = mkN "corridor" "corridors"; -- from DictEng -lin corrie_N = mkN "corrie" "corries"; -- from DictEng -lin corrigenda_N = mkN "corrigenda" ; -lin corrigendum_N = mkN "corrigendum" "corrigenda" {- FIXME: guessed plural form -}; -- from DictEng -lin corrigible_A = compoundA (mkA "corrigible"); -- from DictEng -lin corroborant_A = mkA "corroborant" ; -lin corroborate_V2 = mkV2 (mkV "corroborate" "corroborates" "corroborated" "corroborated" "corroborating"); -- from DictEng -lin corroboration_N = mkN "corroboration" ; -- from DictEng -lin corroborative_A = compoundA (mkA "corroborative"); -- from DictEng -lin corrode_V = mkV "corrode" "corrodes" "corroded" "corroded" "corroding"; -- from DictEng -lin corrode_V2 = mkV2 (mkV "corrode" "corrodes" "corroded" "corroded" "corroding"); -- from DictEng -lin corroded_A = mkA "corroded" ; -lin corrosion_N = mkN "corrosion" ; -- from DictEng -lin corrosion_resistant_A = compoundA (mkA "corrosion resistant") ; -lin corrosive_A = compoundA (mkA "corrosive"); -- from DictEng -lin corrosive_N = mkN "corrosive" "corrosives"; -- from DictEng -lin corrugate_V = mkV "corrugate" "corrugates" "corrugated" "corrugated" "corrugating"; -- from DictEng -lin corrugate_V2 = mkV2 (mkV "corrugate" "corrugates" "corrugated" "corrugated" "corrugating"); -- from DictEng -lin corrugated_A = mkA "corrugated" ; -lin corrugation_N = mkN "corrugation" "corrugations"; -- from DictEng -lin corrupt_A = compoundA (mkA "corrupt"); -- from DictEng -lin corrupt_V = mkV "corrupt" "corrupts" "corrupted" "corrupted" "corrupting"; -- from DictEng -lin corrupt_V2 = mkV2 (mkV "corrupt" "corrupts" "corrupted" "corrupted" "corrupting"); -- from DictEng -lin corrupted_A = mkA "corrupted" ; -lin corruptibility_N = mkN "corruptibility" ; -- from DictEng -lin corruptible_A = compoundA (mkA "corruptible"); -- from DictEng -lin corrupting_A = mkA "corrupting" ; -lin corruption_N = mkN "corruption" ; -- from DictEng -lin corruptive_A = mkA "corruptive" ; -lin corruptly_Adv = mkAdv "corruptly" ; -lin corruptness_N = mkN "corruptness" ; -- from DictEng -lin corsage_N = mkN "corsage" "corsages"; -- from DictEng -lin corsair_N = mkN "corsair" "corsairs"; -- from DictEng -lin corse_N = mkN "corse" "corses"; -- from DictEng -lin corselet_N = mkN "corselet" "corselets"; -- from DictEng -lin corset_N = mkN "corset" "corsets"; -- from DictEng -lin corslet_N = mkN "corslet" "corslets"; -- from DictEng -lin cortege_N = mkN "cortege" ; -lin cortege_1_N = mkN "cortege" "corteges"; -- from DictEng -lin cortege_2_N = mkN "cortège" "cortèges"; -- from DictEng -lin cortex_N = mkN "cortex" "cortices" {- FIXME: guessed plural form -}; -- from DictEng -lin cortical_A = compoundA (mkA "cortical"); -- from DictEng -lin cortically_Adv = mkAdv "cortically" ; -lin cortico_hypothalamic_A = compoundA (mkA "cortico hypothalamic") ; -lin corticoafferent_A = mkA "corticoafferent" ; -lin corticoefferent_A = mkA "corticoefferent" ; -lin corticosteroid_N = mkN "corticosteroid" ; -lin corticosterone_N = mkN "corticosterone" ; -lin cortina_N = mkN "cortina" ; -lin cortisone_N = mkN "cortisone" ; -- from DictEng -lin corundom_N = mkN "corundom" ; -lin corundum_N = mkN "corundum" ; -- from DictEng -lin coruscate_V = mkV "coruscate" "coruscates" "coruscated" "coruscated" "coruscating"; -- from DictEng -lin coruscation_N = mkN "coruscation" "coruscations"; -- from DictEng -lin corvee_N = mkN "corvée" "corvées"; -- from DictEng -lin corvette_N = mkN "corvette" "corvettes"; -- from DictEng -lin corvine_A = mkA "corvine" ; -lin corydalis_N = mkN "corydalis" ; -lin corymb_N = mkN "corymb" ; -lin corymbose_A = mkA "corymbose" ; -lin corynebacterium_N = mkN "corynebacterium" ; -lin coryphantha_N = mkN "coryphantha" ; -lin corythosaur_N = mkN "corythosaur" ; -lin cos_N = mkN "cos" "cos"; -- from DictEng -lin coscoroba_N = mkN "coscoroba" ; -lin cosecant_N = mkN "cosecant" ; -lin coseismic_A = mkA "coseismic" ; -lin cosh_N = mkN "cosh" "coshes"; -- from DictEng -lin cosh_V2 = mkV2 (mkV "cosh" "coshes" "coshed" "coshed" "coshing"); -- from DictEng -lin cosher_A = compoundA (mkA "cosher"); -- from DictEng -lin cosignatory_A = compoundA (mkA "cosignatory"); -- from DictEng -lin cosignatory_N = mkN "cosignatory" "cosignatories"; -- from DictEng -lin cosigner_N = mkN "cosigner" ; -lin cosily_Adv = mkAdv "cosily"; -- from DictEng -lin cosine_N = mkN "cosine" "cosines"; -- from DictEng -lin cosiness_N = mkN "cosiness" ; -- from DictEng -lin cosmetic_A = compoundA (mkA "cosmetic"); -- from DictEng -lin cosmetic_N = mkN "cosmetic" "cosmetics"; -- from DictEng -lin cosmetically_Adv = mkAdv "cosmetically" ; -lin cosmetician_N = mkN "cosmetician" "cosmeticians"; -- from DictEng -lin cosmetologist_N = mkN "cosmetologist" ; -lin cosmetology_N = mkN "cosmetology" ; -lin cosmic_A = compoundA (mkA "cosmic"); -- from DictEng -lin cosmid_N = mkN "cosmid" ; -lin cosmogony_N = mkN "cosmogony" "cosmogonies"; -- from DictEng -lin cosmographer_N = mkN "cosmographer" ; -lin cosmography_N = mkN "cosmography" ; -lin cosmolatry_N = mkN "cosmolatry" ; -lin cosmologic_A = mkA "cosmologic" ; -lin cosmologist_N = mkN "cosmologist" ; -lin cosmology_N = mkN "cosmology" ; -lin cosmonaut_N = mkN "cosmonaut" "cosmonauts"; -- from DictEng -lin cosmopolitan_A = compoundA (mkA "cosmopolitan"); -- from DictEng -lin cosmopolitan_N = mkN "cosmopolitan" "cosmopolitans"; -- from DictEng -lin cosmos_N = mkN "cosmos" (variants {"cosmoi"; "cosmoses"}); -- from DictEng -lin cosmotron_N = mkN "cosmotron" ; -lin cosset_V2 = mkV2 (mkV "cosset" "cossets" "cosseted" "cosseted" "cosseting"); -- from DictEng -lin cost_N = mkN "cost" "costs"; -- from DictEng -lin cost_V = mkV "cost" "costs" "costed" "costed" "costing"; -- from DictEng -lin cost_V2 = mkV2 (mkV "cost" "costs" "costed" "costed" "costing"); -- from DictEng -lin cost_efficient_A = compoundA (mkA "cost efficient") ; -lin cost_plus_A = compoundA (mkA "cost plus") ; -lin costa_N = mkN "costa" ; -lin costa_rican_A = compoundA (mkA "costa rican"); -- from DictEng -lin costa_rican_N = mkN "costa rican" "costa ricans"; -- from DictEng -lin costal_A = mkA "costal" ; -lin costate_A = mkA "costate" ; -lin costermonger_N = mkN "costermonger" "costermongers"; -- from DictEng -lin costia_N = mkN "costia" ; -lin costiasis_N = mkN "costiasis" ; -lin costing_N = mkN "costing" "costings"; -- from DictEng -lin costive_A = compoundA (mkA "costive"); -- from DictEng -lin costliness_N = mkN "costliness" ; -- from DictEng -lin costly_A = mkA "costly" "costlier"; -- from DictEng -lin costmary_N = mkN "costmary" ; -lin costochondritis_N = mkN "costochondritis" ; -lin costs_N = mkN "costs" ; -lin costum_V2 = mkV2 (mkV "costum"); -- from DictEng -lin costume_N = mkN "costume" "costumes"; -- from DictEng -lin costumed_A = mkA "costumed" ; -lin costumier_N = mkN "costumier" "costumiers"; -- from DictEng -lin costusroot_N = mkN "costusroot" ; -lin cosy_A = mkA "cosy" "cosier"; -- from DictEng -lin cosy_N = mkN "cosy" "cosies"; -- from DictEng -lin cot_N = mkN "cot" "cots"; -- from DictEng -lin cotangent_N = mkN "cotangent" ; -lin cote_N = mkN "cote" "cotes"; -- from DictEng -lin cotenant_N = mkN "cotenant" "cotenants"; -- from DictEng -lin coterie_N = mkN "coterie" "coteries"; -- from DictEng -lin coterminous_A = compoundA (mkA "coterminous"); -- from DictEng -lin coterminously_Adv = mkAdv "coterminously" ; -lin cotilion_N = mkN "cotilion" "cotilions"; -- from DictEng -lin cotillion_N = mkN "cotillion" "cotillions"; -- from DictEng -lin cotinga_N = mkN "cotinga" ; -lin cotoneaster_N = mkN "cotoneaster" ; -lin cottage_N = mkN "cottage" "cottages"; -- from DictEng -lin cottager_N = mkN "cottager" ; -lin cottar_N = mkN "cottar" "cottars"; -- from DictEng -lin cotter_N = mkN "cotter" "cotters"; -- from DictEng -lin cotton_N = mkN "cotton" ; -- from DictEng -lin cotton_V = mkV "cotton" "cottons" "cottoned" "cottoned" "cottoning"; -- from DictEng -lin cotton_cake_N = mkN "cotton - cake" ; -- from DictEng -lin cotton_plant_N = mkN "cotton - plant" "cotton - plants"; -- from DictEng -lin cotton_wool_N = mkN "cotton - wool" ; -- from DictEng -lin cottonseed_N = mkN "cottonseed" ; -lin cottontail_N = mkN "cottontail" "cottontails"; -- from DictEng -lin cottonweed_N = mkN "cottonweed" ; -lin cottonwick_N = mkN "cottonwick" ; -lin cottonwood_N = mkN "cottonwood" ; -lin cottony_A = mkA "cottony" ; -lin cottony_white_A = compoundA (mkA "cottony white") ; -lin cotyledon_N = mkN "cotyledon" "cotyledons"; -- from DictEng -lin coucal_N = mkN "coucal" ; -lin couch_N = mkN "couch" "couches"; -- from DictEng -lin couch_V = mkV "couch" "couches" "couched" "couched" "couching"; -- from DictEng -lin couch_V2 = mkV2 (mkV "couch" "couches" "couched" "couched" "couching"); -- from DictEng -lin couch_grass_N = mkN "couch - grass" ; -- from DictEng -lin couchant_A = compoundA (mkA "couchant"); -- from DictEng -lin couchette_N = mkN "couchette" "couchettes"; -- from DictEng -lin cougar_N = mkN "cougar" "cougars"; -- from DictEng -lin cough_N = mkN "cough" "coughs"; -- from DictEng -lin cough_V = mkV "cough" "coughs" "coughed" "coughed" "coughing"; -- from DictEng -lin cough_V2 = mkV2 (mkV "cough" "coughs" "coughed" "coughed" "coughing"); -- from DictEng -lin coulisse_N = mkN "coulisse" ; -lin coulomb_N = mkN "coulomb" ; -lin coulter_N = mkN "coulter" "coulters"; -- from DictEng -lin council_N = mkN "council" "councils"; -- from DictEng -lin council_board_N = mkN "council - board" "council - boards"; -- from DictEng -lin council_chamber_N = mkN "council - chamber" "council - chambers"; -- from DictEng -lin councillor_N = mkN "councillor" "councillors"; -- from DictEng -lin councillorship_N = mkN "councillorship" ; -lin councilman_N = mkN "councilman" ; -lin councilwoman_N = mkN "councilwoman" ; -lin counsel_N = mkN "counsel" ; -- from DictEng -lin counsel_V2 = mkV2 (mkV "counsel" "counsels" "counselled" "counselled" "counselling"); -- from DictEng -lin counsellor_N = mkN "counsellor" "counsellors"; -- from DictEng -lin counselor_N = mkN "counselor" ; -lin counselorship_N = mkN "counselorship" ; -lin count_N = mkN "count" "counts"; -- from DictEng -lin count_V = mkV "count" "counts" "counted" "counted" "counting"; -- from DictEng -lin count_V2 = mkV2 (mkV "count" "counts" "counted" "counted" "counting"); -- from DictEng -lin countable_A = compoundA (mkA "countable"); -- from DictEng -lin countdown_N = mkN "countdown" "countdowns"; -- from DictEng -lin countenance_N = mkN "countenance" "countenances"; -- from DictEng -lin countenance_V2 = mkV2 (mkV "countenance" "countenances" "countenanced" "countenanced" "countenancing"); -- from DictEng -lin counter_Adv = mkAdv "counter"; -- from DictEng -lin counter_N = mkN "counter" "counters"; -- from DictEng -lin counter_V = mkV "counter" "counters" "countered" "countered" "countering"; -- from DictEng -lin counter_V2 = mkV2 (mkV "counter" "counters" "countered" "countered" "countering"); -- from DictEng -lin counter_VS = mkVS (mkV "counter" "counters" "countered" "countered" "countering"); -- from DictEng -lin counter_sabotage_N = mkN "counter sabotage" ; -lin counter_example_N = mkN "counter - example" "counter - examples"; -- from DictEng -lin counter_revolution_N = mkN "counter - revolution" "counter - revolutions"; -- from DictEng -lin counter_revolutionary_A = compoundA (mkA "counter - revolutionary"); -- from DictEng -lin counter_revolutionary_N = mkN "counter - revolutionary" "counter - revolutionaries"; -- from DictEng -lin counteract_V2 = mkV2 (mkV "counteract" "counteracts" "counteracted" "counteracted" "counteracting"); -- from DictEng -lin counteraction_N = mkN "counteraction" "counteractions"; -- from DictEng -lin counteractive_A = mkA "counteractive" ; -lin counteractively_Adv = mkAdv "counteractively" ; -lin counterargument_N = mkN "counterargument" ; -lin counterattack_N = mkN "counterattack" "counterattacks"; -- from DictEng -lin counterattack_V = mkV "counterattack" "counterattacks" "counterattacked" "counterattacked" "counterattacking"; -- from DictEng -lin counterattack_V2 = mkV2 (mkV "counterattack" "counterattacks" "counterattacked" "counterattacked" "counterattacking"); -- from DictEng -lin counterattraction_N = mkN "counterattraction" "counterattractions"; -- from DictEng -lin counterbalance_N = mkN "counterbalance" "counterbalances"; -- from DictEng -lin counterbalance_V2 = mkV2 (mkV "counterbalance" "counterbalances" "counterbalanced" "counterbalanced" "counterbalancing"); -- from DictEng -lin counterbalanced_A = mkA "counterbalanced" ; -lin counterblast_N = mkN "counterblast" "counterblasts"; -- from DictEng -lin counterblow_N = mkN "counterblow" ; -lin counterbombardment_N = mkN "counterbombardment" ; -lin counterbore_N = mkN "counterbore" ; -lin countercharge_N = mkN "countercharge" ; -lin countercheck_N = mkN "countercheck" ; -lin counterclaim_N = mkN "counterclaim" "counterclaims"; -- from DictEng -lin counterclockwise_A = mkA "counterclockwise" ; -lin counterclockwise_Adv = mkAdv "counterclockwise"; -- from DictEng -lin countercoup_N = mkN "countercoup" ; -lin counterculture_N = mkN "counterculture" ; -lin countercurrent_N = mkN "countercurrent" ; -lin counterdemonstration_N = mkN "counterdemonstration" ; -lin counterdemonstrator_N = mkN "counterdemonstrator" ; -lin counterespionage_N = mkN "counterespionage" ; -- from DictEng -lin counterexample_N = mkN "counterexample" ; -lin counterfactual_A = mkA "counterfactual" ; -lin counterfactuality_N = mkN "counterfactuality" ; -lin counterfeit_A = compoundA (mkA "counterfeit"); -- from DictEng -lin counterfeit_N = mkN "counterfeit" "counterfeits"; -- from DictEng -lin counterfeit_V2 = mkV2 (mkV "counterfeit" "counterfeits" "counterfeited" "counterfeited" "counterfeiting"); -- from DictEng -lin counterfeiter_N = mkN "counterfeiter" "counterfeiters"; -- from DictEng -lin counterfire_N = mkN "counterfire" ; -lin counterfoil_N = mkN "counterfoil" "counterfoils"; -- from DictEng -lin counterglow_N = mkN "counterglow" ; -lin counterinsurgent_A = mkA "counterinsurgent" ; -lin counterintelligence_N = mkN "counterintelligence" ; -- from DictEng -lin counterintuitive_A = mkA "counterintuitive" ; -lin counterintuitively_Adv = mkAdv "counterintuitively" ; -lin counterirritant_N = mkN "counterirritant" "counterirritants"; -- from DictEng -lin countermand_N = mkN "countermand" ; -lin countermand_V2 = mkV2 (mkV "countermand" "countermands" "countermanded" "countermanded" "countermanding"); -- from DictEng -lin countermarch_N = mkN "countermarch" ; -lin countermeasure_N = mkN "countermeasure" ; -lin countermine_N = mkN "countermine" "countermines"; -- from DictEng -lin countermine_V = mkV "countermine" "countermines" "countermined" "countermined" "countermining"; -- from DictEng -lin countermine_V2 = mkV2 (mkV "countermine" "countermines" "countermined" "countermined" "countermining"); -- from DictEng -lin counteroffensive_N = mkN "counteroffensive" ; -lin counteroffer_N = mkN "counteroffer" "counteroffers"; -- from DictEng -lin counterpane_N = mkN "counterpane" "counterpanes"; -- from DictEng -lin counterpart_N = mkN "counterpart" "counterparts"; -- from DictEng -lin counterperson_N = mkN "counterperson" ; -lin counterplea_N = mkN "counterplea" ; -lin counterplot_N = mkN "counterplot" "counterplots"; -- from DictEng -lin counterplot_V = mkV "counterplot" "counterplots" "counterplotted" "counterplotted" "counterplotting"; -- from DictEng -lin counterplot_V2 = mkV2 (mkV "counterplot" "counterplots" "counterplotted" "counterplotted" "counterplotting"); -- from DictEng -lin counterpoint_N = mkN "counterpoint" "counterpoints"; -- from DictEng -lin counterpoise_N = mkN "counterpoise" "counterpoises"; -- from DictEng -lin counterpoise_V2 = mkV2 (mkV "counterpoise" "counterpoises" "counterpoised" "counterpoised" "counterpoising"); -- from DictEng -lin counterproductive_A = mkA "counterproductive" ; -lin counterproposal_N = mkN "counterproposal" ; -lin counterpunch_N = mkN "counterpunch" ; -lin counterreformation_N = mkN "counterreformation" ; -lin counterrevolution_N = mkN "counterrevolution" ; -lin counterrevolutionary_A = mkA "counterrevolutionary" ; -lin counterrevolutionist_N = mkN "counterrevolutionist" ; -lin countershot_N = mkN "countershot" ; -lin countersign_N = mkN "countersign" "countersigns"; -- from DictEng -lin countersign_V2 = mkV2 (mkV "countersign" "countersigns" "countersigned" "countersigned" "countersigning"); -- from DictEng -lin countersignature_N = mkN "countersignature" ; -lin countersink_N = mkN "countersink" ; -lin countersink_V2 = mkV2 (mkV "counter" IrregEng.sink_V); -- from DictEng -lin counterspy_N = mkN "counterspy" ; -lin counterstain_N = mkN "counterstain" ; -lin countersubversion_N = mkN "countersubversion" ; -lin countersuing_V2 = mkV2 (mkV "countersuing"); -- from DictEng -lin countersuit_N = mkN "countersuit" ; -lin countertenor_A = mkA "countertenor" ; -lin countertenor_N = mkN "countertenor" "countertenors"; -- from DictEng -lin counterterror_A = mkA "counterterror" ; -lin counterterrorism_N = mkN "counterterrorism" ; -lin counterterrorist_N = mkN "counterterrorist" ; -lin countertop_N = mkN "countertop" ; -lin countertransference_N = mkN "countertransference" ; -lin countervail_V = mkV "countervail" "countervails" "countervailed" "countervailed" "countervailing"; -- from DictEng -lin countervail_V2 = mkV2 (mkV "countervail" "countervails" "countervailed" "countervailed" "countervailing"); -- from DictEng -lin counterweight_N = mkN "counterweight" ; -lin countess_N = mkN "countess" "countesses"; -- from DictEng -lin counting_house_N = mkN "counting - house" "counting - houses"; -- from DictEng -lin countinghouse_N = mkN "countinghouse" ; -lin countless_A = compoundA (mkA "countless"); -- from DictEng -lin countrified_A = compoundA (mkA "countrified"); -- from DictEng -lin country_N = mkN "country" "countries"; -- from DictEng -lin country_bred_A = compoundA (mkA "country bred") ; -lin country_dance_N = mkN "country dance" ; -lin country_style_A = compoundA (mkA "country style") ; -lin country_house_N = mkN "country - house" "country - houses"; -- from DictEng -lin country_seat_N = mkN "country - seat" "country - seats"; -- from DictEng -lin countryman_N = mkN "countryman" "countrymen" {- FIXME: guessed plural form -}; -- from DictEng -lin countryseat_N = mkN "countryseat" ; -lin countryside_N = mkN "countryside" ; -- from DictEng -lin countrywide_A = mkA "countrywide" ; -lin countrywoman_N = mkN "countrywoman" "countrywomen" {- FIXME: guessed plural form -}; -- from DictEng -lin county_N = mkN "county" "counties"; -- from DictEng -lin countywide_A = mkA "countywide" ; -lin coup_N = mkN "coup" "coups"; -- from DictEng -lin coup_d'etat_N = mkN "coup d'etat" "IRREG"; -- from DictEng -lin coup_de_grace_N = mkN "coup de grace" "IRREG"; -- from DictEng -lin coupe_N = mkN "coupé" "coupés"; -- from DictEng -lin couple_N = mkN "couple" "couples"; -- from DictEng -lin couple_V = mkV "couple" "couples" "coupled" "coupled" "coupling"; -- from DictEng -lin couple_V2 = mkV2 (mkV "couple" "couples" "coupled" "coupled" "coupling"); -- from DictEng -lin coupled_A = mkA "coupled" ; -lin couplet_N = mkN "couplet" "couplets"; -- from DictEng -lin coupling_N = mkN "coupling" "couplings"; -- from DictEng -lin coupon_N = mkN "coupon" "coupons"; -- from DictEng -lin courage_N = mkN "courage" ; -- from DictEng -lin courageous_A = compoundA (mkA "courageous"); -- from DictEng -lin courante_N = mkN "courante" ; -lin courbaril_N = mkN "courbaril" ; -lin courgette_N = mkN "courgette" "courgettes"; -- from DictEng -lin courier_N = mkN "courier" "couriers"; -- from DictEng -lin courlan_N = mkN "courlan" ; -lin course_N = mkN "course" "courses"; -- from DictEng -lin course_V = mkV "course" "courses" "coursed" "coursed" "coursing"; -- from DictEng -lin course_V2 = mkV2 (mkV "course" "courses" "coursed" "coursed" "coursing"); -- from DictEng -lin courser_N = mkN "courser" "coursers"; -- from DictEng -lin coursework_N = mkN "coursework" ; -lin coursing_N = mkN "coursing" "coursings"; -- from DictEng -lin court_N = mkN "court" "courts"; -- from DictEng -lin court_V = mkV "court" "courts" "courted" "courted" "courting"; -- from DictEng -lin court_V2 = mkV2 (mkV "court" "courts" "courted" "courted" "courting"); -- from DictEng -lin court_martial_N = mkN "court - martial" "courts - martial"; -- from DictEng -lin court_ordered_A = compoundA (mkA "court ordered") ; -lin court_card_N = mkN "court - card" "court - cards"; -- from DictEng -lin court_martial_N = mkN "court - martial" "courts - martial"; -- from DictEng -lin court_martial_V2 = mkV2 (mkV "court - martial" "court - martials" "court - martialed" "court - martialed" "court - martialing"); -- from DictEng -lin courteous_A = compoundA (mkA "courteous"); -- from DictEng -lin courtesan_N = mkN "courtesan" "courtesans"; -- from DictEng -lin courtesy_N = mkN "courtesy" "courtesies"; -- from DictEng -lin courthouse_N = mkN "courthouse" ; -lin courtier_N = mkN "courtier" "courtiers"; -- from DictEng -lin courtliness_N = mkN "courtliness" ; -- from DictEng -lin courtly_A = mkA "courtly" "courtlier"; -- from DictEng -lin courtroom_N = mkN "courtroom" "courtrooms"; -- from DictEng -lin courtship_N = mkN "courtship" "courtships"; -- from DictEng -lin courtyard_N = mkN "courtyard" "courtyards"; -- from DictEng -lin couscous_N = mkN "couscous" ; -lin cousin_N = mkN "cousin" "cousins"; -- from DictEng -lin cousinly_A = compoundA (mkA "cousinly"); -- from DictEng -lin couth_A = mkA "couth" ; -lin couthie_A = mkA "couthie" ; -lin couture_N = mkN "couture" ; -lin couturier_N = mkN "couturier" ; -lin couvade_N = mkN "couvade" ; -lin couverture_N = mkN "couverture" ; -lin covalence_N = mkN "covalence" ; -lin covalent_A = mkA "covalent" ; -lin covariance_N = mkN "covariance" ; -lin covariant_A = mkA "covariant" ; -lin covariation_N = mkN "covariation" ; -lin cove_N = mkN "cove" "coves"; -- from DictEng -lin coven_N = mkN "coven" "covens"; -- from DictEng -lin covenant_N = mkN "covenant" "covenants"; -- from DictEng -lin covenant_V = mkV "covenant" "covenants" "covenanted" "covenanted" "covenanting"; -- from DictEng -lin covenant_V2 = mkV2 (mkV "covenant" "covenants" "covenanted" "covenanted" "covenanting"); -- from DictEng -lin cover_N = mkN "cover" "covers"; -- from DictEng -lin cover_V2 = mkV2 (mkV "cover" "covers" "covered" "covered" "covering"); -- from DictEng -lin cover_VS = mkVS (mkV "cover"); -- from DictEng -lin cover_up_N = mkN "cover - up" "cover - ups"; -- from DictEng -lin cover_up_N = mkN "cover - up" "cover - ups"; -- from DictEng -lin coverage_N = mkN "coverage" ; -- from DictEng -lin coverall_N = mkN "coverall" ; -lin covered_A = mkA "covered" ; -lin covering_A = compoundA (mkA "covering"); -- from DictEng -lin covering_N = mkN "covering" "coverings"; -- from DictEng -lin coverlet_N = mkN "coverlet" "coverlets"; -- from DictEng -lin covert_A = compoundA (mkA "covert"); -- from DictEng -lin covert_N = mkN "covert" "coverts"; -- from DictEng -lin covertly_Adv = mkAdv "covertly" ; -lin covet_V2 = mkV2 (mkV "covet" "covets" "coveted" "coveted" "coveting"); -- from DictEng -lin coveted_A = mkA "coveted" ; -lin covetous_A = compoundA (mkA "covetous"); -- from DictEng -lin covetousness_N = mkN "covetousness" ; -- from DictEng -lin covey_N = mkN "covey" "coveys"; -- from DictEng -lin cow_N = mkN "cow" "cows"; -- from DictEng -lin cow_V2 = mkV2 (mkV "cow" "cows" "cowed" "cowed" "cowing"); -- from DictEng -lin cowage_N = mkN "cowage" ; -lin coward_N = mkN "coward" "cowards"; -- from DictEng -lin cowardice_N = mkN "cowardice" ; -- from DictEng -lin cowardly_A = compoundA (mkA "cowardly"); -- from DictEng -lin cowbarn_N = mkN "cowbarn" ; -lin cowbell_N = mkN "cowbell" "cowbells"; -- from DictEng -lin cowberry_N = mkN "cowberry" ; -lin cowbird_N = mkN "cowbird" ; -lin cowboy_N = mkN "cowboy" "cowboys"; -- from DictEng -lin cowcatcher_N = mkN "cowcatcher" "cowcatchers"; -- from DictEng -lin cower_V = mkV "cower" "cowers" "cowered" "cowered" "cowering"; -- from DictEng -lin cowfish_N = mkN "cowfish" ; -lin cowgirl_N = mkN "cowgirl" ; -lin cowhand_N = mkN "cowhand" "cowhands"; -- from DictEng -lin cowherb_N = mkN "cowherb" ; -lin cowherd_N = mkN "cowherd" "cowherds"; -- from DictEng -lin cowhide_N = mkN "cowhide" "cowhides"; -- from DictEng -lin cowhouse_N = mkN "cowhouse" "cowhouses"; -- from DictEng -lin cowl_N = mkN "cowl" "cowls"; -- from DictEng -lin cowl_shaped_A = compoundA (mkA "cowl shaped") ; -lin cowled_A = mkA "cowled" ; -lin cowlick_N = mkN "cowlick" ; -lin cowling_N = mkN "cowling" "cowlings"; -- from DictEng -lin cowman_N = mkN "cowman" "cowmen" {- FIXME: guessed plural form -}; -- from DictEng -lin cowpea_N = mkN "cowpea" ; -lin cowpox_N = mkN "cowpox" "cowpoxes"; -- from DictEng -lin cowrie_N = mkN "cowrie" "cowries"; -- from DictEng -lin cowshed_N = mkN "cowshed" "cowsheds"; -- from DictEng -lin cowskin_N = mkN "cowskin" "cowskins"; -- from DictEng -lin cowslip_N = mkN "cowslip" "cowslips"; -- from DictEng -lin cox_N = mkN "cox" "coxes"; -- from DictEng -lin cox_V = mkV "cox" "coxes" "coxed" "coxed" "coxing"; -- from DictEng -lin cox_V2 = mkV2 (mkV "cox" "coxes" "coxed" "coxed" "coxing"); -- from DictEng -lin coxcomb_N = mkN "coxcomb" "coxcombs"; -- from DictEng -lin coxsackievirus_N = mkN "coxsackievirus" ; -lin coxswain_N = mkN "coxswain" "coxswains"; -- from DictEng -lin coy_A = mkA "coy" "coyer"; -- from DictEng -lin coydog_N = mkN "coydog" ; -lin coyly_Adv = mkAdv "coyly" ; -lin coyness_N = mkN "coyness" ; -- from DictEng -lin coyol_N = mkN "coyol" ; -lin coyote_N = mkN "coyote" "coyotes"; -- from DictEng -lin coypu_N = mkN "coypu" "coypus"; -- from DictEng -lin cozen_V2 = mkV2 (mkV "cozen" "cozens" "cozened" "cozened" "cozening"); -- from DictEng -lin cozily_Adv = mkAdv "cozily" ; -lin coziness_N = mkN "coziness" ; -lin cozy_A = mkA "cozy" "cozier"; -- from DictEng -lin crab_N = mkN "crab" "crabs"; -- from DictEng -lin crab_V = mkV "crab" "crabs" "crabbed" "crabbed" "crabbing"; -- from DictEng -lin crab_V2 = mkV2 (mkV "crab" "crabs" "crabbed" "crabbed" "crabbing"); -- from DictEng -lin crab_louis_PN = mkPN "crab Louis" ; -lin crab_apple_N = mkN "crab - apple" "crab - apples"; -- from DictEng -lin crabbed_A = compoundA (mkA "crabbed"); -- from DictEng -lin crabbiness_N = mkN "crabbiness" ; -lin crabgrass_N = mkN "crabgrass" ; -lin crabwise_A = mkA "crabwise" ; -lin crack_N = mkN "crack" "cracks"; -- from DictEng -lin crack_V = mkV "crack" "cracks" "cracked" "cracked" "cracking"; -- from DictEng -lin crack_V2 = mkV2 (mkV "crack" "cracks" "cracked" "cracked" "cracking"); -- from DictEng -lin crack_down_N = mkN "crack - down" "crack - downs"; -- from DictEng -lin crack_up_N = mkN "crack - up" "crack - ups"; -- from DictEng -lin crackbrained_A = mkA "crackbrained" ; -lin crackdown_N = mkN "crackdown" ; -lin cracker_N = mkN "cracker" "crackers"; -- from DictEng -lin cracker_barrel_A = compoundA (mkA "cracker barrel") ; -lin crackers_A = compoundA (mkA "crackers"); -- from DictEng -lin cracking_N = mkN "cracking" ; -lin crackle_A = mkA "crackle" ; -lin crackle_N = mkN "crackle" ; -- from DictEng -lin crackle_V = mkV "crackle" "crackles" "crackled" "crackled" "crackling"; -- from DictEng -lin crackle_V2 = mkV2 (mkV "crackle") ; -lin crackle_china_N = mkN "crackle - china" ; -- from DictEng -lin crackleware_N = mkN "crackleware" ; -- from DictEng -lin crackling_N = mkN "crackling" ; -- from DictEng -lin cracklings_N = mkN "cracklings" ; -lin crackpot_N = mkN "crackpot" "crackpots"; -- from DictEng -lin cracksman_N = mkN "cracksman" "cracksmen" {- FIXME: guessed plural form -}; -- from DictEng -lin cradle_N = mkN "cradle" "cradles"; -- from DictEng -lin cradle_V2 = mkV2 (mkV "cradle" "cradles" "cradled" "cradled" "cradling"); -- from DictEng -lin craft_N = mkN "craft" "crafts"; -- from DictEng -lin craft_V2 = mkV2 (mkV "craft"); -- from DictEng -lin craftily_Adv = mkAdv "craftily"; -- from DictEng -lin craftiness_N = mkN "craftiness" ; -- from DictEng -lin craftsman_N = mkN "craftsman" "craftsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin craftsmanship_N = mkN "craftsmanship" ; -- from DictEng -lin crafty_A = mkA "crafty" "craftier"; -- from DictEng -lin crag_N = mkN "crag" "crags"; -- from DictEng -lin cragfast_A = mkA "cragfast" ; -lin cragged_A = compoundA (mkA "cragged"); -- from DictEng -lin craggy_A = mkA "craggy" "craggier"; -- from DictEng -lin cragsman_N = mkN "cragsman" "cragsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin crake_N = mkN "crake" "crakes"; -- from DictEng -lin cram_V = mkV "cram" "crams" "crammed" "crammed" "cramming"; -- from DictEng -lin cram_V2 = mkV2 (mkV "cram" "crams" "crammed" "crammed" "cramming"); -- from DictEng -lin cram_full_A = compoundA (mkA "cram - full"); -- from DictEng -lin cram_full_Adv = mkAdv "cram - full"; -- from DictEng -lin crammer_N = mkN "crammer" "crammers"; -- from DictEng -lin cramp_N = mkN "cramp" "cramps"; -- from DictEng -lin cramp_V2 = mkV2 (mkV "cramp" "cramps" "cramped" "cramped" "cramping"); -- from DictEng -lin cramp_iron_N = mkN "cramp - iron" "cramp - irons"; -- from DictEng -lin cramped_A = compoundA (mkA "cramped"); -- from DictEng -lin crampon_N = mkN "crampon" "crampons"; -- from DictEng -lin cran_N = mkN "cran" ; -lin cranberry_N = mkN "cranberry" "cranberries"; -- from DictEng -lin crane_N = mkN "crane" "cranes"; -- from DictEng -lin crane_V = mkV "crane" "cranes" "craned" "craned" "craning"; -- from DictEng -lin crane_V2 = mkV2 (mkV "crane" "cranes" "craned" "craned" "craning"); -- from DictEng -lin crane_fly_N = mkN "crane - fly" "crane - flies"; -- from DictEng -lin cranesbill_N = mkN "cranesbill" ; -lin cranial_A = compoundA (mkA "cranial"); -- from DictEng -lin craniology_N = mkN "craniology" ; -lin craniometer_N = mkN "craniometer" ; -lin craniometric_A = mkA "craniometric" ; -lin craniometry_N = mkN "craniometry" ; -lin craniotomy_N = mkN "craniotomy" ; -lin cranium_N = mkN "cranium" "craniums"; -- from DictEng -lin crank_A = mkA "crank" ; -lin crank_N = mkN "crank" "cranks"; -- from DictEng -lin crank_V2 = mkV2 (mkV "crank" "cranks" "cranked" "cranked" "cranking"); -- from DictEng -lin crankcase_N = mkN "crankcase" ; -lin crankiness_N = mkN "crankiness" ; -lin crankshaft_N = mkN "crankshaft" "crankshafts"; -- from DictEng -lin cranky_A = mkA "cranky" "crankier"; -- from DictEng -lin crannied_A = compoundA (mkA "crannied"); -- from DictEng -lin cranny_N = mkN "cranny" "crannies"; -- from DictEng -lin crap_N = mkN "crap" "craps"; -- from DictEng -lin crap_V = mkV "crap" "craps" "crapped" "crapped" "crapping"; -- from DictEng -lin crap_shooting_N = mkN "crap - shooting" "crap - shootings"; -- from DictEng -lin crapaud_N = mkN "crapaud" ; -lin crape_N = mkN "crape" ; -- from DictEng -lin crappie_N = mkN "crappie" ; -lin craps_N = mkN "craps" "craps"; -- from DictEng -lin crapshoot_N = mkN "crapshoot" ; -lin crapshooter_N = mkN "crapshooter" ; -lin crapulent_A = mkA "crapulent" ; -lin crapulous_A = mkA "crapulous" ; -lin crash_Adv = mkAdv "crash"; -- from DictEng -lin crash_N = mkN "crash" "crashes"; -- from DictEng -lin crash_V = mkV "crash" "crashes" "crashed" "crashed" "crashing"; -- from DictEng -lin crash_V2 = mkV2 (mkV "crash" "crashes" "crashed" "crashed" "crashing"); -- from DictEng -lin crash_dive_N = mkN "crash - dive" "crash - dives"; -- from DictEng -lin crash_dive_V = mkV "crash - dive" "crash - dives" "crash - dived" "crash - dived" "crash - diving"; -- from DictEng -lin crash_helmet_N = mkN "crash - helmet" "crash - helmets"; -- from DictEng -lin crash_land_V = mkV "crash - land" "crash - lands" "crash - landed" "crash - landed" "crash - landing"; -- from DictEng -lin crash_land_V2 = mkV2 (mkV "crash - land" "crash - lands" "crash - landed" "crash - landed" "crash - landing"); -- from DictEng -lin crash_landing_N = mkN "crash - landing" "crash - landings"; -- from DictEng -lin crass_A = compoundA (mkA "crass"); -- from DictEng -lin crassness_N = mkN "crassness" ; -lin crate_N = mkN "crate" "crates"; -- from DictEng -lin crate_V2 = mkV2 (mkV "crate" "crates" "crated" "crated" "crating"); -- from DictEng -lin crater_N = mkN "crater" "craters"; -- from DictEng -lin crater_V = mkV "crater"; -- from DictEng -lin craton_N = mkN "craton" ; -lin cravat_N = mkN "cravat" "cravats"; -- from DictEng -lin crave_V = mkV "crave" "craves" "craved" "craved" "craving"; -- from DictEng -lin crave_V2 = mkV2 (mkV "crave" "craves" "craved" "craved" "craving"); -- from DictEng -lin craved_A = mkA "craved" ; -lin craven_A = compoundA (mkA "craven"); -- from DictEng -lin craven_N = mkN "craven" "cravens"; -- from DictEng -lin cravenness_N = mkN "cravenness" ; -lin craving_N = mkN "craving" "cravings"; -- from DictEng -lin craw_N = mkN "craw" ; -lin crawfish_N = mkN "crawfish" "crawfishes"; -- from DictEng -lin crawl_N = mkN "crawl" "crawls"; -- from DictEng -lin crawl_V = mkV "crawl" "crawls" "crawled" "crawled" "crawling"; -- from DictEng -lin crawl_V2 = mkV2 (mkV "crawl") ; -lin crawler_N = mkN "crawler" "crawlers"; -- from DictEng -lin crawlspace_N = mkN "crawlspace" ; -lin crayfish_N = mkN "crayfish" "crayfishes"; -- from DictEng -lin crayon_N = mkN "crayon" "crayons"; -- from DictEng -lin crayon_V = mkV "crayon" ; -lin crayon_V2 = mkV2 (mkV "crayon" "crayons" "crayoned" "crayoned" "crayoning"); -- from DictEng -lin craze_N = mkN "craze" "crazes"; -- from DictEng -lin crazed_A = compoundA (mkA "crazed"); -- from DictEng -lin crazily_Adv = mkAdv "crazily"; -- from DictEng -lin craziness_N = mkN "craziness" ; -- from DictEng -lin crazy_A = mkA "crazy" "crazier"; -- from DictEng -lin crazy_N = mkN "crazy" ; -lin creak_N = mkN "creak" "creaks"; -- from DictEng -lin creak_V = mkV "creak" "creaks" "creaked" "creaked" "creaking"; -- from DictEng -lin creak_V2 = mkV2 (mkV "creak") ; -lin creakily_Adv = mkAdv "creakily"; -- from DictEng -lin creaky_A = mkA "creaky" "creakier"; -- from DictEng -lin cream_N = mkN "cream" "creams"; -- from DictEng -lin cream_V2 = mkV2 (mkV "cream" "creams" "creamed" "creamed" "creaming"); -- from DictEng -lin cream_colored_A = compoundA (mkA "cream colored") ; -lin creamcups_N = mkN "creamcups" ; -lin creamery_N = mkN "creamery" "creameries"; -- from DictEng -lin creaminess_N = mkN "creaminess" ; -lin creamy_A = mkA "creamy" "creamier"; -- from DictEng -lin creamy_yellow_A = compoundA (mkA "creamy yellow") ; -lin crease_N = mkN "crease" "creases"; -- from DictEng -lin crease_V = mkV "crease" "creases" "creased" "creased" "creasing"; -- from DictEng -lin crease_V2 = mkV2 (mkV "crease" "creases" "creased" "creased" "creasing"); -- from DictEng -lin creaseless_A = mkA "creaseless" ; -lin creaseproof_A = mkA "creaseproof" ; -lin create_V = mkV "create" "creates" "created" "created" "creating"; -- from DictEng -lin create_V2 = mkV2 (mkV "create" "creates" "created" "created" "creating"); -- from DictEng -lin create_VV = mkVV (mkV "create" "creates" "created" "created" "creating"); -- from DictEng -lin creatine_N = mkN "creatine" ; -lin creation_N = mkN "creation" "creations"; -- from DictEng -lin creationism_N = mkN "creationism" ; -lin creative_A = compoundA (mkA "creative"); -- from DictEng -lin creatively_Adv = mkAdv "creatively" ; -lin creativeness_N = mkN "creativeness" ; -- from DictEng -lin creativity_N = mkN "creativity" ; -lin creator_N = mkN "creator" "creators"; -- from DictEng -lin creature_N = mkN "creature" "creatures"; -- from DictEng -lin creche_N = mkN "crèche" "crèches"; -- from DictEng -lin credence_N = mkN "credence" ; -- from DictEng -lin credential_V2 = mkV2 (mkV "credential") ; -lin credentialled_A = mkA "credentialled" ; -lin credenza_N = mkN "credenza" ; -lin credibility_N = mkN "credibility" ; -- from DictEng -lin credible_A = compoundA (mkA "credible"); -- from DictEng -lin credibly_Adv = mkAdv "credibly" ; -lin credit_N = mkN "credit" "credits"; -- from DictEng -lin credit_V2 = mkV2 (mkV "credit" "credits" "credited" "credited" "crediting"); -- from DictEng -lin credit_side_N = mkN "credit - side" "credit - sides"; -- from DictEng -lin credit_worthiness_N = mkN "credit - worthiness" ; -- from DictEng -lin credit_worthy_A = compoundA (mkA "credit - worthy"); -- from DictEng -lin creditable_A = compoundA (mkA "creditable"); -- from DictEng -lin credited_A = mkA "credited" ; -lin creditor_N = mkN "creditor" "creditors"; -- from DictEng -lin credits_N = mkN "credits" ; -lin creditworthiness_N = mkN "creditworthiness" ; -lin creditworthy_A = mkA "creditworthy" ; -lin credo_N = mkN "credo" "credos"; -- from DictEng -lin credulity_N = mkN "credulity" "credulities"; -- from DictEng -lin credulous_A = compoundA (mkA "credulous"); -- from DictEng -lin credulously_Adv = mkAdv "credulously" ; -lin credulousness_N = mkN "credulousness" ; -lin creed_N = mkN "creed" "creeds"; -- from DictEng -lin creedal_A = mkA "creedal" ; -lin creek_N = mkN "creek" "creeks"; -- from DictEng -lin creel_N = mkN "creel" "creels"; -- from DictEng -lin creep_N = mkN "creep" "creeps"; -- from DictEng -lin creep_V = IrregEng.creep_V; -- from DictEng -lin creep_V2 = mkV2 (irregV "creep" "crept" "crept"); -lin creeper_N = mkN "creeper" "creepers"; -- from DictEng -lin creepiness_N = mkN "creepiness" ; -lin creeping_st_john's_wort_PN = mkPN "creeping St John's wort" ; -lin creeps_N = mkN "creeps" ; -lin creepy_A = mkA "creepy" "creepier"; -- from DictEng -lin creepy_crawlies_N = mkN "creepy crawlies" ; -lin creepy_crawly_N = mkN "creepy crawly" ; -lin cremains_N = mkN "cremains" ; -lin cremate_V2 = mkV2 (mkV "cremate" "cremates" "cremated" "cremated" "cremating"); -- from DictEng -lin cremation_N = mkN "cremation" "cremations"; -- from DictEng -lin crematorium_N = mkN "crematorium" "crematoriums"; -- from DictEng -lin crematory_N = mkN "crematory" "crematories"; -- from DictEng -lin creme_de_menthe_N = mkN "crème de menthe" ; -- from DictEng -lin crenate_A = mkA "crenate" ; -lin crenel_N = mkN "crenel" ; -lin crenelation_N = mkN "crenelation" ; -lin crenellated_A = compoundA (mkA "crenellated"); -- from DictEng -lin crenulate_A = mkA "crenulate" ; -lin creole_A = compoundA (mkA "creole"); -- from DictEng -lin creole_N = mkN "creole" "creoles"; -- from DictEng -lin creole_fish_N = mkN "creole fish" ; -lin creosol_N = mkN "creosol" ; -lin creosote_N = mkN "creosote" ; -- from DictEng -lin crepe_N = mkN "crepe" ; -lin crepe_1_N = mkN "crepe" ; -- from DictEng -lin crepe_2_N = mkN "crêpe" ; -- from DictEng -lin crepe_suzette_PN = mkPN "crepe Suzette" ; -lin crepe_de_chine_PN = mkPN "crepe de Chine" ; -lin crepitate_V = mkV "crepitate" "crepitates" "crepitated" "crepitated" "crepitating"; -- from DictEng -lin crepitate_V2 = mkV2 (mkV "crepitate") ; -lin crepitation_N = mkN "crepitation" "crepitations"; -- from DictEng -lin crepuscular_A = compoundA (mkA "crepuscular"); -- from DictEng -lin crescendo_A = mkA "crescendo" ; -lin crescendo_N = mkN "crescendo" "crescendos"; -- from DictEng -lin crescent_A = mkA "crescent" ; -lin crescent_N = mkN "crescent" "crescents"; -- from DictEng -lin cresol_N = mkN "cresol" ; -lin cress_N = mkN "cress" ; -- from DictEng -lin cress_green_A = compoundA (mkA "cress green") ; -lin crest_N = mkN "crest" "crests"; -- from DictEng -lin crest_V = mkV "crest" "crests" "crested" "crested" "cresting"; -- from DictEng -lin crest_V2 = mkV2 (mkV "crest" "crests" "crested" "crested" "cresting"); -- from DictEng -lin crested_A = compoundA (mkA "crested"); -- from DictEng -lin crestfallen_A = compoundA (mkA "crestfallen"); -- from DictEng -lin cretaceous_A = compoundA (mkA "cretaceous"); -- from DictEng -lin cretin_N = mkN "cretin" "cretins"; -- from DictEng -lin cretinism_N = mkN "cretinism" ; -lin cretinous_A = compoundA (mkA "cretinous"); -- from DictEng -lin cretonne_N = mkN "cretonne" ; -- from DictEng -lin crevasse_N = mkN "crevasse" "crevasses"; -- from DictEng -lin crevice_N = mkN "crevice" "crevices"; -- from DictEng -lin crew_N = mkN "crew" "crews"; -- from DictEng -lin crew_V = mkV "crew" "crews" "crewed" "crewed" "crewing"; -- from DictEng -lin crew_cut_N = mkN "crew - cut" "crew - cuts"; -- from DictEng -lin crew_neck_N = mkN "crew - neck" "crew - necks"; -- from DictEng -lin crewelwork_N = mkN "crewelwork" ; -lin crewman_N = mkN "crewman" ; -lin crib_N = mkN "crib" "cribs"; -- from DictEng -lin crib_V = mkV "crib" "cribs" "cribbed" "cribbed" "cribbing"; -- from DictEng -lin crib_V2 = mkV2 (mkV "crib" "cribs" "cribbed" "cribbed" "cribbing"); -- from DictEng -lin cribbage_N = mkN "cribbage" ; -- from DictEng -lin cribbage_board_N = mkN "cribbage - board" "cribbage - boards"; -- from DictEng -lin crick_N = mkN "crick" "cricks"; -- from DictEng -lin crick_V2 = mkV2 (mkV "crick" "cricks" "cricked" "cricked" "cricking"); -- from DictEng -lin cricket_N = mkN "cricket" "crickets"; -- from DictEng -lin cricketer_N = mkN "cricketer" "cricketers"; -- from DictEng -lin crier_N = mkN "crier" "criers"; -- from DictEng -lin crime_N = mkN "crime" "crimes"; -- from DictEng -lin crime_V2 = mkV2 (mkV "crime" "crimes" "crimed" "crimed" "criming"); -- from DictEng -lin criminal_A = compoundA (mkA "criminal"); -- from DictEng -lin criminal_N = mkN "criminal" "criminals"; -- from DictEng -lin criminalism_N = mkN "criminalism" ; -lin criminalization_N = mkN "criminalization" ; -lin criminalize_V2 = mkV2 (mkV "criminalize"); -- from DictEng -lin criminally_Adv = mkAdv "criminally" ; -lin criminative_A = mkA "criminative" ; -lin criminological_A = mkA "criminological" ; -lin criminologist_N = mkN "criminologist" ; -lin criminology_N = mkN "criminology" ; -- from DictEng -lin crimp_N = mkN "crimp" ; -lin crimp_V2 = mkV2 (mkV "crimp" "crimps" "crimped" "crimped" "crimping"); -- from DictEng -lin crimson_A = compoundA (mkA "crimson"); -- from DictEng -lin crimson_N = mkN "crimson" "crimsons"; -- from DictEng -lin crimson_V = mkV "crimson" "crimsons" "crimsoned" "crimsoned" "crimsoning"; -- from DictEng -lin crimson_V2 = mkV2 (mkV "crimson" "crimsons" "crimsoned" "crimsoned" "crimsoning"); -- from DictEng -lin crimson_magenta_A = compoundA (mkA "crimson magenta") ; -lin crimson_purple_A = compoundA (mkA "crimson purple") ; -lin crimson_yellow_A = compoundA (mkA "crimson yellow") ; -lin cringe_V = mkV "cringe" "cringes" "cringed" "cringed" "cringing"; -- from DictEng -lin cringing_A = mkA "cringing" ; -lin cringle_N = mkN "cringle" ; -lin crinkle_N = mkN "crinkle" "crinkles"; -- from DictEng -lin crinkle_V = mkV "crinkle" "crinkles" "crinkled" "crinkled" "crinkling"; -- from DictEng -lin crinkle_V2 = mkV2 (mkV "crinkle" "crinkles" "crinkled" "crinkled" "crinkling"); -- from DictEng -lin crinkled_A = mkA "crinkled" ; -lin crinkleroot_N = mkN "crinkleroot" ; -lin crinkly_A = mkA "crinkly" "crinklier"; -- from DictEng -lin crinoid_A = mkA "crinoid" ; -lin crinoid_N = mkN "crinoid" ; -lin crinoline_N = mkN "crinoline" "crinolines"; -- from DictEng -lin criollo_N = mkN "criollo" ; -lin cripple_N = mkN "cripple" "cripples"; -- from DictEng -lin cripple_V2 = mkV2 (mkV "cripple" "cripples" "crippled" "crippled" "crippling"); -- from DictEng -lin crippled_A = mkA "crippled" ; -lin crippling_A = mkA "crippling" ; -lin crisis_N = mkN "crisis" "crises" {- FIXME: guessed plural form -}; -- from DictEng -lin crisp_A = mkA "crisp" "crisper"; -- from DictEng -lin crisp_N = mkN "crisp" "crisps"; -- from DictEng -lin crisp_V = mkV "crisp" "crisps" "crisped" "crisped" "crisping"; -- from DictEng -lin crisp_V2 = mkV2 (mkV "crisp" "crisps" "crisped" "crisped" "crisping"); -- from DictEng -lin crispate_A = mkA "crispate" ; -lin crispness_N = mkN "crispness" ; -- from DictEng -lin criss_cross_V2 = mkV2 (mkV "criss - cross"); -- from DictEng -lin crisscross_A = compoundA (mkA "crisscross"); -- from DictEng -lin crisscross_Adv = mkAdv "crisscross"; -- from DictEng -lin crisscross_N = mkN "crisscross" ; -lin crisscross_V = mkV "crisscross" "crisscrosses" "crisscrossed" "crisscrossed" "crisscrossing"; -- from DictEng -lin crisscross_V2 = mkV2 (mkV "crisscross" "crisscrosses" "crisscrossed" "crisscrossed" "crisscrossing"); -- from DictEng -lin cristobalite_N = mkN "cristobalite" ; -lin criterial_A = mkA "criterial" ; -lin criterion_N = mkN "criterion" "criterions"; -- from DictEng -lin crith_N = mkN "crith" ; -lin critic_N = mkN "critic" "critics"; -- from DictEng -lin critical_A = compoundA (mkA "critical"); -- from DictEng -lin criticality_N = mkN "criticality" ; -lin critically_Adv = mkAdv "critically" ; -lin criticism_N = mkN "criticism" "criticisms"; -- from DictEng -lin criticize_V = mkV "criticize" "criticizes" "criticized" "criticized" "criticizing"; -- from DictEng -lin criticize_V2 = mkV2 (mkV "criticize" "criticizes" "criticized" "criticized" "criticizing"); -- from DictEng -lin critique_N = mkN "critique" "critiques"; -- from DictEng -lin critter_N = mkN "critter" ; -lin croak_N = mkN "croak" "croaks"; -- from DictEng -lin croak_V = mkV "croak" "croaks" "croaked" "croaked" "croaking"; -- from DictEng -lin croak_V2 = mkV2 (mkV "croak" "croaks" "croaked" "croaked" "croaking"); -- from DictEng -lin croaker_N = mkN "croaker" ; -lin croaky_A = mkA "croaky" ; -lin crochet_N = mkN "crochet" ; -- from DictEng -lin crochet_V = mkV "crochet" "crochets" "crocheted" "crocheted" "crocheting"; -- from DictEng -lin crochet_V2 = mkV2 (mkV "crochet" "crochets" "crocheted" "crocheted" "crocheting"); -- from DictEng -lin crochet_hook_N = mkN "crochet - hook" "crochet - hooks"; -- from DictEng -lin crocheting_N = mkN "crocheting" ; -lin crock_N = mkN "crock" "crocks"; -- from DictEng -lin crock_V = mkV "crock" "crocks" "crocked" "crocked" "crocking"; -- from DictEng -lin crock_V2 = mkV2 (mkV "crock" "crocks" "crocked" "crocked" "crocking"); -- from DictEng -lin crockery_N = mkN "crockery" ; -- from DictEng -lin crocket_N = mkN "crocket" ; -lin crocketed_A = mkA "crocketed" ; -lin crocodile_N = mkN "crocodile" "crocodiles"; -- from DictEng -lin crocolite_N = mkN "crocolite" ; -lin crocus_N = mkN "crocus" "crocuses"; -- from DictEng -lin croft_N = mkN "croft" "crofts"; -- from DictEng -lin crofter_N = mkN "crofter" "crofters"; -- from DictEng -lin cromlech_N = mkN "cromlech" "cromlechs"; -- from DictEng -lin crone_N = mkN "crone" "crones"; -- from DictEng -lin crony_N = mkN "crony" "cronies"; -- from DictEng -lin cronyism_N = mkN "cronyism" ; -lin crook_N = mkN "crook" "crooks"; -- from DictEng -lin crook_V = mkV "crook" "crooks" "crooked" "crooked" "crooking"; -- from DictEng -lin crook_V2 = mkV2 (mkV "crook" "crooks" "crooked" "crooked" "crooking"); -- from DictEng -lin crook_back_A = compoundA (mkA "crook - back"); -- from DictEng -lin crook_backed_A = compoundA (mkA "crook - backed"); -- from DictEng -lin crookback_A = mkA "crookback" ; -lin crooked_A = compoundA (mkA "crooked"); -- from DictEng -lin crookedness_N = mkN "crookedness" ; -- from DictEng -lin crookneck_N = mkN "crookneck" ; -lin croon_V = mkV "croon" "croons" "crooned" "crooned" "crooning"; -- from DictEng -lin croon_V2 = mkV2 (mkV "croon" "croons" "crooned" "crooned" "crooning"); -- from DictEng -lin crooner_N = mkN "crooner" "crooners"; -- from DictEng -lin crooning_N = mkN "crooning" ; -lin crop_N = mkN "crop" "crops"; -- from DictEng -lin crop_V = mkV "crop" "crops" "cropped" "cropped" "cropping"; -- from DictEng -lin crop_V2 = mkV2 (mkV "crop" "crops" "cropped" "cropped" "cropping"); -- from DictEng -lin crop_dusting_N = mkN "crop - dusting" ; -- from DictEng -lin crop_dusting_N = mkN "crop - dusting" ; -- from DictEng -lin cropped_A = mkA "cropped" ; -lin cropper_N = mkN "cropper" "croppers"; -- from DictEng -lin croquet_N = mkN "croquet" ; -- from DictEng -lin croquette_N = mkN "croquette" "croquettes"; -- from DictEng -lin crore_N = mkN "crore" "crores"; -- from DictEng -lin crosier_N = mkN "crosier" "crosiers"; -- from DictEng -lin cross_A = compoundA (mkA "cross"); -- from DictEng -lin cross_N = mkN "cross" "crosses"; -- from DictEng -lin cross_V = mkV "cross" "crosses" "crossed" "crossed" "crossing"; -- from DictEng -lin cross_V2 = mkV2 (mkV "cross" "crosses" "crossed" "crossed" "crossing"); -- from DictEng -lin cross_banded_A = compoundA (mkA "cross banded") ; -lin cross_classification_N = mkN "cross classification" ; -lin cross_country_Adv = mkAdv "cross country" ; -lin cross_cultural_A = compoundA (mkA "cross cultural") ; -lin cross_examination_N = mkN "cross - examination" "cross - examinations"; -- from DictEng -lin cross_examiner_N = mkN "cross - examiner" "cross - examiners"; -- from DictEng -lin cross_eye_N = mkN "cross eye" ; -lin cross_eyed_A = compoundA (mkA "cross eyed") ; -lin cross_fertilization_N = mkN "cross - fertilization" "cross - fertilizations"; -- from DictEng -lin cross_legged_Adv = mkAdv "cross - legged"; -- from DictEng -lin cross_linguistic_A = compoundA (mkA "cross linguistic") ; -lin cross_linguistically_Adv = mkAdv "cross linguistically" ; -lin cross_link_N = mkN "cross link" ; -lin cross_modal_A = compoundA (mkA "cross modal") ; -lin cross_ply_A = compoundA (mkA "cross ply") ; -lin cross_pollinating_A = compoundA (mkA "cross pollinating") ; -lin cross_pollination_N = mkN "cross pollination" ; -lin cross_purpose_N = mkN "cross purpose" ; -lin cross_question_N = mkN "cross question" ; -lin cross_reference_N = mkN "cross - reference" "cross - references"; -- from DictEng -lin cross_section_A = compoundA (mkA "cross section") ; -lin cross_sectional_A = compoundA (mkA "cross sectional") ; -lin cross_sentential_A = compoundA (mkA "cross sentential") ; -lin cross_shaped_A = compoundA (mkA "cross shaped") ; -lin cross_stitch_N = mkN "cross - stitch" "cross - stitches"; -- from DictEng -lin cross_bench_N = mkN "cross - bench" "cross - benches"; -- from DictEng -lin cross_bencher_N = mkN "cross - bencher" "cross - benchers"; -- from DictEng -lin cross_division_N = mkN "cross - division" "cross - divisions"; -- from DictEng -lin cross_examination_N = mkN "cross - examination" "cross - examinations"; -- from DictEng -lin cross_examine_V2 = mkV2 (mkV "cross - examine" "cross - examines" "cross - examined" "cross - examined" "cross - examining"); -- from DictEng -lin cross_examiner_N = mkN "cross - examiner" "cross - examiners"; -- from DictEng -lin cross_fertilization_N = mkN "cross - fertilization" "cross - fertilizations"; -- from DictEng -lin cross_fertilize_V2 = mkV2 (mkV "cross - fertilize" "cross - fertilizes" "cross - fertilized" "cross - fertilized" "cross - fertilizing"); -- from DictEng -lin cross_grained_A = compoundA (mkA "cross - grained"); -- from DictEng -lin cross_heading_N = mkN "cross - heading" "cross - headings"; -- from DictEng -lin cross_index_N = mkN "cross - index" "cross - indexes"; -- from DictEng -lin cross_index_V2 = mkV2 (mkV "cross - index" "cross - indexes" "cross - indexed" "cross - indexed" "cross - indexing"); -- from DictEng -lin cross_legged_Adv = mkAdv "cross - legged"; -- from DictEng -lin cross_question_V2 = mkV2 (mkV "cross - question" "cross - questions" "cross - questioned" "cross - questioned" "cross - questioning"); -- from DictEng -lin cross_reference_N = mkN "cross - reference" "cross - references"; -- from DictEng -lin cross_section_N = mkN "cross - section" "cross - sections"; -- from DictEng -lin cross_stitch_N = mkN "cross - stitch" "cross - stitches"; -- from DictEng -lin crossbar_N = mkN "crossbar" "crossbars"; -- from DictEng -lin crossbeam_N = mkN "crossbeam" "crossbeams"; -- from DictEng -lin crossbench_N = mkN "crossbench" ; -lin crossbencher_N = mkN "crossbencher" ; -lin crossbill_N = mkN "crossbill" ; -lin crossbones_N = mkN "crossbones" ; -lin crossbow_N = mkN "crossbow" "crossbows"; -- from DictEng -lin crossbred_A = compoundA (mkA "crossbred"); -- from DictEng -lin crossbreed_N = mkN "crossbreed" "crossbreeds"; -- from DictEng -lin crossbreed_V2 = mkV2 (mkV "cross" IrregEng.breed_V); -- from DictEng -lin crosscheck_N = mkN "crosscheck" "crosschecks"; -- from DictEng -lin crosscheck_V = mkV "crosscheck" "crosschecks" "crosschecked" "crosschecked" "crosschecking"; -- from DictEng -lin crosscheck_V2 = mkV2 (mkV "crosscheck" "crosschecks" "crosschecked" "crosschecked" "crosschecking"); -- from DictEng -lin crosscountry_A = compoundA (mkA "crosscountry"); -- from DictEng -lin crosscountry_Adv = mkAdv "crosscountry"; -- from DictEng -lin crosscurrent_N = mkN "crosscurrent" "crosscurrents"; -- from DictEng -lin crosscut_A = compoundA (mkA "crosscut"); -- from DictEng -lin crosscut_N = mkN "crosscut" "crosscuts"; -- from DictEng -lin crosse_N = mkN "crosse" "crosses"; -- from DictEng -lin crossed_A = mkA "crossed" ; -lin crosseyed_A = compoundA (mkA "crosseyed"); -- from DictEng -lin crossfire_N = mkN "crossfire" "crossfires"; -- from DictEng -lin crosshairs_N = mkN "crosshairs" ; -lin crosshead_N = mkN "crosshead" ; -lin crossheading_N = mkN "crossheading" ; -lin crossing_N = mkN "crossing" "crossings"; -- from DictEng -lin crossjack_N = mkN "crossjack" ; -lin crossly_Adv = mkAdv "crossly" ; -lin crossness_N = mkN "crossness" ; -- from DictEng -lin crossopterygian_N = mkN "crossopterygian" ; -lin crossover_N = mkN "crossover" ; -lin crosspatch_N = mkN "crosspatch" "crosspatches"; -- from DictEng -lin crosspiece_N = mkN "crosspiece" "crosspieces"; -- from DictEng -lin crossroad_N = mkN "crossroad" "crossroads"; -- from DictEng -lin crossroads_N = mkN "crossroads" ; -lin crosstalk_N = mkN "crosstalk" ; -- from DictEng -lin crosstown_A = mkA "crosstown" ; -lin crosstown_Adv = mkAdv "crosstown" ; -lin crosswalk_N = mkN "crosswalk" "crosswalks"; -- from DictEng -lin crosswind_N = mkN "crosswind" "crosswinds"; -- from DictEng -lin crosswise_A = mkA "crosswise" ; -lin crosswise_Adv = mkAdv "crosswise"; -- from DictEng -lin crossword_N = mkN "crossword" "crosswords"; -- from DictEng -lin crotalaria_N = mkN "crotalaria" ; -lin crotaphion_N = mkN "crotaphion" ; -lin crotch_N = mkN "crotch" "crotches"; -- from DictEng -lin crotchet_N = mkN "crotchet" "crotchets"; -- from DictEng -lin crotchety_A = compoundA (mkA "crotchety"); -- from DictEng -lin croton_N = mkN "croton" ; -lin crottle_N = mkN "crottle" ; -lin crouch_N = mkN "crouch" "crouches"; -- from DictEng -lin crouch_V = mkV "crouch" "crouches" "crouched" "crouched" "crouching"; -- from DictEng -lin crouch_V2 = mkV2 (mkV "crouch" "crouches" "crouched" "crouched" "crouching"); -- from DictEng -lin croup_N = mkN "croup" "croups"; -- from DictEng -lin croupier_N = mkN "croupier" "croupiers"; -- from DictEng -lin croupy_A = mkA "croupy" ; -lin crouton_N = mkN "crouton" ; -lin crow_N = mkN "crow" "crows"; -- from DictEng -lin crow_V = mkV "crow" "crows" "crowed" "crowed" "crowing"; -- from DictEng -lin crow_V2 = mkV2 (irregV "crow" "crew" "crowed"); -lin crow_VS = mkVS (mkV "crow" "crows" "crowed" "crowed" "crowing"); -- from DictEng -lin crow's_nest_N = mkN "crow's - nest" "crow's - nests"; -- from DictEng -lin crow_sized_A = compoundA (mkA "crow sized") ; -lin crowbait_N = mkN "crowbait" ; -lin crowbar_N = mkN "crowbar" "crowbars"; -- from DictEng -lin crowberry_N = mkN "crowberry" ; -lin crowd_N = mkN "crowd" "crowds"; -- from DictEng -lin crowd_V = mkV "crowd" "crowds" "crowded" "crowded" "crowding"; -- from DictEng -lin crowd_V2 = mkV2 (mkV "crowd" "crowds" "crowded" "crowded" "crowding"); -- from DictEng -lin crowded_A = compoundA (mkA "crowded"); -- from DictEng -lin crowding_N = mkN "crowding" ; -lin crown_N = mkN "crown" "crowns"; -- from DictEng -lin crown_V2 = mkV2 (mkV "crown" "crowns" "crowned" "crowned" "crowning"); -- from DictEng -lin crown_land_N = mkN "crown - land" "crown - lands"; -- from DictEng -lin crownbeard_N = mkN "crownbeard" ; -lin crowned_A = mkA "crowned" ; -lin crowning_A = compoundA (mkA "crowning"); -- from DictEng -lin crozier_N = mkN "crozier" "croziers"; -- from DictEng -lin crucial_A = compoundA (mkA "crucial"); -- from DictEng -lin crucially_Adv = mkAdv "crucially" ; -lin cruciate_A = mkA "cruciate" ; -lin crucible_N = mkN "crucible" "crucibles"; -- from DictEng -lin crucifer_N = mkN "crucifer" ; -lin cruciferous_A = mkA "cruciferous" ; -lin crucifix_N = mkN "crucifix" "crucifixes"; -- from DictEng -lin crucifixion_N = mkN "crucifixion" "crucifixions"; -- from DictEng -lin cruciform_A = compoundA (mkA "cruciform"); -- from DictEng -lin crucify_V2 = mkV2 (mkV "crucify" "crucifies" "crucified" "crucified" "crucifying"); -- from DictEng -lin crud_N = mkN "crud" ; -lin cruddy_A = mkA "cruddy" ; -lin crude_A = mkA "crude" "cruder"; -- from DictEng -lin crudely_Adv = mkAdv "crudely" ; -lin crudeness_N = mkN "crudeness" ; -- from DictEng -lin crudites_N = mkN "crudites" ; -lin crudity_N = mkN "crudity" "crudities"; -- from DictEng -lin cruel_A = mkA "cruel" "crueller*"; -- from DictEng -lin cruelly_Adv = mkAdv "cruelly" ; -lin cruelty_N = mkN "cruelty" "cruelties"; -- from DictEng -lin cruet_N = mkN "cruet" "cruets"; -- from DictEng -lin cruet_stand_N = mkN "cruet - stand" "cruet - stands"; -- from DictEng -lin cruet_stand_N = mkN "cruet - stand" "cruet - stands"; -- from DictEng -lin cruise_N = mkN "cruise" "cruises"; -- from DictEng -lin cruise_V = mkV "cruise" "cruises" "cruised" "cruised" "cruising"; -- from DictEng -lin cruise_V2 = mkV2 (mkV "cruise") ; -lin cruiser_N = mkN "cruiser" "cruisers"; -- from DictEng -lin cruller_N = mkN "cruller" ; -lin crumb_N = mkN "crumb" "crumbs"; -- from DictEng -lin crumble_V = mkV "crumble" "crumbles" "crumbled" "crumbled" "crumbling"; -- from DictEng -lin crumble_V2 = mkV2 (mkV "crumble" "crumbles" "crumbled" "crumbled" "crumbling"); -- from DictEng -lin crumbliness_N = mkN "crumbliness" ; -lin crumbly_A = mkA "crumbly" "crumblier"; -- from DictEng -lin crumpet_N = mkN "crumpet" "crumpets"; -- from DictEng -lin crumple_V = mkV "crumple" "crumples" "crumpled" "crumpled" "crumpling"; -- from DictEng -lin crumple_V2 = mkV2 (mkV "crumple" "crumples" "crumpled" "crumpled" "crumpling"); -- from DictEng -lin crunch_N = mkN "crunch" "crunches"; -- from DictEng -lin crunch_V = mkV "crunch" "crunches" "crunched" "crunched" "crunching"; -- from DictEng -lin crunch_V2 = mkV2 (mkV "crunch" "crunches" "crunched" "crunched" "crunching"); -- from DictEng -lin crupper_N = mkN "crupper" "cruppers"; -- from DictEng -lin crural_A = mkA "crural" ; -lin crus_N = mkN "crus" ; -lin crusade_N = mkN "crusade" "crusades"; -- from DictEng -lin crusade_V = mkV "crusade" "crusades" "crusaded" "crusaded" "crusading"; -- from DictEng -lin crusader_N = mkN "crusader" "crusaders"; -- from DictEng -lin cruse_N = mkN "cruse" "cruses"; -- from DictEng -lin crush_N = mkN "crush" ; -- from DictEng -lin crush_V = mkV "crush" "crushes" "crushed" "crushed" "crushing"; -- from DictEng -lin crush_V2 = mkV2 (mkV "crush" "crushes" "crushed" "crushed" "crushing"); -- from DictEng -lin crushed_A = mkA "crushed" ; -lin crusher_N = mkN "crusher" ; -lin crushing_A = compoundA (mkA "crushing"); -- from DictEng -lin crushingly_Adv = mkAdv "crushingly" ; -lin crust_N = mkN "crust" "crusts"; -- from DictEng -lin crust_V = mkV "crust" "crusts" "crusted" "crusted" "crusting"; -- from DictEng -lin crust_V2 = mkV2 (mkV "crust" "crusts" "crusted" "crusted" "crusting"); -- from DictEng -lin crustacean_N = mkN "crustacean" "crustaceans"; -- from DictEng -lin crustaceous_A = mkA "crustaceous" ; -lin crustal_A = mkA "crustal" ; -lin crusted_A = compoundA (mkA "crusted"); -- from DictEng -lin crustose_A = mkA "crustose" ; -lin crusty_A = mkA "crusty" "crustier"; -- from DictEng -lin crutch_N = mkN "crutch" "crutches"; -- from DictEng -lin crux_N = mkN "crux" "cruxes"; -- from DictEng -lin cruzeiro_N = mkN "cruzeiro" "cruzeiros"; -- from DictEng -lin cry_N = mkN "cry" "cries"; -- from DictEng -lin cry_V = mkV "cry" "cries" "cried" "cried" "crying"; -- from DictEng -lin cry_V2 = mkV2 (mkV "cry" "cries" "cried" "cried" "crying"); -- from DictEng -lin crybaby_N = mkN "crybaby" "crybabies"; -- from DictEng -lin cryesthesia_N = mkN "cryesthesia" ; -lin crying_A = compoundA (mkA "crying"); -- from DictEng -lin crying_N = mkN "crying" ; -lin cryoanesthesia_N = mkN "cryoanesthesia" ; -lin cryobiology_N = mkN "cryobiology" ; -lin cryocautery_N = mkN "cryocautery" ; -lin cryogen_N = mkN "cryogen" ; -lin cryogenic_A = mkA "cryogenic" ; -lin cryogenics_N = mkN "cryogenics" ; -lin cryolite_N = mkN "cryolite" ; -lin cryometer_N = mkN "cryometer" ; -lin cryonic_A = mkA "cryonic" ; -lin cryonics_N = mkN "cryonics" ; -lin cryophobia_N = mkN "cryophobia" ; -lin cryoscope_N = mkN "cryoscope" ; -lin cryostat_N = mkN "cryostat" ; -lin cryosurgery_N = mkN "cryosurgery" ; -lin crypt_N = mkN "crypt" "crypts"; -- from DictEng -lin cryptanalysis_N = mkN "cryptanalysis" ; -lin cryptanalyst_N = mkN "cryptanalyst" ; -lin cryptanalytic_A = mkA "cryptanalytic" ; -lin cryptic_A = compoundA (mkA "cryptic"); -- from DictEng -lin cryptically_Adv = mkAdv "cryptically"; -- from DictEng -lin cryptobiosis_N = mkN "cryptobiosis" ; -lin cryptobiotic_A = mkA "cryptobiotic" ; -lin cryptococcosis_N = mkN "cryptococcosis" ; -lin cryptocoryne_N = mkN "cryptocoryne" ; -lin cryptogam_N = mkN "cryptogam" ; -lin cryptogamic_A = mkA "cryptogamic" ; -lin cryptogram_N = mkN "cryptogram" "cryptograms"; -- from DictEng -lin cryptograph_N = mkN "cryptograph" ; -lin cryptographically_Adv = mkAdv "cryptographically" ; -lin cryptography_N = mkN "cryptography" ; -lin cryptomonad_N = mkN "cryptomonad" ; -lin cryptorchidy_N = mkN "cryptorchidy" ; -lin crystal_N = mkN "crystal" "crystals"; -- from DictEng -lin crystal_gazing_N = mkN "crystal - gazing" ; -- from DictEng -lin crystalline_A = compoundA (mkA "crystalline"); -- from DictEng -lin crystallite_N = mkN "crystallite" ; -lin crystallization_N = mkN "crystallization" "crystallizations"; -- from DictEng -lin crystallize_V = mkV "crystallize" "crystallizes" "crystallized" "crystallized" "crystallizing"; -- from DictEng -lin crystallize_V2 = mkV2 (mkV "crystallize" "crystallizes" "crystallized" "crystallized" "crystallizing"); -- from DictEng -lin crystallized_A = mkA "crystallized" ; -lin crystallographer_N = mkN "crystallographer" ; -lin crystallography_N = mkN "crystallography" ; -- from DictEng -lin ctene_N = mkN "ctene" ; -lin ctenidium_N = mkN "ctenidium" ; -lin ctenoid_A = mkA "ctenoid" ; -lin ctenophore_N = mkN "ctenophore" ; -lin cub_N = mkN "cub" "cubs"; -- from DictEng -lin cub_V = mkV "cub" ; -lin cuban_A = compoundA (mkA "cuban"); -- from DictEng -lin cuban_N = mkN "cuban" "cubans"; -- from DictEng -lin cubby_N = mkN "cubby" ; -lin cubbyhole_N = mkN "cubbyhole" "cubbyholes"; -- from DictEng -lin cube_N = mkN "cube" "cubes"; -- from DictEng -lin cube_V2 = mkV2 (mkV "cube" "cubes" "cubed" "cubed" "cubing"); -- from DictEng -lin cubeb_N = mkN "cubeb" ; -lin cubelike_A = mkA "cubelike" ; -lin cubic_A = compoundA (mkA "cubic"); -- from DictEng -lin cubical_A = compoundA (mkA "cubical"); -- from DictEng -lin cubicity_N = mkN "cubicity" ; -lin cubicle_N = mkN "cubicle" "cubicles"; -- from DictEng -lin cubism_N = mkN "cubism" ; -- from DictEng -lin cubist_A = mkA "cubist" ; -lin cubist_N = mkN "cubist" "cubists"; -- from DictEng -lin cubit_N = mkN "cubit" "cubits"; -- from DictEng -lin cubital_A = mkA "cubital" ; -lin cubitiere_N = mkN "cubitiere" ; -lin cubitus_N = mkN "cubitus" ; -lin cuboid_N = mkN "cuboid" ; -lin cuckold_N = mkN "cuckold" "cuckolds"; -- from DictEng -lin cuckold_V2 = mkV2 (mkV "cuckold" "cuckolds" "cuckolded" "cuckolded" "cuckolding"); -- from DictEng -lin cuckoldom_N = mkN "cuckoldom" ; -lin cuckoldry_N = mkN "cuckoldry" ; -lin cuckoo_N = mkN "cuckoo" "cuckoos"; -- from DictEng -lin cuckoo_V = mkV "cuckoo" ; -lin cuckoo_bumblebee_N = mkN "cuckoo bumblebee" ; -lin cuckoo_clock_N = mkN "cuckoo - clock" "cuckoo - clocks"; -- from DictEng -lin cuckoopint_N = mkN "cuckoopint" ; -lin cucumber_N = mkN "cucumber" "cucumbers"; -- from DictEng -lin cucumber_shaped_A = compoundA (mkA "cucumber shaped") ; -lin cucurbit_N = mkN "cucurbit" ; -lin cucurbitaceous_A = mkA "cucurbitaceous" ; -lin cud_N = mkN "cud" ; -- from DictEng -lin cuddle_N = mkN "cuddle" "cuddles"; -- from DictEng -lin cuddle_V = mkV "cuddle" "cuddles" "cuddled" "cuddled" "cuddling"; -- from DictEng -lin cuddle_V2 = mkV2 (mkV "cuddle" "cuddles" "cuddled" "cuddled" "cuddling"); -- from DictEng -lin cuddlesome_A = compoundA (mkA "cuddlesome"); -- from DictEng -lin cuddly_A = mkA "cuddly" "cuddlier"; -- from DictEng -lin cuddy_N = mkN "cuddy" ; -lin cudgel_N = mkN "cudgel" "cudgels"; -- from DictEng -lin cudgel_V2 = mkV2 (mkV "cudgel" "cudgels" "cudgeled" "cudgeled" "cudgeling"); -- from DictEng -lin cudweed_N = mkN "cudweed" ; -lin cue_N = mkN "cue" "cues"; -- from DictEng -lin cuff_N = mkN "cuff" "cuffs"; -- from DictEng -lin cuff_V2 = mkV2 (mkV "cuff" "cuffs" "cuffed" "cuffed" "cuffing"); -- from DictEng -lin cufflink_N = mkN "cufflink" ; -lin cuirass_N = mkN "cuirass" "cuirasses"; -- from DictEng -lin cuirassier_N = mkN "cuirassier" "cuirassiers"; -- from DictEng -lin cuisine_N = mkN "cuisine" ; -- from DictEng -lin cuisse_N = mkN "cuisse" ; -lin cul_N = mkN "cul" ; -lin cul_de_sac_N = mkN "cul - de - sac" "cul - de - sacs"; -- from DictEng -lin culdoscope_N = mkN "culdoscope" ; -lin culdoscopy_N = mkN "culdoscopy" ; -lin culinary_A = compoundA (mkA "culinary"); -- from DictEng -lin cull_N = mkN "cull" "culls"; -- from DictEng -lin cull_V2 = mkV2 (mkV "cull" "culls" "culled" "culled" "culling"); -- from DictEng -lin cullender_N = mkN "cullender" "cullenders"; -- from DictEng -lin cullis_N = mkN "cullis" ; -lin culm_N = mkN "culm" ; -lin culminate_V = mkV "culminate"; -- from DictEng -lin culminate_V2 = mkV2 (mkV "culminate" "culminates" "culminated" "culminated" "culminating"); -- from DictEng -lin culmination_N = mkN "culmination" "culminations"; -- from DictEng -lin culotte_N = mkN "culotte" ; -lin culpability_N = mkN "culpability" ; -- from DictEng -lin culpable_A = compoundA (mkA "culpable"); -- from DictEng -lin culprit_N = mkN "culprit" "culprits"; -- from DictEng -lin cult_N = mkN "cult" "cults"; -- from DictEng -lin cultism_N = mkN "cultism" ; -lin cultist_N = mkN "cultist" ; -lin cultivable_A = compoundA (mkA "cultivable"); -- from DictEng -lin cultivar_N = mkN "cultivar" ; -lin cultivate_V2 = mkV2 (mkV "cultivate" "cultivates" "cultivated" "cultivated" "cultivating"); -- from DictEng -lin cultivated_A = compoundA (mkA "cultivated"); -- from DictEng -lin cultivation_N = mkN "cultivation" ; -- from DictEng -lin cultivator_N = mkN "cultivator" "cultivators"; -- from DictEng -lin cultural_A = compoundA (mkA "cultural"); -- from DictEng -lin culturally_Adv = mkAdv "culturally" ; -lin culturati_N = mkN "culturati" ; -lin culture_N = mkN "culture" "cultures"; -- from DictEng -lin cultured_A = compoundA (mkA "cultured"); -- from DictEng -lin culverin_N = mkN "culverin" ; -lin culvert_N = mkN "culvert" "culverts"; -- from DictEng -lin cum_laude_A = compoundA (mkA "cum laude") ; -lin cum_laude_Adv = mkAdv "cum laude" ; -lin cumber_V2 = mkV2 (mkV "cumber" "cumbers" "cumbered" "cumbered" "cumbering"); -- from DictEng -lin cumbersome_A = compoundA (mkA "cumbersome"); -- from DictEng -lin cumbrous_A = compoundA (mkA "cumbrous"); -- from DictEng -lin cumin_N = mkN "cumin" ; -lin cummerbund_N = mkN "cummerbund" "cummerbunds"; -- from DictEng -lin cummings_N = mkN "cummings" ; -lin cumulative_A = compoundA (mkA "cumulative"); -- from DictEng -lin cumulatively_Adv = mkAdv "cumulatively" ; -lin cumuliform_A = mkA "cumuliform" ; -lin cumulonimbus_N = mkN "cumulonimbus" ; -lin cumulous_A = mkA "cumulous" ; -lin cumulus_N = mkN "cumulus" "cumuli" {- FIXME: guessed plural form -}; -- from DictEng -lin cuneate_A = mkA "cuneate" ; -lin cuneiform_A = compoundA (mkA "cuneiform"); -- from DictEng -lin cuneiform_N = mkN "cuneiform" ; -lin cunner_N = mkN "cunner" ; -lin cunnilingus_N = mkN "cunnilingus" ; -lin cunning_A = compoundA (mkA "cunning"); -- from DictEng -lin cunning_N = mkN "cunning" ; -- from DictEng -lin cunningly_Adv = mkAdv "cunningly" ; -lin cunt_N = mkN "cunt" "cunts"; -- from DictEng -lin cup_N = mkN "cup" "cups"; -- from DictEng -lin cup_V2 = mkV2 (mkV "cup" "cups" "cupped" "cupped" "cupping"); -- from DictEng -lin cup_bearer_N = mkN "cup - bearer" "cup - bearers"; -- from DictEng -lin cup_final_N = mkN "cup - final" "cup - finals"; -- from DictEng -lin cup_tie_N = mkN "cup - tie" "cup - ties"; -- from DictEng -lin cupbearer_N = mkN "cupbearer" ; -lin cupboard_N = mkN "cupboard" "cupboards"; -- from DictEng -lin cupboard_love_N = mkN "cupboard - love" ; -- from DictEng -lin cupcake_N = mkN "cupcake" ; -lin cupflower_N = mkN "cupflower" ; -lin cupful_N = mkN "cupful" "cupfuls"; -- from DictEng -lin cupid_N = mkN "cupid" ; -lin cupidity_N = mkN "cupidity" ; -- from DictEng -lin cuplike_A = mkA "cuplike" ; -lin cupola_N = mkN "cupola" "cupolas"; -- from DictEng -lin cuppa_N = mkN "cuppa" "cuppas"; -- from DictEng -lin cupping_N = mkN "cupping" ; -- from DictEng -lin cupric_A = compoundA (mkA "cupric"); -- from DictEng -lin cuprite_N = mkN "cuprite" ; -lin cupro_nickel_N = mkN "cupro - nickel" ; -- from DictEng -lin cupronickel_N = mkN "cupronickel" ; -lin cupular_A = mkA "cupular" ; -lin cupule_N = mkN "cupule" ; -lin cur_N = mkN "cur" "curs"; -- from DictEng -lin curability_N = mkN "curability" ; -- from DictEng -lin curable_A = compoundA (mkA "curable"); -- from DictEng -lin curacao_N = mkN "curaçao" ; -- from DictEng -lin curacoa_N = mkN "curaçoa" ; -- from DictEng -lin curacy_N = mkN "curacy" "curacies"; -- from DictEng -lin curandera_N = mkN "curandera" ; -lin curandero_N = mkN "curandero" ; -lin curassow_N = mkN "curassow" ; -lin curate_N = mkN "curate" "curates"; -- from DictEng -lin curative_A = compoundA (mkA "curative"); -- from DictEng -lin curator_N = mkN "curator" "curators"; -- from DictEng -lin curatorial_A = mkA "curatorial" ; -lin curatorship_N = mkN "curatorship" ; -lin curb_N = mkN "curb" "curbs"; -- from DictEng -lin curb_V2 = mkV2 (mkV "curb" "curbs" "curbed" "curbed" "curbing"); -- from DictEng -lin curbside_N = mkN "curbside" ; -lin curbstone_N = mkN "curbstone" ; -lin curd_N = mkN "curd" "curds"; -- from DictEng -lin curdle_V = mkV "curdle" "curdles" "curdled" "curdled" "curdling"; -- from DictEng -lin curdle_V2 = mkV2 (mkV "curdle" "curdles" "curdled" "curdled" "curdling"); -- from DictEng -lin curdling_N = mkN "curdling" ; -lin cure_V = mkV "cure" "cures" "cured" "cured" "curing"; -- from DictEng -lin cure_V2 = mkV2 (mkV "cure" "cures" "cured" "cured" "curing"); -- from DictEng -lin cure_1_N = mkN "cure" "cures"; -- from DictEng -lin cure_2_N = mkN "curé" "curés"; -- from DictEng -lin cure_all_N = mkN "cure - all" "cure - alls"; -- from DictEng -lin cured_A = mkA "cured" ; -lin curettage_N = mkN "curettage" ; -lin curette_N = mkN "curette" ; -lin curfew_N = mkN "curfew" "curfews"; -- from DictEng -lin curie_N = mkN "curie" ; -lin curio_N = mkN "curio" "curios"; -- from DictEng -lin curiosa_N = mkN "curiosa" ; -lin curiosity_N = mkN "curiosity" "curiosities"; -- from DictEng -lin curious_A = compoundA (mkA "curious"); -- from DictEng -lin curiously_Adv = mkAdv "curiously" ; -lin curiousness_N = mkN "curiousness" ; -lin curium_N = mkN "curium" ; -lin curl_N = mkN "curl" "curls"; -- from DictEng -lin curl_V = mkV "curl" "curls" "curled" "curled" "curling"; -- from DictEng -lin curl_V2 = mkV2 (mkV "curl" "curls" "curled" "curled" "curling"); -- from DictEng -lin curled_A = mkA "curled" ; -lin curler_N = mkN "curler" "curlers"; -- from DictEng -lin curlew_N = mkN "curlew" "curlews"; -- from DictEng -lin curliness_N = mkN "curliness" ; -lin curling_N = mkN "curling" ; -- from DictEng -lin curly_A = mkA "curly" "curlier"; -- from DictEng -lin curly_grained_A = compoundA (mkA "curly grained") ; -lin curly_haired_A = compoundA (mkA "curly haired") ; -lin curly_heads_N = mkN "curly heads" ; -lin curly_leaved_A = compoundA (mkA "curly leaved") ; -lin curmudgeon_N = mkN "curmudgeon" "curmudgeons"; -- from DictEng -lin currant_N = mkN "currant" "currants"; -- from DictEng -lin currawong_N = mkN "currawong" ; -lin currency_N = mkN "currency" "currencies"; -- from DictEng -lin current_A = compoundA (mkA "current"); -- from DictEng -lin current_N = mkN "current" "currents"; -- from DictEng -lin currentness_N = mkN "currentness" ; -lin curricular_A = mkA "curricular" ; -lin curriculum_N = mkN "curriculum" "curriculums"; -- from DictEng -lin curriculum_vitae_N = mkN "curriculum vitae" "curricula vitae"; -- from DictEng -lin currier_N = mkN "currier" ; -lin currish_A = compoundA (mkA "currish"); -- from DictEng -lin currishly_Adv = mkAdv "currishly" ; -lin curry_N = mkN "curry" "curries"; -- from DictEng -lin curry_V2 = mkV2 (mkV "curry" "curries" "curried" "curried" "currying"); -- from DictEng -lin curry_powder_N = mkN "curry - powder" "curry - powders"; -- from DictEng -lin currycomb_N = mkN "currycomb" ; -lin curse_N = mkN "curse" "curses"; -- from DictEng -lin curse_V = mkV "curse" "curses" "cursed" "cursed" "cursing"; -- from DictEng -lin curse_V2 = mkV2 (mkV "curse" "curses" "cursed" "cursed" "cursing"); -- from DictEng -lin cursed_A = compoundA (mkA "cursed"); -- from DictEng -lin cursed_with_A = compoundA (mkA "cursed with") ; -lin cursive_A = compoundA (mkA "cursive"); -- from DictEng -lin cursively_Adv = mkAdv "cursively" ; -lin cursor_N = mkN "cursor" ; -lin cursorial_A = mkA "cursorial" ; -lin cursorily_Adv = mkAdv "cursorily" ; -lin cursory_A = compoundA (mkA "cursory"); -- from DictEng -lin curst_A = compoundA (mkA "curst"); -- from DictEng -lin curt_A = compoundA (mkA "curt"); -- from DictEng -lin curtail_V2 = mkV2 (mkV "curtail" "curtails" "curtailed" "curtailed" "curtailing"); -- from DictEng -lin curtailment_N = mkN "curtailment" "curtailments"; -- from DictEng -lin curtain_N = mkN "curtain" "curtains"; -- from DictEng -lin curtain_V2 = mkV2 (mkV "curtain" "curtains" "curtained" "curtained" "curtaining"); -- from DictEng -lin curtain_call_N = mkN "curtain - call" "curtain - calls"; -- from DictEng -lin curtain_lecture_N = mkN "curtain - lecture" "curtain - lectures"; -- from DictEng -lin curtain_raiser_N = mkN "curtain - raiser" "curtain - raisers"; -- from DictEng -lin curtained_A = mkA "curtained" ; -lin curtainless_A = mkA "curtainless" ; -lin curtal_A = mkA "curtal" ; -lin curtly_Adv = mkAdv "curtly" ; -lin curtness_N = mkN "curtness" ; -- from DictEng -lin curtsey_N = mkN "curtsey" "curtseys"; -- from DictEng -lin curtsey_V = mkV "curtsey" "curtseys" "curtseyed" "curtseyed" "curtseying"; -- from DictEng -lin curtsey_V2 = mkV2 (mkV "curtsey") ; -lin curtsy_N = mkN "curtsy" "curtsies"; -- from DictEng -lin curtsy_V = mkV "curtsy" "curtsies" "curtsied" "curtsied" "curtsying"; -- from DictEng -lin curvaceously_Adv = mkAdv "curvaceously" ; -lin curvaceousness_N = mkN "curvaceousness" ; -lin curvature_N = mkN "curvature" ; -- from DictEng -lin curve_N = mkN "curve" "curves"; -- from DictEng -lin curve_V = mkV "curve" "curves" "curved" "curved" "curving"; -- from DictEng -lin curve_V2 = mkV2 (mkV "curve" "curves" "curved" "curved" "curving"); -- from DictEng -lin curved_A = mkA "curved" ; -lin curvet_N = mkN "curvet" ; -lin curvilineal_A = mkA "curvilineal" ; -lin curvy_A = mkA "curvy" ; -lin cuscus_N = mkN "cuscus" ; -lin cush_cush_N = mkN "cush cush" ; -lin cushaw_N = mkN "cushaw" ; -lin cushion_N = mkN "cushion" "cushions"; -- from DictEng -lin cushion_V2 = mkV2 (mkV "cushion" "cushions" "cushioned" "cushioned" "cushioning"); -- from DictEng -lin cushioned_A = mkA "cushioned" ; -lin cushy_A = mkA "cushy" "cushier"; -- from DictEng -lin cusk_N = mkN "cusk" ; -lin cusk_eel_N = mkN "cusk eel" ; -lin cusp_N = mkN "cusp" "cusps"; -- from DictEng -lin cuspate_A = mkA "cuspate" ; -lin cuspidation_N = mkN "cuspidation" ; -lin cuspidor_N = mkN "cuspidor" "cuspidors"; -- from DictEng -lin cuss_N = mkN "cuss" "cusses"; -- from DictEng -lin cussed_A = compoundA (mkA "cussed"); -- from DictEng -lin cussedness_N = mkN "cussedness" ; -- from DictEng -lin custard_N = mkN "custard" "custards"; -- from DictEng -lin custard_like_A = compoundA (mkA "custard like") ; -lin custodial_A = compoundA (mkA "custodial"); -- from DictEng -lin custodian_N = mkN "custodian" "custodians"; -- from DictEng -lin custodianship_N = mkN "custodianship" ; -lin custody_N = mkN "custody" ; -- from DictEng -lin custom_N = mkN "custom" "customs"; -- from DictEng -lin custom_built_A = compoundA (mkA "custom - built"); -- from DictEng -lin custom_made_A = compoundA (mkA "custom - made"); -- from DictEng -lin custom_made_N = mkN "custom made" ; -lin custom_built_A = compoundA (mkA "custom - built"); -- from DictEng -lin custom_made_A = compoundA (mkA "custom - made"); -- from DictEng -lin customarily_Adv = mkAdv "customarily" ; -lin customary_A = compoundA (mkA "customary"); -- from DictEng -lin customer_N = mkN "customer" "customers"; -- from DictEng -lin customhouse_N = mkN "customhouse" ; -lin customize_V2 = mkV2 (mkV "customize"); -- from DictEng -lin customs_N = mkN "customs" ; -lin cut_A = mkA "cut" ; -lin cut_N = mkN "cut" "cuts"; -- from DictEng -lin cut_V = IrregEng.cut_V; -- from DictEng -lin cut_V2 = mkV2 (IrregEng.cut_V); -- from DictEng -lin cut_VS = mkVS (IrregEng.cut_V); -- from DictEng -lin cut_and_dried_A = compoundA (mkA "cut and dried") ; -lin cut_in_N = mkN "cut in" ; -lin cut_out_A = compoundA (mkA "cut out") ; -lin cut_out_N = mkN "cut - out" "cut - outs"; -- from DictEng -lin cut_price_A = compoundA (mkA "cut - price"); -- from DictEng -lin cut_rate_A = compoundA (mkA "cut - rate"); -- from DictEng -lin cut_throat_A = compoundA (mkA "cut - throat"); -- from DictEng -lin cut_throat_N = mkN "cut - throat" "cut - throats"; -- from DictEng -lin cut_up_A = compoundA (mkA "cut up") ; -lin cutaneous_A = mkA "cutaneous" ; -lin cutaway_N = mkN "cutaway" ; -lin cutback_N = mkN "cutback" "cutbacks"; -- from DictEng -lin cutch_N = mkN "cutch" ; -lin cute_A = mkA "cute" "cuter"; -- from DictEng -lin cuteness_N = mkN "cuteness" ; -- from DictEng -lin cuticle_N = mkN "cuticle" "cuticles"; -- from DictEng -lin cuticula_N = mkN "cuticula" ; -lin cuticular_A = mkA "cuticular" ; -lin cutin_N = mkN "cutin" ; -lin cutlas_N = mkN "cutlas" ; -lin cutlass_N = mkN "cutlass" "cutlasses"; -- from DictEng -lin cutlassfish_N = mkN "cutlassfish" ; -lin cutler_N = mkN "cutler" "cutlers"; -- from DictEng -lin cutlery_N = mkN "cutlery" ; -- from DictEng -lin cutlet_N = mkN "cutlet" "cutlets"; -- from DictEng -lin cutoff_N = mkN "cutoff" ; -lin cutout_N = mkN "cutout" ; -lin cutpurse_N = mkN "cutpurse" "cutpurses"; -- from DictEng -lin cutter_N = mkN "cutter" "cutters"; -- from DictEng -lin cutthroat_A = mkA "cutthroat" ; -lin cutthroat_N = mkN "cutthroat" ; -lin cutting_A = compoundA (mkA "cutting"); -- from DictEng -lin cutting_N = mkN "cutting" "cuttings"; -- from DictEng -lin cutting_room_N = mkN "cutting - room" "cutting - rooms"; -- from DictEng -lin cuttingly_Adv = mkAdv "cuttingly" ; -lin cuttlefish_N = mkN "cuttlefish" "cuttlefishes"; -- from DictEng -lin cutwork_N = mkN "cutwork" ; -lin cutworm_N = mkN "cutworm" "cutworms"; -- from DictEng -lin cwt_N = mkN "cwt" "cwt"; -- from DictEng -lin cyan_N = mkN "cyan" ; -lin cyanamide_N = mkN "cyanamide" ; -lin cyanide_N = mkN "cyanide" ; -- from DictEng -lin cyanobacteria_N = mkN "cyanobacteria" ; -lin cyanobacterial_A = mkA "cyanobacterial" ; -lin cyanogen_N = mkN "cyanogen" ; -lin cyanogenetic_A = mkA "cyanogenetic" ; -lin cyanohydrin_N = mkN "cyanohydrin" ; -lin cyanosis_N = mkN "cyanosis" ; -lin cyber_terrorism_N = mkN "cyber terrorism" ; -lin cyberart_N = mkN "cyberart" ; -lin cybercafe_N = mkN "cybercafe" ; -lin cybercrime_N = mkN "cybercrime" ; -lin cyberculture_N = mkN "cyberculture" ; -lin cybernaut_N = mkN "cybernaut" ; -lin cybernetic_A = compoundA (mkA "cybernetic"); -- from DictEng -lin cybernetics_N = mkN "cybernetics" "cybernetics"; -- from DictEng -lin cyberphobia_N = mkN "cyberphobia" ; -lin cyberpunk_N = mkN "cyberpunk" ; -lin cybersex_N = mkN "cybersex" ; -lin cyborg_N = mkN "cyborg" ; -lin cycad_N = mkN "cycad" ; -lin cyclamen_N = mkN "cyclamen" "cyclamens"; -- from DictEng -lin cycle_N = mkN "cycle" "cycles"; -- from DictEng -lin cycle_V = mkV "cycle" "cycles" "cycled" "cycled" "cycling"; -- from DictEng -lin cyclic_A = compoundA (mkA "cyclic"); -- from DictEng -lin cyclical_A = compoundA (mkA "cyclical"); -- from DictEng -lin cyclicity_N = mkN "cyclicity" ; -lin cycling_N = mkN "cycling" ; -lin cyclist_N = mkN "cyclist" "cyclists"; -- from DictEng -lin cyclobenzaprine_N = mkN "cyclobenzaprine" ; -lin cyclohexanol_N = mkN "cyclohexanol" ; -lin cycloid_A = mkA "cycloid" ; -lin cycloid_N = mkN "cycloid" ; -lin cyclone_N = mkN "cyclone" "cyclones"; -- from DictEng -lin cyclonic_A = compoundA (mkA "cyclonic"); -- from DictEng -lin cyclooxygenase_N = mkN "cyclooxygenase" ; -lin cyclooxygenase_1_N = mkN "cyclooxygenase 1" ; -lin cyclooxygenase_2_N = mkN "cyclooxygenase 2" ; -lin cyclopaedia_N = mkN "cyclopaedia" "cyclopaedias"; -- from DictEng -lin cyclopean_A = compoundA (mkA "cyclopean"); -- from DictEng -lin cyclopia_N = mkN "cyclopia" ; -lin cyclopropane_N = mkN "cyclopropane" ; -lin cyclops_N = mkN "cyclops" ; -lin cycloserine_N = mkN "cycloserine" ; -lin cyclosis_N = mkN "cyclosis" ; -lin cyclostome_N = mkN "cyclostome" ; -lin cyclostyle_N = mkN "cyclostyle" "cyclostyles"; -- from DictEng -lin cyclostyle_V2 = mkV2 (mkV "cyclostyle" "cyclostyles" "cyclostyled" "cyclostyled" "cyclostyling"); -- from DictEng -lin cyclothymia_N = mkN "cyclothymia" ; -lin cyclothymic_A = mkA "cyclothymic" ; -lin cyclotron_N = mkN "cyclotron" "cyclotrons"; -- from DictEng -lin cyder_N = mkN "cyder" "cyders"; -- from DictEng -lin cygnet_N = mkN "cygnet" "cygnets"; -- from DictEng -lin cylinder_N = mkN "cylinder" "cylinders"; -- from DictEng -lin cylindrical_A = compoundA (mkA "cylindrical"); -- from DictEng -lin cylindrical_stemmed_A = compoundA (mkA "cylindrical stemmed") ; -lin cylindricality_N = mkN "cylindricality" ; -lin cyma_N = mkN "cyma" ; -lin cymbal_N = mkN "cymbal" "cymbals"; -- from DictEng -lin cymbalist_N = mkN "cymbalist" ; -lin cymbid_N = mkN "cymbid" ; -lin cyme_N = mkN "cyme" ; -lin cymene_N = mkN "cymene" ; -lin cymling_N = mkN "cymling" ; -lin cymose_A = mkA "cymose" ; -lin cymule_N = mkN "cymule" ; -lin cynancum_N = mkN "cynancum" ; -lin cynic_N = mkN "cynic" "cynics"; -- from DictEng -lin cynical_A = compoundA (mkA "cynical"); -- from DictEng -lin cynically_Adv = mkAdv "cynically" ; -lin cynicism_N = mkN "cynicism" "cynicisms"; -- from DictEng -lin cynodont_N = mkN "cynodont" ; -lin cynophobia_N = mkN "cynophobia" ; -lin cynosure_N = mkN "cynosure" "cynosures"; -- from DictEng -lin cypher_N = mkN "cypher" "cyphers"; -- from DictEng -lin cypher_V = mkV "cypher" "cyphers" "cyphered" "cyphered" "cyphering"; -- from DictEng -lin cypher_V2 = mkV2 (mkV "cypher" "cyphers" "cyphered" "cyphered" "cyphering"); -- from DictEng -lin cypress_N = mkN "cypress" "cypresses"; -- from DictEng -lin cyprian_A = compoundA (mkA "cyprian"); -- from DictEng -lin cyprinid_A = mkA "cyprinid" ; -lin cyprinid_N = mkN "cyprinid" ; -lin cyprinodont_N = mkN "cyprinodont" ; -lin cypriot_A = compoundA (mkA "cypriot"); -- from DictEng -lin cypriot_N = mkN "cypriot" "cypriots"; -- from DictEng -lin cypripedia_N = mkN "cypripedia" ; -lin cyproheptadine_N = mkN "cyproheptadine" ; -lin cyrilla_N = mkN "cyrilla" ; -lin cyrillic_A = compoundA (mkA "cyrillic"); -- from DictEng -lin cyst_N = mkN "cyst" "cysts"; -- from DictEng -lin cysteine_N = mkN "cysteine" ; -lin cystic_A = mkA "cystic" ; -lin cystine_N = mkN "cystine" ; -lin cystitis_N = mkN "cystitis" ; -lin cystocele_N = mkN "cystocele" ; -lin cystoplegia_N = mkN "cystoplegia" ; -lin cytoarchitectural_A = mkA "cytoarchitectural" ; -lin cytoarchitecture_N = mkN "cytoarchitecture" ; -lin cytochrome_N = mkN "cytochrome" ; -lin cytogenesis_N = mkN "cytogenesis" ; -lin cytogenetic_A = mkA "cytogenetic" ; -lin cytogeneticist_N = mkN "cytogeneticist" ; -lin cytogenetics_N = mkN "cytogenetics" ; -lin cytokine_N = mkN "cytokine" ; -lin cytokinesis_N = mkN "cytokinesis" ; -lin cytokinetic_A = mkA "cytokinetic" ; -lin cytological_A = mkA "cytological" ; -lin cytologist_N = mkN "cytologist" ; -lin cytology_N = mkN "cytology" ; -lin cytolysin_N = mkN "cytolysin" ; -lin cytolysis_N = mkN "cytolysis" ; -lin cytolytic_A = mkA "cytolytic" ; -lin cytomegalic_A = mkA "cytomegalic" ; -lin cytomegalovirus_N = mkN "cytomegalovirus" ; -lin cytopathogenic_A = mkA "cytopathogenic" ; -lin cytopenia_N = mkN "cytopenia" ; -lin cytophotometer_N = mkN "cytophotometer" ; -lin cytophotometric_A = mkA "cytophotometric" ; -lin cytophotometrically_Adv = mkAdv "cytophotometrically" ; -lin cytophotometry_N = mkN "cytophotometry" ; -lin cytoplasm_N = mkN "cytoplasm" ; -lin cytoplasmic_A = mkA "cytoplasmic" ; -lin cytoplasmically_Adv = mkAdv "cytoplasmically" ; -lin cytoplast_N = mkN "cytoplast" ; -lin cytoplastic_A = mkA "cytoplastic" ; -lin cytosine_N = mkN "cytosine" ; -lin cytoskeleton_N = mkN "cytoskeleton" ; -lin cytosol_N = mkN "cytosol" ; -lin cytostome_N = mkN "cytostome" ; -lin cytotoxic_A = mkA "cytotoxic" ; -lin cytotoxicity_N = mkN "cytotoxicity" ; -lin cytotoxin_N = mkN "cytotoxin" ; -lin czar_N = mkN "czar" "czars"; -- from DictEng -lin czarina_N = mkN "czarina" "czarinas"; -- from DictEng -lin czarist_A = mkA "czarist" ; -lin czech_A = compoundA (mkA "czech"); -- from DictEng -lin czech_N = mkN "czech" "czechs"; -- from DictEng -lin czechoslovak_A = compoundA (mkA "czechoslovak"); -- from DictEng -lin czechoslovak_N = mkN "czechoslovak" "czechoslovaks"; -- from DictEng -lin czechoslovakian_A = compoundA (mkA "czechoslovakian"); -- from DictEng -lin czechoslovakian_N = mkN "czechoslovakian" "czechoslovakians"; -- from DictEng -lin d_o_a__A = compoundA (mkA "d o a ") ; -lin da'wah_N = mkN "da'wah" ; -lin da_gamma_PN = mkPN "da Gamma" ; -lin dab_N = mkN "dab" "dabs"; -- from DictEng -lin dab_V = mkV "dab" "dabs" "dabbed" "dabbed" "dabbing"; -- from DictEng -lin dab_V2 = mkV2 (mkV "dab" "dabs" "dabbed" "dabbed" "dabbing"); -- from DictEng -lin dabble_V = mkV "dabble" "dabbles" "dabbled" "dabbled" "dabbling"; -- from DictEng -lin dabble_V2 = mkV2 (mkV "dabble" "dabbles" "dabbled" "dabbled" "dabbling"); -- from DictEng -lin dabbled_A = mkA "dabbled" ; -lin dabbler_N = mkN "dabbler" "dabblers"; -- from DictEng -lin dabchick_N = mkN "dabchick" ; -lin dace_N = mkN "dace" "dace"; -- from DictEng -lin dacha_N = mkN "dacha" "dachas"; -- from DictEng -lin dachshund_N = mkN "dachshund" "dachshunds"; -- from DictEng -lin dacite_N = mkN "dacite" ; -lin dacitic_A = mkA "dacitic" ; -lin dacoit_N = mkN "dacoit" "dacoits"; -- from DictEng -lin dacoity_N = mkN "dacoity" "dacoities"; -- from DictEng -lin dacryocystitis_N = mkN "dacryocystitis" ; -lin dacryon_N = mkN "dacryon" ; -lin dactyl_N = mkN "dactyl" "dactyls"; -- from DictEng -lin dactylic_A = compoundA (mkA "dactylic"); -- from DictEng -lin dactylomegaly_N = mkN "dactylomegaly" ; -lin dad_N = mkN "dad" "dads"; -- from DictEng -lin dada_N = mkN "dada" ; -lin daddy_N = mkN "daddy" "daddies"; -- from DictEng -lin daddy_longlegs_N = mkN "daddy - longlegs" "daddy - longlegs"; -- from DictEng -lin dado_N = mkN "dado" "dados"; -- from DictEng -lin daedal_A = mkA "daedal" ; -lin daemon_N = mkN "daemon" "daemons"; -- from DictEng -lin daffodil_N = mkN "daffodil" "daffodils"; -- from DictEng -lin daft_A = mkA "daft" "dafter"; -- from DictEng -lin daftly_Adv = mkAdv "daftly" ; -lin dagame_N = mkN "dagame" ; -lin dagga_N = mkN "dagga" ; -lin dagger_N = mkN "dagger" "daggers"; -- from DictEng -lin dagger_like_A = compoundA (mkA "dagger like") ; -lin daggerboard_N = mkN "daggerboard" ; -lin dago_N = mkN "dago" "dagos"; -- from DictEng -lin daguerreotype_N = mkN "daguerreotype" "daguerreotypes"; -- from DictEng -lin dahlia_N = mkN "dahlia" "dahlias"; -- from DictEng -lin dail_eireann_N = mkN "dail eireann" "IRREG"; -- from DictEng -lin daily_A = compoundA (mkA "daily"); -- from DictEng -lin daily_Adv = mkAdv "daily"; -- from DictEng -lin daily_N = mkN "daily" "dailies"; -- from DictEng -lin daintily_Adv = mkAdv "daintily"; -- from DictEng -lin daintiness_N = mkN "daintiness" ; -- from DictEng -lin dainty_A = mkA "dainty" "daintier"; -- from DictEng -lin dainty_N = mkN "dainty" "dainties"; -- from DictEng -lin daiquiri_N = mkN "daiquiri" ; -lin dairy_N = mkN "dairy" "dairies"; -- from DictEng -lin dairy_farm_N = mkN "dairy - farm" "dairy - farms"; -- from DictEng -lin dairy_farming_N = mkN "dairy - farming" ; -- from DictEng -lin dairying_N = mkN "dairying" ; -- from DictEng -lin dairymaid_N = mkN "dairymaid" "dairymaids"; -- from DictEng -lin dairyman_N = mkN "dairyman" "dairymen" {- FIXME: guessed plural form -}; -- from DictEng -lin dais_N = mkN "dais" "daises"; -- from DictEng -lin daisy_N = mkN "daisy" "daisies"; -- from DictEng -lin daisybush_N = mkN "daisybush" ; -lin daisylike_A = mkA "daisylike" ; -lin dalasi_N = mkN "dalasi" ; -lin dale_N = mkN "dale" "dales"; -- from DictEng -lin dalesman_N = mkN "dalesman" "dalesmen" {- FIXME: guessed plural form -}; -- from DictEng -lin daleth_N = mkN "daleth" ; -lin dalliance_N = mkN "dalliance" ; -- from DictEng -lin dallier_N = mkN "dallier" ; -lin dallisgrass_N = mkN "dallisgrass" ; -lin dally_V = mkV "dally" "dallies" "dallied" "dallied" "dallying"; -- from DictEng -lin dalmatian_N = mkN "dalmatian" "dalmatians"; -- from DictEng -lin dam_N = mkN "dam" "dams"; -- from DictEng -lin dam_V2 = mkV2 (mkV "dam" "dams" "dammed" "dammed" "damming"); -- from DictEng -lin damage_N = mkN "damage" "damages"; -- from DictEng -lin damage_V2 = mkV2 (mkV "damage" "damages" "damaged" "damaged" "damaging"); -- from DictEng -lin damaged_A = mkA "damaged" ; -lin damages_N = mkN "damages" ; -lin damaging_A = mkA "damaging" ; -lin damascene_A = compoundA (mkA "damascene"); -- from DictEng -lin damascene_N = mkN "damascene" ; -lin damascene_V2 = mkV2 (mkV "damascene" "damascenes" "damascened" "damascened" "damascening"); -- from DictEng -lin damask_A = mkA "damask" ; -lin damask_N = mkN "damask" ; -- from DictEng -lin dame_N = mkN "dame" "dames"; -- from DictEng -lin dammar_N = mkN "dammar" ; -lin damn_A = compoundA (mkA "damn"); -- from DictEng -lin damn_Adv = mkAdv "damn"; -- from DictEng -lin damn_N = mkN "damn" "damns"; -- from DictEng -lin damn_V2 = mkV2 (mkV "damn" "damns" "damned" "damned" "damning"); -- from DictEng -lin damnable_A = compoundA (mkA "damnable"); -- from DictEng -lin damnation_N = mkN "damnation" ; -- from DictEng -lin damnatory_A = mkA "damnatory" ; -lin damned_A = compoundA (mkA "damned"); -- from DictEng -lin damned_Adv = mkAdv "damned"; -- from DictEng -lin damned_N = mkN "damned" ; -lin damourite_N = mkN "damourite" ; -lin damp_A = mkA "damp" "damper"; -- from DictEng -lin damp_N = mkN "damp" ; -- from DictEng -lin damp_V = mkV "damp" "damps" "damped" "damped" "damping"; -- from DictEng -lin damp_V2 = mkV2 (mkV "damp" "damps" "damped" "damped" "damping"); -- from DictEng -lin dampen_V = mkV "dampen" "dampens" "dampened" "dampened" "dampening"; -- from DictEng -lin dampen_V2 = mkV2 (mkV "dampen" "dampens" "dampened" "dampened" "dampening"); -- from DictEng -lin dampener_N = mkN "dampener" ; -lin damper_N = mkN "damper" "dampers"; -- from DictEng -lin dampish_A = compoundA (mkA "dampish"); -- from DictEng -lin damply_Adv = mkAdv "damply" ; -lin dampness_N = mkN "dampness" ; -- from DictEng -lin damsel_N = mkN "damsel" "damsels"; -- from DictEng -lin damselfish_N = mkN "damselfish" ; -lin damselfly_N = mkN "damselfly" ; -lin damson_N = mkN "damson" "damsons"; -- from DictEng -lin danaid_N = mkN "danaid" ; -lin dance_N = mkN "dance" "dances"; -- from DictEng -lin dance_V = mkV "dance" "dances" "danced" "danced" "dancing"; -- from DictEng -lin dance_V2 = mkV2 (mkV "dance" "dances" "danced" "danced" "dancing"); -- from DictEng -lin dance_band_N = mkN "dance - band" "dance - bands"; -- from DictEng -lin dance_hall_N = mkN "dance - hall" "dance - halls"; -- from DictEng -lin dance_orchestra_N = mkN "dance - orchestra" "dance - orchestras"; -- from DictEng -lin danceable_A = mkA "danceable" ; -lin dancer_N = mkN "dancer" "dancers"; -- from DictEng -lin dancing_A = compoundA (mkA "dancing"); -- from DictEng -lin dancing_N = mkN "dancing" ; -- from DictEng -lin dancing_master_N = mkN "dancing master" ; -lin dandelion_N = mkN "dandelion" "dandelions"; -- from DictEng -lin dander_N = mkN "dander" "IRREG"; -- from DictEng -lin dandified_A = compoundA (mkA "dandified"); -- from DictEng -lin dandily_Adv = mkAdv "dandily" ; -lin dandle_V2 = mkV2 (mkV "dandle" "dandles" "dandled" "dandled" "dandling"); -- from DictEng -lin dandruff_N = mkN "dandruff" ; -- from DictEng -lin dandy_A = compoundA (mkA "dandy"); -- from DictEng -lin dandy_N = mkN "dandy" "dandies"; -- from DictEng -lin dane_N = mkN "dane" "danes"; -- from DictEng -lin danger_N = mkN "danger" "dangers"; -- from DictEng -lin dangerous_A = compoundA (mkA "dangerous"); -- from DictEng -lin dangerousness_N = mkN "dangerousness" ; -lin dangle_V = mkV "dangle" "dangles" "dangled" "dangled" "dangling"; -- from DictEng -lin dangle_V2 = mkV2 (mkV "dangle" "dangles" "dangled" "dangled" "dangling"); -- from DictEng -lin dangleberry_N = mkN "dangleberry" ; -lin daniel_N = mkN "daniel" "daniels"; -- from DictEng -lin danish_A = compoundA (mkA "Danish"); -- from DictEng -lin danish_N = mkN "Danish" ; -- from DictEng -lin dank_A = mkA "dank" "danker"; -- from DictEng -lin dankness_N = mkN "dankness" ; -lin danse_macabre_N = mkN "danse macabre" "IRREG"; -- from DictEng -lin danseur_N = mkN "danseur" ; -lin daphne_N = mkN "daphne" "daphnes"; -- from DictEng -lin daphnia_N = mkN "daphnia" ; -lin dapper_A = compoundA (mkA "dapper"); -- from DictEng -lin dapple_V2 = mkV2 (mkV "dapple" "dapples" "dappled" "dappled" "dappling"); -- from DictEng -lin dapple_grey_N = mkN "dapple - grey" "dapple - greys"; -- from DictEng -lin dapple_grey_A = compoundA (mkA "dapple - grey"); -- from DictEng -lin dapple_grey_N = mkN "dapple - grey" "dapple - greys"; -- from DictEng -lin dappled_A = mkA "dappled" ; -lin dapsone_N = mkN "dapsone" ; -lin daraf_N = mkN "daraf" ; -lin dare_N = mkN "dare" "dares"; -- from DictEng -lin dare_V = mkV "dare" "dares" "dared" "dared" "daring"; -- from DictEng -lin dare_V2 = mkV2 (mkV "dare" "dares" "dared" "dared" "daring"); -- from DictEng -lin dare_VV = mkVV (mkV "dare" "dares" "dared" "dared" "daring"); -- from DictEng -lin daredevil_A = mkA "daredevil" ; -lin daredevil_N = mkN "daredevil" "daredevils"; -- from DictEng -lin daredevilry_N = mkN "daredevilry" ; -lin daring_A = compoundA (mkA "daring"); -- from DictEng -lin daring_N = mkN "daring" ; -- from DictEng -lin daringly_Adv = mkAdv "daringly" ; -lin dark_A = mkA "dark" "darker"; -- from DictEng -lin dark_N = mkN "dark" ; -- from DictEng -lin dark_blue_A = compoundA (mkA "dark blue") ; -lin dark_colored_A = compoundA (mkA "dark colored") ; -lin dark_fruited_A = compoundA (mkA "dark fruited") ; -lin dark_haired_A = compoundA (mkA "dark haired") ; -lin dark_skinned_A = compoundA (mkA "dark skinned") ; -lin dark_spotted_A = compoundA (mkA "dark spotted") ; -lin darken_V = mkV "darken" "darkens" "darkened" "darkened" "darkening"; -- from DictEng -lin darken_V2 = mkV2 (mkV "darken" "darkens" "darkened" "darkened" "darkening"); -- from DictEng -lin darkened_A = mkA "darkened" ; -lin darkening_A = mkA "darkening" ; -lin darkey_N = mkN "darkey" "darkeys"; -- from DictEng -lin darkie_N = mkN "darkie" "darkies"; -- from DictEng -lin darkish_A = mkA "darkish" ; -lin darkling_A = mkA "darkling" ; -lin darkly_Adv = mkAdv "darkly" ; -lin darkness_N = mkN "darkness" ; -- from DictEng -lin darkroom_N = mkN "darkroom" "darkrooms"; -- from DictEng -lin darky_N = mkN "darky" "darkies"; -- from DictEng -lin darling_N = mkN "darling" "darlings"; -- from DictEng -lin darmstadtium_N = mkN "darmstadtium" ; -lin darn_N = mkN "darn" "darns"; -- from DictEng -lin darn_V = mkV "darn" "darns" "darned" "darned" "darning"; -- from DictEng -lin darn_V2 = mkV2 (mkV "darn" "darns" "darned" "darned" "darning"); -- from DictEng -lin darnel_N = mkN "darnel" ; -lin darner_N = mkN "darner" ; -lin darning_N = mkN "darning" ; -- from DictEng -lin darning_needle_N = mkN "darning - needle" "darning - needles"; -- from DictEng -lin dart_N = mkN "dart" "darts"; -- from DictEng -lin dart_V = mkV "dart" "darts" "darted" "darted" "darting"; -- from DictEng -lin dart_V2 = mkV2 (mkV "dart" "darts" "darted" "darted" "darting"); -- from DictEng -lin dartboard_N = mkN "dartboard" ; -lin darter_N = mkN "darter" ; -lin darts_N = mkN "darts" ; -lin dash_N = mkN "dash" "dashes"; -- from DictEng -lin dash_V = mkV "dash" "dashes" "dashed" "dashed" "dashing"; -- from DictEng -lin dash_V2 = mkV2 (mkV "dash" "dashes" "dashed" "dashed" "dashing"); -- from DictEng -lin dash_pot_N = mkN "dash pot" ; -lin dashboard_N = mkN "dashboard" "dashboards"; -- from DictEng -lin dashed_A = mkA "dashed" ; -lin dashiki_N = mkN "dashiki" ; -lin dashing_A = compoundA (mkA "dashing"); -- from DictEng -lin dashingly_Adv = mkAdv "dashingly" ; -lin dastard_A = mkA "dastard" ; -lin dastard_N = mkN "dastard" "dastards"; -- from DictEng -lin dastardliness_N = mkN "dastardliness" ; -lin dastardly_A = compoundA (mkA "dastardly"); -- from DictEng -lin dasymeter_N = mkN "dasymeter" ; -lin dasyure_N = mkN "dasyure" ; -lin data_N = mkN "data" "data"; -- from DictEng -lin database_N = mkN "database" ; -lin datable_A = compoundA (mkA "datable"); -- from DictEng -lin date_N = mkN "date" "dates"; -- from DictEng -lin date_V = mkV "date" "dates" "dated" "dated" "dating"; -- from DictEng -lin date_V2 = mkV2 (mkV "date" "dates" "dated" "dated" "dating"); -- from DictEng -lin dated_A = compoundA (mkA "dated"); -- from DictEng -lin dateless_A = compoundA (mkA "dateless"); -- from DictEng -lin dateline_N = mkN "dateline" "datelines"; -- from DictEng -lin dating_N = mkN "dating" ; -lin dative_A = compoundA (mkA "dative"); -- from DictEng -lin dative_N = mkN "dative" "datives"; -- from DictEng -lin datum_N = mkN "datum" "data" {- FIXME: guessed plural form -}; -- from DictEng -lin daub_N = mkN "daub" "daubs"; -- from DictEng -lin daub_V = mkV "daub" "daubs" "daubed" "daubed" "daubing"; -- from DictEng -lin daub_V2 = mkV2 (mkV "daub" "daubs" "daubed" "daubed" "daubing"); -- from DictEng -lin dauber_N = mkN "dauber" "daubers"; -- from DictEng -lin daughter_N = mkN "daughter" "daughters"; -- from DictEng -lin daughter_in_law_N = mkN "daughter - in - law" "daughters - in - law" {- FIXME: guessed plural form -}; -- from DictEng -lin daughter_in_law_N = mkN "daughter - in - law" "daughters - in - law" {- FIXME: guessed plural form -}; -- from DictEng -lin daughterly_A = compoundA (mkA "daughterly"); -- from DictEng -lin daunt_V2 = mkV2 (mkV "daunt" "daunts" "daunted" "daunted" "daunting"); -- from DictEng -lin daunting_A = mkA "daunting" ; -lin dauntingly_Adv = mkAdv "dauntingly" ; -lin dauntless_A = compoundA (mkA "dauntless"); -- from DictEng -lin dauntlessness_N = mkN "dauntlessness" ; -lin dauphin_N = mkN "dauphin" "dauphins"; -- from DictEng -lin davallia_N = mkN "davallia" ; -lin davenport_N = mkN "davenport" "davenports"; -- from DictEng -lin davit_N = mkN "davit" "davits"; -- from DictEng -lin daw_N = mkN "daw" "daws"; -- from DictEng -lin dawdle_V = mkV "dawdle" "dawdles" "dawdled" "dawdled" "dawdling"; -- from DictEng -lin dawdle_V2 = mkV2 (mkV "dawdle" "dawdles" "dawdled" "dawdled" "dawdling"); -- from DictEng -lin dawdler_N = mkN "dawdler" "dawdlers"; -- from DictEng -lin dawn_N = mkN "dawn" "dawns"; -- from DictEng -lin dawn_V = mkV "dawn" "dawns" "dawned" "dawned" "dawning"; -- from DictEng -lin day_N = mkN "day" "days"; -- from DictEng -lin day_old_A = compoundA (mkA "day old") ; -lin day_boarder_N = mkN "day - boarder" "day - boarders"; -- from DictEng -lin day_by_day_Adv = mkAdv "day by day" ; -lin day_in_and_day_out_Adv = mkAdv "day in and day out" ; -lin day_in_day_out_Adv = mkAdv "day in day out" ; -lin day_labourer_N = mkN "day - labourer" "day - labourers"; -- from DictEng -lin day_return_N = mkN "day - return" "day - returns"; -- from DictEng -lin day_school_N = mkN "day - school" "day - schools"; -- from DictEng -lin daybed_N = mkN "daybed" ; -lin daybook_N = mkN "daybook" "daybooks"; -- from DictEng -lin dayboy_N = mkN "dayboy" "dayboys"; -- from DictEng -lin daybreak_N = mkN "daybreak" "daybreaks"; -- from DictEng -lin daycare_N = mkN "daycare" ; -lin daydream_N = mkN "daydream" "daydreams"; -- from DictEng -lin daydream_V = mkV "daydream" "daydreams" "daydreamed" "daydreamed" "daydreaming"; -- from DictEng -lin daydreamer_N = mkN "daydreamer" ; -lin daygirl_N = mkN "daygirl" "daygirls"; -- from DictEng -lin daylight_N = mkN "daylight" ; -- from DictEng -lin daylight_saving_A = compoundA (mkA "daylight - saving"); -- from DictEng -lin daylight_saving_N = mkN "daylight - saving" ; -- from DictEng -lin daylong_A = compoundA (mkA "daylong"); -- from DictEng -lin daylong_Adv = mkAdv "daylong"; -- from DictEng -lin days_N = mkN "days" ; -lin dayspring_N = mkN "dayspring" "daysprings"; -- from DictEng -lin daytime_N = mkN "daytime" "daytimes"; -- from DictEng -lin daze_N = mkN "daze" "dazes"; -- from DictEng -lin daze_V2 = mkV2 (mkV "daze" "dazes" "dazed" "dazed" "dazing"); -- from DictEng -lin dazed_A = mkA "dazed" ; -lin dazedly_Adv = mkAdv "dazedly"; -- from DictEng -lin dazzle_N = mkN "dazzle" ; -- from DictEng -lin dazzle_V2 = mkV2 (mkV "dazzle" "dazzles" "dazzled" "dazzled" "dazzling"); -- from DictEng -lin dazzled_A = mkA "dazzled" ; -lin dazzling_A = mkA "dazzling" ; -lin dazzlingly_Adv = mkAdv "dazzlingly" ; -lin ddt_N = mkN "ddt" ; -- from DictEng -lin de_escalation_N = mkN "de - escalation" "de - escalations"; -- from DictEng -lin de_iodinase_N = mkN "de iodinase" ; -lin de_iodinating_A = compoundA (mkA "de iodinating") ; -lin de_iodination_N = mkN "de iodination" ; -lin devries_N = mkN "deVries" ; -lin de_gaulle_PN = mkPN "de Gaulle" ; -lin de_kooning_PN = mkPN "de Kooning" ; -lin de_mille_PN = mkPN "de Mille" ; -lin de_saussure_PN = mkPN "de Saussure" ; -lin de_valera_PN = mkPN "de Valera" ; -lin de_emphasize_V2 = mkV2 (mkV "de - emphasize"); -- from DictEng -lin de_escalate_V2 = mkV2 (mkV "de - escalate" "de - escalates" "de - escalated" "de - escalated" "de - escalating"); -- from DictEng -lin de_escalation_N = mkN "de - escalation" "de - escalations"; -- from DictEng -lin de_facto_A = compoundA (mkA "de facto"); -- from DictEng -lin de_facto_Adv = mkAdv "de facto"; -- from DictEng -lin de_ice_V2 = mkV2 (mkV "de - ice" "de - ices" "de - iced" "de - iced" "de - icing"); -- from DictEng -lin de_jure_A = compoundA (mkA "de jure"); -- from DictEng -lin de_jure_Adv = mkAdv "de jure"; -- from DictEng -lin de_la_mare_PN = mkPN "de la Mare" ; -lin de_luxe_A = compoundA (mkA "de luxe"); -- from DictEng -lin de_novo_Adv = mkAdv "de novo" ; -lin de_rigeur_A = compoundA (mkA "de rigeur"); -- from DictEng -lin de_rigueur_A = compoundA (mkA "de rigueur") ; -lin de_trop_A = compoundA (mkA "de trop"); -- from DictEng -lin deaccent_V2 = mkV2 (mkV "deaccent") ; -lin deacon_N = mkN "deacon" "deacons"; -- from DictEng -lin deaconess_N = mkN "deaconess" "deaconesses"; -- from DictEng -lin deactivate_V2 = mkV2 (mkV "deactivate"); -- from DictEng -lin deactivation_N = mkN "deactivation" ; -lin dead_A = compoundA (mkA "dead"); -- from DictEng -lin dead_Adv = mkAdv "dead"; -- from DictEng -lin dead_N = mkN "dead" ; -lin dead_end_A = compoundA (mkA "dead end") ; -lin dead_man's_fingers_N = mkN "dead man's fingers" ; -lin dead_on_A = compoundA (mkA "dead on") ; -lin dead_ahead_Adv = mkAdv "dead ahead" ; -lin deaden_V2 = mkV2 (mkV "deaden" "deadens" "deadened" "deadened" "deadening"); -- from DictEng -lin deadened_A = mkA "deadened" ; -lin deadeye_N = mkN "deadeye" ; -lin deadhead_N = mkN "deadhead" ; -lin deadlight_N = mkN "deadlight" ; -lin deadline_N = mkN "deadline" "deadlines"; -- from DictEng -lin deadliness_N = mkN "deadliness" ; -lin deadlock_N = mkN "deadlock" "deadlocks"; -- from DictEng -lin deadlock_V = mkV "deadlock"; -- from DictEng -lin deadlocked_A = compoundA (mkA "deadlocked"); -- from DictEng -lin deadly_A = mkA "deadly" "deadlier"; -- from DictEng -lin deadly_Adv = mkAdv "deadly" ; -lin deadness_N = mkN "deadness" ; -lin deadpan_A = compoundA (mkA "deadpan"); -- from DictEng -lin deadpan_Adv = mkAdv "deadpan" ; -lin deadwood_N = mkN "deadwood" ; -lin deaf_A = mkA "deaf" "deafer"; -- from DictEng -lin deaf_N = mkN "deaf" ; -lin deaf_and_dumb_A = compoundA (mkA "deaf and dumb") ; -lin deaf_mutism_N = mkN "deaf mutism" ; -lin deaf_aid_N = mkN "deaf - aid" "deaf - aids"; -- from DictEng -lin deaf_mute_N = mkN "deaf mute" "deaf mutes"; -- from DictEng -lin deafen_V2 = mkV2 (mkV "deafen" "deafens" "deafened" "deafened" "deafening"); -- from DictEng -lin deafened_A = mkA "deafened" ; -lin deafening_A = mkA "deafening" ; -lin deafness_N = mkN "deafness" ; -- from DictEng -lin deal_Adv = mkAdv "deal"; -- from DictEng -lin deal_N = mkN "deal" "deals"; -- from DictEng -lin deal_V = IrregEng.deal_V; -- from DictEng -lin deal_V2 = mkV2 (IrregEng.deal_V); -- from DictEng -lin dealer_N = mkN "dealer" "dealers"; -- from DictEng -lin dealfish_N = mkN "dealfish" ; -lin dealignment_N = mkN "dealignment" ; -lin dealing_N = mkN "dealing" "dealings"; -- from DictEng -lin dealings_N = mkN "dealings" ; -lin deamination_N = mkN "deamination" ; -lin dean_N = mkN "dean" "deans"; -- from DictEng -lin deanery_N = mkN "deanery" "deaneries"; -- from DictEng -lin deanship_N = mkN "deanship" ; -lin dear_A = mkA "dear" "dearer"; -- from DictEng -lin dear_Adv = mkAdv "dear"; -- from DictEng -lin dear_N = mkN "dear" "dears"; -- from DictEng -lin dearest_N = mkN "dearest" "dearests"; -- from DictEng -lin dearie_N = mkN "dearie" "dearies"; -- from DictEng -lin dearly_Adv = mkAdv "dearly" ; -lin dearly_won_A = compoundA (mkA "dearly won") ; -lin dearness_N = mkN "dearness" ; -- from DictEng -lin dearth_N = mkN "dearth" "dearths"; -- from DictEng -lin deary_N = mkN "deary" "dearies"; -- from DictEng -lin death_N = mkN "death" "deaths"; -- from DictEng -lin death_roll_N = mkN "death - roll" "death - rolls"; -- from DictEng -lin death_mask_N = mkN "death - mask" "death - masks"; -- from DictEng -lin death_rate_N = mkN "death - rate" "death - rates"; -- from DictEng -lin death_roll_N = mkN "death - roll" "death - rolls"; -- from DictEng -lin death_warrant_N = mkN "death - warrant" "death - warrants"; -- from DictEng -lin deathbed_N = mkN "deathbed" "deathbeds"; -- from DictEng -lin deathblow_N = mkN "deathblow" "deathblows"; -- from DictEng -lin deathless_A = compoundA (mkA "deathless"); -- from DictEng -lin deathlike_A = compoundA (mkA "deathlike"); -- from DictEng -lin deathly_A = compoundA (mkA "deathly"); -- from DictEng -lin deathly_Adv = mkAdv "deathly"; -- from DictEng -lin deathrate_N = mkN "deathrate" ; -lin deathtrap_N = mkN "deathtrap" "deathtraps"; -- from DictEng -lin deb_N = mkN "deb" "debs"; -- from DictEng -lin debacle_N = mkN "débâcle" "débâcles"; -- from DictEng -lin debag_V2 = mkV2 (mkV "debag" "debags" "debagged" "debagged" "debagging"); -- from DictEng -lin debar_V2 = mkV2 (mkV "debar" "debars" "debarred" "debarred" "debarring"); -- from DictEng -lin debark_V = mkV "debark" "debarks" "debarked" "debarked" "debarking"; -- from DictEng -lin debark_V2 = mkV2 (mkV "debark" "debarks" "debarked" "debarked" "debarking"); -- from DictEng -lin debarkation_N = mkN "debarkation" "debarkations"; -- from DictEng -lin debarment_N = mkN "debarment" ; -lin debase_V2 = mkV2 (mkV "debase" "debases" "debased" "debased" "debasing"); -- from DictEng -lin debased_A = mkA "debased" ; -lin debasement_N = mkN "debasement" "debasements"; -- from DictEng -lin debaser_N = mkN "debaser" ; -lin debasing_A = mkA "debasing" ; -lin debatable_A = compoundA (mkA "debatable"); -- from DictEng -lin debate_N = mkN "debate" "debates"; -- from DictEng -lin debate_V = mkV "debate" "debates" "debated" "debated" "debating"; -- from DictEng -lin debate_V2 = mkV2 (mkV "debate" "debates" "debated" "debated" "debating"); -- from DictEng -lin debater_N = mkN "debater" "debaters"; -- from DictEng -lin debauch_N = mkN "debauch" "debauches"; -- from DictEng -lin debauch_V2 = mkV2 (mkV "debauch" "debauches" "debauched" "debauched" "debauching"); -- from DictEng -lin debauched_A = mkA "debauched" ; -lin debauchee_N = mkN "debauchee" "debauchees"; -- from DictEng -lin debauchery_N = mkN "debauchery" "debaucheries"; -- from DictEng -lin debenture_N = mkN "debenture" "debentures"; -- from DictEng -lin debilitate_V2 = mkV2 (mkV "debilitate" "debilitates" "debilitated" "debilitated" "debilitating"); -- from DictEng -lin debilitating_A = mkA "debilitating" ; -lin debilitation_N = mkN "debilitation" ; -lin debilitative_A = mkA "debilitative" ; -lin debility_N = mkN "debility" ; -- from DictEng -lin debit_N = mkN "debit" "debits"; -- from DictEng -lin debit_V2 = mkV2 (mkV "debit" "debits" "debited" "debited" "debiting"); -- from DictEng -lin debit_side_N = mkN "debit - side" "debit - sides"; -- from DictEng -lin debonair_A = compoundA (mkA "debonair"); -- from DictEng -lin debone_V2 = mkV2 (mkV "debone") ; -lin debouch_V = mkV "debouch" "debouches" "debouched" "debouched" "debouching"; -- from DictEng -lin debouch_V2 = mkV2 (mkV "debouch" "debouches" "debouched" "debouched" "debouching"); -- from DictEng -lin debowel_V2 = mkV2 (mkV "debowel") ; -lin debridement_N = mkN "debridement" ; -lin debrief_V2 = mkV2 (mkV "debrief" "debriefs" "debriefed" "debriefed" "debriefing"); -- from DictEng -lin debriefing_N = mkN "debriefing" ; -lin debris_N = mkN "debris" ; -lin debris_1_N = mkN "debris" ; -- from DictEng -lin debris_2_N = mkN "débris" ; -- from DictEng -lin debt_N = mkN "debt" "debts"; -- from DictEng -lin debtor_N = mkN "debtor" "debtors"; -- from DictEng -lin debug_V2 = mkV2 (mkV "debug" "debugs" "debugged" "debugged" "debugging"); -- from DictEng -lin debugger_N = mkN "debugger" ; -lin debunk_V2 = mkV2 (mkV "debunk" "debunks" "debunked" "debunked" "debunking"); -- from DictEng -lin debur_V2 = mkV2 (mkV "debur") ; -lin debut_N = mkN "debut" ; -lin debut_V2 = mkV2 (mkV "debut"); -- from DictEng -lin debut_1_N = mkN "debut" "debuts"; -- from DictEng -lin debut_2_N = mkN "début" "débuts"; -- from DictEng -lin debutante_N = mkN "debutante" ; -lin debutante_1_N = mkN "debutante" "debutantes"; -- from DictEng -lin debutante_2_N = mkN "débutante" "débutantes"; -- from DictEng -lin decade_N = mkN "decade" "decades"; -- from DictEng -lin decadence_N = mkN "decadence" ; -- from DictEng -lin decadent_A = compoundA (mkA "decadent"); -- from DictEng -lin decadent_N = mkN "decadent" "decadents"; -- from DictEng -lin decagon_N = mkN "decagon" ; -lin decahedron_N = mkN "decahedron" ; -lin decal_N = mkN "decal" ; -lin decalcification_N = mkN "decalcification" ; -lin decalcomania_N = mkN "decalcomania" ; -lin decalescence_N = mkN "decalescence" ; -lin decalescent_A = mkA "decalescent" ; -lin decalogue_N = mkN "decalogue" "decalogues"; -- from DictEng -lin decameter_N = mkN "decameter" ; -lin decamp_V = mkV "decamp" "decamps" "decamped" "decamped" "decamping"; -- from DictEng -lin decampment_N = mkN "decampment" ; -lin decant_V2 = mkV2 (mkV "decant" "decants" "decanted" "decanted" "decanting"); -- from DictEng -lin decantation_N = mkN "decantation" ; -lin decanter_N = mkN "decanter" "decanters"; -- from DictEng -lin decapitate_V2 = mkV2 (mkV "decapitate" "decapitates" "decapitated" "decapitated" "decapitating"); -- from DictEng -lin decapitation_N = mkN "decapitation" "decapitations"; -- from DictEng -lin decapod_N = mkN "decapod" ; -lin decarbonize_V2 = mkV2 (mkV "decarbonize" "decarbonizes" "decarbonized" "decarbonized" "decarbonizing"); -- from DictEng -lin decarboxylase_N = mkN "decarboxylase" ; -lin decarboxylation_N = mkN "decarboxylation" ; -lin decasyllabic_A = compoundA (mkA "decasyllabic"); -- from DictEng -lin decasyllable_N = mkN "decasyllable" "decasyllables"; -- from DictEng -lin decathlon_N = mkN "decathlon" ; -lin decay_N = mkN "decay" ; -- from DictEng -lin decay_V = mkV "decay" "decays" "decayed" "decayed" "decaying"; -- from DictEng -lin decayable_A = mkA "decayable" ; -lin decayed_A = mkA "decayed" ; -lin decease_N = mkN "decease" ; -- from DictEng -lin decease_V = mkV "decease" "deceases" "deceased" "deceased" "deceasing"; -- from DictEng -lin deceit_N = mkN "deceit" "deceits"; -- from DictEng -lin deceitful_A = compoundA (mkA "deceitful"); -- from DictEng -lin deceitfulness_N = mkN "deceitfulness" ; -- from DictEng -lin deceive_V2 = mkV2 (mkV "deceive" "deceives" "deceived" "deceived" "deceiving"); -- from DictEng -lin deceiver_N = mkN "deceiver" "deceivers"; -- from DictEng -lin deceivingly_Adv = mkAdv "deceivingly"; -- from DictEng -lin decelerate_V = mkV "decelerate" "decelerates" "decelerated" "decelerated" "decelerating"; -- from DictEng -lin decelerate_V2 = mkV2 (mkV "decelerate" "decelerates" "decelerated" "decelerated" "decelerating"); -- from DictEng -lin deceleration_N = mkN "deceleration" ; -lin december_N = mkN "december" "decembers"; -- from DictEng -lin decency_N = mkN "decency" "decencies"; -- from DictEng -lin decent_A = compoundA (mkA "decent"); -- from DictEng -lin decently_Adv = mkAdv "decently" ; -lin decentralization_N = mkN "decentralization" ; -- from DictEng -lin decentralize_V2 = mkV2 (mkV "decentralize" "decentralizes" "decentralized" "decentralized" "decentralizing"); -- from DictEng -lin decentralized_A = mkA "decentralized" ; -lin decentralizing_A = mkA "decentralizing" ; -lin deception_N = mkN "deception" "deceptions"; -- from DictEng -lin deceptive_A = compoundA (mkA "deceptive"); -- from DictEng -lin deceptively_Adv = mkAdv "deceptively" ; -lin deceptiveness_N = mkN "deceptiveness" ; -lin decibel_N = mkN "decibel" "decibels"; -- from DictEng -lin decide_V = mkV "decide" "decides" "decided" "decided" "deciding"; -- from DictEng -lin decide_V2 = mkV2 (mkV "decide" "decides" "decided" "decided" "deciding"); -- from DictEng -lin decide_VS = mkVS (mkV "decide" "decides" "decided" "decided" "deciding"); -- from DictEng -lin decide_VV = mkVV (mkV "decide" "decides" "decided" "decided" "deciding"); -- from DictEng -lin decided_A = compoundA (mkA "decided"); -- from DictEng -lin decidedly_Adv = mkAdv "decidedly" ; -lin deciding_A = mkA "deciding" ; -lin decidua_N = mkN "decidua" ; -lin deciduous_A = compoundA (mkA "deciduous"); -- from DictEng -lin decigram_N = mkN "decigram" ; -lin decile_N = mkN "decile" ; -lin deciliter_N = mkN "deciliter" ; -lin decimal_A = compoundA (mkA "decimal"); -- from DictEng -lin decimal_N = mkN "decimal" ; -lin decimalization_N = mkN "decimalization" ; -- from DictEng -lin decimalize_V2 = mkV2 (mkV "decimalize" "decimalizes" "decimalized" "decimalized" "decimalizing"); -- from DictEng -lin decimate_V2 = mkV2 (mkV "decimate" "decimates" "decimated" "decimated" "decimating"); -- from DictEng -lin decimation_N = mkN "decimation" ; -lin decimeter_N = mkN "decimeter" ; -lin decipher_V2 = mkV2 (mkV "decipher" "deciphers" "deciphered" "deciphered" "deciphering"); -- from DictEng -lin decipherable_A = compoundA (mkA "decipherable"); -- from DictEng -lin deciphered_A = mkA "deciphered" ; -lin decipherer_N = mkN "decipherer" ; -lin decision_N = mkN "decision" "decisions"; -- from DictEng -lin decisive_A = compoundA (mkA "decisive"); -- from DictEng -lin decisively_Adv = mkAdv "decisively" ; -lin decisiveness_N = mkN "decisiveness" ; -lin deck_N = mkN "deck" "decks"; -- from DictEng -lin deck_V2 = mkV2 (mkV "deck" "decks" "decked" "decked" "decking"); -- from DictEng -lin deck_house_N = mkN "deck house" ; -lin decker_N = mkN "decker" "deckers"; -- from DictEng -lin deckhand_N = mkN "deckhand" ; -lin deckle_N = mkN "deckle" ; -lin deckle_edged_A = compoundA (mkA "deckle - edged"); -- from DictEng -lin deckled_A = mkA "deckled" ; -lin declaim_V = mkV "declaim" "declaims" "declaimed" "declaimed" "declaiming"; -- from DictEng -lin declaim_V2 = mkV2 (mkV "declaim" "declaims" "declaimed" "declaimed" "declaiming"); -- from DictEng -lin declamation_N = mkN "declamation" "declamations"; -- from DictEng -lin declamatory_A = compoundA (mkA "declamatory"); -- from DictEng -lin declarable_A = compoundA (mkA "declarable"); -- from DictEng -lin declaration_N = mkN "declaration" "declarations"; -- from DictEng -lin declarative_A = mkA "declarative" ; -lin declare_V = mkV "declare" "declares" "declared" "declared" "declaring"; -- from DictEng -lin declare_V2 = mkV2 (mkV "declare" "declares" "declared" "declared" "declaring"); -- from DictEng -lin declare_V2V = mkV2V (mkV "declare" "declares" "declared" "declared" "declaring") noPrep to_Prep ; -- from DictEng -lin declare_VS = mkVS (mkV "declare" "declares" "declared" "declared" "declaring"); -- from DictEng -lin declared_A = mkA "declared" ; -lin declassification_N = mkN "declassification" "declassifications"; -- from DictEng -lin declassified_A = mkA "declassified" ; -lin declassify_V2 = mkV2 (mkV "declassify" "declassifies" "declassified" "declassified" "declassifying"); -- from DictEng -lin declaw_V2 = mkV2 (mkV "declaw") ; -lin declension_N = mkN "declension" "declensions"; -- from DictEng -lin declination_N = mkN "declination" "declinations"; -- from DictEng -lin decline_N = mkN "decline" "declines"; -- from DictEng -lin decline_V = mkV "decline" "declines" "declined" "declined" "declining"; -- from DictEng -lin decline_V2 = mkV2 (mkV "decline" "declines" "declined" "declined" "declining"); -- from DictEng -lin decline_VS = mkVS (mkV "decline" "declines" "declined" "declined" "declining"); -- from DictEng -lin decline_VV = mkVV (mkV "decline" "declines" "declined" "declined" "declining"); -- from DictEng -lin declinometer_N = mkN "declinometer" ; -lin declivitous_A = mkA "declivitous" ; -lin declivity_N = mkN "declivity" "declivities"; -- from DictEng -lin declutch_V = mkV "declutch" "declutches" "declutched" "declutched" "declutching"; -- from DictEng -lin deco_N = mkN "deco" ; -lin decoction_N = mkN "decoction" ; -lin decode_V2 = mkV2 (mkV "decode" "decodes" "decoded" "decoded" "decoding"); -- from DictEng -lin decoder_N = mkN "decoder" "decoders"; -- from DictEng -lin decoding_N = mkN "decoding" ; -lin decoke_V2 = mkV2 (mkV "decoke" "decokes" "decoked" "decoked" "decoking"); -- from DictEng -lin decolletage_N = mkN "decolletage" ; -lin decollete_A = compoundA (mkA "décolleté"); -- from DictEng -lin decolonization_N = mkN "decolonization" ; -- from DictEng -lin decolonize_V2 = mkV2 (mkV "decolonize" "decolonizes" "decolonized" "decolonized" "decolonizing"); -- from DictEng -lin decompose_V = mkV "decompose" "decomposes" "decomposed" "decomposed" "decomposing"; -- from DictEng -lin decompose_V2 = mkV2 (mkV "decompose" "decomposes" "decomposed" "decomposed" "decomposing"); -- from DictEng -lin decomposition_N = mkN "decomposition" "decompositions"; -- from DictEng -lin decompositional_A = mkA "decompositional" ; -lin decompound_A = mkA "decompound" ; -lin decompress_V2 = mkV2 (mkV "decompress" "decompresses" "decompressed" "decompressed" "decompressing"); -- from DictEng -lin decompression_N = mkN "decompression" "decompressions"; -- from DictEng -lin decongestant_N = mkN "decongestant" ; -lin deconsecrated_A = mkA "deconsecrated" ; -lin deconstruction_N = mkN "deconstruction" ; -lin deconstructionist_A = mkA "deconstructionist" ; -lin deconstructivism_N = mkN "deconstructivism" ; -lin decontaminate_V2 = mkV2 (mkV "decontaminate" "decontaminates" "decontaminated" "decontaminated" "decontaminating"); -- from DictEng -lin decontamination_N = mkN "decontamination" ; -- from DictEng -lin decontrol_V2 = mkV2 (mkV "decontrol" "decontrols" "decontrolled" "decontrolled" "decontrolling"); -- from DictEng -lin decor_N = mkN "décor"; -- from DictEng -lin decorate_V2 = mkV2 (mkV "decorate" "decorates" "decorated" "decorated" "decorating"); -- from DictEng -lin decoration_N = mkN "decoration" "decorations"; -- from DictEng -lin decorative_A = compoundA (mkA "decorative"); -- from DictEng -lin decoratively_Adv = mkAdv "decoratively" ; -lin decorativeness_N = mkN "decorativeness" ; -lin decorator_N = mkN "decorator" "decorators"; -- from DictEng -lin decorous_A = compoundA (mkA "decorous"); -- from DictEng -lin decorously_Adv = mkAdv "decorously" ; -lin decortication_N = mkN "decortication" ; -lin decorum_N = mkN "decorum" ; -- from DictEng -lin decoupage_N = mkN "decoupage" ; -lin decoy_N = mkN "decoy" "decoys"; -- from DictEng -lin decoy_V2 = mkV2 (mkV "decoy" "decoys" "decoyed" "decoyed" "decoying"); -- from DictEng -lin decrease_N = mkN "decrease" "decreases"; -- from DictEng -lin decrease_V = mkV "decrease" "decreases" "decreased" "decreased" "decreasing"; -- from DictEng -lin decrease_V2 = mkV2 (mkV "decrease" "decreases" "decreased" "decreased" "decreasing"); -- from DictEng -lin decreased_A = mkA "decreased" ; -lin decreasing_A = mkA "decreasing" ; -lin decreasing_monotonic_A = compoundA (mkA "decreasing monotonic") ; -lin decree_N = mkN "decree" "decrees"; -- from DictEng -lin decree_V2 = mkV2 (mkV "decree" "decrees" "decreed" "decreed" "decreeing"); -- from DictEng -lin decree_nisi_N = mkN "decree nisi" "IRREG"; -- from DictEng -lin decrepit_A = compoundA (mkA "decrepit"); -- from DictEng -lin decrepitation_N = mkN "decrepitation" ; -lin decrepitude_N = mkN "decrepitude" ; -- from DictEng -lin decrescendo_A = mkA "decrescendo" ; -lin decrescendo_N = mkN "decrescendo" ; -lin decribe_V2 = mkV2 (mkV "decribe"); -- from DictEng -lin decriminalization_N = mkN "decriminalization" ; -lin decry_V2 = mkV2 (mkV "decry" "decries" "decried" "decried" "decrying"); -- from DictEng -lin decubitus_N = mkN "decubitus" ; -lin decumary_N = mkN "decumary" ; -lin decurved_A = mkA "decurved" ; -lin decussate_A = mkA "decussate" ; -lin dedicate_V2 = mkV2 (mkV "dedicate" "dedicates" "dedicated" "dedicated" "dedicating"); -- from DictEng -lin dedicated_A = mkA "dedicated" ; -lin dedication_N = mkN "dedication" "dedications"; -- from DictEng -lin dedifferentiated_A = mkA "dedifferentiated" ; -lin dedifferentiation_N = mkN "dedifferentiation" ; -lin deduce_V2 = mkV2 (mkV "deduce" "deduces" "deduced" "deduced" "deducing"); -- from DictEng -lin deducible_A = mkA "deducible" ; -lin deduct_V2 = mkV2 (mkV "deduct" "deducts" "deducted" "deducted" "deducting"); -- from DictEng -lin deductible_A = compoundA (mkA "deductible"); -- from DictEng -lin deductible_N = mkN "deductible" ; -lin deduction_N = mkN "deduction" "deductions"; -- from DictEng -lin deductive_A = compoundA (mkA "deductive"); -- from DictEng -lin deed_N = mkN "deed" "deeds"; -- from DictEng -lin deed_box_N = mkN "deed - box" "deed - boxes"; -- from DictEng -lin deedpoll_N = mkN "deedpoll" "deedpolls"; -- from DictEng -lin deem_V2 = mkV2 (mkV "deem" "deems" "deemed" "deemed" "deeming"); -- from DictEng -lin deem_VS = mkVS (mkV "deem"); -- from DictEng -lin deep_A = mkA "deep" "deeper"; -- from DictEng -lin deep_Adv = mkAdv "deep"; -- from DictEng -lin deep_N = mkN "deep" "deeps"; -- from DictEng -lin deep_chested_A = compoundA (mkA "deep chested") ; -lin deep_eyed_A = compoundA (mkA "deep eyed") ; -lin deep_freeze_N = mkN "deep - freeze" "deep - freezes"; -- from DictEng -lin deep_laid_A = compoundA (mkA "deep - laid"); -- from DictEng -lin deep_lobed_A = compoundA (mkA "deep lobed") ; -lin deep_mined_A = compoundA (mkA "deep - mined"); -- from DictEng -lin deep_pink_A = compoundA (mkA "deep pink") ; -lin deep_rooted_A = compoundA (mkA "deep - rooted"); -- from DictEng -lin deep_sea_A = compoundA (mkA "deep - sea"); -- from DictEng -lin deep_set_A = compoundA (mkA "deep set") ; -lin deep_water_A = compoundA (mkA "deep - water"); -- from DictEng -lin deep_yellow_A = compoundA (mkA "deep yellow") ; -lin deep_freeze_N = mkN "deep - freeze" "deep - freezes"; -- from DictEng -lin deep_freeze_V2 = mkV2 (mkV "deep-" IrregEng.freeze_V); -- from DictEng -lin deep_laid_A = compoundA (mkA "deep - laid"); -- from DictEng -lin deep_mined_A = compoundA (mkA "deep - mined"); -- from DictEng -lin deep_rooted_A = compoundA (mkA "deep - rooted"); -- from DictEng -lin deep_sea_A = compoundA (mkA "deep - sea"); -- from DictEng -lin deep_seated_A = compoundA (mkA "deep - seated"); -- from DictEng -lin deep_water_A = compoundA (mkA "deep - water"); -- from DictEng -lin deepen_V = mkV "deepen" "deepens" "deepened" "deepened" "deepening"; -- from DictEng -lin deepen_V2 = mkV2 (mkV "deepen" "deepens" "deepened" "deepened" "deepening"); -- from DictEng -lin deepening_A = mkA "deepening" ; -lin deepening_N = mkN "deepening" ; -lin deeply_Adv = mkAdv "deeply" ; -lin deepness_N = mkN "deepness" ; -- from DictEng -lin deer_N = mkN "deer" "deer"; -- from DictEng -lin deerberry_N = mkN "deerberry" ; -lin deerskin_N = mkN "deerskin" "deerskins"; -- from DictEng -lin deerstalker_N = mkN "deerstalker" "deerstalkers"; -- from DictEng -lin deerstalking_N = mkN "deerstalking" ; -- from DictEng -lin deface_V2 = mkV2 (mkV "deface" "defaces" "defaced" "defaced" "defacing"); -- from DictEng -lin defacement_N = mkN "defacement" "defacements"; -- from DictEng -lin defalcation_N = mkN "defalcation" "defalcations"; -- from DictEng -lin defamation_N = mkN "defamation" ; -- from DictEng -lin defamatory_A = compoundA (mkA "defamatory"); -- from DictEng -lin defame_V2 = mkV2 (mkV "defame" "defames" "defamed" "defamed" "defaming"); -- from DictEng -lin defamer_N = mkN "defamer" ; -lin defang_V2 = mkV2 (mkV "defang") ; -lin defat_V2 = mkV2 (mkV "defat") ; -lin default_N = mkN "default" ; -- from DictEng -lin default_V = mkV "default" "defaults" "defaulted" "defaulted" "defaulting"; -- from DictEng -lin defaulter_N = mkN "defaulter" "defaulters"; -- from DictEng -lin defeasible_A = mkA "defeasible" ; -lin defeat_N = mkN "defeat" "defeats"; -- from DictEng -lin defeat_V2 = mkV2 (mkV "defeat" "defeats" "defeated" "defeated" "defeating"); -- from DictEng -lin defeated_A = mkA "defeated" ; -lin defeated_N = mkN "defeated" ; -lin defeather_V2 = mkV2 (mkV "defeather") ; -lin defeatism_N = mkN "defeatism" ; -- from DictEng -lin defeatist_N = mkN "defeatist" "defeatists"; -- from DictEng -lin defecate_V = mkV "defecate" "defecates" "defecated" "defecated" "defecating"; -- from DictEng -lin defecation_N = mkN "defecation" "defecations"; -- from DictEng -lin defecator_N = mkN "defecator" ; -lin defect_N = mkN "defect" "defects"; -- from DictEng -lin defect_V = mkV "defect" "defects" "defected" "defected" "defecting"; -- from DictEng -lin defection_N = mkN "defection" "defections"; -- from DictEng -lin defective_A = compoundA (mkA "defective"); -- from DictEng -lin defectively_Adv = mkAdv "defectively" ; -lin defectiveness_N = mkN "defectiveness" ; -- from DictEng -lin defector_N = mkN "defector" "defectors"; -- from DictEng -lin defence_N = mkN "defence" "defences"; -- from DictEng -lin defenceless_A = compoundA (mkA "defenceless"); -- from DictEng -lin defencelessness_N = mkN "defencelessness" ; -- from DictEng -lin defend_V = mkV "defend"; -- from DictEng -lin defend_V2 = mkV2 (mkV "defend" "defends" "defended" "defended" "defending"); -- from DictEng -lin defendable_A = mkA "defendable" ; -lin defendant_N = mkN "defendant" "defendants"; -- from DictEng -lin defender_N = mkN "defender" "defenders"; -- from DictEng -lin defending_A = mkA "defending" ; -lin defenestration_N = mkN "defenestration" ; -lin defense_N = mkN "defense" ; -lin defenseless_A = mkA "defenseless" ; -lin defenseless_Adv = mkAdv "defenseless" ; -lin defenselessness_N = mkN "defenselessness" ; -lin defensibility_N = mkN "defensibility" ; -lin defensible_A = compoundA (mkA "defensible"); -- from DictEng -lin defensive_A = compoundA (mkA "defensive"); -- from DictEng -lin defensive_N = mkN "defensive" "defensives"; -- from DictEng -lin defensively_Adv = mkAdv "defensively" ; -lin defensiveness_N = mkN "defensiveness" ; -lin defer_V = mkV "defer" "defers" "deferred" "deferred" "deferring"; -- from DictEng -lin defer_V2 = mkV2 (mkV "defer" "defers" "deferred" "deferred" "deferring"); -- from DictEng -lin deference_N = mkN "deference" ; -- from DictEng -lin deferent_A = mkA "deferent" ; -lin deferential_A = compoundA (mkA "deferential"); -- from DictEng -lin deferentially_Adv = mkAdv "deferentially" ; -lin deferment_N = mkN "deferment" "deferments"; -- from DictEng -lin deferral_N = mkN "deferral" ; -lin defervescence_N = mkN "defervescence" ; -lin defervescent_A = mkA "defervescent" ; -lin defiance_N = mkN "defiance" ; -- from DictEng -lin defiant_A = compoundA (mkA "defiant"); -- from DictEng -lin defibrillation_N = mkN "defibrillation" ; -lin defibrillator_N = mkN "defibrillator" ; -lin deficiency_N = mkN "deficiency" "deficiencies"; -- from DictEng -lin deficient_A = compoundA (mkA "deficient"); -- from DictEng -lin deficit_N = mkN "deficit" "deficits"; -- from DictEng -lin defilade_N = mkN "defilade" ; -lin defile_N = mkN "defile" "defiles"; -- from DictEng -lin defile_V = mkV "defile" "defiles" "defiled" "defiled" "defiling"; -- from DictEng -lin defile_V2 = mkV2 (mkV "defile" "defiles" "defiled" "defiled" "defiling"); -- from DictEng -lin defiled_A = mkA "defiled" ; -lin defilement_N = mkN "defilement" ; -- from DictEng -lin definable_A = compoundA (mkA "definable"); -- from DictEng -lin define_V = mkV "define"; -- from DictEng -lin define_V2 = mkV2 (mkV "define" "defines" "defined" "defined" "defining"); -- from DictEng -lin defined_A = mkA "defined" ; -lin definite_A = compoundA (mkA "definite"); -- from DictEng -lin definition_N = mkN "definition" "definitions"; -- from DictEng -lin definitive_A = compoundA (mkA "definitive"); -- from DictEng -lin deflagration_N = mkN "deflagration" ; -lin deflate_V2 = mkV2 (mkV "deflate" "deflates" "deflated" "deflated" "deflating"); -- from DictEng -lin deflation_N = mkN "deflation" ; -- from DictEng -lin deflationary_A = compoundA (mkA "deflationary"); -- from DictEng -lin deflator_N = mkN "deflator" ; -lin deflea_V2 = mkV2 (mkV "deflea") ; -lin deflect_V = mkV "deflect" "deflects" "deflected" "deflected" "deflecting"; -- from DictEng -lin deflect_V2 = mkV2 (mkV "deflect" "deflects" "deflected" "deflected" "deflecting"); -- from DictEng -lin deflection_N = mkN "deflection" "deflections"; -- from DictEng -lin deflective_A = mkA "deflective" ; -lin deflector_N = mkN "deflector" ; -lin deflesh_V2 = mkV2 (mkV "deflesh") ; -lin defloration_N = mkN "defloration" ; -lin deflower_V2 = mkV2 (mkV "deflower" "deflowers" "deflowered" "deflowered" "deflowering"); -- from DictEng -lin defoam_V2 = mkV2 (mkV "defoam") ; -lin defog_V2 = mkV2 (mkV "defog") ; -lin defoliant_N = mkN "defoliant" "defoliants"; -- from DictEng -lin defoliate_A = mkA "defoliate" ; -lin defoliate_V2 = mkV2 (mkV "defoliate" "defoliates" "defoliated" "defoliated" "defoliating"); -- from DictEng -lin defoliation_N = mkN "defoliation" "defoliations"; -- from DictEng -lin defoliator_N = mkN "defoliator" ; -lin deforest_V2 = mkV2 (mkV "deforest" "deforests" "deforested" "deforested" "deforesting"); -- from DictEng -lin deforestation_N = mkN "deforestation" ; -lin deform_V = mkV "deform" ; -lin deform_V2 = mkV2 (mkV "deform" "deforms" "deformed" "deformed" "deforming"); -- from DictEng -lin deformation_N = mkN "deformation" ; -lin deformational_A = mkA "deformational" ; -lin deformed_A = compoundA (mkA "deformed"); -- from DictEng -lin deformity_N = mkN "deformity" "deformities"; -- from DictEng -lin defraud_V2 = mkV2 (mkV "defraud" "defrauds" "defrauded" "defrauded" "defrauding"); -- from DictEng -lin defray_V2 = mkV2 (mkV "defray" "defrays" "defrayed" "defrayed" "defraying"); -- from DictEng -lin defrayal_N = mkN "defrayal" "defrayals"; -- from DictEng -lin defrayment_N = mkN "defrayment" "defrayments"; -- from DictEng -lin defrock_V2 = mkV2 (mkV "defrock" "defrocks" "defrocked" "defrocked" "defrocking"); -- from DictEng -lin defrost_V2 = mkV2 (mkV "defrost" "defrosts" "defrosted" "defrosted" "defrosting"); -- from DictEng -lin defroster_N = mkN "defroster" "defrosters"; -- from DictEng -lin deft_A = compoundA (mkA "deft"); -- from DictEng -lin deftly_Adv = mkAdv "deftly" ; -lin deftness_N = mkN "deftness" ; -- from DictEng -lin defunct_A = compoundA (mkA "defunct"); -- from DictEng -lin defuse_V2 = mkV2 (mkV "defuse" "defuses" "defused" "defused" "defusing"); -- from DictEng -lin defuzz_V2 = mkV2 (mkV "defuzz") ; -lin defy_V2 = mkV2 (mkV "defy" "defies" "defied" "defied" "defying"); -- from DictEng -lin defy_V2V = mkV2V (mkV "defy") noPrep to_Prep ; -- from DictEng -lin degage_A = mkA "degage" ; -lin degas_V2 = mkV2 (mkV "degas") ; -lin degauss_V2 = mkV2 (mkV "degauss" "degausses" "degaussed" "degaussed" "degaussing"); -- from DictEng -lin degaussing_N = mkN "degaussing" ; -lin degeneracy_N = mkN "degeneracy" ; -- from DictEng -lin degenerate_A = compoundA (mkA "degenerate"); -- from DictEng -lin degenerate_N = mkN "degenerate" "degenerates"; -- from DictEng -lin degenerate_V = mkV "degenerate" "degenerates" "degenerated" "degenerated" "degenerating"; -- from DictEng -lin degeneration_N = mkN "degeneration" ; -- from DictEng -lin degenerative_A = mkA "degenerative" ; -lin degerm_V2 = mkV2 (mkV "degerm") ; -lin deglaze_V2 = mkV2 (mkV "deglaze") ; -lin degradation_N = mkN "degradation" "degradations"; -- from DictEng -lin degrade_V2 = mkV2 (mkV "degrade" "degrades" "degraded" "degraded" "degrading"); -- from DictEng -lin degrease_V2 = mkV2 (mkV "degrease") ; -lin degree_N = mkN "degree" "degrees"; -- from DictEng -lin degree_fahrenheit_PN = mkPN "degree Fahrenheit" ; -lin degressive_A = mkA "degressive" ; -lin degrit_V2 = mkV2 (mkV "degrit") ; -lin degum_V2 = mkV2 (mkV "degum") ; -lin degut_V2 = mkV2 (mkV "degut") ; -lin dehair_V2 = mkV2 (mkV "dehair") ; -lin dehead_V2 = mkV2 (mkV "dehead") ; -lin dehiscence_N = mkN "dehiscence" ; -lin dehiscent_A = mkA "dehiscent" ; -lin dehorn_V2 = mkV2 (mkV "dehorn" "dehorns" "dehorned" "dehorned" "dehorning"); -- from DictEng -lin dehull_V2 = mkV2 (mkV "dehull") ; -lin dehumanization_N = mkN "dehumanization" ; -lin dehumanize_V2 = mkV2 (mkV "dehumanize" "dehumanizes" "dehumanized" "dehumanized" "dehumanizing"); -- from DictEng -lin dehumanized_A = mkA "dehumanized" ; -lin dehusk_V2 = mkV2 (mkV "dehusk") ; -lin dehydrate_V2 = mkV2 (mkV "dehydrate" "dehydrates" "dehydrated" "dehydrated" "dehydrating"); -- from DictEng -lin dehydrated_A = mkA "dehydrated" ; -lin dehydration_N = mkN "dehydration" ; -lin deice_V2 = mkV2 (mkV "deice") ; -lin deictic_A = mkA "deictic" ; -lin deictic_N = mkN "deictic" ; -lin deific_A = mkA "deific" ; -lin deification_N = mkN "deification" ; -- from DictEng -lin deify_V2 = mkV2 (mkV "deify" "deifies" "deified" "deified" "deifying"); -- from DictEng -lin deign_V = mkV "deign" "deigns" "deigned" "deigned" "deigning"; -- from DictEng -lin deink_V2 = mkV2 (mkV "deink") ; -lin deinocheirus_N = mkN "deinocheirus" ; -lin deinonychus_N = mkN "deinonychus" ; -lin deipnosophist_N = mkN "deipnosophist" ; -lin deism_N = mkN "deism" ; -- from DictEng -lin deist_A = mkA "deist" ; -lin deist_N = mkN "deist" "deists"; -- from DictEng -lin deity_N = mkN "deity" "deities"; -- from DictEng -lin deixis_N = mkN "deixis" ; -lin deject_V2 = mkV2 (mkV "deject" "dejects" "dejected" "dejected" "dejecting"); -- from DictEng -lin dejected_A = mkA "dejected" ; -lin dejectedly_Adv = mkAdv "dejectedly"; -- from DictEng -lin dejection_N = mkN "dejection" ; -- from DictEng -lin dekagram_N = mkN "dekagram" ; -lin dekaliter_N = mkN "dekaliter" ; -lin dekko_N = mkN "dekko" "dekki" {- FIXME: guessed plural form -}; -- from DictEng -lin delavirdine_N = mkN "delavirdine" ; -lin delay_N = mkN "delay" "delays"; -- from DictEng -lin delay_V = mkV "delay" "delays" "delayed" "delayed" "delaying"; -- from DictEng -lin delay_V2 = mkV2 (mkV "delay" "delays" "delayed" "delayed" "delaying"); -- from DictEng -lin delay_VS = mkVS (mkV "delay" "delays" "delayed" "delayed" "delaying"); -- from DictEng -lin delayed_A = mkA "delayed" ; -lin delayed_action_A = compoundA (mkA "delayed - action"); -- from DictEng -lin delayed_action_N = mkN "delayed - action" ; -- from DictEng -lin delayer_N = mkN "delayer" ; -lin delectability_N = mkN "delectability" ; -lin delectable_A = compoundA (mkA "delectable"); -- from DictEng -lin delectation_N = mkN "delectation" ; -- from DictEng -lin delegacy_N = mkN "delegacy" "delegacies"; -- from DictEng -lin delegate_N = mkN "delegate" "delegates"; -- from DictEng -lin delegate_V2 = mkV2 (mkV "delegate" "delegates" "delegated" "delegated" "delegating"); -- from DictEng -lin delegating_N = mkN "delegating" ; -lin delegation_N = mkN "delegation" "delegations"; -- from DictEng -lin delete_V2 = mkV2 (mkV "delete" "deletes" "deleted" "deleted" "deleting"); -- from DictEng -lin deleterious_A = compoundA (mkA "deleterious"); -- from DictEng -lin deletion_N = mkN "deletion" "deletions"; -- from DictEng -lin delf_N = mkN "delf" ; -- from DictEng -lin delft_N = mkN "delft" ; -- from DictEng -lin deliberate_A = compoundA (mkA "deliberate"); -- from DictEng -lin deliberate_V = mkV "deliberate" "deliberates" "deliberated" "deliberated" "deliberating"; -- from DictEng -lin deliberate_V2 = mkV2 (mkV "deliberate" "deliberates" "deliberated" "deliberated" "deliberating"); -- from DictEng -lin deliberation_N = mkN "deliberation" "deliberations"; -- from DictEng -lin deliberative_A = compoundA (mkA "deliberative"); -- from DictEng -lin delible_A = mkA "delible" ; -lin delicacy_N = mkN "delicacy" "delicacies"; -- from DictEng -lin delicate_A = compoundA (mkA "delicate"); -- from DictEng -lin delicatessen_N = mkN "delicatessen" "delicatessens"; -- from DictEng -lin delicious_A = compoundA (mkA "delicious"); -- from DictEng -lin deliciously_Adv = mkAdv "deliciously" ; -lin delight_N = mkN "delight" "delights"; -- from DictEng -lin delight_V = mkV "delight" "delights" "delighted" "delighted" "delighting"; -- from DictEng -lin delight_V2 = mkV2 (mkV "delight" "delights" "delighted" "delighted" "delighting"); -- from DictEng -lin delight_VS = mkVS (mkV "delight" "delights" "delighted" "delighted" "delighting"); -- from DictEng -lin delighted_A = mkA "delighted" ; -lin delightedly_Adv = mkAdv "delightedly"; -- from DictEng -lin delightful_A = compoundA (mkA "delightful"); -- from DictEng -lin delightfully_Adv = mkAdv "delightfully" ; -lin delimit_V2 = mkV2 (mkV "delimit" "delimits" "delimited" "delimited" "delimiting"); -- from DictEng -lin delimitate_V2 = mkV2 (mkV "delimitate" "delimitates" "delimitated" "delimitated" "delimitating"); -- from DictEng -lin delimitation_N = mkN "delimitation" "delimitations"; -- from DictEng -lin delineate_V2 = mkV2 (mkV "delineate" "delineates" "delineated" "delineated" "delineating"); -- from DictEng -lin delineated_A = mkA "delineated" ; -lin delineation_N = mkN "delineation" "delineations"; -- from DictEng -lin delineative_A = mkA "delineative" ; -lin delinquency_N = mkN "delinquency" "delinquencies"; -- from DictEng -lin delinquent_A = compoundA (mkA "delinquent"); -- from DictEng -lin delinquent_N = mkN "delinquent" "delinquents"; -- from DictEng -lin delint_V2 = mkV2 (mkV "delint") ; -lin deliquescent_A = compoundA (mkA "deliquescent"); -- from DictEng -lin delirious_A = compoundA (mkA "delirious"); -- from DictEng -lin deliriously_Adv = mkAdv "deliriously" ; -lin delirium_N = mkN "delirium" ; -- from DictEng -lin delirium_tremens_N = mkN "delirium tremens" "IRREG"; -- from DictEng -lin deliver_V = mkV "deliver" "delivers" "delivered" "delivered" "delivering"; -- from DictEng -lin deliver_V2 = mkV2 (mkV "deliver" "delivers" "delivered" "delivered" "delivering"); -- from DictEng -lin deliverable_A = mkA "deliverable" ; -lin deliverable_N = mkN "deliverable" ; -lin deliverance_N = mkN "deliverance" "deliverances"; -- from DictEng -lin deliverer_N = mkN "deliverer" "deliverers"; -- from DictEng -lin delivery_N = mkN "delivery" "deliveries"; -- from DictEng -lin deliveryman_N = mkN "deliveryman" ; -lin dell_N = mkN "dell" "dells"; -- from DictEng -lin delouse_V2 = mkV2 (mkV "delouse" "delouses" "deloused" "deloused" "delousing"); -- from DictEng -lin delphic_A = compoundA (mkA "delphic"); -- from DictEng -lin delphinium_N = mkN "delphinium" "delphiniums"; -- from DictEng -lin delta_N = mkN "delta" "deltas"; -- from DictEng -lin deltoid_A = mkA "deltoid" ; -lin deltoid_N = mkN "deltoid" ; -lin delude_V2 = mkV2 (mkV "delude" "deludes" "deluded" "deluded" "deluding"); -- from DictEng -lin deluge_N = mkN "deluge" "deluges"; -- from DictEng -lin deluge_V2 = mkV2 (mkV "deluge" "deluges" "deluged" "deluged" "deluging"); -- from DictEng -lin delusion_N = mkN "delusion" "delusions"; -- from DictEng -lin delusional_A = mkA "delusional" ; -lin delusive_A = compoundA (mkA "delusive"); -- from DictEng -lin delusively_Adv = mkAdv "delusively" ; -lin deluster_V2 = mkV2 (mkV "deluster") ; -lin deluxe_A = mkA "deluxe" ; -lin delve_V = mkV "delve" "delves" "delved" "delved" "delving"; -- from DictEng -lin delve_V2 = mkV2 (mkV "delve" "delves" "delved" "delved" "delving"); -- from DictEng -lin demagnetization_N = mkN "demagnetization" ; -- from DictEng -lin demagnetize_V2 = mkV2 (mkV "demagnetize" "demagnetizes" "demagnetized" "demagnetized" "demagnetizing"); -- from DictEng -lin demagogic_A = compoundA (mkA "demagogic"); -- from DictEng -lin demagogue_N = mkN "demagogue" "demagogues"; -- from DictEng -lin demagoguery_N = mkN "demagoguery" ; -lin demagogy_N = mkN "demagogy" ; -- from DictEng -lin demand_N = mkN "demand" "demands"; -- from DictEng -lin demand_V2 = mkV2 (mkV "demand" "demands" "demanded" "demanded" "demanding"); -- from DictEng -lin demand_VS = mkVS (mkV "demand"); -- from DictEng -lin demander_N = mkN "demander" ; -lin demanding_A = mkA "demanding" ; -lin demandingly_Adv = mkAdv "demandingly" ; -lin demantoid_N = mkN "demantoid" ; -lin demarcate_V2 = mkV2 (mkV "demarcate" "demarcates" "demarcated" "demarcated" "demarcating"); -- from DictEng -lin demarcation_N = mkN "demarcation" ; -- from DictEng -lin demarche_N = mkN "démarche" "démarches"; -- from DictEng -lin demast_V2 = mkV2 (mkV "demast") ; -lin demean_V2 = mkV2 (mkV "demean" "demeans" "demeaned" "demeaned" "demeaning"); -- from DictEng -lin demeaning_A = mkA "demeaning" ; -lin demeanor_N = mkN "demeanor" ; -lin demeanour_N = mkN "demeanour" ; -- from DictEng -lin demented_A = compoundA (mkA "demented"); -- from DictEng -lin dementia_N = mkN "dementia" ; -lin demerara_N = mkN "demerara" ; -- from DictEng -lin demerit_N = mkN "demerit" "demerits"; -- from DictEng -lin demesne_N = mkN "demesne" "demesnes"; -- from DictEng -lin demiglace_N = mkN "demiglace" ; -lin demigod_N = mkN "demigod" "demigods"; -- from DictEng -lin demijohn_N = mkN "demijohn" "demijohns"; -- from DictEng -lin demilitarize_V2 = mkV2 (mkV "demilitarize" "demilitarizes" "demilitarized" "demilitarized" "demilitarizing"); -- from DictEng -lin demimondaine_N = mkN "demimondaine" "demimondaines"; -- from DictEng -lin demimonde_N = mkN "demimonde" "demimondes"; -- from DictEng -lin demineralization_N = mkN "demineralization" ; -lin demise_N = mkN "demise" "demises"; -- from DictEng -lin demist_V2 = mkV2 (mkV "demist" "demists" "demisted" "demisted" "demisting"); -- from DictEng -lin demister_N = mkN "demister" "demisters"; -- from DictEng -lin demitasse_N = mkN "demitasse" ; -lin demiurge_N = mkN "demiurge" ; -lin demo_N = mkN "demo" "demos"; -- from DictEng -lin demob_V2 = mkV2 (mkV "demob" "demobs" "demobbed" "demobbed" "demobbing"); -- from DictEng -lin demobilization_N = mkN "demobilization" ; -- from DictEng -lin demobilize_V2 = mkV2 (mkV "demobilize" "demobilizes" "demobilized" "demobilized" "demobilizing"); -- from DictEng -lin democracy_N = mkN "democracy" "democracies"; -- from DictEng -lin democrat_N = mkN "democrat" "democrats"; -- from DictEng -lin democratic_A = compoundA (mkA "democratic"); -- from DictEng -lin democratically_Adv = mkAdv "democratically"; -- from DictEng -lin democratization_N = mkN "democratization" ; -- from DictEng -lin democratize_V2 = mkV2 (mkV "democratize" "democratizes" "democratized" "democratized" "democratizing"); -- from DictEng -lin demode_A = compoundA (mkA "démodé"); -- from DictEng -lin demodulation_N = mkN "demodulation" ; -lin demographer_N = mkN "demographer" ; -lin demographic_A = compoundA (mkA "demographic"); -- from DictEng -lin demographic_N = mkN "demographic" ; -lin demography_N = mkN "demography" ; -- from DictEng -lin demolish_V2 = mkV2 (mkV "demolish" "demolishes" "demolished" "demolished" "demolishing"); -- from DictEng -lin demolished_A = mkA "demolished" ; -lin demolition_N = mkN "demolition" "demolitions"; -- from DictEng -lin demon_N = mkN "demon" "demons"; -- from DictEng -lin demon_ridden_A = compoundA (mkA "demon ridden") ; -lin demonetization_N = mkN "demonetization" "demonetizations"; -- from DictEng -lin demonetize_V2 = mkV2 (mkV "demonetize" "demonetizes" "demonetized" "demonetized" "demonetizing"); -- from DictEng -lin demoniac_A = compoundA (mkA "demoniac"); -- from DictEng -lin demoniac_N = mkN "demoniac" "demoniacs"; -- from DictEng -lin demoniacal_A = compoundA (mkA "demoniacal"); -- from DictEng -lin demoniacally_Adv = mkAdv "demoniacally" ; -lin demonic_A = compoundA (mkA "demonic"); -- from DictEng -lin demonization_N = mkN "demonization" ; -lin demonize_V2 = mkV2 (mkV "demonize"); -- from DictEng -lin demonstrability_N = mkN "demonstrability" ; -- from DictEng -lin demonstrable_A = compoundA (mkA "demonstrable"); -- from DictEng -lin demonstrably_Adv = mkAdv "demonstrably" ; -lin demonstrate_V = mkV "demonstrate" "demonstrates" "demonstrated" "demonstrated" "demonstrating"; -- from DictEng -lin demonstrate_V2 = mkV2 (mkV "demonstrate" "demonstrates" "demonstrated" "demonstrated" "demonstrating"); -- from DictEng -lin demonstrate_VS = mkVS (mkV "demonstrate" "demonstrates" "demonstrated" "demonstrated" "demonstrating"); -- from DictEng -lin demonstrated_A = mkA "demonstrated" ; -lin demonstration_N = mkN "demonstration" "demonstrations"; -- from DictEng -lin demonstrative_A = compoundA (mkA "demonstrative"); -- from DictEng -lin demonstrative_of_A = compoundA (mkA "demonstrative of") ; -lin demonstratively_Adv = mkAdv "demonstratively" ; -lin demonstrativeness_N = mkN "demonstrativeness" ; -lin demonstrator_N = mkN "demonstrator" "demonstrators"; -- from DictEng -lin demoralization_N = mkN "demoralization" ; -- from DictEng -lin demoralize_V2 = mkV2 (mkV "demoralize" "demoralizes" "demoralized" "demoralized" "demoralizing"); -- from DictEng -lin demoralized_A = mkA "demoralized" ; -lin demoralizing_A = mkA "demoralizing" ; -lin demote_V2 = mkV2 (mkV "demote" "demotes" "demoted" "demoted" "demoting"); -- from DictEng -lin demotic_A = compoundA (mkA "demotic"); -- from DictEng -lin demotion_N = mkN "demotion" "demotions"; -- from DictEng -lin demulcent_A = mkA "demulcent" ; -lin demulcent_N = mkN "demulcent" ; -lin demur_N = mkN "demur" ; -- from DictEng -lin demur_V = mkV "demur" "demurs" "demurred" "demurred" "demurring"; -- from DictEng -lin demur_VS = mkVS (mkV "demur" "demurs" "demurred" "demurred" "demurring"); -- from DictEng -lin demure_A = compoundA (mkA "demure"); -- from DictEng -lin demurely_Adv = mkAdv "demurely" ; -lin demureness_N = mkN "demureness" ; -- from DictEng -lin demurrage_N = mkN "demurrage" ; -lin demurrer_N = mkN "demurrer" ; -lin demyelination_N = mkN "demyelination" ; -lin demythologization_N = mkN "demythologization" ; -lin demythologized_A = mkA "demythologized" ; -lin den_N = mkN "den" "dens"; -- from DictEng -lin denary_A = compoundA (mkA "denary"); -- from DictEng -lin denationalization_N = mkN "denationalization" ; -- from DictEng -lin denationalize_V2 = mkV2 (mkV "denationalize" "denationalizes" "denationalized" "denationalized" "denationalizing"); -- from DictEng -lin denaturant_N = mkN "denaturant" ; -lin denatured_A = compoundA (mkA "denatured"); -- from DictEng -lin denazification_N = mkN "denazification" ; -lin dendrite_N = mkN "dendrite" ; -lin dendritic_A = mkA "dendritic" ; -lin dendrobium_N = mkN "dendrobium" ; -lin dengue_N = mkN "dengue" ; -lin deniable_A = compoundA (mkA "deniable"); -- from DictEng -lin denial_N = mkN "denial" "denials"; -- from DictEng -lin denier_N = mkN "denier" "denier"; -- from DictEng -lin denigrate_V2 = mkV2 (mkV "denigrate" "denigrates" "denigrated" "denigrated" "denigrating"); -- from DictEng -lin denigration_N = mkN "denigration" ; -- from DictEng -lin denim_N = mkN "denim" ; -- from DictEng -lin denizen_N = mkN "denizen" "denizens"; -- from DictEng -lin denominate_V2 = mkV2 (mkV "denominate" "denominates" "denominated" "denominated" "denominating"); -- from DictEng -lin denomination_N = mkN "denomination" "denominations"; -- from DictEng -lin denominational_A = compoundA (mkA "denominational"); -- from DictEng -lin denominationalism_N = mkN "denominationalism" ; -lin denominationally_Adv = mkAdv "denominationally" ; -lin denominator_N = mkN "denominator" "denominators"; -- from DictEng -lin denotative_A = mkA "denotative" ; -lin denotatum_N = mkN "denotatum" ; -lin denote_V2 = mkV2 (mkV "denote" "denotes" "denoted" "denoted" "denoting"); -- from DictEng -lin denouement_N = mkN "dénouement" "dénouements"; -- from DictEng -lin denounce_V2 = mkV2 (mkV "denounce" "denounces" "denounced" "denounced" "denouncing"); -- from DictEng -lin dense_A = mkA "dense" "denser"; -- from DictEng -lin densely_Adv = mkAdv "densely" ; -lin denseness_N = mkN "denseness" ; -- from DictEng -lin densimeter_N = mkN "densimeter" ; -lin densitometer_N = mkN "densitometer" ; -lin densitometry_N = mkN "densitometry" ; -lin density_N = mkN "density" "densities"; -- from DictEng -lin dent_N = mkN "dent" "dents"; -- from DictEng -lin dent_V = mkV "dent" "dents" "dented" "dented" "denting"; -- from DictEng -lin dent_V2 = mkV2 (mkV "dent" "dents" "dented" "dented" "denting"); -- from DictEng -lin dental_A = compoundA (mkA "dental"); -- from DictEng -lin dentate_A = mkA "dentate" ; -lin denticle_N = mkN "denticle" ; -lin denticulate_A = mkA "denticulate" ; -lin dentifrice_N = mkN "dentifrice" ; -- from DictEng -lin dentine_N = mkN "dentine" ; -lin dentist_N = mkN "dentist" "dentists"; -- from DictEng -lin dentistry_N = mkN "dentistry" ; -- from DictEng -lin dentition_N = mkN "dentition" ; -lin denture_N = mkN "denture" "dentures"; -- from DictEng -lin denudation_N = mkN "denudation" ; -- from DictEng -lin denude_V2 = mkV2 (mkV "denude" "denudes" "denuded" "denuded" "denuding"); -- from DictEng -lin denunciation_N = mkN "denunciation" "denunciations"; -- from DictEng -lin deny_V2 = mkV2 (mkV "deny" "denies" "denied" "denied" "denying"); -- from DictEng -lin deny_VS = mkVS (mkV "deny"); -- from DictEng -lin deodar_N = mkN "deodar" "deodars"; -- from DictEng -lin deodorant_N = mkN "deodorant" "deodorants"; -- from DictEng -lin deodorize_V2 = mkV2 (mkV "deodorize" "deodorizes" "deodorized" "deodorized" "deodorizing"); -- from DictEng -lin deossification_N = mkN "deossification" ; -lin deoxyadenosine_N = mkN "deoxyadenosine" ; -lin deoxycytidine_N = mkN "deoxycytidine" ; -lin deoxyguanosine_N = mkN "deoxyguanosine" ; -lin deoxyribose_N = mkN "deoxyribose" ; -lin deoxythymidine_N = mkN "deoxythymidine" ; -lin depart_V = mkV "depart" "departs" "departed" "departed" "departing"; -- from DictEng -lin depart_V2 = mkV2 (mkV "depart") ; -lin departed_A = compoundA (mkA "departed"); -- from DictEng -lin departed_N = mkN "departed" "departed"; -- from DictEng -lin departer_N = mkN "departer" ; -lin department_N = mkN "department" "departments"; -- from DictEng -lin departmental_A = compoundA (mkA "departmental"); -- from DictEng -lin departmentally_Adv = mkAdv "departmentally" ; -lin departure_N = mkN "departure" "departures"; -- from DictEng -lin depend_V = mkV "depend" "depends" "depended" "depended" "depending"; -- from DictEng -lin dependability_N = mkN "dependability" ; -lin dependable_A = compoundA (mkA "dependable"); -- from DictEng -lin dependant_N = mkN "dependant" "dependants"; -- from DictEng -lin dependence_N = mkN "dependence" ; -- from DictEng -lin dependency_N = mkN "dependency" "dependencies"; -- from DictEng -lin dependent_A = compoundA (mkA "dependent"); -- from DictEng -lin dependent_N = mkN "dependent" "dependents"; -- from DictEng -lin depersonalization_N = mkN "depersonalization" ; -lin depict_V2 = mkV2 (mkV "depict" "depicts" "depicted" "depicted" "depicting"); -- from DictEng -lin depicted_A = mkA "depicted" ; -lin depicting_N = mkN "depicting" ; -lin depiction_N = mkN "depiction" "depictions"; -- from DictEng -lin depigmentation_N = mkN "depigmentation" ; -lin depilation_N = mkN "depilation" ; -lin depilatory_A = compoundA (mkA "depilatory"); -- from DictEng -lin depilatory_N = mkN "depilatory" "depilatories"; -- from DictEng -lin depilous_A = mkA "depilous" ; -lin deplane_V = mkV "deplane" "deplanes" "deplaned" "deplaned" "deplaning"; -- from DictEng -lin depletable_A = mkA "depletable" ; -lin deplete_V2 = mkV2 (mkV "deplete" "depletes" "depleted" "depleted" "depleting"); -- from DictEng -lin depleted_A = mkA "depleted" ; -lin depletion_N = mkN "depletion" ; -- from DictEng -lin deplorable_A = compoundA (mkA "deplorable"); -- from DictEng -lin deplorably_Adv = mkAdv "deplorably" ; -lin deplore_V2 = mkV2 (mkV "deplore" "deplores" "deplored" "deplored" "deploring"); -- from DictEng -lin deploy_V = mkV "deploy" "deploys" "deployed" "deployed" "deploying"; -- from DictEng -lin deploy_V2 = mkV2 (mkV "deploy" "deploys" "deployed" "deployed" "deploying"); -- from DictEng -lin deployment_N = mkN "deployment" "deployments"; -- from DictEng -lin depolarization_N = mkN "depolarization" ; -lin deponent_N = mkN "deponent" "deponents"; -- from DictEng -lin depopulate_V2 = mkV2 (mkV "depopulate" "depopulates" "depopulated" "depopulated" "depopulating"); -- from DictEng -lin depopulated_A = mkA "depopulated" ; -lin depopulation_N = mkN "depopulation" ; -- from DictEng -lin deport_V2 = mkV2 (mkV "deport" "deports" "deported" "deported" "deporting"); -- from DictEng -lin deportation_N = mkN "deportation" "deportations"; -- from DictEng -lin deportee_N = mkN "deportee" "deportees"; -- from DictEng -lin deportment_N = mkN "deportment" ; -- from DictEng -lin depose_V = mkV "depose" "deposes" "deposed" "deposed" "deposing"; -- from DictEng -lin depose_V2 = mkV2 (mkV "depose" "deposes" "deposed" "deposed" "deposing"); -- from DictEng -lin deposit_N = mkN "deposit" "deposits"; -- from DictEng -lin deposit_V2 = mkV2 (mkV "deposit" "deposits" "deposited" "deposited" "depositing"); -- from DictEng -lin deposition_N = mkN "deposition" "depositions"; -- from DictEng -lin depositor_N = mkN "depositor" "depositors"; -- from DictEng -lin depository_N = mkN "depository" "depositories"; -- from DictEng -lin depot_N = mkN "depot" "depots"; -- from DictEng -lin deprave_V2 = mkV2 (mkV "deprave" "depraves" "depraved" "depraved" "depraving"); -- from DictEng -lin depraved_A = mkA "depraved" ; -lin depravity_N = mkN "depravity" "depravities"; -- from DictEng -lin deprecate_V2 = mkV2 (mkV "deprecate" "deprecates" "deprecated" "deprecated" "deprecating"); -- from DictEng -lin deprecation_N = mkN "deprecation" "deprecations"; -- from DictEng -lin deprecative_A = mkA "deprecative" ; -lin deprecatively_Adv = mkAdv "deprecatively" ; -lin depreciate_V = mkV "depreciate" "depreciates" "depreciated" "depreciated" "depreciating"; -- from DictEng -lin depreciate_V2 = mkV2 (mkV "depreciate" "depreciates" "depreciated" "depreciated" "depreciating"); -- from DictEng -lin depreciating_A = mkA "depreciating" ; -lin depreciation_N = mkN "depreciation" ; -- from DictEng -lin depreciatory_A = compoundA (mkA "depreciatory"); -- from DictEng -lin depredation_N = mkN "depredation" "depredations"; -- from DictEng -lin depress_V2 = mkV2 (mkV "depress" "depresses" "depressed" "depressed" "depressing"); -- from DictEng -lin depressant_A = mkA "depressant" ; -lin depressed_A = mkA "depressed" ; -lin depressing_A = mkA "depressing" ; -lin depressingly_Adv = mkAdv "depressingly" ; -lin depression_N = mkN "depression" "depressions"; -- from DictEng -lin depressive_A = compoundA (mkA "depressive"); -- from DictEng -lin depressive_N = mkN "depressive" "depressives"; -- from DictEng -lin depressor_N = mkN "depressor" ; -lin deprivation_N = mkN "deprivation" "deprivations"; -- from DictEng -lin deprive_V2 = mkV2 (mkV "deprive" "deprives" "deprived" "deprived" "depriving"); -- from DictEng -lin deprived_A = compoundA (mkA "deprived"); -- from DictEng -lin depth_N = mkN "depth" "depths"; -- from DictEng -lin depth_bomb_N = mkN "depth - bomb" "depth - bombs"; -- from DictEng -lin depth_charge_N = mkN "depth - charge" "depth - charges"; -- from DictEng -lin deputation_N = mkN "deputation" "deputations"; -- from DictEng -lin depute_V2 = mkV2 (mkV "depute" "deputes" "deputed" "deputed" "deputing"); -- from DictEng -lin deputize_V = mkV "deputize" "deputizes" "deputized" "deputized" "deputizing"; -- from DictEng -lin deputy_N = mkN "deputy" "deputies"; -- from DictEng -lin derail_V2 = mkV2 (mkV "derail" "derails" "derailed" "derailed" "derailing"); -- from DictEng -lin derailment_N = mkN "derailment" "derailments"; -- from DictEng -lin derange_V2 = mkV2 (mkV "derange" "deranges" "deranged" "deranged" "deranging"); -- from DictEng -lin derangement_N = mkN "derangement" "derangements"; -- from DictEng -lin derat_V2 = mkV2 (mkV "derat") ; -lin derate_V2 = mkV2 (mkV "derate" "derates" "derated" "derated" "derating"); -- from DictEng -lin derby_N = mkN "derby" "derbies"; -- from DictEng -lin deregulate_V2 = mkV2 (mkV "deregulate"); -- from DictEng -lin deregulation_N = mkN "deregulation" ; -lin derelict_A = compoundA (mkA "derelict"); -- from DictEng -lin derelict_N = mkN "derelict" ; -lin dereliction_N = mkN "dereliction" ; -- from DictEng -lin derequisition_V2 = mkV2 (mkV "derequisition" "derequisitions" "derequisitioned" "derequisitioned" "derequisitioning"); -- from DictEng -lin derestrict_V2 = mkV2 (mkV "derestrict" "derestricts" "derestricted" "derestricted" "derestricting"); -- from DictEng -lin derib_V2 = mkV2 (mkV "derib") ; -lin deride_V2 = mkV2 (mkV "deride" "derides" "derided" "derided" "deriding"); -- from DictEng -lin derind_V2 = mkV2 (mkV "derind") ; -lin derision_N = mkN "derision" ; -- from DictEng -lin derisive_A = compoundA (mkA "derisive"); -- from DictEng -lin derisively_Adv = mkAdv "derisively" ; -lin derisory_A = compoundA (mkA "derisory"); -- from DictEng -lin derivable_A = mkA "derivable" ; -lin derivation_N = mkN "derivation" "derivations"; -- from DictEng -lin derivational_A = mkA "derivational" ; -lin derivative_A = compoundA (mkA "derivative"); -- from DictEng -lin derivative_N = mkN "derivative" "derivatives"; -- from DictEng -lin derive_V = mkV "derive" "derives" "derived" "derived" "deriving"; -- from DictEng -lin derive_V2 = mkV2 (mkV "derive" "derives" "derived" "derived" "deriving"); -- from DictEng -lin derived_A = mkA "derived" ; -lin deriving_N = mkN "deriving" ; -lin dermabrasion_N = mkN "dermabrasion" ; -lin dermal_A = mkA "dermal" ; -lin dermatitis_N = mkN "dermatitis" ; -- from DictEng -lin dermatoglyphic_N = mkN "dermatoglyphic" ; -lin dermatoglyphics_N = mkN "dermatoglyphics" ; -lin dermatologic_A = mkA "dermatologic" ; -lin dermatologist_N = mkN "dermatologist" "dermatologists"; -- from DictEng -lin dermatology_N = mkN "dermatology" ; -- from DictEng -lin dermatome_N = mkN "dermatome" ; -lin dermatomycosis_N = mkN "dermatomycosis" ; -lin dermatomyositis_N = mkN "dermatomyositis" ; -lin dermatosis_N = mkN "dermatosis" ; -lin dermis_N = mkN "dermis" ; -lin derogate_V = mkV "derogate" "derogates" "derogated" "derogated" "derogating"; -- from DictEng -lin derogation_N = mkN "derogation" ; -- from DictEng -lin derogative_A = mkA "derogative" ; -lin derogatory_A = compoundA (mkA "derogatory"); -- from DictEng -lin derrick_N = mkN "derrick" "derricks"; -- from DictEng -lin derring_do_N = mkN "derring - do" ; -- from DictEng -lin derring_do_N = mkN "derring - do" ; -- from DictEng -lin derringer_N = mkN "derringer" ; -lin derris_N = mkN "derris" ; -lin derv_N = mkN "derv" ; -- from DictEng -lin dervish_N = mkN "dervish" "dervishes"; -- from DictEng -lin des_N = mkN "des" ; -- from DictEng -lin desalinate_V2 = mkV2 (mkV "desalinate" "desalinates" "desalinated" "desalinated" "desalinating"); -- from DictEng -lin desalination_N = mkN "desalination" ; -- from DictEng -lin desalinization_N = mkN "desalinization" ; -- from DictEng -lin desalinize_V2 = mkV2 (mkV "desalinize" "desalinizes" "desalinized" "desalinized" "desalinizing"); -- from DictEng -lin desalt_V2 = mkV2 (mkV "desalt" "desalts" "desalted" "desalted" "desalting"); -- from DictEng -lin descale_V2 = mkV2 (mkV "descale" "descales" "descaled" "descaled" "descaling"); -- from DictEng -lin descant_N = mkN "descant" "descants"; -- from DictEng -lin descant_V = mkV "descant" "descants" "descanted" "descanted" "descanting"; -- from DictEng -lin descend_V = mkV "descend" "descends" "descended" "descended" "descending"; -- from DictEng -lin descend_V2 = mkV2 (mkV "descend" "descends" "descended" "descended" "descending"); -- from DictEng -lin descendant_A = mkA "descendant" ; -lin descendant_N = mkN "descendant" "descendants"; -- from DictEng -lin descendants_N = mkN "descendants" ; -lin descender_N = mkN "descender" ; -lin descending_A = mkA "descending" ; -lin descent_N = mkN "descent" "descents"; -- from DictEng -lin describable_A = mkA "describable" ; -lin describe_V = mkV "describe"; -- from DictEng -lin describe_V2 = mkV2 (mkV "describe" "describes" "described" "described" "describing"); -- from DictEng -lin describe_VS = mkVS (mkV "describe"); -- from DictEng -lin described_A = mkA "described" ; -lin description_N = mkN "description" "descriptions"; -- from DictEng -lin descriptive_A = compoundA (mkA "descriptive"); -- from DictEng -lin descriptively_Adv = mkAdv "descriptively" ; -lin descriptivism_N = mkN "descriptivism" ; -lin descriptor_N = mkN "descriptor" ; -lin descry_V2 = mkV2 (mkV "descry" "descries" "descried" "descried" "descrying"); -- from DictEng -lin desecrate_V2 = mkV2 (mkV "desecrate" "desecrates" "desecrated" "desecrated" "desecrating"); -- from DictEng -lin desecrated_A = mkA "desecrated" ; -lin desecration_N = mkN "desecration" ; -- from DictEng -lin desegrated_A = mkA "desegrated" ; -lin desegregate_V2 = mkV2 (mkV "desegregate" "desegregates" "desegregated" "desegregated" "desegregating"); -- from DictEng -lin desegregation_N = mkN "desegregation" ; -- from DictEng -lin desensitization_N = mkN "desensitization" ; -- from DictEng -lin desensitize_V2 = mkV2 (mkV "desensitize" "desensitizes" "desensitized" "desensitized" "desensitizing"); -- from DictEng -lin desensitizing_A = mkA "desensitizing" ; -lin desert_A = compoundA (mkA "desert"); -- from DictEng -lin desert_N = mkN "desert" "deserts"; -- from DictEng -lin desert_V = mkV "desert" "deserts" "deserted" "deserted" "deserting"; -- from DictEng -lin desert_V2 = mkV2 (mkV "desert" "deserts" "deserted" "deserted" "deserting"); -- from DictEng -lin deserter_N = mkN "deserter" "deserters"; -- from DictEng -lin desertification_N = mkN "desertification" ; -lin desertion_N = mkN "desertion" "desertions"; -- from DictEng -lin deserts_N = mkN "deserts" ; -lin deserve_V = mkV "deserve" "deserves" "deserved" "deserved" "deserving"; -- from DictEng -lin deserve_V2 = mkV2 (mkV "deserve" "deserves" "deserved" "deserved" "deserving"); -- from DictEng -lin deserved_A = compoundA (mkA "deserved"); -- from DictEng -lin deservedly_Adv = mkAdv "deservedly" ; -lin deserving_A = compoundA (mkA "deserving"); -- from DictEng -lin deservingness_N = mkN "deservingness" ; -lin desex_V2 = mkV2 (mkV "desex") ; -lin deshabille_N = mkN "déshabillé" ; -- from DictEng -lin desiccant_N = mkN "desiccant" "desiccants"; -- from DictEng -lin desiccate_V2 = mkV2 (mkV "desiccate" "desiccates" "desiccated" "desiccated" "desiccating"); -- from DictEng -lin desiccated_A = mkA "desiccated" ; -lin desideratum_N = mkN "desideratum" "desiderata"; -- from DictEng -lin design_N = mkN "design" "designs"; -- from DictEng -lin design_V = mkV "design" "designs" "designed" "designed" "designing"; -- from DictEng -lin design_V2 = mkV2 (mkV "design" "designs" "designed" "designed" "designing"); -- from DictEng -lin design_VS = mkVS (mkV "design" "designs" "designed" "designed" "designing"); -- from DictEng -lin design_VV = mkVV (mkV "design" "designs" "designed" "designed" "designing"); -- from DictEng -lin designate_A = compoundA (mkA "designate"); -- from DictEng -lin designate_V = mkV "designate"; -- from DictEng -lin designate_V2 = mkV2 (mkV "designate" "designates" "designated" "designated" "designating"); -- from DictEng -lin designate_V2V = mkV2V (mkV "designate") noPrep to_Prep ; -- from DictEng -lin designate_VS = mkVS (mkV "designate"); -- from DictEng -lin designation_N = mkN "designation" "designations"; -- from DictEng -lin designative_A = mkA "designative" ; -lin designatum_N = mkN "designatum" ; -lin designed_A = mkA "designed" ; -lin designedly_Adv = mkAdv "designedly"; -- from DictEng -lin designer_N = mkN "designer" "designers"; -- from DictEng -lin designing_A = compoundA (mkA "designing"); -- from DictEng -lin designing_N = mkN "designing" ; -- from DictEng -lin desipramine_N = mkN "desipramine" ; -lin desirability_N = mkN "desirability" ; -- from DictEng -lin desirable_A = compoundA (mkA "desirable"); -- from DictEng -lin desire_N = mkN "desire" "desires"; -- from DictEng -lin desire_V2 = mkV2 (mkV "desire" "desires" "desired" "desired" "desiring"); -- from DictEng -lin desirous_A = compoundA (mkA "desirous"); -- from DictEng -lin desist_V = mkV "desist" "desists" "desisted" "desisted" "desisting"; -- from DictEng -lin desk_N = mkN "desk" "desks"; -- from DictEng -lin desk_bound_A = compoundA (mkA "desk bound") ; -lin desktop_N = mkN "desktop" ; -lin desmid_N = mkN "desmid" ; -lin desolate_A = compoundA (mkA "desolate"); -- from DictEng -lin desolate_V2 = mkV2 (mkV "desolate" "desolates" "desolated" "desolated" "desolating"); -- from DictEng -lin desolately_Adv = mkAdv "desolately" ; -lin desolation_N = mkN "desolation" ; -- from DictEng -lin desorption_N = mkN "desorption" ; -lin despair_N = mkN "despair" ; -- from DictEng -lin despair_V = mkV "despair" "despairs" "despaired" "despaired" "despairing"; -- from DictEng -lin despairing_A = mkA "despairing" ; -lin despairingly_Adv = mkAdv "despairingly"; -- from DictEng -lin despatch_N = mkN "despatch" "despatches"; -- from DictEng -lin despatch_V2 = mkV2 (mkV "despatch" "despatches" "despatched" "despatched" "despatching"); -- from DictEng -lin desperado_N = mkN "desperado" "desperadoes"; -- from DictEng -lin desperate_A = compoundA (mkA "desperate"); -- from DictEng -lin desperate_N = mkN "desperate" ; -lin desperately_Adv = mkAdv "desperately" ; -lin desperation_N = mkN "desperation" ; -- from DictEng -lin despicable_A = compoundA (mkA "despicable"); -- from DictEng -lin despicably_Adv = mkAdv "despicably" ; -lin despisal_N = mkN "despisal" ; -lin despise_V2 = mkV2 (mkV "despise" "despises" "despised" "despised" "despising"); -- from DictEng -lin despised_A = mkA "despised" ; -lin despite_N = mkN "despite" ; -- from DictEng -lin despite_Prep = mkPrep "despite"; -- from DictEng -lin despiteful_A = compoundA (mkA "despiteful"); -- from DictEng -lin despitefully_Adv = mkAdv "despitefully" ; -lin despoil_V2 = mkV2 (mkV "despoil" "despoils" "despoiled" "despoiled" "despoiling"); -- from DictEng -lin despoiled_A = mkA "despoiled" ; -lin despondency_N = mkN "despondency" ; -- from DictEng -lin despondent_A = compoundA (mkA "despondent"); -- from DictEng -lin despot_N = mkN "despot" "despots"; -- from DictEng -lin despotic_A = compoundA (mkA "despotic"); -- from DictEng -lin despotism_N = mkN "despotism" "despotisms"; -- from DictEng -lin desprout_V2 = mkV2 (mkV "desprout") ; -lin desquamation_N = mkN "desquamation" ; -lin dessert_N = mkN "dessert" "desserts"; -- from DictEng -lin dessertspoon_N = mkN "dessertspoon" "dessertspoons"; -- from DictEng -lin dessertspoonful_N = mkN "dessertspoonful" "dessertspoonfuls"; -- from DictEng -lin dessiatine_N = mkN "dessiatine" ; -lin destabilization_N = mkN "destabilization" ; -lin destalinization_N = mkN "destalinization" ; -lin destarch_V2 = mkV2 (mkV "destarch") ; -lin destination_N = mkN "destination" "destinations"; -- from DictEng -lin destine_V2 = mkV2 (mkV "destine" "destines" "destined" "destined" "destining"); -- from DictEng -lin destine_V2V = mkV2V (mkV "destine") noPrep to_Prep ; -- from DictEng -lin destiny_N = mkN "destiny" "destinies"; -- from DictEng -lin destitute_A = compoundA (mkA "destitute"); -- from DictEng -lin destitution_N = mkN "destitution" ; -- from DictEng -lin destress_V2 = mkV2 (mkV "destress") ; -lin destroy_V2 = mkV2 (mkV "destroy" "destroys" "destroyed" "destroyed" "destroying"); -- from DictEng -lin destroyable_A = mkA "destroyable" ; -lin destroyed_A = mkA "destroyed" ; -lin destroyer_N = mkN "destroyer" "destroyers"; -- from DictEng -lin destructibility_N = mkN "destructibility" ; -- from DictEng -lin destructible_A = compoundA (mkA "destructible"); -- from DictEng -lin destruction_N = mkN "destruction" ; -- from DictEng -lin destructive_A = compoundA (mkA "destructive"); -- from DictEng -lin destructive_metabolic_A = compoundA (mkA "destructive metabolic") ; -lin destructively_Adv = mkAdv "destructively" ; -lin destructiveness_N = mkN "destructiveness" ; -- from DictEng -lin desuetude_N = mkN "desuetude" ; -- from DictEng -lin desultory_A = compoundA (mkA "desultory"); -- from DictEng -lin detach_V2 = mkV2 (mkV "detach" "detaches" "detached" "detached" "detaching"); -- from DictEng -lin detachable_A = compoundA (mkA "detachable"); -- from DictEng -lin detached_A = compoundA (mkA "detached"); -- from DictEng -lin detachment_N = mkN "detachment" "detachments"; -- from DictEng -lin detail_N = mkN "detail" "details"; -- from DictEng -lin detail_V2 = mkV2 (mkV "detail" "details" "detailed" "detailed" "detailing"); -- from DictEng -lin detailed_A = mkA "detailed" ; -lin details_N = mkN "details" ; -lin detain_V2 = mkV2 (mkV "detain" "detains" "detained" "detained" "detaining"); -- from DictEng -lin detainee_N = mkN "detainee" "detainees"; -- from DictEng -lin detassel_V2 = mkV2 (mkV "detassel") ; -lin detect_V2 = mkV2 (mkV "detect" "detects" "detected" "detected" "detecting"); -- from DictEng -lin detectable_A = compoundA (mkA "detectable"); -- from DictEng -lin detected_A = mkA "detected" ; -lin detection_N = mkN "detection" ; -- from DictEng -lin detective_N = mkN "detective" "detectives"; -- from DictEng -lin detector_N = mkN "detector" "detectors"; -- from DictEng -lin detente_N = mkN "détente" ; -- from DictEng -lin detention_N = mkN "detention" "detentions"; -- from DictEng -lin deter_V2 = mkV2 (mkV "deter" "deters" "deterred" "deterred" "deterring"); -- from DictEng -lin detergency_N = mkN "detergency" ; -lin detergent_A = compoundA (mkA "detergent"); -- from DictEng -lin detergent_N = mkN "detergent" "detergents"; -- from DictEng -lin deteriorate_V = mkV "deteriorate" "deteriorates" "deteriorated" "deteriorated" "deteriorating"; -- from DictEng -lin deteriorate_V2 = mkV2 (mkV "deteriorate" "deteriorates" "deteriorated" "deteriorated" "deteriorating"); -- from DictEng -lin deterioration_N = mkN "deterioration" "deteriorations"; -- from DictEng -lin determent_N = mkN "determent" ; -lin determinable_A = compoundA (mkA "determinable"); -- from DictEng -lin determinant_A = compoundA (mkA "determinant"); -- from DictEng -lin determinant_N = mkN "determinant" "determinants"; -- from DictEng -lin determinate_A = compoundA (mkA "determinate"); -- from DictEng -lin determinateness_N = mkN "determinateness" ; -lin determination_N = mkN "determination" ; -- from DictEng -lin determinative_A = compoundA (mkA "determinative"); -- from DictEng -lin determinative_N = mkN "determinative" "determinatives"; -- from DictEng -lin determine_V = mkV "determine" "determines" "determined" "determined" "determining"; -- from DictEng -lin determine_V2 = mkV2 (mkV "determine" "determines" "determined" "determined" "determining"); -- from DictEng -lin determine_V2V = mkV2V (mkV "determine" "determines" "determined" "determined" "determining") noPrep to_Prep ; -- from DictEng -lin determine_VS = mkVS (mkV "determine" "determines" "determined" "determined" "determining"); -- from DictEng -lin determine_VV = mkVV (mkV "determine" "determines" "determined" "determined" "determining") ; -- from DictEng -lin determined_A = mkA "determined" ; -lin determinedly_Adv = mkAdv "determinedly"; -- from DictEng -lin determiner_N = mkN "determiner" "determiners"; -- from DictEng -lin determinism_N = mkN "determinism" ; -lin deterministic_A = mkA "deterministic" ; -lin deterrence_N = mkN "deterrence" ; -lin deterrent_A = compoundA (mkA "deterrent"); -- from DictEng -lin deterrent_N = mkN "deterrent" "deterrents"; -- from DictEng -lin detest_V2 = mkV2 (mkV "detest" "detests" "detested" "detested" "detesting"); -- from DictEng -lin detestable_A = compoundA (mkA "detestable"); -- from DictEng -lin detestably_Adv = mkAdv "detestably" ; -lin detestation_N = mkN "detestation" "detestations"; -- from DictEng -lin dethrone_V2 = mkV2 (mkV "dethrone" "dethrones" "dethroned" "dethroned" "dethroning"); -- from DictEng -lin dethronement_N = mkN "dethronement" "dethronements"; -- from DictEng -lin detonate_V = mkV "detonate" "detonates" "detonated" "detonated" "detonating"; -- from DictEng -lin detonate_V2 = mkV2 (mkV "detonate" "detonates" "detonated" "detonated" "detonating"); -- from DictEng -lin detonation_N = mkN "detonation" "detonations"; -- from DictEng -lin detonative_A = mkA "detonative" ; -lin detonator_N = mkN "detonator" "detonators"; -- from DictEng -lin detour_N = mkN "detour" "detours"; -- from DictEng -lin detour_V2 = mkV2 (mkV "detour" "detours" "detoured" "detoured" "detouring"); -- from DictEng -lin detox_N = mkN "detox" ; -lin detoxification_N = mkN "detoxification" ; -lin detract_V = mkV "detract" "detracts" "detracted" "detracted" "detracting"; -- from DictEng -lin detraction_N = mkN "detraction" "detractions"; -- from DictEng -lin detractive_A = mkA "detractive" ; -lin detractor_N = mkN "detractor" "detractors"; -- from DictEng -lin detrain_V = mkV "detrain" "detrains" "detrained" "detrained" "detraining"; -- from DictEng -lin detrain_V2 = mkV2 (mkV "detrain" "detrains" "detrained" "detrained" "detraining"); -- from DictEng -lin detribalization_N = mkN "detribalization" ; -- from DictEng -lin detribalize_V2 = mkV2 (mkV "detribalize" "detribalizes" "detribalized" "detribalized" "detribalizing"); -- from DictEng -lin detriment_N = mkN "detriment" ; -- from DictEng -lin detrimental_A = compoundA (mkA "detrimental"); -- from DictEng -lin detrimentally_Adv = mkAdv "detrimentally" ; -lin detritus_N = mkN "detritus" ; -- from DictEng -lin detumescence_N = mkN "detumescence" ; -lin detusk_V2 = mkV2 (mkV "detusk") ; -lin deuce_N = mkN "deuce" "deuces"; -- from DictEng -lin deuced_A = compoundA (mkA "deuced"); -- from DictEng -lin deuteranopia_N = mkN "deuteranopia" ; -lin deuteranopic_A = mkA "deuteranopic" ; -lin deuterium_N = mkN "deuterium" ; -lin deuteron_N = mkN "deuteron" ; -lin deutschmark_N = mkN "deutschmark" "deutschmarks"; -- from DictEng -lin deutzia_N = mkN "deutzia" ; -lin devaluate_V2 = mkV2 (mkV "devaluate" "devaluates" "devaluated" "devaluated" "devaluating"); -- from DictEng -lin devaluation_N = mkN "devaluation" "devaluations"; -- from DictEng -lin devalue_V2 = mkV2 (mkV "devalue" "devalues" "devalued" "devalued" "devaluing"); -- from DictEng -lin devastate_V2 = mkV2 (mkV "devastate" "devastates" "devastated" "devastated" "devastating"); -- from DictEng -lin devastation_N = mkN "devastation" ; -- from DictEng -lin devein_V2 = mkV2 (mkV "devein") ; -lin develop_V = mkV "develop" "develops" "developed" "developed" "developing"; -- from DictEng -lin develop_V2 = mkV2 (mkV "develop" "develops" "developed" "developed" "developing"); -- from DictEng -lin developed_A = mkA "developed" ; -lin developer_N = mkN "developer" "developers"; -- from DictEng -lin developing_A = mkA "developing" ; -lin development_N = mkN "development" "developments"; -- from DictEng -lin developmental_A = mkA "developmental" ; -lin developmentally_Adv = mkAdv "developmentally" ; -lin deviant_A = compoundA (mkA "deviant"); -- from DictEng -lin deviant_N = mkN "deviant" "deviants"; -- from DictEng -lin deviate_V = mkV "deviate" "deviates" "deviated" "deviated" "deviating"; -- from DictEng -lin deviation_N = mkN "deviation" "deviations"; -- from DictEng -lin deviationism_N = mkN "deviationism" ; -- from DictEng -lin deviationist_N = mkN "deviationist" "deviationists"; -- from DictEng -lin device_N = mkN "device" "devices"; -- from DictEng -lin devices_N = mkN "devices" ; -lin devil_N = mkN "devil" "devils"; -- from DictEng -lin devil_V = mkV "devil" "devils" "devilled" "devilled" "devilling"; -- from DictEng -lin devil_V2 = mkV2 (mkV "devil" "devils" "devilled" "devilled" "devilling"); -- from DictEng -lin devil_may_care_A = compoundA (mkA "devil - may - care"); -- from DictEng -lin devil_may_care_A = compoundA (mkA "devil - may - care"); -- from DictEng -lin devilish_A = compoundA (mkA "devilish"); -- from DictEng -lin devilish_Adv = mkAdv "devilish"; -- from DictEng -lin devilishly_Adv = mkAdv "devilishly" ; -lin devilment_N = mkN "devilment" "devilments"; -- from DictEng -lin devilry_N = mkN "devilry" "devilries"; -- from DictEng -lin deviltry_N = mkN "deviltry" ; -lin devilwood_N = mkN "devilwood" ; -lin devious_A = compoundA (mkA "devious"); -- from DictEng -lin deviously_Adv = mkAdv "deviously" ; -lin deviousness_N = mkN "deviousness" ; -- from DictEng -lin devisal_N = mkN "devisal" ; -lin devise_N = mkN "devise" ; -lin devise_V2 = mkV2 (mkV "devise" "devises" "devised" "devised" "devising"); -- from DictEng -lin devisee_N = mkN "devisee" ; -lin devising_N = mkN "devising" ; -lin devisor_N = mkN "devisor" ; -lin devitalization_N = mkN "devitalization" ; -- from DictEng -lin devitalize_V2 = mkV2 (mkV "devitalize" "devitalizes" "devitalized" "devitalized" "devitalizing"); -- from DictEng -lin devoid_A = compoundA (mkA "devoid"); -- from DictEng -lin devoir_N = mkN "devoir" ; -lin devolution_N = mkN "devolution" ; -- from DictEng -lin devolve_V = mkV "devolve" "devolves" "devolved" "devolved" "devolving"; -- from DictEng -lin devolve_V2 = mkV2 (mkV "devolve" "devolves" "devolved" "devolved" "devolving"); -- from DictEng -lin devote_V2 = mkV2 (mkV "devote" "devotes" "devoted" "devoted" "devoting"); -- from DictEng -lin devoted_A = compoundA (mkA "devoted"); -- from DictEng -lin devotedly_Adv = mkAdv "devotedly" ; -lin devotee_N = mkN "devotee" "devotees"; -- from DictEng -lin devotion_N = mkN "devotion" "devotions"; -- from DictEng -lin devotional_A = compoundA (mkA "devotional"); -- from DictEng -lin devotional_N = mkN "devotional" ; -lin devour_V2 = mkV2 (mkV "devour" "devours" "devoured" "devoured" "devouring"); -- from DictEng -lin devourer_N = mkN "devourer" ; -lin devout_A = compoundA (mkA "devout"); -- from DictEng -lin devoutly_Adv = mkAdv "devoutly" ; -lin devoutness_N = mkN "devoutness" ; -- from DictEng -lin dew_N = mkN "dew" ; -- from DictEng -lin dewater_V2 = mkV2 (mkV "dewater") ; -lin dewax_V2 = mkV2 (mkV "dewax") ; -lin dewberry_N = mkN "dewberry" ; -lin dewdrop_N = mkN "dewdrop" ; -lin dewlap_N = mkN "dewlap" "dewlaps"; -- from DictEng -lin deworm_V2 = mkV2 (mkV "deworm") ; -lin dewy_A = mkA "dewy" "dewier"; -- from DictEng -lin dexamethasone_N = mkN "dexamethasone" ; -lin dexter_A = mkA "dexter" ; -lin dexterity_N = mkN "dexterity" ; -- from DictEng -lin dexterous_A = compoundA (mkA "dexterous"); -- from DictEng -lin dexterously_Adv = mkAdv "dexterously" ; -lin dextral_A = mkA "dextral" ; -lin dextrin_N = mkN "dextrin" ; -lin dextrocardia_N = mkN "dextrocardia" ; -lin dextrorotary_A = mkA "dextrorotary" ; -lin dextrorotation_N = mkN "dextrorotation" ; -lin dextrorse_A = mkA "dextrorse" ; -lin dextrose_N = mkN "dextrose" ; -- from DictEng -lin dextrous_A = compoundA (mkA "dextrous"); -- from DictEng -lin dhak_N = mkN "dhak" ; -lin dhawa_N = mkN "dhawa" ; -lin dhole_N = mkN "dhole" ; -lin dhoti_N = mkN "dhoti" "dhotis"; -- from DictEng -lin dhow_N = mkN "dhow" "dhows"; -- from DictEng -lin di_iodotyrosine_N = mkN "di iodotyrosine" ; -lin diabatic_A = mkA "diabatic" ; -lin diabetes_N = mkN "diabetes" ; -- from DictEng -lin diabetic_A = compoundA (mkA "diabetic"); -- from DictEng -lin diabetic_N = mkN "diabetic" "diabetics"; -- from DictEng -lin diabolatry_N = mkN "diabolatry" ; -lin diabolic_A = compoundA (mkA "diabolic"); -- from DictEng -lin diabolical_A = compoundA (mkA "diabolical"); -- from DictEng -lin diabolically_Adv = mkAdv "diabolically" ; -lin diabolism_N = mkN "diabolism" ; -lin diachronic_A = mkA "diachronic" ; -lin diacritic_A = compoundA (mkA "diacritic"); -- from DictEng -lin diacritic_N = mkN "diacritic" "diacritics"; -- from DictEng -lin diacritical_A = compoundA (mkA "diacritical"); -- from DictEng -lin diadem_N = mkN "diadem" "diadems"; -- from DictEng -lin diadromous_A = mkA "diadromous" ; -lin diaeresis_N = mkN "diaeresis" "diaereses" {- FIXME: guessed plural form -}; -- from DictEng -lin diagnosable_A = mkA "diagnosable" ; -lin diagnose_V2 = mkV2 (mkV "diagnose" "diagnoses" "diagnosed" "diagnosed" "diagnosing"); -- from DictEng -lin diagnosis_N = mkN "diagnosis" "diagnoses" {- FIXME: guessed plural form -}; -- from DictEng -lin diagnostic_A = compoundA (mkA "diagnostic"); -- from DictEng -lin diagnostician_N = mkN "diagnostician" ; -lin diagonal_A = compoundA (mkA "diagonal"); -- from DictEng -lin diagonal_N = mkN "diagonal" "diagonals"; -- from DictEng -lin diagonalizable_A = mkA "diagonalizable" ; -lin diagonalization_N = mkN "diagonalization" ; -lin diagonally_Adv = mkAdv "diagonally" ; -lin diagram_N = mkN "diagram" "diagrams"; -- from DictEng -lin diagrammatic_A = compoundA (mkA "diagrammatic"); -- from DictEng -lin diagrammatical_A = compoundA (mkA "diagrammatical"); -- from DictEng -lin diagrammatically_Adv = mkAdv "diagrammatically" ; -lin diakinesis_N = mkN "diakinesis" ; -lin dial_N = mkN "dial" "dials"; -- from DictEng -lin dial_V2 = mkV2 (mkV "dial" "dials" "dialled" "dialled" "dialling"); -- from DictEng -lin dialect_N = mkN "dialect" "dialects"; -- from DictEng -lin dialectal_A = compoundA (mkA "dialectal"); -- from DictEng -lin dialectic_A = mkA "dialectic" ; -lin dialectic_N = mkN "dialectic" "dialectics"; -- from DictEng -lin dialectical_A = compoundA (mkA "dialectical"); -- from DictEng -lin dialectically_Adv = mkAdv "dialectically" ; -lin dialectician_N = mkN "dialectician" "dialecticians"; -- from DictEng -lin dialectics_N = mkN "dialectics" ; -lin dialectology_N = mkN "dialectology" ; -lin dialogue_N = mkN "dialogue" "dialogues"; -- from DictEng -lin dialysis_N = mkN "dialysis" ; -lin dialyzer_N = mkN "dialyzer" ; -lin diamagnet_N = mkN "diamagnet" ; -lin diamagnetic_A = mkA "diamagnetic" ; -lin diamagnetism_N = mkN "diamagnetism" ; -lin diamante_N = mkN "diamante" ; -lin diamantine_A = mkA "diamantine" ; -lin diameter_N = mkN "diameter" "diameters"; -- from DictEng -lin diametral_A = mkA "diametral" ; -lin diametric_A = mkA "diametric" ; -lin diametrically_Adv = mkAdv "diametrically"; -- from DictEng -lin diamine_N = mkN "diamine" ; -lin diamond_N = mkN "diamond" "diamonds"; -- from DictEng -lin diamondback_N = mkN "diamondback" ; -lin dianoetic_A = mkA "dianoetic" ; -lin diapason_N = mkN "diapason" ; -lin diapedesis_N = mkN "diapedesis" ; -lin diapensia_N = mkN "diapensia" ; -lin diaper_N = mkN "diaper" "diapers"; -- from DictEng -lin diaphanous_A = compoundA (mkA "diaphanous"); -- from DictEng -lin diapheromera_N = mkN "diapheromera" ; -lin diaphone_N = mkN "diaphone" ; -lin diaphoretic_A = mkA "diaphoretic" ; -lin diaphoretic_N = mkN "diaphoretic" ; -lin diaphragm_N = mkN "diaphragm" "diaphragms"; -- from DictEng -lin diaphyseal_A = mkA "diaphyseal" ; -lin diaphysis_N = mkN "diaphysis" ; -lin diapir_N = mkN "diapir" ; -lin diapsid_N = mkN "diapsid" ; -lin diarchy_N = mkN "diarchy" "diarchies"; -- from DictEng -lin diarist_N = mkN "diarist" "diarists"; -- from DictEng -lin diarrhea_N = mkN "diarrhea" ; -- from DictEng -lin diarrheal_A = mkA "diarrheal" ; -lin diarrhoea_N = mkN "diarrhoea" ; -- from DictEng -lin diary_N = mkN "diary" "diaries"; -- from DictEng -lin diaspora_N = mkN "diaspora" "diasporas"; -- from DictEng -lin diastasis_N = mkN "diastasis" ; -lin diastema_N = mkN "diastema" ; -lin diastole_N = mkN "diastole" ; -lin diastolic_A = mkA "diastolic" ; -lin diastrophism_N = mkN "diastrophism" ; -lin diathermy_N = mkN "diathermy" ; -lin diathesis_N = mkN "diathesis" ; -lin diatom_N = mkN "diatom" ; -lin diatomic_A = mkA "diatomic" ; -lin diatonic_A = compoundA (mkA "diatonic"); -- from DictEng -lin diatribe_N = mkN "diatribe" "diatribes"; -- from DictEng -lin diazepam_N = mkN "diazepam" ; -lin diazo_A = mkA "diazo" ; -lin diazonium_N = mkN "diazonium" ; -lin diazoxide_N = mkN "diazoxide" ; -lin dibber_N = mkN "dibber" "dibbers"; -- from DictEng -lin dibble_N = mkN "dibble" "dibbles"; -- from DictEng -lin dibble_V2 = mkV2 (mkV "dibble" "dibbles" "dibbled" "dibbled" "dibbling"); -- from DictEng -lin dibranchiate_N = mkN "dibranchiate" ; -lin dibs_N = mkN "dibs" ; -lin dibucaine_N = mkN "dibucaine" ; -lin dicamptodon_N = mkN "dicamptodon" ; -lin dicarboxylic_A = mkA "dicarboxylic" ; -lin dice_N = mkN "dice" "dice"; -- from DictEng -lin dice_V = mkV "dice" "dices" "diced" "diced" "dicing"; -- from DictEng -lin dice_V2 = mkV2 (mkV "dice" "dices" "diced" "diced" "dicing"); -- from DictEng -lin dice_box_N = mkN "dice - box" "dice - boxes"; -- from DictEng -lin dicer_N = mkN "dicer" ; -lin dicey_A = compoundA (mkA "dicey"); -- from DictEng -lin dichloride_N = mkN "dichloride" ; -lin dichlorodiphenyltrichloroethane_N = mkN "dichlorodiphenyltrichloroethane" ; -lin dichondra_N = mkN "dichondra" ; -lin dichotomization_N = mkN "dichotomization" ; -lin dichotomous_A = mkA "dichotomous" ; -lin dichotomously_Adv = mkAdv "dichotomously" ; -lin dichotomy_N = mkN "dichotomy" "dichotomies"; -- from DictEng -lin dichroism_N = mkN "dichroism" ; -lin dichromacy_N = mkN "dichromacy" ; -lin dichromat_N = mkN "dichromat" ; -lin dichromatic_A = mkA "dichromatic" ; -lin dick_N = mkN "dick" ; -lin dickens_N = mkN "dickens" "IRREG"; -- from DictEng -lin dicker_V = mkV "dicker" "dickers" "dickered" "dickered" "dickering"; -- from DictEng -lin dickey_N = mkN "dickey" "dickeys"; -- from DictEng -lin dickeybird_N = mkN "dickeybird" ; -lin dicky_A = compoundA (mkA "dicky"); -- from DictEng -lin dicky_N = mkN "dicky" "dickies"; -- from DictEng -lin dicky_seat_N = mkN "dicky - seat" "dicky - seats"; -- from DictEng -lin dickybird_N = mkN "dickybird" "dickybirds"; -- from DictEng -lin diclinous_A = mkA "diclinous" ; -lin dicloxacillin_N = mkN "dicloxacillin" ; -lin dicot_N = mkN "dicot" ; -lin dicotyledonous_A = mkA "dicotyledonous" ; -lin dictaphone_N = mkN "dictaphone" "dictaphones"; -- from DictEng -lin dictate_N = mkN "dictate" "dictates"; -- from DictEng -lin dictate_V = mkV "dictate" "dictates" "dictated" "dictated" "dictating"; -- from DictEng -lin dictate_V2 = mkV2 (mkV "dictate" "dictates" "dictated" "dictated" "dictating"); -- from DictEng -lin dictate_VS = mkVS (mkV "dictate" "dictates" "dictated" "dictated" "dictating"); -- from DictEng -lin dictation_N = mkN "dictation" "dictations"; -- from DictEng -lin dictator_N = mkN "dictator" "dictators"; -- from DictEng -lin dictatorial_A = compoundA (mkA "dictatorial"); -- from DictEng -lin dictatorially_Adv = mkAdv "dictatorially" ; -lin dictatorship_N = mkN "dictatorship" "dictatorships"; -- from DictEng -lin diction_N = mkN "diction" ; -- from DictEng -lin dictionary_N = mkN "dictionary" "dictionaries"; -- from DictEng -lin dictostylium_N = mkN "dictostylium" ; -lin dictum_N = mkN "dictum" "dictums"; -- from DictEng -lin dictyopteran_A = mkA "dictyopteran" ; -lin dicumarol_N = mkN "dicumarol" ; -lin dicynodont_N = mkN "dicynodont" ; -lin didactic_A = compoundA (mkA "didactic"); -- from DictEng -lin didactically_Adv = mkAdv "didactically"; -- from DictEng -lin didacticism_N = mkN "didacticism" ; -lin diddle_V2 = mkV2 (mkV "diddle" "diddles" "diddled" "diddled" "diddling"); -- from DictEng -lin dideoxycytosine_N = mkN "dideoxycytosine" ; -lin dideoxyinosine_N = mkN "dideoxyinosine" ; -lin die_N = mkN "die" "dies"; -- from DictEng -lin die_V = mkV "die" "dies" "died" "died" "dying"; -- from DictEng -lin die_V2 = mkV2 (mkV "die" "dies" "died" "died" "dying"); -- from DictEng -lin die_cast_A = compoundA (mkA "die - cast"); -- from DictEng -lin die_hard_A = compoundA (mkA "die hard") ; -lin die_cast_A = compoundA (mkA "die - cast"); -- from DictEng -lin die_hard_N = mkN "die - hard" "die - hards"; -- from DictEng -lin dieback_N = mkN "dieback" ; -lin diemaker_N = mkN "diemaker" ; -lin diencephalon_N = mkN "diencephalon" ; -lin dieresis_N = mkN "dieresis" "diereses" {- FIXME: guessed plural form -}; -- from DictEng -lin diesel_N = mkN "diesel" "diesels"; -- from DictEng -lin diestock_N = mkN "diestock" ; -lin diestrous_A = mkA "diestrous" ; -lin diestrus_N = mkN "diestrus" ; -lin diet_N = mkN "diet" "diets"; -- from DictEng -lin diet_V = mkV "diet" "diets" "dieted" "dieted" "dieting"; -- from DictEng -lin diet_V2 = mkV2 (mkV "diet" "diets" "dieted" "dieted" "dieting"); -- from DictEng -lin dietary_A = compoundA (mkA "dietary"); -- from DictEng -lin dietary_N = mkN "dietary" ; -lin dieter_N = mkN "dieter" ; -lin dietetics_N = mkN "dietetics" "dietetics"; -- from DictEng -lin diethylstilbesterol_N = mkN "diethylstilbesterol" ; -lin diethylstilbestrol_N = mkN "diethylstilbestrol" ; -lin dietician_N = mkN "dietician" "dieticians"; -- from DictEng -lin dietitian_N = mkN "dietitian" "dietitians"; -- from DictEng -lin differ_V = mkV "differ" "differs" "differed" "differed" "differing"; -- from DictEng -lin difference_N = mkN "difference" "differences"; -- from DictEng -lin different_A = compoundA (mkA "different"); -- from DictEng -lin differentia_N = mkN "differentia" ; -lin differentiable_A = mkA "differentiable" ; -lin differential_A = compoundA (mkA "differential"); -- from DictEng -lin differential_N = mkN "differential" "differentials"; -- from DictEng -lin differentially_Adv = mkAdv "differentially" ; -lin differentiate_V = mkV "differentiate"; -- from DictEng -lin differentiate_V2 = mkV2 (mkV "differentiate" "differentiates" "differentiated" "differentiated" "differentiating"); -- from DictEng -lin differentiated_A = mkA "differentiated" ; -lin differentiation_N = mkN "differentiation" "differentiations"; -- from DictEng -lin differentiator_N = mkN "differentiator" ; -lin differently_Adv = mkAdv "differently" ; -lin difficult_A = compoundA (mkA "difficult"); -- from DictEng -lin difficulty_N = mkN "difficulty" "difficulties"; -- from DictEng -lin diffidence_N = mkN "diffidence" ; -- from DictEng -lin diffident_A = compoundA (mkA "diffident"); -- from DictEng -lin diffidently_Adv = mkAdv "diffidently" ; -lin difflugia_N = mkN "difflugia" ; -lin diffract_V2 = mkV2 (mkV "diffract" "diffracts" "diffracted" "diffracted" "diffracting"); -- from DictEng -lin diffraction_N = mkN "diffraction" "diffractions"; -- from DictEng -lin diffuse_A = compoundA (mkA "diffuse"); -- from DictEng -lin diffuse_V = mkV "diffuse" "diffuses" "diffused" "diffused" "diffusing"; -- from DictEng -lin diffuse_V2 = mkV2 (mkV "diffuse" "diffuses" "diffused" "diffused" "diffusing"); -- from DictEng -lin diffused_A = mkA "diffused" ; -lin diffusely_Adv = mkAdv "diffusely" ; -lin diffuseness_N = mkN "diffuseness" ; -- from DictEng -lin diffuser_N = mkN "diffuser" ; -lin diffusing_A = mkA "diffusing" ; -lin diffusion_N = mkN "diffusion" ; -- from DictEng -lin diflunisal_N = mkN "diflunisal" ; -lin dig_N = mkN "dig" "digs"; -- from DictEng -lin dig_V = IrregEng.dig_V; -- from DictEng -lin dig_V2 = mkV2 (IrregEng.dig_V); -- from DictEng -lin digest_N = mkN "digest" "digests"; -- from DictEng -lin digest_V = mkV "digest" "digests" "digested" "digested" "digesting"; -- from DictEng -lin digest_V2 = mkV2 (mkV "digest" "digests" "digested" "digested" "digesting"); -- from DictEng -lin digester_N = mkN "digester" ; -lin digestibility_N = mkN "digestibility" ; -- from DictEng -lin digestible_A = compoundA (mkA "digestible"); -- from DictEng -lin digestion_N = mkN "digestion" "digestions"; -- from DictEng -lin digestive_A = compoundA (mkA "digestive"); -- from DictEng -lin digestive_N = mkN "digestive" ; -lin digger_N = mkN "digger" "diggers"; -- from DictEng -lin digging_N = mkN "digging" "diggings"; -- from DictEng -lin diggings_N = mkN "diggings" ; -lin dighted_A = mkA "dighted" ; -lin digit_N = mkN "digit" "digits"; -- from DictEng -lin digital_A = compoundA (mkA "digital"); -- from DictEng -lin digitalis_N = mkN "digitalis" ; -lin digitalization_N = mkN "digitalization" ; -lin digitally_Adv = mkAdv "digitally" ; -lin digitate_A = mkA "digitate" ; -lin digitately_Adv = mkAdv "digitately" ; -lin digitigrade_A = mkA "digitigrade" ; -lin digitization_N = mkN "digitization" ; -lin digitizer_N = mkN "digitizer" ; -lin digitoxin_N = mkN "digitoxin" ; -lin dignified_A = compoundA (mkA "dignified"); -- from DictEng -lin dignify_V2 = mkV2 (mkV "dignify" "dignifies" "dignified" "dignified" "dignifying"); -- from DictEng -lin dignifying_A = mkA "dignifying" ; -lin dignitary_N = mkN "dignitary" "dignitaries"; -- from DictEng -lin dignity_N = mkN "dignity" "dignities"; -- from DictEng -lin digoxin_N = mkN "digoxin" ; -lin digraph_N = mkN "digraph" "digraphs"; -- from DictEng -lin digress_V = mkV "digress" "digresses" "digressed" "digressed" "digressing"; -- from DictEng -lin digression_N = mkN "digression" "digressions"; -- from DictEng -lin digressive_A = mkA "digressive" ; -lin dihybrid_N = mkN "dihybrid" ; -lin dihydrostreptomycin_N = mkN "dihydrostreptomycin" ; -lin dik_dik_N = mkN "dik dik" ; -lin dike_N = mkN "dike" "dikes"; -- from DictEng -lin dike_V = mkV "dike" "dikes" "diked" "diked" "diking"; -- from DictEng -lin dike_V2 = mkV2 (mkV "dike" "dikes" "diked" "diked" "diking"); -- from DictEng -lin dilapidated_A = compoundA (mkA "dilapidated"); -- from DictEng -lin dilapidation_N = mkN "dilapidation" ; -- from DictEng -lin dilatation_N = mkN "dilatation" ; -lin dilate_V = mkV "dilate" "dilates" "dilated" "dilated" "dilating"; -- from DictEng -lin dilate_V2 = mkV2 (mkV "dilate" "dilates" "dilated" "dilated" "dilating"); -- from DictEng -lin dilation_N = mkN "dilation" ; -- from DictEng -lin dilator_N = mkN "dilator" ; -lin dilatoriness_N = mkN "dilatoriness" ; -lin dilatory_A = compoundA (mkA "dilatory"); -- from DictEng -lin dildo_N = mkN "dildo" ; -lin dilemma_N = mkN "dilemma" "dilemmas"; -- from DictEng -lin dilettante_A = mkA "dilettante" ; -lin dilettante_N = mkN "dilettante" "dilettantes"; -- from DictEng -lin diligence_N = mkN "diligence" ; -- from DictEng -lin diligent_A = compoundA (mkA "diligent"); -- from DictEng -lin diligently_Adv = mkAdv "diligently" ; -lin dill_N = mkN "dill" ; -- from DictEng -lin dillenia_N = mkN "dillenia" ; -lin dilly_dally_V = mkV "dilly - dally" "dilly - dallies" "dilly - dallied" "dilly - dallied" "dilly - dallying"; -- from DictEng -lin diltiazem_N = mkN "diltiazem" ; -lin dilutant_N = mkN "dilutant" ; -lin dilute_A = compoundA (mkA "dilute"); -- from DictEng -lin dilute_V = mkV "dilute"; -- from DictEng -lin dilute_V2 = mkV2 (mkV "dilute" "dilutes" "diluted" "diluted" "diluting"); -- from DictEng -lin diluted_A = mkA "diluted" ; -lin dilution_N = mkN "dilution" "dilutions"; -- from DictEng -lin diluvian_A = mkA "diluvian" ; -lin dim_A = mkA "dim" "dimmer*"; -- from DictEng -lin dim_V = mkV "dim" "dims" "dimmed" "dimmed" "dimming"; -- from DictEng -lin dim_V2 = mkV2 (mkV "dim" "dims" "dimmed" "dimmed" "dimming"); -- from DictEng -lin dim_sighted_A = compoundA (mkA "dim sighted") ; -lin dim_witted_A = compoundA (mkA "dim witted") ; -lin dime_N = mkN "dime" "dimes"; -- from DictEng -lin dimenhydrinate_N = mkN "dimenhydrinate" ; -lin dimension_N = mkN "dimension" "dimensions"; -- from DictEng -lin dimensional_A = compoundA (mkA "dimensional"); -- from DictEng -lin dimensionality_N = mkN "dimensionality" ; -lin dimensioning_A = mkA "dimensioning" ; -lin dimer_N = mkN "dimer" ; -lin dimethylglyoxime_N = mkN "dimethylglyoxime" ; -lin dimetrodon_N = mkN "dimetrodon" ; -lin diminish_V = mkV "diminish" "diminishes" "diminished" "diminished" "diminishing"; -- from DictEng -lin diminish_V2 = mkV2 (mkV "diminish" "diminishes" "diminished" "diminished" "diminishing"); -- from DictEng -lin diminished_A = mkA "diminished" ; -lin diminishing_A = mkA "diminishing" ; -lin diminuendo_N = mkN "diminuendo" "diminuendos"; -- from DictEng -lin diminution_N = mkN "diminution" "diminutions"; -- from DictEng -lin diminutive_A = compoundA (mkA "diminutive"); -- from DictEng -lin diminutive_N = mkN "diminutive" "diminutives"; -- from DictEng -lin diminutiveness_N = mkN "diminutiveness" ; -lin dimity_N = mkN "dimity" ; -- from DictEng -lin dimly_Adv = mkAdv "dimly" ; -lin dimmed_A = mkA "dimmed" ; -lin dimmer_N = mkN "dimmer" ; -lin dimness_N = mkN "dimness" ; -- from DictEng -lin dimorphic_A = mkA "dimorphic" ; -lin dimorphism_N = mkN "dimorphism" ; -lin dimple_N = mkN "dimple" "dimples"; -- from DictEng -lin dimple_V = mkV "dimple" "dimples" "dimpled" "dimpled" "dimpling"; -- from DictEng -lin dimple_V2 = mkV2 (mkV "dimple" "dimples" "dimpled" "dimpled" "dimpling"); -- from DictEng -lin dimwit_N = mkN "dimwit" ; -lin din_N = mkN "din" ; -- from DictEng -lin din_V = mkV "din" "dins" "dinned" "dinned" "dinning"; -- from DictEng -lin din_V2 = mkV2 (mkV "din" "dins" "dinned" "dinned" "dinning"); -- from DictEng -lin dinar_N = mkN "dinar" "dinars"; -- from DictEng -lin dine_V = mkV "dine" "dines" "dined" "dined" "dining"; -- from DictEng -lin dine_V2 = mkV2 (mkV "dine" "dines" "dined" "dined" "dining"); -- from DictEng -lin diner_N = mkN "diner" "diners"; -- from DictEng -lin dinette_N = mkN "dinette" ; -lin ding_N = mkN "ding" ; -lin ding_V = mkV "ding" ; -lin ding_V2 = mkV2 (mkV "ding") ; -lin ding_dong_N = mkN "ding - dong" "ding - dongs"; -- from DictEng -lin ding_dong_Adv = mkAdv "ding - dong"; -- from DictEng -lin ding_dong_N = mkN "ding - dong" "ding - dongs"; -- from DictEng -lin dingbat_N = mkN "dingbat" ; -lin dingdong_Adv = mkAdv "dingdong" ; -lin dinghy_N = mkN "dinghy" "dinghies"; -- from DictEng -lin dingily_Adv = mkAdv "dingily"; -- from DictEng -lin dinginess_N = mkN "dinginess" ; -- from DictEng -lin dingle_N = mkN "dingle" "dingles"; -- from DictEng -lin dingo_N = mkN "dingo" ; -lin dingy_A = mkA "dingy" "dingier"; -- from DictEng -lin dining_N = mkN "dining" ; -lin dining_hall_N = mkN "dining hall" ; -lin dining_car_N = mkN "dining - car" "dining - cars"; -- from DictEng -lin dining_room_N = mkN "dining - room" "dining - rooms"; -- from DictEng -lin dining_table_N = mkN "dining - table" "dining - tables"; -- from DictEng -lin dinky_A = mkA "dinky" "dinkier"; -- from DictEng -lin dinky_N = mkN "dinky" ; -lin dinner_N = mkN "dinner" "dinners"; -- from DictEng -lin dinner_jacket_N = mkN "dinner - jacket" "dinner - jackets"; -- from DictEng -lin dinner_party_N = mkN "dinner - party" "dinner - parties"; -- from DictEng -lin dinner_service_N = mkN "dinner - service" "dinner - services"; -- from DictEng -lin dinner_set_N = mkN "dinner - set" "dinner - sets"; -- from DictEng -lin dinnertime_N = mkN "dinnertime" ; -lin dinnerware_N = mkN "dinnerware" ; -lin dinoceras_N = mkN "dinoceras" ; -lin dinocerate_N = mkN "dinocerate" ; -lin dinoflagellate_N = mkN "dinoflagellate" ; -lin dinosaur_N = mkN "dinosaur" "dinosaurs"; -- from DictEng -lin dint_N = mkN "dint" "dints"; -- from DictEng -lin diocesan_A = compoundA (mkA "diocesan"); -- from DictEng -lin diocesan_N = mkN "diocesan" "diocesans"; -- from DictEng -lin diocese_N = mkN "diocese" "dioceses"; -- from DictEng -lin diode_N = mkN "diode" ; -lin dioecious_A = mkA "dioecious" ; -lin diol_N = mkN "diol" ; -lin dioon_N = mkN "dioon" ; -lin diopter_N = mkN "diopter" ; -lin diorite_N = mkN "diorite" ; -lin dioxide_N = mkN "dioxide" "dioxides"; -- from DictEng -lin dioxin_N = mkN "dioxin" ; -lin dip_N = mkN "dip" ; -- from DictEng -lin dip_V = mkV "dip" "dips" "dipped" "dipped" "dipping"; -- from DictEng -lin dip_V2 = mkV2 (mkV "dip" "dips" "dipped" "dipped" "dipping"); -- from DictEng -lin dip_ed_N = mkN "dip ed" ; -- from DictEng -lin diphenhydramine_N = mkN "diphenhydramine" ; -lin diphenylhydantoin_N = mkN "diphenylhydantoin" ; -lin diphtheria_N = mkN "diphtheria" ; -- from DictEng -lin diphthong_N = mkN "diphthong" "diphthongs"; -- from DictEng -lin diplegia_N = mkN "diplegia" ; -lin diplococcus_N = mkN "diplococcus" ; -lin diplodocus_N = mkN "diplodocus" ; -lin diploid_A = mkA "diploid" ; -lin diploid_N = mkN "diploid" ; -lin diploidy_N = mkN "diploidy" ; -lin diploma_N = mkN "diploma" "diplomas"; -- from DictEng -lin diplomacy_N = mkN "diplomacy" ; -- from DictEng -lin diplomat_N = mkN "diplomat" "diplomats"; -- from DictEng -lin diplomate_N = mkN "diplomate" ; -lin diplomatic_A = compoundA (mkA "diplomatic"); -- from DictEng -lin diplomatically_Adv = mkAdv "diplomatically"; -- from DictEng -lin diplomatist_N = mkN "diplomatist" "diplomatists"; -- from DictEng -lin diplopia_N = mkN "diplopia" ; -lin diplotene_N = mkN "diplotene" ; -lin dipolar_A = mkA "dipolar" ; -lin dipole_N = mkN "dipole" ; -lin dipped_A = mkA "dipped" ; -lin dipper_N = mkN "dipper" "dippers"; -- from DictEng -lin dipsomania_N = mkN "dipsomania" ; -- from DictEng -lin dipsomaniac_N = mkN "dipsomaniac" "dipsomaniacs"; -- from DictEng -lin dipstick_N = mkN "dipstick" "dipsticks"; -- from DictEng -lin dipterocarp_N = mkN "dipterocarp" ; -lin dipterous_A = mkA "dipterous" ; -lin diptych_N = mkN "diptych" "diptychs"; -- from DictEng -lin dir_N = mkN "dir" ; -- from DictEng -lin dire_A = mkA "dire" "direr"; -- from DictEng -lin direct_A = compoundA (mkA "direct"); -- from DictEng -lin direct_Adv = mkAdv "direct"; -- from DictEng -lin direct_V = mkV "direct" "directs" "directed" "directed" "directing"; -- from DictEng -lin direct_V2 = mkV2 (mkV "direct" "directs" "directed" "directed" "directing"); -- from DictEng -lin direct_VS = mkVS (mkV "direct" "directs" "directed" "directed" "directing"); -- from DictEng -lin directed_A = mkA "directed" ; -lin directing_A = mkA "directing" ; -lin direction_N = mkN "direction" "directions"; -- from DictEng -lin direction_finder_N = mkN "direction - finder" "direction - finders"; -- from DictEng -lin directional_A = compoundA (mkA "directional"); -- from DictEng -lin directionality_N = mkN "directionality" ; -lin directive_N = mkN "directive" "directives"; -- from DictEng -lin directivity_N = mkN "directivity" ; -lin directly_Adv = mkAdv "directly" ; -lin directness_N = mkN "directness" ; -- from DictEng -lin director_N = mkN "director" "directors"; -- from DictEng -lin directorate_N = mkN "directorate" "directorates"; -- from DictEng -lin directorship_N = mkN "directorship" "directorships"; -- from DictEng -lin directory_N = mkN "directory" "directories"; -- from DictEng -lin direful_A = compoundA (mkA "direful"); -- from DictEng -lin direfully_Adv = mkAdv "direfully" ; -lin dirge_N = mkN "dirge" "dirges"; -- from DictEng -lin dirigible_N = mkN "dirigible" "dirigibles"; -- from DictEng -lin dirk_N = mkN "dirk" "dirks"; -- from DictEng -lin dirndl_N = mkN "dirndl" "dirndls"; -- from DictEng -lin dirt_A = mkA "dirt" ; -lin dirt_N = mkN "dirt" ; -- from DictEng -lin dirt_cheap_A = compoundA (mkA "dirt - cheap"); -- from DictEng -lin dirt_track_N = mkN "dirt - track" "dirt - tracks"; -- from DictEng -lin dirtily_Adv = mkAdv "dirtily"; -- from DictEng -lin dirtiness_N = mkN "dirtiness" ; -lin dirty_A = mkA "dirty" "dirtier"; -- from DictEng -lin dirty_V = mkV "dirty" "dirties" "dirtied" "dirtied" "dirtying"; -- from DictEng -lin dirty_V2 = mkV2 (mkV "dirty" "dirties" "dirtied" "dirtied" "dirtying"); -- from DictEng -lin dirty_faced_A = compoundA (mkA "dirty faced") ; -lin dirty_minded_A = compoundA (mkA "dirty minded") ; -lin disa_N = mkN "disa" ; -lin disability_N = mkN "disability" "disabilities"; -- from DictEng -lin disable_V2 = mkV2 (mkV "disable" "disables" "disabled" "disabled" "disabling"); -- from DictEng -lin disabled_A = mkA "disabled" ; -lin disabled_N = mkN "disabled" ; -lin disablement_N = mkN "disablement" "disablements"; -- from DictEng -lin disabling_A = mkA "disabling" ; -lin disabuse_V2 = mkV2 (mkV "disabuse" "disabuses" "disabused" "disabused" "disabusing"); -- from DictEng -lin disabused_A = mkA "disabused" ; -lin disaccharidase_N = mkN "disaccharidase" ; -lin disaccharide_N = mkN "disaccharide" ; -lin disadvantage_N = mkN "disadvantage" "disadvantages"; -- from DictEng -lin disadvantageous_A = compoundA (mkA "disadvantageous"); -- from DictEng -lin disaffected_A = compoundA (mkA "disaffected"); -- from DictEng -lin disaffection_N = mkN "disaffection" ; -- from DictEng -lin disafforest_V2 = mkV2 (mkV "disafforest" "disafforests" "disafforested" "disafforested" "disafforesting"); -- from DictEng -lin disagree_V = mkV "disagree"; -- from DictEng -lin disagree_V2 = mkV2 (mkV "disagree" "disagrees" "disagreed" "disagreed" "disagreeing"); -- from DictEng -lin disagree_VS = mkVS (mkV "disagree"); -- from DictEng -lin disagreeable_A = compoundA (mkA "disagreeable"); -- from DictEng -lin disagreeableness_N = mkN "disagreeableness" ; -- from DictEng -lin disagreeably_Adv = mkAdv "disagreeably" ; -lin disagreement_N = mkN "disagreement" "disagreements"; -- from DictEng -lin disallow_V2 = mkV2 (mkV "disallow" "disallows" "disallowed" "disallowed" "disallowing"); -- from DictEng -lin disambiguation_N = mkN "disambiguation" ; -lin disambiguator_N = mkN "disambiguator" ; -lin disappear_V = mkV "disappear" "disappears" "disappeared" "disappeared" "disappearing"; -- from DictEng -lin disappearance_N = mkN "disappearance" "disappearances"; -- from DictEng -lin disappoint_V2 = mkV2 (mkV "disappoint" "disappoints" "disappointed" "disappointed" "disappointing"); -- from DictEng -lin disappointed_A = compoundA (mkA "disappointed"); -- from DictEng -lin disappointedly_Adv = mkAdv "disappointedly" ; -lin disappointing_A = compoundA (mkA "disappointing"); -- from DictEng -lin disappointingly_Adv = mkAdv "disappointingly" ; -lin disappointment_N = mkN "disappointment" "disappointments"; -- from DictEng -lin disapprobation_N = mkN "disapprobation" ; -- from DictEng -lin disapproval_N = mkN "disapproval" ; -- from DictEng -lin disapprove_V = mkV "disapprove" "disapproves" "disapproved" "disapproved" "disapproving"; -- from DictEng -lin disapprove_V2 = mkV2 (mkV "disapprove" "disapproves" "disapproved" "disapproved" "disapproving"); -- from DictEng -lin disapproving_A = mkA "disapproving" ; -lin disapprovingly_Adv = mkAdv "disapprovingly"; -- from DictEng -lin disarm_V = mkV "disarm" "disarms" "disarmed" "disarmed" "disarming"; -- from DictEng -lin disarm_V2 = mkV2 (mkV "disarm" "disarms" "disarmed" "disarmed" "disarming"); -- from DictEng -lin disarmament_N = mkN "disarmament" ; -- from DictEng -lin disarming_A = mkA "disarming" ; -lin disarming_N = mkN "disarming" ; -lin disarrange_V2 = mkV2 (mkV "disarrange" "disarranges" "disarranged" "disarranged" "disarranging"); -- from DictEng -lin disarranged_A = mkA "disarranged" ; -lin disarrangement_N = mkN "disarrangement" "disarrangements"; -- from DictEng -lin disarray_N = mkN "disarray" ; -- from DictEng -lin disarray_V2 = mkV2 (mkV "disarray" "disarrays" "disarrayed" "disarrayed" "disarraying"); -- from DictEng -lin disarrayed_A = mkA "disarrayed" ; -lin disassemble_V2 = mkV2 (mkV "disassemble") ; -lin disassociate_V = mkV "disassociate" ; -lin disassociate_V2 = mkV2 (mkV "disassociate" "disassociates" "disassociated" "disassociated" "disassociating"); -- from DictEng -lin disassociation_N = mkN "disassociation" ; -lin disaster_N = mkN "disaster" "disasters"; -- from DictEng -lin disastrous_A = compoundA (mkA "disastrous"); -- from DictEng -lin disastrously_Adv = mkAdv "disastrously" ; -lin disavow_V2 = mkV2 (mkV "disavow" "disavows" "disavowed" "disavowed" "disavowing"); -- from DictEng -lin disavowable_A = mkA "disavowable" ; -lin disavowal_N = mkN "disavowal" "disavowals"; -- from DictEng -lin disband_V = mkV "disband" "disbands" "disbanded" "disbanded" "disbanding"; -- from DictEng -lin disband_V2 = mkV2 (mkV "disband" "disbands" "disbanded" "disbanded" "disbanding"); -- from DictEng -lin disbandment_N = mkN "disbandment" "disbandments"; -- from DictEng -lin disbarment_N = mkN "disbarment" ; -lin disbelief_N = mkN "disbelief" ; -- from DictEng -lin disbelieve_V = mkV "disbelieve" "disbelieves" "disbelieved" "disbelieved" "disbelieving"; -- from DictEng -lin disbelieve_V2 = mkV2 (mkV "disbelieve" "disbelieves" "disbelieved" "disbelieved" "disbelieving"); -- from DictEng -lin disbeliever_N = mkN "disbeliever" ; -lin disbelieving_A = mkA "disbelieving" ; -lin disbelievingly_Adv = mkAdv "disbelievingly"; -- from DictEng -lin disbud_V2 = mkV2 (mkV "disbud" "disbuds" "disbudded" "disbudded" "disbudding"); -- from DictEng -lin disburden_V2 = mkV2 (mkV "disburden" "disburdens" "disburdened" "disburdened" "disburdening"); -- from DictEng -lin disburse_V = mkV "disburse" "disburses" "disbursed" "disbursed" "disbursing"; -- from DictEng -lin disburse_V2 = mkV2 (mkV "disburse" "disburses" "disbursed" "disbursed" "disbursing"); -- from DictEng -lin disbursement_N = mkN "disbursement" "disbursements"; -- from DictEng -lin disc_N = mkN "disc" "discs"; -- from DictEng -lin discalced_A = mkA "discalced" ; -lin discard_N = mkN "discard" "discards"; -- from DictEng -lin discard_V2 = mkV2 (mkV "discard" "discards" "discarded" "discarded" "discarding"); -- from DictEng -lin discern_V2 = mkV2 (mkV "discern" "discerns" "discerned" "discerned" "discerning"); -- from DictEng -lin discernability_N = mkN "discernability" ; -lin discernible_A = compoundA (mkA "discernible"); -- from DictEng -lin discerning_A = compoundA (mkA "discerning"); -- from DictEng -lin discernment_N = mkN "discernment" ; -- from DictEng -lin discharge_N = mkN "discharge" "discharges"; -- from DictEng -lin discharge_V = mkV "discharge" "discharges" "discharged" "discharged" "discharging"; -- from DictEng -lin discharge_V2 = mkV2 (mkV "discharge" "discharges" "discharged" "discharged" "discharging"); -- from DictEng -lin discharged_A = mkA "discharged" ; -lin disciform_A = mkA "disciform" ; -lin discina_N = mkN "discina" ; -lin disciple_N = mkN "disciple" "disciples"; -- from DictEng -lin discipleship_N = mkN "discipleship" ; -lin disciplinarian_N = mkN "disciplinarian" "disciplinarians"; -- from DictEng -lin disciplinary_A = compoundA (mkA "disciplinary"); -- from DictEng -lin discipline_N = mkN "discipline" "disciplines"; -- from DictEng -lin discipline_V2 = mkV2 (mkV "discipline" "disciplines" "disciplined" "disciplined" "disciplining"); -- from DictEng -lin disciplined_A = mkA "disciplined" ; -lin disclaim_V2 = mkV2 (mkV "disclaim" "disclaims" "disclaimed" "disclaimed" "disclaiming"); -- from DictEng -lin disclaim_VS = mkVS (mkV "disclaim"); -- from DictEng -lin disclaimer_N = mkN "disclaimer" "disclaimers"; -- from DictEng -lin disclose_V = mkV "disclose"; -- from DictEng -lin disclose_V2 = mkV2 (mkV "disclose" "discloses" "disclosed" "disclosed" "disclosing"); -- from DictEng -lin disclose_VS = mkVS (mkV "disclose"); -- from DictEng -lin disclosed_A = mkA "disclosed" ; -lin disclosure_N = mkN "disclosure" "disclosures"; -- from DictEng -lin disco_N = mkN "disco" "discos"; -- from DictEng -lin discography_N = mkN "discography" ; -lin discoid_A = mkA "discoid" ; -lin discoloration_N = mkN "discoloration" ; -lin discolour_V = mkV "discolour" "discolours" "discoloured" "discoloured" "discolouring"; -- from DictEng -lin discolour_V2 = mkV2 (mkV "discolour" "discolours" "discoloured" "discoloured" "discolouring"); -- from DictEng -lin discolouration_N = mkN "discolouration" "discolourations"; -- from DictEng -lin discombobulate_V2 = mkV2 (mkV "discombobulate") ; -lin discombobulated_A = mkA "discombobulated" ; -lin discomfit_V2 = mkV2 (mkV "discomfit" "discomfits" "discomfited" "discomfited" "discomfiting"); -- from DictEng -lin discomfiture_N = mkN "discomfiture" ; -- from DictEng -lin discomfort_N = mkN "discomfort" "discomforts"; -- from DictEng -lin discommode_V2 = mkV2 (mkV "discommode" "discommodes" "discommoded" "discommoded" "discommoding"); -- from DictEng -lin discompose_V2 = mkV2 (mkV "discompose" "discomposes" "discomposed" "discomposed" "discomposing"); -- from DictEng -lin discomposed_A = mkA "discomposed" ; -lin discomposure_N = mkN "discomposure" ; -- from DictEng -lin discomycete_N = mkN "discomycete" ; -lin discomycetous_A = mkA "discomycetous" ; -lin disconcert_V2 = mkV2 (mkV "disconcert" "disconcerts" "disconcerted" "disconcerted" "disconcerting"); -- from DictEng -lin disconcerting_A = mkA "disconcerting" ; -lin disconcertingly_Adv = mkAdv "disconcertingly"; -- from DictEng -lin disconfirming_A = mkA "disconfirming" ; -lin disconnect_V2 = mkV2 (mkV "disconnect" "disconnects" "disconnected" "disconnected" "disconnecting"); -- from DictEng -lin disconnected_A = compoundA (mkA "disconnected"); -- from DictEng -lin disconnection_N = mkN "disconnection" ; -lin disconsolate_A = compoundA (mkA "disconsolate"); -- from DictEng -lin discontent_N = mkN "discontent" "discontents"; -- from DictEng -lin discontent_V2 = mkV2 (mkV "discontent" "discontents" "discontented" "discontented" "discontenting"); -- from DictEng -lin discontented_A = mkA "discontented" ; -lin discontentedly_Adv = mkAdv "discontentedly"; -- from DictEng -lin discontentment_N = mkN "discontentment" ; -lin discontinuance_N = mkN "discontinuance" "discontinuances"; -- from DictEng -lin discontinue_V = mkV "discontinue" "discontinues" "discontinued" "discontinued" "discontinuing"; -- from DictEng -lin discontinue_V2 = mkV2 (mkV "discontinue" "discontinues" "discontinued" "discontinued" "discontinuing"); -- from DictEng -lin discontinued_A = mkA "discontinued" ; -lin discontinuity_N = mkN "discontinuity" "discontinuities"; -- from DictEng -lin discontinuous_A = compoundA (mkA "discontinuous"); -- from DictEng -lin discord_N = mkN "discord" "discords"; -- from DictEng -lin discordance_N = mkN "discordance" ; -- from DictEng -lin discordant_A = compoundA (mkA "discordant"); -- from DictEng -lin discordantly_Adv = mkAdv "discordantly" ; -lin discorporate_A = mkA "discorporate" ; -lin discotheque_N = mkN "discotheque" "discotheques"; -- from DictEng -lin discount_N = mkN "discount" "discounts"; -- from DictEng -lin discount_V = mkV "discount"; -- from DictEng -lin discount_V2 = mkV2 (mkV "discount" "discounts" "discounted" "discounted" "discounting"); -- from DictEng -lin discountenance_V2 = mkV2 (mkV "discountenance" "discountenances" "discountenanced" "discountenanced" "discountenancing"); -- from DictEng -lin discourage_V2 = mkV2 (mkV "discourage" "discourages" "discouraged" "discouraged" "discouraging"); -- from DictEng -lin discouraged_A = mkA "discouraged" ; -lin discouragement_N = mkN "discouragement" "discouragements"; -- from DictEng -lin discouraging_A = mkA "discouraging" ; -lin discouragingly_Adv = mkAdv "discouragingly" ; -lin discourse_N = mkN "discourse" "discourses"; -- from DictEng -lin discourse_V = mkV "discourse" "discourses" "discoursed" "discoursed" "discoursing"; -- from DictEng -lin discourteous_A = compoundA (mkA "discourteous"); -- from DictEng -lin discourtesy_N = mkN "discourtesy" "discourtesies"; -- from DictEng -lin discover_V = mkV "discover" "discovers" "discovered" "discovered" "discovering"; -- from DictEng -lin discover_V2 = mkV2 (mkV "discover" "discovers" "discovered" "discovered" "discovering"); -- from DictEng -lin discover_V2V = mkV2V (mkV "discover" "discovers" "discovered" "discovered" "discovering") noPrep to_Prep ; -- from DictEng -lin discover_VS = mkVS (mkV "discover" "discovers" "discovered" "discovered" "discovering"); -- from DictEng -lin discoverer_N = mkN "discoverer" "discoverers"; -- from DictEng -lin discovery_N = mkN "discovery" "discoveries"; -- from DictEng -lin discredit_N = mkN "discredit" ; -- from DictEng -lin discredit_V2 = mkV2 (mkV "discredit" "discredits" "discredited" "discredited" "discrediting"); -- from DictEng -lin discreditable_A = compoundA (mkA "discreditable"); -- from DictEng -lin discredited_A = mkA "discredited" ; -lin discreet_A = compoundA (mkA "discreet"); -- from DictEng -lin discreetly_Adv = mkAdv "discreetly" ; -lin discrepancy_N = mkN "discrepancy" "discrepancies"; -- from DictEng -lin discrepant_A = mkA "discrepant" ; -lin discrete_A = compoundA (mkA "discrete"); -- from DictEng -lin discreteness_N = mkN "discreteness" ; -- from DictEng -lin discretion_N = mkN "discretion" ; -- from DictEng -lin discretionary_A = compoundA (mkA "discretionary"); -- from DictEng -lin discriminable_A = mkA "discriminable" ; -lin discriminate_A = mkA "discriminate" ; -lin discriminate_V = mkV "discriminate" "discriminates" "discriminated" "discriminated" "discriminating"; -- from DictEng -lin discriminate_V2 = mkV2 (mkV "discriminate" "discriminates" "discriminated" "discriminated" "discriminating"); -- from DictEng -lin discriminating_A = compoundA (mkA "discriminating"); -- from DictEng -lin discrimination_N = mkN "discrimination" ; -- from DictEng -lin discriminative_A = mkA "discriminative" ; -lin discriminatory_A = compoundA (mkA "discriminatory"); -- from DictEng -lin discursive_A = compoundA (mkA "discursive"); -- from DictEng -lin discursively_Adv = mkAdv "discursively" ; -lin discursiveness_N = mkN "discursiveness" ; -- from DictEng -lin discus_N = mkN "discus" "discuses"; -- from DictEng -lin discuss_V2 = mkV2 (mkV "discuss" "discusses" "discussed" "discussed" "discussing"); -- from DictEng -lin discuss_VS = mkVS (mkV "discuss"); -- from DictEng -lin discussant_N = mkN "discussant" ; -lin discussion_N = mkN "discussion" "discussions"; -- from DictEng -lin disdain_N = mkN "disdain" ; -- from DictEng -lin disdain_V2 = mkV2 (mkV "disdain" "disdains" "disdained" "disdained" "disdaining"); -- from DictEng -lin disdainful_A = compoundA (mkA "disdainful"); -- from DictEng -lin disdainfully_Adv = mkAdv "disdainfully" ; -lin disease_N = mkN "disease" "diseases"; -- from DictEng -lin diseased_A = compoundA (mkA "diseased"); -- from DictEng -lin disembark_V = mkV "disembark" "disembarks" "disembarked" "disembarked" "disembarking"; -- from DictEng -lin disembark_V2 = mkV2 (mkV "disembark" "disembarks" "disembarked" "disembarked" "disembarking"); -- from DictEng -lin disembarkation_N = mkN "disembarkation" "disembarkations"; -- from DictEng -lin disembarrass_V2 = mkV2 (mkV "disembarrass" "disembarrasses" "disembarrassed" "disembarrassed" "disembarrassing"); -- from DictEng -lin disembarrassment_N = mkN "disembarrassment" "disembarrassments"; -- from DictEng -lin disembody_V2 = mkV2 (mkV "disembody" "disembodies" "disembodied" "disembodied" "disembodying"); -- from DictEng -lin disembowel_V2 = mkV2 (mkV "disembowel" "disembowels" "disembowelled" "disembowelled" "disembowelling"); -- from DictEng -lin disembowelment_N = mkN "disembowelment" ; -lin disenchant_V2 = mkV2 (mkV "disenchant" "disenchants" "disenchanted" "disenchanted" "disenchanting"); -- from DictEng -lin disenchanted_A = mkA "disenchanted" ; -lin disenchanting_A = mkA "disenchanting" ; -lin disenchantment_N = mkN "disenchantment" "disenchantments"; -- from DictEng -lin disencumber_V2 = mkV2 (mkV "disencumber" "disencumbers" "disencumbered" "disencumbered" "disencumbering"); -- from DictEng -lin disenfranchise_V2 = mkV2 (mkV "disenfranchise" "disenfranchises" "disenfranchised" "disenfranchised" "disenfranchising"); -- from DictEng -lin disenfranchised_A = mkA "disenfranchised" ; -lin disenfranchisement_N = mkN "disenfranchisement" ; -lin disengage_V = mkV "disengage" "disengages" "disengaged" "disengaged" "disengaging"; -- from DictEng -lin disengage_V2 = mkV2 (mkV "disengage" "disengages" "disengaged" "disengaged" "disengaging"); -- from DictEng -lin disengagement_N = mkN "disengagement" "disengagements"; -- from DictEng -lin disentangle_V = mkV "disentangle" "disentangles" "disentangled" "disentangled" "disentangling"; -- from DictEng -lin disentangle_V2 = mkV2 (mkV "disentangle" "disentangles" "disentangled" "disentangled" "disentangling"); -- from DictEng -lin disentangled_A = mkA "disentangled" ; -lin disentanglement_N = mkN "disentanglement" "disentanglements"; -- from DictEng -lin disentangler_N = mkN "disentangler" ; -lin disequilibrium_N = mkN "disequilibrium" ; -- from DictEng -lin disestablish_V2 = mkV2 (mkV "disestablish" "disestablishes" "disestablished" "disestablished" "disestablishing"); -- from DictEng -lin disestablishment_N = mkN "disestablishment" ; -- from DictEng -lin disesteem_N = mkN "disesteem" ; -lin disfavor_N = mkN "disfavor" ; -lin disfavour_N = mkN "disfavour" ; -- from DictEng -lin disfavour_V2 = mkV2 (mkV "disfavour" "disfavours" "disfavoured" "disfavoured" "disfavouring"); -- from DictEng -lin disfigure_V2 = mkV2 (mkV "disfigure" "disfigures" "disfigured" "disfigured" "disfiguring"); -- from DictEng -lin disfigured_A = mkA "disfigured" ; -lin disfigurement_N = mkN "disfigurement" "disfigurements"; -- from DictEng -lin disfluency_N = mkN "disfluency" ; -lin disforest_V2 = mkV2 (mkV "disforest" "disforests" "disforested" "disforested" "disforesting"); -- from DictEng -lin disfranchise_V2 = mkV2 (mkV "disfranchise" "disfranchises" "disfranchised" "disfranchised" "disfranchising"); -- from DictEng -lin disfranchisement_N = mkN "disfranchisement" ; -- from DictEng -lin disgorge_V2 = mkV2 (mkV "disgorge" "disgorges" "disgorged" "disgorged" "disgorging"); -- from DictEng -lin disgrace_N = mkN "disgrace" ; -- from DictEng -lin disgrace_V2 = mkV2 (mkV "disgrace" "disgraces" "disgraced" "disgraced" "disgracing"); -- from DictEng -lin disgraceful_A = compoundA (mkA "disgraceful"); -- from DictEng -lin disgracefully_Adv = mkAdv "disgracefully" ; -lin disgruntle_V2 = mkV2 (mkV "disgruntle") ; -lin disgruntled_A = compoundA (mkA "disgruntled"); -- from DictEng -lin disgruntlement_N = mkN "disgruntlement" ; -lin disguise_N = mkN "disguise" "disguises"; -- from DictEng -lin disguise_V2 = mkV2 (mkV "disguise" "disguises" "disguised" "disguised" "disguising"); -- from DictEng -lin disgust_N = mkN "disgust" ; -- from DictEng -lin disgust_V2 = mkV2 (mkV "disgust" "disgusts" "disgusted" "disgusted" "disgusting"); -- from DictEng -lin disgusted_A = mkA "disgusted" ; -lin disgustedly_Adv = mkAdv "disgustedly"; -- from DictEng -lin disgusting_A = compoundA (mkA "disgusting"); -- from DictEng -lin disgustingly_Adv = mkAdv "disgustingly" ; -lin disgustingness_N = mkN "disgustingness" ; -lin dish_N = mkN "dish" "dishes"; -- from DictEng -lin dish_V2 = mkV2 (mkV "dish" "dishes" "dished" "dished" "dishing"); -- from DictEng -lin dishabille_N = mkN "dishabille" ; -- from DictEng -lin disharmonious_A = compoundA (mkA "disharmonious"); -- from DictEng -lin disharmony_N = mkN "disharmony" ; -- from DictEng -lin dishcloth_N = mkN "dishcloth" "dishcloths"; -- from DictEng -lin dishearten_V2 = mkV2 (mkV "dishearten" "disheartens" "disheartened" "disheartened" "disheartening"); -- from DictEng -lin disheartenment_N = mkN "disheartenment" ; -lin dished_A = mkA "dished" ; -lin disheveled_A = mkA "disheveled" ; -lin dishevelled_A = compoundA (mkA "dishevelled"); -- from DictEng -lin dishful_N = mkN "dishful" "dishfuls"; -- from DictEng -lin dishonest_A = compoundA (mkA "dishonest"); -- from DictEng -lin dishonestly_Adv = mkAdv "dishonestly" ; -lin dishonesty_N = mkN "dishonesty" "dishonesties"; -- from DictEng -lin dishonor_N = mkN "dishonor" ; -lin dishonorable_A = mkA "dishonorable" ; -lin dishonorableness_N = mkN "dishonorableness" ; -lin dishonorably_Adv = mkAdv "dishonorably" ; -lin dishonour_N = mkN "dishonour" ; -- from DictEng -lin dishonour_V2 = mkV2 (mkV "dishonour" "dishonours" "dishonoured" "dishonoured" "dishonouring"); -- from DictEng -lin dishonourable_A = compoundA (mkA "dishonourable"); -- from DictEng -lin dishpan_N = mkN "dishpan" ; -lin dishrag_N = mkN "dishrag" ; -lin dishtowel_N = mkN "dishtowel" ; -lin dishwasher_N = mkN "dishwasher" "dishwashers"; -- from DictEng -lin dishwashing_N = mkN "dishwashing" ; -lin dishwater_N = mkN "dishwater" ; -- from DictEng -lin dishy_A = mkA "dishy" "dishier"; -- from DictEng -lin disillusion_N = mkN "disillusion" ; -- from DictEng -lin disillusion_V2 = mkV2 (mkV "disillusion" "disillusions" "disillusioned" "disillusioned" "disillusioning"); -- from DictEng -lin disillusioned_A = mkA "disillusioned" ; -lin disillusionment_N = mkN "disillusionment" "disillusionments"; -- from DictEng -lin disincentive_N = mkN "disincentive" "disincentives"; -- from DictEng -lin disinclination_N = mkN "disinclination" "disinclinations"; -- from DictEng -lin disincline_V2 = mkV2 (mkV "disincline" "disinclines" "disinclined" "disinclined" "disinclining"); -- from DictEng -lin disincline_V2V = mkV2V (mkV "disincline") noPrep to_Prep ; -- from DictEng -lin disinclined_A = mkA "disinclined" ; -lin disinfect_V2 = mkV2 (mkV "disinfect" "disinfects" "disinfected" "disinfected" "disinfecting"); -- from DictEng -lin disinfectant_A = compoundA (mkA "disinfectant"); -- from DictEng -lin disinfectant_N = mkN "disinfectant" "disinfectants"; -- from DictEng -lin disinfection_N = mkN "disinfection" ; -- from DictEng -lin disinfest_V2 = mkV2 (mkV "disinfest" "disinfests" "disinfested" "disinfested" "disinfesting"); -- from DictEng -lin disinfestation_N = mkN "disinfestation" ; -- from DictEng -lin disinflation_N = mkN "disinflation" ; -- from DictEng -lin disinformation_N = mkN "disinformation" ; -lin disingenuous_A = compoundA (mkA "disingenuous"); -- from DictEng -lin disingenuously_Adv = mkAdv "disingenuously" ; -lin disingenuousness_N = mkN "disingenuousness" ; -- from DictEng -lin disinherit_V2 = mkV2 (mkV "disinherit" "disinherits" "disinherited" "disinherited" "disinheriting"); -- from DictEng -lin disinheritance_N = mkN "disinheritance" ; -- from DictEng -lin disinherited_A = mkA "disinherited" ; -lin disintegrate_V = mkV "disintegrate" "disintegrates" "disintegrated" "disintegrated" "disintegrating"; -- from DictEng -lin disintegrate_V2 = mkV2 (mkV "disintegrate" "disintegrates" "disintegrated" "disintegrated" "disintegrating"); -- from DictEng -lin disintegration_N = mkN "disintegration" "disintegrations"; -- from DictEng -lin disintegrative_A = mkA "disintegrative" ; -lin disinter_V2 = mkV2 (mkV "disinter" "disinters" "disinterred" "disinterred" "disinterring"); -- from DictEng -lin disinterest_N = mkN "disinterest" ; -lin disinterested_A = compoundA (mkA "disinterested"); -- from DictEng -lin disinterestedly_Adv = mkAdv "disinterestedly" ; -lin disinterestedness_N = mkN "disinterestedness" ; -- from DictEng -lin disinterment_N = mkN "disinterment" "disinterments"; -- from DictEng -lin disinvestment_N = mkN "disinvestment" ; -lin disjoined_A = mkA "disjoined" ; -lin disjoint_A = mkA "disjoint" ; -lin disjoint_V2 = mkV2 (mkV "disjoint" "disjoints" "disjointed" "disjointed" "disjointing"); -- from DictEng -lin disjointed_A = compoundA (mkA "disjointed"); -- from DictEng -lin disjointedly_Adv = mkAdv "disjointedly" ; -lin disjointedness_N = mkN "disjointedness" ; -- from DictEng -lin disjunct_A = mkA "disjunct" ; -lin disjunction_N = mkN "disjunction" ; -lin disjunctive_A = compoundA (mkA "disjunctive"); -- from DictEng -lin disk_N = mkN "disk" "disks"; -- from DictEng -lin diskette_N = mkN "diskette" ; -lin dislikable_A = mkA "dislikable" ; -lin dislike_N = mkN "dislike" "dislikes"; -- from DictEng -lin dislike_V2 = mkV2 (mkV "dislike" "dislikes" "disliked" "disliked" "disliking"); -- from DictEng -lin disliked_A = mkA "disliked" ; -lin dislocate_V2 = mkV2 (mkV "dislocate" "dislocates" "dislocated" "dislocated" "dislocating"); -- from DictEng -lin dislocation_N = mkN "dislocation" "dislocations"; -- from DictEng -lin dislodge_V2 = mkV2 (mkV "dislodge" "dislodges" "dislodged" "dislodged" "dislodging"); -- from DictEng -lin dislodgement_N = mkN "dislodgement" "dislodgements"; -- from DictEng -lin dislodgment_N = mkN "dislodgment" ; -lin disloyal_A = compoundA (mkA "disloyal"); -- from DictEng -lin disloyally_Adv = mkAdv "disloyally" ; -lin disloyalty_N = mkN "disloyalty" "disloyalties"; -- from DictEng -lin dismal_A = compoundA (mkA "dismal"); -- from DictEng -lin dismally_Adv = mkAdv "dismally" ; -lin dismantle_V2 = mkV2 (mkV "dismantle" "dismantles" "dismantled" "dismantled" "dismantling"); -- from DictEng -lin dismantlement_N = mkN "dismantlement" ; -- from DictEng -lin dismantling_N = mkN "dismantling" ; -lin dismay_N = mkN "dismay" ; -- from DictEng -lin dismay_V = mkV "dismay"; -- from DictEng -lin dismay_V2 = mkV2 (mkV "dismay" "dismays" "dismayed" "dismayed" "dismaying"); -- from DictEng -lin dismember_V2 = mkV2 (mkV "dismember" "dismembers" "dismembered" "dismembered" "dismembering"); -- from DictEng -lin dismemberment_N = mkN "dismemberment" "dismemberments"; -- from DictEng -lin dismiss_V2 = mkV2 (mkV "dismiss" "dismisses" "dismissed" "dismissed" "dismissing"); -- from DictEng -lin dismissal_N = mkN "dismissal" "dismissals"; -- from DictEng -lin dismissible_A = mkA "dismissible" ; -lin dismissive_A = mkA "dismissive" ; -lin dismount_N = mkN "dismount" ; -lin dismount_V = mkV "dismount" "dismounts" "dismounted" "dismounted" "dismounting"; -- from DictEng -lin dismount_V2 = mkV2 (mkV "dismount" "dismounts" "dismounted" "dismounted" "dismounting"); -- from DictEng -lin dismounted_A = compoundA (mkA "dismounted"); -- from DictEng -lin disobedience_N = mkN "disobedience" ; -- from DictEng -lin disobedient_A = compoundA (mkA "disobedient"); -- from DictEng -lin disobediently_Adv = mkAdv "disobediently" ; -lin disobey_V2 = mkV2 (mkV "disobey" "disobeys" "disobeyed" "disobeyed" "disobeying"); -- from DictEng -lin disoblige_V2 = mkV2 (mkV "disoblige" "disobliges" "disobliged" "disobliged" "disobliging"); -- from DictEng -lin disobliging_A = mkA "disobliging" ; -lin disorder_N = mkN "disorder" "disorders"; -- from DictEng -lin disorder_V2 = mkV2 (mkV "disorder" "disorders" "disordered" "disordered" "disordering"); -- from DictEng -lin disordered_A = mkA "disordered" ; -lin disorderliness_N = mkN "disorderliness" ; -lin disorderly_A = compoundA (mkA "disorderly"); -- from DictEng -lin disorganization_N = mkN "disorganization" ; -- from DictEng -lin disorganize_V2 = mkV2 (mkV "disorganize" "disorganizes" "disorganized" "disorganized" "disorganizing"); -- from DictEng -lin disorganized_A = mkA "disorganized" ; -lin disorient_V2 = mkV2 (mkV "disorient" "disorients" "disoriented" "disoriented" "disorienting"); -- from DictEng -lin disorientate_V2 = mkV2 (mkV "disorientate" "disorientates" "disorientated" "disorientated" "disorientating"); -- from DictEng -lin disorientation_N = mkN "disorientation" ; -lin disorienting_A = mkA "disorienting" ; -lin disown_V2 = mkV2 (mkV "disown" "disowns" "disowned" "disowned" "disowning"); -- from DictEng -lin disownment_N = mkN "disownment" ; -lin disparage_V2 = mkV2 (mkV "disparage" "disparages" "disparaged" "disparaged" "disparaging"); -- from DictEng -lin disparagement_N = mkN "disparagement" "disparagements"; -- from DictEng -lin disparagingly_Adv = mkAdv "disparagingly"; -- from DictEng -lin disparate_A = compoundA (mkA "disparate"); -- from DictEng -lin disparateness_N = mkN "disparateness" ; -lin disparity_N = mkN "disparity" "disparities"; -- from DictEng -lin dispassion_N = mkN "dispassion" ; -lin dispassionate_A = compoundA (mkA "dispassionate"); -- from DictEng -lin dispassionately_Adv = mkAdv "dispassionately" ; -lin dispassionateness_N = mkN "dispassionateness" ; -- from DictEng -lin dispatch_N = mkN "dispatch" "dispatches"; -- from DictEng -lin dispatch_V2 = mkV2 (mkV "dispatch" "dispatches" "dispatched" "dispatched" "dispatching"); -- from DictEng -lin dispatch_V2V = mkV2V (mkV "dispatch") noPrep to_Prep ; -- from DictEng -lin dispatch_box_N = mkN "dispatch - box" "dispatch - boxes"; -- from DictEng -lin dispatch_rider_N = mkN "dispatch - rider" "dispatch - riders"; -- from DictEng -lin dispatcher_N = mkN "dispatcher" ; -lin dispel_V2 = mkV2 (mkV "dispel" "dispels" "dispelled" "dispelled" "dispelling"); -- from DictEng -lin dispensability_N = mkN "dispensability" ; -lin dispensable_A = compoundA (mkA "dispensable"); -- from DictEng -lin dispensary_N = mkN "dispensary" "dispensaries"; -- from DictEng -lin dispensation_N = mkN "dispensation" "dispensations"; -- from DictEng -lin dispense_V = mkV "dispense" "dispenses" "dispensed" "dispensed" "dispensing"; -- from DictEng -lin dispense_V2 = mkV2 (mkV "dispense" "dispenses" "dispensed" "dispensed" "dispensing"); -- from DictEng -lin dispensed_A = mkA "dispensed" ; -lin dispenser_N = mkN "dispenser" "dispensers"; -- from DictEng -lin dispersal_N = mkN "dispersal" "dispersals"; -- from DictEng -lin disperse_V = mkV "disperse" "disperses" "dispersed" "dispersed" "dispersing"; -- from DictEng -lin disperse_V2 = mkV2 (mkV "disperse" "disperses" "dispersed" "dispersed" "dispersing"); -- from DictEng -lin dispersed_A = mkA "dispersed" ; -lin dispersion_N = mkN "dispersion" "dispersions"; -- from DictEng -lin dispirit_V2 = mkV2 (mkV "dispirit" "dispirits" "dispirited" "dispirited" "dispiriting"); -- from DictEng -lin dispirited_A = mkA "dispirited" ; -lin dispiritedly_Adv = mkAdv "dispiritedly"; -- from DictEng -lin displace_V2 = mkV2 (mkV "displace" "displaces" "displaced" "displaced" "displacing"); -- from DictEng -lin displacement_N = mkN "displacement" "displacements"; -- from DictEng -lin display_N = mkN "display" "displays"; -- from DictEng -lin display_V2 = mkV2 (mkV "display" "displays" "displayed" "displayed" "displaying"); -- from DictEng -lin display_VS = mkVS (mkV "display"); -- from DictEng -lin displease_V2 = mkV2 (mkV "displease" "displeases" "displeased" "displeased" "displeasing"); -- from DictEng -lin displeased_A = mkA "displeased" ; -lin displeasing_A = compoundA (mkA "displeasing"); -- from DictEng -lin displeasingly_Adv = mkAdv "displeasingly" ; -lin displeasure_N = mkN "displeasure" ; -- from DictEng -lin disport_V2 = mkV2 (mkV "disport" "disports" "disported" "disported" "disporting"); -- from DictEng -lin disposable_A = compoundA (mkA "disposable"); -- from DictEng -lin disposable_N = mkN "disposable" ; -lin disposal_N = mkN "disposal" ; -- from DictEng -lin dispose_V = mkV "dispose" "disposes" "disposed" "disposed" "disposing"; -- from DictEng -lin dispose_V2 = mkV2 (mkV "dispose" "disposes" "disposed" "disposed" "disposing"); -- from DictEng -lin disposed_A = mkA "disposed" ; -lin disposition_N = mkN "disposition" "dispositions"; -- from DictEng -lin dispossess_V2 = mkV2 (mkV "dispossess" "dispossesses" "dispossessed" "dispossessed" "dispossessing"); -- from DictEng -lin dispossessed_A = mkA "dispossessed" ; -lin dispossession_N = mkN "dispossession" "dispossessions"; -- from DictEng -lin disprefer_V2 = mkV2 (mkV "disprefer") ; -lin disproof_N = mkN "disproof" "disproofs"; -- from DictEng -lin disproportion_N = mkN "disproportion" ; -- from DictEng -lin disproportionate_A = compoundA (mkA "disproportionate"); -- from DictEng -lin disproportionately_Adv = mkAdv "disproportionately" ; -lin disprove_V2 = mkV2 (mkV "disprove" "disproves" "disproved" "disproved" "disproving"); -- from DictEng -lin disprove_VS = mkVS (mkV "disprove"); -- from DictEng -lin disputable_A = compoundA (mkA "disputable"); -- from DictEng -lin disputant_N = mkN "disputant" "disputants"; -- from DictEng -lin disputation_N = mkN "disputation" "disputations"; -- from DictEng -lin disputatious_A = compoundA (mkA "disputatious"); -- from DictEng -lin disputatiously_Adv = mkAdv "disputatiously" ; -lin dispute_N = mkN "dispute" "disputes"; -- from DictEng -lin dispute_V = mkV "dispute" "disputes" "disputed" "disputed" "disputing"; -- from DictEng -lin dispute_V2 = mkV2 (mkV "dispute" "disputes" "disputed" "disputed" "disputing"); -- from DictEng -lin disputed_A = mkA "disputed" ; -lin disqualification_N = mkN "disqualification" "disqualifications"; -- from DictEng -lin disqualified_A = mkA "disqualified" ; -lin disqualify_V2 = mkV2 (mkV "disqualify" "disqualifies" "disqualified" "disqualified" "disqualifying"); -- from DictEng -lin disquiet_N = mkN "disquiet" ; -- from DictEng -lin disquiet_V2 = mkV2 (mkV "disquiet" "disquiets" "disquieted" "disquieted" "disquieting"); -- from DictEng -lin disquieted_A = mkA "disquieted" ; -lin disquieting_A = compoundA (mkA "disquieting"); -- from DictEng -lin disquietingly_Adv = mkAdv "disquietingly" ; -lin disquietude_N = mkN "disquietude" ; -- from DictEng -lin disquisition_N = mkN "disquisition" "disquisitions"; -- from DictEng -lin disregard_N = mkN "disregard" ; -- from DictEng -lin disregard_V2 = mkV2 (mkV "disregard" "disregards" "disregarded" "disregarded" "disregarding"); -- from DictEng -lin disregarded_A = mkA "disregarded" ; -lin disrepair_N = mkN "disrepair" ; -- from DictEng -lin disreputable_A = compoundA (mkA "disreputable"); -- from DictEng -lin disreputably_Adv = mkAdv "disreputably" ; -lin disrepute_N = mkN "disrepute" ; -- from DictEng -lin disrespect_N = mkN "disrespect" ; -- from DictEng -lin disrespectful_A = compoundA (mkA "disrespectful"); -- from DictEng -lin disrespectfully_Adv = mkAdv "disrespectfully" ; -lin disrobe_V = mkV "disrobe" "disrobes" "disrobed" "disrobed" "disrobing"; -- from DictEng -lin disrobe_V2 = mkV2 (mkV "disrobe" "disrobes" "disrobed" "disrobed" "disrobing"); -- from DictEng -lin disrupt_V = mkV "disrupt"; -- from DictEng -lin disrupt_V2 = mkV2 (mkV "disrupt" "disrupts" "disrupted" "disrupted" "disrupting"); -- from DictEng -lin disrupted_A = mkA "disrupted" ; -lin disruption_N = mkN "disruption" "disruptions"; -- from DictEng -lin disruptive_A = compoundA (mkA "disruptive"); -- from DictEng -lin disruptively_Adv = mkAdv "disruptively" ; -lin dissatisfaction_N = mkN "dissatisfaction" ; -- from DictEng -lin dissatisfy_V2 = mkV2 (mkV "dissatisfy" "dissatisfies" "dissatisfied" "dissatisfied" "dissatisfying"); -- from DictEng -lin dissect_V2 = mkV2 (mkV "dissect" "dissects" "dissected" "dissected" "dissecting"); -- from DictEng -lin dissection_N = mkN "dissection" "dissections"; -- from DictEng -lin dissemble_V = mkV "dissemble" "dissembles" "dissembled" "dissembled" "dissembling"; -- from DictEng -lin dissemble_V2 = mkV2 (mkV "dissemble" "dissembles" "dissembled" "dissembled" "dissembling"); -- from DictEng -lin dissembler_N = mkN "dissembler" "dissemblers"; -- from DictEng -lin disseminate_V = mkV "disseminate"; -- from DictEng -lin disseminate_V2 = mkV2 (mkV "disseminate" "disseminates" "disseminated" "disseminated" "disseminating"); -- from DictEng -lin dissemination_N = mkN "dissemination" ; -- from DictEng -lin dissension_N = mkN "dissension" "dissensions"; -- from DictEng -lin dissent_N = mkN "dissent" ; -- from DictEng -lin dissent_V = mkV "dissent" "dissents" "dissented" "dissented" "dissenting"; -- from DictEng -lin dissenter_N = mkN "dissenter" "dissenters"; -- from DictEng -lin dissentient_A = mkA "dissentient" ; -lin dissentious_A = mkA "dissentious" ; -lin dissertation_N = mkN "dissertation" "dissertations"; -- from DictEng -lin disservice_N = mkN "disservice" "disservices"; -- from DictEng -lin dissever_V2 = mkV2 (mkV "dissever" "dissevers" "dissevered" "dissevered" "dissevering"); -- from DictEng -lin dissidence_N = mkN "dissidence" ; -- from DictEng -lin dissident_A = compoundA (mkA "dissident"); -- from DictEng -lin dissident_N = mkN "dissident" "dissidents"; -- from DictEng -lin dissilience_N = mkN "dissilience" ; -lin dissilient_A = mkA "dissilient" ; -lin dissimilar_A = compoundA (mkA "dissimilar"); -- from DictEng -lin dissimilarity_N = mkN "dissimilarity" "dissimilarities"; -- from DictEng -lin dissimilation_N = mkN "dissimilation" ; -lin dissimilitude_N = mkN "dissimilitude" ; -- from DictEng -lin dissimulate_V = mkV "dissimulate" "dissimulates" "dissimulated" "dissimulated" "dissimulating"; -- from DictEng -lin dissimulate_V2 = mkV2 (mkV "dissimulate" "dissimulates" "dissimulated" "dissimulated" "dissimulating"); -- from DictEng -lin dissimulation_N = mkN "dissimulation" "dissimulations"; -- from DictEng -lin dissimulative_A = mkA "dissimulative" ; -lin dissipate_V = mkV "dissipate" "dissipates" "dissipated" "dissipated" "dissipating"; -- from DictEng -lin dissipate_V2 = mkV2 (mkV "dissipate" "dissipates" "dissipated" "dissipated" "dissipating"); -- from DictEng -lin dissipated_A = compoundA (mkA "dissipated"); -- from DictEng -lin dissipation_N = mkN "dissipation" ; -- from DictEng -lin dissociable_A = mkA "dissociable" ; -lin dissociate_V2 = mkV2 (mkV "dissociate" "dissociates" "dissociated" "dissociated" "dissociating"); -- from DictEng -lin dissociation_N = mkN "dissociation" ; -- from DictEng -lin dissociative_A = mkA "dissociative" ; -lin dissolubility_N = mkN "dissolubility" ; -- from DictEng -lin dissoluble_A = compoundA (mkA "dissoluble"); -- from DictEng -lin dissolute_A = compoundA (mkA "dissolute"); -- from DictEng -lin dissoluteness_N = mkN "dissoluteness" ; -lin dissolution_N = mkN "dissolution" "dissolutions"; -- from DictEng -lin dissolvable_A = mkA "dissolvable" ; -lin dissolve_N = mkN "dissolve" ; -lin dissolve_V = mkV "dissolve" "dissolves" "dissolved" "dissolved" "dissolving"; -- from DictEng -lin dissolve_V2 = mkV2 (mkV "dissolve" "dissolves" "dissolved" "dissolved" "dissolving"); -- from DictEng -lin dissolved_A = mkA "dissolved" ; -lin dissolving_N = mkN "dissolving" ; -lin dissonance_N = mkN "dissonance" "dissonances"; -- from DictEng -lin dissonant_A = compoundA (mkA "dissonant"); -- from DictEng -lin dissuade_V2 = mkV2 (mkV "dissuade" "dissuades" "dissuaded" "dissuaded" "dissuading"); -- from DictEng -lin dissuasion_N = mkN "dissuasion" ; -- from DictEng -lin dissuasive_A = mkA "dissuasive" ; -lin dissyllable_N = mkN "dissyllable" "dissyllables"; -- from DictEng -lin distaff_N = mkN "distaff" "distaffs"; -- from DictEng -lin distal_A = mkA "distal" ; -lin distally_Adv = mkAdv "distally" ; -lin distance_N = mkN "distance" "distances"; -- from DictEng -lin distance_V2 = mkV2 (mkV "distance" "distances" "distanced" "distanced" "distancing"); -- from DictEng -lin distant_A = compoundA (mkA "distant"); -- from DictEng -lin distantly_Adv = mkAdv "distantly" ; -lin distaste_N = mkN "distaste" "distastes"; -- from DictEng -lin distasteful_A = compoundA (mkA "distasteful"); -- from DictEng -lin distastefully_Adv = mkAdv "distastefully" ; -lin distastefulness_N = mkN "distastefulness" ; -- from DictEng -lin distemper_N = mkN "distemper" ; -- from DictEng -lin distemper_V2 = mkV2 (mkV "distemper" "distempers" "distempered" "distempered" "distempering"); -- from DictEng -lin distend_V = mkV "distend" "distends" "distended" "distended" "distending"; -- from DictEng -lin distend_V2 = mkV2 (mkV "distend" "distends" "distended" "distended" "distending"); -- from DictEng -lin distensible_A = mkA "distensible" ; -lin distension_N = mkN "distension" "distensions"; -- from DictEng -lin distention_N = mkN "distention" ; -lin distil_V = mkV "distil" "distils" "distilled" "distilled" "distilling"; -- from DictEng -lin distil_V2 = mkV2 (mkV "distil" "distils" "distilled" "distilled" "distilling"); -- from DictEng -lin distillate_N = mkN "distillate" ; -lin distillation_N = mkN "distillation" "distillations"; -- from DictEng -lin distiller_N = mkN "distiller" "distillers"; -- from DictEng -lin distillery_N = mkN "distillery" "distilleries"; -- from DictEng -lin distinct_A = compoundA (mkA "distinct"); -- from DictEng -lin distinction_N = mkN "distinction" "distinctions"; -- from DictEng -lin distinctive_A = compoundA (mkA "distinctive"); -- from DictEng -lin distinctively_Adv = mkAdv "distinctively" ; -lin distinctiveness_N = mkN "distinctiveness" ; -- from DictEng -lin distinctly_Adv = mkAdv "distinctly" ; -lin distinctness_N = mkN "distinctness" ; -- from DictEng -lin distinguish_V = mkV "distinguish" "distinguishes" "distinguished" "distinguished" "distinguishing"; -- from DictEng -lin distinguish_V2 = mkV2 (mkV "distinguish" "distinguishes" "distinguished" "distinguished" "distinguishing"); -- from DictEng -lin distinguishable_A = compoundA (mkA "distinguishable"); -- from DictEng -lin distinguished_A = compoundA (mkA "distinguished"); -- from DictEng -lin distort_V2 = mkV2 (mkV "distort" "distorts" "distorted" "distorted" "distorting"); -- from DictEng -lin distortable_A = mkA "distortable" ; -lin distorted_A = mkA "distorted" ; -lin distortion_N = mkN "distortion" "distortions"; -- from DictEng -lin distortionist_N = mkN "distortionist" ; -lin distract_V = mkV "distract"; -- from DictEng -lin distract_V2 = mkV2 (mkV "distract" "distracts" "distracted" "distracted" "distracting"); -- from DictEng -lin distracted_A = compoundA (mkA "distracted"); -- from DictEng -lin distractedly_Adv = mkAdv "distractedly" ; -lin distraction_N = mkN "distraction" "distractions"; -- from DictEng -lin distrain_V = mkV "distrain" "distrains" "distrained" "distrained" "distraining"; -- from DictEng -lin distraint_N = mkN "distraint" "distraints"; -- from DictEng -lin distrait_A = compoundA (mkA "distrait"); -- from DictEng -lin distraught_A = compoundA (mkA "distraught"); -- from DictEng -lin distress_N = mkN "distress" ; -- from DictEng -lin distress_V2 = mkV2 (mkV "distress" "distresses" "distressed" "distressed" "distressing"); -- from DictEng -lin distressed_A = mkA "distressed" ; -lin distressful_A = compoundA (mkA "distressful"); -- from DictEng -lin distressfully_Adv = mkAdv "distressfully" ; -lin distressing_A = compoundA (mkA "distressing"); -- from DictEng -lin distributary_N = mkN "distributary" ; -lin distribute_V2 = mkV2 (mkV "distribute" "distributes" "distributed" "distributed" "distributing"); -- from DictEng -lin distributed_A = mkA "distributed" ; -lin distribution_N = mkN "distribution" "distributions"; -- from DictEng -lin distributional_A = mkA "distributional" ; -lin distributive_A = compoundA (mkA "distributive"); -- from DictEng -lin distributively_Adv = mkAdv "distributively" ; -lin distributor_N = mkN "distributor" "distributors"; -- from DictEng -lin district_N = mkN "district" "districts"; -- from DictEng -lin distrust_N = mkN "distrust" "distrusts"; -- from DictEng -lin distrust_V2 = mkV2 (mkV "distrust" "distrusts" "distrusted" "distrusted" "distrusting"); -- from DictEng -lin distrustful_A = compoundA (mkA "distrustful"); -- from DictEng -lin distrustfully_Adv = mkAdv "distrustfully" ; -lin distrustfulness_N = mkN "distrustfulness" ; -- from DictEng -lin disturb_V2 = mkV2 (mkV "disturb" "disturbs" "disturbed" "disturbed" "disturbing"); -- from DictEng -lin disturbance_N = mkN "disturbance" "disturbances"; -- from DictEng -lin disturbed_A = mkA "disturbed" ; -lin disturber_N = mkN "disturber" ; -lin disturbingly_Adv = mkAdv "disturbingly"; -- from DictEng -lin disulfiram_N = mkN "disulfiram" ; -lin disunion_N = mkN "disunion" ; -- from DictEng -lin disunite_V = mkV "disunite" "disunites" "disunited" "disunited" "disuniting"; -- from DictEng -lin disunite_V2 = mkV2 (mkV "disunite" "disunites" "disunited" "disunited" "disuniting"); -- from DictEng -lin disunity_N = mkN "disunity" ; -- from DictEng -lin disuse_N = mkN "disuse" ; -- from DictEng -lin disused_A = compoundA (mkA "disused"); -- from DictEng -lin disyllabic_A = compoundA (mkA "disyllabic"); -- from DictEng -lin disyllable_N = mkN "disyllable" "disyllables"; -- from DictEng -lin dita_N = mkN "dita" ; -lin ditch_N = mkN "ditch" "ditches"; -- from DictEng -lin ditch_V = mkV "ditch" "ditches" "ditched" "ditched" "ditching"; -- from DictEng -lin ditch_V2 = mkV2 (mkV "ditch" "ditches" "ditched" "ditched" "ditching"); -- from DictEng -lin dither_N = mkN "dither" "dithers"; -- from DictEng -lin dither_V = mkV "dither" "dithers" "dithered" "dithered" "dithering"; -- from DictEng -lin dithering_N = mkN "dithering" ; -lin dithyramb_N = mkN "dithyramb" ; -lin dithyrambic_A = mkA "dithyrambic" ; -lin ditto_N = mkN "ditto" "ditti" {- FIXME: guessed plural form -}; -- from DictEng -lin ditty_N = mkN "ditty" "ditties"; -- from DictEng -lin diuresis_N = mkN "diuresis" ; -lin diurnal_A = compoundA (mkA "diurnal"); -- from DictEng -lin divagate_V = mkV "divagate" "divagates" "divagated" "divagated" "divagating"; -- from DictEng -lin divagation_N = mkN "divagation" "divagations"; -- from DictEng -lin divan_N = mkN "divan" "divans"; -- from DictEng -lin divan_bed_N = mkN "divan - bed" "divan - beds"; -- from DictEng -lin divarication_N = mkN "divarication" ; -lin dive_N = mkN "dive" "dives"; -- from DictEng -lin dive_V = mkV "dive" "dives" "dived" "dived" "diving"; -- from DictEng -lin dive_bombing_N = mkN "dive bombing" ; -lin dive_bomb_V = mkV "dive - bomb" "dive - bombs" "dive - bombed" "dive - bombed" "dive - bombing"; -- from DictEng -lin dive_bomb_V2 = mkV2 (mkV "dive - bomb" "dive - bombs" "dive - bombed" "dive - bombed" "dive - bombing"); -- from DictEng -lin dive_bomber_N = mkN "dive - bomber" "dive - bombers"; -- from DictEng -lin diver_N = mkN "diver" "divers"; -- from DictEng -lin diverge_V = mkV "diverge" "diverges" "diverged" "diverged" "diverging"; -- from DictEng -lin divergence_N = mkN "divergence" "divergences"; -- from DictEng -lin divergency_N = mkN "divergency" "divergencies"; -- from DictEng -lin divergent_A = compoundA (mkA "divergent"); -- from DictEng -lin divers_A = compoundA (mkA "divers"); -- from DictEng -lin diverse_A = compoundA (mkA "diverse"); -- from DictEng -lin diverseness_N = mkN "diverseness" ; -lin diversification_N = mkN "diversification" ; -- from DictEng -lin diversified_A = mkA "diversified" ; -lin diversify_V = mkV "diversify"; -- from DictEng -lin diversify_V2 = mkV2 (mkV "diversify" "diversifies" "diversified" "diversified" "diversifying"); -- from DictEng -lin diversion_N = mkN "diversion" "diversions"; -- from DictEng -lin diversionary_A = compoundA (mkA "diversionary"); -- from DictEng -lin diversionist_N = mkN "diversionist" "diversionists"; -- from DictEng -lin diversity_N = mkN "diversity" ; -- from DictEng -lin divert_V = mkV "divert"; -- from DictEng -lin divert_V2 = mkV2 (mkV "divert" "diverts" "diverted" "diverted" "diverting"); -- from DictEng -lin diverticulitis_N = mkN "diverticulitis" ; -lin diverticulosis_N = mkN "diverticulosis" ; -lin diverticulum_N = mkN "diverticulum" ; -lin divertimento_N = mkN "divertimento" ; -lin diverting_A = compoundA (mkA "diverting"); -- from DictEng -lin divest_V2 = mkV2 (mkV "divest" "divests" "divested" "divested" "divesting"); -- from DictEng -lin divestiture_N = mkN "divestiture" ; -lin divi_divi_N = mkN "divi divi" ; -lin dividable_A = mkA "dividable" ; -lin divide_N = mkN "divide" "divides"; -- from DictEng -lin divide_V = mkV "divide" "divides" "divided" "divided" "dividing"; -- from DictEng -lin divide_V2 = mkV2 (mkV "divide" "divides" "divided" "divided" "dividing"); -- from DictEng -lin divided_A = mkA "divided" ; -lin dividend_N = mkN "dividend" "dividends"; -- from DictEng -lin dividend_warrant_N = mkN "dividend - warrant" "dividend - warrants"; -- from DictEng -lin divider_N = mkN "divider" ; -lin divination_N = mkN "divination" "divinations"; -- from DictEng -lin divinatory_A = mkA "divinatory" ; -lin divine_A = compoundA (mkA "divine"); -- from DictEng -lin divine_N = mkN "divine" "divines"; -- from DictEng -lin divine_V = mkV "divine" "divines" "divined" "divined" "divining"; -- from DictEng -lin divine_V2 = mkV2 (mkV "divine" "divines" "divined" "divined" "divining"); -- from DictEng -lin divinely_Adv = mkAdv "divinely" ; -lin diviner_N = mkN "diviner" "diviners"; -- from DictEng -lin diving_N = mkN "diving" ; -lin diving_bell_N = mkN "diving - bell" "diving - bells"; -- from DictEng -lin diving_board_N = mkN "diving - board" "diving - boards"; -- from DictEng -lin diving_dress_N = mkN "diving - dress" ; -- from DictEng -lin diving_suit_N = mkN "diving - suit" "diving - suits"; -- from DictEng -lin divinity_N = mkN "divinity" "divinities"; -- from DictEng -lin divisibility_N = mkN "divisibility" ; -lin divisible_A = compoundA (mkA "divisible"); -- from DictEng -lin division_N = mkN "division" "divisions"; -- from DictEng -lin division_archaebacteria_PN = mkPN "division Archaebacteria" ; -lin division_eubacteria_PN = mkPN "division Eubacteria" ; -lin divisional_A = compoundA (mkA "divisional"); -- from DictEng -lin divisor_N = mkN "divisor" "divisors"; -- from DictEng -lin divorce_N = mkN "divorce" "divorces"; -- from DictEng -lin divorce_V = mkV "divorce" ; -lin divorce_V2 = mkV2 (mkV "divorce" "divorces" "divorced" "divorced" "divorcing"); -- from DictEng -lin divorced_A = mkA "divorced" ; -lin divorcee_N = mkN "divorcee" "divorcees"; -- from DictEng -lin divot_N = mkN "divot" "divots"; -- from DictEng -lin divulge_V2 = mkV2 (mkV "divulge" "divulges" "divulged" "divulged" "divulging"); -- from DictEng -lin divulgence_N = mkN "divulgence" "divulgences"; -- from DictEng -lin divvy_N = mkN "divvy" "divvies"; -- from DictEng -lin dixie_N = mkN "dixie" "dixies"; -- from DictEng -lin diy_N = mkN "diy" ; -- from DictEng -lin dizygotic_A = mkA "dizygotic" ; -lin dizzily_Adv = mkAdv "dizzily"; -- from DictEng -lin dizziness_N = mkN "dizziness" ; -- from DictEng -lin dizzy_A = mkA "dizzy" "dizzier"; -- from DictEng -lin dizzy_V2 = mkV2 (mkV "dizzy" "dizzies" "dizzied" "dizzied" "dizzying"); -- from DictEng -lin dj_N = mkN "dj" ; -- from DictEng -lin djiboutian_A = compoundA (mkA "djiboutian"); -- from DictEng -lin djiboutian_N = mkN "djiboutian" "djiboutians"; -- from DictEng -lin djinn_N = mkN "djinn" "djinns"; -- from DictEng -lin djs_N = mkN "DJ" "DJs" ; -- from DictEng -lin dlitt_N = mkN "dlitt" ; -- from DictEng -lin dm_N = mkN "dm" "dm"; -- from DictEng -lin dna_N = mkN "DNA" "DNAs" ; -- from DictEng -lin do_N = mkN "do" "di" {- FIXME: guessed plural form -}; -- from DictEng -lin do_V = IrregEng.do_V; -- from DictEng -lin do_V2 = mkV2 (IrregEng.do_V); -- from DictEng -lin do_it_yourself_A = compoundA (mkA "do it yourself") ; -lin do_nothing_A = compoundA (mkA "do nothing") ; -lin do_si_do_N = mkN "do si do" ; -lin do_gooder_N = mkN "do - gooder" "do - gooders"; -- from DictEng -lin dobbin_N = mkN "dobbin" "dobbins"; -- from DictEng -lin dobra_N = mkN "dobra" ; -lin dobson_N = mkN "dobson" ; -lin docent_N = mkN "docent" ; -lin docile_A = compoundA (mkA "docile"); -- from DictEng -lin docility_N = mkN "docility" ; -- from DictEng -lin dock_N = mkN "dock" "docks"; -- from DictEng -lin dock_V = mkV "dock" "docks" "docked" "docked" "docking"; -- from DictEng -lin dock_V2 = mkV2 (mkV "dock" "docks" "docked" "docked" "docking"); -- from DictEng -lin dockage_N = mkN "dockage" ; -lin docker_N = mkN "docker" "dockers"; -- from DictEng -lin docket_N = mkN "docket" "dockets"; -- from DictEng -lin docket_V2 = mkV2 (mkV "docket" "dockets" "docketed" "docketed" "docketing"); -- from DictEng -lin docking_N = mkN "docking" ; -lin dockside_N = mkN "dockside" ; -lin dockyard_N = mkN "dockyard" "dockyards"; -- from DictEng -lin doctor_N = mkN "doctor" "doctors"; -- from DictEng -lin doctor_V2 = mkV2 (mkV "doctor" "doctors" "doctored" "doctored" "doctoring"); -- from DictEng -lin doctoral_A = mkA "doctoral" ; -lin doctorate_N = mkN "doctorate" "doctorates"; -- from DictEng -lin doctorfish_N = mkN "doctorfish" ; -lin doctorspeak_N = mkN "doctorspeak" ; -lin doctrinaire_A = compoundA (mkA "doctrinaire"); -- from DictEng -lin doctrinaire_N = mkN "doctrinaire" "doctrinaires"; -- from DictEng -lin doctrinal_A = compoundA (mkA "doctrinal"); -- from DictEng -lin doctrinally_Adv = mkAdv "doctrinally" ; -lin doctrine_N = mkN "doctrine" "doctrines"; -- from DictEng -lin document_N = mkN "document" "documents"; -- from DictEng -lin document_V2 = mkV2 (mkV "document" "documents" "documented" "documented" "documenting"); -- from DictEng -lin documentary_A = compoundA (mkA "documentary"); -- from DictEng -lin documentary_N = mkN "documentary" ; -lin documentation_N = mkN "documentation" ; -- from DictEng -lin documented_A = mkA "documented" ; -lin dodder_N = mkN "dodder" ; -lin dodder_V = mkV "dodder" "dodders" "doddered" "doddered" "doddering"; -- from DictEng -lin dodder_V2 = mkV2 (mkV "dodder") ; -lin dodderer_N = mkN "dodderer" "dodderers"; -- from DictEng -lin doddering_A = compoundA (mkA "doddering"); -- from DictEng -lin doddery_A = compoundA (mkA "doddery"); -- from DictEng -lin doddle_N = mkN "doddle" ; -lin dodecagon_N = mkN "dodecagon" ; -lin dodecahedron_N = mkN "dodecahedron" ; -lin dodge_N = mkN "dodge" "dodges"; -- from DictEng -lin dodge_V = mkV "dodge" "dodges" "dodged" "dodged" "dodging"; -- from DictEng -lin dodge_V2 = mkV2 (mkV "dodge" "dodges" "dodged" "dodged" "dodging"); -- from DictEng -lin dodgem_N = mkN "dodgem" "dodgems"; -- from DictEng -lin dodger_N = mkN "dodger" "dodgers"; -- from DictEng -lin dodgy_A = compoundA (mkA "dodgy"); -- from DictEng -lin dodo_N = mkN "dodo" "dodos"; -- from DictEng -lin doe_N = mkN "doe" ; -- from DictEng -lin doer_N = mkN "doer" "doers"; -- from DictEng -lin doeskin_N = mkN "doeskin" ; -lin doff_V2 = mkV2 (mkV "doff" "doffs" "doffed" "doffed" "doffing"); -- from DictEng -lin dog_N = mkN "dog" "dogs"; -- from DictEng -lin dog_V2 = mkV2 (mkV "dog" "dogs" "dogged" "dogged" "dogging"); -- from DictEng -lin dog's_tooth_N = mkN "dog's - tooth" ; -- from DictEng -lin dog_ear_N = mkN "dog ear" ; -lin dog_eared_A = compoundA (mkA "dog - eared"); -- from DictEng -lin dog_sized_A = compoundA (mkA "dog sized") ; -lin dog_biscuit_N = mkN "dog - biscuit" "dog - biscuits"; -- from DictEng -lin dog_cart_N = mkN "dog - cart" "dog - carts"; -- from DictEng -lin dog_collar_N = mkN "dog - collar" "dog - collars"; -- from DictEng -lin dog_eared_A = compoundA (mkA "dog - eared"); -- from DictEng -lin dog_like_A = compoundA (mkA "dog - like"); -- from DictEng -lin dogbane_N = mkN "dogbane" ; -lin dogcart_N = mkN "dogcart" ; -lin doge_N = mkN "doge" "doges"; -- from DictEng -lin dogfight_N = mkN "dogfight" ; -lin dogfighter_N = mkN "dogfighter" ; -lin dogfish_N = mkN "dogfish" "dogfish"; -- from DictEng -lin dogged_A = compoundA (mkA "dogged"); -- from DictEng -lin doggedly_Adv = mkAdv "doggedly" ; -lin doggedness_N = mkN "doggedness" ; -- from DictEng -lin doggerel_N = mkN "doggerel" ; -- from DictEng -lin doggie_N = mkN "doggie" "doggies"; -- from DictEng -lin dogging_A = mkA "dogging" ; -lin doggo_Adv = mkAdv "doggo"; -- from DictEng -lin doggy_N = mkN "doggy" "doggies"; -- from DictEng -lin doghouse_N = mkN "doghouse" "doghouses"; -- from DictEng -lin dogie_N = mkN "dogie" ; -lin dogleg_N = mkN "dogleg" ; -lin doglike_A = mkA "doglike" ; -lin dogma_N = mkN "dogma" "dogmas"; -- from DictEng -lin dogmatic_A = compoundA (mkA "dogmatic"); -- from DictEng -lin dogmatically_Adv = mkAdv "dogmatically"; -- from DictEng -lin dogmatism_N = mkN "dogmatism" ; -- from DictEng -lin dogmatist_N = mkN "dogmatist" ; -lin dogmatize_V = mkV "dogmatize" "dogmatizes" "dogmatized" "dogmatized" "dogmatizing"; -- from DictEng -lin dogmatize_V2 = mkV2 (mkV "dogmatize" "dogmatizes" "dogmatized" "dogmatized" "dogmatizing"); -- from DictEng -lin dogsbody_N = mkN "dogsbody" "dogsbodies"; -- from DictEng -lin dogsled_N = mkN "dogsled" ; -lin dogsled_V2 = mkV2 (mkV "dogsled") ; -lin dogtooth_N = mkN "dogtooth" ; -- from DictEng -lin dogtrot_N = mkN "dogtrot" "dogtrots"; -- from DictEng -lin dogwatch_N = mkN "dogwatch" "dogwatches"; -- from DictEng -lin dogwood_N = mkN "dogwood" "dogwoods"; -- from DictEng -lin doh_N = mkN "doh" "dohs"; -- from DictEng -lin doily_N = mkN "doily" "doilies"; -- from DictEng -lin dol_N = mkN "dol" ; -lin dolabriform_A = mkA "dolabriform" ; -lin dolce_Adv = mkAdv "dolce" ; -lin doldrums_N = mkN "doldrums" ; -lin dole_N = mkN "dole" "doles"; -- from DictEng -lin dole_V2 = mkV2 (mkV "dole" "doles" "doled" "doled" "doling"); -- from DictEng -lin doleful_A = compoundA (mkA "doleful"); -- from DictEng -lin dolefully_Adv = mkAdv "dolefully" ; -lin dolefulness_N = mkN "dolefulness" ; -lin dolichocephalic_A = mkA "dolichocephalic" ; -lin dolichocephalic_N = mkN "dolichocephalic" ; -lin dolichocephaly_N = mkN "dolichocephaly" ; -lin doliolum_N = mkN "doliolum" ; -lin doll_N = mkN "doll" "dolls"; -- from DictEng -lin doll_V = mkV "doll" "dolls" "dolled" "dolled" "dolling"; -- from DictEng -lin doll_V2 = mkV2 (mkV "doll" "dolls" "dolled" "dolled" "dolling"); -- from DictEng -lin dollar_N = mkN "dollar" "dollars"; -- from DictEng -lin dollarfish_N = mkN "dollarfish" ; -lin dollhouse_N = mkN "dollhouse" ; -lin dollop_N = mkN "dollop" "dollops"; -- from DictEng -lin dolly_N = mkN "dolly" "dollies"; -- from DictEng -lin dolman_N = mkN "dolman" ; -lin dolmas_N = mkN "dolmas" ; -lin dolmen_N = mkN "dolmen" "dolmens"; -- from DictEng -lin dolomite_N = mkN "dolomite" ; -lin dolomitic_A = mkA "dolomitic" ; -lin dolor_N = mkN "dolor" ; -lin dolorous_A = mkA "dolorous" ; -lin dolour_N = mkN "dolour" "dolours"; -- from DictEng -lin dolourous_A = compoundA (mkA "dolourous"); -- from DictEng -lin dolphin_N = mkN "dolphin" "dolphins"; -- from DictEng -lin dolphinfish_N = mkN "dolphinfish" ; -lin dolt_N = mkN "dolt" "dolts"; -- from DictEng -lin doltish_A = compoundA (mkA "doltish"); -- from DictEng -lin domain_N = mkN "domain" "domains"; -- from DictEng -lin domatium_N = mkN "domatium" ; -lin dombeya_N = mkN "dombeya" ; -lin dome_N = mkN "dome" "domes"; -- from DictEng -lin dome_shaped_A = compoundA (mkA "dome shaped") ; -lin domed_A = compoundA (mkA "domed"); -- from DictEng -lin domestic_A = compoundA (mkA "domestic"); -- from DictEng -lin domestic_N = mkN "domestic" ; -lin domestically_Adv = mkAdv "domestically"; -- from DictEng -lin domesticate_V2 = mkV2 (mkV "domesticate" "domesticates" "domesticated" "domesticated" "domesticating"); -- from DictEng -lin domesticated_A = mkA "domesticated" ; -lin domestication_N = mkN "domestication" ; -- from DictEng -lin domesticity_N = mkN "domesticity" ; -- from DictEng -lin domicile_N = mkN "domicile" "domiciles"; -- from DictEng -lin domiciliary_A = compoundA (mkA "domiciliary"); -- from DictEng -lin dominance_N = mkN "dominance" ; -- from DictEng -lin dominant_A = compoundA (mkA "dominant"); -- from DictEng -lin dominant_N = mkN "dominant" ; -lin dominate_V = mkV "dominate" "dominates" "dominated" "dominated" "dominating"; -- from DictEng -lin dominate_V2 = mkV2 (mkV "dominate" "dominates" "dominated" "dominated" "dominating"); -- from DictEng -lin dominated_A = mkA "dominated" ; -lin domination_N = mkN "domination" ; -- from DictEng -lin dominatrix_N = mkN "dominatrix" ; -lin domineer_V = mkV "domineer" "domineers" "domineered" "domineered" "domineering"; -- from DictEng -lin domineering_A = compoundA (mkA "domineering"); -- from DictEng -lin domineeringly_Adv = mkAdv "domineeringly" ; -lin dominical_A = mkA "dominical" ; -lin dominican_A = compoundA (mkA "dominican"); -- from DictEng -lin dominican_N = mkN "dominican" "dominicans"; -- from DictEng -lin dominie_N = mkN "dominie" "dominies"; -- from DictEng -lin dominion_N = mkN "dominion" "dominions"; -- from DictEng -lin domino_N = mkN "domino" "dominos"; -- from DictEng -lin dominoes_N = mkN "dominoes" ; -lin dominus_N = mkN "dominus" ; -lin don_N = mkN "don" "dons"; -- from DictEng -lin don_V2 = mkV2 (mkV "don" "dons" "donned" "donned" "donning"); -- from DictEng -lin don't_know_N = mkN "don't - know" "don't - knows"; -- from DictEng -lin don't_know_N = mkN "don't - know" "don't - knows"; -- from DictEng -lin donate_V = mkV "donate"; -- from DictEng -lin donate_V2 = mkV2 (mkV "donate" "donates" "donated" "donated" "donating"); -- from DictEng -lin donation_N = mkN "donation" "donations"; -- from DictEng -lin done_A = mkA "done" ; -lin done_VA = mkVA (mkV "done"); -- from DictEng -lin done_for_A = compoundA (mkA "done for") ; -lin done_with_A = compoundA (mkA "done with") ; -lin dong_N = mkN "dong" ; -lin dong_V = mkV "dong" ; -lin dong_V2 = mkV2 (mkV "dong") ; -lin dongle_N = mkN "dongle" ; -lin donjon_N = mkN "donjon" "donjons"; -- from DictEng -lin donkey_N = mkN "donkey" "donkeys"; -- from DictEng -lin donkey_jacket_N = mkN "donkey - jacket" "donkey - jackets"; -- from DictEng -lin donkey_work_N = mkN "donkey - work" ; -- from DictEng -lin donna_N = mkN "donna" ; -lin donnish_A = compoundA (mkA "donnish"); -- from DictEng -lin donor_N = mkN "donor" "donors"; -- from DictEng -lin doo_wop_N = mkN "doo wop" ; -lin doodad_N = mkN "doodad" ; -lin doodia_N = mkN "doodia" ; -lin doodle_V = mkV "doodle" "doodles" "doodled" "doodled" "doodling"; -- from DictEng -lin doodle_V2 = mkV2 (mkV "doodle") ; -lin doodlebug_N = mkN "doodlebug" "doodlebugs"; -- from DictEng -lin doom_N = mkN "doom" "dooms"; -- from DictEng -lin doom_V2 = mkV2 (mkV "doom" "dooms" "doomed" "doomed" "dooming"); -- from DictEng -lin doomed_A = mkA "doomed" ; -lin doomed_N = mkN "doomed" ; -lin door_N = mkN "door" "doors"; -- from DictEng -lin door_to_door_A = compoundA (mkA "door - to - door"); -- from DictEng -lin door_to_door_A = compoundA (mkA "door - to - door"); -- from DictEng -lin doorbell_N = mkN "doorbell" "doorbells"; -- from DictEng -lin doorcase_N = mkN "doorcase" "doorcases"; -- from DictEng -lin doorframe_N = mkN "doorframe" "doorframes"; -- from DictEng -lin doorhandle_N = mkN "doorhandle" "doorhandles"; -- from DictEng -lin doorjamb_N = mkN "doorjamb" ; -lin doorkeeper_N = mkN "doorkeeper" "doorkeepers"; -- from DictEng -lin doorknob_N = mkN "doorknob" "doorknobs"; -- from DictEng -lin doorknocker_N = mkN "doorknocker" "doorknockers"; -- from DictEng -lin doorlock_N = mkN "doorlock" ; -lin doorman_N = mkN "doorman" "doormen" {- FIXME: guessed plural form -}; -- from DictEng -lin doormat_N = mkN "doormat" "doormats"; -- from DictEng -lin doornail_N = mkN "doornail" "doornails"; -- from DictEng -lin doorplate_N = mkN "doorplate" "doorplates"; -- from DictEng -lin doorpost_N = mkN "doorpost" "doorposts"; -- from DictEng -lin doorsill_N = mkN "doorsill" ; -lin doorstep_N = mkN "doorstep" "doorsteps"; -- from DictEng -lin doorstop_N = mkN "doorstop" ; -lin doorstopper_N = mkN "doorstopper" "doorstoppers"; -- from DictEng -lin doorway_N = mkN "doorway" "doorways"; -- from DictEng -lin dooryard_N = mkN "dooryard" ; -lin dopa_N = mkN "dopa" ; -lin dopamine_N = mkN "dopamine" ; -lin dope_N = mkN "dope" "dopes"; -- from DictEng -lin dope_V2 = mkV2 (mkV "dope" "dopes" "doped" "doped" "doping"); -- from DictEng -lin doped_A = mkA "doped" ; -lin dopey_A = compoundA (mkA "dopey"); -- from DictEng -lin doppelganger_N = mkN "doppelganger" ; -lin dorbeetle_N = mkN "dorbeetle" ; -lin doric_A = compoundA (mkA "doric"); -- from DictEng -lin dormancy_N = mkN "dormancy" ; -lin dormant_A = compoundA (mkA "dormant"); -- from DictEng -lin dormer_N = mkN "dormer" "dormers"; -- from DictEng -lin dormer_window_N = mkN "dormer - window" "dormer - windows"; -- from DictEng -lin dormie_A = mkA "dormie" ; -lin dormitory_N = mkN "dormitory" "dormitories"; -- from DictEng -lin dormouse_N = mkN "dormouse" "dormice" {- FIXME: guessed plural form -}; -- from DictEng -lin dorsal_A = compoundA (mkA "dorsal"); -- from DictEng -lin dorsally_Adv = mkAdv "dorsally" ; -lin dorsiflexion_N = mkN "dorsiflexion" ; -lin dorsoventral_A = mkA "dorsoventral" ; -lin dorsoventrally_Adv = mkAdv "dorsoventrally" ; -lin dorsum_N = mkN "dorsum" ; -lin dory_N = mkN "dory" "dories"; -- from DictEng -lin dosage_N = mkN "dosage" "dosages"; -- from DictEng -lin dose_N = mkN "dose" "doses"; -- from DictEng -lin dose_V2 = mkV2 (mkV "dose" "doses" "dosed" "dosed" "dosing"); -- from DictEng -lin dosed_A = mkA "dosed" ; -lin dosemeter_N = mkN "dosemeter" ; -lin dosimetry_N = mkN "dosimetry" ; -lin doss_V = mkV "doss" "dosses" "dossed" "dossed" "dossing"; -- from DictEng -lin doss_house_N = mkN "doss - house" "doss - houses"; -- from DictEng -lin dossal_N = mkN "dossal" ; -lin dosser_N = mkN "dosser" "dossers"; -- from DictEng -lin dossier_N = mkN "dossier" "dossiers"; -- from DictEng -lin dot_N = mkN "dot" "dots"; -- from DictEng -lin dot_V2 = mkV2 (mkV "dot" "dots" "dotted" "dotted" "dotting"); -- from DictEng -lin dot_com_A = compoundA (mkA "dot com") ; -lin dot_com_N = mkN "dot com" ; -lin dotage_N = mkN "dotage" ; -- from DictEng -lin dotard_N = mkN "dotard" "dotards"; -- from DictEng -lin dote_V = mkV "dote" "dotes" "doted" "doted" "doting"; -- from DictEng -lin dotted_A = mkA "dotted" ; -lin dotterel_N = mkN "dotterel" ; -lin dottle_N = mkN "dottle" "dottles"; -- from DictEng -lin dotty_A = mkA "dotty" "dottier"; -- from DictEng -lin double_A = compoundA (mkA "double"); -- from DictEng -lin double_Adv = mkAdv "double"; -- from DictEng -lin double_N = mkN "double" "doubles"; -- from DictEng -lin double_V = mkV "double" "doubles" "doubled" "doubled" "doubling"; -- from DictEng -lin double_V2 = mkV2 (mkV "double" "doubles" "doubled" "doubled" "doubling"); -- from DictEng -lin double_barreled_A = compoundA (mkA "double barreled") ; -lin double_bedded_A = compoundA (mkA "double - bedded"); -- from DictEng -lin double_bogey_N = mkN "double bogey" ; -lin double_breasted_A = compoundA (mkA "double - breasted"); -- from DictEng -lin double_chinned_A = compoundA (mkA "double chinned") ; -lin double_crosser_N = mkN "double crosser" ; -lin double_edged_A = compoundA (mkA "double - edged"); -- from DictEng -lin double_faced_A = compoundA (mkA "double - faced"); -- from DictEng -lin double_geared_A = compoundA (mkA "double geared") ; -lin double_jointed_A = compoundA (mkA "double - jointed"); -- from DictEng -lin double_prop_N = mkN "double prop" ; -lin double_quick_A = compoundA (mkA "double - quick"); -- from DictEng -lin double_spaced_A = compoundA (mkA "double spaced") ; -lin double_spacing_N = mkN "double - spacing" ; -- from DictEng -lin double_dutch_PN = mkPN "double Dutch" ; -lin double_gloucester_PN = mkPN "double Gloucester" ; -lin double_barrelled_A = compoundA (mkA "double - barrelled"); -- from DictEng -lin double_bass_N = mkN "double - bass" "double - basses"; -- from DictEng -lin double_bedded_A = compoundA (mkA "double - bedded"); -- from DictEng -lin double_breasted_A = compoundA (mkA "double - breasted"); -- from DictEng -lin double_check_V2 = mkV2 (mkV "double - check" "double - checks" "double - checked" "double - checked" "double - checking"); -- from DictEng -lin double_cross_N = mkN "double - cross" "double - crosses"; -- from DictEng -lin double_cross_V2 = mkV2 (mkV "double - cross" "double - crosses" "double - crossed" "double - crossed" "double - crossing"); -- from DictEng -lin double_dealer_N = mkN "double - dealer" "double - dealers"; -- from DictEng -lin double_dealing_A = compoundA (mkA "double - dealing"); -- from DictEng -lin double_dealing_N = mkN "double - dealing" ; -- from DictEng -lin double_decker_N = mkN "double - decker" "double - deckers"; -- from DictEng -lin double_dutch_N = mkN "double - dutch" ; -- from DictEng -lin double_dyed_A = compoundA (mkA "double - dyed"); -- from DictEng -lin double_edged_A = compoundA (mkA "double - edged"); -- from DictEng -lin double_entry_N = mkN "double - entry" "double - entries"; -- from DictEng -lin double_faced_A = compoundA (mkA "double - faced"); -- from DictEng -lin double_first_N = mkN "double - first" "double - firsts"; -- from DictEng -lin double_jointed_A = compoundA (mkA "double - jointed"); -- from DictEng -lin double_park_V = mkV "double - park" "double - parks" "double - parked" "double - parked" "double - parking"; -- from DictEng -lin double_park_V2 = mkV2 (mkV "double - park" "double - parks" "double - parked" "double - parked" "double - parking"); -- from DictEng -lin double_quick_A = compoundA (mkA "double - quick"); -- from DictEng -lin double_quick_Adv = mkAdv "double - quick"; -- from DictEng -lin double_spacing_N = mkN "double - spacing" ; -- from DictEng -lin double_talk_N = mkN "double - talk" ; -- from DictEng -lin double_think_N = mkN "double - think" ; -- from DictEng -lin double_time_Adv = mkAdv "double time" ; -lin doubler_N = mkN "doubler" ; -lin doubles_N = mkN "doubles" ; -lin doublespeak_N = mkN "doublespeak" ; -lin doublet_N = mkN "doublet" "doublets"; -- from DictEng -lin doublethink_N = mkN "doublethink" ; -lin doubleton_N = mkN "doubleton" ; -lin doubletree_N = mkN "doubletree" ; -lin doubling_N = mkN "doubling" ; -lin doubloon_N = mkN "doubloon" "doubloons"; -- from DictEng -lin doubly_Adv = mkAdv "doubly" ; -lin doubt_N = mkN "doubt" "doubts"; -- from DictEng -lin doubt_V2 = mkV2 (mkV "doubt" "doubts" "doubted" "doubted" "doubting"); -- from DictEng -lin doubt_VS = mkVS (mkV "doubt"); -- from DictEng -lin doubtful_A = compoundA (mkA "doubtful"); -- from DictEng -lin doubtfully_Adv = mkAdv "doubtfully" ; -lin doubting_A = mkA "doubting" ; -lin doubting_thomas_PN = mkPN "doubting Thomas" ; -lin doubtless_Adv = mkAdv "doubtless"; -- from DictEng -lin douche_N = mkN "douche" "douches"; -- from DictEng -lin dough_N = mkN "dough" ; -- from DictEng -lin doughboy_N = mkN "doughboy" ; -lin doughnut_N = mkN "doughnut" "doughnuts"; -- from DictEng -lin doughty_A = compoundA (mkA "doughty"); -- from DictEng -lin doughy_A = mkA "doughy" "doughier"; -- from DictEng -lin dour_A = compoundA (mkA "dour"); -- from DictEng -lin dourly_Adv = mkAdv "dourly" ; -lin douroucouli_N = mkN "douroucouli" ; -lin douse_V2 = mkV2 (mkV "douse" "douses" "doused" "doused" "dousing"); -- from DictEng -lin dove_N = mkN "dove" "doves"; -- from DictEng -lin dovecote_N = mkN "dovecote" "dovecotes"; -- from DictEng -lin dovetail_N = mkN "dovetail" "dovetails"; -- from DictEng -lin dovetail_V = mkV "dovetail" "dovetails" "dovetailed" "dovetailed" "dovetailing"; -- from DictEng -lin dovetail_V2 = mkV2 (mkV "dovetail" "dovetails" "dovetailed" "dovetailed" "dovetailing"); -- from DictEng -lin dovishness_N = mkN "dovishness" ; -lin dowager_N = mkN "dowager" "dowagers"; -- from DictEng -lin dowdily_Adv = mkAdv "dowdily"; -- from DictEng -lin dowdiness_N = mkN "dowdiness" ; -- from DictEng -lin dowdy_A = mkA "dowdy" "dowdier"; -- from DictEng -lin dowdy_N = mkN "dowdy" ; -lin dowel_N = mkN "dowel" "dowels"; -- from DictEng -lin doweling_N = mkN "doweling" ; -lin dower_N = mkN "dower" "dowers"; -- from DictEng -lin dower_V2 = mkV2 (mkV "dower" "dowers" "dowered" "dowered" "dowering"); -- from DictEng -lin dowered_A = mkA "dowered" ; -lin dowerless_A = mkA "dowerless" ; -lin dowitcher_N = mkN "dowitcher" ; -lin down_A = mkA "down" ; -lin down_Adv = mkAdv "down"; -- from DictEng -lin down_N = mkN "down" "downs"; -- from DictEng -lin down_Prep = mkPrep "down"; -- from DictEng -lin down_V2 = mkV2 (mkV "down" "downs" "downed" "downed" "downing"); -- from DictEng -lin down_and_out_A = compoundA (mkA "down and out") ; -lin down_and_out_N = mkN "down - and - out" "down - and - outs"; -- from DictEng -lin down_bow_N = mkN "down bow" ; -lin down_to_earth_A = compoundA (mkA "down - to - earth"); -- from DictEng -lin down_and_out_N = mkN "down - and - out" "down - and - outs"; -- from DictEng -lin down_market_A = compoundA (mkA "down - market"); -- from DictEng -lin down_to_earth_A = compoundA (mkA "down - to - earth"); -- from DictEng -lin downbeat_N = mkN "downbeat" "downbeats"; -- from DictEng -lin downbound_A = mkA "downbound" ; -lin downcast_A = compoundA (mkA "downcast"); -- from DictEng -lin downcast_N = mkN "downcast" ; -lin downdraft_N = mkN "downdraft" ; -lin downfall_N = mkN "downfall"; -- from DictEng -lin downfield_A = mkA "downfield" ; -lin downfield_Adv = mkAdv "downfield" ; -lin downgrade_N = mkN "downgrade" ; -lin downgrade_V2 = mkV2 (mkV "downgrade" "downgrades" "downgraded" "downgraded" "downgrading"); -- from DictEng -lin downhearted_A = compoundA (mkA "downhearted"); -- from DictEng -lin downheartedness_N = mkN "downheartedness" ; -lin downhill_Adv = mkAdv "downhill"; -- from DictEng -lin downhill_N = mkN "downhill" ; -lin downiness_N = mkN "downiness" ; -lin downmarket_A = mkA "downmarket" ; -lin downplay_V2 = mkV2 (mkV "downplay"); -- from DictEng -lin downpour_N = mkN "downpour" "downpours"; -- from DictEng -lin downright_A = compoundA (mkA "downright"); -- from DictEng -lin downright_Adv = mkAdv "downright"; -- from DictEng -lin downrightness_N = mkN "downrightness" ; -- from DictEng -lin downriver_Adv = mkAdv "downriver" ; -lin downscale_A = mkA "downscale" ; -lin downshift_N = mkN "downshift" ; -lin downside_N = mkN "downside" ; -lin downsize_V2 = mkV2 (mkV "downsize"); -- from DictEng -lin downspin_N = mkN "downspin" ; -lin downstage_A = mkA "downstage" ; -lin downstage_Adv = mkAdv "downstage" ; -lin downstage_N = mkN "downstage" ; -lin downstair_A = compoundA (mkA "downstair"); -- from DictEng -lin downstairs_A = compoundA (mkA "downstairs"); -- from DictEng -lin downstairs_Adv = mkAdv "downstairs"; -- from DictEng -lin downstream_A = compoundA (mkA "downstream"); -- from DictEng -lin downstream_Adv = mkAdv "downstream"; -- from DictEng -lin downstroke_N = mkN "downstroke" ; -lin downswing_N = mkN "downswing" ; -lin downtick_N = mkN "downtick" ; -lin downtime_N = mkN "downtime" ; -lin downtown_A = mkA "downtown" ; -lin downtown_Adv = mkAdv "downtown"; -- from DictEng -lin downtrodden_A = compoundA (mkA "downtrodden"); -- from DictEng -lin downturn_N = mkN "downturn" ; -lin downward_A = compoundA (mkA "downward"); -- from DictEng -lin downward_Adv = mkAdv "downward"; -- from DictEng -lin downward_arching_A = compoundA (mkA "downward arching") ; -lin downwards_Adv = mkAdv "downwards"; -- from DictEng -lin downwind_A = mkA "downwind" ; -lin downwind_Adv = mkAdv "downwind" ; -lin downy_A = compoundA (mkA "downy"); -- from DictEng -lin dowry_N = mkN "dowry" "dowries"; -- from DictEng -lin dowse_N = mkN "dowse" ; -lin dowse_V2 = mkV2 (mkV "dowse" "dowses" "dowsed" "dowsed" "dowsing"); -- from DictEng -lin dowser_N = mkN "dowser" "dowsers"; -- from DictEng -lin dowsing_N = mkN "dowsing" ; -- from DictEng -lin doxazosin_N = mkN "doxazosin" ; -lin doxepin_N = mkN "doxepin" ; -lin doxology_N = mkN "doxology" "doxologies"; -- from DictEng -lin doxorubicin_N = mkN "doxorubicin" ; -lin doxycycline_N = mkN "doxycycline" ; -lin doyen_N = mkN "doyen" "doyens"; -- from DictEng -lin doyenne_N = mkN "doyenne" ; -lin doyley_N = mkN "doyley" "doyleys"; -- from DictEng -lin doyly_N = mkN "doyly" "doylies"; -- from DictEng -lin doz_N = mkN "doz" "doz"; -- from DictEng -lin doze_N = mkN "doze" "dozes"; -- from DictEng -lin doze_V = mkV "doze" "dozes" "dozed" "dozed" "dozing"; -- from DictEng -lin doze_V2 = mkV2 (mkV "doze") ; -lin dozen_N = mkN "dozen" "dozens"; -- from DictEng -lin dphil_N = mkN "dphil" ; -- from DictEng -lin drab_A = mkA "drab" "drabber*"; -- from DictEng -lin draba_N = mkN "draba" ; -lin drably_Adv = mkAdv "drably" ; -lin drabness_N = mkN "drabness" ; -- from DictEng -lin dracaena_N = mkN "dracaena" ; -lin drachm_N = mkN "drachm" "drachms"; -- from DictEng -lin drachma_N = mkN "drachma" "drachmas"; -- from DictEng -lin draconian_A = compoundA (mkA "draconian"); -- from DictEng -lin dracontium_N = mkN "dracontium" ; -lin draft_N = mkN "draft" "drafts"; -- from DictEng -lin draft_V2 = mkV2 (mkV "draft" "drafts" "drafted" "drafted" "drafting"); -- from DictEng -lin draftee_N = mkN "draftee" "draftees"; -- from DictEng -lin drafter_N = mkN "drafter" ; -lin drafting_N = mkN "drafting" "draftings"; -- from DictEng -lin draftsman_N = mkN "draftsman" "draftsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin drafty_A = mkA "drafty" ; -lin drag_N = mkN "drag" ; -- from DictEng -lin drag_V = mkV "drag" "drags" "dragged" "dragged" "dragging"; -- from DictEng -lin drag_V2 = mkV2 (mkV "drag" "drags" "dragged" "dragged" "dragging"); -- from DictEng -lin dragee_N = mkN "dragee" ; -lin dragging_A = mkA "dragging" ; -lin draggingly_Adv = mkAdv "draggingly" ; -lin draggled_A = compoundA (mkA "draggled"); -- from DictEng -lin dragnet_N = mkN "dragnet" "dragnets"; -- from DictEng -lin dragoman_N = mkN "dragoman" "dragomans"; -- from DictEng -lin dragon_N = mkN "dragon" "dragons"; -- from DictEng -lin dragonet_N = mkN "dragonet" ; -lin dragonfly_N = mkN "dragonfly" "dragonflies"; -- from DictEng -lin dragonhead_N = mkN "dragonhead" ; -lin dragoon_N = mkN "dragoon" "dragoons"; -- from DictEng -lin dragoon_V2 = mkV2 (mkV "dragoon" "dragoons" "dragooned" "dragooned" "dragooning"); -- from DictEng -lin drain_N = mkN "drain" "drains"; -- from DictEng -lin drain_V = mkV "drain" "drains" "drained" "drained" "draining"; -- from DictEng -lin drain_V2 = mkV2 (mkV "drain" "drains" "drained" "drained" "draining"); -- from DictEng -lin drainage_N = mkN "drainage" ; -- from DictEng -lin drainage_basin_N = mkN "drainage - basin" "drainage - basins"; -- from DictEng -lin drainboard_N = mkN "drainboard" ; -lin drained_A = mkA "drained" ; -lin draining_A = mkA "draining" ; -lin draining_board_N = mkN "draining - board" "draining - boards"; -- from DictEng -lin drainpipe_N = mkN "drainpipe" "drainpipes"; -- from DictEng -lin drainplug_N = mkN "drainplug" ; -lin drake_N = mkN "drake" "drakes"; -- from DictEng -lin dram_N = mkN "dram" "drams"; -- from DictEng -lin drama_N = mkN "drama" "dramas"; -- from DictEng -lin dramatic_A = compoundA (mkA "dramatic"); -- from DictEng -lin dramatically_Adv = mkAdv "dramatically"; -- from DictEng -lin dramatics_N = mkN "dramatics" "dramatics"; -- from DictEng -lin dramatist_N = mkN "dramatist" "dramatists"; -- from DictEng -lin dramatization_N = mkN "dramatization" "dramatizations"; -- from DictEng -lin dramatize_V2 = mkV2 (mkV "dramatize" "dramatizes" "dramatized" "dramatized" "dramatizing"); -- from DictEng -lin dramaturgic_A = mkA "dramaturgic" ; -lin dramaturgy_N = mkN "dramaturgy" ; -lin drape_N = mkN "drape" "drapes"; -- from DictEng -lin drape_V2 = mkV2 (mkV "drape" "drapes" "draped" "draped" "draping"); -- from DictEng -lin draped_A = mkA "draped" ; -lin draper_N = mkN "draper" "drapers"; -- from DictEng -lin drapery_N = mkN "drapery" "draperies"; -- from DictEng -lin drastic_A = compoundA (mkA "drastic"); -- from DictEng -lin drastically_Adv = mkAdv "drastically"; -- from DictEng -lin drat_V2 = mkV2 (mkV "drat" "drats" "dratted" "dratted" "dratting"); -- from DictEng -lin draught_N = mkN "draught" "draughts"; -- from DictEng -lin draught_V2 = mkV2 (mkV "draught" "draughts" "draughted" "draughted" "draughting"); -- from DictEng -lin draught_horse_N = mkN "draught - horse" "draught - horses"; -- from DictEng -lin draughts_N = mkN "draughts" "draughts"; -- from DictEng -lin draughtsman_N = mkN "draughtsman" "draughtsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin draughty_A = mkA "draughty" "draughtier"; -- from DictEng -lin draw_N = mkN "draw" "draws"; -- from DictEng -lin draw_V = IrregEng.draw_V; -- from DictEng -lin draw_V2 = mkV2 (IrregEng.draw_V); -- from DictEng -lin draw_V2V = mkV2V (IrregEng.draw_V) noPrep to_Prep ; -- from DictEng -lin drawback_N = mkN "drawback" "drawbacks"; -- from DictEng -lin drawbar_N = mkN "drawbar" ; -lin drawbridge_N = mkN "drawbridge" "drawbridges"; -- from DictEng -lin drawee_N = mkN "drawee" ; -lin drawer_N = mkN "drawer" "drawers"; -- from DictEng -lin drawers_N = mkN "drawers" ; -lin drawing_N = mkN "drawing" "drawings"; -- from DictEng -lin drawing_board_N = mkN "drawing - board" "drawing - boards"; -- from DictEng -lin drawing_pin_N = mkN "drawing - pin" "drawing - pins"; -- from DictEng -lin drawing_room_N = mkN "drawing - room" "drawing - rooms"; -- from DictEng -lin drawknife_N = mkN "drawknife" ; -lin drawl_N = mkN "drawl" "drawls"; -- from DictEng -lin drawl_V = mkV "drawl" "drawls" "drawled" "drawled" "drawling"; -- from DictEng -lin drawl_V2 = mkV2 (mkV "drawl" "drawls" "drawled" "drawled" "drawling"); -- from DictEng -lin drawler_N = mkN "drawler" ; -lin drawn_A = mkA "drawn" ; -lin drawn_out_A = compoundA (mkA "drawn out") ; -lin drawnwork_N = mkN "drawnwork" ; -lin drawstring_N = mkN "drawstring" ; -lin dray_N = mkN "dray" "drays"; -- from DictEng -lin dread_N = mkN "dread" ; -- from DictEng -lin dread_V = mkV "dread" "dreads" "dreaded" "dreaded" "dreading"; -- from DictEng -lin dread_V2 = mkV2 (mkV "dread" "dreads" "dreaded" "dreaded" "dreading"); -- from DictEng -lin dreaded_A = compoundA (mkA "dreaded"); -- from DictEng -lin dreadful_A = compoundA (mkA "dreadful"); -- from DictEng -lin dreadfully_Adv = mkAdv "dreadfully" ; -lin dreadfulness_N = mkN "dreadfulness" ; -- from DictEng -lin dreadlock_N = mkN "dreadlock" ; -lin dreadnought_N = mkN "dreadnought" "dreadnoughts"; -- from DictEng -lin dream_N = mkN "dream" "dreams"; -- from DictEng -lin dream_V = mkV "dream" "dreams" "dreamed" "dreamed" "dreaming"; -- from DictEng -lin dream_V2 = mkV2 (mkV "dream" "dreams" "dreamed" "dreamed" "dreaming"); -- from DictEng -lin dreamed_A = mkA "dreamed" ; -lin dreamer_N = mkN "dreamer" "dreamers"; -- from DictEng -lin dreamily_Adv = mkAdv "dreamily"; -- from DictEng -lin dreamland_N = mkN "dreamland" "dreamlands"; -- from DictEng -lin dreamless_A = compoundA (mkA "dreamless"); -- from DictEng -lin dreamlike_A = compoundA (mkA "dreamlike"); -- from DictEng -lin dreamworld_N = mkN "dreamworld" "dreamworlds"; -- from DictEng -lin dreamy_A = mkA "dreamy" "dreamier"; -- from DictEng -lin drear_A = compoundA (mkA "drear"); -- from DictEng -lin drearily_Adv = mkAdv "drearily"; -- from DictEng -lin dreariness_N = mkN "dreariness" ; -- from DictEng -lin dreary_A = mkA "dreary" "drearier"; -- from DictEng -lin dredge_N = mkN "dredge" "dredges"; -- from DictEng -lin dredge_V = mkV "dredge" "dredges" "dredged" "dredged" "dredging"; -- from DictEng -lin dredge_V2 = mkV2 (mkV "dredge" "dredges" "dredged" "dredged" "dredging"); -- from DictEng -lin dredger_N = mkN "dredger" "dredgers"; -- from DictEng -lin dreg_N = mkN "dreg" ; -lin dregs_N = mkN "dregs" ; -lin drench_V2 = mkV2 (mkV "drench" "drenches" "drenched" "drenched" "drenching"); -- from DictEng -lin drenched_A = mkA "drenched" ; -lin drenching_N = mkN "drenching" "drenchings"; -- from DictEng -lin dress_A = mkA "dress" ; -lin dress_N = mkN "dress" "dresses"; -- from DictEng -lin dress_V = mkV "dress" "dresses" "dressed" "dressed" "dressing"; -- from DictEng -lin dress_V2 = mkV2 (mkV "dress" "dresses" "dressed" "dressed" "dressing"); -- from DictEng -lin dress_hanger_N = mkN "dress - hanger" "dress - hangers"; -- from DictEng -lin dressage_N = mkN "dressage" ; -- from DictEng -lin dressed_A = mkA "dressed" ; -lin dresser_N = mkN "dresser" "dressers"; -- from DictEng -lin dressing_N = mkN "dressing" "dressings"; -- from DictEng -lin dressing_case_N = mkN "dressing - case" "dressing - cases"; -- from DictEng -lin dressing_down_N = mkN "dressing - down"; -- from DictEng -lin dressing_gown_N = mkN "dressing - gown" "dressing - gowns"; -- from DictEng -lin dressing_table_N = mkN "dressing - table" "dressing - tables"; -- from DictEng -lin dressmaker_N = mkN "dressmaker" "dressmakers"; -- from DictEng -lin dressmaking_N = mkN "dressmaking" ; -- from DictEng -lin dressy_A = mkA "dressy" "dressier"; -- from DictEng -lin drey_N = mkN "drey" ; -lin dribble_N = mkN "dribble" ; -lin dribble_V = mkV "dribble" "dribbles" "dribbled" "dribbled" "dribbling"; -- from DictEng -lin dribble_V2 = mkV2 (mkV "dribble" "dribbles" "dribbled" "dribbled" "dribbling"); -- from DictEng -lin dribbler_N = mkN "dribbler" "dribblers"; -- from DictEng -lin driblet_N = mkN "driblet" "driblets"; -- from DictEng -lin dried_A = mkA "dried" ; -lin dried_up_A = compoundA (mkA "dried up") ; -lin drier_N = mkN "drier" "driers"; -- from DictEng -lin drift_N = mkN "drift" "drifts"; -- from DictEng -lin drift_V = mkV "drift" "drifts" "drifted" "drifted" "drifting"; -- from DictEng -lin drift_V2 = mkV2 (mkV "drift" "drifts" "drifted" "drifted" "drifting"); -- from DictEng -lin drift_ice_N = mkN "drift - ice" ; -- from DictEng -lin drift_net_N = mkN "drift - net" "drift - nets"; -- from DictEng -lin drift_wood_N = mkN "drift - wood" ; -- from DictEng -lin driftage_N = mkN "driftage" ; -- from DictEng -lin drifter_N = mkN "drifter" "drifters"; -- from DictEng -lin driftfish_N = mkN "driftfish" ; -lin drifting_N = mkN "drifting" ; -lin driftwood_N = mkN "driftwood" ; -lin drill_N = mkN "drill" "drills"; -- from DictEng -lin drill_V = mkV "drill" "drills" "drilled" "drilled" "drilling"; -- from DictEng -lin drill_V2 = mkV2 (mkV "drill" "drills" "drilled" "drilled" "drilling"); -- from DictEng -lin drill_like_A = compoundA (mkA "drill like") ; -lin drilled_A = mkA "drilled" ; -lin drilling_N = mkN "drilling" ; -lin drily_Adv = mkAdv "drily"; -- from DictEng -lin drink_N = mkN "drink" "drinks"; -- from DictEng -lin drink_V = IrregEng.drink_V; -- from DictEng -lin drink_V2 = mkV2 (IrregEng.drink_V); -- from DictEng -lin drinkable_A = compoundA (mkA "drinkable"); -- from DictEng -lin drinker_N = mkN "drinker" "drinkers"; -- from DictEng -lin drinking_N = mkN "drinking" ; -- from DictEng -lin drinking_bout_N = mkN "drinking - bout" "drinking - bouts"; -- from DictEng -lin drinking_fountain_N = mkN "drinking - fountain" "drinking - fountains"; -- from DictEng -lin drinking_song_N = mkN "drinking - song" "drinking - songs"; -- from DictEng -lin drinking_water_N = mkN "drinking - water" ; -- from DictEng -lin drip_N = mkN "drip" "drips"; -- from DictEng -lin drip_V = mkV "drip" "drips" "dripped" "dripped" "dripping"; -- from DictEng -lin drip_V2 = mkV2 (mkV "drip" "drips" "dripped" "dripped" "dripping"); -- from DictEng -lin drip_dry_A = compoundA (mkA "drip - dry"); -- from DictEng -lin drip_dry_A = compoundA (mkA "drip - dry"); -- from DictEng -lin drip_dry_V2 = mkV2 (mkV "drip - dry" "drip - dries" "drip - dried" "drip - dried" "drip - drying"); -- from DictEng -lin dripless_A = mkA "dripless" ; -lin drippiness_N = mkN "drippiness" ; -lin dripping_N = mkN "dripping" ; -- from DictEng -lin dripping_pan_N = mkN "dripping - pan" "dripping - pans"; -- from DictEng -lin drippings_N = mkN "drippings" ; -lin drippy_A = mkA "drippy" ; -lin dripstone_N = mkN "dripstone" ; -lin drive_N = mkN "drive" "drives"; -- from DictEng -lin drive_V = IrregEng.drive_V; -- from DictEng -lin drive_V2 = mkV2 (IrregEng.drive_V); -- from DictEng -lin drive_V2V = mkV2V (IrregEng.drive_V) noPrep to_Prep ; -- from DictEng -lin drive_VS = mkVS (IrregEng.drive_V); -- from DictEng -lin drive_in_N = mkN "drive - in" "drive - ins"; -- from DictEng -lin drive_in_N = mkN "drive - in" "drive - ins"; -- from DictEng -lin drivel_N = mkN "drivel" ; -- from DictEng -lin drivel_V = mkV "drivel" "drivels" "drivelled" "drivelled" "drivelling"; -- from DictEng -lin driveller_N = mkN "driveller" "drivellers"; -- from DictEng -lin driven_A = mkA "driven" ; -lin driver_N = mkN "driver" "drivers"; -- from DictEng -lin driveshaft_N = mkN "driveshaft" ; -lin driveway_N = mkN "driveway" "driveways"; -- from DictEng -lin driving_A = mkA "driving" ; -lin driving_N = mkN "driving" ; -lin driving_belt_N = mkN "driving - belt" "driving - belts"; -- from DictEng -lin driving_wheel_N = mkN "driving - wheel" "driving - wheels"; -- from DictEng -lin drizzle_N = mkN "drizzle" ; -- from DictEng -lin drizzle_V = mkV "drizzle" "drizzles" "drizzled" "drizzled" "drizzling"; -- from DictEng -lin drizzling_A = mkA "drizzling" ; -lin drizzly_A = compoundA (mkA "drizzly"); -- from DictEng -lin drogue_N = mkN "drogue" "drogues"; -- from DictEng -lin droll_A = compoundA (mkA "droll"); -- from DictEng -lin drollery_N = mkN "drollery" "drolleries"; -- from DictEng -lin dromaeosaur_N = mkN "dromaeosaur" ; -lin dromedary_N = mkN "dromedary" "dromedaries"; -- from DictEng -lin dronabinol_N = mkN "dronabinol" ; -lin drone_N = mkN "drone" "drones"; -- from DictEng -lin drone_V = mkV "drone" "drones" "droned" "droned" "droning"; -- from DictEng -lin drone_V2 = mkV2 (mkV "drone" "drones" "droned" "droned" "droning"); -- from DictEng -lin drool_N = mkN "drool" ; -lin drool_V = mkV "drool" "drools" "drooled" "drooled" "drooling"; -- from DictEng -lin drool_V2 = mkV2 (mkV "drool") ; -lin droop_N = mkN "droop"; -- from DictEng -lin droop_V = mkV "droop" "droops" "drooped" "drooped" "drooping"; -- from DictEng -lin droop_V2 = mkV2 (mkV "droop" "droops" "drooped" "drooped" "drooping"); -- from DictEng -lin drooping_A = mkA "drooping" ; -lin droopingly_Adv = mkAdv "droopingly"; -- from DictEng -lin drop_N = mkN "drop" "drops"; -- from DictEng -lin drop_V = mkV "drop" "drops" "dropped" "dropped" "dropping"; -- from DictEng -lin drop_V2 = mkV2 (mkV "drop" "drops" "dropped" "dropped" "dropping"); -- from DictEng -lin drop_dead_Adv = mkAdv "drop dead" ; -lin drop_leaf_N = mkN "drop leaf" ; -lin drop_curtain_N = mkN "drop - curtain" "drop - curtains"; -- from DictEng -lin drop_kick_N = mkN "drop - kick" "drop - kicks"; -- from DictEng -lin dropkick_N = mkN "dropkick" ; -lin dropkicker_N = mkN "dropkicker" ; -lin droplet_N = mkN "droplet" ; -lin dropline_N = mkN "dropline" ; -lin dropout_N = mkN "dropout" "dropouts"; -- from DictEng -lin dropper_N = mkN "dropper" ; -lin dropping_A = mkA "dropping" ; -lin dropping_zone_N = mkN "dropping - zone" "dropping - zones"; -- from DictEng -lin droppings_N = mkN "droppings" ; -lin dropseed_N = mkN "dropseed" ; -lin dropsical_A = compoundA (mkA "dropsical"); -- from DictEng -lin dropsy_N = mkN "dropsy" ; -- from DictEng -lin droshky_N = mkN "droshky" "droshkies"; -- from DictEng -lin drosophila_N = mkN "drosophila" ; -lin dross_N = mkN "dross" ; -- from DictEng -lin drought_N = mkN "drought" "droughts"; -- from DictEng -lin drove_N = mkN "drove" "droves"; -- from DictEng -lin drover_N = mkN "drover" "drovers"; -- from DictEng -lin drown_V = mkV "drown" "drowns" "drowned" "drowned" "drowning"; -- from DictEng -lin drown_V2 = mkV2 (mkV "drown" "drowns" "drowned" "drowned" "drowning"); -- from DictEng -lin drowse_N = mkN "drowse"; -- from DictEng -lin drowse_V = mkV "drowse" "drowses" "drowsed" "drowsed" "drowsing"; -- from DictEng -lin drowse_V2 = mkV2 (mkV "drowse" "drowses" "drowsed" "drowsed" "drowsing"); -- from DictEng -lin drowsily_Adv = mkAdv "drowsily"; -- from DictEng -lin drowsiness_N = mkN "drowsiness" ; -- from DictEng -lin drowsy_A = mkA "drowsy" "drowsier"; -- from DictEng -lin drub_V2 = mkV2 (mkV "drub" "drubs" "drubbed" "drubbed" "drubbing"); -- from DictEng -lin drubbing_N = mkN "drubbing" "IRREG"; -- from DictEng -lin drudge_N = mkN "drudge" "drudges"; -- from DictEng -lin drudge_V = mkV "drudge" "drudges" "drudged" "drudged" "drudging"; -- from DictEng -lin drudgery_N = mkN "drudgery" ; -- from DictEng -lin drudging_A = mkA "drudging" ; -lin drug_N = mkN "drug" "drugs"; -- from DictEng -lin drug_V2 = mkV2 (mkV "drug" "drugs" "drugged" "drugged" "drugging"); -- from DictEng -lin drug_free_A = compoundA (mkA "drug free") ; -lin drugget_N = mkN "drugget" "druggets"; -- from DictEng -lin druggist_N = mkN "druggist" "druggists"; -- from DictEng -lin drugless_A = mkA "drugless" ; -lin drugstore_N = mkN "drugstore" "drugstores"; -- from DictEng -lin druid_N = mkN "druid" "druids"; -- from DictEng -lin druidism_N = mkN "druidism" ; -lin drum_N = mkN "drum" "drums"; -- from DictEng -lin drum_V = mkV "drum" "drums" "drummed" "drummed" "drumming"; -- from DictEng -lin drum_V2 = mkV2 (mkV "drum" "drums" "drummed" "drummed" "drumming"); -- from DictEng -lin drum_shaped_A = compoundA (mkA "drum shaped") ; -lin drum_major_N = mkN "drum - major" "drum - majors"; -- from DictEng -lin drum_majorette_N = mkN "drum - majorette" "drum - majorettes"; -- from DictEng -lin drumbeat_N = mkN "drumbeat" ; -lin drumfire_N = mkN "drumfire" ; -- from DictEng -lin drumhead_A = compoundA (mkA "drumhead"); -- from DictEng -lin drumhead_N = mkN "drumhead" ; -lin drumlin_N = mkN "drumlin" ; -lin drummer_N = mkN "drummer" "drummers"; -- from DictEng -lin drumming_N = mkN "drumming" ; -lin drumstick_N = mkN "drumstick" "drumsticks"; -- from DictEng -lin drunk_A = mkA "drunk" "drunker"; -- from DictEng -lin drunk_N = mkN "drunk" "drunks"; -- from DictEng -lin drunk_and_disorderly_N = mkN "drunk and disorderly" ; -lin drunkard_N = mkN "drunkard" "drunkards"; -- from DictEng -lin drunken_A = compoundA (mkA "drunken"); -- from DictEng -lin drunkenly_Adv = mkAdv "drunkenly" ; -lin drunkenness_N = mkN "drunkenness" ; -- from DictEng -lin drupaceous_A = mkA "drupaceous" ; -lin drupe_N = mkN "drupe" "drupes"; -- from DictEng -lin drupelet_N = mkN "drupelet" ; -lin drusen_N = mkN "drusen" ; -lin dry_A = mkA "dry" "drier"; -- from DictEng -lin dry_N = mkN "dry" ; -lin dry_V = mkV "dry" "dries" "dried" "dried" "drying"; -- from DictEng -lin dry_V2 = mkV2 (mkV "dry" "dries" "dried" "dried" "drying"); -- from DictEng -lin dry_cleaned_A = compoundA (mkA "dry cleaned") ; -lin dry_gulching_N = mkN "dry gulching" ; -lin dry_shod_A = compoundA (mkA "dry - shod"); -- from DictEng -lin dry_clean_V2 = mkV2 (mkV "dry - clean" "dry - cleans" "dry - cleaned" "dry - cleaned" "dry - cleaning"); -- from DictEng -lin dry_cleaner_N = mkN "dry - cleaner" "dry - cleaners"; -- from DictEng -lin dry_cleaning_N = mkN "dry - cleaning" ; -- from DictEng -lin dry_shod_A = compoundA (mkA "dry - shod"); -- from DictEng -lin dry_walling_N = mkN "dry - walling" ; -- from DictEng -lin dryad_N = mkN "dryad" "dryads"; -- from DictEng -lin dryer_N = mkN "dryer" "dryers"; -- from DictEng -lin drygoods_N = mkN "drygoods" ; -lin dryness_N = mkN "dryness" ; -- from DictEng -lin dryopithecine_N = mkN "dryopithecine" ; -lin drypis_N = mkN "drypis" ; -lin dsc_N = mkN "dsc" ; -- from DictEng -lin dscdna_N = mkN "dscDNA" ; -lin dss_N = mkN "dss" ; -- from DictEng -lin dti_N = mkN "dti" ; -- from DictEng -lin du_maurier_PN = mkPN "du Maurier" ; -lin dual_A = compoundA (mkA "dual"); -- from DictEng -lin dualism_N = mkN "dualism" ; -lin dualist_N = mkN "dualist" ; -lin dualistic_A = mkA "dualistic" ; -lin duality_N = mkN "duality" ; -lin dub_N = mkN "dub" ; -lin dub_V2 = mkV2 (mkV "dub" "dubs" "dubbed" "dubbed" "dubbing"); -- from DictEng -lin dub_VS = mkVS (mkV "dub"); -- from DictEng -lin dubbin_N = mkN "dubbin" ; -- from DictEng -lin dubbing_N = mkN "dubbing" ; -lin dubiety_N = mkN "dubiety" "dubieties"; -- from DictEng -lin dubious_A = compoundA (mkA "dubious"); -- from DictEng -lin dubiousness_N = mkN "dubiousness" ; -- from DictEng -lin dubliner_N = mkN "dubliner" "dubliners"; -- from DictEng -lin dubnium_N = mkN "dubnium" ; -lin ducal_A = compoundA (mkA "ducal"); -- from DictEng -lin ducat_N = mkN "ducat" "ducats"; -- from DictEng -lin duce_N = mkN "duce" "duci"; -- from DictEng -lin duchess_N = mkN "duchess" "duchesses"; -- from DictEng -lin duchy_N = mkN "duchy" "duchies"; -- from DictEng -lin duck_N = mkN "duck" "duck"; -- from DictEng -lin duck_V = mkV "duck" "ducks" "ducked" "ducked" "ducking"; -- from DictEng -lin duck_V2 = mkV2 (mkV "duck" "ducks" "ducked" "ducked" "ducking"); -- from DictEng -lin duckbill_A = mkA "duckbill" ; -lin duckbilled_A = compoundA (mkA "duckbilled"); -- from DictEng -lin duckboard_N = mkN "duckboard" ; -lin ducking_N = mkN "ducking" "duckings"; -- from DictEng -lin ducking_stool_N = mkN "ducking - stool" "ducking - stools"; -- from DictEng -lin duckling_N = mkN "duckling" "ducklings"; -- from DictEng -lin duckpin_N = mkN "duckpin" ; -lin duckpins_N = mkN "duckpins" ; -lin duckweed_N = mkN "duckweed" ; -- from DictEng -lin ducky_N = mkN "ducky" "duckies"; -- from DictEng -lin duct_N = mkN "duct" "ducts"; -- from DictEng -lin ductile_A = compoundA (mkA "ductile"); -- from DictEng -lin ductility_N = mkN "ductility" ; -- from DictEng -lin ductless_A = mkA "ductless" ; -lin ductule_N = mkN "ductule" ; -lin dud_A = compoundA (mkA "dud"); -- from DictEng -lin dud_N = mkN "dud" "duds"; -- from DictEng -lin dude_N = mkN "dude" "dudes"; -- from DictEng -lin dudeen_N = mkN "dudeen" ; -lin dudgeon_N = mkN "dudgeon" ; -- from DictEng -lin due_A = compoundA (mkA "due"); -- from DictEng -lin due_Adv = mkAdv "due"; -- from DictEng -lin due_N = mkN "due" "dues"; -- from DictEng -lin duel_N = mkN "duel" "duels"; -- from DictEng -lin duel_V = mkV "duel" "duels" "duelled" "duelled" "duelling"; -- from DictEng -lin dueler_N = mkN "dueler" ; -lin duelist_N = mkN "duelist" "duelists"; -- from DictEng -lin duellist_N = mkN "duellist" "duellists"; -- from DictEng -lin duenna_N = mkN "duenna" "duennas"; -- from DictEng -lin duet_N = mkN "duet" "duets"; -- from DictEng -lin duff_N = mkN "duff" ; -lin duffel_N = mkN "duffel" ; -- from DictEng -lin duffer_N = mkN "duffer" "duffers"; -- from DictEng -lin duffle_N = mkN "duffle" ; -- from DictEng -lin dug_N = mkN "dug" "dugs"; -- from DictEng -lin dugong_N = mkN "dugong" "dugongs"; -- from DictEng -lin dugout_N = mkN "dugout" "dugouts"; -- from DictEng -lin duke_N = mkN "duke" "dukes"; -- from DictEng -lin dukedom_N = mkN "dukedom" "dukedoms"; -- from DictEng -lin dulcet_A = compoundA (mkA "dulcet"); -- from DictEng -lin dulciana_N = mkN "dulciana" ; -lin dulcimer_N = mkN "dulcimer" "dulcimers"; -- from DictEng -lin dull_A = mkA "dull" "duller"; -- from DictEng -lin dull_V = mkV "dull" "dulls" "dulled" "dulled" "dulling"; -- from DictEng -lin dull_V2 = mkV2 (mkV "dull" "dulls" "dulled" "dulled" "dulling"); -- from DictEng -lin dull_purple_A = compoundA (mkA "dull purple") ; -lin dull_white_A = compoundA (mkA "dull white") ; -lin dullard_N = mkN "dullard" "dullards"; -- from DictEng -lin dulled_A = mkA "dulled" ; -lin dullness_N = mkN "dullness" ; -- from DictEng -lin dully_Adv = mkAdv "dully"; -- from DictEng -lin dulse_N = mkN "dulse" ; -lin duly_Adv = mkAdv "duly"; -- from DictEng -lin dumb_A = mkA "dumb" "dumber"; -- from DictEng -lin dumbbell_N = mkN "dumbbell" "dumbbells"; -- from DictEng -lin dumbfound_V2 = mkV2 (mkV "dumbfound" "dumbfounds" "dumbfounded" "dumbfounded" "dumbfounding"); -- from DictEng -lin dumbfounded_A = mkA "dumbfounded" ; -lin dumbly_Adv = mkAdv "dumbly" ; -lin dumbness_N = mkN "dumbness" ; -- from DictEng -lin dumbwaiter_N = mkN "dumbwaiter" "dumbwaiters"; -- from DictEng -lin dumdum_N = mkN "dumdum" "dumdums"; -- from DictEng -lin dummy_A = mkA "dummy" ; -lin dummy_N = mkN "dummy" "dummies"; -- from DictEng -lin dump_N = mkN "dump" "dumps"; -- from DictEng -lin dump_V = mkV "dump"; -- from DictEng -lin dump_V2 = mkV2 (mkV "dump" "dumps" "dumped" "dumped" "dumping"); -- from DictEng -lin dumpcart_N = mkN "dumpcart" ; -lin dumper_N = mkN "dumper" "dumpers"; -- from DictEng -lin dumpiness_N = mkN "dumpiness" ; -lin dumping_N = mkN "dumping" ; -lin dumpling_N = mkN "dumpling" "dumplings"; -- from DictEng -lin dumps_N = mkN "dumps" ; -lin dumpy_A = mkA "dumpy" "dumpier"; -- from DictEng -lin dun_A = compoundA (mkA "dun"); -- from DictEng -lin dun_N = mkN "dun" "duns"; -- from DictEng -lin dun_V2 = mkV2 (mkV "dun" "duns" "dunned" "dunned" "dunning"); -- from DictEng -lin dun_colored_A = compoundA (mkA "dun colored") ; -lin dunce_N = mkN "dunce" "dunces"; -- from DictEng -lin dunderhead_N = mkN "dunderhead" "dunderheads"; -- from DictEng -lin dune_N = mkN "dune" "dunes"; -- from DictEng -lin dung_N = mkN "dung" ; -- from DictEng -lin dungeon_N = mkN "dungeon" "dungeons"; -- from DictEng -lin dunghill_N = mkN "dunghill" "dunghills"; -- from DictEng -lin dunk_N = mkN "dunk" ; -lin dunk_V2 = mkV2 (mkV "dunk" "dunks" "dunked" "dunked" "dunking"); -- from DictEng -lin dunker_N = mkN "dunker" ; -lin duodecimal_A = compoundA (mkA "duodecimal"); -- from DictEng -lin duodenal_A = compoundA (mkA "duodenal"); -- from DictEng -lin duodenum_N = mkN "duodenum" "duodenums"; -- from DictEng -lin duologue_N = mkN "duologue" "duologues"; -- from DictEng -lin dupe_N = mkN "dupe" "dupes"; -- from DictEng -lin dupe_V2 = mkV2 (mkV "dupe" "dupes" "duped" "duped" "duping"); -- from DictEng -lin duplex_A = compoundA (mkA "duplex"); -- from DictEng -lin duplicable_A = mkA "duplicable" ; -lin duplicate_A = compoundA (mkA "duplicate"); -- from DictEng -lin duplicate_N = mkN "duplicate" "duplicates"; -- from DictEng -lin duplicate_V2 = mkV2 (mkV "duplicate" "duplicates" "duplicated" "duplicated" "duplicating"); -- from DictEng -lin duplication_N = mkN "duplication" "duplications"; -- from DictEng -lin duplicator_N = mkN "duplicator" "duplicators"; -- from DictEng -lin duplicity_N = mkN "duplicity" ; -- from DictEng -lin durability_N = mkN "durability" ; -- from DictEng -lin durable_A = compoundA (mkA "durable"); -- from DictEng -lin durable_N = mkN "durable" "durables"; -- from DictEng -lin durables_N = mkN "durables" ; -lin dural_A = mkA "dural" ; -lin durance_N = mkN "durance" ; -- from DictEng -lin duration_N = mkN "duration" "durations"; -- from DictEng -lin durative_N = mkN "durative" ; -lin durbar_N = mkN "durbar" "durbars"; -- from DictEng -lin duress_N = mkN "duress" ; -- from DictEng -lin durian_N = mkN "durian" ; -lin during_Prep = mkPrep "during"; -- from DictEng -lin durmast_N = mkN "durmast" ; -lin durra_N = mkN "durra" ; -lin durum_N = mkN "durum" ; -lin dusk_N = mkN "dusk" ; -- from DictEng -lin dusky_A = mkA "dusky" "duskier"; -- from DictEng -lin dust_N = mkN "dust" ; -- from DictEng -lin dust_V2 = mkV2 (mkV "dust" "dusts" "dusted" "dusted" "dusting"); -- from DictEng -lin dust_bowl_N = mkN "dust - bowl" "dust - bowls"; -- from DictEng -lin dust_coat_N = mkN "dust - coat" "dust - coats"; -- from DictEng -lin dust_jacket_N = mkN "dust - jacket" "dust - jackets"; -- from DictEng -lin dust_sheet_N = mkN "dust - sheet" "dust - sheets"; -- from DictEng -lin dust_up_N = mkN "dust - up" "dust - ups"; -- from DictEng -lin dust_wrapper_N = mkN "dust - wrapper" "dust - wrappers"; -- from DictEng -lin dustbin_N = mkN "dustbin" "dustbins"; -- from DictEng -lin dustcart_N = mkN "dustcart" "dustcarts"; -- from DictEng -lin dustcloth_N = mkN "dustcloth" ; -lin duster_N = mkN "duster" "dusters"; -- from DictEng -lin dustiness_N = mkN "dustiness" ; -lin dustlike_A = mkA "dustlike" ; -lin dustman_N = mkN "dustman" "dustmen" {- FIXME: guessed plural form -}; -- from DictEng -lin dustmop_N = mkN "dustmop" ; -lin dustpan_N = mkN "dustpan" "dustpans"; -- from DictEng -lin dusty_A = mkA "dusty" "dustier"; -- from DictEng -lin dutch_A = compoundA (mkA "Dutch"); -- from DictEng -lin dutch_N = mkN "Dutch" ; -- from DictEng -lin dutchman_N = mkN "dutchman" "dutchmen" {- FIXME: guessed plural form -}; -- from DictEng -lin duteous_A = compoundA (mkA "duteous"); -- from DictEng -lin dutiable_A = compoundA (mkA "dutiable"); -- from DictEng -lin dutiful_A = compoundA (mkA "dutiful"); -- from DictEng -lin dutifully_Adv = mkAdv "dutifully" ; -lin dutifulness_N = mkN "dutifulness" ; -lin duty_N = mkN "duty" "duties"; -- from DictEng -lin duty_bound_A = compoundA (mkA "duty bound") ; -lin duty_free_A = compoundA (mkA "duty - free"); -- from DictEng -lin duty_free_A = compoundA (mkA "duty - free"); -- from DictEng -lin duvet_N = mkN "duvet" "duvets"; -- from DictEng -lin dwarf_N = mkN "dwarf" "dwarfs"; -- from DictEng -lin dwarf_V2 = mkV2 (mkV "dwarf" "dwarfs" "dwarfed" "dwarfed" "dwarfing"); -- from DictEng -lin dwarfish_A = compoundA (mkA "dwarfish"); -- from DictEng -lin dwarfishness_N = mkN "dwarfishness" ; -lin dwarfism_N = mkN "dwarfism" ; -lin dwell_V = variants {mkV "dwell" "dwells" "dwelt" "dwelt" "dwelling"; mkV "dwell" "dwells" "dwelled" "dwelled" "dwelling"}; -- from DictEng -lin dweller_N = mkN "dweller" "dwellers"; -- from DictEng -lin dwelling_N = mkN "dwelling" "dwellings"; -- from DictEng -lin dwelling_house_N = mkN "dwelling - house" "dwelling - houses"; -- from DictEng -lin dwindle_V = mkV "dwindle" "dwindles" "dwindled" "dwindled" "dwindling"; -- from DictEng -lin dwindling_A = mkA "dwindling" ; -lin dwindling_N = mkN "dwindling" ; -lin dyadic_A = mkA "dyadic" ; -lin dyarchy_N = mkN "dyarchy" "dyarchies"; -- from DictEng -lin dybbuk_N = mkN "dybbuk" ; -lin dye_N = mkN "dye" "dyes"; -- from DictEng -lin dye_V = mkV "dye" "dyes" "dyed" "dyed" "dying"; -- from DictEng -lin dye_V2 = mkV2 (mkV "dye" "dyes" "dyed" "dyed" "dying"); -- from DictEng -lin dye_works_N = mkN "dye - works" "dye - works"; -- from DictEng -lin dye_works_N = mkN "dye - works" "dye - works"; -- from DictEng -lin dyed_in_the_wool_A = compoundA (mkA "dyed - in - the - wool"); -- from DictEng -lin dyeing_N = mkN "dyeing" ; -lin dyer_N = mkN "dyer" "dyers"; -- from DictEng -lin dyestuff_N = mkN "dyestuff" "dyestuffs"; -- from DictEng -lin dyewood_N = mkN "dyewood" ; -lin dying_A = mkA "dying" ; -lin dyke_N = mkN "dyke" "dykes"; -- from DictEng -lin dyke_V = mkV "dyke" "dykes" "dyked" "dyked" "dyking"; -- from DictEng -lin dyke_V2 = mkV2 (mkV "dyke" "dykes" "dyked" "dyked" "dyking"); -- from DictEng -lin dynamic_A = compoundA (mkA "dynamic"); -- from DictEng -lin dynamic_N = mkN "dynamic" "dynamics"; -- from DictEng -lin dynamically_Adv = mkAdv "dynamically"; -- from DictEng -lin dynamics_N = mkN "dynamics" ; -lin dynamism_N = mkN "dynamism" ; -- from DictEng -lin dynamite_N = mkN "dynamite" ; -- from DictEng -lin dynamite_V2 = mkV2 (mkV "dynamite" "dynamites" "dynamited" "dynamited" "dynamiting"); -- from DictEng -lin dynamiter_N = mkN "dynamiter" ; -lin dynamo_N = mkN "dynamo" "dynamos"; -- from DictEng -lin dynamometer_N = mkN "dynamometer" ; -lin dynast_N = mkN "dynast" "dynasts"; -- from DictEng -lin dynastic_A = compoundA (mkA "dynastic"); -- from DictEng -lin dynasty_N = mkN "dynasty" "dynasties"; -- from DictEng -lin dyne_N = mkN "dyne" "dynes"; -- from DictEng -lin dysaphia_N = mkN "dysaphia" ; -lin dysarthria_N = mkN "dysarthria" ; -lin dyscalculia_N = mkN "dyscalculia" ; -lin dyschezia_N = mkN "dyschezia" ; -lin dyscrasia_N = mkN "dyscrasia" ; -lin dysentery_N = mkN "dysentery" ; -- from DictEng -lin dysfunction_N = mkN "dysfunction" ; -lin dysfunctional_A = mkA "dysfunctional" ; -lin dysgenesis_N = mkN "dysgenesis" ; -lin dysgenic_A = mkA "dysgenic" ; -lin dysgenics_N = mkN "dysgenics" ; -lin dysgraphia_N = mkN "dysgraphia" ; -lin dyskinesia_N = mkN "dyskinesia" ; -lin dyslectic_A = mkA "dyslectic" ; -lin dyslectic_N = mkN "dyslectic" ; -lin dyslexia_N = mkN "dyslexia" ; -- from DictEng -lin dyslexic_A = compoundA (mkA "dyslexic"); -- from DictEng -lin dyslogia_N = mkN "dyslogia" ; -lin dyslogistic_A = mkA "dyslogistic" ; -lin dysmenorrhea_N = mkN "dysmenorrhea" ; -lin dysomia_N = mkN "dysomia" ; -lin dysosmia_N = mkN "dysosmia" ; -lin dyspepsia_N = mkN "dyspepsia" ; -- from DictEng -lin dyspeptic_A = compoundA (mkA "dyspeptic"); -- from DictEng -lin dyspeptic_N = mkN "dyspeptic" "dyspeptics"; -- from DictEng -lin dysphagia_N = mkN "dysphagia" ; -lin dysphasia_N = mkN "dysphasia" ; -lin dysphemism_N = mkN "dysphemism" ; -lin dysphemistic_A = mkA "dysphemistic" ; -lin dysphonia_N = mkN "dysphonia" ; -lin dysphoria_N = mkN "dysphoria" ; -lin dysphoric_A = mkA "dysphoric" ; -lin dysplasia_N = mkN "dysplasia" ; -lin dysplastic_A = mkA "dysplastic" ; -lin dyspnea_N = mkN "dyspnea" ; -lin dysprosium_N = mkN "dysprosium" ; -lin dysthymia_N = mkN "dysthymia" ; -lin dystopia_N = mkN "dystopia" ; -lin dystopian_A = mkA "dystopian" ; -lin dystrophy_N = mkN "dystrophy" ; -lin dysuria_N = mkN "dysuria" ; -lin e_N = mkN "e" ; -lin e'en_Adv = mkAdv "e'en"; -- from DictEng -lin e'er_Adv = mkAdv "e'er"; -- from DictEng -lin e_commerce_N = mkN "e commerce" ; -lin e_mail_V2 = mkV2 (mkV "e mail") ; -lin each_A = mkA "each" ; -lin each_Adv = mkAdv "each" ; -lin each_Det = mkDeterminer singular "each"; -- from DictEng -lin eager_A = compoundA (mkA "eager"); -- from DictEng -lin eagerly_Adv = mkAdv "eagerly" ; -lin eagerness_N = mkN "eagerness" ; -- from DictEng -lin eagle_N = mkN "eagle" "eagles"; -- from DictEng -lin eagle_eyed_A = compoundA (mkA "eagle - eyed"); -- from DictEng -lin eagle_eyed_A = compoundA (mkA "eagle - eyed"); -- from DictEng -lin eaglet_N = mkN "eaglet" "eaglets"; -- from DictEng -lin ear_N = mkN "ear" "ears"; -- from DictEng -lin ear_trumpet_N = mkN "ear - trumpet" "ear - trumpets"; -- from DictEng -lin earache_N = mkN "earache" "earaches"; -- from DictEng -lin eardrop_N = mkN "eardrop" "eardrops"; -- from DictEng -lin eardrum_N = mkN "eardrum" "eardrums"; -- from DictEng -lin eared_A = mkA "eared" ; -lin earflap_N = mkN "earflap" ; -lin earful_N = mkN "earful" "earfuls"; -- from DictEng -lin earl_N = mkN "earl" "earls"; -- from DictEng -lin earldom_N = mkN "earldom" "earldoms"; -- from DictEng -lin earless_A = mkA "earless" ; -lin earlier_A = mkA "earlier" ; -lin earlier_Adv = mkAdv "earlier" ; -lin earliness_N = mkN "earliness" ; -lin earlobe_N = mkN "earlobe" ; -lin early_A = mkA "early" "earlier"; -- from DictEng -lin early_Adv = mkAdv "early"; -- from DictEng -lin early_on_Adv = mkAdv "early on" ; -lin early_warning_A = compoundA (mkA "early - warning"); -- from DictEng -lin earlyish_A = mkA "earlyish" ; -lin earmark_N = mkN "earmark" "earmarks"; -- from DictEng -lin earmark_V2 = mkV2 (mkV "earmark" "earmarks" "earmarked" "earmarked" "earmarking"); -- from DictEng -lin earmuff_N = mkN "earmuff" ; -lin earn_V = mkV "earn"; -- from DictEng -lin earn_V2 = mkV2 (mkV "earn" "earns" "earned" "earned" "earning"); -- from DictEng -lin earn_VA = mkVA (mkV "earn"); -- from DictEng -lin earned_A = mkA "earned" ; -lin earner_N = mkN "earner" ; -lin earnest_A = compoundA (mkA "earnest"); -- from DictEng -lin earnest_N = mkN "earnest" ; -- from DictEng -lin earnest_money_N = mkN "earnest - money" ; -- from DictEng -lin earnestness_N = mkN "earnestness" ; -- from DictEng -lin earphone_N = mkN "earphone" "earphones"; -- from DictEng -lin earpiece_N = mkN "earpiece" "earpieces"; -- from DictEng -lin earplug_N = mkN "earplug" ; -lin earring_N = mkN "earring" "earrings"; -- from DictEng -lin earshot_N = mkN "earshot" ; -- from DictEng -lin earth_N = mkN "earth" ; -- from DictEng -lin earth_V2 = mkV2 (mkV "earth" "earths" "earthed" "earthed" "earthing"); -- from DictEng -lin earth_god_N = mkN "earth god" ; -lin earth_goddess_N = mkN "earth goddess" ; -lin earth_closet_N = mkN "earth - closet" "earth - closets"; -- from DictEng -lin earthball_N = mkN "earthball" ; -lin earthborn_A = mkA "earthborn" ; -lin earthbound_A = mkA "earthbound" ; -lin earthen_A = compoundA (mkA "earthen"); -- from DictEng -lin earthenware_N = mkN "earthenware" ; -- from DictEng -lin earthlike_A = mkA "earthlike" ; -lin earthly_A = compoundA (mkA "earthly"); -- from DictEng -lin earthnut_N = mkN "earthnut" "earthnuts"; -- from DictEng -lin earthquake_N = mkN "earthquake" "earthquakes"; -- from DictEng -lin earthshaking_A = mkA "earthshaking" ; -lin earthstar_N = mkN "earthstar" ; -lin earthtongue_N = mkN "earthtongue" ; -lin earthwork_N = mkN "earthwork" "earthworks"; -- from DictEng -lin earthworm_N = mkN "earthworm" "earthworms"; -- from DictEng -lin earthy_A = mkA "earthy" "earthier"; -- from DictEng -lin earwax_N = mkN "earwax" ; -- from DictEng -lin earwig_N = mkN "earwig" "earwigs"; -- from DictEng -lin ease_N = mkN "ease" ; -- from DictEng -lin ease_V = mkV "ease" "eases" "eased" "eased" "easing"; -- from DictEng -lin ease_V2 = mkV2 (mkV "ease" "eases" "eased" "eased" "easing"); -- from DictEng -lin easel_N = mkN "easel" "easels"; -- from DictEng -lin easement_N = mkN "easement" ; -lin easily_Adv = mkAdv "easily"; -- from DictEng -lin easiness_N = mkN "easiness" ; -lin easing_N = mkN "easing" ; -lin east_A = mkA "east"; -- from DictEng -lin east_Adv = mkAdv "east"; -- from DictEng -lin east_N = mkN "east" ; -- from DictEng -lin east_central_A = compoundA (mkA "east central") ; -lin east_african_cedar_PN = mkPN "east African cedar" ; -lin eastbound_A = mkA "eastbound" ; -lin easter_N = mkN "easter" "easters"; -- from DictEng -lin easterly_A = compoundA (mkA "easterly"); -- from DictEng -lin easterly_Adv = mkAdv "easterly"; -- from DictEng -lin eastern_A = compoundA (mkA "eastern"); -- from DictEng -lin easterner_N = mkN "easterner" ; -lin easternmost_A = compoundA (mkA "easternmost"); -- from DictEng -lin eastside_A = mkA "eastside" ; -lin eastward_A = compoundA (mkA "eastward"); -- from DictEng -lin eastward_Adv = mkAdv "eastward"; -- from DictEng -lin eastwards_Adv = mkAdv "eastwards"; -- from DictEng -lin easy_A = mkA "easy" "easier"; -- from DictEng -lin easy_Adv = mkAdv "easy"; -- from DictEng -lin easy_V2V = mkV2V (mkV "easy") noPrep to_Prep ; -- from DictEng -lin easygoing_A = compoundA (mkA "easygoing"); -- from DictEng -lin easygoingness_N = mkN "easygoingness" ; -lin eat_V = IrregEng.eat_V; -- from DictEng -lin eat_V2 = mkV2 (IrregEng.eat_V); -- from DictEng -lin eatable_A = compoundA (mkA "eatable"); -- from DictEng -lin eatable_N = mkN "eatable" "eatables"; -- from DictEng -lin eatage_N = mkN "eatage" ; -lin eater_N = mkN "eater" "eaters"; -- from DictEng -lin eating_N = mkN "eating" ; -lin eating_apple_N = mkN "eating - apple" "eating - apples"; -- from DictEng -lin eating_house_N = mkN "eating - house" "eating - houses"; -- from DictEng -lin eau_de_cologne_N = mkN "eau de cologne" ; -- from DictEng -lin eau_de_vie_N = mkN "eau - de - vie" ; -- from DictEng -lin eaves_N = mkN "eaves" ; -lin eavesdrop_V = mkV "eavesdrop" "eavesdrops" "eavesdropped" "eavesdropped" "eavesdropping"; -- from DictEng -lin eavesdropper_N = mkN "eavesdropper" "eavesdroppers"; -- from DictEng -lin ebb_N = mkN "ebb" "ebbs"; -- from DictEng -lin ebb_V = mkV "ebb" "ebbs" "ebbed" "ebbed" "ebbing"; -- from DictEng -lin ebbtide_N = mkN "ebbtide" "ebbtides"; -- from DictEng -lin eblis_N = mkN "eblis" ; -lin ebon_A = mkA "ebon" ; -lin ebonite_N = mkN "ebonite" ; -- from DictEng -lin ebony_A = compoundA (mkA "ebony"); -- from DictEng -lin ebony_N = mkN "ebony" ; -- from DictEng -lin ebracteate_A = mkA "ebracteate" ; -lin ebullience_N = mkN "ebullience" ; -- from DictEng -lin ebullient_A = compoundA (mkA "ebullient"); -- from DictEng -lin ebulliently_Adv = mkAdv "ebulliently" ; -lin eburnation_N = mkN "eburnation" ; -lin ec_N = mkN "ec" ; -- from DictEng -lin ecarte_N = mkN "ecarte" ; -lin eccentric_A = compoundA (mkA "eccentric"); -- from DictEng -lin eccentric_N = mkN "eccentric" "eccentrics"; -- from DictEng -lin eccentrically_Adv = mkAdv "eccentrically" ; -lin eccentricity_N = mkN "eccentricity" "eccentricities"; -- from DictEng -lin ecchymosis_N = mkN "ecchymosis" ; -lin ecclesiastic_N = mkN "ecclesiastic" "ecclesiastics"; -- from DictEng -lin ecclesiastical_A = compoundA (mkA "ecclesiastical"); -- from DictEng -lin ecclesiastically_Adv = mkAdv "ecclesiastically" ; -lin ecclesiasticism_N = mkN "ecclesiasticism" ; -lin ecclesiology_N = mkN "ecclesiology" ; -lin eccrine_A = mkA "eccrine" ; -lin ecdemic_A = mkA "ecdemic" ; -lin echelon_N = mkN "echelon" "echelons"; -- from DictEng -lin echidna_N = mkN "echidna" ; -lin echinocactus_N = mkN "echinocactus" ; -lin echinococcosis_N = mkN "echinococcosis" ; -lin echinococcus_N = mkN "echinococcus" ; -lin echinoderm_N = mkN "echinoderm" ; -lin echinus_N = mkN "echinus" ; -lin echo_N = mkN "echo" "echoes"; -- from DictEng -lin echo_V = mkV "echo" "echos" "echoed" "echoed" "echoing"; -- from DictEng -lin echo_V2 = mkV2 (mkV "echo" "echos" "echoed" "echoed" "echoing"); -- from DictEng -lin echo_sounder_N = mkN "echo - sounder" "echo - sounders"; -- from DictEng -lin echo_sounding_N = mkN "echo - sounding" "echo - soundings"; -- from DictEng -lin echocardiogram_N = mkN "echocardiogram" ; -lin echocardiograph_N = mkN "echocardiograph" ; -lin echocardiography_N = mkN "echocardiography" ; -lin echoencephalogram_N = mkN "echoencephalogram" ; -lin echoencephalograph_N = mkN "echoencephalograph" ; -lin echoencephalography_N = mkN "echoencephalography" ; -lin echoic_A = mkA "echoic" ; -lin echoing_A = mkA "echoing" ; -lin echolalia_N = mkN "echolalia" ; -lin echoless_A = mkA "echoless" ; -lin echolocation_N = mkN "echolocation" ; -lin echovirus_N = mkN "echovirus" ; -lin eclair_N = mkN "éclair" "éclairs"; -- from DictEng -lin eclampsia_N = mkN "eclampsia" ; -lin eclat_N = mkN "éclat" ; -- from DictEng -lin eclectic_A = compoundA (mkA "eclectic"); -- from DictEng -lin eclectic_N = mkN "eclectic" ; -lin eclecticism_N = mkN "eclecticism" ; -- from DictEng -lin eclipse_N = mkN "eclipse" "eclipses"; -- from DictEng -lin eclipse_V2 = mkV2 (mkV "eclipse" "eclipses" "eclipsed" "eclipsed" "eclipsing"); -- from DictEng -lin ecliptic_N = mkN "ecliptic" "ecliptics"; -- from DictEng -lin eclogue_N = mkN "eclogue" ; -lin ecobabble_N = mkN "ecobabble" ; -lin ecological_A = compoundA (mkA "ecological"); -- from DictEng -lin ecologically_Adv = mkAdv "ecologically" ; -lin ecologist_N = mkN "ecologist" "ecologists"; -- from DictEng -lin ecology_N = mkN "ecology" ; -- from DictEng -lin econometric_A = mkA "econometric" ; -lin econometrician_N = mkN "econometrician" ; -lin econometrics_N = mkN "econometrics" ; -lin economic_A = compoundA (mkA "economic"); -- from DictEng -lin economical_A = compoundA (mkA "economical"); -- from DictEng -lin economically_Adv = mkAdv "economically" ; -lin economics_N = mkN "economics" "economics"; -- from DictEng -lin economist_N = mkN "economist" "economists"; -- from DictEng -lin economize_V = mkV "economize" "economizes" "economized" "economized" "economizing"; -- from DictEng -lin economize_V2 = mkV2 (mkV "economize" "economizes" "economized" "economized" "economizing"); -- from DictEng -lin economizer_N = mkN "economizer" ; -lin economy_N = mkN "economy" "economies"; -- from DictEng -lin ecosystem_N = mkN "ecosystem" "ecosystems"; -- from DictEng -lin ecoterrorism_N = mkN "ecoterrorism" ; -lin ecotourism_N = mkN "ecotourism" ; -lin ecphonesis_N = mkN "ecphonesis" ; -lin ecstasy_N = mkN "ecstasy" "ecstasies"; -- from DictEng -lin ecstatic_A = compoundA (mkA "ecstatic"); -- from DictEng -lin ecstatically_Adv = mkAdv "ecstatically"; -- from DictEng -lin ectasia_N = mkN "ectasia" ; -lin ectoderm_N = mkN "ectoderm" ; -lin ectodermal_A = mkA "ectodermal" ; -lin ectomorph_N = mkN "ectomorph" ; -lin ectomorphic_A = mkA "ectomorphic" ; -lin ectoparasite_N = mkN "ectoparasite" ; -lin ectopia_N = mkN "ectopia" ; -lin ectopic_A = mkA "ectopic" ; -lin ectoplasm_N = mkN "ectoplasm" ; -- from DictEng -lin ectoproct_N = mkN "ectoproct" ; -lin ectrodactyly_N = mkN "ectrodactyly" ; -lin ecuadorian_A = compoundA (mkA "ecuadorian"); -- from DictEng -lin ecuadorian_N = mkN "ecuadorian" "ecuadorians"; -- from DictEng -lin ecumenic_A = mkA "ecumenic" ; -lin ecumenical_A = compoundA (mkA "ecumenical"); -- from DictEng -lin ecumenism_N = mkN "ecumenism" ; -lin eczema_N = mkN "eczema" ; -- from DictEng -lin edacious_A = mkA "edacious" ; -lin edacity_N = mkN "edacity" ; -lin edaphosaurus_N = mkN "edaphosaurus" ; -lin eddy_N = mkN "eddy" "eddies"; -- from DictEng -lin eddy_V = mkV "eddy" "eddies" "eddied" "eddied" "eddying"; -- from DictEng -lin edelweiss_N = mkN "edelweiss" ; -- from DictEng -lin edema_N = mkN "edema" ; -lin edematous_A = mkA "edematous" ; -lin edental_A = mkA "edental" ; -lin edentate_N = mkN "edentate" ; -lin edentulous_A = mkA "edentulous" ; -lin edge_N = mkN "edge" "edges"; -- from DictEng -lin edge_V = mkV "edge" "edges" "edged" "edged" "edging"; -- from DictEng -lin edge_V2 = mkV2 (mkV "edge" "edges" "edged" "edged" "edging"); -- from DictEng -lin edged_A = mkA "edged" ; -lin edgeless_A = mkA "edgeless" ; -lin edger_N = mkN "edger" ; -lin edgeways_Adv = mkAdv "edgeways"; -- from DictEng -lin edgewise_Adv = mkAdv "edgewise"; -- from DictEng -lin edginess_N = mkN "edginess" ; -lin edging_N = mkN "edging" "edgings"; -- from DictEng -lin edgy_A = mkA "edgy" "edgier"; -- from DictEng -lin edibility_N = mkN "edibility" ; -- from DictEng -lin edible_A = compoundA (mkA "edible"); -- from DictEng -lin edible_N = mkN "edible" "edibles"; -- from DictEng -lin edict_N = mkN "edict" "edicts"; -- from DictEng -lin edification_N = mkN "edification" ; -- from DictEng -lin edifice_N = mkN "edifice" "edifices"; -- from DictEng -lin edified_A = mkA "edified" ; -lin edify_V2 = mkV2 (mkV "edify" "edifies" "edified" "edified" "edifying"); -- from DictEng -lin edifying_A = mkA "edifying" ; -lin edit_V2 = mkV2 (mkV "edit" "edits" "edited" "edited" "editing"); -- from DictEng -lin editing_N = mkN "editing" ; -lin edition_N = mkN "edition" "editions"; -- from DictEng -lin editor_N = mkN "editor" "editors"; -- from DictEng -lin editorial_A = compoundA (mkA "editorial"); -- from DictEng -lin editorial_N = mkN "editorial" "editorials"; -- from DictEng -lin editorially_Adv = mkAdv "editorially" ; -lin editorship_N = mkN "editorship" ; -lin edmontosaurus_N = mkN "edmontosaurus" ; -lin edp_N = mkN "edp" ; -- from DictEng -lin educate_V2 = mkV2 (mkV "educate" "educates" "educated" "educated" "educating"); -- from DictEng -lin educated_A = mkA "educated" ; -lin education_N = mkN "education" ; -- from DictEng -lin educational_A = compoundA (mkA "educational"); -- from DictEng -lin educationalist_N = mkN "educationalist" "educationalists"; -- from DictEng -lin educationally_Adv = mkAdv "educationally" ; -lin educationist_N = mkN "educationist" "educationists"; -- from DictEng -lin educative_A = mkA "educative" ; -lin educator_N = mkN "educator" "educators"; -- from DictEng -lin educe_V2 = mkV2 (mkV "educe" "educes" "educed" "educed" "educing"); -- from DictEng -lin edutainment_N = mkN "edutainment" ; -lin edwardian_A = compoundA (mkA "edwardian"); -- from DictEng -lin edwardian_N = mkN "edwardian" "edwardians"; -- from DictEng -lin eec_N = mkN "eec" ; -- from DictEng -lin eeg_N = mkN "eeg" ; -- from DictEng -lin eel_N = mkN "eel" "eels"; -- from DictEng -lin eel_shaped_A = compoundA (mkA "eel shaped") ; -lin eelblenny_N = mkN "eelblenny" ; -lin eelgrass_N = mkN "eelgrass" ; -lin eellike_A = mkA "eellike" ; -lin eelpout_N = mkN "eelpout" ; -lin eelworm_N = mkN "eelworm" ; -lin eerie_A = mkA "eerie" "eerier"; -- from DictEng -lin eerily_Adv = mkAdv "eerily"; -- from DictEng -lin eeriness_N = mkN "eeriness" ; -- from DictEng -lin eery_A = mkA "eery" "eerier"; -- from DictEng -lin eff_V = mkV "eff" "effs" "effed" "effed" "effing"; -- from DictEng -lin efface_V2 = mkV2 (mkV "efface" "effaces" "effaced" "effaced" "effacing"); -- from DictEng -lin effaceable_A = mkA "effaceable" ; -lin effacement_N = mkN "effacement" ; -- from DictEng -lin effect_N = mkN "effect" "effects"; -- from DictEng -lin effect_V2 = mkV2 (mkV "effect" "effects" "effected" "effected" "effecting"); -- from DictEng -lin effecter_N = mkN "effecter" ; -lin effective_A = compoundA (mkA "effective"); -- from DictEng -lin effectively_Adv = mkAdv "effectively" ; -lin effectiveness_N = mkN "effectiveness" ; -- from DictEng -lin effector_N = mkN "effector" ; -lin effects_N = mkN "effects" ; -lin effectual_A = compoundA (mkA "effectual"); -- from DictEng -lin effectuality_N = mkN "effectuality" ; -- from DictEng -lin effectually_Adv = mkAdv "effectually" ; -lin effectualness_N = mkN "effectualness" ; -- from DictEng -lin effeminacy_N = mkN "effeminacy" ; -- from DictEng -lin effeminate_A = compoundA (mkA "effeminate"); -- from DictEng -lin effendi_N = mkN "effendi" "effendis"; -- from DictEng -lin efferent_A = mkA "efferent" ; -lin effervesce_V = mkV "effervesce" "effervesces" "effervesced" "effervesced" "effervescing"; -- from DictEng -lin effervescence_N = mkN "effervescence" ; -- from DictEng -lin effervescent_A = compoundA (mkA "effervescent"); -- from DictEng -lin effete_A = compoundA (mkA "effete"); -- from DictEng -lin effeteness_N = mkN "effeteness" ; -- from DictEng -lin efficacious_A = compoundA (mkA "efficacious"); -- from DictEng -lin efficaciously_Adv = mkAdv "efficaciously" ; -lin efficacy_N = mkN "efficacy" ; -- from DictEng -lin efficiency_N = mkN "efficiency" ; -- from DictEng -lin efficient_A = compoundA (mkA "efficient"); -- from DictEng -lin efficiently_Adv = mkAdv "efficiently" ; -lin effigy_N = mkN "effigy" "effigies"; -- from DictEng -lin effleurage_N = mkN "effleurage" ; -lin efflorescence_N = mkN "efflorescence" ; -- from DictEng -lin efflorescent_A = compoundA (mkA "efflorescent"); -- from DictEng -lin effluent_A = mkA "effluent" ; -lin effluent_N = mkN "effluent" "effluents"; -- from DictEng -lin effluvium_N = mkN "effluvium" ; -lin efflux_N = mkN "efflux" "effluxes"; -- from DictEng -lin effort_N = mkN "effort" "efforts"; -- from DictEng -lin effortful_A = mkA "effortful" ; -lin effortfulness_N = mkN "effortfulness" ; -lin effortless_A = compoundA (mkA "effortless"); -- from DictEng -lin effortlessly_Adv = mkAdv "effortlessly" ; -lin effortlessness_N = mkN "effortlessness" ; -lin effrontery_N = mkN "effrontery" "effronteries"; -- from DictEng -lin effulgence_N = mkN "effulgence" ; -- from DictEng -lin effulgent_A = compoundA (mkA "effulgent"); -- from DictEng -lin effusion_N = mkN "effusion" "effusions"; -- from DictEng -lin effusive_A = compoundA (mkA "effusive"); -- from DictEng -lin effusively_Adv = mkAdv "effusively" ; -lin effusiveness_N = mkN "effusiveness" ; -- from DictEng -lin eft_N = mkN "eft" "efts"; -- from DictEng -lin efta_N = mkN "efta" ; -- from DictEng -lin egalitarian_A = compoundA (mkA "egalitarian"); -- from DictEng -lin egalitarian_N = mkN "egalitarian" "egalitarians"; -- from DictEng -lin egalitarianism_N = mkN "egalitarianism" ; -- from DictEng -lin egality_N = mkN "egality" ; -lin egg_N = mkN "egg" "eggs"; -- from DictEng -lin egg_V2 = mkV2 (mkV "egg" "eggs" "egged" "egged" "egging"); -- from DictEng -lin egg_and_dart_N = mkN "egg and dart" ; -lin egg_filled_A = compoundA (mkA "egg filled") ; -lin egg_producing_A = compoundA (mkA "egg producing") ; -lin egg_shaped_A = compoundA (mkA "egg shaped") ; -lin egg_beater_N = mkN "egg - beater" "egg - beaters"; -- from DictEng -lin egg_cup_N = mkN "egg - cup" "egg - cups"; -- from DictEng -lin egg_whisk_N = mkN "egg - whisk" "egg - whisks"; -- from DictEng -lin eggar_N = mkN "eggar" ; -lin eggbeater_N = mkN "eggbeater" ; -lin eggcup_N = mkN "eggcup" ; -lin egghead_N = mkN "egghead" "eggheads"; -- from DictEng -lin eggnog_N = mkN "eggnog" ; -lin eggplant_N = mkN "eggplant" "eggplants"; -- from DictEng -lin eggs_benedict_PN = mkPN "eggs Benedict" ; -lin eggshake_N = mkN "eggshake" "eggshakes"; -- from DictEng -lin eggshell_N = mkN "eggshell" "eggshells"; -- from DictEng -lin eglantine_N = mkN "eglantine" ; -- from DictEng -lin ego_N = mkN "ego" "egos"; -- from DictEng -lin egocentric_A = compoundA (mkA "egocentric"); -- from DictEng -lin egocentric_N = mkN "egocentric" ; -lin egoism_N = mkN "egoism" ; -- from DictEng -lin egoist_N = mkN "egoist" "egoists"; -- from DictEng -lin egoistic_A = compoundA (mkA "egoistic"); -- from DictEng -lin egoistical_A = compoundA (mkA "egoistical"); -- from DictEng -lin egomania_N = mkN "egomania" ; -lin egomaniac_N = mkN "egomaniac" ; -lin egotism_N = mkN "egotism" ; -- from DictEng -lin egotist_N = mkN "egotist" "egotists"; -- from DictEng -lin egotistic_A = compoundA (mkA "egotistic"); -- from DictEng -lin egotistically_Adv = mkAdv "egotistically"; -- from DictEng -lin egotrip_N = mkN "egotrip" "egotrips"; -- from DictEng -lin egotrip_V = mkV "egotrip" "egotrips" "egotripped" "egotripped" "egotripping"; -- from DictEng -lin egregious_A = compoundA (mkA "egregious"); -- from DictEng -lin egress_N = mkN "egress" "egresses"; -- from DictEng -lin egret_N = mkN "egret" "egrets"; -- from DictEng -lin egyptian_A = compoundA (mkA "egyptian"); -- from DictEng -lin egyptian_N = mkN "egyptian" "egyptians"; -- from DictEng -lin eider_N = mkN "eider" ; -lin eiderdown_N = mkN "eiderdown" "eiderdowns"; -- from DictEng -lin eidetic_A = mkA "eidetic" ; -lin eidos_N = mkN "eidos" ; -lin eigenvalue_N = mkN "eigenvalue" ; -lin eight_A = mkA "eight" ; -lin eight_N = mkN "eight" ; -lin eight_day_A = compoundA (mkA "eight day") ; -lin eight_membered_A = compoundA (mkA "eight membered") ; -lin eight_sided_A = compoundA (mkA "eight sided") ; -lin eight_spot_N = mkN "eight spot" ; -lin eighteen_A = mkA "eighteen" ; -lin eighteen_N = mkN "eighteen" ; -lin eighteenth_A = mkA "eighteenth" ; -lin eighteenth_N = mkN "eighteenth" ; -lin eighth_A = mkA "eighth" ; -lin eighth_N = mkN "eighth" ; -lin eighties_N = mkN "eighties" ; -lin eightieth_A = mkA "eightieth" ; -lin eightieth_N = mkN "eightieth" ; -lin eightpence_N = mkN "eightpence" "eightpences"; -- from DictEng -lin eightpenny_A = compoundA (mkA "eightpenny"); -- from DictEng -lin eightsome_N = mkN "eightsome" "eightsomes"; -- from DictEng -lin eighty_A = mkA "eighty" ; -lin eighty_N = mkN "eighty" ; -lin eighty_eight_A = compoundA (mkA "eighty eight") ; -lin eighty_fifth_A = compoundA (mkA "eighty fifth") ; -lin eighty_five_A = compoundA (mkA "eighty five") ; -lin eighty_four_A = compoundA (mkA "eighty four") ; -lin eighty_nine_A = compoundA (mkA "eighty nine") ; -lin eighty_one_A = compoundA (mkA "eighty one") ; -lin eighty_seven_A = compoundA (mkA "eighty seven") ; -lin eighty_six_A = compoundA (mkA "eighty six") ; -lin eighty_three_A = compoundA (mkA "eighty three") ; -lin eighty_two_A = compoundA (mkA "eighty two") ; -lin einsteinium_N = mkN "einsteinium" ; -lin eisegesis_N = mkN "eisegesis" ; -lin eisteddfod_N = mkN "eisteddfod" "eisteddfods"; -- from DictEng -lin either_Adv = mkAdv "either"; -- from DictEng -lin either_Det = mkDeterminer singular "either"; -- from DictEng -lin either7or_DConj = mkConj "either" "or" singular ; -- from DictEng -lin ejaculate_V2 = mkV2 (mkV "ejaculate" "ejaculates" "ejaculated" "ejaculated" "ejaculating"); -- from DictEng -lin ejaculation_N = mkN "ejaculation" "ejaculations"; -- from DictEng -lin ejaculator_N = mkN "ejaculator" ; -lin eject_V = mkV "eject" "ejects" "ejected" "ejected" "ejecting"; -- from DictEng -lin eject_V2 = mkV2 (mkV "eject" "ejects" "ejected" "ejected" "ejecting"); -- from DictEng -lin ejection_N = mkN "ejection" "ejections"; -- from DictEng -lin ejector_N = mkN "ejector" "ejectors"; -- from DictEng -lin ejector_seat_N = mkN "ejector - seat" "ejector - seats"; -- from DictEng -lin eke_V2 = mkV2 (mkV "eke" "ekes" "eked" "eked" "eking"); -- from DictEng -lin el_dorado_N = mkN "el dorado" "el doradi" {- FIXME: guessed plural form -}; -- from DictEng -lin elaborate_A = compoundA (mkA "elaborate"); -- from DictEng -lin elaborate_V = mkV "elaborate"; -- from DictEng -lin elaborate_V2 = mkV2 (mkV "elaborate" "elaborates" "elaborated" "elaborated" "elaborating"); -- from DictEng -lin elaborately_Adv = mkAdv "elaborately" ; -lin elaborateness_N = mkN "elaborateness" ; -- from DictEng -lin elaboration_N = mkN "elaboration" "elaborations"; -- from DictEng -lin elan_N = mkN "élan" ; -- from DictEng -lin eland_N = mkN "eland" "elands"; -- from DictEng -lin elapid_N = mkN "elapid" ; -lin elapse_V = mkV "elapse" "elapses" "elapsed" "elapsed" "elapsing"; -- from DictEng -lin elapsed_A = mkA "elapsed" ; -lin elasmobranch_N = mkN "elasmobranch" ; -lin elastance_N = mkN "elastance" ; -lin elastase_N = mkN "elastase" ; -lin elastic_A = compoundA (mkA "elastic"); -- from DictEng -lin elastic_N = mkN "elastic" ; -- from DictEng -lin elasticity_N = mkN "elasticity" "elasticities"; -- from DictEng -lin elasticized_A = compoundA (mkA "elasticized"); -- from DictEng -lin elastin_N = mkN "elastin" ; -lin elastomer_N = mkN "elastomer" ; -lin elastoplast_N = mkN "elastoplast" ; -- from DictEng -lin elastosis_N = mkN "elastosis" ; -lin elate_V2 = mkV2 (mkV "elate" "elates" "elated" "elated" "elating"); -- from DictEng -lin elated_A = mkA "elated" ; -lin elating_A = mkA "elating" ; -lin elation_N = mkN "elation" ; -- from DictEng -lin elbow_N = mkN "elbow" "elbows"; -- from DictEng -lin elbow_V2 = mkV2 (mkV "elbow" "elbows" "elbowed" "elbowed" "elbowing"); -- from DictEng -lin elbowing_N = mkN "elbowing" ; -lin elder_A = mkA "elder" ; -lin elder_N = mkN "elder" "elders"; -- from DictEng -lin elderberry_N = mkN "elderberry" ; -lin elderly_A = compoundA (mkA "elderly"); -- from DictEng -lin eldership_N = mkN "eldership" ; -lin eldritch_A = mkA "eldritch" ; -lin elecampane_N = mkN "elecampane" ; -lin elect_A = compoundA (mkA "elect"); -- from DictEng -lin elect_V = mkV "elect"; -- from DictEng -lin elect_V2 = mkV2 (mkV "elect"); -- from DictEng -lin elect_V2V = mkV2V (mkV "elect") noPrep to_Prep ; -- from DictEng -lin elect_V3 = mkV3 (mkV "elect"); -- from DictEng -lin elect_VS = mkVS (mkV "elect"); -- from DictEng -lin election_N = mkN "election" "elections"; -- from DictEng -lin electioneering_N = mkN "electioneering" ; -- from DictEng -lin elective_A = compoundA (mkA "elective"); -- from DictEng -lin elector_N = mkN "elector" "electors"; -- from DictEng -lin electoral_A = compoundA (mkA "electoral"); -- from DictEng -lin electorate_N = mkN "electorate" "electorates"; -- from DictEng -lin electric_A = compoundA (mkA "electric"); -- from DictEng -lin electric_N = mkN "electric" ; -lin electrical_A = compoundA (mkA "electrical"); -- from DictEng -lin electrically_Adv = mkAdv "electrically" ; -lin electrician_N = mkN "electrician" "electricians"; -- from DictEng -lin electricity_N = mkN "electricity" ; -- from DictEng -lin electrification_N = mkN "electrification" ; -- from DictEng -lin electrify_V2 = mkV2 (mkV "electrify" "electrifies" "electrified" "electrified" "electrifying"); -- from DictEng -lin electrifying_A = mkA "electrifying" ; -lin electrocardiogram_N = mkN "electrocardiogram" "electrocardiograms"; -- from DictEng -lin electrocardiograph_N = mkN "electrocardiograph" "electrocardiographs"; -- from DictEng -lin electrocardiographic_A = mkA "electrocardiographic" ; -lin electrocautery_N = mkN "electrocautery" ; -lin electrochemical_A = mkA "electrochemical" ; -lin electrochemistry_N = mkN "electrochemistry" ; -- from DictEng -lin electrocute_V2 = mkV2 (mkV "electrocute" "electrocutes" "electrocuted" "electrocuted" "electrocuting"); -- from DictEng -lin electrocution_N = mkN "electrocution" "electrocutions"; -- from DictEng -lin electrocutioner_N = mkN "electrocutioner" ; -lin electrode_N = mkN "electrode" "electrodes"; -- from DictEng -lin electrodeposition_N = mkN "electrodeposition" ; -lin electrodynamometer_N = mkN "electrodynamometer" ; -lin electroencephalogram_N = mkN "electroencephalogram" ; -lin electroencephalograph_N = mkN "electroencephalograph" ; -lin electroencephalographic_A = mkA "electroencephalographic" ; -lin electrograph_N = mkN "electrograph" ; -lin electrologist_N = mkN "electrologist" ; -lin electrolysis_N = mkN "electrolysis" ; -- from DictEng -lin electrolyte_N = mkN "electrolyte" "electrolytes"; -- from DictEng -lin electrolytic_A = mkA "electrolytic" ; -lin electrolytic_N = mkN "electrolytic" ; -lin electromagnet_N = mkN "electromagnet" "electromagnets"; -- from DictEng -lin electromagnetic_A = compoundA (mkA "electromagnetic"); -- from DictEng -lin electromagnetism_N = mkN "electromagnetism" ; -- from DictEng -lin electromechanical_A = mkA "electromechanical" ; -lin electrometer_N = mkN "electrometer" ; -lin electromotive_A = mkA "electromotive" ; -lin electromyogram_N = mkN "electromyogram" ; -lin electromyograph_N = mkN "electromyograph" ; -lin electromyography_N = mkN "electromyography" ; -lin electron_N = mkN "electron" "electrons"; -- from DictEng -lin electron_microscopic_A = compoundA (mkA "electron microscopic") ; -lin electronegativity_N = mkN "electronegativity" ; -lin electronic_A = compoundA (mkA "electronic"); -- from DictEng -lin electronically_Adv = mkAdv "electronically"; -- from DictEng -lin electronics_N = mkN "electronics" "electronics"; -- from DictEng -lin electrophoresis_N = mkN "electrophoresis" ; -lin electrophoretic_A = mkA "electrophoretic" ; -lin electrophorus_N = mkN "electrophorus" ; -lin electroplate_N = mkN "electroplate" ; -- from DictEng -lin electroplate_V2 = mkV2 (mkV "electroplate" "electroplates" "electroplated" "electroplated" "electroplating"); -- from DictEng -lin electroplater_N = mkN "electroplater" ; -lin electroretinogram_N = mkN "electroretinogram" ; -lin electroscope_N = mkN "electroscope" ; -lin electrosleep_N = mkN "electrosleep" ; -lin electrostatic_A = compoundA (mkA "electrostatic"); -- from DictEng -lin electrostatically_Adv = mkAdv "electrostatically" ; -lin electrostatics_N = mkN "electrostatics" ; -lin electrosurgery_N = mkN "electrosurgery" ; -lin electrotherapist_N = mkN "electrotherapist" ; -lin electrotherapy_N = mkN "electrotherapy" ; -lin electrum_N = mkN "electrum" ; -lin eleemosynary_A = compoundA (mkA "eleemosynary"); -- from DictEng -lin elegance_N = mkN "elegance" ; -- from DictEng -lin elegant_A = compoundA (mkA "elegant"); -- from DictEng -lin elegant_habenaria_PN = mkPN "elegant Habenaria" ; -lin elegantly_Adv = mkAdv "elegantly" ; -lin elegiac_A = compoundA (mkA "elegiac"); -- from DictEng -lin elegist_N = mkN "elegist" ; -lin elegy_N = mkN "elegy" "elegies"; -- from DictEng -lin element_N = mkN "element" "elements"; -- from DictEng -lin elemental_A = compoundA (mkA "elemental"); -- from DictEng -lin elementarily_Adv = mkAdv "elementarily" ; -lin elementary_A = compoundA (mkA "elementary"); -- from DictEng -lin elements_N = mkN "elements" ; -lin elemi_N = mkN "elemi" ; -lin elephant_N = mkN "elephant" "elephants"; -- from DictEng -lin elephant's_foot_N = mkN "elephant's foot" ; -lin elephantiasis_N = mkN "elephantiasis" ; -- from DictEng -lin elephantine_A = compoundA (mkA "elephantine"); -- from DictEng -lin elevate_V2 = mkV2 (mkV "elevate" "elevates" "elevated" "elevated" "elevating"); -- from DictEng -lin elevated_A = mkA "elevated" ; -lin elevation_N = mkN "elevation" "elevations"; -- from DictEng -lin elevator_N = mkN "elevator" "elevators"; -- from DictEng -lin eleven_A = mkA "eleven" ; -lin eleven_N = mkN "eleven" ; -lin eleven_plus_N = mkN "eleven plus" ; -lin eleven_sided_A = compoundA (mkA "eleven sided") ; -lin eleventh_A = mkA "eleventh" ; -lin eleventh_N = mkN "eleventh" ; -lin elf_N = mkN "elf" "elves" {- FIXME: guessed plural form -}; -- from DictEng -lin elfin_A = compoundA (mkA "elfin"); -- from DictEng -lin elfish_A = compoundA (mkA "elfish"); -- from DictEng -lin elicit_V2 = mkV2 (mkV "elicit" "elicits" "elicited" "elicited" "eliciting"); -- from DictEng -lin elicitation_N = mkN "elicitation" "elicitations"; -- from DictEng -lin elicited_A = mkA "elicited" ; -lin elide_V2 = mkV2 (mkV "elide" "elides" "elided" "elided" "eliding"); -- from DictEng -lin eligibility_N = mkN "eligibility" ; -- from DictEng -lin eligible_A = compoundA (mkA "eligible"); -- from DictEng -lin eliminate_V2 = mkV2 (mkV "eliminate" "eliminates" "eliminated" "eliminated" "eliminating"); -- from DictEng -lin elimination_N = mkN "elimination" "eliminations"; -- from DictEng -lin eliminator_N = mkN "eliminator" ; -lin elision_N = mkN "elision" "elisions"; -- from DictEng -lin elite_N = mkN "élite" "élites"; -- from DictEng -lin elitism_N = mkN "elitism" ; -- from DictEng -lin elitist_N = mkN "elitist" "elitists"; -- from DictEng -lin elixir_N = mkN "elixir" "elixirs"; -- from DictEng -lin elizabethan_A = compoundA (mkA "elizabethan"); -- from DictEng -lin elizabethan_N = mkN "elizabethan" "elizabethans"; -- from DictEng -lin elk_N = mkN "elk" "elks"; -- from DictEng -lin ell_N = mkN "ell" ; -lin ellipse_N = mkN "ellipse" "ellipses"; -- from DictEng -lin ellipsis_N = mkN "ellipsis" "ellipses" {- FIXME: guessed plural form -}; -- from DictEng -lin ellipsoid_A = mkA "ellipsoid" ; -lin ellipsoid_N = mkN "ellipsoid" ; -lin elliptic_A = compoundA (mkA "elliptic"); -- from DictEng -lin elliptical_A = compoundA (mkA "elliptical"); -- from DictEng -lin elm_N = mkN "elm" "elms"; -- from DictEng -lin elocution_N = mkN "elocution" ; -- from DictEng -lin elocutionary_A = compoundA (mkA "elocutionary"); -- from DictEng -lin elocutionist_N = mkN "elocutionist" "elocutionists"; -- from DictEng -lin elongate_A = mkA "elongate" ; -lin elongate_V = mkV "elongate" "elongates" "elongated" "elongated" "elongating"; -- from DictEng -lin elongate_V2 = mkV2 (mkV "elongate" "elongates" "elongated" "elongated" "elongating"); -- from DictEng -lin elongated_A = mkA "elongated" ; -lin elongation_N = mkN "elongation" "elongations"; -- from DictEng -lin elope_V = mkV "elope" "elopes" "eloped" "eloped" "eloping"; -- from DictEng -lin elopement_N = mkN "elopement" "elopements"; -- from DictEng -lin eloquence_N = mkN "eloquence" ; -- from DictEng -lin eloquent_A = compoundA (mkA "eloquent"); -- from DictEng -lin eloquently_Adv = mkAdv "eloquently" ; -lin else_Adv = mkAdv "else"; -- from DictEng -lin elsewhere_Adv = mkAdv "elsewhere"; -- from DictEng -lin elsholtzia_N = mkN "elsholtzia" ; -lin eluate_N = mkN "eluate" ; -lin elucidate_V2 = mkV2 (mkV "elucidate" "elucidates" "elucidated" "elucidated" "elucidating"); -- from DictEng -lin elucidation_N = mkN "elucidation" "elucidations"; -- from DictEng -lin elude_V2 = mkV2 (mkV "elude" "eludes" "eluded" "eluded" "eluding"); -- from DictEng -lin elusive_A = compoundA (mkA "elusive"); -- from DictEng -lin elusiveness_N = mkN "elusiveness" ; -lin elution_N = mkN "elution" ; -lin elver_N = mkN "elver" "elvers"; -- from DictEng -lin elves_N = mkN "elves" ; -lin elvish_A = compoundA (mkA "elvish"); -- from DictEng -lin elysian_A = compoundA (mkA "elysian"); -- from DictEng -lin em_N = mkN "em" ; -lin emaciate_V2 = mkV2 (mkV "emaciate" "emaciates" "emaciated" "emaciated" "emaciating"); -- from DictEng -lin emaciation_N = mkN "emaciation" ; -- from DictEng -lin emanate_V = mkV "emanate" "emanates" "emanated" "emanated" "emanating"; -- from DictEng -lin emanate_V2 = mkV2 (mkV "emanate") ; -lin emanation_N = mkN "emanation" "emanations"; -- from DictEng -lin emancipate_V2 = mkV2 (mkV "emancipate" "emancipates" "emancipated" "emancipated" "emancipating"); -- from DictEng -lin emancipated_A = mkA "emancipated" ; -lin emancipation_N = mkN "emancipation" ; -- from DictEng -lin emancipative_A = mkA "emancipative" ; -lin emancipator_N = mkN "emancipator" ; -lin emarginate_A = mkA "emarginate" ; -lin emasculate_V2 = mkV2 (mkV "emasculate" "emasculates" "emasculated" "emasculated" "emasculating"); -- from DictEng -lin emasculation_N = mkN "emasculation" "emasculations"; -- from DictEng -lin embalm_V2 = mkV2 (mkV "embalm" "embalms" "embalmed" "embalmed" "embalming"); -- from DictEng -lin embalmer_N = mkN "embalmer" ; -lin embalmment_N = mkN "embalmment" "embalmments"; -- from DictEng -lin embankment_N = mkN "embankment" "embankments"; -- from DictEng -lin embargo_N = mkN "embargo" "embargoes"; -- from DictEng -lin embargo_V2 = mkV2 (mkV "embargo" "embargos" "embargoed" "embargoed" "embargoing"); -- from DictEng -lin embark_V = mkV "embark" "embarks" "embarked" "embarked" "embarking"; -- from DictEng -lin embark_V2 = mkV2 (mkV "embark" "embarks" "embarked" "embarked" "embarking"); -- from DictEng -lin embarkation_N = mkN "embarkation" "embarkations"; -- from DictEng -lin embarrass_V2 = mkV2 (mkV "embarrass" "embarrasses" "embarrassed" "embarrassed" "embarrassing"); -- from DictEng -lin embarrassed_A = mkA "embarrassed" ; -lin embarrassing_A = compoundA (mkA "embarrassing"); -- from DictEng -lin embarrassingly_Adv = mkAdv "embarrassingly" ; -lin embarrassment_N = mkN "embarrassment" "embarrassments"; -- from DictEng -lin embassy_N = mkN "embassy" "embassies"; -- from DictEng -lin embattled_A = compoundA (mkA "embattled"); -- from DictEng -lin embed_V2 = mkV2 (mkV "embed" "embeds" "embedded" "embedded" "embedding"); -- from DictEng -lin embedded_A = mkA "embedded" ; -lin embellish_V2 = mkV2 (mkV "embellish" "embellishes" "embellished" "embellished" "embellishing"); -- from DictEng -lin embellishment_N = mkN "embellishment" "embellishments"; -- from DictEng -lin ember_N = mkN "ember" "embers"; -- from DictEng -lin embezzle_V2 = mkV2 (mkV "embezzle" "embezzles" "embezzled" "embezzled" "embezzling"); -- from DictEng -lin embezzled_A = mkA "embezzled" ; -lin embezzlement_N = mkN "embezzlement" "embezzlements"; -- from DictEng -lin embezzler_N = mkN "embezzler" ; -lin embitter_V2 = mkV2 (mkV "embitter" "embitters" "embittered" "embittered" "embittering"); -- from DictEng -lin embitterment_N = mkN "embitterment" "embitterments"; -- from DictEng -lin emblazon_V2 = mkV2 (mkV "emblazon" "emblazons" "emblazoned" "emblazoned" "emblazoning"); -- from DictEng -lin emblem_N = mkN "emblem" "emblems"; -- from DictEng -lin emblematic_A = compoundA (mkA "emblematic"); -- from DictEng -lin embodiment_N = mkN "embodiment" "embodiments"; -- from DictEng -lin embody_V2 = mkV2 (mkV "embody" "embodies" "embodied" "embodied" "embodying"); -- from DictEng -lin embolden_V2 = mkV2 (mkV "embolden" "emboldens" "emboldened" "emboldened" "emboldening"); -- from DictEng -lin emboldened_A = mkA "emboldened" ; -lin embolectomy_N = mkN "embolectomy" ; -lin embolic_A = mkA "embolic" ; -lin embolism_N = mkN "embolism" ; -lin embolus_N = mkN "embolus" ; -lin embonpoint_A = compoundA (mkA "embonpoint"); -- from DictEng -lin embonpoint_N = mkN "embonpoint" ; -- from DictEng -lin emboss_V = mkV "emboss" ; -lin emboss_V2 = mkV2 (mkV "emboss" "embosses" "embossed" "embossed" "embossing"); -- from DictEng -lin embrace_N = mkN "embrace" "embraces"; -- from DictEng -lin embrace_V = mkV "embrace" "embraces" "embraced" "embraced" "embracing"; -- from DictEng -lin embrace_V2 = mkV2 (mkV "embrace" "embraces" "embraced" "embraced" "embracing"); -- from DictEng -lin embrasure_N = mkN "embrasure" "embrasures"; -- from DictEng -lin embrocation_N = mkN "embrocation" ; -- from DictEng -lin embroider_V = mkV "embroider" "embroiders" "embroidered" "embroidered" "embroidering"; -- from DictEng -lin embroider_V2 = mkV2 (mkV "embroider" "embroiders" "embroidered" "embroidered" "embroidering"); -- from DictEng -lin embroiderer_N = mkN "embroiderer" ; -lin embroideress_N = mkN "embroideress" ; -lin embroidery_N = mkN "embroidery" ; -- from DictEng -lin embroil_V = mkV "embroil"; -- from DictEng -lin embroil_V2 = mkV2 (mkV "embroil" "embroils" "embroiled" "embroiled" "embroiling"); -- from DictEng -lin embroiled_A = mkA "embroiled" ; -lin embryo_N = mkN "embryo" "embryos"; -- from DictEng -lin embryologist_N = mkN "embryologist" ; -lin embryology_N = mkN "embryology" ; -lin embryonic_A = compoundA (mkA "embryonic"); -- from DictEng -lin emeer_N = mkN "emeer" "emeers"; -- from DictEng -lin emend_V2 = mkV2 (mkV "emend" "emends" "emended" "emended" "emending"); -- from DictEng -lin emendation_N = mkN "emendation" "emendations"; -- from DictEng -lin emended_A = mkA "emended" ; -lin emerald_N = mkN "emerald" "emeralds"; -- from DictEng -lin emerge_V = mkV "emerge" "emerges" "emerged" "emerged" "emerging"; -- from DictEng -lin emerge_V2 = mkV2 (mkV "emerge" "emerges" "emerged" "emerged" "emerging"); -- from DictEng -lin emerge_V2V = mkV2V (mkV "emerge" "emerges" "emerged" "emerged" "emerging") noPrep to_Prep ; -- from DictEng -lin emerge_VS = mkVS (mkV "emerge" "emerges" "emerged" "emerged" "emerging"); -- from DictEng -lin emergence_N = mkN "emergence" ; -- from DictEng -lin emergency_N = mkN "emergency" "emergencies"; -- from DictEng -lin emergent_A = compoundA (mkA "emergent"); -- from DictEng -lin emerging_A = mkA "emerging" ; -lin emeritus_A = compoundA (mkA "emeritus"); -- from DictEng -lin emeritus_N = mkN "emeritus" ; -lin emery_N = mkN "emery" ; -- from DictEng -lin emetic_N = mkN "emetic" "emetics"; -- from DictEng -lin emigrant_N = mkN "emigrant" "emigrants"; -- from DictEng -lin emigrate_V = mkV "emigrate" "emigrates" "emigrated" "emigrated" "emigrating"; -- from DictEng -lin emigrate_V2V = mkV2V (mkV "emigrate" "emigrates" "emigrated" "emigrated" "emigrating") noPrep to_Prep ; -- from DictEng -lin emigration_N = mkN "emigration" "emigrations"; -- from DictEng -lin emigre_N = mkN "émigré" "émigrés"; -- from DictEng -lin eminence_N = mkN "eminence" "eminences"; -- from DictEng -lin eminent_A = compoundA (mkA "eminent"); -- from DictEng -lin eminently_Adv = mkAdv "eminently" ; -lin emir_N = mkN "emir" "emirs"; -- from DictEng -lin emirate_N = mkN "emirate" "emirates"; -- from DictEng -lin emissary_N = mkN "emissary" "emissaries"; -- from DictEng -lin emission_N = mkN "emission" "emissions"; -- from DictEng -lin emit_V2 = mkV2 (mkV "emit" "emits" "emitted" "emitted" "emitting"); -- from DictEng -lin emitter_N = mkN "emitter" ; -lin emmenagogue_N = mkN "emmenagogue" ; -lin emmer_N = mkN "emmer" ; -lin emmetropia_N = mkN "emmetropia" ; -lin emmetropic_A = mkA "emmetropic" ; -lin emolument_N = mkN "emolument" "emoluments"; -- from DictEng -lin emoticon_N = mkN "emoticon" ; -lin emotion_N = mkN "emotion" "emotions"; -- from DictEng -lin emotional_A = compoundA (mkA "emotional"); -- from DictEng -lin emotionality_N = mkN "emotionality" ; -lin emotionally_Adv = mkAdv "emotionally" ; -lin emotionless_A = compoundA (mkA "emotionless"); -- from DictEng -lin emotionlessness_N = mkN "emotionlessness" ; -lin emotive_A = compoundA (mkA "emotive"); -- from DictEng -lin empale_V2 = mkV2 (mkV "empale" "empales" "empaled" "empaled" "empaling"); -- from DictEng -lin empanel_V2 = mkV2 (mkV "empanel" "empanels" "empanelled" "empanelled" "empanelling"); -- from DictEng -lin empathic_A = mkA "empathic" ; -lin empathize_V = mkV "empathize"; -- from DictEng -lin empathy_N = mkN "empathy" ; -- from DictEng -lin emperor_N = mkN "emperor" "emperors"; -- from DictEng -lin emphasis_N = mkN "emphasis" "emphases" {- FIXME: guessed plural form -}; -- from DictEng -lin emphasize_V2 = mkV2 (mkV "emphasize" "emphasizes" "emphasized" "emphasized" "emphasizing"); -- from DictEng -lin emphasize_VS = mkVS (mkV "emphasize"); -- from DictEng -lin emphasizing_N = mkN "emphasizing" ; -lin emphatic_A = compoundA (mkA "emphatic"); -- from DictEng -lin emphatically_Adv = mkAdv "emphatically"; -- from DictEng -lin emphysema_N = mkN "emphysema" ; -lin emphysematous_A = mkA "emphysematous" ; -lin empire_N = mkN "empire" "empires"; -- from DictEng -lin empiric_A = compoundA (mkA "empiric"); -- from DictEng -lin empirical_A = compoundA (mkA "empirical"); -- from DictEng -lin empirically_Adv = mkAdv "empirically" ; -lin empiricism_N = mkN "empiricism" ; -- from DictEng -lin empiricist_N = mkN "empiricist" "empiricists"; -- from DictEng -lin emplacement_N = mkN "emplacement" "emplacements"; -- from DictEng -lin emplane_V = mkV "emplane" "emplanes" "emplaned" "emplaned" "emplaning"; -- from DictEng -lin emplane_V2 = mkV2 (mkV "emplane" "emplanes" "emplaned" "emplaned" "emplaning"); -- from DictEng -lin employ_N = mkN "employ" "employs"; -- from DictEng -lin employ_V2 = mkV2 (mkV "employ" "employs" "employed" "employed" "employing"); -- from DictEng -lin employable_A = compoundA (mkA "employable"); -- from DictEng -lin employable_N = mkN "employable" ; -lin employed_A = mkA "employed" ; -lin employee_N = mkN "employee" "employees"; -- from DictEng -lin employer_N = mkN "employer" "employers"; -- from DictEng -lin employment_N = mkN "employment" ; -- from DictEng -lin emporium_N = mkN "emporium" "emporiums"; -- from DictEng -lin empower_V2 = mkV2 (mkV "empower" "empowers" "empowered" "empowered" "empowering"); -- from DictEng -lin empower_V2V = mkV2V (mkV "empower") noPrep to_Prep ; -- from DictEng -lin empowered_A = mkA "empowered" ; -lin empress_N = mkN "empress" "empresses"; -- from DictEng -lin emptiness_N = mkN "emptiness" ; -- from DictEng -lin empty_A = mkA "empty" "emptier"; -- from DictEng -lin empty_N = mkN "empty" "empties"; -- from DictEng -lin empty_V = mkV "empty" "empties" "emptied" "emptied" "emptying"; -- from DictEng -lin empty_V2 = mkV2 (mkV "empty" "empties" "emptied" "emptied" "emptying"); -- from DictEng -lin empty_handed_A = compoundA (mkA "empty - handed"); -- from DictEng -lin empty_handed_A = compoundA (mkA "empty - handed"); -- from DictEng -lin empty_headed_A = compoundA (mkA "empty - headed"); -- from DictEng -lin emptying_N = mkN "emptying" ; -lin empurpled_A = compoundA (mkA "empurpled"); -- from DictEng -lin empyema_N = mkN "empyema" ; -lin empyreal_A = mkA "empyreal" ; -lin empyrean_A = compoundA (mkA "empyrean"); -- from DictEng -lin empyrean_N = mkN "empyrean" "IRREG"; -- from DictEng -lin emu_N = mkN "emu" "emus"; -- from DictEng -lin emulate_V2 = mkV2 (mkV "emulate" "emulates" "emulated" "emulated" "emulating"); -- from DictEng -lin emulation_N = mkN "emulation" ; -- from DictEng -lin emulous_A = compoundA (mkA "emulous"); -- from DictEng -lin emulously_Adv = mkAdv "emulously" ; -lin emulsifier_N = mkN "emulsifier" ; -lin emulsify_V2 = mkV2 (mkV "emulsify" "emulsifies" "emulsified" "emulsified" "emulsifying"); -- from DictEng -lin emulsion_N = mkN "emulsion" "emulsions"; -- from DictEng -lin en_N = mkN "en" ; -lin en_clair_Adv = mkAdv "en clair"; -- from DictEng -lin en_deshabille_A = compoundA (mkA "en deshabille") ; -lin en_famille_Adv = mkAdv "en famille"; -- from DictEng -lin en_garde_A = compoundA (mkA "en garde") ; -lin en_masse_Adv = mkAdv "en masse"; -- from DictEng -lin en_route_Adv = mkAdv "en route"; -- from DictEng -lin enable_V2 = mkV2 (mkV "enable" "enables" "enabled" "enabled" "enabling"); -- from DictEng -lin enable_V2V = mkV2V (mkV "enable") noPrep to_Prep ; -- from DictEng -lin enable_VS = mkVS (mkV "enable"); -- from DictEng -lin enabling_A = compoundA (mkA "enabling"); -- from DictEng -lin enact_V2 = mkV2 (mkV "enact" "enacts" "enacted" "enacted" "enacting"); -- from DictEng -lin enact_V2V = mkV2V (mkV "enact") noPrep to_Prep ; -- from DictEng -lin enactment_N = mkN "enactment" "enactments"; -- from DictEng -lin enalapril_N = mkN "enalapril" ; -lin enallage_N = mkN "enallage" ; -lin enamel_N = mkN "enamel" ; -- from DictEng -lin enamel_V2 = mkV2 (mkV "enamel" "enamels" "enamelled" "enamelled" "enamelling"); -- from DictEng -lin enamelware_N = mkN "enamelware" ; -lin enamine_N = mkN "enamine" ; -lin enamored_A = mkA "enamored" ; -lin enamour_V2 = mkV2 (mkV "enamour" "enamours" "enamoured" "enamoured" "enamouring"); -- from DictEng -lin enanthem_N = mkN "enanthem" ; -lin enantiomorph_N = mkN "enantiomorph" ; -lin enantiomorphism_N = mkN "enantiomorphism" ; -lin enate_A = mkA "enate" ; -lin enate_N = mkN "enate" ; -lin encainide_N = mkN "encainide" ; -lin encamp_V = mkV "encamp" "encamps" "encamped" "encamped" "encamping"; -- from DictEng -lin encamp_V2 = mkV2 (mkV "encamp" "encamps" "encamped" "encamped" "encamping"); -- from DictEng -lin encampment_N = mkN "encampment" "encampments"; -- from DictEng -lin encapsulation_N = mkN "encapsulation" ; -lin encase_V2 = mkV2 (mkV "encase" "encases" "encased" "encased" "encasing"); -- from DictEng -lin encasement_N = mkN "encasement" ; -lin encaustic_A = compoundA (mkA "encaustic"); -- from DictEng -lin encaustic_N = mkN "encaustic" ; -lin encephalartos_N = mkN "encephalartos" ; -lin encephalitis_N = mkN "encephalitis" ; -- from DictEng -lin encephalocele_N = mkN "encephalocele" ; -lin encephalogram_N = mkN "encephalogram" ; -lin encephalography_N = mkN "encephalography" ; -lin encephalomyelitis_N = mkN "encephalomyelitis" ; -lin enchain_V2 = mkV2 (mkV "enchain" "enchains" "enchained" "enchained" "enchaining"); -- from DictEng -lin enchant_V2 = mkV2 (mkV "enchant" "enchants" "enchanted" "enchanted" "enchanting"); -- from DictEng -lin enchanted_A = mkA "enchanted" ; -lin enchanter_N = mkN "enchanter" "enchanters"; -- from DictEng -lin enchantingly_Adv = mkAdv "enchantingly"; -- from DictEng -lin enchantment_N = mkN "enchantment" "enchantments"; -- from DictEng -lin enchantress_N = mkN "enchantress" "enchantresses"; -- from DictEng -lin enchilada_N = mkN "enchilada" ; -lin enchondroma_N = mkN "enchondroma" ; -lin encircle_V2 = mkV2 (mkV "encircle" "encircles" "encircled" "encircled" "encircling"); -- from DictEng -lin encirclement_N = mkN "encirclement" "encirclements"; -- from DictEng -lin encircling_A = mkA "encircling" ; -lin enclave_N = mkN "enclave" "enclaves"; -- from DictEng -lin enclose_V2 = mkV2 (mkV "enclose" "encloses" "enclosed" "enclosed" "enclosing"); -- from DictEng -lin enclosed_A = mkA "enclosed" ; -lin enclosure_N = mkN "enclosure" "enclosures"; -- from DictEng -lin encode_V2 = mkV2 (mkV "encode" "encodes" "encoded" "encoded" "encoding"); -- from DictEng -lin encoding_N = mkN "encoding" ; -lin encolure_N = mkN "encolure" ; -lin encomiastic_A = mkA "encomiastic" ; -lin encomium_N = mkN "encomium" "encomiums"; -- from DictEng -lin encompass_V2 = mkV2 (mkV "encompass" "encompasses" "encompassed" "encompassed" "encompassing"); -- from DictEng -lin encompassing_A = mkA "encompassing" ; -lin encompassment_N = mkN "encompassment" ; -lin encopresis_N = mkN "encopresis" ; -lin encore_N = mkN "encore" "encores"; -- from DictEng -lin encore_V2 = mkV2 (mkV "encore" "encores" "encored" "encored" "encoring"); -- from DictEng -lin encounter_N = mkN "encounter" "encounters"; -- from DictEng -lin encounter_V2 = mkV2 (mkV "encounter" "encounters" "encountered" "encountered" "encountering"); -- from DictEng -lin encourage_V2 = mkV2 (mkV "encourage" "encourages" "encouraged" "encouraged" "encouraging"); -- from DictEng -lin encourage_V2V = mkV2V (mkV "encourage") noPrep to_Prep ; -- from DictEng -lin encouragement_N = mkN "encouragement" "encouragements"; -- from DictEng -lin encouraging_A = mkA "encouraging" ; -lin encouragingly_Adv = mkAdv "encouragingly"; -- from DictEng -lin encroach_V = mkV "encroach" "encroaches" "encroached" "encroached" "encroaching"; -- from DictEng -lin encroaching_A = mkA "encroaching" ; -lin encroachment_N = mkN "encroachment" "encroachments"; -- from DictEng -lin encrust_V = mkV "encrust" "encrusts" "encrusted" "encrusted" "encrusting"; -- from DictEng -lin encrust_V2 = mkV2 (mkV "encrust" "encrusts" "encrusted" "encrusted" "encrusting"); -- from DictEng -lin encrypt_V2 = mkV2 (mkV "encrypt"); -- from DictEng -lin encumber_V2 = mkV2 (mkV "encumber" "encumbers" "encumbered" "encumbered" "encumbering"); -- from DictEng -lin encumbered_A = mkA "encumbered" ; -lin encumbrance_N = mkN "encumbrance" "encumbrances"; -- from DictEng -lin encyclical_A = compoundA (mkA "encyclical"); -- from DictEng -lin encyclical_N = mkN "encyclical" "encyclicals"; -- from DictEng -lin encyclopaedia_N = mkN "encyclopaedia" "encyclopaedias"; -- from DictEng -lin encyclopaedic_A = compoundA (mkA "encyclopaedic"); -- from DictEng -lin encyclopedia_N = mkN "encyclopedia" "encyclopedias"; -- from DictEng -lin encyclopedic_A = compoundA (mkA "encyclopedic"); -- from DictEng -lin encyclopedist_N = mkN "encyclopedist" ; -lin encysted_A = mkA "encysted" ; -lin end_N = mkN "end" "ends"; -- from DictEng -lin end_V = mkV "end" "ends" "ended" "ended" "ending"; -- from DictEng -lin end_V2 = mkV2 (mkV "end" "ends" "ended" "ended" "ending"); -- from DictEng -lin end_VA = mkVA (mkV "end" "ends" "ended" "ended" "ending"); -- from DictEng -lin end_VS = mkVS (mkV "end" "ends" "ended" "ended" "ending"); -- from DictEng -lin end_all_N = mkN "end - all" "IRREG"; -- from DictEng -lin end_plate_N = mkN "end plate" ; -lin end_rhymed_A = compoundA (mkA "end rhymed") ; -lin end_stopped_A = compoundA (mkA "end stopped") ; -lin end_to_end_A = compoundA (mkA "end to end") ; -lin end_all_N = mkN "end - all" "IRREG"; -- from DictEng -lin end_tail_V2 = mkV2 (mkV "end - tail"); -- from DictEng -lin endameba_N = mkN "endameba" ; -lin endanger_V2 = mkV2 (mkV "endanger" "endangers" "endangered" "endangered" "endangering"); -- from DictEng -lin endangered_A = mkA "endangered" ; -lin endarterectomy_N = mkN "endarterectomy" ; -lin endarteritis_N = mkN "endarteritis" ; -lin endear_V2 = mkV2 (mkV "endear" "endears" "endeared" "endeared" "endearing"); -- from DictEng -lin endearingly_Adv = mkAdv "endearingly"; -- from DictEng -lin endearment_N = mkN "endearment" "endearments"; -- from DictEng -lin endeavour_N = mkN "endeavour" "endeavours"; -- from DictEng -lin endeavour_V = mkV "endeavour" "endeavours" "endeavoured" "endeavoured" "endeavouring"; -- from DictEng -lin endemic_A = compoundA (mkA "endemic"); -- from DictEng -lin endemic_N = mkN "endemic" "endemics"; -- from DictEng -lin endergonic_A = mkA "endergonic" ; -lin endermic_A = mkA "endermic" ; -lin endgame_N = mkN "endgame" ; -lin ending_N = mkN "ending" "endings"; -- from DictEng -lin endive_N = mkN "endive" "endives"; -- from DictEng -lin endless_A = compoundA (mkA "endless"); -- from DictEng -lin endlessly_Adv = mkAdv "endlessly" ; -lin endlessness_N = mkN "endlessness" ; -lin endocarditis_N = mkN "endocarditis" ; -lin endocardium_N = mkN "endocardium" ; -lin endocentric_A = mkA "endocentric" ; -lin endocervicitis_N = mkN "endocervicitis" ; -lin endocranium_N = mkN "endocranium" ; -lin endocrine_A = mkA "endocrine" ; -lin endocrinologist_N = mkN "endocrinologist" ; -lin endocrinology_N = mkN "endocrinology" ; -lin endoderm_N = mkN "endoderm" ; -lin endodontic_A = mkA "endodontic" ; -lin endodontics_N = mkN "endodontics" ; -lin endodontist_N = mkN "endodontist" ; -lin endoergic_A = mkA "endoergic" ; -lin endogamous_A = mkA "endogamous" ; -lin endogamy_N = mkN "endogamy" ; -lin endogenic_A = mkA "endogenic" ; -lin endogenous_A = mkA "endogenous" ; -lin endogenously_Adv = mkAdv "endogenously" ; -lin endogeny_N = mkN "endogeny" ; -lin endolymph_N = mkN "endolymph" ; -lin endometrial_A = mkA "endometrial" ; -lin endometriosis_N = mkN "endometriosis" ; -lin endometrium_N = mkN "endometrium" ; -lin endomorph_N = mkN "endomorph" ; -lin endomorphic_A = mkA "endomorphic" ; -lin endomorphy_N = mkN "endomorphy" ; -lin endoneurium_N = mkN "endoneurium" ; -lin endonuclease_N = mkN "endonuclease" ; -lin endoparasite_N = mkN "endoparasite" ; -lin endoparasitic_A = mkA "endoparasitic" ; -lin endoplasm_N = mkN "endoplasm" ; -lin endorphin_N = mkN "endorphin" ; -lin endorse_V2 = mkV2 (mkV "endorse" "endorses" "endorsed" "endorsed" "endorsing"); -- from DictEng -lin endorsement_N = mkN "endorsement" "endorsements"; -- from DictEng -lin endorser_N = mkN "endorser" ; -lin endoscope_N = mkN "endoscope" ; -lin endoscopic_A = mkA "endoscopic" ; -lin endoscopy_N = mkN "endoscopy" ; -lin endoskeleton_N = mkN "endoskeleton" ; -lin endosperm_N = mkN "endosperm" ; -lin endospore_N = mkN "endospore" ; -lin endosteum_N = mkN "endosteum" ; -lin endothelial_A = mkA "endothelial" ; -lin endothelium_N = mkN "endothelium" ; -lin endothermic_A = mkA "endothermic" ; -lin endotoxin_N = mkN "endotoxin" ; -lin endow_V2 = mkV2 (mkV "endow" "endows" "endowed" "endowed" "endowing"); -- from DictEng -lin endowed_A = mkA "endowed" ; -lin endowment_N = mkN "endowment" "endowments"; -- from DictEng -lin endue_V2 = mkV2 (mkV "endue" "endues" "endued" "endued" "enduing"); -- from DictEng -lin endurable_A = compoundA (mkA "endurable"); -- from DictEng -lin endurance_N = mkN "endurance" ; -- from DictEng -lin endure_V = mkV "endure" "endures" "endured" "endured" "enduring"; -- from DictEng -lin endure_V2 = mkV2 (mkV "endure" "endures" "endured" "endured" "enduring"); -- from DictEng -lin enduring_A = compoundA (mkA "enduring"); -- from DictEng -lin enduringly_Adv = mkAdv "enduringly" ; -lin endways_Adv = mkAdv "endways"; -- from DictEng -lin endwise_Adv = mkAdv "endwise"; -- from DictEng -lin enema_N = mkN "enema" "enemas"; -- from DictEng -lin enemy_N = mkN "enemy" "enemies"; -- from DictEng -lin energetic_A = compoundA (mkA "energetic"); -- from DictEng -lin energetically_Adv = mkAdv "energetically"; -- from DictEng -lin energid_N = mkN "energid" ; -lin energizer_N = mkN "energizer" ; -lin energizing_A = mkA "energizing" ; -lin energizing_N = mkN "energizing" ; -lin energy_N = mkN "energy" "energies"; -- from DictEng -lin enervate_V2 = mkV2 (mkV "enervate" "enervates" "enervated" "enervated" "enervating"); -- from DictEng -lin enervation_N = mkN "enervation" ; -lin enfant_terrible_N = mkN "enfant terrible" "IRREG"; -- from DictEng -lin enfeeble_V2 = mkV2 (mkV "enfeeble" "enfeebles" "enfeebled" "enfeebled" "enfeebling"); -- from DictEng -lin enfeoffment_N = mkN "enfeoffment" ; -lin enfilade_N = mkN "enfilade" ; -lin enflurane_N = mkN "enflurane" ; -lin enfold_V2 = mkV2 (mkV "enfold" "enfolds" "enfolded" "enfolded" "enfolding"); -- from DictEng -lin enforce_V2 = mkV2 (mkV "enforce" "enforces" "enforced" "enforced" "enforcing"); -- from DictEng -lin enforceable_A = compoundA (mkA "enforceable"); -- from DictEng -lin enforced_A = mkA "enforced" ; -lin enforcement_N = mkN "enforcement" ; -- from DictEng -lin enfranchise_V2 = mkV2 (mkV "enfranchise" "enfranchises" "enfranchised" "enfranchised" "enfranchising"); -- from DictEng -lin enfranchised_A = mkA "enfranchised" ; -lin enfranchisement_N = mkN "enfranchisement" "enfranchisements"; -- from DictEng -lin engage_V = mkV "engage" "engages" "engaged" "engaged" "engaging"; -- from DictEng -lin engage_V2 = mkV2 (mkV "engage" "engages" "engaged" "engaged" "engaging"); -- from DictEng -lin engaged_A = mkA "engaged" ; -lin engagement_N = mkN "engagement" "engagements"; -- from DictEng -lin engaging_A = compoundA (mkA "engaging"); -- from DictEng -lin engelmannia_N = mkN "engelmannia" ; -lin engender_V2 = mkV2 (mkV "engender" "engenders" "engendered" "engendered" "engendering"); -- from DictEng -lin engine_N = mkN "engine" "engines"; -- from DictEng -lin engine_driver_N = mkN "engine - driver" "engine - drivers"; -- from DictEng -lin engineer_N = mkN "engineer" "engineers"; -- from DictEng -lin engineer_V = mkV "engineer" "engineers" "engineered" "engineered" "engineering"; -- from DictEng -lin engineer_V2 = mkV2 (mkV "engineer" "engineers" "engineered" "engineered" "engineering"); -- from DictEng -lin engineering_N = mkN "engineering" ; -- from DictEng -lin enginery_N = mkN "enginery" ; -lin english_A = compoundA (mkA "English"); -- from DictEng -lin english_N = mkN "English" ; -- from DictEng -lin englishman_N = mkN "englishman" "englishmen" {- FIXME: guessed plural form -}; -- from DictEng -lin englishwoman_N = mkN "englishwoman" "englishwomen" {- FIXME: guessed plural form -}; -- from DictEng -lin engorgement_N = mkN "engorgement" ; -lin engraft_V2 = mkV2 (mkV "engraft" "engrafts" "engrafted" "engrafted" "engrafting"); -- from DictEng -lin engram_N = mkN "engram" ; -lin engrave_V = mkV "engrave" ; -lin engrave_V2 = mkV2 (mkV "engrave" "engraves" "engraved" "engraved" "engraving"); -- from DictEng -lin engraved_A = mkA "engraved" ; -lin engraver_N = mkN "engraver" "engravers"; -- from DictEng -lin engraving_N = mkN "engraving" "engravings"; -- from DictEng -lin engross_V2 = mkV2 (mkV "engross" "engrosses" "engrossed" "engrossed" "engrossing"); -- from DictEng -lin engrossed_A = mkA "engrossed" ; -lin engulf_V2 = mkV2 (mkV "engulf" "engulfs" "engulfed" "engulfed" "engulfing"); -- from DictEng -lin enhance_V2 = mkV2 (mkV "enhance" "enhances" "enhanced" "enhanced" "enhancing"); -- from DictEng -lin enhanced_A = mkA "enhanced" ; -lin enhancement_N = mkN "enhancement" "enhancements"; -- from DictEng -lin enigma_N = mkN "enigma" "enigmas"; -- from DictEng -lin enigmatic_A = compoundA (mkA "enigmatic"); -- from DictEng -lin enigmatically_Adv = mkAdv "enigmatically"; -- from DictEng -lin enjambment_N = mkN "enjambment" ; -lin enjoin_V2 = mkV2 (mkV "enjoin" "enjoins" "enjoined" "enjoined" "enjoining"); -- from DictEng -lin enjoy_V2 = mkV2 (mkV "enjoy" "enjoys" "enjoyed" "enjoyed" "enjoying"); -- from DictEng -lin enjoy_VV = ingVV (mkV "enjoy"); -- from DictEng -lin enjoyable_A = compoundA (mkA "enjoyable"); -- from DictEng -lin enjoyableness_N = mkN "enjoyableness" ; -lin enjoyer_N = mkN "enjoyer" ; -lin enjoyment_N = mkN "enjoyment" "enjoyments"; -- from DictEng -lin enkephalin_N = mkN "enkephalin" ; -lin enkindle_V2 = mkV2 (mkV "enkindle" "enkindles" "enkindled" "enkindled" "enkindling"); -- from DictEng -lin enlarge_V = mkV "enlarge" "enlarges" "enlarged" "enlarged" "enlarging"; -- from DictEng -lin enlarge_V2 = mkV2 (mkV "enlarge" "enlarges" "enlarged" "enlarged" "enlarging"); -- from DictEng -lin enlarged_A = mkA "enlarged" ; -lin enlargement_N = mkN "enlargement" "enlargements"; -- from DictEng -lin enlarger_N = mkN "enlarger" ; -lin enlighten_V2 = mkV2 (mkV "enlighten" "enlightens" "enlightened" "enlightened" "enlightening"); -- from DictEng -lin enlightened_A = compoundA (mkA "enlightened"); -- from DictEng -lin enlightening_A = mkA "enlightening" ; -lin enlightenment_N = mkN "enlightenment" ; -- from DictEng -lin enlist_V = mkV "enlist" "enlists" "enlisted" "enlisted" "enlisting"; -- from DictEng -lin enlist_V2 = mkV2 (mkV "enlist" "enlists" "enlisted" "enlisted" "enlisting"); -- from DictEng -lin enlistment_N = mkN "enlistment" "enlistments"; -- from DictEng -lin enliven_V2 = mkV2 (mkV "enliven" "enlivens" "enlivened" "enlivened" "enlivening"); -- from DictEng -lin enlivened_A = mkA "enlivened" ; -lin enmesh_V2 = mkV2 (mkV "enmesh" "enmeshes" "enmeshed" "enmeshed" "enmeshing"); -- from DictEng -lin enmeshed_A = mkA "enmeshed" ; -lin enmity_N = mkN "enmity" "enmities"; -- from DictEng -lin ennoble_V2 = mkV2 (mkV "ennoble" "ennobles" "ennobled" "ennobled" "ennobling"); -- from DictEng -lin ennoblement_N = mkN "ennoblement" "ennoblements"; -- from DictEng -lin ennobling_A = mkA "ennobling" ; -lin ennui_N = mkN "ennui" "ennuis"; -- from DictEng -lin ennumerate_V2 = mkV2 (mkV "ennumerate"); -- from DictEng -lin enol_N = mkN "enol" ; -lin enolic_A = mkA "enolic" ; -lin enologist_N = mkN "enologist" ; -lin enology_N = mkN "enology" ; -lin enophile_N = mkN "enophile" ; -lin enormity_N = mkN "enormity" "enormities"; -- from DictEng -lin enormous_A = compoundA (mkA "enormous"); -- from DictEng -lin enormously_Adv = mkAdv "enormously" ; -lin enormousness_N = mkN "enormousness" ; -- from DictEng -lin enosis_N = mkN "enosis" ; -lin enough_A = compoundA (mkA "enough"); -- from DictEng -lin enough_Adv = mkAdv "enough"; -- from DictEng -lin enough_N = mkN "enough" "enough"; -- from DictEng -lin enplane_V = mkV "enplane" "enplanes" "enplaned" "enplaned" "enplaning"; -- from DictEng -lin enplane_V2 = mkV2 (mkV "enplane" "enplanes" "enplaned" "enplaned" "enplaning"); -- from DictEng -lin enquire_V = mkV "enquire" "enquires" "enquired" "enquired" "enquiring"; -- from DictEng -lin enquire_V2 = mkV2 (mkV "enquire" "enquires" "enquired" "enquired" "enquiring"); -- from DictEng -lin enquire_V2Q = mkV2Q (mkV "enquire") noPrep; -lin enquirer_N = mkN "enquirer" "enquirers"; -- from DictEng -lin enquiringly_Adv = mkAdv "enquiringly"; -- from DictEng -lin enquiry_N = mkN "enquiry" "enquiries"; -- from DictEng -lin enrage_V2 = mkV2 (mkV "enrage" "enrages" "enraged" "enraged" "enraging"); -- from DictEng -lin enrapture_V2 = mkV2 (mkV "enrapture" "enraptures" "enraptured" "enraptured" "enrapturing"); -- from DictEng -lin enrich_V2 = mkV2 (mkV "enrich" "enriches" "enriched" "enriched" "enriching"); -- from DictEng -lin enrichment_N = mkN "enrichment" ; -- from DictEng -lin enrol_V = mkV "enrol" "enrols" "enroled" "enroled" "enroling"; -- from DictEng -lin enrol_V2 = mkV2 (mkV "enrol" "enrols" "enroled" "enroled" "enroling"); -- from DictEng -lin enroll_V = mkV "enroll" "enrolls" "enrolled" "enrolled" "enrolling"; -- from DictEng -lin enroll_V2 = mkV2 (mkV "enroll" "enrolls" "enrolled" "enrolled" "enrolling"); -- from DictEng -lin enrollee_N = mkN "enrollee" ; -lin enrolment_N = mkN "enrolment" "enrolments"; -- from DictEng -lin ensconce_V2 = mkV2 (mkV "ensconce" "ensconces" "ensconced" "ensconced" "ensconcing"); -- from DictEng -lin ensemble_N = mkN "ensemble" "ensembles"; -- from DictEng -lin enshrine_V2 = mkV2 (mkV "enshrine" "enshrines" "enshrined" "enshrined" "enshrining"); -- from DictEng -lin enshroud_V2 = mkV2 (mkV "enshroud" "enshrouds" "enshrouded" "enshrouded" "enshrouding"); -- from DictEng -lin ensiform_A = mkA "ensiform" ; -lin ensign_N = mkN "ensign" "ensigns"; -- from DictEng -lin ensilage_N = mkN "ensilage" ; -- from DictEng -lin enslave_V2 = mkV2 (mkV "enslave" "enslaves" "enslaved" "enslaved" "enslaving"); -- from DictEng -lin enslavement_N = mkN "enslavement" "enslavements"; -- from DictEng -lin ensnare_V2 = mkV2 (mkV "ensnare" "ensnares" "ensnared" "ensnared" "ensnaring"); -- from DictEng -lin ensue_V = mkV "ensue" "ensues" "ensued" "ensued" "ensuing"; -- from DictEng -lin ensuing_A = mkA "ensuing" ; -lin ensure_V = mkV "ensure" "ensures" "ensured" "ensured" "ensuring"; -- from DictEng -lin ensure_V2 = mkV2 (mkV "ensure" "ensures" "ensured" "ensured" "ensuring"); -- from DictEng -lin ensure_VS = mkVS (mkV "ensure" "ensures" "ensured" "ensured" "ensuring"); -- from DictEng -lin entablature_N = mkN "entablature" ; -lin entail_N = mkN "entail" "entails"; -- from DictEng -lin entail_V2 = mkV2 (mkV "entail" "entails" "entailed" "entailed" "entailing"); -- from DictEng -lin entangle_V2 = mkV2 (mkV "entangle" "entangles" "entangled" "entangled" "entangling"); -- from DictEng -lin entangled_A = mkA "entangled" ; -lin entanglement_N = mkN "entanglement" "entanglements"; -- from DictEng -lin entasis_N = mkN "entasis" ; -lin entelechy_N = mkN "entelechy" ; -lin entellus_N = mkN "entellus" ; -lin entente_N = mkN "entente" "ententes"; -- from DictEng -lin entente_cordiale_N = mkN "entente cordiale" "IRREG"; -- from DictEng -lin enter_V = mkV "enter" "enters" "entered" "entered" "entering"; -- from DictEng -lin enter_V2 = mkV2 (mkV "enter" "enters" "entered" "entered" "entering"); -- from DictEng -lin enteric_A = compoundA (mkA "enteric"); -- from DictEng -lin enteritis_N = mkN "enteritis" ; -- from DictEng -lin enterobiasis_N = mkN "enterobiasis" ; -lin enterokinase_N = mkN "enterokinase" ; -lin enterolith_N = mkN "enterolith" ; -lin enterolithiasis_N = mkN "enterolithiasis" ; -lin enteron_N = mkN "enteron" ; -lin enteropathy_N = mkN "enteropathy" ; -lin enteroptosis_N = mkN "enteroptosis" ; -lin enterostenosis_N = mkN "enterostenosis" ; -lin enterostomy_N = mkN "enterostomy" ; -lin enterotoxemia_N = mkN "enterotoxemia" ; -lin enterotoxin_N = mkN "enterotoxin" ; -lin enterovirus_N = mkN "enterovirus" ; -lin enterprise_N = mkN "enterprise" "enterprises"; -- from DictEng -lin enterprising_A = compoundA (mkA "enterprising"); -- from DictEng -lin enterprisingly_Adv = mkAdv "enterprisingly" ; -lin entertain_V2 = mkV2 (mkV "entertain" "entertains" "entertained" "entertained" "entertaining"); -- from DictEng -lin entertainer_N = mkN "entertainer" "entertainers"; -- from DictEng -lin entertaining_A = compoundA (mkA "entertaining"); -- from DictEng -lin entertainingly_Adv = mkAdv "entertainingly" ; -lin entertainment_N = mkN "entertainment" "entertainments"; -- from DictEng -lin enthral_V2 = mkV2 (mkV "enthral" "enthrals" "enthralled" "enthralled" "enthralling"); -- from DictEng -lin enthrall_V2 = mkV2 (mkV "enthrall" "enthralls" "enthralled" "enthralled" "enthralling"); -- from DictEng -lin enthrone_V2 = mkV2 (mkV "enthrone" "enthrones" "enthroned" "enthroned" "enthroning"); -- from DictEng -lin enthronement_N = mkN "enthronement" "enthronements"; -- from DictEng -lin enthuse_V = mkV "enthuse" "enthuses" "enthused" "enthused" "enthusing"; -- from DictEng -lin enthuse_V2 = mkV2 (mkV "enthuse") ; -lin enthusiasm_N = mkN "enthusiasm" ; -- from DictEng -lin enthusiast_N = mkN "enthusiast" "enthusiasts"; -- from DictEng -lin enthusiastic_A = compoundA (mkA "enthusiastic"); -- from DictEng -lin enthusiastically_Adv = mkAdv "enthusiastically"; -- from DictEng -lin entice_V2 = mkV2 (mkV "entice" "entices" "enticed" "enticed" "enticing"); -- from DictEng -lin enticement_N = mkN "enticement" "enticements"; -- from DictEng -lin entire_A = compoundA (mkA "entire"); -- from DictEng -lin entirely_Adv = mkAdv "entirely" ; -lin entirety_N = mkN "entirety" ; -- from DictEng -lin entitle_V2 = mkV2 (mkV "entitle" "entitles" "entitled" "entitled" "entitling"); -- from DictEng -lin entitle_V2V = mkV2V (mkV "entitle") noPrep to_Prep ; -- from DictEng -lin entitle_VS = mkVS (mkV "entitle"); -- from DictEng -lin entitled_A = mkA "entitled" ; -lin entitlement_N = mkN "entitlement" "entitlements"; -- from DictEng -lin entity_N = mkN "entity" "entities"; -- from DictEng -lin entomb_V2 = mkV2 (mkV "entomb" "entombs" "entombed" "entombed" "entombing"); -- from DictEng -lin entomion_N = mkN "entomion" ; -lin entomological_A = compoundA (mkA "entomological"); -- from DictEng -lin entomologist_N = mkN "entomologist" "entomologists"; -- from DictEng -lin entomology_N = mkN "entomology" ; -- from DictEng -lin entomophilous_A = mkA "entomophilous" ; -lin entomophobia_N = mkN "entomophobia" ; -lin entoproct_N = mkN "entoproct" ; -lin entourage_N = mkN "entourage"; -- from DictEng -lin entozoan_A = mkA "entozoan" ; -lin entozoic_A = mkA "entozoic" ; -lin entr'acte_N = mkN "entr'acte" "entr'actes"; -- from DictEng -lin entrain_V = mkV "entrain" "entrains" "entrained" "entrained" "entraining"; -- from DictEng -lin entrain_V2 = mkV2 (mkV "entrain" "entrains" "entrained" "entrained" "entraining"); -- from DictEng -lin entrance_N = mkN "entrance" "entrances"; -- from DictEng -lin entrance_V2 = mkV2 (mkV "entrance" "entrances" "entranced" "entranced" "entrancing"); -- from DictEng -lin entrance_fee_N = mkN "entrance - fee" "entrance - fees"; -- from DictEng -lin entrance_money_N = mkN "entrance - money" ; -- from DictEng -lin entrancement_N = mkN "entrancement" ; -lin entrant_N = mkN "entrant" "entrants"; -- from DictEng -lin entrap_V2 = mkV2 (mkV "entrap" "entraps" "entrapped" "entrapped" "entrapping"); -- from DictEng -lin entrapment_N = mkN "entrapment" ; -lin entreat_V2 = mkV2 (mkV "entreat" "entreats" "entreated" "entreated" "entreating"); -- from DictEng -lin entreat_VS = mkVS (mkV "entreat" ); -lin entreatingly_Adv = mkAdv "entreatingly"; -- from DictEng -lin entreaty_N = mkN "entreaty" "entreaties"; -- from DictEng -lin entrecote_N = mkN "entrecote" ; -lin entree_N = mkN "entrée" "entrées"; -- from DictEng -lin entrench_V2 = mkV2 (mkV "entrench" "entrenches" "entrenched" "entrenched" "entrenching"); -- from DictEng -lin entrenched_A = mkA "entrenched" ; -lin entrenchment_N = mkN "entrenchment" "entrenchments"; -- from DictEng -lin entrepot_N = mkN "entrepot" "entrepots"; -- from DictEng -lin entrepreneur_N = mkN "entrepreneur" "entrepreneurs"; -- from DictEng -lin entrepreneurial_A = compoundA (mkA "entrepreneurial"); -- from DictEng -lin entrust_V2 = mkV2 (mkV "entrust" "entrusts" "entrusted" "entrusted" "entrusting"); -- from DictEng -lin entry_N = mkN "entry" "entries"; -- from DictEng -lin entwin_V = mkV "entwin"; -- from DictEng -lin entwine_V2 = mkV2 (mkV "entwine" "entwines" "entwined" "entwined" "entwining"); -- from DictEng -lin enucleation_N = mkN "enucleation" ; -lin enumerate_V2 = mkV2 (mkV "enumerate" "enumerates" "enumerated" "enumerated" "enumerating"); -- from DictEng -lin enumeration_N = mkN "enumeration" "enumerations"; -- from DictEng -lin enunciate_V = mkV "enunciate" "enunciates" "enunciated" "enunciated" "enunciating"; -- from DictEng -lin enunciate_V2 = mkV2 (mkV "enunciate" "enunciates" "enunciated" "enunciated" "enunciating"); -- from DictEng -lin enunciation_N = mkN "enunciation" "enunciations"; -- from DictEng -lin enured_A = mkA "enured" ; -lin enuresis_N = mkN "enuresis" ; -lin envelop_V2 = mkV2 (mkV "envelop" "envelops" "enveloped" "enveloped" "enveloping"); -- from DictEng -lin envelope_N = mkN "envelope" "envelopes"; -- from DictEng -lin enveloping_A = mkA "enveloping" ; -lin envelopment_N = mkN "envelopment" "envelopments"; -- from DictEng -lin envenom_V2 = mkV2 (mkV "envenom" "envenoms" "envenomed" "envenomed" "envenoming"); -- from DictEng -lin enviable_A = compoundA (mkA "enviable"); -- from DictEng -lin enviably_Adv = mkAdv "enviably" ; -lin envious_A = compoundA (mkA "envious"); -- from DictEng -lin enviously_Adv = mkAdv "enviously" ; -lin environ_V2 = mkV2 (mkV "environ" "environs" "environed" "environed" "environing"); -- from DictEng -lin environment_N = mkN "environment" "environments"; -- from DictEng -lin environmental_A = compoundA (mkA "environmental"); -- from DictEng -lin environmentalism_N = mkN "environmentalism" ; -lin environmentalist_N = mkN "environmentalist" ; -lin environmentally_Adv = mkAdv "environmentally" ; -lin environs_N = mkN "environs" ; -lin envisage_V2 = mkV2 (mkV "envisage" "envisages" "envisaged" "envisaged" "envisaging"); -- from DictEng -lin envision_V2 = mkV2 (mkV "envision"); -- from DictEng -lin envision_VS = mkVS (mkV "envision"); -- from DictEng -lin envisioned_A = mkA "envisioned" ; -lin envoi_N = mkN "envoi" "envois"; -- from DictEng -lin envoy_N = mkN "envoy" "envoys"; -- from DictEng -lin envy_N = mkN "envy" ; -- from DictEng -lin envy_V2 = mkV2 (mkV "envy" "envies" "envied" "envied" "envying"); -- from DictEng -lin enwrap_V2 = mkV2 (mkV "enwrap" "enwraps" "enwrapped" "enwrapped" "enwrapping"); -- from DictEng -lin enzootic_A = mkA "enzootic" ; -lin enzymatic_A = mkA "enzymatic" ; -lin enzyme_N = mkN "enzyme" "enzymes"; -- from DictEng -lin enzymologist_N = mkN "enzymologist" ; -lin enzymology_N = mkN "enzymology" ; -lin eohippus_N = mkN "eohippus" ; -lin eolith_N = mkN "eolith" ; -lin eolithic_A = mkA "eolithic" ; -lin eon_N = mkN "eon" "eons"; -- from DictEng -lin eonian_A = mkA "eonian" ; -lin eoraptor_N = mkN "eoraptor" ; -lin eosin_N = mkN "eosin" ; -lin eosinopenia_N = mkN "eosinopenia" ; -lin eosinophil_N = mkN "eosinophil" ; -lin eosinophilia_N = mkN "eosinophilia" ; -lin eosinophilic_A = mkA "eosinophilic" ; -lin epacris_N = mkN "epacris" ; -lin epanalepsis_N = mkN "epanalepsis" ; -lin epanaphora_N = mkN "epanaphora" ; -lin epanodos_N = mkN "epanodos" ; -lin epanorthosis_N = mkN "epanorthosis" ; -lin eparch_N = mkN "eparch" ; -lin eparchial_A = mkA "eparchial" ; -lin eparchy_N = mkN "eparchy" ; -lin epaulet_N = mkN "epaulet" "epaulets"; -- from DictEng -lin epaulette_N = mkN "epaulette" "epaulettes"; -- from DictEng -lin epauliere_N = mkN "epauliere" ; -lin epee_N = mkN "épée" "épées"; -- from DictEng -lin ependyma_N = mkN "ependyma" ; -lin epenthesis_N = mkN "epenthesis" ; -lin epenthetic_A = mkA "epenthetic" ; -lin epergne_N = mkN "epergne" ; -lin ephah_N = mkN "ephah" ; -lin ephedra_N = mkN "ephedra" ; -lin ephedrine_N = mkN "ephedrine" ; -lin ephemera_N = mkN "ephemera" ; -lin ephemeral_A = compoundA (mkA "ephemeral"); -- from DictEng -lin ephemerality_N = mkN "ephemerality" ; -lin ephemerid_N = mkN "ephemerid" ; -lin ephemeris_N = mkN "ephemeris" ; -lin ephemeron_N = mkN "ephemeron" ; -lin epic_A = compoundA (mkA "epic"); -- from DictEng -lin epic_N = mkN "epic" "epics"; -- from DictEng -lin epicalyx_N = mkN "epicalyx" ; -lin epicanthus_N = mkN "epicanthus" ; -lin epicardia_N = mkN "epicardia" ; -lin epicardium_N = mkN "epicardium" ; -lin epicarp_N = mkN "epicarp" ; -lin epicarpal_A = mkA "epicarpal" ; -lin epicenter_N = mkN "epicenter" ; -lin epicentre_N = mkN "epicentre" "epicentres"; -- from DictEng -lin epicondyle_N = mkN "epicondyle" ; -lin epicondylitis_N = mkN "epicondylitis" ; -lin epicranium_N = mkN "epicranium" ; -lin epicure_N = mkN "epicure" "epicures"; -- from DictEng -lin epicurean_A = compoundA (mkA "epicurean"); -- from DictEng -lin epicurean_N = mkN "epicurean" "epicureans"; -- from DictEng -lin epicureanism_N = mkN "epicureanism" ; -lin epicurism_N = mkN "epicurism" ; -lin epicycle_N = mkN "epicycle" ; -lin epicyclic_A = mkA "epicyclic" ; -lin epicycloid_N = mkN "epicycloid" ; -lin epideictic_A = mkA "epideictic" ; -lin epidemic_A = compoundA (mkA "epidemic"); -- from DictEng -lin epidemic_N = mkN "epidemic" "epidemics"; -- from DictEng -lin epidemiologic_A = mkA "epidemiologic" ; -lin epidemiologist_N = mkN "epidemiologist" "epidemiologists"; -- from DictEng -lin epidemiology_N = mkN "epidemiology" ; -- from DictEng -lin epidendron_N = mkN "epidendron" ; -lin epidermis_N = mkN "epidermis" ; -- from DictEng -lin epidiascope_N = mkN "epidiascope" "epidiascopes"; -- from DictEng -lin epididymis_N = mkN "epididymis" ; -lin epididymitis_N = mkN "epididymitis" ; -lin epidural_A = mkA "epidural" ; -lin epigastric_A = mkA "epigastric" ; -lin epigastrium_N = mkN "epigastrium" ; -lin epigenesis_N = mkN "epigenesis" ; -lin epiglottis_N = mkN "epiglottis" "epiglottises"; -- from DictEng -lin epiglottitis_N = mkN "epiglottitis" ; -lin epigone_N = mkN "epigone" ; -lin epigram_N = mkN "epigram" "epigrams"; -- from DictEng -lin epigrammatic_A = compoundA (mkA "epigrammatic"); -- from DictEng -lin epigraph_N = mkN "epigraph" ; -lin epigraphy_N = mkN "epigraphy" ; -lin epikeratophakia_N = mkN "epikeratophakia" ; -lin epilation_N = mkN "epilation" ; -lin epilepsy_N = mkN "epilepsy" ; -- from DictEng -lin epileptic_A = compoundA (mkA "epileptic"); -- from DictEng -lin epileptic_N = mkN "epileptic" "epileptics"; -- from DictEng -lin epilithic_A = mkA "epilithic" ; -lin epilogue_N = mkN "epilogue" "epilogues"; -- from DictEng -lin epimorphic_A = mkA "epimorphic" ; -lin epinephrine_N = mkN "epinephrine" ; -lin epiphany_N = mkN "epiphany" ; -lin epiphenomenon_N = mkN "epiphenomenon" ; -lin epiphora_N = mkN "epiphora" ; -lin epiphyllum_N = mkN "epiphyllum" ; -lin epiphyseal_A = mkA "epiphyseal" ; -lin epiphysis_N = mkN "epiphysis" ; -lin epiphytic_A = mkA "epiphytic" ; -lin epiphytotic_A = mkA "epiphytotic" ; -lin epiplexis_N = mkN "epiplexis" ; -lin episcia_N = mkN "episcia" ; -lin episcleritis_N = mkN "episcleritis" ; -lin episcopacy_N = mkN "episcopacy" ; -lin episcopal_A = compoundA (mkA "episcopal"); -- from DictEng -lin episcopalian_A = compoundA (mkA "episcopalian"); -- from DictEng -lin episcopalian_N = mkN "episcopalian" "episcopalians"; -- from DictEng -lin episcopate_N = mkN "episcopate" ; -lin episiotomy_N = mkN "episiotomy" ; -lin episode_N = mkN "episode" "episodes"; -- from DictEng -lin episodic_A = compoundA (mkA "episodic"); -- from DictEng -lin episodically_Adv = mkAdv "episodically" ; -lin episome_N = mkN "episome" ; -lin epispadias_N = mkN "epispadias" ; -lin episteme_N = mkN "episteme" ; -lin epistemic_A = mkA "epistemic" ; -lin epistemologist_N = mkN "epistemologist" ; -lin epistemology_N = mkN "epistemology" ; -lin epistle_N = mkN "epistle" "epistles"; -- from DictEng -lin epistolary_A = compoundA (mkA "epistolary"); -- from DictEng -lin epitaph_N = mkN "epitaph" "epitaphs"; -- from DictEng -lin epitaxy_N = mkN "epitaxy" ; -lin epithalamium_N = mkN "epithalamium" ; -lin epithelial_A = mkA "epithelial" ; -lin epitheliod_A = mkA "epitheliod" ; -lin epithelioma_N = mkN "epithelioma" ; -lin epithelium_N = mkN "epithelium" ; -lin epithet_N = mkN "epithet" "epithets"; -- from DictEng -lin epitome_N = mkN "epitome" "epitomes"; -- from DictEng -lin epitomize_V2 = mkV2 (mkV "epitomize" "epitomizes" "epitomized" "epitomized" "epitomizing"); -- from DictEng -lin epizoan_A = mkA "epizoan" ; -lin epizoic_A = mkA "epizoic" ; -lin epizootic_A = mkA "epizootic" ; -lin epoch_N = mkN "epoch" "epochs"; -- from DictEng -lin epoch_making_A = compoundA (mkA "epoch - making"); -- from DictEng -lin epochal_A = mkA "epochal" ; -lin eponym_N = mkN "eponym" ; -lin eponymous_A = mkA "eponymous" ; -lin eponymy_N = mkN "eponymy" ; -lin epos_N = mkN "epos" ; -lin epoxy_N = mkN "epoxy" ; -lin epoxy_V2 = mkV2 (mkV "epoxy") ; -lin epsilon_N = mkN "epsilon" ; -lin eptatretus_N = mkN "eptatretus" ; -lin equable_A = compoundA (mkA "equable"); -- from DictEng -lin equably_Adv = mkAdv "equably" ; -lin equal_A = compoundA (mkA "equal"); -- from DictEng -lin equal_N = mkN "equal" "equals"; -- from DictEng -lin equal_V2 = mkV2 (variants {mkV "equal" "equals" "equaled" "equaled" "equaling"}); -- US -- from DictEng -lin equalitarian_N = mkN "equalitarian" "equalitarians"; -- from DictEng -lin equality_N = mkN "equality" ; -- from DictEng -lin equalization_N = mkN "equalization" "equalizations"; -- from DictEng -lin equalize_V2 = mkV2 (mkV "equalize" "equalizes" "equalized" "equalized" "equalizing"); -- from DictEng -lin equalizer_N = mkN "equalizer" "equalizers"; -- from DictEng -lin equally_Adv = mkAdv "equally" ; -lin equanimity_N = mkN "equanimity" ; -- from DictEng -lin equatability_N = mkN "equatability" ; -lin equate_V2 = mkV2 (mkV "equate" "equates" "equated" "equated" "equating"); -- from DictEng -lin equation_N = mkN "equation" "equations"; -- from DictEng -lin equator_N = mkN "equator" "equators"; -- from DictEng -lin equatorial_A = compoundA (mkA "equatorial"); -- from DictEng -lin equatorial_N = mkN "equatorial" ; -lin equerry_N = mkN "equerry" "equerries"; -- from DictEng -lin equestrian_A = compoundA (mkA "equestrian"); -- from DictEng -lin equestrian_N = mkN "equestrian" "equestrians"; -- from DictEng -lin equiangular_A = mkA "equiangular" ; -lin equidistant_A = compoundA (mkA "equidistant"); -- from DictEng -lin equidistribution_N = mkN "equidistribution" ; -lin equilateral_A = compoundA (mkA "equilateral"); -- from DictEng -lin equilateral_N = mkN "equilateral" ; -lin equilibration_N = mkN "equilibration" ; -lin equilibrium_N = mkN "equilibrium" ; -- from DictEng -lin equine_A = compoundA (mkA "equine"); -- from DictEng -lin equine_N = mkN "equine" ; -lin equinoctial_A = compoundA (mkA "equinoctial"); -- from DictEng -lin equinox_N = mkN "equinox" "equinoxes"; -- from DictEng -lin equip_V2 = mkV2 (mkV "equip" "equips" "equipped" "equipped" "equipping"); -- from DictEng -lin equipage_N = mkN "equipage" "equipages"; -- from DictEng -lin equipment_N = mkN "equipment" ; -- from DictEng -lin equipoise_N = mkN "equipoise" "equipoises"; -- from DictEng -lin equipoised_A = mkA "equipoised" ; -lin equipotent_A = mkA "equipotent" ; -lin equipped_A = mkA "equipped" ; -lin equiprobable_A = mkA "equiprobable" ; -lin equitable_A = compoundA (mkA "equitable"); -- from DictEng -lin equitably_Adv = mkAdv "equitably" ; -lin equity_N = mkN "equity" "equities"; -- from DictEng -lin equivalence_N = mkN "equivalence" "equivalences"; -- from DictEng -lin equivalent_A = compoundA (mkA "equivalent"); -- from DictEng -lin equivalent_N = mkN "equivalent" "equivalents"; -- from DictEng -lin equivocal_A = compoundA (mkA "equivocal"); -- from DictEng -lin equivocation_N = mkN "equivocation" "equivocations"; -- from DictEng -lin era_N = mkN "era" "eras"; -- from DictEng -lin eradicable_A = mkA "eradicable" ; -lin eradicate_V2 = mkV2 (mkV "eradicate" "eradicates" "eradicated" "eradicated" "eradicating"); -- from DictEng -lin eradication_N = mkN "eradication" "eradications"; -- from DictEng -lin erase_V2 = mkV2 (mkV "erase" "erases" "erased" "erased" "erasing"); -- from DictEng -lin eraser_N = mkN "eraser" "erasers"; -- from DictEng -lin erasure_N = mkN "erasure" "erasures"; -- from DictEng -lin erbium_N = mkN "erbium" ; -lin ere_Adv = mkAdv "ere"; -- from DictEng -lin erect_A = compoundA (mkA "erect"); -- from DictEng -lin erect_V = mkV "erect" ; -lin erect_V2 = mkV2 (mkV "erect" "erects" "erected" "erected" "erecting"); -- from DictEng -lin erectile_A = compoundA (mkA "erectile"); -- from DictEng -lin erecting_N = mkN "erecting" ; -lin erection_N = mkN "erection" "erections"; -- from DictEng -lin erectly_Adv = mkAdv "erectly" ; -lin erectness_N = mkN "erectness" ; -- from DictEng -lin eremite_N = mkN "eremite" "eremites"; -- from DictEng -lin eremitic_A = mkA "eremitic" ; -lin eremitism_N = mkN "eremitism" ; -lin erethism_N = mkN "erethism" ; -lin erg_N = mkN "erg" "ergs"; -- from DictEng -lin ergo_Adv = mkAdv "ergo"; -- from DictEng -lin ergodic_A = mkA "ergodic" ; -lin ergodicity_N = mkN "ergodicity" ; -lin ergonomic_A = mkA "ergonomic" ; -lin ergonomics_N = mkN "ergonomics" "ergonomics"; -- from DictEng -lin ergonovine_N = mkN "ergonovine" ; -lin ergosterol_N = mkN "ergosterol" ; -lin ergot_N = mkN "ergot" ; -lin ergotamine_N = mkN "ergotamine" ; -lin ergotic_A = mkA "ergotic" ; -lin ergotism_N = mkN "ergotism" ; -lin ergotropic_A = mkA "ergotropic" ; -lin ergotropism_N = mkN "ergotropism" ; -lin erica_N = mkN "erica" ; -lin eriogonum_N = mkN "eriogonum" ; -lin eristic_A = mkA "eristic" ; -lin eristic_N = mkN "eristic" ; -lin eritrean_A = compoundA (mkA "eritrean"); -- from DictEng -lin eritrean_N = mkN "eritrean" "eritreans"; -- from DictEng -lin ermine_N = mkN "ermine" ; -- from DictEng -lin ern_N = mkN "ern" ; -lin erode_V = mkV "erode"; -- from DictEng -lin erode_V2 = mkV2 (mkV "erode" "erodes" "eroded" "eroded" "eroding"); -- from DictEng -lin eroded_A = mkA "eroded" ; -lin erogenous_A = compoundA (mkA "erogenous"); -- from DictEng -lin erose_A = mkA "erose" ; -lin erosion_N = mkN "erosion" ; -- from DictEng -lin erosive_A = compoundA (mkA "erosive"); -- from DictEng -lin erotic_A = compoundA (mkA "erotic"); -- from DictEng -lin erotic_N = mkN "erotic" ; -lin erotically_Adv = mkAdv "erotically" ; -lin eroticism_N = mkN "eroticism" ; -- from DictEng -lin err_V = mkV "err" "errs" "erred" "erred" "erring"; -- from DictEng -lin errancy_N = mkN "errancy" ; -lin errand_N = mkN "errand" "errands"; -- from DictEng -lin errant_A = compoundA (mkA "errant"); -- from DictEng -lin erratic_A = compoundA (mkA "erratic"); -- from DictEng -lin erratically_Adv = mkAdv "erratically"; -- from DictEng -lin erratum_N = mkN "erratum" "errata" {- FIXME: guessed plural form -}; -- from DictEng -lin errhine_A = mkA "errhine" ; -lin erring_A = mkA "erring" ; -lin erroneous_A = compoundA (mkA "erroneous"); -- from DictEng -lin erroneousness_N = mkN "erroneousness" ; -lin error_N = mkN "error" "errors"; -- from DictEng -lin errorless_A = mkA "errorless" ; -lin ersatz_A = mkA "ersatz" ; -lin ersatz_N = mkN "ersatz" ; -lin erse_N = mkN "erse" ; -- from DictEng -lin erstwhile_A = mkA "erstwhile" ; -lin eruct_V = mkV "eruct" ; -lin eructation_N = mkN "eructation" "eructations"; -- from DictEng -lin erudite_A = compoundA (mkA "erudite"); -- from DictEng -lin eruditely_Adv = mkAdv "eruditely" ; -lin eruditeness_N = mkN "eruditeness" ; -lin erudition_N = mkN "erudition" ; -- from DictEng -lin erupt_V = mkV "erupt" "erupts" "erupted" "erupted" "erupting"; -- from DictEng -lin eruption_N = mkN "eruption" "eruptions"; -- from DictEng -lin eruptive_A = mkA "eruptive" ; -lin erwinia_N = mkN "erwinia" ; -lin eryngo_N = mkN "eryngo" ; -lin erysipelas_N = mkN "erysipelas" ; -- from DictEng -lin erythema_N = mkN "erythema" ; -lin erythematous_A = mkA "erythematous" ; -lin erythrite_N = mkN "erythrite" ; -lin erythroblast_N = mkN "erythroblast" ; -lin erythroblastosis_N = mkN "erythroblastosis" ; -lin erythroderma_N = mkN "erythroderma" ; -lin erythroid_A = mkA "erythroid" ; -lin erythromycin_N = mkN "erythromycin" ; -lin erythropoiesis_N = mkN "erythropoiesis" ; -lin erythropoietic_A = mkA "erythropoietic" ; -lin erythropoietin_N = mkN "erythropoietin" ; -lin escadrille_N = mkN "escadrille" ; -lin escalade_N = mkN "escalade" ; -lin escalader_N = mkN "escalader" ; -lin escalate_V = mkV "escalate" "escalates" "escalated" "escalated" "escalating"; -- from DictEng -lin escalate_V2 = mkV2 (mkV "escalate" "escalates" "escalated" "escalated" "escalating"); -- from DictEng -lin escalation_N = mkN "escalation" "escalations"; -- from DictEng -lin escalator_N = mkN "escalator" "escalators"; -- from DictEng -lin escalope_N = mkN "escalope" "escalopes"; -- from DictEng -lin escalope_de_veau_orloff_PN = mkPN "escalope de veau Orloff" ; -lin escapade_N = mkN "escapade" "escapades"; -- from DictEng -lin escape_N = mkN "escape" "escapes"; -- from DictEng -lin escape_V = mkV "escape" "escapes" "escaped" "escaped" "escaping"; -- from DictEng -lin escape_V2 = mkV2 (mkV "escape" "escapes" "escaped" "escaped" "escaping"); -- from DictEng -lin escape_VS = mkVS (mkV "escape" "escapes" "escaped" "escaped" "escaping"); -- from DictEng -lin escapee_N = mkN "escapee" "escapees"; -- from DictEng -lin escapement_N = mkN "escapement" "escapements"; -- from DictEng -lin escapism_N = mkN "escapism" ; -- from DictEng -lin escapist_N = mkN "escapist" "escapists"; -- from DictEng -lin escapologist_N = mkN "escapologist" "escapologists"; -- from DictEng -lin escapology_N = mkN "escapology" ; -lin escargot_N = mkN "escargot" ; -lin escarpment_N = mkN "escarpment" "escarpments"; -- from DictEng -lin eschar_N = mkN "eschar" ; -lin eschatological_A = mkA "eschatological" ; -lin eschatologically_Adv = mkAdv "eschatologically" ; -lin eschatologist_N = mkN "eschatologist" ; -lin eschatology_N = mkN "eschatology" ; -- from DictEng -lin escheat_N = mkN "escheat" ; -lin escherichia_N = mkN "escherichia" ; -lin eschew_V2 = mkV2 (mkV "eschew" "eschews" "eschewed" "eschewed" "eschewing"); -- from DictEng -lin escolar_N = mkN "escolar" ; -lin escort_N = mkN "escort" "escorts"; -- from DictEng -lin escort_V2 = mkV2 (mkV "escort" "escorts" "escorted" "escorted" "escorting"); -- from DictEng -lin escritoire_N = mkN "escritoire" "escritoires"; -- from DictEng -lin escrow_N = mkN "escrow" ; -lin escudo_N = mkN "escudo" "escudos"; -- from DictEng -lin escutcheon_N = mkN "escutcheon" "escutcheons"; -- from DictEng -lin esker_N = mkN "esker" ; -lin eskimo_N = mkN "eskimo" "eskimos"; -- from DictEng -lin esmolol_N = mkN "esmolol" ; -lin esophageal_A = mkA "esophageal" ; -lin esophagitis_N = mkN "esophagitis" ; -lin esophagoscope_N = mkN "esophagoscope" ; -lin esophagus_N = mkN "esophagus" "esophaguses"; -- from DictEng -lin esoteric_A = compoundA (mkA "esoteric"); -- from DictEng -lin esoterica_N = mkN "esoterica" ; -lin esp_N = mkN "esp" ; -- from DictEng -lin espadrille_N = mkN "espadrille" ; -lin espalier_N = mkN "espalier" "espaliers"; -- from DictEng -lin especial_A = compoundA (mkA "especial"); -- from DictEng -lin esperanto_N = mkN "esperanto" ; -- from DictEng -lin espionage_N = mkN "espionage" ; -- from DictEng -lin esplanade_N = mkN "esplanade" "esplanades"; -- from DictEng -lin espousal_N = mkN "espousal" "espousals"; -- from DictEng -lin espouse_V2 = mkV2 (mkV "espouse" "espouses" "espoused" "espoused" "espousing"); -- from DictEng -lin espresso_N = mkN "espresso" "espressos"; -- from DictEng -lin esprit_N = mkN "esprit" ; -- from DictEng -lin esprit_de_corps_N = mkN "esprit de corps" "IRREG"; -- from DictEng -lin espy_V2 = mkV2 (mkV "espy" "espies" "espied" "espied" "espying"); -- from DictEng -lin esquire_N = mkN "esquire" "esquires"; -- from DictEng -lin essay_N = mkN "essay" "essays"; -- from DictEng -lin essay_V = mkV "essay" "essays" "essayed" "essayed" "essaying"; -- from DictEng -lin essay_V2 = mkV2 (mkV "essay" "essays" "essayed" "essayed" "essaying"); -- from DictEng -lin essayist_N = mkN "essayist" "essayists"; -- from DictEng -lin essence_N = mkN "essence" "essences"; -- from DictEng -lin essential_A = compoundA (mkA "essential"); -- from DictEng -lin essential_N = mkN "essential" "essentials"; -- from DictEng -lin essentiality_N = mkN "essentiality" ; -lin establish_V2 = mkV2 (mkV "establish" "establishes" "established" "established" "establishing"); -- from DictEng -lin established_A = mkA "established" ; -lin establishment_N = mkN "establishment" "establishments"; -- from DictEng -lin establishmentarianism_N = mkN "establishmentarianism" ; -lin estaminet_N = mkN "estaminet" "estaminets"; -- from DictEng -lin estate_N = mkN "estate" "estates"; -- from DictEng -lin estazolam_N = mkN "estazolam" ; -lin esteem_N = mkN "esteem" ; -- from DictEng -lin esteem_V2 = mkV2 (mkV "esteem" "esteems" "esteemed" "esteemed" "esteeming"); -- from DictEng -lin esteemed_A = mkA "esteemed" ; -lin ester_N = mkN "ester" ; -lin esthete_N = mkN "esthete" "esthetes"; -- from DictEng -lin esthetic_A = compoundA (mkA "esthetic"); -- from DictEng -lin esthetic_N = mkN "esthetic" ; -- from DictEng -lin esthetical_A = compoundA (mkA "esthetical"); -- from DictEng -lin esthetician_N = mkN "esthetician" ; -lin esthetics_N = mkN "esthetics" "esthetics"; -- from DictEng -lin estimable_A = compoundA (mkA "estimable"); -- from DictEng -lin estimate_N = mkN "estimate" "estimates"; -- from DictEng -lin estimate_V = mkV "estimate" "estimates" "estimated" "estimated" "estimating"; -- from DictEng -lin estimate_V2 = mkV2 (mkV "estimate" "estimates" "estimated" "estimated" "estimating"); -- from DictEng -lin estimate_V2V = mkV2V (mkV "estimate" "estimates" "estimated" "estimated" "estimating") noPrep to_Prep ; -- from DictEng -lin estimate_VS = mkVS (mkV "estimate" "estimates" "estimated" "estimated" "estimating"); -- from DictEng -lin estimation_N = mkN "estimation" ; -- from DictEng -lin estivation_N = mkN "estivation" ; -lin estoppel_N = mkN "estoppel" ; -lin estradiol_N = mkN "estradiol" ; -lin estrange_V2 = mkV2 (mkV "estrange" "estranges" "estranged" "estranged" "estranging"); -- from DictEng -lin estrangement_N = mkN "estrangement" "estrangements"; -- from DictEng -lin estranging_A = mkA "estranging" ; -lin estriol_N = mkN "estriol" ; -lin estrogen_N = mkN "estrogen" ; -lin estrogenic_A = mkA "estrogenic" ; -lin estrone_N = mkN "estrone" ; -lin estrous_A = mkA "estrous" ; -lin estrus_N = mkN "estrus" ; -lin estuarine_A = mkA "estuarine" ; -lin estuary_N = mkN "estuary" "estuaries"; -- from DictEng -lin et_al__Adv = mkAdv "et al " ; -lin eta_N = mkN "eta" ; -- from DictEng -lin etagere_N = mkN "etagere" ; -lin etamine_N = mkN "etamine" ; -lin etanercept_N = mkN "etanercept" ; -lin etcetera_N = mkN "etcetera" ; -lin etch_V = mkV "etch" "etches" "etched" "etched" "etching"; -- from DictEng -lin etch_V2 = mkV2 (mkV "etch" "etches" "etched" "etched" "etching"); -- from DictEng -lin etcher_N = mkN "etcher" "etchers"; -- from DictEng -lin etching_N = mkN "etching" "etchings"; -- from DictEng -lin etd_N = mkN "etd" ; -- from DictEng -lin eternal_A = compoundA (mkA "eternal"); -- from DictEng -lin eternity_N = mkN "eternity" "eternities"; -- from DictEng -lin ethane_N = mkN "ethane" ; -lin ethchlorvynol_N = mkN "ethchlorvynol" ; -lin ether_N = mkN "ether" ; -- from DictEng -lin ethereal_A = compoundA (mkA "ethereal"); -- from DictEng -lin ethernet_N = mkN "ethernet" ; -lin ethic_N = mkN "ethic" "ethics"; -- from DictEng -lin ethical_A = compoundA (mkA "ethical"); -- from DictEng -lin ethically_Adv = mkAdv "ethically" ; -lin ethicism_N = mkN "ethicism" ; -lin ethicist_N = mkN "ethicist" ; -lin ethics_N = mkN "ethics" ; -lin ethiopian_A = compoundA (mkA "ethiopian"); -- from DictEng -lin ethiopian_N = mkN "ethiopian" "ethiopians"; -- from DictEng -lin ethmoid_N = mkN "ethmoid" ; -lin ethnarch_N = mkN "ethnarch" ; -lin ethnic_A = compoundA (mkA "ethnic"); -- from DictEng -lin ethnic_N = mkN "ethnic" ; -lin ethnically_Adv = mkAdv "ethnically"; -- from DictEng -lin ethnicity_N = mkN "ethnicity" ; -lin ethnocentric_A = mkA "ethnocentric" ; -lin ethnocentrism_N = mkN "ethnocentrism" ; -lin ethnographer_N = mkN "ethnographer" "ethnographers"; -- from DictEng -lin ethnographic_A = compoundA (mkA "ethnographic"); -- from DictEng -lin ethnography_N = mkN "ethnography" ; -- from DictEng -lin ethnological_A = compoundA (mkA "ethnological"); -- from DictEng -lin ethnologist_N = mkN "ethnologist" "ethnologists"; -- from DictEng -lin ethnology_N = mkN "ethnology" ; -- from DictEng -lin ethologist_N = mkN "ethologist" ; -lin ethology_N = mkN "ethology" ; -lin ethos_N = mkN "ethos" (variants {"ethe"; "ethea"}); -- from DictEng -lin ethosuximide_N = mkN "ethosuximide" ; -lin ethyl_N = mkN "ethyl" "ethyls"; -- from DictEng -lin ethylene_N = mkN "ethylene" ; -lin etiolate_A = mkA "etiolate" ; -lin etiolation_N = mkN "etiolation" ; -lin etiological_A = mkA "etiological" ; -lin etiologist_N = mkN "etiologist" ; -lin etiology_N = mkN "etiology" "etiologies"; -- from DictEng -lin etiquette_N = mkN "etiquette" ; -- from DictEng -lin etodolac_N = mkN "etodolac" ; -lin etude_N = mkN "etude" ; -lin etui_N = mkN "etui" ; -lin etymological_A = compoundA (mkA "etymological"); -- from DictEng -lin etymologist_N = mkN "etymologist" "etymologists"; -- from DictEng -lin etymology_N = mkN "etymology" "etymologies"; -- from DictEng -lin etymon_N = mkN "etymon" ; -lin eubacteria_N = mkN "eubacteria" ; -lin eucalyptus_N = mkN "eucalyptus" "eucalyptuses"; -- from DictEng -lin eucharist_N = mkN "eucharist" "eucharists"; -- from DictEng -lin euchre_N = mkN "euchre" ; -lin euclidean_A = compoundA (mkA "euclidean"); -- from DictEng -lin euclidian_A = mkA "euclidian" ; -lin eudemon_N = mkN "eudemon" ; -lin eudemonic_A = mkA "eudemonic" ; -lin eudemonism_N = mkN "eudemonism" ; -lin eudiometer_N = mkN "eudiometer" ; -lin eugenic_A = mkA "eugenic" ; -lin eugenics_N = mkN "eugenics" "eugenics"; -- from DictEng -lin euglena_N = mkN "euglena" ; -lin euglenoid_N = mkN "euglenoid" ; -lin eukaryote_N = mkN "eukaryote" ; -lin eukaryotic_A = mkA "eukaryotic" ; -lin eulogist_N = mkN "eulogist" "eulogists"; -- from DictEng -lin eulogistic_A = compoundA (mkA "eulogistic"); -- from DictEng -lin eulogize_V2 = mkV2 (mkV "eulogize" "eulogizes" "eulogized" "eulogized" "eulogizing"); -- from DictEng -lin eulogy_N = mkN "eulogy" "eulogies"; -- from DictEng -lin eunuch_N = mkN "eunuch" "eunuchs"; -- from DictEng -lin euphemism_N = mkN "euphemism" "euphemisms"; -- from DictEng -lin euphemistic_A = compoundA (mkA "euphemistic"); -- from DictEng -lin euphemistically_Adv = mkAdv "euphemistically"; -- from DictEng -lin euphonic_A = mkA "euphonic" ; -lin euphonious_A = mkA "euphonious" ; -lin euphonium_N = mkN "euphonium" "euphoniums"; -- from DictEng -lin euphony_N = mkN "euphony" "euphonies"; -- from DictEng -lin euphorbium_N = mkN "euphorbium" ; -lin euphoria_N = mkN "euphoria" ; -- from DictEng -lin euphoriant_A = mkA "euphoriant" ; -lin euphoriant_N = mkN "euphoriant" ; -lin euphoric_A = compoundA (mkA "euphoric"); -- from DictEng -lin euphuism_N = mkN "euphuism" "euphuisms"; -- from DictEng -lin eupnea_N = mkN "eupnea" ; -lin eurasian_A = compoundA (mkA "eurasian"); -- from DictEng -lin eurasian_N = mkN "eurasian" "eurasians"; -- from DictEng -lin eurhythmics_N = mkN "eurhythmics" "eurhythmics"; -- from DictEng -lin euro_N = mkN "euro" ; -lin eurodollar_N = mkN "eurodollar" "eurodollars"; -- from DictEng -lin european_A = compoundA (mkA "European"); -- from DictEng -lin european_N = mkN "European" "Europeans"; -- from DictEng -lin europium_N = mkN "europium" ; -lin eurypterid_N = mkN "eurypterid" ; -lin eurythmics_N = mkN "eurythmics" "eurythmics"; -- from DictEng -lin eurythmy_N = mkN "eurythmy" ; -lin eusporangiate_A = mkA "eusporangiate" ; -lin eusporangium_N = mkN "eusporangium" ; -lin eustachian_A = compoundA (mkA "eustachian"); -- from DictEng -lin eutectic_N = mkN "eutectic" ; -lin euthanasia_N = mkN "euthanasia" ; -- from DictEng -lin euthanize_V2 = mkV2 (mkV "euthanize") ; -lin euthenics_N = mkN "euthenics" ; -lin eutherian_A = mkA "eutherian" ; -lin eutrophic_A = mkA "eutrophic" ; -lin eutrophication_N = mkN "eutrophication" ; -lin evacuate_V2 = mkV2 (mkV "evacuate" "evacuates" "evacuated" "evacuated" "evacuating"); -- from DictEng -lin evacuation_N = mkN "evacuation" "evacuations"; -- from DictEng -lin evacuee_N = mkN "evacuee" "evacuees"; -- from DictEng -lin evade_V2 = mkV2 (mkV "evade" "evades" "evaded" "evaded" "evading"); -- from DictEng -lin evaluate_V = mkV "evaluate"; -- from DictEng -lin evaluate_V2 = mkV2 (mkV "evaluate" "evaluates" "evaluated" "evaluated" "evaluating"); -- from DictEng -lin evaluation_N = mkN "evaluation" "evaluations"; -- from DictEng -lin evaluative_A = compoundA (mkA "evaluative"); -- from DictEng -lin evaluator_N = mkN "evaluator" ; -lin evanescence_N = mkN "evanescence" ; -- from DictEng -lin evanescent_A = compoundA (mkA "evanescent"); -- from DictEng -lin evangelical_A = compoundA (mkA "evangelical"); -- from DictEng -lin evangelicalism_N = mkN "evangelicalism" ; -- from DictEng -lin evangelism_N = mkN "evangelism" ; -- from DictEng -lin evangelist_N = mkN "evangelist" "evangelists"; -- from DictEng -lin evangelistic_A = compoundA (mkA "evangelistic"); -- from DictEng -lin evaporable_A = mkA "evaporable" ; -lin evaporate_V = mkV "evaporate" "evaporates" "evaporated" "evaporated" "evaporating"; -- from DictEng -lin evaporate_V2 = mkV2 (mkV "evaporate" "evaporates" "evaporated" "evaporated" "evaporating"); -- from DictEng -lin evaporate_VS = mkVS (mkV "evaporate" "evaporates" "evaporated" "evaporated" "evaporating"); -- from DictEng -lin evaporated_A = mkA "evaporated" ; -lin evaporation_N = mkN "evaporation" "evaporations"; -- from DictEng -lin evaporative_A = mkA "evaporative" ; -lin evaporite_N = mkN "evaporite" ; -lin evasion_N = mkN "evasion" "evasions"; -- from DictEng -lin evasive_A = compoundA (mkA "evasive"); -- from DictEng -lin evasively_Adv = mkAdv "evasively" ; -lin evasiveness_N = mkN "evasiveness" ; -- from DictEng -lin eve_N = mkN "eve" "eves"; -- from DictEng -lin even_A = compoundA (mkA "even"); -- from DictEng -lin even_Adv = mkAdv "even"; -- from DictEng -lin even_N = mkN "even" "evens"; -- from DictEng -lin even_V2 = mkV2 (mkV "even" "evens" "evened" "evened" "evening"); -- from DictEng -lin even_pinnate_A = compoundA (mkA "even pinnate") ; -lin even_textured_A = compoundA (mkA "even textured") ; -lin even_as_Adv = mkAdv "even as" ; -lin even_handed_A = compoundA (mkA "even - handed"); -- from DictEng -lin evenhanded_A = mkA "evenhanded" ; -lin evening_N = mkN "evening" "evenings"; -- from DictEng -lin evening_snow_N = mkN "evening snow" ; -lin evenly_Adv = mkAdv "evenly" ; -lin evenness_N = mkN "evenness" ; -- from DictEng -lin evensong_N = mkN "evensong" "evensongs"; -- from DictEng -lin event_N = mkN "event" "events"; -- from DictEng -lin eventful_A = compoundA (mkA "eventful"); -- from DictEng -lin eventide_N = mkN "eventide" ; -- from DictEng -lin eventration_N = mkN "eventration" ; -lin eventual_A = compoundA (mkA "eventual"); -- from DictEng -lin eventuality_N = mkN "eventuality" "eventualities"; -- from DictEng -lin ever_AdV = mkAdV "ever"; -- from DictEng -lin ever_Adv = mkAdv "ever" ; -lin ever_present_A = compoundA (mkA "ever present") ; -lin evergreen_A = compoundA (mkA "evergreen"); -- from DictEng -lin evergreen_N = mkN "evergreen" "evergreens"; -- from DictEng -lin everlasting_A = compoundA (mkA "everlasting"); -- from DictEng -lin everlasting_N = mkN "everlasting" ; -lin everlastingly_Adv = mkAdv "everlastingly" ; -lin everlastingness_N = mkN "everlastingness" ; -lin evermore_Adv = mkAdv "evermore"; -- from DictEng -lin eversion_N = mkN "eversion" ; -lin every_A = mkA "every" ; -lin every_Det = mkDeterminer singular "every"; -- from DictEng -lin every_inch_Adv = mkAdv "every inch" ; -lin every_last_A = compoundA (mkA "every last") ; -lin every_so_often_Adv = mkAdv "every so often" ; -lin everybody_NP = regNP "everybody" singular ; -- from DictEng -lin everyday_A = compoundA (mkA "everyday"); -- from DictEng -lin everyman_N = mkN "everyman" ; -lin everyone_NP = regNP "everyone" singular; -- from DictEng -lin everyplace_Adv = mkAdv "everyplace"; -- from DictEng -lin everything_NP = regNP "everything" singular; -- from DictEng -lin everywhere_Adv = mkAdv "everywhere" ; -lin evicerate_V2 = mkV2 (mkV "evicerate") ; -lin evict_V2 = mkV2 (mkV "evict" "evicts" "evicted" "evicted" "evicting"); -- from DictEng -lin eviction_N = mkN "eviction" "evictions"; -- from DictEng -lin evidence_N = mkN "evidence" ; -- from DictEng -lin evidence_V2 = mkV2 (mkV "evidence" "evidences" "evidenced" "evidenced" "evidencing"); -- from DictEng -lin evidenced_A = mkA "evidenced" ; -lin evident_A = compoundA (mkA "evident"); -- from DictEng -lin evidential_A = mkA "evidential" ; -lin evidentiary_A = mkA "evidentiary" ; -lin evil_A = compoundA (mkA "evil"); -- from DictEng -lin evil_N = mkN "evil" "evils"; -- from DictEng -lin evil_looking_A = compoundA (mkA "evil looking") ; -lin evil_minded_A = compoundA (mkA "evil - minded"); -- from DictEng -lin evil_doer_N = mkN "evil - doer" "evil - doers"; -- from DictEng -lin evil_minded_A = compoundA (mkA "evil - minded"); -- from DictEng -lin evince_V2 = mkV2 (mkV "evince" "evinces" "evinced" "evinced" "evincing"); -- from DictEng -lin eviscerate_A = mkA "eviscerate" ; -lin eviscerate_V2 = mkV2 (mkV "eviscerate" "eviscerates" "eviscerated" "eviscerated" "eviscerating"); -- from DictEng -lin evisceration_N = mkN "evisceration" ; -lin evitable_A = mkA "evitable" ; -lin evocation_N = mkN "evocation" "evocations"; -- from DictEng -lin evocative_A = compoundA (mkA "evocative"); -- from DictEng -lin evoke_V2 = mkV2 (mkV "evoke" "evokes" "evoked" "evoked" "evoking"); -- from DictEng -lin evolution_N = mkN "evolution" "evolutions"; -- from DictEng -lin evolutionarily_Adv = mkAdv "evolutionarily" ; -lin evolutionary_A = compoundA (mkA "evolutionary"); -- from DictEng -lin evolutionist_N = mkN "evolutionist" ; -lin evolve_V = mkV "evolve" "evolves" "evolved" "evolved" "evolving"; -- from DictEng -lin evolve_V2 = mkV2 (mkV "evolve" "evolves" "evolved" "evolved" "evolving"); -- from DictEng -lin ewe_N = mkN "ewe" "ewes"; -- from DictEng -lin ewer_N = mkN "ewer" "ewers"; -- from DictEng -lin ex_boyfriend_N = mkN "ex boyfriend" ; -lin ex_directory_A = compoundA (mkA "ex - directory"); -- from DictEng -lin ex_gambler_N = mkN "ex gambler" ; -lin ex_husband_N = mkN "ex husband" ; -lin ex_mayor_N = mkN "ex mayor" ; -lin ex_president_N = mkN "ex president" ; -lin ex_spouse_N = mkN "ex spouse" ; -lin ex_wife_N = mkN "ex wife" ; -lin ex_cathedra_Adv = mkAdv "ex cathedra" ; -lin ex_directory_A = compoundA (mkA "ex - directory"); -- from DictEng -lin ex_gratia_A = compoundA (mkA "ex gratia"); -- from DictEng -lin ex_officio_A = compoundA (mkA "ex officio"); -- from DictEng -lin ex_officio_Adv = mkAdv "ex officio"; -- from DictEng -lin ex_post_facto_A = compoundA (mkA "ex post facto") ; -lin ex_service_A = compoundA (mkA "ex - service"); -- from DictEng -lin ex_serviceman_N = mkN "ex - serviceman" "ex - servicemen" {- FIXME: guessed plural form -}; -- from DictEng -lin exabit_N = mkN "exabit" ; -lin exabyte_N = mkN "exabyte" ; -lin exacerbate_V2 = mkV2 (mkV "exacerbate" "exacerbates" "exacerbated" "exacerbated" "exacerbating"); -- from DictEng -lin exacerbation_N = mkN "exacerbation" "exacerbations"; -- from DictEng -lin exact_A = compoundA (mkA "exact"); -- from DictEng -lin exact_V2 = mkV2 (mkV "exact" "exacts" "exacted" "exacted" "exacting"); -- from DictEng -lin exacta_N = mkN "exacta" ; -lin exacting_A = compoundA (mkA "exacting"); -- from DictEng -lin exaction_N = mkN "exaction" "exactions"; -- from DictEng -lin exactitude_N = mkN "exactitude" ; -- from DictEng -lin exactness_N = mkN "exactness" ; -- from DictEng -lin exaggerate_V = mkV "exaggerate" "exaggerates" "exaggerated" "exaggerated" "exaggerating"; -- from DictEng -lin exaggerate_V2 = mkV2 (mkV "exaggerate" "exaggerates" "exaggerated" "exaggerated" "exaggerating"); -- from DictEng -lin exaggerated_A = mkA "exaggerated" ; -lin exaggeration_N = mkN "exaggeration" "exaggerations"; -- from DictEng -lin exalt_V2 = mkV2 (mkV "exalt" "exalts" "exalted" "exalted" "exalting"); -- from DictEng -lin exaltation_N = mkN "exaltation" ; -- from DictEng -lin exalted_A = compoundA (mkA "exalted"); -- from DictEng -lin exam_N = mkN "exam" "exams"; -- from DictEng -lin examen_N = mkN "examen" ; -lin examination_N = mkN "examination" "examinations"; -- from DictEng -lin examine_V2 = mkV2 (mkV "examine" "examines" "examined" "examined" "examining"); -- from DictEng -lin examiner_N = mkN "examiner" "examiners"; -- from DictEng -lin example_N = mkN "example" "examples"; -- from DictEng -lin exanthem_N = mkN "exanthem" ; -lin exarch_N = mkN "exarch" ; -lin exasperate_V2 = mkV2 (mkV "exasperate" "exasperates" "exasperated" "exasperated" "exasperating"); -- from DictEng -lin exasperated_A = mkA "exasperated" ; -lin exasperating_A = mkA "exasperating" ; -lin exasperatingly_Adv = mkAdv "exasperatingly" ; -lin exasperation_N = mkN "exasperation" ; -- from DictEng -lin exaugural_A = mkA "exaugural" ; -lin exbibit_N = mkN "exbibit" ; -lin excavate_V = mkV "excavate" "excavates" "excavated" "excavated" "excavating"; -- from DictEng -lin excavate_V2 = mkV2 (mkV "excavate" "excavates" "excavated" "excavated" "excavating"); -- from DictEng -lin excavation_N = mkN "excavation" "excavations"; -- from DictEng -lin excavator_N = mkN "excavator" "excavators"; -- from DictEng -lin exceed_V2 = mkV2 (mkV "exceed" "exceeds" "exceeded" "exceeded" "exceeding"); -- from DictEng -lin exceedance_N = mkN "exceedance" ; -lin exceeding_A = mkA "exceeding" ; -lin exceedingly_Adv = mkAdv "exceedingly"; -- from DictEng -lin excel_V = mkV "excel" "excels" "excelled" "excelled" "excelling"; -- from DictEng -lin excel_V2 = mkV2 (mkV "excel" "excels" "excelled" "excelled" "excelling"); -- from DictEng -lin excellence_N = mkN "excellence" "excellences"; -- from DictEng -lin excellency_N = mkN "excellency" "excellencies"; -- from DictEng -lin excellent_A = compoundA (mkA "excellent"); -- from DictEng -lin excellently_Adv = mkAdv "excellently" ; -lin excelsior_N = mkN "excelsior" ; -- from DictEng -lin except_Prep = mkPrep "except"; -- from DictEng -lin except_V2 = mkV2 (mkV "except" "excepts" "excepted" "excepted" "excepting"); -- from DictEng -lin exception_N = mkN "exception" "exceptions"; -- from DictEng -lin exceptionable_A = compoundA (mkA "exceptionable"); -- from DictEng -lin exceptional_A = compoundA (mkA "exceptional"); -- from DictEng -lin exceptionally_Adv = mkAdv "exceptionally" ; -lin excerpt_N = mkN "excerpt" "excerpts"; -- from DictEng -lin excess_A = compoundA (mkA "excess"); -- from DictEng -lin excess_N = mkN "excess" "excesses"; -- from DictEng -lin excessive_A = compoundA (mkA "excessive"); -- from DictEng -lin excessively_Adv = mkAdv "excessively" ; -lin exchange_N = mkN "exchange" "exchanges"; -- from DictEng -lin exchange_V2 = mkV2 (mkV "exchange" "exchanges" "exchanged" "exchanged" "exchanging"); -- from DictEng -lin exchangeability_N = mkN "exchangeability" ; -lin exchangeable_A = compoundA (mkA "exchangeable"); -- from DictEng -lin exchanged_A = mkA "exchanged" ; -lin exchanger_N = mkN "exchanger" "exchangers"; -- from DictEng -lin exchequer_N = mkN "exchequer" "exchequers"; -- from DictEng -lin excise_N = mkN "excise" ; -- from DictEng -lin excise_V2 = mkV2 (mkV "excise" "excises" "excised" "excised" "excising"); -- from DictEng -lin exciseman_N = mkN "exciseman" "excisemen" {- FIXME: guessed plural form -}; -- from DictEng -lin excision_N = mkN "excision" "excisions"; -- from DictEng -lin excitability_N = mkN "excitability" ; -- from DictEng -lin excitable_A = compoundA (mkA "excitable"); -- from DictEng -lin excitant_A = mkA "excitant" ; -lin excitation_N = mkN "excitation" ; -lin excite_V2 = mkV2 (mkV "excite" "excites" "excited" "excited" "exciting"); -- from DictEng -lin excited_A = mkA "excited" ; -lin excitedly_Adv = mkAdv "excitedly"; -- from DictEng -lin excitement_N = mkN "excitement" "excitements"; -- from DictEng -lin exciting_A = mkA "exciting" ; -lin excitingly_Adv = mkAdv "excitingly"; -- from DictEng -lin exclaim_V = mkV "exclaim" "exclaims" "exclaimed" "exclaimed" "exclaiming"; -- from DictEng -lin exclaim_V2 = mkV2 (mkV "exclaim" "exclaims" "exclaimed" "exclaimed" "exclaiming"); -- from DictEng -lin exclamation_N = mkN "exclamation" "exclamations"; -- from DictEng -lin exclamatory_A = compoundA (mkA "exclamatory"); -- from DictEng -lin exclude_V2 = mkV2 (mkV "exclude" "excludes" "excluded" "excluded" "excluding"); -- from DictEng -lin exclusion_N = mkN "exclusion" ; -- from DictEng -lin exclusive_A = compoundA (mkA "exclusive"); -- from DictEng -lin exclusive_N = mkN "exclusive" ; -lin excogitate_V2 = mkV2 (mkV "excogitate" "excogitates" "excogitated" "excogitated" "excogitating"); -- from DictEng -lin excogitation_N = mkN "excogitation" "excogitations"; -- from DictEng -lin excogitative_A = mkA "excogitative" ; -lin excogitator_N = mkN "excogitator" ; -lin excommunicate_V2 = mkV2 (mkV "excommunicate" "excommunicates" "excommunicated" "excommunicated" "excommunicating"); -- from DictEng -lin excommunication_N = mkN "excommunication" "excommunications"; -- from DictEng -lin excoriate_V2 = mkV2 (mkV "excoriate" "excoriates" "excoriated" "excoriated" "excoriating"); -- from DictEng -lin excoriation_N = mkN "excoriation" "excoriations"; -- from DictEng -lin excrement_N = mkN "excrement" ; -- from DictEng -lin excrescence_N = mkN "excrescence" "excrescences"; -- from DictEng -lin excrescent_A = mkA "excrescent" ; -lin excrete_V2 = mkV2 (mkV "excrete" "excretes" "excreted" "excreted" "excreting"); -- from DictEng -lin excretion_N = mkN "excretion" "excretions"; -- from DictEng -lin excretory_A = mkA "excretory" ; -lin excruciating_A = compoundA (mkA "excruciating"); -- from DictEng -lin exculpate_V2 = mkV2 (mkV "exculpate" "exculpates" "exculpated" "exculpated" "exculpating"); -- from DictEng -lin exculpation_N = mkN "exculpation" ; -lin exculpatory_A = mkA "exculpatory" ; -lin excursion_N = mkN "excursion" "excursions"; -- from DictEng -lin excursionist_N = mkN "excursionist" "excursionists"; -- from DictEng -lin excusable_A = compoundA (mkA "excusable"); -- from DictEng -lin excusably_Adv = mkAdv "excusably" ; -lin excuse_N = mkN "excuse" "excuses"; -- from DictEng -lin excuse_V2 = mkV2 (mkV "excuse" "excuses" "excused" "excused" "excusing"); -- from DictEng -lin excused_A = mkA "excused" ; -lin execrable_A = compoundA (mkA "execrable"); -- from DictEng -lin execrate_V2 = mkV2 (mkV "execrate" "execrates" "execrated" "execrated" "execrating"); -- from DictEng -lin execration_N = mkN "execration" "execrations"; -- from DictEng -lin executability_N = mkN "executability" ; -lin executant_N = mkN "executant" "executants"; -- from DictEng -lin execute_V2 = mkV2 (mkV "execute" "executes" "executed" "executed" "executing"); -- from DictEng -lin executed_A = mkA "executed" ; -lin execution_N = mkN "execution" "executions"; -- from DictEng -lin executioner_N = mkN "executioner" "executioners"; -- from DictEng -lin executive_A = compoundA (mkA "executive"); -- from DictEng -lin executive_N = mkN "executive" "executives"; -- from DictEng -lin executor_N = mkN "executor" "executors"; -- from DictEng -lin executrix_N = mkN "executrix" "executrixes"; -- from DictEng -lin exegesis_N = mkN "exegesis" ; -- from DictEng -lin exegete_N = mkN "exegete" ; -lin exegetic_A = mkA "exegetic" ; -lin exemplar_N = mkN "exemplar" ; -lin exemplary_A = compoundA (mkA "exemplary"); -- from DictEng -lin exemplification_N = mkN "exemplification" "exemplifications"; -- from DictEng -lin exemplify_V2 = mkV2 (mkV "exemplify" "exemplifies" "exemplified" "exemplified" "exemplifying"); -- from DictEng -lin exemplifying_A = mkA "exemplifying" ; -lin exempt_A = compoundA (mkA "exempt"); -- from DictEng -lin exempt_V2 = mkV2 (mkV "exempt"); -- from DictEng -lin exempt_V2V = ingV2V (mkV "exempt" "exempts" "exempted" "exempted" "exempting") noPrep from_Prep; -- from DictEng -lin exemption_N = mkN "exemption" "exemptions"; -- from DictEng -lin exenteration_N = mkN "exenteration" ; -lin exercise_N = mkN "exercise" "exercises"; -- from DictEng -lin exercise_V = mkV "exercise" "exercises" "exercised" "exercised" "exercising"; -- from DictEng -lin exercise_V2 = mkV2 (mkV "exercise" "exercises" "exercised" "exercised" "exercising"); -- from DictEng -lin exercise_VV = mkVV (mkV "exercise" "exercises" "exercised" "exercised" "exercising"); -- from DictEng -lin exergonic_A = mkA "exergonic" ; -lin exert_V2 = mkV2 (mkV "exert" "exerts" "exerted" "exerted" "exerting"); -- from DictEng -lin exertion_N = mkN "exertion" "exertions"; -- from DictEng -lin exfoliation_N = mkN "exfoliation" ; -lin exhalation_N = mkN "exhalation" "exhalations"; -- from DictEng -lin exhale_V = mkV "exhale" "exhales" "exhaled" "exhaled" "exhaling"; -- from DictEng -lin exhale_V2 = mkV2 (mkV "exhale" "exhales" "exhaled" "exhaled" "exhaling"); -- from DictEng -lin exhaust_N = mkN "exhaust" "exhausts"; -- from DictEng -lin exhaust_V2 = mkV2 (mkV "exhaust" "exhausts" "exhausted" "exhausted" "exhausting"); -- from DictEng -lin exhaust_pipe_N = mkN "exhaust - pipe" "exhaust - pipes"; -- from DictEng -lin exhausted_A = mkA "exhausted" ; -lin exhaustible_A = mkA "exhaustible" ; -lin exhausting_A = mkA "exhausting" ; -lin exhaustion_N = mkN "exhaustion" ; -- from DictEng -lin exhaustive_A = compoundA (mkA "exhaustive"); -- from DictEng -lin exhibit_N = mkN "exhibit" "exhibits"; -- from DictEng -lin exhibit_V2 = mkV2 (mkV "exhibit" "exhibits" "exhibited" "exhibited" "exhibiting"); -- from DictEng -lin exhibition_N = mkN "exhibition" "exhibitions"; -- from DictEng -lin exhibitioner_N = mkN "exhibitioner" "exhibitioners"; -- from DictEng -lin exhibitionism_N = mkN "exhibitionism" ; -- from DictEng -lin exhibitionist_N = mkN "exhibitionist" "exhibitionists"; -- from DictEng -lin exhibitionistic_A = mkA "exhibitionistic" ; -lin exhibitor_N = mkN "exhibitor" "exhibitors"; -- from DictEng -lin exhilarate_V2 = mkV2 (mkV "exhilarate" "exhilarates" "exhilarated" "exhilarated" "exhilarating"); -- from DictEng -lin exhilarating_A = mkA "exhilarating" ; -lin exhilaration_N = mkN "exhilaration" ; -- from DictEng -lin exhort_V2 = mkV2 (mkV "exhort" "exhorts" "exhorted" "exhorted" "exhorting"); -- from DictEng -lin exhort_VS = mkVS (mkV "exhort" ); -lin exhortation_N = mkN "exhortation" "exhortations"; -- from DictEng -lin exhortative_A = mkA "exhortative" ; -lin exhumation_N = mkN "exhumation" "exhumations"; -- from DictEng -lin exhume_V2 = mkV2 (mkV "exhume" "exhumes" "exhumed" "exhumed" "exhuming"); -- from DictEng -lin exigency_N = mkN "exigency" "exigencies"; -- from DictEng -lin exigent_A = compoundA (mkA "exigent"); -- from DictEng -lin exiguous_A = compoundA (mkA "exiguous"); -- from DictEng -lin exile_N = mkN "exile" "exiles"; -- from DictEng -lin exile_V2 = mkV2 (mkV "exile" "exiles" "exiled" "exiled" "exiling"); -- from DictEng -lin exilic_A = mkA "exilic" ; -lin exist_V = mkV "exist" "exists" "existed" "existed" "existing"; -- from DictEng -lin exist_V2V = mkV2V (mkV "exist" "exists" "existed" "existed" "existing") noPrep to_Prep ; -- from DictEng -lin existence_N = mkN "existence" "existences"; -- from DictEng -lin existent_A = compoundA (mkA "existent"); -- from DictEng -lin existential_A = mkA "existential" ; -lin existentialism_N = mkN "existentialism" ; -- from DictEng -lin existentialist_A = mkA "existentialist" ; -lin existentialist_N = mkN "existentialist" "existentialists"; -- from DictEng -lin existing_A = mkA "existing" ; -lin exit_N = mkN "exit" "exits"; -- from DictEng -lin exit_V = mkV "exit" "exits" "exited" "exited" "exiting"; -- from DictEng -lin exobiology_N = mkN "exobiology" ; -lin exocentric_A = mkA "exocentric" ; -lin exocrine_A = mkA "exocrine" ; -lin exode_N = mkN "exode" ; -lin exodontic_A = mkA "exodontic" ; -lin exodontics_N = mkN "exodontics" ; -lin exodontist_N = mkN "exodontist" ; -lin exodus_N = mkN "exodus" "exoduses"; -- from DictEng -lin exoergic_A = mkA "exoergic" ; -lin exogamous_A = mkA "exogamous" ; -lin exogamy_N = mkN "exogamy" ; -lin exogenous_A = mkA "exogenous" ; -lin exomphalos_N = mkN "exomphalos" ; -lin exon_N = mkN "exon" ; -lin exonerate_V2 = mkV2 (mkV "exonerate" "exonerates" "exonerated" "exonerated" "exonerating"); -- from DictEng -lin exoneration_N = mkN "exoneration" "exonerations"; -- from DictEng -lin exonuclease_N = mkN "exonuclease" ; -lin exophthalmos_N = mkN "exophthalmos" ; -lin exorbitance_N = mkN "exorbitance" ; -- from DictEng -lin exorbitant_A = compoundA (mkA "exorbitant"); -- from DictEng -lin exorbitantly_Adv = mkAdv "exorbitantly" ; -lin exorcise_V2 = mkV2 (mkV "exorcise"); -- from DictEng -lin exorcism_N = mkN "exorcism" ; -lin exorcist_N = mkN "exorcist" ; -lin exorcize_V2 = mkV2 (mkV "exorcize" "exorcizes" "exorcized" "exorcized" "exorcizing"); -- from DictEng -lin exordium_N = mkN "exordium" ; -lin exoskeleton_N = mkN "exoskeleton" ; -lin exosphere_N = mkN "exosphere" ; -lin exostosis_N = mkN "exostosis" ; -lin exoteric_A = mkA "exoteric" ; -lin exotherm_N = mkN "exotherm" ; -lin exothermic_A = mkA "exothermic" ; -lin exotic_A = compoundA (mkA "exotic"); -- from DictEng -lin exoticism_N = mkN "exoticism" ; -lin exotoxin_N = mkN "exotoxin" ; -lin expand_V = mkV "expand" "expands" "expanded" "expanded" "expanding"; -- from DictEng -lin expand_V2 = mkV2 (mkV "expand" "expands" "expanded" "expanded" "expanding"); -- from DictEng -lin expand_V2V = mkV2V (mkV "expand" "expands" "expanded" "expanded" "expanding") noPrep to_Prep ; -- from DictEng -lin expandable_A = mkA "expandable" ; -lin expanded_A = mkA "expanded" ; -lin expanse_N = mkN "expanse" "expanses"; -- from DictEng -lin expansion_N = mkN "expansion" ; -- from DictEng -lin expansionism_N = mkN "expansionism" ; -lin expansionist_A = mkA "expansionist" ; -lin expansive_A = compoundA (mkA "expansive"); -- from DictEng -lin expansively_Adv = mkAdv "expansively" ; -lin expansiveness_N = mkN "expansiveness" ; -- from DictEng -lin expatiate_V = mkV "expatiate" "expatiates" "expatiated" "expatiated" "expatiating"; -- from DictEng -lin expatiation_N = mkN "expatiation" ; -lin expatriate_N = mkN "expatriate" "expatriates"; -- from DictEng -lin expatriate_V2 = mkV2 (mkV "expatriate" "expatriates" "expatriated" "expatriated" "expatriating"); -- from DictEng -lin expect_Prep = mkPrep "expect"; -- from DictEng -lin expect_V = mkV "expect"; -- from DictEng -lin expect_V2 = mkV2 (mkV "expect"); -- from DictEng -lin expect_V2V = mkV2V (mkV "expect") noPrep (mkPrep "to") ; -- from DictEng -lin expect_VS = mkVS (mkV "expect"); -- from DictEng -lin expect_VV = mkVV (mkV "expect") ; -- from DictEng -lin expectable_A = mkA "expectable" ; -lin expectancy_N = mkN "expectancy" "expectancies"; -- from DictEng -lin expectant_A = compoundA (mkA "expectant"); -- from DictEng -lin expectantly_Adv = mkAdv "expectantly" ; -lin expectation_N = mkN "expectation" "expectations"; -- from DictEng -lin expected_A = compoundA (mkA "expected"); -- from DictEng -lin expectedness_N = mkN "expectedness" ; -lin expectorant_N = mkN "expectorant" "expectorants"; -- from DictEng -lin expectorate_V = mkV "expectorate" "expectorates" "expectorated" "expectorated" "expectorating"; -- from DictEng -lin expectorate_V2 = mkV2 (mkV "expectorate" "expectorates" "expectorated" "expectorated" "expectorating"); -- from DictEng -lin expectoration_N = mkN "expectoration" ; -lin expedience_N = mkN "expedience" ; -- from DictEng -lin expediency_N = mkN "expediency" ; -- from DictEng -lin expedient_A = compoundA (mkA "expedient"); -- from DictEng -lin expedient_N = mkN "expedient" "expedients"; -- from DictEng -lin expediently_Adv = mkAdv "expediently" ; -lin expedite_V2 = mkV2 (mkV "expedite" "expedites" "expedited" "expedited" "expediting"); -- from DictEng -lin expedition_N = mkN "expedition" "expeditions"; -- from DictEng -lin expeditionary_A = compoundA (mkA "expeditionary"); -- from DictEng -lin expeditious_A = compoundA (mkA "expeditious"); -- from DictEng -lin expel_V2 = mkV2 (mkV "expel" "expels" "expelled" "expelled" "expelling"); -- from DictEng -lin expend_V2 = mkV2 (mkV "expend" "expends" "expended" "expended" "expending"); -- from DictEng -lin expendable_A = compoundA (mkA "expendable"); -- from DictEng -lin expending_N = mkN "expending" ; -lin expenditure_N = mkN "expenditure" "expenditures"; -- from DictEng -lin expense_N = mkN "expense" "expenses"; -- from DictEng -lin expensive_A = compoundA (mkA "expensive"); -- from DictEng -lin expensively_Adv = mkAdv "expensively" ; -lin expensiveness_N = mkN "expensiveness" ; -lin experience_N = mkN "experience" "experiences"; -- from DictEng -lin experience_V2 = mkV2 (mkV "experience" "experiences" "experienced" "experienced" "experiencing"); -- from DictEng -lin experienced_A = compoundA (mkA "experienced"); -- from DictEng -lin experiential_A = mkA "experiential" ; -lin experiment_N = mkN "experiment" "experiments"; -- from DictEng -lin experiment_V = mkV "experiment" "experiments" "experimented" "experimented" "experimenting"; -- from DictEng -lin experiment_V2 = mkV2 (mkV "experiment" "experiments" "experimented" "experimented" "experimenting"); -- from DictEng -lin experimental_A = compoundA (mkA "experimental"); -- from DictEng -lin experimentalism_N = mkN "experimentalism" ; -lin experimentally_Adv = mkAdv "experimentally" ; -lin experimentation_N = mkN "experimentation" ; -- from DictEng -lin experimenter_N = mkN "experimenter" "experimenters"; -- from DictEng -lin expert_A = compoundA (mkA "expert"); -- from DictEng -lin expert_N = mkN "expert" "experts"; -- from DictEng -lin expertise_N = mkN "expertise" ; -- from DictEng -lin expertly_Adv = mkAdv "expertly" ; -lin expertness_N = mkN "expertness" ; -- from DictEng -lin expiable_A = mkA "expiable" ; -lin expiate_V2 = mkV2 (mkV "expiate" "expiates" "expiated" "expiated" "expiating"); -- from DictEng -lin expiation_N = mkN "expiation" ; -- from DictEng -lin expiatory_A = mkA "expiatory" ; -lin expiration_N = mkN "expiration" ; -- from DictEng -lin expiratory_A = mkA "expiratory" ; -lin expire_V = mkV "expire" "expires" "expired" "expired" "expiring"; -- from DictEng -lin expire_V2 = mkV2 (mkV "expire" "expires" "expired" "expired" "expiring"); -- from DictEng -lin expire_VS = mkVS (mkV "expire" "expires" "expired" "expired" "expiring"); -- from DictEng -lin expired_A = mkA "expired" ; -lin expiry_N = mkN "expiry" "expiries"; -- from DictEng -lin explain_V2 = mkV2 (mkV "explain" "explains" "explained" "explained" "explaining"); -- from DictEng -lin explain_VS = mkVS (mkV "explain"); -- from DictEng -lin explainable_A = mkA "explainable" ; -lin explanans_N = mkN "explanans" ; -lin explanation_N = mkN "explanation" "explanations"; -- from DictEng -lin explanatory_A = compoundA (mkA "explanatory"); -- from DictEng -lin expletive_N = mkN "expletive" "expletives"; -- from DictEng -lin explicable_A = compoundA (mkA "explicable"); -- from DictEng -lin explicandum_N = mkN "explicandum" ; -lin explicate_V2 = mkV2 (mkV "explicate" "explicates" "explicated" "explicated" "explicating"); -- from DictEng -lin explication_N = mkN "explication" ; -lin explicit_A = compoundA (mkA "explicit"); -- from DictEng -lin explicitly_Adv = mkAdv "explicitly" ; -lin explicitness_N = mkN "explicitness" ; -- from DictEng -lin explode_V = mkV "explode" "explodes" "exploded" "exploded" "exploding"; -- from DictEng -lin explode_V2 = mkV2 (mkV "explode" "explodes" "exploded" "exploded" "exploding"); -- from DictEng -lin exploded_A = mkA "exploded" ; -lin exploit_N = mkN "exploit" "exploits"; -- from DictEng -lin exploit_V2 = mkV2 (mkV "exploit" "exploits" "exploited" "exploited" "exploiting"); -- from DictEng -lin exploitation_N = mkN "exploitation" ; -- from DictEng -lin exploitative_A = mkA "exploitative" ; -lin exploited_A = mkA "exploited" ; -lin exploiter_N = mkN "exploiter" ; -lin exploration_N = mkN "exploration" "explorations"; -- from DictEng -lin exploratory_A = compoundA (mkA "exploratory"); -- from DictEng -lin explore_V2 = mkV2 (mkV "explore" "explores" "explored" "explored" "exploring"); -- from DictEng -lin explore_VS = mkVS (mkV "explore"); -- from DictEng -lin explorer_N = mkN "explorer" "explorers"; -- from DictEng -lin explosion_N = mkN "explosion" "explosions"; -- from DictEng -lin explosive_A = compoundA (mkA "explosive"); -- from DictEng -lin explosive_N = mkN "explosive" "explosives"; -- from DictEng -lin explosively_Adv = mkAdv "explosively" ; -lin expo_N = mkN "expo" "expos"; -- from DictEng -lin exponent_N = mkN "exponent" "exponents"; -- from DictEng -lin exponential_A = compoundA (mkA "exponential"); -- from DictEng -lin exponential_N = mkN "exponential" "exponentials"; -- from DictEng -lin exponentially_Adv = mkAdv "exponentially" ; -lin exponentiation_N = mkN "exponentiation" ; -lin export_N = mkN "export" "exports"; -- from DictEng -lin export_V = mkV "export"; -- from DictEng -lin export_V2 = mkV2 (mkV "export" "exports" "exported" "exported" "exporting"); -- from DictEng -lin exportable_A = compoundA (mkA "exportable"); -- from DictEng -lin exportation_N = mkN "exportation" ; -- from DictEng -lin exporter_N = mkN "exporter" "exporters"; -- from DictEng -lin exporting_N = mkN "exporting" ; -lin expose_N = mkN "exposé" "exposés"; -- from DictEng -lin expose_V = mkV "expose"; -- from DictEng -lin expose_V2 = mkV2 (mkV "expose" "exposes" "exposed" "exposed" "exposing"); -- from DictEng -lin exposed_A = mkA "exposed" ; -lin exposition_N = mkN "exposition" "expositions"; -- from DictEng -lin expositor_N = mkN "expositor" ; -lin expository_A = mkA "expository" ; -lin expostulate_V = mkV "expostulate" "expostulates" "expostulated" "expostulated" "expostulating"; -- from DictEng -lin expostulation_N = mkN "expostulation" "expostulations"; -- from DictEng -lin exposure_N = mkN "exposure" "exposures"; -- from DictEng -lin expound_V2 = mkV2 (mkV "expound" "expounds" "expounded" "expounded" "expounding"); -- from DictEng -lin expound_VS = mkVS (mkV "expound" "expounds" "expounded" "expounded" "expounding"); -- from DictEng -lin express_A = compoundA (mkA "express"); -- from DictEng -lin express_Adv = mkAdv "express"; -- from DictEng -lin express_N = mkN "express" "expresses"; -- from DictEng -lin express_V2 = mkV2 (mkV "express" "expresses" "expressed" "expressed" "expressing"); -- from DictEng -lin expressed_A = mkA "expressed" ; -lin expressible_A = mkA "expressible" ; -lin expression_N = mkN "expression" "expressions"; -- from DictEng -lin expressionism_N = mkN "expressionism" ; -- from DictEng -lin expressionist_A = mkA "expressionist" ; -lin expressionist_N = mkN "expressionist" "expressionists"; -- from DictEng -lin expressionless_A = compoundA (mkA "expressionless"); -- from DictEng -lin expressive_A = compoundA (mkA "expressive"); -- from DictEng -lin expressively_Adv = mkAdv "expressively" ; -lin expressiveness_N = mkN "expressiveness" ; -lin expressly_Adv = mkAdv "expressly" ; -lin expressway_N = mkN "expressway" "expressways"; -- from DictEng -lin expropriate_V2 = mkV2 (mkV "expropriate" "expropriates" "expropriated" "expropriated" "expropriating"); -- from DictEng -lin expropriation_N = mkN "expropriation" ; -- from DictEng -lin expulsion_N = mkN "expulsion" "expulsions"; -- from DictEng -lin expunction_N = mkN "expunction" ; -lin expunge_V2 = mkV2 (mkV "expunge" "expunges" "expunged" "expunged" "expunging"); -- from DictEng -lin expurgate_V2 = mkV2 (mkV "expurgate" "expurgates" "expurgated" "expurgated" "expurgating"); -- from DictEng -lin expurgated_A = mkA "expurgated" ; -lin expurgation_N = mkN "expurgation" "expurgations"; -- from DictEng -lin expurgator_N = mkN "expurgator" ; -lin exquisite_A = compoundA (mkA "exquisite"); -- from DictEng -lin exquisiteness_N = mkN "exquisiteness" ; -- from DictEng -lin extant_A = compoundA (mkA "extant"); -- from DictEng -lin extemporaneous_A = compoundA (mkA "extemporaneous"); -- from DictEng -lin extemporaneously_Adv = mkAdv "extemporaneously" ; -lin extemporary_A = compoundA (mkA "extemporary"); -- from DictEng -lin extempore_A = compoundA (mkA "extempore"); -- from DictEng -lin extempore_Adv = mkAdv "extempore"; -- from DictEng -lin extemporization_N = mkN "extemporization" ; -lin extemporize_V = mkV "extemporize" "extemporize" "extemporize" "extemporize" "extemporize"; -- from DictEng -lin extemporize_V2 = mkV2 (mkV "extemporize" "extemporize" "extemporize" "extemporize" "extemporize"); -- from DictEng -lin extend_V = mkV "extend" "extends" "extended" "extended" "extending"; -- from DictEng -lin extend_V2 = mkV2 (mkV "extend" "extends" "extended" "extended" "extending"); -- from DictEng -lin extended_A = mkA "extended" ; -lin extendible_A = mkA "extendible" ; -lin extensile_A = mkA "extensile" ; -lin extension_N = mkN "extension" "extensions"; -- from DictEng -lin extensional_A = mkA "extensional" ; -lin extensive_A = compoundA (mkA "extensive"); -- from DictEng -lin extensively_Adv = mkAdv "extensively" ; -lin extent_N = mkN "extent" ; -- from DictEng -lin extenuate_V2 = mkV2 (mkV "extenuate" "extenuates" "extenuated" "extenuated" "extenuating"); -- from DictEng -lin extenuating_A = mkA "extenuating" ; -lin extenuation_N = mkN "extenuation" "extenuations"; -- from DictEng -lin exterior_A = compoundA (mkA "exterior"); -- from DictEng -lin exterior_N = mkN "exterior" "exteriors"; -- from DictEng -lin exteriorize_V2 = mkV2 (mkV "exteriorize" "exteriorizes" "exteriorized" "exteriorized" "exteriorizing"); -- from DictEng -lin exterminable_A = mkA "exterminable" ; -lin exterminate_V2 = mkV2 (mkV "exterminate" "exterminates" "exterminated" "exterminated" "exterminating"); -- from DictEng -lin extermination_N = mkN "extermination" "exterminations"; -- from DictEng -lin exterminator_N = mkN "exterminator" ; -lin extern_N = mkN "extern" ; -lin external_A = compoundA (mkA "external"); -- from DictEng -lin external_N = mkN "external" "externals"; -- from DictEng -lin externalization_N = mkN "externalization" ; -lin externalize_V2 = mkV2 (mkV "externalize" "externalizes" "externalized" "externalized" "externalizing"); -- from DictEng -lin externally_Adv = mkAdv "externally" ; -lin exteroception_N = mkN "exteroception" ; -lin exteroceptive_A = mkA "exteroceptive" ; -lin exteroceptor_N = mkN "exteroceptor" ; -lin exterritorial_A = compoundA (mkA "exterritorial"); -- from DictEng -lin extinct_A = compoundA (mkA "extinct"); -- from DictEng -lin extinction_N = mkN "extinction" ; -- from DictEng -lin extinguish_V2 = mkV2 (mkV "extinguish" "extinguishes" "extinguished" "extinguished" "extinguishing"); -- from DictEng -lin extinguishable_A = mkA "extinguishable" ; -lin extinguished_A = mkA "extinguished" ; -lin extinguisher_N = mkN "extinguisher" "extinguishers"; -- from DictEng -lin extirpate_V2 = mkV2 (mkV "extirpate" "extirpates" "extirpated" "extirpated" "extirpating"); -- from DictEng -lin extirpation_N = mkN "extirpation" ; -- from DictEng -lin extol_V2 = mkV2 (mkV "extol" "extols" "extolled" "extolled" "extolling"); -- from DictEng -lin extort_V = mkV "extort" "extorts" "extorted" "extorted" "extorting"; -- from DictEng -lin extort_V2 = mkV2 (mkV "extort" "extorts" "extorted" "extorted" "extorting"); -- from DictEng -lin extort_VS = mkVS (mkV "extort" ); -lin extortion_N = mkN "extortion" "extortions"; -- from DictEng -lin extortionate_A = compoundA (mkA "extortionate"); -- from DictEng -lin extra_A = compoundA (mkA "extra"); -- from DictEng -lin extra_Adv = mkAdv "extra"; -- from DictEng -lin extra_N = mkN "extra" "extras"; -- from DictEng -lin extracellular_A = mkA "extracellular" ; -lin extract_N = mkN "extract" "extracts"; -- from DictEng -lin extract_V2 = mkV2 (mkV "extract" "extracts" "extracted" "extracted" "extracting"); -- from DictEng -lin extractable_A = mkA "extractable" ; -lin extraction_N = mkN "extraction" "extractions"; -- from DictEng -lin extractor_N = mkN "extractor" ; -lin extracurricular_A = compoundA (mkA "extracurricular"); -- from DictEng -lin extradite_V2 = mkV2 (mkV "extradite" "extradites" "extradited" "extradited" "extraditing"); -- from DictEng -lin extradition_N = mkN "extradition" "extraditions"; -- from DictEng -lin extrados_N = mkN "extrados" ; -lin extragalactic_A = mkA "extragalactic" ; -lin extrajudicial_A = compoundA (mkA "extrajudicial"); -- from DictEng -lin extralegal_A = mkA "extralegal" ; -lin extralinguistic_A = mkA "extralinguistic" ; -lin extramarital_A = compoundA (mkA "extramarital"); -- from DictEng -lin extramural_A = compoundA (mkA "extramural"); -- from DictEng -lin extraneous_A = compoundA (mkA "extraneous"); -- from DictEng -lin extraneousness_N = mkN "extraneousness" ; -lin extraordinaire_A = mkA "extraordinaire" ; -lin extraordinariness_N = mkN "extraordinariness" ; -lin extraordinary_A = compoundA (mkA "extraordinary"); -- from DictEng -lin extrapolate_V = mkV "extrapolate" "extrapolate" "extrapolate" "extrapolate" "extrapolate"; -- from DictEng -lin extrapolate_V2 = mkV2 (mkV "extrapolate" "extrapolate" "extrapolate" "extrapolate" "extrapolate"); -- from DictEng -lin extrapolation_N = mkN "extrapolation" ; -- from DictEng -lin extrasensory_A = compoundA (mkA "extrasensory"); -- from DictEng -lin extrasystole_N = mkN "extrasystole" ; -lin extrasystolic_A = mkA "extrasystolic" ; -lin extraterrestrial_A = mkA "extraterrestrial" ; -lin extraterritorial_A = compoundA (mkA "extraterritorial"); -- from DictEng -lin extravagance_N = mkN "extravagance" "extravagances"; -- from DictEng -lin extravagant_A = compoundA (mkA "extravagant"); -- from DictEng -lin extravagantly_Adv = mkAdv "extravagantly" ; -lin extravaganza_N = mkN "extravaganza" "extravaganzas"; -- from DictEng -lin extravasation_N = mkN "extravasation" ; -lin extraversion_N = mkN "extraversion" ; -lin extreme_A = compoundA (mkA "extreme"); -- from DictEng -lin extreme_N = mkN "extreme" "extremes"; -- from DictEng -lin extremely_Adv = mkAdv "extremely" ; -lin extremeness_N = mkN "extremeness" ; -lin extremism_N = mkN "extremism" ; -lin extremist_A = mkA "extremist" ; -lin extremist_N = mkN "extremist" "extremists"; -- from DictEng -lin extremity_N = mkN "extremity" "extremities"; -- from DictEng -lin extremum_N = mkN "extremum" ; -lin extricable_A = compoundA (mkA "extricable"); -- from DictEng -lin extricate_V2 = mkV2 (mkV "extricate" "extricates" "extricated" "extricated" "extricating"); -- from DictEng -lin extrication_N = mkN "extrication" ; -- from DictEng -lin extrinsic_A = compoundA (mkA "extrinsic"); -- from DictEng -lin extropic_A = mkA "extropic" ; -lin extropy_N = mkN "extropy" ; -lin extrospective_A = mkA "extrospective" ; -lin extroversion_N = mkN "extroversion" ; -- from DictEng -lin extroversive_A = mkA "extroversive" ; -lin extrovert_A = mkA "extrovert" ; -lin extrovert_N = mkN "extrovert" "extroverts"; -- from DictEng -lin extroverted_A = mkA "extroverted" ; -lin extrovertish_A = mkA "extrovertish" ; -lin extrude_V2 = mkV2 (mkV "extrude" "extrudes" "extruded" "extruded" "extruding"); -- from DictEng -lin extrusion_N = mkN "extrusion" "extrusions"; -- from DictEng -lin extrusive_A = mkA "extrusive" ; -lin exuberance_N = mkN "exuberance" ; -- from DictEng -lin exuberant_A = compoundA (mkA "exuberant"); -- from DictEng -lin exuberantly_Adv = mkAdv "exuberantly" ; -lin exudate_N = mkN "exudate" ; -lin exudation_N = mkN "exudation" ; -lin exude_V = mkV "exude" "exudes" "exuded" "exuded" "exuding"; -- from DictEng -lin exude_V2 = mkV2 (mkV "exude" "exudes" "exuded" "exuded" "exuding"); -- from DictEng -lin exult_V = mkV "exult" "exults" "exulted" "exulted" "exulting"; -- from DictEng -lin exultant_A = compoundA (mkA "exultant"); -- from DictEng -lin exultantly_Adv = mkAdv "exultantly" ; -lin exultation_N = mkN "exultation" ; -- from DictEng -lin exurbia_N = mkN "exurbia" ; -lin exuviae_N = mkN "exuviae" ; -lin exuvial_A = mkA "exuvial" ; -lin eyas_N = mkN "eyas" ; -lin eye_N = mkN "eye" "eyes"; -- from DictEng -lin eye_V2 = mkV2 (mkV "eye" "eyes" "eyed" "eyed" "eyeing"); -- from DictEng -lin eye_beaming_N = mkN "eye beaming" ; -lin eye_catcher_N = mkN "eye catcher" ; -lin eye_deceiving_A = compoundA (mkA "eye deceiving") ; -lin eye_lotion_N = mkN "eye lotion" ; -lin eye_catching_A = compoundA (mkA "eye - catching"); -- from DictEng -lin eye_opener_N = mkN "eye - opener" "eye - openers"; -- from DictEng -lin eye_shadow_N = mkN "eye - shadow" ; -- from DictEng -lin eyeball_N = mkN "eyeball" "eyeballs"; -- from DictEng -lin eyeball_V2 = mkV2 (mkV "eyeball"); -- from DictEng -lin eyebath_N = mkN "eyebath" "eyebaths"; -- from DictEng -lin eyebrow_N = mkN "eyebrow" "eyebrows"; -- from DictEng -lin eyecatching_A = compoundA (mkA "eyecatching"); -- from DictEng -lin eyecup_N = mkN "eyecup" "eyecups"; -- from DictEng -lin eyed_A = compoundA (mkA "eyed"); -- from DictEng -lin eyedness_N = mkN "eyedness" ; -lin eyedrop_N = mkN "eyedrop" ; -lin eyeful_N = mkN "eyeful" "eyefuls"; -- from DictEng -lin eyeglass_N = mkN "eyeglass" "eyeglasses"; -- from DictEng -lin eyelash_N = mkN "eyelash" "eyelashes"; -- from DictEng -lin eyeless_A = compoundA (mkA "eyeless"); -- from DictEng -lin eyelessness_N = mkN "eyelessness" ; -lin eyelet_N = mkN "eyelet" "eyelets"; -- from DictEng -lin eyelid_N = mkN "eyelid" "eyelids"; -- from DictEng -lin eyelike_A = mkA "eyelike" ; -lin eyeliner_N = mkN "eyeliner" ; -lin eyepatch_N = mkN "eyepatch" ; -lin eyepiece_N = mkN "eyepiece" "eyepieces"; -- from DictEng -lin eyes_N = mkN "eyes" ; -lin eyes_only_A = compoundA (mkA "eyes only") ; -lin eyeshadow_N = mkN "eyeshadow" ; -lin eyeshot_N = mkN "eyeshot" ; -- from DictEng -lin eyesight_N = mkN "eyesight" ; -- from DictEng -lin eyesore_N = mkN "eyesore" "eyesores"; -- from DictEng -lin eyespot_N = mkN "eyespot" ; -lin eyestrain_N = mkN "eyestrain" ; -- from DictEng -lin eyetooth_N = mkN "eyetooth" "eyeteeth" {- FIXME: guessed plural form -}; -- from DictEng -lin eyewash_N = mkN "eyewash" ; -- from DictEng -lin eyewitness_N = mkN "eyewitness" "eyewitnesses"; -- from DictEng -lin eyrie_N = mkN "eyrie" "eyries"; -- from DictEng -lin eyrir_N = mkN "eyrir" ; -lin eyry_N = mkN "eyry" "eyries"; -- from DictEng -lin fa_N = mkN "fa" ; -- from DictEng -lin fab_A = compoundA (mkA "fab"); -- from DictEng -lin fabian_A = compoundA (mkA "fabian"); -- from DictEng -lin fabian_N = mkN "fabian" "fabians"; -- from DictEng -lin fable_N = mkN "fable" "fables"; -- from DictEng -lin fabled_A = compoundA (mkA "fabled"); -- from DictEng -lin fabric_N = mkN "fabric" "fabrics"; -- from DictEng -lin fabricate_V2 = mkV2 (mkV "fabricate" "fabricates" "fabricated" "fabricated" "fabricating"); -- from DictEng -lin fabricated_A = mkA "fabricated" ; -lin fabrication_N = mkN "fabrication" "fabrications"; -- from DictEng -lin fabulist_N = mkN "fabulist" ; -lin fabulous_A = compoundA (mkA "fabulous"); -- from DictEng -lin fabulously_Adv = mkAdv "fabulously" ; -lin facade_N = mkN "façade" "façades"; -- from DictEng -lin face_N = mkN "face" "faces"; -- from DictEng -lin face_V = mkV "face" "faces" "faced" "faced" "facing"; -- from DictEng -lin face_V2 = mkV2 (mkV "face" "faces" "faced" "faced" "facing"); -- from DictEng -lin face_off_N = mkN "face off" ; -lin face_saving_A = compoundA (mkA "face - saving"); -- from DictEng -lin face_to_face_A = compoundA (mkA "face to face") ; -lin face_to_face_Adv = mkAdv "face to face" ; -lin face_ache_N = mkN "face - ache" ; -- from DictEng -lin face_card_N = mkN "face - card" "face - cards"; -- from DictEng -lin face_cloth_N = mkN "face - cloth" "face - cloths"; -- from DictEng -lin face_cream_N = mkN "face - cream" "face - creams"; -- from DictEng -lin face_lift_N = mkN "face - lift" "face - lifts"; -- from DictEng -lin face_lifting_N = mkN "face - lifting" "face - liftings"; -- from DictEng -lin face_pack_N = mkN "face - pack" "face - packs"; -- from DictEng -lin face_powder_N = mkN "face - powder" "face - powders"; -- from DictEng -lin face_saver_N = mkN "face - saver" "face - savers"; -- from DictEng -lin face_saving_A = compoundA (mkA "face - saving"); -- from DictEng -lin face_saving_N = mkN "face - saving" ; -- from DictEng -lin face_to_face_Adv = mkAdv "face to face" ; -lin faced_A = mkA "faced" ; -lin faceless_A = compoundA (mkA "faceless"); -- from DictEng -lin faceplate_N = mkN "faceplate" ; -lin facer_N = mkN "facer" "facers"; -- from DictEng -lin facet_N = mkN "facet" "facets"; -- from DictEng -lin faceted_A = mkA "faceted" ; -lin facetious_A = compoundA (mkA "facetious"); -- from DictEng -lin facetiously_Adv = mkAdv "facetiously" ; -lin facetiousness_N = mkN "facetiousness" ; -- from DictEng -lin facia_N = mkN "facia" "facias"; -- from DictEng -lin facial_A = compoundA (mkA "facial"); -- from DictEng -lin facial_N = mkN "facial" "facials"; -- from DictEng -lin facially_Adv = mkAdv "facially" ; -lin facile_A = compoundA (mkA "facile"); -- from DictEng -lin facilitate_V2 = mkV2 (mkV "facilitate" "facilitates" "facilitated" "facilitated" "facilitating"); -- from DictEng -lin facilitation_N = mkN "facilitation" ; -lin facilitative_A = mkA "facilitative" ; -lin facilitator_N = mkN "facilitator" ; -lin facilitatory_A = mkA "facilitatory" ; -lin facility_N = mkN "facility" "facilities"; -- from DictEng -lin facing_N = mkN "facing" "facings"; -- from DictEng -lin facsimile_N = mkN "facsimile" "facsimiles"; -- from DictEng -lin fact_N = mkN "fact" "facts"; -- from DictEng -lin fact_finding_A = compoundA (mkA "fact - finding"); -- from DictEng -lin fact_finding_A = compoundA (mkA "fact - finding"); -- from DictEng -lin faction_N = mkN "faction" "factions"; -- from DictEng -lin factious_A = compoundA (mkA "factious"); -- from DictEng -lin factitious_A = compoundA (mkA "factitious"); -- from DictEng -lin factoid_N = mkN "factoid" ; -lin factor_N = mkN "factor" "factors"; -- from DictEng -lin factor_analytical_A = compoundA (mkA "factor analytical") ; -lin factorial_A = mkA "factorial" ; -lin factorial_N = mkN "factorial" ; -lin factorization_N = mkN "factorization" ; -lin factorize_V2 = mkV2 (mkV "factorize" "factorizes" "factorized" "factorized" "factorizing"); -- from DictEng -lin factory_N = mkN "factory" "factories"; -- from DictEng -lin factory_made_A = compoundA (mkA "factory made") ; -lin factotum_N = mkN "factotum" "factotums"; -- from DictEng -lin factual_A = compoundA (mkA "factual"); -- from DictEng -lin factuality_N = mkN "factuality" ; -lin factually_Adv = mkAdv "factually" ; -lin facula_N = mkN "facula" ; -lin facultative_A = mkA "facultative" ; -lin faculty_N = mkN "faculty" "faculties"; -- from DictEng -lin fad_N = mkN "fad" "fads"; -- from DictEng -lin faddily_Adv = mkAdv "faddily"; -- from DictEng -lin faddish_A = mkA "faddish" ; -lin faddishly_Adv = mkAdv "faddishly" ; -lin faddist_N = mkN "faddist" ; -lin faddy_A = mkA "faddy" "faddier"; -- from DictEng -lin fade_N = mkN "fade" ; -lin fade_V = mkV "fade" "fades" "faded" "faded" "fading"; -- from DictEng -lin fade_V2 = mkV2 (mkV "fade" "fades" "faded" "faded" "fading"); -- from DictEng -lin fadeout_N = mkN "fadeout" ; -lin fado_N = mkN "fado" ; -lin faecal_A = mkA "faecal" ; -lin faerie_N = mkN "faerie" "faeries"; -- from DictEng -lin faery_N = mkN "faery" "faeries"; -- from DictEng -lin fag_N = mkN "fag" "fags"; -- from DictEng -lin fag_V = mkV "fag" "fags" "fagged" "fagged" "fagging"; -- from DictEng -lin fag_V2 = mkV2 (mkV "fag" "fags" "fagged" "fagged" "fagging"); -- from DictEng -lin fag_end_N = mkN "fag - end" "fag - ends"; -- from DictEng -lin faggot_N = mkN "faggot" "faggots"; -- from DictEng -lin fagot_N = mkN "fagot" ; -lin fagoting_N = mkN "fagoting" ; -lin faience_N = mkN "faience" ; -- from DictEng -lin fail_N = mkN "fail" ; -- from DictEng -lin fail_V = mkV "fail"; -- from DictEng -lin fail_V2 = mkV2 (mkV "fail"); -- from DictEng -lin fail_V2V = mkV2V (mkV "fail") noPrep to_Prep ; -- from DictEng -lin fail_VS = mkVS (mkV "fail"); -- from DictEng -lin fail_VV = mkVV (mkV "fail"); -- from DictEng -lin fail_safe_A = compoundA (mkA "fail - safe"); -- from DictEng -lin fail_safe_N = mkN "fail safe" ; -lin fail_safe_A = compoundA (mkA "fail - safe"); -- from DictEng -lin failing_A = mkA "failing" ; -lin failing_N = mkN "failing" "failings"; -- from DictEng -lin faille_N = mkN "faille" ; -lin failure_N = mkN "failure" "failures"; -- from DictEng -lin fain_Adv = mkAdv "fain"; -- from DictEng -lin faineance_N = mkN "faineance" ; -lin faineant_A = mkA "faineant" ; -lin faint_A = mkA "faint" "fainter"; -- from DictEng -lin faint_N = mkN "faint" "faints"; -- from DictEng -lin faint_V = mkV "faint" "faints" "fainted" "fainted" "fainting"; -- from DictEng -lin faint_hearted_A = compoundA (mkA "faint - hearted"); -- from DictEng -lin faintheartedness_N = mkN "faintheartedness" ; -lin faintly_Adv = mkAdv "faintly" ; -lin faintness_N = mkN "faintness" ; -- from DictEng -lin fair_A = mkA "fair" "fairer"; -- from DictEng -lin fair_Adv = mkAdv "fair"; -- from DictEng -lin fair_N = mkN "fair" "fairs"; -- from DictEng -lin fair_and_square_A = compoundA (mkA "fair and square") ; -lin fair_minded_A = compoundA (mkA "fair - minded"); -- from DictEng -lin fair_minded_A = compoundA (mkA "fair - minded"); -- from DictEng -lin fairground_N = mkN "fairground" "fairgrounds"; -- from DictEng -lin fairish_A = compoundA (mkA "fairish"); -- from DictEng -lin fairlead_N = mkN "fairlead" ; -lin fairly_Adv = mkAdv "fairly" ; -lin fairness_N = mkN "fairness" ; -- from DictEng -lin fairway_N = mkN "fairway" "fairways"; -- from DictEng -lin fairy_N = mkN "fairy" "fairies"; -- from DictEng -lin fairyland_N = mkN "fairyland" "fairylands"; -- from DictEng -lin fairytale_N = mkN "fairytale" "fairytales"; -- from DictEng -lin fait_accompli_N = mkN "fait accompli" "IRREG"; -- from DictEng -lin faith_N = mkN "faith" "faiths"; -- from DictEng -lin faith_healing_N = mkN "faith - healing" ; -- from DictEng -lin faithful_A = compoundA (mkA "faithful"); -- from DictEng -lin faithful_N = mkN "faithful" ; -lin faithfully_Adv = mkAdv "faithfully" ; -lin faithfulness_N = mkN "faithfulness" ; -- from DictEng -lin faithless_A = compoundA (mkA "faithless"); -- from DictEng -lin faithlessly_Adv = mkAdv "faithlessly" ; -lin faithlessness_N = mkN "faithlessness" ; -- from DictEng -lin fake_A = mkA "fake" ; -lin fake_N = mkN "fake" "fakes"; -- from DictEng -lin fake_V2 = mkV2 (mkV "fake" "fakes" "faked" "faked" "faking"); -- from DictEng -lin fakery_N = mkN "fakery" ; -lin fakir_N = mkN "fakir" "fakirs"; -- from DictEng -lin falafel_N = mkN "falafel" ; -lin falangist_N = mkN "falangist" ; -lin falcate_A = mkA "falcate" ; -lin falchion_N = mkN "falchion" ; -lin falcon_N = mkN "falcon" "falcons"; -- from DictEng -lin falcon_gentle_N = mkN "falcon gentle" ; -lin falconer_N = mkN "falconer" ; -lin falconine_A = mkA "falconine" ; -lin falconry_N = mkN "falconry" ; -- from DictEng -lin fall_N = mkN "fall" "falls"; -- from DictEng -lin fall_V = IrregEng.fall_V; -- from DictEng -lin fall_V2 = mkV2 (IrregEng.fall_V); -- from DictEng -lin fall_VA = mkVA (IrregEng.fall_V); -- from DictEng -lin fall_VS = mkVS (IrregEng.fall_V); -- from DictEng -lin fallacious_A = compoundA (mkA "fallacious"); -- from DictEng -lin fallaciousness_N = mkN "fallaciousness" ; -lin fallacy_N = mkN "fallacy" "fallacies"; -- from DictEng -lin fallboard_N = mkN "fallboard" ; -lin fallen_A = mkA "fallen" ; -lin faller_N = mkN "faller" ; -lin fallibility_N = mkN "fallibility" ; -- from DictEng -lin fallible_A = compoundA (mkA "fallible"); -- from DictEng -lin falling_A = mkA "falling" ; -lin fallopian_A = compoundA (mkA "fallopian"); -- from DictEng -lin fallout_N = mkN "fallout" ; -- from DictEng -lin fallow_A = compoundA (mkA "fallow"); -- from DictEng -lin fallow_N = mkN "fallow" ; -- from DictEng -lin fallow_deer_N = mkN "fallow - deer" "fallow - deer"; -- from DictEng -lin falls_N = mkN "falls" ; -lin false_A = compoundA (mkA "false"); -- from DictEng -lin false_Adv = mkAdv "false"; -- from DictEng -lin falsehood_N = mkN "falsehood" "falsehoods"; -- from DictEng -lin falsely_Adv = mkAdv "falsely" ; -lin falseness_N = mkN "falseness" ; -- from DictEng -lin falsetto_A = compoundA (mkA "falsetto"); -- from DictEng -lin falsetto_N = mkN "falsetto" "falsettos"; -- from DictEng -lin falsie_N = mkN "falsie" ; -lin falsification_N = mkN "falsification" "falsifications"; -- from DictEng -lin falsifier_N = mkN "falsifier" ; -lin falsify_V2 = mkV2 (mkV "falsify" "falsifies" "falsified" "falsified" "falsifying"); -- from DictEng -lin falsity_N = mkN "falsity" "falsities"; -- from DictEng -lin falter_V = mkV "falter" "falters" "faltered" "faltered" "faltering"; -- from DictEng -lin falter_V2 = mkV2 (mkV "falter" "falters" "faltered" "faltered" "faltering"); -- from DictEng -lin faltering_A = mkA "faltering" ; -lin falteringly_Adv = mkAdv "falteringly"; -- from DictEng -lin fame_N = mkN "fame" ; -- from DictEng -lin fame_V2 = mkV2 (mkV "fame"); -- from DictEng -lin famed_A = compoundA (mkA "famed"); -- from DictEng -lin familial_A = mkA "familial" ; -lin familiar_A = compoundA (mkA "familiar"); -- from DictEng -lin familiar_N = mkN "familiar" "familiars"; -- from DictEng -lin familiarity_N = mkN "familiarity" "familiarities"; -- from DictEng -lin familiarization_N = mkN "familiarization" ; -lin familiarize_V2 = mkV2 (mkV "familiarize" "familiarizes" "familiarized" "familiarized" "familiarizing"); -- from DictEng -lin familiarizing_A = mkA "familiarizing" ; -lin familiarly_Adv = mkAdv "familiarly" ; -lin family_N = mkN "family" "families"; -- from DictEng -lin family_bible_PN = mkPN "family Bible" ; -lin famine_N = mkN "famine" "famines"; -- from DictEng -lin famish_V = mkV "famish" "famishes" "famished" "famished" "famishing"; -- from DictEng -lin famish_V2 = mkV2 (mkV "famish" "famishes" "famished" "famished" "famishing"); -- from DictEng -lin famished_A = mkA "famished" ; -lin famotidine_N = mkN "famotidine" ; -lin famous_A = compoundA (mkA "famous"); -- from DictEng -lin famously_Adv = mkAdv "famously" ; -lin famulus_N = mkN "famulus" ; -lin fan_N = mkN "fan" "fans"; -- from DictEng -lin fan_V = mkV "fan" "fans" "fanned" "fanned" "fanning"; -- from DictEng -lin fan_V2 = mkV2 (mkV "fan" "fans" "fanned" "fanned" "fanning"); -- from DictEng -lin fan_leaved_A = compoundA (mkA "fan leaved") ; -lin fan_shaped_A = compoundA (mkA "fan shaped") ; -lin fan_belt_N = mkN "fan - belt" "fan - belts"; -- from DictEng -lin fanaloka_N = mkN "fanaloka" ; -lin fanatic_A = compoundA (mkA "fanatic"); -- from DictEng -lin fanatic_N = mkN "fanatic" "fanatics"; -- from DictEng -lin fanatical_A = compoundA (mkA "fanatical"); -- from DictEng -lin fanatically_Adv = mkAdv "fanatically" ; -lin fanaticism_N = mkN "fanaticism" "fanaticisms"; -- from DictEng -lin fancier_N = mkN "fancier" "fanciers"; -- from DictEng -lin fanciful_A = compoundA (mkA "fanciful"); -- from DictEng -lin fancifully_Adv = mkAdv "fancifully" ; -lin fancy_A = mkA "fancy" "fancier"; -- from DictEng -lin fancy_N = mkN "fancy" "fancies"; -- from DictEng -lin fancy_V2 = mkV2 (mkV "fancy" "fancies" "fancied" "fancied" "fancying"); -- from DictEng -lin fancy_VS = mkVS (mkV "fancy"); -- from DictEng -lin fancy_free_A = compoundA (mkA "fancy - free"); -- from DictEng -lin fancy_free_A = compoundA (mkA "fancy - free"); -- from DictEng -lin fandango_N = mkN "fandango" "fandangos"; -- from DictEng -lin fandom_N = mkN "fandom" ; -lin fanfare_N = mkN "fanfare" "fanfares"; -- from DictEng -lin fang_N = mkN "fang" "fangs"; -- from DictEng -lin fang_like_A = compoundA (mkA "fang like") ; -lin fanged_A = mkA "fanged" ; -lin fanion_N = mkN "fanion" ; -lin fanjet_N = mkN "fanjet" ; -lin fanlight_N = mkN "fanlight" "fanlights"; -- from DictEng -lin fanlike_A = mkA "fanlike" ; -lin fanned_A = mkA "fanned" ; -lin fanny_N = mkN "fanny" "fannies"; -- from DictEng -lin fantail_N = mkN "fantail" ; -lin fantan_N = mkN "fantan" ; -- from DictEng -lin fantasia_N = mkN "fantasia" "fantasias"; -- from DictEng -lin fantasist_N = mkN "fantasist" ; -lin fantasize_V = mkV "fantasize"; -- from DictEng -lin fantast_N = mkN "fantast" ; -lin fantastic_A = compoundA (mkA "fantastic"); -- from DictEng -lin fantastically_Adv = mkAdv "fantastically"; -- from DictEng -lin fantasy_N = mkN "fantasy" "fantasies"; -- from DictEng -lin fantods_N = mkN "fantods" ; -lin fao_N = mkN "fao" ; -- from DictEng -lin far_A = irregAdv (compoundA (mkA "far")) "far"; -- from DictEng -lin far_Adv = mkAdv "far" ; -lin far_V2 = mkV2 (mkV "far"); -- from DictEng -lin far_flung_A = compoundA (mkA "far - flung"); -- from DictEng -lin far_out_A = compoundA (mkA "far out") ; -lin far_and_wide_Adv = mkAdv "far and wide" ; -lin far_famed_A = compoundA (mkA "far - famed"); -- from DictEng -lin far_fetched_A = compoundA (mkA "far - fetched"); -- from DictEng -lin far_flung_A = compoundA (mkA "far - flung"); -- from DictEng -lin far_left_A = compoundA (mkA "far left") ; -lin far_off_A = compoundA (mkA "far - off"); -- from DictEng -lin far_reaching_A = compoundA (mkA "far - reaching"); -- from DictEng -lin far_seeing_A = compoundA (mkA "far - seeing"); -- from DictEng -lin far_sighted_A = compoundA (mkA "far - sighted"); -- from DictEng -lin farad_N = mkN "farad" ; -lin farandole_N = mkN "farandole" ; -lin faraway_A = compoundA (mkA "faraway"); -- from DictEng -lin farce_N = mkN "farce" "farces"; -- from DictEng -lin farcical_A = compoundA (mkA "farcical"); -- from DictEng -lin farcically_Adv = mkAdv "farcically" ; -lin fardel_N = mkN "fardel" ; -lin fare_N = mkN "fare" "fares"; -- from DictEng -lin fare_V = mkV "fare" "fares" "fared" "fared" "faring"; -- from DictEng -lin fare_stage_N = mkN "fare - stage" "fare - stages"; -- from DictEng -lin fare_thee_well_N = mkN "fare thee well" ; -lin fare_stage_N = mkN "fare - stage" "fare - stages"; -- from DictEng -lin farewell_N = mkN "farewell" "farewells"; -- from DictEng -lin farfalle_N = mkN "farfalle" ; -lin farfetched_A = mkA "farfetched" ; -lin farina_N = mkN "farina" ; -lin farinaceous_A = compoundA (mkA "farinaceous"); -- from DictEng -lin farkleberry_N = mkN "farkleberry" ; -lin farm_N = mkN "farm" "farms"; -- from DictEng -lin farm_V = mkV "farm" "farms" "farmed" "farmed" "farming"; -- from DictEng -lin farm_V2 = mkV2 (mkV "farm" "farms" "farmed" "farmed" "farming"); -- from DictEng -lin farmer_N = mkN "farmer" "farmers"; -- from DictEng -lin farmerette_N = mkN "farmerette" ; -lin farmhand_N = mkN "farmhand" "farmhands"; -- from DictEng -lin farmhouse_N = mkN "farmhouse" "farmhouses"; -- from DictEng -lin farming_N = mkN "farming" ; -lin farmland_N = mkN "farmland" ; -lin farmplace_N = mkN "farmplace" ; -lin farmstead_N = mkN "farmstead" "farmsteads"; -- from DictEng -lin farmyard_N = mkN "farmyard" "farmyards"; -- from DictEng -lin farness_N = mkN "farness" ; -lin faro_N = mkN "faro" ; -lin farrago_N = mkN "farrago" "farragos"; -- from DictEng -lin farrier_N = mkN "farrier" "farriers"; -- from DictEng -lin farrow_N = mkN "farrow" "farrows"; -- from DictEng -lin farrow_V = mkV "farrow" "farrows" "farrowed" "farrowed" "farrowing"; -- from DictEng -lin farseeing_A = mkA "farseeing" ; -lin farsi_N = mkN "farsi" ; -- from DictEng -lin farsighted_A = mkA "farsighted" ; -lin fart_N = mkN "fart" "farts"; -- from DictEng -lin fart_V = mkV "fart" "farts" "farted" "farted" "farting"; -- from DictEng -lin farther_A = mkA "farther" ; -lin farther_Adv = mkAdv "farther"; -- from DictEng -lin farthermost_A = mkA "farthermost" ; -lin farthest_Adv = mkAdv "farthest"; -- from DictEng -lin farthing_N = mkN "farthing" "farthings"; -- from DictEng -lin farthingale_N = mkN "farthingale" ; -lin fartlek_N = mkN "fartlek" ; -lin fasces_N = mkN "fasces" ; -lin fascia_N = mkN "fascia" "fascias"; -- from DictEng -lin fascicle_N = mkN "fascicle" ; -lin fasciculation_N = mkN "fasciculation" ; -lin fascinate_V2 = mkV2 (mkV "fascinate" "fascinates" "fascinated" "fascinated" "fascinating"); -- from DictEng -lin fascinated_A = mkA "fascinated" ; -lin fascinating_A = compoundA (mkA "fascinating"); -- from DictEng -lin fascinatingly_Adv = mkAdv "fascinatingly" ; -lin fascination_N = mkN "fascination" "fascinations"; -- from DictEng -lin fascioliasis_N = mkN "fascioliasis" ; -lin fasciolopsiasis_N = mkN "fasciolopsiasis" ; -lin fascism_N = mkN "fascism" ; -- from DictEng -lin fascist_A = compoundA (mkA "fascist"); -- from DictEng -lin fascist_N = mkN "fascist" "fascists"; -- from DictEng -lin fascista_N = mkN "fascista" ; -lin fashion_N = mkN "fashion" "fashions"; -- from DictEng -lin fashion_V = mkV "fashion" ; -lin fashion_V2 = mkV2 (mkV "fashion" "fashions" "fashioned" "fashioned" "fashioning"); -- from DictEng -lin fashionable_A = compoundA (mkA "fashionable"); -- from DictEng -lin fashionably_Adv = mkAdv "fashionably" ; -lin fashioned_A = mkA "fashioned" ; -lin fast_A = mkA "fast" "faster"; -- from DictEng -lin fast_Adv = mkAdv "fast"; -- from DictEng -lin fast_N = mkN "fast" "fasts"; -- from DictEng -lin fast_V = mkV "fast" "fasts" "fasted" "fasted" "fasting"; -- from DictEng -lin fast_breaking_A = compoundA (mkA "fast breaking") ; -lin fast_flying_A = compoundA (mkA "fast flying") ; -lin fast_paced_A = compoundA (mkA "fast paced") ; -lin fast_asleep_A = compoundA (mkA "fast asleep") ; -lin fastball_N = mkN "fastball" ; -lin fasten_V = mkV "fasten" "fastens" "fastened" "fastened" "fastening"; -- from DictEng -lin fasten_V2 = mkV2 (mkV "fasten" "fastens" "fastened" "fastened" "fastening"); -- from DictEng -lin fastened_A = mkA "fastened" ; -lin fastener_N = mkN "fastener" "fasteners"; -- from DictEng -lin fastening_N = mkN "fastening" "fastenings"; -- from DictEng -lin fastidious_A = compoundA (mkA "fastidious"); -- from DictEng -lin fastidiously_Adv = mkAdv "fastidiously" ; -lin fastidiousness_N = mkN "fastidiousness" ; -- from DictEng -lin fastigiate_A = mkA "fastigiate" ; -lin fastnacht_N = mkN "fastnacht" ; -lin fastness_N = mkN "fastness" "fastnesses"; -- from DictEng -lin fat_A = mkA "fat" "fatter"; -- from DictEng -lin fat_N = mkN "fat" "fats"; -- from DictEng -lin fat_V2 = mkV2 (mkV "fat" "fats" "fatted" "fatted" "fatting"); -- from DictEng -lin fat_soluble_A = compoundA (mkA "fat soluble") ; -lin fatal_A = compoundA (mkA "fatal"); -- from DictEng -lin fatalism_N = mkN "fatalism" ; -- from DictEng -lin fatalist_A = mkA "fatalist" ; -lin fatalist_N = mkN "fatalist" "fatalists"; -- from DictEng -lin fatalistic_A = compoundA (mkA "fatalistic"); -- from DictEng -lin fatality_N = mkN "fatality" "fatalities"; -- from DictEng -lin fatally_Adv = mkAdv "fatally" ; -lin fatback_N = mkN "fatback" ; -lin fate_N = mkN "fate" "fates"; -- from DictEng -lin fate_V2 = mkV2 (mkV "fate" "fates" "fated" "fated" "fating"); -- from DictEng -lin fateful_A = compoundA (mkA "fateful"); -- from DictEng -lin fatefully_Adv = mkAdv "fatefully" ; -lin fathead_N = mkN "fathead" "fatheads"; -- from DictEng -lin father_N = mkN "father" "fathers"; -- from DictEng -lin father_V2 = mkV2 (mkV "father" "fathers" "fathered" "fathered" "fathering"); -- from DictEng -lin father_figure_N = mkN "father figure" ; -lin father_in_law_N = mkN "father - in - law" "fathers - in - law"; -- from DictEng -lin father_in_law_N = mkN "father - in - law" "fathers - in - law"; -- from DictEng -lin fatherhood_N = mkN "fatherhood" ; -- from DictEng -lin fatherland_N = mkN "fatherland" "fatherlands"; -- from DictEng -lin fatherless_A = compoundA (mkA "fatherless"); -- from DictEng -lin fatherliness_N = mkN "fatherliness" ; -lin fatherly_A = compoundA (mkA "fatherly"); -- from DictEng -lin fathom_N = mkN "fathom" "fathoms"; -- from DictEng -lin fathom_V2 = mkV2 (mkV "fathom" "fathoms" "fathomed" "fathomed" "fathoming"); -- from DictEng -lin fathomable_A = mkA "fathomable" ; -lin fathomless_A = compoundA (mkA "fathomless"); -- from DictEng -lin fatigability_N = mkN "fatigability" ; -lin fatigue_N = mkN "fatigue" "fatigues"; -- from DictEng -lin fatigue_V2 = mkV2 (mkV "fatigue" "fatigues" "fatigued" "fatigued" "fatiguing"); -- from DictEng -lin fatigue_party_N = mkN "fatigue - party" "fatigue - parties"; -- from DictEng -lin fatigues_N = mkN "fatigues" ; -lin fatless_A = compoundA (mkA "fatless"); -- from DictEng -lin fatness_N = mkN "fatness" ; -- from DictEng -lin fatso_N = mkN "fatso" ; -lin fatten_V = mkV "fatten" "fattens" "fattened" "fattened" "fattening"; -- from DictEng -lin fatten_V2 = mkV2 (mkV "fatten" "fattens" "fattened" "fattened" "fattening"); -- from DictEng -lin fattened_A = mkA "fattened" ; -lin fattening_A = mkA "fattening" ; -lin fattish_A = compoundA (mkA "fattish"); -- from DictEng -lin fattism_N = mkN "fattism" ; -lin fatty_A = mkA "fatty" "fattier"; -- from DictEng -lin fatuity_N = mkN "fatuity" "fatuities"; -- from DictEng -lin fatuous_A = compoundA (mkA "fatuous"); -- from DictEng -lin fatuously_Adv = mkAdv "fatuously" ; -lin fatuousness_N = mkN "fatuousness" ; -- from DictEng -lin fatwa_N = mkN "fatwa" ; -lin fatwah_N = mkN "fatwah" ; -lin faubourg_N = mkN "faubourg" ; -lin faucal_A = mkA "faucal" ; -lin fauces_N = mkN "fauces" ; -lin faucet_N = mkN "faucet" "faucets"; -- from DictEng -lin fauld_N = mkN "fauld" ; -lin fault_N = mkN "fault" "faults"; -- from DictEng -lin fault_V2 = mkV2 (mkV "fault" "faults" "faulted" "faulted" "faulting"); -- from DictEng -lin fault_finder_N = mkN "fault - finder" "fault - finders"; -- from DictEng -lin fault_finding_N = mkN "fault - finding" ; -- from DictEng -lin faultfinding_A = mkA "faultfinding" ; -lin faultfinding_N = mkN "faultfinding" ; -lin faultily_Adv = mkAdv "faultily"; -- from DictEng -lin faultless_A = compoundA (mkA "faultless"); -- from DictEng -lin faultlessly_Adv = mkAdv "faultlessly" ; -lin faultlessness_N = mkN "faultlessness" ; -lin faulty_A = mkA "faulty" "faultier"; -- from DictEng -lin faun_N = mkN "faun" "fauns"; -- from DictEng -lin fauna_N = mkN "fauna" ; -lin fauteuil_N = mkN "fauteuil" ; -lin fauvism_N = mkN "fauvism" ; -lin faux_pas_N = mkN "faux pas" "faux pas"; -- from DictEng -lin favism_N = mkN "favism" ; -lin favor_N = mkN "favor" ; -lin favor_V = mkV "favor"; -- from DictEng -lin favor_V2 = mkV2 (mkV "favor" "favored"); -- from DictEng -lin favor_VS = mkVS (mkV "favor" "favored"); -- from DictEng -lin favorable_A = mkA "favorable" ; -lin favorableness_N = mkN "favorableness" ; -lin favorably_Adv = mkAdv "favorably" ; -lin favored_A = mkA "favored" ; -lin favorite_A = mkA "favorite" ; -lin favorite_N = mkN "favorite" ; -lin favoritism_N = mkN "favoritism" ; -lin favour_N = mkN "favour" "favours"; -- from DictEng -lin favour_V2 = mkV2 (mkV "favour" "favours" "favoured" "favoured" "favouring"); -- from DictEng -lin favourable_A = compoundA (mkA "favourable"); -- from DictEng -lin favourite_A = compoundA (mkA "favourite"); -- from DictEng -lin favourite_N = mkN "favourite" "favourites"; -- from DictEng -lin favouritism_N = mkN "favouritism" ; -- from DictEng -lin favus_N = mkN "favus" ; -lin fawn_N = mkN "fawn" "fawns"; -- from DictEng -lin fawn_V = mkV "fawn" "fawns" "fawned" "fawned" "fawning"; -- from DictEng -lin fawn_colored_A = compoundA (mkA "fawn colored") ; -lin fax_V2 = mkV2 (mkV "fax") ; -lin faze_V2 = mkV2 (mkV "faze") ; -lin fealty_N = mkN "fealty" "fealties"; -- from DictEng -lin fear_N = mkN "fear" "fears"; -- from DictEng -lin fear_V = mkV "fear" "fears" "feared" "feared" "fearing"; -- from DictEng -lin fear_V2 = mkV2 (mkV "fear" "fears" "feared" "feared" "fearing"); -- from DictEng -lin fear_VS = mkVS (mkV "fear" "fears" "feared" "feared" "fearing"); -- from DictEng -lin fearful_A = compoundA (mkA "fearful"); -- from DictEng -lin fearfully_Adv = mkAdv "fearfully" ; -lin fearfulness_N = mkN "fearfulness" ; -- from DictEng -lin fearless_A = compoundA (mkA "fearless"); -- from DictEng -lin fearlessly_Adv = mkAdv "fearlessly" ; -lin fearlessness_N = mkN "fearlessness" ; -- from DictEng -lin fearsome_A = compoundA (mkA "fearsome"); -- from DictEng -lin fearsomely_Adv = mkAdv "fearsomely" ; -lin feasibility_N = mkN "feasibility" ; -- from DictEng -lin feasible_A = compoundA (mkA "feasible"); -- from DictEng -lin feast_N = mkN "feast" "feasts"; -- from DictEng -lin feast_V = mkV "feast" "feasts" "feasted" "feasted" "feasting"; -- from DictEng -lin feast_V2 = mkV2 (mkV "feast" "feasts" "feasted" "feasted" "feasting"); -- from DictEng -lin feast_day_N = mkN "feast - day" "feast - days"; -- from DictEng -lin feasting_N = mkN "feasting" ; -lin feat_N = mkN "feat" "feats"; -- from DictEng -lin feather_N = mkN "feather" "feathers"; -- from DictEng -lin feather_V2 = mkV2 (mkV "feather" "feathers" "feathered" "feathered" "feathering"); -- from DictEng -lin feather_boa_N = mkN "feather - boa" "feather - boas"; -- from DictEng -lin featherbed_N = mkN "featherbed" "featherbeds"; -- from DictEng -lin featherbed_V2 = mkV2 (mkV "featherbed" "featherbeds" "featherbedded" "featherbedded" "featherbedding"); -- from DictEng -lin featherbedding_N = mkN "featherbedding" ; -lin featherbrained_A = compoundA (mkA "featherbrained"); -- from DictEng -lin feathered_A = mkA "feathered" ; -lin featheredge_N = mkN "featheredge" ; -lin featherfoil_N = mkN "featherfoil" ; -lin featherlike_A = mkA "featherlike" ; -lin feathertop_N = mkN "feathertop" ; -lin featherweight_N = mkN "featherweight" "featherweights"; -- from DictEng -lin feathery_A = compoundA (mkA "feathery"); -- from DictEng -lin feature_N = mkN "feature" "features"; -- from DictEng -lin feature_V2 = mkV2 (mkV "feature" "features" "featured" "featured" "featuring"); -- from DictEng -lin featured_A = mkA "featured" ; -lin featureless_A = compoundA (mkA "featureless"); -- from DictEng -lin febrile_A = compoundA (mkA "febrile"); -- from DictEng -lin february_N = mkN "february" "februaries"; -- from DictEng -lin feckless_A = compoundA (mkA "feckless"); -- from DictEng -lin fecklessly_Adv = mkAdv "fecklessly" ; -lin fecklessness_N = mkN "fecklessness" ; -- from DictEng -lin fecula_N = mkN "fecula" ; -lin feculence_N = mkN "feculence" ; -lin feculent_A = mkA "feculent" ; -lin fecund_A = compoundA (mkA "fecund"); -- from DictEng -lin fecundity_N = mkN "fecundity" ; -- from DictEng -lin fed_N = mkN "fed" ; -- from DictEng -lin fedayeen_N = mkN "fedayeen" ; -lin fedelline_N = mkN "fedelline" ; -lin federal_A = compoundA (mkA "federal"); -- from DictEng -lin federalism_N = mkN "federalism" ; -- from DictEng -lin federalist_N = mkN "federalist" "federalists"; -- from DictEng -lin federalization_N = mkN "federalization" ; -lin federally_Adv = mkAdv "federally" ; -lin federate_A = mkA "federate" ; -lin federate_V = mkV "federate" "federates" "federated" "federated" "federating"; -- from DictEng -lin federate_V2 = mkV2 (mkV "federate" "federates" "federated" "federated" "federating"); -- from DictEng -lin federation_N = mkN "federation" "federations"; -- from DictEng -lin fedora_N = mkN "fedora" ; -lin fee_N = mkN "fee" "fees"; -- from DictEng -lin fee_V2 = mkV2 (mkV "fee" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin feeble_A = mkA "feeble" "feebler"; -- from DictEng -lin feeble_minded_A = compoundA (mkA "feeble - minded"); -- from DictEng -lin feeblemindedness_N = mkN "feeblemindedness" ; -lin feebleness_N = mkN "feebleness" ; -- from DictEng -lin feebly_Adv = mkAdv "feebly"; -- from DictEng -lin feed_N = mkN "feed" "feeds"; -- from DictEng -lin feed_V = IrregEng.feed_V; -- from DictEng -lin feed_V2 = mkV2 (IrregEng.feed_V); -- from DictEng -lin feedback_N = mkN "feedback" ; -- from DictEng -lin feeder_N = mkN "feeder" "feeders"; -- from DictEng -lin feeding_N = mkN "feeding" ; -lin feeding_bottle_N = mkN "feeding - bottle" "feeding - bottles"; -- from DictEng -lin feedlot_N = mkN "feedlot" ; -lin feedstock_N = mkN "feedstock" ; -lin feel_N = mkN "feel" "feels"; -- from DictEng -lin feel_V = IrregEng.feel_V; -- from DictEng -lin feel_V2 = mkV2 (IrregEng.feel_V); -- from DictEng -lin feel_VA = mkVA (IrregEng.feel_V); -- from DictEng -lin feel_VS = mkVS (IrregEng.feel_V); -- from DictEng -lin feeler_N = mkN "feeler" "feelers"; -- from DictEng -lin feeling_A = compoundA (mkA "feeling"); -- from DictEng -lin feeling_N = mkN "feeling" "feelings"; -- from DictEng -lin feelingly_Adv = mkAdv "feelingly" ; -lin feelings_N = mkN "feelings" ; -lin feetfirst_Adv = mkAdv "feetfirst" ; -lin feign_V2 = mkV2 (mkV "feign" "feigns" "feigned" "feigned" "feigning"); -- from DictEng -lin feigned_A = mkA "feigned" ; -lin feijoa_N = mkN "feijoa" ; -lin feint_N = mkN "feint" "feints"; -- from DictEng -lin feint_V = mkV "feint" "feints" "feinted" "feinted" "feinting"; -- from DictEng -lin feist_N = mkN "feist" ; -lin feisty_A = mkA "feisty" ; -lin feldspar_N = mkN "feldspar" ; -- from DictEng -lin felicitate_V2 = mkV2 (mkV "felicitate" "felicitates" "felicitated" "felicitated" "felicitating"); -- from DictEng -lin felicitation_N = mkN "felicitation" "felicitations"; -- from DictEng -lin felicitous_A = compoundA (mkA "felicitous"); -- from DictEng -lin felicitously_Adv = mkAdv "felicitously" ; -lin felicity_N = mkN "felicity" "felicities"; -- from DictEng -lin feline_A = compoundA (mkA "feline"); -- from DictEng -lin feline_N = mkN "feline" ; -lin fell_A = compoundA (mkA "fell"); -- from DictEng -lin fell_N = mkN "fell" ; -lin fell_V2 = mkV2 (mkV "fell" "fells" "felled" "felled" "felling"); -- from DictEng -lin fell_V2V = mkV2V (mkV "fell") noPrep to_Prep ; -- from DictEng -lin fell_VA = mkVA (mkV "fell"); -- from DictEng -lin fell_VS = mkVS (mkV "fell"); -- from DictEng -lin fellah_N = mkN "fellah" (variants {"fellahin"; "fellaheen"}); -- from DictEng -lin fellatio_N = mkN "fellatio" ; -lin felloe_N = mkN "felloe" ; -lin fellow_N = mkN "fellow" "fellows"; -- from DictEng -lin fellow_feeling_N = mkN "fellow - feeling" ; -- from DictEng -lin fellow_traveller_N = mkN "fellow - traveller" "fellow - travellers"; -- from DictEng -lin fellowship_N = mkN "fellowship" "fellowships"; -- from DictEng -lin felo_de_se_N = mkN "felo de se" ; -lin felon_N = mkN "felon" "felons"; -- from DictEng -lin felonious_A = compoundA (mkA "felonious"); -- from DictEng -lin felony_N = mkN "felony" "felonies"; -- from DictEng -lin felspar_N = mkN "felspar" ; -- from DictEng -lin felt_N = mkN "felt" ; -- from DictEng -lin felted_A = mkA "felted" ; -lin felucca_N = mkN "felucca" "feluccas"; -- from DictEng -lin felwort_N = mkN "felwort" ; -lin female_A = compoundA (mkA "female"); -- from DictEng -lin female_N = mkN "female" "females"; -- from DictEng -lin femaleness_N = mkN "femaleness" ; -lin feminine_A = compoundA (mkA "feminine"); -- from DictEng -lin feminine_N = mkN "feminine" ; -lin femininity_N = mkN "femininity" ; -- from DictEng -lin feminism_N = mkN "feminism" ; -- from DictEng -lin feminist_A = mkA "feminist" ; -lin feminist_N = mkN "feminist" "feminists"; -- from DictEng -lin feminization_N = mkN "feminization" ; -lin femoral_A = mkA "femoral" ; -lin femtochemistry_N = mkN "femtochemistry" ; -lin femtometer_N = mkN "femtometer" ; -lin femtosecond_N = mkN "femtosecond" ; -lin femtovolt_N = mkN "femtovolt" ; -lin femur_N = mkN "femur" "femurs"; -- from DictEng -lin fen_N = mkN "fen" "fens"; -- from DictEng -lin fence_N = mkN "fence" "fences"; -- from DictEng -lin fence_V2 = mkV2 (mkV "fence" "fences" "fenced" "fenced" "fencing"); -- from DictEng -lin fence_sitter_N = mkN "fence sitter" ; -lin fencelike_A = mkA "fencelike" ; -lin fencer_N = mkN "fencer" "fencers"; -- from DictEng -lin fencing_N = mkN "fencing" ; -- from DictEng -lin fend_V = mkV "fend" "fends" "fended" "fended" "fending"; -- from DictEng -lin fend_V2 = mkV2 (mkV "fend" "fends" "fended" "fended" "fending"); -- from DictEng -lin fender_N = mkN "fender" "fenders"; -- from DictEng -lin fender_bender_N = mkN "fender bender" ; -lin fenestra_N = mkN "fenestra" ; -lin fenestral_A = mkA "fenestral" ; -lin fenestration_N = mkN "fenestration" ; -lin fennel_N = mkN "fennel" ; -- from DictEng -lin fenoprofen_N = mkN "fenoprofen" ; -lin fenugreek_N = mkN "fenugreek" ; -lin feoff_N = mkN "feoff" "feoffs"; -- from DictEng -lin fer_de_lance_N = mkN "fer de lance" ; -lin feral_A = compoundA (mkA "feral"); -- from DictEng -lin fergusonite_N = mkN "fergusonite" ; -lin feria_N = mkN "feria" ; -lin ferial_A = mkA "ferial" ; -lin fermata_N = mkN "fermata" ; -lin ferment_N = mkN "ferment" "ferments"; -- from DictEng -lin ferment_V = mkV "ferment" "ferments" "fermented" "fermented" "fermenting"; -- from DictEng -lin ferment_V2 = mkV2 (mkV "ferment" "ferments" "fermented" "fermented" "fermenting"); -- from DictEng -lin fermentable_A = mkA "fermentable" ; -lin fermentation_N = mkN "fermentation" ; -- from DictEng -lin fermion_N = mkN "fermion" ; -lin fermium_N = mkN "fermium" ; -lin fern_N = mkN "fern" "ferns"; -- from DictEng -lin ferned_A = mkA "ferned" ; -lin fernless_A = mkA "fernless" ; -lin fernlike_A = mkA "fernlike" ; -lin ferny_A = mkA "ferny" "fernier"; -- from DictEng -lin ferocious_A = compoundA (mkA "ferocious"); -- from DictEng -lin ferociously_Adv = mkAdv "ferociously" ; -lin ferociousness_N = mkN "ferociousness" ; -lin ferocity_N = mkN "ferocity" "ferocities"; -- from DictEng -lin ferret_N = mkN "ferret" "ferrets"; -- from DictEng -lin ferret_V = mkV "ferret" "ferrets" "ferreted" "ferreted" "ferreting"; -- from DictEng -lin ferret_V2 = mkV2 (mkV "ferret" "ferrets" "ferreted" "ferreted" "ferreting"); -- from DictEng -lin ferret_sized_A = compoundA (mkA "ferret sized") ; -lin ferric_A = mkA "ferric" ; -lin ferricyanide_N = mkN "ferricyanide" ; -lin ferrimagnetism_N = mkN "ferrimagnetism" ; -lin ferrite_N = mkN "ferrite" ; -lin ferritin_N = mkN "ferritin" ; -lin ferrocerium_N = mkN "ferrocerium" ; -lin ferroconcrete_N = mkN "ferroconcrete" ; -- from DictEng -lin ferrocyanide_N = mkN "ferrocyanide" ; -lin ferromagnetic_A = mkA "ferromagnetic" ; -lin ferromagnetism_N = mkN "ferromagnetism" ; -lin ferrous_A = compoundA (mkA "ferrous"); -- from DictEng -lin ferrule_N = mkN "ferrule" "ferrules"; -- from DictEng -lin ferry_N = mkN "ferry" "ferries"; -- from DictEng -lin ferry_V = mkV "ferry" "ferries" "ferried" "ferried" "ferrying"; -- from DictEng -lin ferry_V2 = mkV2 (mkV "ferry" "ferries" "ferried" "ferried" "ferrying"); -- from DictEng -lin ferryboat_N = mkN "ferryboat" "ferryboats"; -- from DictEng -lin ferryman_N = mkN "ferryman" "ferrymen" {- FIXME: guessed plural form -}; -- from DictEng -lin fertile_A = compoundA (mkA "fertile"); -- from DictEng -lin fertility_N = mkN "fertility" ; -- from DictEng -lin fertilizable_A = mkA "fertilizable" ; -lin fertilization_N = mkN "fertilization" ; -- from DictEng -lin fertilize_V2 = mkV2 (mkV "fertilize" "fertilizes" "fertilized" "fertilized" "fertilizing"); -- from DictEng -lin fertilizer_N = mkN "fertilizer" "fertilizers"; -- from DictEng -lin ferule_N = mkN "ferule" "ferules"; -- from DictEng -lin fervency_N = mkN "fervency" ; -- from DictEng -lin fervent_A = compoundA (mkA "fervent"); -- from DictEng -lin fervid_A = compoundA (mkA "fervid"); -- from DictEng -lin fervour_N = mkN "fervour" ; -- from DictEng -lin fescue_N = mkN "fescue" ; -lin fesse_N = mkN "fesse" ; -lin festal_A = compoundA (mkA "festal"); -- from DictEng -lin fester_N = mkN "fester" ; -lin fester_V = mkV "fester" "festers" "festered" "festered" "festering"; -- from DictEng -lin festering_N = mkN "festering" ; -lin festination_N = mkN "festination" ; -lin festival_N = mkN "festival" "festivals"; -- from DictEng -lin festive_A = compoundA (mkA "festive"); -- from DictEng -lin festivity_N = mkN "festivity" "festivities"; -- from DictEng -lin festoon_N = mkN "festoon" "festoons"; -- from DictEng -lin festoon_V2 = mkV2 (mkV "festoon" "festoons" "festooned" "festooned" "festooning"); -- from DictEng -lin festschrift_N = mkN "festschrift" ; -lin fetal_A = compoundA (mkA "fetal"); -- from DictEng -lin fetch_N = mkN "fetch" ; -lin fetch_V = mkV "fetch" "fetches" "fetched" "fetched" "fetching"; -- from DictEng -lin fetch_V2 = mkV2 (mkV "fetch" "fetches" "fetched" "fetched" "fetching"); -- from DictEng -lin fetching_A = compoundA (mkA "fetching"); -- from DictEng -lin fete_N = mkN "fête" "fêtes"; -- from DictEng -lin fete_V2 = mkV2 (mkV "fête" "fêtes" "fêted" "fêted" "fêting"); -- from DictEng -lin fete_day_N = mkN "fete - day" "fete - days"; -- from DictEng -lin feterita_N = mkN "feterita" ; -lin fetid_A = compoundA (mkA "fetid"); -- from DictEng -lin fetish_N = mkN "fetish" "fetishes"; -- from DictEng -lin fetishism_N = mkN "fetishism" ; -lin fetishist_N = mkN "fetishist" ; -lin fetlock_N = mkN "fetlock" "fetlocks"; -- from DictEng -lin fetology_N = mkN "fetology" ; -lin fetometry_N = mkN "fetometry" ; -lin fetoprotein_N = mkN "fetoprotein" ; -lin fetoscope_N = mkN "fetoscope" ; -lin fetoscopy_N = mkN "fetoscopy" ; -lin fetter_N = mkN "fetter" "fetters"; -- from DictEng -lin fetter_V2 = mkV2 (mkV "fetter" "fetters" "fettered" "fettered" "fettering"); -- from DictEng -lin fetterbush_N = mkN "fetterbush" ; -lin fettered_A = mkA "fettered" ; -lin fettle_N = mkN "fettle" ; -- from DictEng -lin fettuccine_N = mkN "fettuccine" ; -lin fettuccine_alfredo_PN = mkPN "fettuccine Alfredo" ; -lin fetus_N = mkN "fetus" ; -lin feud_N = mkN "feud" "feuds"; -- from DictEng -lin feudal_A = compoundA (mkA "feudal"); -- from DictEng -lin feudalism_N = mkN "feudalism" ; -- from DictEng -lin feudally_Adv = mkAdv "feudally" ; -lin feudatory_A = compoundA (mkA "feudatory"); -- from DictEng -lin feudatory_N = mkN "feudatory" "feudatories"; -- from DictEng -lin feude_V = mkV "feude"; -- from DictEng -lin fever_N = mkN "fever" "fevers"; -- from DictEng -lin fevered_A = compoundA (mkA "fevered"); -- from DictEng -lin feverfew_N = mkN "feverfew" ; -lin feverish_A = compoundA (mkA "feverish"); -- from DictEng -lin feverishly_Adv = mkAdv "feverishly" ; -lin feverroot_N = mkN "feverroot" ; -lin few_A = mkA "few" ; -lin few_N = mkN "few" ; -lin few_Num = {s = table {Nom => "few"; Gen => "few's"}; n = Pl; hasCard = True} ; -- from DictEng -lin fewer_A = mkA "fewer" ; -lin fewest_A = mkA "fewest" ; -lin fewness_N = mkN "fewness" ; -- from DictEng -lin fey_A = compoundA (mkA "fey"); -- from DictEng -lin fez_N = mkN "fez" "fezes"; -- from DictEng -lin fiance_N = mkN "fiancé" "fiancés"; -- from DictEng -lin fiancee_N = mkN "fiancée" "fiancées"; -- from DictEng -lin fiasco_N = mkN "fiasco" "fiascos"; -- from DictEng -lin fiat_N = mkN "fiat" "fiats"; -- from DictEng -lin fib_N = mkN "fib" "fibs"; -- from DictEng -lin fib_V = mkV "fib" "fibs" "fibbed" "fibbed" "fibbing"; -- from DictEng -lin fibber_N = mkN "fibber" "fibbers"; -- from DictEng -lin fibbing_N = mkN "fibbing" ; -- from DictEng -lin fiber_N = mkN "fiber" ; -lin fiber_optic_A = compoundA (mkA "fiber optic") ; -lin fiberboard_N = mkN "fiberboard" ; -lin fiberglass_N = mkN "fiberglass" ; -lin fiberscope_N = mkN "fiberscope" ; -lin fibre_N = mkN "fibre" "fibres"; -- from DictEng -lin fibreboard_N = mkN "fibreboard" ; -- from DictEng -lin fibreglass_N = mkN "fibreglass" ; -- from DictEng -lin fibril_N = mkN "fibril" ; -lin fibrillation_N = mkN "fibrillation" ; -lin fibrillose_A = mkA "fibrillose" ; -lin fibrin_N = mkN "fibrin" ; -lin fibrinase_N = mkN "fibrinase" ; -lin fibrinogen_N = mkN "fibrinogen" ; -lin fibrinolysis_N = mkN "fibrinolysis" ; -lin fibrinopeptide_N = mkN "fibrinopeptide" ; -lin fibrinous_A = mkA "fibrinous" ; -lin fibroadenoma_N = mkN "fibroadenoma" ; -lin fibroblast_N = mkN "fibroblast" ; -lin fibrocalcific_A = mkA "fibrocalcific" ; -lin fibrocartilage_N = mkN "fibrocartilage" ; -lin fibrocartilaginous_A = mkA "fibrocartilaginous" ; -lin fibroma_N = mkN "fibroma" ; -lin fibromyositis_N = mkN "fibromyositis" ; -lin fibrosis_N = mkN "fibrosis" ; -lin fibrositis_N = mkN "fibrositis" ; -- from DictEng -lin fibrosity_N = mkN "fibrosity" ; -lin fibrous_A = compoundA (mkA "fibrous"); -- from DictEng -lin fibula_N = mkN "fibula" "fibulas"; -- from DictEng -lin fichu_N = mkN "fichu" ; -lin fickle_A = compoundA (mkA "fickle"); -- from DictEng -lin fickleness_N = mkN "fickleness" ; -- from DictEng -lin fictile_A = mkA "fictile" ; -lin fiction_N = mkN "fiction" "fictions"; -- from DictEng -lin fictional_A = compoundA (mkA "fictional"); -- from DictEng -lin fictionalization_N = mkN "fictionalization" ; -lin fictitious_A = compoundA (mkA "fictitious"); -- from DictEng -lin fictitiously_Adv = mkAdv "fictitiously" ; -lin fictive_A = mkA "fictive" ; -lin fiddle_N = mkN "fiddle" "fiddles"; -- from DictEng -lin fiddle_V2 = mkV2 (mkV "fiddle" "fiddles" "fiddled" "fiddled" "fiddling"); -- from DictEng -lin fiddleneck_N = mkN "fiddleneck" ; -lin fiddler_N = mkN "fiddler" "fiddlers"; -- from DictEng -lin fiddlestick_N = mkN "fiddlestick" "fiddlesticks"; -- from DictEng -lin fiddling_A = compoundA (mkA "fiddling"); -- from DictEng -lin fidelity_N = mkN "fidelity" ; -- from DictEng -lin fidget_N = mkN "fidget" "fidgets"; -- from DictEng -lin fidget_V = mkV "fidget" "fidgets" "fidgeted" "fidgeted" "fidgeting"; -- from DictEng -lin fidget_V2 = mkV2 (mkV "fidget" "fidgets" "fidgeted" "fidgeted" "fidgeting"); -- from DictEng -lin fidgety_A = compoundA (mkA "fidgety"); -- from DictEng -lin fiducial_A = mkA "fiducial" ; -lin fiduciary_A = mkA "fiduciary" ; -lin fiduciary_N = mkN "fiduciary" ; -lin fief_N = mkN "fief" "fiefs"; -- from DictEng -lin fiefdom_N = mkN "fiefdom" ; -lin field_N = mkN "field" "fields"; -- from DictEng -lin field_V = mkV "field" "fields" "fielded" "fielded" "fielding"; -- from DictEng -lin field_V2 = mkV2 (mkV "field" "fields" "fielded" "fielded" "fielding"); -- from DictEng -lin field_crop_A = compoundA (mkA "field crop") ; -lin field_hospital_N = mkN "field - hospital" "field - hospitals"; -- from DictEng -lin field_officer_N = mkN "field - officer" "field - officers"; -- from DictEng -lin fielder_N = mkN "fielder" "fielders"; -- from DictEng -lin fieldfare_N = mkN "fieldfare" ; -lin fielding_N = mkN "fielding" ; -lin fieldsman_N = mkN "fieldsman" "fieldsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin fieldstone_N = mkN "fieldstone" ; -lin fieldwork_N = mkN "fieldwork" "fieldworks"; -- from DictEng -lin fieldworker_N = mkN "fieldworker" ; -lin fiend_N = mkN "fiend" "fiends"; -- from DictEng -lin fiendish_A = compoundA (mkA "fiendish"); -- from DictEng -lin fierce_A = mkA "fierce" "fiercer"; -- from DictEng -lin fiercely_Adv = mkAdv "fiercely" ; -lin fierceness_N = mkN "fierceness" ; -- from DictEng -lin fierily_Adv = mkAdv "fierily" ; -lin fieriness_N = mkN "fieriness" ; -- from DictEng -lin fiery_A = compoundA (mkA "fiery"); -- from DictEng -lin fiesta_N = mkN "fiesta" "fiestas"; -- from DictEng -lin fife_N = mkN "fife" "fifes"; -- from DictEng -lin fifteen_A = mkA "fifteen" ; -lin fifteen_N = mkN "fifteen" ; -lin fifteenth_A = mkA "fifteenth" ; -lin fifteenth_N = mkN "fifteenth" ; -lin fifth_A = mkA "fifth" ; -lin fifth_N = mkN "fifth" ; -lin fifthly_Adv = mkAdv "fifthly" ; -lin fifties_N = mkN "fifties" ; -lin fiftieth_A = mkA "fiftieth" ; -lin fiftieth_N = mkN "fiftieth" ; -lin fifty_A = mkA "fifty" ; -lin fifty_N = mkN "fifty" ; -lin fifty_eight_A = compoundA (mkA "fifty eight") ; -lin fifty_fifth_A = compoundA (mkA "fifty fifth") ; -lin fifty_five_A = compoundA (mkA "fifty five") ; -lin fifty_four_A = compoundA (mkA "fifty four") ; -lin fifty_nine_A = compoundA (mkA "fifty nine") ; -lin fifty_one_A = compoundA (mkA "fifty one") ; -lin fifty_seven_A = compoundA (mkA "fifty seven") ; -lin fifty_six_A = compoundA (mkA "fifty six") ; -lin fifty_three_A = compoundA (mkA "fifty three") ; -lin fifty_two_A = compoundA (mkA "fifty two") ; -lin fig_N = mkN "fig" "figs"; -- from DictEng -lin fig_bird_N = mkN "fig bird" ; -lin fig_shaped_A = compoundA (mkA "fig shaped") ; -lin fig_leaf_N = mkN "fig - leaf" "fig - leaves"; -- from DictEng -lin fight_N = mkN "fight" "fights"; -- from DictEng -lin fight_V = IrregEng.fight_V; -- from DictEng -lin fight_V2 = mkV2 (IrregEng.fight_V); -- from DictEng -lin fight_V2V = mkV2V (IrregEng.fight_V) noPrep to_Prep ; -- from DictEng -lin fighter_N = mkN "fighter" "fighters"; -- from DictEng -lin fighting_N = mkN "fighting" ; -- from DictEng -lin figment_N = mkN "figment" "figments"; -- from DictEng -lin figural_A = mkA "figural" ; -lin figuration_N = mkN "figuration" ; -lin figurative_A = compoundA (mkA "figurative"); -- from DictEng -lin figuratively_Adv = mkAdv "figuratively" ; -lin figure_N = mkN "figure" "figures"; -- from DictEng -lin figure_V = mkV "figure" "figures" "figured" "figured" "figuring"; -- from DictEng -lin figure_V2 = mkV2 (mkV "figure" "figures" "figured" "figured" "figuring"); -- from DictEng -lin figure_V2V = mkV2V (mkV "figure" "figures" "figured" "figured" "figuring") noPrep to_Prep ; -- from DictEng -lin figure_VS = mkVS (mkV "figure" "figures" "figured" "figured" "figuring"); -- from DictEng -lin figure_out_V2 = mkV2 (mkV "figure out") ; -lin figured_A = compoundA (mkA "figured"); -- from DictEng -lin figurehead_N = mkN "figurehead" "figureheads"; -- from DictEng -lin figurine_N = mkN "figurine" ; -lin figwort_N = mkN "figwort" ; -lin fijian_A = compoundA (mkA "fijian"); -- from DictEng -lin fijian_N = mkN "fijian" "fijians"; -- from DictEng -lin filaggrin_N = mkN "filaggrin" ; -lin filament_N = mkN "filament" "filaments"; -- from DictEng -lin filamentous_A = mkA "filamentous" ; -lin filar_A = mkA "filar" ; -lin filaria_N = mkN "filaria" ; -lin filarial_A = mkA "filarial" ; -lin filariasis_N = mkN "filariasis" ; -lin filariid_A = mkA "filariid" ; -lin filature_N = mkN "filature" "filatures"; -- from DictEng -lin filbert_N = mkN "filbert" "filberts"; -- from DictEng -lin filch_V2 = mkV2 (mkV "filch" "filches" "filched" "filched" "filching"); -- from DictEng -lin file_N = mkN "file" "files"; -- from DictEng -lin file_V = mkV "file" "files" "filed" "filed" "filing"; -- from DictEng -lin file_V2 = mkV2 (mkV "file" "files" "filed" "filed" "filing"); -- from DictEng -lin file_like_A = compoundA (mkA "file like") ; -lin filefish_N = mkN "filefish" ; -lin filename_N = mkN "filename" ; -lin filer_N = mkN "filer" ; -lin filet_N = mkN "filet" ; -lin filial_A = compoundA (mkA "filial"); -- from DictEng -lin filibuster_N = mkN "filibuster" "filibusters"; -- from DictEng -lin filibuster_V = mkV "filibuster" "filibusters" "filibustered" "filibustered" "filibustering"; -- from DictEng -lin filicide_N = mkN "filicide" ; -lin filigree_N = mkN "filigree" ; -- from DictEng -lin filing_N = mkN "filing" ; -lin filipino_A = compoundA (mkA "filipino"); -- from DictEng -lin filipino_N = mkN "filipino" "filipinos"; -- from DictEng -lin fill_N = mkN "fill" "fills"; -- from DictEng -lin fill_V = mkV "fill" "fills" "filled" "filled" "filling"; -- from DictEng -lin fill_V2 = mkV2 (mkV "fill" "fills" "filled" "filled" "filling"); -- from DictEng -lin filled_A = mkA "filled" ; -lin filler_N = mkN "filler" ; -lin fillet_N = mkN "fillet" "fillets"; -- from DictEng -lin fillet_V2 = mkV2 (mkV "fillet" "fillets" "filleted" "filleted" "filleting"); -- from DictEng -lin filling_N = mkN "filling" "fillings"; -- from DictEng -lin fillip_N = mkN "fillip" "fillips"; -- from DictEng -lin filly_N = mkN "filly" "fillies"; -- from DictEng -lin film_N = mkN "film" "films"; -- from DictEng -lin film_V = mkV "film" "films" "filmed" "filmed" "filming"; -- from DictEng -lin film_V2 = mkV2 (mkV "film" "films" "filmed" "filmed" "filming"); -- from DictEng -lin film_star_N = mkN "film - star" "film - stars"; -- from DictEng -lin filmable_A = compoundA (mkA "filmable"); -- from DictEng -lin filmdom_N = mkN "filmdom" ; -lin filmed_A = mkA "filmed" ; -lin filming_N = mkN "filming" ; -lin filmy_A = mkA "filmy" "filmier"; -- from DictEng -lin filovirus_N = mkN "filovirus" ; -lin fils_N = mkN "fils" ; -lin filter_N = mkN "filter" "filters"; -- from DictEng -lin filter_V = mkV "filter" "filters" "filtered" "filtered" "filtering"; -- from DictEng -lin filter_V2 = mkV2 (mkV "filter" "filters" "filtered" "filtered" "filtering"); -- from DictEng -lin filter_tipped_A = compoundA (mkA "filter tipped") ; -lin filtertipped_A = compoundA (mkA "filtertipped"); -- from DictEng -lin filth_N = mkN "filth" ; -- from DictEng -lin filthily_Adv = mkAdv "filthily"; -- from DictEng -lin filthiness_N = mkN "filthiness" ; -- from DictEng -lin filthy_A = mkA "filthy" "filthier"; -- from DictEng -lin filtrate_N = mkN "filtrate" "filtrates"; -- from DictEng -lin filtrate_V = mkV "filtrate" "filtrates" "filtrated" "filtrated" "filtrating"; -- from DictEng -lin filtrate_V2 = mkV2 (mkV "filtrate" "filtrates" "filtrated" "filtrated" "filtrating"); -- from DictEng -lin filtration_N = mkN "filtration" ; -- from DictEng -lin fimbria_N = mkN "fimbria" ; -lin fimbriate_A = mkA "fimbriate" ; -lin fin_N = mkN "fin" "fins"; -- from DictEng -lin fin_de_siecle_A = compoundA (mkA "fin de siecle") ; -lin finable_A = compoundA (mkA "finable"); -- from DictEng -lin finagle_V2 = mkV2 (mkV "finagle"); -- from DictEng -lin finagler_N = mkN "finagler" ; -lin final_A = compoundA (mkA "final"); -- from DictEng -lin final_N = mkN "final" "finals"; -- from DictEng -lin finale_N = mkN "finale" "finales"; -- from DictEng -lin finalist_N = mkN "finalist" "finalists"; -- from DictEng -lin finality_N = mkN "finality" ; -- from DictEng -lin finalization_N = mkN "finalization" ; -lin finalize_V2 = mkV2 (mkV "finalize" "finalizes" "finalized" "finalized" "finalizing"); -- from DictEng -lin finally_Adv = mkAdv "finally" ; -lin finance_N = mkN "finance" "finances"; -- from DictEng -lin finance_V2 = mkV2 (mkV "finance" "finances" "financed" "financed" "financing"); -- from DictEng -lin financial_A = compoundA (mkA "financial"); -- from DictEng -lin financially_Adv = mkAdv "financially" ; -lin financier_N = mkN "financier" "financiers"; -- from DictEng -lin financing_N = mkN "financing" ; -lin finback_N = mkN "finback" ; -lin finch_N = mkN "finch" "finches"; -- from DictEng -lin find_N = mkN "find" "finds"; -- from DictEng -lin find_V = IrregEng.find_V; -- from DictEng -lin find_V2 = mkV2 (IrregEng.find_V); -- from DictEng -lin find_V2V = mkV2V (IrregEng.find_V) noPrep to_Prep ; -- from DictEng -lin find_VS = mkVS (IrregEng.find_V); -- from DictEng -lin finder_N = mkN "finder" "finders"; -- from DictEng -lin finding_N = mkN "finding" "findings"; -- from DictEng -lin findings_N = mkN "findings" ; -lin fine_A = mkA "fine" "finer"; -- from DictEng -lin fine_Adv = mkAdv "fine"; -- from DictEng -lin fine_N = mkN "fine" "fines"; -- from DictEng -lin fine_V2 = mkV2 (mkV "fine" "fines" "fined" "fined" "fining"); -- from DictEng -lin fine_leaved_A = compoundA (mkA "fine leaved") ; -lin fine_looking_A = compoundA (mkA "fine looking") ; -lin fine_textured_A = compoundA (mkA "fine textured") ; -lin fine_toothed_A = compoundA (mkA "fine toothed") ; -lin fine_tooth_A = compoundA (mkA "fine - tooth"); -- from DictEng -lin fineable_A = compoundA (mkA "fineable"); -- from DictEng -lin finely_Adv = mkAdv "finely" ; -lin fineness_N = mkN "fineness" ; -- from DictEng -lin finer_A = mkA "finer" ; -lin finery_N = mkN "finery" ; -- from DictEng -lin finespun_A = mkA "finespun" ; -lin finesse_N = mkN "finesse" "finesses"; -- from DictEng -lin finesse_V2 = mkV2 (mkV "finesse"); -- from DictEng -lin finger_N = mkN "finger" "fingers"; -- from DictEng -lin finger_V2 = mkV2 (mkV "finger" "fingers" "fingered" "fingered" "fingering"); -- from DictEng -lin finger_painting_N = mkN "finger painting" ; -lin finger_pointing_N = mkN "finger pointing" ; -lin finger_roll_N = mkN "finger roll" ; -lin finger_alphabet_N = mkN "finger - alphabet" "finger - alphabets"; -- from DictEng -lin finger_bowl_N = mkN "finger - bowl" "finger - bowls"; -- from DictEng -lin finger_plate_N = mkN "finger - plate" "finger - plates"; -- from DictEng -lin finger_post_N = mkN "finger - post" "finger - posts"; -- from DictEng -lin fingerboard_N = mkN "fingerboard" "fingerboards"; -- from DictEng -lin fingered_A = mkA "fingered" ; -lin fingering_N = mkN "fingering" ; -lin fingerless_A = mkA "fingerless" ; -lin fingerling_N = mkN "fingerling" ; -lin fingermark_N = mkN "fingermark" "fingermarks"; -- from DictEng -lin fingernail_N = mkN "fingernail" "fingernails"; -- from DictEng -lin fingerpost_N = mkN "fingerpost" ; -lin fingerprint_N = mkN "fingerprint" "fingerprints"; -- from DictEng -lin fingerprinting_N = mkN "fingerprinting" ; -lin fingerstall_N = mkN "fingerstall" "fingerstalls"; -- from DictEng -lin fingertip_N = mkN "fingertip" "fingertips"; -- from DictEng -lin finial_N = mkN "finial" ; -lin finical_A = compoundA (mkA "finical"); -- from DictEng -lin finicky_A = compoundA (mkA "finicky"); -- from DictEng -lin finis_N = mkN "finis" "fines" {- FIXME: guessed plural form -}; -- from DictEng -lin finish_N = mkN "finish" "finishes"; -- from DictEng -lin finish_V = mkV "finish" "finishes" "finished" "finished" "finishing"; -- from DictEng -lin finish_V2 = mkV2 (mkV "finish" "finishes" "finished" "finished" "finishing"); -- from DictEng -lin finish_VA = mkVA (mkV "finish" "finishes" "finished" "finished" "finishing"); -- from DictEng -lin finish_VS = mkVS (mkV "finish" "finishes" "finished" "finished" "finishing"); -- from DictEng -lin finished_A = mkA "finished" ; -lin finisher_N = mkN "finisher" ; -lin finite_A = compoundA (mkA "finite"); -- from DictEng -lin finitely_Adv = mkAdv "finitely" ; -lin finiteness_N = mkN "finiteness" ; -lin fink_N = mkN "fink" ; -lin finn_N = mkN "finn" "finns"; -- from DictEng -lin finnan_N = mkN "finnan" ; -- from DictEng -lin finnan_haddie_N = mkN "finnan haddie" ; -- from DictEng -lin finnan_haddock_N = mkN "finnan haddock" ; -- from DictEng -lin finnish_A = compoundA (mkA "Finnish"); -- from DictEng -lin finnish_N = mkN "Finnish" ; -- from DictEng -lin fiord_N = mkN "fiord" "fiords"; -- from DictEng -lin fipple_N = mkN "fipple" ; -lin fir_N = mkN "fir" "firs"; -- from DictEng -lin fir_cone_N = mkN "fir - cone" "fir - cones"; -- from DictEng -lin fire_N = mkN "fire" "fires"; -- from DictEng -lin fire_V = mkV "fire" "fires" "fired" "fired" "firing"; -- from DictEng -lin fire_V2 = mkV2 (mkV "fire" "fires" "fired" "fired" "firing"); -- from DictEng -lin fire_eater_N = mkN "fire - eater" "fire - eaters"; -- from DictEng -lin fire_on_the_mountain_N = mkN "fire on the mountain" ; -lin fire_retardant_A = compoundA (mkA "fire retardant") ; -lin fire_alarm_N = mkN "fire - alarm" "fire - alarms"; -- from DictEng -lin fire_brigade_N = mkN "fire - brigade" "fire - brigades"; -- from DictEng -lin fire_control_N = mkN "fire - control" ; -- from DictEng -lin fire_eater_N = mkN "fire - eater" "fire - eaters"; -- from DictEng -lin fire_engine_N = mkN "fire - engine" "fire - engines"; -- from DictEng -lin fire_escape_N = mkN "fire - escape" "fire - escapes"; -- from DictEng -lin fire_extinguisher_N = mkN "fire - extinguisher" "fire - extinguishers"; -- from DictEng -lin fire_fighter_N = mkN "fire - fighter" "fire - fighters"; -- from DictEng -lin fire_hose_N = mkN "fire - hose" "fire - hoses"; -- from DictEng -lin fire_power_N = mkN "fire - power" ; -- from DictEng -lin fire_raising_N = mkN "fire - raising" ; -- from DictEng -lin fire_walker_N = mkN "fire - walker" "fire - walkers"; -- from DictEng -lin fire_walking_N = mkN "fire - walking" ; -- from DictEng -lin fire_watcher_N = mkN "fire - watcher" "fire - watchers"; -- from DictEng -lin fire_watching_N = mkN "fire - watching" ; -- from DictEng -lin firearm_N = mkN "firearm" "firearms"; -- from DictEng -lin fireball_N = mkN "fireball" "fireballs"; -- from DictEng -lin firebase_N = mkN "firebase" ; -lin firebird_N = mkN "firebird" "firebirds"; -- from DictEng -lin fireboat_N = mkN "fireboat" ; -lin firebomb_N = mkN "firebomb" "firebombs"; -- from DictEng -lin firebox_N = mkN "firebox" "fireboxes"; -- from DictEng -lin firebrand_N = mkN "firebrand" "firebrands"; -- from DictEng -lin firebrat_N = mkN "firebrat" ; -lin firebreak_N = mkN "firebreak" "firebreaks"; -- from DictEng -lin firebrick_N = mkN "firebrick" "firebricks"; -- from DictEng -lin firebug_N = mkN "firebug" "firebugs"; -- from DictEng -lin fireclay_N = mkN "fireclay" ; -- from DictEng -lin firecracker_N = mkN "firecracker" "firecrackers"; -- from DictEng -lin firedamp_N = mkN "firedamp" ; -- from DictEng -lin firedog_N = mkN "firedog" "firedogs"; -- from DictEng -lin firefly_N = mkN "firefly" "fireflies"; -- from DictEng -lin fireguard_N = mkN "fireguard" "fireguards"; -- from DictEng -lin firelight_N = mkN "firelight" "firelights"; -- from DictEng -lin firelighter_N = mkN "firelighter" "firelighters"; -- from DictEng -lin fireman_N = mkN "fireman" "firemen" {- FIXME: guessed plural form -}; -- from DictEng -lin fireplace_N = mkN "fireplace" "fireplaces"; -- from DictEng -lin fireplug_N = mkN "fireplug" ; -lin firepower_N = mkN "firepower" ; -lin fireproof_A = compoundA (mkA "fireproof"); -- from DictEng -lin fireside_N = mkN "fireside" "firesides"; -- from DictEng -lin firestone_N = mkN "firestone" ; -- from DictEng -lin firestorm_N = mkN "firestorm" ; -lin firetrap_N = mkN "firetrap" ; -lin firewall_N = mkN "firewall" ; -lin firewater_N = mkN "firewater" ; -- from DictEng -lin fireweed_N = mkN "fireweed" ; -lin firewood_N = mkN "firewood" ; -- from DictEng -lin firework_N = mkN "firework" "fireworks"; -- from DictEng -lin firing_line_N = mkN "firing - line" "firing - lines"; -- from DictEng -lin firing_party_N = mkN "firing - party" "firing - parties"; -- from DictEng -lin firing_squad_N = mkN "firing - squad" "firing - squads"; -- from DictEng -lin firkin_N = mkN "firkin" "firkins"; -- from DictEng -lin firm_A = mkA "firm" "firmer"; -- from DictEng -lin firm_Adv = mkAdv "firm"; -- from DictEng -lin firm_N = mkN "firm" "firms"; -- from DictEng -lin firm_V = mkV "firm" "firms" "firmed" "firmed" "firming"; -- from DictEng -lin firm_V2 = mkV2 (mkV "firm" "firms" "firmed" "firmed" "firming"); -- from DictEng -lin firmament_N = mkN "firmament" "firmaments"; -- from DictEng -lin firmamental_A = mkA "firmamental" ; -lin firmness_N = mkN "firmness" ; -- from DictEng -lin firmware_N = mkN "firmware" ; -lin first_A = mkA "first" ; -lin first_Adv = mkAdv "first" ; -lin first_N = mkN "first" ; -lin first_come_first_serve_A = compoundA (mkA "first come first serve") ; -lin first_nighter_N = mkN "first - nighter" "first - nighters"; -- from DictEng -lin first_rate_Adv = mkAdv "first - rate"; -- from DictEng -lin first_rater_N = mkN "first rater" ; -lin first_string_A = compoundA (mkA "first string") ; -lin first_and_last_Adv = mkAdv "first and last" ; -lin first_class_A = compoundA (mkA "first - class"); -- from DictEng -lin first_class_Adv = mkAdv "first - class"; -- from DictEng -lin first_hand_A = compoundA (mkA "first - hand"); -- from DictEng -lin first_hand_Adv = mkAdv "first - hand"; -- from DictEng -lin first_nighter_N = mkN "first - nighter" "first - nighters"; -- from DictEng -lin first_rate_A = compoundA (mkA "first - rate"); -- from DictEng -lin first_rate_Adv = mkAdv "first - rate"; -- from DictEng -lin firstborn_A = compoundA (mkA "firstborn"); -- from DictEng -lin firstborn_N = mkN "firstborn" "firstborns"; -- from DictEng -lin firsthand_A = mkA "firsthand" ; -lin firsthand_Adv = mkAdv "firsthand" ; -lin firth_N = mkN "firth" "firths"; -- from DictEng -lin fisc_N = mkN "fisc" ; -lin fiscal_A = compoundA (mkA "fiscal"); -- from DictEng -lin fiscally_Adv = mkAdv "fiscally" ; -lin fish_N = mkN "fish" "fish"; -- from DictEng -lin fish_V = mkV "fish" "fishes" "fished" "fished" "fishing"; -- from DictEng -lin fish_V2 = mkV2 (mkV "fish" "fishes" "fished" "fished" "fishing"); -- from DictEng -lin fish_hook_N = mkN "fish - hook" "fish - hooks"; -- from DictEng -lin fish_knife_N = mkN "fish - knife" "fish - knives"; -- from DictEng -lin fish_slice_N = mkN "fish - slice" "fish - slices"; -- from DictEng -lin fishball_N = mkN "fishball" "fishballs"; -- from DictEng -lin fishbone_N = mkN "fishbone" "fishbones"; -- from DictEng -lin fishbowl_N = mkN "fishbowl" ; -lin fishcake_N = mkN "fishcake" "fishcakes"; -- from DictEng -lin fisher_N = mkN "fisher" "fishers"; -- from DictEng -lin fisherman_N = mkN "fisherman" "fishermen"; -- from DictEng -lin fishery_N = mkN "fishery" "fisheries"; -- from DictEng -lin fisheye_A = mkA "fisheye" ; -lin fishhook_N = mkN "fishhook" ; -lin fishing_N = mkN "fishing" ; -- from DictEng -lin fishing_line_N = mkN "fishing - line" "fishing - lines"; -- from DictEng -lin fishing_rod_N = mkN "fishing - rod" "fishing - rods"; -- from DictEng -lin fishing_tackle_N = mkN "fishing - tackle" ; -- from DictEng -lin fishmonger_N = mkN "fishmonger" "fishmongers"; -- from DictEng -lin fishnet_N = mkN "fishnet" ; -lin fishpaste_N = mkN "fishpaste" "fishpastes"; -- from DictEng -lin fishplate_N = mkN "fishplate" "fishplates"; -- from DictEng -lin fishpond_N = mkN "fishpond" ; -lin fishwife_N = mkN "fishwife" "fishwives" {- FIXME: guessed plural form -}; -- from DictEng -lin fishy_A = mkA "fishy" "fishier"; -- from DictEng -lin fissile_A = compoundA (mkA "fissile"); -- from DictEng -lin fission_N = mkN "fission" ; -- from DictEng -lin fissionable_A = compoundA (mkA "fissionable"); -- from DictEng -lin fissiparity_N = mkN "fissiparity" ; -lin fissiparous_A = compoundA (mkA "fissiparous"); -- from DictEng -lin fissure_N = mkN "fissure" "fissures"; -- from DictEng -lin fissure_of_rolando_PN = mkPN "fissure of Rolando" ; -lin fissure_of_sylvius_PN = mkPN "fissure of Sylvius" ; -lin fist_N = mkN "fist" "fists"; -- from DictEng -lin fistfight_N = mkN "fistfight" ; -lin fistmele_N = mkN "fistmele" ; -lin fistula_N = mkN "fistula" "fistulas"; -- from DictEng -lin fistular_A = mkA "fistular" ; -lin fistulous_A = mkA "fistulous" ; -lin fit_A = mkA "fit" "fitter*"; -- from DictEng -lin fit_N = mkN "fit" "fits"; -- from DictEng -lin fit_V = mkV "fit" "fits" "fitted" "fitted" "fitting"; -- from DictEng -lin fit_V2 = mkV2 (mkV "fit" "fits" "fitted" "fitted" "fitting"); -- from DictEng -lin fitful_A = compoundA (mkA "fitful"); -- from DictEng -lin fitfully_Adv = mkAdv "fitfully" ; -lin fitfulness_N = mkN "fitfulness" ; -lin fitment_N = mkN "fitment" "fitments"; -- from DictEng -lin fitness_N = mkN "fitness" ; -- from DictEng -lin fitted_A = mkA "fitted" ; -lin fitted_out_A = compoundA (mkA "fitted out") ; -lin fitter_A = mkA "fitter" ; -lin fitter_N = mkN "fitter" "fitters"; -- from DictEng -lin fitting_A = compoundA (mkA "fitting"); -- from DictEng -lin fitting_N = mkN "fitting" "fittings"; -- from DictEng -lin five_A = mkA "five" ; -lin five_N = mkN "five" ; -lin five_hitter_N = mkN "five hitter" ; -lin five_hundredth_A = compoundA (mkA "five hundredth") ; -lin five_lobed_A = compoundA (mkA "five lobed") ; -lin five_membered_A = compoundA (mkA "five membered") ; -lin five_needled_A = compoundA (mkA "five needled") ; -lin five_petaled_A = compoundA (mkA "five petaled") ; -lin five_pointed_A = compoundA (mkA "five pointed") ; -lin five_sided_A = compoundA (mkA "five sided") ; -lin five_spot_N = mkN "five spot" ; -lin five_year_old_A = compoundA (mkA "five year old") ; -lin five_hundred_A = compoundA (mkA "five hundred") ; -lin fivefold_A = compoundA (mkA "fivefold"); -- from DictEng -lin fivepence_N = mkN "fivepence" "fivepences"; -- from DictEng -lin fivepenny_A = compoundA (mkA "fivepenny"); -- from DictEng -lin fiver_N = mkN "fiver" "fivers"; -- from DictEng -lin fives_N = mkN "fives" "fives"; -- from DictEng -lin fix_N = mkN "fix" "fixes"; -- from DictEng -lin fix_V = mkV "fix" "fixes" "fixed" "fixed" "fixing"; -- from DictEng -lin fix_V2 = mkV2 (mkV "fix" "fixes" "fixed" "fixed" "fixing"); -- from DictEng -lin fixate_V2 = mkV2 (mkV "fixate" "fixates" "fixated" "fixated" "fixating"); -- from DictEng -lin fixation_N = mkN "fixation" "fixations"; -- from DictEng -lin fixative_N = mkN "fixative" "fixatives"; -- from DictEng -lin fixed_A = compoundA (mkA "fixed"); -- from DictEng -lin fixedly_Adv = mkAdv "fixedly" ; -lin fixedness_N = mkN "fixedness" ; -lin fixer_N = mkN "fixer" ; -lin fixer_upper_N = mkN "fixer upper" ; -lin fixings_N = mkN "fixings" ; -lin fixture_N = mkN "fixture" "fixtures"; -- from DictEng -lin fizgig_N = mkN "fizgig" ; -lin fizz_N = mkN "fizz" ; -- from DictEng -lin fizz_V = mkV "fizz" "fizzes" "fizzed" "fizzed" "fizzing"; -- from DictEng -lin fizz_V2 = mkV2 (mkV "fizz") ; -lin fizzing_A = mkA "fizzing" ; -lin fizzle_V = mkV "fizzle" "fizzles" "fizzled" "fizzled" "fizzling"; -- from DictEng -lin fizzle_V2 = mkV2 (mkV "fizzle") ; -lin fizzy_A = mkA "fizzy" "fizzier"; -- from DictEng -lin fjord_N = mkN "fjord" "fjords"; -- from DictEng -lin flab_N = mkN "flab" ; -lin flabbergast_V2 = mkV2 (mkV "flabbergast" "flabbergasts" "flabbergasted" "flabbergasted" "flabbergasting"); -- from DictEng -lin flabbily_Adv = mkAdv "flabbily"; -- from DictEng -lin flabbiness_N = mkN "flabbiness" ; -- from DictEng -lin flabby_A = mkA "flabby" "flabbier"; -- from DictEng -lin flaccid_A = compoundA (mkA "flaccid"); -- from DictEng -lin flaccidity_N = mkN "flaccidity" ; -- from DictEng -lin flag_N = mkN "flag" "flags"; -- from DictEng -lin flag_V = mkV "flag" "flags" "flagged" "flagged" "flagging"; -- from DictEng -lin flag_V2 = mkV2 (mkV "flag" "flags" "flagged" "flagged" "flagging"); -- from DictEng -lin flag_captain_N = mkN "flag - captain" "flag - captains"; -- from DictEng -lin flag_day_N = mkN "flag - day" "flag - days"; -- from DictEng -lin flagellant_N = mkN "flagellant" "flagellants"; -- from DictEng -lin flagellate_A = mkA "flagellate" ; -lin flagellate_N = mkN "flagellate" ; -lin flagellate_V2 = mkV2 (mkV "flagellate" "flagellates" "flagellated" "flagellated" "flagellating"); -- from DictEng -lin flagellation_N = mkN "flagellation" "flagellations"; -- from DictEng -lin flagellum_N = mkN "flagellum" ; -lin flageolet_N = mkN "flageolet" "flageolets"; -- from DictEng -lin flagfish_N = mkN "flagfish" ; -lin flagging_N = mkN "flagging" ; -lin flagitious_A = mkA "flagitious" ; -lin flagon_N = mkN "flagon" "flagons"; -- from DictEng -lin flagpole_N = mkN "flagpole" "flagpoles"; -- from DictEng -lin flagrant_A = compoundA (mkA "flagrant"); -- from DictEng -lin flagrantly_Adv = mkAdv "flagrantly" ; -lin flagship_N = mkN "flagship" "flagships"; -- from DictEng -lin flagstaff_N = mkN "flagstaff" "flagstaffs"; -- from DictEng -lin flagstone_N = mkN "flagstone" "flagstones"; -- from DictEng -lin flail_N = mkN "flail" "flails"; -- from DictEng -lin flail_V2 = mkV2 (mkV "flail" "flails" "flailed" "flailed" "flailing"); -- from DictEng -lin flair_N = mkN "flair" "flairs"; -- from DictEng -lin flak_N = mkN "flak" ; -- from DictEng -lin flake_N = mkN "flake" "flakes"; -- from DictEng -lin flake_V = mkV "flake" "flakes" "flaked" "flaked" "flaking"; -- from DictEng -lin flakiness_N = mkN "flakiness" ; -- from DictEng -lin flaky_A = mkA "flaky" "flakier"; -- from DictEng -lin flambeau_N = mkN "flambeau" "flambeaus"; -- from DictEng -lin flamboyance_N = mkN "flamboyance" ; -- from DictEng -lin flamboyant_A = compoundA (mkA "flamboyant"); -- from DictEng -lin flamboyantly_Adv = mkAdv "flamboyantly" ; -lin flame_N = mkN "flame" "flames"; -- from DictEng -lin flame_V = mkV "flame" "flames" "flamed" "flamed" "flaming"; -- from DictEng -lin flame_colored_A = compoundA (mkA "flame colored") ; -lin flame_out_N = mkN "flame out" ; -lin flamen_N = mkN "flamen" ; -lin flamenco_N = mkN "flamenco" ; -lin flameproof_A = mkA "flameproof" ; -lin flamethrower_N = mkN "flamethrower" "flamethrowers"; -- from DictEng -lin flaming_A = compoundA (mkA "flaming"); -- from DictEng -lin flamingo_N = mkN "flamingo" "flamingos"; -- from DictEng -lin flammability_N = mkN "flammability" ; -lin flammable_A = compoundA (mkA "flammable"); -- from DictEng -lin flan_N = mkN "flan" "flans"; -- from DictEng -lin flange_N = mkN "flange" "flanges"; -- from DictEng -lin flank_N = mkN "flank" "flanks"; -- from DictEng -lin flank_V = mkV "flank"; -- from DictEng -lin flank_V2 = mkV2 (mkV "flank" "flanks" "flanked" "flanked" "flanking"); -- from DictEng -lin flanker_N = mkN "flanker" ; -lin flannel_N = mkN "flannel" "flannels"; -- from DictEng -lin flannelbush_N = mkN "flannelbush" ; -lin flannelette_N = mkN "flannelette" ; -- from DictEng -lin flap_N = mkN "flap" "flaps"; -- from DictEng -lin flap_V = mkV "flap" "flaps" "flapped" "flapped" "flapping"; -- from DictEng -lin flap_V2 = mkV2 (mkV "flap" "flaps" "flapped" "flapped" "flapping"); -- from DictEng -lin flapjack_N = mkN "flapjack" "flapjacks"; -- from DictEng -lin flapper_N = mkN "flapper" "flappers"; -- from DictEng -lin flare_N = mkN "flare" "flares"; -- from DictEng -lin flare_V = mkV "flare" "flares" "flared" "flared" "flaring"; -- from DictEng -lin flare_V2 = mkV2 (mkV "flare" "flares" "flared" "flared" "flaring"); -- from DictEng -lin flare_path_N = mkN "flare - path" "flare - paths"; -- from DictEng -lin flare_up_N = mkN "flare - up" "flare - ups"; -- from DictEng -lin flash_N = mkN "flash" "flashes"; -- from DictEng -lin flash_V = mkV "flash" "flashes" "flashed" "flashed" "flashing"; -- from DictEng -lin flash_V2 = mkV2 (mkV "flash" "flashes" "flashed" "flashed" "flashing"); -- from DictEng -lin flash_forward_N = mkN "flash forward" ; -lin flash_frozen_A = compoundA (mkA "flash frozen") ; -lin flashback_N = mkN "flashback" "flashbacks"; -- from DictEng -lin flashboard_N = mkN "flashboard" ; -lin flashbulb_N = mkN "flashbulb" "flashbulbs"; -- from DictEng -lin flasher_N = mkN "flasher" ; -lin flashgun_N = mkN "flashgun" "flashguns"; -- from DictEng -lin flashily_Adv = mkAdv "flashily"; -- from DictEng -lin flashiness_N = mkN "flashiness" ; -lin flashing_N = mkN "flashing" ; -lin flashlight_N = mkN "flashlight" "flashlights"; -- from DictEng -lin flashover_N = mkN "flashover" ; -lin flashpoint_N = mkN "flashpoint" "flashpoints"; -- from DictEng -lin flashy_A = mkA "flashy" "flashier"; -- from DictEng -lin flask_N = mkN "flask" "flasks"; -- from DictEng -lin flat_A = mkA "flat" "flatter*"; -- from DictEng -lin flat_Adv = mkAdv "flat"; -- from DictEng -lin flat_N = mkN "flat" "flats"; -- from DictEng -lin flat_bottomed_A = compoundA (mkA "flat - bottomed"); -- from DictEng -lin flat_footed_A = compoundA (mkA "flat - footed"); -- from DictEng -lin flat_topped_A = compoundA (mkA "flat topped") ; -lin flat_bottomed_A = compoundA (mkA "flat - bottomed"); -- from DictEng -lin flat_car_N = mkN "flat - car" "flat - cars"; -- from DictEng -lin flat_footed_A = compoundA (mkA "flat - footed"); -- from DictEng -lin flat_iron_N = mkN "flat - iron" "flat - irons"; -- from DictEng -lin flat_out_Adv = mkAdv "flat out" ; -lin flatbed_N = mkN "flatbed" ; -lin flatbottom_A = mkA "flatbottom" ; -lin flatbread_N = mkN "flatbread" ; -lin flatbrod_N = mkN "flatbrod" ; -lin flatcar_N = mkN "flatcar" ; -lin flatfish_N = mkN "flatfish" "flatfish"; -- from DictEng -lin flatfoot_N = mkN "flatfoot" ; -lin flathead_N = mkN "flathead" ; -lin flatiron_N = mkN "flatiron" ; -lin flatlet_N = mkN "flatlet" "flatlets"; -- from DictEng -lin flatly_Adv = mkAdv "flatly" ; -lin flatmate_N = mkN "flatmate" ; -lin flatness_N = mkN "flatness" ; -- from DictEng -lin flats_N = mkN "flats" ; -lin flatten_V = mkV "flatten" "flattens" "flattened" "flattened" "flattening"; -- from DictEng -lin flatten_V2 = mkV2 (mkV "flatten" "flattens" "flattened" "flattened" "flattening"); -- from DictEng -lin flatter_V2 = mkV2 (mkV "flatter" "flatters" "flattered" "flattered" "flattering"); -- from DictEng -lin flatterer_N = mkN "flatterer" "flatterers"; -- from DictEng -lin flattering_A = mkA "flattering" ; -lin flattery_N = mkN "flattery" "flatteries"; -- from DictEng -lin flattop_N = mkN "flattop" "flattops"; -- from DictEng -lin flatulence_N = mkN "flatulence" ; -- from DictEng -lin flatulent_A = mkA "flatulent" ; -lin flatware_N = mkN "flatware" ; -lin flatwork_N = mkN "flatwork" ; -lin flatworm_N = mkN "flatworm" ; -lin flaunt_N = mkN "flaunt" ; -lin flaunt_V = mkV "flaunt" "flaunts" "flaunted" "flaunted" "flaunting"; -- from DictEng -lin flaunt_V2 = mkV2 (mkV "flaunt" "flaunts" "flaunted" "flaunted" "flaunting"); -- from DictEng -lin flaunty_A = mkA "flaunty" ; -lin flautist_N = mkN "flautist" "flautists"; -- from DictEng -lin flavin_N = mkN "flavin" ; -lin flavivirus_N = mkN "flavivirus" ; -lin flavone_N = mkN "flavone" ; -lin flavonoid_N = mkN "flavonoid" ; -lin flavor_N = mkN "flavor" ; -lin flavorer_N = mkN "flavorer" ; -lin flavorful_A = mkA "flavorful" ; -lin flavorlessness_N = mkN "flavorlessness" ; -lin flavorsomeness_N = mkN "flavorsomeness" ; -lin flavour_N = mkN "flavour" "flavours"; -- from DictEng -lin flavour_V2 = mkV2 (mkV "flavour" "flavours" "flavoured" "flavoured" "flavouring"); -- from DictEng -lin flavouring_N = mkN "flavouring" "flavourings"; -- from DictEng -lin flavourless_A = compoundA (mkA "flavourless"); -- from DictEng -lin flaw_N = mkN "flaw" "flaws"; -- from DictEng -lin flaw_V2 = mkV2 (mkV "flaw"); -- from DictEng -lin flawed_A = compoundA (mkA "flawed"); -- from DictEng -lin flawless_A = compoundA (mkA "flawless"); -- from DictEng -lin flawlessly_Adv = mkAdv "flawlessly" ; -lin flax_N = mkN "flax" ; -- from DictEng -lin flaxen_A = compoundA (mkA "flaxen"); -- from DictEng -lin flay_V2 = mkV2 (mkV "flay" "flays" "flayed" "flayed" "flaying"); -- from DictEng -lin flea_N = mkN "flea" "fleas"; -- from DictEng -lin flea_bite_N = mkN "flea - bite" "flea - bites"; -- from DictEng -lin flea_bitten_A = compoundA (mkA "flea - bitten"); -- from DictEng -lin fleabag_N = mkN "fleabag" ; -lin fleabane_N = mkN "fleabane" ; -lin fleapit_N = mkN "fleapit" "fleapits"; -- from DictEng -lin fleawort_N = mkN "fleawort" ; -lin flecainide_N = mkN "flecainide" ; -lin fleck_N = mkN "fleck" "flecks"; -- from DictEng -lin fleck_V2 = mkV2 (mkV "fleck" "flecks" "flecked" "flecked" "flecking"); -- from DictEng -lin fledged_A = compoundA (mkA "fledged"); -- from DictEng -lin fledgeling_N = mkN "fledgeling" "fledgelings"; -- from DictEng -lin fledgling_A = mkA "fledgling" ; -lin fledgling_N = mkN "fledgling" "fledglings"; -- from DictEng -lin flee_V = IrregEng.flee_V; -- from DictEng -lin flee_V2 = mkV2 (IrregEng.flee_V); -- from DictEng -lin fleece_N = mkN "fleece" "fleeces"; -- from DictEng -lin fleece_V2 = mkV2 (mkV "fleece" "fleeces" "fleeced" "fleeced" "fleecing"); -- from DictEng -lin fleeceable_A = mkA "fleeceable" ; -lin fleecy_A = mkA "fleecy" "fleecier"; -- from DictEng -lin fleer_N = mkN "fleer" ; -lin fleet_A = mkA "fleet" "fleeter"; -- from DictEng -lin fleet_N = mkN "fleet" "fleets"; -- from DictEng -lin fleeting_A = compoundA (mkA "fleeting"); -- from DictEng -lin fleetness_N = mkN "fleetness" ; -- from DictEng -lin flemish_A = compoundA (mkA "flemish"); -- from DictEng -lin flemish_N = mkN "flemish" ; -- from DictEng -lin flesh_N = mkN "flesh" ; -- from DictEng -lin flesh_colored_A = compoundA (mkA "flesh colored") ; -lin flesh_eating_A = compoundA (mkA "flesh eating") ; -lin flesh_wound_N = mkN "flesh - wound" "flesh - wounds"; -- from DictEng -lin fleshed_out_A = compoundA (mkA "fleshed out") ; -lin fleshiness_N = mkN "fleshiness" ; -lin fleshly_A = compoundA (mkA "fleshly"); -- from DictEng -lin fleshy_A = mkA "fleshy" "fleshier"; -- from DictEng -lin fleur_de_lis_N = mkN (variants {"fleur - de - lis"; "fleur - de - lys"}) "fleur - de - les"; -- from DictEng -lin fleur_de_lis_N = mkN (variants {"fleur - de - lis"; "fleur - de - lys"}) "fleur - de - les"; -- from DictEng -lin flex_N = mkN "flex" "flexes"; -- from DictEng -lin flex_V2 = mkV2 (mkV "flex" "flexes" "flexed" "flexed" "flexing"); -- from DictEng -lin flexibility_N = mkN "flexibility" ; -- from DictEng -lin flexible_A = compoundA (mkA "flexible"); -- from DictEng -lin flexibly_Adv = mkAdv "flexibly" ; -lin flexion_N = mkN "flexion" ; -lin flexuous_A = mkA "flexuous" ; -lin flexure_N = mkN "flexure" ; -lin flibbertigibbet_N = mkN "flibbertigibbet" "flibbertigibbets"; -- from DictEng -lin flick_N = mkN "flick" "flicks"; -- from DictEng -lin flick_V2 = mkV2 (mkV "flick" "flicks" "flicked" "flicked" "flicking"); -- from DictEng -lin flick_knife_N = mkN "flick - knife" "flick - knives"; -- from DictEng -lin flicker_N = mkN "flicker" "flickers"; -- from DictEng -lin flicker_V = mkV "flicker" "flickers" "flickered" "flickered" "flickering"; -- from DictEng -lin flickering_A = mkA "flickering" ; -lin flickertail_N = mkN "flickertail" ; -lin flier_N = mkN "flier" "fliers"; -- from DictEng -lin flies_N = mkN "flies" ; -lin flight_N = mkN "flight" "flights"; -- from DictEng -lin flight_V2 = mkV2 (mkV "flight" "flights" "flighted" "flighted" "flighting"); -- from DictEng -lin flighted_A = mkA "flighted" ; -lin flightiness_N = mkN "flightiness" ; -lin flightless_A = compoundA (mkA "flightless"); -- from DictEng -lin flighty_A = compoundA (mkA "flighty"); -- from DictEng -lin flimsily_Adv = mkAdv "flimsily"; -- from DictEng -lin flimsiness_N = mkN "flimsiness" ; -- from DictEng -lin flimsy_A = mkA "flimsy" "flimsier"; -- from DictEng -lin flimsy_N = mkN "flimsy" ; -- from DictEng -lin flinch_V = mkV "flinch" "flinches" "flinched" "flinched" "flinching"; -- from DictEng -lin flinders_N = mkN "flinders" ; -lin fling_N = mkN "fling" "flings"; -- from DictEng -lin fling_V = IrregEng.fling_V; -- from DictEng -lin fling_V2 = mkV2 (IrregEng.fling_V); -- from DictEng -lin flint_N = mkN "flint" "flints"; -- from DictEng -lin flintlock_N = mkN "flintlock" ; -lin flintstone_N = mkN "flintstone" ; -- from DictEng -lin flinty_A = mkA "flinty" "flintier"; -- from DictEng -lin flip_A = compoundA (mkA "flip"); -- from DictEng -lin flip_N = mkN "flip" "flips"; -- from DictEng -lin flip_V = mkV "flip" "flips" "flipped" "flipped" "flipping"; -- from DictEng -lin flip_V2 = mkV2 (mkV "flip" "flips" "flipped" "flipped" "flipping"); -- from DictEng -lin flip_flap_Adv = mkAdv "flip flap" ; -lin flip_flop_N = mkN "flip flop" ; -lin flippancy_N = mkN "flippancy" "flippancies"; -- from DictEng -lin flippant_A = compoundA (mkA "flippant"); -- from DictEng -lin flippantly_Adv = mkAdv "flippantly" ; -lin flipper_N = mkN "flipper" "flippers"; -- from DictEng -lin flipper_like_A = compoundA (mkA "flipper like") ; -lin flirt_N = mkN "flirt" "flirts"; -- from DictEng -lin flirt_V = mkV "flirt" "flirts" "flirted" "flirted" "flirting"; -- from DictEng -lin flirtation_N = mkN "flirtation" "flirtations"; -- from DictEng -lin flirtatious_A = compoundA (mkA "flirtatious"); -- from DictEng -lin flit_N = mkN "flit" "flits"; -- from DictEng -lin flit_V = mkV "flit" "flits" "flitted" "flitted" "flitting"; -- from DictEng -lin flit_V2 = mkV2 (mkV "flit") ; -lin flitch_N = mkN "flitch" ; -lin float_N = mkN "float" "floats"; -- from DictEng -lin float_V = mkV "float" "floats" "floated" "floated" "floating"; -- from DictEng -lin float_V2 = mkV2 (mkV "float" "floats" "floated" "floated" "floating"); -- from DictEng -lin float_VS = mkVS (mkV "float" "floats" "floated" "floated" "floating"); -- from DictEng -lin floatation_N = mkN "floatation" "floatations"; -- from DictEng -lin floater_N = mkN "floater" ; -lin floating_A = compoundA (mkA "floating"); -- from DictEng -lin floating_N = mkN "floating" ; -lin floating_moss_N = mkN "floating moss" ; -lin floatplane_N = mkN "floatplane" ; -lin floccose_A = mkA "floccose" ; -lin flocculation_N = mkN "flocculation" ; -lin floccule_N = mkN "floccule" ; -lin flocculent_A = mkA "flocculent" ; -lin flock_N = mkN "flock" "flocks"; -- from DictEng -lin flock_V = mkV "flock" "flocks" "flocked" "flocked" "flocking"; -- from DictEng -lin flock_V2V = mkV2V (mkV "flock" "flocks" "flocked" "flocked" "flocking") noPrep to_Prep ; -- from DictEng -lin floe_N = mkN "floe" "floes"; -- from DictEng -lin flog_V2 = mkV2 (mkV "flog" "flogs" "flogged" "flogged" "flogging"); -- from DictEng -lin flogger_N = mkN "flogger" ; -lin flogging_N = mkN "flogging" "floggings"; -- from DictEng -lin flood_N = mkN "flood" "floods"; -- from DictEng -lin flood_V = mkV "flood" "floods" "flooded" "flooded" "flooding"; -- from DictEng -lin flood_V2 = mkV2 (mkV "flood" "floods" "flooded" "flooded" "flooding"); -- from DictEng -lin flood_tide_N = mkN "flood - tide" "flood - tides"; -- from DictEng -lin floodgate_N = mkN "floodgate" "floodgates"; -- from DictEng -lin floodhead_N = mkN "floodhead" ; -lin floodlight_V2 = mkV2 (mkV "floodlight" "floodlights" "floodlighted" "floodlighted" "floodlighting"); -- from DictEng -lin floodlit_A = mkA "floodlit" ; -lin floodplain_N = mkN "floodplain" ; -lin floor_N = mkN "floor" "floors"; -- from DictEng -lin floor_V2 = mkV2 (mkV "floor" "floors" "floored" "floored" "flooring"); -- from DictEng -lin floor_walker_N = mkN "floor - walker" "floor - walkers"; -- from DictEng -lin floorboard_N = mkN "floorboard" "floorboards"; -- from DictEng -lin floored_A = mkA "floored" ; -lin flooring_N = mkN "flooring" ; -- from DictEng -lin floorwalker_N = mkN "floorwalker" ; -lin floozie_N = mkN "floozie" "floozies"; -- from DictEng -lin floozy_N = mkN "floozy" "floozies"; -- from DictEng -lin flop_Adv = mkAdv "flop"; -- from DictEng -lin flop_N = mkN "flop" "flops"; -- from DictEng -lin flop_V = mkV "flop" "flops" "flopped" "flopped" "flopping"; -- from DictEng -lin flop_V2 = mkV2 (mkV "flop" "flops" "flopped" "flopped" "flopping"); -- from DictEng -lin flophouse_N = mkN "flophouse" ; -lin floppy_A = mkA "floppy" "floppier"; -- from DictEng -lin floral_A = compoundA (mkA "floral"); -- from DictEng -lin floret_N = mkN "floret" ; -lin floricultural_A = mkA "floricultural" ; -lin floriculture_N = mkN "floriculture" ; -- from DictEng -lin florid_A = compoundA (mkA "florid"); -- from DictEng -lin floridly_Adv = mkAdv "floridly" ; -lin florilegium_N = mkN "florilegium" ; -lin florin_N = mkN "florin" "florins"; -- from DictEng -lin florist_N = mkN "florist" "florists"; -- from DictEng -lin floss_N = mkN "floss" ; -- from DictEng -lin floss_V = mkV "floss" ; -lin floss_V2 = mkV2 (mkV "floss") ; -lin flotation_N = mkN "flotation" "flotations"; -- from DictEng -lin flotilla_N = mkN "flotilla" "flotillas"; -- from DictEng -lin flotsam_N = mkN "flotsam" ; -- from DictEng -lin flounce_N = mkN "flounce" "flounces"; -- from DictEng -lin flounce_V = mkV "flounce" "flounces" "flounced" "flounced" "flouncing"; -- from DictEng -lin flounce_V2 = mkV2 (mkV "flounce" "flounces" "flounced" "flounced" "flouncing"); -- from DictEng -lin flounder_N = mkN "flounder" "flounders"; -- from DictEng -lin flounder_V = mkV "flounder" "flounders" "floundered" "floundered" "floundering"; -- from DictEng -lin flour_N = mkN "flour" ; -- from DictEng -lin flour_V2 = mkV2 (mkV "flour" "flours" "floured" "floured" "flouring"); -- from DictEng -lin flourish_N = mkN "flourish" "flourishes"; -- from DictEng -lin flourish_V = mkV "flourish" "flourishes" "flourished" "flourished" "flourishing"; -- from DictEng -lin flourish_V2 = mkV2 (mkV "flourish" "flourishes" "flourished" "flourished" "flourishing"); -- from DictEng -lin floury_A = mkA "floury" "flourier"; -- from DictEng -lin flout_V2 = mkV2 (mkV "flout" "flouts" "flouted" "flouted" "flouting"); -- from DictEng -lin flow_N = mkN "flow"; -- from DictEng -lin flow_V = mkV "flow" "flows" "flowed" "flowed" "flowing"; -- from DictEng -lin flowage_N = mkN "flowage" ; -lin flower_N = mkN "flower" "flowers"; -- from DictEng -lin flower_V = mkV "flower" "flowers" "flowered" "flowered" "flowering"; -- from DictEng -lin flower_of_an_hour_N = mkN "flower of an hour" ; -lin flower_girl_N = mkN "flower - girl" "flower - girls"; -- from DictEng -lin flowerbed_N = mkN "flowerbed" "flowerbeds"; -- from DictEng -lin flowered_A = compoundA (mkA "flowered"); -- from DictEng -lin flowering_A = mkA "flowering" ; -lin flowerless_A = compoundA (mkA "flowerless"); -- from DictEng -lin flowerpot_N = mkN "flowerpot" "flowerpots"; -- from DictEng -lin flowery_A = mkA "flowery" "flowerier"; -- from DictEng -lin floxuridine_N = mkN "floxuridine" ; -lin flu_N = mkN "flu" ; -- from DictEng -lin fluctuate_V = mkV "fluctuate" "fluctuates" "fluctuated" "fluctuated" "fluctuating"; -- from DictEng -lin fluctuating_A = mkA "fluctuating" ; -lin fluctuation_N = mkN "fluctuation" "fluctuations"; -- from DictEng -lin flue_N = mkN "flue" "flues"; -- from DictEng -lin fluency_N = mkN "fluency" ; -- from DictEng -lin fluent_A = compoundA (mkA "fluent"); -- from DictEng -lin fluently_Adv = mkAdv "fluently" ; -lin fluff_N = mkN "fluff" ; -- from DictEng -lin fluff_V2 = mkV2 (mkV "fluff" "fluffs" "fluffed" "fluffed" "fluffing"); -- from DictEng -lin fluffy_A = mkA "fluffy" "fluffier"; -- from DictEng -lin flugelhorn_N = mkN "flugelhorn" ; -lin fluid_A = compoundA (mkA "fluid"); -- from DictEng -lin fluid_N = mkN "fluid" "fluids"; -- from DictEng -lin fluidity_N = mkN "fluidity" "fluidities"; -- from DictEng -lin fluidounce_N = mkN "fluidounce" ; -lin fluidram_N = mkN "fluidram" ; -lin fluke_N = mkN "fluke" "flukes"; -- from DictEng -lin flume_N = mkN "flume" "flumes"; -- from DictEng -lin flummery_N = mkN "flummery" ; -lin flummox_V2 = mkV2 (mkV "flummox" "flummoxes" "flummoxed" "flummoxed" "flummoxing"); -- from DictEng -lin flunitrazepan_N = mkN "flunitrazepan" ; -lin flunk_V = mkV "flunk" "flunks" "flunked" "flunked" "flunking"; -- from DictEng -lin flunk_V2 = mkV2 (mkV "flunk" "flunks" "flunked" "flunked" "flunking"); -- from DictEng -lin flunkey_N = mkN "flunkey" "flunkeys"; -- from DictEng -lin flunky_N = mkN "flunky" "flunkies"; -- from DictEng -lin fluorapatite_N = mkN "fluorapatite" ; -lin fluoresce_V = mkV "fluoresce" ; -lin fluorescein_N = mkN "fluorescein" ; -lin fluorescence_N = mkN "fluorescence" "fluorescences"; -- from DictEng -lin fluorescent_A = compoundA (mkA "fluorescent"); -- from DictEng -lin fluorescent_N = mkN "fluorescent" ; -lin fluoridate_V2 = mkV2 (mkV "fluoridate" "fluoridates" "fluoridated" "fluoridated" "fluoridating"); -- from DictEng -lin fluoridation_N = mkN "fluoridation" "fluoridations"; -- from DictEng -lin fluoride_N = mkN "fluoride" "fluorides"; -- from DictEng -lin fluoridization_N = mkN "fluoridization" "fluoridizations"; -- from DictEng -lin fluoridize_V2 = mkV2 (mkV "fluoridize" "fluoridizes" "fluoridized" "fluoridized" "fluoridizing"); -- from DictEng -lin fluorine_N = mkN "fluorine" ; -- from DictEng -lin fluorite_N = mkN "fluorite" ; -lin fluoroboride_N = mkN "fluoroboride" ; -lin fluorocarbon_N = mkN "fluorocarbon" ; -lin fluorochrome_N = mkN "fluorochrome" ; -lin fluoroform_N = mkN "fluoroform" ; -lin fluoroscope_N = mkN "fluoroscope" ; -lin fluoroscopy_N = mkN "fluoroscopy" ; -lin fluorosis_N = mkN "fluorosis" ; -lin fluorouracil_N = mkN "fluorouracil" ; -lin fluosilicate_N = mkN "fluosilicate" ; -lin fluoxetine_N = mkN "fluoxetine" ; -lin fluphenazine_N = mkN "fluphenazine" ; -lin flurazepam_N = mkN "flurazepam" ; -lin flurbiprofen_N = mkN "flurbiprofen" ; -lin flurry_N = mkN "flurry" "flurries"; -- from DictEng -lin flurry_V2 = mkV2 (mkV "flurry" "flurries" "flurried" "flurried" "flurrying"); -- from DictEng -lin flush_A = compoundA (mkA "flush"); -- from DictEng -lin flush_Adv = mkAdv "flush" ; -lin flush_N = mkN "flush" "flushes"; -- from DictEng -lin flush_V = mkV "flush" "flushes" "flushed" "flushed" "flushing"; -- from DictEng -lin flush_V2 = mkV2 (mkV "flush" "flushes" "flushed" "flushed" "flushing"); -- from DictEng -lin flush_seamed_A = compoundA (mkA "flush seamed") ; -lin flushed_A = mkA "flushed" ; -lin fluster_N = mkN "fluster" "flusters"; -- from DictEng -lin fluster_V2 = mkV2 (mkV "fluster" "flusters" "flustered" "flustered" "flustering"); -- from DictEng -lin flustered_A = mkA "flustered" ; -lin flute_N = mkN "flute" "flutes"; -- from DictEng -lin flute_V = mkV "flute" "flutes" "fluted" "fluted" "fluting"; -- from DictEng -lin flute_V2 = mkV2 (mkV "flute" "flutes" "fluted" "fluted" "fluting"); -- from DictEng -lin fluting_N = mkN "fluting" ; -- from DictEng -lin flutist_N = mkN "flutist" "flutists"; -- from DictEng -lin flutter_N = mkN "flutter" "flutters"; -- from DictEng -lin flutter_V = mkV "flutter" "flutters" "fluttered" "fluttered" "fluttering"; -- from DictEng -lin flutter_V2 = mkV2 (mkV "flutter" "flutters" "fluttered" "fluttered" "fluttering"); -- from DictEng -lin fluvastatin_N = mkN "fluvastatin" ; -lin fluvial_A = compoundA (mkA "fluvial"); -- from DictEng -lin flux_N = mkN "flux" "fluxes"; -- from DictEng -lin fluxmeter_N = mkN "fluxmeter" ; -lin fly_A = compoundA (mkA "fly"); -- from DictEng -lin fly_N = mkN "fly" "flies"; -- from DictEng -lin fly_V = IrregEng.fly_V; -- from DictEng -lin fly_V2 = mkV2 (IrregEng.fly_V); -- from DictEng -lin fly_VS = mkVS (IrregEng.fly_V); -- from DictEng -lin fly_by_night_A = compoundA (mkA "fly by night") ; -lin fly_by_night_N = mkN "fly by night" ; -lin fly_fishing_N = mkN "fly - fishing" ; -- from DictEng -lin fly_fish_V = mkV "fly - fish" "fly - fishes" "fly - fished" "fly - fished" "fly - fishing"; -- from DictEng -lin fly_fishing_N = mkN "fly - fishing" ; -- from DictEng -lin fly_swat_N = mkN "fly - swat" "fly - swats"; -- from DictEng -lin fly_swatter_N = mkN "fly - swatter" "fly - swatters"; -- from DictEng -lin flyaway_A = mkA "flyaway" ; -lin flyblown_A = compoundA (mkA "flyblown"); -- from DictEng -lin flycatcher_N = mkN "flycatcher" "flycatchers"; -- from DictEng -lin flyer_N = mkN "flyer" "flyers"; -- from DictEng -lin flying_A = compoundA (mkA "flying"); -- from DictEng -lin flying_bomb_N = mkN "flying - bomb" "flying - bombs"; -- from DictEng -lin flying_fish_N = mkN "flying - fish" "flying - fish"; -- from DictEng -lin flying_fox_N = mkN "flying - fox" "flying - foxes"; -- from DictEng -lin flying_squad_N = mkN "flying - squad" "flying - squads"; -- from DictEng -lin flyleaf_N = mkN "flyleaf" "flyleaves" {- FIXME: guessed plural form -}; -- from DictEng -lin flyover_N = mkN "flyover" "flyovers"; -- from DictEng -lin flypaper_N = mkN "flypaper" "flypapers"; -- from DictEng -lin flypast_N = mkN "flypast" "flypasts"; -- from DictEng -lin flyspeck_N = mkN "flyspeck" ; -lin flytrap_N = mkN "flytrap" "flytraps"; -- from DictEng -lin flyweight_N = mkN "flyweight" "flyweights"; -- from DictEng -lin flywheel_N = mkN "flywheel" "flywheels"; -- from DictEng -lin fm_N = mkN "fm" ; -- from DictEng -lin fo_N = mkN "fo" ; -- from DictEng -lin fo'c'sle_N = mkN "fo'c'sle" "fo'c'sles"; -- from DictEng -lin foal_N = mkN "foal" "foals"; -- from DictEng -lin foal_V = mkV "foal" "foals" "foaled" "foaled" "foaling"; -- from DictEng -lin foam_N = mkN "foam" "foams"; -- from DictEng -lin foam_V = mkV "foam" "foams" "foamed" "foamed" "foaming"; -- from DictEng -lin foam_V2 = mkV2 (mkV "foam") ; -lin foam_rubber_N = mkN "foam - rubber" ; -- from DictEng -lin foamflower_N = mkN "foamflower" ; -lin foaminess_N = mkN "foaminess" ; -lin foaming_A = mkA "foaming" ; -lin foamy_A = mkA "foamy" "foamier"; -- from DictEng -lin fob_N = mkN "fob" ; -lin fob_V2 = mkV2 (mkV "fob" "fobs" "fobbed" "fobbed" "fobbing"); -- from DictEng -lin focal_A = compoundA (mkA "focal"); -- from DictEng -lin focalization_N = mkN "focalization" ; -lin focally_Adv = mkAdv "focally" ; -lin focus_N = mkN "focus" "focuses"; -- from DictEng -lin focus_V = mkV "focus" "focuses" "focused" "focused" "focusing"; -- from DictEng -lin focus_V2 = mkV2 (mkV "focus" "focuses" "focused" "focused" "focusing"); -- from DictEng -lin focused_A = mkA "focused" ; -lin fodder_N = mkN "fodder" ; -- from DictEng -lin foe_N = mkN "foe" "foes"; -- from DictEng -lin foetal_A = compoundA (mkA "foetal"); -- from DictEng -lin foetus_N = mkN "foetus" "foetuses"; -- from DictEng -lin fog_N = mkN "fog" "fogs"; -- from DictEng -lin fog_V2 = mkV2 (mkV "fog" "fogs" "fogged" "fogged" "fogging"); -- from DictEng -lin fogbank_N = mkN "fogbank" "fogbanks"; -- from DictEng -lin fogbound_A = compoundA (mkA "fogbound"); -- from DictEng -lin fogey_N = mkN "fogey" "fogeys"; -- from DictEng -lin fogged_A = mkA "fogged" ; -lin foggy_A = mkA "foggy" "foggier"; -- from DictEng -lin foghorn_N = mkN "foghorn" "foghorns"; -- from DictEng -lin foglamp_N = mkN "foglamp" "foglamps"; -- from DictEng -lin fogsignal_N = mkN "fogsignal" "fogsignals"; -- from DictEng -lin fogyish_A = mkA "fogyish" ; -lin fohn_N = mkN "fohn" ; -lin foible_N = mkN "foible" "foibles"; -- from DictEng -lin foil_N = mkN "foil" "foils"; -- from DictEng -lin foil_V2 = mkV2 (mkV "foil" "foils" "foiled" "foiled" "foiling"); -- from DictEng -lin foist_V2 = mkV2 (mkV "foist" "foists" "foisted" "foisted" "foisting"); -- from DictEng -lin fold_N = mkN "fold" "folds"; -- from DictEng -lin fold_V = mkV "fold" "folds" "folded" "folded" "folding"; -- from DictEng -lin fold_V2 = mkV2 (mkV "fold" "folds" "folded" "folded" "folding"); -- from DictEng -lin foldable_A = mkA "foldable" ; -lin folder_N = mkN "folder" "folders"; -- from DictEng -lin folderal_N = mkN "folderal" ; -lin folderol_N = mkN "folderol" ; -lin foldout_N = mkN "foldout" ; -lin foliaceous_A = mkA "foliaceous" ; -lin foliage_N = mkN "foliage" ; -- from DictEng -lin foliate_A = mkA "foliate" ; -lin foliation_N = mkN "foliation" ; -lin folio_N = mkN "folio" "folios"; -- from DictEng -lin foliolate_A = mkA "foliolate" ; -lin folium_N = mkN "folium" ; -lin folk_N = mkN "folk" "folks"; -- from DictEng -lin folk_dance_N = mkN "folk - dance" "folk - dances"; -- from DictEng -lin folklore_N = mkN "folklore" ; -- from DictEng -lin folks_N = mkN "folks" ; -lin folksong_N = mkN "folksong" "folksongs"; -- from DictEng -lin folksy_A = compoundA (mkA "folksy"); -- from DictEng -lin folktale_N = mkN "folktale" "folktales"; -- from DictEng -lin follicle_N = mkN "follicle" ; -lin follicular_A = mkA "follicular" ; -lin folliculitis_N = mkN "folliculitis" ; -lin follies_N = mkN "follies" ; -lin follow_V = mkV "follow" "follows" "followed" "followed" "following"; -- from DictEng -lin follow_V2 = mkV2 (mkV "follow" "follows" "followed" "followed" "following"); -- from DictEng -lin follow_VS = mkVS (mkV "follow" "follows" "followed" "followed" "following"); -- from DictEng -lin follow_on_N = mkN "follow - on" "follow - ons"; -- from DictEng -lin follow_through_N = mkN "follow - through" "follow - throughs"; -- from DictEng -lin follow_up_N = mkN "follow - up" "follow - ups"; -- from DictEng -lin follow_on_N = mkN "follow - on" "follow - ons"; -- from DictEng -lin follow_through_N = mkN "follow - through" "follow - throughs"; -- from DictEng -lin follow_up_N = mkN "follow - up" "follow - ups"; -- from DictEng -lin follower_N = mkN "follower" "followers"; -- from DictEng -lin following_A = compoundA (mkA "following"); -- from DictEng -lin following_N = mkN "following" "followings"; -- from DictEng -lin folly_N = mkN "folly" "follies"; -- from DictEng -lin foment_V2 = mkV2 (mkV "foment" "foments" "fomented" "fomented" "fomenting"); -- from DictEng -lin fomentation_N = mkN "fomentation" "fomentations"; -- from DictEng -lin fomite_N = mkN "fomite" ; -lin fond_A = mkA "fond" "fonder"; -- from DictEng -lin fondant_N = mkN "fondant" "fondants"; -- from DictEng -lin fondle_V2 = mkV2 (mkV "fondle" "fondles" "fondled" "fondled" "fondling"); -- from DictEng -lin fondler_N = mkN "fondler" ; -lin fondly_Adv = mkAdv "fondly" ; -lin fondness_N = mkN "fondness" ; -- from DictEng -lin fondue_N = mkN "fondue" ; -lin font_N = mkN "font" "fonts"; -- from DictEng -lin fontanelle_N = mkN "fontanelle" ; -lin food_N = mkN "food" "foods"; -- from DictEng -lin foodless_A = compoundA (mkA "foodless"); -- from DictEng -lin foodstuff_N = mkN "foodstuff" "foodstuffs"; -- from DictEng -lin fool_N = mkN "fool" "fools"; -- from DictEng -lin fool_V = mkV "fool" "fools" "fooled" "fooled" "fooling"; -- from DictEng -lin fool_V2 = mkV2 (mkV "fool" "fools" "fooled" "fooled" "fooling"); -- from DictEng -lin foolery_N = mkN "foolery" ; -- from DictEng -lin foolhardiness_N = mkN "foolhardiness" ; -- from DictEng -lin foolhardy_A = compoundA (mkA "foolhardy"); -- from DictEng -lin fooling_A = mkA "fooling" ; -lin foolish_A = compoundA (mkA "foolish"); -- from DictEng -lin foolishly_Adv = mkAdv "foolishly" ; -lin foolishness_N = mkN "foolishness" ; -- from DictEng -lin foolproof_A = compoundA (mkA "foolproof"); -- from DictEng -lin foolscap_N = mkN "foolscap" ; -- from DictEng -lin foot_N = mkN "foot" "feet" {- FIXME: guessed plural form -}; -- from DictEng -lin foot_V = mkV "foot" "foots" "footed" "footed" "footing"; -- from DictEng -lin foot_V2 = mkV2 (mkV "foot" "foots" "footed" "footed" "footing"); -- from DictEng -lin foot_lambert_N = mkN "foot lambert" ; -lin foot_pound_N = mkN "foot - pound" "foot - pounds"; -- from DictEng -lin foot_poundal_N = mkN "foot poundal" ; -lin foot_shaped_A = compoundA (mkA "foot shaped") ; -lin foot_ton_N = mkN "foot ton" ; -lin foot_and_mouth_A = compoundA (mkA "foot - and - mouth"); -- from DictEng -lin foot_and_mouth_N = mkN "foot - and - mouth" ; -- from DictEng -lin foot_bath_N = mkN "foot - bath" "foot - baths"; -- from DictEng -lin foot_pound_N = mkN "foot - pound" "foot - pounds"; -- from DictEng -lin foot_race_N = mkN "foot - race" "foot - races"; -- from DictEng -lin foot_rot_N = mkN "foot - rot" ; -- from DictEng -lin footage_N = mkN "footage" ; -- from DictEng -lin football_N = mkN "football" "footballs"; -- from DictEng -lin football_shaped_A = compoundA (mkA "football shaped") ; -lin footballer_N = mkN "footballer" "footballers"; -- from DictEng -lin footbath_N = mkN "footbath" ; -lin footboard_N = mkN "footboard" "footboards"; -- from DictEng -lin footbridge_N = mkN "footbridge" "footbridges"; -- from DictEng -lin footcandle_N = mkN "footcandle" ; -lin footed_A = compoundA (mkA "footed"); -- from DictEng -lin footedness_N = mkN "footedness" ; -lin footer_N = mkN "footer" "footers"; -- from DictEng -lin footfall_N = mkN "footfall" "footfalls"; -- from DictEng -lin footfault_N = mkN "footfault" "footfaults"; -- from DictEng -lin foothill_N = mkN "foothill" ; -lin foothold_N = mkN "foothold" "footholds"; -- from DictEng -lin footing_N = mkN "footing" "IRREG"; -- from DictEng -lin footle_V = mkV "footle" "footles" "footled" "footled" "footling"; -- from DictEng -lin footle_V2 = mkV2 (mkV "footle" "footles" "footled" "footled" "footling"); -- from DictEng -lin footless_A = mkA "footless" ; -lin footlights_N = mkN "footlights" ; -lin footling_A = compoundA (mkA "footling"); -- from DictEng -lin footlocker_N = mkN "footlocker" ; -lin footloose_A = compoundA (mkA "footloose"); -- from DictEng -lin footman_N = mkN "footman" "footmen" {- FIXME: guessed plural form -}; -- from DictEng -lin footmark_N = mkN "footmark" "footmarks"; -- from DictEng -lin footnote_N = mkN "footnote" "footnotes"; -- from DictEng -lin footpad_N = mkN "footpad" ; -lin footpath_N = mkN "footpath" "footpaths"; -- from DictEng -lin footplate_N = mkN "footplate" "footplates"; -- from DictEng -lin footprint_N = mkN "footprint" "footprints"; -- from DictEng -lin footrace_N = mkN "footrace" ; -lin footslog_V = mkV "footslog" "footslogs" "footslogged" "footslogged" "footslogging"; -- from DictEng -lin footslogger_N = mkN "footslogger" "footsloggers"; -- from DictEng -lin footsore_A = compoundA (mkA "footsore"); -- from DictEng -lin footstep_N = mkN "footstep" "footsteps"; -- from DictEng -lin footsteps_of_spring_N = mkN "footsteps of spring" ; -lin footstool_N = mkN "footstool" "footstools"; -- from DictEng -lin footsure_A = compoundA (mkA "footsure"); -- from DictEng -lin footwall_N = mkN "footwall" ; -lin footwear_N = mkN "footwear" ; -- from DictEng -lin footwork_N = mkN "footwork" ; -- from DictEng -lin fop_N = mkN "fop" "fops"; -- from DictEng -lin foppish_A = compoundA (mkA "foppish"); -- from DictEng -lin foppishness_N = mkN "foppishness" ; -lin for_Prep = mkPrep "for"; -- from DictEng -lin for_a_song_Adv = mkAdv "for a song" ; -lin for_all_practical_purposes_Adv = mkAdv "for all practical purposes" ; -lin for_dear_life_Adv = mkAdv "for dear life" ; -lin for_example_Adv = mkAdv "for example" ; -lin for_good_measure_Adv = mkAdv "for good measure" ; -lin for_keeps_Adv = mkAdv "for keeps" ; -lin for_love_or_money_Adv = mkAdv "for love or money" ; -lin for_one_Adv = mkAdv "for one" ; -lin for_short_Adv = mkAdv "for short" ; -lin for_sure_A = compoundA (mkA "for sure") ; -lin for_that_matter_Adv = mkAdv "for that matter" ; -lin for_the_asking_Adv = mkAdv "for the asking" ; -lin for_the_moment_Adv = mkAdv "for the moment" ; -lin forage_N = mkN "forage" ; -- from DictEng -lin forage_V = mkV "forage" "forages" "foraged" "foraged" "foraging"; -- from DictEng -lin forager_N = mkN "forager" ; -lin foraging_N = mkN "foraging" ; -lin foram_N = mkN "foram" ; -lin foramen_N = mkN "foramen" ; -lin foray_N = mkN "foray" "forays"; -- from DictEng -lin foray_V = mkV "foray" "forays" "forayed" "forayed" "foraying"; -- from DictEng -lin forbear_N = mkN "forbear" "forbears"; -- from DictEng -lin forbear_V = mkV "for" IrregEng.bear_V; -- from DictEng -lin forbear_V2 = mkV2 (mkV "for" IrregEng.bear_V); -- from DictEng -lin forbearance_N = mkN "forbearance" ; -- from DictEng -lin forbearing_A = mkA "forbearing" ; -lin forbid_V2 = mkV2 (IrregEng.forbid_V); -- from DictEng -lin forbidden_A = mkA "forbidden" ; -lin forbidding_A = compoundA (mkA "forbidding"); -- from DictEng -lin forbiddingly_Adv = mkAdv "forbiddingly" ; -lin force_N = mkN "force" "forces"; -- from DictEng -lin force_V = mkV "force"; -- from DictEng -lin force_V2 = mkV2 (mkV "force"); -- from DictEng -lin force_V2V = mkV2V (mkV "force" "forces" "forced" "forced" "forcing") noPrep to_Prep; -- from DictEng -lin force_VS = mkVS (mkV "force"); -- from DictEng -lin force_feed_V2 = mkV2 (mkV "force-" IrregEng.feed_V); -- from DictEng -lin force_feed_V2 = mkV2 (mkV "force-" IrregEng.feed_V); -- from DictEng -lin force_land_V = mkV "force - land" "force - lands" "force - landed" "force - landed" "force - landing"; -- from DictEng -lin force_land_V2 = mkV2 (mkV "force - land" "force - lands" "force - landed" "force - landed" "force - landing"); -- from DictEng -lin force_majeure_N = mkN "force majeure" ; -- from DictEng -lin force_out_V2 = mkV2 (mkV "force out") ; -lin forced_A = mkA "forced" ; -lin forceful_A = compoundA (mkA "forceful"); -- from DictEng -lin forcefully_Adv = mkAdv "forcefully" ; -lin forcefulness_N = mkN "forcefulness" ; -- from DictEng -lin forceless_A = mkA "forceless" ; -lin forcemeat_N = mkN "forcemeat" ; -- from DictEng -lin forceps_N = mkN "forceps" ; -lin forcible_A = compoundA (mkA "forcible"); -- from DictEng -lin forcibly_Adv = mkAdv "forcibly" ; -lin forcipate_A = mkA "forcipate" ; -lin ford_N = mkN "ford" "fords"; -- from DictEng -lin ford_V2 = mkV2 (mkV "ford" "fords" "forded" "forded" "fording"); -- from DictEng -lin fordable_A = compoundA (mkA "fordable"); -- from DictEng -lin fore_A = compoundA (mkA "fore"); -- from DictEng -lin fore_Adv = mkAdv "fore"; -- from DictEng -lin fore_N = mkN "fore" ; -- from DictEng -lin fore_and_aft_A = compoundA (mkA "fore and aft") ; -lin fore_and_after_N = mkN "fore and after" ; -lin fore_topmast_N = mkN "fore topmast" ; -lin fore_topsail_N = mkN "fore topsail" ; -lin forearm_N = mkN "forearm" "forearms"; -- from DictEng -lin forearm_V2 = mkV2 (mkV "forearm" "forearms" "forearmed" "forearmed" "forearming"); -- from DictEng -lin forebear_N = mkN "forebear" ; -lin forebode_V2 = mkV2 (mkV "forebode" "forebodes" "foreboded" "foreboded" "foreboding"); -- from DictEng -lin foreboding_N = mkN "foreboding" "forebodings"; -- from DictEng -lin forebrain_N = mkN "forebrain" ; -lin forecast_N = mkN "forecast" "forecasts"; -- from DictEng -lin forecast_V = mkV "forecast" "forecasts" "forecasted" "forecasted" "forecasting"; -- from DictEng -lin forecast_V2 = mkV2 (mkV "forecast" "forecasts" "forecasted" "forecasted" "forecasting"); -- from DictEng -lin forecast_VS = mkVS (mkV "forecast" "forecasts" "forecasted" "forecasted" "forecasting"); -- from DictEng -lin forecaster_N = mkN "forecaster" "forecasters"; -- from DictEng -lin forecastle_N = mkN "forecastle" "forecastles"; -- from DictEng -lin foreclose_V = mkV "foreclose" "forecloses" "foreclosed" "foreclosed" "foreclosing"; -- from DictEng -lin foreclose_V2 = mkV2 (mkV "foreclose" "forecloses" "foreclosed" "foreclosed" "foreclosing"); -- from DictEng -lin foreclosure_N = mkN "foreclosure" "foreclosures"; -- from DictEng -lin forecourt_N = mkN "forecourt" "forecourts"; -- from DictEng -lin foredeck_N = mkN "foredeck" ; -lin foredoom_V2 = mkV2 (mkV "foredoom" "foredooms" "foredoomed" "foredoomed" "foredooming"); -- from DictEng -lin forefather_N = mkN "forefather" "forefathers"; -- from DictEng -lin forefinger_N = mkN "forefinger" "forefingers"; -- from DictEng -lin forefoot_N = mkN "forefoot" "forefeet" {- FIXME: guessed plural form -}; -- from DictEng -lin forefront_N = mkN "forefront" "forefronts"; -- from DictEng -lin foregather_V = mkV "foregather" "foregathers" "foregathered" "foregathered" "foregathering"; -- from DictEng -lin forego_V = mkV "fore" IrregEng.go_V; -- from DictEng -lin forego_V2 = mkV2 (mkV "fore" IrregEng.go_V); -- from DictEng -lin foregoing_A = compoundA (mkA "foregoing"); -- from DictEng -lin foregone_A = compoundA (mkA "foregone"); -- from DictEng -lin foreground_N = mkN "foreground" "foregrounds"; -- from DictEng -lin forehand_A = compoundA (mkA "forehand"); -- from DictEng -lin forehand_N = mkN "forehand" ; -lin forehanded_A = mkA "forehanded" ; -lin forehead_N = mkN "forehead" "foreheads"; -- from DictEng -lin foreign_A = compoundA (mkA "foreign"); -- from DictEng -lin foreign_born_A = compoundA (mkA "foreign born") ; -lin foreigner_N = mkN "foreigner" "foreigners"; -- from DictEng -lin foreignness_N = mkN "foreignness" ; -lin foreknow_V = mkV "fore" IrregEng.know_V; -- from DictEng -lin foreknow_V2 = mkV2 (mkV "fore" IrregEng.know_V); -- from DictEng -lin foreknowledge_N = mkN "foreknowledge" ; -- from DictEng -lin foreland_N = mkN "foreland" "forelands"; -- from DictEng -lin foreleg_N = mkN "foreleg" "forelegs"; -- from DictEng -lin forelimb_N = mkN "forelimb" ; -lin forelock_N = mkN "forelock" "forelocks"; -- from DictEng -lin foreman_N = mkN "foreman" "foremen" {- FIXME: guessed plural form -}; -- from DictEng -lin foremanship_N = mkN "foremanship" ; -lin foremast_N = mkN "foremast" "foremasts"; -- from DictEng -lin foremost_A = compoundA (mkA "foremost"); -- from DictEng -lin foremost_Adv = mkAdv "foremost"; -- from DictEng -lin foremother_N = mkN "foremother" ; -lin forename_N = mkN "forename" "forenames"; -- from DictEng -lin forenoon_N = mkN "forenoon" "forenoons"; -- from DictEng -lin forensic_A = compoundA (mkA "forensic"); -- from DictEng -lin forensics_N = mkN "forensics" ; -lin foreordain_V2 = mkV2 (mkV "foreordain" "foreordains" "foreordained" "foreordained" "foreordaining"); -- from DictEng -lin foreordained_A = mkA "foreordained" ; -lin forepaw_N = mkN "forepaw" ; -lin foreperson_N = mkN "foreperson" ; -lin foreplay_N = mkN "foreplay" ; -lin forequarter_N = mkN "forequarter" ; -lin forerunner_N = mkN "forerunner" "forerunners"; -- from DictEng -lin foresail_N = mkN "foresail" "foresails"; -- from DictEng -lin foresee_V2 = mkV2 (mkV "fore" IrregEng.see_V); -- from DictEng -lin foreseeable_A = compoundA (mkA "foreseeable"); -- from DictEng -lin foreshadow_V2 = mkV2 (mkV "foreshadow" "foreshadows" "foreshadowed" "foreshadowed" "foreshadowing"); -- from DictEng -lin foreshank_N = mkN "foreshank" ; -lin foreshock_N = mkN "foreshock" ; -lin foreshore_N = mkN "foreshore" "foreshores"; -- from DictEng -lin foreshorten_V2 = mkV2 (mkV "foreshorten" "foreshortens" "foreshortened" "foreshortened" "foreshortening"); -- from DictEng -lin foresight_N = mkN "foresight" ; -- from DictEng -lin foreskin_N = mkN "foreskin" "foreskins"; -- from DictEng -lin forest_N = mkN "forest" "forests"; -- from DictEng -lin forestall_V2 = mkV2 (mkV "forestall" "forestalls" "forestalled" "forestalled" "forestalling"); -- from DictEng -lin forestay_N = mkN "forestay" ; -lin forested_A = mkA "forested" ; -lin forester_N = mkN "forester" "foresters"; -- from DictEng -lin forestiera_N = mkN "forestiera" ; -lin forestry_N = mkN "forestry" ; -- from DictEng -lin foreswear_V2 = mkV2 (mkV "fore" IrregEng.swear_V); -- from DictEng -lin foretaste_N = mkN "foretaste" "foretastes"; -- from DictEng -lin foretell_V2 = mkV2 (mkV "fore" IrregEng.tell_V); -- from DictEng -lin forethought_N = mkN "forethought" ; -- from DictEng -lin forethoughtful_A = mkA "forethoughtful" ; -lin foretop_N = mkN "foretop" "foretops"; -- from DictEng -lin forever_Adv = mkAdv "forever"; -- from DictEng -lin forewarn_V2 = mkV2 (mkV "forewarn" "forewarns" "forewarned" "forewarned" "forewarning"); -- from DictEng -lin forewarning_N = mkN "forewarning" ; -lin forewing_N = mkN "forewing" ; -lin forewoman_N = mkN "forewoman" "forewomen" {- FIXME: guessed plural form -}; -- from DictEng -lin foreword_N = mkN "foreword" "forewords"; -- from DictEng -lin forfeit_N = mkN "forfeit" "forfeits"; -- from DictEng -lin forfeit_V2 = mkV2 (mkV "forfeit" "forfeits" "forfeited" "forfeited" "forfeiting"); -- from DictEng -lin forfeiture_N = mkN "forfeiture" ; -- from DictEng -lin forgather_V = mkV "forgather" "forgathers" "forgathered" "forgathered" "forgathering"; -- from DictEng -lin forge_N = mkN "forge" "forges"; -- from DictEng -lin forge_V = mkV "forge" "forges" "forged" "forged" "forging"; -- from DictEng -lin forge_V2 = mkV2 (mkV "forge" "forges" "forged" "forged" "forging"); -- from DictEng -lin forger_N = mkN "forger" "forgers"; -- from DictEng -lin forgery_N = mkN "forgery" "forgeries"; -- from DictEng -lin forget_V = IrregEng.forget_V; -- from DictEng -lin forget_V2 = mkV2 (IrregEng.forget_V); -- from DictEng -lin forget_VS = mkVS (IrregEng.forget_V); -- from DictEng -lin forget_me_not_N = mkN "forget - me - not" "forget - me - nots"; -- from DictEng -lin forget_me_not_N = mkN "forget - me - not" "forget - me - nots"; -- from DictEng -lin forgetful_A = compoundA (mkA "forgetful"); -- from DictEng -lin forgetfully_Adv = mkAdv "forgetfully" ; -lin forgetfulness_N = mkN "forgetfulness" ; -- from DictEng -lin forgettable_A = mkA "forgettable" ; -lin forging_N = mkN "forging" "forgings"; -- from DictEng -lin forgivable_A = compoundA (mkA "forgivable"); -- from DictEng -lin forgive_V = IrregEng.forgive_V; -- from DictEng -lin forgive_V2 = mkV2 (IrregEng.forgive_V); -- from DictEng -lin forgiveness_N = mkN "forgiveness" ; -- from DictEng -lin forgiving_A = compoundA (mkA "forgiving"); -- from DictEng -lin forgivingly_Adv = mkAdv "forgivingly" ; -lin forgivingness_N = mkN "forgivingness" ; -lin forgo_V2 = mkV2 (mkV "for" IrregEng.go_V); -- from DictEng -lin forint_N = mkN "forint" ; -lin fork_N = mkN "fork" "forks"; -- from DictEng -lin fork_V = mkV "fork" "forks" "forked" "forked" "forking"; -- from DictEng -lin fork_V2 = mkV2 (mkV "fork" "forks" "forked" "forked" "forking"); -- from DictEng -lin forked_A = compoundA (mkA "forked"); -- from DictEng -lin forklift_N = mkN "forklift" ; -lin forlorn_A = compoundA (mkA "forlorn"); -- from DictEng -lin forlornly_Adv = mkAdv "forlornly" ; -lin forlornness_N = mkN "forlornness" ; -- from DictEng -lin form_N = mkN "form" "forms"; -- from DictEng -lin form_V = mkV "form" "forms" "formed" "formed" "forming"; -- from DictEng -lin form_V2 = mkV2 (mkV "form" "forms" "formed" "formed" "forming"); -- from DictEng -lin form_only_A = compoundA (mkA "form only") ; -lin formal_A = compoundA (mkA "formal"); -- from DictEng -lin formaldehyde_N = mkN "formaldehyde" ; -- from DictEng -lin formalin_N = mkN "formalin" ; -- from DictEng -lin formalism_N = mkN "formalism" ; -- from DictEng -lin formalistic_A = mkA "formalistic" ; -lin formality_N = mkN "formality" "formalities"; -- from DictEng -lin formalization_N = mkN "formalization" ; -lin formalize_V2 = mkV2 (mkV "formalize" "formalizes" "formalized" "formalized" "formalizing"); -- from DictEng -lin formalized_A = mkA "formalized" ; -lin formally_Adv = mkAdv "formally" ; -lin formalwear_N = mkN "formalwear" ; -lin format_N = mkN "format" "formats"; -- from DictEng -lin formation_N = mkN "formation" "formations"; -- from DictEng -lin formative_A = compoundA (mkA "formative"); -- from DictEng -lin formative_N = mkN "formative" ; -lin formed_A = mkA "formed" ; -lin former_A = compoundA (mkA "former"); -- from DictEng -lin former_N = mkN "former" ; -lin formic_A = compoundA (mkA "formic"); -- from DictEng -lin formica_N = mkN "formica" ; -- from DictEng -lin formication_N = mkN "formication" ; -lin formidability_N = mkN "formidability" ; -lin formidable_A = compoundA (mkA "formidable"); -- from DictEng -lin formidably_Adv = mkAdv "formidably" ; -lin formless_A = compoundA (mkA "formless"); -- from DictEng -lin formlessly_Adv = mkAdv "formlessly" ; -lin formula_N = mkN "formula" "formulas"; -- from DictEng -lin formulaic_A = mkA "formulaic" ; -lin formulary_A = mkA "formulary" ; -lin formulary_N = mkN "formulary" ; -lin formulate_V = mkV "formulate" ; -lin formulate_V2 = mkV2 (mkV "formulate" "formulates" "formulated" "formulated" "formulating"); -- from DictEng -lin formulated_A = mkA "formulated" ; -lin formulation_N = mkN "formulation" "formulations"; -- from DictEng -lin fornicate_V = mkV "fornicate" "fornicates" "fornicated" "fornicated" "fornicating"; -- from DictEng -lin fornication_N = mkN "fornication" ; -- from DictEng -lin fornix_N = mkN "fornix" ; -lin forrader_Adv = mkAdv "forrader"; -- from DictEng -lin forsake_V2 = mkV2 (IrregEng.forsake_V); -- from DictEng -lin forsaking_N = mkN "forsaking" ; -lin forsooth_Adv = mkAdv "forsooth"; -- from DictEng -lin forswear_V2 = mkV2 (mkV "for" IrregEng.swear_V); -- from DictEng -lin forsythia_N = mkN "forsythia" ; -- from DictEng -lin fort_N = mkN "fort" "forts"; -- from DictEng -lin forte_A = compoundA (mkA "forte"); -- from DictEng -lin forte_Adv = mkAdv "forte"; -- from DictEng -lin forte_N = mkN "forte" "fortes"; -- from DictEng -lin fortemente_A = mkA "fortemente" ; -lin forth_Adv = mkAdv "forth"; -- from DictEng -lin forthcoming_A = compoundA (mkA "forthcoming"); -- from DictEng -lin forthright_A = compoundA (mkA "forthright"); -- from DictEng -lin forthwith_Adv = mkAdv "forthwith"; -- from DictEng -lin forties_N = mkN "forties" ; -lin fortieth_A = compoundA (mkA "fortieth"); -- from DictEng -lin fortieth_N = mkN "fortieth" "fortieths"; -- from DictEng -lin fortification_N = mkN "fortification" "fortifications"; -- from DictEng -lin fortified_A = mkA "fortified" ; -lin fortify_V2 = mkV2 (mkV "fortify" "fortifies" "fortified" "fortified" "fortifying"); -- from DictEng -lin fortissimo_A = compoundA (mkA "fortissimo"); -- from DictEng -lin fortissimo_Adv = mkAdv "fortissimo"; -- from DictEng -lin fortitude_N = mkN "fortitude" ; -- from DictEng -lin fortnight_N = mkN "fortnight" "fortnights"; -- from DictEng -lin fortnightly_A = compoundA (mkA "fortnightly"); -- from DictEng -lin fortnightly_Adv = mkAdv "fortnightly"; -- from DictEng -lin fortress_N = mkN "fortress" "fortresses"; -- from DictEng -lin fortuitous_A = compoundA (mkA "fortuitous"); -- from DictEng -lin fortuitousness_N = mkN "fortuitousness" ; -lin fortunate_A = compoundA (mkA "fortunate"); -- from DictEng -lin fortunately_Adv = mkAdv "fortunately" ; -lin fortune_N = mkN "fortune" "fortunes"; -- from DictEng -lin fortuneteller_N = mkN "fortuneteller" ; -lin fortunetelling_N = mkN "fortunetelling" ; -lin forty_A = compoundA (mkA "forty"); -- from DictEng -lin forty_N = mkN "forty" "forties"; -- from DictEng -lin forty_eight_A = compoundA (mkA "forty eight") ; -lin forty_eighth_A = compoundA (mkA "forty eighth") ; -lin forty_fifth_A = compoundA (mkA "forty fifth") ; -lin forty_first_A = compoundA (mkA "forty first") ; -lin forty_five_A = compoundA (mkA "forty five") ; -lin forty_five_N = mkN "forty five" ; -lin forty_four_A = compoundA (mkA "forty four") ; -lin forty_fourth_A = compoundA (mkA "forty fourth") ; -lin forty_nine_A = compoundA (mkA "forty nine") ; -lin forty_niner_N = mkN "forty niner" ; -lin forty_ninth_A = compoundA (mkA "forty ninth") ; -lin forty_one_A = compoundA (mkA "forty one") ; -lin forty_second_A = compoundA (mkA "forty second") ; -lin forty_seven_A = compoundA (mkA "forty seven") ; -lin forty_seventh_A = compoundA (mkA "forty seventh") ; -lin forty_six_A = compoundA (mkA "forty six") ; -lin forty_sixth_A = compoundA (mkA "forty sixth") ; -lin forty_third_A = compoundA (mkA "forty third") ; -lin forty_three_A = compoundA (mkA "forty three") ; -lin forty_two_A = compoundA (mkA "forty two") ; -lin fortyish_A = compoundA (mkA "fortyish"); -- from DictEng -lin forum_N = mkN "forum" "forums"; -- from DictEng -lin forward_A = compoundA (mkA "forward"); -- from DictEng -lin forward_Adv = mkAdv "forward"; -- from DictEng -lin forward_N = mkN "forward" "forwards"; -- from DictEng -lin forward_V2 = mkV2 (mkV "forward" "forwards" "forwarded" "forwarded" "forwarding"); -- from DictEng -lin forwarding_N = mkN "forwarding" ; -lin forwardness_N = mkN "forwardness" ; -- from DictEng -lin forwards_Adv = mkAdv "forwards"; -- from DictEng -lin foryml_N = mkN "foryml" ; -lin fossa_N = mkN "fossa" ; -lin fosse_N = mkN "fosse" "fosses"; -- from DictEng -lin fossil_A = mkA "fossil" ; -lin fossil_N = mkN "fossil" "fossils"; -- from DictEng -lin fossiliferous_A = mkA "fossiliferous" ; -lin fossilization_N = mkN "fossilization" "fossilizations"; -- from DictEng -lin fossilize_V = mkV "fossilize" "fossilizes" "fossilized" "fossilized" "fossilizing"; -- from DictEng -lin fossilize_V2 = mkV2 (mkV "fossilize" "fossilizes" "fossilized" "fossilized" "fossilizing"); -- from DictEng -lin fossilized_A = mkA "fossilized" ; -lin fossorial_A = mkA "fossorial" ; -lin foster_A = mkA "foster" ; -lin foster_V2 = mkV2 (mkV "foster" "fosters" "fostered" "fostered" "fostering"); -- from DictEng -lin foster_brother_N = mkN "foster - brother" "foster - brothers"; -- from DictEng -lin foster_child_N = mkN "foster - child" "foster - children" {- FIXME: guessed plural form -}; -- from DictEng -lin foster_daughter_N = mkN "foster daughter" ; -lin foster_father_N = mkN "foster - father" "foster - fathers"; -- from DictEng -lin foster_mother_N = mkN "foster - mother" "foster - mothers"; -- from DictEng -lin foster_nurse_N = mkN "foster nurse" ; -lin foster_parent_N = mkN "foster - parent" "foster - parents"; -- from DictEng -lin foster_sister_N = mkN "foster - sister" "foster - sisters"; -- from DictEng -lin foster_son_N = mkN "foster son" ; -lin foster_brother_N = mkN "foster - brother" "foster - brothers"; -- from DictEng -lin foster_child_N = mkN "foster - child" "foster - children" {- FIXME: guessed plural form -}; -- from DictEng -lin foster_father_N = mkN "foster - father" "foster - fathers"; -- from DictEng -lin foster_mother_N = mkN "foster - mother" "foster - mothers"; -- from DictEng -lin foster_parent_N = mkN "foster - parent" "foster - parents"; -- from DictEng -lin foster_sister_N = mkN "foster - sister" "foster - sisters"; -- from DictEng -lin fostering_N = mkN "fostering" ; -lin fothergilla_N = mkN "fothergilla" ; -lin foul_A = mkA "foul" "fouler"; -- from DictEng -lin foul_N = mkN "foul" "fouls"; -- from DictEng -lin foul_V = mkV "foul" "fouls" "fouled" "fouled" "fouling"; -- from DictEng -lin foul_V2 = mkV2 (mkV "foul" "fouls" "fouled" "fouled" "fouling"); -- from DictEng -lin foul_mouthed_A = compoundA (mkA "foul - mouthed"); -- from DictEng -lin foul_mouthed_A = compoundA (mkA "foul - mouthed"); -- from DictEng -lin foul_spoken_A = compoundA (mkA "foul - spoken"); -- from DictEng -lin foulard_N = mkN "foulard" ; -lin foully_Adv = mkAdv "foully" ; -lin foulness_N = mkN "foulness" ; -- from DictEng -lin found_A = mkA "found" ; -lin found_N = mkN "found" ; -lin found_V2 = mkV2 (mkV "found" "founds" "founded" "founded" "founding"); -- from DictEng -lin foundation_N = mkN "foundation" "foundations"; -- from DictEng -lin foundation_stone_N = mkN "foundation - stone" "foundation - stones"; -- from DictEng -lin founder_N = mkN "founder" "founders"; -- from DictEng -lin founder_V = mkV "founder" "founders" "foundered" "foundered" "foundering"; -- from DictEng -lin founder_V2 = mkV2 (mkV "founder" "founders" "foundered" "foundered" "foundering"); -- from DictEng -lin foundering_N = mkN "foundering" ; -lin foundling_N = mkN "foundling" "foundlings"; -- from DictEng -lin foundress_N = mkN "foundress" "foundresses"; -- from DictEng -lin foundry_N = mkN "foundry" "foundries"; -- from DictEng -lin fount_N = mkN "fount" "founts"; -- from DictEng -lin fountain_N = mkN "fountain" "fountains"; -- from DictEng -lin fountain_head_N = mkN "fountain - head" "fountain - heads"; -- from DictEng -lin fountain_pen_N = mkN "fountain - pen" "fountain - pens"; -- from DictEng -lin fountainhead_N = mkN "fountainhead" ; -lin four_A = mkA "four" ; -lin four_N = mkN "four" ; -lin four_dimensional_A = compoundA (mkA "four dimensional") ; -lin four_hitter_N = mkN "four hitter" ; -lin four_hundredth_A = compoundA (mkA "four hundredth") ; -lin four_in_hand_N = mkN "four - in - hand" "four - in - hands"; -- from DictEng -lin four_lane_A = compoundA (mkA "four lane") ; -lin four_lobed_A = compoundA (mkA "four lobed") ; -lin four_membered_A = compoundA (mkA "four membered") ; -lin four_needled_A = compoundA (mkA "four needled") ; -lin four_petaled_A = compoundA (mkA "four petaled") ; -lin four_ply_A = compoundA (mkA "four - ply"); -- from DictEng -lin four_poster_N = mkN "four - poster" "four - posters"; -- from DictEng -lin four_pounder_N = mkN "four - pounder" "four - pounders"; -- from DictEng -lin four_pronged_A = compoundA (mkA "four pronged") ; -lin four_spot_N = mkN "four spot" ; -lin four_wheel_A = compoundA (mkA "four wheel") ; -lin four_wheeler_N = mkN "four - wheeler" "four - wheelers"; -- from DictEng -lin four_year_old_A = compoundA (mkA "four year old") ; -lin four_hundred_A = compoundA (mkA "four hundred") ; -lin four_in_hand_N = mkN "four - in - hand" "four - in - hands"; -- from DictEng -lin four_part_A = compoundA (mkA "four - part"); -- from DictEng -lin four_ply_A = compoundA (mkA "four - ply"); -- from DictEng -lin four_poster_N = mkN "four - poster" "four - posters"; -- from DictEng -lin four_pounder_N = mkN "four - pounder" "four - pounders"; -- from DictEng -lin four_wheeler_N = mkN "four - wheeler" "four - wheelers"; -- from DictEng -lin fourfold_A = compoundA (mkA "fourfold"); -- from DictEng -lin fourfold_Adv = mkAdv "fourfold"; -- from DictEng -lin fourhanded_A = mkA "fourhanded" ; -lin fourpence_N = mkN "fourpence" "fourpences"; -- from DictEng -lin fourpenny_A = compoundA (mkA "fourpenny"); -- from DictEng -lin fourscore_A = compoundA (mkA "fourscore"); -- from DictEng -lin fourscore_N = mkN "fourscore"; -- from DictEng -lin foursome_N = mkN "foursome" "foursomes"; -- from DictEng -lin foursquare_A = compoundA (mkA "foursquare"); -- from DictEng -lin foursquare_Adv = mkAdv "foursquare" ; -lin fourteen_A = mkA "fourteen" ; -lin fourteen_N = mkN "fourteen" ; -lin fourteenth_A = mkA "fourteenth" ; -lin fourteenth_N = mkN "fourteenth" ; -lin fourth_A = mkA "fourth" ; -lin fourth_N = mkN "fourth" ; -lin fourthly_Adv = mkAdv "fourthly" ; -lin fovea_N = mkN "fovea" ; -lin fowl_N = mkN "fowl" "fowls"; -- from DictEng -lin fowl_V = mkV "fowl" "fowls" "fowled" "fowled" "fowling"; -- from DictEng -lin fowl_run_N = mkN "fowl - run" "fowl - runs"; -- from DictEng -lin fowler_N = mkN "fowler" "fowlers"; -- from DictEng -lin fowlingpiece_N = mkN "fowlingpiece" "fowlingpieces"; -- from DictEng -lin fowlpest_N = mkN "fowlpest" ; -- from DictEng -lin fox_N = mkN "fox" "foxes"; -- from DictEng -lin fox_V2 = mkV2 (mkV "fox" "foxes" "foxed" "foxed" "foxing"); -- from DictEng -lin fox_trot_N = mkN "fox trot" ; -lin fox_terrier_N = mkN "fox - terrier" "fox - terriers"; -- from DictEng -lin foxglove_N = mkN "foxglove" "foxgloves"; -- from DictEng -lin foxhole_N = mkN "foxhole" "foxholes"; -- from DictEng -lin foxhound_N = mkN "foxhound" "foxhounds"; -- from DictEng -lin foxhunt_N = mkN "foxhunt" "foxhunts"; -- from DictEng -lin foxhunt_V = mkV "foxhunt" "foxhunts" "foxhunted" "foxhunted" "foxhunting"; -- from DictEng -lin foxhunter_N = mkN "foxhunter" "foxhunters"; -- from DictEng -lin foxtail_N = mkN "foxtail" ; -lin foxtrot_N = mkN "foxtrot" "foxtrots"; -- from DictEng -lin foxy_A = mkA "foxy" "foxier"; -- from DictEng -lin foyer_N = mkN "foyer" "foyers"; -- from DictEng -lin fracas_N = mkN "fracas" (variants {"fracases"; "fracas"}); -- from DictEng -lin fractal_N = mkN "fractal" ; -lin fraction_N = mkN "fraction" "fractions"; -- from DictEng -lin fractional_A = compoundA (mkA "fractional"); -- from DictEng -lin fractionation_N = mkN "fractionation" ; -lin fractious_A = compoundA (mkA "fractious"); -- from DictEng -lin fractiously_Adv = mkAdv "fractiously" ; -lin fractiousness_N = mkN "fractiousness" ; -- from DictEng -lin fracture_N = mkN "fracture" "fractures"; -- from DictEng -lin fracture_V = mkV "fracture" "fractures" "fractured" "fractured" "fracturing"; -- from DictEng -lin fracture_V2 = mkV2 (mkV "fracture" "fractures" "fractured" "fractured" "fracturing"); -- from DictEng -lin fragile_A = compoundA (mkA "fragile"); -- from DictEng -lin fragility_N = mkN "fragility" ; -- from DictEng -lin fragment_N = mkN "fragment" "fragments"; -- from DictEng -lin fragment_V = mkV "fragment" "fragments" "fragmented" "fragmented" "fragmenting"; -- from DictEng -lin fragment_V2 = mkV2 (mkV "fragment" "fragments" "fragmented" "fragmented" "fragmenting"); -- from DictEng -lin fragmental_A = mkA "fragmental" ; -lin fragmentary_A = compoundA (mkA "fragmentary"); -- from DictEng -lin fragmentation_N = mkN "fragmentation" "fragmentations"; -- from DictEng -lin fragrance_N = mkN "fragrance" "fragrances"; -- from DictEng -lin fragrant_A = compoundA (mkA "fragrant"); -- from DictEng -lin frail_A = mkA "frail" "frailer"; -- from DictEng -lin frail_N = mkN "frail" ; -lin frailty_N = mkN "frailty" "frailties"; -- from DictEng -lin fraise_N = mkN "fraise" ; -lin frame_N = mkN "frame" "frames"; -- from DictEng -lin frame_V = mkV "frame" "frames" "framed" "framed" "framing"; -- from DictEng -lin frame_V2 = mkV2 (mkV "frame" "frames" "framed" "framed" "framing"); -- from DictEng -lin frame_up_N = mkN "frame - up" "frame - ups"; -- from DictEng -lin frame_up_N = mkN "frame - up" "frame - ups"; -- from DictEng -lin framed_A = mkA "framed" ; -lin framer_N = mkN "framer" ; -lin framework_N = mkN "framework" "frameworks"; -- from DictEng -lin framing_N = mkN "framing" ; -lin franc_N = mkN "franc" "francs"; -- from DictEng -lin franc_tireur_N = mkN "franc tireur" ; -lin franchise_N = mkN "franchise" "franchises"; -- from DictEng -lin franciscan_A = compoundA (mkA "franciscan"); -- from DictEng -lin franciscan_N = mkN "franciscan" "franciscans"; -- from DictEng -lin francium_N = mkN "francium" ; -lin frangible_A = mkA "frangible" ; -lin frangipane_N = mkN "frangipane" ; -lin frangipani_N = mkN "frangipani" ; -lin frank_A = mkA "frank" "franker"; -- from DictEng -lin frank_N = mkN "frank" "franks"; -- from DictEng -lin frank_V2 = mkV2 (mkV "frank" "franks" "franked" "franked" "franking"); -- from DictEng -lin frankfurter_N = mkN "frankfurter" "frankfurters"; -- from DictEng -lin frankincense_N = mkN "frankincense" ; -- from DictEng -lin franking_machine_N = mkN "franking - machine" "franking - machines"; -- from DictEng -lin franklin_N = mkN "franklin" "franklins"; -- from DictEng -lin frankness_N = mkN "frankness" ; -- from DictEng -lin frantic_A = compoundA (mkA "frantic"); -- from DictEng -lin frantically_Adv = mkAdv "frantically"; -- from DictEng -lin frappe_N = mkN "frappe" ; -lin fraternal_A = compoundA (mkA "fraternal"); -- from DictEng -lin fraternally_Adv = mkAdv "fraternally" ; -lin fraternity_N = mkN "fraternity" "fraternities"; -- from DictEng -lin fraternization_N = mkN "fraternization" ; -- from DictEng -lin fraternize_V = mkV "fraternize" "fraternizes" "fraternized" "fraternized" "fraternizing"; -- from DictEng -lin fratricide_N = mkN "fratricide" "fratricides"; -- from DictEng -lin frau_N = mkN "frau" "fraus"; -- from DictEng -lin fraud_N = mkN "fraud" "frauds"; -- from DictEng -lin fraudulence_N = mkN "fraudulence" ; -lin fraudulent_A = compoundA (mkA "fraudulent"); -- from DictEng -lin fraudulently_Adv = mkAdv "fraudulently" ; -lin fraught_A = compoundA (mkA "fraught"); -- from DictEng -lin fraulein_N = mkN "fräulein" "fräuleins"; -- from DictEng -lin fraxinella_N = mkN "fraxinella" ; -lin fray_N = mkN "fray" "frays"; -- from DictEng -lin fray_V = mkV "fray" "frays" "frayed" "frayed" "fraying"; -- from DictEng -lin fray_V2 = mkV2 (mkV "fray" "frays" "frayed" "frayed" "fraying"); -- from DictEng -lin frayed_A = mkA "frayed" ; -lin frazzle_N = mkN "frazzle" "frazzles"; -- from DictEng -lin freak_N = mkN "freak" "freaks"; -- from DictEng -lin freak_V = mkV "freak" "freaks" "freaked" "freaked" "freaking"; -- from DictEng -lin freak_V2 = mkV2 (mkV "freak" "freaks" "freaked" "freaked" "freaking"); -- from DictEng -lin freak_out_N = mkN "freak - out" "freak - outs"; -- from DictEng -lin freakish_A = compoundA (mkA "freakish"); -- from DictEng -lin freakishness_N = mkN "freakishness" ; -- from DictEng -lin freaky_A = mkA "freaky" "freakier"; -- from DictEng -lin freckle_N = mkN "freckle" "freckles"; -- from DictEng -lin freckle_V = mkV "freckle" "freckles" "freckled" "freckled" "freckling"; -- from DictEng -lin freckle_V2 = mkV2 (mkV "freckle" "freckles" "freckled" "freckled" "freckling"); -- from DictEng -lin freckled_A = mkA "freckled" ; -lin free_A = mkA "free" "freer"; -- from DictEng -lin free_N = mkN "free" ; -lin free_V2 = mkV2 (mkV "free" "frees" "freed" "freed" "freeing"); -- from DictEng -lin free_V2V = mkV2V (mkV "free") noPrep to_Prep ; -- from DictEng -lin free_and_easy_A = compoundA (mkA "free - and - easy"); -- from DictEng -lin free_flying_A = compoundA (mkA "free flying") ; -lin free_liver_N = mkN "free - liver" "free - livers"; -- from DictEng -lin free_living_A = compoundA (mkA "free living") ; -lin free_range_A = compoundA (mkA "free - range"); -- from DictEng -lin free_reed_N = mkN "free reed" ; -lin free_soil_A = compoundA (mkA "free soil") ; -lin free_swimming_A = compoundA (mkA "free swimming") ; -lin free_thinking_A = compoundA (mkA "free - thinking"); -- from DictEng -lin free_and_easy_A = compoundA (mkA "free - and - easy"); -- from DictEng -lin free_burning_A = compoundA (mkA "free burning") ; -lin free_for_all_N = mkN "free - for - all" "free - for - alls"; -- from DictEng -lin free_handed_A = compoundA (mkA "free - handed"); -- from DictEng -lin free_list_N = mkN "free - list" "free - lists"; -- from DictEng -lin free_liver_N = mkN "free - liver" "free - livers"; -- from DictEng -lin free_living_N = mkN "free - living" ; -- from DictEng -lin free_range_A = compoundA (mkA "free - range"); -- from DictEng -lin free_spoken_A = compoundA (mkA "free - spoken"); -- from DictEng -lin free_standing_A = compoundA (mkA "free - standing"); -- from DictEng -lin free_thinker_N = mkN "free - thinker" "free - thinkers"; -- from DictEng -lin free_thinking_A = compoundA (mkA "free - thinking"); -- from DictEng -lin free_thought_N = mkN "free - thought" ; -- from DictEng -lin free_trader_N = mkN "free - trader" "free - traders"; -- from DictEng -lin freebie_N = mkN "freebie" ; -lin freebooter_N = mkN "freebooter" "freebooters"; -- from DictEng -lin freeborn_A = compoundA (mkA "freeborn"); -- from DictEng -lin freedman_N = mkN "freedman" "freedmen" {- FIXME: guessed plural form -}; -- from DictEng -lin freedom_N = mkN "freedom" "freedoms"; -- from DictEng -lin freehand_A = compoundA (mkA "freehand"); -- from DictEng -lin freehold_N = mkN "freehold" "freeholds"; -- from DictEng -lin freeholder_N = mkN "freeholder" "freeholders"; -- from DictEng -lin freelance_A = mkA "freelance" ; -lin freelance_N = mkN "freelance" "freelances"; -- from DictEng -lin freelance_V = mkV "freelance" "freelances" "freelanced" "freelanced" "freelancing"; -- from DictEng -lin freelancer_N = mkN "freelancer" ; -lin freeloader_N = mkN "freeloader" ; -lin freely_Adv = mkAdv "freely" ; -lin freemail_N = mkN "freemail" ; -lin freeman_N = mkN "freeman" "freemen" {- FIXME: guessed plural form -}; -- from DictEng -lin freemason_N = mkN "freemason" "freemasons"; -- from DictEng -lin freemasonry_N = mkN "freemasonry" ; -- from DictEng -lin freesia_N = mkN "freesia" "freesias"; -- from DictEng -lin freestanding_A = mkA "freestanding" ; -lin freestone_N = mkN "freestone" ; -- from DictEng -lin freestyle_N = mkN "freestyle" ; -- from DictEng -lin freetail_N = mkN "freetail" ; -lin freeware_N = mkN "freeware" ; -lin freeway_N = mkN "freeway" "freeways"; -- from DictEng -lin freewheel_N = mkN "freewheel" ; -lin freewheel_V = mkV "freewheel" "freewheels" "freewheeled" "freewheeled" "freewheeling"; -- from DictEng -lin freewheeling_A = mkA "freewheeling" ; -lin freewill_A = compoundA (mkA "freewill"); -- from DictEng -lin freeze_N = mkN "freeze" "freezes"; -- from DictEng -lin freeze_V = IrregEng.freeze_V; -- from DictEng -lin freeze_V2 = mkV2 (IrregEng.freeze_V); -- from DictEng -lin freeze_dried_A = compoundA (mkA "freeze dried") ; -lin freeze_drying_N = mkN "freeze drying" ; -lin freezer_N = mkN "freezer" "freezers"; -- from DictEng -lin freezing_mixture_N = mkN "freezing - mixture" "freezing - mixtures"; -- from DictEng -lin freezing_point_N = mkN "freezing - point" "freezing - points"; -- from DictEng -lin freight_N = mkN "freight" ; -- from DictEng -lin freight_V2 = mkV2 (mkV "freight" "freights" "freighted" "freighted" "freighting"); -- from DictEng -lin freight_train_N = mkN "freight - train" "freight - trains"; -- from DictEng -lin freighter_N = mkN "freighter" "freighters"; -- from DictEng -lin freightliner_N = mkN "freightliner" "freightliners"; -- from DictEng -lin french_A = compoundA (mkA "French"); -- from DictEng -lin french_N = mkN "french" ; -- from DictEng -lin frenchman_N = mkN "frenchman" "frenchmen" {- FIXME: guessed plural form -}; -- from DictEng -lin frenchwoman_N = mkN "frenchwoman" "frenchwomen" {- FIXME: guessed plural form -}; -- from DictEng -lin frenetic_A = compoundA (mkA "frenetic"); -- from DictEng -lin frenzied_A = compoundA (mkA "frenzied"); -- from DictEng -lin frenziedly_Adv = mkAdv "frenziedly" ; -lin frenzy_N = mkN "frenzy" ; -- from DictEng -lin frequency_N = mkN "frequency" "frequencies"; -- from DictEng -lin frequent_A = compoundA (mkA "frequent"); -- from DictEng -lin frequent_V2 = mkV2 (mkV "frequent" "frequents" "frequented" "frequented" "frequenting"); -- from DictEng -lin frequentative_N = mkN "frequentative" ; -lin frequently_Adv = mkAdv "frequently" ; -lin fresco_N = mkN "fresco" "frescos"; -- from DictEng -lin fresco_V2 = mkV2 (mkV "fresco" "frescos" "frescoed" "frescoed" "frescoing"); -- from DictEng -lin fresh_A = mkA "fresh" "fresher"; -- from DictEng -lin fresh_Adv = mkAdv "fresh"; -- from DictEng -lin fresh_cut_A = compoundA (mkA "fresh cut") ; -lin freshen_V = mkV "freshen" "freshens" "freshened" "freshened" "freshening"; -- from DictEng -lin freshen_V2 = mkV2 (mkV "freshen" "freshens" "freshened" "freshened" "freshening"); -- from DictEng -lin freshener_N = mkN "freshener" ; -lin fresher_N = mkN "fresher" "freshers"; -- from DictEng -lin freshet_N = mkN "freshet" ; -lin freshman_A = mkA "freshman" ; -lin freshman_N = mkN "freshman" "freshmen" {- FIXME: guessed plural form -}; -- from DictEng -lin freshness_N = mkN "freshness" ; -- from DictEng -lin freshwater_A = compoundA (mkA "freshwater"); -- from DictEng -lin fret_N = mkN "fret" "frets"; -- from DictEng -lin fret_V = mkV "fret" "frets" "fretted" "fretted" "fretting"; -- from DictEng -lin fret_V2 = mkV2 (mkV "fret" "frets" "fretted" "fretted" "fretting"); -- from DictEng -lin fret_VS = mkVS (mkV "fret" "frets" "fretted" "fretted" "fretting"); -- from DictEng -lin fretful_A = compoundA (mkA "fretful"); -- from DictEng -lin fretfully_Adv = mkAdv "fretfully" ; -lin fretsaw_N = mkN "fretsaw" "fretsaws"; -- from DictEng -lin fretted_A = mkA "fretted" ; -lin fretwork_N = mkN "fretwork" ; -- from DictEng -lin freudian_A = compoundA (mkA "freudian"); -- from DictEng -lin friability_N = mkN "friability" ; -- from DictEng -lin friable_A = compoundA (mkA "friable"); -- from DictEng -lin friar_N = mkN "friar" "friars"; -- from DictEng -lin friar's_cowl_N = mkN "friar's cowl" ; -lin friary_N = mkN "friary" ; -lin fricandeau_N = mkN "fricandeau" ; -lin fricassee_N = mkN "fricassee" "fricassees"; -- from DictEng -lin fricassee_V2 = mkV2 (mkV "fricas" IrregEng.see_V); -- from DictEng -lin fricative_A = compoundA (mkA "fricative"); -- from DictEng -lin fricative_N = mkN "fricative" "fricatives"; -- from DictEng -lin friction_N = mkN "friction" "frictions"; -- from DictEng -lin frictional_A = mkA "frictional" ; -lin frictionless_A = mkA "frictionless" ; -lin friday_N = mkN "Friday" "Fridays"; -- from DictEng -lin fridge_N = mkN "fridge" "fridges"; -- from DictEng -lin fried_A = mkA "fried" ; -lin friedcake_N = mkN "friedcake" ; -lin friend_N = mkN "friend" "friends"; -- from DictEng -lin friendless_A = compoundA (mkA "friendless"); -- from DictEng -lin friendlessness_N = mkN "friendlessness" ; -- from DictEng -lin friendliness_N = mkN "friendliness" ; -- from DictEng -lin friendly_A = mkA "friendly" "friendlier"; -- from DictEng -lin friendly_N = mkN "friendly" ; -lin friendship_N = mkN "friendship" "friendships"; -- from DictEng -lin frier_N = mkN "frier" "friers"; -- from DictEng -lin frieze_N = mkN "frieze" "friezes"; -- from DictEng -lin frigate_N = mkN "frigate" "frigates"; -- from DictEng -lin fright_N = mkN "fright" "frights"; -- from DictEng -lin fright_V2 = mkV2 (mkV "fright" "frights" "frighted" "frighted" "frighting"); -- from DictEng -lin frighten_V2 = mkV2 (mkV "frighten" "frightens" "frightened" "frightened" "frightening"); -- from DictEng -lin frightened_A = compoundA (mkA "frightened"); -- from DictEng -lin frightening_A = compoundA (mkA "frightening"); -- from DictEng -lin frighteningly_Adv = mkAdv "frighteningly" ; -lin frightful_A = compoundA (mkA "frightful"); -- from DictEng -lin frightfulness_N = mkN "frightfulness" ; -- from DictEng -lin frigid_A = compoundA (mkA "frigid"); -- from DictEng -lin frigidity_N = mkN "frigidity" ; -- from DictEng -lin frigorific_A = mkA "frigorific" ; -lin frijole_N = mkN "frijole" ; -lin frill_N = mkN "frill" "frills"; -- from DictEng -lin frilled_A = compoundA (mkA "frilled"); -- from DictEng -lin frilly_A = mkA "frilly" "frillier"; -- from DictEng -lin fringe_N = mkN "fringe" "fringes"; -- from DictEng -lin fringe_V2 = mkV2 (mkV "fringe" "fringes" "fringed" "fringed" "fringing"); -- from DictEng -lin fringed_A = mkA "fringed" ; -lin fringed_grass_of_parnassus_PN = mkPN "fringed grass of Parnassus" ; -lin fringepod_N = mkN "fringepod" ; -lin fringy_A = mkA "fringy" ; -lin frippery_N = mkN "frippery" "fripperies"; -- from DictEng -lin frisk_N = mkN "frisk" ; -lin frisk_V = mkV "frisk" "frisks" "frisked" "frisked" "frisking"; -- from DictEng -lin frisk_V2 = mkV2 (mkV "frisk" "frisks" "frisked" "frisked" "frisking"); -- from DictEng -lin friskily_Adv = mkAdv "friskily"; -- from DictEng -lin friskiness_N = mkN "friskiness" ; -lin frisky_A = mkA "frisky" "friskier"; -- from DictEng -lin frisson_N = mkN "frisson" "frissons"; -- from DictEng -lin fritillary_N = mkN "fritillary" ; -lin frittata_N = mkN "frittata" ; -lin fritter_N = mkN "fritter" "fritters"; -- from DictEng -lin fritter_V2 = mkV2 (mkV "fritter" "fritters" "frittered" "frittered" "frittering"); -- from DictEng -lin frivol_V = mkV "frivol" "frivols" "frivolled" "frivolled" "frivolling"; -- from DictEng -lin frivol_V2 = mkV2 (mkV "frivol" "frivols" "frivolled" "frivolled" "frivolling"); -- from DictEng -lin frivolity_N = mkN "frivolity" "frivolities"; -- from DictEng -lin frivolous_A = compoundA (mkA "frivolous"); -- from DictEng -lin frivolously_Adv = mkAdv "frivolously" ; -lin frizz_N = mkN "frizz" ; -lin frizz_V2 = mkV2 (mkV "frizz" "frizzes" "frizzed" "frizzed" "frizzing"); -- from DictEng -lin frizzle_V = mkV "frizzle" "frizzles" "frizzled" "frizzled" "frizzling"; -- from DictEng -lin frizzle_V2 = mkV2 (mkV "frizzle" "frizzles" "frizzled" "frizzled" "frizzling"); -- from DictEng -lin frizzy_A = mkA "frizzy" "frizzier"; -- from DictEng -lin fro_Adv = mkAdv "fro"; -- from DictEng -lin frock_N = mkN "frock" "frocks"; -- from DictEng -lin frock_coat_N = mkN "frock - coat" "frock - coats"; -- from DictEng -lin frog_N = mkN "frog" "frogs"; -- from DictEng -lin frogbit_N = mkN "frogbit" ; -lin frogfish_N = mkN "frogfish" ; -lin froghopper_N = mkN "froghopper" ; -lin frogman_N = mkN "frogman" "frogmen" {- FIXME: guessed plural form -}; -- from DictEng -lin frogmarch_V2 = mkV2 (mkV "frogmarch" "frogmarches" "frogmarched" "frogmarched" "frogmarching"); -- from DictEng -lin frogmouth_N = mkN "frogmouth" ; -lin frolic_N = mkN "frolic" "frolics"; -- from DictEng -lin frolic_V = mkV "frolic" "frolics" "frolicked" "frolicked" "frolicking"; -- from DictEng -lin frolic_V2 = mkV2 (mkV "frolic") ; -lin frolicsome_A = compoundA (mkA "frolicsome"); -- from DictEng -lin from_Prep = mkPrep "from"; -- from DictEng -lin from_pillar_to_post_Adv = mkAdv "from pillar to post" ; -lin from_scratch_Adv = mkAdv "from scratch" ; -lin from_start_to_finish_Adv = mkAdv "from start to finish" ; -lin from_the_heart_Adv = mkAdv "from the heart" ; -lin from_way_back_Adv = mkAdv "from way back" ; -lin frond_N = mkN "frond" "fronds"; -- from DictEng -lin front_A = mkA "front" ; -lin front_N = mkN "front" "fronts"; -- from DictEng -lin front_V = mkV "front" "fronts" "fronted" "fronted" "fronting"; -- from DictEng -lin front_V2 = mkV2 (mkV "front" "fronts" "fronted" "fronted" "fronting"); -- from DictEng -lin front_runner_N = mkN "front runner" ; -lin front_bench_N = mkN "front - bench" "front - benches"; -- from DictEng -lin front_bencher_N = mkN "front - bencher" "front - benchers"; -- from DictEng -lin frontage_N = mkN "frontage" "frontages"; -- from DictEng -lin frontal_A = compoundA (mkA "frontal"); -- from DictEng -lin frontal_N = mkN "frontal" ; -lin frontally_Adv = mkAdv "frontally" ; -lin frontbencher_N = mkN "frontbencher" ; -lin frontier_N = mkN "frontier" "frontiers"; -- from DictEng -lin frontiersman_N = mkN "frontiersman" "frontiersmen" {- FIXME: guessed plural form -}; -- from DictEng -lin frontierswoman_N = mkN "frontierswoman" ; -lin frontispiece_N = mkN "frontispiece" "frontispieces"; -- from DictEng -lin frontlet_N = mkN "frontlet" ; -lin frore_A = mkA "frore" ; -lin frost_N = mkN "frost" "frosts"; -- from DictEng -lin frost_V = mkV "frost" "frosts" "frosted" "frosted" "frosting"; -- from DictEng -lin frost_V2 = mkV2 (mkV "frost" "frosts" "frosted" "frosted" "frosting"); -- from DictEng -lin frost_bound_A = compoundA (mkA "frost - bound"); -- from DictEng -lin frost_bound_A = compoundA (mkA "frost - bound"); -- from DictEng -lin frostbite_N = mkN "frostbite" ; -- from DictEng -lin frostbitten_A = compoundA (mkA "frostbitten"); -- from DictEng -lin frosted_A = mkA "frosted" ; -lin frostily_Adv = mkAdv "frostily"; -- from DictEng -lin frostiness_N = mkN "frostiness" ; -- from DictEng -lin frosting_N = mkN "frosting" ; -- from DictEng -lin frostweed_N = mkN "frostweed" ; -lin frosty_A = mkA "frosty" "frostier"; -- from DictEng -lin froth_N = mkN "froth" ; -- from DictEng -lin froth_V = mkV "froth" "froths" "frothed" "frothed" "frothing"; -- from DictEng -lin frothily_Adv = mkAdv "frothily"; -- from DictEng -lin frothiness_N = mkN "frothiness" ; -- from DictEng -lin frothy_A = mkA "frothy" "frothier"; -- from DictEng -lin frottage_N = mkN "frottage" ; -lin frotteur_N = mkN "frotteur" ; -lin froward_A = compoundA (mkA "froward"); -- from DictEng -lin frown_N = mkN "frown" "frowns"; -- from DictEng -lin frown_V = mkV "frown" "frowns" "frowned" "frowned" "frowning"; -- from DictEng -lin frown_V2 = mkV2 (mkV "frown") ; -lin frowning_A = mkA "frowning" ; -lin frowningly_Adv = mkAdv "frowningly"; -- from DictEng -lin frowsty_A = compoundA (mkA "frowsty"); -- from DictEng -lin frowsy_A = mkA "frowsy" ; -lin frowzy_A = compoundA (mkA "frowzy"); -- from DictEng -lin frozen_A = mkA "frozen" ; -lin frs_N = mkN "frs" ; -- from DictEng -lin fructification_N = mkN "fructification" ; -- from DictEng -lin fructify_V = mkV "fructify" "fructifies" "fructified" "fructified" "fructifying"; -- from DictEng -lin fructify_V2 = mkV2 (mkV "fructify" "fructifies" "fructified" "fructified" "fructifying"); -- from DictEng -lin fructose_N = mkN "fructose" ; -lin fructosuria_N = mkN "fructosuria" ; -lin frugal_A = compoundA (mkA "frugal"); -- from DictEng -lin frugality_N = mkN "frugality" "frugalities"; -- from DictEng -lin frugally_Adv = mkAdv "frugally" ; -lin fruit_N = mkN "fruit" "fruits"; -- from DictEng -lin fruit_V = mkV "fruit" "fruits" "fruited" "fruited" "fruiting"; -- from DictEng -lin fruit_fly_N = mkN "fruit - fly" "fruit - flies"; -- from DictEng -lin fruitage_N = mkN "fruitage" ; -lin fruitcake_N = mkN "fruitcake" "fruitcakes"; -- from DictEng -lin fruiterer_N = mkN "fruiterer" "fruiterers"; -- from DictEng -lin fruitful_A = compoundA (mkA "fruitful"); -- from DictEng -lin fruitfulness_N = mkN "fruitfulness" ; -- from DictEng -lin fruiting_A = mkA "fruiting" ; -lin fruition_N = mkN "fruition" ; -- from DictEng -lin fruitless_A = compoundA (mkA "fruitless"); -- from DictEng -lin fruitlessness_N = mkN "fruitlessness" ; -- from DictEng -lin fruitlet_N = mkN "fruitlet" ; -lin fruitwood_N = mkN "fruitwood" ; -lin fruity_A = mkA "fruity" "fruitier"; -- from DictEng -lin frumenty_N = mkN "frumenty" ; -lin frump_N = mkN "frump" "frumps"; -- from DictEng -lin frumpish_A = compoundA (mkA "frumpish"); -- from DictEng -lin frumpy_A = mkA "frumpy" "frumpier"; -- from DictEng -lin frustrate_V2 = mkV2 (mkV "frustrate" "frustrates" "frustrated" "frustrated" "frustrating"); -- from DictEng -lin frustrating_A = mkA "frustrating" ; -lin frustration_N = mkN "frustration" "frustrations"; -- from DictEng -lin frustum_N = mkN "frustum" ; -lin fry_N = mkN "fry" "fry"; -- from DictEng -lin fry_V = mkV "fry" "fries" "fried" "fried" "frying"; -- from DictEng -lin fry_V2 = mkV2 (mkV "fry" "fries" "fried" "fried" "frying"); -- from DictEng -lin fry_pan_N = mkN "fry - pan" "fry - pans"; -- from DictEng -lin fryer_N = mkN "fryer" "fryers"; -- from DictEng -lin frying_N = mkN "frying" ; -lin frying_pan_N = mkN "frying - pan" "frying - pans"; -- from DictEng -lin fuchsia_N = mkN "fuchsia" "fuchsias"; -- from DictEng -lin fuck_N = mkN "fuck" ; -lin fuck_V = mkV "fuck" "fucks" "fucked" "fucked" "fucking"; -- from DictEng -lin fuck_V2 = mkV2 (mkV "fuck" "fucks" "fucked" "fucked" "fucking"); -- from DictEng -lin fuck_all_N = mkN "fuck - all" ; -- from DictEng -lin fucked_up_A = compoundA (mkA "fucked up") ; -lin fucker_N = mkN "fucker" "fuckers"; -- from DictEng -lin fucking_A = compoundA (mkA "fucking"); -- from DictEng -lin fucking_Adv = mkAdv "fucking" ; -lin fucoid_N = mkN "fucoid" ; -lin fucus_N = mkN "fucus" ; -lin fuddle_V2 = mkV2 (mkV "fuddle" "fuddles" "fuddled" "fuddled" "fuddling"); -- from DictEng -lin fuddy_duddy_N = mkN "fuddy - duddy" "fuddy - duddies"; -- from DictEng -lin fuddy_duddy_N = mkN "fuddy - duddy" "fuddy - duddies"; -- from DictEng -lin fudge_N = mkN "fudge" "fudges"; -- from DictEng -lin fuel_N = mkN "fuel" "fuels"; -- from DictEng -lin fuel_V = variants {mkV "fuel" "fuels" "fueled" "fueled" "fueling"}; -- US -- from DictEng -lin fuel_V2 = mkV2 (variants {mkV "fuel" "fuels" "fueled" "fueled" "fueling"}); -- US -- from DictEng -lin fueled_A = mkA "fueled" ; -lin fueling_N = mkN "fueling" ; -lin fug_N = mkN "fug" "fugs"; -- from DictEng -lin fugacity_N = mkN "fugacity" ; -lin fugal_A = mkA "fugal" ; -lin fugally_Adv = mkAdv "fugally" ; -lin fuggy_A = mkA "fuggy" "fuggier"; -- from DictEng -lin fugitive_A = compoundA (mkA "fugitive"); -- from DictEng -lin fugitive_N = mkN "fugitive" "fugitives"; -- from DictEng -lin fugleman_N = mkN "fugleman" ; -lin fugly_A = mkA "fugly" ; -lin fugu_N = mkN "fugu" ; -lin fugue_N = mkN "fugue" "fugues"; -- from DictEng -lin fuhrer_N = mkN "führer" "führers"; -- from DictEng -lin fuji_N = mkN "fuji" ; -lin fulcrum_N = mkN "fulcrum" "fulcrums"; -- from DictEng -lin fulfil_V2 = mkV2 (mkV "fulfil" "fulfils" "fulfilled" "fulfilled" "fulfilling"); -- from DictEng -lin fulfill_V2 = mkV2 (mkV "fulfill"); -- from DictEng -lin fulfilled_A = mkA "fulfilled" ; -lin fulfillment_N = mkN "fulfillment" ; -lin fulfilment_N = mkN "fulfilment" "fulfilments"; -- from DictEng -lin fulgurating_A = mkA "fulgurating" ; -lin full_A = mkA "full" "fuller"; -- from DictEng -lin full_blooded_A = compoundA (mkA "full - blooded"); -- from DictEng -lin full_blown_A = compoundA (mkA "full - blown"); -- from DictEng -lin full_bodied_A = compoundA (mkA "full bodied") ; -lin full_dress_A = compoundA (mkA "full - dress"); -- from DictEng -lin full_fashioned_A = compoundA (mkA "full - fashioned"); -- from DictEng -lin full_fledged_A = compoundA (mkA "full - fledged"); -- from DictEng -lin full_length_A = compoundA (mkA "full - length"); -- from DictEng -lin full_page_A = compoundA (mkA "full - page"); -- from DictEng -lin full_term_A = compoundA (mkA "full term") ; -lin full_time_A = compoundA (mkA "full - time"); -- from DictEng -lin full_time_Adv = mkAdv "full - time"; -- from DictEng -lin full_blooded_A = compoundA (mkA "full - blooded"); -- from DictEng -lin full_blown_A = compoundA (mkA "full - blown"); -- from DictEng -lin full_dress_A = compoundA (mkA "full - dress"); -- from DictEng -lin full_fashioned_A = compoundA (mkA "full - fashioned"); -- from DictEng -lin full_fledged_A = compoundA (mkA "full - fledged"); -- from DictEng -lin full_grown_A = compoundA (mkA "full - grown"); -- from DictEng -lin full_length_A = compoundA (mkA "full - length"); -- from DictEng -lin full_of_life_A = compoundA (mkA "full of life") ; -lin full_page_A = compoundA (mkA "full - page"); -- from DictEng -lin full_scale_A = compoundA (mkA "full - scale"); -- from DictEng -lin full_time_A = compoundA (mkA "full - time"); -- from DictEng -lin full_time_Adv = mkAdv "full - time"; -- from DictEng -lin fullback_N = mkN "fullback" "fullbacks"; -- from DictEng -lin fuller_N = mkN "fuller" "fullers"; -- from DictEng -lin fullerene_N = mkN "fullerene" ; -lin fullness_N = mkN "fullness" ; -- from DictEng -lin fully_Adv = mkAdv "fully"; -- from DictEng -lin fully_fashioned_A = compoundA (mkA "fully - fashioned"); -- from DictEng -lin fully_fledged_A = compoundA (mkA "fully - fledged"); -- from DictEng -lin fully_grown_A = compoundA (mkA "fully - grown"); -- from DictEng -lin fulmar_N = mkN "fulmar" "fulmars"; -- from DictEng -lin fulminant_A = mkA "fulminant" ; -lin fulminate_N = mkN "fulminate" ; -lin fulminate_V = mkV "fulminate" "fulminates" "fulminated" "fulminated" "fulminating"; -- from DictEng -lin fulmination_N = mkN "fulmination" "fulminations"; -- from DictEng -lin fulsome_A = compoundA (mkA "fulsome"); -- from DictEng -lin fulsomeness_N = mkN "fulsomeness" ; -- from DictEng -lin fumble_N = mkN "fumble" ; -lin fumble_V = mkV "fumble" "fumbles" "fumbled" "fumbled" "fumbling"; -- from DictEng -lin fumble_V2 = mkV2 (mkV "fumble" "fumbles" "fumbled" "fumbled" "fumbling"); -- from DictEng -lin fumbler_N = mkN "fumbler" "fumblers"; -- from DictEng -lin fume_N = mkN "fume" "fumes"; -- from DictEng -lin fume_V = mkV "fume" "fumes" "fumed" "fumed" "fuming"; -- from DictEng -lin fume_V2 = mkV2 (mkV "fume" "fumes" "fumed" "fumed" "fuming"); -- from DictEng -lin fumed_A = mkA "fumed" ; -lin fumewort_N = mkN "fumewort" ; -lin fumigant_N = mkN "fumigant" ; -lin fumigate_V2 = mkV2 (mkV "fumigate" "fumigates" "fumigated" "fumigated" "fumigating"); -- from DictEng -lin fumigation_N = mkN "fumigation" "fumigations"; -- from DictEng -lin fumigator_N = mkN "fumigator" ; -lin fumitory_N = mkN "fumitory" ; -lin fun_N = mkN "fun" ; -- from DictEng -lin funambulism_N = mkN "funambulism" ; -lin funambulist_N = mkN "funambulist" ; -lin function_N = mkN "function" "functions"; -- from DictEng -lin function_V = mkV "function" "functions" "functioned" "functioned" "functioning"; -- from DictEng -lin functional_A = compoundA (mkA "functional"); -- from DictEng -lin functionalism_N = mkN "functionalism" ; -- from DictEng -lin functionalist_N = mkN "functionalist" "functionalists"; -- from DictEng -lin functionality_N = mkN "functionality" ; -lin functionally_Adv = mkAdv "functionally" ; -lin functionally_illiterate_A = compoundA (mkA "functionally illiterate") ; -lin functionary_N = mkN "functionary" "functionaries"; -- from DictEng -lin functioning_A = mkA "functioning" ; -lin fund_N = mkN "fund" "funds"; -- from DictEng -lin fund_V2 = mkV2 (mkV "fund" "funds" "funded" "funded" "funding"); -- from DictEng -lin fundamental_A = compoundA (mkA "fundamental"); -- from DictEng -lin fundamental_N = mkN "fundamental" "fundamentals"; -- from DictEng -lin fundamentalism_N = mkN "fundamentalism" ; -- from DictEng -lin fundamentalist_A = mkA "fundamentalist" ; -lin fundamentalist_N = mkN "fundamentalist" "fundamentalists"; -- from DictEng -lin fundamentals_N = mkN "fundamentals" ; -lin funded_A = mkA "funded" ; -lin fundraiser_N = mkN "fundraiser" ; -lin funds_N = mkN "funds" ; -lin fundus_N = mkN "fundus" ; -lin funeral_N = mkN "funeral" "funerals"; -- from DictEng -lin funerary_A = mkA "funerary" ; -lin funereal_A = compoundA (mkA "funereal"); -- from DictEng -lin funfair_N = mkN "funfair" "funfairs"; -- from DictEng -lin fungal_A = mkA "fungal" ; -lin fungible_A = mkA "fungible" ; -lin fungible_N = mkN "fungible" ; -lin fungicidal_A = mkA "fungicidal" ; -lin fungicide_N = mkN "fungicide" "fungicides"; -- from DictEng -lin fungoid_A = compoundA (mkA "fungoid"); -- from DictEng -lin fungous_A = compoundA (mkA "fungous"); -- from DictEng -lin fungus_N = mkN "fungus" "funguses"; -- from DictEng -lin funicle_N = mkN "funicle" ; -lin funicular_A = mkA "funicular" ; -lin funicular_N = mkN "funicular" "funiculars"; -- from DictEng -lin funiculitis_N = mkN "funiculitis" ; -lin funiculus_N = mkN "funiculus" ; -lin funk_N = mkN "funk" "funks"; -- from DictEng -lin funk_V = mkV "funk" "funks" "funked" "funked" "funking"; -- from DictEng -lin funk_V2 = mkV2 (mkV "funk" "funks" "funked" "funked" "funking"); -- from DictEng -lin funky_A = mkA "funky" "funkier"; -- from DictEng -lin funnel_N = mkN "funnel" "funnels"; -- from DictEng -lin funnel_V = mkV "funnel" "funnels" "funnelled" "funnelled" "funnelling"; -- from DictEng -lin funnel_V2 = mkV2 (mkV "funnel" "funnels" "funnelled" "funnelled" "funnelling"); -- from DictEng -lin funnel_shaped_A = compoundA (mkA "funnel shaped") ; -lin funnily_Adv = mkAdv "funnily"; -- from DictEng -lin funniness_N = mkN "funniness" ; -- from DictEng -lin funny_A = mkA "funny" "funnier"; -- from DictEng -lin funny_bone_N = mkN "funny - bone" "funny - bones"; -- from DictEng -lin funrun_N = mkN "funrun" ; -lin fur_N = mkN "fur" "furs"; -- from DictEng -lin fur_bearing_A = compoundA (mkA "fur bearing") ; -lin fur_piece_N = mkN "fur piece" ; -lin furan_N = mkN "furan" ; -lin furbelow_N = mkN "furbelow" "furbelows"; -- from DictEng -lin furbish_V2 = mkV2 (mkV "furbish" "furbishes" "furbished" "furbished" "furbishing"); -- from DictEng -lin furcation_N = mkN "furcation" ; -lin furcula_N = mkN "furcula" ; -lin furfural_N = mkN "furfural" ; -lin furious_A = compoundA (mkA "furious"); -- from DictEng -lin furiously_Adv = mkAdv "furiously" ; -lin furl_V = mkV "furl" "furls" "furled" "furled" "furling"; -- from DictEng -lin furl_V2 = mkV2 (mkV "furl" "furls" "furled" "furled" "furling"); -- from DictEng -lin furled_A = mkA "furled" ; -lin furlike_A = mkA "furlike" ; -lin furlong_N = mkN "furlong" "furlongs"; -- from DictEng -lin furlough_N = mkN "furlough" "furloughs"; -- from DictEng -lin furnace_N = mkN "furnace" "furnaces"; -- from DictEng -lin furnish_V2 = mkV2 (mkV "furnish" "furnishes" "furnished" "furnished" "furnishing"); -- from DictEng -lin furnished_A = mkA "furnished" ; -lin furnishing_N = mkN "furnishing" ; -lin furniture_N = mkN "furniture" ; -- from DictEng -lin furor_N = mkN "furor" ; -lin furore_N = mkN "furore" "furores"; -- from DictEng -lin furosemide_N = mkN "furosemide" ; -lin furred_A = mkA "furred" ; -lin furrier_N = mkN "furrier" "furriers"; -- from DictEng -lin furring_N = mkN "furring" ; -lin furrow_N = mkN "furrow" "furrows"; -- from DictEng -lin furrow_V = mkV "furrow"; -- from DictEng -lin furrow_V2 = mkV2 (mkV "furrow" "furrows" "furrowed" "furrowed" "furrowing"); -- from DictEng -lin furrowed_A = mkA "furrowed" ; -lin furry_A = mkA "furry" "furrier"; -- from DictEng -lin further_A = mkA "further" ; -lin further_Adv = mkAdv "further"; -- from DictEng -lin further_V2 = mkV2 (mkV "further" "furthers" "furthered" "furthered" "furthering"); -- from DictEng -lin furtherance_N = mkN "furtherance" ; -- from DictEng -lin furthermore_Adv = mkAdv "furthermore"; -- from DictEng -lin furthermost_A = compoundA (mkA "furthermost"); -- from DictEng -lin furthest_A = compoundA (mkA "furthest"); -- from DictEng -lin furthest_Adv = mkAdv "furthest"; -- from DictEng -lin furtive_A = compoundA (mkA "furtive"); -- from DictEng -lin furtively_Adv = mkAdv "furtively" ; -lin furtiveness_N = mkN "furtiveness" ; -- from DictEng -lin furunculosis_N = mkN "furunculosis" ; -lin fury_N = mkN "fury" "furies"; -- from DictEng -lin furze_N = mkN "furze" ; -- from DictEng -lin fuschia_N = mkN "fuschia" ; -lin fuscous_A = mkA "fuscous" ; -lin fuse_N = mkN "fuse" "fuses"; -- from DictEng -lin fuse_V = mkV "fuse" "fuses" "fused" "fused" "fusing"; -- from DictEng -lin fuse_V2 = mkV2 (mkV "fuse" "fuses" "fused" "fused" "fusing"); -- from DictEng -lin fusee_N = mkN "fusee" ; -lin fuselage_N = mkN "fuselage" "fuselages"; -- from DictEng -lin fusible_A = mkA "fusible" ; -lin fusiform_A = mkA "fusiform" ; -lin fusil_N = mkN "fusil" ; -lin fusilier_N = mkN "fusilier" "fusiliers"; -- from DictEng -lin fusillade_N = mkN "fusillade" "fusillades"; -- from DictEng -lin fusion_N = mkN "fusion" "fusions"; -- from DictEng -lin fuss_N = mkN "fuss" "fusses"; -- from DictEng -lin fuss_V = mkV "fuss" "fusses" "fussed" "fussed" "fussing"; -- from DictEng -lin fuss_V2 = mkV2 (mkV "fuss" "fusses" "fussed" "fussed" "fussing"); -- from DictEng -lin fussily_Adv = mkAdv "fussily"; -- from DictEng -lin fussiness_N = mkN "fussiness" ; -- from DictEng -lin fusspot_N = mkN "fusspot" "fusspots"; -- from DictEng -lin fussy_A = mkA "fussy" "fussier"; -- from DictEng -lin fustian_N = mkN "fustian" ; -- from DictEng -lin fusty_A = compoundA (mkA "fusty"); -- from DictEng -lin futile_A = compoundA (mkA "futile"); -- from DictEng -lin futilely_Adv = mkAdv "futilely" ; -lin futility_N = mkN "futility" "futilities"; -- from DictEng -lin futon_N = mkN "futon" ; -lin future_A = compoundA (mkA "future"); -- from DictEng -lin future_N = mkN "future" "futures"; -- from DictEng -lin future_day_A = compoundA (mkA "future day") ; -lin futureless_A = compoundA (mkA "futureless"); -- from DictEng -lin futurism_N = mkN "futurism" ; -- from DictEng -lin futurist_N = mkN "futurist" "futurists"; -- from DictEng -lin futuristic_A = mkA "futuristic" ; -lin futurity_N = mkN "futurity" "futurities"; -- from DictEng -lin futurology_N = mkN "futurology" ; -lin fuze_N = mkN "fuze" "fuzes"; -- from DictEng -lin fuzz_N = mkN "fuzz" ; -- from DictEng -lin fuzzed_A = mkA "fuzzed" ; -lin fuzzy_A = mkA "fuzzy" "fuzzier"; -- from DictEng -lin g_N = mkN "g" ; -lin g_man_N = mkN "g - man" "g - men"; -- from DictEng -lin gab_N = mkN "gab" ; -- from DictEng -lin gab_V = mkV "gab" ; -lin gabapentin_N = mkN "gabapentin" ; -lin gabardine_N = mkN "gabardine" ; -- from DictEng -lin gabble_N = mkN "gabble" ; -- from DictEng -lin gabble_V = mkV "gabble" "gabbles" "gabbled" "gabbled" "gabbling"; -- from DictEng -lin gabble_V2 = mkV2 (mkV "gabble" "gabbles" "gabbled" "gabbled" "gabbling"); -- from DictEng -lin gabbro_N = mkN "gabbro" ; -lin gaberdine_N = mkN "gaberdine" ; -- from DictEng -lin gable_N = mkN "gable" "gables"; -- from DictEng -lin gabled_A = compoundA (mkA "gabled"); -- from DictEng -lin gabonese_A = compoundA (mkA "gabonese"); -- from DictEng -lin gabonese_N = mkN "gabonese" "gabonese"; -- from DictEng -lin gad_V = mkV "gad" "gads" "gadded" "gadded" "gadding"; -- from DictEng -lin gadabout_N = mkN "gadabout" "gadabouts"; -- from DictEng -lin gaddi_N = mkN "gaddi" ; -lin gadfly_N = mkN "gadfly" "gadflies"; -- from DictEng -lin gadget_N = mkN "gadget" "gadgets"; -- from DictEng -lin gadgeteer_N = mkN "gadgeteer" ; -lin gadgetry_N = mkN "gadgetry" ; -- from DictEng -lin gadoid_N = mkN "gadoid" ; -lin gadolinite_N = mkN "gadolinite" ; -lin gadolinium_N = mkN "gadolinium" ; -lin gael_N = mkN "gael" "gaels"; -- from DictEng -lin gaelic_A = compoundA (mkA "gaelic"); -- from DictEng -lin gaelic_N = mkN "gaelic" "gaelics"; -- from DictEng -lin gaff_N = mkN "gaff" "gaffs"; -- from DictEng -lin gaffe_N = mkN "gaffe" "gaffes"; -- from DictEng -lin gaffer_N = mkN "gaffer" "gaffers"; -- from DictEng -lin gaffsail_N = mkN "gaffsail" ; -lin gag_N = mkN "gag" "gags"; -- from DictEng -lin gag_V = mkV "gag" "gags" "gagged" "gagged" "gagging"; -- from DictEng -lin gag_V2 = mkV2 (mkV "gag" "gags" "gagged" "gagged" "gagging"); -- from DictEng -lin gaga_A = compoundA (mkA "gaga"); -- from DictEng -lin gage_N = mkN "gage" "gages"; -- from DictEng -lin gage_V2 = mkV2 (mkV "gage" "gages" "gaged" "gaged" "gaging"); -- from DictEng -lin gaggle_N = mkN "gaggle" "gaggles"; -- from DictEng -lin gagman_N = mkN "gagman" ; -lin gaiety_N = mkN "gaiety" ; -- from DictEng -lin gaillardia_N = mkN "gaillardia" ; -lin gaily_Adv = mkAdv "gaily"; -- from DictEng -lin gain_N = mkN "gain" "gains"; -- from DictEng -lin gain_V = mkV "gain" "gains" "gained" "gained" "gaining"; -- from DictEng -lin gain_V2 = mkV2 (mkV "gain" "gains" "gained" "gained" "gaining"); -- from DictEng -lin gainer_N = mkN "gainer" ; -lin gainful_A = compoundA (mkA "gainful"); -- from DictEng -lin gainfully_Adv = mkAdv "gainfully" ; -lin gainly_A = mkA "gainly" ; -lin gainsay_V2 = mkV2 (mkV "gain" IrregEng.say_V); -- from DictEng -lin gainsborough_N = mkN "gainsborough" "gainsboroughs"; -- from DictEng -lin gait_N = mkN "gait" "gaits"; -- from DictEng -lin gaiter_N = mkN "gaiter" "gaiters"; -- from DictEng -lin gal_N = mkN "gal" "gals"; -- from DictEng -lin gala_N = mkN "gala" "galas"; -- from DictEng -lin galactagogue_N = mkN "galactagogue" ; -lin galactic_A = compoundA (mkA "galactic"); -- from DictEng -lin galactocele_N = mkN "galactocele" ; -lin galactose_N = mkN "galactose" ; -lin galactosemia_N = mkN "galactosemia" ; -lin galactosis_N = mkN "galactosis" ; -lin galago_N = mkN "galago" ; -lin galangal_N = mkN "galangal" ; -lin galantine_N = mkN "galantine" "galantines"; -- from DictEng -lin galax_N = mkN "galax" ; -lin galaxy_N = mkN "galaxy" "galaxies"; -- from DictEng -lin galbanum_N = mkN "galbanum" ; -lin galbulus_N = mkN "galbulus" ; -lin gale_N = mkN "gale" "gales"; -- from DictEng -lin galea_N = mkN "galea" ; -lin galena_N = mkN "galena" ; -lin galere_N = mkN "galere" ; -lin galingale_N = mkN "galingale" ; -lin gall_N = mkN "gall" "galls"; -- from DictEng -lin gall_V2 = mkV2 (mkV "gall" "galls" "galled" "galled" "galling"); -- from DictEng -lin gallamine_N = mkN "gallamine" ; -lin gallant_A = compoundA (mkA "gallant"); -- from DictEng -lin gallant_N = mkN "gallant" "gallants"; -- from DictEng -lin gallantly_Adv = mkAdv "gallantly" ; -lin gallantry_N = mkN "gallantry" "gallantries"; -- from DictEng -lin gallbladder_N = mkN "gallbladder" ; -lin galleon_N = mkN "galleon" "galleons"; -- from DictEng -lin gallery_N = mkN "gallery" "galleries"; -- from DictEng -lin galley_N = mkN "galley" "galleys"; -- from DictEng -lin galley_proof_N = mkN "galley - proof" "galley - proofs"; -- from DictEng -lin galley_slave_N = mkN "galley - slave" "galley - slaves"; -- from DictEng -lin gallfly_N = mkN "gallfly" ; -lin gallic_A = compoundA (mkA "gallic"); -- from DictEng -lin gallicism_N = mkN "gallicism" "gallicisms"; -- from DictEng -lin gallinaceous_A = mkA "gallinaceous" ; -lin gallinule_N = mkN "gallinule" ; -lin gallium_N = mkN "gallium" ; -lin gallivant_V = mkV "gallivant" "gallivants" "gallivanted" "gallivanted" "gallivanting"; -- from DictEng -lin gallon_N = mkN "gallon" "gallons"; -- from DictEng -lin gallop_N = mkN "gallop" "gallops"; -- from DictEng -lin gallop_V = mkV "gallop" "gallops" "galloped" "galloped" "galloping"; -- from DictEng -lin gallop_V2 = mkV2 (mkV "gallop" "gallops" "galloped" "galloped" "galloping"); -- from DictEng -lin gallows_N = mkN "gallows" ; -lin gallows_bird_N = mkN "gallows - bird" "gallows - birds"; -- from DictEng -lin gallstone_N = mkN "gallstone" "gallstones"; -- from DictEng -lin galoot_N = mkN "galoot" ; -lin galore_A = mkA "galore" ; -lin galore_Adv = mkAdv "galore"; -- from DictEng -lin galosh_N = mkN "galosh" "galoshes"; -- from DictEng -lin galumph_V = mkV "galumph" "galumphs" "galumphed" "galumphed" "galumphing"; -- from DictEng -lin galvanic_A = compoundA (mkA "galvanic"); -- from DictEng -lin galvanism_N = mkN "galvanism" ; -- from DictEng -lin galvanization_N = mkN "galvanization" ; -lin galvanize_V2 = mkV2 (mkV "galvanize" "galvanizes" "galvanized" "galvanized" "galvanizing"); -- from DictEng -lin galvanize_VS = mkVS (mkV "galvanize"); -- from DictEng -lin galvanizer_N = mkN "galvanizer" ; -lin galvanometer_N = mkN "galvanometer" ; -lin gam_N = mkN "gam" ; -lin gambian_A = compoundA (mkA "gambian"); -- from DictEng -lin gambian_N = mkN "gambian" "gambians"; -- from DictEng -lin gambist_N = mkN "gambist" ; -lin gambit_N = mkN "gambit" "gambits"; -- from DictEng -lin gamble_N = mkN "gamble" "gambles"; -- from DictEng -lin gamble_V = mkV "gamble" "gambles" "gambled" "gambled" "gambling"; -- from DictEng -lin gamble_V2 = mkV2 (mkV "gamble" "gambles" "gambled" "gambled" "gambling"); -- from DictEng -lin gambler_N = mkN "gambler" "gamblers"; -- from DictEng -lin gambling_N = mkN "gambling" ; -- from DictEng -lin gambling_den_N = mkN "gambling - den" "gambling - dens"; -- from DictEng -lin gamboge_N = mkN "gamboge" ; -- from DictEng -lin gambol_N = mkN "gambol" "gambols"; -- from DictEng -lin gambol_V = mkV "gambol" "gambols" "gambolled" "gambolled" "gambolling"; -- from DictEng -lin gambol_V2 = mkV2 (mkV "gambol") ; -lin gambrel_N = mkN "gambrel" ; -lin game_A = compoundA (mkA "game"); -- from DictEng -lin game_N = mkN "game" "games"; -- from DictEng -lin game_V = mkV "game" "games" "gamed" "gamed" "gaming"; -- from DictEng -lin game_V2 = mkV2 (mkV "game" "games" "gamed" "gamed" "gaming"); -- from DictEng -lin game_bag_N = mkN "game - bag" "game - bags"; -- from DictEng -lin game_bird_N = mkN "game - bird" "game - birds"; -- from DictEng -lin game_licence_N = mkN "game - licence" "game - licences"; -- from DictEng -lin gamebag_N = mkN "gamebag" ; -lin gamecock_N = mkN "gamecock" "gamecocks"; -- from DictEng -lin gamekeeper_N = mkN "gamekeeper" "gamekeepers"; -- from DictEng -lin gamelan_N = mkN "gamelan" ; -lin gamely_Adv = mkAdv "gamely" ; -lin games_master_N = mkN "games - master" "games - masters"; -- from DictEng -lin games_master_N = mkN "games - master" "games - masters"; -- from DictEng -lin games_mistress_N = mkN "games - mistress" "games - mistresses"; -- from DictEng -lin gamesmanship_N = mkN "gamesmanship" ; -- from DictEng -lin gametangium_N = mkN "gametangium" ; -lin gamete_N = mkN "gamete" ; -lin gametocyte_N = mkN "gametocyte" ; -lin gametoecium_N = mkN "gametoecium" ; -lin gametogenesis_N = mkN "gametogenesis" ; -lin gametophore_N = mkN "gametophore" ; -lin gametophyte_N = mkN "gametophyte" ; -lin gamey_A = mkA "gamey" ; -lin gamine_N = mkN "gamine" ; -lin gaminess_N = mkN "gaminess" ; -lin gaming_house_N = mkN "gaming - house" "gaming - houses"; -- from DictEng -lin gaming_table_N = mkN "gaming - table" "gaming - tables"; -- from DictEng -lin gamma_N = mkN "gamma" "gammas"; -- from DictEng -lin gamma_interferon_N = mkN "gamma interferon" ; -lin gammon_N = mkN "gammon" "gammons"; -- from DictEng -lin gammopathy_N = mkN "gammopathy" ; -lin gammy_A = compoundA (mkA "gammy"); -- from DictEng -lin gamopetalous_A = mkA "gamopetalous" ; -lin gamp_N = mkN "gamp" "gamps"; -- from DictEng -lin gamut_N = mkN "gamut" "gamuts"; -- from DictEng -lin gamy_A = mkA "gamy" "gamier"; -- from DictEng -lin gander_N = mkN "gander" "ganders"; -- from DictEng -lin gang_N = mkN "gang" "gangs"; -- from DictEng -lin gang_V = mkV "gang" "gangs" "ganged" "ganged" "ganging"; -- from DictEng -lin ganger_N = mkN "ganger" "gangers"; -- from DictEng -lin gangling_A = compoundA (mkA "gangling"); -- from DictEng -lin ganglion_N = mkN "ganglion" "ganglions"; -- from DictEng -lin gangplank_N = mkN "gangplank" "gangplanks"; -- from DictEng -lin gangrene_N = mkN "gangrene" ; -- from DictEng -lin gangrene_V = mkV "gangrene" "gangrenes" "gangrened" "gangrened" "gangrening"; -- from DictEng -lin gangrene_V2 = mkV2 (mkV "gangrene" "gangrenes" "gangrened" "gangrened" "gangrening"); -- from DictEng -lin gangrenous_A = compoundA (mkA "gangrenous"); -- from DictEng -lin gangsaw_N = mkN "gangsaw" ; -lin gangsta_N = mkN "gangsta" ; -lin gangster_N = mkN "gangster" "gangsters"; -- from DictEng -lin gangway_N = mkN "gangway" "gangways"; -- from DictEng -lin gannet_N = mkN "gannet" "gannets"; -- from DictEng -lin ganoid_N = mkN "ganoid" ; -lin ganoin_N = mkN "ganoin" ; -lin gantlet_N = mkN "gantlet" ; -lin gantry_N = mkN "gantry" "gantries"; -- from DictEng -lin gaol_N = mkN "gaol" "gaols"; -- from DictEng -lin gaol_V2 = mkV2 (mkV "gaol" "gaols" "gaoled" "gaoled" "gaoling"); -- from DictEng -lin gaolbird_N = mkN "gaolbird" "gaolbirds"; -- from DictEng -lin gaolbreak_N = mkN "gaolbreak" "gaolbreaks"; -- from DictEng -lin gaoler_N = mkN "gaoler" "gaolers"; -- from DictEng -lin gap_N = mkN "gap" "gaps"; -- from DictEng -lin gap_toothed_A = compoundA (mkA "gap - toothed"); -- from DictEng -lin gap_toothed_A = compoundA (mkA "gap - toothed"); -- from DictEng -lin gape_N = mkN "gape" "gapes"; -- from DictEng -lin gape_V = mkV "gape" "gapes" "gaped" "gaped" "gaping"; -- from DictEng -lin gape_V2 = mkV2 (mkV "gape") ; -lin gar_N = mkN "gar" ; -lin garage_N = mkN "garage" "garages"; -- from DictEng -lin garage_V2 = mkV2 (mkV "garage" "garages" "garaged" "garaged" "garaging"); -- from DictEng -lin garambulla_N = mkN "garambulla" ; -lin garb_N = mkN "garb" ; -- from DictEng -lin garb_V2 = mkV2 (mkV "garb" "garbs" "garbed" "garbed" "garbing"); -- from DictEng -lin garbage_N = mkN "garbage" ; -- from DictEng -lin garbage_can_N = mkN "garbage - can" "garbage - cans"; -- from DictEng -lin garble_V2 = mkV2 (mkV "garble" "garbles" "garbled" "garbled" "garbling"); -- from DictEng -lin garboard_N = mkN "garboard" ; -lin garbology_N = mkN "garbology" ; -lin garden_N = mkN "garden" "gardens"; -- from DictEng -lin garden_V = mkV "garden" "gardens" "gardened" "gardened" "gardening"; -- from DictEng -lin garden_truck_N = mkN "garden - truck" "garden - trucks"; -- from DictEng -lin gardener_N = mkN "gardener" "gardeners"; -- from DictEng -lin gardenia_N = mkN "gardenia" "gardenias"; -- from DictEng -lin gardening_N = mkN "gardening" ; -- from DictEng -lin garganey_N = mkN "garganey" ; -lin gargantuan_A = compoundA (mkA "gargantuan"); -- from DictEng -lin gargle_N = mkN "gargle" "gargles"; -- from DictEng -lin gargle_V = mkV "gargle" "gargles" "gargled" "gargled" "gargling"; -- from DictEng -lin gargle_V2 = mkV2 (mkV "gargle" "gargles" "gargled" "gargled" "gargling"); -- from DictEng -lin gargoyle_N = mkN "gargoyle" "gargoyles"; -- from DictEng -lin garibaldi_N = mkN "garibaldi" ; -lin garish_A = compoundA (mkA "garish"); -- from DictEng -lin garishly_Adv = mkAdv "garishly" ; -lin garishness_N = mkN "garishness" ; -lin garland_N = mkN "garland" "garlands"; -- from DictEng -lin garland_V2 = mkV2 (mkV "garland" "garlands" "garlanded" "garlanded" "garlanding"); -- from DictEng -lin garlic_N = mkN "garlic" ; -- from DictEng -lin garlicky_A = mkA "garlicky" ; -lin garment_N = mkN "garment" "garments"; -- from DictEng -lin garmentmaker_N = mkN "garmentmaker" ; -lin garner_N = mkN "garner" "garners"; -- from DictEng -lin garner_V2 = mkV2 (mkV "garner" "garners" "garnered" "garnered" "garnering"); -- from DictEng -lin garnet_N = mkN "garnet" "garnets"; -- from DictEng -lin garnet_colored_A = compoundA (mkA "garnet colored") ; -lin garnierite_N = mkN "garnierite" ; -lin garnish_N = mkN "garnish" "garnishes"; -- from DictEng -lin garnish_V2 = mkV2 (mkV "garnish" "garnishes" "garnished" "garnished" "garnishing"); -- from DictEng -lin garnishee_N = mkN "garnishee" ; -lin garnishment_N = mkN "garnishment" ; -lin garotte_N = mkN "garotte" "garottes"; -- from DictEng -lin garotte_V2 = mkV2 (mkV "garotte" "garottes" "garotted" "garotted" "garotting"); -- from DictEng -lin garret_N = mkN "garret" "garrets"; -- from DictEng -lin garrison_N = mkN "garrison" "garrisons"; -- from DictEng -lin garrison_V2 = mkV2 (mkV "garrison" "garrisons" "garrisoned" "garrisoned" "garrisoning"); -- from DictEng -lin garrote_N = mkN "garrote" ; -lin garroter_N = mkN "garroter" ; -lin garrotte_N = mkN "garrotte" "garrottes"; -- from DictEng -lin garrotte_V2 = mkV2 (mkV "garrotte" "garrottes" "garrotted" "garrotted" "garrotting"); -- from DictEng -lin garrulity_N = mkN "garrulity" ; -- from DictEng -lin garrulous_A = compoundA (mkA "garrulous"); -- from DictEng -lin garter_N = mkN "garter" "garters"; -- from DictEng -lin gas_N = mkN "gas" "gases"; -- from DictEng -lin gas_V = mkV "gas" "gases" "gassed" "gassed" "gassing"; -- from DictEng -lin gas_V2 = mkV2 (mkV "gas" "gases" "gassed" "gassed" "gassing"); -- from DictEng -lin gas_filled_A = compoundA (mkA "gas filled") ; -lin gas_bracket_N = mkN "gas - bracket" "gas - brackets"; -- from DictEng -lin gas_cooker_N = mkN "gas - cooker" "gas - cookers"; -- from DictEng -lin gas_engine_N = mkN "gas - engine" "gas - engines"; -- from DictEng -lin gas_fitter_N = mkN "gas - fitter" "gas - fitters"; -- from DictEng -lin gas_helmet_N = mkN "gas - helmet" "gas - helmets"; -- from DictEng -lin gas_holder_N = mkN "gas - holder" "gas - holders"; -- from DictEng -lin gas_mask_N = mkN "gas - mask" "gas - masks"; -- from DictEng -lin gas_meter_N = mkN "gas - meter" "gas - meters"; -- from DictEng -lin gas_oven_N = mkN "gas - oven" "gas - ovens"; -- from DictEng -lin gas_ring_N = mkN "gas - ring" "gas - rings"; -- from DictEng -lin gas_station_N = mkN "gas - station" "gas - stations"; -- from DictEng -lin gas_stove_N = mkN "gas - stove" "gas - stoves"; -- from DictEng -lin gasbag_N = mkN "gasbag" "gasbags"; -- from DictEng -lin gaseous_A = compoundA (mkA "gaseous"); -- from DictEng -lin gaseousness_N = mkN "gaseousness" ; -lin gasfield_N = mkN "gasfield" ; -lin gash_N = mkN "gash" "gashes"; -- from DictEng -lin gash_V2 = mkV2 (mkV "gash" "gashes" "gashed" "gashed" "gashing"); -- from DictEng -lin gasification_N = mkN "gasification" "gasifications"; -- from DictEng -lin gasified_A = mkA "gasified" ; -lin gasify_V = mkV "gasify" "gasifies" "gasified" "gasified" "gasifying"; -- from DictEng -lin gasify_V2 = mkV2 (mkV "gasify" "gasifies" "gasified" "gasified" "gasifying"); -- from DictEng -lin gasket_N = mkN "gasket" "gaskets"; -- from DictEng -lin gaskin_N = mkN "gaskin" ; -lin gaslight_N = mkN "gaslight" ; -- from DictEng -lin gasman_N = mkN "gasman" ; -lin gasmask_N = mkN "gasmask" "gasmasks"; -- from DictEng -lin gasohol_N = mkN "gasohol" ; -lin gasolene_N = mkN "gasolene" ; -- from DictEng -lin gasoline_N = mkN "gasoline" ; -- from DictEng -lin gasometer_N = mkN "gasometer" "gasometers"; -- from DictEng -lin gasp_N = mkN "gasp" "gasps"; -- from DictEng -lin gasp_V = mkV "gasp" "gasps" "gasped" "gasped" "gasping"; -- from DictEng -lin gasp_V2 = mkV2 (mkV "gasp" "gasps" "gasped" "gasped" "gasping"); -- from DictEng -lin gassing_N = mkN "gassing" ; -lin gassy_A = mkA "gassy" "gassier"; -- from DictEng -lin gasteromycete_N = mkN "gasteromycete" ; -lin gastrectomy_N = mkN "gastrectomy" ; -lin gastric_A = compoundA (mkA "gastric"); -- from DictEng -lin gastrin_N = mkN "gastrin" ; -lin gastritis_N = mkN "gastritis" ; -- from DictEng -lin gastrocnemius_N = mkN "gastrocnemius" ; -lin gastroduodenal_A = mkA "gastroduodenal" ; -lin gastroenteritis_N = mkN "gastroenteritis" ; -lin gastroenterologist_N = mkN "gastroenterologist" ; -lin gastroenterology_N = mkN "gastroenterology" ; -lin gastroenterostomy_N = mkN "gastroenterostomy" ; -lin gastroesophageal_A = mkA "gastroesophageal" ; -lin gastrogavage_N = mkN "gastrogavage" ; -lin gastrointestinal_A = mkA "gastrointestinal" ; -lin gastromy_N = mkN "gastromy" ; -lin gastronomic_A = compoundA (mkA "gastronomic"); -- from DictEng -lin gastronomy_N = mkN "gastronomy" ; -- from DictEng -lin gastropod_N = mkN "gastropod" ; -lin gastroscope_N = mkN "gastroscope" ; -lin gastroscopy_N = mkN "gastroscopy" ; -lin gastrostomy_N = mkN "gastrostomy" ; -lin gastrula_N = mkN "gastrula" ; -lin gastrulation_N = mkN "gastrulation" ; -lin gasworks_N = mkN "gasworks" "gasworks"; -- from DictEng -lin gat_N = mkN "gat" ; -lin gate_N = mkN "gate" "gates"; -- from DictEng -lin gate_V2 = mkV2 (mkV "gate" "gates" "gated" "gated" "gating"); -- from DictEng -lin gateau_N = mkN "gâteau" "gâteaus"; -- from DictEng -lin gatecrash_V2 = mkV2 (mkV "gatecrash" "gatecrashes" "gatecrashed" "gatecrashed" "gatecrashing"); -- from DictEng -lin gatecrasher_N = mkN "gatecrasher" "gatecrashers"; -- from DictEng -lin gatehouse_N = mkN "gatehouse" "gatehouses"; -- from DictEng -lin gatekeeper_N = mkN "gatekeeper" ; -lin gatepost_N = mkN "gatepost" "gateposts"; -- from DictEng -lin gateway_N = mkN "gateway" "gateways"; -- from DictEng -lin gather_N = mkN "gather" ; -lin gather_V = mkV "gather" "gathers" "gathered" "gathered" "gathering"; -- from DictEng -lin gather_V2 = mkV2 (mkV "gather" "gathers" "gathered" "gathered" "gathering"); -- from DictEng -lin gatherer_N = mkN "gatherer" "gatherers"; -- from DictEng -lin gathering_N = mkN "gathering" "gatherings"; -- from DictEng -lin gatt_N = mkN "gatt" ; -- from DictEng -lin gauche_A = compoundA (mkA "gauche"); -- from DictEng -lin gaucherie_N = mkN "gaucherie" "gaucheries"; -- from DictEng -lin gaucho_N = mkN "gaucho" "gauchos"; -- from DictEng -lin gaud_N = mkN "gaud" "gauds"; -- from DictEng -lin gaudery_N = mkN "gaudery" ; -lin gaudily_Adv = mkAdv "gaudily"; -- from DictEng -lin gaudy_A = mkA "gaudy" "gaudier"; -- from DictEng -lin gaudy_N = mkN "gaudy" "gaudies"; -- from DictEng -lin gauge_N = mkN "gauge" "gauges"; -- from DictEng -lin gauge_V2 = mkV2 (mkV "gauge" "gauges" "gauged" "gauged" "gauging"); -- from DictEng -lin gaul_N = mkN "gaul" "gauls"; -- from DictEng -lin gaumless_A = mkA "gaumless" ; -lin gaunt_A = compoundA (mkA "gaunt"); -- from DictEng -lin gauntlet_N = mkN "gauntlet" "gauntlets"; -- from DictEng -lin gauntleted_A = mkA "gauntleted" ; -lin gauntness_N = mkN "gauntness" ; -- from DictEng -lin gaur_N = mkN "gaur" ; -lin gauss_N = mkN "gauss" ; -lin gauze_N = mkN "gauze" ; -- from DictEng -lin gauzy_A = mkA "gauzy" "gauzier"; -- from DictEng -lin gavel_N = mkN "gavel" "gavels"; -- from DictEng -lin gavial_N = mkN "gavial" ; -lin gavotte_N = mkN "gavotte" "gavottes"; -- from DictEng -lin gawk_N = mkN "gawk" "gawks"; -- from DictEng -lin gawk_V = mkV "gawk" ; -lin gawk_V2 = mkV2 (mkV "gawk") ; -lin gawker_N = mkN "gawker" ; -lin gawkiness_N = mkN "gawkiness" ; -- from DictEng -lin gawky_A = mkA "gawky" "gawkier"; -- from DictEng -lin gawp_V = mkV "gawp" "gawps" "gawped" "gawped" "gawping"; -- from DictEng -lin gay_A = mkA "gay" "gayer"; -- from DictEng -lin gay_N = mkN "gay" "gays"; -- from DictEng -lin gayal_N = mkN "gayal" ; -lin gayness_N = mkN "gayness" ; -- from DictEng -lin gazania_N = mkN "gazania" ; -lin gaze_N = mkN "gaze"; -- from DictEng -lin gaze_V = mkV "gaze" "gazes" "gazed" "gazed" "gazing"; -- from DictEng -lin gazebo_N = mkN "gazebo" ; -lin gazelle_N = mkN "gazelle" "gazelles"; -- from DictEng -lin gazette_N = mkN "gazette" "gazettes"; -- from DictEng -lin gazette_V2 = mkV2 (mkV "gazette" "gazettes" "gazetted" "gazetted" "gazetting"); -- from DictEng -lin gazetteer_N = mkN "gazetteer" "gazetteers"; -- from DictEng -lin gazpacho_N = mkN "gazpacho" ; -lin gazump_V = mkV "gazump" "gazumps" "gazumped" "gazumped" "gazumping"; -- from DictEng -lin gazump_V2 = mkV2 (mkV "gazump" "gazumps" "gazumped" "gazumped" "gazumping"); -- from DictEng -lin gcse_N = mkN "gcse" ; -- from DictEng -lin gcses_N = mkN "GCSE" "GCSEs" ; -- from DictEng -lin gean_N = mkN "gean" ; -lin gear_N = mkN "gear" "gears"; -- from DictEng -lin gear_V = mkV "gear" "gears" "geared" "geared" "gearing"; -- from DictEng -lin gear_V2 = mkV2 (mkV "gear" "gears" "geared" "geared" "gearing"); -- from DictEng -lin gear_case_N = mkN "gear - case" "gear - cases"; -- from DictEng -lin gearbox_N = mkN "gearbox" "gearboxes"; -- from DictEng -lin geared_A = mkA "geared" ; -lin gearing_N = mkN "gearing" ; -lin gearset_N = mkN "gearset" ; -lin gearshift_N = mkN "gearshift" "gearshifts"; -- from DictEng -lin gecko_N = mkN "gecko" "geckos"; -- from DictEng -lin gee_gee_N = mkN "gee - gee" "gee - gees"; -- from DictEng -lin gee_gee_N = mkN "gee - gee" "gee - gees"; -- from DictEng -lin geebung_N = mkN "geebung" ; -lin geek_N = mkN "geek" ; -lin geezer_N = mkN "geezer" "geezers"; -- from DictEng -lin geiger_N = mkN "geiger" "geigers"; -- from DictEng -lin geisha_N = mkN "geisha" "geishas"; -- from DictEng -lin gel_N = mkN "gel" "gels"; -- from DictEng -lin gel_V = mkV "gel" "gels" "gelled" "gelled" "gelling"; -- from DictEng -lin gel_V2 = mkV2 (mkV "gel") ; -lin gelatin_N = mkN "gelatin" ; -- from DictEng -lin gelatine_N = mkN "gelatine" ; -- from DictEng -lin gelatinous_A = compoundA (mkA "gelatinous"); -- from DictEng -lin gelatinousness_N = mkN "gelatinousness" ; -lin geld_V2 = mkV2 (mkV "geld" "gelds" "gelded" "gelded" "gelding"); -- from DictEng -lin gelding_N = mkN "gelding" "geldings"; -- from DictEng -lin gelechiid_N = mkN "gelechiid" ; -lin gelignite_N = mkN "gelignite" ; -- from DictEng -lin gem_N = mkN "gem" "gems"; -- from DictEng -lin gemfibrozil_N = mkN "gemfibrozil" ; -lin geminate_N = mkN "geminate" ; -lin gemination_N = mkN "gemination" ; -lin gemma_N = mkN "gemma" ; -lin gemmed_A = compoundA (mkA "gemmed"); -- from DictEng -lin gemmiferous_A = mkA "gemmiferous" ; -lin gemmule_N = mkN "gemmule" ; -lin gempylid_N = mkN "gempylid" ; -lin gemsbok_N = mkN "gemsbok" ; -lin gen_N = mkN "gen" ; -- from DictEng -lin gen_V2 = mkV2 (mkV "gen" "gens" "genned" "genned" "genning"); -- from DictEng -lin gendarme_N = mkN "gendarme" "gendarmes"; -- from DictEng -lin gendarmerie_N = mkN "gendarmerie" "gendarmeries"; -- from DictEng -lin gender_N = mkN "gender" "genders"; -- from DictEng -lin gene_N = mkN "gene" "genes"; -- from DictEng -lin genealogic_A = mkA "genealogic" ; -lin genealogical_A = compoundA (mkA "genealogical"); -- from DictEng -lin genealogically_Adv = mkAdv "genealogically" ; -lin genealogist_N = mkN "genealogist" "genealogists"; -- from DictEng -lin genealogy_N = mkN "genealogy" "genealogies"; -- from DictEng -lin general_A = compoundA (mkA "general"); -- from DictEng -lin general_N = mkN "general" "generals"; -- from DictEng -lin general_purpose_A = compoundA (mkA "general purpose") ; -lin generalissimo_N = mkN "generalissimo" "generalissimos"; -- from DictEng -lin generality_N = mkN "generality" "generalities"; -- from DictEng -lin generalization_N = mkN "generalization" "generalizations"; -- from DictEng -lin generalize_V = mkV "generalize" "generalizes" "generalized" "generalized" "generalizing"; -- from DictEng -lin generalize_V2 = mkV2 (mkV "generalize" "generalizes" "generalized" "generalized" "generalizing"); -- from DictEng -lin generalized_A = mkA "generalized" ; -lin generally_Adv = mkAdv "generally" ; -lin generalship_N = mkN "generalship" ; -lin generate_V2 = mkV2 (mkV "generate" "generates" "generated" "generated" "generating"); -- from DictEng -lin generation_N = mkN "generation" "generations"; -- from DictEng -lin generation_x_PN = mkPN "generation X" ; -lin generational_A = mkA "generational" ; -lin generative_A = compoundA (mkA "generative"); -- from DictEng -lin generator_N = mkN "generator" "generators"; -- from DictEng -lin generic_A = compoundA (mkA "generic"); -- from DictEng -lin generic_N = mkN "generic" ; -lin generically_Adv = mkAdv "generically"; -- from DictEng -lin generosity_N = mkN "generosity" "generosities"; -- from DictEng -lin generous_A = compoundA (mkA "generous"); -- from DictEng -lin genesis_N = mkN "genesis" "geneses" {- FIXME: guessed plural form -}; -- from DictEng -lin genet_N = mkN "genet" ; -lin genetic_A = compoundA (mkA "genetic"); -- from DictEng -lin genetically_Adv = mkAdv "genetically"; -- from DictEng -lin geneticism_N = mkN "geneticism" ; -lin geneticist_N = mkN "geneticist" "geneticists"; -- from DictEng -lin genetics_N = mkN "genetics" "genetics"; -- from DictEng -lin geneva_N = mkN "geneva" ; -lin genial_A = compoundA (mkA "genial"); -- from DictEng -lin geniality_N = mkN "geniality" "genialities"; -- from DictEng -lin genic_A = mkA "genic" ; -lin geniculate_A = mkA "geniculate" ; -lin genie_N = mkN "genie" "genies"; -- from DictEng -lin genip_N = mkN "genip" ; -lin genipa_N = mkN "genipa" ; -lin genipap_N = mkN "genipap" ; -lin genital_A = compoundA (mkA "genital"); -- from DictEng -lin genitalia_N = mkN "genitalia" ; -lin genitive_A = compoundA (mkA "genitive"); -- from DictEng -lin genitive_N = mkN "genitive" ; -lin genitor_N = mkN "genitor" ; -lin genitourinary_A = mkA "genitourinary" ; -lin genius_N = mkN "genius" "geniuses"; -- from DictEng -lin genius_loci_N = mkN "genius loci" "IRREG"; -- from DictEng -lin genlisea_N = mkN "genlisea" ; -lin genocide_N = mkN "genocide" ; -- from DictEng -lin genoise_N = mkN "genoise" ; -lin genome_N = mkN "genome" ; -lin genomics_N = mkN "genomics" ; -lin genotype_N = mkN "genotype" ; -lin genotypical_A = mkA "genotypical" ; -lin genre_N = mkN "genre" "genres"; -- from DictEng -lin genre_painting_N = mkN "genre - painting" "genre - paintings"; -- from DictEng -lin gent_N = mkN "gent" "gents"; -- from DictEng -lin gentamicin_N = mkN "gentamicin" ; -lin genteel_A = compoundA (mkA "genteel"); -- from DictEng -lin genteelly_Adv = mkAdv "genteelly" ; -lin gentian_N = mkN "gentian" "gentians"; -- from DictEng -lin gentianella_N = mkN "gentianella" ; -lin gentile_A = compoundA (mkA "gentile"); -- from DictEng -lin gentile_N = mkN "gentile" "gentiles"; -- from DictEng -lin gentility_N = mkN "gentility" ; -- from DictEng -lin gentle_A = mkA "gentle" "gentler"; -- from DictEng -lin gentlefolk_N = mkN "gentlefolk" ; -lin gentleman_N = mkN "gentleman" "gentlemen" {- FIXME: guessed plural form -}; -- from DictEng -lin gentleman_at_arms_N = mkN "gentleman - at - arms" "gentlemen-*at - arms"; -- from DictEng -lin gentleman_at_arms_N = mkN "gentleman - at - arms" "gentlemen-*at - arms"; -- from DictEng -lin gentlemanlike_A = mkA "gentlemanlike" ; -lin gentlemanly_A = compoundA (mkA "gentlemanly"); -- from DictEng -lin gentleness_N = mkN "gentleness" ; -- from DictEng -lin gentlewoman_N = mkN "gentlewoman" "gentlewomen" {- FIXME: guessed plural form -}; -- from DictEng -lin gently_Adv = mkAdv "gently"; -- from DictEng -lin gentrification_N = mkN "gentrification" ; -lin gentry_N = mkN "gentry" "gentry"; -- from DictEng -lin genuflect_V = mkV "genuflect" "genuflects" "genuflected" "genuflected" "genuflecting"; -- from DictEng -lin genuflect_V2 = mkV2 (mkV "genuflect") ; -lin genuflection_N = mkN "genuflection" "genuflections"; -- from DictEng -lin genuflexion_N = mkN "genuflexion" "genuflexions"; -- from DictEng -lin genuine_A = compoundA (mkA "genuine"); -- from DictEng -lin genuineness_N = mkN "genuineness" ; -- from DictEng -lin genus_N = mkN "genus" "geni" {- FIXME: guessed plural form -}; -- from DictEng -lin genus_abelia_PN = mkPN "genus Abelia" ; -lin genus_acacia_PN = mkPN "genus Acacia" ; -lin genus_acanthus_PN = mkPN "genus Acanthus" ; -lin genus_achillea_PN = mkPN "genus Achillea" ; -lin genus_achimenes_PN = mkPN "genus Achimenes" ; -lin genus_actinomyces_PN = mkPN "genus Actinomyces" ; -lin genus_addax_PN = mkPN "genus Addax" ; -lin genus_aegyptopithecus_PN = mkPN "genus Aegyptopithecus" ; -lin genus_aepyornis_PN = mkPN "genus Aepyornis" ; -lin genus_aerides_PN = mkPN "genus Aerides" ; -lin genus_aeschynanthus_PN = mkPN "genus Aeschynanthus" ; -lin genus_afropavo_PN = mkPN "genus Afropavo" ; -lin genus_agama_PN = mkPN "genus Agama" ; -lin genus_agapanthus_PN = mkPN "genus Agapanthus" ; -lin genus_agave_PN = mkPN "genus Agave" ; -lin genus_ageratum_PN = mkPN "genus Ageratum" ; -lin genus_agrimonia_PN = mkPN "genus Agrimonia" ; -lin genus_ailanthus_PN = mkPN "genus Ailanthus" ; -lin genus_albizia_PN = mkPN "genus Albizia" ; -lin genus_albuca_PN = mkPN "genus Albuca" ; -lin genus_allamanda_PN = mkPN "genus Allamanda" ; -lin genus_alligator_PN = mkPN "genus Alligator" ; -lin genus_allosaurus_PN = mkPN "genus Allosaurus" ; -lin genus_alocasia_PN = mkPN "genus Alocasia" ; -lin genus_aloe_PN = mkPN "genus Aloe" ; -lin genus_alstroemeria_PN = mkPN "genus Alstroemeria" ; -lin genus_althaea_PN = mkPN "genus Althaea" ; -lin genus_amaryllis_PN = mkPN "genus Amaryllis" ; -lin genus_ambrosia_PN = mkPN "genus Ambrosia" ; -lin genus_ammobium_PN = mkPN "genus Ammobium" ; -lin genus_amoeba_PN = mkPN "genus Amoeba" ; -lin genus_amorpha_PN = mkPN "genus Amorpha" ; -lin genus_amorphophallus_PN = mkPN "genus Amorphophallus" ; -lin genus_amphioxus_PN = mkPN "genus Amphioxus" ; -lin genus_amphiuma_PN = mkPN "genus Amphiuma" ; -lin genus_anatotitan_PN = mkPN "genus Anatotitan" ; -lin genus_anchusa_PN = mkPN "genus Anchusa" ; -lin genus_andrena_PN = mkPN "genus Andrena" ; -lin genus_andromeda_PN = mkPN "genus Andromeda" ; -lin genus_andryala_PN = mkPN "genus Andryala" ; -lin genus_anemone_PN = mkPN "genus Anemone" ; -lin genus_angelica_PN = mkPN "genus Angelica" ; -lin genus_angiopteris_PN = mkPN "genus Angiopteris" ; -lin genus_angrecum_PN = mkPN "genus Angrecum" ; -lin genus_anhinga_PN = mkPN "genus Anhinga" ; -lin genus_ankylosaurus_PN = mkPN "genus Ankylosaurus" ; -lin genus_anoa_PN = mkPN "genus Anoa" ; -lin genus_anomalops_PN = mkPN "genus Anomalops" ; -lin genus_anomalopteryx_PN = mkPN "genus Anomalopteryx" ; -lin genus_anthurium_PN = mkPN "genus Anthurium" ; -lin genus_apatosaurus_PN = mkPN "genus Apatosaurus" ; -lin genus_appendicularia_PN = mkPN "genus Appendicularia" ; -lin genus_apteryx_PN = mkPN "genus Apteryx" ; -lin genus_aquilegia_PN = mkPN "genus Aquilegia" ; -lin genus_aralia_PN = mkPN "genus Aralia" ; -lin genus_araucaria_PN = mkPN "genus Araucaria" ; -lin genus_arbutus_PN = mkPN "genus Arbutus" ; -lin genus_arcella_PN = mkPN "genus Arcella" ; -lin genus_archaeopteryx_PN = mkPN "genus Archaeopteryx" ; -lin genus_archaeornis_PN = mkPN "genus Archaeornis" ; -lin genus_architeuthis_PN = mkPN "genus Architeuthis" ; -lin genus_areca_PN = mkPN "genus Areca" ; -lin genus_arethusa_PN = mkPN "genus Arethusa" ; -lin genus_argemone_PN = mkPN "genus Argemone" ; -lin genus_argentinosaurus_PN = mkPN "genus Argentinosaurus" ; -lin genus_arnica_PN = mkPN "genus Arnica" ; -lin genus_artemisia_PN = mkPN "genus Artemisia" ; -lin genus_arum_PN = mkPN "genus Arum" ; -lin genus_asparagus_PN = mkPN "genus Asparagus" ; -lin genus_aspidistra_PN = mkPN "genus Aspidistra" ; -lin genus_aster_PN = mkPN "genus Aster" ; -lin genus_astilbe_PN = mkPN "genus Astilbe" ; -lin genus_astrantia_PN = mkPN "genus Astrantia" ; -lin genus_australopithecus_PN = mkPN "genus Australopithecus" ; -lin genus_ayapana_PN = mkPN "genus Ayapana" ; -lin genus_babesia_PN = mkPN "genus Babesia" ; -lin genus_bacillus_PN = mkPN "genus Bacillus" ; -lin genus_banksia_PN = mkPN "genus Banksia" ; -lin genus_barosaurus_PN = mkPN "genus Barosaurus" ; -lin genus_begonia_PN = mkPN "genus Begonia" ; -lin genus_bergenia_PN = mkPN "genus Bergenia" ; -lin genus_beroe_PN = mkPN "genus Beroe" ; -lin genus_bison_PN = mkPN "genus Bison" ; -lin genus_bletia_PN = mkPN "genus Bletia" ; -lin genus_bocconia_PN = mkPN "genus Bocconia" ; -lin genus_borrelia_PN = mkPN "genus Borrelia" ; -lin genus_bougainvillea_PN = mkPN "genus Bougainvillea" ; -lin genus_brassavola_PN = mkPN "genus Brassavola" ; -lin genus_brodiaea_PN = mkPN "genus Brodiaea" ; -lin genus_browallia_PN = mkPN "genus Browallia" ; -lin genus_bryanthus_PN = mkPN "genus Bryanthus" ; -lin genus_bryonia_PN = mkPN "genus Bryonia" ; -lin genus_buckleya_PN = mkPN "genus Buckleya" ; -lin genus_buddleia_PN = mkPN "genus Buddleia" ; -lin genus_bufo_PN = mkPN "genus Bufo" ; -lin genus_cabassous_PN = mkPN "genus Cabassous" ; -lin genus_caiman_PN = mkPN "genus Caiman" ; -lin genus_caladenia_PN = mkPN "genus Caladenia" ; -lin genus_caladium_PN = mkPN "genus Caladium" ; -lin genus_calamus_PN = mkPN "genus Calamus" ; -lin genus_calanthe_PN = mkPN "genus Calanthe" ; -lin genus_calceolaria_PN = mkPN "genus Calceolaria" ; -lin genus_calendula_PN = mkPN "genus Calendula" ; -lin genus_calliandra_PN = mkPN "genus Calliandra" ; -lin genus_calosoma_PN = mkPN "genus Calosoma" ; -lin genus_calypso_PN = mkPN "genus Calypso" ; -lin genus_camellia_PN = mkPN "genus Camellia" ; -lin genus_campanula_PN = mkPN "genus Campanula" ; -lin genus_candida_PN = mkPN "genus Candida" ; -lin genus_canella_PN = mkPN "genus Canella" ; -lin genus_canna_PN = mkPN "genus Canna" ; -lin genus_cannabis_PN = mkPN "genus Cannabis" ; -lin genus_capsicum_PN = mkPN "genus Capsicum" ; -lin genus_caragana_PN = mkPN "genus Caragana" ; -lin genus_carissa_PN = mkPN "genus Carissa" ; -lin genus_carpenteria_PN = mkPN "genus Carpenteria" ; -lin genus_cassia_PN = mkPN "genus Cassia" ; -lin genus_casuarina_PN = mkPN "genus Casuarina" ; -lin genus_catalpa_PN = mkPN "genus Catalpa" ; -lin genus_catananche_PN = mkPN "genus Catananche" ; -lin genus_cathaya_PN = mkPN "genus Cathaya" ; -lin genus_cattleya_PN = mkPN "genus Cattleya" ; -lin genus_cerastes_PN = mkPN "genus Cerastes" ; -lin genus_ceratodus_PN = mkPN "genus Ceratodus" ; -lin genus_ceratosaurus_PN = mkPN "genus Ceratosaurus" ; -lin genus_ceratozamia_PN = mkPN "genus Ceratozamia" ; -lin genus_chaenactis_PN = mkPN "genus Chaenactis" ; -lin genus_chaetodon_PN = mkPN "genus Chaetodon" ; -lin genus_chimaera_PN = mkPN "genus Chimaera" ; -lin genus_chinchilla_PN = mkPN "genus Chinchilla" ; -lin genus_chiton_PN = mkPN "genus Chiton" ; -lin genus_chlamydia_PN = mkPN "genus Chlamydia" ; -lin genus_chlorella_PN = mkPN "genus Chlorella" ; -lin genus_chlorophyllum_PN = mkPN "genus Chlorophyllum" ; -lin genus_christella_PN = mkPN "genus Christella" ; -lin genus_chrysanthemum_PN = mkPN "genus Chrysanthemum" ; -lin genus_chunga_PN = mkPN "genus Chunga" ; -lin genus_cicada_PN = mkPN "genus Cicada" ; -lin genus_cinchona_PN = mkPN "genus Cinchona" ; -lin genus_citrus_PN = mkPN "genus Citrus" ; -lin genus_clematis_PN = mkPN "genus Clematis" ; -lin genus_cleome_PN = mkPN "genus Cleome" ; -lin genus_clianthus_PN = mkPN "genus Clianthus" ; -lin genus_clintonia_PN = mkPN "genus Clintonia" ; -lin genus_clostridium_PN = mkPN "genus Clostridium" ; -lin genus_clusia_PN = mkPN "genus Clusia" ; -lin genus_coccus_PN = mkPN "genus Coccus" ; -lin genus_coelogyne_PN = mkPN "genus Coelogyne" ; -lin genus_coelophysis_PN = mkPN "genus Coelophysis" ; -lin genus_coleus_PN = mkPN "genus Coleus" ; -lin genus_colobus_PN = mkPN "genus Colobus" ; -lin genus_columnea_PN = mkPN "genus Columnea" ; -lin genus_combretum_PN = mkPN "genus Combretum" ; -lin genus_commelina_PN = mkPN "genus Commelina" ; -lin genus_compsognathus_PN = mkPN "genus Compsognathus" ; -lin genus_convolvulus_PN = mkPN "genus Convolvulus" ; -lin genus_coreopsis_PN = mkPN "genus Coreopsis" ; -lin genus_coronilla_PN = mkPN "genus Coronilla" ; -lin genus_corozo_PN = mkPN "genus Corozo" ; -lin genus_corynebacterium_PN = mkPN "genus Corynebacterium" ; -lin genus_coryphantha_PN = mkPN "genus Coryphantha" ; -lin genus_corythosaurus_PN = mkPN "genus Corythosaurus" ; -lin genus_coscoroba_PN = mkPN "genus Coscoroba" ; -lin genus_cosmos_PN = mkPN "genus Cosmos" ; -lin genus_costia_PN = mkPN "genus Costia" ; -lin genus_cotinga_PN = mkPN "genus Cotinga" ; -lin genus_cotoneaster_PN = mkPN "genus Cotoneaster" ; -lin genus_crocus_PN = mkPN "genus Crocus" ; -lin genus_crotalaria_PN = mkPN "genus Crotalaria" ; -lin genus_croton_PN = mkPN "genus Croton" ; -lin genus_cryptocoryne_PN = mkPN "genus Cryptocoryne" ; -lin genus_cyclamen_PN = mkPN "genus Cyclamen" ; -lin genus_cyclops_PN = mkPN "genus Cyclops" ; -lin genus_cymbidium_PN = mkPN "genus Cymbidium" ; -lin genus_cynancum_PN = mkPN "genus Cynancum" ; -lin genus_cyrilla_PN = mkPN "genus Cyrilla" ; -lin genus_dahlia_PN = mkPN "genus Dahlia" ; -lin genus_daphne_PN = mkPN "genus Daphne" ; -lin genus_daphnia_PN = mkPN "genus Daphnia" ; -lin genus_davallia_PN = mkPN "genus Davallia" ; -lin genus_deinocheirus_PN = mkPN "genus Deinocheirus" ; -lin genus_deinonychus_PN = mkPN "genus Deinonychus" ; -lin genus_delphinium_PN = mkPN "genus Delphinium" ; -lin genus_dendrobium_PN = mkPN "genus Dendrobium" ; -lin genus_derris_PN = mkPN "genus Derris" ; -lin genus_deutzia_PN = mkPN "genus Deutzia" ; -lin genus_diapensia_PN = mkPN "genus Diapensia" ; -lin genus_diapheromera_PN = mkPN "genus Diapheromera" ; -lin genus_dicamptodon_PN = mkPN "genus Dicamptodon" ; -lin genus_dichondra_PN = mkPN "genus Dichondra" ; -lin genus_dictostylium_PN = mkPN "genus Dictostylium" ; -lin genus_difflugia_PN = mkPN "genus Difflugia" ; -lin genus_digitalis_PN = mkPN "genus Digitalis" ; -lin genus_dillenia_PN = mkPN "genus Dillenia" ; -lin genus_dimetrodon_PN = mkPN "genus Dimetrodon" ; -lin genus_diomedea_PN = mkPN "genus Diomedea" ; -lin genus_dioon_PN = mkPN "genus Dioon" ; -lin genus_diplococcus_PN = mkPN "genus Diplococcus" ; -lin genus_diplodocus_PN = mkPN "genus Diplodocus" ; -lin genus_disa_PN = mkPN "genus Disa" ; -lin genus_discina_PN = mkPN "genus Discina" ; -lin genus_doliolum_PN = mkPN "genus Doliolum" ; -lin genus_dombeya_PN = mkPN "genus Dombeya" ; -lin genus_doodia_PN = mkPN "genus Doodia" ; -lin genus_draba_PN = mkPN "genus Draba" ; -lin genus_dracaena_PN = mkPN "genus Dracaena" ; -lin genus_dracontium_PN = mkPN "genus Dracontium" ; -lin genus_drosophila_PN = mkPN "genus Drosophila" ; -lin genus_drypis_PN = mkPN "genus Drypis" ; -lin genus_dugong_PN = mkPN "genus Dugong" ; -lin genus_echinocactus_PN = mkPN "genus Echinocactus" ; -lin genus_echinococcus_PN = mkPN "genus Echinococcus" ; -lin genus_edaphosaurus_PN = mkPN "genus Edaphosaurus" ; -lin genus_edmontosaurus_PN = mkPN "genus Edmontosaurus" ; -lin genus_eimeria_PN = mkPN "genus Eimeria" ; -lin genus_elsholtzia_PN = mkPN "genus Elsholtzia" ; -lin genus_encephalartos_PN = mkPN "genus Encephalartos" ; -lin genus_engelmannia_PN = mkPN "genus Engelmannia" ; -lin genus_eoraptor_PN = mkPN "genus Eoraptor" ; -lin genus_epacris_PN = mkPN "genus Epacris" ; -lin genus_ephedra_PN = mkPN "genus Ephedra" ; -lin genus_epiphyllum_PN = mkPN "genus Epiphyllum" ; -lin genus_episcia_PN = mkPN "genus Episcia" ; -lin genus_eptatretus_PN = mkPN "genus Eptatretus" ; -lin genus_erechtites_PN = mkPN "genus Erechtites" ; -lin genus_erica_PN = mkPN "genus Erica" ; -lin genus_eriogonum_PN = mkPN "genus Eriogonum" ; -lin genus_erwinia_PN = mkPN "genus Erwinia" ; -lin genus_erythrina_PN = mkPN "genus Erythrina" ; -lin genus_escherichia_PN = mkPN "genus Escherichia" ; -lin genus_eucalyptus_PN = mkPN "genus Eucalyptus" ; -lin genus_euglena_PN = mkPN "genus Euglena" ; -lin genus_feijoa_PN = mkPN "genus Feijoa" ; -lin genus_filago_PN = mkPN "genus Filago" ; -lin genus_forestiera_PN = mkPN "genus Forestiera" ; -lin genus_forsythia_PN = mkPN "genus Forsythia" ; -lin genus_fothergilla_PN = mkPN "genus Fothergilla" ; -lin genus_freesia_PN = mkPN "genus Freesia" ; -lin genus_fuchsia_PN = mkPN "genus Fuchsia" ; -lin genus_fucus_PN = mkPN "genus Fucus" ; -lin genus_fusarium_PN = mkPN "genus Fusarium" ; -lin genus_gaillardia_PN = mkPN "genus Gaillardia" ; -lin genus_galago_PN = mkPN "genus Galago" ; -lin genus_galax_PN = mkPN "genus Galax" ; -lin genus_galictis_PN = mkPN "genus Galictis" ; -lin genus_gardenia_PN = mkPN "genus Gardenia" ; -lin genus_gastrolobium_PN = mkPN "genus Gastrolobium" ; -lin genus_gazania_PN = mkPN "genus Gazania" ; -lin genus_genipa_PN = mkPN "genus Genipa" ; -lin genus_genlisea_PN = mkPN "genus Genlisea" ; -lin genus_geranium_PN = mkPN "genus Geranium" ; -lin genus_gerardia_PN = mkPN "genus Gerardia" ; -lin genus_gesneria_PN = mkPN "genus Gesneria" ; -lin genus_giardia_PN = mkPN "genus Giardia" ; -lin genus_ginkgo_PN = mkPN "genus Ginkgo" ; -lin genus_gladiolus_PN = mkPN "genus Gladiolus" ; -lin genus_gliricidia_PN = mkPN "genus Gliricidia" ; -lin genus_globigerina_PN = mkPN "genus Globigerina" ; -lin genus_gloriosa_PN = mkPN "genus Gloriosa" ; -lin genus_glossina_PN = mkPN "genus Glossina" ; -lin genus_gloxinia_PN = mkPN "genus Gloxinia" ; -lin genus_gnetum_PN = mkPN "genus Gnetum" ; -lin genus_gorilla_PN = mkPN "genus Gorilla" ; -lin genus_grampus_PN = mkPN "genus Grampus" ; -lin genus_grevillea_PN = mkPN "genus Grevillea" ; -lin genus_grison_PN = mkPN "genus Grison" ; -lin genus_gyromitra_PN = mkPN "genus Gyromitra" ; -lin genus_halogeton_PN = mkPN "genus Halogeton" ; -lin genus_hamelia_PN = mkPN "genus Hamelia" ; -lin genus_harpullia_PN = mkPN "genus Harpullia" ; -lin genus_helianthemum_PN = mkPN "genus Helianthemum" ; -lin genus_helianthus_PN = mkPN "genus Helianthus" ; -lin genus_heliophila_PN = mkPN "genus Heliophila" ; -lin genus_heliopsis_PN = mkPN "genus Heliopsis" ; -lin genus_helvella_PN = mkPN "genus Helvella" ; -lin genus_hepatica_PN = mkPN "genus Hepatica" ; -lin genus_herrerasaurus_PN = mkPN "genus Herrerasaurus" ; -lin genus_hibiscus_PN = mkPN "genus Hibiscus" ; -lin genus_hippeastrum_PN = mkPN "genus Hippeastrum" ; -lin genus_hippopotamus_PN = mkPN "genus Hippopotamus" ; -lin genus_homo_PN = mkPN "genus Homo" ; -lin genus_hovea_PN = mkPN "genus Hovea" ; -lin genus_hoya_PN = mkPN "genus Hoya" ; -lin genus_hyacinthus_PN = mkPN "genus Hyacinthus" ; -lin genus_hyaena_PN = mkPN "genus Hyaena" ; -lin genus_hydra_PN = mkPN "genus Hydra" ; -lin genus_hydrangea_PN = mkPN "genus Hydrangea" ; -lin genus_hydrilla_PN = mkPN "genus Hydrilla" ; -lin genus_ibero_mesornis_PN = mkPN "genus Ibero mesornis" ; -lin genus_ibis_PN = mkPN "genus Ibis" ; -lin genus_ichthyosaurus_PN = mkPN "genus Ichthyosaurus" ; -lin genus_ichthyostega_PN = mkPN "genus Ichthyostega" ; -lin genus_idesia_PN = mkPN "genus Idesia" ; -lin genus_iguana_PN = mkPN "genus Iguana" ; -lin genus_iguanodon_PN = mkPN "genus Iguanodon" ; -lin genus_impatiens_PN = mkPN "genus Impatiens" ; -lin genus_indri_PN = mkPN "genus Indri" ; -lin genus_inga_PN = mkPN "genus Inga" ; -lin genus_inula_PN = mkPN "genus Inula" ; -lin genus_iris_PN = mkPN "genus Iris" ; -lin genus_iva_PN = mkPN "genus Iva" ; -lin genus_jabiru_PN = mkPN "genus Jabiru" ; -lin genus_junco_PN = mkPN "genus Junco" ; -lin genus_kalmia_PN = mkPN "genus Kalmia" ; -lin genus_keteleeria_PN = mkPN "genus Keteleeria" ; -lin genus_klebsiella_PN = mkPN "genus Klebsiella" ; -lin genus_kniphofia_PN = mkPN "genus Kniphofia" ; -lin genus_kohleria_PN = mkPN "genus Kohleria" ; -lin genus_krigia_PN = mkPN "genus Krigia" ; -lin genus_lactobacillus_PN = mkPN "genus Lactobacillus" ; -lin genus_laelia_PN = mkPN "genus Laelia" ; -lin genus_lansium_PN = mkPN "genus Lansium" ; -lin genus_lecanopteris_PN = mkPN "genus Lecanopteris" ; -lin genus_lecanora_PN = mkPN "genus Lecanora" ; -lin genus_leipoa_PN = mkPN "genus Leipoa" ; -lin genus_lemur_PN = mkPN "genus Lemur" ; -lin genus_lepidobotrys_PN = mkPN "genus Lepidobotrys" ; -lin genus_lepiota_PN = mkPN "genus Lepiota" ; -lin genus_leptospira_PN = mkPN "genus Leptospira" ; -lin genus_lespedeza_PN = mkPN "genus Lespedeza" ; -lin genus_leucocytozoon_PN = mkPN "genus Leucocytozoon" ; -lin genus_leucothoe_PN = mkPN "genus Leucothoe" ; -lin genus_liparis_PN = mkPN "genus Liparis" ; -lin genus_liquidambar_PN = mkPN "genus Liquidambar" ; -lin genus_listeria_PN = mkPN "genus Listeria" ; -lin genus_litchi_PN = mkPN "genus Litchi" ; -lin genus_lithops_PN = mkPN "genus Lithops" ; -lin genus_loasa_PN = mkPN "genus Loasa" ; -lin genus_lobelia_PN = mkPN "genus Lobelia" ; -lin genus_loligo_PN = mkPN "genus Loligo" ; -lin genus_lomatia_PN = mkPN "genus Lomatia" ; -lin genus_loris_PN = mkPN "genus Loris" ; -lin genus_luffa_PN = mkPN "genus Luffa" ; -lin genus_lychnis_PN = mkPN "genus Lychnis" ; -lin genus_lynx_PN = mkPN "genus Lynx" ; -lin genus_macadamia_PN = mkPN "genus Macadamia" ; -lin genus_macrotus_PN = mkPN "genus Macrotus" ; -lin genus_macrozamia_PN = mkPN "genus Macrozamia" ; -lin genus_magnolia_PN = mkPN "genus Magnolia" ; -lin genus_malope_PN = mkPN "genus Malope" ; -lin genus_mammillaria_PN = mkPN "genus Mammillaria" ; -lin genus_manta_PN = mkPN "genus Manta" ; -lin genus_mantis_PN = mkPN "genus Mantis" ; -lin genus_maranta_PN = mkPN "genus Maranta" ; -lin genus_martynia_PN = mkPN "genus Martynia" ; -lin genus_masdevallia_PN = mkPN "genus Masdevallia" ; -lin genus_maxillaria_PN = mkPN "genus Maxillaria" ; -lin genus_megalosaurus_PN = mkPN "genus Megalosaurus" ; -lin genus_melilotus_PN = mkPN "genus Melilotus" ; -lin genus_mesohippus_PN = mkPN "genus Mesohippus" ; -lin genus_metasequoia_PN = mkPN "genus Metasequoia" ; -lin genus_millettia_PN = mkPN "genus Millettia" ; -lin genus_mimosa_PN = mkPN "genus Mimosa" ; -lin genus_mola_PN = mkPN "genus Mola" ; -lin genus_moloch_PN = mkPN "genus Moloch" ; -lin genus_monarda_PN = mkPN "genus Monarda" ; -lin genus_monilia_PN = mkPN "genus Monilia" ; -lin genus_mononychus_PN = mkPN "genus Mononychus" ; -lin genus_monstera_PN = mkPN "genus Monstera" ; -lin genus_montezuma_PN = mkPN "genus Montezuma" ; -lin genus_mucor_PN = mkPN "genus Mucor" ; -lin genus_mucuna_PN = mkPN "genus Mucuna" ; -lin genus_mutisia_PN = mkPN "genus Mutisia" ; -lin genus_mycobacterium_PN = mkPN "genus Mycobacterium" ; -lin genus_mycoplasma_PN = mkPN "genus Mycoplasma" ; -lin genus_mylodon_PN = mkPN "genus Mylodon" ; -lin genus_nanomia_PN = mkPN "genus Nanomia" ; -lin genus_narcissus_PN = mkPN "genus Narcissus" ; -lin genus_nautilus_PN = mkPN "genus Nautilus" ; -lin genus_nemophila_PN = mkPN "genus Nemophila" ; -lin genus_nephthytis_PN = mkPN "genus Nephthytis" ; -lin genus_nerita_PN = mkPN "genus Nerita" ; -lin genus_neritina_PN = mkPN "genus Neritina" ; -lin genus_nierembergia_PN = mkPN "genus Nierembergia" ; -lin genus_nigella_PN = mkPN "genus Nigella" ; -lin genus_noctiluca_PN = mkPN "genus Noctiluca" ; -lin genus_nostoc_PN = mkPN "genus Nostoc" ; -lin genus_nothosaurus_PN = mkPN "genus Nothosaurus" ; -lin genus_notornis_PN = mkPN "genus Notornis" ; -lin genus_octopus_PN = mkPN "genus Octopus" ; -lin genus_odontoglossum_PN = mkPN "genus Odontoglossum" ; -lin genus_ommastrephes_PN = mkPN "genus Ommastrephes" ; -lin genus_oncidium_PN = mkPN "genus Oncidium" ; -lin genus_orchis_PN = mkPN "genus Orchis" ; -lin genus_origanum_PN = mkPN "genus Origanum" ; -lin genus_oryx_PN = mkPN "genus Oryx" ; -lin genus_osmunda_PN = mkPN "genus Osmunda" ; -lin genus_othonna_PN = mkPN "genus Othonna" ; -lin genus_oxalis_PN = mkPN "genus Oxalis" ; -lin genus_pachysandra_PN = mkPN "genus Pachysandra" ; -lin genus_palometa_PN = mkPN "genus Palometa" ; -lin genus_pandanus_PN = mkPN "genus Pandanus" ; -lin genus_paramecium_PN = mkPN "genus Paramecium" ; -lin genus_parnassia_PN = mkPN "genus Parnassia" ; -lin genus_paspalum_PN = mkPN "genus Paspalum" ; -lin genus_pavonia_PN = mkPN "genus Pavonia" ; -lin genus_pecopteris_PN = mkPN "genus Pecopteris" ; -lin genus_pecten_PN = mkPN "genus Pecten" ; -lin genus_peperomia_PN = mkPN "genus Peperomia" ; -lin genus_peripatus_PN = mkPN "genus Peripatus" ; -lin genus_petunia_PN = mkPN "genus Petunia" ; -lin genus_phacelia_PN = mkPN "genus Phacelia" ; -lin genus_phaius_PN = mkPN "genus Phaius" ; -lin genus_phalanger_PN = mkPN "genus Phalanger" ; -lin genus_phenacomys_PN = mkPN "genus Phenacomys" ; -lin genus_philadelphus_PN = mkPN "genus Philadelphus" ; -lin genus_philodendron_PN = mkPN "genus Philodendron" ; -lin genus_phlomis_PN = mkPN "genus Phlomis" ; -lin genus_phlox_PN = mkPN "genus Phlox" ; -lin genus_physa_PN = mkPN "genus Physa" ; -lin genus_physostegia_PN = mkPN "genus Physostegia" ; -lin genus_pisanosaurus_PN = mkPN "genus Pisanosaurus" ; -lin genus_pistia_PN = mkPN "genus Pistia" ; -lin genus_pitta_PN = mkPN "genus Pitta" ; -lin genus_plasmodium_PN = mkPN "genus Plasmodium" ; -lin genus_plectranthus_PN = mkPN "genus Plectranthus" ; -lin genus_plesiosaurus_PN = mkPN "genus Plesiosaurus" ; -lin genus_pleurothallis_PN = mkPN "genus Pleurothallis" ; -lin genus_plumbago_PN = mkPN "genus Plumbago" ; -lin genus_pogonia_PN = mkPN "genus Pogonia" ; -lin genus_polemonium_PN = mkPN "genus Polemonium" ; -lin genus_portulaca_PN = mkPN "genus Portulaca" ; -lin genus_potamogale_PN = mkPN "genus Potamogale" ; -lin genus_primula_PN = mkPN "genus Primula" ; -lin genus_proconsul_PN = mkPN "genus Proconsul" ; -lin genus_protea_PN = mkPN "genus Protea" ; -lin genus_protoavis_PN = mkPN "genus Protoavis" ; -lin genus_protoceratops_PN = mkPN "genus Protoceratops" ; -lin genus_protohippus_PN = mkPN "genus Protohippus" ; -lin genus_psilophyton_PN = mkPN "genus Psilophyton" ; -lin genus_psittacosaurus_PN = mkPN "genus Psittacosaurus" ; -lin genus_pteropogon_PN = mkPN "genus Pteropogon" ; -lin genus_pyracantha_PN = mkPN "genus Pyracantha" ; -lin genus_pyrola_PN = mkPN "genus Pyrola" ; -lin genus_pyrrhuloxia_PN = mkPN "genus Pyrrhuloxia" ; -lin genus_pythium_PN = mkPN "genus Pythium" ; -lin genus_python_PN = mkPN "genus Python" ; -lin genus_quassia_PN = mkPN "genus Quassia" ; -lin genus_rauwolfia_PN = mkPN "genus Rauwolfia" ; -lin genus_ravenala_PN = mkPN "genus Ravenala" ; -lin genus_regnellidium_PN = mkPN "genus Regnellidium" ; -lin genus_reseda_PN = mkPN "genus Reseda" ; -lin genus_rhea_PN = mkPN "genus Rhea" ; -lin genus_rhinoceros_PN = mkPN "genus Rhinoceros" ; -lin genus_rhizoctinia_PN = mkPN "genus Rhizoctinia" ; -lin genus_rhizopus_PN = mkPN "genus Rhizopus" ; -lin genus_rhodanthe_PN = mkPN "genus Rhodanthe" ; -lin genus_rhododendron_PN = mkPN "genus Rhododendron" ; -lin genus_rickettsia_PN = mkPN "genus Rickettsia" ; -lin genus_rivulus_PN = mkPN "genus Rivulus" ; -lin genus_roccella_PN = mkPN "genus Roccella" ; -lin genus_roridula_PN = mkPN "genus Roridula" ; -lin genus_sabbatia_PN = mkPN "genus Sabbatia" ; -lin genus_sagitta_PN = mkPN "genus Sagitta" ; -lin genus_saiga_PN = mkPN "genus Saiga" ; -lin genus_salmonella_PN = mkPN "genus Salmonella" ; -lin genus_salpa_PN = mkPN "genus Salpa" ; -lin genus_salpiglossis_PN = mkPN "genus Salpiglossis" ; -lin genus_salvia_PN = mkPN "genus Salvia" ; -lin genus_sansevieria_PN = mkPN "genus Sansevieria" ; -lin genus_sargassum_PN = mkPN "genus Sargassum" ; -lin genus_sassafras_PN = mkPN "genus Sassafras" ; -lin genus_scabiosa_PN = mkPN "genus Scabiosa" ; -lin genus_scarabaeus_PN = mkPN "genus Scarabaeus" ; -lin genus_schizanthus_PN = mkPN "genus Schizanthus" ; -lin genus_schizopetalon_PN = mkPN "genus Schizopetalon" ; -lin genus_sciara_PN = mkPN "genus Sciara" ; -lin genus_scilla_PN = mkPN "genus Scilla" ; -lin genus_sclerotinia_PN = mkPN "genus Sclerotinia" ; -lin genus_scorzonera_PN = mkPN "genus Scorzonera" ; -lin genus_sedum_PN = mkPN "genus Sedum" ; -lin genus_senna_PN = mkPN "genus Senna" ; -lin genus_sequoia_PN = mkPN "genus Sequoia" ; -lin genus_serratia_PN = mkPN "genus Serratia" ; -lin genus_sesbania_PN = mkPN "genus Sesbania" ; -lin genus_shigella_PN = mkPN "genus Shigella" ; -lin genus_shortia_PN = mkPN "genus Shortia" ; -lin genus_silene_PN = mkPN "genus Silene" ; -lin genus_sinornis_PN = mkPN "genus Sinornis" ; -lin genus_siren_PN = mkPN "genus Siren" ; -lin genus_sisymbrium_PN = mkPN "genus Sisymbrium" ; -lin genus_sivapithecus_PN = mkPN "genus Sivapithecus" ; -lin genus_sobralia_PN = mkPN "genus Sobralia" ; -lin genus_sorghum_PN = mkPN "genus Sorghum" ; -lin genus_spadella_PN = mkPN "genus Spadella" ; -lin genus_spathiphyllum_PN = mkPN "genus Spathiphyllum" ; -lin genus_sphagnum_PN = mkPN "genus Sphagnum" ; -lin genus_spirillum_PN = mkPN "genus Spirillum" ; -lin genus_spirogyra_PN = mkPN "genus Spirogyra" ; -lin genus_spirula_PN = mkPN "genus Spirula" ; -lin genus_squilla_PN = mkPN "genus Squilla" ; -lin genus_stanhopea_PN = mkPN "genus Stanhopea" ; -lin genus_stapelia_PN = mkPN "genus Stapelia" ; -lin genus_staphylococcus_PN = mkPN "genus Staphylococcus" ; -lin genus_staurikosaurus_PN = mkPN "genus Staurikosaurus" ; -lin genus_stegosaurus_PN = mkPN "genus Stegosaurus" ; -lin genus_stelis_PN = mkPN "genus Stelis" ; -lin genus_stenopterygius_PN = mkPN "genus Stenopterygius" ; -lin genus_stentor_PN = mkPN "genus Stentor" ; -lin genus_stephanotis_PN = mkPN "genus Stephanotis" ; -lin genus_sterculia_PN = mkPN "genus Sterculia" ; -lin genus_stevia_PN = mkPN "genus Stevia" ; -lin genus_streptocarpus_PN = mkPN "genus Streptocarpus" ; -lin genus_streptococcus_PN = mkPN "genus Streptococcus" ; -lin genus_streptomyces_PN = mkPN "genus Streptomyces" ; -lin genus_strophanthus_PN = mkPN "genus Strophanthus" ; -lin genus_struthiomimus_PN = mkPN "genus Struthiomimus" ; -lin genus_styracosaurus_PN = mkPN "genus Styracosaurus" ; -lin genus_styrax_PN = mkPN "genus Styrax" ; -lin genus_suksdorfia_PN = mkPN "genus Suksdorfia" ; -lin genus_taenia_PN = mkPN "genus Taenia" ; -lin genus_tamandua_PN = mkPN "genus Tamandua" ; -lin genus_tarpon_PN = mkPN "genus Tarpon" ; -lin genus_tenrec_PN = mkPN "genus Tenrec" ; -lin genus_teredo_PN = mkPN "genus Teredo" ; -lin genus_tetrahymena_PN = mkPN "genus Tetrahymena" ; -lin genus_thiobacillus_PN = mkPN "genus Thiobacillus" ; -lin genus_thrips_PN = mkPN "genus Thrips" ; -lin genus_thyrsopteris_PN = mkPN "genus Thyrsopteris" ; -lin genus_tithonia_PN = mkPN "genus Tithonia" ; -lin genus_tortrix_PN = mkPN "genus Tortrix" ; -lin genus_trachodon_PN = mkPN "genus Trachodon" ; -lin genus_tragopan_PN = mkPN "genus Tragopan" ; -lin genus_treponema_PN = mkPN "genus Treponema" ; -lin genus_triceratops_PN = mkPN "genus Triceratops" ; -lin genus_trichodesmium_PN = mkPN "genus Trichodesmium" ; -lin genus_trichomonas_PN = mkPN "genus Trichomonas" ; -lin genus_trillium_PN = mkPN "genus Trillium" ; -lin genus_trogon_PN = mkPN "genus Trogon" ; -lin genus_turreae_PN = mkPN "genus Turreae" ; -lin genus_tyrannosaurus_PN = mkPN "genus Tyrannosaurus" ; -lin genus_ursinia_PN = mkPN "genus Ursinia" ; -lin genus_utahraptor_PN = mkPN "genus Utahraptor" ; -lin genus_vanda_PN = mkPN "genus Vanda" ; -lin genus_vanilla_PN = mkPN "genus Vanilla" ; -lin genus_velociraptor_PN = mkPN "genus Velociraptor" ; -lin genus_verbena_PN = mkPN "genus Verbena" ; -lin genus_vernonia_PN = mkPN "genus Vernonia" ; -lin genus_veronica_PN = mkPN "genus Veronica" ; -lin genus_verticillium_PN = mkPN "genus Verticillium" ; -lin genus_vibrio_PN = mkPN "genus Vibrio" ; -lin genus_vireo_PN = mkPN "genus Vireo" ; -lin genus_vorticella_PN = mkPN "genus Vorticella" ; -lin genus_weigela_PN = mkPN "genus Weigela" ; -lin genus_welwitschia_PN = mkPN "genus Welwitschia" ; -lin genus_wisteria_PN = mkPN "genus Wisteria" ; -lin genus_woodsia_PN = mkPN "genus Woodsia" ; -lin genus_wyethia_PN = mkPN "genus Wyethia" ; -lin genus_xeranthemum_PN = mkPN "genus Xeranthemum" ; -lin genus_xylosma_PN = mkPN "genus Xylosma" ; -lin genus_yucca_PN = mkPN "genus Yucca" ; -lin genus_zamia_PN = mkPN "genus Zamia" ; -lin genus_zinnia_PN = mkPN "genus Zinnia" ; -lin genus_zoysia_PN = mkPN "genus Zoysia" ; -lin geocentric_A = compoundA (mkA "geocentric"); -- from DictEng -lin geochemistry_N = mkN "geochemistry" ; -lin geode_N = mkN "geode" ; -lin geodesic_N = mkN "geodesic" ; -lin geodesy_N = mkN "geodesy" ; -lin geodetic_A = mkA "geodetic" ; -lin geoduck_N = mkN "geoduck" ; -lin geographer_N = mkN "geographer" "geographers"; -- from DictEng -lin geographic_A = mkA "geographic" ; -lin geographical_A = compoundA (mkA "geographical"); -- from DictEng -lin geographically_Adv = mkAdv "geographically" ; -lin geography_N = mkN "geography" ; -- from DictEng -lin geological_A = compoundA (mkA "geological"); -- from DictEng -lin geologically_Adv = mkAdv "geologically" ; -lin geologist_N = mkN "geologist" "geologists"; -- from DictEng -lin geology_N = mkN "geology" ; -- from DictEng -lin geomancer_N = mkN "geomancer" ; -lin geomancy_N = mkN "geomancy" ; -lin geometer_N = mkN "geometer" ; -lin geometric_A = compoundA (mkA "geometric"); -- from DictEng -lin geometrical_A = compoundA (mkA "geometrical"); -- from DictEng -lin geometrically_Adv = mkAdv "geometrically" ; -lin geometrid_N = mkN "geometrid" ; -lin geometry_N = mkN "geometry" ; -- from DictEng -lin geomorphologic_A = mkA "geomorphologic" ; -lin geophagy_N = mkN "geophagy" ; -lin geophysical_A = compoundA (mkA "geophysical"); -- from DictEng -lin geophysicist_N = mkN "geophysicist" ; -lin geophysics_N = mkN "geophysics" "geophysics"; -- from DictEng -lin geophyte_N = mkN "geophyte" ; -lin geophytic_A = mkA "geophytic" ; -lin geopolitical_A = mkA "geopolitical" ; -lin geopolitics_N = mkN "geopolitics" "geopolitics"; -- from DictEng -lin geordie_N = mkN "geordie" ; -lin georgette_N = mkN "georgette" ; -- from DictEng -lin georgian_A = compoundA (mkA "georgian"); -- from DictEng -lin georgian_N = mkN "georgian" "georgians"; -- from DictEng -lin geostationary_A = mkA "geostationary" ; -lin geostrategic_A = mkA "geostrategic" ; -lin geostrategy_N = mkN "geostrategy" ; -lin geosynchronous_A = mkA "geosynchronous" ; -lin geothermal_A = mkA "geothermal" ; -lin geothermally_Adv = mkAdv "geothermally" ; -lin geotropism_N = mkN "geotropism" ; -lin geranium_N = mkN "geranium" "geraniums"; -- from DictEng -lin gerardia_N = mkN "gerardia" ; -lin gerbil_N = mkN "gerbil" ; -lin gerenuk_N = mkN "gerenuk" ; -lin geriatric_A = compoundA (mkA "geriatric"); -- from DictEng -lin geriatrician_N = mkN "geriatrician" "geriatricians"; -- from DictEng -lin geriatrics_N = mkN "geriatrics" "geriatrics"; -- from DictEng -lin germ_N = mkN "germ" "germs"; -- from DictEng -lin german_A = compoundA (mkA "German"); -- from DictEng -lin german_N = mkN "German" "Germans"; -- from DictEng -lin germander_N = mkN "germander" ; -lin germane_A = compoundA (mkA "germane"); -- from DictEng -lin germaneness_N = mkN "germaneness" ; -lin germanic_A = compoundA (mkA "germanic"); -- from DictEng -lin germanite_N = mkN "germanite" ; -lin germanium_N = mkN "germanium" ; -lin germfree_A = mkA "germfree" ; -lin germicide_N = mkN "germicide" "germicides"; -- from DictEng -lin germinal_A = mkA "germinal" ; -lin germinate_V = mkV "germinate" "germinates" "germinated" "germinated" "germinating"; -- from DictEng -lin germinate_V2 = mkV2 (mkV "germinate" "germinates" "germinated" "germinated" "germinating"); -- from DictEng -lin germination_N = mkN "germination" ; -- from DictEng -lin germy_A = mkA "germy" ; -lin gerontocracy_N = mkN "gerontocracy" ; -lin gerontologist_N = mkN "gerontologist" ; -lin gerontology_N = mkN "gerontology" ; -- from DictEng -lin gerrymander_N = mkN "gerrymander" "gerrymanders"; -- from DictEng -lin gerrymander_V2 = mkV2 (mkV "gerrymander" "gerrymanders" "gerrymandered" "gerrymandered" "gerrymandering"); -- from DictEng -lin gerund_N = mkN "gerund" "gerunds"; -- from DictEng -lin gerundial_A = mkA "gerundial" ; -lin gesneria_N = mkN "gesneria" ; -lin gesneriad_N = mkN "gesneriad" ; -lin gesso_N = mkN "gesso" ; -lin gestalt_N = mkN "gestalt" ; -lin gestapo_N = mkN "gestapo" "gestapos"; -- from DictEng -lin gestation_N = mkN "gestation" "gestations"; -- from DictEng -lin gestational_A = mkA "gestational" ; -lin gesticulate_V = mkV "gesticulate" "gesticulates" "gesticulated" "gesticulated" "gesticulating"; -- from DictEng -lin gesticulating_A = mkA "gesticulating" ; -lin gesticulation_N = mkN "gesticulation" "gesticulations"; -- from DictEng -lin gestural_A = mkA "gestural" ; -lin gesture_N = mkN "gesture" "gestures"; -- from DictEng -lin gesture_V = mkV "gesture" "gestures" "gestured" "gestured" "gesturing"; -- from DictEng -lin get_N = mkN "get" ; -lin get_V = IrregEng.get_V; -- from DictEng -lin get_V2 = mkV2 (IrregEng.get_V); -- from DictEng -lin get_V2V = mkV2V (IrregEng.get_V) noPrep to_Prep ; -- from DictEng -lin get_VA = mkVA (IrregEng.get_V); -- from DictEng -lin get_VS = mkVS (IrregEng.get_V); -- from DictEng -lin get_VV = mkVV (IrregEng.get_V); -- from DictEng -lin get_at_able_A = compoundA (mkA "get - at - able"); -- from DictEng -lin get_together_N = mkN "get - together" "get - togethers"; -- from DictEng -lin get_up_N = mkN "get - up" "get - ups"; -- from DictEng -lin getaway_N = mkN "getaway" "getaways"; -- from DictEng -lin gettable_A = mkA "gettable" ; -lin geum_N = mkN "geum" "geums"; -- from DictEng -lin geyser_N = mkN "geyser" "geysers"; -- from DictEng -lin ghanaian_A = compoundA (mkA "ghanaian"); -- from DictEng -lin ghanaian_N = mkN "ghanaian" "ghanaians"; -- from DictEng -lin gharry_N = mkN "gharry" "gharries"; -- from DictEng -lin ghastliness_N = mkN "ghastliness" ; -lin ghastly_A = mkA "ghastly" "ghastlier"; -- from DictEng -lin ghat_N = mkN "ghat" "ghats"; -- from DictEng -lin ghatti_N = mkN "ghatti" ; -lin ghee_N = mkN "ghee" ; -- from DictEng -lin gherkin_N = mkN "gherkin" "gherkins"; -- from DictEng -lin ghetto_N = mkN "ghetto" "ghettos"; -- from DictEng -lin ghillie_N = mkN "ghillie" ; -lin ghost_N = mkN "ghost" "ghosts"; -- from DictEng -lin ghost_V = mkV "ghost" "ghosts" "ghosted" "ghosted" "ghosting"; -- from DictEng -lin ghost_V2 = mkV2 (mkV "ghost" "ghosts" "ghosted" "ghosted" "ghosting"); -- from DictEng -lin ghost_writer_N = mkN "ghost - writer" "ghost - writers"; -- from DictEng -lin ghostliness_N = mkN "ghostliness" ; -- from DictEng -lin ghostly_A = compoundA (mkA "ghostly"); -- from DictEng -lin ghostwriter_N = mkN "ghostwriter" ; -lin ghoul_N = mkN "ghoul" "ghouls"; -- from DictEng -lin ghoulish_A = compoundA (mkA "ghoulish"); -- from DictEng -lin ghrelin_N = mkN "ghrelin" ; -lin gi_N = mkN "gi" ; -- from DictEng -lin giant_N = mkN "giant" "giants"; -- from DictEng -lin giantess_N = mkN "giantess" "giantesses"; -- from DictEng -lin giantism_N = mkN "giantism" ; -lin giardia_N = mkN "giardia" ; -lin giardiasis_N = mkN "giardiasis" ; -lin gib_N = mkN "gib" ; -lin gibber_V = mkV "gibber" "gibbers" "gibbered" "gibbered" "gibbering"; -- from DictEng -lin gibber_V2 = mkV2 (mkV "gibber") ; -lin gibberellin_N = mkN "gibberellin" ; -lin gibberish_N = mkN "gibberish" ; -- from DictEng -lin gibbet_N = mkN "gibbet" "gibbets"; -- from DictEng -lin gibbet_V2 = mkV2 (mkV "gibbet" "gibbets" "gibbeted" "gibbeted" "gibbeting"); -- from DictEng -lin gibbon_N = mkN "gibbon" "gibbons"; -- from DictEng -lin gibbous_A = compoundA (mkA "gibbous"); -- from DictEng -lin gibbsite_N = mkN "gibbsite" ; -lin gibe_N = mkN "gibe" "gibes"; -- from DictEng -lin gibe_V = mkV "gibe" "gibes" "gibed" "gibed" "gibing"; -- from DictEng -lin gibe_V2 = mkV2 (mkV "gibe") ; -lin gibibit_N = mkN "gibibit" ; -lin gibingly_Adv = mkAdv "gibingly"; -- from DictEng -lin giblet_N = mkN "giblet" ; -lin gibraltarian_A = compoundA (mkA "gibraltarian"); -- from DictEng -lin gibraltarian_N = mkN "gibraltarian" "gibraltarians"; -- from DictEng -lin giddily_Adv = mkAdv "giddily"; -- from DictEng -lin giddiness_N = mkN "giddiness" ; -- from DictEng -lin giddy_A = mkA "giddy" "giddier"; -- from DictEng -lin gidgee_N = mkN "gidgee" ; -lin gift_N = mkN "gift" "gifts"; -- from DictEng -lin gift_V2 = mkV2 (mkV "gift" "gifts" "gifted" "gifted" "gifting"); -- from DictEng -lin gifted_A = compoundA (mkA "gifted"); -- from DictEng -lin gig_N = mkN "gig" "gigs"; -- from DictEng -lin gigabit_N = mkN "gigabit" ; -lin gigabyte_N = mkN "gigabyte" ; -lin gigahertz_N = mkN "gigahertz" ; -lin gigantic_A = compoundA (mkA "gigantic"); -- from DictEng -lin gigantism_N = mkN "gigantism" ; -lin giggle_N = mkN "giggle" "giggles"; -- from DictEng -lin giggle_V = mkV "giggle" "giggles" "giggled" "giggled" "giggling"; -- from DictEng -lin giggle_V2 = mkV2 (mkV "giggle") ; -lin gigolo_N = mkN "gigolo" "gigolos"; -- from DictEng -lin gilbert_N = mkN "gilbert" ; -lin gilbertian_A = compoundA (mkA "gilbertian"); -- from DictEng -lin gild_N = mkN "gild" "gilds"; -- from DictEng -lin gild_V2 = mkV2 (mkV "gild" "gilds" "gilded" "gilded" "gilding"); -- from DictEng -lin gilded_A = mkA "gilded" ; -lin gilder_N = mkN "gilder" "gilders"; -- from DictEng -lin gildhall_N = mkN "gildhall" ; -lin gilding_N = mkN "gilding" ; -- from DictEng -lin gill_N = mkN "gill" "gills"; -- from DictEng -lin gill_V2 = mkV2 (mkV "gill") ; -lin gillie_N = mkN "gillie" "gillies"; -- from DictEng -lin gilt_N = mkN "gilt" ; -- from DictEng -lin gilt_edged_A = compoundA (mkA "gilt - edged"); -- from DictEng -lin gilt_edged_A = compoundA (mkA "gilt - edged"); -- from DictEng -lin gimbal_N = mkN "gimbal" ; -lin gimbaled_A = mkA "gimbaled" ; -lin gimcrack_A = compoundA (mkA "gimcrack"); -- from DictEng -lin gimel_N = mkN "gimel" ; -lin gimlet_N = mkN "gimlet" "gimlets"; -- from DictEng -lin gimmick_N = mkN "gimmick" "gimmicks"; -- from DictEng -lin gimmickry_N = mkN "gimmickry" ; -lin gin_N = mkN "gin" "gins"; -- from DictEng -lin gin_V2 = mkV2 (mkV "gin" "gins" "ginned" "ginned" "ginning"); -- from DictEng -lin ginger_A = mkA "ginger" ; -lin ginger_N = mkN "ginger" ; -- from DictEng -lin ginger_V2 = mkV2 (mkV "ginger" "gingers" "gingered" "gingered" "gingering"); -- from DictEng -lin ginger_scented_A = compoundA (mkA "ginger scented") ; -lin gingerbread_N = mkN "gingerbread" "gingerbreads"; -- from DictEng -lin gingerly_A = compoundA (mkA "gingerly"); -- from DictEng -lin gingerly_Adv = mkAdv "gingerly"; -- from DictEng -lin gingerol_N = mkN "gingerol" ; -lin gingersnap_N = mkN "gingersnap" ; -lin gingery_A = mkA "gingery" ; -lin gingham_N = mkN "gingham" ; -- from DictEng -lin gingiva_N = mkN "gingiva" ; -lin gingival_A = mkA "gingival" ; -lin gingivitis_N = mkN "gingivitis" ; -lin gingko_N = mkN "gingko" "gingkos"; -- from DictEng -lin ginkgo_N = mkN "ginkgo" ; -lin ginseng_N = mkN "ginseng" ; -- from DictEng -lin gipsy_N = mkN "gipsy" "gipsies"; -- from DictEng -lin gipsywort_N = mkN "gipsywort" ; -lin giraffe_N = mkN "giraffe" "giraffes"; -- from DictEng -lin girandole_N = mkN "girandole" ; -lin gird_V = mkV "gird"; -- from DictEng -lin gird_V2 = mkV2 (mkV "gird" "girds" "girded" "girded" "girding"); -- from DictEng -lin girder_N = mkN "girder" "girders"; -- from DictEng -lin girdle_N = mkN "girdle" "girdles"; -- from DictEng -lin girdle_V2 = mkV2 (mkV "girdle" "girdles" "girdled" "girdled" "girdling"); -- from DictEng -lin girl_N = mkN "girl" "girls"; -- from DictEng -lin girl_friday_PN = mkPN "girl Friday" ; -lin girlfriend_N = mkN "girlfriend" "girlfriends"; -- from DictEng -lin girlhood_N = mkN "girlhood" ; -- from DictEng -lin girlish_A = compoundA (mkA "girlish"); -- from DictEng -lin girlishly_Adv = mkAdv "girlishly" ; -lin girlishness_N = mkN "girlishness" ; -- from DictEng -lin giro_N = mkN "giro" ; -- from DictEng -lin girth_N = mkN "girth" "girths"; -- from DictEng -lin gist_N = mkN "gist" "gists"; -- from DictEng -lin gitana_N = mkN "gitana" ; -lin gitano_N = mkN "gitano" ; -lin give_N = mkN "give" ; -- from DictEng -lin give_V = IrregEng.give_V; -- from DictEng -lin give_V2 = mkV2 (IrregEng.give_V); -- from DictEng -lin give_V3 = mkV3 (IrregEng.give_V); -- from DictEng -lin give_and_go_N = mkN "give and go" ; -lin give_or_take_Adv = mkAdv "give or take" ; -lin giveaway_N = mkN "giveaway" "giveaways"; -- from DictEng -lin given_A = mkA "given" ; -lin given_N = mkN "given" ; -lin givenness_N = mkN "givenness" ; -lin giver_N = mkN "giver" "givers"; -- from DictEng -lin giveth_V2 = mkV2 (mkV "giveth"); -- from DictEng -lin giving_N = mkN "giving" ; -lin gizzard_N = mkN "gizzard" "gizzards"; -- from DictEng -lin glabella_N = mkN "glabella" ; -lin glabellar_A = mkA "glabellar" ; -lin glabrescent_A = mkA "glabrescent" ; -lin glabrous_A = mkA "glabrous" ; -lin glace_A = compoundA (mkA "glacé"); -- from DictEng -lin glacial_A = compoundA (mkA "glacial"); -- from DictEng -lin glacially_Adv = mkAdv "glacially" ; -lin glaciated_A = mkA "glaciated" ; -lin glaciation_N = mkN "glaciation" ; -lin glacier_N = mkN "glacier" "glaciers"; -- from DictEng -lin glad_A = mkA "glad" "gladder*"; -- from DictEng -lin gladden_V2 = mkV2 (mkV "gladden" "gladdens" "gladdened" "gladdened" "gladdening"); -- from DictEng -lin gladdened_A = mkA "gladdened" ; -lin glade_N = mkN "glade" "glades"; -- from DictEng -lin gladiator_N = mkN "gladiator" "gladiators"; -- from DictEng -lin gladiatorial_A = compoundA (mkA "gladiatorial"); -- from DictEng -lin gladiolus_N = mkN "gladiolus" "gladioluses"; -- from DictEng -lin gladly_Adv = mkAdv "gladly" ; -lin gladness_N = mkN "gladness" ; -- from DictEng -lin gladsome_A = compoundA (mkA "gladsome"); -- from DictEng -lin glamor_N = mkN "glamor" ; -lin glamorization_N = mkN "glamorization" ; -- from DictEng -lin glamorize_V2 = mkV2 (mkV "glamorize" "glamorizes" "glamorized" "glamorized" "glamorizing"); -- from DictEng -lin glamorous_A = compoundA (mkA "glamorous"); -- from DictEng -lin glamour_N = mkN "glamour" ; -- from DictEng -lin glance_N = mkN "glance" "glances"; -- from DictEng -lin glance_V = mkV "glance" "glances" "glanced" "glanced" "glancing"; -- from DictEng -lin glance_V2 = mkV2 (mkV "glance" "glances" "glanced" "glanced" "glancing"); -- from DictEng -lin gland_N = mkN "gland" "glands"; -- from DictEng -lin glanders_N = mkN "glanders" ; -- from DictEng -lin glandular_A = compoundA (mkA "glandular"); -- from DictEng -lin glans_N = mkN "glans" ; -lin glare_N = mkN "glare" "glares"; -- from DictEng -lin glare_V = mkV "glare" "glares" "glared" "glared" "glaring"; -- from DictEng -lin glare_V2 = mkV2 (mkV "glare" "glares" "glared" "glared" "glaring"); -- from DictEng -lin glaring_A = compoundA (mkA "glaring"); -- from DictEng -lin glaringly_Adv = mkAdv "glaringly" ; -lin glasnost_N = mkN "glasnost" ; -lin glass_N = mkN "glass" "glasses"; -- from DictEng -lin glass_V2 = mkV2 (mkV "glass" "glasses" "glassed" "glassed" "glassing"); -- from DictEng -lin glass_like_A = compoundA (mkA "glass like") ; -lin glass_blower_N = mkN "glass - blower" "glass - blowers"; -- from DictEng -lin glass_cutter_N = mkN "glass - cutter" "glass - cutters"; -- from DictEng -lin glass_wool_N = mkN "glass - wool" ; -- from DictEng -lin glassblower_N = mkN "glassblower" ; -lin glassful_N = mkN "glassful" "glassfuls"; -- from DictEng -lin glasshouse_N = mkN "glasshouse" "glasshouses"; -- from DictEng -lin glassmaker_N = mkN "glassmaker" ; -lin glassware_N = mkN "glassware" ; -- from DictEng -lin glassworks_N = mkN "glassworks" "glassworks"; -- from DictEng -lin glasswort_N = mkN "glasswort" ; -lin glassy_A = mkA "glassy" "glassier"; -- from DictEng -lin glaswegian_A = compoundA (mkA "glaswegian"); -- from DictEng -lin glaswegian_N = mkN "glaswegian" "glaswegians"; -- from DictEng -lin glaucoma_N = mkN "glaucoma" ; -- from DictEng -lin glauconite_N = mkN "glauconite" ; -lin glaucous_A = compoundA (mkA "glaucous"); -- from DictEng -lin glaze_N = mkN "glaze" "glazes"; -- from DictEng -lin glaze_V = mkV "glaze" "glazes" "glazed" "glazed" "glazing"; -- from DictEng -lin glaze_V2 = mkV2 (mkV "glaze" "glazes" "glazed" "glazed" "glazing"); -- from DictEng -lin glazed_A = mkA "glazed" ; -lin glazier_N = mkN "glazier" "glaziers"; -- from DictEng -lin gleam_N = mkN "gleam" "gleams"; -- from DictEng -lin gleam_V = mkV "gleam" "gleams" "gleamed" "gleamed" "gleaming"; -- from DictEng -lin glean_V = mkV "glean" "gleans" "gleaned" "gleaned" "gleaning"; -- from DictEng -lin glean_V2 = mkV2 (mkV "glean" "gleans" "gleaned" "gleaned" "gleaning"); -- from DictEng -lin gleaner_N = mkN "gleaner" "gleaners"; -- from DictEng -lin gleba_N = mkN "gleba" ; -lin glebe_N = mkN "glebe" "glebes"; -- from DictEng -lin glee_N = mkN "glee" "glees"; -- from DictEng -lin gleeful_A = compoundA (mkA "gleeful"); -- from DictEng -lin gleefully_Adv = mkAdv "gleefully" ; -lin gleet_N = mkN "gleet" ; -lin glen_N = mkN "glen" "glens"; -- from DictEng -lin glengarry_N = mkN "glengarry" "glengarries"; -- from DictEng -lin glial_A = mkA "glial" ; -lin glib_A = mkA "glib" "glibber*"; -- from DictEng -lin glibly_Adv = mkAdv "glibly" ; -lin glibness_N = mkN "glibness" ; -- from DictEng -lin glide_N = mkN "glide" "glides"; -- from DictEng -lin glide_V = mkV "glide" "glides" "glided" "glided" "gliding"; -- from DictEng -lin glide_V2 = mkV2 (mkV "glide") ; -lin glider_N = mkN "glider" "gliders"; -- from DictEng -lin gliding_N = mkN "gliding" ; -- from DictEng -lin glimmer_N = mkN "glimmer" "glimmers"; -- from DictEng -lin glimmer_V = mkV "glimmer" "glimmers" "glimmered" "glimmered" "glimmering"; -- from DictEng -lin glimmery_A = mkA "glimmery" ; -lin glimpse_N = mkN "glimpse" "glimpses"; -- from DictEng -lin glimpse_V2 = mkV2 (mkV "glimpse" "glimpses" "glimpsed" "glimpsed" "glimpsing"); -- from DictEng -lin glint_N = mkN "glint" "glints"; -- from DictEng -lin glint_V = mkV "glint" "glints" "glinted" "glinted" "glinting"; -- from DictEng -lin glioblastoma_N = mkN "glioblastoma" ; -lin glioma_N = mkN "glioma" ; -lin glipizide_N = mkN "glipizide" ; -lin gliricidia_N = mkN "gliricidia" ; -lin glissade_N = mkN "glissade" "glissades"; -- from DictEng -lin glissade_V = mkV "glissade" "glissades" "glissaded" "glissaded" "glissading"; -- from DictEng -lin glissando_A = compoundA (mkA "glissando"); -- from DictEng -lin glissando_Adv = mkAdv "glissando"; -- from DictEng -lin glissando_N = mkN "glissando" ; -lin glisten_V = mkV "glisten" "glistens" "glistened" "glistened" "glistening"; -- from DictEng -lin glistening_A = mkA "glistening" ; -lin glister_N = mkN "glister"; -- from DictEng -lin glister_V = mkV "glister" "glisters" "glistered" "glistered" "glistering"; -- from DictEng -lin glitter_N = mkN "glitter"; -- from DictEng -lin glitter_V = mkV "glitter" "glitters" "glittered" "glittered" "glittering"; -- from DictEng -lin glittering_A = compoundA (mkA "glittering"); -- from DictEng -lin gloaming_N = mkN "gloaming" "IRREG"; -- from DictEng -lin gloat_N = mkN "gloat" ; -lin gloat_V = mkV "gloat" "gloats" "gloated" "gloated" "gloating"; -- from DictEng -lin gloat_VS = mkVS (mkV "gloat" "gloats" "gloated" "gloated" "gloating"); -- from DictEng -lin gloatingly_Adv = mkAdv "gloatingly"; -- from DictEng -lin global_A = compoundA (mkA "global"); -- from DictEng -lin globalization_N = mkN "globalization" ; -lin globally_Adv = mkAdv "globally" ; -lin globe_N = mkN "globe" "globes"; -- from DictEng -lin globeflower_N = mkN "globeflower" ; -lin globetrot_V = mkV "globetrot" "globetrots" "globetrotted" "globetrotted" "globetrotting"; -- from DictEng -lin globetrotter_N = mkN "globetrotter" "globetrotters"; -- from DictEng -lin globigerina_N = mkN "globigerina" ; -lin globin_N = mkN "globin" ; -lin globular_A = compoundA (mkA "globular"); -- from DictEng -lin globule_N = mkN "globule" "globules"; -- from DictEng -lin globulin_N = mkN "globulin" ; -lin glochidium_N = mkN "glochidium" ; -lin glockenspiel_N = mkN "glockenspiel" "glockenspiels"; -- from DictEng -lin glogg_N = mkN "glogg" ; -lin glomerular_A = mkA "glomerular" ; -lin glomerule_N = mkN "glomerule" ; -lin glomerulonephritis_N = mkN "glomerulonephritis" ; -lin glomerulus_N = mkN "glomerulus" ; -lin gloom_N = mkN "gloom" "glooms"; -- from DictEng -lin gloomily_Adv = mkAdv "gloomily"; -- from DictEng -lin gloominess_N = mkN "gloominess" ; -lin glooming_A = mkA "glooming" ; -lin gloomy_A = mkA "gloomy" "gloomier"; -- from DictEng -lin glop_N = mkN "glop" ; -lin glorification_N = mkN "glorification" ; -- from DictEng -lin glorify_V2 = mkV2 (mkV "glorify" "glorifies" "glorified" "glorified" "glorifying"); -- from DictEng -lin gloriosa_N = mkN "gloriosa" ; -lin glorious_A = compoundA (mkA "glorious"); -- from DictEng -lin gloriously_Adv = mkAdv "gloriously" ; -lin glory_N = mkN "glory" "glories"; -- from DictEng -lin glory_V = mkV "glory" "glories" "gloried" "gloried" "glorying"; -- from DictEng -lin glory_hole_N = mkN "glory - hole" "glory - holes"; -- from DictEng -lin gloss_N = mkN "gloss" "glosses"; -- from DictEng -lin gloss_V2 = mkV2 (mkV "gloss" "glosses" "glossed" "glossed" "glossing"); -- from DictEng -lin glossalgia_N = mkN "glossalgia" ; -lin glossarist_N = mkN "glossarist" ; -lin glossary_N = mkN "glossary" "glossaries"; -- from DictEng -lin glossily_Adv = mkAdv "glossily"; -- from DictEng -lin glossiness_N = mkN "glossiness" ; -- from DictEng -lin glossitis_N = mkN "glossitis" ; -lin glossolalia_N = mkN "glossolalia" ; -lin glossopharyngeal_A = mkA "glossopharyngeal" ; -lin glossoptosis_N = mkN "glossoptosis" ; -lin glossy_A = mkA "glossy" "glossier"; -- from DictEng -lin glossy_N = mkN "glossy" ; -lin glossy_haired_A = compoundA (mkA "glossy haired") ; -lin glottal_A = compoundA (mkA "glottal"); -- from DictEng -lin glottis_N = mkN "glottis" "glottises"; -- from DictEng -lin glottochronological_A = mkA "glottochronological" ; -lin glottochronology_N = mkN "glottochronology" ; -lin glove_N = mkN "glove" "gloves"; -- from DictEng -lin glove_compartment_N = mkN "glove - compartment" "glove - compartments"; -- from DictEng -lin gloved_A = compoundA (mkA "gloved"); -- from DictEng -lin gloveless_A = mkA "gloveless" ; -lin glow_N = mkN "glow" "IRREG"; -- from DictEng -lin glow_V = mkV "glow" "glows" "glowed" "glowed" "glowing"; -- from DictEng -lin glow_worm_N = mkN "glow - worm" "glow - worms"; -- from DictEng -lin glower_V = mkV "glower" "glowers" "glowered" "glowered" "glowering"; -- from DictEng -lin glower_V2 = mkV2 (mkV "glower") ; -lin gloweringly_Adv = mkAdv "gloweringly"; -- from DictEng -lin glowing_A = compoundA (mkA "glowing"); -- from DictEng -lin glowingly_Adv = mkAdv "glowingly" ; -lin glowworm_N = mkN "glowworm" ; -lin gloxinia_N = mkN "gloxinia" ; -lin glucagon_N = mkN "glucagon" ; -lin glucocorticoid_N = mkN "glucocorticoid" ; -lin glucosamine_N = mkN "glucosamine" ; -lin glucose_N = mkN "glucose" ; -- from DictEng -lin glucoside_N = mkN "glucoside" ; -lin glucosuria_N = mkN "glucosuria" ; -lin glue_N = mkN "glue" "glues"; -- from DictEng -lin glue_V2 = mkV2 (mkV "glue" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin glued_A = mkA "glued" ; -lin gluey_A = compoundA (mkA "gluey"); -- from DictEng -lin glum_A = mkA "glum" "glummer*"; -- from DictEng -lin glume_N = mkN "glume" ; -lin glumness_N = mkN "glumness" ; -- from DictEng -lin gluon_N = mkN "gluon" ; -lin glut_N = mkN "glut" "gluts"; -- from DictEng -lin glut_V2 = mkV2 (mkV "glut" "gluts" "glutted" "glutted" "glutting"); -- from DictEng -lin glutamate_N = mkN "glutamate" ; -lin glutamine_N = mkN "glutamine" ; -lin gluteal_A = mkA "gluteal" ; -lin glutelin_N = mkN "glutelin" ; -lin gluten_N = mkN "gluten" ; -- from DictEng -lin glutethimide_N = mkN "glutethimide" ; -lin gluteus_N = mkN "gluteus" ; -lin glutinous_A = compoundA (mkA "glutinous"); -- from DictEng -lin glutted_A = mkA "glutted" ; -lin glutton_N = mkN "glutton" "gluttons"; -- from DictEng -lin gluttonous_A = compoundA (mkA "gluttonous"); -- from DictEng -lin gluttonously_Adv = mkAdv "gluttonously" ; -lin gluttony_N = mkN "gluttony" ; -- from DictEng -lin glyburide_N = mkN "glyburide" ; -lin glyceraldehyde_N = mkN "glyceraldehyde" ; -lin glyceride_N = mkN "glyceride" ; -lin glycerine_N = mkN "glycerine" ; -- from DictEng -lin glycerite_N = mkN "glycerite" ; -lin glycerogelatin_N = mkN "glycerogelatin" ; -lin glycerol_N = mkN "glycerol" ; -lin glyceryl_N = mkN "glyceryl" ; -lin glycine_N = mkN "glycine" ; -lin glycogen_N = mkN "glycogen" ; -lin glycogenesis_N = mkN "glycogenesis" ; -lin glycogenic_A = mkA "glycogenic" ; -lin glycolysis_N = mkN "glycolysis" ; -lin glycoprotein_N = mkN "glycoprotein" ; -lin glycoside_N = mkN "glycoside" ; -lin glycosuria_N = mkN "glycosuria" ; -lin glyph_N = mkN "glyph" ; -lin glyptics_N = mkN "glyptics" ; -lin glyptography_N = mkN "glyptography" ; -lin gnarled_A = compoundA (mkA "gnarled"); -- from DictEng -lin gnash_V = mkV "gnash" "gnashes" "gnashed" "gnashed" "gnashing"; -- from DictEng -lin gnash_V2 = mkV2 (mkV "gnash" "gnashes" "gnashed" "gnashed" "gnashing"); -- from DictEng -lin gnat_N = mkN "gnat" "gnats"; -- from DictEng -lin gnatcatcher_N = mkN "gnatcatcher" ; -lin gnathion_N = mkN "gnathion" ; -lin gnathostome_N = mkN "gnathostome" ; -lin gnaw_V = mkV "gnaw" "gnaws" "gnawed" "gnawed" "gnawing"; -- from DictEng -lin gnaw_V2 = mkV2 (mkV "gnaw" "gnaws" "gnawed" "gnawed" "gnawing"); -- from DictEng -lin gneiss_N = mkN "gneiss" ; -lin gnetum_N = mkN "gnetum" ; -lin gnocchi_N = mkN "gnocchi" ; -lin gnome_N = mkN "gnome" "gnomes"; -- from DictEng -lin gnomic_A = mkA "gnomic" ; -lin gnomish_A = mkA "gnomish" ; -lin gnomon_N = mkN "gnomon" ; -lin gnosis_N = mkN "gnosis" ; -lin gnostic_A = mkA "gnostic" ; -lin gnp_N = mkN "gnp" ; -- from DictEng -lin gnu_N = mkN "gnu" "gnus"; -- from DictEng -lin go_A = mkA "go" ; -lin go_N = mkN "go" "gi" {- FIXME: guessed plural form -}; -- from DictEng -lin go_V = IrregEng.go_V; -- from DictEng -lin go_V2 = mkV2 (IrregEng.go_V); -- from DictEng -lin go_VA = mkVA (IrregEng.go_V); -- from DictEng -lin go_VS = mkVS (IrregEng.go_V); -- from DictEng -lin go_VV = mkVV (IrregEng.go_V); -- from DictEng -lin go_as_you_please_A = compoundA (mkA "go - as - you - please"); -- from DictEng -lin go_getter_N = mkN "go - getter" "go - getters"; -- from DictEng -lin go_kart_N = mkN "go - kart" "go - karts"; -- from DictEng -lin go_slow_N = mkN "go - slow" "go - slows"; -- from DictEng -lin go_to_meeting_A = compoundA (mkA "go - to - meeting"); -- from DictEng -lin go_about_V2 = mkV2 (mkV "go about") ; -lin go_ahead_N = mkN "go - ahead" "IRREG"; -- from DictEng -lin go_as_you_please_A = compoundA (mkA "go - as - you - please"); -- from DictEng -lin go_between_N = mkN "go - between" "go - betweens"; -- from DictEng -lin go_by_N = mkN "go - by" "IRREG"; -- from DictEng -lin go_cart_N = mkN "go - cart" "go - carts"; -- from DictEng -lin go_getter_N = mkN "go - getter" "go - getters"; -- from DictEng -lin go_kart_N = mkN "go - kart" "go - karts"; -- from DictEng -lin go_slow_N = mkN "go - slow" "go - slows"; -- from DictEng -lin go_to_meeting_A = compoundA (mkA "go - to - meeting"); -- from DictEng -lin goad_N = mkN "goad" "goads"; -- from DictEng -lin goad_V2 = mkV2 (mkV "goad" "goads" "goaded" "goaded" "goading"); -- from DictEng -lin goal_N = mkN "goal" "goals"; -- from DictEng -lin goal_directed_A = compoundA (mkA "goal directed") ; -lin goal_kick_N = mkN "goal - kick" "goal - kicks"; -- from DictEng -lin goal_kick_N = mkN "goal - kick" "goal - kicks"; -- from DictEng -lin goal_line_N = mkN "goal - line" "goal - lines"; -- from DictEng -lin goalie_N = mkN "goalie" "goalies"; -- from DictEng -lin goalkeeper_N = mkN "goalkeeper" "goalkeepers"; -- from DictEng -lin goalless_A = compoundA (mkA "goalless"); -- from DictEng -lin goalmouth_N = mkN "goalmouth" "goalmouths"; -- from DictEng -lin goalpost_N = mkN "goalpost" ; -lin goat_N = mkN "goat" "goats"; -- from DictEng -lin goatee_N = mkN "goatee" "goatees"; -- from DictEng -lin goateed_A = mkA "goateed" ; -lin goatfish_N = mkN "goatfish" ; -lin goatherd_N = mkN "goatherd" "goatherds"; -- from DictEng -lin goatsfoot_N = mkN "goatsfoot" ; -lin goatskin_N = mkN "goatskin" "goatskins"; -- from DictEng -lin goatsucker_N = mkN "goatsucker" ; -lin gob_N = mkN "gob" "gobs"; -- from DictEng -lin gobbet_N = mkN "gobbet" "gobbets"; -- from DictEng -lin gobble_N = mkN "gobble" "gobbles"; -- from DictEng -lin gobble_V = mkV "gobble" "gobbles" "gobbled" "gobbled" "gobbling"; -- from DictEng -lin gobble_V2 = mkV2 (mkV "gobble" "gobbles" "gobbled" "gobbled" "gobbling"); -- from DictEng -lin gobbledygook_N = mkN "gobbledygook" ; -- from DictEng -lin gobbler_N = mkN "gobbler" "gobblers"; -- from DictEng -lin goblet_N = mkN "goblet" "goblets"; -- from DictEng -lin goblet_shaped_A = compoundA (mkA "goblet shaped") ; -lin goblin_N = mkN "goblin" "goblins"; -- from DictEng -lin gobsmacked_A = mkA "gobsmacked" ; -lin goby_N = mkN "goby" ; -lin god_N = mkN "god" "gods"; -- from DictEng -lin god_damn_A = compoundA (mkA "god - damn"); -- from DictEng -lin god_damned_A = compoundA (mkA "god - damned"); -- from DictEng -lin godchild_N = mkN "godchild" "godchildren" {- FIXME: guessed plural form -}; -- from DictEng -lin goddam_A = compoundA (mkA "goddam"); -- from DictEng -lin goddam_Adv = mkAdv "goddam"; -- from DictEng -lin goddaughter_N = mkN "goddaughter" "goddaughters"; -- from DictEng -lin goddess_N = mkN "goddess" "goddesses"; -- from DictEng -lin godfather_N = mkN "godfather" "godfathers"; -- from DictEng -lin godfearing_A = compoundA (mkA "godfearing"); -- from DictEng -lin godforsaken_A = compoundA (mkA "godforsaken"); -- from DictEng -lin godhead_N = mkN "godhead" ; -- from DictEng -lin godless_A = compoundA (mkA "godless"); -- from DictEng -lin godlessness_N = mkN "godlessness" ; -- from DictEng -lin godlike_A = compoundA (mkA "godlike"); -- from DictEng -lin godliness_N = mkN "godliness" ; -- from DictEng -lin godly_A = mkA "godly" "godlier"; -- from DictEng -lin godmother_N = mkN "godmother" "godmothers"; -- from DictEng -lin godown_N = mkN "godown" "godowns"; -- from DictEng -lin godparent_N = mkN "godparent" "godparents"; -- from DictEng -lin godsend_N = mkN "godsend" "godsends"; -- from DictEng -lin godson_N = mkN "godson" "godsons"; -- from DictEng -lin godspeed_N = mkN "godspeed" ; -- from DictEng -lin godwit_N = mkN "godwit" ; -lin goethite_N = mkN "goethite" ; -lin gofer_N = mkN "gofer" ; -lin goffer_N = mkN "goffer" ; -lin goggle_V = mkV "goggle" "goggles" "goggled" "goggled" "goggling"; -- from DictEng -lin goggle_V2 = mkV2 (mkV "goggle") ; -lin goggle_eyed_A = compoundA (mkA "goggle - eyed"); -- from DictEng -lin goggle_box_N = mkN "goggle - box" "goggle - boxes"; -- from DictEng -lin goggle_eyed_A = compoundA (mkA "goggle - eyed"); -- from DictEng -lin goggles_N = mkN "goggles" ; -lin going_A = compoundA (mkA "going"); -- from DictEng -lin going_N = mkN "going" "goings"; -- from DictEng -lin going_over_N = mkN "going - over" "going - overs"; -- from DictEng -lin going_over_N = mkN "going - over" "going - overs"; -- from DictEng -lin goiter_N = mkN "goiter" ; -lin goitre_N = mkN "goitre" "goitres"; -- from DictEng -lin goitrogen_N = mkN "goitrogen" ; -lin gold_A = mkA "gold" ; -lin gold_N = mkN "gold" ; -- from DictEng -lin gold_colored_A = compoundA (mkA "gold colored") ; -lin gold_beater_N = mkN "gold - beater" "gold - beaters"; -- from DictEng -lin gold_digger_N = mkN "gold - digger" "gold - diggers"; -- from DictEng -lin gold_dust_N = mkN "gold - dust" ; -- from DictEng -lin gold_foil_N = mkN "gold - foil" ; -- from DictEng -lin gold_leaf_N = mkN "gold - leaf" ; -- from DictEng -lin gold_plate_N = mkN "gold - plate" ; -- from DictEng -lin gold_rush_N = mkN "gold - rush" "gold - rushes"; -- from DictEng -lin goldbeater_N = mkN "goldbeater" ; -lin goldbrick_N = mkN "goldbrick" ; -lin goldcrest_N = mkN "goldcrest" ; -lin golden_A = compoundA (mkA "golden"); -- from DictEng -lin golden_brown_A = compoundA (mkA "golden brown") ; -lin golden_green_A = compoundA (mkA "golden green") ; -lin golden_yellow_A = compoundA (mkA "golden yellow") ; -lin goldenbush_N = mkN "goldenbush" ; -lin goldeneye_N = mkN "goldeneye" ; -lin goldenrod_N = mkN "goldenrod" ; -lin goldenseal_N = mkN "goldenseal" ; -lin goldfield_N = mkN "goldfield" "goldfields"; -- from DictEng -lin goldfields_N = mkN "goldfields" ; -lin goldfinch_N = mkN "goldfinch" "goldfinches"; -- from DictEng -lin goldfish_N = mkN "goldfish" "goldfish"; -- from DictEng -lin goldilocks_N = mkN "goldilocks" ; -lin goldmine_N = mkN "goldmine" "goldmines"; -- from DictEng -lin goldsmith_N = mkN "goldsmith" "goldsmiths"; -- from DictEng -lin goldstone_N = mkN "goldstone" ; -lin goldthread_N = mkN "goldthread" ; -lin golem_N = mkN "golem" ; -lin golf_N = mkN "golf" ; -- from DictEng -lin golf_V = mkV "golf" "golfs" "golfed" "golfed" "golfing"; -- from DictEng -lin golf_ball_N = mkN "golf - ball" "golf - balls"; -- from DictEng -lin golf_club_N = mkN "golf - club" "golf - clubs"; -- from DictEng -lin golf_course_N = mkN "golf - course" "golf - courses"; -- from DictEng -lin golf_links_N = mkN "golf - links" "golf - links"; -- from DictEng -lin golfcart_N = mkN "golfcart" ; -lin golfer_N = mkN "golfer" "golfers"; -- from DictEng -lin golfing_N = mkN "golfing" ; -lin goliard_N = mkN "goliard" ; -lin goliath_N = mkN "goliath" "goliaths"; -- from DictEng -lin golliwog_N = mkN "golliwog" "golliwogs"; -- from DictEng -lin golosh_N = mkN "golosh" "goloshes"; -- from DictEng -lin gomphothere_N = mkN "gomphothere" ; -lin gonad_N = mkN "gonad" ; -lin gonadal_A = mkA "gonadal" ; -lin gonadotropic_A = mkA "gonadotropic" ; -lin gonadotropin_N = mkN "gonadotropin" ; -lin gondola_N = mkN "gondola" "gondolas"; -- from DictEng -lin gondola_V2 = mkV2 (mkV "gondola") ; -lin gondolier_N = mkN "gondolier" "gondoliers"; -- from DictEng -lin gone_A = mkA "gone" ; -lin goner_N = mkN "goner" "goners"; -- from DictEng -lin gong_N = mkN "gong" "gongs"; -- from DictEng -lin gong_V2 = mkV2 (mkV "gong" "gongs" "gonged" "gonged" "gonging"); -- from DictEng -lin gonif_N = mkN "gonif" ; -lin goniometer_N = mkN "goniometer" ; -lin gonion_N = mkN "gonion" ; -lin gonioscopy_N = mkN "gonioscopy" ; -lin gonococcus_N = mkN "gonococcus" ; -lin gonorrhea_N = mkN "gonorrhea" ; -- from DictEng -lin gonorrhoea_N = mkN "gonorrhoea" ; -- from DictEng -lin goo_N = mkN "goo" ; -- from DictEng -lin good_A = mkA "good" "goodder*"; -- from DictEng -lin good_N = mkN "good" ; -- from DictEng -lin good_for_nothing_A = compoundA (mkA "good - for - nothing"); -- from DictEng -lin good_king_henry_N = mkN "good king henry" ; -lin good_natured_A = compoundA (mkA "good - natured"); -- from DictEng -lin good_naturedly_Adv = mkAdv "good naturedly" ; -lin good_temperedness_N = mkN "good temperedness" ; -lin good_samaritan_PN = mkPN "good Samaritan" ; -lin good_and_Adv = mkAdv "good and" ; -lin good_enough_A = compoundA (mkA "good enough") ; -lin good_fellowship_N = mkN "good - fellowship" ; -- from DictEng -lin good_for_naught_A = compoundA (mkA "good - for - naught"); -- from DictEng -lin good_for_naught_N = mkN "good - for - naught" "good - for - naughts"; -- from DictEng -lin good_for_nothing_A = compoundA (mkA "good - for - nothing"); -- from DictEng -lin good_for_nothing_N = mkN "good - for - nothing" "good - for - nothings"; -- from DictEng -lin good_humoured_A = compoundA (mkA "good - humoured"); -- from DictEng -lin good_looking_A = compoundA (mkA "good - looking"); -- from DictEng -lin good_natured_A = compoundA (mkA "good - natured"); -- from DictEng -lin good_neighbourliness_N = mkN "good - neighbourliness" ; -- from DictEng -lin good_tempered_A = compoundA (mkA "good - tempered"); -- from DictEng -lin good_time_A = compoundA (mkA "good - time"); -- from DictEng -lin goodbye_N = mkN "goodbye" "goodbyes"; -- from DictEng -lin goodish_A = compoundA (mkA "goodish"); -- from DictEng -lin goodly_A = mkA "goodly" "goodlier"; -- from DictEng -lin goodness_N = mkN "goodness" ; -- from DictEng -lin goodwill_N = mkN "goodwill" ; -- from DictEng -lin goody_N = mkN "goody" "goodies"; -- from DictEng -lin goody_goody_A = compoundA (mkA "goody - goody"); -- from DictEng -lin goody_goody_N = mkN "goody - goody" "goody - goodies"; -- from DictEng -lin goody_goody_A = compoundA (mkA "goody - goody"); -- from DictEng -lin goody_goody_N = mkN "goody - goody" "goody - goodies"; -- from DictEng -lin gooey_A = mkA "gooey" "gooeyyer*"; -- from DictEng -lin goof_N = mkN "goof" "goofs"; -- from DictEng -lin goof_V = mkV "goof" "goofs" "goofed" "goofed" "goofing"; -- from DictEng -lin goof_V2 = mkV2 (mkV "goof" "goofs" "goofed" "goofed" "goofing"); -- from DictEng -lin goofy_A = mkA "goofy" "goofier"; -- from DictEng -lin googly_N = mkN "googly" "googlies"; -- from DictEng -lin googol_N = mkN "googol" ; -lin googolplex_N = mkN "googolplex" ; -lin gook_N = mkN "gook" ; -lin goon_N = mkN "goon" "goons"; -- from DictEng -lin goosander_N = mkN "goosander" ; -lin goose_N = mkN "goose" "IRREG"; -- from DictEng -lin goose_flesh_N = mkN "goose - flesh" ; -- from DictEng -lin goose_step_N = mkN "goose - step" "goose - steps"; -- from DictEng -lin goose_step_V = mkV "goose step" ; -lin goose_step_V2 = mkV2 (mkV "goose step") ; -lin gooseberry_N = mkN "gooseberry" "gooseberries"; -- from DictEng -lin goosefish_N = mkN "goosefish" ; -lin goosefoot_N = mkN "goosefoot" ; -lin gooseneck_N = mkN "gooseneck" ; -lin gopher_N = mkN "gopher" "gophers"; -- from DictEng -lin goral_N = mkN "goral" ; -lin gordian_A = compoundA (mkA "gordian"); -- from DictEng -lin gore_N = mkN "gore" ; -- from DictEng -lin gore_V2 = mkV2 (mkV "gore" "gores" "gored" "gored" "goring"); -- from DictEng -lin gorge_N = mkN "gorge" "gorges"; -- from DictEng -lin gorge_V = mkV "gorge" "gorges" "gorged" "gorged" "gorging"; -- from DictEng -lin gorge_V2 = mkV2 (mkV "gorge" "gorges" "gorged" "gorged" "gorging"); -- from DictEng -lin gorgeous_A = compoundA (mkA "gorgeous"); -- from DictEng -lin gorgeously_Adv = mkAdv "gorgeously" ; -lin gorgerin_N = mkN "gorgerin" ; -lin gorget_N = mkN "gorget" ; -lin gorgon_N = mkN "gorgon" "gorgons"; -- from DictEng -lin gorgonian_N = mkN "gorgonian" ; -lin gorgonzola_N = mkN "gorgonzola" ; -- from DictEng -lin gorilla_N = mkN "gorilla" "gorillas"; -- from DictEng -lin gormandize_V = mkV "gormandize" "gormandizes" "gormandized" "gormandized" "gormandizing"; -- from DictEng -lin gormless_A = compoundA (mkA "gormless"); -- from DictEng -lin gorse_N = mkN "gorse" ; -- from DictEng -lin gory_A = mkA "gory" "gorier"; -- from DictEng -lin goshawk_N = mkN "goshawk" ; -lin gosling_N = mkN "gosling" "goslings"; -- from DictEng -lin gospel_N = mkN "gospel" "gospels"; -- from DictEng -lin gossamer_N = mkN "gossamer" "gossamers"; -- from DictEng -lin gossip_N = mkN "gossip" "gossips"; -- from DictEng -lin gossip_V = mkV "gossip" "gossips" "gossiped" "gossiped" "gossiping"; -- from DictEng -lin gossiping_N = mkN "gossiping" ; -lin goth_N = mkN "goth" "goths"; -- from DictEng -lin gothic_A = compoundA (mkA "gothic"); -- from DictEng -lin gothic_N = mkN "gothic" ; -- from DictEng -lin gouache_N = mkN "gouache" ; -- from DictEng -lin gouge_N = mkN "gouge" "gouges"; -- from DictEng -lin gouge_V2 = mkV2 (mkV "gouge" "gouges" "gouged" "gouged" "gouging"); -- from DictEng -lin gouger_N = mkN "gouger" ; -lin goulash_N = mkN "goulash" "goulashes"; -- from DictEng -lin gourd_N = mkN "gourd" "gourds"; -- from DictEng -lin gourde_N = mkN "gourde" ; -lin gourmand_N = mkN "gourmand" "gourmands"; -- from DictEng -lin gourmandism_N = mkN "gourmandism" ; -lin gourmet_N = mkN "gourmet" "gourmets"; -- from DictEng -lin gout_N = mkN "gout" ; -- from DictEng -lin gouty_A = mkA "gouty" "goutier"; -- from DictEng -lin govern_V = mkV "govern" "governs" "governed" "governed" "governing"; -- from DictEng -lin govern_V2 = mkV2 (mkV "govern" "governs" "governed" "governed" "governing"); -- from DictEng -lin governance_N = mkN "governance" ; -- from DictEng -lin governed_N = mkN "governed" ; -lin governess_N = mkN "governess" "governesses"; -- from DictEng -lin governing_A = compoundA (mkA "governing"); -- from DictEng -lin government_N = mkN "government" "governments"; -- from DictEng -lin government_in_exile_N = mkN "government in exile" ; -lin governmental_A = compoundA (mkA "governmental"); -- from DictEng -lin governmentally_Adv = mkAdv "governmentally" ; -lin governor_N = mkN "governor" "governors"; -- from DictEng -lin governor_general_N = mkN "governor - general" "governor - generals"; -- from DictEng -lin governorship_N = mkN "governorship" ; -lin govt_N = mkN "govt" ; -- from DictEng -lin gown_N = mkN "gown" "gowns"; -- from DictEng -lin gown_V2 = mkV2 (mkV "gown" "gowns" "gowned" "gowned" "gowning"); -- from DictEng -lin gowned_A = mkA "gowned" ; -lin gp_N = mkN "gp" "gp's" {- FIXME: no plural form -}; -- from DictEng -lin grab_N = mkN "grab" "grabs"; -- from DictEng -lin grab_V = mkV "grab" "grabs" "grabbed" "grabbed" "grabbing"; -- from DictEng -lin grab_V2 = mkV2 (mkV "grab" "grabs" "grabbed" "grabbed" "grabbing"); -- from DictEng -lin grabber_N = mkN "grabber" "grabbers"; -- from DictEng -lin grace_N = mkN "grace" "graces"; -- from DictEng -lin grace_V2 = mkV2 (mkV "grace" "graces" "graced" "graced" "gracing"); -- from DictEng -lin graceful_A = compoundA (mkA "graceful"); -- from DictEng -lin gracefully_Adv = mkAdv "gracefully" ; -lin gracefulness_N = mkN "gracefulness" ; -lin graceless_A = compoundA (mkA "graceless"); -- from DictEng -lin gracelessly_Adv = mkAdv "gracelessly" ; -lin gracelessness_N = mkN "gracelessness" ; -lin gracilariid_N = mkN "gracilariid" ; -lin gracile_A = mkA "gracile" ; -lin gracious_A = compoundA (mkA "gracious"); -- from DictEng -lin graciously_Adv = mkAdv "graciously" ; -lin graciousness_N = mkN "graciousness" ; -- from DictEng -lin grackle_N = mkN "grackle" ; -lin grad_N = mkN "grad" ; -lin gradable_A = mkA "gradable" ; -lin gradation_N = mkN "gradation" "gradations"; -- from DictEng -lin gradational_A = mkA "gradational" ; -lin grade_N = mkN "grade" "grades"; -- from DictEng -lin grade_V2 = mkV2 (mkV "grade" "grades" "graded" "graded" "grading"); -- from DictEng -lin grade_appropriate_A = compoundA (mkA "grade appropriate") ; -lin grade_constructed_A = compoundA (mkA "grade constructed") ; -lin graded_A = mkA "graded" ; -lin grader_N = mkN "grader" ; -lin gradient_N = mkN "gradient" "gradients"; -- from DictEng -lin grading_N = mkN "grading" ; -lin gradual_A = compoundA (mkA "gradual"); -- from DictEng -lin gradual_N = mkN "gradual" ; -lin graduality_N = mkN "graduality" ; -lin gradually_Adv = mkAdv "gradually" ; -lin gradualness_N = mkN "gradualness" ; -- from DictEng -lin graduate_A = mkA "graduate" ; -lin graduate_N = mkN "graduate" "graduates"; -- from DictEng -lin graduate_V = mkV "graduate" "graduates" "graduated" "graduated" "graduating"; -- from DictEng -lin graduate_V2 = mkV2 (mkV "graduate" "graduates" "graduated" "graduated" "graduating"); -- from DictEng -lin graduation_N = mkN "graduation" "graduations"; -- from DictEng -lin graffito_N = mkN "graffito" "graffiti" {- FIXME: guessed plural form -}; -- from DictEng -lin graft_N = mkN "graft" "grafts"; -- from DictEng -lin graft_V = mkV "graft" "grafts" "grafted" "grafted" "grafting"; -- from DictEng -lin graft_V2 = mkV2 (mkV "graft" "grafts" "grafted" "grafted" "grafting"); -- from DictEng -lin grail_N = mkN "grail" "grails"; -- from DictEng -lin grain_N = mkN "grain" "grains"; -- from DictEng -lin grained_A = compoundA (mkA "grained"); -- from DictEng -lin grainfield_N = mkN "grainfield" ; -lin graining_N = mkN "graining" ; -lin gram_N = mkN "gram" "grams"; -- from DictEng -lin grama_N = mkN "grama" ; -lin gramicidin_N = mkN "gramicidin" ; -lin grammar_N = mkN "grammar" "grammars"; -- from DictEng -lin grammarian_N = mkN "grammarian" "grammarians"; -- from DictEng -lin grammatical_A = compoundA (mkA "grammatical"); -- from DictEng -lin grammatically_Adv = mkAdv "grammatically" ; -lin gramme_N = mkN "gramme" "grammes"; -- from DictEng -lin gramophone_N = mkN "gramophone" "gramophones"; -- from DictEng -lin grampus_N = mkN "grampus" "grampuses"; -- from DictEng -lin granadilla_N = mkN "granadilla" ; -lin granary_N = mkN "granary" "granaries"; -- from DictEng -lin grand_A = mkA "grand" "grander"; -- from DictEng -lin grand_prix_N = mkN "grand prix" "grand prices" {- FIXME: guessed plural form -}; -- from DictEng -lin grandad_N = mkN "grandad" "grandads"; -- from DictEng -lin grandaunt_N = mkN "grandaunt" "grandaunts"; -- from DictEng -lin grandchild_N = mkN "grandchild" "grandchildren" {- FIXME: guessed plural form -}; -- from DictEng -lin granddad_N = mkN "granddad" "granddads"; -- from DictEng -lin granddaughter_N = mkN "granddaughter" "granddaughters"; -- from DictEng -lin grandee_N = mkN "grandee" "grandees"; -- from DictEng -lin grandeur_N = mkN "grandeur" ; -- from DictEng -lin grandfather_N = mkN "grandfather" "grandfathers"; -- from DictEng -lin grandiloquence_N = mkN "grandiloquence" ; -- from DictEng -lin grandiloquent_A = compoundA (mkA "grandiloquent"); -- from DictEng -lin grandiloquently_Adv = mkAdv "grandiloquently" ; -lin grandiose_A = compoundA (mkA "grandiose"); -- from DictEng -lin grandiosity_N = mkN "grandiosity" ; -lin grandly_Adv = mkAdv "grandly" ; -lin grandma_N = mkN "grandma" "grandmas"; -- from DictEng -lin grandmaster_N = mkN "grandmaster" ; -lin grandmother_N = mkN "grandmother" "grandmothers"; -- from DictEng -lin grandnephew_N = mkN "grandnephew" "grandnephews"; -- from DictEng -lin grandniece_N = mkN "grandniece" "grandnieces"; -- from DictEng -lin grandpa_N = mkN "grandpa" "grandpas"; -- from DictEng -lin grandparent_N = mkN "grandparent" "grandparents"; -- from DictEng -lin grandson_N = mkN "grandson" "grandsons"; -- from DictEng -lin grandstand_N = mkN "grandstand" "grandstands"; -- from DictEng -lin grandstander_N = mkN "grandstander" ; -lin granduncle_N = mkN "granduncle" "granduncles"; -- from DictEng -lin grange_N = mkN "grange" "granges"; -- from DictEng -lin granite_N = mkN "granite" ; -- from DictEng -lin graniteware_N = mkN "graniteware" ; -lin granitic_A = mkA "granitic" ; -lin grannie_N = mkN "grannie" "grannies"; -- from DictEng -lin granny_N = mkN "granny" "grannies"; -- from DictEng -lin granola_N = mkN "granola" ; -lin grant_N = mkN "grant" "grants"; -- from DictEng -lin grant_V2 = mkV2 (mkV "grant" "grants" "granted" "granted" "granting"); -- from DictEng -lin grant_in_aid_N = mkN "grant in aid" ; -lin grantee_N = mkN "grantee" ; -lin granter_N = mkN "granter" ; -lin grantor_N = mkN "grantor" ; -lin granular_A = compoundA (mkA "granular"); -- from DictEng -lin granularity_N = mkN "granularity" ; -- from DictEng -lin granulate_V = mkV "granulate" "granulates" "granulated" "granulated" "granulating"; -- from DictEng -lin granulate_V2 = mkV2 (mkV "granulate" "granulates" "granulated" "granulated" "granulating"); -- from DictEng -lin granulated_A = mkA "granulated" ; -lin granulation_N = mkN "granulation" ; -lin granule_N = mkN "granule" "granules"; -- from DictEng -lin granuliferous_A = mkA "granuliferous" ; -lin granulocyte_N = mkN "granulocyte" ; -lin granulocytic_A = mkA "granulocytic" ; -lin granuloma_N = mkN "granuloma" ; -lin granulomatous_A = mkA "granulomatous" ; -lin grape_N = mkN "grape" "grapes"; -- from DictEng -lin grape_sized_A = compoundA (mkA "grape sized") ; -lin grape_sugar_N = mkN "grape - sugar" ; -- from DictEng -lin grapefruit_N = mkN "grapefruit" "grapefruit"; -- from DictEng -lin grapelike_A = mkA "grapelike" ; -lin grapeshot_N = mkN "grapeshot" ; -- from DictEng -lin grapevine_N = mkN "grapevine" "grapevines"; -- from DictEng -lin grapey_A = mkA "grapey" ; -lin graph_N = mkN "graph" "graphs"; -- from DictEng -lin graphic_A = compoundA (mkA "graphic"); -- from DictEng -lin graphic_N = mkN "graphic" ; -lin graphical_A = compoundA (mkA "graphical"); -- from DictEng -lin graphically_Adv = mkAdv "graphically" ; -lin graphics_N = mkN "graphics" "graphics"; -- from DictEng -lin graphite_N = mkN "graphite" ; -- from DictEng -lin graphologist_N = mkN "graphologist" ; -lin graphology_N = mkN "graphology" ; -lin grapnel_N = mkN "grapnel" "grapnels"; -- from DictEng -lin grappa_N = mkN "grappa" ; -lin grapple_V = mkV "grapple" "grapples" "grappled" "grappled" "grappling"; -- from DictEng -lin grappling_iron_N = mkN "grappling - iron" "grappling - irons"; -- from DictEng -lin grasp_N = mkN "grasp" "grasps"; -- from DictEng -lin grasp_V = mkV "grasp" "grasps" "grasped" "grasped" "grasping"; -- from DictEng -lin grasp_V2 = mkV2 (mkV "grasp" "grasps" "grasped" "grasped" "grasping"); -- from DictEng -lin grasping_A = compoundA (mkA "grasping"); -- from DictEng -lin grasping_N = mkN "grasping" ; -lin grass_N = mkN "grass" "grasses"; -- from DictEng -lin grass_V = mkV "grass" "grasses" "grassed" "grassed" "grassing"; -- from DictEng -lin grass_V2 = mkV2 (mkV "grass" "grasses" "grassed" "grassed" "grassing"); -- from DictEng -lin grass_covered_A = compoundA (mkA "grass covered") ; -lin grass_eating_A = compoundA (mkA "grass eating") ; -lin grassfinch_N = mkN "grassfinch" ; -lin grassfire_N = mkN "grassfire" ; -lin grasshopper_N = mkN "grasshopper" "grasshoppers"; -- from DictEng -lin grassland_N = mkN "grassland" "grasslands"; -- from DictEng -lin grassless_A = mkA "grassless" ; -lin grasslike_A = mkA "grasslike" ; -lin grassroots_A = mkA "grassroots" ; -lin grassy_A = mkA "grassy" "grassier"; -- from DictEng -lin grassy_leaved_A = compoundA (mkA "grassy leaved") ; -lin grate_N = mkN "grate" "grates"; -- from DictEng -lin grate_V = mkV "grate" "grates" "grated" "grated" "grating"; -- from DictEng -lin grate_V2 = mkV2 (mkV "grate" "grates" "grated" "grated" "grating"); -- from DictEng -lin grateful_A = compoundA (mkA "grateful"); -- from DictEng -lin gratefulness_N = mkN "gratefulness" ; -- from DictEng -lin grater_N = mkN "grater" "graters"; -- from DictEng -lin gratification_N = mkN "gratification" "gratifications"; -- from DictEng -lin gratified_A = mkA "gratified" ; -lin gratify_V2 = mkV2 (mkV "gratify" "gratifies" "gratified" "gratified" "gratifying"); -- from DictEng -lin gratifying_A = compoundA (mkA "gratifying"); -- from DictEng -lin gratifyingly_Adv = mkAdv "gratifyingly" ; -lin grating_A = mkA "grating" ; -lin grating_N = mkN "grating" "gratings"; -- from DictEng -lin gratingly_Adv = mkAdv "gratingly"; -- from DictEng -lin gratis_A = compoundA (mkA "gratis"); -- from DictEng -lin gratis_Adv = mkAdv "gratis"; -- from DictEng -lin gratitude_N = mkN "gratitude" ; -- from DictEng -lin gratuitous_A = compoundA (mkA "gratuitous"); -- from DictEng -lin gratuitously_Adv = mkAdv "gratuitously" ; -lin gratuity_N = mkN "gratuity" "gratuities"; -- from DictEng -lin grave_A = mkA "grave" "graver"; -- from DictEng -lin grave_N = mkN "grave" "graves"; -- from DictEng -lin grave_V2 = mkV2 (mkV "grave" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin gravedigger_N = mkN "gravedigger" ; -lin gravel_N = mkN "gravel" ; -- from DictEng -lin gravel_V2 = mkV2 (mkV "gravel" "gravels" "gravelled" "gravelled" "gravelling"); -- from DictEng -lin gravelly_A = compoundA (mkA "gravelly"); -- from DictEng -lin gravelweed_N = mkN "gravelweed" ; -lin gravely_Adv = mkAdv "gravely" ; -lin graven_A = compoundA (mkA "graven"); -- from DictEng -lin graveness_N = mkN "graveness" ; -lin graver_N = mkN "graver" ; -lin graverobber_N = mkN "graverobber" ; -lin gravestone_N = mkN "gravestone" "gravestones"; -- from DictEng -lin graveyard_N = mkN "graveyard" "graveyards"; -- from DictEng -lin gravida_N = mkN "gravida" ; -lin gravidity_N = mkN "gravidity" ; -lin gravimeter_N = mkN "gravimeter" ; -lin graving_dock_N = mkN "graving dock" "graving docks"; -- from DictEng -lin gravitate_V = mkV "gravitate" "gravitates" "gravitated" "gravitated" "gravitating"; -- from DictEng -lin gravitation_N = mkN "gravitation" ; -- from DictEng -lin gravitational_A = mkA "gravitational" ; -lin gravitationally_Adv = mkAdv "gravitationally" ; -lin graviton_N = mkN "graviton" ; -lin gravity_N = mkN "gravity" ; -- from DictEng -lin gravity_assist_N = mkN "gravity assist" ; -lin gravure_N = mkN "gravure" "gravures"; -- from DictEng -lin gravy_N = mkN "gravy" ; -- from DictEng -lin gravy_boat_N = mkN "gravy - boat" "gravy - boats"; -- from DictEng -lin gray_A = mkA "gray" "grayer"; -- from DictEng -lin gray_N = mkN "gray" "grays"; -- from DictEng -lin gray_V = mkV "gray" "grays" "grayed" "grayed" "graying"; -- from DictEng -lin gray_V2 = mkV2 (mkV "gray" "grays" "grayed" "grayed" "graying"); -- from DictEng -lin grayly_Adv = mkAdv "grayly" ; -lin graze_N = mkN "graze" "grazes"; -- from DictEng -lin graze_V = mkV "graze" "grazes" "grazed" "grazed" "grazing"; -- from DictEng -lin graze_V2 = mkV2 (mkV "graze" "grazes" "grazed" "grazed" "grazing"); -- from DictEng -lin grazed_A = mkA "grazed" ; -lin grazier_N = mkN "grazier" "graziers"; -- from DictEng -lin grazing_N = mkN "grazing" ; -lin grazing_land_N = mkN "grazing - land" "grazing - lands"; -- from DictEng -lin grease_N = mkN "grease" ; -- from DictEng -lin grease_V2 = mkV2 (mkV "grease" "greases" "greased" "greased" "greasing"); -- from DictEng -lin grease_gun_N = mkN "grease - gun" "grease - guns"; -- from DictEng -lin grease_gun_N = mkN "grease - gun" "grease - guns"; -- from DictEng -lin greasepaint_N = mkN "greasepaint" ; -- from DictEng -lin greaseproof_A = compoundA (mkA "greaseproof"); -- from DictEng -lin greaser_N = mkN "greaser" "greasers"; -- from DictEng -lin greasewood_N = mkN "greasewood" ; -lin greasily_Adv = mkAdv "greasily"; -- from DictEng -lin greasiness_N = mkN "greasiness" ; -- from DictEng -lin greasy_A = mkA "greasy" "greasier"; -- from DictEng -lin great_A = mkA "great" "greater"; -- from DictEng -lin great_N = mkN "great" ; -lin great_aunt_N = mkN "great aunt" ; -lin great_nephew_N = mkN "great nephew" ; -lin great_niece_N = mkN "great niece" ; -lin great_uncle_N = mkN "great uncle" ; -lin great_solomon's_seal_PN = mkPN "great Solomon's seal" ; -lin great_st_john's_wort_PN = mkPN "great St John's wort" ; -lin greatcoat_N = mkN "greatcoat" "greatcoats"; -- from DictEng -lin greater_A = mkA "greater" ; -lin greatest_A = mkA "greatest" ; -lin greathearted_A = mkA "greathearted" ; -lin greatly_Adv = mkAdv "greatly" ; -lin greatness_N = mkN "greatness" ; -- from DictEng -lin greave_N = mkN "greave" ; -lin greaves_N = mkN "greaves" ; -lin grebe_N = mkN "grebe" "grebes"; -- from DictEng -lin grecian_A = compoundA (mkA "grecian"); -- from DictEng -lin greed_N = mkN "greed" ; -- from DictEng -lin greedily_Adv = mkAdv "greedily"; -- from DictEng -lin greediness_N = mkN "greediness" ; -- from DictEng -lin greedy_A = mkA "greedy" "greedier"; -- from DictEng -lin greek_A = compoundA (mkA "Greek"); -- from DictEng -lin greek_N = mkN "Greek" "Greeks"; -- from DictEng -lin green_A = mkA "green" "greener"; -- from DictEng -lin green_N = mkN "green" "greens"; -- from DictEng -lin green_white_A = compoundA (mkA "green white") ; -lin green_june_beetle_PN = mkPN "green June beetle" ; -lin greenback_N = mkN "greenback" "greenbacks"; -- from DictEng -lin greenbelt_N = mkN "greenbelt" ; -lin greenbottle_N = mkN "greenbottle" ; -lin greenery_N = mkN "greenery" ; -- from DictEng -lin greeneye_N = mkN "greeneye" ; -lin greeneyed_A = compoundA (mkA "greeneyed"); -- from DictEng -lin greenfly_N = mkN "greenfly" ; -- from DictEng -lin greengage_N = mkN "greengage" "greengages"; -- from DictEng -lin greengrocer_N = mkN "greengrocer" "greengrocers"; -- from DictEng -lin greengrocery_N = mkN "greengrocery" "greengroceries"; -- from DictEng -lin greenhorn_N = mkN "greenhorn" "greenhorns"; -- from DictEng -lin greenhouse_A = mkA "greenhouse" ; -lin greenhouse_N = mkN "greenhouse" "greenhouses"; -- from DictEng -lin greenish_A = compoundA (mkA "greenish"); -- from DictEng -lin greenish_brown_A = compoundA (mkA "greenish brown") ; -lin greenish_grey_A = compoundA (mkA "greenish grey") ; -lin greenishness_N = mkN "greenishness" ; -- from DictEng -lin greenling_N = mkN "greenling" ; -lin greenly_Adv = mkAdv "greenly" ; -lin greenmail_N = mkN "greenmail" ; -lin greenness_N = mkN "greenness" ; -lin greenockite_N = mkN "greenockite" ; -lin greenroom_N = mkN "greenroom" ; -lin greens_N = mkN "greens" ; -lin greensand_N = mkN "greensand" ; -lin greenshank_N = mkN "greenshank" ; -lin greenside_A = mkA "greenside" ; -lin greenskeeper_N = mkN "greenskeeper" ; -lin greensward_N = mkN "greensward" ; -- from DictEng -lin greenwing_N = mkN "greenwing" ; -lin greenwood_N = mkN "greenwood" "greenwoods"; -- from DictEng -lin greet_V2 = mkV2 (mkV "greet" "greets" "greeted" "greeted" "greeting"); -- from DictEng -lin greeter_N = mkN "greeter" ; -lin greeting_N = mkN "greeting" "greetings"; -- from DictEng -lin gregarine_N = mkN "gregarine" ; -lin gregarious_A = compoundA (mkA "gregarious"); -- from DictEng -lin gregariously_Adv = mkAdv "gregariously" ; -lin gregariousness_N = mkN "gregariousness" ; -- from DictEng -lin gregorian_A = compoundA (mkA "gregorian"); -- from DictEng -lin greisen_N = mkN "greisen" ; -lin gremlin_N = mkN "gremlin" "gremlins"; -- from DictEng -lin grenade_N = mkN "grenade" "grenades"; -- from DictEng -lin grenadian_A = compoundA (mkA "grenadian"); -- from DictEng -lin grenadian_N = mkN "grenadian" "grenadians"; -- from DictEng -lin grenadier_N = mkN "grenadier" "grenadiers"; -- from DictEng -lin grenadine_N = mkN "grenadine" ; -lin grevillea_N = mkN "grevillea" ; -lin grey_A = mkA "grey" "greyer"; -- from DictEng -lin grey_N = mkN "grey" "greys"; -- from DictEng -lin grey_V = mkV "grey" "greys" "greyed" "greyed" "greying"; -- from DictEng -lin grey_V2 = mkV2 (mkV "grey" "greys" "greyed" "greyed" "greying"); -- from DictEng -lin grey_black_A = compoundA (mkA "grey black") ; -lin grey_blue_A = compoundA (mkA "grey blue") ; -lin grey_brown_A = compoundA (mkA "grey brown") ; -lin grey_green_A = compoundA (mkA "grey green") ; -lin grey_pink_A = compoundA (mkA "grey pink") ; -lin grey_white_A = compoundA (mkA "grey white") ; -lin grey_headed_A = compoundA (mkA "grey - headed"); -- from DictEng -lin greyback_N = mkN "greyback" ; -lin greybeard_N = mkN "greybeard" "greybeards"; -- from DictEng -lin greyhen_N = mkN "greyhen" ; -lin greyhound_N = mkN "greyhound" "greyhounds"; -- from DictEng -lin greyish_A = compoundA (mkA "greyish"); -- from DictEng -lin greylag_N = mkN "greylag" ; -lin grid_N = mkN "grid" "grids"; -- from DictEng -lin griddle_N = mkN "griddle" "griddles"; -- from DictEng -lin gridiron_N = mkN "gridiron" "gridirons"; -- from DictEng -lin gridlock_N = mkN "gridlock" ; -lin grief_N = mkN "grief" "griefs"; -- from DictEng -lin grievance_N = mkN "grievance" "grievances"; -- from DictEng -lin grieve_V = mkV "grieve" "grieves" "grieved" "grieved" "grieving"; -- from DictEng -lin grieve_V2 = mkV2 (mkV "grieve" "grieves" "grieved" "grieved" "grieving"); -- from DictEng -lin grievous_A = compoundA (mkA "grievous"); -- from DictEng -lin grievously_Adv = mkAdv "grievously" ; -lin griffin_N = mkN "griffin" "griffins"; -- from DictEng -lin griffon_N = mkN "griffon" "griffons"; -- from DictEng -lin grigri_N = mkN "grigri" ; -lin grill_N = mkN "grill" "grills"; -- from DictEng -lin grill_V = mkV "grill" "grills" "grilled" "grilled" "grilling"; -- from DictEng -lin grill_V2 = mkV2 (mkV "grill" "grills" "grilled" "grilled" "grilling"); -- from DictEng -lin grille_N = mkN "grille" "grilles"; -- from DictEng -lin grillroom_N = mkN "grillroom" "grillrooms"; -- from DictEng -lin grim_A = mkA "grim" "grimmer*"; -- from DictEng -lin grimace_N = mkN "grimace" "grimaces"; -- from DictEng -lin grimace_V = mkV "grimace" "grimaces" "grimaced" "grimaced" "grimacing"; -- from DictEng -lin grimace_V2 = mkV2 (mkV "grimace") ; -lin grime_N = mkN "grime" ; -- from DictEng -lin grime_V2 = mkV2 (mkV "grime" "grimes" "grimed" "grimed" "griming"); -- from DictEng -lin griminess_N = mkN "griminess" ; -lin grimly_Adv = mkAdv "grimly" ; -lin grimness_N = mkN "grimness" ; -- from DictEng -lin grimoire_N = mkN "grimoire" ; -lin grimy_A = mkA "grimy" "grimier"; -- from DictEng -lin grin_N = mkN "grin" "grins"; -- from DictEng -lin grin_V = mkV "grin" "grins" "grinned" "grinned" "grinning"; -- from DictEng -lin grin_V2 = mkV2 (mkV "grin" "grins" "grinned" "grinned" "grinning"); -- from DictEng -lin grind_N = mkN "grind" "grinds"; -- from DictEng -lin grind_V = IrregEng.grind_V; -- from DictEng -lin grind_V2 = mkV2 (IrregEng.grind_V); -- from DictEng -lin grinder_N = mkN "grinder" "grinders"; -- from DictEng -lin grinding_N = mkN "grinding" ; -lin grindstone_N = mkN "grindstone" "grindstones"; -- from DictEng -lin gringo_N = mkN "gringo" ; -lin grinner_N = mkN "grinner" ; -lin griot_N = mkN "griot" ; -lin grip_N = mkN "grip" "grips"; -- from DictEng -lin grip_V = mkV "grip" "grips" "gripped" "gripped" "gripping"; -- from DictEng -lin grip_V2 = mkV2 (mkV "grip" "grips" "gripped" "gripped" "gripping"); -- from DictEng -lin gripe_N = mkN "gripe" ; -lin gripe_V = mkV "gripe" ; -lin gripe_VS = mkVS (mkV "gripe"); -- from DictEng -lin grippe_N = mkN "grippe" "grippes"; -- from DictEng -lin gripsack_N = mkN "gripsack" "gripsacks"; -- from DictEng -lin grisaille_N = mkN "grisaille" ; -lin griseofulvin_N = mkN "griseofulvin" ; -lin grisly_A = compoundA (mkA "grisly"); -- from DictEng -lin grison_N = mkN "grison" ; -lin grissino_N = mkN "grissino" ; -lin grist_N = mkN "grist" ; -- from DictEng -lin gristle_N = mkN "gristle" ; -- from DictEng -lin gristmill_N = mkN "gristmill" ; -lin grit_N = mkN "grit" ; -- from DictEng -lin grit_V2 = mkV2 (mkV "grit" "grits" "gritted" "gritted" "gritting"); -- from DictEng -lin grits_N = mkN "grits" "grits"; -- from DictEng -lin gritty_A = mkA "gritty" "grittier"; -- from DictEng -lin grivet_N = mkN "grivet" ; -lin grizzle_N = mkN "grizzle" ; -lin grizzle_V = mkV "grizzle" "grizzles" "grizzled" "grizzled" "grizzling"; -- from DictEng -lin grizzled_A = compoundA (mkA "grizzled"); -- from DictEng -lin grizzly_N = mkN "grizzly" "grizzlies"; -- from DictEng -lin groan_N = mkN "groan" "groans"; -- from DictEng -lin groan_V = mkV "groan" "groans" "groaned" "groaned" "groaning"; -- from DictEng -lin groan_V2 = mkV2 (mkV "groan" "groans" "groaned" "groaned" "groaning"); -- from DictEng -lin groaner_N = mkN "groaner" ; -lin groat_N = mkN "groat" "groats"; -- from DictEng -lin groats_N = mkN "groats" ; -lin grocer_N = mkN "grocer" "grocers"; -- from DictEng -lin grocery_N = mkN "grocery" "groceries"; -- from DictEng -lin groenendael_N = mkN "groenendael" ; -lin grog_N = mkN "grog" ; -- from DictEng -lin grogginess_N = mkN "grogginess" ; -lin groggy_A = mkA "groggy" "groggier"; -- from DictEng -lin grogram_N = mkN "grogram" ; -lin groin_N = mkN "groin" "groins"; -- from DictEng -lin groin_V2 = mkV2 (mkV "groin" "groins" "groined" "groined" "groining"); -- from DictEng -lin gromwell_N = mkN "gromwell" ; -lin groom_N = mkN "groom" "grooms"; -- from DictEng -lin groom_V2 = mkV2 (mkV "groom" "grooms" "groomed" "groomed" "grooming"); -- from DictEng -lin groomed_A = mkA "groomed" ; -lin groomsman_N = mkN "groomsman" ; -lin groove_N = mkN "groove" "grooves"; -- from DictEng -lin groove_V2 = mkV2 (mkV "groove" "grooves" "grooved" "grooved" "grooving"); -- from DictEng -lin grooved_A = mkA "grooved" ; -lin groover_N = mkN "groover" "groovers"; -- from DictEng -lin grooving_N = mkN "grooving" ; -lin groovy_A = mkA "groovy" "groovier"; -- from DictEng -lin grope_N = mkN "grope" ; -lin grope_V = mkV "grope" "gropes" "groped" "groped" "groping"; -- from DictEng -lin grope_V2 = mkV2 (mkV "grope" "gropes" "groped" "groped" "groping"); -- from DictEng -lin groping_A = mkA "groping" ; -lin gropingly_Adv = mkAdv "gropingly"; -- from DictEng -lin grosbeak_N = mkN "grosbeak" ; -lin groschen_N = mkN "groschen" ; -lin grosgrain_N = mkN "grosgrain" ; -lin gross_A = compoundA (mkA "gross"); -- from DictEng -lin gross_N = mkN "gross" "gross"; -- from DictEng -lin gross_V2 = mkV2 (mkV "gross" "grosses" "grossed" "grossed" "grossing"); -- from DictEng -lin grossly_Adv = mkAdv "grossly" ; -lin grossness_N = mkN "grossness" ; -- from DictEng -lin grosz_N = mkN "grosz" ; -lin grot_N = mkN "grot" "grots"; -- from DictEng -lin grotesque_A = compoundA (mkA "grotesque"); -- from DictEng -lin grotesque_N = mkN "grotesque" "grotesques"; -- from DictEng -lin grotesquely_Adv = mkAdv "grotesquely" ; -lin grotesqueness_N = mkN "grotesqueness" ; -- from DictEng -lin grotto_N = mkN "grotto" "grottos"; -- from DictEng -lin grotty_A = mkA "grotty" "grottier"; -- from DictEng -lin grouch_N = mkN "grouch" "grouches"; -- from DictEng -lin grouch_V = mkV "grouch" "grouches" "grouched" "grouched" "grouching"; -- from DictEng -lin grouchy_A = mkA "grouchy" "grouchier"; -- from DictEng -lin ground_N = mkN "ground" "grounds"; -- from DictEng -lin ground_V = mkV "ground" "grounds" "grounded" "grounded" "grounding"; -- from DictEng -lin ground_V2 = mkV2 (mkV "ground" "grounds" "grounded" "grounded" "grounding"); -- from DictEng -lin ground_floor_A = compoundA (mkA "ground floor") ; -lin ground_shaker_N = mkN "ground shaker" ; -lin ground_bait_N = mkN "ground - bait" ; -- from DictEng -lin ground_fish_N = mkN "ground - fish" "ground - fish"; -- from DictEng -lin ground_plan_N = mkN "ground - plan" "ground - plans"; -- from DictEng -lin ground_rent_N = mkN "ground - rent" "ground - rents"; -- from DictEng -lin groundbreaking_N = mkN "groundbreaking" ; -lin groundcover_N = mkN "groundcover" ; -lin grounder_N = mkN "grounder" ; -lin groundfish_N = mkN "groundfish" ; -lin groundhog_N = mkN "groundhog" ; -lin grounding_N = mkN "grounding" "groundings"; -- from DictEng -lin groundless_A = compoundA (mkA "groundless"); -- from DictEng -lin groundlessness_N = mkN "groundlessness" ; -lin groundling_N = mkN "groundling" ; -lin groundmass_N = mkN "groundmass" ; -lin groundnut_N = mkN "groundnut" "groundnuts"; -- from DictEng -lin grounds_N = mkN "grounds" ; -lin groundsel_N = mkN "groundsel" ; -- from DictEng -lin groundsheet_N = mkN "groundsheet" "groundsheets"; -- from DictEng -lin groundsman_N = mkN "groundsman" "groundsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin groundspeed_N = mkN "groundspeed" ; -lin groundwork_N = mkN "groundwork" ; -- from DictEng -lin group_N = mkN "group" "groups"; -- from DictEng -lin group_V = mkV "group" "groups" "grouped" "grouped" "grouping"; -- from DictEng -lin group_V2 = mkV2 (mkV "group" "groups" "grouped" "grouped" "grouping"); -- from DictEng -lin grouped_A = mkA "grouped" ; -lin grouper_N = mkN "grouper" ; -lin groupie_N = mkN "groupie" ; -lin grouping_N = mkN "grouping" "groupings"; -- from DictEng -lin groupthink_N = mkN "groupthink" ; -lin groupware_N = mkN "groupware" ; -lin grouse_N = mkN "grouse" "grouse"; -- from DictEng -lin grouse_V = mkV "grouse" "grouses" "groused" "groused" "grousing"; -- from DictEng -lin grouse_VS = mkVS (mkV "grouse" "grouses" "groused" "groused" "grousing"); -- from DictEng -lin grouseberry_N = mkN "grouseberry" ; -lin grout_N = mkN "grout" ; -lin grove_N = mkN "grove" "groves"; -- from DictEng -lin grovel_V = mkV "grovel" "grovels" "grovelled" "grovelled" "grovelling"; -- from DictEng -lin groveller_N = mkN "groveller" "grovellers"; -- from DictEng -lin grow_V = IrregEng.grow_V; -- from DictEng -lin grow_V2 = mkV2 (IrregEng.grow_V); -- from DictEng -lin grow_V2V = mkV2V (IrregEng.grow_V) noPrep to_Prep ; -- from DictEng -lin grow_VA = mkVA (IrregEng.grow_V); -- from DictEng -lin grow_VS = mkVS (IrregEng.grow_V); -- from DictEng -lin grower_N = mkN "grower" "growers"; -- from DictEng -lin growing_A = mkA "growing" ; -lin growing_N = mkN "growing" ; -lin growl_N = mkN "growl" "growls"; -- from DictEng -lin growl_V = mkV "growl" "growls" "growled" "growled" "growling"; -- from DictEng -lin growl_V2 = mkV2 (mkV "growl" "growls" "growled" "growled" "growling"); -- from DictEng -lin growler_N = mkN "growler" "growlers"; -- from DictEng -lin growling_N = mkN "growling" ; -lin growlingly_Adv = mkAdv "growlingly"; -- from DictEng -lin grown_up_A = compoundA (mkA "grown - up"); -- from DictEng -lin grown_up_N = mkN "grown - up" "grown - ups"; -- from DictEng -lin growth_N = mkN "growth" "growths"; -- from DictEng -lin groyne_N = mkN "groyne" "groynes"; -- from DictEng -lin grub_N = mkN "grub" "grubs"; -- from DictEng -lin grub_V = mkV "grub" "grubs" "grubbed" "grubbed" "grubbing"; -- from DictEng -lin grub_V2 = mkV2 (mkV "grub" "grubs" "grubbed" "grubbed" "grubbing"); -- from DictEng -lin grubbiness_N = mkN "grubbiness" ; -- from DictEng -lin grubby_A = mkA "grubby" "grubbier"; -- from DictEng -lin grubby_N = mkN "grubby" ; -lin grubstake_N = mkN "grubstake" ; -lin grudge_N = mkN "grudge" "grudges"; -- from DictEng -lin grudge_V2 = mkV2 (mkV "grudge" "grudges" "grudged" "grudged" "grudging"); -- from DictEng -lin grudging_A = mkA "grudging" ; -lin grudgingly_Adv = mkAdv "grudgingly"; -- from DictEng -lin gruel_N = mkN "gruel" ; -- from DictEng -lin gruelling_A = compoundA (mkA "gruelling"); -- from DictEng -lin gruesome_A = compoundA (mkA "gruesome"); -- from DictEng -lin gruesomely_Adv = mkAdv "gruesomely" ; -lin gruesomeness_N = mkN "gruesomeness" ; -- from DictEng -lin gruff_A = mkA "gruff" "gruffer"; -- from DictEng -lin gruffly_Adv = mkAdv "gruffly" ; -lin gruffness_N = mkN "gruffness" ; -- from DictEng -lin grugru_N = mkN "grugru" ; -lin grumble_N = mkN "grumble" "grumbles"; -- from DictEng -lin grumble_V = mkV "grumble" "grumbles" "grumbled" "grumbled" "grumbling"; -- from DictEng -lin grumble_V2 = mkV2 (mkV "grumble" "grumbles" "grumbled" "grumbled" "grumbling"); -- from DictEng -lin grumble_VS = mkVS (mkV "grumble" "grumbles" "grumbled" "grumbled" "grumbling"); -- from DictEng -lin grumbler_N = mkN "grumbler" "grumblers"; -- from DictEng -lin grumbling_A = mkA "grumbling" ; -lin grume_N = mkN "grume" ; -lin grumpily_Adv = mkAdv "grumpily"; -- from DictEng -lin grumpiness_N = mkN "grumpiness" ; -- from DictEng -lin grumpy_A = mkA "grumpy" "grumpier"; -- from DictEng -lin grundyism_N = mkN "grundyism" ; -- from DictEng -lin grunt_N = mkN "grunt" "grunts"; -- from DictEng -lin grunt_V = mkV "grunt" "grunts" "grunted" "grunted" "grunting"; -- from DictEng -lin grunt_V2 = mkV2 (mkV "grunt" "grunts" "grunted" "grunted" "grunting"); -- from DictEng -lin grunter_N = mkN "grunter" ; -lin gryphon_N = mkN "gryphon" "gryphons"; -- from DictEng -lin guacamole_N = mkN "guacamole" ; -lin guaiacum_N = mkN "guaiacum" ; -lin guama_N = mkN "guama" ; -lin guan_N = mkN "guan" ; -lin guanabenz_N = mkN "guanabenz" ; -lin guanaco_N = mkN "guanaco" ; -lin guanine_N = mkN "guanine" ; -lin guano_N = mkN "guano" "guanos"; -- from DictEng -lin guar_N = mkN "guar" ; -lin guarani_N = mkN "guarani" ; -lin guarantee_N = mkN "guarantee" "guarantees"; -- from DictEng -lin guarantee_V = mkV "guarantee"; -- from DictEng -lin guarantee_V2 = mkV2 (mkV "guarantee"); -- from DictEng -lin guarantee_VS = mkVS (mkV "guarantee"); -- from DictEng -lin guarantor_N = mkN "guarantor" "guarantors"; -- from DictEng -lin guaranty_N = mkN "guaranty" "guaranties"; -- from DictEng -lin guard_N = mkN "guard" "guards"; -- from DictEng -lin guard_V = mkV "guard" "guards" "guarded" "guarded" "guarding"; -- from DictEng -lin guard_V2 = mkV2 (mkV "guard" "guards" "guarded" "guarded" "guarding"); -- from DictEng -lin guard_boat_N = mkN "guard - boat" "guard - boats"; -- from DictEng -lin guardant_A = mkA "guardant" ; -lin guarded_A = compoundA (mkA "guarded"); -- from DictEng -lin guardhouse_N = mkN "guardhouse" "guardhouses"; -- from DictEng -lin guardian_N = mkN "guardian" "guardians"; -- from DictEng -lin guardianship_N = mkN "guardianship" "guardianships"; -- from DictEng -lin guardrail_N = mkN "guardrail" "guardrails"; -- from DictEng -lin guardroom_N = mkN "guardroom" "guardrooms"; -- from DictEng -lin guardship_N = mkN "guardship" "guardships"; -- from DictEng -lin guardsman_N = mkN "guardsman" "guardsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin guatemalan_A = compoundA (mkA "guatemalan"); -- from DictEng -lin guatemalan_N = mkN "guatemalan" "guatemalans"; -- from DictEng -lin guava_N = mkN "guava" "guavas"; -- from DictEng -lin guayule_N = mkN "guayule" ; -lin gubernatorial_A = mkA "gubernatorial" ; -lin gudgeon_N = mkN "gudgeon" "gudgeons"; -- from DictEng -lin guelder_rose_N = mkN "guelder rose" "guelder roses"; -- from DictEng -lin guenon_N = mkN "guenon" ; -lin guerdon_N = mkN "guerdon" ; -lin guereza_N = mkN "guereza" ; -lin gueridon_N = mkN "gueridon" ; -lin guerilla_N = mkN "guerilla" "guerillas"; -- from DictEng -lin guerrilla_N = mkN "guerrilla" "guerrillas"; -- from DictEng -lin guess_N = mkN "guess" "guesses"; -- from DictEng -lin guess_V = mkV "guess" "guesses" "guessed" "guessed" "guessing"; -- from DictEng -lin guess_V2 = mkV2 (mkV "guess" "guesses" "guessed" "guessed" "guessing"); -- from DictEng -lin guess_VS = mkVS (mkV "guess" "guesses" "guessed" "guessed" "guessing"); -- from DictEng -lin guesser_N = mkN "guesser" ; -lin guesstimate_N = mkN "guesstimate" "guesstimates"; -- from DictEng -lin guesstimate_V2 = mkV2 (mkV "guesstimate") ; -lin guesswork_N = mkN "guesswork" ; -- from DictEng -lin guest_N = mkN "guest" "guests"; -- from DictEng -lin guest_night_N = mkN "guest - night" "guest - nights"; -- from DictEng -lin guesthouse_N = mkN "guesthouse" "guesthouses"; -- from DictEng -lin guestroom_N = mkN "guestroom" "guestrooms"; -- from DictEng -lin guffaw_N = mkN "guffaw" "guffaws"; -- from DictEng -lin guffaw_V = mkV "guffaw" "guffaws" "guffawed" "guffawed" "guffawing"; -- from DictEng -lin guffaw_V2 = mkV2 (mkV "guffaw") ; -lin guidance_N = mkN "guidance" ; -- from DictEng -lin guide_N = mkN "guide" "guides"; -- from DictEng -lin guide_V2 = mkV2 (mkV "guide" "guides" "guided" "guided" "guiding"); -- from DictEng -lin guidebook_N = mkN "guidebook" "guidebooks"; -- from DictEng -lin guided_A = mkA "guided" ; -lin guideline_N = mkN "guideline" "guidelines"; -- from DictEng -lin guidepost_N = mkN "guidepost" ; -lin guiding_A = mkA "guiding" ; -lin guild_N = mkN "guild" "guilds"; -- from DictEng -lin guild_hall_N = mkN "guild - hall" "guild - halls"; -- from DictEng -lin guilder_N = mkN "guilder" "guilders"; -- from DictEng -lin guildhall_N = mkN "guildhall" "guildhalls"; -- from DictEng -lin guile_N = mkN "guile" ; -- from DictEng -lin guileful_A = compoundA (mkA "guileful"); -- from DictEng -lin guileless_A = compoundA (mkA "guileless"); -- from DictEng -lin guillemot_N = mkN "guillemot" "guillemots"; -- from DictEng -lin guilloche_N = mkN "guilloche" ; -lin guillotine_N = mkN "guillotine" "guillotines"; -- from DictEng -lin guillotine_V2 = mkV2 (mkV "guillotine" "guillotines" "guillotined" "guillotined" "guillotining"); -- from DictEng -lin guilt_N = mkN "guilt" ; -- from DictEng -lin guilt_ridden_A = compoundA (mkA "guilt ridden") ; -lin guiltily_Adv = mkAdv "guiltily"; -- from DictEng -lin guiltiness_N = mkN "guiltiness" ; -- from DictEng -lin guiltless_A = compoundA (mkA "guiltless"); -- from DictEng -lin guilty_A = mkA "guilty" "guiltier"; -- from DictEng -lin guimpe_N = mkN "guimpe" ; -lin guinea_N = mkN "guinea" "guineas"; -- from DictEng -lin guinea_fowl_N = mkN "guinea - fowl" "guinea - fowl"; -- from DictEng -lin guinea_pig_N = mkN "guinea - pig" "guinea - pigs"; -- from DictEng -lin guinean_A = compoundA (mkA "guinean"); -- from DictEng -lin guinean_N = mkN "guinean" "guineans"; -- from DictEng -lin guinness_N = mkN "guinness" "guinnesses"; -- from DictEng -lin guise_N = mkN "guise" "guises"; -- from DictEng -lin guitar_N = mkN "guitar" "guitars"; -- from DictEng -lin guitar_shaped_A = compoundA (mkA "guitar shaped") ; -lin guitarfish_N = mkN "guitarfish" ; -lin guitarist_N = mkN "guitarist" "guitarists"; -- from DictEng -lin gulag_N = mkN "gulag" ; -lin gulch_N = mkN "gulch" "gulches"; -- from DictEng -lin gulden_N = mkN "gulden" "guldens"; -- from DictEng -lin gulf_N = mkN "gulf" "gulfs"; -- from DictEng -lin gulfweed_N = mkN "gulfweed" ; -lin gull_N = mkN "gull" "gulls"; -- from DictEng -lin gull_V2 = mkV2 (mkV "gull" "gulls" "gulled" "gulled" "gulling"); -- from DictEng -lin gullet_N = mkN "gullet" "gullets"; -- from DictEng -lin gullibility_N = mkN "gullibility" ; -- from DictEng -lin gullible_A = compoundA (mkA "gullible"); -- from DictEng -lin gully_N = mkN "gully" "gullies"; -- from DictEng -lin gulp_N = mkN "gulp" "gulps"; -- from DictEng -lin gulp_V = mkV "gulp" "gulps" "gulped" "gulped" "gulping"; -- from DictEng -lin gulp_V2 = mkV2 (mkV "gulp" "gulps" "gulped" "gulped" "gulping"); -- from DictEng -lin gulper_N = mkN "gulper" ; -lin gulping_N = mkN "gulping" ; -lin gum_N = mkN "gum" "gums"; -- from DictEng -lin gum_V2 = mkV2 (mkV "gum" "gums" "gummed" "gummed" "gumming"); -- from DictEng -lin gum_lac_N = mkN "gum lac" ; -lin gum_like_A = compoundA (mkA "gum like") ; -lin gumbo_N = mkN "gumbo" "gumbos"; -- from DictEng -lin gumbo_limbo_N = mkN "gumbo limbo" ; -lin gumboil_N = mkN "gumboil" "gumboils"; -- from DictEng -lin gumboot_N = mkN "gumboot" "gumboots"; -- from DictEng -lin gumdrop_N = mkN "gumdrop" ; -lin gumma_N = mkN "gumma" ; -lin gummed_A = mkA "gummed" ; -lin gummite_N = mkN "gummite" ; -lin gummosis_N = mkN "gummosis" ; -lin gummy_A = mkA "gummy" "gummier"; -- from DictEng -lin gumption_N = mkN "gumption" ; -- from DictEng -lin gumshoe_N = mkN "gumshoe" "gumshoes"; -- from DictEng -lin gumweed_N = mkN "gumweed" ; -lin gumwood_N = mkN "gumwood" ; -lin gun_N = mkN "gun" "guns"; -- from DictEng -lin gun_V2 = mkV2 (mkV "gun" "guns" "gunned" "gunned" "gunning"); -- from DictEng -lin gun_carriage_N = mkN "gun - carriage" "gun - carriages"; -- from DictEng -lin gunboat_N = mkN "gunboat" "gunboats"; -- from DictEng -lin guncotton_N = mkN "guncotton" ; -- from DictEng -lin gundog_N = mkN "gundog" "gundogs"; -- from DictEng -lin gunfight_N = mkN "gunfight" ; -lin gunfire_N = mkN "gunfire" ; -- from DictEng -lin gunflint_N = mkN "gunflint" ; -lin gung_ho_A = compoundA (mkA "gung ho") ; -lin gunite_N = mkN "gunite" ; -lin gunlock_N = mkN "gunlock" ; -lin gunman_N = mkN "gunman" "gunmen" {- FIXME: guessed plural form -}; -- from DictEng -lin gunmetal_N = mkN "gunmetal" ; -- from DictEng -lin gunnel_N = mkN "gunnel" ; -lin gunner_N = mkN "gunner" "gunners"; -- from DictEng -lin gunnery_N = mkN "gunnery" ; -- from DictEng -lin gunny_N = mkN "gunny" ; -- from DictEng -lin gunnysack_N = mkN "gunnysack" ; -lin gunplay_N = mkN "gunplay" ; -- from DictEng -lin gunpoint_N = mkN "gunpoint" "IRREG"; -- from DictEng -lin gunpowder_N = mkN "gunpowder" ; -- from DictEng -lin gunroom_N = mkN "gunroom" "gunrooms"; -- from DictEng -lin gunrunner_N = mkN "gunrunner" "gunrunners"; -- from DictEng -lin gunrunning_N = mkN "gunrunning" ; -- from DictEng -lin gunshot_N = mkN "gunshot" "gunshots"; -- from DictEng -lin gunsight_N = mkN "gunsight" ; -lin gunsmith_N = mkN "gunsmith" "gunsmiths"; -- from DictEng -lin gunwale_N = mkN "gunwale" "gunwales"; -- from DictEng -lin guppy_N = mkN "guppy" ; -lin gurgle_N = mkN "gurgle" "gurgles"; -- from DictEng -lin gurgle_V = mkV "gurgle" "gurgles" "gurgled" "gurgled" "gurgling"; -- from DictEng -lin gurgle_V2 = mkV2 (mkV "gurgle") ; -lin gurkha_N = mkN "gurkha" "gurkhas"; -- from DictEng -lin gurnard_N = mkN "gurnard" ; -lin gurney_N = mkN "gurney" ; -lin guru_N = mkN "guru" "gurus"; -- from DictEng -lin gush_N = mkN "gush" "gushes"; -- from DictEng -lin gush_V = mkV "gush" "gushes" "gushed" "gushed" "gushing"; -- from DictEng -lin gush_V2 = mkV2 (mkV "gush") ; -lin gusher_N = mkN "gusher" "gushers"; -- from DictEng -lin gushes_VS = mkVS (mkV "gushes"); -- from DictEng -lin gushing_A = compoundA (mkA "gushing"); -- from DictEng -lin gushingly_Adv = mkAdv "gushingly" ; -lin gusset_N = mkN "gusset" "gussets"; -- from DictEng -lin gusseted_A = compoundA (mkA "gusseted"); -- from DictEng -lin gust_N = mkN "gust" "gusts"; -- from DictEng -lin gustation_N = mkN "gustation" ; -- from DictEng -lin gustatory_A = mkA "gustatory" ; -lin gusto_N = mkN "gusto" ; -- from DictEng -lin gusty_A = mkA "gusty" "gustier"; -- from DictEng -lin gut_N = mkN "gut" "guts"; -- from DictEng -lin gut_V2 = mkV2 (mkV "gut" "guts" "gutted" "gutted" "gutting"); -- from DictEng -lin gutless_A = compoundA (mkA "gutless"); -- from DictEng -lin gutlessness_N = mkN "gutlessness" ; -lin gutsiness_N = mkN "gutsiness" ; -lin gutsy_A = mkA "gutsy" ; -lin gutta_percha_N = mkN "gutta - percha" ; -- from DictEng -lin gutta_percha_N = mkN "gutta - percha" ; -- from DictEng -lin gutter_N = mkN "gutter" "gutters"; -- from DictEng -lin gutter_V = mkV "gutter" "gutters" "guttered" "guttered" "guttering"; -- from DictEng -lin guttersnipe_N = mkN "guttersnipe" "guttersnipes"; -- from DictEng -lin guttural_A = compoundA (mkA "guttural"); -- from DictEng -lin guttural_N = mkN "guttural" "gutturals"; -- from DictEng -lin gutturally_Adv = mkAdv "gutturally" ; -lin guvnor_N = mkN "guvnor" "guvnors"; -- from DictEng -lin guy_N = mkN "guy" "guys"; -- from DictEng -lin guy_V2 = mkV2 (mkV "guy" "guys" "guyed" "guyed" "guying"); -- from DictEng -lin guyanese_A = compoundA (mkA "guyanese"); -- from DictEng -lin guyanese_N = mkN "guyanese" "guyanese"; -- from DictEng -lin guyot_N = mkN "guyot" ; -lin guzzle_V = mkV "guzzle" "guzzles" "guzzled" "guzzled" "guzzling"; -- from DictEng -lin guzzle_V2 = mkV2 (mkV "guzzle" "guzzles" "guzzled" "guzzled" "guzzling"); -- from DictEng -lin guzzler_N = mkN "guzzler" "guzzlers"; -- from DictEng -lin gybe_V = mkV "gybe" "gybes" "gybed" "gybed" "gybing"; -- from DictEng -lin gybe_V2 = mkV2 (mkV "gybe" "gybes" "gybed" "gybed" "gybing"); -- from DictEng -lin gym_N = mkN "gym" "gyms"; -- from DictEng -lin gymkhana_N = mkN "gymkhana" "gymkhanas"; -- from DictEng -lin gymnasium_N = mkN "gymnasium" "gymnasiums"; -- from DictEng -lin gymnast_N = mkN "gymnast" "gymnasts"; -- from DictEng -lin gymnastic_A = compoundA (mkA "gymnastic"); -- from DictEng -lin gymnastics_N = mkN "gymnastics" "gymnastics"; -- from DictEng -lin gymnosophical_A = mkA "gymnosophical" ; -lin gymnosophist_N = mkN "gymnosophist" ; -lin gymnosophy_N = mkN "gymnosophy" ; -lin gymnosperm_N = mkN "gymnosperm" ; -lin gymnospermous_A = mkA "gymnospermous" ; -lin gymslip_N = mkN "gymslip" "gymslips"; -- from DictEng -lin gynaecological_A = compoundA (mkA "gynaecological"); -- from DictEng -lin gynaecologist_N = mkN "gynaecologist" "gynaecologists"; -- from DictEng -lin gynaecology_N = mkN "gynaecology" ; -- from DictEng -lin gynandromorphic_A = mkA "gynandromorphic" ; -lin gynecocracy_N = mkN "gynecocracy" ; -lin gynecological_A = compoundA (mkA "gynecological"); -- from DictEng -lin gynecologist_N = mkN "gynecologist" "gynecologists"; -- from DictEng -lin gynecology_N = mkN "gynecology" ; -lin gynecomastia_N = mkN "gynecomastia" ; -lin gyneolatry_N = mkN "gyneolatry" ; -lin gynobase_N = mkN "gynobase" ; -lin gynoecium_N = mkN "gynoecium" ; -lin gynogenesis_N = mkN "gynogenesis" ; -lin gynophobia_N = mkN "gynophobia" ; -lin gynophore_N = mkN "gynophore" ; -lin gynostegium_N = mkN "gynostegium" ; -lin gyp_N = mkN "gyp" "gyps"; -- from DictEng -lin gyp_V2 = mkV2 (mkV "gyp" "gyps" "gypped" "gypped" "gypping"); -- from DictEng -lin gypsum_N = mkN "gypsum" ; -- from DictEng -lin gypsy_N = mkN "gypsy" "gypsies"; -- from DictEng -lin gyral_A = mkA "gyral" ; -lin gyrate_V = mkV "gyrate" "gyrates" "gyrated" "gyrated" "gyrating"; -- from DictEng -lin gyration_N = mkN "gyration" "gyrations"; -- from DictEng -lin gyrfalcon_N = mkN "gyrfalcon" ; -lin gyro_N = mkN "gyro" "gyros"; -- from DictEng -lin gyrocompass_N = mkN "gyrocompass" ; -lin gyromitra_N = mkN "gyromitra" ; -lin gyroscope_N = mkN "gyroscope" "gyroscopes"; -- from DictEng -lin gyroscopic_A = compoundA (mkA "gyroscopic"); -- from DictEng -lin gyrostabilizer_N = mkN "gyrostabilizer" ; -lin gyrus_N = mkN "gyrus" ; -lin h'm_V = mkV "h'm" "h'ms" "h'mmed" "h'mmed" "h'mming"; -- from DictEng -lin h_bomb_N = mkN "h - bomb" "h - bombs"; -- from DictEng -lin ha'p'orth_N = mkN "ha'p'orth" "ha'p'orths"; -- from DictEng -lin ha'penny_N = mkN "ha'penny" "ha'pennies"; -- from DictEng -lin habanera_N = mkN "habanera" ; -lin habeas_corpus_N = mkN "habeas corpus" ; -- from DictEng -lin haberdasher_N = mkN "haberdasher" "haberdashers"; -- from DictEng -lin haberdashery_N = mkN "haberdashery" ; -- from DictEng -lin habergeon_N = mkN "habergeon" ; -lin habit_N = mkN "habit" "habits"; -- from DictEng -lin habitability_N = mkN "habitability" ; -lin habitable_A = compoundA (mkA "habitable"); -- from DictEng -lin habitat_N = mkN "habitat" "habitats"; -- from DictEng -lin habitation_N = mkN "habitation" "habitations"; -- from DictEng -lin habited_A = mkA "habited" ; -lin habitual_A = compoundA (mkA "habitual"); -- from DictEng -lin habitually_Adv = mkAdv "habitually" ; -lin habituate_V2 = mkV2 (mkV "habituate" "habituates" "habituated" "habituated" "habituating"); -- from DictEng -lin habituation_N = mkN "habituation" ; -- from DictEng -lin habitude_N = mkN "habitude" ; -- from DictEng -lin habitue_N = mkN "habitué" "habitués"; -- from DictEng -lin habitus_N = mkN "habitus" ; -lin hacek_N = mkN "hacek" ; -lin hacienda_N = mkN "hacienda" "haciendas"; -- from DictEng -lin hack_N = mkN "hack" "hacks"; -- from DictEng -lin hack_V = mkV "hack" "hacks" "hacked" "hacked" "hacking"; -- from DictEng -lin hack_V2 = mkV2 (mkV "hack" "hacks" "hacked" "hacked" "hacking"); -- from DictEng -lin hackberry_N = mkN "hackberry" ; -lin hacker_N = mkN "hacker" ; -lin hackle_N = mkN "hackle" ; -lin hackney_N = mkN "hackney" "hackneys"; -- from DictEng -lin hackneyed_A = compoundA (mkA "hackneyed"); -- from DictEng -lin hacksaw_N = mkN "hacksaw" "hacksaws"; -- from DictEng -lin hackwork_N = mkN "hackwork" ; -lin hadal_A = mkA "hadal" ; -lin haddock_N = mkN "haddock" "haddock"; -- from DictEng -lin hadji_N = mkN "hadji" "hadjis"; -- from DictEng -lin hadron_N = mkN "hadron" ; -lin hadrosaur_N = mkN "hadrosaur" ; -lin haematite_N = mkN "haematite" "haematites"; -- from DictEng -lin haemoglobin_N = mkN "haemoglobin" ; -- from DictEng -lin haemophilia_N = mkN "haemophilia" ; -- from DictEng -lin haemophiliac_N = mkN "haemophiliac" "haemophiliacs"; -- from DictEng -lin haemophilic_A = mkA "haemophilic" ; -lin haemoproteid_N = mkN "haemoproteid" ; -lin haemorrhage_N = mkN "haemorrhage" "haemorrhages"; -- from DictEng -lin haemosporidian_N = mkN "haemosporidian" ; -lin hafnium_N = mkN "hafnium" ; -lin haft_N = mkN "haft" "hafts"; -- from DictEng -lin hag_N = mkN "hag" "hags"; -- from DictEng -lin hag_ridden_A = compoundA (mkA "hag - ridden"); -- from DictEng -lin hag_ridden_A = compoundA (mkA "hag - ridden"); -- from DictEng -lin hagberry_N = mkN "hagberry" ; -lin hagfish_N = mkN "hagfish" ; -lin haggard_A = compoundA (mkA "haggard"); -- from DictEng -lin haggardly_Adv = mkAdv "haggardly" ; -lin haggis_N = mkN "haggis" "haggises"; -- from DictEng -lin haggle_N = mkN "haggle" ; -lin haggle_V = mkV "haggle" "haggles" "haggled" "haggled" "haggling"; -- from DictEng -lin haggler_N = mkN "haggler" ; -lin hagiographer_N = mkN "hagiographer" ; -lin hagiography_N = mkN "hagiography" ; -lin hagiolatry_N = mkN "hagiolatry" ; -lin hagiology_N = mkN "hagiology" "hagiologies"; -- from DictEng -lin haha_N = mkN "haha" "hahas"; -- from DictEng -lin haik_N = mkN "haik" ; -lin haiku_N = mkN "haiku" ; -lin hail_N = mkN "hail" "hails"; -- from DictEng -lin hail_V = mkV "hail" "hails" "hailed" "hailed" "hailing"; -- from DictEng -lin hail_V2 = mkV2 (mkV "hail" "hails" "hailed" "hailed" "hailing"); -- from DictEng -lin hailstone_N = mkN "hailstone" "hailstones"; -- from DictEng -lin hailstorm_N = mkN "hailstorm" "hailstorms"; -- from DictEng -lin hair_N = mkN "hair" "hairs"; -- from DictEng -lin hair's_breadth_N = mkN "hair's - breadth" "hair's - breadths"; -- from DictEng -lin hair's_breadth_N = mkN "hair's - breadth" "hair's - breadths"; -- from DictEng -lin hair_raiser_N = mkN "hair raiser" ; -lin hair_shirt_A = compoundA (mkA "hair shirt") ; -lin hair_breadth_N = mkN "hair - breadth" "hair - breadths"; -- from DictEng -lin hair_dye_N = mkN "hair - dye" "hair - dyes"; -- from DictEng -lin hair_oil_N = mkN "hair - oil" "hair - oils"; -- from DictEng -lin hair_raising_A = compoundA (mkA "hair - raising"); -- from DictEng -lin hair_shirt_N = mkN "hair - shirt" "hair - shirts"; -- from DictEng -lin hair_slide_N = mkN "hair - slide" "hair - slides"; -- from DictEng -lin hair_trigger_N = mkN "hair - trigger" "hair - triggers"; -- from DictEng -lin hairball_N = mkN "hairball" ; -lin hairbrush_N = mkN "hairbrush" "hairbrushes"; -- from DictEng -lin haircloth_N = mkN "haircloth" "haircloths"; -- from DictEng -lin haircut_N = mkN "haircut" "haircuts"; -- from DictEng -lin hairdo_N = mkN "hairdo" "hairdos"; -- from DictEng -lin hairdresser_N = mkN "hairdresser" "hairdressers"; -- from DictEng -lin hairdressing_N = mkN "hairdressing" ; -- from DictEng -lin hairiness_N = mkN "hairiness" ; -- from DictEng -lin hairless_A = compoundA (mkA "hairless"); -- from DictEng -lin hairlessness_N = mkN "hairlessness" ; -lin hairlike_A = compoundA (mkA "hairlike"); -- from DictEng -lin hairline_N = mkN "hairline" "hairlines"; -- from DictEng -lin hairnet_N = mkN "hairnet" "hairnets"; -- from DictEng -lin hairpiece_N = mkN "hairpiece" "hairpieces"; -- from DictEng -lin hairpin_N = mkN "hairpin" "hairpins"; -- from DictEng -lin hairsplitter_N = mkN "hairsplitter" ; -lin hairsplitting_A = compoundA (mkA "hairsplitting"); -- from DictEng -lin hairsplitting_N = mkN "hairsplitting" ; -- from DictEng -lin hairspring_N = mkN "hairspring" "hairsprings"; -- from DictEng -lin hairstreak_N = mkN "hairstreak" ; -lin hairstyle_N = mkN "hairstyle" "hairstyles"; -- from DictEng -lin hairstylist_N = mkN "hairstylist" "hairstylists"; -- from DictEng -lin hairweaving_N = mkN "hairweaving" ; -lin hairy_A = mkA "hairy" "hairier"; -- from DictEng -lin haitian_A = compoundA (mkA "haitian"); -- from DictEng -lin haitian_N = mkN "haitian" "haitians"; -- from DictEng -lin hajj_N = mkN "hajj" ; -lin hajji_N = mkN "hajji" ; -lin hake_N = mkN "hake" "hake"; -- from DictEng -lin hakim_N = mkN "hakim" ; -lin halal_A = mkA "halal" ; -lin halal_N = mkN "halal" ; -lin halberd_N = mkN "halberd" "halberds"; -- from DictEng -lin halberdier_N = mkN "halberdier" "halberdiers"; -- from DictEng -lin halcyon_A = compoundA (mkA "halcyon"); -- from DictEng -lin halcyon_N = mkN "halcyon" ; -lin hale_A = compoundA (mkA "hale"); -- from DictEng -lin haler_N = mkN "haler" ; -lin half_A = mkA "half" ; -lin half_Adv = mkAdv "half" ; -lin half_N = mkN "half" "halves"; -- from DictEng -lin half_Predet = ss "half"; -- from DictEng -lin half_and_half_A = compoundA (mkA "half and half") ; -lin half_and_half_Adv = mkAdv "half and half" ; -lin half_and_half_N = mkN "half and half" ; -lin half_baked_A = compoundA (mkA "half - baked"); -- from DictEng -lin half_blooded_A = compoundA (mkA "half blooded") ; -lin half_bound_A = compoundA (mkA "half bound") ; -lin half_breed_N = mkN "half - breed" "half - breeds"; -- from DictEng -lin half_caste_N = mkN "half - caste" "half - castes"; -- from DictEng -lin half_century_N = mkN "half century" ; -lin half_clothed_A = compoundA (mkA "half clothed") ; -lin half_cock_N = mkN "half cock" ; -lin half_hardy_A = compoundA (mkA "half - hardy"); -- from DictEng -lin half_heartedly_Adv = mkAdv "half heartedly" ; -lin half_holiday_N = mkN "half - holiday" "half - holidays"; -- from DictEng -lin half_hour_N = mkN "half - hour" "half - hours"; -- from DictEng -lin half_hourly_A = compoundA (mkA "half - hourly"); -- from DictEng -lin half_hourly_Adv = mkAdv "half - hourly"; -- from DictEng -lin half_intensity_N = mkN "half intensity" ; -lin half_length_A = compoundA (mkA "half - length"); -- from DictEng -lin half_length_N = mkN "half length" ; -lin half_light_N = mkN "half light" ; -lin half_mast_N = mkN "half mast" ; -lin half_moon_N = mkN "half moon" ; -lin half_pay_N = mkN "half - pay" ; -- from DictEng -lin half_price_Adv = mkAdv "half - price"; -- from DictEng -lin half_seas_over_A = compoundA (mkA "half - seas - over"); -- from DictEng -lin half_size_A = compoundA (mkA "half - size"); -- from DictEng -lin half_term_N = mkN "half term" ; -lin half_timber_A = compoundA (mkA "half timber") ; -lin half_time_A = compoundA (mkA "half time") ; -lin half_time_Adv = mkAdv "half time" ; -lin half_track_A = compoundA (mkA "half track") ; -lin half_truth_N = mkN "half - truth" "half - truths"; -- from DictEng -lin half_yearly_Adv = mkAdv "half - yearly"; -- from DictEng -lin half_baked_A = compoundA (mkA "half - baked"); -- from DictEng -lin half_blood_N = mkN "half - blood" "half - bloods"; -- from DictEng -lin half_breed_N = mkN "half - breed" "half - breeds"; -- from DictEng -lin half_brother_N = mkN "half - brother" "half - brothers"; -- from DictEng -lin half_caste_N = mkN "half - caste" "half - castes"; -- from DictEng -lin half_crazed_A = compoundA (mkA "half - crazed"); -- from DictEng -lin half_crown_N = mkN "half - crown" "half - crowns"; -- from DictEng -lin half_hardy_A = compoundA (mkA "half - hardy"); -- from DictEng -lin half_hearted_A = compoundA (mkA "half - hearted"); -- from DictEng -lin half_holiday_N = mkN "half - holiday" "half - holidays"; -- from DictEng -lin half_hour_N = mkN "half - hour" "half - hours"; -- from DictEng -lin half_hourly_A = compoundA (mkA "half - hourly"); -- from DictEng -lin half_hourly_Adv = mkAdv "half - hourly"; -- from DictEng -lin half_length_A = compoundA (mkA "half - length"); -- from DictEng -lin half_pay_N = mkN "half - pay" ; -- from DictEng -lin half_price_Adv = mkAdv "half - price"; -- from DictEng -lin half_seas_over_A = compoundA (mkA "half - seas - over"); -- from DictEng -lin half_sister_N = mkN "half - sister" "half - sisters"; -- from DictEng -lin half_size_A = compoundA (mkA "half - size"); -- from DictEng -lin half_timbered_A = compoundA (mkA "half - timbered"); -- from DictEng -lin half_time_N = mkN "half - time" ; -- from DictEng -lin half_track_N = mkN "half - track" "half - tracks"; -- from DictEng -lin half_tracked_A = compoundA (mkA "half - tracked"); -- from DictEng -lin half_truth_N = mkN "half - truth" "half - truths"; -- from DictEng -lin half_volley_N = mkN "half - volley" "half - volleys"; -- from DictEng -lin half_yearly_A = compoundA (mkA "half - yearly"); -- from DictEng -lin half_yearly_Adv = mkAdv "half - yearly"; -- from DictEng -lin halfback_N = mkN "halfback" "halfbacks"; -- from DictEng -lin halfbeak_N = mkN "halfbeak" ; -lin halfhearted_A = mkA "halfhearted" ; -lin halfpenny_N = mkN "halfpenny" "halfpennies"; -- from DictEng -lin halfpennyworth_N = mkN "halfpennyworth" "halfpennyworths"; -- from DictEng -lin halftime_N = mkN "halftime" ; -lin halftone_N = mkN "halftone" "halftones"; -- from DictEng -lin halfway_A = compoundA (mkA "halfway"); -- from DictEng -lin halfway_Adv = mkAdv "halfway"; -- from DictEng -lin halfwit_N = mkN "halfwit" "halfwits"; -- from DictEng -lin halfwitted_A = compoundA (mkA "halfwitted"); -- from DictEng -lin halibut_N = mkN "halibut" "halibut"; -- from DictEng -lin halide_N = mkN "halide" ; -lin halite_N = mkN "halite" ; -lin halitosis_N = mkN "halitosis" ; -- from DictEng -lin halitus_N = mkN "halitus" ; -lin hall_N = mkN "hall" "halls"; -- from DictEng -lin hall_stand_N = mkN "hall - stand" "hall - stands"; -- from DictEng -lin hallelujah_N = mkN "hallelujah" "hallelujahs"; -- from DictEng -lin halliard_N = mkN "halliard" "halliards"; -- from DictEng -lin hallmark_N = mkN "hallmark" "hallmarks"; -- from DictEng -lin halloo_N = mkN "halloo" "halloos"; -- from DictEng -lin halloo_V = mkV "halloo" "halloos" "hallooed" "hallooed" "hallooing"; -- from DictEng -lin hallow_N = mkN "hallow" "hallows"; -- from DictEng -lin hallow_V2 = mkV2 (mkV "hallow" "hallows" "hallowed" "hallowed" "hallowing"); -- from DictEng -lin hallowe'en_N = mkN "hallowe'en" "hallowe'ens"; -- from DictEng -lin hallowed_A = mkA "hallowed" ; -lin hallstand_N = mkN "hallstand" ; -lin hallucination_N = mkN "hallucination" "hallucinations"; -- from DictEng -lin hallucinatory_A = compoundA (mkA "hallucinatory"); -- from DictEng -lin hallucinogen_N = mkN "hallucinogen" ; -lin hallucinogenic_A = compoundA (mkA "hallucinogenic"); -- from DictEng -lin hallucinosis_N = mkN "hallucinosis" ; -lin hallway_N = mkN "hallway" ; -lin halma_N = mkN "halma" ; -- from DictEng -lin halo_N = mkN "halo" "halos"; -- from DictEng -lin halobacteria_N = mkN "halobacteria" ; -lin halocarbon_N = mkN "halocarbon" ; -lin haloform_N = mkN "haloform" ; -lin halogen_N = mkN "halogen" ; -lin halogeton_N = mkN "halogeton" ; -lin halon_N = mkN "halon" ; -lin haloperidol_N = mkN "haloperidol" ; -lin halophile_N = mkN "halophile" ; -lin halophyte_N = mkN "halophyte" ; -lin halothane_N = mkN "halothane" ; -lin halt_A = compoundA (mkA "halt"); -- from DictEng -lin halt_N = mkN "halt" "halts"; -- from DictEng -lin halt_V = mkV "halt" "halts" "halted" "halted" "halting"; -- from DictEng -lin halt_V2 = mkV2 (mkV "halt" "halts" "halted" "halted" "halting"); -- from DictEng -lin halter_N = mkN "halter" "halters"; -- from DictEng -lin halting_A = mkA "halting" ; -lin haltingly_Adv = mkAdv "haltingly"; -- from DictEng -lin halve_V2 = mkV2 (mkV "halve" "halves" "halved" "halved" "halving"); -- from DictEng -lin halyard_N = mkN "halyard" "halyards"; -- from DictEng -lin ham_N = mkN "ham" "hams"; -- from DictEng -lin ham_V = mkV "ham" "hams" "hammed" "hammed" "hamming"; -- from DictEng -lin ham_V2 = mkV2 (mkV "ham" "hams" "hammed" "hammed" "hamming"); -- from DictEng -lin ham_fisted_A = compoundA (mkA "ham - fisted"); -- from DictEng -lin ham_handed_A = compoundA (mkA "ham - handed"); -- from DictEng -lin hamadryad_N = mkN "hamadryad" "hamadryads"; -- from DictEng -lin hamartoma_N = mkN "hamartoma" ; -lin hamate_N = mkN "hamate" ; -lin hamburger_N = mkN "hamburger" "hamburgers"; -- from DictEng -lin hame_N = mkN "hame" ; -lin hamelia_N = mkN "hamelia" ; -lin hamlet_N = mkN "hamlet" "hamlets"; -- from DictEng -lin hammer_N = mkN "hammer" "hammers"; -- from DictEng -lin hammer_V = mkV "hammer" "hammers" "hammered" "hammered" "hammering"; -- from DictEng -lin hammer_V2 = mkV2 (mkV "hammer" "hammers" "hammered" "hammered" "hammering"); -- from DictEng -lin hammer_shaped_A = compoundA (mkA "hammer shaped") ; -lin hammered_A = mkA "hammered" ; -lin hammerhead_N = mkN "hammerhead" ; -lin hammerlock_N = mkN "hammerlock" ; -lin hammertoe_N = mkN "hammertoe" ; -lin hamming_N = mkN "hamming" ; -lin hammock_N = mkN "hammock" "hammocks"; -- from DictEng -lin hammy_A = mkA "hammy" ; -lin hamper_N = mkN "hamper" "hampers"; -- from DictEng -lin hamper_V2 = mkV2 (mkV "hamper" "hampers" "hampered" "hampered" "hampering"); -- from DictEng -lin hamster_N = mkN "hamster" "hamsters"; -- from DictEng -lin hamstring_N = mkN "hamstring" "hamstrings"; -- from DictEng -lin hamstring_V2 = mkV2 (mkV "ham" IrregEng.string_V); -- from DictEng -lin hand_N = mkN "hand" "hands"; -- from DictEng -lin hand_V2 = mkV2 (mkV "hand" "hands" "handed" "handed" "handing"); -- from DictEng -lin hand_held_A = compoundA (mkA "hand held") ; -lin hand_loomed_A = compoundA (mkA "hand loomed") ; -lin hand_me_down_A = compoundA (mkA "hand me down") ; -lin hand_me_down_N = mkN "hand - me - down" "hand - me - downs"; -- from DictEng -lin hand_operated_A = compoundA (mkA "hand operated") ; -lin hand_to_hand_A = compoundA (mkA "hand to hand") ; -lin hand_to_mouth_A = compoundA (mkA "hand to mouth") ; -lin hand_and_foot_Adv = mkAdv "hand and foot" ; -lin hand_barrow_N = mkN "hand - barrow" "hand - barrows"; -- from DictEng -lin hand_carry_V2 = mkV2 (mkV "hand - carry"); -- from DictEng -lin hand_grenade_N = mkN "hand - grenade" "hand - grenades"; -- from DictEng -lin hand_in_glove_Adv = mkAdv "hand in glove" ; -lin hand_in_hand_Adv = mkAdv "hand in hand" ; -lin hand_luggage_N = mkN "hand - luggage" ; -- from DictEng -lin hand_me_down_N = mkN "hand - me - down" "hand - me - downs"; -- from DictEng -lin hand_organ_N = mkN "hand - organ" "hand - organs"; -- from DictEng -lin hand_out_N = mkN "hand - out" "hand - outs"; -- from DictEng -lin hand_over_fist_Adv = mkAdv "hand over fist" ; -lin hand_picked_A = compoundA (mkA "hand - picked"); -- from DictEng -lin hand_to_hand_Adv = mkAdv "hand to hand" ; -lin hand_to_mouth_Adv = mkAdv "hand to mouth" ; -lin handbag_N = mkN "handbag" "handbags"; -- from DictEng -lin handball_N = mkN "handball" ; -lin handbarrow_N = mkN "handbarrow" ; -lin handbell_N = mkN "handbell" ; -lin handbill_N = mkN "handbill" "handbills"; -- from DictEng -lin handbook_N = mkN "handbook" "handbooks"; -- from DictEng -lin handbow_N = mkN "handbow" ; -lin handbrake_N = mkN "handbrake" "handbrakes"; -- from DictEng -lin handbreadth_N = mkN "handbreadth" ; -lin handcar_N = mkN "handcar" ; -lin handcart_N = mkN "handcart" "handcarts"; -- from DictEng -lin handclap_N = mkN "handclap" "handclaps"; -- from DictEng -lin handcuff_N = mkN "handcuff" "handcuffs"; -- from DictEng -lin handcuff_V2 = mkV2 (mkV "handcuff" "handcuffs" "handcuffed" "handcuffed" "handcuffing"); -- from DictEng -lin handed_A = mkA "handed" ; -lin handed_down_A = compoundA (mkA "handed down") ; -lin handedness_N = mkN "handedness" ; -lin handfeed_V2 = mkV2 (mkV "handfeed") ; -lin handful_N = mkN "handful" "handfuls"; -- from DictEng -lin handhold_N = mkN "handhold" "handholds"; -- from DictEng -lin handicap_N = mkN "handicap" "handicaps"; -- from DictEng -lin handicap_V2 = mkV2 (mkV "handicap" "handicaps" "handicapped" "handicapped" "handicapping"); -- from DictEng -lin handicraft_N = mkN "handicraft" "handicrafts"; -- from DictEng -lin handily_Adv = mkAdv "handily"; -- from DictEng -lin handiness_N = mkN "handiness" ; -- from DictEng -lin handiwork_N = mkN "handiwork" "handiworks"; -- from DictEng -lin handkerchief_N = mkN "handkerchief" "handkerchiefs"; -- from DictEng -lin handle_N = mkN "handle" "handles"; -- from DictEng -lin handle_V = mkV "handle"; -- from DictEng -lin handle_V2 = mkV2 (mkV "handle" "handles" "handled" "handled" "handling"); -- from DictEng -lin handlebar_N = mkN "handlebar" "handlebars"; -- from DictEng -lin handled_A = mkA "handled" ; -lin handleless_A = mkA "handleless" ; -lin handler_N = mkN "handler" "handlers"; -- from DictEng -lin handless_A = mkA "handless" ; -lin handline_N = mkN "handline" ; -lin handling_N = mkN "handling" ; -lin handloom_N = mkN "handloom" ; -lin handmade_A = compoundA (mkA "handmade"); -- from DictEng -lin handmaid_N = mkN "handmaid" "handmaids"; -- from DictEng -lin handoff_N = mkN "handoff" ; -lin handout_N = mkN "handout" ; -lin handover_N = mkN "handover" "handovers"; -- from DictEng -lin handrail_N = mkN "handrail" "handrails"; -- from DictEng -lin handrest_N = mkN "handrest" ; -lin hands_N = mkN "hands" ; -lin hands_down_A = compoundA (mkA "hands down") ; -lin hands_off_A = compoundA (mkA "hands off") ; -lin hands_on_A = compoundA (mkA "hands on") ; -lin handsaw_N = mkN "handsaw" "handsaws"; -- from DictEng -lin handset_N = mkN "handset" ; -lin handsewn_A = mkA "handsewn" ; -lin handshake_N = mkN "handshake" "handshakes"; -- from DictEng -lin handshaking_N = mkN "handshaking" ; -- from DictEng -lin handsome_A = compoundA (mkA "handsome"); -- from DictEng -lin handsomely_Adv = mkAdv "handsomely" ; -lin handsomeness_N = mkN "handsomeness" ; -lin handspike_N = mkN "handspike" ; -lin handspring_N = mkN "handspring" ; -lin handstamp_N = mkN "handstamp" ; -lin handstand_N = mkN "handstand" "handstands"; -- from DictEng -lin handwear_N = mkN "handwear" ; -lin handwheel_N = mkN "handwheel" ; -lin handwork_N = mkN "handwork" ; -- from DictEng -lin handwriting_N = mkN "handwriting" ; -- from DictEng -lin handwritten_A = mkA "handwritten" ; -lin handy_A = mkA "handy" "handier"; -- from DictEng -lin handyman_N = mkN "handyman" "handymen" {- FIXME: guessed plural form -}; -- from DictEng -lin hang_N = mkN "hang" "IRREG"; -- from DictEng -lin hang_V = mkV "hang" "hangs" "hanged" "hanged" "hanging"; -- from DictEng -lin hang_V2 = mkV2 (mkV "hang" "hangs" "hanged" "hanged" "hanging"); -- from DictEng -lin hang_up_N = mkN "hang - up" "hang - ups"; -- from DictEng -lin hang_up_N = mkN "hang - up" "hang - ups"; -- from DictEng -lin hangar_N = mkN "hangar" "hangars"; -- from DictEng -lin hangdog_A = compoundA (mkA "hangdog"); -- from DictEng -lin hanger_N = mkN "hanger" "hangers"; -- from DictEng -lin hanger_on_N = mkN "hanger - on" "hangers - on"; -- from DictEng -lin hanging_N = mkN "hanging" "hangings"; -- from DictEng -lin hangman_N = mkN "hangman" "hangmen"; -- from DictEng -lin hangnail_N = mkN "hangnail" "hangnails"; -- from DictEng -lin hangover_N = mkN "hangover" "hangovers"; -- from DictEng -lin hank_N = mkN "hank" "hanks"; -- from DictEng -lin hanker_V = mkV "hanker" "hankers" "hankered" "hankered" "hankering"; -- from DictEng -lin hankering_N = mkN "hankering" "hankerings"; -- from DictEng -lin hanky_N = mkN "hanky" "hankies"; -- from DictEng -lin hanky_panky_N = mkN "hanky - panky" ; -- from DictEng -lin hansard_N = mkN "hansard" "hansards"; -- from DictEng -lin hansom_N = mkN "hansom" "hansoms"; -- from DictEng -lin hao_N = mkN "hao" ; -lin hap_N = mkN "hap" "haps"; -- from DictEng -lin hap_V = mkV "hap" "haps" "happed" "happed" "happing"; -- from DictEng -lin haphazard_A = compoundA (mkA "haphazard"); -- from DictEng -lin haphazard_Adv = mkAdv "haphazard"; -- from DictEng -lin hapless_A = compoundA (mkA "hapless"); -- from DictEng -lin haploid_A = mkA "haploid" ; -lin haploid_N = mkN "haploid" ; -lin haploidy_N = mkN "haploidy" ; -lin haplosporidian_N = mkN "haplosporidian" ; -lin haplotype_N = mkN "haplotype" ; -lin haply_Adv = mkAdv "haply"; -- from DictEng -lin happen_V = mkV "happen" "happens" "happened" "happened" "happening"; -- from DictEng -lin happen_V2 = mkV2 (mkV "happen" "happens" "happened" "happened" "happening"); -- from DictEng -lin happen_VV = mkVV (mkV "happen" "happens" "happened" "happened" "happening"); -- from DictEng -lin happening_N = mkN "happening" "happenings"; -- from DictEng -lin happily_Adv = mkAdv "happily"; -- from DictEng -lin happiness_N = mkN "happiness" ; -- from DictEng -lin happy_A = mkA "happy" "happier"; -- from DictEng -lin happy_go_lucky_A = compoundA (mkA "happy - go - lucky"); -- from DictEng -lin haptic_A = mkA "haptic" ; -lin haptoglobin_N = mkN "haptoglobin" ; -lin hara_kiri_N = mkN "hara - kiri" ; -- from DictEng -lin harakiri_N = mkN "harakiri" ; -lin harangue_N = mkN "harangue" "harangues"; -- from DictEng -lin harangue_V = mkV "harangue" "harangues" "harangued" "harangued" "haranguing"; -- from DictEng -lin harangue_V2 = mkV2 (mkV "harangue" "harangues" "harangued" "harangued" "haranguing"); -- from DictEng -lin haranguer_N = mkN "haranguer" ; -lin harass_V2 = mkV2 (mkV "harass" "harasses" "harassed" "harassed" "harassing"); -- from DictEng -lin harasser_N = mkN "harasser" ; -lin harassment_N = mkN "harassment" ; -- from DictEng -lin harbinger_N = mkN "harbinger" "harbingers"; -- from DictEng -lin harbor_N = mkN "harbor" ; -lin harbor_V2 = mkV2 (mkV "harbor"); -- from DictEng -lin harborage_N = mkN "harborage" ; -lin harbour_N = mkN "harbour" "harbours"; -- from DictEng -lin harbour_V = mkV "harbour" "harbours" "harboured" "harboured" "harbouring"; -- from DictEng -lin harbour_V2 = mkV2 (mkV "harbour" "harbours" "harboured" "harboured" "harbouring"); -- from DictEng -lin harbourage_N = mkN "harbourage" "harbourages"; -- from DictEng -lin hard_A = mkA "hard" "harder"; -- from DictEng -lin hard_Adv = mkAdv "hard"; -- from DictEng -lin hard_and_fast_A = compoundA (mkA "hard and fast") ; -lin hard_baked_A = compoundA (mkA "hard - baked"); -- from DictEng -lin hard_bitten_A = compoundA (mkA "hard - bitten"); -- from DictEng -lin hard_boiled_A = compoundA (mkA "hard - boiled"); -- from DictEng -lin hard_core_A = compoundA (mkA "hard core") ; -lin hard_fought_A = compoundA (mkA "hard fought") ; -lin hard_hitting_A = compoundA (mkA "hard hitting") ; -lin hard_line_A = compoundA (mkA "hard line") ; -lin hard_of_hearing_A = compoundA (mkA "hard of hearing") ; -lin hard_shelled_A = compoundA (mkA "hard shelled") ; -lin hard_to_please_A = compoundA (mkA "hard to please") ; -lin hard_baked_A = compoundA (mkA "hard - baked"); -- from DictEng -lin hard_bitten_A = compoundA (mkA "hard - bitten"); -- from DictEng -lin hard_boiled_A = compoundA (mkA "hard - boiled"); -- from DictEng -lin hard_headed_A = compoundA (mkA "hard - headed"); -- from DictEng -lin hard_up_A = compoundA (mkA "hard up") ; -lin hardback_N = mkN "hardback" "hardbacks"; -- from DictEng -lin hardbacked_A = compoundA (mkA "hardbacked"); -- from DictEng -lin hardbake_N = mkN "hardbake" ; -lin hardball_N = mkN "hardball" ; -lin hardboard_N = mkN "hardboard" ; -- from DictEng -lin hardbound_A = compoundA (mkA "hardbound"); -- from DictEng -lin hardcover_N = mkN "hardcover" "hardcovers"; -- from DictEng -lin hardcovered_A = compoundA (mkA "hardcovered"); -- from DictEng -lin harden_V = mkV "harden" "hardens" "hardened" "hardened" "hardening"; -- from DictEng -lin harden_V2 = mkV2 (mkV "harden" "hardens" "hardened" "hardened" "hardening"); -- from DictEng -lin hardened_A = mkA "hardened" ; -lin hardening_N = mkN "hardening" ; -lin hardheaded_A = mkA "hardheaded" ; -lin hardhearted_A = compoundA (mkA "hardhearted"); -- from DictEng -lin hardhitting_A = compoundA (mkA "hardhitting"); -- from DictEng -lin hardihood_N = mkN "hardihood" ; -- from DictEng -lin hardiness_N = mkN "hardiness" ; -- from DictEng -lin hardinggrass_N = mkN "hardinggrass" ; -lin hardliner_N = mkN "hardliner" "hardliners"; -- from DictEng -lin hardly_Adv = mkAdv "hardly" ; -lin hardly_a_A = compoundA (mkA "hardly a") ; -lin hardness_N = mkN "hardness" ; -- from DictEng -lin hardscrabble_A = mkA "hardscrabble" ; -lin hardship_N = mkN "hardship" "hardships"; -- from DictEng -lin hardtack_N = mkN "hardtack" ; -lin hardtop_N = mkN "hardtop" "hardtops"; -- from DictEng -lin hardware_N = mkN "hardware" ; -- from DictEng -lin hardwood_N = mkN "hardwood" ; -- from DictEng -lin hardworking_A = compoundA (mkA "hardworking"); -- from DictEng -lin hardy_A = mkA "hardy" "hardier"; -- from DictEng -lin hare_N = mkN "hare" "hares"; -- from DictEng -lin hare_V = mkV "hare" "hares" "hared" "hared" "haring"; -- from DictEng -lin harebell_N = mkN "harebell" "harebells"; -- from DictEng -lin harebrained_A = compoundA (mkA "harebrained"); -- from DictEng -lin harelip_N = mkN "harelip" "harelips"; -- from DictEng -lin harem_N = mkN "harem" "harems"; -- from DictEng -lin haricot_N = mkN "haricot" "haricots"; -- from DictEng -lin hark_V = mkV "hark" "harks" "harked" "harked" "harking"; -- from DictEng -lin harlequin_N = mkN "harlequin" "harlequins"; -- from DictEng -lin harlequinade_N = mkN "harlequinade" "harlequinades"; -- from DictEng -lin harlot_N = mkN "harlot" "harlots"; -- from DictEng -lin harm_N = mkN "harm" ; -- from DictEng -lin harm_V2 = mkV2 (mkV "harm" "harms" "harmed" "harmed" "harming"); -- from DictEng -lin harmattan_N = mkN "harmattan" "harmattans"; -- from DictEng -lin harmful_A = compoundA (mkA "harmful"); -- from DictEng -lin harmfulness_N = mkN "harmfulness" ; -lin harmless_A = compoundA (mkA "harmless"); -- from DictEng -lin harmlessly_Adv = mkAdv "harmlessly" ; -lin harmonic_A = mkA "harmonic" ; -lin harmonic_N = mkN "harmonic" "harmonics"; -- from DictEng -lin harmonica_N = mkN "harmonica" "harmonicas"; -- from DictEng -lin harmonically_Adv = mkAdv "harmonically" ; -lin harmonics_N = mkN "harmonics" ; -lin harmonious_A = compoundA (mkA "harmonious"); -- from DictEng -lin harmoniously_Adv = mkAdv "harmoniously" ; -lin harmonium_N = mkN "harmonium" "harmoniums"; -- from DictEng -lin harmonizable_A = mkA "harmonizable" ; -lin harmonization_N = mkN "harmonization" "harmonizations"; -- from DictEng -lin harmonize_V = mkV "harmonize" "harmonizes" "harmonized" "harmonized" "harmonizing"; -- from DictEng -lin harmonize_V2 = mkV2 (mkV "harmonize" "harmonizes" "harmonized" "harmonized" "harmonizing"); -- from DictEng -lin harmonizer_N = mkN "harmonizer" ; -lin harmony_N = mkN "harmony" "harmonies"; -- from DictEng -lin harness_N = mkN "harness" "harnesses"; -- from DictEng -lin harness_V2 = mkV2 (mkV "harness" "harnesses" "harnessed" "harnessed" "harnessing"); -- from DictEng -lin harnessed_A = mkA "harnessed" ; -lin harp_N = mkN "harp" "harps"; -- from DictEng -lin harp_V = mkV "harp" "harps" "harped" "harped" "harping"; -- from DictEng -lin harp_shaped_A = compoundA (mkA "harp shaped") ; -lin harper_N = mkN "harper" "harpers"; -- from DictEng -lin harpist_N = mkN "harpist" "harpists"; -- from DictEng -lin harpoon_N = mkN "harpoon" "harpoons"; -- from DictEng -lin harpoon_V2 = mkV2 (mkV "harpoon" "harpoons" "harpooned" "harpooned" "harpooning"); -- from DictEng -lin harpooner_N = mkN "harpooner" ; -lin harpsichord_N = mkN "harpsichord" "harpsichords"; -- from DictEng -lin harpsichordist_N = mkN "harpsichordist" "harpsichordists"; -- from DictEng -lin harpulla_N = mkN "harpulla" ; -lin harpullia_N = mkN "harpullia" ; -lin harpy_N = mkN "harpy" "harpies"; -- from DictEng -lin harridan_N = mkN "harridan" "harridans"; -- from DictEng -lin harrier_N = mkN "harrier" "harriers"; -- from DictEng -lin harrow_N = mkN "harrow" "harrows"; -- from DictEng -lin harrow_V2 = mkV2 (mkV "harrow" "harrows" "harrowed" "harrowed" "harrowing"); -- from DictEng -lin harry_V2 = mkV2 (mkV "harry" "harries" "harried" "harried" "harrying"); -- from DictEng -lin harsh_A = mkA "harsh" "harsher"; -- from DictEng -lin harsh_voiced_A = compoundA (mkA "harsh voiced") ; -lin harshly_Adv = mkAdv "harshly" ; -lin harshness_N = mkN "harshness" ; -- from DictEng -lin hart_N = mkN "hart" "harts"; -- from DictEng -lin hart's_tongue_N = mkN "hart's tongue" ; -lin hartebeest_N = mkN "hartebeest" ; -lin harum_scarum_Adv = mkAdv "harum scarum" ; -lin harum_scarum_A = compoundA (mkA "harum - scarum"); -- from DictEng -lin harum_scarum_N = mkN "harum - scarum" "harum - scarums"; -- from DictEng -lin harvest_N = mkN "harvest" "harvests"; -- from DictEng -lin harvest_V2 = mkV2 (mkV "harvest" "harvests" "harvested" "harvested" "harvesting"); -- from DictEng -lin harvest_lice_N = mkN "harvest lice" ; -lin harvester_N = mkN "harvester" "harvesters"; -- from DictEng -lin harvestfish_N = mkN "harvestfish" ; -lin harvestman_N = mkN "harvestman" ; -lin has_been_N = mkN "has - been" "has - beens"; -- from DictEng -lin has_been_N = mkN "has - been" "has - beens"; -- from DictEng -lin hash_N = mkN "hash" ; -- from DictEng -lin hash_V2 = mkV2 (mkV "hash" "hashes" "hashed" "hashed" "hashing"); -- from DictEng -lin hashish_N = mkN "hashish" ; -- from DictEng -lin haslet_N = mkN "haslet" ; -lin hasp_N = mkN "hasp" "hasps"; -- from DictEng -lin hassium_N = mkN "hassium" ; -lin hassle_N = mkN "hassle" "hassles"; -- from DictEng -lin hassle_V = mkV "hassle" "hassles" "hassled" "hassled" "hassling"; -- from DictEng -lin hassle_V2 = mkV2 (mkV "hassle" "hassles" "hassled" "hassled" "hassling"); -- from DictEng -lin hassock_N = mkN "hassock" "hassocks"; -- from DictEng -lin hastate_A = mkA "hastate" ; -lin haste_N = mkN "haste" ; -- from DictEng -lin hasten_V = mkV "hasten" "hastens" "hastened" "hastened" "hastening"; -- from DictEng -lin hasten_V2 = mkV2 (mkV "hasten" "hastens" "hastened" "hastened" "hastening"); -- from DictEng -lin hastily_Adv = mkAdv "hastily"; -- from DictEng -lin hastiness_N = mkN "hastiness" ; -- from DictEng -lin hasty_A = mkA "hasty" "hastier"; -- from DictEng -lin hat_N = mkN "hat" "hats"; -- from DictEng -lin hatband_N = mkN "hatband" "hatbands"; -- from DictEng -lin hatbox_N = mkN "hatbox" ; -lin hatch_N = mkN "hatch" "hatches"; -- from DictEng -lin hatch_V = mkV "hatch" "hatches" "hatched" "hatched" "hatching"; -- from DictEng -lin hatch_V2 = mkV2 (mkV "hatch" "hatches" "hatched" "hatched" "hatching"); -- from DictEng -lin hatchback_N = mkN "hatchback" ; -lin hatched_A = mkA "hatched" ; -lin hatchel_N = mkN "hatchel" ; -lin hatchery_N = mkN "hatchery" "hatcheries"; -- from DictEng -lin hatchet_N = mkN "hatchet" "hatchets"; -- from DictEng -lin hatching_N = mkN "hatching" ; -- from DictEng -lin hatchling_N = mkN "hatchling" ; -lin hatchway_N = mkN "hatchway" "hatchways"; -- from DictEng -lin hate_N = mkN "hate" "hates"; -- from DictEng -lin hate_V2 = mkV2 (mkV "hate" "hates" "hated" "hated" "hating"); -- from DictEng -lin hate_V2V = mkV2V (mkV "hate") noPrep to_Prep ; -- from DictEng -lin hate_VS = mkVS (mkV "hate"); -- from DictEng -lin hateful_A = compoundA (mkA "hateful"); -- from DictEng -lin hatefully_Adv = mkAdv "hatefully" ; -lin hatefulness_N = mkN "hatefulness" ; -lin hatemonger_N = mkN "hatemonger" ; -lin hater_N = mkN "hater" ; -lin hatful_N = mkN "hatful" "hatfuls"; -- from DictEng -lin hatless_A = compoundA (mkA "hatless"); -- from DictEng -lin hatmaker_N = mkN "hatmaker" ; -lin hatpin_N = mkN "hatpin" "hatpins"; -- from DictEng -lin hatred_N = mkN "hatred" "hatreds"; -- from DictEng -lin hatted_A = mkA "hatted" ; -lin hatter_N = mkN "hatter" "hatters"; -- from DictEng -lin hauberk_N = mkN "hauberk" "hauberks"; -- from DictEng -lin haughtily_Adv = mkAdv "haughtily"; -- from DictEng -lin haughtiness_N = mkN "haughtiness" ; -- from DictEng -lin haughty_A = mkA "haughty" "haughtier"; -- from DictEng -lin haul_N = mkN "haul" "hauls"; -- from DictEng -lin haul_V = mkV "haul" "hauls" "hauled" "hauled" "hauling"; -- from DictEng -lin haul_V2 = mkV2 (mkV "haul" "hauls" "hauled" "hauled" "hauling"); -- from DictEng -lin haulage_N = mkN "haulage" ; -- from DictEng -lin hauler_N = mkN "hauler" ; -lin haulier_N = mkN "haulier" "hauliers"; -- from DictEng -lin hauling_N = mkN "hauling" ; -lin haulm_N = mkN "haulm" ; -- from DictEng -lin haunch_N = mkN "haunch" "haunches"; -- from DictEng -lin haunt_N = mkN "haunt" "haunts"; -- from DictEng -lin haunt_V2 = mkV2 (mkV "haunt" "haunts" "haunted" "haunted" "haunting"); -- from DictEng -lin haunted_A = mkA "haunted" ; -lin haunting_A = mkA "haunting" ; -lin hausmannite_N = mkN "hausmannite" ; -lin haustorium_N = mkN "haustorium" ; -lin hautboy_N = mkN "hautboy" "hautboys"; -- from DictEng -lin hauteur_N = mkN "hauteur" ; -- from DictEng -lin havana_N = mkN "havana" "havanas"; -- from DictEng -lin have_V = IrregEng.have_V; -- from DictEng -lin have_V2 = mkV2 (IrregEng.have_V); -- from DictEng -lin have_VS = mkVS (IrregEng.have_V); -- from DictEng -lin have_VV = mkVV IrregEng.have_V; -- from DictEng -lin havelock_N = mkN "havelock" ; -lin haven_N = mkN "haven" "havens"; -- from DictEng -lin haversack_N = mkN "haversack" "haversacks"; -- from DictEng -lin havoc_N = mkN "havoc" ; -- from DictEng -lin haw_N = mkN "haw" "haws"; -- from DictEng -lin haw_V = mkV "haw" "haws" "hawed" "hawed" "hawing"; -- from DictEng -lin haw_haw_N = mkN "haw - haw" "haw - haws"; -- from DictEng -lin hawala_N = mkN "hawala" ; -lin hawfinch_N = mkN "hawfinch" ; -lin hawk_N = mkN "hawk" "hawks"; -- from DictEng -lin hawk_V2 = mkV2 (mkV "hawk" "hawks" "hawked" "hawked" "hawking"); -- from DictEng -lin hawk's_beard_N = mkN "hawk's beard" ; -lin hawk_eyed_A = compoundA (mkA "hawk - eyed"); -- from DictEng -lin hawkbit_N = mkN "hawkbit" ; -lin hawker_N = mkN "hawker" "hawkers"; -- from DictEng -lin hawkishness_N = mkN "hawkishness" ; -lin hawkmoth_N = mkN "hawkmoth" ; -lin hawkweed_N = mkN "hawkweed" ; -lin hawse_N = mkN "hawse" ; -lin hawser_N = mkN "hawser" "hawsers"; -- from DictEng -lin hawthorn_N = mkN "hawthorn" "hawthorns"; -- from DictEng -lin hay_N = mkN "hay" ; -- from DictEng -lin hay_V = mkV "hay" ; -lin hay_scented_N = mkN "hay scented" ; -lin haycock_N = mkN "haycock" "haycocks"; -- from DictEng -lin hayfield_N = mkN "hayfield" ; -lin hayfork_N = mkN "hayfork" "hayforks"; -- from DictEng -lin haying_N = mkN "haying" ; -lin hayloft_N = mkN "hayloft" ; -lin haymaker_N = mkN "haymaker" "haymakers"; -- from DictEng -lin haymaking_N = mkN "haymaking" ; -- from DictEng -lin haymow_N = mkN "haymow" ; -lin hayrack_N = mkN "hayrack" ; -lin hayrick_N = mkN "hayrick" "hayricks"; -- from DictEng -lin haystack_N = mkN "haystack" "haystacks"; -- from DictEng -lin haywire_A = compoundA (mkA "haywire"); -- from DictEng -lin haywire_N = mkN "haywire" ; -- from DictEng -lin hazard_N = mkN "hazard" "hazards"; -- from DictEng -lin hazard_V2 = mkV2 (mkV "hazard" "hazards" "hazarded" "hazarded" "hazarding"); -- from DictEng -lin hazardous_A = compoundA (mkA "hazardous"); -- from DictEng -lin hazardousness_N = mkN "hazardousness" ; -lin haze_N = mkN "haze" "hazes"; -- from DictEng -lin haze_V2 = mkV2 (mkV "haze" "hazes" "hazed" "hazed" "hazing"); -- from DictEng -lin hazel_A = mkA "hazel" ; -lin hazel_N = mkN "hazel" "hazels"; -- from DictEng -lin hazel_brown_A = compoundA (mkA "hazel brown") ; -lin hazelnut_N = mkN "hazelnut" ; -lin hazily_Adv = mkAdv "hazily"; -- from DictEng -lin haziness_N = mkN "haziness" ; -- from DictEng -lin hazy_A = mkA "hazy" "hazier"; -- from DictEng -lin he_N = mkN "he" ; -lin he_Pron = mkPron "he" "him" "his" "his" singular P3 masculine ; -- from DictEng -lin he_goat_N = mkN "he - goat" "he - goats"; -- from DictEng -lin he_man_N = mkN "he - man" "he - men"; -- from DictEng -lin head_N = mkN "head" "heads"; -- from DictEng -lin head_V = mkV "head" "heads" "headed" "headed" "heading"; -- from DictEng -lin head_V2 = mkV2 (mkV "head" "heads" "headed" "headed" "heading"); -- from DictEng -lin head_on_A = compoundA (mkA "head - on"); -- from DictEng -lin head_on_Adv = mkAdv "head - on"; -- from DictEng -lin head_and_shoulders_above_Adv = mkAdv "head and shoulders above" ; -lin head_hunter_N = mkN "head - hunter" "head - hunters"; -- from DictEng -lin head_on_A = compoundA (mkA "head - on"); -- from DictEng -lin head_on_Adv = mkAdv "head - on"; -- from DictEng -lin head_on_V2 = mkV2 (mkV "head on") ; -lin head_over_heels_Adv = mkAdv "head over heels" ; -lin headache_N = mkN "headache" "headaches"; -- from DictEng -lin headband_N = mkN "headband" "headbands"; -- from DictEng -lin headboard_N = mkN "headboard" ; -lin headcheese_N = mkN "headcheese" ; -lin headdress_N = mkN "headdress" "headdresses"; -- from DictEng -lin headed_A = compoundA (mkA "headed"); -- from DictEng -lin header_N = mkN "header" "headers"; -- from DictEng -lin headfast_N = mkN "headfast" ; -lin headfirst_A = mkA "headfirst" ; -lin headful_N = mkN "headful" ; -lin headgear_N = mkN "headgear" ; -- from DictEng -lin headhunter_N = mkN "headhunter" ; -lin heading_N = mkN "heading" "headings"; -- from DictEng -lin headlamp_N = mkN "headlamp" "headlamps"; -- from DictEng -lin headland_N = mkN "headland" "headlands"; -- from DictEng -lin headless_A = compoundA (mkA "headless"); -- from DictEng -lin headlight_N = mkN "headlight" "headlights"; -- from DictEng -lin headlike_A = mkA "headlike" ; -lin headline_N = mkN "headline" "headlines"; -- from DictEng -lin headliner_N = mkN "headliner" ; -lin headlinese_N = mkN "headlinese" ; -lin headlock_N = mkN "headlock" ; -lin headlong_A = compoundA (mkA "headlong"); -- from DictEng -lin headlong_Adv = mkAdv "headlong"; -- from DictEng -lin headman_N = mkN "headman" "headmen" {- FIXME: guessed plural form -}; -- from DictEng -lin headmaster_N = mkN "headmaster" "headmasters"; -- from DictEng -lin headmastership_N = mkN "headmastership" ; -lin headmistress_N = mkN "headmistress" "headmistresses"; -- from DictEng -lin headmistressship_N = mkN "headmistressship" ; -lin headpiece_N = mkN "headpiece" "headpieces"; -- from DictEng -lin headpin_N = mkN "headpin" ; -lin headquarters_N = mkN "headquarters" ; -lin headrace_N = mkN "headrace" ; -lin headrest_N = mkN "headrest" "headrests"; -- from DictEng -lin headroom_N = mkN "headroom" ; -- from DictEng -lin heads_up_A = compoundA (mkA "heads up") ; -lin heads_up_N = mkN "heads up" ; -lin headsail_N = mkN "headsail" ; -lin headscarf_N = mkN "headscarf" ; -lin headset_N = mkN "headset" "headsets"; -- from DictEng -lin headshake_N = mkN "headshake" ; -lin headship_N = mkN "headship" "headships"; -- from DictEng -lin headshot_N = mkN "headshot" ; -lin headsman_N = mkN "headsman" ; -lin headspace_N = mkN "headspace" ; -lin headstall_N = mkN "headstall" "headstalls"; -- from DictEng -lin headstand_N = mkN "headstand" ; -lin headstock_N = mkN "headstock" ; -lin headstone_N = mkN "headstone" "headstones"; -- from DictEng -lin headstream_N = mkN "headstream" ; -lin headstrong_A = compoundA (mkA "headstrong"); -- from DictEng -lin headwater_N = mkN "headwater" ; -lin headway_N = mkN "headway" ; -- from DictEng -lin headwind_N = mkN "headwind" "headwinds"; -- from DictEng -lin headword_N = mkN "headword" "headwords"; -- from DictEng -lin heady_A = mkA "heady" "headier"; -- from DictEng -lin heal_V = mkV "heal" "heals" "healed" "healed" "healing"; -- from DictEng -lin heal_V2 = mkV2 (mkV "heal" "heals" "healed" "healed" "healing"); -- from DictEng -lin healer_N = mkN "healer" "healers"; -- from DictEng -lin healing_A = compoundA (mkA "healing"); -- from DictEng -lin healing_N = mkN "healing" ; -lin health_N = mkN "health" ; -- from DictEng -lin healthcare_N = mkN "healthcare" ; -lin healthful_A = compoundA (mkA "healthful"); -- from DictEng -lin healthfulness_N = mkN "healthfulness" ; -lin healthily_Adv = mkAdv "healthily"; -- from DictEng -lin healthy_A = mkA "healthy" "healthier"; -- from DictEng -lin heap_N = mkN "heap" "heaps"; -- from DictEng -lin heap_V2 = mkV2 (mkV "heap" "heaps" "heaped" "heaped" "heaping"); -- from DictEng -lin heaps_Adv = mkAdv "heaps"; -- from DictEng -lin hear_V = IrregEng.hear_V; -- from DictEng -lin hear_V2 = mkV2 (IrregEng.hear_V); -- from DictEng -lin hear_V2V = mkV2V (IrregEng.hear_V) noPrep to_Prep ; -- from DictEng -lin hear_VS = mkVS (IrregEng.hear_V); -- from DictEng -lin heard_A = mkA "heard" ; -lin hearer_N = mkN "hearer" "hearers"; -- from DictEng -lin hearing_A = mkA "hearing" ; -lin hearing_N = mkN "hearing" "hearings"; -- from DictEng -lin hearing_aid_N = mkN "hearing - aid" "hearing - aids"; -- from DictEng -lin hearken_V = mkV "hearken" "hearkens" "hearkened" "hearkened" "hearkening"; -- from DictEng -lin hearsay_A = mkA "hearsay" ; -lin hearsay_N = mkN "hearsay" ; -- from DictEng -lin hearse_N = mkN "hearse" "hearses"; -- from DictEng -lin heart_N = mkN "heart" "hearts"; -- from DictEng -lin heart's_ease_N = mkN "heart's - ease" ; -- from DictEng -lin heart_healthy_A = compoundA (mkA "heart healthy") ; -lin heart_to_heart_N = mkN "heart to heart" ; -lin heart_whole_A = compoundA (mkA "heart whole") ; -lin heart_and_soul_Adv = mkAdv "heart and soul" ; -lin heart_disease_N = mkN "heart - disease" "heart - diseases"; -- from DictEng -lin heart_failure_N = mkN "heart - failure" ; -- from DictEng -lin heart_rending_A = compoundA (mkA "heart - rending"); -- from DictEng -lin heartache_N = mkN "heartache" "heartaches"; -- from DictEng -lin heartbeat_N = mkN "heartbeat" "heartbeats"; -- from DictEng -lin heartbreak_N = mkN "heartbreak" ; -- from DictEng -lin heartbreaker_N = mkN "heartbreaker" ; -lin heartbreaking_A = compoundA (mkA "heartbreaking"); -- from DictEng -lin heartbroken_A = compoundA (mkA "heartbroken"); -- from DictEng -lin heartburn_N = mkN "heartburn" ; -- from DictEng -lin heartburning_N = mkN "heartburning" ; -- from DictEng -lin hearted_A = compoundA (mkA "hearted"); -- from DictEng -lin hearten_V2 = mkV2 (mkV "hearten" "heartens" "heartened" "heartened" "heartening"); -- from DictEng -lin heartening_A = mkA "heartening" ; -lin heartfelt_A = compoundA (mkA "heartfelt"); -- from DictEng -lin hearth_N = mkN "hearth" "hearths"; -- from DictEng -lin hearthrug_N = mkN "hearthrug" "hearthrugs"; -- from DictEng -lin hearthstone_N = mkN "hearthstone" ; -lin heartily_Adv = mkAdv "heartily"; -- from DictEng -lin heartiness_N = mkN "heartiness" ; -lin heartland_N = mkN "heartland" ; -lin heartleaf_N = mkN "heartleaf" ; -lin heartless_A = compoundA (mkA "heartless"); -- from DictEng -lin heartlessly_Adv = mkAdv "heartlessly" ; -lin heartlessness_N = mkN "heartlessness" ; -- from DictEng -lin heartrot_N = mkN "heartrot" ; -lin hearts_N = mkN "hearts" ; -lin heartseed_N = mkN "heartseed" ; -lin heartsick_A = compoundA (mkA "heartsick"); -- from DictEng -lin heartstrings_N = mkN "heartstrings" ; -lin heartthrob_N = mkN "heartthrob" ; -lin heartwarming_A = mkA "heartwarming" ; -lin heartwood_N = mkN "heartwood" ; -lin hearty_A = mkA "hearty" "heartier"; -- from DictEng -lin heat_N = mkN "heat" "heats"; -- from DictEng -lin heat_V = mkV "heat" "heats" "heated" "heated" "heating"; -- from DictEng -lin heat_V2 = mkV2 (mkV "heat" "heats" "heated" "heated" "heating"); -- from DictEng -lin heat_flash_N = mkN "heat - flash" "heat - flashes"; -- from DictEng -lin heatable_A = mkA "heatable" ; -lin heated_A = compoundA (mkA "heated"); -- from DictEng -lin heatedly_Adv = mkAdv "heatedly" ; -lin heater_N = mkN "heater" "heaters"; -- from DictEng -lin heath_N = mkN "heath" "heaths"; -- from DictEng -lin heathen_A = mkA "heathen" ; -lin heathen_N = mkN "heathen" "heathens"; -- from DictEng -lin heathenish_A = compoundA (mkA "heathenish"); -- from DictEng -lin heather_N = mkN "heather" "heathers"; -- from DictEng -lin heather_mixture_N = mkN "heather - mixture" ; -- from DictEng -lin heathlike_A = mkA "heathlike" ; -lin heating_N = mkN "heating" ; -- from DictEng -lin heatless_A = mkA "heatless" ; -lin heatspot_N = mkN "heatspot" "heatspots"; -- from DictEng -lin heatstroke_N = mkN "heatstroke" ; -- from DictEng -lin heatwave_N = mkN "heatwave" "heatwaves"; -- from DictEng -lin heaume_N = mkN "heaume" ; -lin heave_N = mkN "heave" "heaves"; -- from DictEng -lin heave_V = mkV "heave" "heaves" "heaved" "heaved" "heaving"; -- from DictEng -lin heave_V2 = mkV2 (mkV "heave" "heaves" "heaved" "heaved" "heaving"); -- from DictEng -lin heaven_N = mkN "heaven" "heavens"; -- from DictEng -lin heaven_sent_A = compoundA (mkA "heaven sent") ; -lin heavenly_A = compoundA (mkA "heavenly"); -- from DictEng -lin heavensent_A = compoundA (mkA "heavensent"); -- from DictEng -lin heavenward_A = compoundA (mkA "heavenward"); -- from DictEng -lin heavenward_Adv = mkAdv "heavenward"; -- from DictEng -lin heavenwards_A = compoundA (mkA "heavenwards"); -- from DictEng -lin heavenwards_Adv = mkAdv "heavenwards"; -- from DictEng -lin heaver_N = mkN "heaver" ; -lin heaves_N = mkN "heaves" ; -lin heavier_than_air_A = compoundA (mkA "heavier than air") ; -lin heavily_Adv = mkAdv "heavily"; -- from DictEng -lin heavily_traveled_A = compoundA (mkA "heavily traveled") ; -lin heaviness_N = mkN "heaviness" ; -- from DictEng -lin heavy_A = mkA "heavy" "heavier"; -- from DictEng -lin heavy_Adv = mkAdv "heavy"; -- from DictEng -lin heavy_N = mkN "heavy" ; -lin heavy_armed_A = compoundA (mkA "heavy armed") ; -lin heavy_coated_A = compoundA (mkA "heavy coated") ; -lin heavy_duty_A = compoundA (mkA "heavy duty") ; -lin heavy_footed_A = compoundA (mkA "heavy footed") ; -lin heavy_handed_A = compoundA (mkA "heavy - handed"); -- from DictEng -lin heavy_limbed_A = compoundA (mkA "heavy limbed") ; -lin heavy_handed_A = compoundA (mkA "heavy - handed"); -- from DictEng -lin heavy_hearted_A = compoundA (mkA "heavy - hearted"); -- from DictEng -lin heavy_laden_A = compoundA (mkA "heavy - laden"); -- from DictEng -lin heavyhearted_A = mkA "heavyhearted" ; -lin heavyheartedness_N = mkN "heavyheartedness" ; -lin heavyweight_N = mkN "heavyweight" "heavyweights"; -- from DictEng -lin hebdomadal_A = compoundA (mkA "hebdomadal"); -- from DictEng -lin hebdomadally_Adv = mkAdv "hebdomadally" ; -lin hebephrenia_N = mkN "hebephrenia" ; -lin hebephrenic_A = mkA "hebephrenic" ; -lin hebetude_N = mkN "hebetude" ; -lin hebraic_A = compoundA (mkA "hebraic"); -- from DictEng -lin hebrew_A = compoundA (mkA "hebrew"); -- from DictEng -lin hebrew_N = mkN "hebrew" "hebrews"; -- from DictEng -lin hecatomb_N = mkN "hecatomb" "hecatombs"; -- from DictEng -lin heck_N = mkN "heck" "hecks"; -- from DictEng -lin heckelphone_N = mkN "heckelphone" ; -lin heckle_V2 = mkV2 (mkV "heckle" "heckles" "heckled" "heckled" "heckling"); -- from DictEng -lin heckler_N = mkN "heckler" "hecklers"; -- from DictEng -lin heckling_N = mkN "heckling" ; -lin hectare_N = mkN "hectare" "hectares"; -- from DictEng -lin hectic_A = compoundA (mkA "hectic"); -- from DictEng -lin hectogram_N = mkN "hectogram" ; -lin hectograph_N = mkN "hectograph" ; -lin hectoliter_N = mkN "hectoliter" ; -lin hectometer_N = mkN "hectometer" ; -lin hector_V = mkV "hector" "hectors" "hectored" "hectored" "hectoring"; -- from DictEng -lin hector_V2 = mkV2 (mkV "hector" "hectors" "hectored" "hectored" "hectoring"); -- from DictEng -lin hedge_N = mkN "hedge" "hedges"; -- from DictEng -lin hedge_V = mkV "hedge" "hedges" "hedged" "hedged" "hedging"; -- from DictEng -lin hedge_V2 = mkV2 (mkV "hedge" "hedges" "hedged" "hedged" "hedging"); -- from DictEng -lin hedge_sparrow_N = mkN "hedge - sparrow" "hedge - sparrows"; -- from DictEng -lin hedged_A = mkA "hedged" ; -lin hedgehog_N = mkN "hedgehog" "hedgehogs"; -- from DictEng -lin hedgehop_V = mkV "hedgehop" "hedgehops" "hedgehopped" "hedgehopped" "hedgehopping"; -- from DictEng -lin hedger_N = mkN "hedger" ; -lin hedgerow_N = mkN "hedgerow" "hedgerows"; -- from DictEng -lin hedonic_A = mkA "hedonic" ; -lin hedonism_N = mkN "hedonism" ; -- from DictEng -lin hedonist_N = mkN "hedonist" "hedonists"; -- from DictEng -lin hedonistic_A = compoundA (mkA "hedonistic"); -- from DictEng -lin hee_haw_N = mkN "hee haw" ; -lin hee_haw_V = mkV "hee haw" ; -lin heed_N = mkN "heed" ; -- from DictEng -lin heed_V2 = mkV2 (mkV "heed" "heeds" "heeded" "heeded" "heeding"); -- from DictEng -lin heedful_A = compoundA (mkA "heedful"); -- from DictEng -lin heedless_A = compoundA (mkA "heedless"); -- from DictEng -lin heedlessness_N = mkN "heedlessness" ; -lin heehaw_N = mkN "heehaw" "heehaws"; -- from DictEng -lin heel_N = mkN "heel" "heels"; -- from DictEng -lin heel_V = mkV "heel" "heels" "heeled" "heeled" "heeling"; -- from DictEng -lin heel_V2 = mkV2 (mkV "heel" "heels" "heeled" "heeled" "heeling"); -- from DictEng -lin heelbone_N = mkN "heelbone" ; -lin heft_N = mkN "heft" ; -lin heft_V2 = mkV2 (mkV "heft") ; -lin hefty_A = mkA "hefty" "heftier"; -- from DictEng -lin hegari_N = mkN "hegari" ; -lin hegemon_N = mkN "hegemon" ; -lin hegemony_N = mkN "hegemony" "hegemonies"; -- from DictEng -lin hegira_N = mkN "hegira" "hegiras"; -- from DictEng -lin heifer_N = mkN "heifer" "heifers"; -- from DictEng -lin height_N = mkN "height" "heights"; -- from DictEng -lin heighten_V = mkV "heighten" "heightens" "heightened" "heightened" "heightening"; -- from DictEng -lin heighten_V2 = mkV2 (mkV "heighten" "heightens" "heightened" "heightened" "heightening"); -- from DictEng -lin heightening_A = mkA "heightening" ; -lin heinous_A = compoundA (mkA "heinous"); -- from DictEng -lin heinously_Adv = mkAdv "heinously" ; -lin heinousness_N = mkN "heinousness" ; -- from DictEng -lin heir_N = mkN "heir" "heirs"; -- from DictEng -lin heir_at_law_N = mkN "heir at law" ; -lin heiress_N = mkN "heiress" "heiresses"; -- from DictEng -lin heirloom_N = mkN "heirloom" "heirlooms"; -- from DictEng -lin heist_N = mkN "heist" ; -lin hejira_N = mkN "hejira" "hejiras"; -- from DictEng -lin held_A = mkA "held" ; -lin heliacal_A = mkA "heliacal" ; -lin helianthemum_N = mkN "helianthemum" ; -lin helicon_N = mkN "helicon" ; -lin helicopter_N = mkN "helicopter" "helicopters"; -- from DictEng -lin helicopter_V2 = mkV2 (mkV "helicopter") ; -lin heliocentric_A = mkA "heliocentric" ; -lin heliogram_N = mkN "heliogram" ; -lin heliograph_N = mkN "heliograph" "heliographs"; -- from DictEng -lin heliograph_V2 = mkV2 (mkV "heliograph" "heliographs" "heliographed" "heliographed" "heliographing"); -- from DictEng -lin heliolatry_N = mkN "heliolatry" ; -lin heliometer_N = mkN "heliometer" ; -lin heliopause_N = mkN "heliopause" ; -lin heliophila_N = mkN "heliophila" ; -lin heliopsis_N = mkN "heliopsis" ; -lin heliosphere_N = mkN "heliosphere" ; -lin heliotherapy_N = mkN "heliotherapy" ; -lin heliotrope_N = mkN "heliotrope" "heliotropes"; -- from DictEng -lin heliotropism_N = mkN "heliotropism" ; -lin heliozoan_N = mkN "heliozoan" ; -lin heliport_N = mkN "heliport" "heliports"; -- from DictEng -lin helium_N = mkN "helium" ; -- from DictEng -lin helix_N = mkN "helix" ; -lin hell_N = mkN "hell" "hells"; -- from DictEng -lin hell_bent_A = compoundA (mkA "hell bent") ; -lin hell_for_leather_Adv = mkAdv "hell for leather" ; -lin hell_kite_N = mkN "hell kite" ; -lin hellbender_N = mkN "hellbender" ; -lin hellcat_N = mkN "hellcat" "hellcats"; -- from DictEng -lin hellebore_N = mkN "hellebore" ; -lin helleborine_N = mkN "helleborine" ; -lin hellene_N = mkN "hellene" "hellenes"; -- from DictEng -lin hellenic_A = compoundA (mkA "hellenic"); -- from DictEng -lin hellfire_N = mkN "hellfire" ; -lin hellgrammiate_N = mkN "hellgrammiate" ; -lin hellhound_N = mkN "hellhound" ; -lin hellion_N = mkN "hellion" ; -lin hellish_A = compoundA (mkA "hellish"); -- from DictEng -lin hello_N = mkN "hello" ; -lin helm_N = mkN "helm" "helms"; -- from DictEng -lin helmet_N = mkN "helmet" "helmets"; -- from DictEng -lin helmet_shaped_A = compoundA (mkA "helmet shaped") ; -lin helmeted_A = compoundA (mkA "helmeted"); -- from DictEng -lin helmetflower_N = mkN "helmetflower" ; -lin helminth_N = mkN "helminth" ; -lin helminthiasis_N = mkN "helminthiasis" ; -lin helmsman_N = mkN "helmsman" "helmsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin helot_N = mkN "helot" "helots"; -- from DictEng -lin help_N = mkN "help" "helps"; -- from DictEng -lin help_V = mkV "help" "helps" "helped" "helped" "helping"; -- from DictEng -lin help_V2 = mkV2 (mkV "help" "helps" "helped" "helped" "helping"); -- from DictEng -lin help_V2V = mkV2V (mkV "help" "helps" "helped" "helped" "helping") noPrep to_Prep ; -- from DictEng -lin help_VS = mkVS (mkV "help" "helps" "helped" "helped" "helping"); -- from DictEng -lin help_VV = mkVV (mkV "help" "helps" "helped" "helped" "helping"); -- from DictEng -lin helper_N = mkN "helper" "helpers"; -- from DictEng -lin helper_t_cell_PN = mkPN "helper T cell" ; -lin helpful_A = compoundA (mkA "helpful"); -- from DictEng -lin helpfully_Adv = mkAdv "helpfully" ; -lin helpfulness_N = mkN "helpfulness" ; -- from DictEng -lin helping_N = mkN "helping" "helpings"; -- from DictEng -lin helpless_A = compoundA (mkA "helpless"); -- from DictEng -lin helplessly_Adv = mkAdv "helplessly" ; -lin helplessness_N = mkN "helplessness" ; -- from DictEng -lin helpmate_N = mkN "helpmate" "helpmates"; -- from DictEng -lin helpmeet_N = mkN "helpmeet" "helpmeets"; -- from DictEng -lin helter_skelter_A = compoundA (mkA "helter skelter") ; -lin helter_skelter_Adv = mkAdv "helter - skelter"; -- from DictEng -lin helter_skelter_Adv = mkAdv "helter - skelter"; -- from DictEng -lin helter_skelter_N = mkN "helter - skelter" "helter - skelters"; -- from DictEng -lin helve_N = mkN "helve" "helves"; -- from DictEng -lin helvella_N = mkN "helvella" ; -lin hem_N = mkN "hem" "hems"; -- from DictEng -lin hem_V = mkV "hem" "hems" "hemmed" "hemmed" "hemming"; -- from DictEng -lin hem_V2 = mkV2 (mkV "hem" "hems" "hemmed" "hemmed" "hemming"); -- from DictEng -lin hemagglutination_N = mkN "hemagglutination" ; -lin hemal_A = mkA "hemal" ; -lin hemangioma_N = mkN "hemangioma" ; -lin hematemesis_N = mkN "hematemesis" ; -lin hematinic_N = mkN "hematinic" ; -lin hematite_N = mkN "hematite" "hematites"; -- from DictEng -lin hematocele_N = mkN "hematocele" ; -lin hematochezia_N = mkN "hematochezia" ; -lin hematochrome_N = mkN "hematochrome" ; -lin hematocolpometra_N = mkN "hematocolpometra" ; -lin hematocolpos_N = mkN "hematocolpos" ; -lin hematocrit_N = mkN "hematocrit" ; -lin hematocytopenia_N = mkN "hematocytopenia" ; -lin hematocyturia_N = mkN "hematocyturia" ; -lin hematologic_A = mkA "hematologic" ; -lin hematologist_N = mkN "hematologist" ; -lin hematology_N = mkN "hematology" ; -lin hematoma_N = mkN "hematoma" ; -lin hematopoiesis_N = mkN "hematopoiesis" ; -lin hematopoietic_A = mkA "hematopoietic" ; -lin hematuria_N = mkN "hematuria" ; -lin heme_N = mkN "heme" ; -lin hemeralopia_N = mkN "hemeralopia" ; -lin hemiacetal_N = mkN "hemiacetal" ; -lin hemianopia_N = mkN "hemianopia" ; -lin hemic_A = mkA "hemic" ; -lin hemiepiphyte_N = mkN "hemiepiphyte" ; -lin hemimetabolous_A = mkA "hemimetabolous" ; -lin hemimetamorphosis_N = mkN "hemimetamorphosis" ; -lin hemimorphite_N = mkN "hemimorphite" ; -lin hemin_N = mkN "hemin" ; -lin hemiparasite_N = mkN "hemiparasite" ; -lin hemiparasitic_A = mkA "hemiparasitic" ; -lin hemiplegia_N = mkN "hemiplegia" ; -lin hemiplegic_N = mkN "hemiplegic" ; -lin hemisphere_N = mkN "hemisphere" "hemispheres"; -- from DictEng -lin hemispheric_A = mkA "hemispheric" ; -lin hemispherical_A = mkA "hemispherical" ; -lin hemline_N = mkN "hemline" "hemlines"; -- from DictEng -lin hemlock_N = mkN "hemlock" "hemlocks"; -- from DictEng -lin hemming_stitch_N = mkN "hemming - stitch" "hemming - stitches"; -- from DictEng -lin hemming_stitch_N = mkN "hemming - stitch" "hemming - stitches"; -- from DictEng -lin hemochromatosis_N = mkN "hemochromatosis" ; -lin hemodialysis_N = mkN "hemodialysis" ; -lin hemodynamic_A = mkA "hemodynamic" ; -lin hemodynamics_N = mkN "hemodynamics" ; -lin hemoglobin_N = mkN "hemoglobin" ; -- from DictEng -lin hemoglobinemia_N = mkN "hemoglobinemia" ; -lin hemoglobinopathy_N = mkN "hemoglobinopathy" ; -lin hemoglobinuria_N = mkN "hemoglobinuria" ; -lin hemolysin_N = mkN "hemolysin" ; -lin hemolysis_N = mkN "hemolysis" ; -lin hemolytic_A = mkA "hemolytic" ; -lin hemophilia_N = mkN "hemophilia" ; -- from DictEng -lin hemophilia_a_PN = mkPN "hemophilia A" ; -lin hemophilia_b_PN = mkPN "hemophilia B" ; -lin hemophiliac_N = mkN "hemophiliac" "hemophiliacs"; -- from DictEng -lin hemoprotein_N = mkN "hemoprotein" ; -lin hemoptysis_N = mkN "hemoptysis" ; -lin hemorrhage_N = mkN "hemorrhage" "hemorrhages"; -- from DictEng -lin hemorrhage_V = mkV "hemorrhage"; -- from DictEng -lin hemorrhage_V2 = mkV2 (mkV "hemorrhage"); -- from DictEng -lin hemorrhagic_A = mkA "hemorrhagic" ; -lin hemorrhoid_N = mkN "hemorrhoid" ; -lin hemorrhoidectomy_N = mkN "hemorrhoidectomy" ; -lin hemosiderin_N = mkN "hemosiderin" ; -lin hemosiderosis_N = mkN "hemosiderosis" ; -lin hemostasis_N = mkN "hemostasis" ; -lin hemostat_N = mkN "hemostat" ; -lin hemothorax_N = mkN "hemothorax" ; -lin hemp_N = mkN "hemp" ; -- from DictEng -lin hempen_A = compoundA (mkA "hempen"); -- from DictEng -lin hemstitch_N = mkN "hemstitch" "hemstitches"; -- from DictEng -lin hemstitch_V2 = mkV2 (mkV "hemstitch" "hemstitches" "hemstitched" "hemstitched" "hemstitching"); -- from DictEng -lin hen_N = mkN "hen" "hens"; -- from DictEng -lin hen_of_the_woods_N = mkN "hen of the woods" ; -lin hen_party_N = mkN "hen - party" "hen - parties"; -- from DictEng -lin henbane_N = mkN "henbane" ; -- from DictEng -lin henbit_N = mkN "henbit" ; -lin hence_Adv = mkAdv "hence"; -- from DictEng -lin henceforth_Adv = mkAdv "henceforth"; -- from DictEng -lin henceforward_Adv = mkAdv "henceforward"; -- from DictEng -lin henchman_N = mkN "henchman" "henchmen" {- FIXME: guessed plural form -}; -- from DictEng -lin hencoop_N = mkN "hencoop" "hencoops"; -- from DictEng -lin hendiadys_N = mkN "hendiadys" ; -lin henhouse_N = mkN "henhouse" "henhouses"; -- from DictEng -lin henna_N = mkN "henna" ; -- from DictEng -lin henna_V2 = mkV2 (mkV "henna") ; -lin hennaed_A = compoundA (mkA "hennaed"); -- from DictEng -lin henpecked_A = compoundA (mkA "henpecked"); -- from DictEng -lin henroost_N = mkN "henroost" "henroosts"; -- from DictEng -lin henry_N = mkN "henry" ; -lin hep_A = compoundA (mkA "hep"); -- from DictEng -lin hepadnavirus_N = mkN "hepadnavirus" ; -lin heparin_N = mkN "heparin" ; -lin hepatic_A = mkA "hepatic" ; -lin hepatica_N = mkN "hepatica" ; -lin hepatitis_N = mkN "hepatitis" ; -- from DictEng -lin hepatitis_a_PN = mkPN "hepatitis A" ; -lin hepatitis_a_virus_PN = mkPN "hepatitis A virus" ; -lin hepatitis_b_PN = mkPN "hepatitis B" ; -lin hepatitis_c_PN = mkPN "hepatitis C" ; -lin hepatoma_N = mkN "hepatoma" ; -lin hepatomegaly_N = mkN "hepatomegaly" ; -lin hepatotoxic_A = mkA "hepatotoxic" ; -lin hepatotoxin_N = mkN "hepatotoxin" ; -lin heptagon_N = mkN "heptagon" "heptagons"; -- from DictEng -lin heptane_N = mkN "heptane" ; -lin herald_N = mkN "herald" "heralds"; -- from DictEng -lin herald_V2 = mkV2 (mkV "herald" "heralds" "heralded" "heralded" "heralding"); -- from DictEng -lin heralded_A = mkA "heralded" ; -lin heraldic_A = compoundA (mkA "heraldic"); -- from DictEng -lin heraldry_N = mkN "heraldry" ; -- from DictEng -lin herb_N = mkN "herb" "herbs"; -- from DictEng -lin herb_paris_PN = mkPN "herb Paris" ; -lin herbaceous_A = compoundA (mkA "herbaceous"); -- from DictEng -lin herbage_N = mkN "herbage" ; -- from DictEng -lin herbal_A = compoundA (mkA "herbal"); -- from DictEng -lin herbalist_N = mkN "herbalist" "herbalists"; -- from DictEng -lin herbarium_N = mkN "herbarium" ; -lin herbicide_N = mkN "herbicide" ; -lin herbivore_N = mkN "herbivore" ; -lin herbivorous_A = compoundA (mkA "herbivorous"); -- from DictEng -lin herculean_A = compoundA (mkA "herculean"); -- from DictEng -lin herd_N = mkN "herd" "herds"; -- from DictEng -lin herd_V = mkV "herd" "herds" "herded" "herded" "herding"; -- from DictEng -lin herd_V2 = mkV2 (mkV "herd" "herds" "herded" "herded" "herding"); -- from DictEng -lin herder_N = mkN "herder" ; -lin herdsman_N = mkN "herdsman" "herdsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin here_A = mkA "here" ; -lin here_Adv = mkAdv "here"; -- from DictEng -lin here_N = mkN "here" ; -lin here_and_there_Adv = mkAdv "here and there" ; -lin hereabout_Adv = mkAdv "hereabout" ; -lin hereabouts_Adv = mkAdv "hereabouts"; -- from DictEng -lin hereafter_Adv = mkAdv "hereafter"; -- from DictEng -lin hereafter_N = mkN "hereafter" "IRREG"; -- from DictEng -lin hereby_Adv = mkAdv "hereby"; -- from DictEng -lin hereditament_N = mkN "hereditament" "hereditaments"; -- from DictEng -lin hereditarianism_N = mkN "hereditarianism" ; -lin hereditary_A = compoundA (mkA "hereditary"); -- from DictEng -lin heredity_N = mkN "heredity" ; -- from DictEng -lin herein_Adv = mkAdv "herein"; -- from DictEng -lin hereinafter_Adv = mkAdv "hereinafter"; -- from DictEng -lin hereinbefore_Adv = mkAdv "hereinbefore"; -- from DictEng -lin hereness_N = mkN "hereness" ; -lin hereof_Adv = mkAdv "hereof"; -- from DictEng -lin heresy_N = mkN "heresy" "heresies"; -- from DictEng -lin heretic_N = mkN "heretic" "heretics"; -- from DictEng -lin heretical_A = compoundA (mkA "heretical"); -- from DictEng -lin hereto_Adv = mkAdv "hereto"; -- from DictEng -lin heretofore_Adv = mkAdv "heretofore"; -- from DictEng -lin hereunder_Adv = mkAdv "hereunder" ; -lin hereupon_Adv = mkAdv "hereupon"; -- from DictEng -lin herewith_Adv = mkAdv "herewith"; -- from DictEng -lin heritable_A = compoundA (mkA "heritable"); -- from DictEng -lin heritage_N = mkN "heritage" "IRREG"; -- from DictEng -lin herm_N = mkN "herm" ; -lin hermaphrodite_N = mkN "hermaphrodite" "hermaphrodites"; -- from DictEng -lin hermaphroditic_A = mkA "hermaphroditic" ; -lin hermaphroditism_N = mkN "hermaphroditism" ; -lin hermeneutic_A = mkA "hermeneutic" ; -lin hermeneutics_N = mkN "hermeneutics" ; -lin hermetic_A = compoundA (mkA "hermetic"); -- from DictEng -lin hermetically_Adv = mkAdv "hermetically"; -- from DictEng -lin hermit_N = mkN "hermit" "hermits"; -- from DictEng -lin hermitage_N = mkN "hermitage" "hermitages"; -- from DictEng -lin hernia_N = mkN "hernia" "hernias"; -- from DictEng -lin hero_N = mkN "hero" "heroes"; -- from DictEng -lin heroic_A = compoundA (mkA "heroic"); -- from DictEng -lin heroically_Adv = mkAdv "heroically"; -- from DictEng -lin heroics_N = mkN "heroics" "heroics"; -- from DictEng -lin heroin_N = mkN "heroin" ; -- from DictEng -lin heroine_N = mkN "heroine" "heroines"; -- from DictEng -lin heroism_N = mkN "heroism" ; -- from DictEng -lin heron_N = mkN "heron" "herons"; -- from DictEng -lin heronry_N = mkN "heronry" "heronries"; -- from DictEng -lin herpangia_N = mkN "herpangia" ; -lin herpes_N = mkN "herpes" ; -lin herpetologist_N = mkN "herpetologist" ; -lin herpetology_N = mkN "herpetology" ; -lin herr_N = mkN "herr" "IRREG"; -- from DictEng -lin herrerasaur_N = mkN "herrerasaur" ; -lin herring_N = mkN "herring" "herring"; -- from DictEng -lin herringbone_N = mkN "herringbone" ; -- from DictEng -lin hertz_N = mkN "hertz" "hertz"; -- from DictEng -lin hertzian_A = compoundA (mkA "hertzian"); -- from DictEng -lin hesitance_N = mkN "hesitance" "IRREG"; -- from DictEng -lin hesitancy_N = mkN "hesitancy" ; -- from DictEng -lin hesitant_A = compoundA (mkA "hesitant"); -- from DictEng -lin hesitantly_Adv = mkAdv "hesitantly" ; -lin hesitate_V = mkV "hesitate" "hesitates" "hesitated" "hesitated" "hesitating"; -- from DictEng -lin hesitate_VS = mkVS (mkV "hesitate" "hesitates" "hesitated" "hesitated" "hesitating"); -- from DictEng -lin hesitate_VV = mkVV (mkV "hesitate" "hesitates" "hesitated" "hesitated" "hesitating"); -- from DictEng -lin hesitatingly_Adv = mkAdv "hesitatingly"; -- from DictEng -lin hesitation_N = mkN "hesitation" "hesitations"; -- from DictEng -lin hessian_N = mkN "hessian" ; -- from DictEng -lin het_up_A = compoundA (mkA "het - up"); -- from DictEng -lin heterocercal_A = mkA "heterocercal" ; -lin heterocyclic_A = mkA "heterocyclic" ; -lin heterodactyl_A = mkA "heterodactyl" ; -lin heterodox_A = compoundA (mkA "heterodox"); -- from DictEng -lin heterodoxy_N = mkN "heterodoxy" ; -- from DictEng -lin heterodyne_A = mkA "heterodyne" ; -lin heteroecious_A = mkA "heteroecious" ; -lin heterogeneity_N = mkN "heterogeneity" ; -lin heterogeneous_A = compoundA (mkA "heterogeneous"); -- from DictEng -lin heterogenous_A = mkA "heterogenous" ; -lin heterograft_N = mkN "heterograft" ; -lin heteroicous_A = mkA "heteroicous" ; -lin heterologous_A = mkA "heterologous" ; -lin heterology_N = mkN "heterology" ; -lin heterometabolism_N = mkN "heterometabolism" ; -lin heterometabolous_A = mkA "heterometabolous" ; -lin heteronym_N = mkN "heteronym" ; -lin heteroploid_N = mkN "heteroploid" ; -lin heteroploidy_N = mkN "heteroploidy" ; -lin heterosexism_N = mkN "heterosexism" ; -lin heterosexual_A = compoundA (mkA "heterosexual"); -- from DictEng -lin heterosexual_N = mkN "heterosexual" "heterosexuals"; -- from DictEng -lin heterosexuality_N = mkN "heterosexuality" ; -- from DictEng -lin heterosis_N = mkN "heterosis" ; -lin heterosporous_A = mkA "heterosporous" ; -lin heterospory_N = mkN "heterospory" ; -lin heterostracan_N = mkN "heterostracan" ; -lin heterotroph_N = mkN "heterotroph" ; -lin heterotrophic_A = mkA "heterotrophic" ; -lin heterozygosity_N = mkN "heterozygosity" ; -lin heterozygote_N = mkN "heterozygote" ; -lin heterozygous_A = mkA "heterozygous" ; -lin heth_N = mkN "heth" ; -lin heulandite_N = mkN "heulandite" ; -lin heuristic_A = compoundA (mkA "heuristic"); -- from DictEng -lin heuristic_N = mkN "heuristic" ; -lin heuristics_N = mkN "heuristics" "heuristics"; -- from DictEng -lin hew_V = mkV "hew" "hews" "hewed" "hewed" "hewing"; -- from DictEng -lin hew_V2 = mkV2 (mkV "hew" "hews" "hewed" "hewed" "hewing"); -- from DictEng -lin hewer_N = mkN "hewer" "hewers"; -- from DictEng -lin hewn_A = mkA "hewn" ; -lin hex_N = mkN "hex" ; -lin hexachlorophene_N = mkN "hexachlorophene" ; -lin hexadecimal_A = mkA "hexadecimal" ; -lin hexagon_N = mkN "hexagon" "hexagons"; -- from DictEng -lin hexagonal_A = compoundA (mkA "hexagonal"); -- from DictEng -lin hexagram_N = mkN "hexagram" ; -lin hexahedron_N = mkN "hexahedron" ; -lin hexameter_N = mkN "hexameter" "hexameters"; -- from DictEng -lin hexane_N = mkN "hexane" ; -lin hexangular_A = mkA "hexangular" ; -lin hexapod_N = mkN "hexapod" ; -lin hexed_A = mkA "hexed" ; -lin hexestrol_N = mkN "hexestrol" ; -lin hexose_N = mkN "hexose" ; -lin heyday_N = mkN "heyday" "IRREG"; -- from DictEng -lin hi_fi_N = mkN "hi - fi" "hi - fis"; -- from DictEng -lin hi_fi_A = compoundA (mkA "hi - fi"); -- from DictEng -lin hi_fi_N = mkN "hi - fi" "hi - fis"; -- from DictEng -lin hiatus_N = mkN "hiatus" "hiatuses"; -- from DictEng -lin hibachi_N = mkN "hibachi" ; -lin hibernate_V = mkV "hibernate" "hibernates" "hibernated" "hibernated" "hibernating"; -- from DictEng -lin hibernation_N = mkN "hibernation" ; -- from DictEng -lin hibiscus_N = mkN "hibiscus" ; -- from DictEng -lin hiccough_N = mkN "hiccough" "hiccoughs"; -- from DictEng -lin hiccough_V = mkV "hiccough" "hiccoughs" "hiccoughed" "hiccoughed" "hiccoughing"; -- from DictEng -lin hiccup_N = mkN "hiccup" "hiccups"; -- from DictEng -lin hiccup_V = mkV "hiccup" "hiccups" "hiccupped" "hiccupped" "hiccupping"; -- from DictEng -lin hick_A = compoundA (mkA "hick"); -- from DictEng -lin hick_N = mkN "hick" "hicks"; -- from DictEng -lin hickey_N = mkN "hickey" ; -lin hickory_N = mkN "hickory" "hickories"; -- from DictEng -lin hidden_A = mkA "hidden" ; -lin hiddenite_N = mkN "hiddenite" ; -lin hiddenness_N = mkN "hiddenness" ; -lin hide_N = mkN "hide" "hides"; -- from DictEng -lin hide_V = IrregEng.hide_V; -- from DictEng -lin hide_V2 = mkV2 (IrregEng.hide_V); -- from DictEng -lin hide_and_seek_N = mkN "hide - and - seek" ; -- from DictEng -lin hide_and_seek_N = mkN "hide - and - seek" ; -- from DictEng -lin hide_out_N = mkN "hide - out" "hide - outs"; -- from DictEng -lin hideaway_N = mkN "hideaway" "hideaways"; -- from DictEng -lin hidebound_A = compoundA (mkA "hidebound"); -- from DictEng -lin hideous_A = compoundA (mkA "hideous"); -- from DictEng -lin hideously_Adv = mkAdv "hideously" ; -lin hideousness_N = mkN "hideousness" ; -lin hideout_N = mkN "hideout" ; -lin hiding_N = mkN "hiding" "hidings"; -- from DictEng -lin hiding_place_N = mkN "hiding - place" "hiding - places"; -- from DictEng -lin hidrotic_A = mkA "hidrotic" ; -lin hie_V = mkV "hie" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin hierarch_N = mkN "hierarch" ; -lin hierarchic_A = compoundA (mkA "hierarchic"); -- from DictEng -lin hierarchical_A = compoundA (mkA "hierarchical"); -- from DictEng -lin hierarchically_Adv = mkAdv "hierarchically" ; -lin hierarchy_N = mkN "hierarchy" "hierarchies"; -- from DictEng -lin hieratic_A = mkA "hieratic" ; -lin hieratic_N = mkN "hieratic" ; -lin hierocracy_N = mkN "hierocracy" ; -lin hieroglyph_N = mkN "hieroglyph" "hieroglyphs"; -- from DictEng -lin hieroglyphic_A = compoundA (mkA "hieroglyphic"); -- from DictEng -lin hieroglyphically_Adv = mkAdv "hieroglyphically" ; -lin hieroglyphics_N = mkN "hieroglyphics" "hieroglyphics"; -- from DictEng -lin higgledy_piggledy_Adv = mkAdv "higgledy - piggledy"; -- from DictEng -lin higgledy_piggledy_A = compoundA (mkA "higgledy - piggledy"); -- from DictEng -lin higgledy_piggledy_Adv = mkAdv "higgledy - piggledy"; -- from DictEng -lin high_A = mkA "high" "higher"; -- from DictEng -lin high_Adv = mkAdv "high"; -- from DictEng -lin high_N = mkN "high" ; -lin high_backed_A = compoundA (mkA "high backed") ; -lin high_ceilinged_A = compoundA (mkA "high ceilinged") ; -lin high_class_A = compoundA (mkA "high - class"); -- from DictEng -lin high_crowned_A = compoundA (mkA "high crowned") ; -lin high_energy_A = compoundA (mkA "high energy") ; -lin high_fidelity_A = compoundA (mkA "high - fidelity"); -- from DictEng -lin high_five_N = mkN "high five" ; -lin high_flown_A = compoundA (mkA "high flown") ; -lin high_grade_A = compoundA (mkA "high - grade"); -- from DictEng -lin high_handedly_Adv = mkAdv "high handedly" ; -lin high_interest_A = compoundA (mkA "high interest") ; -lin high_keyed_A = compoundA (mkA "high - keyed"); -- from DictEng -lin high_level_A = compoundA (mkA "high - level"); -- from DictEng -lin high_low_N = mkN "high low" ; -lin high_mindedly_Adv = mkAdv "high mindedly" ; -lin high_mindedness_N = mkN "high - mindedness" ; -- from DictEng -lin high_muck_a_muck_N = mkN "high muck a muck" ; -lin high_necked_A = compoundA (mkA "high - necked"); -- from DictEng -lin high_octane_A = compoundA (mkA "high - octane"); -- from DictEng -lin high_performance_A = compoundA (mkA "high performance") ; -lin high_pitched_A = compoundA (mkA "high - pitched"); -- from DictEng -lin high_powered_A = compoundA (mkA "high - powered"); -- from DictEng -lin high_principled_A = compoundA (mkA "high - principled"); -- from DictEng -lin high_resolution_A = compoundA (mkA "high resolution") ; -lin high_rise_A = compoundA (mkA "high - rise"); -- from DictEng -lin high_rise_N = mkN "high rise" ; -lin high_speed_A = compoundA (mkA "high - speed"); -- from DictEng -lin high_spiritedness_N = mkN "high spiritedness" ; -lin high_stepped_A = compoundA (mkA "high stepped") ; -lin high_sudsing_A = compoundA (mkA "high sudsing") ; -lin high_tech_A = compoundA (mkA "high tech") ; -lin high_tension_A = compoundA (mkA "high - tension"); -- from DictEng -lin high_top_A = compoundA (mkA "high top") ; -lin high_voltage_A = compoundA (mkA "high voltage") ; -lin high_yield_A = compoundA (mkA "high yield") ; -lin high_and_low_Adv = mkAdv "high and low" ; -lin high_class_A = compoundA (mkA "high - class"); -- from DictEng -lin high_falutin_A = compoundA (mkA "high - falutin"); -- from DictEng -lin high_fidelity_A = compoundA (mkA "high - fidelity"); -- from DictEng -lin high_fidelity_N = mkN "high - fidelity" ; -- from DictEng -lin high_frequency_N = mkN "high - frequency" "high - frequencies"; -- from DictEng -lin high_grade_A = compoundA (mkA "high - grade"); -- from DictEng -lin high_handed_A = compoundA (mkA "high - handed"); -- from DictEng -lin high_keyed_A = compoundA (mkA "high - keyed"); -- from DictEng -lin high_level_A = compoundA (mkA "high - level"); -- from DictEng -lin high_minded_A = compoundA (mkA "high - minded"); -- from DictEng -lin high_mindedness_N = mkN "high - mindedness" ; -- from DictEng -lin high_necked_A = compoundA (mkA "high - necked"); -- from DictEng -lin high_octane_A = compoundA (mkA "high - octane"); -- from DictEng -lin high_pitched_A = compoundA (mkA "high - pitched"); -- from DictEng -lin high_powered_A = compoundA (mkA "high - powered"); -- from DictEng -lin high_pressure_N = mkN "high - pressure" ; -- from DictEng -lin high_priced_A = compoundA (mkA "high - priced"); -- from DictEng -lin high_principled_A = compoundA (mkA "high - principled"); -- from DictEng -lin high_ranking_A = compoundA (mkA "high - ranking"); -- from DictEng -lin high_rise_A = compoundA (mkA "high - rise"); -- from DictEng -lin high_sounding_A = compoundA (mkA "high - sounding"); -- from DictEng -lin high_speed_A = compoundA (mkA "high - speed"); -- from DictEng -lin high_spirited_A = compoundA (mkA "high - spirited"); -- from DictEng -lin high_tension_A = compoundA (mkA "high - tension"); -- from DictEng -lin high_toned_A = compoundA (mkA "high - toned"); -- from DictEng -lin high_up_N = mkN "high - up" "high - ups"; -- from DictEng -lin highball_N = mkN "highball" "highballs"; -- from DictEng -lin highbinder_N = mkN "highbinder" ; -lin highboard_N = mkN "highboard" ; -lin highborn_A = compoundA (mkA "highborn"); -- from DictEng -lin highboy_N = mkN "highboy" "highboys"; -- from DictEng -lin highbrow_A = compoundA (mkA "highbrow"); -- from DictEng -lin highbrow_N = mkN "highbrow" "highbrows"; -- from DictEng -lin highchair_N = mkN "highchair" ; -lin higher_A = mkA "higher" ; -lin highflier_N = mkN "highflier" "highfliers"; -- from DictEng -lin highflown_A = compoundA (mkA "highflown"); -- from DictEng -lin highflyer_N = mkN "highflyer" "highflyers"; -- from DictEng -lin highflying_A = compoundA (mkA "highflying"); -- from DictEng -lin highjack_N = mkN "highjack" "highjacks"; -- from DictEng -lin highjack_V2 = mkV2 (mkV "highjack" "highjacks" "highjacked" "highjacked" "highjacking"); -- from DictEng -lin highjacker_N = mkN "highjacker" ; -lin highjacking_N = mkN "highjacking" ; -lin highland_N = mkN "highland" "highlands"; -- from DictEng -lin highlander_N = mkN "highlander" "highlanders"; -- from DictEng -lin highlight_N = mkN "highlight" "highlights"; -- from DictEng -lin highlight_V2 = mkV2 (mkV "highlight" "highlights" "highlighted" "highlighted" "highlighting"); -- from DictEng -lin highlighter_N = mkN "highlighter" ; -lin highly_Adv = mkAdv "highly" ; -lin highly_infective_A = compoundA (mkA "highly infective") ; -lin highly_sensitive_A = compoundA (mkA "highly sensitive") ; -lin highness_N = mkN "highness" "highnesses"; -- from DictEng -lin highroad_N = mkN "highroad" "highroads"; -- from DictEng -lin highway_N = mkN "highway" "highways"; -- from DictEng -lin highwayman_N = mkN "highwayman" "highwaymen" {- FIXME: guessed plural form -}; -- from DictEng -lin hijab_N = mkN "hijab" ; -lin hijack_N = mkN "hijack" "hijacks"; -- from DictEng -lin hijack_V2 = mkV2 (mkV "hijack" "hijacks" "hijacked" "hijacked" "hijacking"); -- from DictEng -lin hijacker_N = mkN "hijacker" "hijackers"; -- from DictEng -lin hike_N = mkN "hike" "hikes"; -- from DictEng -lin hike_V = mkV "hike" "hikes" "hiked" "hiked" "hiking"; -- from DictEng -lin hike_V2 = mkV2 (mkV "hike") ; -lin hiker_N = mkN "hiker" "hikers"; -- from DictEng -lin hilar_A = mkA "hilar" ; -lin hilarious_A = compoundA (mkA "hilarious"); -- from DictEng -lin hilariously_Adv = mkAdv "hilariously" ; -lin hilarity_N = mkN "hilarity" ; -- from DictEng -lin hill_N = mkN "hill" "hills"; -- from DictEng -lin hill_billy_N = mkN "hill - billy" "hill - billies"; -- from DictEng -lin hillbilly_N = mkN "hillbilly" ; -lin hilliness_N = mkN "hilliness" ; -lin hillock_N = mkN "hillock" "hillocks"; -- from DictEng -lin hillside_N = mkN "hillside" "hillsides"; -- from DictEng -lin hilltop_N = mkN "hilltop" ; -lin hilly_A = mkA "hilly" "hillier"; -- from DictEng -lin hilt_N = mkN "hilt" "hilts"; -- from DictEng -lin hilum_N = mkN "hilum" ; -lin hilus_N = mkN "hilus" ; -lin hin_N = mkN "hin" ; -lin hind_A = compoundA (mkA "hind"); -- from DictEng -lin hind_N = mkN "hind" "hinds"; -- from DictEng -lin hindbrain_N = mkN "hindbrain" ; -lin hinder_V2 = mkV2 (mkV "hinder" "hinders" "hindered" "hindered" "hindering"); -- from DictEng -lin hindfoot_N = mkN "hindfoot" ; -lin hindgut_N = mkN "hindgut" ; -lin hindi_A = compoundA (mkA "hindi"); -- from DictEng -lin hindi_N = mkN "hindi" ; -- from DictEng -lin hindmost_A = compoundA (mkA "hindmost"); -- from DictEng -lin hindquarter_N = mkN "hindquarter" ; -lin hindquarters_N = mkN "hindquarters" ; -lin hindrance_N = mkN "hindrance" "hindrances"; -- from DictEng -lin hindshank_N = mkN "hindshank" ; -lin hindsight_N = mkN "hindsight" ; -- from DictEng -lin hindu_A = compoundA (mkA "hindu"); -- from DictEng -lin hindu_N = mkN "hindu" "hindus"; -- from DictEng -lin hinduism_N = mkN "hinduism" ; -- from DictEng -lin hindustani_A = compoundA (mkA "hindustani"); -- from DictEng -lin hindustani_N = mkN "hindustani" "hindustanis"; -- from DictEng -lin hinge_N = mkN "hinge" "hinges"; -- from DictEng -lin hinge_V = mkV "hinge" "hinges" "hinged" "hinged" "hinging"; -- from DictEng -lin hinge_V2 = mkV2 (mkV "hinge" "hinges" "hinged" "hinged" "hinging"); -- from DictEng -lin hinny_N = mkN "hinny" ; -lin hint_N = mkN "hint" "hints"; -- from DictEng -lin hint_V = mkV "hint" "hints" "hinted" "hinted" "hinting"; -- from DictEng -lin hint_V2 = mkV2 (mkV "hint" "hints" "hinted" "hinted" "hinting"); -- from DictEng -lin hint_VS = mkVS (mkV "hint" "hints" "hinted" "hinted" "hinting"); -- from DictEng -lin hinterland_N = mkN "hinterland" "hinterlands"; -- from DictEng -lin hip_A = compoundA (mkA "hip"); -- from DictEng -lin hip_N = mkN "hip" "hips"; -- from DictEng -lin hip_hop_N = mkN "hip hop" ; -lin hip_bath_N = mkN "hip - bath" "hip - baths"; -- from DictEng -lin hip_flask_N = mkN "hip - flask" "hip - flasks"; -- from DictEng -lin hip_pocket_N = mkN "hip - pocket" "hip - pockets"; -- from DictEng -lin hipbone_N = mkN "hipbone" ; -lin hipflask_N = mkN "hipflask" ; -lin hiplength_A = mkA "hiplength" ; -lin hipless_A = mkA "hipless" ; -lin hipline_N = mkN "hipline" ; -lin hippeastrum_N = mkN "hippeastrum" ; -lin hipped_A = mkA "hipped" ; -lin hippie_N = mkN "hippie" "hippies"; -- from DictEng -lin hippo_N = mkN "hippo" "hippos"; -- from DictEng -lin hippocampus_N = mkN "hippocampus" ; -lin hippocratic_A = compoundA (mkA "hippocratic"); -- from DictEng -lin hippodrome_N = mkN "hippodrome" "hippodromes"; -- from DictEng -lin hippopotamus_N = mkN "hippopotamus" "hippopotamuses"; -- from DictEng -lin hippy_N = mkN "hippy" "hippies"; -- from DictEng -lin hircine_A = mkA "hircine" ; -lin hire_N = mkN "hire" ; -- from DictEng -lin hire_V = mkV "hire"; -- from DictEng -lin hire_V2 = mkV2 (mkV "hire" "hires" "hired" "hired" "hiring"); -- from DictEng -lin hire_V2V = mkV2V (mkV "hire") noPrep to_Prep ; -- from DictEng -lin hire_VS = mkVS (mkV "hire"); -- from DictEng -lin hire_purchase_N = mkN "hire purchase" ; -lin hired_A = mkA "hired" ; -lin hireling_N = mkN "hireling" "hirelings"; -- from DictEng -lin hirsute_A = compoundA (mkA "hirsute"); -- from DictEng -lin hirsuteness_N = mkN "hirsuteness" ; -lin hispid_A = mkA "hispid" ; -lin hiss_N = mkN "hiss" "hisses"; -- from DictEng -lin hiss_V = mkV "hiss" "hisses" "hissed" "hissed" "hissing"; -- from DictEng -lin hiss_V2 = mkV2 (mkV "hiss" "hisses" "hissed" "hissed" "hissing"); -- from DictEng -lin hisser_N = mkN "hisser" ; -lin histaminase_N = mkN "histaminase" ; -lin histamine_N = mkN "histamine" ; -lin histidine_N = mkN "histidine" ; -lin histiocyte_N = mkN "histiocyte" ; -lin histiocytosis_N = mkN "histiocytosis" ; -lin histocompatibility_N = mkN "histocompatibility" ; -lin histogram_N = mkN "histogram" "histograms"; -- from DictEng -lin histoincompatibility_N = mkN "histoincompatibility" ; -lin histological_A = mkA "histological" ; -lin histologically_Adv = mkAdv "histologically" ; -lin histologist_N = mkN "histologist" ; -lin histology_N = mkN "histology" ; -lin histone_N = mkN "histone" ; -lin historian_N = mkN "historian" "historians"; -- from DictEng -lin historic_A = compoundA (mkA "historic"); -- from DictEng -lin historical_A = compoundA (mkA "historical"); -- from DictEng -lin historically_Adv = mkAdv "historically" ; -lin historicalness_N = mkN "historicalness" ; -lin historicism_N = mkN "historicism" ; -lin historicize_V2 = mkV2 (mkV "historicize"); -- from DictEng -lin historiography_N = mkN "historiography" ; -lin history_N = mkN "history" "histories"; -- from DictEng -lin histrionic_A = compoundA (mkA "histrionic"); -- from DictEng -lin histrionics_N = mkN "histrionics" "histrionics"; -- from DictEng -lin hit_N = mkN "hit" "hits"; -- from DictEng -lin hit_V = IrregEng.hit_V; -- from DictEng -lin hit_V2 = mkV2 (IrregEng.hit_V); -- from DictEng -lin hit_and_run_A = compoundA (mkA "hit - and - run"); -- from DictEng -lin hit_and_run_A = compoundA (mkA "hit - and - run"); -- from DictEng -lin hitch_N = mkN "hitch" "hitches"; -- from DictEng -lin hitch_V = mkV "hitch" "hitches" "hitched" "hitched" "hitching"; -- from DictEng -lin hitch_V2 = mkV2 (mkV "hitch" "hitches" "hitched" "hitched" "hitching"); -- from DictEng -lin hitchhike_V = mkV "hitchhike" "hitchhikes" "hitchhiked" "hitchhiked" "hitchhiking"; -- from DictEng -lin hitchhiker_N = mkN "hitchhiker" "hitchhikers"; -- from DictEng -lin hitchrack_N = mkN "hitchrack" ; -lin hither_Adv = mkAdv "hither"; -- from DictEng -lin hitherto_Adv = mkAdv "hitherto"; -- from DictEng -lin hitless_A = mkA "hitless" ; -lin hitter_N = mkN "hitter" ; -lin hive_N = mkN "hive" "hives"; -- from DictEng -lin hive_V = mkV "hive" "hives" "hived" "hived" "hiving"; -- from DictEng -lin hive_V2 = mkV2 (mkV "hive" "hives" "hived" "hived" "hiving"); -- from DictEng -lin hoar_A = compoundA (mkA "hoar"); -- from DictEng -lin hoard_N = mkN "hoard" "hoards"; -- from DictEng -lin hoard_V = mkV "hoard" "hoards" "hoarded" "hoarded" "hoarding"; -- from DictEng -lin hoard_V2 = mkV2 (mkV "hoard" "hoards" "hoarded" "hoarded" "hoarding"); -- from DictEng -lin hoarder_N = mkN "hoarder" "hoarders"; -- from DictEng -lin hoarding_N = mkN "hoarding" "hoardings"; -- from DictEng -lin hoarfrost_N = mkN "hoarfrost" ; -- from DictEng -lin hoariness_N = mkN "hoariness" ; -- from DictEng -lin hoarse_A = mkA "hoarse" "hoarser"; -- from DictEng -lin hoarsely_Adv = mkAdv "hoarsely" ; -lin hoarseness_N = mkN "hoarseness" ; -- from DictEng -lin hoary_A = mkA "hoary" "hoarier"; -- from DictEng -lin hoatzin_N = mkN "hoatzin" ; -lin hoax_N = mkN "hoax" "hoaxes"; -- from DictEng -lin hoax_V2 = mkV2 (mkV "hoax" "hoaxes" "hoaxed" "hoaxed" "hoaxing"); -- from DictEng -lin hoaxer_N = mkN "hoaxer" "hoaxers"; -- from DictEng -lin hob_N = mkN "hob" "hobs"; -- from DictEng -lin hobbit_N = mkN "hobbit" ; -lin hobble_N = mkN "hobble" "hobbles"; -- from DictEng -lin hobble_V = mkV "hobble" "hobbles" "hobbled" "hobbled" "hobbling"; -- from DictEng -lin hobble_V2 = mkV2 (mkV "hobble" "hobbles" "hobbled" "hobbled" "hobbling"); -- from DictEng -lin hobble_skirt_N = mkN "hobble - skirt" "hobble - skirts"; -- from DictEng -lin hobbledehoy_N = mkN "hobbledehoy" "hobbledehoys"; -- from DictEng -lin hobbler_N = mkN "hobbler" ; -lin hobby_N = mkN "hobby" "hobbies"; -- from DictEng -lin hobbyhorse_N = mkN "hobbyhorse" "hobbyhorses"; -- from DictEng -lin hobbyism_N = mkN "hobbyism" ; -lin hobbyist_N = mkN "hobbyist" ; -lin hobgoblin_N = mkN "hobgoblin" "hobgoblins"; -- from DictEng -lin hobnail_N = mkN "hobnail" "hobnails"; -- from DictEng -lin hobnailed_A = compoundA (mkA "hobnailed"); -- from DictEng -lin hobnob_V = mkV "hobnob" "hobnobs" "hobnobbed" "hobnobbed" "hobnobbing"; -- from DictEng -lin hobo_N = mkN "hobo" "hobos"; -- from DictEng -lin hock_N = mkN "hock" "hocks"; -- from DictEng -lin hock_V2 = mkV2 (mkV "hock" "hocks" "hocked" "hocked" "hocking"); -- from DictEng -lin hockey_N = mkN "hockey" ; -- from DictEng -lin hocus_pocus_N = mkN "hocus - pocus" ; -- from DictEng -lin hod_N = mkN "hod" "hods"; -- from DictEng -lin hodgepodge_N = mkN "hodgepodge" ; -- from DictEng -lin hodoscope_N = mkN "hodoscope" ; -lin hoe_N = mkN "hoe" "hoes"; -- from DictEng -lin hoe_V = mkV "hoe" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin hoe_V2 = mkV2 (mkV "hoe" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin hoecake_N = mkN "hoecake" ; -lin hog_N = mkN "hog" "hogs"; -- from DictEng -lin hog_V2 = mkV2 (mkV "hog" "hogs" "hogged" "hogged" "hogging"); -- from DictEng -lin hogan_N = mkN "hogan" ; -lin hogback_N = mkN "hogback" ; -lin hogchoker_N = mkN "hogchoker" ; -lin hogfish_N = mkN "hogfish" ; -lin hoggish_A = compoundA (mkA "hoggish"); -- from DictEng -lin hogmanay_N = mkN "hogmanay" "hogmanays"; -- from DictEng -lin hogshead_N = mkN "hogshead" "hogsheads"; -- from DictEng -lin hogwash_N = mkN "hogwash" ; -- from DictEng -lin hoist_N = mkN "hoist" "hoists"; -- from DictEng -lin hoist_V2 = mkV2 (mkV "hoist" "hoists" "hoisted" "hoisted" "hoisting"); -- from DictEng -lin hoister_N = mkN "hoister" ; -lin hoity_toity_A = compoundA (mkA "hoity - toity"); -- from DictEng -lin hold_N = mkN "hold" "holds"; -- from DictEng -lin hold_V = IrregEng.hold_V; -- from DictEng -lin hold_V2 = mkV2 (IrregEng.hold_V); -- from DictEng -lin hold_V2V = mkV2V (IrregEng.hold_V) noPrep to_Prep ; -- from DictEng -lin hold_VS = mkVS (IrregEng.hold_V); -- from DictEng -lin hold_down_N = mkN "hold down" ; -lin hold_up_N = mkN "hold - up" "hold - ups"; -- from DictEng -lin holdall_N = mkN "holdall" "holdalls"; -- from DictEng -lin holder_N = mkN "holder" "holders"; -- from DictEng -lin holding_N = mkN "holding" "holdings"; -- from DictEng -lin holdout_N = mkN "holdout" ; -lin holdover_N = mkN "holdover" ; -lin holdup_N = mkN "holdup" "holdups"; -- from DictEng -lin hole_N = mkN "hole" "holes"; -- from DictEng -lin hole_V = mkV "hole" "holes" "holed" "holed" "holing"; -- from DictEng -lin hole_V2 = mkV2 (mkV "hole" "holes" "holed" "holed" "holing"); -- from DictEng -lin hole_and_corner_A = compoundA (mkA "hole - and - corner"); -- from DictEng -lin hole_in_the_wall_N = mkN "hole in the wall" ; -lin hole_and_corner_A = compoundA (mkA "hole - and - corner"); -- from DictEng -lin holey_A = mkA "holey" ; -lin holiday_N = mkN "holiday" "holidays"; -- from DictEng -lin holiday_V = mkV "holiday" "holidays" "holidayed" "holidayed" "holidaying"; -- from DictEng -lin holiday_maker_N = mkN "holiday - maker" "holiday - makers"; -- from DictEng -lin holier_than_thou_A = compoundA (mkA "holier than thou") ; -lin holiness_N = mkN "holiness" ; -- from DictEng -lin holism_N = mkN "holism" ; -lin holistic_A = mkA "holistic" ; -lin hollandaise_N = mkN "hollandaise" ; -lin hollander_A = compoundA (mkA "hollander"); -- from DictEng -lin hollander_N = mkN "hollander" "hollanders"; -- from DictEng -lin holler_V = mkV "holler" "hollers" "hollered" "hollered" "hollering"; -- from DictEng -lin holler_V2 = mkV2 (mkV "holler" "hollers" "hollered" "hollered" "hollering"); -- from DictEng -lin holloa_N = mkN "holloa" "holloas"; -- from DictEng -lin hollow_A = compoundA (mkA "hollow"); -- from DictEng -lin hollow_N = mkN "hollow" "hollows"; -- from DictEng -lin hollow_V2 = mkV2 (mkV "hollow" "hollows" "hollowed" "hollowed" "hollowing"); -- from DictEng -lin hollow_horned_A = compoundA (mkA "hollow horned") ; -lin hollowness_N = mkN "hollowness" ; -lin hollowware_N = mkN "hollowware" ; -lin holly_N = mkN "holly" ; -- from DictEng -lin hollyhock_N = mkN "hollyhock" "hollyhocks"; -- from DictEng -lin holm_oak_N = mkN "holm - oak" "holm - oaks"; -- from DictEng -lin holmium_N = mkN "holmium" ; -lin holocaust_N = mkN "holocaust" "holocausts"; -- from DictEng -lin holocephalan_N = mkN "holocephalan" ; -lin hologram_N = mkN "hologram" ; -lin holograph_N = mkN "holograph" "holographs"; -- from DictEng -lin holographic_A = mkA "holographic" ; -lin holography_N = mkN "holography" ; -lin holometabola_N = mkN "holometabola" ; -lin holometabolic_A = mkA "holometabolic" ; -lin holometabolism_N = mkN "holometabolism" ; -lin holonym_N = mkN "holonym" ; -lin holonymy_N = mkN "holonymy" ; -lin holophyte_N = mkN "holophyte" ; -lin holophytic_A = mkA "holophytic" ; -lin holozoic_A = mkA "holozoic" ; -lin holster_N = mkN "holster" "holsters"; -- from DictEng -lin holy_A = mkA "holy" "holier"; -- from DictEng -lin holy_N = mkN "holy" "holies"; -- from DictEng -lin holystone_N = mkN "holystone" ; -- from DictEng -lin holystone_V2 = mkV2 (mkV "holystone" "holystones" "holystoned" "holystoned" "holystoning"); -- from DictEng -lin homage_N = mkN "homage" ; -- from DictEng -lin home_A = mkA "home" ; -lin home_Adv = mkAdv "home"; -- from DictEng -lin home_N = mkN "home" "homes"; -- from DictEng -lin home_baked_A = compoundA (mkA "home - baked"); -- from DictEng -lin home_brewed_A = compoundA (mkA "home - brewed"); -- from DictEng -lin home_cured_A = compoundA (mkA "home - cured"); -- from DictEng -lin home_farm_N = mkN "home - farm" "home - farms"; -- from DictEng -lin home_loving_A = compoundA (mkA "home loving") ; -lin home_style_A = compoundA (mkA "home style") ; -lin home_baked_A = compoundA (mkA "home - baked"); -- from DictEng -lin home_brewed_A = compoundA (mkA "home - brewed"); -- from DictEng -lin home_cured_A = compoundA (mkA "home - cured"); -- from DictEng -lin home_farm_N = mkN "home - farm" "home - farms"; -- from DictEng -lin home_grown_A = compoundA (mkA "home - grown"); -- from DictEng -lin home_made_A = compoundA (mkA "home - made"); -- from DictEng -lin homebound_A = mkA "homebound" ; -lin homebound_N = mkN "homebound" ; -lin homeboy_N = mkN "homeboy" ; -lin homebuilder_N = mkN "homebuilder" ; -lin homecoming_N = mkN "homecoming" "homecomings"; -- from DictEng -lin homefolk_N = mkN "homefolk" ; -lin homegirl_N = mkN "homegirl" ; -lin homegrown_A = mkA "homegrown" ; -lin homeland_N = mkN "homeland" "homelands"; -- from DictEng -lin homeless_A = compoundA (mkA "homeless"); -- from DictEng -lin homeless_N = mkN "homeless" ; -lin homelessness_N = mkN "homelessness" ; -lin homelike_A = compoundA (mkA "homelike"); -- from DictEng -lin homeliness_N = mkN "homeliness" ; -- from DictEng -lin homely_A = mkA "homely" "homelier"; -- from DictEng -lin homemade_A = mkA "homemade" ; -lin homemaking_N = mkN "homemaking" ; -lin homeobox_N = mkN "homeobox" ; -lin homeopath_N = mkN "homeopath" "homeopaths"; -- from DictEng -lin homeopathic_A = compoundA (mkA "homeopathic"); -- from DictEng -lin homeopathy_N = mkN "homeopathy" ; -lin homeostasis_N = mkN "homeostasis" ; -lin homeostatic_A = mkA "homeostatic" ; -lin homeostatically_Adv = mkAdv "homeostatically" ; -lin homeotherm_N = mkN "homeotherm" ; -lin homeowner_N = mkN "homeowner" ; -lin homer_N = mkN "homer" ; -lin homer_V = mkV "homer"; -- from DictEng -lin homeric_A = compoundA (mkA "homeric"); -- from DictEng -lin homesick_A = compoundA (mkA "homesick"); -- from DictEng -lin homesickness_N = mkN "homesickness" ; -- from DictEng -lin homespun_A = compoundA (mkA "homespun"); -- from DictEng -lin homespun_N = mkN "homespun" ; -- from DictEng -lin homestead_N = mkN "homestead" "homesteads"; -- from DictEng -lin homestretch_N = mkN "homestretch" ; -lin hometown_N = mkN "hometown" ; -lin homeward_A = compoundA (mkA "homeward"); -- from DictEng -lin homeward_Adv = mkAdv "homeward"; -- from DictEng -lin homewards_Adv = mkAdv "homewards"; -- from DictEng -lin homework_N = mkN "homework" ; -- from DictEng -lin homey_A = compoundA (mkA "homey"); -- from DictEng -lin homicidal_A = compoundA (mkA "homicidal"); -- from DictEng -lin homicide_N = mkN "homicide" "homicides"; -- from DictEng -lin homiletic_A = compoundA (mkA "homiletic"); -- from DictEng -lin homiletics_N = mkN "homiletics" "homiletics"; -- from DictEng -lin homily_N = mkN "homily" "homilies"; -- from DictEng -lin hominal_A = mkA "hominal" ; -lin homing_A = compoundA (mkA "homing"); -- from DictEng -lin hominian_A = mkA "hominian" ; -lin hominid_N = mkN "hominid" ; -lin hominine_A = mkA "hominine" ; -lin hominoid_N = mkN "hominoid" ; -lin hominy_N = mkN "hominy" ; -- from DictEng -lin homo_N = mkN "homo" "homos"; -- from DictEng -lin homo_sapiens_N = mkN "homo sapiens" "IRREG"; -- from DictEng -lin homocercal_A = mkA "homocercal" ; -lin homocyclic_A = mkA "homocyclic" ; -lin homoeopath_N = mkN "homoeopath" "homoeopaths"; -- from DictEng -lin homoeopathy_N = mkN "homoeopathy" ; -- from DictEng -lin homoerotic_A = mkA "homoerotic" ; -lin homogenate_N = mkN "homogenate" ; -lin homogeneity_N = mkN "homogeneity" ; -- from DictEng -lin homogeneous_A = compoundA (mkA "homogeneous"); -- from DictEng -lin homogeneously_Adv = mkAdv "homogeneously" ; -lin homogenization_N = mkN "homogenization" ; -lin homogenize_V2 = mkV2 (mkV "homogenize" "homogenizes" "homogenized" "homogenized" "homogenizing"); -- from DictEng -lin homogenized_A = mkA "homogenized" ; -lin homogeny_N = mkN "homogeny" ; -lin homograft_N = mkN "homograft" ; -lin homograph_N = mkN "homograph" "homographs"; -- from DictEng -lin homoiothermic_A = mkA "homoiothermic" ; -lin homologic_A = mkA "homologic" ; -lin homologous_A = mkA "homologous" ; -lin homology_N = mkN "homology" ; -lin homomorphism_N = mkN "homomorphism" ; -lin homonym_N = mkN "homonym" "homonyms"; -- from DictEng -lin homonymic_A = mkA "homonymic" ; -lin homonymy_N = mkN "homonymy" ; -lin homophobe_N = mkN "homophobe" ; -lin homophobia_N = mkN "homophobia" ; -lin homophobic_A = mkA "homophobic" ; -lin homophone_N = mkN "homophone" "homophones"; -- from DictEng -lin homophonic_A = mkA "homophonic" ; -lin homophonous_A = mkA "homophonous" ; -lin homophony_N = mkN "homophony" ; -lin homosexual_A = compoundA (mkA "homosexual"); -- from DictEng -lin homosexual_N = mkN "homosexual" "homosexuals"; -- from DictEng -lin homosexuality_N = mkN "homosexuality" ; -- from DictEng -lin homosporous_A = mkA "homosporous" ; -lin homospory_N = mkN "homospory" ; -lin homostylous_A = mkA "homostylous" ; -lin homozygosity_N = mkN "homozygosity" ; -lin homozygote_N = mkN "homozygote" ; -lin homozygous_A = mkA "homozygous" ; -lin homunculus_N = mkN "homunculus" ; -lin honduran_A = compoundA (mkA "honduran"); -- from DictEng -lin honduran_N = mkN "honduran" "hondurans"; -- from DictEng -lin hone_N = mkN "hone" "hones"; -- from DictEng -lin hone_V2 = mkV2 (mkV "hone" "hones" "honed" "honed" "honing"); -- from DictEng -lin honest_A = compoundA (mkA "honest"); -- from DictEng -lin honest_to_god_A = compoundA (mkA "honest to god") ; -lin honestly_Adv = mkAdv "honestly" ; -lin honesty_N = mkN "honesty" ; -- from DictEng -lin honey_A = mkA "honey" ; -lin honey_N = mkN "honey" "honeys"; -- from DictEng -lin honey_colored_A = compoundA (mkA "honey colored") ; -lin honey_scented_A = compoundA (mkA "honey scented") ; -lin honeybee_N = mkN "honeybee" "honeybees"; -- from DictEng -lin honeycomb_N = mkN "honeycomb" "honeycombs"; -- from DictEng -lin honeycomb_V2 = mkV2 (mkV "honeycomb" "honeycombs" "honeycombed" "honeycombed" "honeycombing"); -- from DictEng -lin honeycreeper_N = mkN "honeycreeper" ; -lin honeydew_N = mkN "honeydew" ; -- from DictEng -lin honeyed_A = compoundA (mkA "honeyed"); -- from DictEng -lin honeyflower_N = mkN "honeyflower" ; -lin honeylike_A = mkA "honeylike" ; -lin honeymoon_N = mkN "honeymoon" "honeymoons"; -- from DictEng -lin honeymoon_V = mkV "honeymoon" "honeymoons" "honeymooned" "honeymooned" "honeymooning"; -- from DictEng -lin honeypot_N = mkN "honeypot" ; -lin honeysuckle_N = mkN "honeysuckle" ; -- from DictEng -lin honk_N = mkN "honk" "honks"; -- from DictEng -lin honk_V = mkV "honk" "honks" "honked" "honked" "honking"; -- from DictEng -lin honker_N = mkN "honker" ; -lin honkytonk_N = mkN "honkytonk" ; -lin honor_N = mkN "honor" ; -lin honor_V2 = mkV2 (mkV "honor"); -- from DictEng -lin honorable_A = mkA "honorable" ; -lin honorableness_N = mkN "honorableness" ; -lin honorably_Adv = mkAdv "honorably" ; -lin honorarium_N = mkN "honorarium" "honorariums"; -- from DictEng -lin honorary_A = compoundA (mkA "honorary"); -- from DictEng -lin honoree_N = mkN "honoree" ; -lin honorific_A = compoundA (mkA "honorific"); -- from DictEng -lin honorific_N = mkN "honorific" "honorifics"; -- from DictEng -lin honoring_N = mkN "honoring" ; -lin honour_N = mkN "honour" "honours"; -- from DictEng -lin honour_V2 = mkV2 (mkV "honour" "honours" "honoured" "honoured" "honouring"); -- from DictEng -lin honourable_A = compoundA (mkA "honourable"); -- from DictEng -lin honours_N = mkN "honours" ; -lin hooch_N = mkN "hooch" ; -- from DictEng -lin hood_N = mkN "hood" "hoods"; -- from DictEng -lin hood_V2 = mkV2 (mkV "hood" "hoods" "hooded" "hooded" "hooding"); -- from DictEng -lin hoodlum_N = mkN "hoodlum" "hoodlums"; -- from DictEng -lin hoodoo_N = mkN "hoodoo" "hoodoos"; -- from DictEng -lin hoodoo_V2 = mkV2 (mkV "hoodoo" "hoodoos" "hoodooed" "hoodooed" "hoodooing"); -- from DictEng -lin hoodwink_V2 = mkV2 (mkV "hoodwink" "hoodwinks" "hoodwinked" "hoodwinked" "hoodwinking"); -- from DictEng -lin hooey_N = mkN "hooey" ; -- from DictEng -lin hoof_N = mkN "hoof" "hoofs"; -- from DictEng -lin hoofer_N = mkN "hoofer" ; -lin hooflike_A = mkA "hooflike" ; -lin hoofprint_N = mkN "hoofprint" ; -lin hook_N = mkN "hook" "hooks"; -- from DictEng -lin hook_V = mkV "hook" "hooks" "hooked" "hooked" "hooking"; -- from DictEng -lin hook_V2 = mkV2 (mkV "hook" "hooks" "hooked" "hooked" "hooking"); -- from DictEng -lin hook_nosed_A = compoundA (mkA "hook - nosed"); -- from DictEng -lin hook_shaped_A = compoundA (mkA "hook shaped") ; -lin hook_line_and_sinker_Adv = mkAdv "hook line and sinker" ; -lin hook_nosed_A = compoundA (mkA "hook - nosed"); -- from DictEng -lin hook_up_N = mkN "hook - up" "hook - ups"; -- from DictEng -lin hookah_N = mkN "hookah" "hookahs"; -- from DictEng -lin hooked_A = compoundA (mkA "hooked"); -- from DictEng -lin hooker_N = mkN "hooker" "hookers"; -- from DictEng -lin hooklike_A = mkA "hooklike" ; -lin hooks_N = mkN "hooks" ; -lin hookup_N = mkN "hookup" ; -lin hookworm_N = mkN "hookworm" "hookworms"; -- from DictEng -lin hooky_N = mkN "hooky" "IRREG"; -- from DictEng -lin hooligan_N = mkN "hooligan" "hooligans"; -- from DictEng -lin hooliganism_N = mkN "hooliganism" ; -- from DictEng -lin hoop_N = mkN "hoop" "hoops"; -- from DictEng -lin hoop_V2 = mkV2 (mkV "hoop" "hoops" "hooped" "hooped" "hooping"); -- from DictEng -lin hoop_la_N = mkN "hoop - la" ; -- from DictEng -lin hoopoe_N = mkN "hoopoe" ; -lin hoopskirt_N = mkN "hoopskirt" ; -lin hoosegow_N = mkN "hoosegow" ; -lin hoot_N = mkN "hoot" "hoots"; -- from DictEng -lin hoot_V = mkV "hoot" "hoots" "hooted" "hooted" "hooting"; -- from DictEng -lin hoot_V2 = mkV2 (mkV "hoot" "hoots" "hooted" "hooted" "hooting"); -- from DictEng -lin hooter_N = mkN "hooter" "hooters"; -- from DictEng -lin hoover_N = mkN "hoover" "hoovers"; -- from DictEng -lin hoover_V = mkV "hoover" ; -lin hoover_V2 = mkV2 (mkV "hoover" "hoovers" "hoovered" "hoovered" "hoovering"); -- from DictEng -lin hop_N = mkN "hop" "hops"; -- from DictEng -lin hop_V = mkV "hop" "hops" "hopped" "hopped" "hopping"; -- from DictEng -lin hop_V2 = mkV2 (mkV "hop" "hops" "hopped" "hopped" "hopping"); -- from DictEng -lin hop_picker_N = mkN "hop - picker" "hop - pickers"; -- from DictEng -lin hop_field_N = mkN "hop - field" "hop - fields"; -- from DictEng -lin hop_garden_N = mkN "hop - garden" "hop - gardens"; -- from DictEng -lin hop_picker_N = mkN "hop - picker" "hop - pickers"; -- from DictEng -lin hop_pole_N = mkN "hop - pole" "hop - poles"; -- from DictEng -lin hope_N = mkN "hope" "hopes"; -- from DictEng -lin hope_V = mkV "hope" "hopes" "hoped" "hoped" "hoping"; -- from DictEng -lin hope_V2 = mkV2 (mkV "hope") ; -lin hope_VS = mkVS (mkV "hope" "hopes" "hoped" "hoped" "hoping"); -- from DictEng -lin hope_VV = mkVV (mkV "hope" "hopes" "hoped" "hoped" "hoping"); -- from DictEng -lin hopeful_A = compoundA (mkA "hopeful"); -- from DictEng -lin hopefully_Adv = mkAdv "hopefully" ; -lin hopefulness_N = mkN "hopefulness" ; -- from DictEng -lin hopeless_A = compoundA (mkA "hopeless"); -- from DictEng -lin hopelessly_Adv = mkAdv "hopelessly" ; -lin hopelessness_N = mkN "hopelessness" ; -- from DictEng -lin hoper_N = mkN "hoper" ; -lin hopped_up_A = compoundA (mkA "hopped - up"); -- from DictEng -lin hopped_up_A = compoundA (mkA "hopped - up"); -- from DictEng -lin hopper_N = mkN "hopper" "hoppers"; -- from DictEng -lin hopsacking_N = mkN "hopsacking" ; -lin hopscotch_N = mkN "hopscotch" ; -- from DictEng -lin hopscotch_V = mkV "hopscotch"; -- from DictEng -lin horary_A = mkA "horary" ; -lin horde_N = mkN "horde" "hordes"; -- from DictEng -lin horehound_N = mkN "horehound" ; -lin horizon_N = mkN "horizon" "horizons"; -- from DictEng -lin horizontal_A = compoundA (mkA "horizontal"); -- from DictEng -lin horizontal_N = mkN "horizontal" ; -lin horizontality_N = mkN "horizontality" ; -lin horizontally_Adv = mkAdv "horizontally" ; -lin hormonal_A = mkA "hormonal" ; -lin hormone_N = mkN "hormone" "hormones"; -- from DictEng -lin horn_N = mkN "horn" "horns"; -- from DictEng -lin horn_V = mkV "horn" "horns" "horned" "horned" "horning"; -- from DictEng -lin horn_rimmed_A = compoundA (mkA "horn - rimmed"); -- from DictEng -lin horn_shaped_A = compoundA (mkA "horn shaped") ; -lin horn_rimmed_A = compoundA (mkA "horn - rimmed"); -- from DictEng -lin hornbeam_N = mkN "hornbeam" "hornbeams"; -- from DictEng -lin hornbill_N = mkN "hornbill" "hornbills"; -- from DictEng -lin hornblende_N = mkN "hornblende" ; -lin hornbook_N = mkN "hornbook" ; -lin horned_A = compoundA (mkA "horned"); -- from DictEng -lin hornet_N = mkN "hornet" "hornets"; -- from DictEng -lin hornfels_N = mkN "hornfels" ; -lin horniness_N = mkN "horniness" ; -lin hornist_N = mkN "hornist" ; -lin hornless_A = compoundA (mkA "hornless"); -- from DictEng -lin hornlike_A = compoundA (mkA "hornlike"); -- from DictEng -lin hornpipe_N = mkN "hornpipe" "hornpipes"; -- from DictEng -lin hornwort_N = mkN "hornwort" ; -lin horny_A = mkA "horny" "hornier"; -- from DictEng -lin horology_N = mkN "horology" ; -- from DictEng -lin horoscope_N = mkN "horoscope" "horoscopes"; -- from DictEng -lin horoscopy_N = mkN "horoscopy" ; -lin horrible_A = compoundA (mkA "horrible"); -- from DictEng -lin horrid_A = compoundA (mkA "horrid"); -- from DictEng -lin horridness_N = mkN "horridness" ; -- from DictEng -lin horrific_A = compoundA (mkA "horrific"); -- from DictEng -lin horrified_A = mkA "horrified" ; -lin horrify_V2 = mkV2 (mkV "horrify" "horrifies" "horrified" "horrified" "horrifying"); -- from DictEng -lin horrifyingly_Adv = mkAdv "horrifyingly"; -- from DictEng -lin horror_N = mkN "horror" "horrors"; -- from DictEng -lin horror_stricken_A = compoundA (mkA "horror - stricken"); -- from DictEng -lin horror_struck_A = compoundA (mkA "horror - struck"); -- from DictEng -lin hors_de_combat_A = compoundA (mkA "hors de combat"); -- from DictEng -lin horse_N = mkN "horse" "horses"; -- from DictEng -lin horse_and_buggy_A = compoundA (mkA "horse and buggy") ; -lin horse_drawn_A = compoundA (mkA "horse drawn") ; -lin horse_trail_N = mkN "horse trail" ; -lin horse_chestnut_N = mkN "horse - chestnut" "horse - chestnuts"; -- from DictEng -lin horse_laugh_N = mkN "horse - laugh" "horse - laughs"; -- from DictEng -lin horse_pond_N = mkN "horse - pond" "horse - ponds"; -- from DictEng -lin horse_sense_N = mkN "horse - sense" ; -- from DictEng -lin horseback_Adv = mkAdv "horseback" ; -lin horseback_N = mkN "horseback" ; -- from DictEng -lin horsebox_N = mkN "horsebox" "horseboxes"; -- from DictEng -lin horsecar_N = mkN "horsecar" ; -lin horsecloth_N = mkN "horsecloth" ; -lin horseflesh_N = mkN "horseflesh" ; -- from DictEng -lin horsefly_N = mkN "horsefly" "horseflies"; -- from DictEng -lin horsehair_N = mkN "horsehair" ; -- from DictEng -lin horsehide_N = mkN "horsehide" ; -lin horseleech_N = mkN "horseleech" ; -lin horseman_N = mkN "horseman" "horsemen" {- FIXME: guessed plural form -}; -- from DictEng -lin horsemanship_N = mkN "horsemanship" ; -- from DictEng -lin horsemeat_N = mkN "horsemeat" ; -- from DictEng -lin horsemint_N = mkN "horsemint" ; -lin horseplay_N = mkN "horseplay" ; -- from DictEng -lin horsepond_N = mkN "horsepond" ; -lin horsepower_N = mkN "horsepower" "horsepower"; -- from DictEng -lin horsepower_hour_N = mkN "horsepower hour" ; -lin horserace_N = mkN "horserace" "horseraces"; -- from DictEng -lin horseracing_N = mkN "horseracing" ; -- from DictEng -lin horseradish_N = mkN "horseradish" ; -- from DictEng -lin horseshoe_N = mkN "horseshoe" "horseshoes"; -- from DictEng -lin horseshow_N = mkN "horseshow" ; -lin horsetail_N = mkN "horsetail" ; -lin horseweed_N = mkN "horseweed" ; -lin horsewhip_N = mkN "horsewhip" "horsewhips"; -- from DictEng -lin horsewhip_V2 = mkV2 (mkV "horsewhip" "horsewhips" "horsewhipped" "horsewhipped" "horsewhipping"); -- from DictEng -lin horsewhipping_N = mkN "horsewhipping" ; -lin horsewoman_N = mkN "horsewoman" "horsewomen" {- FIXME: guessed plural form -}; -- from DictEng -lin horst_N = mkN "horst" ; -lin horsy_A = compoundA (mkA "horsy"); -- from DictEng -lin hortative_A = compoundA (mkA "hortative"); -- from DictEng -lin hortensia_N = mkN "hortensia" ; -lin horticultural_A = compoundA (mkA "horticultural"); -- from DictEng -lin horticulturally_Adv = mkAdv "horticulturally" ; -lin horticulture_N = mkN "horticulture" ; -- from DictEng -lin horticulturist_N = mkN "horticulturist" "horticulturists"; -- from DictEng -lin hosanna_N = mkN "hosanna" "hosannas"; -- from DictEng -lin hose_N = mkN "hose" "hoses"; -- from DictEng -lin hose_V2 = mkV2 (mkV "hose" "hoses" "hosed" "hosed" "hosing"); -- from DictEng -lin hosepipe_N = mkN "hosepipe" "hosepipes"; -- from DictEng -lin hosier_N = mkN "hosier" "hosiers"; -- from DictEng -lin hosiery_N = mkN "hosiery" ; -- from DictEng -lin hospice_N = mkN "hospice" "hospices"; -- from DictEng -lin hospitable_A = compoundA (mkA "hospitable"); -- from DictEng -lin hospitableness_N = mkN "hospitableness" ; -lin hospitably_Adv = mkAdv "hospitably" ; -lin hospital_N = mkN "hospital" "hospitals"; -- from DictEng -lin hospitality_N = mkN "hospitality" ; -- from DictEng -lin hospitalization_N = mkN "hospitalization" "hospitalizations"; -- from DictEng -lin hospitalize_V2 = mkV2 (mkV "hospitalize" "hospitalizes" "hospitalized" "hospitalized" "hospitalizing"); -- from DictEng -lin host_N = mkN "host" "IRREG"; -- from DictEng -lin host_V2 = mkV2 (mkV "host" "hosts" "hosted" "hosted" "hosting"); -- from DictEng -lin hostage_N = mkN "hostage" "hostages"; -- from DictEng -lin hostel_N = mkN "hostel" "hostels"; -- from DictEng -lin hosteller_N = mkN "hosteller" "hostellers"; -- from DictEng -lin hostelry_N = mkN "hostelry" "hostelries"; -- from DictEng -lin hostess_N = mkN "hostess" "hostesses"; -- from DictEng -lin hostile_A = compoundA (mkA "hostile"); -- from DictEng -lin hostile_N = mkN "hostile" ; -lin hostilities_N = mkN "hostilities" ; -lin hostility_N = mkN "hostility" "hostilities"; -- from DictEng -lin hot_A = mkA "hot" "hotter*"; -- from DictEng -lin hot_V = mkV "hot" "hots" "hotted" "hotted" "hotting"; -- from DictEng -lin hot_V2 = mkV2 (mkV "hot" "hots" "hotted" "hotted" "hotting"); -- from DictEng -lin hot_blooded_A = compoundA (mkA "hot - blooded"); -- from DictEng -lin hot_blooded_A = compoundA (mkA "hot - blooded"); -- from DictEng -lin hot_headed_A = compoundA (mkA "hot - headed"); -- from DictEng -lin hot_tempered_A = compoundA (mkA "hot - tempered"); -- from DictEng -lin hot_under_the_collar_A = compoundA (mkA "hot under the collar") ; -lin hot_water_bottle_N = mkN "hot - water - bottle" "hot - water - bottles"; -- from DictEng -lin hotbed_N = mkN "hotbed" "hotbeds"; -- from DictEng -lin hotbox_N = mkN "hotbox" ; -lin hotchpotch_N = mkN "hotchpotch" "hotchpotches"; -- from DictEng -lin hotdog_N = mkN "hotdog" ; -lin hotel_N = mkN "hotel" "hotels"; -- from DictEng -lin hotel_casino_N = mkN "hotel casino" ; -lin hotelier_N = mkN "hotelier" "hoteliers"; -- from DictEng -lin hotfoot_Adv = mkAdv "hotfoot"; -- from DictEng -lin hotfoot_N = mkN "hotfoot" ; -lin hotfoot_V = mkV "hotfoot" "hotfoots" "hotfooted" "hotfooted" "hotfooting"; -- from DictEng -lin hothead_N = mkN "hothead" "hotheads"; -- from DictEng -lin hotheaded_A = mkA "hotheaded" ; -lin hothouse_N = mkN "hothouse" "hothouses"; -- from DictEng -lin hotness_N = mkN "hotness" ; -lin hotplate_N = mkN "hotplate" "hotplates"; -- from DictEng -lin hotspur_N = mkN "hotspur" ; -lin hottish_A = mkA "hottish" ; -lin hound_N = mkN "hound" "hounds"; -- from DictEng -lin hound_V2 = mkV2 (mkV "hound" "hounds" "hounded" "hounded" "hounding"); -- from DictEng -lin hound's_tongue_N = mkN "hound's tongue" ; -lin hour_N = mkN "hour" "hours"; -- from DictEng -lin hourglass_N = mkN "hourglass" "hourglasses"; -- from DictEng -lin hourglass_shaped_A = compoundA (mkA "hourglass shaped") ; -lin houri_N = mkN "houri" "houris"; -- from DictEng -lin hourlong_A = mkA "hourlong" ; -lin hourly_A = compoundA (mkA "hourly"); -- from DictEng -lin hourly_Adv = mkAdv "hourly"; -- from DictEng -lin hours_N = mkN "hours" ; -lin house_N = mkN "house" "houses"; -- from DictEng -lin house_V2 = mkV2 (mkV "house" "houses" "housed" "housed" "housing"); -- from DictEng -lin house_proud_A = compoundA (mkA "house proud") ; -lin house_raising_N = mkN "house raising" ; -lin house_party_N = mkN "house - party" "house - parties"; -- from DictEng -lin house_warming_N = mkN "house - warming" "house - warmings"; -- from DictEng -lin houseboat_N = mkN "houseboat" "houseboats"; -- from DictEng -lin housebound_A = compoundA (mkA "housebound"); -- from DictEng -lin housebreaker_N = mkN "housebreaker" "housebreakers"; -- from DictEng -lin housebreaking_N = mkN "housebreaking" ; -lin housebroken_A = mkA "housebroken" ; -lin housecleaning_N = mkN "housecleaning" ; -lin housecoat_N = mkN "housecoat" "housecoats"; -- from DictEng -lin housecraft_N = mkN "housecraft" ; -- from DictEng -lin housedog_N = mkN "housedog" "housedogs"; -- from DictEng -lin housefather_N = mkN "housefather" "housefathers"; -- from DictEng -lin housefly_N = mkN "housefly" "houseflies"; -- from DictEng -lin houseful_N = mkN "houseful" "housefuls"; -- from DictEng -lin household_N = mkN "household" "households"; -- from DictEng -lin householder_N = mkN "householder" "householders"; -- from DictEng -lin housekeeper_N = mkN "housekeeper" "housekeepers"; -- from DictEng -lin houselights_N = mkN "houselights" ; -lin housemaid_N = mkN "housemaid" "housemaids"; -- from DictEng -lin houseman_N = mkN "houseman" "housemen" {- FIXME: guessed plural form -}; -- from DictEng -lin housemaster_N = mkN "housemaster" "housemasters"; -- from DictEng -lin housemate_N = mkN "housemate" ; -lin housemother_N = mkN "housemother" "housemothers"; -- from DictEng -lin houseplant_N = mkN "houseplant" ; -lin houseproud_A = compoundA (mkA "houseproud"); -- from DictEng -lin houseroom_N = mkN "houseroom" ; -- from DictEng -lin housetop_N = mkN "housetop" "housetops"; -- from DictEng -lin housetrained_A = compoundA (mkA "housetrained"); -- from DictEng -lin housewarming_N = mkN "housewarming" ; -lin housewife_N = mkN "housewife" "housewives" {- FIXME: guessed plural form -}; -- from DictEng -lin housewifely_A = compoundA (mkA "housewifely"); -- from DictEng -lin housewifery_N = mkN "housewifery" ; -- from DictEng -lin housework_N = mkN "housework" ; -- from DictEng -lin housewrecker_N = mkN "housewrecker" "housewreckers"; -- from DictEng -lin housing_N = mkN "housing" ; -- from DictEng -lin hovea_N = mkN "hovea" ; -lin hovel_N = mkN "hovel" "hovels"; -- from DictEng -lin hover_V = mkV "hover" "hovers" "hovered" "hovered" "hovering"; -- from DictEng -lin hovercraft_N = mkN "hovercraft" "hovercraft"; -- from DictEng -lin how_Adv = mkAdv "how"; -- from DictEng -lin how_do_you_do_N = mkN "how do you do" ; -lin how_d'ye_do_N = mkN "how - d'ye - do" "how - d'ye - dos"; -- from DictEng -lin howdah_N = mkN "howdah" "howdahs"; -- from DictEng -lin however_Adv = mkAdv "however"; -- from DictEng -lin howitzer_N = mkN "howitzer" "howitzers"; -- from DictEng -lin howl_N = mkN "howl" "howls"; -- from DictEng -lin howl_V = mkV "howl" "howls" "howled" "howled" "howling"; -- from DictEng -lin howl_V2 = mkV2 (mkV "howl" "howls" "howled" "howled" "howling"); -- from DictEng -lin howler_N = mkN "howler" "howlers"; -- from DictEng -lin howling_A = compoundA (mkA "howling"); -- from DictEng -lin hoya_N = mkN "hoya" ; -lin hoyden_N = mkN "hoyden" "hoydens"; -- from DictEng -lin hoydenish_A = compoundA (mkA "hoydenish"); -- from DictEng -lin hoydenism_N = mkN "hoydenism" ; -lin hp_N = mkN "hp" ; -- from DictEng -lin hryvnia_N = mkN "hryvnia" ; -lin huarache_N = mkN "huarache" ; -lin hub_N = mkN "hub" "hubs"; -- from DictEng -lin hub_and_spoke_N = mkN "hub and spoke" ; -lin hubble_bubble_N = mkN "hubble - bubble" "hubble - bubbles"; -- from DictEng -lin hubbub_N = mkN "hubbub" ; -- from DictEng -lin hubby_N = mkN "hubby" "hubbies"; -- from DictEng -lin hubcap_N = mkN "hubcap" ; -lin hubris_N = mkN "hubris" ; -- from DictEng -lin huck_N = mkN "huck" ; -lin huckaback_N = mkN "huckaback" ; -- from DictEng -lin huckleberry_N = mkN "huckleberry" "huckleberries"; -- from DictEng -lin huckster_N = mkN "huckster" "hucksters"; -- from DictEng -lin huddle_N = mkN "huddle" "huddles"; -- from DictEng -lin huddle_V = mkV "huddle" "huddles" "huddled" "huddled" "huddling"; -- from DictEng -lin huddle_V2 = mkV2 (mkV "huddle" "huddles" "huddled" "huddled" "huddling"); -- from DictEng -lin huddled_A = mkA "huddled" ; -lin huddler_N = mkN "huddler" ; -lin hudud_N = mkN "hudud" ; -lin hue_N = mkN "hue" "hues"; -- from DictEng -lin hued_A = compoundA (mkA "hued"); -- from DictEng -lin hueless_A = mkA "hueless" ; -lin huff_N = mkN "huff" "huffs"; -- from DictEng -lin huff_V = mkV "huff" "huffs" "huffed" "huffed" "huffing"; -- from DictEng -lin huffily_Adv = mkAdv "huffily"; -- from DictEng -lin huffiness_N = mkN "huffiness" ; -lin huffish_A = compoundA (mkA "huffish"); -- from DictEng -lin huffy_A = mkA "huffy" "huffier"; -- from DictEng -lin hug_N = mkN "hug" "hugs"; -- from DictEng -lin hug_V = mkV "hug" ; -lin hug_V2 = mkV2 (mkV "hug" "hugs" "hugged" "hugged" "hugging"); -- from DictEng -lin hug_me_tight_N = mkN "hug me tight" ; -lin huge_A = compoundA (mkA "huge"); -- from DictEng -lin hugger_N = mkN "hugger" ; -lin hugger_mugger_Adv = mkAdv "hugger - mugger"; -- from DictEng -lin hugger_mugger_N = mkN "hugger - mugger" "IRREG"; -- from DictEng -lin hugger_mugger_A = compoundA (mkA "hugger - mugger"); -- from DictEng -lin hugger_mugger_Adv = mkAdv "hugger - mugger"; -- from DictEng -lin hugger_mugger_N = mkN "hugger - mugger" "IRREG"; -- from DictEng -lin huguenot_N = mkN "huguenot" "huguenots"; -- from DictEng -lin huisache_N = mkN "huisache" ; -lin huitre_N = mkN "huitre" ; -lin hula_N = mkN "hula" "hulas"; -- from DictEng -lin hula_hoop_N = mkN "hula hoop" ; -lin hulk_N = mkN "hulk" "hulks"; -- from DictEng -lin hulking_A = compoundA (mkA "hulking"); -- from DictEng -lin hull_N = mkN "hull" "hulls"; -- from DictEng -lin hull_V2 = mkV2 (mkV "hull" "hulls" "hulled" "hulled" "hulling"); -- from DictEng -lin hullabaloo_N = mkN "hullabaloo" "hullabaloos"; -- from DictEng -lin hum_N = mkN "hum" "hums"; -- from DictEng -lin hum_V = mkV "hum" "hums" "hummed" "hummed" "humming"; -- from DictEng -lin hum_V2 = mkV2 (mkV "hum" "hums" "hummed" "hummed" "humming"); -- from DictEng -lin human_A = compoundA (mkA "human"); -- from DictEng -lin human_N = mkN "human" "humans"; -- from DictEng -lin human_centered_A = compoundA (mkA "human centered") ; -lin human_sized_A = compoundA (mkA "human sized") ; -lin human_t_cell_leukemia_virus_1_PN = mkPN "human T cell leukemia virus 1" ; -lin humane_A = compoundA (mkA "humane"); -- from DictEng -lin humanely_Adv = mkAdv "humanely" ; -lin humaneness_N = mkN "humaneness" ; -lin humanism_N = mkN "humanism" ; -- from DictEng -lin humanist_A = mkA "humanist" ; -lin humanist_N = mkN "humanist" "humanists"; -- from DictEng -lin humanistic_A = mkA "humanistic" ; -lin humanitarian_A = compoundA (mkA "humanitarian"); -- from DictEng -lin humanitarian_N = mkN "humanitarian" "humanitarians"; -- from DictEng -lin humanitarianism_N = mkN "humanitarianism" ; -- from DictEng -lin humanity_N = mkN "humanity" "humanities"; -- from DictEng -lin humanization_N = mkN "humanization" ; -lin humanize_V = mkV "humanize" "humanizes" "humanized" "humanized" "humanizing"; -- from DictEng -lin humanize_V2 = mkV2 (mkV "humanize" "humanizes" "humanized" "humanized" "humanizing"); -- from DictEng -lin humankind_N = mkN "humankind" ; -- from DictEng -lin humanly_Adv = mkAdv "humanly" ; -lin humanness_N = mkN "humanness" ; -lin humate_N = mkN "humate" ; -lin humble_A = mkA "humble" "humbler"; -- from DictEng -lin humble_V2 = mkV2 (mkV "humble" "humbles" "humbled" "humbled" "humbling"); -- from DictEng -lin humbleness_N = mkN "humbleness" ; -lin humbly_Adv = mkAdv "humbly"; -- from DictEng -lin humbug_N = mkN "humbug" "humbugs"; -- from DictEng -lin humbug_V2 = mkV2 (mkV "humbug" "humbugs" "humbugged" "humbugged" "humbugging"); -- from DictEng -lin humdinger_N = mkN "humdinger" "humdingers"; -- from DictEng -lin humdrum_A = compoundA (mkA "humdrum"); -- from DictEng -lin humectant_N = mkN "humectant" ; -lin humerus_N = mkN "humerus" "humeruses"; -- from DictEng -lin humic_A = mkA "humic" ; -lin humid_A = compoundA (mkA "humid"); -- from DictEng -lin humidify_V2 = mkV2 (mkV "humidify" "humidifies" "humidified" "humidified" "humidifying"); -- from DictEng -lin humidity_N = mkN "humidity" ; -- from DictEng -lin humification_N = mkN "humification" ; -lin humified_A = mkA "humified" ; -lin humiliate_V2 = mkV2 (mkV "humiliate" "humiliates" "humiliated" "humiliated" "humiliating"); -- from DictEng -lin humiliatingly_Adv = mkAdv "humiliatingly" ; -lin humiliation_N = mkN "humiliation" "humiliations"; -- from DictEng -lin humility_N = mkN "humility" ; -- from DictEng -lin humin_N = mkN "humin" ; -lin hummer_N = mkN "hummer" ; -lin humming_N = mkN "humming" ; -lin humming_top_N = mkN "humming - top" "humming - tops"; -- from DictEng -lin hummingbird_N = mkN "hummingbird" "hummingbirds"; -- from DictEng -lin hummock_N = mkN "hummock" "hummocks"; -- from DictEng -lin hummus_N = mkN "hummus" ; -lin humongous_A = mkA "humongous" ; -lin humor_N = mkN "humor" ; -lin humoral_A = mkA "humoral" ; -lin humorist_N = mkN "humorist" "humorists"; -- from DictEng -lin humorless_A = mkA "humorless" ; -lin humorlessly_Adv = mkAdv "humorlessly" ; -lin humorous_A = compoundA (mkA "humorous"); -- from DictEng -lin humorously_Adv = mkAdv "humorously" ; -lin humour_N = mkN "humour" "humours"; -- from DictEng -lin humour_V2 = mkV2 (mkV "humour" "humours" "humoured" "humoured" "humouring"); -- from DictEng -lin humourist_N = mkN "humourist" "humourists"; -- from DictEng -lin humourless_A = compoundA (mkA "humourless"); -- from DictEng -lin hump_N = mkN "hump" "humps"; -- from DictEng -lin hump_V2 = mkV2 (mkV "hump" "humps" "humped" "humped" "humping"); -- from DictEng -lin humpback_N = mkN "humpback" "humpbacks"; -- from DictEng -lin humpbacked_A = compoundA (mkA "humpbacked"); -- from DictEng -lin humus_N = mkN "humus" ; -- from DictEng -lin hun_N = mkN "hun" "huns"; -- from DictEng -lin hunch_N = mkN "hunch" "hunches"; -- from DictEng -lin hunch_V = mkV "hunch" ; -lin hunch_V2 = mkV2 (mkV "hunch" "hunches" "hunched" "hunched" "hunching"); -- from DictEng -lin hunch_up_V = mkV "hunch up" ; -lin hunchback_A = compoundA (mkA "hunchback"); -- from DictEng -lin hunchback_N = mkN "hunchback" "hunchbacks"; -- from DictEng -lin hunchbacked_A = compoundA (mkA "hunchbacked"); -- from DictEng -lin hunched_A = mkA "hunched" ; -lin hundred_A = mkA "hundred" ; -lin hundred_N = mkN "hundred" ; -lin hundred_and_eightieth_A = compoundA (mkA "hundred and eightieth") ; -lin hundred_and_fifteenth_A = compoundA (mkA "hundred and fifteenth") ; -lin hundred_and_fifth_A = compoundA (mkA "hundred and fifth") ; -lin hundred_and_fiftieth_A = compoundA (mkA "hundred and fiftieth") ; -lin hundred_and_fifty_fifth_A = compoundA (mkA "hundred and fifty fifth") ; -lin hundred_and_first_A = compoundA (mkA "hundred and first") ; -lin hundred_and_fortieth_A = compoundA (mkA "hundred and fortieth") ; -lin hundred_and_forty_fifth_A = compoundA (mkA "hundred and forty fifth") ; -lin hundred_and_ninetieth_A = compoundA (mkA "hundred and ninetieth") ; -lin hundred_and_seventieth_A = compoundA (mkA "hundred and seventieth") ; -lin hundred_and_seventy_fifth_A = compoundA (mkA "hundred and seventy fifth") ; -lin hundred_and_sixtieth_A = compoundA (mkA "hundred and sixtieth") ; -lin hundred_and_sixty_fifth_A = compoundA (mkA "hundred and sixty fifth") ; -lin hundred_and_tenth_A = compoundA (mkA "hundred and tenth") ; -lin hundred_and_thirtieth_A = compoundA (mkA "hundred and thirtieth") ; -lin hundred_and_thirty_fifth_A = compoundA (mkA "hundred and thirty fifth") ; -lin hundred_and_twentieth_A = compoundA (mkA "hundred and twentieth") ; -lin hundred_and_twenty_fifth_A = compoundA (mkA "hundred and twenty fifth") ; -lin hundred_and_one_A = compoundA (mkA "hundred and one") ; -lin hundred_thousand_A = compoundA (mkA "hundred thousand") ; -lin hundredfold_Adv = mkAdv "hundredfold"; -- from DictEng -lin hundredth_A = mkA "hundredth" ; -lin hundredth_N = mkN "hundredth" ; -lin hundredweight_N = mkN "hundredweight" "hundredweights"; -- from DictEng -lin hungarian_A = compoundA (mkA "Hungarian"); -- from DictEng -lin hungarian_N = mkN "Hungarian" "Hungarians"; -- from DictEng -lin hunger_N = mkN "hunger" ; -- from DictEng -lin hunger_V = mkV "hunger" "hungers" "hungered" "hungered" "hungering"; -- from DictEng -lin hunger_march_N = mkN "hunger - march" "hunger - marches"; -- from DictEng -lin hunger_marcher_N = mkN "hunger - marcher" "hunger - marchers"; -- from DictEng -lin hungrily_Adv = mkAdv "hungrily"; -- from DictEng -lin hungry_A = mkA "hungry" "hungrier"; -- from DictEng -lin hunk_N = mkN "hunk" "hunks"; -- from DictEng -lin hunt_N = mkN "hunt" "hunts"; -- from DictEng -lin hunt_V = mkV "hunt" "hunts" "hunted" "hunted" "hunting"; -- from DictEng -lin hunt_V2 = mkV2 (mkV "hunt" "hunts" "hunted" "hunted" "hunting"); -- from DictEng -lin hunted_A = mkA "hunted" ; -lin hunter_N = mkN "hunter" "hunters"; -- from DictEng -lin hunter_gatherer_N = mkN "hunter gatherer" ; -lin hunting_N = mkN "hunting" ; -- from DictEng -lin hunting_crop_N = mkN "hunting - crop" "hunting - crops"; -- from DictEng -lin huntress_N = mkN "huntress" "huntresses"; -- from DictEng -lin huntsman_N = mkN "huntsman" "huntsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin hurdle_N = mkN "hurdle" "hurdles"; -- from DictEng -lin hurdle_V = mkV "hurdle" "hurdles" "hurdled" "hurdled" "hurdling"; -- from DictEng -lin hurdle_V2 = mkV2 (mkV "hurdle" "hurdles" "hurdled" "hurdled" "hurdling"); -- from DictEng -lin hurdler_N = mkN "hurdler" "hurdlers"; -- from DictEng -lin hurdles_N = mkN "hurdles" ; -lin hurdy_gurdy_N = mkN "hurdy - gurdy" "hurdy - gurdies"; -- from DictEng -lin hurl_N = mkN "hurl" "hurls"; -- from DictEng -lin hurl_V2 = mkV2 (mkV "hurl" "hurls" "hurled" "hurled" "hurling"); -- from DictEng -lin hurling_N = mkN "hurling" ; -- from DictEng -lin hurly_burly_N = mkN "hurly - burly" ; -- from DictEng -lin hurrah_N = mkN "hurrah" ; -lin hurrah_V = mkV "hurrah" "hurrahs" "hurrahed" "hurrahed" "hurrahing"; -- from DictEng -lin hurricane_N = mkN "hurricane" "hurricanes"; -- from DictEng -lin hurried_A = compoundA (mkA "hurried"); -- from DictEng -lin hurriedly_Adv = mkAdv "hurriedly" ; -lin hurry_N = mkN "hurry" "hurries"; -- from DictEng -lin hurry_V = mkV "hurry" "hurries" "hurried" "hurried" "hurrying"; -- from DictEng -lin hurry_V2 = mkV2 (mkV "hurry" "hurries" "hurried" "hurried" "hurrying"); -- from DictEng -lin hurry_V2V = mkV2V (mkV "hurry" "hurries" "hurried" "hurried" "hurrying") noPrep to_Prep ; -- from DictEng -lin hurrying_A = mkA "hurrying" ; -lin hurt_A = mkA "hurt" ; -lin hurt_N = mkN "hurt" ; -- from DictEng -lin hurt_V = IrregEng.hurt_V; -- from DictEng -lin hurt_V2 = mkV2 (IrregEng.hurt_V); -- from DictEng -lin hurt_VS = mkVS (IrregEng.hurt_V); -- from DictEng -lin hurtful_A = compoundA (mkA "hurtful"); -- from DictEng -lin hurtle_V = mkV "hurtle" "hurtles" "hurtled" "hurtled" "hurtling"; -- from DictEng -lin hurtle_V2 = mkV2 (mkV "hurtle") ; -lin husband_N = mkN "husband" "husbands"; -- from DictEng -lin husband_V2 = mkV2 (mkV "husband" "husbands" "husbanded" "husbanded" "husbanding"); -- from DictEng -lin husbandly_A = mkA "husbandly" ; -lin husbandman_N = mkN "husbandman" "husbandmen" {- FIXME: guessed plural form -}; -- from DictEng -lin husbandry_N = mkN "husbandry" ; -- from DictEng -lin hush_N = mkN "hush" "hushes"; -- from DictEng -lin hush_V = mkV "hush" "hushes" "hushed" "hushed" "hushing"; -- from DictEng -lin hush_V2 = mkV2 (mkV "hush" "hushes" "hushed" "hushed" "hushing"); -- from DictEng -lin hush_hush_A = compoundA (mkA "hush - hush"); -- from DictEng -lin hush_money_N = mkN "hush - money" ; -- from DictEng -lin hush_up_V2 = mkV2 (mkV "hush up") ; -lin hushed_A = mkA "hushed" ; -lin hushed_up_A = compoundA (mkA "hushed up") ; -lin husk_N = mkN "husk" "husks"; -- from DictEng -lin husk_V2 = mkV2 (mkV "husk" "husks" "husked" "husked" "husking"); -- from DictEng -lin huskily_Adv = mkAdv "huskily"; -- from DictEng -lin huskiness_N = mkN "huskiness" ; -- from DictEng -lin husky_A = mkA "husky" "huskier"; -- from DictEng -lin husky_N = mkN "husky" "huskies"; -- from DictEng -lin hussar_N = mkN "hussar" "hussars"; -- from DictEng -lin hussy_N = mkN "hussy" "hussies"; -- from DictEng -lin hustings_N = mkN "hustings" ; -lin hustle_N = mkN "hustle" "IRREG"; -- from DictEng -lin hustle_V = mkV "hustle" "hustles" "hustled" "hustled" "hustling"; -- from DictEng -lin hustle_V2 = mkV2 (mkV "hustle" "hustles" "hustled" "hustled" "hustling"); -- from DictEng -lin hustler_N = mkN "hustler" "hustlers"; -- from DictEng -lin hut_N = mkN "hut" "huts"; -- from DictEng -lin hutch_N = mkN "hutch" "hutches"; -- from DictEng -lin hutment_N = mkN "hutment" "hutments"; -- from DictEng -lin hutted_A = compoundA (mkA "hutted"); -- from DictEng -lin hyacinth_N = mkN "hyacinth" "hyacinths"; -- from DictEng -lin hyaena_N = mkN "hyaena" "hyaenas"; -- from DictEng -lin hyaline_A = mkA "hyaline" ; -lin hyaline_N = mkN "hyaline" ; -lin hyalinization_N = mkN "hyalinization" ; -lin hyaloplasm_N = mkN "hyaloplasm" ; -lin hyaloplasmic_A = mkA "hyaloplasmic" ; -lin hyaluronidase_N = mkN "hyaluronidase" ; -lin hybrid_A = compoundA (mkA "hybrid"); -- from DictEng -lin hybrid_N = mkN "hybrid" "hybrids"; -- from DictEng -lin hybridization_N = mkN "hybridization" ; -lin hybridize_V = mkV "hybridize" "hybridizes" "hybridized" "hybridized" "hybridizing"; -- from DictEng -lin hybridize_V2 = mkV2 (mkV "hybridize" "hybridizes" "hybridized" "hybridized" "hybridizing"); -- from DictEng -lin hybridoma_N = mkN "hybridoma" ; -lin hydantoin_N = mkN "hydantoin" ; -lin hydathode_N = mkN "hydathode" ; -lin hydatid_N = mkN "hydatid" ; -lin hydra_N = mkN "hydra" "hydras"; -- from DictEng -lin hydralazine_N = mkN "hydralazine" ; -lin hydramnios_N = mkN "hydramnios" ; -lin hydrangea_N = mkN "hydrangea" "hydrangeas"; -- from DictEng -lin hydrant_N = mkN "hydrant" "hydrants"; -- from DictEng -lin hydrarthrosis_N = mkN "hydrarthrosis" ; -lin hydrate_N = mkN "hydrate" "hydrates"; -- from DictEng -lin hydrate_V = mkV "hydrate" "hydrates" "hydrated" "hydrated" "hydrating"; -- from DictEng -lin hydrate_V2 = mkV2 (mkV "hydrate" "hydrates" "hydrated" "hydrated" "hydrating"); -- from DictEng -lin hydration_N = mkN "hydration" ; -lin hydraulic_A = compoundA (mkA "hydraulic"); -- from DictEng -lin hydraulically_Adv = mkAdv "hydraulically" ; -lin hydraulics_N = mkN "hydraulics" "hydraulics"; -- from DictEng -lin hydrazine_N = mkN "hydrazine" ; -lin hydrazoite_N = mkN "hydrazoite" ; -lin hydremia_N = mkN "hydremia" ; -lin hydric_A = mkA "hydric" ; -lin hydride_N = mkN "hydride" ; -lin hydrilla_N = mkN "hydrilla" ; -lin hydrocarbon_N = mkN "hydrocarbon" "hydrocarbons"; -- from DictEng -lin hydrocele_N = mkN "hydrocele" ; -lin hydrocephalic_A = mkA "hydrocephalic" ; -lin hydrocephalus_N = mkN "hydrocephalus" ; -lin hydrochloric_A = compoundA (mkA "hydrochloric"); -- from DictEng -lin hydrochloride_N = mkN "hydrochloride" ; -lin hydrochlorofluorocarbon_N = mkN "hydrochlorofluorocarbon" ; -lin hydrochlorothiazide_N = mkN "hydrochlorothiazide" ; -lin hydrocolloid_N = mkN "hydrocolloid" ; -lin hydrocortisone_N = mkN "hydrocortisone" ; -lin hydrocracking_N = mkN "hydrocracking" ; -lin hydrodynamic_A = mkA "hydrodynamic" ; -lin hydrodynamics_N = mkN "hydrodynamics" ; -lin hydroelectric_A = compoundA (mkA "hydroelectric"); -- from DictEng -lin hydroelectricity_N = mkN "hydroelectricity" ; -lin hydroflumethiazide_N = mkN "hydroflumethiazide" ; -lin hydrofluorocarbon_N = mkN "hydrofluorocarbon" ; -lin hydrofoil_N = mkN "hydrofoil" "hydrofoils"; -- from DictEng -lin hydrogel_N = mkN "hydrogel" ; -lin hydrogen_N = mkN "hydrogen" ; -- from DictEng -lin hydrogenation_N = mkN "hydrogenation" ; -lin hydrographic_A = mkA "hydrographic" ; -lin hydrography_N = mkN "hydrography" ; -lin hydrokinetic_A = mkA "hydrokinetic" ; -lin hydrologist_N = mkN "hydrologist" ; -lin hydrology_N = mkN "hydrology" ; -lin hydrolysate_N = mkN "hydrolysate" ; -lin hydrolysis_N = mkN "hydrolysis" ; -lin hydrolyzable_A = mkA "hydrolyzable" ; -lin hydromancer_N = mkN "hydromancer" ; -lin hydromancy_N = mkN "hydromancy" ; -lin hydromel_N = mkN "hydromel" ; -lin hydrometer_N = mkN "hydrometer" ; -lin hydrometric_A = mkA "hydrometric" ; -lin hydrometry_N = mkN "hydrometry" ; -lin hydronephrosis_N = mkN "hydronephrosis" ; -lin hydropathic_A = compoundA (mkA "hydropathic"); -- from DictEng -lin hydropathy_N = mkN "hydropathy" ; -- from DictEng -lin hydrophilic_A = mkA "hydrophilic" ; -lin hydrophobia_N = mkN "hydrophobia" ; -- from DictEng -lin hydrophobic_A = mkA "hydrophobic" ; -lin hydrophobicity_N = mkN "hydrophobicity" ; -lin hydrophytic_A = mkA "hydrophytic" ; -lin hydroplane_N = mkN "hydroplane" "hydroplanes"; -- from DictEng -lin hydroponics_N = mkN "hydroponics" "hydroponics"; -- from DictEng -lin hydrosphere_N = mkN "hydrosphere" ; -lin hydrostatic_A = mkA "hydrostatic" ; -lin hydrostatics_N = mkN "hydrostatics" ; -lin hydrothorax_N = mkN "hydrothorax" ; -lin hydrous_A = mkA "hydrous" ; -lin hydroxide_N = mkN "hydroxide" ; -lin hydroxy_A = mkA "hydroxy" ; -lin hydroxychloroquine_N = mkN "hydroxychloroquine" ; -lin hydroxyl_N = mkN "hydroxyl" ; -lin hydroxymethyl_N = mkN "hydroxymethyl" ; -lin hydroxyproline_N = mkN "hydroxyproline" ; -lin hydrozoan_N = mkN "hydrozoan" ; -lin hyena_N = mkN "hyena" "hyenas"; -- from DictEng -lin hygiene_N = mkN "hygiene" ; -- from DictEng -lin hygienic_A = compoundA (mkA "hygienic"); -- from DictEng -lin hygienically_Adv = mkAdv "hygienically"; -- from DictEng -lin hygienist_N = mkN "hygienist" ; -lin hygrodeik_N = mkN "hygrodeik" ; -lin hygrometer_N = mkN "hygrometer" ; -lin hygrophyte_N = mkN "hygrophyte" ; -lin hygrophytic_A = mkA "hygrophytic" ; -lin hygroscope_N = mkN "hygroscope" ; -lin hygroscopic_A = mkA "hygroscopic" ; -lin hymen_N = mkN "hymen" "hymens"; -- from DictEng -lin hymenal_A = mkA "hymenal" ; -lin hymeneal_A = mkA "hymeneal" ; -lin hymeneal_N = mkN "hymeneal" ; -lin hymenium_N = mkN "hymenium" ; -lin hymenopterous_A = mkA "hymenopterous" ; -lin hymn_N = mkN "hymn" "hymns"; -- from DictEng -lin hymn_V2 = mkV2 (mkV "hymn" "hymns" "hymned" "hymned" "hymning"); -- from DictEng -lin hymnal_N = mkN "hymnal" "hymnals"; -- from DictEng -lin hyoid_A = mkA "hyoid" ; -lin hyoid_N = mkN "hyoid" ; -lin hyoscyamine_N = mkN "hyoscyamine" ; -lin hypaethral_A = mkA "hypaethral" ; -lin hypallage_N = mkN "hypallage" ; -lin hypanthium_N = mkN "hypanthium" ; -lin hype_V2 = mkV2 (mkV "hype"); -- from DictEng -lin hyperacidity_N = mkN "hyperacidity" ; -lin hyperactive_A = mkA "hyperactive" ; -lin hyperactivity_N = mkN "hyperactivity" ; -lin hyperacusis_N = mkN "hyperacusis" ; -lin hyperbaton_N = mkN "hyperbaton" ; -lin hyperbetalipoproteinemia_N = mkN "hyperbetalipoproteinemia" ; -lin hyperbilirubinemia_N = mkN "hyperbilirubinemia" ; -lin hyperbola_N = mkN "hyperbola" "hyperbolas"; -- from DictEng -lin hyperbole_N = mkN "hyperbole" "hyperboles"; -- from DictEng -lin hyperbolic_A = compoundA (mkA "hyperbolic"); -- from DictEng -lin hyperbolically_Adv = mkAdv "hyperbolically" ; -lin hyperbolize_V2 = mkV2 (mkV "hyperbolize") ; -lin hyperboloid_N = mkN "hyperboloid" ; -lin hyperboloidal_A = mkA "hyperboloidal" ; -lin hypercalcemia_N = mkN "hypercalcemia" ; -lin hypercalciuria_N = mkN "hypercalciuria" ; -lin hypercapnia_N = mkN "hypercapnia" ; -lin hypercatalectic_A = mkA "hypercatalectic" ; -lin hypercatalectic_N = mkN "hypercatalectic" ; -lin hypercellularity_N = mkN "hypercellularity" ; -lin hypercholesterolemia_N = mkN "hypercholesterolemia" ; -lin hypercoaster_N = mkN "hypercoaster" ; -lin hypercritical_A = compoundA (mkA "hypercritical"); -- from DictEng -lin hyperemesis_N = mkN "hyperemesis" ; -lin hyperemia_N = mkN "hyperemia" ; -lin hyperemic_A = mkA "hyperemic" ; -lin hyperextension_N = mkN "hyperextension" ; -lin hyperfine_A = mkA "hyperfine" ; -lin hyperglycemia_N = mkN "hyperglycemia" ; -lin hyperhidrosis_N = mkN "hyperhidrosis" ; -lin hypericism_N = mkN "hypericism" ; -lin hyperkalemia_N = mkN "hyperkalemia" ; -lin hyperlink_N = mkN "hyperlink" ; -lin hyperlipoproteinemia_N = mkN "hyperlipoproteinemia" ; -lin hypermarket_N = mkN "hypermarket" "hypermarkets"; -- from DictEng -lin hypermastigote_N = mkN "hypermastigote" ; -lin hypermedia_N = mkN "hypermedia" ; -lin hypermotility_N = mkN "hypermotility" ; -lin hypernatremia_N = mkN "hypernatremia" ; -lin hypernym_N = mkN "hypernym" ; -lin hypernymy_N = mkN "hypernymy" ; -lin hyperon_N = mkN "hyperon" ; -lin hyperope_N = mkN "hyperope" ; -lin hyperopia_N = mkN "hyperopia" ; -lin hyperopic_A = mkA "hyperopic" ; -lin hyperparathyroidism_N = mkN "hyperparathyroidism" ; -lin hyperpigmentation_N = mkN "hyperpigmentation" ; -lin hyperpituitarism_N = mkN "hyperpituitarism" ; -lin hyperplasia_N = mkN "hyperplasia" ; -lin hyperpnea_N = mkN "hyperpnea" ; -lin hyperpyrexia_N = mkN "hyperpyrexia" ; -lin hypersecretion_N = mkN "hypersecretion" ; -lin hypersensitive_A = compoundA (mkA "hypersensitive"); -- from DictEng -lin hypersensitivity_N = mkN "hypersensitivity" ; -lin hypersomnia_N = mkN "hypersomnia" ; -lin hypersplenism_N = mkN "hypersplenism" ; -lin hypertensive_A = mkA "hypertensive" ; -lin hypertensive_N = mkN "hypertensive" ; -lin hypertext_N = mkN "hypertext" ; -lin hyperthermal_A = mkA "hyperthermal" ; -lin hyperthermia_N = mkN "hyperthermia" ; -lin hyperthyroidism_N = mkN "hyperthyroidism" ; -lin hypertonia_N = mkN "hypertonia" ; -lin hypertonic_A = mkA "hypertonic" ; -lin hypertonicity_N = mkN "hypertonicity" ; -lin hypertrophied_A = mkA "hypertrophied" ; -lin hypertrophy_N = mkN "hypertrophy" ; -lin hypervelocity_N = mkN "hypervelocity" ; -lin hyperventilation_N = mkN "hyperventilation" ; -lin hypervitaminosis_N = mkN "hypervitaminosis" ; -lin hypervolemia_N = mkN "hypervolemia" ; -lin hypha_N = mkN "hypha" ; -lin hyphema_N = mkN "hyphema" ; -lin hyphen_N = mkN "hyphen" "hyphens"; -- from DictEng -lin hyphen_V2 = mkV2 (mkV "hyphen" "hyphens" "hyphened" "hyphened" "hyphening"); -- from DictEng -lin hyphenate_V2 = mkV2 (mkV "hyphenate" "hyphenates" "hyphenated" "hyphenated" "hyphenating"); -- from DictEng -lin hyphenation_N = mkN "hyphenation" ; -lin hypnagogue_N = mkN "hypnagogue" ; -lin hypnoanalysis_N = mkN "hypnoanalysis" ; -lin hypnogenesis_N = mkN "hypnogenesis" ; -lin hypnoid_A = mkA "hypnoid" ; -lin hypnophobia_N = mkN "hypnophobia" ; -lin hypnosis_N = mkN "hypnosis" "hypnoses" {- FIXME: guessed plural form -}; -- from DictEng -lin hypnotherapy_N = mkN "hypnotherapy" ; -lin hypnotic_A = compoundA (mkA "hypnotic"); -- from DictEng -lin hypnotically_Adv = mkAdv "hypnotically" ; -lin hypnotism_N = mkN "hypnotism" ; -- from DictEng -lin hypnotist_N = mkN "hypnotist" "hypnotists"; -- from DictEng -lin hypnotize_V2 = mkV2 (mkV "hypnotize" "hypnotizes" "hypnotized" "hypnotized" "hypnotizing"); -- from DictEng -lin hypo_N = mkN "hypo" ; -- from DictEng -lin hypoactive_A = mkA "hypoactive" ; -lin hypobasidium_N = mkN "hypobasidium" ; -lin hypobetalipoproteinemia_N = mkN "hypobetalipoproteinemia" ; -lin hypocalcemia_N = mkN "hypocalcemia" ; -lin hypocapnia_N = mkN "hypocapnia" ; -lin hypocellularity_N = mkN "hypocellularity" ; -lin hypochlorite_N = mkN "hypochlorite" ; -lin hypochondria_N = mkN "hypochondria" "hypochondrias"; -- from DictEng -lin hypochondriac_A = compoundA (mkA "hypochondriac"); -- from DictEng -lin hypochondriac_N = mkN "hypochondriac" "hypochondriacs"; -- from DictEng -lin hypochondriacal_A = compoundA (mkA "hypochondriacal"); -- from DictEng -lin hypochondrium_N = mkN "hypochondrium" ; -lin hypocrisy_N = mkN "hypocrisy" "hypocrisies"; -- from DictEng -lin hypocrite_N = mkN "hypocrite" "hypocrites"; -- from DictEng -lin hypocritical_A = compoundA (mkA "hypocritical"); -- from DictEng -lin hypocritically_Adv = mkAdv "hypocritically" ; -lin hypocycloid_N = mkN "hypocycloid" ; -lin hypodermal_A = mkA "hypodermal" ; -lin hypodermic_A = compoundA (mkA "hypodermic"); -- from DictEng -lin hypodermic_N = mkN "hypodermic" "hypodermics"; -- from DictEng -lin hypodermis_N = mkN "hypodermis" ; -lin hypoesthesia_N = mkN "hypoesthesia" ; -lin hypogammaglobulinemia_N = mkN "hypogammaglobulinemia" ; -lin hypoglossal_N = mkN "hypoglossal" ; -lin hypoglycemia_N = mkN "hypoglycemia" ; -lin hypoglycemic_A = mkA "hypoglycemic" ; -lin hypogonadism_N = mkN "hypogonadism" ; -lin hypokalemia_N = mkN "hypokalemia" ; -lin hypolipoproteinemia_N = mkN "hypolipoproteinemia" ; -lin hyponatremia_N = mkN "hyponatremia" ; -lin hyponym_N = mkN "hyponym" ; -lin hyponymy_N = mkN "hyponymy" ; -lin hypoparathyroidism_N = mkN "hypoparathyroidism" ; -lin hypophyseal_A = mkA "hypophyseal" ; -lin hypophysectomized_A = mkA "hypophysectomized" ; -lin hypophysectomy_N = mkN "hypophysectomy" ; -lin hypopigmentation_N = mkN "hypopigmentation" ; -lin hypoplasia_N = mkN "hypoplasia" ; -lin hypopnea_N = mkN "hypopnea" ; -lin hypoproteinemia_N = mkN "hypoproteinemia" ; -lin hyposmia_N = mkN "hyposmia" ; -lin hypospadias_N = mkN "hypospadias" ; -lin hypostasis_N = mkN "hypostasis" ; -lin hypostatization_N = mkN "hypostatization" ; -lin hypotension_N = mkN "hypotension" ; -lin hypotensive_A = mkA "hypotensive" ; -lin hypotensive_N = mkN "hypotensive" ; -lin hypotenuse_N = mkN "hypotenuse" "hypotenuses"; -- from DictEng -lin hypothalamic_A = mkA "hypothalamic" ; -lin hypothalamically_Adv = mkAdv "hypothalamically" ; -lin hypothalamus_N = mkN "hypothalamus" ; -lin hypothecate_V2 = mkV2 (mkV "hypothecate" "hypothecates" "hypothecated" "hypothecated" "hypothecating"); -- from DictEng -lin hypothermia_N = mkN "hypothermia" ; -lin hypothermic_A = mkA "hypothermic" ; -lin hypothesis_N = mkN "hypothesis" "hypotheses" {- FIXME: guessed plural form -}; -- from DictEng -lin hypothesize_V2 = mkV2 (mkV "hypothesize"); -- from DictEng -lin hypothetical_A = compoundA (mkA "hypothetical"); -- from DictEng -lin hypothetical_N = mkN "hypothetical" ; -lin hypothetically_Adv = mkAdv "hypothetically" ; -lin hypothrombinemia_N = mkN "hypothrombinemia" ; -lin hypothyroidism_N = mkN "hypothyroidism" ; -lin hypotonia_N = mkN "hypotonia" ; -lin hypotonic_A = mkA "hypotonic" ; -lin hypotonicity_N = mkN "hypotonicity" ; -lin hypovolemia_N = mkN "hypovolemia" ; -lin hypovolemic_A = mkA "hypovolemic" ; -lin hypoxia_N = mkN "hypoxia" ; -lin hypozeugma_N = mkN "hypozeugma" ; -lin hypozeuxis_N = mkN "hypozeuxis" ; -lin hypsography_N = mkN "hypsography" ; -lin hypsometer_N = mkN "hypsometer" ; -lin hypsometry_N = mkN "hypsometry" ; -lin hyrax_N = mkN "hyrax" ; -lin hyson_N = mkN "hyson" ; -lin hyssop_N = mkN "hyssop" ; -- from DictEng -lin hysterectomy_N = mkN "hysterectomy" ; -lin hysteresis_N = mkN "hysteresis" ; -lin hysteria_N = mkN "hysteria" ; -- from DictEng -lin hysteric_A = mkA "hysteric" ; -lin hysteric_N = mkN "hysteric" ; -lin hysterical_A = compoundA (mkA "hysterical"); -- from DictEng -lin hysterically_Adv = mkAdv "hysterically" ; -lin hysterics_N = mkN "hysterics" "hysterics"; -- from DictEng -lin hysterocatalepsy_N = mkN "hysterocatalepsy" ; -lin hysterosalpingogram_N = mkN "hysterosalpingogram" ; -lin hysteroscopy_N = mkN "hysteroscopy" ; -lin hysterotomy_N = mkN "hysterotomy" ; -lin i_Pron = mkPron "I" "me" "my" "mine" singular P1 human; -- from DictEng -lin i_e__Adv = mkAdv "i e " ; -lin ipod_N = mkN "iPod" ; -lin iamb_N = mkN "iamb" "iambs"; -- from DictEng -lin iambic_A = compoundA (mkA "iambic"); -- from DictEng -lin iambic_N = mkN "iambic" ; -lin iambics_N = mkN "iambics" "iambics"; -- from DictEng -lin iambus_N = mkN "iambus" "iambuses"; -- from DictEng -lin iatrogenic_A = mkA "iatrogenic" ; -lin iba_N = mkN "iba" ; -- from DictEng -lin ibex_N = mkN "ibex" "ibexes"; -- from DictEng -lin ibid__Adv = mkAdv "ibid " ; -lin ibidem_Adv = mkAdv "ibidem"; -- from DictEng -lin ibis_N = mkN "ibis" "ibises"; -- from DictEng -lin ibuprofen_N = mkN "ibuprofen" ; -lin icbm_N = mkN "icbm" ; -- from DictEng -lin ice_N = mkN "ice" "ices"; -- from DictEng -lin ice_V = mkV "ice" "ices" "iced" "iced" "icing"; -- from DictEng -lin ice_V2 = mkV2 (mkV "ice" "ices" "iced" "iced" "icing"); -- from DictEng -lin ice_clogged_A = compoundA (mkA "ice clogged") ; -lin ice_cold_A = compoundA (mkA "ice cold") ; -lin ice_free_A = compoundA (mkA "ice free") ; -lin ice_skater_N = mkN "ice skater" ; -lin ice_axe_N = mkN "ice - axe" "ice - axes"; -- from DictEng -lin ice_cream_N = mkN "ice - cream" "ice - creams"; -- from DictEng -lin ice_lolly_N = mkN "ice - lolly" "ice - lollies"; -- from DictEng -lin ice_show_N = mkN "ice - show" "ice - shows"; -- from DictEng -lin ice_skate_N = mkN "ice - skate" "ice - skates"; -- from DictEng -lin ice_skate_V = mkV "ice - skate" "ice - skates" "ice - skated" "ice - skated" "ice - skating"; -- from DictEng -lin ice_skating_N = mkN "ice - skating" ; -- from DictEng -lin ice_tray_N = mkN "ice - tray" "ice - trays"; -- from DictEng -lin iceberg_N = mkN "iceberg" "icebergs"; -- from DictEng -lin iceboat_N = mkN "iceboat" "iceboats"; -- from DictEng -lin icebound_A = compoundA (mkA "icebound"); -- from DictEng -lin icebox_N = mkN "icebox" "iceboxes"; -- from DictEng -lin icebreaker_N = mkN "icebreaker" "icebreakers"; -- from DictEng -lin icecap_N = mkN "icecap" "icecaps"; -- from DictEng -lin icecube_N = mkN "icecube" "icecubes"; -- from DictEng -lin icefall_N = mkN "icefall" "icefalls"; -- from DictEng -lin icefield_N = mkN "icefield" "icefields"; -- from DictEng -lin icefloe_N = mkN "icefloe" "icefloes"; -- from DictEng -lin icefree_A = compoundA (mkA "icefree"); -- from DictEng -lin icehouse_N = mkN "icehouse" "icehouses"; -- from DictEng -lin icelander_A = compoundA (mkA "icelander"); -- from DictEng -lin icelander_N = mkN "icelander" "icelanders"; -- from DictEng -lin icelandic_A = compoundA (mkA "icelandic"); -- from DictEng -lin icelandic_N = mkN "icelandic" ; -- from DictEng -lin iceman_N = mkN "iceman" "icemen" {- FIXME: guessed plural form -}; -- from DictEng -lin icepack_N = mkN "icepack" "icepacks"; -- from DictEng -lin icepick_N = mkN "icepick" "icepicks"; -- from DictEng -lin icerink_N = mkN "icerink" "icerinks"; -- from DictEng -lin icetray_N = mkN "icetray" ; -lin ichneumon_N = mkN "ichneumon" "ichneumons"; -- from DictEng -lin ichneumon_fly_N = mkN "ichneumon - fly" "ichneumon - flies"; -- from DictEng -lin ichor_N = mkN "ichor" ; -lin ichorous_A = mkA "ichorous" ; -lin ichthyolatry_N = mkN "ichthyolatry" ; -lin ichthyologist_N = mkN "ichthyologist" ; -lin ichthyology_N = mkN "ichthyology" ; -lin ichthyosaur_N = mkN "ichthyosaur" ; -lin ichthyosaurus_N = mkN "ichthyosaurus" ; -lin ichthyosis_N = mkN "ichthyosis" ; -lin icicle_N = mkN "icicle" "icicles"; -- from DictEng -lin icily_Adv = mkAdv "icily"; -- from DictEng -lin icing_N = mkN "icing" ; -- from DictEng -lin icky_A = mkA "icky" ; -lin icon_N = mkN "icon" "icons"; -- from DictEng -lin iconic_A = mkA "iconic" ; -lin iconoclasm_N = mkN "iconoclasm" ; -lin iconoclast_N = mkN "iconoclast" "iconoclasts"; -- from DictEng -lin iconoclastic_A = mkA "iconoclastic" ; -lin iconography_N = mkN "iconography" ; -lin iconolatry_N = mkN "iconolatry" ; -lin iconology_N = mkN "iconology" ; -lin iconoscope_N = mkN "iconoscope" ; -lin icosahedral_A = mkA "icosahedral" ; -lin icosahedron_N = mkN "icosahedron" ; -lin ictal_A = mkA "ictal" ; -lin icterogenic_A = mkA "icterogenic" ; -lin ictodosaur_N = mkN "ictodosaur" ; -lin icy_A = mkA "icy" "icier"; -- from DictEng -lin id_N = mkN "id" "IRREG"; -- from DictEng -lin idea_N = mkN "idea" "ideas"; -- from DictEng -lin ideal_A = compoundA (mkA "ideal"); -- from DictEng -lin ideal_N = mkN "ideal" "ideals"; -- from DictEng -lin idealism_N = mkN "idealism" ; -- from DictEng -lin idealist_N = mkN "idealist" "idealists"; -- from DictEng -lin idealistic_A = compoundA (mkA "idealistic"); -- from DictEng -lin ideality_N = mkN "ideality" ; -lin idealization_N = mkN "idealization" "idealizations"; -- from DictEng -lin idealize_V2 = mkV2 (mkV "idealize" "idealizes" "idealized" "idealized" "idealizing"); -- from DictEng -lin idealized_A = mkA "idealized" ; -lin ideally_Adv = mkAdv "ideally" ; -lin ideation_N = mkN "ideation" ; -lin idempotent_A = mkA "idempotent" ; -lin identical_A = compoundA (mkA "identical"); -- from DictEng -lin identically_Adv = mkAdv "identically" ; -lin identifiable_A = compoundA (mkA "identifiable"); -- from DictEng -lin identifiably_Adv = mkAdv "identifiably" ; -lin identification_N = mkN "identification" ; -- from DictEng -lin identified_A = mkA "identified" ; -lin identifier_N = mkN "identifier" ; -lin identify_V = mkV "identify"; -- from DictEng -lin identify_V2 = mkV2 (mkV "identify" "identifies" "identified" "identified" "identifying"); -- from DictEng -lin identikit_N = mkN "identikit" "identikits"; -- from DictEng -lin identity_N = mkN "identity" "identities"; -- from DictEng -lin ideogram_N = mkN "ideogram" "ideograms"; -- from DictEng -lin ideograph_N = mkN "ideograph" "ideographs"; -- from DictEng -lin ideographic_A = compoundA (mkA "ideographic"); -- from DictEng -lin ideographically_Adv = mkAdv "ideographically" ; -lin ideography_N = mkN "ideography" ; -lin ideological_A = compoundA (mkA "ideological"); -- from DictEng -lin ideologically_Adv = mkAdv "ideologically" ; -lin ideologist_N = mkN "ideologist" ; -lin ideology_N = mkN "ideology" "ideologies"; -- from DictEng -lin ides_N = mkN "ides" ; -lin idesia_N = mkN "idesia" ; -lin idiocy_N = mkN "idiocy" "idiocies"; -- from DictEng -lin idiographic_A = mkA "idiographic" ; -lin idiolatry_N = mkN "idiolatry" ; -lin idiolect_N = mkN "idiolect" "idiolects"; -- from DictEng -lin idiom_N = mkN "idiom" "idioms"; -- from DictEng -lin idiomatic_A = compoundA (mkA "idiomatic"); -- from DictEng -lin idiomatically_Adv = mkAdv "idiomatically"; -- from DictEng -lin idiopathic_A = mkA "idiopathic" ; -lin idiosyncrasy_N = mkN "idiosyncrasy" "idiosyncrasies"; -- from DictEng -lin idiosyncratic_A = compoundA (mkA "idiosyncratic"); -- from DictEng -lin idiot_N = mkN "idiot" "idiots"; -- from DictEng -lin idiotic_A = compoundA (mkA "idiotic"); -- from DictEng -lin idiotically_Adv = mkAdv "idiotically"; -- from DictEng -lin idle_A = mkA "idle" "idler"; -- from DictEng -lin idle_N = mkN "idle" ; -lin idle_V = mkV "idle" "idles" "idled" "idled" "idling"; -- from DictEng -lin idle_V2 = mkV2 (mkV "idle" "idles" "idled" "idled" "idling"); -- from DictEng -lin idleness_N = mkN "idleness" ; -- from DictEng -lin idler_N = mkN "idler" "idlers"; -- from DictEng -lin idly_Adv = mkAdv "idly"; -- from DictEng -lin idol_N = mkN "idol" "idols"; -- from DictEng -lin idolater_N = mkN "idolater" "idolaters"; -- from DictEng -lin idolatress_N = mkN "idolatress" "idolatresses"; -- from DictEng -lin idolatrous_A = compoundA (mkA "idolatrous"); -- from DictEng -lin idolatrously_Adv = mkAdv "idolatrously" ; -lin idolatry_N = mkN "idolatry" "idolatries"; -- from DictEng -lin idolization_N = mkN "idolization" "idolizations"; -- from DictEng -lin idolize_V2 = mkV2 (mkV "idolize" "idolizes" "idolized" "idolized" "idolizing"); -- from DictEng -lin idolizer_N = mkN "idolizer" ; -lin idyll_N = mkN "idyll" "idylls"; -- from DictEng -lin idyllic_A = compoundA (mkA "idyllic"); -- from DictEng -lin idyllically_Adv = mkAdv "idyllically" ; -lin if_Subj = mkSubj "if"; -- from DictEng -lin if_not_Adv = mkAdv "if not" ; -lin igloo_N = mkN "igloo" "igloos"; -- from DictEng -lin igneous_A = compoundA (mkA "igneous"); -- from DictEng -lin ignescent_A = mkA "ignescent" ; -lin ignis_fatuus_N = mkN "ignis fatuus" "ignis fatui" {- FIXME: guessed plural form -}; -- from DictEng -lin ignite_V = mkV "ignite" "ignites" "ignited" "ignited" "igniting"; -- from DictEng -lin ignite_V2 = mkV2 (mkV "ignite" "ignites" "ignited" "ignited" "igniting"); -- from DictEng -lin ignited_A = mkA "ignited" ; -lin igniter_N = mkN "igniter" ; -lin ignition_N = mkN "ignition" ; -- from DictEng -lin ignoble_A = compoundA (mkA "ignoble"); -- from DictEng -lin ignobleness_N = mkN "ignobleness" ; -lin ignominious_A = compoundA (mkA "ignominious"); -- from DictEng -lin ignominy_N = mkN "ignominy" "ignominies"; -- from DictEng -lin ignoramus_N = mkN "ignoramus" "ignoramuses"; -- from DictEng -lin ignorance_N = mkN "ignorance" ; -- from DictEng -lin ignorant_A = compoundA (mkA "ignorant"); -- from DictEng -lin ignorantly_Adv = mkAdv "ignorantly" ; -lin ignorantness_N = mkN "ignorantness" ; -lin ignore_V = mkV "ignore"; -- from DictEng -lin ignore_V2 = mkV2 (mkV "ignore" "ignores" "ignored" "ignored" "ignoring"); -- from DictEng -lin ignored_A = mkA "ignored" ; -lin iguana_N = mkN "iguana" "iguanas"; -- from DictEng -lin iguanid_N = mkN "iguanid" ; -lin iguanodon_N = mkN "iguanodon" ; -lin ijtihad_N = mkN "ijtihad" ; -lin ikon_N = mkN "ikon" "ikons"; -- from DictEng -lin ilama_N = mkN "ilama" ; -lin ilang_ilang_N = mkN "ilang ilang" ; -lin ileitis_N = mkN "ileitis" ; -lin ileostomy_N = mkN "ileostomy" ; -lin ileum_N = mkN "ileum" ; -lin ilex_N = mkN "ilex" "ilexes"; -- from DictEng -lin iliac_A = mkA "iliac" ; -lin ilium_N = mkN "ilium" ; -lin ilk_N = mkN "ilk" ; -- from DictEng -lin ill_A = compoundA (mkA "ill"); -- from DictEng -lin ill_Adv = mkAdv "ill"; -- from DictEng -lin ill_N = mkN "ill" "ills"; -- from DictEng -lin ill_advised_A = compoundA (mkA "ill - advised"); -- from DictEng -lin ill_being_N = mkN "ill being" ; -lin ill_bred_A = compoundA (mkA "ill - bred"); -- from DictEng -lin ill_conceived_A = compoundA (mkA "ill conceived") ; -lin ill_considered_A = compoundA (mkA "ill considered") ; -lin ill_defined_A = compoundA (mkA "ill defined") ; -lin ill_dressed_A = compoundA (mkA "ill dressed") ; -lin ill_equipped_A = compoundA (mkA "ill equipped") ; -lin ill_famed_A = compoundA (mkA "ill famed") ; -lin ill_favored_A = compoundA (mkA "ill favored") ; -lin ill_fed_A = compoundA (mkA "ill fed") ; -lin ill_fitting_A = compoundA (mkA "ill fitting") ; -lin ill_mannered_A = compoundA (mkA "ill - mannered"); -- from DictEng -lin ill_natured_A = compoundA (mkA "ill - natured"); -- from DictEng -lin ill_proportioned_A = compoundA (mkA "ill proportioned") ; -lin ill_sorted_A = compoundA (mkA "ill sorted") ; -lin ill_timed_A = compoundA (mkA "ill - timed"); -- from DictEng -lin ill_advised_A = compoundA (mkA "ill - advised"); -- from DictEng -lin ill_affected_A = compoundA (mkA "ill - affected"); -- from DictEng -lin ill_bred_A = compoundA (mkA "ill - bred"); -- from DictEng -lin ill_breeding_N = mkN "ill - breeding" ; -- from DictEng -lin ill_disposed_A = compoundA (mkA "ill - disposed"); -- from DictEng -lin ill_fated_A = compoundA (mkA "ill - fated"); -- from DictEng -lin ill_favoured_A = compoundA (mkA "ill - favoured"); -- from DictEng -lin ill_gotten_A = compoundA (mkA "ill - gotten"); -- from DictEng -lin ill_judged_A = compoundA (mkA "ill - judged"); -- from DictEng -lin ill_mannered_A = compoundA (mkA "ill - mannered"); -- from DictEng -lin ill_natured_A = compoundA (mkA "ill - natured"); -- from DictEng -lin ill_omened_A = compoundA (mkA "ill - omened"); -- from DictEng -lin ill_starred_A = compoundA (mkA "ill - starred"); -- from DictEng -lin ill_timed_A = compoundA (mkA "ill - timed"); -- from DictEng -lin ill_treat_V2 = mkV2 (mkV "ill - treat" "ill - treats" "ill - treated" "ill - treated" "ill - treating"); -- from DictEng -lin ill_treatment_N = mkN "ill - treatment" ; -- from DictEng -lin ill_usage_N = mkN "ill - usage" ; -- from DictEng -lin ill_use_V2 = mkV2 (mkV "ill - use" "ill - uses" "ill - used" "ill - used" "ill - using"); -- from DictEng -lin illative_A = mkA "illative" ; -lin illegal_A = compoundA (mkA "illegal"); -- from DictEng -lin illegality_N = mkN "illegality" "illegalities"; -- from DictEng -lin illegally_Adv = mkAdv "illegally" ; -lin illegibility_N = mkN "illegibility" ; -- from DictEng -lin illegible_A = compoundA (mkA "illegible"); -- from DictEng -lin illegibly_Adv = mkAdv "illegibly" ; -lin illegitimacy_N = mkN "illegitimacy" ; -- from DictEng -lin illegitimate_A = compoundA (mkA "illegitimate"); -- from DictEng -lin illegitimate_N = mkN "illegitimate" "illegitimate"; -- from DictEng -lin illegitimately_Adv = mkAdv "illegitimately" ; -lin illiberal_A = compoundA (mkA "illiberal"); -- from DictEng -lin illiberality_N = mkN "illiberality" ; -- from DictEng -lin illicit_A = compoundA (mkA "illicit"); -- from DictEng -lin illicitness_N = mkN "illicitness" ; -lin illimitable_A = compoundA (mkA "illimitable"); -- from DictEng -lin illiteracy_N = mkN "illiteracy" "illiteracies"; -- from DictEng -lin illiterate_A = compoundA (mkA "illiterate"); -- from DictEng -lin illiterate_N = mkN "illiterate" "illiterates"; -- from DictEng -lin illness_N = mkN "illness" "illnesses"; -- from DictEng -lin illogical_A = compoundA (mkA "illogical"); -- from DictEng -lin illogicality_N = mkN "illogicality" "illogicalities"; -- from DictEng -lin illogically_Adv = mkAdv "illogically" ; -lin illogicalness_N = mkN "illogicalness" ; -- from DictEng -lin illume_V2 = mkV2 (mkV "illume" "illumes" "illumed" "illumed" "illuming"); -- from DictEng -lin illuminance_N = mkN "illuminance" ; -lin illuminant_N = mkN "illuminant" ; -lin illuminate_V2 = mkV2 (mkV "illuminate" "illuminates" "illuminated" "illuminated" "illuminating"); -- from DictEng -lin illuminated_A = mkA "illuminated" ; -lin illumination_N = mkN "illumination" "illuminations"; -- from DictEng -lin illumine_V2 = mkV2 (mkV "illumine" "illumines" "illumined" "illumined" "illumining"); -- from DictEng -lin illusion_N = mkN "illusion" "illusions"; -- from DictEng -lin illusional_A = mkA "illusional" ; -lin illusionist_N = mkN "illusionist" "illusionists"; -- from DictEng -lin illusive_A = compoundA (mkA "illusive"); -- from DictEng -lin illusory_A = compoundA (mkA "illusory"); -- from DictEng -lin illustrate_V = mkV "illustrate"; -- from DictEng -lin illustrate_V2 = mkV2 (mkV "illustrate" "illustrates" "illustrated" "illustrated" "illustrating"); -- from DictEng -lin illustrate_VS = mkVS (mkV "illustrate"); -- from DictEng -lin illustration_N = mkN "illustration" "illustrations"; -- from DictEng -lin illustrative_A = compoundA (mkA "illustrative"); -- from DictEng -lin illustrator_N = mkN "illustrator" "illustrators"; -- from DictEng -lin illustrious_A = compoundA (mkA "illustrious"); -- from DictEng -lin illustriously_Adv = mkAdv "illustriously" ; -lin ilmenite_N = mkN "ilmenite" ; -lin ilo_N = mkN "ilo" ; -- from DictEng -lin image_N = mkN "image" "images"; -- from DictEng -lin image_V2 = mkV2 (mkV "image" "images" "imaged" "imaged" "imaging"); -- from DictEng -lin imagery_N = mkN "imagery" ; -- from DictEng -lin imaginable_A = compoundA (mkA "imaginable"); -- from DictEng -lin imaginary_A = compoundA (mkA "imaginary"); -- from DictEng -lin imagination_N = mkN "imagination" "imaginations"; -- from DictEng -lin imaginative_A = compoundA (mkA "imaginative"); -- from DictEng -lin imaginatively_Adv = mkAdv "imaginatively" ; -lin imagine_V = mkV "imagine"; -- from DictEng -lin imagine_V2 = mkV2 (mkV "imagine" "imagines" "imagined" "imagined" "imagining"); -- from DictEng -lin imagine_VS = mkVS (mkV "imagine"); -- from DictEng -lin imaging_N = mkN "imaging" ; -lin imagism_N = mkN "imagism" ; -lin imago_N = mkN "imago" ; -lin imam_N = mkN "imam" "imams"; -- from DictEng -lin imaret_N = mkN "imaret" ; -lin imbalance_N = mkN "imbalance" "imbalances"; -- from DictEng -lin imbecile_A = compoundA (mkA "imbecile"); -- from DictEng -lin imbecile_N = mkN "imbecile" "imbeciles"; -- from DictEng -lin imbecility_N = mkN "imbecility" "imbecilities"; -- from DictEng -lin imbed_V2 = mkV2 (mkV "imbed" "imbeds" "imbedded" "imbedded" "imbedding"); -- from DictEng -lin imbibe_V2 = mkV2 (mkV "imbibe" "imbibes" "imbibed" "imbibed" "imbibing"); -- from DictEng -lin imbibition_N = mkN "imbibition" ; -lin imbricate_A = mkA "imbricate" ; -lin imbrication_N = mkN "imbrication" ; -lin imbroglio_N = mkN "imbroglio" "imbroglios"; -- from DictEng -lin imbue_V2 = mkV2 (mkV "imbue" "imbues" "imbued" "imbued" "imbuing"); -- from DictEng -lin imf_N = mkN "imf" ; -- from DictEng -lin imidazole_N = mkN "imidazole" ; -lin imide_N = mkN "imide" ; -lin imipramine_N = mkN "imipramine" ; -lin imitate_V2 = mkV2 (mkV "imitate" "imitates" "imitated" "imitated" "imitating"); -- from DictEng -lin imitation_N = mkN "imitation" "imitations"; -- from DictEng -lin imitative_A = compoundA (mkA "imitative"); -- from DictEng -lin imitator_N = mkN "imitator" "imitators"; -- from DictEng -lin immaculate_A = compoundA (mkA "immaculate"); -- from DictEng -lin immaculately_Adv = mkAdv "immaculately" ; -lin immanence_N = mkN "immanence" "immanences"; -- from DictEng -lin immanent_A = compoundA (mkA "immanent"); -- from DictEng -lin immaterial_A = compoundA (mkA "immaterial"); -- from DictEng -lin immateriality_N = mkN "immateriality" ; -lin immature_A = compoundA (mkA "immature"); -- from DictEng -lin immaturely_Adv = mkAdv "immaturely" ; -lin immaturity_N = mkN "immaturity" ; -- from DictEng -lin immeasurable_A = compoundA (mkA "immeasurable"); -- from DictEng -lin immeasurably_Adv = mkAdv "immeasurably" ; -lin immediacy_N = mkN "immediacy" ; -- from DictEng -lin immediate_A = compoundA (mkA "immediate"); -- from DictEng -lin immediately_Adv = mkAdv "immediately" ; -lin immemorial_A = compoundA (mkA "immemorial"); -- from DictEng -lin immense_A = compoundA (mkA "immense"); -- from DictEng -lin immensity_N = mkN "immensity" "immensities"; -- from DictEng -lin immerse_V2 = mkV2 (mkV "immerse" "immerses" "immersed" "immersed" "immersing"); -- from DictEng -lin immersion_N = mkN "immersion" "immersions"; -- from DictEng -lin immigrant_N = mkN "immigrant" "immigrants"; -- from DictEng -lin immigrate_V = mkV "immigrate" "immigrates" "immigrated" "immigrated" "immigrating"; -- from DictEng -lin immigration_N = mkN "immigration" "immigrations"; -- from DictEng -lin imminence_N = mkN "imminence" ; -- from DictEng -lin imminent_A = compoundA (mkA "imminent"); -- from DictEng -lin imminently_Adv = mkAdv "imminently" ; -lin immiscible_A = mkA "immiscible" ; -lin immobile_A = compoundA (mkA "immobile"); -- from DictEng -lin immobility_N = mkN "immobility" ; -- from DictEng -lin immobilization_N = mkN "immobilization" ; -- from DictEng -lin immobilize_V2 = mkV2 (mkV "immobilize" "immobilizes" "immobilized" "immobilized" "immobilizing"); -- from DictEng -lin immoderate_A = compoundA (mkA "immoderate"); -- from DictEng -lin immoderately_Adv = mkAdv "immoderately" ; -lin immoderation_N = mkN "immoderation" ; -lin immodest_A = compoundA (mkA "immodest"); -- from DictEng -lin immodestly_Adv = mkAdv "immodestly" ; -lin immodesty_N = mkN "immodesty" "immodesties"; -- from DictEng -lin immolate_V2 = mkV2 (mkV "immolate" "immolates" "immolated" "immolated" "immolating"); -- from DictEng -lin immolation_N = mkN "immolation" "immolations"; -- from DictEng -lin immoral_A = compoundA (mkA "immoral"); -- from DictEng -lin immorality_N = mkN "immorality" "immoralities"; -- from DictEng -lin immorally_Adv = mkAdv "immorally" ; -lin immortal_A = compoundA (mkA "immortal"); -- from DictEng -lin immortal_N = mkN "immortal" "immortals"; -- from DictEng -lin immortality_N = mkN "immortality" ; -- from DictEng -lin immortalize_V2 = mkV2 (mkV "immortalize" "immortalizes" "immortalized" "immortalized" "immortalizing"); -- from DictEng -lin immortelle_N = mkN "immortelle" ; -lin immotility_N = mkN "immotility" ; -lin immovability_N = mkN "immovability" ; -lin immovable_A = compoundA (mkA "immovable"); -- from DictEng -lin immovably_Adv = mkAdv "immovably" ; -lin immune_A = compoundA (mkA "immune"); -- from DictEng -lin immune_N = mkN "immune" ; -lin immunity_N = mkN "immunity" ; -- from DictEng -lin immunization_N = mkN "immunization" ; -- from DictEng -lin immunize_V2 = mkV2 (mkV "immunize" "immunizes" "immunized" "immunized" "immunizing"); -- from DictEng -lin immunized_A = mkA "immunized" ; -lin immunoassay_N = mkN "immunoassay" ; -lin immunochemical_A = mkA "immunochemical" ; -lin immunochemistry_N = mkN "immunochemistry" ; -lin immunocompetence_N = mkN "immunocompetence" ; -lin immunocompetent_A = mkA "immunocompetent" ; -lin immunocompromised_A = mkA "immunocompromised" ; -lin immunodeficiency_N = mkN "immunodeficiency" ; -lin immunodeficient_A = mkA "immunodeficient" ; -lin immunoelectrophoresis_N = mkN "immunoelectrophoresis" ; -lin immunofluorescence_N = mkN "immunofluorescence" ; -lin immunogen_N = mkN "immunogen" ; -lin immunogenic_A = mkA "immunogenic" ; -lin immunogenicity_N = mkN "immunogenicity" ; -lin immunoglobulin_N = mkN "immunoglobulin" ; -lin immunoglobulin_a_PN = mkPN "immunoglobulin A" ; -lin immunoglobulin_d_PN = mkPN "immunoglobulin D" ; -lin immunoglobulin_e_PN = mkPN "immunoglobulin E" ; -lin immunoglobulin_g_PN = mkPN "immunoglobulin G" ; -lin immunoglobulin_m_PN = mkPN "immunoglobulin M" ; -lin immunohistochemistry_N = mkN "immunohistochemistry" ; -lin immunological_A = mkA "immunological" ; -lin immunologically_Adv = mkAdv "immunologically" ; -lin immunologist_N = mkN "immunologist" ; -lin immunology_N = mkN "immunology" ; -- from DictEng -lin immunopathology_N = mkN "immunopathology" ; -lin immunosuppressant_N = mkN "immunosuppressant" ; -lin immunosuppressed_A = mkA "immunosuppressed" ; -lin immunosuppression_N = mkN "immunosuppression" ; -lin immunosuppressive_A = mkA "immunosuppressive" ; -lin immunotherapeutic_A = mkA "immunotherapeutic" ; -lin immunotherapy_N = mkN "immunotherapy" ; -lin immure_V2 = mkV2 (mkV "immure" "immures" "immured" "immured" "immuring"); -- from DictEng -lin immutability_N = mkN "immutability" ; -- from DictEng -lin immutable_A = compoundA (mkA "immutable"); -- from DictEng -lin imp_N = mkN "imp" "imps"; -- from DictEng -lin impact_N = mkN "impact" "impacts"; -- from DictEng -lin impact_V2 = mkV2 (mkV "impact" "impacts" "impacted" "impacted" "impacting"); -- from DictEng -lin impacted_A = mkA "impacted" ; -lin impaction_N = mkN "impaction" ; -lin impair_V2 = mkV2 (mkV "impair" "impairs" "impaired" "impaired" "impairing"); -- from DictEng -lin impaired_A = mkA "impaired" ; -lin impairer_N = mkN "impairer" ; -lin impairment_N = mkN "impairment" "impairments"; -- from DictEng -lin impala_N = mkN "impala" "impalas"; -- from DictEng -lin impale_V2 = mkV2 (mkV "impale" "impales" "impaled" "impaled" "impaling"); -- from DictEng -lin impalement_N = mkN "impalement" "impalements"; -- from DictEng -lin impalpable_A = compoundA (mkA "impalpable"); -- from DictEng -lin impanel_V2 = mkV2 (mkV "impanel" "impanels" "impanelled" "impanelled" "impanelling"); -- from DictEng -lin impart_V2 = mkV2 (mkV "impart" "imparts" "imparted" "imparted" "imparting"); -- from DictEng -lin impartial_A = compoundA (mkA "impartial"); -- from DictEng -lin impartiality_N = mkN "impartiality" ; -- from DictEng -lin impartially_Adv = mkAdv "impartially" ; -lin impassable_A = compoundA (mkA "impassable"); -- from DictEng -lin impasse_N = mkN "impasse" "impasses"; -- from DictEng -lin impassioned_A = compoundA (mkA "impassioned"); -- from DictEng -lin impassive_A = compoundA (mkA "impassive"); -- from DictEng -lin impassively_Adv = mkAdv "impassively" ; -lin impassiveness_N = mkN "impassiveness" ; -- from DictEng -lin impassivity_N = mkN "impassivity" ; -- from DictEng -lin impasto_N = mkN "impasto" ; -lin impatience_N = mkN "impatience" ; -- from DictEng -lin impatient_A = compoundA (mkA "impatient"); -- from DictEng -lin impatiently_Adv = mkAdv "impatiently" ; -lin impeach_V2 = mkV2 (mkV "impeach" "impeaches" "impeached" "impeached" "impeaching"); -- from DictEng -lin impeachability_N = mkN "impeachability" ; -lin impeachment_N = mkN "impeachment" "impeachments"; -- from DictEng -lin impeccability_N = mkN "impeccability" ; -lin impeccable_A = compoundA (mkA "impeccable"); -- from DictEng -lin impeccably_Adv = mkAdv "impeccably" ; -lin impeccant_A = mkA "impeccant" ; -lin impecunious_A = compoundA (mkA "impecunious"); -- from DictEng -lin impecuniousness_N = mkN "impecuniousness" ; -lin impede_V2 = mkV2 (mkV "impede" "impedes" "impeded" "impeded" "impeding"); -- from DictEng -lin impeded_A = mkA "impeded" ; -lin impediment_N = mkN "impediment" "impediments"; -- from DictEng -lin impedimenta_N = mkN "impedimenta" ; -lin impel_V2 = mkV2 (mkV "impel" "impels" "impelled" "impelled" "impelling"); -- from DictEng -lin impellent_A = mkA "impellent" ; -lin impeller_N = mkN "impeller" "impellers"; -- from DictEng -lin impelling_A = mkA "impelling" ; -lin impend_V = mkV "impend" "impends" "impended" "impended" "impending"; -- from DictEng -lin impenetrability_N = mkN "impenetrability" ; -lin impenetrable_A = compoundA (mkA "impenetrable"); -- from DictEng -lin impenitence_N = mkN "impenitence" ; -- from DictEng -lin impenitent_A = compoundA (mkA "impenitent"); -- from DictEng -lin impenitently_Adv = mkAdv "impenitently" ; -lin imperative_A = compoundA (mkA "imperative"); -- from DictEng -lin imperative_N = mkN "imperative" ; -lin imperatively_Adv = mkAdv "imperatively" ; -lin imperativeness_N = mkN "imperativeness" ; -lin imperceptibility_N = mkN "imperceptibility" ; -lin imperceptible_A = compoundA (mkA "imperceptible"); -- from DictEng -lin imperceptibly_Adv = mkAdv "imperceptibly" ; -lin imperfect_A = compoundA (mkA "imperfect"); -- from DictEng -lin imperfect_N = mkN "imperfect" "IRREG"; -- from DictEng -lin imperfectibility_N = mkN "imperfectibility" ; -lin imperfectible_A = mkA "imperfectible" ; -lin imperfection_N = mkN "imperfection" "imperfections"; -- from DictEng -lin imperfective_N = mkN "imperfective" ; -lin imperfectly_Adv = mkAdv "imperfectly" ; -lin imperforate_A = mkA "imperforate" ; -lin imperial_A = compoundA (mkA "imperial"); -- from DictEng -lin imperial_N = mkN "imperial" "imperials"; -- from DictEng -lin imperial_japanese_morning_glory_PN = mkPN "imperial Japanese morning glory" ; -lin imperialism_N = mkN "imperialism" ; -- from DictEng -lin imperialist_N = mkN "imperialist" "imperialists"; -- from DictEng -lin imperialistic_A = compoundA (mkA "imperialistic"); -- from DictEng -lin imperially_Adv = mkAdv "imperially" ; -lin imperil_V2 = mkV2 (mkV "imperil" "imperils" "imperilled" "imperilled" "imperilling"); -- from DictEng -lin imperile_V2 = mkV2 (mkV "imperile"); -- from DictEng -lin imperious_A = compoundA (mkA "imperious"); -- from DictEng -lin imperiously_Adv = mkAdv "imperiously" ; -lin imperiousness_N = mkN "imperiousness" ; -- from DictEng -lin imperishability_N = mkN "imperishability" ; -lin imperishable_A = compoundA (mkA "imperishable"); -- from DictEng -lin imperium_N = mkN "imperium" ; -lin impermanence_N = mkN "impermanence" ; -- from DictEng -lin impermanent_A = compoundA (mkA "impermanent"); -- from DictEng -lin impermeability_N = mkN "impermeability" ; -lin impermeable_A = compoundA (mkA "impermeable"); -- from DictEng -lin impermissibility_N = mkN "impermissibility" ; -lin impermissible_A = mkA "impermissible" ; -lin impermissibly_Adv = mkAdv "impermissibly" ; -lin impersonal_A = compoundA (mkA "impersonal"); -- from DictEng -lin impersonally_Adv = mkAdv "impersonally" ; -lin impersonate_V2 = mkV2 (mkV "impersonate" "impersonates" "impersonated" "impersonated" "impersonating"); -- from DictEng -lin impersonation_N = mkN "impersonation" "impersonations"; -- from DictEng -lin impersonator_N = mkN "impersonator" "impersonators"; -- from DictEng -lin impertinence_N = mkN "impertinence" "impertinences"; -- from DictEng -lin impertinent_A = compoundA (mkA "impertinent"); -- from DictEng -lin impertinently_Adv = mkAdv "impertinently" ; -lin imperturbability_N = mkN "imperturbability" ; -- from DictEng -lin imperturbable_A = compoundA (mkA "imperturbable"); -- from DictEng -lin impervious_A = compoundA (mkA "impervious"); -- from DictEng -lin impetiginous_A = mkA "impetiginous" ; -lin impetigo_N = mkN "impetigo" ; -- from DictEng -lin impetuosity_N = mkN "impetuosity" "impetuosities"; -- from DictEng -lin impetuous_A = compoundA (mkA "impetuous"); -- from DictEng -lin impetuously_Adv = mkAdv "impetuously" ; -lin impetuousness_N = mkN "impetuousness" ; -lin impetus_N = mkN "impetus" "impeti" {- FIXME: guessed plural form -}; -- from DictEng -lin impiety_N = mkN "impiety" "impieties"; -- from DictEng -lin impinge_V = mkV "impinge" "impinges" "impinged" "impinged" "impinging"; -- from DictEng -lin impingement_N = mkN "impingement" "impingements"; -- from DictEng -lin impious_A = compoundA (mkA "impious"); -- from DictEng -lin impiously_Adv = mkAdv "impiously" ; -lin impish_A = compoundA (mkA "impish"); -- from DictEng -lin impishly_Adv = mkAdv "impishly" ; -lin impishness_N = mkN "impishness" ; -- from DictEng -lin implacable_A = compoundA (mkA "implacable"); -- from DictEng -lin implant_N = mkN "implant" ; -lin implant_V2 = mkV2 (mkV "implant" "implants" "implanted" "implanted" "implanting"); -- from DictEng -lin implantation_N = mkN "implantation" ; -lin implausibility_N = mkN "implausibility" ; -- from DictEng -lin implausible_A = compoundA (mkA "implausible"); -- from DictEng -lin implement_N = mkN "implement" "implements"; -- from DictEng -lin implement_V2 = mkV2 (mkV "implement" "implements" "implemented" "implemented" "implementing"); -- from DictEng -lin implemental_A = mkA "implemental" ; -lin implementation_N = mkN "implementation" "implementations"; -- from DictEng -lin implicate_V2 = mkV2 (mkV "implicate" "implicates" "implicated" "implicated" "implicating"); -- from DictEng -lin implicated_A = mkA "implicated" ; -lin implication_N = mkN "implication" "implications"; -- from DictEng -lin implicational_A = mkA "implicational" ; -lin implicative_A = mkA "implicative" ; -lin implicit_A = compoundA (mkA "implicit"); -- from DictEng -lin implicit_in_A = compoundA (mkA "implicit in") ; -lin implicitly_Adv = mkAdv "implicitly" ; -lin implicitness_N = mkN "implicitness" ; -lin implore_V2 = mkV2 (mkV "implore" "implores" "implored" "implored" "imploring"); -- from DictEng -lin implore_VS = mkVS (mkV "implore"); -- from DictEng -lin imploringly_Adv = mkAdv "imploringly"; -- from DictEng -lin implosion_N = mkN "implosion" "implosions"; -- from DictEng -lin imply_V = mkV "imply"; -- from DictEng -lin imply_V2 = mkV2 (mkV "imply" "implies" "implied" "implied" "implying"); -- from DictEng -lin imply_VS = mkVS (mkV "imply"); -- from DictEng -lin impolite_A = compoundA (mkA "impolite"); -- from DictEng -lin impolitely_Adv = mkAdv "impolitely" ; -lin impoliteness_N = mkN "impoliteness" ; -- from DictEng -lin impolitic_A = compoundA (mkA "impolitic"); -- from DictEng -lin imponderable_A = compoundA (mkA "imponderable"); -- from DictEng -lin imponderable_N = mkN "imponderable" "imponderables"; -- from DictEng -lin import_N = mkN "import" "imports"; -- from DictEng -lin import_V2 = mkV2 (mkV "import" "imports" "imported" "imported" "importing"); -- from DictEng -lin importance_N = mkN "importance" ; -- from DictEng -lin important_A = compoundA (mkA "important"); -- from DictEng -lin important_looking_A = compoundA (mkA "important looking") ; -lin importantly_Adv = mkAdv "importantly" ; -lin importation_N = mkN "importation" "importations"; -- from DictEng -lin imported_A = mkA "imported" ; -lin importer_N = mkN "importer" "importers"; -- from DictEng -lin importing_N = mkN "importing" ; -lin importunate_A = compoundA (mkA "importunate"); -- from DictEng -lin importune_V2 = mkV2 (mkV "importune" "importunes" "importuned" "importuned" "importuning"); -- from DictEng -lin importune_VS = mkVS (mkV "importune" ); -lin importunity_N = mkN "importunity" ; -- from DictEng -lin impose_V = mkV "impose" "imposes" "imposed" "imposed" "imposing"; -- from DictEng -lin impose_V2 = mkV2 (mkV "impose" "imposes" "imposed" "imposed" "imposing"); -- from DictEng -lin imposed_A = mkA "imposed" ; -lin imposing_A = compoundA (mkA "imposing"); -- from DictEng -lin imposition_N = mkN "imposition" "impositions"; -- from DictEng -lin impossibility_N = mkN "impossibility" "impossibilities"; -- from DictEng -lin impossible_A = compoundA (mkA "impossible"); -- from DictEng -lin impossible_N = mkN "impossible" ; -lin impossibly_Adv = mkAdv "impossibly" ; -lin imposter_N = mkN "imposter" ; -lin impostor_N = mkN "impostor" "impostors"; -- from DictEng -lin imposture_N = mkN "imposture" "impostures"; -- from DictEng -lin impotence_N = mkN "impotence" ; -- from DictEng -lin impotent_A = compoundA (mkA "impotent"); -- from DictEng -lin impound_V2 = mkV2 (mkV "impound" "impounds" "impounded" "impounded" "impounding"); -- from DictEng -lin impoundment_N = mkN "impoundment" ; -lin impoverish_V2 = mkV2 (mkV "impoverish" "impoverishes" "impoverished" "impoverished" "impoverishing"); -- from DictEng -lin impoverishment_N = mkN "impoverishment" "impoverishments"; -- from DictEng -lin impracticability_N = mkN "impracticability" ; -- from DictEng -lin impracticable_A = compoundA (mkA "impracticable"); -- from DictEng -lin impracticableness_N = mkN "impracticableness" ; -- from DictEng -lin impracticably_Adv = mkAdv "impracticably" ; -lin impractical_A = compoundA (mkA "impractical"); -- from DictEng -lin impracticality_N = mkN "impracticality" ; -lin imprecate_V2 = mkV2 (mkV "imprecate" "imprecates" "imprecated" "imprecated" "imprecating"); -- from DictEng -lin imprecation_N = mkN "imprecation" "imprecations"; -- from DictEng -lin imprecise_A = compoundA (mkA "imprecise"); -- from DictEng -lin imprecisely_Adv = mkAdv "imprecisely" ; -lin impreciseness_N = mkN "impreciseness" ; -lin imprecision_N = mkN "imprecision" ; -- from DictEng -lin impregnability_N = mkN "impregnability" ; -- from DictEng -lin impregnable_A = compoundA (mkA "impregnable"); -- from DictEng -lin impregnably_Adv = mkAdv "impregnably" ; -lin impregnate_V2 = mkV2 (mkV "impregnate" "impregnates" "impregnated" "impregnated" "impregnating"); -- from DictEng -lin impregnation_N = mkN "impregnation" ; -lin impresario_N = mkN "impresario" "impresarios"; -- from DictEng -lin impress_N = mkN "impress" "impresses"; -- from DictEng -lin impress_V = mkV "impress"; -- from DictEng -lin impress_V2 = mkV2 (mkV "impress" "impresses" "impressed" "impressed" "impressing"); -- from DictEng -lin impressed_A = mkA "impressed" ; -lin impression_N = mkN "impression" "impressions"; -- from DictEng -lin impressionable_A = compoundA (mkA "impressionable"); -- from DictEng -lin impressionism_N = mkN "impressionism" ; -- from DictEng -lin impressionist_A = mkA "impressionist" ; -lin impressionist_N = mkN "impressionist" "impressionists"; -- from DictEng -lin impressionistic_A = compoundA (mkA "impressionistic"); -- from DictEng -lin impressive_A = compoundA (mkA "impressive"); -- from DictEng -lin impressively_Adv = mkAdv "impressively" ; -lin impressiveness_N = mkN "impressiveness" ; -- from DictEng -lin imprimatur_N = mkN "imprimatur" "imprimaturs"; -- from DictEng -lin imprint_N = mkN "imprint" "imprints"; -- from DictEng -lin imprint_V = mkV "imprint" ; -lin imprint_V2 = mkV2 (mkV "imprint" "imprints" "imprinted" "imprinted" "imprinting"); -- from DictEng -lin imprinting_N = mkN "imprinting" ; -lin imprison_V2 = mkV2 (mkV "imprison" "imprisons" "imprisoned" "imprisoned" "imprisoning"); -- from DictEng -lin imprisonment_N = mkN "imprisonment" ; -- from DictEng -lin improbability_N = mkN "improbability" "improbabilities"; -- from DictEng -lin improbable_A = compoundA (mkA "improbable"); -- from DictEng -lin impromptu_A = compoundA (mkA "impromptu"); -- from DictEng -lin impromptu_Adv = mkAdv "impromptu"; -- from DictEng -lin impromptu_N = mkN "impromptu" "impromptus"; -- from DictEng -lin improper_A = compoundA (mkA "improper"); -- from DictEng -lin improperly_Adv = mkAdv "improperly" ; -lin impropriety_N = mkN "impropriety" "improprieties"; -- from DictEng -lin improvable_A = mkA "improvable" ; -lin improve_V = mkV "improve" "improves" "improved" "improved" "improving"; -- from DictEng -lin improve_V2 = mkV2 (mkV "improve" "improves" "improved" "improved" "improving"); -- from DictEng -lin improved_A = mkA "improved" ; -lin improvement_N = mkN "improvement" "improvements"; -- from DictEng -lin improver_N = mkN "improver" "improvers"; -- from DictEng -lin improvidence_N = mkN "improvidence" ; -- from DictEng -lin improvident_A = compoundA (mkA "improvident"); -- from DictEng -lin improvidently_Adv = mkAdv "improvidently" ; -lin improving_A = mkA "improving" ; -lin improvisation_N = mkN "improvisation" "improvisations"; -- from DictEng -lin improvise_V = mkV "improvise" "improvises" "improvised" "improvised" "improvising"; -- from DictEng -lin improvise_V2 = mkV2 (mkV "improvise" "improvises" "improvised" "improvised" "improvising"); -- from DictEng -lin improvised_A = mkA "improvised" ; -lin imprudence_N = mkN "imprudence" "imprudences"; -- from DictEng -lin imprudent_A = compoundA (mkA "imprudent"); -- from DictEng -lin imprudently_Adv = mkAdv "imprudently" ; -lin impudence_N = mkN "impudence" ; -- from DictEng -lin impudent_A = compoundA (mkA "impudent"); -- from DictEng -lin impugn_V2 = mkV2 (mkV "impugn" "impugns" "impugned" "impugned" "impugning"); -- from DictEng -lin impugnable_A = mkA "impugnable" ; -lin impuissant_A = mkA "impuissant" ; -lin impulse_N = mkN "impulse" "impulses"; -- from DictEng -lin impulse_buy_V = mkV "impulse-" IrregEng.buy_V; -- from DictEng -lin impulse_buy_V2 = mkV2 (mkV "impulse-" IrregEng.buy_V); -- from DictEng -lin impulsion_N = mkN "impulsion" "impulsions"; -- from DictEng -lin impulsive_A = compoundA (mkA "impulsive"); -- from DictEng -lin impulsiveness_N = mkN "impulsiveness" ; -- from DictEng -lin impunity_N = mkN "impunity" ; -- from DictEng -lin impure_A = compoundA (mkA "impure"); -- from DictEng -lin impurity_N = mkN "impurity" "impurities"; -- from DictEng -lin imputation_N = mkN "imputation" "imputations"; -- from DictEng -lin impute_V2 = mkV2 (mkV "impute" "imputes" "imputed" "imputed" "imputing"); -- from DictEng -lin imputrescible_A = mkA "imputrescible" ; -lin in_A = mkA "in" ; -lin in_Adv = mkAdv "in"; -- from DictEng -lin in_N = mkN "in" "ins"; -- from DictEng -lin in_Prep = mkPrep "in"; -- from DictEng -lin in_basket_N = mkN "in basket" ; -lin in_between_A = compoundA (mkA "in between") ; -lin in_bounds_A = compoundA (mkA "in bounds") ; -lin in_chief_A = compoundA (mkA "in - chief"); -- from DictEng -lin in_fighting_N = mkN "in - fighting" ; -- from DictEng -lin in_joke_N = mkN "in joke" ; -lin in_law_N = mkN "in law" ; -lin in_person_A = compoundA (mkA "in person") ; -lin in_situ_A = compoundA (mkA "in situ") ; -lin in_your_face_A = compoundA (mkA "in your face") ; -lin in_a_nutshell_Adv = mkAdv "in a nutshell" ; -lin in_a_pig's_eye_Adv = mkAdv "in a pig's eye" ; -lin in_a_way_Adv = mkAdv "in a way" ; -lin in_absentia_Adv = mkAdv "in absentia" ; -lin in_case_Adv = mkAdv "in case" ; -lin in_chief_A = compoundA (mkA "in - chief"); -- from DictEng -lin in_circles_Adv = mkAdv "in circles" ; -lin in_common_Adv = mkAdv "in common" ; -lin in_concert_Adv = mkAdv "in concert" ; -lin in_detail_Adv = mkAdv "in detail" ; -lin in_due_course_Adv = mkAdv "in due course" ; -lin in_evidence_A = compoundA (mkA "in evidence") ; -lin in_extremis_Adv = mkAdv "in extremis" ; -lin in_fact_Adv = mkAdv "in fact" ; -lin in_fighting_N = mkN "in - fighting" ; -- from DictEng -lin in_flight_Adv = mkAdv "in flight" ; -lin in_for_A = compoundA (mkA "in for") ; -lin in_full_Adv = mkAdv "in full" ; -lin in_full_swing_Adv = mkAdv "in full swing" ; -lin in_gear_A = compoundA (mkA "in gear") ; -lin in_good_taste_A = compoundA (mkA "in good taste") ; -lin in_hand_Adv = mkAdv "in hand" ; -lin in_height_A = compoundA (mkA "in height") ; -lin in_his_right_mind_A = compoundA (mkA "in his right mind") ; -lin in_kind_Adv = mkAdv "in kind" ; -lin in_league_A = compoundA (mkA "in league") ; -lin in_line_A = compoundA (mkA "in line") ; -lin in_line_Adv = mkAdv "in line" ; -lin in_loco_parentis_Adv = mkAdv "in loco parentis"; -- from DictEng -lin in_name_Adv = mkAdv "in name" ; -lin in_no_time_Adv = mkAdv "in no time" ; -lin in_on_Adv = mkAdv "in on" ; -lin in_one's_own_right_Adv = mkAdv "in one's own right" ; -lin in_order_A = compoundA (mkA "in order") ; -lin in_other_words_Adv = mkAdv "in other words" ; -lin in_passing_Adv = mkAdv "in passing" ; -lin in_patient_N = mkN "in - patient" "in - patients"; -- from DictEng -lin in_perpetuity_Adv = mkAdv "in perpetuity" ; -lin in_play_A = compoundA (mkA "in play") ; -lin in_practice_Adv = mkAdv "in practice" ; -lin in_principle_Adv = mkAdv "in principle" ; -lin in_return_Adv = mkAdv "in return" ; -lin in_service_A = compoundA (mkA "in - service"); -- from DictEng -lin in_short_order_Adv = mkAdv "in short order" ; -lin in_sight_A = compoundA (mkA "in sight") ; -lin in_situ_Adv = mkAdv "in situ"; -- from DictEng -lin in_stock_A = compoundA (mkA "in stock") ; -lin in_store_A = compoundA (mkA "in store") ; -lin in_stride_Adv = mkAdv "in stride" ; -lin in_the_air_Adv = mkAdv "in the air" ; -lin in_the_bargain_Adv = mkAdv "in the bargain" ; -lin in_the_first_place_Adv = mkAdv "in the first place" ; -lin in_the_least_Adv = mkAdv "in the least" ; -lin in_the_long_run_Adv = mkAdv "in the long run" ; -lin in_the_lurch_Adv = mkAdv "in the lurch" ; -lin in_the_nick_of_time_Adv = mkAdv "in the nick of time" ; -lin in_the_public_eye_A = compoundA (mkA "in the public eye") ; -lin in_the_same_breath_Adv = mkAdv "in the same breath" ; -lin in_the_way_Adv = mkAdv "in the way" ; -lin in_time_Adv = mkAdv "in time" ; -lin in_toto_Adv = mkAdv "in toto"; -- from DictEng -lin in_tray_N = mkN "in - tray" "in - trays"; -- from DictEng -lin in_truth_Adv = mkAdv "in truth" ; -lin in_unison_Adv = mkAdv "in unison" ; -lin in_use_A = compoundA (mkA "in use") ; -lin in_utero_Adv = mkAdv "in utero" ; -lin in_vacuo_Adv = mkAdv "in vacuo" ; -lin in_vitro_A = compoundA (mkA "in vitro") ; -lin in_vitro_Adv = mkAdv "in vitro" ; -lin in_vivo_A = compoundA (mkA "in vivo") ; -lin in_vivo_Adv = mkAdv "in vivo" ; -lin inability_N = mkN "inability" ; -- from DictEng -lin inaccessibility_N = mkN "inaccessibility" ; -- from DictEng -lin inaccessible_A = compoundA (mkA "inaccessible"); -- from DictEng -lin inaccessibly_Adv = mkAdv "inaccessibly" ; -lin inaccuracy_N = mkN "inaccuracy" "inaccuracies"; -- from DictEng -lin inaccurate_A = compoundA (mkA "inaccurate"); -- from DictEng -lin inaccurately_Adv = mkAdv "inaccurately" ; -lin inaction_N = mkN "inaction" ; -- from DictEng -lin inactivate_V2 = mkV2 (mkV "inactivate" "inactivates" "inactivated" "inactivated" "inactivating"); -- from DictEng -lin inactivation_N = mkN "inactivation" ; -lin inactive_A = compoundA (mkA "inactive"); -- from DictEng -lin inactiveness_N = mkN "inactiveness" ; -lin inactivity_N = mkN "inactivity" ; -- from DictEng -lin inadequacy_N = mkN "inadequacy" "inadequacies"; -- from DictEng -lin inadequate_A = compoundA (mkA "inadequate"); -- from DictEng -lin inadequately_Adv = mkAdv "inadequately" ; -lin inadmissibility_N = mkN "inadmissibility" ; -lin inadmissible_A = compoundA (mkA "inadmissible"); -- from DictEng -lin inadvertence_N = mkN "inadvertence" "inadvertences"; -- from DictEng -lin inadvertent_A = compoundA (mkA "inadvertent"); -- from DictEng -lin inadvisability_N = mkN "inadvisability" ; -- from DictEng -lin inadvisable_A = compoundA (mkA "inadvisable"); -- from DictEng -lin inaesthetic_A = mkA "inaesthetic" ; -lin inalienable_A = compoundA (mkA "inalienable"); -- from DictEng -lin inalienably_Adv = mkAdv "inalienably" ; -lin inamorata_N = mkN "inamorata" ; -lin inamorato_N = mkN "inamorato" ; -lin inane_A = compoundA (mkA "inane"); -- from DictEng -lin inanimate_A = compoundA (mkA "inanimate"); -- from DictEng -lin inanimateness_N = mkN "inanimateness" ; -lin inanition_N = mkN "inanition" ; -- from DictEng -lin inanity_N = mkN "inanity" "inanities"; -- from DictEng -lin inapplicability_N = mkN "inapplicability" ; -lin inapplicable_A = compoundA (mkA "inapplicable"); -- from DictEng -lin inapposite_A = mkA "inapposite" ; -lin inappreciable_A = compoundA (mkA "inappreciable"); -- from DictEng -lin inappropriate_A = compoundA (mkA "inappropriate"); -- from DictEng -lin inappropriately_Adv = mkAdv "inappropriately" ; -lin inappropriateness_N = mkN "inappropriateness" ; -- from DictEng -lin inapt_A = compoundA (mkA "inapt"); -- from DictEng -lin inaptitude_N = mkN "inaptitude" ; -- from DictEng -lin inaptness_N = mkN "inaptness" ; -lin inarguable_A = mkA "inarguable" ; -lin inarticulate_A = compoundA (mkA "inarticulate"); -- from DictEng -lin inarticulately_Adv = mkAdv "inarticulately" ; -lin inartistic_A = mkA "inartistic" ; -lin inasmuch_as_Adv = mkAdv "inasmuch as"; -- from DictEng -lin inattention_N = mkN "inattention" ; -- from DictEng -lin inattentive_A = compoundA (mkA "inattentive"); -- from DictEng -lin inattentiveness_N = mkN "inattentiveness" ; -lin inaudibility_N = mkN "inaudibility" ; -- from DictEng -lin inaudible_A = compoundA (mkA "inaudible"); -- from DictEng -lin inaudibly_Adv = mkAdv "inaudibly" ; -lin inaugural_A = compoundA (mkA "inaugural"); -- from DictEng -lin inaugural_N = mkN "inaugural" "inaugurals"; -- from DictEng -lin inaugurally_Adv = mkAdv "inaugurally" ; -lin inaugurate_V2 = mkV2 (mkV "inaugurate" "inaugurates" "inaugurated" "inaugurated" "inaugurating"); -- from DictEng -lin inauguration_N = mkN "inauguration" "inaugurations"; -- from DictEng -lin inauspicious_A = compoundA (mkA "inauspicious"); -- from DictEng -lin inauspiciously_Adv = mkAdv "inauspiciously" ; -lin inauspiciousness_N = mkN "inauspiciousness" ; -lin inauthentic_A = mkA "inauthentic" ; -lin inboard_A = compoundA (mkA "inboard"); -- from DictEng -lin inborn_A = compoundA (mkA "inborn"); -- from DictEng -lin inbound_A = compoundA (mkA "inbound"); -- from DictEng -lin inbred_A = compoundA (mkA "inbred"); -- from DictEng -lin inbreeding_N = mkN "inbreeding" ; -- from DictEng -lin inbuilt_A = compoundA (mkA "inbuilt"); -- from DictEng -lin incalculable_A = compoundA (mkA "incalculable"); -- from DictEng -lin incandesce_V = mkV "incandesce" ; -lin incandescence_N = mkN "incandescence" ; -- from DictEng -lin incandescent_A = compoundA (mkA "incandescent"); -- from DictEng -lin incantation_N = mkN "incantation" "incantations"; -- from DictEng -lin incapability_N = mkN "incapability" ; -- from DictEng -lin incapable_A = compoundA (mkA "incapable"); -- from DictEng -lin incapacitate_V2 = mkV2 (mkV "incapacitate" "incapacitates" "incapacitated" "incapacitated" "incapacitating"); -- from DictEng -lin incapacity_N = mkN "incapacity" ; -- from DictEng -lin incarcerate_V2 = mkV2 (mkV "incarcerate" "incarcerates" "incarcerated" "incarcerated" "incarcerating"); -- from DictEng -lin incarceration_N = mkN "incarceration" "incarcerations"; -- from DictEng -lin incarnate_A = compoundA (mkA "incarnate"); -- from DictEng -lin incarnate_V2 = mkV2 (mkV "incarnate" "incarnates" "incarnated" "incarnated" "incarnating"); -- from DictEng -lin incarnation_N = mkN "incarnation" "incarnations"; -- from DictEng -lin incaution_N = mkN "incaution" ; -lin incautious_A = compoundA (mkA "incautious"); -- from DictEng -lin incautiously_Adv = mkAdv "incautiously" ; -lin incendiarism_N = mkN "incendiarism" ; -- from DictEng -lin incendiary_A = mkA "incendiary" ; -lin incendiary_N = mkN "incendiary" "incendiaries"; -- from DictEng -lin incense_N = mkN "incense" ; -- from DictEng -lin incense_V2 = mkV2 (mkV "incense" "incenses" "incensed" "incensed" "incensing"); -- from DictEng -lin incentive_N = mkN "incentive" "incentives"; -- from DictEng -lin inception_N = mkN "inception" "inceptions"; -- from DictEng -lin incertitude_N = mkN "incertitude" ; -- from DictEng -lin incessant_A = compoundA (mkA "incessant"); -- from DictEng -lin incest_N = mkN "incest" ; -- from DictEng -lin incestuous_A = compoundA (mkA "incestuous"); -- from DictEng -lin incestuously_Adv = mkAdv "incestuously" ; -lin inch_N = mkN "inch" "inches"; -- from DictEng -lin inch_V = mkV "inch" "inches" "inched" "inched" "inching"; -- from DictEng -lin inch_V2 = mkV2 (mkV "inch" "inches" "inched" "inched" "inching"); -- from DictEng -lin inchoate_A = compoundA (mkA "inchoate"); -- from DictEng -lin inchoative_A = compoundA (mkA "inchoative"); -- from DictEng -lin inchoative_N = mkN "inchoative" ; -lin incidence_N = mkN "incidence" "incidences"; -- from DictEng -lin incident_A = compoundA (mkA "incident"); -- from DictEng -lin incident_N = mkN "incident" "incidents"; -- from DictEng -lin incidental_A = compoundA (mkA "incidental"); -- from DictEng -lin incidental_N = mkN "incidental" ; -lin incidentally_Adv = mkAdv "incidentally" ; -lin incinerate_V2 = mkV2 (mkV "incinerate" "incinerates" "incinerated" "incinerated" "incinerating"); -- from DictEng -lin incineration_N = mkN "incineration" ; -- from DictEng -lin incinerator_N = mkN "incinerator" "incinerators"; -- from DictEng -lin incipiency_N = mkN "incipiency" ; -lin incipient_A = compoundA (mkA "incipient"); -- from DictEng -lin incise_V = mkV "incise" ; -lin incise_V2 = mkV2 (mkV "incise" "incises" "incised" "incised" "incising"); -- from DictEng -lin incised_A = mkA "incised" ; -lin incision_N = mkN "incision" "incisions"; -- from DictEng -lin incisive_A = compoundA (mkA "incisive"); -- from DictEng -lin incisively_Adv = mkAdv "incisively" ; -lin incisiveness_N = mkN "incisiveness" ; -lin incisor_N = mkN "incisor" "incisors"; -- from DictEng -lin incisure_N = mkN "incisure" ; -lin incitation_N = mkN "incitation" ; -lin incite_V2 = mkV2 (mkV "incite" "incites" "incited" "incited" "inciting"); -- from DictEng -lin incitement_N = mkN "incitement" "incitements"; -- from DictEng -lin incivility_N = mkN "incivility" "incivilities"; -- from DictEng -lin inclemency_N = mkN "inclemency" ; -- from DictEng -lin inclement_A = compoundA (mkA "inclement"); -- from DictEng -lin inclination_N = mkN "inclination" "inclinations"; -- from DictEng -lin incline_N = mkN "incline" "inclines"; -- from DictEng -lin incline_V = mkV "incline" "inclines" "inclined" "inclined" "inclining"; -- from DictEng -lin incline_V2 = mkV2 (mkV "incline" "inclines" "inclined" "inclined" "inclining"); -- from DictEng -lin incline_V2V = mkV2V (mkV "incline" "inclines" "inclined" "inclined" "inclining") noPrep to_Prep ; -- from DictEng -lin inclined_A = mkA "inclined" ; -lin inclinometer_N = mkN "inclinometer" ; -lin inclose_V2 = mkV2 (mkV "inclose" "incloses" "inclosed" "inclosed" "inclosing"); -- from DictEng -lin inclosure_N = mkN "inclosure" "inclosures"; -- from DictEng -lin include_V = mkV "include"; -- from DictEng -lin include_V2 = mkV2 (mkV "include" "includes" "included" "included" "including"); -- from DictEng -lin include_VS = mkVS (mkV "include"); -- from DictEng -lin include_VV = ingVV (mkV "include"); -- from DictEng -lin included_A = mkA "included" ; -lin inclusion_N = mkN "inclusion" ; -- from DictEng -lin inclusive_A = compoundA (mkA "inclusive"); -- from DictEng -lin incognito_A = compoundA (mkA "incognito"); -- from DictEng -lin incognito_Adv = mkAdv "incognito"; -- from DictEng -lin incognizable_A = mkA "incognizable" ; -lin incognizance_N = mkN "incognizance" ; -lin incoherence_N = mkN "incoherence" ; -- from DictEng -lin incoherent_A = compoundA (mkA "incoherent"); -- from DictEng -lin incoherently_Adv = mkAdv "incoherently" ; -lin incombustible_A = compoundA (mkA "incombustible"); -- from DictEng -lin income_N = mkN "income" "incomes"; -- from DictEng -lin income_tax_N = mkN "income - tax" "income - taxes"; -- from DictEng -lin incoming_A = compoundA (mkA "incoming"); -- from DictEng -lin incommensurable_A = compoundA (mkA "incommensurable"); -- from DictEng -lin incommensurate_A = compoundA (mkA "incommensurate"); -- from DictEng -lin incommode_V2 = mkV2 (mkV "incommode" "incommodes" "incommoded" "incommoded" "incommoding"); -- from DictEng -lin incommodious_A = mkA "incommodious" ; -lin incommunicado_A = compoundA (mkA "incommunicado"); -- from DictEng -lin incommutability_N = mkN "incommutability" ; -lin incommutable_A = mkA "incommutable" ; -lin incomparable_A = compoundA (mkA "incomparable"); -- from DictEng -lin incomparably_Adv = mkAdv "incomparably" ; -lin incompatibility_N = mkN "incompatibility" "incompatibilities"; -- from DictEng -lin incompatible_A = compoundA (mkA "incompatible"); -- from DictEng -lin incompatibly_Adv = mkAdv "incompatibly" ; -lin incompetence_N = mkN "incompetence" ; -- from DictEng -lin incompetency_N = mkN "incompetency" ; -- from DictEng -lin incompetent_A = compoundA (mkA "incompetent"); -- from DictEng -lin incompetent_N = mkN "incompetent" ; -lin incompetently_Adv = mkAdv "incompetently" ; -lin incomplete_A = compoundA (mkA "incomplete"); -- from DictEng -lin incompletely_Adv = mkAdv "incompletely" ; -lin incompleteness_N = mkN "incompleteness" ; -lin incomprehensibility_N = mkN "incomprehensibility" ; -- from DictEng -lin incomprehensible_A = compoundA (mkA "incomprehensible"); -- from DictEng -lin incomprehension_N = mkN "incomprehension" ; -- from DictEng -lin incompressibility_N = mkN "incompressibility" ; -lin incompressible_A = compoundA (mkA "incompressible"); -- from DictEng -lin incomputable_A = mkA "incomputable" ; -lin inconceivability_N = mkN "inconceivability" ; -lin inconceivable_A = compoundA (mkA "inconceivable"); -- from DictEng -lin inconceivably_Adv = mkAdv "inconceivably" ; -lin inconclusive_A = compoundA (mkA "inconclusive"); -- from DictEng -lin inconclusively_Adv = mkAdv "inconclusively" ; -lin inconclusiveness_N = mkN "inconclusiveness" ; -lin incongruent_A = mkA "incongruent" ; -lin incongruity_N = mkN "incongruity" "incongruities"; -- from DictEng -lin incongruous_A = compoundA (mkA "incongruous"); -- from DictEng -lin incongruously_Adv = mkAdv "incongruously" ; -lin inconsequence_N = mkN "inconsequence" ; -lin inconsequent_A = compoundA (mkA "inconsequent"); -- from DictEng -lin inconsequential_A = compoundA (mkA "inconsequential"); -- from DictEng -lin inconsequentially_Adv = mkAdv "inconsequentially" ; -lin inconsiderable_A = compoundA (mkA "inconsiderable"); -- from DictEng -lin inconsiderate_A = compoundA (mkA "inconsiderate"); -- from DictEng -lin inconsiderately_Adv = mkAdv "inconsiderately" ; -lin inconsideration_N = mkN "inconsideration" ; -lin inconsistency_N = mkN "inconsistency" "inconsistencies"; -- from DictEng -lin inconsistent_A = compoundA (mkA "inconsistent"); -- from DictEng -lin inconsistently_Adv = mkAdv "inconsistently" ; -lin inconsolable_A = compoundA (mkA "inconsolable"); -- from DictEng -lin inconspicuous_A = compoundA (mkA "inconspicuous"); -- from DictEng -lin inconspicuously_Adv = mkAdv "inconspicuously" ; -lin inconspicuousness_N = mkN "inconspicuousness" ; -lin inconstancy_N = mkN "inconstancy" "inconstancies"; -- from DictEng -lin inconstant_A = compoundA (mkA "inconstant"); -- from DictEng -lin incontestable_A = compoundA (mkA "incontestable"); -- from DictEng -lin incontinence_N = mkN "incontinence" ; -- from DictEng -lin incontinent_A = compoundA (mkA "incontinent"); -- from DictEng -lin incontrovertibility_N = mkN "incontrovertibility" ; -lin incontrovertible_A = compoundA (mkA "incontrovertible"); -- from DictEng -lin inconvenience_N = mkN "inconvenience" "inconveniences"; -- from DictEng -lin inconvenience_V2 = mkV2 (mkV "inconvenience" "inconveniences" "inconvenienced" "inconvenienced" "inconveniencing"); -- from DictEng -lin inconvenient_A = compoundA (mkA "inconvenient"); -- from DictEng -lin inconveniently_Adv = mkAdv "inconveniently" ; -lin inconvertibility_N = mkN "inconvertibility" ; -- from DictEng -lin inconvertible_A = compoundA (mkA "inconvertible"); -- from DictEng -lin incoordination_N = mkN "incoordination" ; -lin incorporate_A = compoundA (mkA "incorporate"); -- from DictEng -lin incorporate_V = mkV "incorporate" "incorporates" "incorporated" "incorporated" "incorporating"; -- from DictEng -lin incorporate_V2 = mkV2 (mkV "incorporate" "incorporates" "incorporated" "incorporated" "incorporating"); -- from DictEng -lin incorporated_A = mkA "incorporated" ; -lin incorporation_N = mkN "incorporation" ; -- from DictEng -lin incorporative_A = mkA "incorporative" ; -lin incorporeal_A = compoundA (mkA "incorporeal"); -- from DictEng -lin incorrect_A = compoundA (mkA "incorrect"); -- from DictEng -lin incorrectly_Adv = mkAdv "incorrectly" ; -lin incorrectness_N = mkN "incorrectness" ; -- from DictEng -lin incorrigible_A = compoundA (mkA "incorrigible"); -- from DictEng -lin incorrupt_A = mkA "incorrupt" ; -lin incorruptibility_N = mkN "incorruptibility" ; -- from DictEng -lin incorruptible_A = compoundA (mkA "incorruptible"); -- from DictEng -lin incorruptness_N = mkN "incorruptness" ; -lin increase_N = mkN "increase" "increases"; -- from DictEng -lin increase_V = mkV "increase" "increases" "increased" "increased" "increasing"; -- from DictEng -lin increase_V2 = mkV2 (mkV "increase" "increases" "increased" "increased" "increasing"); -- from DictEng -lin increased_A = mkA "increased" ; -lin increasing_A = mkA "increasing" ; -lin increasing_monotonic_A = compoundA (mkA "increasing monotonic") ; -lin increasingly_Adv = mkAdv "increasingly"; -- from DictEng -lin incredibility_N = mkN "incredibility" ; -- from DictEng -lin incredible_A = compoundA (mkA "incredible"); -- from DictEng -lin incredibly_Adv = mkAdv "incredibly" ; -lin incredulity_N = mkN "incredulity" ; -- from DictEng -lin incredulous_A = compoundA (mkA "incredulous"); -- from DictEng -lin incredulously_Adv = mkAdv "incredulously" ; -lin increment_N = mkN "increment" "increments"; -- from DictEng -lin incremental_A = compoundA (mkA "incremental"); -- from DictEng -lin incriminate_V2 = mkV2 (mkV "incriminate" "incriminates" "incriminated" "incriminated" "incriminating"); -- from DictEng -lin incriminatingly_Adv = mkAdv "incriminatingly" ; -lin incrimination_N = mkN "incrimination" ; -lin incrustation_N = mkN "incrustation" "incrustations"; -- from DictEng -lin incubate_V = mkV "incubate" "incubates" "incubated" "incubated" "incubating"; -- from DictEng -lin incubate_V2 = mkV2 (mkV "incubate" "incubates" "incubated" "incubated" "incubating"); -- from DictEng -lin incubation_N = mkN "incubation" "incubations"; -- from DictEng -lin incubator_N = mkN "incubator" "incubators"; -- from DictEng -lin incubus_N = mkN "incubus" "incubuses"; -- from DictEng -lin inculcate_V2 = mkV2 (mkV "inculcate" "inculcates" "inculcated" "inculcated" "inculcating"); -- from DictEng -lin inculcation_N = mkN "inculcation" ; -lin inculpate_V2 = mkV2 (mkV "inculpate" "inculpates" "inculpated" "inculpated" "inculpating"); -- from DictEng -lin inculpatory_A = mkA "inculpatory" ; -lin incumbency_N = mkN "incumbency" "incumbencies"; -- from DictEng -lin incumbent_A = compoundA (mkA "incumbent"); -- from DictEng -lin incumbent_N = mkN "incumbent" "incumbents"; -- from DictEng -lin incumbent_on_A = compoundA (mkA "incumbent on") ; -lin incur_V2 = mkV2 (mkV "incur" "incurs" "incurred" "incurred" "incurring"); -- from DictEng -lin incurability_N = mkN "incurability" ; -lin incurable_A = compoundA (mkA "incurable"); -- from DictEng -lin incurable_N = mkN "incurable" "incurables"; -- from DictEng -lin incurably_Adv = mkAdv "incurably" ; -lin incurious_A = compoundA (mkA "incurious"); -- from DictEng -lin incurrence_N = mkN "incurrence" ; -lin incurring_N = mkN "incurring" ; -lin incursion_N = mkN "incursion" "incursions"; -- from DictEng -lin incursive_A = mkA "incursive" ; -lin incurvate_A = mkA "incurvate" ; -lin incurvation_N = mkN "incurvation" ; -lin incurved_A = compoundA (mkA "incurved"); -- from DictEng -lin incus_N = mkN "incus" ; -lin indaba_N = mkN "indaba" ; -lin indapamide_N = mkN "indapamide" ; -lin indebted_A = compoundA (mkA "indebted"); -- from DictEng -lin indebtedness_N = mkN "indebtedness" ; -- from DictEng -lin indecency_N = mkN "indecency" "indecencies"; -- from DictEng -lin indecent_A = compoundA (mkA "indecent"); -- from DictEng -lin indecently_Adv = mkAdv "indecently" ; -lin indecipherable_A = compoundA (mkA "indecipherable"); -- from DictEng -lin indecision_N = mkN "indecision" ; -- from DictEng -lin indecisive_A = compoundA (mkA "indecisive"); -- from DictEng -lin indecisively_Adv = mkAdv "indecisively" ; -lin indecisiveness_N = mkN "indecisiveness" ; -lin indecorous_A = compoundA (mkA "indecorous"); -- from DictEng -lin indecorously_Adv = mkAdv "indecorously" ; -lin indecorum_N = mkN "indecorum" ; -- from DictEng -lin indeed_Adv = mkAdv "indeed"; -- from DictEng -lin indefatigability_N = mkN "indefatigability" ; -lin indefatigable_A = compoundA (mkA "indefatigable"); -- from DictEng -lin indefatigably_Adv = mkAdv "indefatigably" ; -lin indefeasible_A = compoundA (mkA "indefeasible"); -- from DictEng -lin indefensible_A = compoundA (mkA "indefensible"); -- from DictEng -lin indefinable_A = compoundA (mkA "indefinable"); -- from DictEng -lin indefinite_A = compoundA (mkA "indefinite"); -- from DictEng -lin indefinitely_Adv = mkAdv "indefinitely" ; -lin indefiniteness_N = mkN "indefiniteness" ; -lin indehiscent_A = mkA "indehiscent" ; -lin indelible_A = compoundA (mkA "indelible"); -- from DictEng -lin indelibly_Adv = mkAdv "indelibly" ; -lin indelicacy_N = mkN "indelicacy" "indelicacies"; -- from DictEng -lin indelicate_A = compoundA (mkA "indelicate"); -- from DictEng -lin indemnification_N = mkN "indemnification" "indemnifications"; -- from DictEng -lin indemnify_V2 = mkV2 (mkV "indemnify" "indemnifies" "indemnified" "indemnified" "indemnifying"); -- from DictEng -lin indemnity_N = mkN "indemnity" "indemnities"; -- from DictEng -lin indene_N = mkN "indene" ; -lin indent_N = mkN "indent" "indents"; -- from DictEng -lin indent_V = mkV "indent" "indents" "indented" "indented" "indenting"; -- from DictEng -lin indent_V2 = mkV2 (mkV "indent" "indents" "indented" "indented" "indenting"); -- from DictEng -lin indentation_N = mkN "indentation" "indentations"; -- from DictEng -lin indenture_N = mkN "indenture" "indentures"; -- from DictEng -lin indenture_V2 = mkV2 (mkV "indenture" "indentures" "indentured" "indentured" "indenturing"); -- from DictEng -lin independence_N = mkN "independence" ; -- from DictEng -lin independent_A = compoundA (mkA "independent"); -- from DictEng -lin independent_N = mkN "independent" "independents"; -- from DictEng -lin independently_Adv = mkAdv "independently" ; -lin indescribable_A = compoundA (mkA "indescribable"); -- from DictEng -lin indestructibility_N = mkN "indestructibility" ; -- from DictEng -lin indestructible_A = compoundA (mkA "indestructible"); -- from DictEng -lin indeterminable_A = compoundA (mkA "indeterminable"); -- from DictEng -lin indeterminably_Adv = mkAdv "indeterminably" ; -lin indeterminacy_N = mkN "indeterminacy" ; -- from DictEng -lin indeterminate_A = compoundA (mkA "indeterminate"); -- from DictEng -lin index_N = mkN "index" "indexes"; -- from DictEng -lin index_V2 = mkV2 (mkV "index" "indexes" "indexed" "indexed" "indexing"); -- from DictEng -lin indexation_N = mkN "indexation" ; -lin indexer_N = mkN "indexer" "indexers"; -- from DictEng -lin indexical_A = mkA "indexical" ; -lin indexing_N = mkN "indexing" ; -lin indexless_A = mkA "indexless" ; -lin india_rubber_N = mkN "india - rubber" "india - rubbers"; -- from DictEng -lin indiaman_N = mkN "indiaman" "indiamen" {- FIXME: guessed plural form -}; -- from DictEng -lin indian_A = compoundA (mkA "indian"); -- from DictEng -lin indian_N = mkN "indian" "indians"; -- from DictEng -lin indicate_V = mkV "indicate"; -- from DictEng -lin indicate_V2 = mkV2 (mkV "indicate" "indicates" "indicated" "indicated" "indicating"); -- from DictEng -lin indicate_VS = mkVS (mkV "indicate"); -- from DictEng -lin indication_N = mkN "indication" "indications"; -- from DictEng -lin indicative_A = compoundA (mkA "indicative"); -- from DictEng -lin indicator_N = mkN "indicator" "indicators"; -- from DictEng -lin indict_V = mkV "indict"; -- from DictEng -lin indict_V2 = mkV2 (mkV "indict" "indicts" "indicted" "indicted" "indicting"); -- from DictEng -lin indictable_A = compoundA (mkA "indictable"); -- from DictEng -lin indiction_N = mkN "indiction" ; -lin indictment_N = mkN "indictment" "indictments"; -- from DictEng -lin indie_A = mkA "indie" ; -lin indie_N = mkN "indie" ; -lin indifference_N = mkN "indifference" ; -- from DictEng -lin indifferent_A = compoundA (mkA "indifferent"); -- from DictEng -lin indifferently_Adv = mkAdv "indifferently" ; -lin indigence_N = mkN "indigence" ; -- from DictEng -lin indigenous_A = compoundA (mkA "indigenous"); -- from DictEng -lin indigenously_Adv = mkAdv "indigenously" ; -lin indigenousness_N = mkN "indigenousness" ; -lin indigent_A = compoundA (mkA "indigent"); -- from DictEng -lin indigestibility_N = mkN "indigestibility" ; -lin indigestible_A = compoundA (mkA "indigestible"); -- from DictEng -lin indigestion_N = mkN "indigestion" ; -- from DictEng -lin indignant_A = compoundA (mkA "indignant"); -- from DictEng -lin indignantly_Adv = mkAdv "indignantly" ; -lin indignation_N = mkN "indignation" ; -- from DictEng -lin indignity_N = mkN "indignity" "indignities"; -- from DictEng -lin indigo_A = mkA "indigo" ; -lin indigo_N = mkN "indigo" ; -- from DictEng -lin indinavir_N = mkN "indinavir" ; -lin indirect_A = compoundA (mkA "indirect"); -- from DictEng -lin indirection_N = mkN "indirection" ; -lin indirectly_Adv = mkAdv "indirectly" ; -lin indirectness_N = mkN "indirectness" ; -- from DictEng -lin indiscernible_A = compoundA (mkA "indiscernible"); -- from DictEng -lin indiscipline_N = mkN "indiscipline" ; -- from DictEng -lin indiscreet_A = compoundA (mkA "indiscreet"); -- from DictEng -lin indiscreetly_Adv = mkAdv "indiscreetly" ; -lin indiscrete_A = compoundA (mkA "indiscrete"); -- from DictEng -lin indiscretion_N = mkN "indiscretion" "indiscretions"; -- from DictEng -lin indiscriminate_A = compoundA (mkA "indiscriminate"); -- from DictEng -lin indispensability_N = mkN "indispensability" ; -- from DictEng -lin indispensable_A = compoundA (mkA "indispensable"); -- from DictEng -lin indisposed_A = compoundA (mkA "indisposed"); -- from DictEng -lin indisposition_N = mkN "indisposition" "indispositions"; -- from DictEng -lin indisputability_N = mkN "indisputability" ; -lin indisputable_A = compoundA (mkA "indisputable"); -- from DictEng -lin indissoluble_A = compoundA (mkA "indissoluble"); -- from DictEng -lin indistinct_A = compoundA (mkA "indistinct"); -- from DictEng -lin indistinctness_N = mkN "indistinctness" ; -- from DictEng -lin indistinguishable_A = compoundA (mkA "indistinguishable"); -- from DictEng -lin indite_V2 = mkV2 (mkV "indite" "indites" "indited" "indited" "inditing"); -- from DictEng -lin indium_N = mkN "indium" ; -lin individual_A = compoundA (mkA "individual"); -- from DictEng -lin individual_N = mkN "individual" "individuals"; -- from DictEng -lin individualism_N = mkN "individualism" ; -- from DictEng -lin individualist_A = mkA "individualist" ; -lin individualist_N = mkN "individualist" "individualists"; -- from DictEng -lin individualistic_A = compoundA (mkA "individualistic"); -- from DictEng -lin individualistically_Adv = mkAdv "individualistically" ; -lin individuality_N = mkN "individuality" "individualities"; -- from DictEng -lin individualization_N = mkN "individualization" ; -lin individualize_V2 = mkV2 (mkV "individualize" "individualizes" "individualized" "individualized" "individualizing"); -- from DictEng -lin individualized_A = mkA "individualized" ; -lin individually_Adv = mkAdv "individually" ; -lin indivisible_A = compoundA (mkA "indivisible"); -- from DictEng -lin indo_european_A = compoundA (mkA "indo - european"); -- from DictEng -lin indocile_A = mkA "indocile" ; -lin indoctrinate_V2 = mkV2 (mkV "indoctrinate" "indoctrinates" "indoctrinated" "indoctrinated" "indoctrinating"); -- from DictEng -lin indoctrination_N = mkN "indoctrination" ; -- from DictEng -lin indolence_N = mkN "indolence" ; -- from DictEng -lin indolent_A = compoundA (mkA "indolent"); -- from DictEng -lin indolently_Adv = mkAdv "indolently" ; -lin indomethacin_N = mkN "indomethacin" ; -lin indomitability_N = mkN "indomitability" ; -lin indomitable_A = compoundA (mkA "indomitable"); -- from DictEng -lin indonesian_A = compoundA (mkA "indonesian"); -- from DictEng -lin indonesian_N = mkN "indonesian" "indonesians"; -- from DictEng -lin indoor_A = compoundA (mkA "indoor"); -- from DictEng -lin indoors_Adv = mkAdv "indoors"; -- from DictEng -lin indorse_V2 = mkV2 (mkV "indorse" "indorses" "indorsed" "indorsed" "indorsing"); -- from DictEng -lin indrawn_A = compoundA (mkA "indrawn"); -- from DictEng -lin indri_N = mkN "indri" ; -lin indubitable_A = compoundA (mkA "indubitable"); -- from DictEng -lin indubitably_Adv = mkAdv "indubitably" ; -lin induce_V2 = mkV2 (mkV "induce" "induces" "induced" "induced" "inducing"); -- from DictEng -lin induce_V2V = mkV2V (mkV "induce") noPrep to_Prep ; -- from DictEng -lin induced_A = mkA "induced" ; -lin inducement_N = mkN "inducement" "inducements"; -- from DictEng -lin inducer_N = mkN "inducer" ; -lin induct_V2 = mkV2 (mkV "induct" "inducts" "inducted" "inducted" "inducting"); -- from DictEng -lin inductee_N = mkN "inductee" ; -lin induction_N = mkN "induction" "inductions"; -- from DictEng -lin inductive_A = compoundA (mkA "inductive"); -- from DictEng -lin inductor_N = mkN "inductor" ; -lin indue_V2 = mkV2 (mkV "indue" "indues" "indued" "indued" "induing"); -- from DictEng -lin indulge_V = mkV "indulge" "indulges" "indulged" "indulged" "indulging"; -- from DictEng -lin indulge_V2 = mkV2 (mkV "indulge" "indulges" "indulged" "indulged" "indulging"); -- from DictEng -lin indulgence_N = mkN "indulgence" "indulgences"; -- from DictEng -lin indulgent_A = compoundA (mkA "indulgent"); -- from DictEng -lin indulgently_Adv = mkAdv "indulgently" ; -lin indumentum_N = mkN "indumentum" ; -lin indusial_A = mkA "indusial" ; -lin indusium_N = mkN "indusium" ; -lin industrial_A = compoundA (mkA "industrial"); -- from DictEng -lin industrial_strength_A = compoundA (mkA "industrial strength") ; -lin industrialism_N = mkN "industrialism" ; -- from DictEng -lin industrialist_N = mkN "industrialist" "industrialists"; -- from DictEng -lin industrialization_N = mkN "industrialization" ; -- from DictEng -lin industrialized_A = compoundA (mkA "industrialized"); -- from DictEng -lin industrially_Adv = mkAdv "industrially" ; -lin industrious_A = compoundA (mkA "industrious"); -- from DictEng -lin industriously_Adv = mkAdv "industriously" ; -lin industry_N = mkN "industry" "industries"; -- from DictEng -lin indweller_N = mkN "indweller" ; -lin indwelling_A = compoundA (mkA "indwelling"); -- from DictEng -lin inebriate_A = compoundA (mkA "inebriate"); -- from DictEng -lin inebriate_N = mkN "inebriate" "inebriates"; -- from DictEng -lin inebriate_V2 = mkV2 (mkV "inebriate" "inebriates" "inebriated" "inebriated" "inebriating"); -- from DictEng -lin inebriation_N = mkN "inebriation" "inebriations"; -- from DictEng -lin inebriety_N = mkN "inebriety" ; -- from DictEng -lin inedible_A = compoundA (mkA "inedible"); -- from DictEng -lin ineffable_A = compoundA (mkA "ineffable"); -- from DictEng -lin ineffably_Adv = mkAdv "ineffably" ; -lin ineffective_A = compoundA (mkA "ineffective"); -- from DictEng -lin ineffectiveness_N = mkN "ineffectiveness" ; -- from DictEng -lin ineffectual_A = compoundA (mkA "ineffectual"); -- from DictEng -lin ineffectuality_N = mkN "ineffectuality" ; -- from DictEng -lin ineffectually_Adv = mkAdv "ineffectually" ; -lin inefficacious_A = mkA "inefficacious" ; -lin inefficaciously_Adv = mkAdv "inefficaciously" ; -lin inefficacy_N = mkN "inefficacy" ; -lin inefficiency_N = mkN "inefficiency" "inefficiencies"; -- from DictEng -lin inefficient_A = compoundA (mkA "inefficient"); -- from DictEng -lin inefficiently_Adv = mkAdv "inefficiently" ; -lin inelaborate_A = mkA "inelaborate" ; -lin inelastic_A = compoundA (mkA "inelastic"); -- from DictEng -lin inelasticity_N = mkN "inelasticity" ; -lin inelegance_N = mkN "inelegance" "inelegances"; -- from DictEng -lin inelegant_A = compoundA (mkA "inelegant"); -- from DictEng -lin inelegantly_Adv = mkAdv "inelegantly" ; -lin ineligibility_N = mkN "ineligibility" ; -- from DictEng -lin ineligible_A = compoundA (mkA "ineligible"); -- from DictEng -lin ineloquently_Adv = mkAdv "ineloquently" ; -lin ineluctability_N = mkN "ineluctability" ; -lin ineluctable_A = compoundA (mkA "ineluctable"); -- from DictEng -lin inept_A = compoundA (mkA "inept"); -- from DictEng -lin ineptitude_N = mkN "ineptitude" "ineptitudes"; -- from DictEng -lin ineptly_Adv = mkAdv "ineptly" ; -lin inequality_N = mkN "inequality" "inequalities"; -- from DictEng -lin inequitable_A = compoundA (mkA "inequitable"); -- from DictEng -lin inequitably_Adv = mkAdv "inequitably" ; -lin inequity_N = mkN "inequity" "inequities"; -- from DictEng -lin ineradicable_A = compoundA (mkA "ineradicable"); -- from DictEng -lin inerrable_A = mkA "inerrable" ; -lin inerrancy_N = mkN "inerrancy" ; -lin inert_A = compoundA (mkA "inert"); -- from DictEng -lin inertia_N = mkN "inertia" ; -- from DictEng -lin inertial_A = mkA "inertial" ; -lin inertness_N = mkN "inertness" ; -lin inescapable_A = compoundA (mkA "inescapable"); -- from DictEng -lin inescapably_Adv = mkAdv "inescapably" ; -lin inessential_A = compoundA (mkA "inessential"); -- from DictEng -lin inessential_N = mkN "inessential" "inessentials"; -- from DictEng -lin inessentiality_N = mkN "inessentiality" ; -lin inestimable_A = compoundA (mkA "inestimable"); -- from DictEng -lin inevitability_N = mkN "inevitability" ; -- from DictEng -lin inevitable_A = compoundA (mkA "inevitable"); -- from DictEng -lin inevitable_N = mkN "inevitable" ; -lin inevitably_Adv = mkAdv "inevitably" ; -lin inexact_A = compoundA (mkA "inexact"); -- from DictEng -lin inexactitude_N = mkN "inexactitude" "inexactitudes"; -- from DictEng -lin inexactness_N = mkN "inexactness" ; -lin inexcusable_A = compoundA (mkA "inexcusable"); -- from DictEng -lin inexcusably_Adv = mkAdv "inexcusably" ; -lin inexhaustible_A = compoundA (mkA "inexhaustible"); -- from DictEng -lin inexorable_A = compoundA (mkA "inexorable"); -- from DictEng -lin inexorably_Adv = mkAdv "inexorably" ; -lin inexpedience_N = mkN "inexpedience" ; -lin inexpediency_N = mkN "inexpediency" ; -- from DictEng -lin inexpedient_A = compoundA (mkA "inexpedient"); -- from DictEng -lin inexpediently_Adv = mkAdv "inexpediently" ; -lin inexpensive_A = compoundA (mkA "inexpensive"); -- from DictEng -lin inexpensiveness_N = mkN "inexpensiveness" ; -lin inexperience_N = mkN "inexperience" ; -- from DictEng -lin inexperienced_A = compoundA (mkA "inexperienced"); -- from DictEng -lin inexpert_A = compoundA (mkA "inexpert"); -- from DictEng -lin inexpiable_A = compoundA (mkA "inexpiable"); -- from DictEng -lin inexplicable_A = compoundA (mkA "inexplicable"); -- from DictEng -lin inexplicitness_N = mkN "inexplicitness" ; -lin inexpressible_A = compoundA (mkA "inexpressible"); -- from DictEng -lin inexpressive_A = mkA "inexpressive" ; -lin inexpressively_Adv = mkAdv "inexpressively" ; -lin inexpungible_A = mkA "inexpungible" ; -lin inexterminable_A = mkA "inexterminable" ; -lin inextinguishable_A = compoundA (mkA "inextinguishable"); -- from DictEng -lin inextricable_A = compoundA (mkA "inextricable"); -- from DictEng -lin inextricably_Adv = mkAdv "inextricably" ; -lin infallibility_N = mkN "infallibility" ; -- from DictEng -lin infallible_A = compoundA (mkA "infallible"); -- from DictEng -lin infamous_A = compoundA (mkA "infamous"); -- from DictEng -lin infamy_N = mkN "infamy" "infamies"; -- from DictEng -lin infancy_N = mkN "infancy" "infancies"; -- from DictEng -lin infant_N = mkN "infant" "infants"; -- from DictEng -lin infanticide_N = mkN "infanticide" ; -- from DictEng -lin infantile_A = compoundA (mkA "infantile"); -- from DictEng -lin infantilism_N = mkN "infantilism" ; -- from DictEng -lin infantry_N = mkN "infantry" "infantries"; -- from DictEng -lin infantryman_N = mkN "infantryman" "infantrymen" {- FIXME: guessed plural form -}; -- from DictEng -lin infarct_N = mkN "infarct" ; -lin infatuate_V2 = mkV2 (mkV "infatuate" "infatuates" "infatuated" "infatuated" "infatuating"); -- from DictEng -lin infatuation_N = mkN "infatuation" "infatuations"; -- from DictEng -lin infeasibility_N = mkN "infeasibility" ; -lin infect_V = mkV "infect"; -- from DictEng -lin infect_V2 = mkV2 (mkV "infect" "infects" "infected" "infected" "infecting"); -- from DictEng -lin infection_N = mkN "infection" "infections"; -- from DictEng -lin infectious_A = compoundA (mkA "infectious"); -- from DictEng -lin infective_A = mkA "infective" ; -lin infelicitous_A = mkA "infelicitous" ; -lin infelicitously_Adv = mkAdv "infelicitously" ; -lin infelicity_N = mkN "infelicity" ; -lin infer_V2 = mkV2 (mkV "infer" "infers" "inferred" "inferred" "inferring"); -- from DictEng -lin inference_N = mkN "inference" "inferences"; -- from DictEng -lin inferential_A = compoundA (mkA "inferential"); -- from DictEng -lin inferior_A = compoundA (mkA "inferior"); -- from DictEng -lin inferior_N = mkN "inferior" "inferiors"; -- from DictEng -lin inferiority_N = mkN "inferiority" ; -- from DictEng -lin infernal_A = compoundA (mkA "infernal"); -- from DictEng -lin infernal_N = mkN "infernal" ; -lin infernally_Adv = mkAdv "infernally" ; -lin inferno_N = mkN "inferno" "infernos"; -- from DictEng -lin infertile_A = compoundA (mkA "infertile"); -- from DictEng -lin infertility_N = mkN "infertility" ; -- from DictEng -lin infest_V2 = mkV2 (mkV "infest" "infests" "infested" "infested" "infesting"); -- from DictEng -lin infestation_N = mkN "infestation" "infestations"; -- from DictEng -lin infidel_N = mkN "infidel" "infidels"; -- from DictEng -lin infidelity_N = mkN "infidelity" "infidelities"; -- from DictEng -lin infield_N = mkN "infield" ; -- from DictEng -lin infielder_N = mkN "infielder" ; -lin infiltrate_V = mkV "infiltrate" "infiltrates" "infiltrated" "infiltrated" "infiltrating"; -- from DictEng -lin infiltrate_V2 = mkV2 (mkV "infiltrate" "infiltrates" "infiltrated" "infiltrated" "infiltrating"); -- from DictEng -lin infiltration_N = mkN "infiltration" ; -- from DictEng -lin infiltrator_N = mkN "infiltrator" ; -lin infinite_A = compoundA (mkA "infinite"); -- from DictEng -lin infinitely_Adv = mkAdv "infinitely" ; -lin infiniteness_N = mkN "infiniteness" ; -lin infinitesimal_A = compoundA (mkA "infinitesimal"); -- from DictEng -lin infinitesimal_N = mkN "infinitesimal" ; -lin infinitival_A = mkA "infinitival" ; -lin infinitive_A = compoundA (mkA "infinitive"); -- from DictEng -lin infinitive_N = mkN "infinitive" "infinitives"; -- from DictEng -lin infinitude_N = mkN "infinitude" "infinitudes"; -- from DictEng -lin infinity_N = mkN "infinity" ; -- from DictEng -lin infirm_A = compoundA (mkA "infirm"); -- from DictEng -lin infirmary_N = mkN "infirmary" "infirmaries"; -- from DictEng -lin infirmity_N = mkN "infirmity" "infirmities"; -- from DictEng -lin infix_N = mkN "infix" ; -lin inflame_V = mkV "inflame" "inflames" "inflamed" "inflamed" "inflaming"; -- from DictEng -lin inflame_V2 = mkV2 (mkV "inflame" "inflames" "inflamed" "inflamed" "inflaming"); -- from DictEng -lin inflamed_A = mkA "inflamed" ; -lin inflammable_A = compoundA (mkA "inflammable"); -- from DictEng -lin inflammation_N = mkN "inflammation" "inflammations"; -- from DictEng -lin inflammatory_A = compoundA (mkA "inflammatory"); -- from DictEng -lin inflatable_A = compoundA (mkA "inflatable"); -- from DictEng -lin inflate_V = mkV "inflate" "inflates" "inflated" "inflated" "inflating"; -- from DictEng -lin inflate_V2 = mkV2 (mkV "inflate" "inflates" "inflated" "inflated" "inflating"); -- from DictEng -lin inflater_N = mkN "inflater" ; -lin inflation_N = mkN "inflation" ; -- from DictEng -lin inflationary_A = compoundA (mkA "inflationary"); -- from DictEng -lin inflect_V2 = mkV2 (mkV "inflect" "inflects" "inflected" "inflected" "inflecting"); -- from DictEng -lin inflected_A = mkA "inflected" ; -lin inflection_N = mkN "inflection" "inflections"; -- from DictEng -lin inflectional_A = compoundA (mkA "inflectional"); -- from DictEng -lin inflexibility_N = mkN "inflexibility" ; -- from DictEng -lin inflexible_A = compoundA (mkA "inflexible"); -- from DictEng -lin inflexibly_Adv = mkAdv "inflexibly" ; -lin inflexion_N = mkN "inflexion" "inflexions"; -- from DictEng -lin inflict_V2 = mkV2 (mkV "inflict" "inflicts" "inflicted" "inflicted" "inflicting"); -- from DictEng -lin infliction_N = mkN "infliction" "inflictions"; -- from DictEng -lin infliximab_N = mkN "infliximab" ; -lin inflorescence_N = mkN "inflorescence" ; -- from DictEng -lin inflow_N = mkN "inflow" "inflows"; -- from DictEng -lin inflowing_A = mkA "inflowing" ; -lin influence_N = mkN "influence" "influences"; -- from DictEng -lin influence_V2 = mkV2 (mkV "influence" "influences" "influenced" "influenced" "influencing"); -- from DictEng -lin influential_A = compoundA (mkA "influential"); -- from DictEng -lin influentially_Adv = mkAdv "influentially" ; -lin influenza_N = mkN "influenza" ; -- from DictEng -lin influx_N = mkN "influx" "influxes"; -- from DictEng -lin info_N = mkN "info" ; -- from DictEng -lin infomercial_N = mkN "infomercial" ; -lin inform_V = mkV "inform" "informs" "informed" "informed" "informing"; -- from DictEng -lin inform_V2 = mkV2 (mkV "inform" "informs" "informed" "informed" "informing"); -- from DictEng -lin informal_A = compoundA (mkA "informal"); -- from DictEng -lin informality_N = mkN "informality" "informalities"; -- from DictEng -lin informally_Adv = mkAdv "informally" ; -lin informant_N = mkN "informant" "informants"; -- from DictEng -lin information_N = mkN "information" ; -- from DictEng -lin informational_A = mkA "informational" ; -lin informative_A = compoundA (mkA "informative"); -- from DictEng -lin informatively_Adv = mkAdv "informatively" ; -lin informed_A = mkA "informed" ; -lin informer_N = mkN "informer" "informers"; -- from DictEng -lin informing_N = mkN "informing" ; -lin infra_Adv = mkAdv "infra"; -- from DictEng -lin infra_dig_A = compoundA (mkA "infra dig"); -- from DictEng -lin infra_red_A = compoundA (mkA "infra - red"); -- from DictEng -lin infraction_N = mkN "infraction" "infractions"; -- from DictEng -lin infrahuman_A = mkA "infrahuman" ; -lin infrangible_A = mkA "infrangible" ; -lin infrared_A = mkA "infrared" ; -lin infrared_N = mkN "infrared" ; -lin infrasonic_A = mkA "infrasonic" ; -lin infrastructure_N = mkN "infrastructure" "infrastructures"; -- from DictEng -lin infrequency_N = mkN "infrequency" ; -- from DictEng -lin infrequent_A = compoundA (mkA "infrequent"); -- from DictEng -lin infrequently_Adv = mkAdv "infrequently" ; -lin infringe_V = mkV "infringe" "infringes" "infringed" "infringed" "infringing"; -- from DictEng -lin infringe_V2 = mkV2 (mkV "infringe" "infringes" "infringed" "infringed" "infringing"); -- from DictEng -lin infringement_N = mkN "infringement" "infringements"; -- from DictEng -lin infructescence_N = mkN "infructescence" ; -lin infundibulum_N = mkN "infundibulum" ; -lin infuriate_V2 = mkV2 (mkV "infuriate" "infuriates" "infuriated" "infuriated" "infuriating"); -- from DictEng -lin infuriation_N = mkN "infuriation" ; -lin infuse_V = mkV "infuse" "infuses" "infused" "infused" "infusing"; -- from DictEng -lin infuse_V2 = mkV2 (mkV "infuse" "infuses" "infused" "infused" "infusing"); -- from DictEng -lin infusion_N = mkN "infusion" "infusions"; -- from DictEng -lin infusorian_N = mkN "infusorian" ; -lin inga_N = mkN "inga" ; -lin ingathering_N = mkN "ingathering" "ingatherings"; -- from DictEng -lin ingenious_A = compoundA (mkA "ingenious"); -- from DictEng -lin ingeniously_Adv = mkAdv "ingeniously" ; -lin ingenue_N = mkN "ingénue" "ingénues"; -- from DictEng -lin ingenuity_N = mkN "ingenuity" ; -- from DictEng -lin ingenuous_A = compoundA (mkA "ingenuous"); -- from DictEng -lin ingenuousness_N = mkN "ingenuousness" ; -- from DictEng -lin ingest_V2 = mkV2 (mkV "ingest" "ingests" "ingested" "ingested" "ingesting"); -- from DictEng -lin ingesta_N = mkN "ingesta" ; -lin ingle_nook_N = mkN "ingle - nook" "ingle - nooks"; -- from DictEng -lin inglorious_A = compoundA (mkA "inglorious"); -- from DictEng -lin ingoing_A = compoundA (mkA "ingoing"); -- from DictEng -lin ingot_N = mkN "ingot" "ingots"; -- from DictEng -lin ingraft_V2 = mkV2 (mkV "ingraft" "ingrafts" "ingrafted" "ingrafted" "ingrafting"); -- from DictEng -lin ingrained_A = compoundA (mkA "ingrained"); -- from DictEng -lin ingrate_N = mkN "ingrate" ; -lin ingratiate_V2 = mkV2 (mkV "ingratiate" "ingratiates" "ingratiated" "ingratiated" "ingratiating"); -- from DictEng -lin ingratiating_A = mkA "ingratiating" ; -lin ingratiatingly_Adv = mkAdv "ingratiatingly"; -- from DictEng -lin ingratiation_N = mkN "ingratiation" ; -lin ingratitude_N = mkN "ingratitude" ; -- from DictEng -lin ingredient_N = mkN "ingredient" "ingredients"; -- from DictEng -lin ingress_N = mkN "ingress" ; -- from DictEng -lin ingrowing_A = compoundA (mkA "ingrowing"); -- from DictEng -lin ingrowth_N = mkN "ingrowth" ; -lin inguinal_A = mkA "inguinal" ; -lin inhabit_V2 = mkV2 (mkV "inhabit" "inhabits" "inhabited" "inhabited" "inhabiting"); -- from DictEng -lin inhabitable_A = compoundA (mkA "inhabitable"); -- from DictEng -lin inhabitancy_N = mkN "inhabitancy" ; -lin inhabitant_N = mkN "inhabitant" "inhabitants"; -- from DictEng -lin inhabited_A = mkA "inhabited" ; -lin inhalant_A = mkA "inhalant" ; -lin inhalant_N = mkN "inhalant" ; -lin inhalation_N = mkN "inhalation" "inhalations"; -- from DictEng -lin inhale_V = mkV "inhale" "inhales" "inhaled" "inhaled" "inhaling"; -- from DictEng -lin inhale_V2 = mkV2 (mkV "inhale" "inhales" "inhaled" "inhaled" "inhaling"); -- from DictEng -lin inhaler_N = mkN "inhaler" "inhalers"; -- from DictEng -lin inharmonious_A = compoundA (mkA "inharmonious"); -- from DictEng -lin inherence_N = mkN "inherence" ; -lin inherent_A = compoundA (mkA "inherent"); -- from DictEng -lin inherently_Adv = mkAdv "inherently" ; -lin inherit_V = mkV "inherit" "inherits" "inherited" "inherited" "inheriting"; -- from DictEng -lin inherit_V2 = mkV2 (mkV "inherit" "inherits" "inherited" "inherited" "inheriting"); -- from DictEng -lin inheritable_A = mkA "inheritable" ; -lin inheritance_N = mkN "inheritance" "inheritances"; -- from DictEng -lin inheriting_A = mkA "inheriting" ; -lin inheritor_N = mkN "inheritor" "inheritors"; -- from DictEng -lin inhibit_V2 = mkV2 (mkV "inhibit" "inhibits" "inhibited" "inhibited" "inhibiting"); -- from DictEng -lin inhibited_A = mkA "inhibited" ; -lin inhibition_N = mkN "inhibition" "inhibitions"; -- from DictEng -lin inhibitor_N = mkN "inhibitor" "inhibitors"; -- from DictEng -lin inhibitory_A = compoundA (mkA "inhibitory"); -- from DictEng -lin inhomogeneity_N = mkN "inhomogeneity" ; -lin inhomogeneous_A = mkA "inhomogeneous" ; -lin inhospitable_A = compoundA (mkA "inhospitable"); -- from DictEng -lin inhospitableness_N = mkN "inhospitableness" ; -lin inhospitably_Adv = mkAdv "inhospitably" ; -lin inhospitality_N = mkN "inhospitality" ; -lin inhuman_A = compoundA (mkA "inhuman"); -- from DictEng -lin inhumane_A = compoundA (mkA "inhumane"); -- from DictEng -lin inhumanely_Adv = mkAdv "inhumanely" ; -lin inhumaneness_N = mkN "inhumaneness" ; -lin inhumanity_N = mkN "inhumanity" "inhumanities"; -- from DictEng -lin inimical_A = compoundA (mkA "inimical"); -- from DictEng -lin inimitable_A = compoundA (mkA "inimitable"); -- from DictEng -lin inimitably_Adv = mkAdv "inimitably" ; -lin inion_N = mkN "inion" ; -lin iniquitous_A = compoundA (mkA "iniquitous"); -- from DictEng -lin iniquitously_Adv = mkAdv "iniquitously" ; -lin iniquity_N = mkN "iniquity" "iniquities"; -- from DictEng -lin initial_A = compoundA (mkA "initial"); -- from DictEng -lin initial_N = mkN "initial" "initials"; -- from DictEng -lin initial_V2 = mkV2 (mkV "initial" "initials" "initialled" "initialled" "initialling"); -- from DictEng -lin initially_Adv = mkAdv "initially" ; -lin initiate_A = compoundA (mkA "initiate"); -- from DictEng -lin initiate_N = mkN "initiate" "initiates"; -- from DictEng -lin initiate_V2 = mkV2 (mkV "initiate" "initiates" "initiated" "initiated" "initiating"); -- from DictEng -lin initiation_N = mkN "initiation" ; -- from DictEng -lin initiative_N = mkN "initiative" "initiatives"; -- from DictEng -lin inject_V2 = mkV2 (mkV "inject" "injects" "injected" "injected" "injecting"); -- from DictEng -lin injectable_A = mkA "injectable" ; -lin injection_N = mkN "injection" "injections"; -- from DictEng -lin injector_N = mkN "injector" ; -lin injudicious_A = compoundA (mkA "injudicious"); -- from DictEng -lin injudiciously_Adv = mkAdv "injudiciously" ; -lin injudiciousness_N = mkN "injudiciousness" ; -lin injunction_N = mkN "injunction" "injunctions"; -- from DictEng -lin injure_V2 = mkV2 (mkV "injure" "injures" "injured" "injured" "injuring"); -- from DictEng -lin injured_A = compoundA (mkA "injured"); -- from DictEng -lin injurious_A = compoundA (mkA "injurious"); -- from DictEng -lin injuriously_Adv = mkAdv "injuriously" ; -lin injury_N = mkN "injury" "injuries"; -- from DictEng -lin injustice_N = mkN "injustice" "injustices"; -- from DictEng -lin ink_N = mkN "ink" "inks"; -- from DictEng -lin ink_V = mkV "ink" ; -lin ink_V2 = mkV2 (mkV "ink" "inks" "inked" "inked" "inking"); -- from DictEng -lin ink_black_A = compoundA (mkA "ink black") ; -lin ink_jet_A = compoundA (mkA "ink jet") ; -lin ink_bottle_N = mkN "ink - bottle" "ink - bottles"; -- from DictEng -lin ink_pad_N = mkN "ink - pad" "ink - pads"; -- from DictEng -lin ink_pot_N = mkN "ink - pot" "ink - pots"; -- from DictEng -lin inkberry_N = mkN "inkberry" ; -lin inkblot_N = mkN "inkblot" ; -lin inkle_N = mkN "inkle" ; -lin inkling_N = mkN "inkling" "inklings"; -- from DictEng -lin inkstand_N = mkN "inkstand" "inkstands"; -- from DictEng -lin inkwell_N = mkN "inkwell" "inkwells"; -- from DictEng -lin inky_A = mkA "inky" "inkier"; -- from DictEng -lin inlaid_A = mkA "inlaid" ; -lin inland_A = compoundA (mkA "inland"); -- from DictEng -lin inland_Adv = mkAdv "inland"; -- from DictEng -lin inlay_N = mkN "inlay" "inlays"; -- from DictEng -lin inlay_V2 = mkV2 (mkV "in" IrregEng.lay_V); -- from DictEng -lin inlet_N = mkN "inlet" "inlets"; -- from DictEng -lin inmate_N = mkN "inmate" "inmates"; -- from DictEng -lin inmost_A = compoundA (mkA "inmost"); -- from DictEng -lin inn_N = mkN "inn" "inns"; -- from DictEng -lin innate_A = compoundA (mkA "innate"); -- from DictEng -lin innately_Adv = mkAdv "innately" ; -lin innateness_N = mkN "innateness" ; -lin inner_A = compoundA (mkA "inner"); -- from DictEng -lin innermost_A = compoundA (mkA "innermost"); -- from DictEng -lin innervation_N = mkN "innervation" ; -lin inning_N = mkN "inning" "innings"; -- from DictEng -lin innings_N = mkN "innings" "innings"; -- from DictEng -lin innkeeper_N = mkN "innkeeper" "innkeepers"; -- from DictEng -lin innocence_N = mkN "innocence" ; -- from DictEng -lin innocency_N = mkN "innocency" ; -lin innocent_A = compoundA (mkA "innocent"); -- from DictEng -lin innocent_N = mkN "innocent" "innocents"; -- from DictEng -lin innocently_Adv = mkAdv "innocently" ; -lin innocuous_A = compoundA (mkA "innocuous"); -- from DictEng -lin innovate_V = mkV "innovate" "innovates" "innovated" "innovated" "innovating"; -- from DictEng -lin innovate_V2 = mkV2 (mkV "innovate" "innovates" "innovated" "innovated" "innovating"); -- from DictEng -lin innovation_N = mkN "innovation" "innovations"; -- from DictEng -lin innovative_A = mkA "innovative" ; -lin innovativeness_N = mkN "innovativeness" ; -lin innovator_N = mkN "innovator" "innovators"; -- from DictEng -lin innoxious_A = mkA "innoxious" ; -lin innuendo_N = mkN "innuendo" "innuendoes"; -- from DictEng -lin innumerable_A = compoundA (mkA "innumerable"); -- from DictEng -lin innumerableness_N = mkN "innumerableness" ; -lin innumerate_A = mkA "innumerate" ; -lin inoculant_N = mkN "inoculant" ; -lin inoculate_V2 = mkV2 (mkV "inoculate" "inoculates" "inoculated" "inoculated" "inoculating"); -- from DictEng -lin inoculating_N = mkN "inoculating" ; -lin inoculation_N = mkN "inoculation" "inoculations"; -- from DictEng -lin inoculator_N = mkN "inoculator" ; -lin inoffensive_A = compoundA (mkA "inoffensive"); -- from DictEng -lin inoffensively_Adv = mkAdv "inoffensively" ; -lin inoperable_A = compoundA (mkA "inoperable"); -- from DictEng -lin inoperative_A = compoundA (mkA "inoperative"); -- from DictEng -lin inopportune_A = compoundA (mkA "inopportune"); -- from DictEng -lin inopportunely_Adv = mkAdv "inopportunely" ; -lin inopportuneness_N = mkN "inopportuneness" ; -lin inordinate_A = compoundA (mkA "inordinate"); -- from DictEng -lin inordinately_Adv = mkAdv "inordinately" ; -lin inorganic_A = compoundA (mkA "inorganic"); -- from DictEng -lin inorganically_Adv = mkAdv "inorganically"; -- from DictEng -lin inosine_N = mkN "inosine" ; -lin inositol_N = mkN "inositol" ; -lin inpatient_N = mkN "inpatient" ; -lin inpouring_A = compoundA (mkA "inpouring"); -- from DictEng -lin inpouring_N = mkN "inpouring" "inpourings"; -- from DictEng -lin input_N = mkN "input" "inputs"; -- from DictEng -lin inquest_N = mkN "inquest" "inquests"; -- from DictEng -lin inquietude_N = mkN "inquietude" ; -- from DictEng -lin inquire_V = mkV "inquire" "inquires" "inquired" "inquired" "inquiring"; -- from DictEng -lin inquire_V2 = mkV2 (mkV "inquire" "inquires" "inquired" "inquired" "inquiring"); -- from DictEng -lin inquire_V2Q = mkV2Q (mkV "inquire") noPrep; -lin inquirer_N = mkN "inquirer" "inquirers"; -- from DictEng -lin inquiring_A = compoundA (mkA "inquiring"); -- from DictEng -lin inquiringly_Adv = mkAdv "inquiringly" ; -lin inquiry_N = mkN "inquiry" "inquiries"; -- from DictEng -lin inquisition_N = mkN "inquisition" "inquisitions"; -- from DictEng -lin inquisitive_A = compoundA (mkA "inquisitive"); -- from DictEng -lin inquisitiveness_N = mkN "inquisitiveness" ; -- from DictEng -lin inquisitor_N = mkN "inquisitor" "inquisitors"; -- from DictEng -lin inquisitorial_A = compoundA (mkA "inquisitorial"); -- from DictEng -lin inquisitory_A = mkA "inquisitory" ; -lin inroad_N = mkN "inroad" "inroads"; -- from DictEng -lin inrush_N = mkN "inrush" "inrushes"; -- from DictEng -lin insalubrious_A = mkA "insalubrious" ; -lin insalubrity_N = mkN "insalubrity" ; -lin insane_A = compoundA (mkA "insane"); -- from DictEng -lin insanely_Adv = mkAdv "insanely" ; -lin insanitary_A = compoundA (mkA "insanitary"); -- from DictEng -lin insanity_N = mkN "insanity" ; -- from DictEng -lin insatiable_A = compoundA (mkA "insatiable"); -- from DictEng -lin insatiably_Adv = mkAdv "insatiably" ; -lin insatiate_A = compoundA (mkA "insatiate"); -- from DictEng -lin inscribe_V = mkV "inscribe" ; -lin inscribe_V2 = mkV2 (mkV "inscribe" "inscribes" "inscribed" "inscribed" "inscribing"); -- from DictEng -lin inscribed_A = mkA "inscribed" ; -lin inscription_N = mkN "inscription" "inscriptions"; -- from DictEng -lin inscriptive_A = mkA "inscriptive" ; -lin inscriptively_Adv = mkAdv "inscriptively" ; -lin inscrutability_N = mkN "inscrutability" ; -lin inscrutable_A = compoundA (mkA "inscrutable"); -- from DictEng -lin inscrutably_Adv = mkAdv "inscrutably" ; -lin insect_N = mkN "insect" "insects"; -- from DictEng -lin insect_powder_N = mkN "insect - powder" "insect - powders"; -- from DictEng -lin insectan_A = mkA "insectan" ; -lin insecticidal_A = mkA "insecticidal" ; -lin insecticidally_Adv = mkAdv "insecticidally" ; -lin insecticide_N = mkN "insecticide" "insecticides"; -- from DictEng -lin insectifuge_N = mkN "insectifuge" ; -lin insectivore_N = mkN "insectivore" ; -lin insectivorous_A = compoundA (mkA "insectivorous"); -- from DictEng -lin insecure_A = compoundA (mkA "insecure"); -- from DictEng -lin insecurely_Adv = mkAdv "insecurely" ; -lin insecureness_N = mkN "insecureness" ; -lin insecurity_N = mkN "insecurity" ; -- from DictEng -lin inseminate_V2 = mkV2 (mkV "inseminate" "inseminates" "inseminated" "inseminated" "inseminating"); -- from DictEng -lin insemination_N = mkN "insemination" ; -- from DictEng -lin insensate_A = compoundA (mkA "insensate"); -- from DictEng -lin insensately_Adv = mkAdv "insensately" ; -lin insensibility_N = mkN "insensibility" ; -- from DictEng -lin insensible_A = compoundA (mkA "insensible"); -- from DictEng -lin insensitive_A = compoundA (mkA "insensitive"); -- from DictEng -lin insensitively_Adv = mkAdv "insensitively" ; -lin insensitivity_N = mkN "insensitivity" ; -- from DictEng -lin insentience_N = mkN "insentience" ; -lin insentient_A = compoundA (mkA "insentient"); -- from DictEng -lin inseparable_A = compoundA (mkA "inseparable"); -- from DictEng -lin inseparably_Adv = mkAdv "inseparably" ; -lin insert_N = mkN "insert" "inserts"; -- from DictEng -lin insert_V2 = mkV2 (mkV "insert" "inserts" "inserted" "inserted" "inserting"); -- from DictEng -lin insertion_N = mkN "insertion" "insertions"; -- from DictEng -lin inset_N = mkN "inset" "insets"; -- from DictEng -lin inset_V2 = mkV2 (mkV "in" IrregEng.set_V); -- from DictEng -lin inshore_A = compoundA (mkA "inshore"); -- from DictEng -lin inshore_Adv = mkAdv "inshore"; -- from DictEng -lin inside_A = compoundA (mkA "inside"); -- from DictEng -lin inside_Adv = mkAdv "inside"; -- from DictEng -lin inside_N = mkN "inside" "insides"; -- from DictEng -lin inside_Prep = mkPrep "inside"; -- from DictEng -lin inside_out_Adv = mkAdv "inside out" ; -lin insider_N = mkN "insider" "insiders"; -- from DictEng -lin insidious_A = compoundA (mkA "insidious"); -- from DictEng -lin insidiously_Adv = mkAdv "insidiously" ; -lin insidiousness_N = mkN "insidiousness" ; -- from DictEng -lin insight_N = mkN "insight" "insights"; -- from DictEng -lin insightful_A = mkA "insightful" ; -lin insightfulness_N = mkN "insightfulness" ; -lin insignia_N = mkN "insignia" ; -lin insignificance_N = mkN "insignificance" ; -- from DictEng -lin insignificant_A = compoundA (mkA "insignificant"); -- from DictEng -lin insignificantly_Adv = mkAdv "insignificantly" ; -lin insincere_A = compoundA (mkA "insincere"); -- from DictEng -lin insincerely_Adv = mkAdv "insincerely" ; -lin insincerity_N = mkN "insincerity" ; -- from DictEng -lin insinuate_V2 = mkV2 (mkV "insinuate" "insinuates" "insinuated" "insinuated" "insinuating"); -- from DictEng -lin insinuatingly_Adv = mkAdv "insinuatingly"; -- from DictEng -lin insinuation_N = mkN "insinuation" "insinuations"; -- from DictEng -lin insipid_A = compoundA (mkA "insipid"); -- from DictEng -lin insipidity_N = mkN "insipidity" ; -- from DictEng -lin insipidly_Adv = mkAdv "insipidly" ; -lin insipidness_N = mkN "insipidness" ; -- from DictEng -lin insist_V = mkV "insist" "insists" "insisted" "insisted" "insisting"; -- from DictEng -lin insist_V2 = mkV2 (mkV "insist" "insists" "insisted" "insisted" "insisting"); -- from DictEng -lin insist_VS = mkVS (mkV "insist" "insists" "insisted" "insisted" "insisting"); -- from DictEng -lin insistence_N = mkN "insistence" ; -- from DictEng -lin insistent_A = compoundA (mkA "insistent"); -- from DictEng -lin insistently_Adv = mkAdv "insistently" ; -lin insofar_Adv = mkAdv "insofar"; -- from DictEng -lin insolation_N = mkN "insolation" ; -lin insole_N = mkN "insole" "insoles"; -- from DictEng -lin insolence_N = mkN "insolence" ; -- from DictEng -lin insolent_A = compoundA (mkA "insolent"); -- from DictEng -lin insolently_Adv = mkAdv "insolently" ; -lin insolubility_N = mkN "insolubility" ; -lin insoluble_A = compoundA (mkA "insoluble"); -- from DictEng -lin insolvable_A = mkA "insolvable" ; -lin insolvency_N = mkN "insolvency" ; -- from DictEng -lin insolvent_A = compoundA (mkA "insolvent"); -- from DictEng -lin insolvent_N = mkN "insolvent" "insolvents"; -- from DictEng -lin insomnia_N = mkN "insomnia" ; -- from DictEng -lin insomniac_A = mkA "insomniac" ; -lin insomniac_N = mkN "insomniac" "insomniacs"; -- from DictEng -lin insomuch_Adv = mkAdv "insomuch"; -- from DictEng -lin insouciance_N = mkN "insouciance" ; -- from DictEng -lin insouciant_A = compoundA (mkA "insouciant"); -- from DictEng -lin inspan_V2 = mkV2 (mkV "inspan" "inspans" "inspanned" "inspanned" "inspanning"); -- from DictEng -lin inspect_V2 = mkV2 (mkV "inspect" "inspects" "inspected" "inspected" "inspecting"); -- from DictEng -lin inspection_N = mkN "inspection" "inspections"; -- from DictEng -lin inspector_N = mkN "inspector" "inspectors"; -- from DictEng -lin inspectorate_N = mkN "inspectorate" "inspectorates"; -- from DictEng -lin inspectorship_N = mkN "inspectorship" ; -lin inspiration_N = mkN "inspiration" "inspirations"; -- from DictEng -lin inspirational_A = compoundA (mkA "inspirational"); -- from DictEng -lin inspirationally_Adv = mkAdv "inspirationally" ; -lin inspiratory_A = mkA "inspiratory" ; -lin inspire_V2 = mkV2 (mkV "inspire" "inspires" "inspired" "inspired" "inspiring"); -- from DictEng -lin inspire_V2V = mkV2V (mkV "inspire") noPrep to_Prep ; -- from DictEng -lin inspired_A = compoundA (mkA "inspired"); -- from DictEng -lin inspiring_A = mkA "inspiring" ; -lin inspissation_N = mkN "inspissation" ; -lin instability_N = mkN "instability" "instabilities"; -- from DictEng -lin install_V = mkV "install"; -- from DictEng -lin install_V2 = mkV2 (mkV "install" "installs" "installed" "installed" "installing"); -- from DictEng -lin installation_N = mkN "installation" "installations"; -- from DictEng -lin installment_N = mkN "installment" ; -lin instalment_N = mkN "instalment" "instalments"; -- from DictEng -lin instance_N = mkN "instance" "instances"; -- from DictEng -lin instance_V2 = mkV2 (mkV "instance" "instances" "instanced" "instanced" "instancing"); -- from DictEng -lin instant_A = compoundA (mkA "instant"); -- from DictEng -lin instant_N = mkN "instant" "instants"; -- from DictEng -lin instantaneous_A = compoundA (mkA "instantaneous"); -- from DictEng -lin instantaneously_Adv = mkAdv "instantaneously" ; -lin instantiation_N = mkN "instantiation" ; -lin instar_N = mkN "instar" ; -lin instead_Adv = mkAdv "instead"; -- from DictEng -lin instep_N = mkN "instep" "insteps"; -- from DictEng -lin instigate_V2 = mkV2 (mkV "instigate" "instigates" "instigated" "instigated" "instigating"); -- from DictEng -lin instigation_N = mkN "instigation" "instigations"; -- from DictEng -lin instigator_N = mkN "instigator" "instigators"; -- from DictEng -lin instil_V2 = mkV2 (mkV "instil" "instils" "instilled" "instilled" "instilling"); -- from DictEng -lin instillation_N = mkN "instillation" "instillations"; -- from DictEng -lin instillator_N = mkN "instillator" ; -lin instinct_A = compoundA (mkA "instinct"); -- from DictEng -lin instinct_N = mkN "instinct" "instincts"; -- from DictEng -lin instinctive_A = compoundA (mkA "instinctive"); -- from DictEng -lin instinctively_Adv = mkAdv "instinctively" ; -lin institute_N = mkN "institute" "institutes"; -- from DictEng -lin institute_V2 = mkV2 (mkV "institute" "institutes" "instituted" "instituted" "instituting"); -- from DictEng -lin institution_N = mkN "institution" "institutions"; -- from DictEng -lin institutional_A = compoundA (mkA "institutional"); -- from DictEng -lin institutionalize_V2 = mkV2 (mkV "institutionalize" "institutionalizes" "institutionalized" "institutionalized" "institutionalizing"); -- from DictEng -lin institutionalized_A = mkA "institutionalized" ; -lin institutionally_Adv = mkAdv "institutionally" ; -lin instroke_N = mkN "instroke" ; -lin instruct_V2 = mkV2 (mkV "instruct" "instructs" "instructed" "instructed" "instructing"); -- from DictEng -lin instruction_N = mkN "instruction" "instructions"; -- from DictEng -lin instructional_A = compoundA (mkA "instructional"); -- from DictEng -lin instructive_A = compoundA (mkA "instructive"); -- from DictEng -lin instructor_N = mkN "instructor" "instructors"; -- from DictEng -lin instructorship_N = mkN "instructorship" ; -lin instructress_N = mkN "instructress" "instructresses"; -- from DictEng -lin instrument_N = mkN "instrument" "instruments"; -- from DictEng -lin instrumental_A = compoundA (mkA "instrumental"); -- from DictEng -lin instrumentalism_N = mkN "instrumentalism" ; -lin instrumentalist_N = mkN "instrumentalist" "instrumentalists"; -- from DictEng -lin instrumentality_N = mkN "instrumentality" ; -- from DictEng -lin instrumentation_N = mkN "instrumentation" ; -- from DictEng -lin insubordinate_A = compoundA (mkA "insubordinate"); -- from DictEng -lin insubordination_N = mkN "insubordination" "insubordinations"; -- from DictEng -lin insubstantial_A = compoundA (mkA "insubstantial"); -- from DictEng -lin insubstantiality_N = mkN "insubstantiality" ; -lin insubstantially_Adv = mkAdv "insubstantially" ; -lin insufferable_A = compoundA (mkA "insufferable"); -- from DictEng -lin insufficiency_N = mkN "insufficiency" ; -- from DictEng -lin insufficient_A = compoundA (mkA "insufficient"); -- from DictEng -lin insufficiently_Adv = mkAdv "insufficiently" ; -lin insufflation_N = mkN "insufflation" ; -lin insular_A = compoundA (mkA "insular"); -- from DictEng -lin insularism_N = mkN "insularism" ; -- from DictEng -lin insularity_N = mkN "insularity" ; -- from DictEng -lin insulate_V2 = mkV2 (mkV "insulate" "insulates" "insulated" "insulated" "insulating"); -- from DictEng -lin insulation_N = mkN "insulation" ; -- from DictEng -lin insulator_N = mkN "insulator" "insulators"; -- from DictEng -lin insulin_N = mkN "insulin" ; -- from DictEng -lin insult_N = mkN "insult" "insults"; -- from DictEng -lin insult_V2 = mkV2 (mkV "insult" "insults" "insulted" "insulted" "insulting"); -- from DictEng -lin insulting_A = compoundA (mkA "insulting"); -- from DictEng -lin insultingly_Adv = mkAdv "insultingly" ; -lin insuperable_A = compoundA (mkA "insuperable"); -- from DictEng -lin insuperably_Adv = mkAdv "insuperably" ; -lin insupportable_A = compoundA (mkA "insupportable"); -- from DictEng -lin insurability_N = mkN "insurability" ; -lin insurable_A = mkA "insurable" ; -lin insurance_N = mkN "insurance" "insurances"; -- from DictEng -lin insure_V = mkV "insure" "insures" "insured" "insured" "insuring"; -- from DictEng -lin insure_V2 = mkV2 (mkV "insure" "insures" "insured" "insured" "insuring"); -- from DictEng -lin insure_VS = mkVS (mkV "insure" "insures" "insured" "insured" "insuring"); -- from DictEng -lin insured_A = mkA "insured" ; -lin insured_N = mkN "insured" ; -lin insurgency_N = mkN "insurgency" ; -lin insurgent_A = compoundA (mkA "insurgent"); -- from DictEng -lin insurgent_N = mkN "insurgent" "insurgents"; -- from DictEng -lin insurmountable_A = compoundA (mkA "insurmountable"); -- from DictEng -lin insurrection_N = mkN "insurrection" "insurrections"; -- from DictEng -lin insurrectional_A = mkA "insurrectional" ; -lin insurrectionism_N = mkN "insurrectionism" ; -lin intact_A = compoundA (mkA "intact"); -- from DictEng -lin intactness_N = mkN "intactness" ; -lin intaglio_N = mkN "intaglio" "intaglios"; -- from DictEng -lin intake_N = mkN "intake" "intakes"; -- from DictEng -lin intangibility_N = mkN "intangibility" ; -- from DictEng -lin intangible_A = compoundA (mkA "intangible"); -- from DictEng -lin intangible_N = mkN "intangible" ; -lin intangibles_N = mkN "intangibles" "intangibless"; -- from DictEng -lin integer_N = mkN "integer" "integers"; -- from DictEng -lin integral_A = compoundA (mkA "integral"); -- from DictEng -lin integral_N = mkN "integral" ; -lin integrally_Adv = mkAdv "integrally" ; -lin integrate_V = mkV "integrate"; -- from DictEng -lin integrate_V2 = mkV2 (mkV "integrate" "integrates" "integrated" "integrated" "integrating"); -- from DictEng -lin integrated_A = mkA "integrated" ; -lin integration_N = mkN "integration" ; -- from DictEng -lin integrative_A = mkA "integrative" ; -lin integrator_N = mkN "integrator" ; -lin integrity_N = mkN "integrity" ; -- from DictEng -lin integument_N = mkN "integument" "integuments"; -- from DictEng -lin integumentary_A = mkA "integumentary" ; -lin intellect_N = mkN "intellect" "intellects"; -- from DictEng -lin intellectual_A = compoundA (mkA "intellectual"); -- from DictEng -lin intellectual_N = mkN "intellectual" "intellectuals"; -- from DictEng -lin intellectualization_N = mkN "intellectualization" ; -lin intellectually_Adv = mkAdv "intellectually" ; -lin intelligence_N = mkN "intelligence" ; -- from DictEng -lin intelligent_A = compoundA (mkA "intelligent"); -- from DictEng -lin intelligently_Adv = mkAdv "intelligently" ; -lin intelligentsia_N = mkN "intelligentsia" "intelligentsias"; -- from DictEng -lin intelligibility_N = mkN "intelligibility" ; -- from DictEng -lin intelligible_A = compoundA (mkA "intelligible"); -- from DictEng -lin intelligibly_Adv = mkAdv "intelligibly" ; -lin intemperance_N = mkN "intemperance" ; -- from DictEng -lin intemperate_A = compoundA (mkA "intemperate"); -- from DictEng -lin intend_V = mkV "intend"; -- from DictEng -lin intend_V2 = mkV2 (mkV "intend" "intends" "intended" "intended" "intending"); -- from DictEng -lin intend_VS = mkVS (mkV "intend"); -- from DictEng -lin intend_VV = mkVV (mkV "intend"); -- from DictEng -lin intended_A = mkA "intended" ; -lin intense_A = compoundA (mkA "intense"); -- from DictEng -lin intensely_Adv = mkAdv "intensely" ; -lin intensification_N = mkN "intensification" "intensifications"; -- from DictEng -lin intensified_A = mkA "intensified" ; -lin intensifier_N = mkN "intensifier" ; -lin intensify_V = mkV "intensify" "intensifies" "intensified" "intensified" "intensifying"; -- from DictEng -lin intensify_V2 = mkV2 (mkV "intensify" "intensifies" "intensified" "intensified" "intensifying"); -- from DictEng -lin intensifying_A = mkA "intensifying" ; -lin intension_N = mkN "intension" ; -lin intensional_A = mkA "intensional" ; -lin intensity_N = mkN "intensity" "intensities"; -- from DictEng -lin intensive_A = compoundA (mkA "intensive"); -- from DictEng -lin intensively_Adv = mkAdv "intensively" ; -lin intent_A = compoundA (mkA "intent"); -- from DictEng -lin intent_N = mkN "intent" "intents"; -- from DictEng -lin intention_N = mkN "intention" "intentions"; -- from DictEng -lin intentional_A = compoundA (mkA "intentional"); -- from DictEng -lin intentionality_N = mkN "intentionality" ; -lin intentionally_Adv = mkAdv "intentionally" ; -lin intently_Adv = mkAdv "intently" ; -lin intentness_N = mkN "intentness" ; -- from DictEng -lin inter_V2 = mkV2 (mkV "inter" "inters" "interred" "interred" "interring"); -- from DictEng -lin inter_alia_Adv = mkAdv "inter alia"; -- from DictEng -lin interact_V = mkV "interact" "interacts" "interacted" "interacted" "interacting"; -- from DictEng -lin interaction_N = mkN "interaction" "interactions"; -- from DictEng -lin interactional_A = mkA "interactional" ; -lin interactive_A = compoundA (mkA "interactive"); -- from DictEng -lin interbred_A = mkA "interbred" ; -lin interbreed_V = mkV "inter" IrregEng.breed_V; -- from DictEng -lin interbreed_V2 = mkV2 (mkV "inter" IrregEng.breed_V); -- from DictEng -lin intercalary_A = compoundA (mkA "intercalary"); -- from DictEng -lin intercede_V = mkV "intercede" "intercedes" "interceded" "interceded" "interceding"; -- from DictEng -lin intercellular_A = mkA "intercellular" ; -lin intercept_N = mkN "intercept" ; -lin intercept_V2 = mkV2 (mkV "intercept" "intercepts" "intercepted" "intercepted" "intercepting"); -- from DictEng -lin interception_N = mkN "interception" "interceptions"; -- from DictEng -lin interceptor_N = mkN "interceptor" "interceptors"; -- from DictEng -lin intercession_N = mkN "intercession" "intercessions"; -- from DictEng -lin interchange_N = mkN "interchange" "interchanges"; -- from DictEng -lin interchange_V2 = mkV2 (mkV "interchange" "interchanges" "interchanged" "interchanged" "interchanging"); -- from DictEng -lin interchangeable_A = compoundA (mkA "interchangeable"); -- from DictEng -lin interchangeably_Adv = mkAdv "interchangeably" ; -lin interchurch_A = mkA "interchurch" ; -lin intercollegiate_A = compoundA (mkA "intercollegiate"); -- from DictEng -lin intercom_N = mkN "intercom" "intercoms"; -- from DictEng -lin intercommunicate_V = mkV "intercommunicate" "intercommunicates" "intercommunicated" "intercommunicated" "intercommunicating"; -- from DictEng -lin intercommunication_N = mkN "intercommunication" ; -- from DictEng -lin intercommunion_N = mkN "intercommunion" "intercommunions"; -- from DictEng -lin interconnect_V = mkV "interconnect" "interconnects" "interconnected" "interconnected" "interconnecting"; -- from DictEng -lin interconnect_V2 = mkV2 (mkV "interconnect" "interconnects" "interconnected" "interconnected" "interconnecting"); -- from DictEng -lin interconnected_A = mkA "interconnected" ; -lin interconnectedness_N = mkN "interconnectedness" ; -- from DictEng -lin interconnection_N = mkN "interconnection" "interconnections"; -- from DictEng -lin intercontinental_A = compoundA (mkA "intercontinental"); -- from DictEng -lin intercostal_A = mkA "intercostal" ; -lin intercostal_N = mkN "intercostal" ; -lin intercourse_N = mkN "intercourse" ; -- from DictEng -lin interdenominational_A = compoundA (mkA "interdenominational"); -- from DictEng -lin interdepartmental_A = compoundA (mkA "interdepartmental"); -- from DictEng -lin interdepartmental_Adv = mkAdv "interdepartmental" ; -lin interdependence_N = mkN "interdependence" "interdependences"; -- from DictEng -lin interdependent_A = compoundA (mkA "interdependent"); -- from DictEng -lin interdict_N = mkN "interdict" "interdicts"; -- from DictEng -lin interdict_V2 = mkV2 (mkV "interdict" "interdicts" "interdicted" "interdicted" "interdicting"); -- from DictEng -lin interdiction_N = mkN "interdiction" "interdictions"; -- from DictEng -lin interdisciplinary_A = compoundA (mkA "interdisciplinary"); -- from DictEng -lin interest_N = mkN "interest" "interests"; -- from DictEng -lin interest_V = mkV "interest"; -- from DictEng -lin interest_V2 = mkV2 (mkV "interest" "interests" "interested" "interested" "interesting"); -- from DictEng -lin interest_bearing_A = compoundA (mkA "interest bearing") ; -lin interested_A = compoundA (mkA "interested"); -- from DictEng -lin interestedness_N = mkN "interestedness" ; -lin interesting_A = compoundA (mkA "interesting"); -- from DictEng -lin interestingly_Adv = mkAdv "interestingly" ; -lin interface_N = mkN "interface" "interfaces"; -- from DictEng -lin interfacial_A = mkA "interfacial" ; -lin interfaith_A = mkA "interfaith" ; -lin interfere_V = mkV "interfere" "interferes" "interfered" "interfered" "interfering"; -- from DictEng -lin interference_N = mkN "interference" ; -- from DictEng -lin interfering_A = mkA "interfering" ; -lin interferometer_N = mkN "interferometer" ; -lin interferon_N = mkN "interferon" ; -lin intergalactic_A = mkA "intergalactic" ; -lin interim_A = mkA "interim" ; -lin interim_N = mkN "interim" ; -- from DictEng -lin interior_A = compoundA (mkA "interior"); -- from DictEng -lin interior_N = mkN "interior" "interiors"; -- from DictEng -lin interject_V2 = mkV2 (mkV "interject" "interjects" "interjected" "interjected" "interjecting"); -- from DictEng -lin interjection_N = mkN "interjection" "interjections"; -- from DictEng -lin interlace_V = mkV "interlace" "interlaces" "interlaced" "interlaced" "interlacing"; -- from DictEng -lin interlace_V2 = mkV2 (mkV "interlace" "interlaces" "interlaced" "interlaced" "interlacing"); -- from DictEng -lin interlacing_A = mkA "interlacing" ; -lin interlard_V2 = mkV2 (mkV "interlard" "interlards" "interlarded" "interlarded" "interlarding"); -- from DictEng -lin interlayer_N = mkN "interlayer" ; -lin interleaf_N = mkN "interleaf" ; -lin interleave_V2 = mkV2 (mkV "interleave" "interleaves" "interleaved" "interleaved" "interleaving"); -- from DictEng -lin interleukin_N = mkN "interleukin" ; -lin interlinear_A = mkA "interlinear" ; -lin interlink_V = mkV "interlink" "interlinks" "interlinked" "interlinked" "interlinking"; -- from DictEng -lin interlink_V2 = mkV2 (mkV "interlink" "interlinks" "interlinked" "interlinked" "interlinking"); -- from DictEng -lin interlobular_A = mkA "interlobular" ; -lin interlock_N = mkN "interlock" ; -lin interlock_V = mkV "interlock" "interlocks" "interlocked" "interlocked" "interlocking"; -- from DictEng -lin interlock_V2 = mkV2 (mkV "interlock" "interlocks" "interlocked" "interlocked" "interlocking"); -- from DictEng -lin interlocutor_N = mkN "interlocutor" "interlocutors"; -- from DictEng -lin interlocutory_A = mkA "interlocutory" ; -lin interloper_N = mkN "interloper" "interlopers"; -- from DictEng -lin interlude_N = mkN "interlude" "interludes"; -- from DictEng -lin intermarriage_N = mkN "intermarriage" "intermarriages"; -- from DictEng -lin intermarry_V = mkV "intermarry" "intermarries" "intermarried" "intermarried" "intermarrying"; -- from DictEng -lin intermediary_N = mkN "intermediary" "intermediaries"; -- from DictEng -lin intermediate_A = compoundA (mkA "intermediate"); -- from DictEng -lin intermediate_N = mkN "intermediate" "intermediates"; -- from DictEng -lin intermediately_Adv = mkAdv "intermediately" ; -lin interment_N = mkN "interment" "interments"; -- from DictEng -lin intermezzo_N = mkN "intermezzo" "intermezzos"; -- from DictEng -lin interminable_A = compoundA (mkA "interminable"); -- from DictEng -lin interminably_Adv = mkAdv "interminably" ; -lin intermingle_V = mkV "intermingle" "intermingles" "intermingled" "intermingled" "intermingling"; -- from DictEng -lin intermingle_V2 = mkV2 (mkV "intermingle" "intermingles" "intermingled" "intermingled" "intermingling"); -- from DictEng -lin intermission_N = mkN "intermission" "intermissions"; -- from DictEng -lin intermittence_N = mkN "intermittence" ; -lin intermittent_A = compoundA (mkA "intermittent"); -- from DictEng -lin intermittently_Adv = mkAdv "intermittently" ; -lin intermix_V = mkV "intermix" "intermixes" "intermixed" "intermixed" "intermixing"; -- from DictEng -lin intermix_V2 = mkV2 (mkV "intermix" "intermixes" "intermixed" "intermixed" "intermixing"); -- from DictEng -lin intermixture_N = mkN "intermixture" "intermixtures"; -- from DictEng -lin intermolecular_A = mkA "intermolecular" ; -lin intermural_A = mkA "intermural" ; -lin intern_N = mkN "intern" "interns"; -- from DictEng -lin intern_V2 = mkV2 (mkV "intern" "interns" "interned" "interned" "interning"); -- from DictEng -lin internal_A = compoundA (mkA "internal"); -- from DictEng -lin internalization_N = mkN "internalization" ; -lin internalize_V2 = mkV2 (mkV "internalize" "internalizes" "internalized" "internalized" "internalizing"); -- from DictEng -lin internally_Adv = mkAdv "internally" ; -lin international_A = compoundA (mkA "international"); -- from DictEng -lin international_N = mkN "international" "internationals"; -- from DictEng -lin internationale_N = mkN "internationale" "internationales"; -- from DictEng -lin internationalism_N = mkN "internationalism" ; -- from DictEng -lin internationalist_A = mkA "internationalist" ; -lin internationalist_N = mkN "internationalist" "internationalists"; -- from DictEng -lin internationality_N = mkN "internationality" ; -lin internationalization_N = mkN "internationalization" "internationalizations"; -- from DictEng -lin internationalize_V2 = mkV2 (mkV "internationalize" "internationalizes" "internationalized" "internationalized" "internationalizing"); -- from DictEng -lin internationally_Adv = mkAdv "internationally" ; -lin interne_N = mkN "interne" "internes"; -- from DictEng -lin internecine_A = compoundA (mkA "internecine"); -- from DictEng -lin internee_N = mkN "internee" "internees"; -- from DictEng -lin internet_N = mkN "internet" ; -lin internist_N = mkN "internist" ; -lin internment_N = mkN "internment" ; -- from DictEng -lin internode_N = mkN "internode" ; -lin internship_N = mkN "internship" ; -lin internuncio_N = mkN "internuncio" ; -lin interoception_N = mkN "interoception" ; -lin interoceptive_A = mkA "interoceptive" ; -lin interoceptor_N = mkN "interoceptor" ; -lin interoperability_N = mkN "interoperability" ; -lin interoperable_A = mkA "interoperable" ; -lin interpellate_V2 = mkV2 (mkV "interpellate" "interpellates" "interpellated" "interpellated" "interpellating"); -- from DictEng -lin interpellation_N = mkN "interpellation" "interpellations"; -- from DictEng -lin interpenetration_N = mkN "interpenetration" ; -lin interpersonal_A = mkA "interpersonal" ; -lin interphone_N = mkN "interphone" "interphones"; -- from DictEng -lin interplanetary_A = compoundA (mkA "interplanetary"); -- from DictEng -lin interplay_N = mkN "interplay" ; -- from DictEng -lin interpolate_V2 = mkV2 (mkV "interpolate" "interpolates" "interpolated" "interpolated" "interpolating"); -- from DictEng -lin interpolation_N = mkN "interpolation" "interpolations"; -- from DictEng -lin interpose_V = mkV "interpose" "interposes" "interposed" "interposed" "interposing"; -- from DictEng -lin interpose_V2 = mkV2 (mkV "interpose" "interposes" "interposed" "interposed" "interposing"); -- from DictEng -lin interposition_N = mkN "interposition" "interpositions"; -- from DictEng -lin interpret_V = mkV "interpret" "interprets" "interpreted" "interpreted" "interpreting"; -- from DictEng -lin interpret_V2 = mkV2 (mkV "interpret" "interprets" "interpreted" "interpreted" "interpreting"); -- from DictEng -lin interpretation_N = mkN "interpretation" "interpretations"; -- from DictEng -lin interpretative_A = compoundA (mkA "interpretative"); -- from DictEng -lin interpreted_A = mkA "interpreted" ; -lin interpreter_N = mkN "interpreter" "interpreters"; -- from DictEng -lin interracial_A = compoundA (mkA "interracial"); -- from DictEng -lin interracially_Adv = mkAdv "interracially" ; -lin interreflection_N = mkN "interreflection" ; -lin interregnum_N = mkN "interregnum" "interregnums"; -- from DictEng -lin interrelate_V = mkV "interrelate" "interrelates" "interrelated" "interrelated" "interrelating"; -- from DictEng -lin interrelate_V2 = mkV2 (mkV "interrelate" "interrelates" "interrelated" "interrelated" "interrelating"); -- from DictEng -lin interrelation_N = mkN "interrelation" "interrelations"; -- from DictEng -lin interrelationship_N = mkN "interrelationship" "interrelationships"; -- from DictEng -lin interrogate_V2 = mkV2 (mkV "interrogate" "interrogates" "interrogated" "interrogated" "interrogating"); -- from DictEng -lin interrogation_N = mkN "interrogation" "interrogations"; -- from DictEng -lin interrogative_A = compoundA (mkA "interrogative"); -- from DictEng -lin interrogative_N = mkN "interrogative" "interrogatives"; -- from DictEng -lin interrogatively_Adv = mkAdv "interrogatively" ; -lin interrogator_N = mkN "interrogator" "interrogators"; -- from DictEng -lin interrogatory_A = compoundA (mkA "interrogatory"); -- from DictEng -lin interrupt_N = mkN "interrupt" ; -lin interrupt_V = mkV "interrupt" "interrupts" "interrupted" "interrupted" "interrupting"; -- from DictEng -lin interrupt_V2 = mkV2 (mkV "interrupt" "interrupts" "interrupted" "interrupted" "interrupting"); -- from DictEng -lin interrupted_A = mkA "interrupted" ; -lin interrupter_N = mkN "interrupter" "interrupters"; -- from DictEng -lin interruption_N = mkN "interruption" "interruptions"; -- from DictEng -lin interscholastic_A = mkA "interscholastic" ; -lin intersect_V = mkV "intersect" "intersects" "intersected" "intersected" "intersecting"; -- from DictEng -lin intersect_V2 = mkV2 (mkV "intersect" "intersects" "intersected" "intersected" "intersecting"); -- from DictEng -lin intersection_N = mkN "intersection" "intersections"; -- from DictEng -lin intersexual_A = mkA "intersexual" ; -lin interspecies_A = mkA "interspecies" ; -lin intersperse_V2 = mkV2 (mkV "intersperse" "intersperses" "interspersed" "interspersed" "interspersing"); -- from DictEng -lin interspersion_N = mkN "interspersion" ; -lin interstate_A = compoundA (mkA "interstate"); -- from DictEng -lin interstate_N = mkN "interstate" ; -lin interstellar_A = compoundA (mkA "interstellar"); -- from DictEng -lin interstice_N = mkN "interstice" "interstices"; -- from DictEng -lin interstitial_A = mkA "interstitial" ; -lin intertidal_A = mkA "intertidal" ; -lin intertribal_A = compoundA (mkA "intertribal"); -- from DictEng -lin intertrigo_N = mkN "intertrigo" ; -lin intertwine_V = mkV "intertwine" "intertwines" "intertwined" "intertwined" "intertwining"; -- from DictEng -lin intertwine_V2 = mkV2 (mkV "intertwine" "intertwines" "intertwined" "intertwined" "intertwining"); -- from DictEng -lin interval_N = mkN "interval" "intervals"; -- from DictEng -lin intervene_V = mkV "intervene" "intervenes" "intervened" "intervened" "intervening"; -- from DictEng -lin intervene_V2V = mkV2V (mkV "intervene" "intervenes" "intervened" "intervened" "intervening") noPrep to_Prep ; -- from DictEng -lin intervening_A = mkA "intervening" ; -lin intervenor_N = mkN "intervenor" ; -lin intervention_N = mkN "intervention" "interventions"; -- from DictEng -lin intervertebral_A = mkA "intervertebral" ; -lin interview_N = mkN "interview" "interviews"; -- from DictEng -lin interview_V2 = mkV2 (mkV "interview" "interviews" "interviewed" "interviewed" "interviewing"); -- from DictEng -lin interviewee_N = mkN "interviewee" ; -lin interviewer_N = mkN "interviewer" "interviewers"; -- from DictEng -lin interweave_V2 = mkV2 (mkV "inter" IrregEng.weave_V); -- from DictEng -lin intestacy_N = mkN "intestacy" ; -lin intestate_A = compoundA (mkA "intestate"); -- from DictEng -lin intestinal_A = compoundA (mkA "intestinal"); -- from DictEng -lin intestine_N = mkN "intestine" "intestines"; -- from DictEng -lin inti_N = mkN "inti" ; -lin intifada_N = mkN "intifada" ; -lin intima_N = mkN "intima" ; -lin intimacy_N = mkN "intimacy" "intimacies"; -- from DictEng -lin intimal_A = mkA "intimal" ; -lin intimate_A = compoundA (mkA "intimate"); -- from DictEng -lin intimate_N = mkN "intimate" "intimates"; -- from DictEng -lin intimate_V2 = mkV2 (mkV "intimate" "intimates" "intimated" "intimated" "intimating"); -- from DictEng -lin intimation_N = mkN "intimation" "intimations"; -- from DictEng -lin intimidate_V2 = mkV2 (mkV "intimidate" "intimidates" "intimidated" "intimidated" "intimidating"); -- from DictEng -lin intimidated_A = mkA "intimidated" ; -lin intimidation_N = mkN "intimidation" ; -- from DictEng -lin into_Prep = mkPrep "into"; -- from DictEng -lin intolerable_A = compoundA (mkA "intolerable"); -- from DictEng -lin intolerance_N = mkN "intolerance" ; -- from DictEng -lin intolerant_A = compoundA (mkA "intolerant"); -- from DictEng -lin intolerantly_Adv = mkAdv "intolerantly" ; -lin intonation_N = mkN "intonation" ; -- from DictEng -lin intone_V = mkV "intone" "intones" "intoned" "intoned" "intoning"; -- from DictEng -lin intone_V2 = mkV2 (mkV "intone" "intones" "intoned" "intoned" "intoning"); -- from DictEng -lin intoxicant_A = compoundA (mkA "intoxicant"); -- from DictEng -lin intoxicant_N = mkN "intoxicant" "intoxicants"; -- from DictEng -lin intoxicate_V2 = mkV2 (mkV "intoxicate" "intoxicates" "intoxicated" "intoxicated" "intoxicating"); -- from DictEng -lin intoxicated_A = mkA "intoxicated" ; -lin intoxication_N = mkN "intoxication" ; -- from DictEng -lin intra_uterine_A = compoundA (mkA "intra - uterine"); -- from DictEng -lin intra_vires_A = compoundA (mkA "intra vires") ; -lin intracellular_A = mkA "intracellular" ; -lin intracerebral_A = mkA "intracerebral" ; -lin intracranial_A = mkA "intracranial" ; -lin intractability_N = mkN "intractability" ; -- from DictEng -lin intractable_A = compoundA (mkA "intractable"); -- from DictEng -lin intractably_Adv = mkAdv "intractably" ; -lin intradepartmental_A = mkA "intradepartmental" ; -lin intradermal_A = mkA "intradermal" ; -lin intradermally_Adv = mkAdv "intradermally" ; -lin intrados_N = mkN "intrados" ; -lin intralinguistic_A = mkA "intralinguistic" ; -lin intralobular_A = mkA "intralobular" ; -lin intramolecular_A = mkA "intramolecular" ; -lin intramural_A = compoundA (mkA "intramural"); -- from DictEng -lin intramuscular_A = mkA "intramuscular" ; -lin intramuscularly_Adv = mkAdv "intramuscularly" ; -lin intranet_N = mkN "intranet" ; -lin intransigence_N = mkN "intransigence" ; -- from DictEng -lin intransigency_N = mkN "intransigency" ; -lin intransigent_A = compoundA (mkA "intransigent"); -- from DictEng -lin intransitive_A = compoundA (mkA "intransitive"); -- from DictEng -lin intransitively_Adv = mkAdv "intransitively" ; -lin intransitivity_N = mkN "intransitivity" ; -lin intrapulmonary_A = mkA "intrapulmonary" ; -lin intrasentential_A = mkA "intrasentential" ; -lin intraspecies_A = mkA "intraspecies" ; -lin intrastate_A = mkA "intrastate" ; -lin intrauterine_A = mkA "intrauterine" ; -lin intravasation_N = mkN "intravasation" ; -lin intravenous_A = compoundA (mkA "intravenous"); -- from DictEng -lin intravenously_Adv = mkAdv "intravenously" ; -lin intraventricular_A = mkA "intraventricular" ; -lin intrench_V2 = mkV2 (mkV "intrench" "intrenches" "intrenched" "intrenched" "intrenching"); -- from DictEng -lin intrepid_A = compoundA (mkA "intrepid"); -- from DictEng -lin intrepidity_N = mkN "intrepidity" "intrepidities"; -- from DictEng -lin intricacy_N = mkN "intricacy" "intricacies"; -- from DictEng -lin intricate_A = compoundA (mkA "intricate"); -- from DictEng -lin intrigue_N = mkN "intrigue" "intrigues"; -- from DictEng -lin intrigue_V = mkV "intrigue" "intrigues" "intrigued" "intrigued" "intriguing"; -- from DictEng -lin intrigue_V2 = mkV2 (mkV "intrigue" "intrigues" "intrigued" "intrigued" "intriguing"); -- from DictEng -lin intriguing_A = mkA "intriguing" ; -lin intrinsic_A = compoundA (mkA "intrinsic"); -- from DictEng -lin intrinsically_Adv = mkAdv "intrinsically"; -- from DictEng -lin intro_N = mkN "intro" "intri" {- FIXME: guessed plural form -}; -- from DictEng -lin introduce_V2 = mkV2 (mkV "introduce" "introduces" "introduced" "introduced" "introducing"); -- from DictEng -lin introduction_N = mkN "introduction" "introductions"; -- from DictEng -lin introductory_A = compoundA (mkA "introductory"); -- from DictEng -lin introit_N = mkN "introit" ; -lin introitus_N = mkN "introitus" ; -lin introject_N = mkN "introject" ; -lin introjected_A = mkA "introjected" ; -lin introjection_N = mkN "introjection" ; -lin intron_N = mkN "intron" ; -lin introspect_V = mkV "introspect" "introspects" "introspected" "introspected" "introspecting"; -- from DictEng -lin introspection_N = mkN "introspection" ; -- from DictEng -lin introspective_A = compoundA (mkA "introspective"); -- from DictEng -lin introspectiveness_N = mkN "introspectiveness" ; -lin introuvable_A = mkA "introuvable" ; -lin introversion_N = mkN "introversion" ; -- from DictEng -lin introversive_A = mkA "introversive" ; -lin introvert_N = mkN "introvert" "introverts"; -- from DictEng -lin introvert_V2 = mkV2 (mkV "introvert" "introverts" "introverted" "introverted" "introverting"); -- from DictEng -lin introvertish_A = mkA "introvertish" ; -lin intrude_V = mkV "intrude" "intrudes" "intruded" "intruded" "intruding"; -- from DictEng -lin intrude_V2 = mkV2 (mkV "intrude" "intrudes" "intruded" "intruded" "intruding"); -- from DictEng -lin intruder_N = mkN "intruder" "intruders"; -- from DictEng -lin intruding_A = mkA "intruding" ; -lin intrusion_N = mkN "intrusion" "intrusions"; -- from DictEng -lin intrusive_A = compoundA (mkA "intrusive"); -- from DictEng -lin intrusiveness_N = mkN "intrusiveness" ; -lin intrust_V2 = mkV2 (mkV "intrust" "intrusts" "intrusted" "intrusted" "intrusting"); -- from DictEng -lin intuit_V = mkV "intuit" "intuits" "intuited" "intuited" "intuiting"; -- from DictEng -lin intuit_V2 = mkV2 (mkV "intuit" "intuits" "intuited" "intuited" "intuiting"); -- from DictEng -lin intuition_N = mkN "intuition" "intuitions"; -- from DictEng -lin intuitionism_N = mkN "intuitionism" ; -lin intuitionist_A = mkA "intuitionist" ; -lin intuitive_A = compoundA (mkA "intuitive"); -- from DictEng -lin intuitively_Adv = mkAdv "intuitively" ; -lin intumescence_N = mkN "intumescence" ; -- from DictEng -lin intussusception_N = mkN "intussusception" ; -lin inula_N = mkN "inula" ; -lin inulin_N = mkN "inulin" ; -lin inundate_V2 = mkV2 (mkV "inundate" "inundates" "inundated" "inundated" "inundating"); -- from DictEng -lin inundation_N = mkN "inundation" "inundations"; -- from DictEng -lin inure_V2 = mkV2 (mkV "inure" "inures" "inured" "inured" "inuring"); -- from DictEng -lin inutile_A = mkA "inutile" ; -lin inutility_N = mkN "inutility" ; -lin invade_V2 = mkV2 (mkV "invade" "invades" "invaded" "invaded" "invading"); -- from DictEng -lin invader_N = mkN "invader" "invaders"; -- from DictEng -lin invagination_N = mkN "invagination" ; -lin invalid_A = compoundA (mkA "invalid"); -- from DictEng -lin invalid_N = mkN "invalid" "invalids"; -- from DictEng -lin invalid_V2 = mkV2 (mkV "invalid" "invalids" "invalided" "invalided" "invaliding"); -- from DictEng -lin invalidate_V2 = mkV2 (mkV "invalidate" "invalidates" "invalidated" "invalidated" "invalidating"); -- from DictEng -lin invalidated_A = mkA "invalidated" ; -lin invalidation_N = mkN "invalidation" "invalidations"; -- from DictEng -lin invalidator_N = mkN "invalidator" ; -lin invalidism_N = mkN "invalidism" ; -- from DictEng -lin invalidity_N = mkN "invalidity" ; -- from DictEng -lin invaluable_A = compoundA (mkA "invaluable"); -- from DictEng -lin invaluableness_N = mkN "invaluableness" ; -lin invariability_N = mkN "invariability" ; -lin invariable_A = compoundA (mkA "invariable"); -- from DictEng -lin invariance_N = mkN "invariance" ; -lin invariant_A = mkA "invariant" ; -lin invariant_N = mkN "invariant" ; -lin invasion_N = mkN "invasion" "invasions"; -- from DictEng -lin invasive_A = compoundA (mkA "invasive"); -- from DictEng -lin invective_N = mkN "invective" ; -- from DictEng -lin inveigh_V = mkV "inveigh" "inveighs" "inveighed" "inveighed" "inveighing"; -- from DictEng -lin inveigle_V2 = mkV2 (mkV "inveigle" "inveigles" "inveigled" "inveigled" "inveigling"); -- from DictEng -lin invent_V = mkV "invent"; -- from DictEng -lin invent_V2 = mkV2 (mkV "invent" "invents" "invented" "invented" "inventing"); -- from DictEng -lin invention_N = mkN "invention" "inventions"; -- from DictEng -lin inventive_A = compoundA (mkA "inventive"); -- from DictEng -lin inventively_Adv = mkAdv "inventively" ; -lin inventiveness_N = mkN "inventiveness" ; -lin inventor_N = mkN "inventor" "inventors"; -- from DictEng -lin inventory_N = mkN "inventory" "inventories"; -- from DictEng -lin inverse_A = compoundA (mkA "inverse"); -- from DictEng -lin inverse_N = mkN "inverse" ; -- from DictEng -lin inversely_Adv = mkAdv "inversely" ; -lin inversion_N = mkN "inversion" "inversions"; -- from DictEng -lin invert_V2 = mkV2 (mkV "invert" "inverts" "inverted" "inverted" "inverting"); -- from DictEng -lin invertase_N = mkN "invertase" ; -lin invertebrate_A = compoundA (mkA "invertebrate"); -- from DictEng -lin invertebrate_N = mkN "invertebrate" "invertebrates"; -- from DictEng -lin inverted_A = mkA "inverted" ; -lin inverter_N = mkN "inverter" ; -lin invertible_A = mkA "invertible" ; -lin invest_V = mkV "invest" "invests" "invested" "invested" "investing"; -- from DictEng -lin invest_V2 = mkV2 (mkV "invest" "invests" "invested" "invested" "investing"); -- from DictEng -lin investigate_V = mkV "investigate"; -- from DictEng -lin investigate_V2 = mkV2 (mkV "investigate" "investigates" "investigated" "investigated" "investigating"); -- from DictEng -lin investigation_N = mkN "investigation" "investigations"; -- from DictEng -lin investigator_N = mkN "investigator" "investigators"; -- from DictEng -lin investing_N = mkN "investing" ; -lin investiture_N = mkN "investiture" "investitures"; -- from DictEng -lin investment_N = mkN "investment" "investments"; -- from DictEng -lin investor_N = mkN "investor" "investors"; -- from DictEng -lin inveterate_A = compoundA (mkA "inveterate"); -- from DictEng -lin invidious_A = compoundA (mkA "invidious"); -- from DictEng -lin invidiously_Adv = mkAdv "invidiously" ; -lin invigilate_V = mkV "invigilate" "invigilates" "invigilated" "invigilated" "invigilating"; -- from DictEng -lin invigilation_N = mkN "invigilation" "invigilations"; -- from DictEng -lin invigilator_N = mkN "invigilator" "invigilators"; -- from DictEng -lin invigorate_V2 = mkV2 (mkV "invigorate" "invigorates" "invigorated" "invigorated" "invigorating"); -- from DictEng -lin invigorating_A = mkA "invigorating" ; -lin invincibility_N = mkN "invincibility" ; -- from DictEng -lin invincible_A = compoundA (mkA "invincible"); -- from DictEng -lin invincibly_Adv = mkAdv "invincibly" ; -lin inviolable_A = compoundA (mkA "inviolable"); -- from DictEng -lin inviolate_A = compoundA (mkA "inviolate"); -- from DictEng -lin invisibility_N = mkN "invisibility" ; -- from DictEng -lin invisible_A = compoundA (mkA "invisible"); -- from DictEng -lin invisibly_Adv = mkAdv "invisibly" ; -lin invitation_N = mkN "invitation" "invitations"; -- from DictEng -lin invitational_A = mkA "invitational" ; -lin invitatory_A = mkA "invitatory" ; -lin invite_N = mkN "invite" "invites"; -- from DictEng -lin invite_V2 = mkV2 (mkV "invite" "invites" "invited" "invited" "inviting"); -- from DictEng -lin invite_V2V = mkV2V (mkV "invite") noPrep to_Prep ; -- from DictEng -lin inviting_A = compoundA (mkA "inviting"); -- from DictEng -lin invocation_N = mkN "invocation" "invocations"; -- from DictEng -lin invoice_N = mkN "invoice" "invoices"; -- from DictEng -lin invoice_V2 = mkV2 (mkV "invoice" "invoices" "invoiced" "invoiced" "invoicing"); -- from DictEng -lin invoke_V2 = mkV2 (mkV "invoke" "invokes" "invoked" "invoked" "invoking"); -- from DictEng -lin involucrate_A = mkA "involucrate" ; -lin involucre_N = mkN "involucre" ; -lin involuntarily_Adv = mkAdv "involuntarily" ; -lin involuntary_A = compoundA (mkA "involuntary"); -- from DictEng -lin involute_A = compoundA (mkA "involute"); -- from DictEng -lin involution_N = mkN "involution" "involutions"; -- from DictEng -lin involve_V = mkV "involve"; -- from DictEng -lin involve_V2 = mkV2 (mkV "involve" "involves" "involved" "involved" "involving"); -- from DictEng -lin involve_VS = mkVS (mkV "involve"); -- from DictEng -lin involved_A = compoundA (mkA "involved"); -- from DictEng -lin involvement_N = mkN "involvement" "involvements"; -- from DictEng -lin invulnerability_N = mkN "invulnerability" ; -lin invulnerable_A = compoundA (mkA "invulnerable"); -- from DictEng -lin inward_A = compoundA (mkA "inward"); -- from DictEng -lin inward_Adv = mkAdv "inward"; -- from DictEng -lin inward_developing_A = compoundA (mkA "inward developing") ; -lin inward_moving_A = compoundA (mkA "inward moving") ; -lin inwardly_Adv = mkAdv "inwardly" ; -lin inwardness_N = mkN "inwardness" ; -- from DictEng -lin inwards_Adv = mkAdv "inwards"; -- from DictEng -lin inwrought_A = compoundA (mkA "inwrought"); -- from DictEng -lin iodide_N = mkN "iodide" ; -lin iodinated_A = mkA "iodinated" ; -lin iodinating_A = mkA "iodinating" ; -lin iodination_N = mkN "iodination" ; -lin iodine_N = mkN "iodine" ; -- from DictEng -lin iodine_125_N = mkN "iodine 125" ; -lin iodine_131_N = mkN "iodine 131" ; -lin iodochlorhydroxyquin_N = mkN "iodochlorhydroxyquin" ; -lin iodocompound_N = mkN "iodocompound" ; -lin iodoform_N = mkN "iodoform" ; -lin iodoprotein_N = mkN "iodoprotein" ; -lin iodopsin_N = mkN "iodopsin" ; -lin iodothyronine_N = mkN "iodothyronine" ; -lin iodotyrosine_N = mkN "iodotyrosine" ; -lin ion_N = mkN "ion" "ions"; -- from DictEng -lin ionic_A = compoundA (mkA "ionic"); -- from DictEng -lin ionization_N = mkN "ionization" ; -- from DictEng -lin ionize_V = mkV "ionize" "ionizes" "ionized" "ionized" "ionizing"; -- from DictEng -lin ionize_V2 = mkV2 (mkV "ionize" "ionizes" "ionized" "ionized" "ionizing"); -- from DictEng -lin ionized_A = mkA "ionized" ; -lin ionosphere_N = mkN "ionosphere" "ionospheres"; -- from DictEng -lin iontophoresis_N = mkN "iontophoresis" ; -lin iota_N = mkN "iota" "iotas"; -- from DictEng -lin iou_N = mkN "IOU" "IOUs" ; -- from DictEng -lin ipecac_N = mkN "ipecac" ; -lin iproclozide_N = mkN "iproclozide" ; -lin ipse_dixit_N = mkN "ipse dixit" "ipse dixits"; -- from DictEng -lin ipsilateral_A = mkA "ipsilateral" ; -lin ipso_facto_Adv = mkAdv "ipso facto"; -- from DictEng -lin iq_N = mkN "iq" ; -- from DictEng -lin ira_N = mkN "ira" ; -- from DictEng -lin iranian_A = compoundA (mkA "iranian"); -- from DictEng -lin iranian_N = mkN "iranian" "iranians"; -- from DictEng -lin iraqi_A = compoundA (mkA "iraqi"); -- from DictEng -lin iraqi_N = mkN "iraqi" "iraqis"; -- from DictEng -lin irascibility_N = mkN "irascibility" ; -- from DictEng -lin irascible_A = compoundA (mkA "irascible"); -- from DictEng -lin irate_A = compoundA (mkA "irate"); -- from DictEng -lin irately_Adv = mkAdv "irately" ; -lin ire_N = mkN "ire" ; -- from DictEng -lin ireful_A = compoundA (mkA "ireful"); -- from DictEng -lin irenic_A = mkA "irenic" ; -lin iridaceous_A = mkA "iridaceous" ; -lin iridectomy_N = mkN "iridectomy" ; -lin iridescence_N = mkN "iridescence" ; -- from DictEng -lin iridescent_A = compoundA (mkA "iridescent"); -- from DictEng -lin iridic_A = mkA "iridic" ; -lin iridium_N = mkN "iridium" ; -- from DictEng -lin iridocyclitis_N = mkN "iridocyclitis" ; -lin iridokeratitis_N = mkN "iridokeratitis" ; -lin iridoncus_N = mkN "iridoncus" ; -lin iridotomy_N = mkN "iridotomy" ; -lin iris_N = mkN "iris" "irises"; -- from DictEng -lin irish_A = compoundA (mkA "irish"); -- from DictEng -lin irish_N = mkN "irish" ; -- from DictEng -lin irishman_N = mkN "irishman" "irishmen" {- FIXME: guessed plural form -}; -- from DictEng -lin irishwoman_N = mkN "irishwoman" "irishwomen" {- FIXME: guessed plural form -}; -- from DictEng -lin iritic_A = mkA "iritic" ; -lin iritis_N = mkN "iritis" ; -lin irk_V2 = mkV2 (mkV "irk" "irks" "irked" "irked" "irking"); -- from DictEng -lin irksome_A = compoundA (mkA "irksome"); -- from DictEng -lin iron_N = mkN "iron" "irons"; -- from DictEng -lin iron_V = mkV "iron" "irons" "ironed" "ironed" "ironing"; -- from DictEng -lin iron_V2 = mkV2 (mkV "iron" "irons" "ironed" "ironed" "ironing"); -- from DictEng -lin iron_grey_A = compoundA (mkA "iron - grey"); -- from DictEng -lin iron_grey_N = mkN "iron - grey" ; -- from DictEng -lin iron_foundry_N = mkN "iron - foundry" "iron - foundries"; -- from DictEng -lin iron_grey_A = compoundA (mkA "iron - grey"); -- from DictEng -lin iron_grey_N = mkN "iron - grey" ; -- from DictEng -lin ironclad_A = compoundA (mkA "ironclad"); -- from DictEng -lin ironclad_N = mkN "ironclad" ; -lin ironed_A = mkA "ironed" ; -lin ironic_A = compoundA (mkA "ironic"); -- from DictEng -lin ironical_A = compoundA (mkA "ironical"); -- from DictEng -lin ironically_Adv = mkAdv "ironically" ; -lin ironing_N = mkN "ironing" ; -lin ironing_board_N = mkN "ironing - board" "ironing - boards"; -- from DictEng -lin ironlike_A = mkA "ironlike" ; -lin ironmonger_N = mkN "ironmonger" "ironmongers"; -- from DictEng -lin ironmongery_N = mkN "ironmongery" "ironmongeries"; -- from DictEng -lin ironmould_N = mkN "ironmould" "ironmoulds"; -- from DictEng -lin irons_N = mkN "irons" ; -lin ironshod_A = mkA "ironshod" ; -lin ironside_N = mkN "ironside" "ironsides"; -- from DictEng -lin ironware_N = mkN "ironware" ; -- from DictEng -lin ironweed_N = mkN "ironweed" ; -lin ironwood_N = mkN "ironwood" ; -lin ironwork_N = mkN "ironwork" "ironworks"; -- from DictEng -lin ironworker_N = mkN "ironworker" ; -lin ironworks_N = mkN "ironworks" "ironworks"; -- from DictEng -lin irony_N = mkN "irony" "ironies"; -- from DictEng -lin irradiate_V2 = mkV2 (mkV "irradiate" "irradiates" "irradiated" "irradiated" "irradiating"); -- from DictEng -lin irradiation_N = mkN "irradiation" ; -lin irrational_A = compoundA (mkA "irrational"); -- from DictEng -lin irrationality_N = mkN "irrationality" ; -lin irrationally_Adv = mkAdv "irrationally" ; -lin irreclaimable_A = mkA "irreclaimable" ; -lin irreconcilable_A = compoundA (mkA "irreconcilable"); -- from DictEng -lin irrecoverable_A = compoundA (mkA "irrecoverable"); -- from DictEng -lin irredeemable_A = compoundA (mkA "irredeemable"); -- from DictEng -lin irredenta_N = mkN "irredenta" ; -lin irredentism_N = mkN "irredentism" ; -lin irredentist_N = mkN "irredentist" "irredentists"; -- from DictEng -lin irreducible_A = compoundA (mkA "irreducible"); -- from DictEng -lin irrefutable_A = compoundA (mkA "irrefutable"); -- from DictEng -lin irregardless_Adv = mkAdv "irregardless" ; -lin irregular_A = compoundA (mkA "irregular"); -- from DictEng -lin irregular_N = mkN "irregular" "irregulars"; -- from DictEng -lin irregularity_N = mkN "irregularity" "irregularities"; -- from DictEng -lin irregularly_Adv = mkAdv "irregularly" ; -lin irrelevance_N = mkN "irrelevance" "irrelevances"; -- from DictEng -lin irrelevancy_N = mkN "irrelevancy" "irrelevancies"; -- from DictEng -lin irrelevant_A = compoundA (mkA "irrelevant"); -- from DictEng -lin irrelevantly_Adv = mkAdv "irrelevantly" ; -lin irreligionist_N = mkN "irreligionist" ; -lin irreligious_A = compoundA (mkA "irreligious"); -- from DictEng -lin irreligiousness_N = mkN "irreligiousness" ; -lin irremediable_A = compoundA (mkA "irremediable"); -- from DictEng -lin irremovable_A = compoundA (mkA "irremovable"); -- from DictEng -lin irreparable_A = compoundA (mkA "irreparable"); -- from DictEng -lin irreparably_Adv = mkAdv "irreparably" ; -lin irreplaceable_A = compoundA (mkA "irreplaceable"); -- from DictEng -lin irreplaceableness_N = mkN "irreplaceableness" ; -lin irrepressibility_N = mkN "irrepressibility" ; -lin irrepressible_A = compoundA (mkA "irrepressible"); -- from DictEng -lin irreproachable_A = compoundA (mkA "irreproachable"); -- from DictEng -lin irreproachably_Adv = mkAdv "irreproachably" ; -lin irreproducibility_N = mkN "irreproducibility" ; -lin irresistibility_N = mkN "irresistibility" ; -lin irresistible_A = compoundA (mkA "irresistible"); -- from DictEng -lin irresolute_A = compoundA (mkA "irresolute"); -- from DictEng -lin irresolutely_Adv = mkAdv "irresolutely" ; -lin irresoluteness_N = mkN "irresoluteness" ; -lin irresolution_N = mkN "irresolution" ; -- from DictEng -lin irrespective_A = compoundA (mkA "irrespective"); -- from DictEng -lin irresponsibility_N = mkN "irresponsibility" ; -- from DictEng -lin irresponsible_A = compoundA (mkA "irresponsible"); -- from DictEng -lin irresponsibly_Adv = mkAdv "irresponsibly" ; -lin irretrievable_A = compoundA (mkA "irretrievable"); -- from DictEng -lin irretrievably_Adv = mkAdv "irretrievably" ; -lin irreverence_N = mkN "irreverence" ; -- from DictEng -lin irreverent_A = compoundA (mkA "irreverent"); -- from DictEng -lin irreverently_Adv = mkAdv "irreverently" ; -lin irreversibility_N = mkN "irreversibility" ; -- from DictEng -lin irreversible_A = compoundA (mkA "irreversible"); -- from DictEng -lin irreversibly_Adv = mkAdv "irreversibly" ; -lin irrevocable_A = compoundA (mkA "irrevocable"); -- from DictEng -lin irrevocably_Adv = mkAdv "irrevocably" ; -lin irridentism_N = mkN "irridentism" ; -- from DictEng -lin irrigate_V2 = mkV2 (mkV "irrigate" "irrigates" "irrigated" "irrigated" "irrigating"); -- from DictEng -lin irrigation_N = mkN "irrigation" ; -- from DictEng -lin irritability_N = mkN "irritability" ; -- from DictEng -lin irritable_A = compoundA (mkA "irritable"); -- from DictEng -lin irritably_Adv = mkAdv "irritably" ; -lin irritant_A = compoundA (mkA "irritant"); -- from DictEng -lin irritant_N = mkN "irritant" "irritants"; -- from DictEng -lin irritate_V2 = mkV2 (mkV "irritate" "irritates" "irritated" "irritated" "irritating"); -- from DictEng -lin irritating_A = mkA "irritating" ; -lin irritatingly_Adv = mkAdv "irritatingly" ; -lin irritation_N = mkN "irritation" "irritations"; -- from DictEng -lin irruption_N = mkN "irruption" "irruptions"; -- from DictEng -lin irruptive_A = mkA "irruptive" ; -lin ischemia_N = mkN "ischemia" ; -lin ischemic_A = mkA "ischemic" ; -lin ischium_N = mkN "ischium" ; -lin isentropic_A = mkA "isentropic" ; -lin isinglass_N = mkN "isinglass" ; -- from DictEng -lin islam_N = mkN "islam" ; -- from DictEng -lin islamic_A = compoundA (mkA "islamic"); -- from DictEng -lin island_N = mkN "island" "islands"; -- from DictEng -lin islander_N = mkN "islander" "islanders"; -- from DictEng -lin islands_of_langerhans_PN = mkPN "islands of Langerhans" ; -lin isle_N = mkN "isle" "isles"; -- from DictEng -lin islet_N = mkN "islet" "islets"; -- from DictEng -lin ism_N = mkN "ism" "isms"; -- from DictEng -lin isoagglutination_N = mkN "isoagglutination" ; -lin isoagglutinin_N = mkN "isoagglutinin" ; -lin isoagglutinogen_N = mkN "isoagglutinogen" ; -lin isoantibody_N = mkN "isoantibody" ; -lin isobar_N = mkN "isobar" "isobars"; -- from DictEng -lin isobutylene_N = mkN "isobutylene" ; -lin isocarboxazid_N = mkN "isocarboxazid" ; -lin isochronal_A = mkA "isochronal" ; -lin isochrone_N = mkN "isochrone" ; -lin isoclinal_A = mkA "isoclinal" ; -lin isocyanate_N = mkN "isocyanate" ; -lin isoflurane_N = mkN "isoflurane" ; -lin isogamete_N = mkN "isogamete" ; -lin isogamy_N = mkN "isogamy" ; -lin isogon_N = mkN "isogon" ; -lin isogonic_A = mkA "isogonic" ; -lin isogram_N = mkN "isogram" ; -lin isohel_N = mkN "isohel" ; -lin isolable_A = mkA "isolable" ; -lin isolate_V2 = mkV2 (mkV "isolate" "isolates" "isolated" "isolated" "isolating"); -- from DictEng -lin isolated_A = mkA "isolated" ; -lin isolating_A = mkA "isolating" ; -lin isolation_N = mkN "isolation" ; -- from DictEng -lin isolationism_N = mkN "isolationism" ; -- from DictEng -lin isolationist_A = mkA "isolationist" ; -lin isolationist_N = mkN "isolationist" "isolationists"; -- from DictEng -lin isoleucine_N = mkN "isoleucine" ; -lin isomer_N = mkN "isomer" ; -lin isomerase_N = mkN "isomerase" ; -lin isomeric_A = mkA "isomeric" ; -lin isomerism_N = mkN "isomerism" ; -lin isomerization_N = mkN "isomerization" ; -lin isometric_A = mkA "isometric" ; -lin isometrics_N = mkN "isometrics" ; -lin isometropia_N = mkN "isometropia" ; -lin isometry_N = mkN "isometry" ; -lin isomorphism_N = mkN "isomorphism" ; -lin isomorphous_A = mkA "isomorphous" ; -lin isoniazid_N = mkN "isoniazid" ; -lin isopod_N = mkN "isopod" ; -lin isoproterenol_N = mkN "isoproterenol" ; -lin isopteran_A = mkA "isopteran" ; -lin isosceles_A = compoundA (mkA "isosceles"); -- from DictEng -lin isosorbide_N = mkN "isosorbide" ; -lin isostasy_N = mkN "isostasy" ; -lin isotherm_N = mkN "isotherm" "isotherms"; -- from DictEng -lin isothermal_A = mkA "isothermal" ; -lin isothermic_A = mkA "isothermic" ; -lin isothiocyanate_N = mkN "isothiocyanate" ; -lin isotonic_A = mkA "isotonic" ; -lin isotope_N = mkN "isotope" "isotopes"; -- from DictEng -lin isotopic_A = mkA "isotopic" ; -lin isotropic_A = mkA "isotropic" ; -lin isotropically_Adv = mkAdv "isotropically" ; -lin isotropy_N = mkN "isotropy" ; -lin israeli_A = compoundA (mkA "israeli"); -- from DictEng -lin israeli_N = mkN "israeli" "israelis"; -- from DictEng -lin issue_N = mkN "issue" "issues"; -- from DictEng -lin issue_V = mkV "issue" "issues" "issued" "issued" "issuing"; -- from DictEng -lin issue_V2 = mkV2 (mkV "issue" "issues" "issued" "issued" "issuing"); -- from DictEng -lin issuer_N = mkN "issuer" ; -lin isthmian_A = mkA "isthmian" ; -lin isthmus_N = mkN "isthmus" "isthmuses"; -- from DictEng -lin it_Pron = mkPron "it" "it" "its" "its" singular P3 nonhuman; -- from DictEng -lin italian_A = compoundA (mkA "Italian"); -- from DictEng -lin italian_N = mkN "Italian" "Italians"; -- from DictEng -lin italic_A = compoundA (mkA "italic"); -- from DictEng -lin italic_N = mkN "italic" ; -lin italicize_V2 = mkV2 (mkV "italicize" "italicizes" "italicized" "italicized" "italicizing"); -- from DictEng -lin itch_N = mkN "itch" "itches"; -- from DictEng -lin itch_V = mkV "itch" "itches" "itched" "itched" "itching"; -- from DictEng -lin itchy_A = mkA "itchy" "itchier"; -- from DictEng -lin item_Adv = mkAdv "item"; -- from DictEng -lin item_N = mkN "item" "items"; -- from DictEng -lin itemize_V2 = mkV2 (mkV "itemize" "itemizes" "itemized" "itemized" "itemizing"); -- from DictEng -lin iterate_V2 = mkV2 (mkV "iterate" "iterates" "iterated" "iterated" "iterating"); -- from DictEng -lin iteration_N = mkN "iteration" "iterations"; -- from DictEng -lin iterative_A = mkA "iterative" ; -lin iterative_N = mkN "iterative" ; -lin itinerant_A = compoundA (mkA "itinerant"); -- from DictEng -lin itinerant_N = mkN "itinerant" ; -lin itinerary_N = mkN "itinerary" "itineraries"; -- from DictEng -lin itineration_N = mkN "itineration" ; -lin itraconazole_N = mkN "itraconazole" ; -lin itv_N = mkN "itv" ; -- from DictEng -lin iud_N = mkN "iud" ; -- from DictEng -lin ivied_A = compoundA (mkA "ivied"); -- from DictEng -lin ivory_N = mkN "ivory" ; -- from DictEng -lin ivorybill_N = mkN "ivorybill" ; -lin ivy_N = mkN "ivy" "ivies"; -- from DictEng -lin izar_N = mkN "izar" ; -lin jab_N = mkN "jab" "jabs"; -- from DictEng -lin jab_V = mkV "jab" "jabs" "jabbed" "jabbed" "jabbing"; -- from DictEng -lin jab_V2 = mkV2 (mkV "jab" "jabs" "jabbed" "jabbed" "jabbing"); -- from DictEng -lin jabber_N = mkN "jabber" ; -- from DictEng -lin jabber_V = mkV "jabber" "jabbers" "jabbered" "jabbered" "jabbering"; -- from DictEng -lin jabber_V2 = mkV2 (mkV "jabber" "jabbers" "jabbered" "jabbered" "jabbering"); -- from DictEng -lin jabberer_N = mkN "jabberer" "jabberers"; -- from DictEng -lin jabberwocky_N = mkN "jabberwocky" ; -lin jabiru_N = mkN "jabiru" ; -lin jabot_N = mkN "jabot" "jabots"; -- from DictEng -lin jaboticaba_N = mkN "jaboticaba" ; -lin jacamar_N = mkN "jacamar" ; -lin jack_N = mkN "jack" "jacks"; -- from DictEng -lin jack_V2 = mkV2 (mkV "jack" "jacks" "jacked" "jacked" "jacking"); -- from DictEng -lin jack_in_the_box_N = mkN "jack - in - the - box" "jack - in - the - boxes"; -- from DictEng -lin jack_in_the_pulpit_N = mkN "jack in the pulpit" ; -lin jack_o'_lantern_N = mkN "jack - o'-lantern" "jack - o'-lanterns"; -- from DictEng -lin jack_in_the_box_N = mkN "jack - in - the - box" "jack - in - the - boxes"; -- from DictEng -lin jack_knife_N = mkN "jack - knife" "jack - knives"; -- from DictEng -lin jack_knife_V = mkV "jack - knife" "jack - knifes" "jack - knifed" "jack - knifed" "jack - knifing"; -- from DictEng -lin jack_o'_lantern_N = mkN "jack - o'-lantern" "jack - o'-lanterns"; -- from DictEng -lin jack_plane_N = mkN "jack - plane" "jack - planes"; -- from DictEng -lin jackal_N = mkN "jackal" "jackals"; -- from DictEng -lin jackanapes_N = mkN "jackanapes" "IRREG"; -- from DictEng -lin jackass_N = mkN "jackass" "jackasses"; -- from DictEng -lin jackboot_N = mkN "jackboot" "jackboots"; -- from DictEng -lin jackdaw_N = mkN "jackdaw" "jackdaws"; -- from DictEng -lin jacket_N = mkN "jacket" "jackets"; -- from DictEng -lin jackfruit_N = mkN "jackfruit" ; -lin jackknife_N = mkN "jackknife" ; -lin jackknife_fish_N = mkN "jackknife fish" ; -lin jacklight_N = mkN "jacklight" ; -lin jackpot_N = mkN "jackpot" "jackpots"; -- from DictEng -lin jackrabbit_N = mkN "jackrabbit" ; -lin jacks_N = mkN "jacks" ; -lin jackscrew_N = mkN "jackscrew" ; -lin jacksmelt_N = mkN "jacksmelt" ; -lin jacksnipe_N = mkN "jacksnipe" ; -lin jackstraw_N = mkN "jackstraw" ; -lin jackstraws_N = mkN "jackstraws" ; -lin jacobean_A = compoundA (mkA "jacobean"); -- from DictEng -lin jacobin_A = compoundA (mkA "jacobin"); -- from DictEng -lin jacobin_N = mkN "jacobin" "jacobins"; -- from DictEng -lin jacobinism_N = mkN "jacobinism" ; -- from DictEng -lin jacobite_N = mkN "jacobite" "jacobites"; -- from DictEng -lin jaconet_N = mkN "jaconet" ; -lin jacquard_N = mkN "jacquard" ; -lin jactitation_N = mkN "jactitation" ; -lin jade_A = mkA "jade" ; -lin jade_N = mkN "jade" "jades"; -- from DictEng -lin jade_V2 = mkV2 (mkV "jade") ; -lin jaded_A = compoundA (mkA "jaded"); -- from DictEng -lin jadeite_N = mkN "jadeite" ; -lin jaeger_N = mkN "jaeger" ; -lin jag_N = mkN "jag" "jags"; -- from DictEng -lin jag_V2 = mkV2 (mkV "jag" "jags" "jagged" "jagged" "jagging"); -- from DictEng -lin jagged_A = compoundA (mkA "jagged"); -- from DictEng -lin jaggedness_N = mkN "jaggedness" ; -lin jaggery_N = mkN "jaggery" ; -lin jaggy_A = mkA "jaggy" "jaggier"; -- from DictEng -lin jaguar_N = mkN "jaguar" "jaguars"; -- from DictEng -lin jaguarundi_N = mkN "jaguarundi" ; -lin jail_N = mkN "jail" "jails"; -- from DictEng -lin jail_V2 = mkV2 (mkV "jail" "jails" "jailed" "jailed" "jailing"); -- from DictEng -lin jailer_N = mkN "jailer" "jailers"; -- from DictEng -lin jailor_N = mkN "jailor" "jailors"; -- from DictEng -lin jakes_N = mkN "jakes" "IRREG"; -- from DictEng -lin jalapeno_N = mkN "jalapeno" ; -lin jalopy_N = mkN "jalopy" "jalopies"; -- from DictEng -lin jalousie_N = mkN "jalousie" ; -lin jam_N = mkN "jam" "jams"; -- from DictEng -lin jam_V = mkV "jam" "jams" "jammed" "jammed" "jamming"; -- from DictEng -lin jam_V2 = mkV2 (mkV "jam" "jams" "jammed" "jammed" "jamming"); -- from DictEng -lin jam_VS = mkVS (mkV "jam" "jams" "jammed" "jammed" "jamming"); -- from DictEng -lin jamaican_A = compoundA (mkA "jamaican"); -- from DictEng -lin jamaican_N = mkN "jamaican" "jamaicans"; -- from DictEng -lin jamb_N = mkN "jamb" "jambs"; -- from DictEng -lin jambalaya_N = mkN "jambalaya" ; -lin jamboree_N = mkN "jamboree" "jamborees"; -- from DictEng -lin jamjar_N = mkN "jamjar" "jamjars"; -- from DictEng -lin jammed_A = mkA "jammed" ; -lin jammer_N = mkN "jammer" ; -lin jamming_N = mkN "jamming" ; -lin jampack_V2 = mkV2 (mkV "jampack" "jampacks" "jampacked" "jampacked" "jampacking"); -- from DictEng -lin jampan_N = mkN "jampan" ; -lin jampot_N = mkN "jampot" "jampots"; -- from DictEng -lin jangle_N = mkN "jangle" ; -- from DictEng -lin jangle_V = mkV "jangle" "jangles" "jangled" "jangled" "jangling"; -- from DictEng -lin jangle_V2 = mkV2 (mkV "jangle" "jangles" "jangled" "jangled" "jangling"); -- from DictEng -lin jangling_A = mkA "jangling" ; -lin janissary_N = mkN "janissary" ; -lin janitor_N = mkN "janitor" "janitors"; -- from DictEng -lin january_N = mkN "january" "januaries"; -- from DictEng -lin japan_N = mkN "japan" ; -lin japan_V2 = mkV2 (mkV "japan" "japans" "japanned" "japanned" "japanning"); -- from DictEng -lin japanese_A = compoundA (mkA "Japanese"); -- from DictEng -lin japanese_N = mkN "Japanese" "Japanese"; -- from DictEng -lin jape_N = mkN "jape" "japes"; -- from DictEng -lin japonica_N = mkN "japonica" ; -- from DictEng -lin jar_N = mkN "jar" "jars"; -- from DictEng -lin jar_V = mkV "jar" "jars" "jarred" "jarred" "jarring"; -- from DictEng -lin jar_V2 = mkV2 (mkV "jar" "jars" "jarred" "jarred" "jarring"); -- from DictEng -lin jarful_N = mkN "jarful" "jarfuls"; -- from DictEng -lin jargon_N = mkN "jargon" ; -- from DictEng -lin jargoon_N = mkN "jargoon" ; -lin jarring_A = compoundA (mkA "jarring"); -- from DictEng -lin jarringly_Adv = mkAdv "jarringly" ; -lin jasmine_N = mkN "jasmine" ; -- from DictEng -lin jasper_N = mkN "jasper" ; -- from DictEng -lin jassid_N = mkN "jassid" ; -lin jati_N = mkN "jati" ; -lin jaundice_N = mkN "jaundice" ; -- from DictEng -lin jaundice_V2 = mkV2 (mkV "jaundice" "jaundices" "jaundiced" "jaundiced" "jaundicing"); -- from DictEng -lin jaundiced_A = mkA "jaundiced" ; -lin jaunt_N = mkN "jaunt" "jaunts"; -- from DictEng -lin jaunt_V = mkV "jaunt" "jaunts" "jaunted" "jaunted" "jaunting"; -- from DictEng -lin jauntily_Adv = mkAdv "jauntily"; -- from DictEng -lin jauntiness_N = mkN "jauntiness" ; -- from DictEng -lin jaunting_car_N = mkN "jaunting - car" "jaunting - cars"; -- from DictEng -lin jaunty_A = mkA "jaunty" "jauntier"; -- from DictEng -lin javanese_A = compoundA (mkA "javanese"); -- from DictEng -lin javanese_N = mkN "javanese" "javanese"; -- from DictEng -lin javelin_N = mkN "javelin" "javelins"; -- from DictEng -lin jaw_N = mkN "jaw" "jaws"; -- from DictEng -lin jaw_V = mkV "jaw" "jaws" "jawed" "jawed" "jawing"; -- from DictEng -lin jawan_N = mkN "jawan" ; -lin jawbone_N = mkN "jawbone" "jawbones"; -- from DictEng -lin jawbreaker_N = mkN "jawbreaker" "jawbreakers"; -- from DictEng -lin jawed_A = mkA "jawed" ; -lin jawfish_N = mkN "jawfish" ; -lin jawless_A = mkA "jawless" ; -lin jay_N = mkN "jay" "jays"; -- from DictEng -lin jaywalk_V = mkV "jaywalk" "jaywalks" "jaywalked" "jaywalked" "jaywalking"; -- from DictEng -lin jaywalker_N = mkN "jaywalker" "jaywalkers"; -- from DictEng -lin jazz_N = mkN "jazz" ; -- from DictEng -lin jazz_V2 = mkV2 (mkV "jazz" "jazzes" "jazzed" "jazzed" "jazzing"); -- from DictEng -lin jazzy_A = mkA "jazzy" "jazzier"; -- from DictEng -lin jealous_A = compoundA (mkA "jealous"); -- from DictEng -lin jealously_Adv = mkAdv "jealously" ; -lin jealousy_N = mkN "jealousy" "jealousies"; -- from DictEng -lin jean_N = mkN "jean" ; -- from DictEng -lin jeep_N = mkN "jeep" "jeeps"; -- from DictEng -lin jeep_V2 = mkV2 (mkV "jeep") ; -lin jeer_N = mkN "jeer" "jeers"; -- from DictEng -lin jeer_V = mkV "jeer" "jeers" "jeered" "jeered" "jeering"; -- from DictEng -lin jeer_V2 = mkV2 (mkV "jeer" "jeers" "jeered" "jeered" "jeering"); -- from DictEng -lin jeeringly_Adv = mkAdv "jeeringly"; -- from DictEng -lin jejune_A = compoundA (mkA "jejune"); -- from DictEng -lin jejuneness_N = mkN "jejuneness" ; -- from DictEng -lin jejunitis_N = mkN "jejunitis" ; -lin jejunity_N = mkN "jejunity" ; -lin jejunoileitis_N = mkN "jejunoileitis" ; -lin jejunostomy_N = mkN "jejunostomy" ; -lin jejunum_N = mkN "jejunum" ; -lin jell_V = mkV "jell" "jells" "jelled" "jelled" "jelling"; -- from DictEng -lin jell_V2 = mkV2 (mkV "jell" "jells" "jelled" "jelled" "jelling"); -- from DictEng -lin jellaba_N = mkN "jellaba" "jellabas"; -- from DictEng -lin jellied_A = compoundA (mkA "jellied"); -- from DictEng -lin jello_N = mkN "jello" ; -lin jelly_N = mkN "jelly" "jellies"; -- from DictEng -lin jelly_V = mkV "jelly" "jellies" "jellied" "jellied" "jellying"; -- from DictEng -lin jelly_V2 = mkV2 (mkV "jelly" "jellies" "jellied" "jellied" "jellying"); -- from DictEng -lin jellyfish_N = mkN "jellyfish" "jellyfish"; -- from DictEng -lin jellyroll_N = mkN "jellyroll" ; -lin jemmy_N = mkN "jemmy" "jemmies"; -- from DictEng -lin jennet_N = mkN "jennet" ; -lin jenny_N = mkN "jenny" "jennies"; -- from DictEng -lin jeopardize_V2 = mkV2 (mkV "jeopardize" "jeopardizes" "jeopardized" "jeopardized" "jeopardizing"); -- from DictEng -lin jeopardy_N = mkN "jeopardy" ; -- from DictEng -lin jerboa_N = mkN "jerboa" "jerboas"; -- from DictEng -lin jeremiad_N = mkN "jeremiad" "jeremiads"; -- from DictEng -lin jerk_N = mkN "jerk" "jerks"; -- from DictEng -lin jerk_V = mkV "jerk" "jerks" "jerked" "jerked" "jerking"; -- from DictEng -lin jerk_V2 = mkV2 (mkV "jerk" "jerks" "jerked" "jerked" "jerking"); -- from DictEng -lin jerkily_Adv = mkAdv "jerkily"; -- from DictEng -lin jerkin_N = mkN "jerkin" "jerkins"; -- from DictEng -lin jerkiness_N = mkN "jerkiness" ; -- from DictEng -lin jerkwater_A = mkA "jerkwater" ; -lin jerky_A = mkA "jerky" "jerkier"; -- from DictEng -lin jerky_N = mkN "jerky" ; -lin jeroboam_N = mkN "jeroboam" ; -lin jerry_N = mkN "jerry" "jerries"; -- from DictEng -lin jerry_builder_N = mkN "jerry - builder" "jerry - builders"; -- from DictEng -lin jerry_building_N = mkN "jerry - building" ; -- from DictEng -lin jerry_built_A = compoundA (mkA "jerry - built"); -- from DictEng -lin jerry_builder_N = mkN "jerry - builder" "jerry - builders"; -- from DictEng -lin jerry_building_N = mkN "jerry - building" ; -- from DictEng -lin jerry_built_A = compoundA (mkA "jerry - built"); -- from DictEng -lin jersey_N = mkN "jersey" "jerseys"; -- from DictEng -lin jest_N = mkN "jest" "jests"; -- from DictEng -lin jest_V = mkV "jest" "jests" "jested" "jested" "jesting"; -- from DictEng -lin jester_N = mkN "jester" "jesters"; -- from DictEng -lin jesting_A = compoundA (mkA "jesting"); -- from DictEng -lin jesuit_N = mkN "jesuit" "jesuits"; -- from DictEng -lin jesuitical_A = compoundA (mkA "jesuitical"); -- from DictEng -lin jet_N = mkN "jet" "jets"; -- from DictEng -lin jet_V = mkV "jet" "jets" "jetted" "jetted" "jetting"; -- from DictEng -lin jet_V2 = mkV2 (mkV "jet" "jets" "jetted" "jetted" "jetting"); -- from DictEng -lin jet_propelled_A = compoundA (mkA "jet - propelled"); -- from DictEng -lin jet_black_A = compoundA (mkA "jet - black"); -- from DictEng -lin jet_propelled_A = compoundA (mkA "jet - propelled"); -- from DictEng -lin jetliner_N = mkN "jetliner" ; -lin jetsam_N = mkN "jetsam" ; -- from DictEng -lin jetting_A = mkA "jetting" ; -lin jettison_V2 = mkV2 (mkV "jettison" "jettisons" "jettisoned" "jettisoned" "jettisoning"); -- from DictEng -lin jetty_N = mkN "jetty" "jetties"; -- from DictEng -lin jew_N = mkN "jew" "jews"; -- from DictEng -lin jewel_N = mkN "jewel" "jewels"; -- from DictEng -lin jewel_V2 = mkV2 (mkV "jewel" "jewels" "jewelled" "jewelled" "jewelling"); -- from DictEng -lin jeweler_N = mkN "jeweler" ; -lin jeweller_N = mkN "jeweller" "jewellers"; -- from DictEng -lin jewellery_N = mkN "jewellery" ; -- from DictEng -lin jewelry_N = mkN "jewelry" ; -- from DictEng -lin jewels_of_opar_N = mkN "jewels of opar" ; -lin jewelweed_N = mkN "jewelweed" ; -lin jewess_N = mkN "jewess" "jewesses"; -- from DictEng -lin jewfish_N = mkN "jewfish" ; -lin jewish_A = compoundA (mkA "jewish"); -- from DictEng -lin jezebel_N = mkN "jezebel" "jezebels"; -- from DictEng -lin jiao_N = mkN "jiao" ; -lin jib_N = mkN "jib" "jibs"; -- from DictEng -lin jib_V = mkV "jib" "jibs" "jibbed" "jibbed" "jibbing"; -- from DictEng -lin jib_boom_N = mkN "jib - boom" "jib - booms"; -- from DictEng -lin jibboom_N = mkN "jibboom" ; -lin jibe_N = mkN "jibe" "jibes"; -- from DictEng -lin jibe_V = mkV "jibe" "jibes" "jibed" "jibed" "jibing"; -- from DictEng -lin jiffy_N = mkN "jiffy" "jiffies"; -- from DictEng -lin jig_N = mkN "jig" "jigs"; -- from DictEng -lin jig_V = mkV "jig" "jigs" "jigged" "jigged" "jigging"; -- from DictEng -lin jig_V2 = mkV2 (mkV "jig" "jigs" "jigged" "jigged" "jigging"); -- from DictEng -lin jigger_N = mkN "jigger" "jiggers"; -- from DictEng -lin jiggered_A = compoundA (mkA "jiggered"); -- from DictEng -lin jiggermast_N = mkN "jiggermast" ; -lin jiggery_pokery_N = mkN "jiggery - pokery" ; -- from DictEng -lin jiggle_N = mkN "jiggle" "jiggles"; -- from DictEng -lin jiggle_V = mkV "jiggle" "jiggles" "jiggled" "jiggled" "jiggling"; -- from DictEng -lin jiggle_V2 = mkV2 (mkV "jiggle" "jiggles" "jiggled" "jiggled" "jiggling"); -- from DictEng -lin jigsaw_N = mkN "jigsaw" "jigsaws"; -- from DictEng -lin jihad_N = mkN "jihad" "jihads"; -- from DictEng -lin jihadi_A = mkA "jihadi" ; -lin jilt_N = mkN "jilt" "jilts"; -- from DictEng -lin jilt_V2 = mkV2 (mkV "jilt" "jilts" "jilted" "jilted" "jilting"); -- from DictEng -lin jilted_A = mkA "jilted" ; -lin jim_crow_N = mkN "jim crow" "IRREG"; -- from DictEng -lin jimdandy_N = mkN "jimdandy" ; -lin jimmies_N = mkN "jimmies" ; -lin jimmy_N = mkN "jimmy" "jimmies"; -- from DictEng -lin jimsonweed_N = mkN "jimsonweed" ; -lin jingle_N = mkN "jingle" "jingles"; -- from DictEng -lin jingle_V = mkV "jingle" "jingles" "jingled" "jingled" "jingling"; -- from DictEng -lin jingle_V2 = mkV2 (mkV "jingle" "jingles" "jingled" "jingled" "jingling"); -- from DictEng -lin jingling_A = mkA "jingling" ; -lin jingo_N = mkN "jingo" "jingoes"; -- from DictEng -lin jingoism_N = mkN "jingoism" ; -- from DictEng -lin jingoist_N = mkN "jingoist" "jingoists"; -- from DictEng -lin jingoistic_A = compoundA (mkA "jingoistic"); -- from DictEng -lin jinks_N = mkN "jinks" ; -- from DictEng -lin jinn_N = mkN "jinn" "jinns"; -- from DictEng -lin jinrikisha_N = mkN "jinrikisha" ; -lin jinx_N = mkN "jinx" "jinxes"; -- from DictEng -lin jiqui_N = mkN "jiqui" ; -lin jird_N = mkN "jird" ; -lin jitney_N = mkN "jitney" "jitneys"; -- from DictEng -lin jitter_N = mkN "jitter" ; -lin jitterbug_N = mkN "jitterbug" "jitterbugs"; -- from DictEng -lin jitteriness_N = mkN "jitteriness" ; -lin jittering_A = mkA "jittering" ; -lin jitters_N = mkN "jitters" ; -lin jittery_A = compoundA (mkA "jittery"); -- from DictEng -lin jive_N = mkN "jive" "jives"; -- from DictEng -lin jive_V = mkV "jive" "jives" "jived" "jived" "jiving"; -- from DictEng -lin job_N = mkN "job" "jobs"; -- from DictEng -lin job_V = mkV "job" "jobs" "jobbed" "jobbed" "jobbing"; -- from DictEng -lin job_V2 = mkV2 (mkV "job" "jobs" "jobbed" "jobbed" "jobbing"); -- from DictEng -lin jobber_N = mkN "jobber" "jobbers"; -- from DictEng -lin jobbery_N = mkN "jobbery" ; -- from DictEng -lin jobcentre_N = mkN "jobcentre" ; -lin jobholder_N = mkN "jobholder" ; -lin jockey_N = mkN "jockey" "jockeys"; -- from DictEng -lin jockey_V = mkV "jockey" "jockeys" "jockeyed" "jockeyed" "jockeying"; -- from DictEng -lin jockey_V2 = mkV2 (mkV "jockey" "jockeys" "jockeyed" "jockeyed" "jockeying"); -- from DictEng -lin jocose_A = compoundA (mkA "jocose"); -- from DictEng -lin jocosely_Adv = mkAdv "jocosely" ; -lin jocoseness_N = mkN "jocoseness" ; -- from DictEng -lin jocosity_N = mkN "jocosity" ; -- from DictEng -lin jocular_A = compoundA (mkA "jocular"); -- from DictEng -lin jocularity_N = mkN "jocularity" "jocularities"; -- from DictEng -lin jocund_A = compoundA (mkA "jocund"); -- from DictEng -lin jocundity_N = mkN "jocundity" "jocundities"; -- from DictEng -lin jodhpur_N = mkN "jodhpur" ; -lin jodhpurs_N = mkN "jodhpurs" ; -lin jog_N = mkN "jog" "jogs"; -- from DictEng -lin jog_V = mkV "jog" "jogs" "jogged" "jogged" "jogging"; -- from DictEng -lin jog_V2 = mkV2 (mkV "jog" "jogs" "jogged" "jogged" "jogging"); -- from DictEng -lin jog_trot_N = mkN "jog - trot" "jog - trots"; -- from DictEng -lin jogger_N = mkN "jogger" "joggers"; -- from DictEng -lin jogging_N = mkN "jogging" ; -- from DictEng -lin joggle_N = mkN "joggle" "joggles"; -- from DictEng -lin joggle_V = mkV "joggle" "joggles" "joggled" "joggled" "joggling"; -- from DictEng -lin joggle_V2 = mkV2 (mkV "joggle" "joggles" "joggled" "joggled" "joggling"); -- from DictEng -lin john_bull_N = mkN "john bull" "IRREG"; -- from DictEng -lin johnnycake_N = mkN "johnnycake" ; -lin joie_de_vivre_N = mkN "joie de vivre" ; -- from DictEng -lin join_N = mkN "join" "joins"; -- from DictEng -lin join_V = mkV "join" "joins" "joined" "joined" "joining"; -- from DictEng -lin join_V2 = mkV2 (mkV "join" "joins" "joined" "joined" "joining"); -- from DictEng -lin joined_A = mkA "joined" ; -lin joiner_N = mkN "joiner" "joiners"; -- from DictEng -lin joinery_N = mkN "joinery" ; -- from DictEng -lin joining_N = mkN "joining" ; -lin joint_A = compoundA (mkA "joint"); -- from DictEng -lin joint_N = mkN "joint" "joints"; -- from DictEng -lin joint_V2 = mkV2 (mkV "joint" "joints" "jointed" "jointed" "jointing"); -- from DictEng -lin jointed_A = mkA "jointed" ; -lin jointer_N = mkN "jointer" ; -lin jointly_Adv = mkAdv "jointly" ; -lin jointure_N = mkN "jointure" "jointures"; -- from DictEng -lin joist_N = mkN "joist" "joists"; -- from DictEng -lin joke_N = mkN "joke" "jokes"; -- from DictEng -lin joke_V = mkV "joke" "jokes" "joked" "joked" "joking"; -- from DictEng -lin joke_VS = mkVS (mkV "joke" "jokes" "joked" "joked" "joking"); -- from DictEng -lin joker_N = mkN "joker" "jokers"; -- from DictEng -lin jokingly_Adv = mkAdv "jokingly"; -- from DictEng -lin jollification_N = mkN "jollification" "jollifications"; -- from DictEng -lin jollify_V2 = mkV2 (mkV "jollify") ; -lin jollity_N = mkN "jollity" "jollities"; -- from DictEng -lin jolly_A = mkA "jolly" "jollier"; -- from DictEng -lin jolly_Adv = mkAdv "jolly"; -- from DictEng -lin jolly_N = mkN "jolly" ; -lin jolly_V2 = mkV2 (mkV "jolly" "jollies" "jollied" "jollied" "jollying"); -- from DictEng -lin jollyboat_N = mkN "jollyboat" "jollyboats"; -- from DictEng -lin jolt_N = mkN "jolt" "jolts"; -- from DictEng -lin jolt_V = mkV "jolt" "jolts" "jolted" "jolted" "jolting"; -- from DictEng -lin jolt_V2 = mkV2 (mkV "jolt" "jolts" "jolted" "jolted" "jolting"); -- from DictEng -lin jolted_A = mkA "jolted" ; -lin jolty_A = mkA "jolty" "joltier"; -- from DictEng -lin jonah_N = mkN "jonah" ; -lin jonquil_N = mkN "jonquil" "jonquils"; -- from DictEng -lin jordanian_A = compoundA (mkA "Jordanian"); -- from DictEng -lin jordanian_N = mkN "Jordanian" "Jordanians"; -- from DictEng -lin jorum_N = mkN "jorum" ; -lin joss_N = mkN "joss" "josses"; -- from DictEng -lin joss_house_N = mkN "joss - house" "joss - houses"; -- from DictEng -lin joss_stick_N = mkN "joss - stick" "joss - sticks"; -- from DictEng -lin jostle_N = mkN "jostle" ; -lin jostle_V = mkV "jostle" "jostles" "jostled" "jostled" "jostling"; -- from DictEng -lin jostle_V2 = mkV2 (mkV "jostle" "jostles" "jostled" "jostled" "jostling"); -- from DictEng -lin jot_N = mkN "jot" "jots"; -- from DictEng -lin jot_V2 = mkV2 (mkV "jot" "jots" "jotted" "jotted" "jotting"); -- from DictEng -lin jotter_N = mkN "jotter" "jotters"; -- from DictEng -lin jotting_N = mkN "jotting" ; -lin joule_N = mkN "joule" "joules"; -- from DictEng -lin journal_N = mkN "journal" "journals"; -- from DictEng -lin journalese_N = mkN "journalese" ; -- from DictEng -lin journalism_N = mkN "journalism" ; -- from DictEng -lin journalist_N = mkN "journalist" "journalists"; -- from DictEng -lin journalistic_A = compoundA (mkA "journalistic"); -- from DictEng -lin journalistically_Adv = mkAdv "journalistically"; -- from DictEng -lin journey_N = mkN "journey" "journeys"; -- from DictEng -lin journey_V = mkV "journey" "journeys" "journeyed" "journeyed" "journeying"; -- from DictEng -lin journey_V2 = mkV2 (mkV "journey") ; -lin journeyman_N = mkN "journeyman" "journeymen" {- FIXME: guessed plural form -}; -- from DictEng -lin joust_N = mkN "joust" "jousts"; -- from DictEng -lin joust_V = mkV "joust" "jousts" "jousted" "jousted" "jousting"; -- from DictEng -lin jovial_A = compoundA (mkA "jovial"); -- from DictEng -lin joviality_N = mkN "joviality" "jovialities"; -- from DictEng -lin jovially_Adv = mkAdv "jovially" ; -lin jowl_N = mkN "jowl" "jowls"; -- from DictEng -lin jowly_A = mkA "jowly" "jowlier"; -- from DictEng -lin joy_N = mkN "joy" "joys"; -- from DictEng -lin joy_V = mkV "joy" "joys" "joyed" "joyed" "joying"; -- from DictEng -lin joy_ride_N = mkN "joy - ride" "joy - rides"; -- from DictEng -lin joy_stick_N = mkN "joy - stick" "joy - sticks"; -- from DictEng -lin joyful_A = compoundA (mkA "joyful"); -- from DictEng -lin joyfulness_N = mkN "joyfulness" ; -- from DictEng -lin joyless_A = compoundA (mkA "joyless"); -- from DictEng -lin joylessly_Adv = mkAdv "joylessly" ; -lin joylessness_N = mkN "joylessness" ; -- from DictEng -lin joyous_A = compoundA (mkA "joyous"); -- from DictEng -lin joyousness_N = mkN "joyousness" ; -- from DictEng -lin joyride_N = mkN "joyride" ; -lin joystick_N = mkN "joystick" ; -lin jp_N = mkN "jp" ; -- from DictEng -lin ju_jitsu_N = mkN "ju - jitsu" ; -- from DictEng -lin jubilant_A = compoundA (mkA "jubilant"); -- from DictEng -lin jubilation_N = mkN "jubilation" "jubilations"; -- from DictEng -lin jubilee_N = mkN "jubilee" "jubilees"; -- from DictEng -lin judaic_A = compoundA (mkA "judaic"); -- from DictEng -lin judaism_N = mkN "judaism" ; -- from DictEng -lin judas_N = mkN "judas" "judases"; -- from DictEng -lin judder_V = mkV "judder" "judders" "juddered" "juddered" "juddering"; -- from DictEng -lin judge_N = mkN "judge" "judges"; -- from DictEng -lin judge_V = mkV "judge" "judges" "judged" "judged" "judging"; -- from DictEng -lin judge_V2 = mkV2 (mkV "judge" "judges" "judged" "judged" "judging"); -- from DictEng -lin judge_V2V = mkV2V (mkV "judge" "judges" "judged" "judged" "judging") noPrep to_Prep ; -- from DictEng -lin judge_VS = mkVS (mkV "judge" "judges" "judged" "judged" "judging"); -- from DictEng -lin judgement_N = mkN "judgement" "judgements"; -- from DictEng -lin judgeship_N = mkN "judgeship" ; -lin judgment_N = mkN "judgment" ; -lin judgmental_A = mkA "judgmental" ; -lin judicable_A = mkA "judicable" ; -lin judicature_N = mkN "judicature" "judicatures"; -- from DictEng -lin judicial_A = compoundA (mkA "judicial"); -- from DictEng -lin judicially_Adv = mkAdv "judicially" ; -lin judiciary_N = mkN "judiciary" "judiciaries"; -- from DictEng -lin judicious_A = compoundA (mkA "judicious"); -- from DictEng -lin judiciously_Adv = mkAdv "judiciously" ; -lin judiciousness_N = mkN "judiciousness" ; -- from DictEng -lin judo_N = mkN "judo" ; -- from DictEng -lin jug_N = mkN "jug" "jugs"; -- from DictEng -lin jug_V2 = mkV2 (mkV "jug" "jugs" "jugged" "jugged" "jugging"); -- from DictEng -lin jugale_N = mkN "jugale" ; -lin jugful_N = mkN "jugful" "jugfuls"; -- from DictEng -lin juggernaut_N = mkN "juggernaut" "juggernauts"; -- from DictEng -lin juggle_N = mkN "juggle" ; -lin juggle_V = mkV "juggle" "juggles" "juggled" "juggled" "juggling"; -- from DictEng -lin juggle_V2 = mkV2 (mkV "juggle" "juggles" "juggled" "juggled" "juggling"); -- from DictEng -lin juggler_N = mkN "juggler" "jugglers"; -- from DictEng -lin jugglery_N = mkN "jugglery" ; -lin jugular_A = compoundA (mkA "jugular"); -- from DictEng -lin jugular_N = mkN "jugular" ; -lin juice_N = mkN "juice" "juices"; -- from DictEng -lin juiceless_A = mkA "juiceless" ; -lin juiciness_N = mkN "juiciness" ; -- from DictEng -lin juicy_A = mkA "juicy" "juicier"; -- from DictEng -lin juju_N = mkN "juju" "jujus"; -- from DictEng -lin jujube_N = mkN "jujube" "jujubes"; -- from DictEng -lin jujutsu_N = mkN "jujutsu" ; -lin juke_N = mkN "juke" ; -lin jukebox_N = mkN "jukebox" "jukeboxes"; -- from DictEng -lin julep_N = mkN "julep" "juleps"; -- from DictEng -lin julian_A = compoundA (mkA "julian"); -- from DictEng -lin julienne_N = mkN "julienne" ; -lin july_N = mkN "july" "IRREG"; -- from DictEng -lin jumble_N = mkN "jumble" "jumbles"; -- from DictEng -lin jumble_V = mkV "jumble" "jumbles" "jumbled" "jumbled" "jumbling"; -- from DictEng -lin jumble_V2 = mkV2 (mkV "jumble" "jumbles" "jumbled" "jumbled" "jumbling"); -- from DictEng -lin jumble_sale_N = mkN "jumble - sale" "jumble - sales"; -- from DictEng -lin jumbo_A = compoundA (mkA "jumbo"); -- from DictEng -lin jumbojet_N = mkN "jumbojet" ; -lin jumentous_A = mkA "jumentous" ; -lin jump_N = mkN "jump" "jumps"; -- from DictEng -lin jump_V = mkV "jump" "jumps" "jumped" "jumped" "jumping"; -- from DictEng -lin jump_V2 = mkV2 (mkV "jump" "jumps" "jumped" "jumped" "jumping"); -- from DictEng -lin jump_V2V = mkV2V (mkV "jump" "jumps" "jumped" "jumped" "jumping") noPrep to_Prep ; -- from DictEng -lin jump_VV = mkVV (mkV "jump" "jumps" "jumped" "jumped" "jumping") ; -- from DictEng -lin jumped_up_A = compoundA (mkA "jumped - up"); -- from DictEng -lin jumped_up_A = compoundA (mkA "jumped - up"); -- from DictEng -lin jumper_N = mkN "jumper" "jumpers"; -- from DictEng -lin jumpiness_N = mkN "jumpiness" ; -- from DictEng -lin jumping_N = mkN "jumping" ; -lin jumpstart_N = mkN "jumpstart" ; -lin jumpy_A = mkA "jumpy" "jumpier"; -- from DictEng -lin junco_N = mkN "junco" ; -lin junction_N = mkN "junction" "junctions"; -- from DictEng -lin juncture_N = mkN "juncture" "junctures"; -- from DictEng -lin june_N = mkN "june" "junes"; -- from DictEng -lin jungle_N = mkN "jungle" "jungles"; -- from DictEng -lin jungly_A = mkA "jungly" "junglier"; -- from DictEng -lin junior_A = compoundA (mkA "junior"); -- from DictEng -lin junior_N = mkN "junior" "juniors"; -- from DictEng -lin junior_grade_A = compoundA (mkA "junior grade") ; -lin juniper_N = mkN "juniper" "junipers"; -- from DictEng -lin junk_N = mkN "junk" "junks"; -- from DictEng -lin junk_V2 = mkV2 (mkV "junk"); -- from DictEng -lin junk_dna_PN = mkPN "junk DNA" ; -lin junk_shop_N = mkN "junk - shop" "junk - shops"; -- from DictEng -lin junket_N = mkN "junket" "junkets"; -- from DictEng -lin junket_V = mkV "junket" "junkets" "junketed" "junketed" "junketing"; -- from DictEng -lin junketing_N = mkN "junketing" ; -- from DictEng -lin junkie_N = mkN "junkie" "junkies"; -- from DictEng -lin junky_N = mkN "junky" "junkies"; -- from DictEng -lin junkyard_N = mkN "junkyard" ; -lin junoesque_A = compoundA (mkA "junoesque"); -- from DictEng -lin junta_N = mkN "junta" "juntas"; -- from DictEng -lin jupati_N = mkN "jupati" ; -lin jural_A = mkA "jural" ; -lin juridical_A = compoundA (mkA "juridical"); -- from DictEng -lin jurisdiction_N = mkN "jurisdiction" ; -- from DictEng -lin jurisdictional_A = mkA "jurisdictional" ; -lin jurisprudence_N = mkN "jurisprudence" ; -- from DictEng -lin jurisprudential_A = mkA "jurisprudential" ; -lin jurisprudentially_Adv = mkAdv "jurisprudentially" ; -lin jurist_N = mkN "jurist" "jurists"; -- from DictEng -lin juror_N = mkN "juror" "jurors"; -- from DictEng -lin jury_N = mkN "jury" "juries"; -- from DictEng -lin jury_box_N = mkN "jury - box" "jury - boxes"; -- from DictEng -lin jury_mast_N = mkN "jury - mast" "jury - masts"; -- from DictEng -lin jury_rigge_V2 = mkV2 (mkV "jury - rigge"); -- from DictEng -lin juryman_N = mkN "juryman" "jurymen" {- FIXME: guessed plural form -}; -- from DictEng -lin just_A = mkA "just" ; -lin just_Adv = mkAdv "just"; -- from DictEng -lin just_Predet = {s="just"}; -- from DictEng -lin just_so_Adv = mkAdv "just so" ; -lin just_then_Adv = mkAdv "just then" ; -lin justice_N = mkN "justice" "justices"; -- from DictEng -lin justiciar_N = mkN "justiciar" ; -lin justiciary_N = mkN "justiciary" "justiciaries"; -- from DictEng -lin justifiable_A = compoundA (mkA "justifiable"); -- from DictEng -lin justifiably_Adv = mkAdv "justifiably" ; -lin justification_N = mkN "justification" "justifications"; -- from DictEng -lin justificative_A = mkA "justificative" ; -lin justified_A = mkA "justified" ; -lin justify_V2 = mkV2 (mkV "justify" "justifies" "justified" "justified" "justifying"); -- from DictEng -lin justify_VV = ingVV (mkV "justify" "justifies" "justified" "justified" "justifying"); -- from DictEng -lin justly_Adv = mkAdv "justly" ; -lin justness_N = mkN "justness" ; -- from DictEng -lin jut_V = mkV "jut" "juts" "jutted" "jutted" "jutting"; -- from DictEng -lin jute_N = mkN "jute" ; -- from DictEng -lin jutting_A = mkA "jutting" ; -lin juvenescence_N = mkN "juvenescence" ; -lin juvenile_A = compoundA (mkA "juvenile"); -- from DictEng -lin juvenile_N = mkN "juvenile" "juveniles"; -- from DictEng -lin juxtapose_V2 = mkV2 (mkV "juxtapose" "juxtaposes" "juxtaposed" "juxtaposed" "juxtaposing"); -- from DictEng -lin juxtaposed_A = mkA "juxtaposed" ; -lin juxtaposition_N = mkN "juxtaposition" ; -- from DictEng -lin k_o__V2 = mkV2 (mkV "k o ") ; -lin kabbalism_N = mkN "kabbalism" ; -lin kabob_N = mkN "kabob" ; -lin kachina_N = mkN "kachina" ; -lin kaffir_N = mkN "kaffir" "kaffirs"; -- from DictEng -lin kaffiyeh_N = mkN "kaffiyeh" ; -lin kafkaesque_A = mkA "kafkaesque" ; -lin kahikatea_N = mkN "kahikatea" ; -lin kail_N = mkN "kail" ; -- from DictEng -lin kainite_N = mkN "kainite" ; -lin kaiser_N = mkN "kaiser" "kaisers"; -- from DictEng -lin kakemono_N = mkN "kakemono" "kakemonos"; -- from DictEng -lin kaki_N = mkN "kaki" ; -lin kalansuwa_N = mkN "kalansuwa" ; -lin kale_N = mkN "kale" ; -- from DictEng -lin kaleidoscope_N = mkN "kaleidoscope" "kaleidoscopes"; -- from DictEng -lin kaleidoscopic_A = compoundA (mkA "kaleidoscopic"); -- from DictEng -lin kalemia_N = mkN "kalemia" ; -lin kaliuresis_N = mkN "kaliuresis" ; -lin kalmia_N = mkN "kalmia" ; -lin kalumpang_N = mkN "kalumpang" ; -lin kameez_N = mkN "kameez" ; -lin kamikaze_N = mkN "kamikaze" ; -lin kampong_N = mkN "kampong" "kampongs"; -- from DictEng -lin kampuchean_A = compoundA (mkA "kampuchean"); -- from DictEng -lin kampuchean_N = mkN "kampuchean" "kampucheans"; -- from DictEng -lin kanamycin_N = mkN "kanamycin" ; -lin kanchil_N = mkN "kanchil" ; -lin kangaroo_N = mkN "kangaroo" "kangaroos"; -- from DictEng -lin kanzu_N = mkN "kanzu" ; -lin kaoliang_N = mkN "kaoliang" ; -lin kaolin_N = mkN "kaolin" ; -- from DictEng -lin kaolinite_N = mkN "kaolinite" ; -lin kaon_N = mkN "kaon" ; -lin kapeika_N = mkN "kapeika" ; -lin kaph_N = mkN "kaph" ; -lin kapok_N = mkN "kapok" ; -- from DictEng -lin kappa_N = mkN "kappa" ; -lin kapuka_N = mkN "kapuka" ; -lin kaput_A = compoundA (mkA "kaput"); -- from DictEng -lin karaoke_N = mkN "karaoke" ; -lin karat_N = mkN "karat" "karats"; -- from DictEng -lin karate_N = mkN "karate" ; -- from DictEng -lin karma_N = mkN "karma" "karmas"; -- from DictEng -lin karyokinesis_N = mkN "karyokinesis" ; -lin karyokinetic_A = mkA "karyokinetic" ; -lin karyolymph_N = mkN "karyolymph" ; -lin karyolysis_N = mkN "karyolysis" ; -lin karyotype_N = mkN "karyotype" ; -lin kasbah_N = mkN "kasbah" ; -lin kasha_N = mkN "kasha" ; -lin kashmiri_A = compoundA (mkA "kashmiri"); -- from DictEng -lin kashmiri_N = mkN "kashmiri" "kashmiris"; -- from DictEng -lin kat_N = mkN "kat" ; -lin katabatic_A = mkA "katabatic" ; -lin katamorphism_N = mkN "katamorphism" ; -lin katharobe_N = mkN "katharobe" ; -lin katharobic_A = mkA "katharobic" ; -lin katharometer_N = mkN "katharometer" ; -lin katydid_N = mkN "katydid" ; -lin kauri_N = mkN "kauri" ; -lin kava_N = mkN "kava" ; -- from DictEng -lin kawaka_N = mkN "kawaka" ; -lin kayak_N = mkN "kayak" "kayaks"; -- from DictEng -lin kazoo_N = mkN "kazoo" ; -lin kea_N = mkN "kea" ; -lin kebab_N = mkN "kebab" "kebabs"; -- from DictEng -lin kedgeree_N = mkN "kedgeree" ; -- from DictEng -lin keel_N = mkN "keel" "keels"; -- from DictEng -lin keel_V = mkV "keel" "keels" "keeled" "keeled" "keeling"; -- from DictEng -lin keel_V2 = mkV2 (mkV "keel" "keels" "keeled" "keeled" "keeling"); -- from DictEng -lin keel_shaped_A = compoundA (mkA "keel shaped") ; -lin keelboat_N = mkN "keelboat" ; -lin keelson_N = mkN "keelson" ; -lin keen_A = mkA "keen" "keener"; -- from DictEng -lin keen_N = mkN "keen" "keens"; -- from DictEng -lin keen_V = mkV "keen" "keens" "keened" "keened" "keening"; -- from DictEng -lin keen_V2 = mkV2 (mkV "keen" "keens" "keened" "keened" "keening"); -- from DictEng -lin keen_eyed_A = compoundA (mkA "keen eyed") ; -lin keenly_Adv = mkAdv "keenly" ; -lin keenness_N = mkN "keenness" ; -- from DictEng -lin keep_N = mkN "keep" "keeps"; -- from DictEng -lin keep_V = IrregEng.keep_V; -- from DictEng -lin keep_V2 = mkV2 (IrregEng.keep_V); -- from DictEng -lin keep_VA = mkVA (IrregEng.keep_V); -- from DictEng -lin keep_VS = mkVS (IrregEng.keep_V); -- from DictEng -lin keep_down_V2 = mkV2 (mkV "keep down") ; -lin keep_up_V2 = mkV2 (mkV "keep up") ; -lin keeper_N = mkN "keeper" "keepers"; -- from DictEng -lin keeping_N = mkN "keeping" ; -- from DictEng -lin keepsake_N = mkN "keepsake" "keepsakes"; -- from DictEng -lin keeshond_N = mkN "keeshond" ; -lin keg_N = mkN "keg" "kegs"; -- from DictEng -lin keloid_N = mkN "keloid" ; -lin kelp_N = mkN "kelp" ; -- from DictEng -lin kelpie_N = mkN "kelpie" ; -lin kelpy_N = mkN "kelpy" ; -lin kelt_N = mkN "kelt" "kelts"; -- from DictEng -lin kelvin_N = mkN "kelvin" ; -lin kempt_A = mkA "kempt" ; -lin ken_N = mkN "ken" ; -- from DictEng -lin ken_V2 = mkV2 (mkV "ken" "kens" "kenned" "kenned" "kenning"); -- from DictEng -lin kenaf_N = mkN "kenaf" ; -lin kennel_N = mkN "kennel" "kennels"; -- from DictEng -lin kennel_V = mkV "kennel" "kennels" "kennelled" "kennelled" "kennelling"; -- from DictEng -lin kennel_V2 = mkV2 (mkV "kennel" "kennels" "kennelled" "kennelled" "kennelling"); -- from DictEng -lin kenning_N = mkN "kenning" ; -lin kenyan_A = compoundA (mkA "kenyan"); -- from DictEng -lin kenyan_N = mkN "kenyan" "kenyans"; -- from DictEng -lin kepi_N = mkN "kepi" "kepis"; -- from DictEng -lin kept_up_A = compoundA (mkA "kept up") ; -lin keratalgia_N = mkN "keratalgia" ; -lin keratectasia_N = mkN "keratectasia" ; -lin keratin_N = mkN "keratin" ; -lin keratinization_N = mkN "keratinization" ; -lin keratitis_N = mkN "keratitis" ; -lin keratoacanthoma_N = mkN "keratoacanthoma" ; -lin keratocele_N = mkN "keratocele" ; -lin keratoconjunctivitis_N = mkN "keratoconjunctivitis" ; -lin keratoconus_N = mkN "keratoconus" ; -lin keratoderma_N = mkN "keratoderma" ; -lin keratohyalin_N = mkN "keratohyalin" ; -lin keratoiritis_N = mkN "keratoiritis" ; -lin keratomalacia_N = mkN "keratomalacia" ; -lin keratomycosis_N = mkN "keratomycosis" ; -lin keratonosis_N = mkN "keratonosis" ; -lin keratonosus_N = mkN "keratonosus" ; -lin keratoplasty_N = mkN "keratoplasty" ; -lin keratoscleritis_N = mkN "keratoscleritis" ; -lin keratoscope_N = mkN "keratoscope" ; -lin keratoscopy_N = mkN "keratoscopy" ; -lin keratosis_N = mkN "keratosis" ; -lin keratotomy_N = mkN "keratotomy" ; -lin kerb_N = mkN "kerb" "kerbs"; -- from DictEng -lin kerbstone_N = mkN "kerbstone" "kerbstones"; -- from DictEng -lin kerchief_N = mkN "kerchief" "kerchiefs"; -- from DictEng -lin kerion_N = mkN "kerion" ; -lin kern_N = mkN "kern" ; -lin kernel_N = mkN "kernel" "kernels"; -- from DictEng -lin kernicterus_N = mkN "kernicterus" ; -lin kernite_N = mkN "kernite" ; -lin kerosene_N = mkN "kerosene" ; -- from DictEng -lin kerygma_N = mkN "kerygma" ; -lin kestrel_N = mkN "kestrel" "kestrels"; -- from DictEng -lin ketamine_N = mkN "ketamine" ; -lin ketch_N = mkN "ketch" "ketches"; -- from DictEng -lin ketchup_N = mkN "ketchup" ; -- from DictEng -lin keteleeria_N = mkN "keteleeria" ; -lin ketembilla_N = mkN "ketembilla" ; -lin ketoacidosis_N = mkN "ketoacidosis" ; -lin ketohexose_N = mkN "ketohexose" ; -lin ketone_N = mkN "ketone" ; -lin ketonemia_N = mkN "ketonemia" ; -lin ketonuria_N = mkN "ketonuria" ; -lin ketoprofen_N = mkN "ketoprofen" ; -lin ketorolac_N = mkN "ketorolac" ; -lin ketose_N = mkN "ketose" ; -lin ketosteroid_N = mkN "ketosteroid" ; -lin kettle_N = mkN "kettle" "kettles"; -- from DictEng -lin kettledrum_N = mkN "kettledrum" "kettledrums"; -- from DictEng -lin keurboom_N = mkN "keurboom" ; -lin key_A = mkA "key"; -- from DictEng -lin key_N = mkN "key"; -- from DictEng -lin key_V2 = mkV2 (mkV "key" "keys" "keyed" "keyed" "keying"); -- from DictEng -lin keyboard_N = mkN "keyboard" "keyboards"; -- from DictEng -lin keyboardist_N = mkN "keyboardist" ; -lin keycard_N = mkN "keycard" ; -lin keyed_A = mkA "keyed" ; -lin keyhole_N = mkN "keyhole" "keyholes"; -- from DictEng -lin keyless_A = compoundA (mkA "keyless"); -- from DictEng -lin keynote_N = mkN "keynote" "keynotes"; -- from DictEng -lin keyring_N = mkN "keyring" "keyrings"; -- from DictEng -lin keystone_N = mkN "keystone" "keystones"; -- from DictEng -lin keystroke_N = mkN "keystroke" ; -lin keyword_N = mkN "keyword" "keywords"; -- from DictEng -lin kg_N = mkN "kg" "kg"; -- from DictEng -lin kgb_N = mkN "kgb" ; -- from DictEng -lin khadi_N = mkN "khadi" ; -lin khaki_A = compoundA (mkA "khaki"); -- from DictEng -lin khaki_N = mkN "khaki" ; -- from DictEng -lin khakis_N = mkN "khakis" ; -lin khalka_N = mkN "khalka" ; -- from DictEng -lin khamsin_N = mkN "khamsin" ; -lin khan_N = mkN "khan" "khans"; -- from DictEng -lin khanate_N = mkN "khanate" ; -lin khimar_N = mkN "khimar" ; -lin khmer_N = mkN "khmer" ; -- from DictEng -lin khoum_N = mkN "khoum" ; -lin khukuri_N = mkN "khukuri" ; -lin kiang_N = mkN "kiang" ; -lin kibble_N = mkN "kibble" ; -lin kibbutz_N = mkN "kibbutz" "IRREG"; -- from DictEng -lin kibbutznik_N = mkN "kibbutznik" "kibbutzniks"; -- from DictEng -lin kibe_N = mkN "kibe" ; -lin kibibit_N = mkN "kibibit" ; -lin kibitzer_N = mkN "kibitzer" ; -lin kick_N = mkN "kick" "kicks"; -- from DictEng -lin kick_V = mkV "kick" "kicks" "kicked" "kicked" "kicking"; -- from DictEng -lin kick_V2 = mkV2 (mkV "kick" "kicks" "kicked" "kicked" "kicking"); -- from DictEng -lin kick_start_N = mkN "kick - start" "kick - starts"; -- from DictEng -lin kick_starter_N = mkN "kick - starter" "kick - starters"; -- from DictEng -lin kickback_N = mkN "kickback" "kickbacks"; -- from DictEng -lin kicker_N = mkN "kicker" ; -lin kickoff_N = mkN "kickoff" "kickoffs"; -- from DictEng -lin kicksorter_N = mkN "kicksorter" ; -lin kickstand_N = mkN "kickstand" ; -lin kid_N = mkN "kid" "kids"; -- from DictEng -lin kid_V = mkV "kid" "kids" "kidded" "kidded" "kidding"; -- from DictEng -lin kid_V2 = mkV2 (mkV "kid" "kids" "kidded" "kidded" "kidding"); -- from DictEng -lin kiddy_N = mkN "kiddy" "kiddies"; -- from DictEng -lin kidnap_V2 = mkV2 (mkV "kidnap" "kidnaps" "kidnapped" "kidnapped" "kidnapping"); -- from DictEng -lin kidnapper_N = mkN "kidnapper" "kidnappers"; -- from DictEng -lin kidnapping_N = mkN "kidnapping" ; -lin kidney_N = mkN "kidney" "kidneys"; -- from DictEng -lin kidney_bean_N = mkN "kidney - bean" "kidney - beans"; -- from DictEng -lin kieserite_N = mkN "kieserite" ; -lin kike_N = mkN "kike" ; -lin kilderkin_N = mkN "kilderkin" ; -lin kill_N = mkN "kill" "IRREG"; -- from DictEng -lin kill_V = mkV "kill" "kills" "killed" "killed" "killing"; -- from DictEng -lin kill_V2 = mkV2 (mkV "kill" "kills" "killed" "killed" "killing"); -- from DictEng -lin killable_A = mkA "killable" ; -lin killdeer_N = mkN "killdeer" ; -lin killer_N = mkN "killer" "killers"; -- from DictEng -lin killer_t_cell_PN = mkPN "killer T cell" ; -lin killifish_N = mkN "killifish" ; -lin killing_A = compoundA (mkA "killing"); -- from DictEng -lin killing_N = mkN "killing" "killings"; -- from DictEng -lin killingly_Adv = mkAdv "killingly" ; -lin killjoy_N = mkN "killjoy" "killjoys"; -- from DictEng -lin kiln_N = mkN "kiln" "kilns"; -- from DictEng -lin kiln_dried_A = compoundA (mkA "kiln dried") ; -lin kilo_N = mkN "kilo" "kilos"; -- from DictEng -lin kilobit_N = mkN "kilobit" ; -lin kilobyte_N = mkN "kilobyte" ; -lin kilocycle_N = mkN "kilocycle" "kilocycles"; -- from DictEng -lin kilogram_N = mkN "kilogram" "kilograms"; -- from DictEng -lin kilogram_meter_N = mkN "kilogram meter" ; -lin kilohertz_N = mkN "kilohertz" ; -lin kiloliter_N = mkN "kiloliter" ; -lin kilolitre_N = mkN "kilolitre" "kilolitres"; -- from DictEng -lin kilometer_N = mkN "kilometer" ; -lin kilometre_N = mkN "kilometre" "kilometres"; -- from DictEng -lin kiloton_N = mkN "kiloton" ; -lin kilovolt_N = mkN "kilovolt" ; -lin kilovolt_ampere_N = mkN "kilovolt ampere" ; -lin kilowatt_N = mkN "kilowatt" "kilowatts"; -- from DictEng -lin kilt_N = mkN "kilt" "kilts"; -- from DictEng -lin kilter_N = mkN "kilter" ; -lin kimberlite_N = mkN "kimberlite" ; -lin kimono_N = mkN "kimono" "kimonos"; -- from DictEng -lin kin_N = mkN "kin" ; -lin kina_N = mkN "kina" ; -lin kinanesthesia_N = mkN "kinanesthesia" ; -lin kinase_N = mkN "kinase" ; -lin kind_A = mkA "kind" "kinder"; -- from DictEng -lin kind_N = mkN "kind" "kinds"; -- from DictEng -lin kind_hearted_A = compoundA (mkA "kind - hearted"); -- from DictEng -lin kinda_Adv = mkAdv "kinda"; -- from DictEng -lin kindergarten_N = mkN "kindergarten" "kindergartens"; -- from DictEng -lin kindhearted_A = mkA "kindhearted" ; -lin kindheartedness_N = mkN "kindheartedness" ; -lin kindle_V = mkV "kindle" "kindles" "kindled" "kindled" "kindling"; -- from DictEng -lin kindle_V2 = mkV2 (mkV "kindle" "kindles" "kindled" "kindled" "kindling"); -- from DictEng -lin kindliness_N = mkN "kindliness" ; -lin kindling_N = mkN "kindling" ; -- from DictEng -lin kindly_A = mkA "kindly" "kindlier"; -- from DictEng -lin kindly_Adv = mkAdv "kindly" ; -lin kindness_N = mkN "kindness" "kindnesses"; -- from DictEng -lin kindred_A = compoundA (mkA "kindred"); -- from DictEng -lin kindred_N = mkN "kindred" ; -- from DictEng -lin kinematics_N = mkN "kinematics" ; -lin kinescope_N = mkN "kinescope" ; -lin kinesiology_N = mkN "kinesiology" ; -lin kinesis_N = mkN "kinesis" ; -lin kinesthesia_N = mkN "kinesthesia" ; -lin kinesthesis_N = mkN "kinesthesis" ; -lin kinesthetic_A = mkA "kinesthetic" ; -lin kinesthetically_Adv = mkAdv "kinesthetically" ; -lin kinetic_A = compoundA (mkA "kinetic"); -- from DictEng -lin kinetics_N = mkN "kinetics" "kinetics"; -- from DictEng -lin king_N = mkN "king" "kings"; -- from DictEng -lin king_size_A = compoundA (mkA "king - size"); -- from DictEng -lin king_size_A = compoundA (mkA "king - size"); -- from DictEng -lin king_sized_A = compoundA (mkA "king - sized"); -- from DictEng -lin kingbird_N = mkN "kingbird" ; -lin kingbolt_N = mkN "kingbolt" ; -lin kingcup_N = mkN "kingcup" "kingcups"; -- from DictEng -lin kingdom_N = mkN "kingdom" "kingdoms"; -- from DictEng -lin kingfish_N = mkN "kingfish" ; -lin kingfisher_N = mkN "kingfisher" "kingfishers"; -- from DictEng -lin kinglet_N = mkN "kinglet" ; -lin kinglike_A = compoundA (mkA "kinglike"); -- from DictEng -lin kingly_A = compoundA (mkA "kingly"); -- from DictEng -lin kingmaker_N = mkN "kingmaker" ; -lin kingpin_N = mkN "kingpin" "kingpins"; -- from DictEng -lin kingship_N = mkN "kingship" ; -- from DictEng -lin kingwood_N = mkN "kingwood" ; -lin kinin_N = mkN "kinin" ; -lin kink_N = mkN "kink" "kinks"; -- from DictEng -lin kink_V = mkV "kink" "kinks" "kinked" "kinked" "kinking"; -- from DictEng -lin kink_V2 = mkV2 (mkV "kink" "kinks" "kinked" "kinked" "kinking"); -- from DictEng -lin kinkajou_N = mkN "kinkajou" ; -lin kinky_A = mkA "kinky" "kinkier"; -- from DictEng -lin kino_N = mkN "kino" ; -lin kinship_N = mkN "kinship" ; -- from DictEng -lin kinsman_N = mkN "kinsman" "kinsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin kinswoman_N = mkN "kinswoman" "kinswomen" {- FIXME: guessed plural form -}; -- from DictEng -lin kiosk_N = mkN "kiosk" "kiosks"; -- from DictEng -lin kip_N = mkN "kip" "kips"; -- from DictEng -lin kip_V = mkV "kip" "kips" "kipped" "kipped" "kipping"; -- from DictEng -lin kipper_N = mkN "kipper" "kippers"; -- from DictEng -lin kirk_N = mkN "kirk" "kirks"; -- from DictEng -lin kirpan_N = mkN "kirpan" ; -lin kirsch_N = mkN "kirsch" ; -- from DictEng -lin kirtle_N = mkN "kirtle" "kirtles"; -- from DictEng -lin kishke_N = mkN "kishke" ; -lin kismet_N = mkN "kismet" ; -- from DictEng -lin kiss_N = mkN "kiss" "kisses"; -- from DictEng -lin kiss_V = mkV "kiss" "kisses" "kissed" "kissed" "kissing"; -- from DictEng -lin kiss_V2 = mkV2 (mkV "kiss" "kisses" "kissed" "kissed" "kissing"); -- from DictEng -lin kisser_N = mkN "kisser" "kissers"; -- from DictEng -lin kit_N = mkN "kit" "kits"; -- from DictEng -lin kit_V2 = mkV2 (mkV "kit" "kits" "kitted" "kitted" "kitting"); -- from DictEng -lin kitbag_N = mkN "kitbag" "kitbags"; -- from DictEng -lin kitchen_N = mkN "kitchen" "kitchens"; -- from DictEng -lin kitchenette_N = mkN "kitchenette" "kitchenettes"; -- from DictEng -lin kitchenware_N = mkN "kitchenware" ; -lin kite_N = mkN "kite" "kites"; -- from DictEng -lin kite_balloon_N = mkN "kite - balloon" "kite - balloons"; -- from DictEng -lin kith_N = mkN "kith" ; -lin kitsch_A = compoundA (mkA "kitsch"); -- from DictEng -lin kitsch_N = mkN "kitsch" ; -lin kittee_N = mkN "kittee" ; -lin kitten_N = mkN "kitten" "kittens"; -- from DictEng -lin kitten_V = mkV "kitten" ; -lin kitten_tails_N = mkN "kitten tails" ; -lin kittenish_A = compoundA (mkA "kittenish"); -- from DictEng -lin kittiwake_N = mkN "kittiwake" ; -lin kitty_N = mkN "kitty" "kitties"; -- from DictEng -lin kiwi_N = mkN "kiwi" "kiwis"; -- from DictEng -lin kiwi_sized_A = compoundA (mkA "kiwi sized") ; -lin klavern_N = mkN "klavern" ; -lin klaxon_N = mkN "klaxon" "klaxons"; -- from DictEng -lin klebsiella_N = mkN "klebsiella" ; -lin kleenex_N = mkN "kleenex" "kleenexes"; -- from DictEng -lin kleptomania_N = mkN "kleptomania" ; -- from DictEng -lin kleptomaniac_N = mkN "kleptomaniac" "kleptomaniacs"; -- from DictEng -lin klondike_N = mkN "klondike" ; -lin kludge_N = mkN "kludge" ; -lin klutz_N = mkN "klutz" ; -lin klystron_N = mkN "klystron" ; -lin km_N = mkN "km" "km"; -- from DictEng -lin knack_N = mkN "knack" "knacks"; -- from DictEng -lin knacker_N = mkN "knacker" "knackers"; -- from DictEng -lin knackered_A = mkA "knackered" ; -lin knackwurst_N = mkN "knackwurst" ; -lin knap_V2 = mkV2 (mkV "knap" "knaps" "knapped" "knapped" "knapping"); -- from DictEng -lin knapsack_N = mkN "knapsack" "knapsacks"; -- from DictEng -lin knapweed_N = mkN "knapweed" ; -lin knave_N = mkN "knave" "knaves"; -- from DictEng -lin knavery_N = mkN "knavery" "knaveries"; -- from DictEng -lin knavish_A = compoundA (mkA "knavish"); -- from DictEng -lin knawel_N = mkN "knawel" ; -lin knead_V = mkV "knead"; -- from DictEng -lin knead_V2 = mkV2 (mkV "knead" "kneads" "kneaded" "kneaded" "kneading"); -- from DictEng -lin knee_N = mkN "knee" "knees"; -- from DictEng -lin knee_V2 = mkV2 (mkV "knee") ; -lin knee_deep_Adv = mkAdv "knee - deep"; -- from DictEng -lin knee_high_N = mkN "knee high" ; -lin knee_length_A = compoundA (mkA "knee length") ; -lin knee_deep_A = compoundA (mkA "knee - deep"); -- from DictEng -lin knee_deep_Adv = mkAdv "knee - deep"; -- from DictEng -lin knee_high_A = compoundA (mkA "knee - high"); -- from DictEng -lin knee_high_Adv = mkAdv "knee - high"; -- from DictEng -lin kneecap_N = mkN "kneecap" "kneecaps"; -- from DictEng -lin kneel_N = mkN "kneel" ; -lin kneel_V = mkV "kneel" "kneels" "kneeled" "kneeled" "kneeling"; -- from DictEng -lin kneel_V2 = mkV2 (irregV "kneel" "knelt" "knelt"); -lin kneeler_N = mkN "kneeler" ; -lin knell_N = mkN "knell" "IRREG"; -- from DictEng -lin knell_V = mkV "knell" ; -lin knell_V2 = mkV2 (mkV "knell") ; -lin knesset_N = mkN "knesset" "knessets"; -- from DictEng -lin knick_knack_N = mkN "knick - knack" "knick - knacks"; -- from DictEng -lin knickknack_N = mkN "knickknack" ; -lin knife_N = mkN "knife" "knives"; -- from DictEng -lin knife_V2 = mkV2 (mkV "knife" "knifes" "knifed" "knifed" "knifing"); -- from DictEng -lin knife_edge_N = mkN "knife - edge" "knife - edges"; -- from DictEng -lin knife_edge_N = mkN "knife - edge" "knife - edges"; -- from DictEng -lin knifelike_A = mkA "knifelike" ; -lin knight_N = mkN "knight" "knights"; -- from DictEng -lin knight_V2 = mkV2 (mkV "knight" "knights" "knighted" "knighted" "knighting"); -- from DictEng -lin knight_errant_N = mkN "knight - errant" "knights - errant"; -- from DictEng -lin knight_errant_N = mkN "knight - errant" "knights - errant"; -- from DictEng -lin knighthood_N = mkN "knighthood" "knighthoods"; -- from DictEng -lin knightly_A = compoundA (mkA "knightly"); -- from DictEng -lin kniphofia_N = mkN "kniphofia" ; -lin knish_N = mkN "knish" ; -lin knit_N = mkN "knit" ; -lin knit_V = mkV "knit" "knits" "knitted" "knitted" "knitting"; -- from DictEng -lin knit_V2 = mkV2 (mkV "knit" "knits" "knitted" "knitted" "knitting"); -- from DictEng -lin knitted_A = mkA "knitted" ; -lin knitter_N = mkN "knitter" "knitters"; -- from DictEng -lin knitting_N = mkN "knitting" ; -- from DictEng -lin knitting_machine_N = mkN "knitting - machine" "knitting - machines"; -- from DictEng -lin knitting_needle_N = mkN "knitting - needle" "knitting - needles"; -- from DictEng -lin knitwear_N = mkN "knitwear" ; -- from DictEng -lin knob_N = mkN "knob" "knobs"; -- from DictEng -lin knobble_N = mkN "knobble" "knobbles"; -- from DictEng -lin knobbly_A = mkA "knobbly" "knobblier"; -- from DictEng -lin knobby_A = mkA "knobby" ; -lin knobkerrie_N = mkN "knobkerrie" "knobkerries"; -- from DictEng -lin knock_N = mkN "knock" "knocks"; -- from DictEng -lin knock_V = mkV "knock" "knocks" "knocked" "knocked" "knocking"; -- from DictEng -lin knock_V2 = mkV2 (mkV "knock" "knocks" "knocked" "knocked" "knocking"); -- from DictEng -lin knock_down_A = compoundA (mkA "knock down") ; -lin knock_knee_N = mkN "knock knee" ; -lin knock_kneed_A = compoundA (mkA "knock - kneed"); -- from DictEng -lin knock_kneed_A = compoundA (mkA "knock - kneed"); -- from DictEng -lin knock_off_V2 = mkV2 (mkV "knock off") ; -lin knock_on_N = mkN "knock - on" "knock - ons"; -- from DictEng -lin knockabout_A = compoundA (mkA "knockabout"); -- from DictEng -lin knockabout_N = mkN "knockabout" ; -lin knockdown_A = compoundA (mkA "knockdown"); -- from DictEng -lin knockdown_N = mkN "knockdown" ; -lin knockdown_dragout_A = compoundA (mkA "knockdown dragout") ; -lin knocked_out_A = compoundA (mkA "knocked out") ; -lin knocked_out_A = compoundA (mkA "knocked out") ; -lin knocker_N = mkN "knocker" "knockers"; -- from DictEng -lin knockoff_N = mkN "knockoff" ; -lin knockout_A = compoundA (mkA "knockout"); -- from DictEng -lin knockout_N = mkN "knockout" "knockouts"; -- from DictEng -lin knoll_N = mkN "knoll" "knolls"; -- from DictEng -lin knot_N = mkN "knot" "knots"; -- from DictEng -lin knot_V = mkV "knot" "knots" "knotted" "knotted" "knotting"; -- from DictEng -lin knot_V2 = mkV2 (mkV "knot" "knots" "knotted" "knotted" "knotting"); -- from DictEng -lin knotgrass_N = mkN "knotgrass" ; -lin knothole_N = mkN "knothole" "knotholes"; -- from DictEng -lin knotted_A = mkA "knotted" ; -lin knotty_A = mkA "knotty" "knottier"; -- from DictEng -lin knout_N = mkN "knout" "knouts"; -- from DictEng -lin know_N = mkN "know" "knows"; -- from DictEng -lin know_V = mkV "know" "knows" "knew" "known" "knowing"; -- from DictEng -lin know_V2 = mkV2 (mkV "know" "knows" "knew" "known" "knowing"); -- from DictEng -lin know_V2V = mkV2V (mkV "know" "knows" "knew" "known" "knowing") noPrep to_Prep ; -- from DictEng -lin know_VS = mkVS (mkV "know" "knows" "knew" "known" "knowing"); -- from DictEng -lin know_how_N = mkN "know - how" ; -- from DictEng -lin know_it_all_N = mkN "know it all" ; -lin know_all_N = mkN "know - all" "know - alls"; -- from DictEng -lin know_how_N = mkN "know - how" ; -- from DictEng -lin knowable_A = mkA "knowable" ; -lin knower_N = mkN "knower" ; -lin knowing_A = compoundA (mkA "knowing"); -- from DictEng -lin knowing_N = mkN "knowing" ; -lin knowingness_N = mkN "knowingness" ; -lin knowledge_N = mkN "knowledge" ; -- from DictEng -lin knowledgeability_N = mkN "knowledgeability" ; -lin knowledgeable_A = compoundA (mkA "knowledgeable"); -- from DictEng -lin known_A = mkA "known" ; -lin knuckle_N = mkN "knuckle" "knuckles"; -- from DictEng -lin knuckle_V = mkV "knuckle" "knuckles" "knuckled" "knuckled" "knuckling"; -- from DictEng -lin knuckleball_N = mkN "knuckleball" ; -lin ko_N = mkN "ko" ; -- from DictEng -lin koala_N = mkN "koala" "koalas"; -- from DictEng -lin koan_N = mkN "koan" ; -lin kob_N = mkN "kob" ; -lin kobo_N = mkN "kobo" "kobos"; -- from DictEng -lin kohl_N = mkN "kohl" ; -- from DictEng -lin kohleria_N = mkN "kohleria" ; -lin kohlrabi_N = mkN "kohlrabi" "kohlrabis"; -- from DictEng -lin koinonia_N = mkN "koinonia" ; -lin kola_N = mkN "kola" "kolas"; -- from DictEng -lin kola_nut_N = mkN "kola - nut" "kola - nuts"; -- from DictEng -lin kolkhoz_N = mkN "kolkhoz" ; -lin kolkhoznik_N = mkN "kolkhoznik" ; -lin komondor_N = mkN "komondor" ; -lin konini_N = mkN "konini" ; -lin kook_N = mkN "kook" ; -lin kookaburra_N = mkN "kookaburra" "kookaburras"; -- from DictEng -lin kopeck_N = mkN "kopeck" "kopecks"; -- from DictEng -lin kopek_N = mkN "kopek" ; -lin kopiyka_N = mkN "kopiyka" ; -lin kopje_N = mkN "kopje" "kopjes"; -- from DictEng -lin koppie_N = mkN "koppie" "koppies"; -- from DictEng -lin koran_N = mkN "koran" "korans"; -- from DictEng -lin koranic_A = compoundA (mkA "koranic"); -- from DictEng -lin korean_A = compoundA (mkA "korean"); -- from DictEng -lin korean_N = mkN "korean" "koreans"; -- from DictEng -lin koruna_N = mkN "koruna" ; -lin kos_N = mkN "kos" ; -lin kosher_A = compoundA (mkA "kosher"); -- from DictEng -lin kosher_N = mkN "kosher" ; -- from DictEng -lin koto_N = mkN "koto" ; -lin kotow_N = mkN "kotow" "kotows"; -- from DictEng -lin kotow_V = mkV "kotow" "kotows" "kotowed" "kotowed" "kotowing"; -- from DictEng -lin koumiss_N = mkN "koumiss" ; -- from DictEng -lin kowhai_N = mkN "kowhai" ; -lin kowtow_N = mkN "kowtow" "kowtows"; -- from DictEng -lin kowtow_V = mkV "kowtow" "kowtows" "kowtowed" "kowtowed" "kowtowing"; -- from DictEng -lin kraal_N = mkN "kraal" "kraals"; -- from DictEng -lin kraft_N = mkN "kraft" ; -lin krait_N = mkN "krait" ; -lin kraurosis_N = mkN "kraurosis" ; -lin kremlin_N = mkN "kremlin" "kremlins"; -- from DictEng -lin krigia_N = mkN "krigia" ; -lin krill_N = mkN "krill" ; -lin kris_N = mkN "kris" ; -lin krona_N = mkN "krona" "kronae" {- FIXME: guessed plural form -}; -- from DictEng -lin krone_N = mkN "krone" "IRREG"; -- from DictEng -lin kroon_N = mkN "kroon" ; -lin krubi_N = mkN "krubi" ; -lin krummhorn_N = mkN "krummhorn" ; -lin krypton_N = mkN "krypton" ; -lin kudos_N = mkN "kudos" ; -- from DictEng -lin kudu_N = mkN "kudu" ; -lin kudzu_N = mkN "kudzu" ; -lin kumis_N = mkN "kumis" ; -- from DictEng -lin kummel_N = mkN "kümmel" ; -- from DictEng -lin kumquat_N = mkN "kumquat" ; -lin kung_fu_N = mkN "kung fu" ; -- from DictEng -lin kunzite_N = mkN "kunzite" ; -lin kurrajong_N = mkN "kurrajong" ; -lin kurta_N = mkN "kurta" ; -lin kuru_N = mkN "kuru" ; -lin kurus_N = mkN "kurus" ; -lin kuvasz_N = mkN "kuvasz" ; -lin kuwaiti_A = compoundA (mkA "kuwaiti"); -- from DictEng -lin kuwaiti_N = mkN "kuwaiti" "kuwaitis"; -- from DictEng -lin kvass_N = mkN "kvass" ; -- from DictEng -lin kvetch_N = mkN "kvetch" ; -lin kvetch_V = mkV "kvetch" ; -lin kw_N = mkN "kw" "kw"; -- from DictEng -lin kwacha_N = mkN "kwacha" "kwacha"; -- from DictEng -lin kwanza_N = mkN "kwanza" ; -lin kwashiorkor_N = mkN "kwashiorkor" ; -lin kwela_N = mkN "kwela" ; -- from DictEng -lin kyanite_N = mkN "kyanite" ; -lin kyat_N = mkN "kyat" ; -lin kylie_N = mkN "kylie" ; -lin kylix_N = mkN "kylix" ; -lin kymograph_N = mkN "kymograph" ; -lin kyphosis_N = mkN "kyphosis" ; -lin l_plate_N = mkN "l - plate" "l - plates"; -- from DictEng -lin la_N = mkN "la" "lae" {- FIXME: guessed plural form -}; -- from DictEng -lin la_di_da_A = compoundA (mkA "la - di - da"); -- from DictEng -lin laager_N = mkN "laager" "laagers"; -- from DictEng -lin lab_N = mkN "lab" "labs"; -- from DictEng -lin labdanum_N = mkN "labdanum" ; -lin label_N = mkN "label" "labels"; -- from DictEng -lin label_V = mkV "label"; -- from DictEng -lin label_V2 = mkV2 (mkV "label" "labels" "labelled" "labelled" "labelling"); -- from DictEng -lin label_VS = mkVS (mkV "label"); -- from DictEng -lin labeled_A = mkA "labeled" ; -lin labetalol_N = mkN "labetalol" ; -lin labial_A = compoundA (mkA "labial"); -- from DictEng -lin labiate_A = mkA "labiate" ; -lin labile_A = mkA "labile" ; -lin labium_N = mkN "labium" ; -lin labor_N = mkN "labor" ; -lin labor_V = mkV "labor" "labors" "labored" "labored" "laboring"; -- from DictEng -lin labor_intensive_A = compoundA (mkA "labor intensive") ; -lin laboratory_N = mkN "laboratory" "laboratories"; -- from DictEng -lin labored_A = mkA "labored" ; -lin laborer_N = mkN "laborer" ; -lin laborious_A = compoundA (mkA "laborious"); -- from DictEng -lin laboriously_Adv = mkAdv "laboriously" ; -lin laboriousness_N = mkN "laboriousness" ; -lin laborsaving_A = mkA "laborsaving" ; -lin labour_N = mkN "labour" "labours"; -- from DictEng -lin labour_V = mkV "labour" "labours" "laboured" "laboured" "labouring"; -- from DictEng -lin labour_V2 = mkV2 (mkV "labour" "labours" "laboured" "laboured" "labouring"); -- from DictEng -lin labour_saving_A = compoundA (mkA "labour - saving"); -- from DictEng -lin laboured_A = compoundA (mkA "laboured"); -- from DictEng -lin labourer_N = mkN "labourer" "labourers"; -- from DictEng -lin labourite_N = mkN "labourite" "labourites"; -- from DictEng -lin laburnum_N = mkN "laburnum" "laburnums"; -- from DictEng -lin labyrinth_N = mkN "labyrinth" "labyrinths"; -- from DictEng -lin labyrinthine_A = compoundA (mkA "labyrinthine"); -- from DictEng -lin labyrinthitis_N = mkN "labyrinthitis" ; -lin labyrinthodont_N = mkN "labyrinthodont" ; -lin lac_N = mkN "lac" ; -lin lace_N = mkN "lace" "laces"; -- from DictEng -lin lace_V = mkV "lace" "laces" "laced" "laced" "lacing"; -- from DictEng -lin lace_V2 = mkV2 (mkV "lace" "laces" "laced" "laced" "lacing"); -- from DictEng -lin lacebark_N = mkN "lacebark" ; -lin laced_A = mkA "laced" ; -lin lacer_N = mkN "lacer" ; -lin lacerate_A = mkA "lacerate" ; -lin lacerate_V2 = mkV2 (mkV "lacerate" "lacerates" "lacerated" "lacerated" "lacerating"); -- from DictEng -lin laceration_N = mkN "laceration" "lacerations"; -- from DictEng -lin lacewing_N = mkN "lacewing" ; -lin lacework_N = mkN "lacework" ; -lin lachrymal_A = compoundA (mkA "lachrymal"); -- from DictEng -lin lachrymose_A = compoundA (mkA "lachrymose"); -- from DictEng -lin lacing_N = mkN "lacing" ; -lin lack_N = mkN "lack" ; -- from DictEng -lin lack_V = mkV "lack" "lacks" "lacked" "lacked" "lacking"; -- from DictEng -lin lack_V2 = mkV2 (mkV "lack" "lacks" "lacked" "lacked" "lacking"); -- from DictEng -lin lack_lustre_A = compoundA (mkA "lack - lustre"); -- from DictEng -lin lackadaisical_A = compoundA (mkA "lackadaisical"); -- from DictEng -lin lackadaisically_Adv = mkAdv "lackadaisically" ; -lin lackey_N = mkN "lackey" "lackeys"; -- from DictEng -lin lacking_A = mkA "lacking" ; -lin lackluster_A = mkA "lackluster" ; -lin laconic_A = compoundA (mkA "laconic"); -- from DictEng -lin laconically_Adv = mkAdv "laconically"; -- from DictEng -lin laconicism_N = mkN "laconicism" "laconicisms"; -- from DictEng -lin laconism_N = mkN "laconism" "laconisms"; -- from DictEng -lin lacquer_N = mkN "lacquer" "lacquers"; -- from DictEng -lin lacquer_V2 = mkV2 (mkV "lacquer" "lacquers" "lacquered" "lacquered" "lacquering"); -- from DictEng -lin lacquerware_N = mkN "lacquerware" ; -lin lacrimal_A = mkA "lacrimal" ; -lin lacrimation_N = mkN "lacrimation" ; -lin lacrimatory_A = mkA "lacrimatory" ; -lin lacrosse_N = mkN "lacrosse" ; -- from DictEng -lin lactalbumin_N = mkN "lactalbumin" ; -lin lactase_N = mkN "lactase" ; -lin lactate_N = mkN "lactate" ; -lin lactation_N = mkN "lactation" ; -lin lacteal_A = mkA "lacteal" ; -lin lacteal_N = mkN "lacteal" ; -lin lactic_A = compoundA (mkA "lactic"); -- from DictEng -lin lactifuge_N = mkN "lactifuge" ; -lin lactobacillus_N = mkN "lactobacillus" ; -lin lactogen_N = mkN "lactogen" ; -lin lactogenic_A = mkA "lactogenic" ; -lin lactose_N = mkN "lactose" ; -lin lactosuria_N = mkN "lactosuria" ; -lin lacuna_N = mkN "lacuna" "lacunas"; -- from DictEng -lin lacustrine_A = mkA "lacustrine" ; -lin lacy_A = mkA "lacy" "lacier"; -- from DictEng -lin lad_N = mkN "lad" "lads"; -- from DictEng -lin ladder_N = mkN "ladder" "ladders"; -- from DictEng -lin ladder_V = mkV "ladder" "ladders" "laddered" "laddered" "laddering"; -- from DictEng -lin ladder_back_N = mkN "ladder back" ; -lin ladder_proof_A = compoundA (mkA "ladder - proof"); -- from DictEng -lin laddie_N = mkN "laddie" "laddies"; -- from DictEng -lin lade_V2 = mkV2 (mkV "lade" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin laden_A = compoundA (mkA "laden"); -- from DictEng -lin lading_N = mkN "lading" ; -- from DictEng -lin ladle_N = mkN "ladle" "ladles"; -- from DictEng -lin ladle_V2 = mkV2 (mkV "ladle" "ladles" "ladled" "ladled" "ladling"); -- from DictEng -lin lady_N = mkN "lady" "ladies"; -- from DictEng -lin lady's_eardrop_N = mkN "lady's eardrop" ; -lin lady's_maid_N = mkN "lady's - maid" "lady's - maids"; -- from DictEng -lin lady_in_waiting_N = mkN "lady - in - waiting" "ladies - in - waiting"; -- from DictEng -lin lady_of_the_night_N = mkN "lady of the night" ; -lin lady_chapel_N = mkN "lady - chapel" "lady - chapels"; -- from DictEng -lin lady_in_waiting_N = mkN "lady - in - waiting" "ladies - in - waiting"; -- from DictEng -lin lady_killer_N = mkN "lady - killer" "lady - killers"; -- from DictEng -lin ladybird_N = mkN "ladybird" "ladybirds"; -- from DictEng -lin ladybug_N = mkN "ladybug" ; -lin ladyfinger_N = mkN "ladyfinger" ; -lin ladyfish_N = mkN "ladyfish" ; -lin ladylike_A = compoundA (mkA "ladylike"); -- from DictEng -lin ladylikeness_N = mkN "ladylikeness" ; -lin ladylove_N = mkN "ladylove" ; -lin ladyship_N = mkN "ladyship" "ladyships"; -- from DictEng -lin laelia_N = mkN "laelia" ; -lin laetrile_N = mkN "laetrile" ; -lin lag_N = mkN "lag" "lags"; -- from DictEng -lin lag_V = mkV "lag" "lags" "lagged" "lagged" "lagging"; -- from DictEng -lin lag_V2 = mkV2 (mkV "lag" "lags" "lagged" "lagged" "lagging"); -- from DictEng -lin lagan_N = mkN "lagan" ; -lin lager_N = mkN "lager" "lagers"; -- from DictEng -lin lagerphone_N = mkN "lagerphone" ; -lin laggard_N = mkN "laggard" "laggards"; -- from DictEng -lin lagging_N = mkN "lagging" ; -- from DictEng -lin lagniappe_N = mkN "lagniappe" ; -lin lagomorph_N = mkN "lagomorph" ; -lin lagoon_N = mkN "lagoon" "lagoons"; -- from DictEng -lin lagophthalmos_N = mkN "lagophthalmos" ; -lin lahar_N = mkN "lahar" ; -lin laic_A = compoundA (mkA "laic"); -- from DictEng -lin laicize_V2 = mkV2 (mkV "laicize" "laicizes" "laicized" "laicized" "laicizing"); -- from DictEng -lin laid_A = mkA "laid" ; -lin laid_back_A = compoundA (mkA "laid back") ; -lin laid_low_A = compoundA (mkA "laid low") ; -lin laid_up_A = compoundA (mkA "laid up") ; -lin lair_N = mkN "lair" "lairs"; -- from DictEng -lin laird_N = mkN "laird" "lairds"; -- from DictEng -lin laissez_faire_N = mkN "laissez - faire" ; -- from DictEng -lin laity_N = mkN "laity" "laities"; -- from DictEng -lin lake_N = mkN "lake" "lakes"; -- from DictEng -lin lakefront_N = mkN "lakefront" ; -lin lakeside_N = mkN "lakeside" ; -lin lakh_N = mkN "lakh" "lakhs"; -- from DictEng -lin lallation_N = mkN "lallation" ; -lin lally_N = mkN "lally" ; -lin lam_V = mkV "lam" "lams" "lammed" "lammed" "lamming"; -- from DictEng -lin lam_V2 = mkV2 (mkV "lam" "lams" "lammed" "lammed" "lamming"); -- from DictEng -lin lama_N = mkN "lama" "lamas"; -- from DictEng -lin lamasery_N = mkN "lamasery" "lamaseries"; -- from DictEng -lin lamb_N = mkN "lamb" "lambs"; -- from DictEng -lin lamb_V = mkV "lamb" "lambs" "lambed" "lambed" "lambing"; -- from DictEng -lin lamb's_quarter_N = mkN "lamb's quarter" ; -lin lamb's_quarters_N = mkN "lamb's quarters" ; -lin lambaste_V2 = mkV2 (mkV "lambaste" "lambastes" "lambasted" "lambasted" "lambasting"); -- from DictEng -lin lambda_N = mkN "lambda" ; -lin lambdacism_N = mkN "lambdacism" ; -lin lambency_N = mkN "lambency" ; -- from DictEng -lin lambent_A = compoundA (mkA "lambent"); -- from DictEng -lin lambert_N = mkN "lambert" ; -lin lambkin_N = mkN "lambkin" "lambkins"; -- from DictEng -lin lamblike_A = mkA "lamblike" ; -lin lambrequin_N = mkN "lambrequin" ; -lin lambskin_N = mkN "lambskin" "lambskins"; -- from DictEng -lin lame_A = mkA "lame" "lamer"; -- from DictEng -lin lame_N = mkN "lamé" ; -- from DictEng -lin lame_V2 = mkV2 (mkV "lame" "lames" "lamed" "lamed" "laming"); -- from DictEng -lin lamedh_N = mkN "lamedh" ; -lin lamella_N = mkN "lamella" ; -lin lamellibranch_A = mkA "lamellibranch" ; -lin lamely_Adv = mkAdv "lamely" ; -lin lameness_N = mkN "lameness" ; -- from DictEng -lin lament_N = mkN "lament" "laments"; -- from DictEng -lin lament_V = mkV "lament" "laments" "lamented" "lamented" "lamenting"; -- from DictEng -lin lament_V2 = mkV2 (mkV "lament" "laments" "lamented" "lamented" "lamenting"); -- from DictEng -lin lament_VS = mkVS (mkV "lament" "laments" "lamented" "lamented" "lamenting"); -- from DictEng -lin lamentable_A = compoundA (mkA "lamentable"); -- from DictEng -lin lamentation_N = mkN "lamentation" "lamentations"; -- from DictEng -lin lamented_A = mkA "lamented" ; -lin lamenting_A = mkA "lamenting" ; -lin lamina_N = mkN "lamina" ; -lin laminar_A = mkA "laminar" ; -lin laminate_N = mkN "laminate" ; -lin laminate_V = mkV "laminate" "laminates" "laminated" "laminated" "laminating"; -- from DictEng -lin laminate_V2 = mkV2 (mkV "laminate" "laminates" "laminated" "laminated" "laminating"); -- from DictEng -lin lamination_N = mkN "lamination" ; -lin laminator_N = mkN "laminator" ; -lin laminectomy_N = mkN "laminectomy" ; -lin laminitis_N = mkN "laminitis" ; -lin lamivudine_N = mkN "lamivudine" ; -lin lammas_N = mkN "lammas" "lammases"; -- from DictEng -lin lamp_N = mkN "lamp" "lamps"; -- from DictEng -lin lamp_black_N = mkN "lamp - black" ; -- from DictEng -lin lamplight_N = mkN "lamplight" ; -- from DictEng -lin lamplighter_N = mkN "lamplighter" "lamplighters"; -- from DictEng -lin lamplit_A = compoundA (mkA "lamplit"); -- from DictEng -lin lampoon_N = mkN "lampoon" "lampoons"; -- from DictEng -lin lampoon_V2 = mkV2 (mkV "lampoon" "lampoons" "lampooned" "lampooned" "lampooning"); -- from DictEng -lin lamppost_N = mkN "lamppost" "lampposts"; -- from DictEng -lin lamprey_N = mkN "lamprey" "lampreys"; -- from DictEng -lin lampshade_N = mkN "lampshade" "lampshades"; -- from DictEng -lin lanai_N = mkN "lanai" ; -lin lanate_A = mkA "lanate" ; -lin lancastrian_A = compoundA (mkA "lancastrian"); -- from DictEng -lin lancastrian_N = mkN "lancastrian" "lancastrians"; -- from DictEng -lin lance_N = mkN "lance" "lances"; -- from DictEng -lin lance_V2 = mkV2 (mkV "lance" "lances" "lanced" "lanced" "lancing"); -- from DictEng -lin lance_shaped_A = compoundA (mkA "lance shaped") ; -lin lance_corporal_N = mkN "lance - corporal" "lance - corporals"; -- from DictEng -lin lancelet_N = mkN "lancelet" ; -lin lanceolate_A = mkA "lanceolate" ; -lin lancer_N = mkN "lancer" "lancers"; -- from DictEng -lin lancers_N = mkN "lancers" ; -lin lancet_N = mkN "lancet" "lancets"; -- from DictEng -lin lancet_shaped_A = compoundA (mkA "lancet shaped") ; -lin lancetfish_N = mkN "lancetfish" ; -lin lancewood_N = mkN "lancewood" ; -lin land_N = mkN "land" "lands"; -- from DictEng -lin land_V = mkV "land" "lands" "landed" "landed" "landing"; -- from DictEng -lin land_V2 = mkV2 (mkV "land" "lands" "landed" "landed" "landing"); -- from DictEng -lin land_agent_N = mkN "land - agent" "land - agents"; -- from DictEng -lin landau_N = mkN "landau" "landaus"; -- from DictEng -lin landed_A = compoundA (mkA "landed"); -- from DictEng -lin lander_N = mkN "lander" ; -lin landfall_N = mkN "landfall" "landfalls"; -- from DictEng -lin landfill_N = mkN "landfill" ; -lin landgrave_N = mkN "landgrave" "landgraves"; -- from DictEng -lin landholder_N = mkN "landholder" "landholders"; -- from DictEng -lin landholding_N = mkN "landholding" ; -lin landing_N = mkN "landing" "landings"; -- from DictEng -lin landing_craft_N = mkN "landing - craft" "landing - craft"; -- from DictEng -lin landing_field_N = mkN "landing - field" "landing - fields"; -- from DictEng -lin landing_gear_N = mkN "landing - gear" ; -- from DictEng -lin landing_net_N = mkN "landing - net" "landing - nets"; -- from DictEng -lin landing_party_N = mkN "landing - party" "landing - parties"; -- from DictEng -lin landing_place_N = mkN "landing - place" "landing - places"; -- from DictEng -lin landing_stage_N = mkN "landing - stage" "landing - stages"; -- from DictEng -lin landing_strip_N = mkN "landing - strip" "landing - strips"; -- from DictEng -lin landlady_N = mkN "landlady" "landladies"; -- from DictEng -lin landler_N = mkN "landler" ; -lin landless_A = compoundA (mkA "landless"); -- from DictEng -lin landlocked_A = compoundA (mkA "landlocked"); -- from DictEng -lin landlord_N = mkN "landlord" "landlords"; -- from DictEng -lin landlubber_N = mkN "landlubber" "landlubbers"; -- from DictEng -lin landmark_N = mkN "landmark" "landmarks"; -- from DictEng -lin landmass_N = mkN "landmass" ; -lin landmine_N = mkN "landmine" "landmines"; -- from DictEng -lin landowner_N = mkN "landowner" "landowners"; -- from DictEng -lin landrover_N = mkN "landrover" "landrovers"; -- from DictEng -lin landscape_N = mkN "landscape" "landscapes"; -- from DictEng -lin landscape_V2 = mkV2 (mkV "landscape" "landscapes" "landscaped" "landscaped" "landscaping"); -- from DictEng -lin landscaped_A = mkA "landscaped" ; -lin landscaping_N = mkN "landscaping" ; -lin landscapist_N = mkN "landscapist" ; -lin landside_N = mkN "landside" ; -lin landslide_N = mkN "landslide" "landslides"; -- from DictEng -lin landslip_N = mkN "landslip" "landslips"; -- from DictEng -lin landsman_N = mkN "landsman" "landsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin landward_Adv = mkAdv "landward"; -- from DictEng -lin lane_N = mkN "lane" "lanes"; -- from DictEng -lin langbeinite_N = mkN "langbeinite" ; -lin langlaufer_N = mkN "langlaufer" ; -lin langley_N = mkN "langley" ; -lin langsyne_Adv = mkAdv "langsyne"; -- from DictEng -lin langsyne_N = mkN "langsyne" ; -- from DictEng -lin language_N = mkN "language" "languages"; -- from DictEng -lin languid_A = compoundA (mkA "languid"); -- from DictEng -lin languidly_Adv = mkAdv "languidly" ; -lin languish_V = mkV "languish" "languishes" "languished" "languished" "languishing"; -- from DictEng -lin languisher_N = mkN "languisher" ; -lin languor_N = mkN "languor" ; -- from DictEng -lin languorous_A = compoundA (mkA "languorous"); -- from DictEng -lin languorously_Adv = mkAdv "languorously" ; -lin langur_N = mkN "langur" "langurs"; -- from DictEng -lin lank_A = compoundA (mkA "lank"); -- from DictEng -lin lankiness_N = mkN "lankiness" ; -lin lanky_A = mkA "lanky" "lankier"; -- from DictEng -lin lanolin_N = mkN "lanolin" ; -- from DictEng -lin lanseh_N = mkN "lanseh" ; -lin lansoprazole_N = mkN "lansoprazole" ; -lin lantana_N = mkN "lantana" ; -lin lantern_N = mkN "lantern" "lanterns"; -- from DictEng -lin lantern_jawed_A = compoundA (mkA "lantern - jawed"); -- from DictEng -lin lantern_jawed_A = compoundA (mkA "lantern - jawed"); -- from DictEng -lin lanternfish_N = mkN "lanternfish" ; -lin lanthanum_N = mkN "lanthanum" ; -lin lanugo_N = mkN "lanugo" ; -lin lanyard_N = mkN "lanyard" "lanyards"; -- from DictEng -lin lao_N = mkN "lao" ; -- from DictEng -lin laotian_A = compoundA (mkA "laotian"); -- from DictEng -lin laotian_N = mkN "laotian" "laotians"; -- from DictEng -lin lap_N = mkN "lap" "laps"; -- from DictEng -lin lap_V = mkV "lap" "laps" "lapped" "lapped" "lapping"; -- from DictEng -lin lap_V2 = mkV2 (mkV "lap" "laps" "lapped" "lapped" "lapping"); -- from DictEng -lin lap_jointed_A = compoundA (mkA "lap jointed") ; -lin lap_dog_N = mkN "lap - dog" "lap - dogs"; -- from DictEng -lin laparocele_N = mkN "laparocele" ; -lin laparoscope_N = mkN "laparoscope" ; -lin laparoscopy_N = mkN "laparoscopy" ; -lin laparotomy_N = mkN "laparotomy" ; -lin lapboard_N = mkN "lapboard" ; -lin lapdog_N = mkN "lapdog" ; -lin lapel_N = mkN "lapel" "lapels"; -- from DictEng -lin lapful_N = mkN "lapful" ; -lin lapidarian_A = mkA "lapidarian" ; -lin lapidary_A = compoundA (mkA "lapidary"); -- from DictEng -lin lapidary_N = mkN "lapidary" "lapidaries"; -- from DictEng -lin lapin_N = mkN "lapin" ; -lin lapis_lazuli_N = mkN "lapis lazuli" "lapis lazulis"; -- from DictEng -lin lappet_N = mkN "lappet" ; -lin lapse_N = mkN "lapse" "lapses"; -- from DictEng -lin lapse_V = mkV "lapse" "lapses" "lapsed" "lapsed" "lapsing"; -- from DictEng -lin lapsed_A = mkA "lapsed" ; -lin laptop_N = mkN "laptop" ; -lin lapwing_N = mkN "lapwing" "lapwings"; -- from DictEng -lin larboard_A = compoundA (mkA "larboard"); -- from DictEng -lin larboard_N = mkN "larboard" ; -- from DictEng -lin larcenist_N = mkN "larcenist" ; -lin larceny_N = mkN "larceny" "larcenies"; -- from DictEng -lin larch_N = mkN "larch" "larches"; -- from DictEng -lin lard_N = mkN "lard" ; -- from DictEng -lin lard_V2 = mkV2 (mkV "lard" "lards" "larded" "larded" "larding"); -- from DictEng -lin larder_N = mkN "larder" "larders"; -- from DictEng -lin large_A = mkA "large" "larger"; -- from DictEng -lin large_Adv = mkAdv "large"; -- from DictEng -lin large_N = mkN "large" ; -- from DictEng -lin large_capitalization_A = compoundA (mkA "large capitalization") ; -lin large_headed_A = compoundA (mkA "large headed") ; -lin large_leaved_A = compoundA (mkA "large leaved") ; -lin large_mouthed_A = compoundA (mkA "large mouthed") ; -lin large_scale_A = compoundA (mkA "large - scale"); -- from DictEng -lin large_scale_A = compoundA (mkA "large - scale"); -- from DictEng -lin largely_Adv = mkAdv "largely" ; -lin largemouth_N = mkN "largemouth" ; -lin largeness_N = mkN "largeness" ; -- from DictEng -lin largess_N = mkN "largess" ; -lin largesse_N = mkN "largesse" ; -- from DictEng -lin larghetto_A = mkA "larghetto" ; -lin larghetto_N = mkN "larghetto" ; -lin larghissimo_A = mkA "larghissimo" ; -lin largish_A = compoundA (mkA "largish"); -- from DictEng -lin largo_A = mkA "largo" ; -lin largo_Adv = mkAdv "largo" ; -lin largo_N = mkN "largo" "largos"; -- from DictEng -lin lari_N = mkN "lari" ; -lin lariat_N = mkN "lariat" "lariats"; -- from DictEng -lin larid_N = mkN "larid" ; -lin lark_N = mkN "lark" "larks"; -- from DictEng -lin lark_V = mkV "lark" "larks" "larked" "larked" "larking"; -- from DictEng -lin larkspur_N = mkN "larkspur" "larkspurs"; -- from DictEng -lin larn_V = mkV "larn" "larns" "larned" "larned" "larning"; -- from DictEng -lin larn_V2 = mkV2 (mkV "larn" "larns" "larned" "larned" "larning"); -- from DictEng -lin larva_N = mkN "larva" "larvae" {- FIXME: guessed plural form -}; -- from DictEng -lin larvacean_N = mkN "larvacean" ; -lin larvacide_N = mkN "larvacide" ; -lin larval_A = compoundA (mkA "larval"); -- from DictEng -lin larvicide_N = mkN "larvicide" ; -lin laryngeal_A = mkA "laryngeal" ; -lin laryngectomy_N = mkN "laryngectomy" ; -lin laryngismus_N = mkN "laryngismus" ; -lin laryngitis_N = mkN "laryngitis" ; -- from DictEng -lin laryngopharyngeal_A = mkA "laryngopharyngeal" ; -lin laryngopharyngitis_N = mkN "laryngopharyngitis" ; -lin laryngopharynx_N = mkN "laryngopharynx" ; -lin laryngoscope_N = mkN "laryngoscope" ; -lin laryngospasm_N = mkN "laryngospasm" ; -lin laryngostenosis_N = mkN "laryngostenosis" ; -lin laryngotracheobronchitis_N = mkN "laryngotracheobronchitis" ; -lin larynx_N = mkN "larynx" "larynxes"; -- from DictEng -lin lasagna_N = mkN "lasagna" ; -lin lascar_N = mkN "lascar" "lascars"; -- from DictEng -lin lascivious_A = compoundA (mkA "lascivious"); -- from DictEng -lin lasciviously_Adv = mkAdv "lasciviously" ; -lin lasciviousness_N = mkN "lasciviousness" ; -- from DictEng -lin laser_N = mkN "laser" "lasers"; -- from DictEng -lin lash_N = mkN "lash" "lashes"; -- from DictEng -lin lash_V = mkV "lash" "lashes" "lashed" "lashed" "lashing"; -- from DictEng -lin lash_V2 = mkV2 (mkV "lash" "lashes" "lashed" "lashed" "lashing"); -- from DictEng -lin lash_up_N = mkN "lash - up" "lash - ups"; -- from DictEng -lin lash_up_N = mkN "lash - up" "lash - ups"; -- from DictEng -lin lasher_N = mkN "lasher" ; -lin lashing_A = mkA "lashing" ; -lin lashing_N = mkN "lashing" "lashings"; -- from DictEng -lin lasiocampid_N = mkN "lasiocampid" ; -lin lass_N = mkN "lass" "lasses"; -- from DictEng -lin lassie_N = mkN "lassie" "lassies"; -- from DictEng -lin lassitude_N = mkN "lassitude" ; -- from DictEng -lin lasso_N = mkN "lasso" "lassos"; -- from DictEng -lin lasso_V2 = mkV2 (mkV "lasso" "lassos" "lassoed" "lassoed" "lassoing"); -- from DictEng -lin last_A = irregAdv (mkA "last") "last"; -- from DictEng -lin last_Adv = mkAdv "last" ; -lin last_N = mkN "last" ; -lin last_V = mkV "last" "lasts" "lasted" "lasted" "lasting"; -- from DictEng -lin last_V2 = mkV2 (mkV "last" "lasts" "lasted" "lasted" "lasting"); -- from DictEng -lin last_ditch_A = compoundA (mkA "last ditch") ; -lin last_minute_A = compoundA (mkA "last minute") ; -lin last_but_not_least_Adv = mkAdv "last but not least" ; -lin last_mentioned_A = compoundA (mkA "last mentioned") ; -lin lasting_A = compoundA (mkA "lasting"); -- from DictEng -lin lastingly_Adv = mkAdv "lastingly" ; -lin lastingness_N = mkN "lastingness" ; -lin lat_N = mkN "lat" ; -- from DictEng -lin latakia_N = mkN "latakia" ; -lin latanier_N = mkN "latanier" ; -lin latch_N = mkN "latch" "latches"; -- from DictEng -lin latch_V = mkV "latch" "latches" "latched" "latched" "latching"; -- from DictEng -lin latch_V2 = mkV2 (mkV "latch" "latches" "latched" "latched" "latching"); -- from DictEng -lin latchet_N = mkN "latchet" ; -lin latchkey_N = mkN "latchkey" "latchkeys"; -- from DictEng -lin latchstring_N = mkN "latchstring" ; -lin late_A = mkA "late" "later"; -- from DictEng -lin late_Adv = mkAdv "late"; -- from DictEng -lin late_ripening_A = compoundA (mkA "late ripening") ; -lin latecomer_N = mkN "latecomer" ; -lin lateen_A = compoundA (mkA "lateen"); -- from DictEng -lin lateen_N = mkN "lateen" ; -lin lateen_rig_N = mkN "lateen rig" ; -lin latency_N = mkN "latency" ; -lin lateness_N = mkN "lateness" ; -lin latent_A = compoundA (mkA "latent"); -- from DictEng -lin later_A = mkA "later" ; -lin later_Adv = mkAdv "later" ; -lin lateral_A = compoundA (mkA "lateral"); -- from DictEng -lin laterality_N = mkN "laterality" ; -lin lateralization_N = mkN "lateralization" ; -lin laterally_Adv = mkAdv "laterally" ; -lin laterite_N = mkN "laterite" ; -- from DictEng -lin latest_A = mkA "latest" ; -lin latest_N = mkN "latest" ; -lin latex_N = mkN "latex" ; -- from DictEng -lin lath_N = mkN "lath" "laths"; -- from DictEng -lin lathe_N = mkN "lathe" "lathes"; -- from DictEng -lin lather_N = mkN "lather" ; -- from DictEng -lin lather_V = mkV "lather" "lathers" "lathered" "lathered" "lathering"; -- from DictEng -lin lather_V2 = mkV2 (mkV "lather" "lathers" "lathered" "lathered" "lathering"); -- from DictEng -lin lathery_A = mkA "lathery" ; -lin lathi_N = mkN "lathi" "lathis"; -- from DictEng -lin laticifer_N = mkN "laticifer" ; -lin latin_A = compoundA (mkA "latin"); -- from DictEng -lin latin_N = mkN "latin" "latins"; -- from DictEng -lin latinate_A = mkA "latinate" ; -lin latinist_N = mkN "latinist" "latinists"; -- from DictEng -lin latinize_V2 = mkV2 (mkV "latinize" "latinizes" "latinized" "latinized" "latinizing"); -- from DictEng -lin latish_A = compoundA (mkA "latish"); -- from DictEng -lin latitude_N = mkN "latitude" "latitudes"; -- from DictEng -lin latitudes_N = mkN "latitudes" "latitudess"; -- from DictEng -lin latitudinal_A = compoundA (mkA "latitudinal"); -- from DictEng -lin latitudinarian_A = compoundA (mkA "latitudinarian"); -- from DictEng -lin latitudinarian_N = mkN "latitudinarian" "latitudinarians"; -- from DictEng -lin latrine_N = mkN "latrine" "latrines"; -- from DictEng -lin lats_N = mkN "lats" ; -lin latten_N = mkN "latten" ; -lin latter_A = compoundA (mkA "latter"); -- from DictEng -lin latter_N = mkN "latter" ; -lin latter_day_A = compoundA (mkA "latter - day"); -- from DictEng -lin latter_day_A = compoundA (mkA "latter - day"); -- from DictEng -lin lattice_N = mkN "lattice" "lattices"; -- from DictEng -lin latticed_A = compoundA (mkA "latticed"); -- from DictEng -lin laud_V2 = mkV2 (mkV "laud" "lauds" "lauded" "lauded" "lauding"); -- from DictEng -lin laudable_A = compoundA (mkA "laudable"); -- from DictEng -lin laudanum_N = mkN "laudanum" ; -- from DictEng -lin laudator_N = mkN "laudator" ; -lin laudatory_A = compoundA (mkA "laudatory"); -- from DictEng -lin laugh_N = mkN "laugh" "laughs"; -- from DictEng -lin laugh_V = mkV "laugh" "laughs" "laughed" "laughed" "laughing"; -- from DictEng -lin laugh_V2 = mkV2 (mkV "laugh" "laughs" "laughed" "laughed" "laughing"); -- from DictEng -lin laugh_VS = mkVS (mkV "laugh" "laughs" "laughed" "laughed" "laughing"); -- from DictEng -lin laughable_A = compoundA (mkA "laughable"); -- from DictEng -lin laughably_Adv = mkAdv "laughably" ; -lin laugher_N = mkN "laugher" ; -lin laughing_A = compoundA (mkA "laughing"); -- from DictEng -lin laughing_gas_N = mkN "laughing - gas" ; -- from DictEng -lin laughing_stock_N = mkN "laughing - stock" "laughing - stocks"; -- from DictEng -lin laughingly_Adv = mkAdv "laughingly" ; -lin laughter_N = mkN "laughter" ; -- from DictEng -lin launch_N = mkN "launch" "launches"; -- from DictEng -lin launch_V = mkV "launch" "launches" "launched" "launched" "launching"; -- from DictEng -lin launch_V2 = mkV2 (mkV "launch" "launches" "launched" "launched" "launching"); -- from DictEng -lin launcher_N = mkN "launcher" "launchers"; -- from DictEng -lin launching_N = mkN "launching" ; -lin launching_pad_N = mkN "launching - pad" "launching - pads"; -- from DictEng -lin launching_site_N = mkN "launching - site" "launching - sites"; -- from DictEng -lin launder_V = mkV "launder" "launders" "laundered" "laundered" "laundering"; -- from DictEng -lin launder_V2 = mkV2 (mkV "launder" "launders" "laundered" "laundered" "laundering"); -- from DictEng -lin launderette_N = mkN "launderette" "launderettes"; -- from DictEng -lin laundering_N = mkN "laundering" ; -lin laundress_N = mkN "laundress" "laundresses"; -- from DictEng -lin laundry_N = mkN "laundry" "laundries"; -- from DictEng -lin laundryman_N = mkN "laundryman" "laundrymen" {- FIXME: guessed plural form -}; -- from DictEng -lin laundrywoman_N = mkN "laundrywoman" "laundrywomen" {- FIXME: guessed plural form -}; -- from DictEng -lin laureate_A = compoundA (mkA "laureate"); -- from DictEng -lin laureate_N = mkN "laureate" "laureates"; -- from DictEng -lin laurel_N = mkN "laurel" "laurels"; -- from DictEng -lin laurel_tree_N = mkN "laurel tree" ; -lin laureled_A = mkA "laureled" ; -lin laurelled_A = compoundA (mkA "laurelled"); -- from DictEng -lin laurelwood_N = mkN "laurelwood" ; -lin lav_N = mkN "lav" "lavs"; -- from DictEng -lin lava_N = mkN "lava" ; -- from DictEng -lin lavage_N = mkN "lavage" ; -lin lavalava_N = mkN "lavalava" ; -lin lavaliere_N = mkN "lavaliere" ; -lin lavatory_N = mkN "lavatory" "lavatories"; -- from DictEng -lin lave_V2 = mkV2 (mkV "lave" "laves" "laved" "laved" "laving"); -- from DictEng -lin lavender_A = mkA "lavender" ; -lin lavender_N = mkN "lavender" ; -- from DictEng -lin lavender_tinged_A = compoundA (mkA "lavender tinged") ; -lin laver_N = mkN "laver" ; -lin lavish_A = compoundA (mkA "lavish"); -- from DictEng -lin lavish_V2 = mkV2 (mkV "lavish" "lavishes" "lavished" "lavished" "lavishing"); -- from DictEng -lin lavishly_Adv = mkAdv "lavishly" ; -lin lavishness_N = mkN "lavishness" ; -lin law_N = mkN "law" "laws"; -- from DictEng -lin law_abiding_A = compoundA (mkA "law - abiding"); -- from DictEng -lin law_abiding_A = compoundA (mkA "law - abiding"); -- from DictEng -lin law_officer_N = mkN "law - officer" "law - officers"; -- from DictEng -lin lawbreaker_N = mkN "lawbreaker" "lawbreakers"; -- from DictEng -lin lawful_A = compoundA (mkA "lawful"); -- from DictEng -lin lawfully_begotten_A = compoundA (mkA "lawfully begotten") ; -lin lawfulness_N = mkN "lawfulness" ; -lin lawgiver_N = mkN "lawgiver" "lawgivers"; -- from DictEng -lin lawless_A = compoundA (mkA "lawless"); -- from DictEng -lin lawlessness_N = mkN "lawlessness" ; -- from DictEng -lin lawmaker_N = mkN "lawmaker" "lawmakers"; -- from DictEng -lin lawmaking_N = mkN "lawmaking" ; -- from DictEng -lin lawman_N = mkN "lawman" ; -lin lawn_N = mkN "lawn" "lawns"; -- from DictEng -lin lawn_mower_N = mkN "lawn - mower" "lawn - mowers"; -- from DictEng -lin lawrencium_N = mkN "lawrencium" ; -lin lawsuit_N = mkN "lawsuit" ; -lin lawyer_N = mkN "lawyer" "lawyers"; -- from DictEng -lin lawyerbush_N = mkN "lawyerbush" ; -lin lax_A = compoundA (mkA "lax"); -- from DictEng -lin laxative_A = compoundA (mkA "laxative"); -- from DictEng -lin laxative_N = mkN "laxative" "laxatives"; -- from DictEng -lin laxity_N = mkN "laxity" "laxities"; -- from DictEng -lin laxly_Adv = mkAdv "laxly" ; -lin laxness_N = mkN "laxness" ; -lin lay_A = compoundA (mkA "lay"); -- from DictEng -lin lay_N = mkN "lay" "lays"; -- from DictEng -lin lay_V = IrregEng.lay_V; -- from DictEng -lin lay_V2 = mkV2 (IrregEng.lay_V); -- from DictEng -lin lay_VS = mkVS (IrregEng.lay_V); -- from DictEng -lin lay_up_N = mkN "lay up" ; -lin lay_figure_N = mkN "lay figure" "lay figures"; -- from DictEng -lin lay_off_N = mkN "lay - off" "lay - offs"; -- from DictEng -lin lay_out_N = mkN "lay - out" "lay - outs"; -- from DictEng -lin layabout_N = mkN "layabout" "layabouts"; -- from DictEng -lin layby_N = mkN "layby" "laybys"; -- from DictEng -lin layer_N = mkN "layer" "layers"; -- from DictEng -lin layer_V2 = mkV2 (mkV "layer" "layers" "layered" "layered" "layering"); -- from DictEng -lin layer_cake_N = mkN "layer - cake" "layer - cakes"; -- from DictEng -lin layered_A = mkA "layered" ; -lin layette_N = mkN "layette" "layettes"; -- from DictEng -lin laying_N = mkN "laying" ; -lin layman_N = mkN "layman" "laymen" {- FIXME: guessed plural form -}; -- from DictEng -lin layoff_N = mkN "layoff" ; -lin layout_N = mkN "layout" ; -lin layover_N = mkN "layover" "layovers"; -- from DictEng -lin lazar_N = mkN "lazar" "lazars"; -- from DictEng -lin lazaret_N = mkN "lazaret" "lazarets"; -- from DictEng -lin lazarette_N = mkN "lazarette" "lazarettes"; -- from DictEng -lin lazaretto_N = mkN "lazaretto" "lazarettos"; -- from DictEng -lin lazarus_N = mkN "lazarus" "lazari" {- FIXME: guessed plural form -}; -- from DictEng -lin laze_V = mkV "laze" "lazes" "lazed" "lazed" "lazing"; -- from DictEng -lin laze_V2 = mkV2 (mkV "laze" "lazes" "lazed" "lazed" "lazing"); -- from DictEng -lin lazily_Adv = mkAdv "lazily"; -- from DictEng -lin laziness_N = mkN "laziness" ; -- from DictEng -lin lazy_A = mkA "lazy" "lazier"; -- from DictEng -lin lazybones_N = mkN "lazybones" "IRREG"; -- from DictEng -lin lb_N = mkN "lb" "lbs" ; -- from DictEng -lin le_carre_PN = mkPN "le Carre" ; -lin le_chatelier_PN = mkPN "le Chatelier" ; -lin lea_N = mkN "lea" "leas" ; -- from DictEng -lin leach_N = mkN "leach" ; -lin leach_V2 = mkV2 (mkV "leach" "leaches" "leached" "leached" "leaching"); -- from DictEng -lin lead_N = mkN "lead" "leads"; -- from DictEng -lin lead_V = IrregEng.lead_V; -- from DictEng -lin lead_V2 = mkV2 (IrregEng.lead_V); -- from DictEng -lin lead_V2V = mkV2V (IrregEng.lead_V) noPrep to_Prep ; -- from DictEng -lin lead_VS = mkVS (IrregEng.lead_V); -- from DictEng -lin lead_colored_A = compoundA (mkA "lead colored") ; -lin lead_free_A = compoundA (mkA "lead free") ; -lin lead_in_N = mkN "lead - in" "lead - ins"; -- from DictEng -lin lead_in_N = mkN "lead - in" "lead - ins"; -- from DictEng -lin lead_ore_N = mkN "lead - ore" ; -- from DictEng -lin leaded_A = compoundA (mkA "leaded"); -- from DictEng -lin leaden_A = compoundA (mkA "leaden"); -- from DictEng -lin leader_N = mkN "leader" "leaders"; -- from DictEng -lin leaderless_A = compoundA (mkA "leaderless"); -- from DictEng -lin leadership_N = mkN "leadership" ; -- from DictEng -lin leading_A = compoundA (mkA "leading"); -- from DictEng -lin leading_N = mkN "leading" ; -- from DictEng -lin leading_rein_N = mkN "leading - rein" "leading - reins"; -- from DictEng -lin leadplant_N = mkN "leadplant" ; -lin leadwort_N = mkN "leadwort" ; -lin leaf_N = mkN "leaf" "leaves"; -- from DictEng -lin leaf_V = mkV "leaf" "leafs" "leafed" "leafed" "leafing"; -- from DictEng -lin leaf_bud_N = mkN "leaf - bud" "leaf - buds"; -- from DictEng -lin leaf_mould_N = mkN "leaf - mould" ; -- from DictEng -lin leafed_A = mkA "leafed" ; -lin leafhopper_N = mkN "leafhopper" ; -lin leafless_A = compoundA (mkA "leafless"); -- from DictEng -lin leaflet_N = mkN "leaflet" "leaflets"; -- from DictEng -lin leaflike_A = mkA "leaflike" ; -lin leafy_A = mkA "leafy" "leafier"; -- from DictEng -lin leafy_stemmed_A = compoundA (mkA "leafy stemmed") ; -lin league_N = mkN "league" "leagues"; -- from DictEng -lin league_V = mkV "league" "leagues" "leagued" "leagued" "leaguing"; -- from DictEng -lin league_V2 = mkV2 (mkV "league" "leagues" "leagued" "leagued" "leaguing"); -- from DictEng -lin leak_N = mkN "leak" "leaks"; -- from DictEng -lin leak_V = mkV "leak" "leaks" "leaked" "leaked" "leaking"; -- from DictEng -lin leak_V2 = mkV2 (mkV "leak" "leaks" "leaked" "leaked" "leaking"); -- from DictEng -lin leakage_N = mkN "leakage" "leakages"; -- from DictEng -lin leaker_N = mkN "leaker" ; -lin leakiness_N = mkN "leakiness" ; -lin leakproof_A = mkA "leakproof" ; -lin leaky_A = mkA "leaky" "leakier"; -- from DictEng -lin leal_A = compoundA (mkA "leal"); -- from DictEng -lin lean_A = mkA "lean" "leaner"; -- from DictEng -lin lean_N = mkN "lean" ; -- from DictEng -lin lean_V = mkV "lean" "leans" "leaned" "leaned" "leaning"; -- from DictEng -lin lean_V2 = mkV2 (mkV "lean" "leans" "leaned" "leaned" "leaning"); -- from DictEng -lin lean_to_N = mkN "lean - to" "lean - tos"; -- from DictEng -lin lean_to_N = mkN "lean - to" "lean - tos"; -- from DictEng -lin leaner_N = mkN "leaner" ; -lin leaning_N = mkN "leaning" "leanings"; -- from DictEng -lin leanness_N = mkN "leanness" ; -- from DictEng -lin leap_N = mkN "leap" "leaps"; -- from DictEng -lin leap_V = mkV "leap" "leaps" "leaped" "leaped" "leaping"; -- from DictEng -lin leap_V2 = mkV2 (mkV "leap" "leaps" "leaped" "leaped" "leaping"); -- from DictEng -lin leap_year_N = mkN "leap - year" "leap - years"; -- from DictEng -lin leapfrog_N = mkN "leapfrog" ; -- from DictEng -lin leapfrog_V2 = mkV2 (mkV "leapfrog" "leapfrogs" "leapfrogged" "leapfrogged" "leapfrogging"); -- from DictEng -lin learn_V = mkV "learn" "learns" "learned" "learned" "learning"; -- from DictEng -lin learn_V2 = mkV2 (mkV "learn" "learns" "learned" "learned" "learning"); -- from DictEng -lin learn_VS = mkVS (mkV "learn" "learns" "learned" "learned" "learning"); -- from DictEng -lin learn_VV = mkVV (mkV "learn" "learns" "learned" "learned" "learning"); -- from DictEng -lin learned_A = compoundA (mkA "learned"); -- from DictEng -lin learner_N = mkN "learner" "learners"; -- from DictEng -lin learning_N = mkN "learning" ; -- from DictEng -lin lease_N = mkN "lease" "leases"; -- from DictEng -lin lease_V2 = mkV2 (mkV "lease" "leases" "leased" "leased" "leasing"); -- from DictEng -lin lease_lend_N = mkN "lease - lend" ; -- from DictEng -lin leasehold_A = compoundA (mkA "leasehold"); -- from DictEng -lin leasehold_N = mkN "leasehold" "leaseholds"; -- from DictEng -lin leaseholder_N = mkN "leaseholder" "leaseholders"; -- from DictEng -lin leash_N = mkN "leash" "leashes"; -- from DictEng -lin leash_V2 = mkV2 (mkV "leash") ; -lin least_A = compoundA (mkA "least"); -- from DictEng -lin least_Adv = mkAdv "least"; -- from DictEng -lin least_N = mkN "least" "IRREG"; -- from DictEng -lin least_of_all_Adv = mkAdv "least of all" ; -lin leastways_Adv = mkAdv "leastways"; -- from DictEng -lin leastwise_Adv = mkAdv "leastwise"; -- from DictEng -lin leather_N = mkN "leather" "leathers"; -- from DictEng -lin leather_leaved_A = compoundA (mkA "leather leaved") ; -lin leather_jacket_N = mkN "leather - jacket" "leather - jackets"; -- from DictEng -lin leatherette_N = mkN "leatherette" ; -- from DictEng -lin leatherjacket_N = mkN "leatherjacket" ; -lin leatherleaf_N = mkN "leatherleaf" ; -lin leatherneck_N = mkN "leatherneck" "leathernecks"; -- from DictEng -lin leatherwood_N = mkN "leatherwood" ; -lin leatherwork_N = mkN "leatherwork" ; -- from DictEng -lin leathery_A = compoundA (mkA "leathery"); -- from DictEng -lin leave_N = mkN "leave" "leaves"; -- from DictEng -lin leave_V = IrregEng.leave_V; -- from DictEng -lin leave_V2 = mkV2 (IrregEng.leave_V); -- from DictEng -lin leave_V2V = mkV2V (IrregEng.leave_V) noPrep to_Prep ; -- from DictEng -lin leave_VS = mkVS (IrregEng.leave_V); -- from DictEng -lin leave_VV = mkVV (IrregEng.leave_V); -- from DictEng -lin leave_taking_N = mkN "leave - taking" "leave - takings"; -- from DictEng -lin leaven_N = mkN "leaven" ; -- from DictEng -lin leaven_V2 = mkV2 (mkV "leaven" "leavens" "leavened" "leavened" "leavening"); -- from DictEng -lin leavened_A = mkA "leavened" ; -lin lebanese_A = compoundA (mkA "lebanese"); -- from DictEng -lin lebanese_N = mkN "lebanese" "lebanese"; -- from DictEng -lin lecanopteris_N = mkN "lecanopteris" ; -lin lecanora_N = mkN "lecanora" ; -lin lecher_N = mkN "lecher" "lechers"; -- from DictEng -lin lecherous_A = compoundA (mkA "lecherous"); -- from DictEng -lin lecherousness_N = mkN "lecherousness" ; -lin lechery_N = mkN "lechery" "lecheries"; -- from DictEng -lin lechwe_N = mkN "lechwe" ; -lin lecithin_N = mkN "lecithin" ; -lin lectern_N = mkN "lectern" "lecterns"; -- from DictEng -lin lectin_N = mkN "lectin" ; -lin lector_N = mkN "lector" ; -lin lecture_N = mkN "lecture" "lectures"; -- from DictEng -lin lecture_V = mkV "lecture" "lectures" "lectured" "lectured" "lecturing"; -- from DictEng -lin lecture_V2 = mkV2 (mkV "lecture" "lectures" "lectured" "lectured" "lecturing"); -- from DictEng -lin lecturer_N = mkN "lecturer" "lecturers"; -- from DictEng -lin lectureship_N = mkN "lectureship" "lectureships"; -- from DictEng -lin lederhosen_N = mkN "lederhosen" ; -lin ledge_N = mkN "ledge" "ledges"; -- from DictEng -lin ledger_N = mkN "ledger" "ledgers"; -- from DictEng -lin lee_N = mkN "lee" ; -- from DictEng -lin leech_N = mkN "leech" "leeches"; -- from DictEng -lin leek_N = mkN "leek" "leeks"; -- from DictEng -lin leer_N = mkN "leer" "leers"; -- from DictEng -lin leer_V = mkV "leer" "leers" "leered" "leered" "leering"; -- from DictEng -lin leering_A = mkA "leering" ; -lin leery_A = mkA "leery" ; -lin lees_N = mkN "lees" ; -lin leeward_A = compoundA (mkA "leeward"); -- from DictEng -lin leeward_Adv = mkAdv "leeward"; -- from DictEng -lin leeward_N = mkN "leeward" ; -lin leeway_N = mkN "leeway" ; -- from DictEng -lin leflunomide_N = mkN "leflunomide" ; -lin left_A = compoundA (mkA "left"); -- from DictEng -lin left_Adv = mkAdv "left"; -- from DictEng -lin left_N = mkN "left" ; -- from DictEng -lin left_VS = mkVS (mkV "left"); -- from DictEng -lin left_eyed_A = compoundA (mkA "left eyed") ; -lin left_hand_A = compoundA (mkA "left - hand"); -- from DictEng -lin left_handed_A = compoundA (mkA "left - handed"); -- from DictEng -lin left_handedness_N = mkN "left handedness" ; -lin left_hander_N = mkN "left hander" ; -lin left_hand_A = compoundA (mkA "left - hand"); -- from DictEng -lin left_handed_A = compoundA (mkA "left - handed"); -- from DictEng -lin left_wing_N = mkN "left - wing" "left - wings"; -- from DictEng -lin left_winger_N = mkN "left - winger" "left - wingers"; -- from DictEng -lin leftish_A = mkA "leftish" ; -lin leftism_N = mkN "leftism" ; -lin leftist_A = mkA "leftist" ; -lin leftist_N = mkN "leftist" "leftists"; -- from DictEng -lin leftmost_A = mkA "leftmost" ; -lin leftover_A = mkA "leftover" ; -lin leftover_N = mkN "leftover" ; -lin leftovers_N = mkN "leftovers" ; -lin leg_N = mkN "leg" "legs"; -- from DictEng -lin leg_pull_N = mkN "leg - pull" "leg - pulls"; -- from DictEng -lin leg_pull_N = mkN "leg - pull" "leg - pulls"; -- from DictEng -lin leg_pulling_N = mkN "leg - pulling" ; -- from DictEng -lin legacy_N = mkN "legacy" "legacies"; -- from DictEng -lin legal_A = compoundA (mkA "legal"); -- from DictEng -lin legalese_N = mkN "legalese" ; -lin legalism_N = mkN "legalism" ; -- from DictEng -lin legalistic_A = compoundA (mkA "legalistic"); -- from DictEng -lin legality_N = mkN "legality" ; -- from DictEng -lin legalization_N = mkN "legalization" ; -- from DictEng -lin legalize_V2 = mkV2 (mkV "legalize" "legalizes" "legalized" "legalized" "legalizing"); -- from DictEng -lin legally_Adv = mkAdv "legally" ; -lin legate_N = mkN "legate" "legates"; -- from DictEng -lin legatee_N = mkN "legatee" "legatees"; -- from DictEng -lin legation_N = mkN "legation" "legations"; -- from DictEng -lin legato_A = compoundA (mkA "legato"); -- from DictEng -lin legato_Adv = mkAdv "legato"; -- from DictEng -lin legend_N = mkN "legend" "legends"; -- from DictEng -lin legendary_A = compoundA (mkA "legendary"); -- from DictEng -lin leger_line_N = mkN "leger line" "leger lines"; -- from DictEng -lin legerdemain_N = mkN "legerdemain" ; -- from DictEng -lin legged_A = compoundA (mkA "legged"); -- from DictEng -lin legging_N = mkN "legging" "leggings"; -- from DictEng -lin leggy_A = compoundA (mkA "leggy"); -- from DictEng -lin leghorn_N = mkN "leghorn" "leghorns"; -- from DictEng -lin legibility_N = mkN "legibility" ; -- from DictEng -lin legible_A = compoundA (mkA "legible"); -- from DictEng -lin legibly_Adv = mkAdv "legibly" ; -lin legion_N = mkN "legion" "legions"; -- from DictEng -lin legionary_N = mkN "legionary" "legionaries"; -- from DictEng -lin legionnaire_N = mkN "legionnaire" ; -lin legislate_V = mkV "legislate" "legislates" "legislated" "legislated" "legislating"; -- from DictEng -lin legislation_N = mkN "legislation" ; -- from DictEng -lin legislative_A = compoundA (mkA "legislative"); -- from DictEng -lin legislatively_Adv = mkAdv "legislatively" ; -lin legislator_N = mkN "legislator" "legislators"; -- from DictEng -lin legislatorship_N = mkN "legislatorship" ; -lin legislature_N = mkN "legislature" "legislatures"; -- from DictEng -lin legitimacy_N = mkN "legitimacy" ; -- from DictEng -lin legitimate_A = compoundA (mkA "legitimate"); -- from DictEng -lin legitimately_Adv = mkAdv "legitimately" ; -lin legitimation_N = mkN "legitimation" ; -lin legitimatize_V2 = mkV2 (mkV "legitimatize" "legitimatizes" "legitimatized" "legitimatized" "legitimatizing"); -- from DictEng -lin legitimize_V2 = mkV2 (mkV "legitimize"); -- from DictEng -lin legitimize_V2V = mkV2V (mkV "legitimize") noPrep to_Prep ; -- from DictEng -lin legless_A = compoundA (mkA "legless"); -- from DictEng -lin leglike_A = mkA "leglike" ; -lin legs_N = mkN "legs" ; -lin legume_N = mkN "legume" ; -lin leguminous_A = compoundA (mkA "leguminous"); -- from DictEng -lin lei_N = mkN "lei" "leis"; -- from DictEng -lin leiomyoma_N = mkN "leiomyoma" ; -lin leiomyosarcoma_N = mkN "leiomyosarcoma" ; -lin leishmaniasis_N = mkN "leishmaniasis" ; -lin leister_N = mkN "leister" ; -lin leisure_N = mkN "leisure" ; -- from DictEng -lin leisured_A = compoundA (mkA "leisured"); -- from DictEng -lin leisureliness_N = mkN "leisureliness" ; -lin leisurely_A = compoundA (mkA "leisurely"); -- from DictEng -lin leisurely_Adv = mkAdv "leisurely"; -- from DictEng -lin leitmotiv_N = mkN "leitmotiv" ; -lin lek_N = mkN "lek" ; -lin lekvar_N = mkN "lekvar" ; -lin lemma_N = mkN "lemma" ; -lin lemming_N = mkN "lemming" "lemmings"; -- from DictEng -lin lemniscus_N = mkN "lemniscus" ; -lin lemon_N = mkN "lemon" "lemons"; -- from DictEng -lin lemon_scented_A = compoundA (mkA "lemon scented") ; -lin lemonade_N = mkN "lemonade" ; -- from DictEng -lin lemongrass_N = mkN "lemongrass" ; -lin lemonwood_N = mkN "lemonwood" ; -lin lemony_A = mkA "lemony" ; -lin lempira_N = mkN "lempira" ; -lin lemur_N = mkN "lemur" "lemurs"; -- from DictEng -lin lend_V = mkV "lend"; -- from DictEng -lin lend_V2 = mkV2 (IrregEng.lend_V); -- from DictEng -lin lend_lease_N = mkN "lend lease" ; -lin lendable_A = mkA "lendable" ; -lin lender_N = mkN "lender" "lenders"; -- from DictEng -lin lending_N = mkN "lending" ; -lin lending_library_N = mkN "lending - library" "lending - libraries"; -- from DictEng -lin length_N = mkN "length" "lengths"; -- from DictEng -lin lengthen_V = mkV "lengthen" "lengthens" "lengthened" "lengthened" "lengthening"; -- from DictEng -lin lengthen_V2 = mkV2 (mkV "lengthen" "lengthens" "lengthened" "lengthened" "lengthening"); -- from DictEng -lin lengthily_Adv = mkAdv "lengthily"; -- from DictEng -lin lengthiness_N = mkN "lengthiness" ; -lin lengthways_A = compoundA (mkA "lengthways"); -- from DictEng -lin lengthways_Adv = mkAdv "lengthways"; -- from DictEng -lin lengthwise_A = mkA "lengthwise" ; -lin lengthwise_Adv = mkAdv "lengthwise"; -- from DictEng -lin lengthy_A = mkA "lengthy" "lengthier"; -- from DictEng -lin lenience_N = mkN "lenience" ; -- from DictEng -lin leniency_N = mkN "leniency" ; -- from DictEng -lin lenient_A = compoundA (mkA "lenient"); -- from DictEng -lin lenitive_N = mkN "lenitive" ; -lin lenity_N = mkN "lenity" ; -- from DictEng -lin lens_N = mkN "lens" "lenses"; -- from DictEng -lin lent_N = mkN "lent" "lents"; -- from DictEng -lin lenten_A = compoundA (mkA "lenten"); -- from DictEng -lin lentic_A = mkA "lentic" ; -lin lenticel_N = mkN "lenticel" ; -lin lentil_N = mkN "lentil" "lentils"; -- from DictEng -lin lentissimo_A = mkA "lentissimo" ; -lin lento_A = compoundA (mkA "lento"); -- from DictEng -lin lento_Adv = mkAdv "lento"; -- from DictEng -lin leone_N = mkN "leone" ; -lin leonine_A = compoundA (mkA "leonine"); -- from DictEng -lin leopard_N = mkN "leopard" "leopards"; -- from DictEng -lin leopard's_bane_N = mkN "leopard's bane" ; -lin leopardess_N = mkN "leopardess" "leopardesses"; -- from DictEng -lin leotard_N = mkN "leotard" ; -lin leper_N = mkN "leper" "lepers"; -- from DictEng -lin lepidobotrys_N = mkN "lepidobotrys" ; -lin lepidocrocite_N = mkN "lepidocrocite" ; -lin lepidolite_N = mkN "lepidolite" ; -lin lepidomelane_N = mkN "lepidomelane" ; -lin lepidophobia_N = mkN "lepidophobia" ; -lin lepidopterist_N = mkN "lepidopterist" ; -lin lepidopterology_N = mkN "lepidopterology" ; -lin lepidote_A = mkA "lepidote" ; -lin lepiota_N = mkN "lepiota" ; -lin leporid_N = mkN "leporid" ; -lin leprechaun_N = mkN "leprechaun" "leprechauns"; -- from DictEng -lin leprosy_N = mkN "leprosy" ; -- from DictEng -lin leprous_A = compoundA (mkA "leprous"); -- from DictEng -lin leptocephalus_N = mkN "leptocephalus" ; -lin leptomeninges_N = mkN "leptomeninges" ; -lin leptomeningitis_N = mkN "leptomeningitis" ; -lin lepton_N = mkN "lepton" ; -lin leptorrhine_A = mkA "leptorrhine" ; -lin leptospira_N = mkN "leptospira" ; -lin leptosporangiate_A = mkA "leptosporangiate" ; -lin leptosporangium_N = mkN "leptosporangium" ; -lin leptotene_N = mkN "leptotene" ; -lin leresis_N = mkN "leresis" ; -lin lerot_N = mkN "lerot" ; -lin lesbian_A = mkA "lesbian" ; -lin lesbian_N = mkN "lesbian" "lesbians"; -- from DictEng -lin lesbianism_N = mkN "lesbianism" ; -- from DictEng -lin lese_majesty_N = mkN "lese majesty" ; -- from DictEng -lin lesgislate_V = mkV "lesgislate" ; -lin lesion_N = mkN "lesion" "lesions"; -- from DictEng -lin less_A = compoundA (mkA "less"); -- from DictEng -lin less_Adv = mkAdv "less"; -- from DictEng -lin less_N = mkN "less" ; -- from DictEng -lin less_traveled_A = compoundA (mkA "less traveled") ; -lin lessee_N = mkN "lessee" "lessees"; -- from DictEng -lin lessen_V = mkV "lessen" "lessens" "lessened" "lessened" "lessening"; -- from DictEng -lin lessen_V2 = mkV2 (mkV "lessen" "lessens" "lessened" "lessened" "lessening"); -- from DictEng -lin lessened_A = mkA "lessened" ; -lin lesser_A = compoundA (mkA "lesser"); -- from DictEng -lin lesson_N = mkN "lesson" "lessons"; -- from DictEng -lin lessor_N = mkN "lessor" "lessors"; -- from DictEng -lin lest_Prep = mkPrep "lest"; -- from DictEng -lin let_N = mkN "let" "lets"; -- from DictEng -lin let_V = IrregEng.let_V; -- from DictEng -lin let_V2 = mkV2 (IrregEng.let_V); -- from DictEng -lin let_V2V = mkV2V (IrregEng.let_V) noPrep to_Prep ; -- from DictEng -lin let_VS = mkVS (IrregEng.let_V); -- from DictEng -lin let_alone_Adv = mkAdv "let alone" ; -lin let_down_N = mkN "let - down" "let - downs"; -- from DictEng -lin let_up_N = mkN "let - up" "let - ups"; -- from DictEng -lin lethal_A = compoundA (mkA "lethal"); -- from DictEng -lin lethargic_A = compoundA (mkA "lethargic"); -- from DictEng -lin lethargically_Adv = mkAdv "lethargically"; -- from DictEng -lin lethargy_N = mkN "lethargy" ; -- from DictEng -lin letter_N = mkN "letter" "letters"; -- from DictEng -lin letter_V2 = mkV2 (mkV "letter") ; -lin letter_perfect_A = compoundA (mkA "letter perfect") ; -lin letter_box_N = mkN "letter - box" "letter - boxes"; -- from DictEng -lin letter_card_N = mkN "letter - card" "letter - cards"; -- from DictEng -lin letter_case_N = mkN "letter - case" "letter - cases"; -- from DictEng -lin lettercard_N = mkN "lettercard" ; -lin lettered_A = compoundA (mkA "lettered"); -- from DictEng -lin letterer_N = mkN "letterer" ; -lin letterhead_N = mkN "letterhead" "letterheads"; -- from DictEng -lin lettering_N = mkN "lettering" ; -- from DictEng -lin letterman_N = mkN "letterman" ; -lin letterpress_N = mkN "letterpress" ; -- from DictEng -lin letters_N = mkN "letters" ; -lin letting_N = mkN "letting" "lettings"; -- from DictEng -lin lettuce_N = mkN "lettuce" "lettuces"; -- from DictEng -lin letup_N = mkN "letup" ; -lin leu_N = mkN "leu" ; -lin leucine_N = mkN "leucine" ; -lin leucocyte_N = mkN "leucocyte" "leucocytes"; -- from DictEng -lin leucocytozoan_N = mkN "leucocytozoan" ; -lin leucothoe_N = mkN "leucothoe" ; -lin leukaemia_N = mkN "leukaemia" ; -- from DictEng -lin leukemia_N = mkN "leukemia" ; -lin leukocyte_N = mkN "leukocyte" ; -lin leukocytosis_N = mkN "leukocytosis" ; -lin leukoderma_N = mkN "leukoderma" ; -lin leukoencephalitis_N = mkN "leukoencephalitis" ; -lin leukoma_N = mkN "leukoma" ; -lin leukopenia_N = mkN "leukopenia" ; -lin leukorrhea_N = mkN "leukorrhea" ; -lin lev_N = mkN "lev" ; -lin levallorphan_N = mkN "levallorphan" ; -lin levant_V = mkV "levant" "levants" "levanted" "levanted" "levanting"; -- from DictEng -lin levanter_N = mkN "levanter" ; -lin levantine_A = compoundA (mkA "levantine"); -- from DictEng -lin levantine_N = mkN "levantine" "levantines"; -- from DictEng -lin levator_N = mkN "levator" ; -lin levee_N = mkN "levee" "levees"; -- from DictEng -lin level_A = compoundA (mkA "level"); -- from DictEng -lin level_N = mkN "level" "levels"; -- from DictEng -lin level_V = mkV "level" "levels" "levelled" "levelled" "levelling"; -- from DictEng -lin level_V2 = mkV2 (mkV "level" "levels" "levelled" "levelled" "levelling"); -- from DictEng -lin level_headed_A = compoundA (mkA "level - headed"); -- from DictEng -lin leveler_N = mkN "leveler" ; -lin leveller_N = mkN "leveller" "levellers"; -- from DictEng -lin lever_N = mkN "lever" "levers"; -- from DictEng -lin lever_V2 = mkV2 (mkV "lever" "levers" "levered" "levered" "levering"); -- from DictEng -lin leverage_N = mkN "leverage" ; -- from DictEng -lin leveret_N = mkN "leveret" "leverets"; -- from DictEng -lin leviathan_N = mkN "leviathan" "leviathans"; -- from DictEng -lin levirate_N = mkN "levirate" ; -lin levitate_V = mkV "levitate" "levitates" "levitated" "levitated" "levitating"; -- from DictEng -lin levitate_V2 = mkV2 (mkV "levitate" "levitates" "levitated" "levitated" "levitating"); -- from DictEng -lin levitation_N = mkN "levitation" "levitations"; -- from DictEng -lin levity_N = mkN "levity" "levities"; -- from DictEng -lin levorotary_A = mkA "levorotary" ; -lin levorotation_N = mkN "levorotation" ; -lin levy_N = mkN "levy" "levies"; -- from DictEng -lin levy_V = mkV "levy" "levies" "levied" "levied" "levying"; -- from DictEng -lin levy_V2 = mkV2 (mkV "levy" "levies" "levied" "levied" "levying"); -- from DictEng -lin lewd_A = mkA "lewd" "lewder"; -- from DictEng -lin lewdly_Adv = mkAdv "lewdly" ; -lin lewdness_N = mkN "lewdness" ; -- from DictEng -lin lexeme_N = mkN "lexeme" ; -lin lexical_A = compoundA (mkA "lexical"); -- from DictEng -lin lexicalization_N = mkN "lexicalization" ; -lin lexicalized_A = mkA "lexicalized" ; -lin lexically_Adv = mkAdv "lexically" ; -lin lexicographer_N = mkN "lexicographer" "lexicographers"; -- from DictEng -lin lexicographic_A = mkA "lexicographic" ; -lin lexicography_N = mkN "lexicography" ; -- from DictEng -lin lexicology_N = mkN "lexicology" ; -lin lexicon_N = mkN "lexicon" "lexicons"; -- from DictEng -lin lexicostatistic_A = mkA "lexicostatistic" ; -lin lexicostatistics_N = mkN "lexicostatistics" ; -lin lexis_N = mkN "lexis" ; -- from DictEng -lin ley_N = mkN "ley" "leys"; -- from DictEng -lin li_N = mkN "li" ; -lin liabilities_N = mkN "liabilities" ; -lin liability_N = mkN "liability" "liabilities"; -- from DictEng -lin liable_A = compoundA (mkA "liable"); -- from DictEng -lin liaise_V = mkV "liaise" "liaises" "liaised" "liaised" "liaising"; -- from DictEng -lin liaison_N = mkN "liaison" "liaisons"; -- from DictEng -lin liana_N = mkN "liana" "lianas"; -- from DictEng -lin liar_N = mkN "liar" "liars"; -- from DictEng -lin lib_N = mkN "lib" "IRREG"; -- from DictEng -lin libation_N = mkN "libation" "libations"; -- from DictEng -lin libel_N = mkN "libel" "libels"; -- from DictEng -lin libel_V2 = mkV2 (mkV "libel" "libels" "libelled" "libelled" "libelling"); -- from DictEng -lin libellous_A = compoundA (mkA "libellous"); -- from DictEng -lin liberal_A = compoundA (mkA "liberal"); -- from DictEng -lin liberal_N = mkN "liberal" "liberals"; -- from DictEng -lin liberalism_N = mkN "liberalism" ; -- from DictEng -lin liberalistic_A = mkA "liberalistic" ; -lin liberality_N = mkN "liberality" "liberalities"; -- from DictEng -lin liberalization_N = mkN "liberalization" "liberalizations"; -- from DictEng -lin liberalize_V2 = mkV2 (mkV "liberalize" "liberalizes" "liberalized" "liberalized" "liberalizing"); -- from DictEng -lin liberally_Adv = mkAdv "liberally" ; -lin liberate_V2 = mkV2 (mkV "liberate" "liberates" "liberated" "liberated" "liberating"); -- from DictEng -lin liberated_A = mkA "liberated" ; -lin liberation_N = mkN "liberation" "liberations"; -- from DictEng -lin liberator_N = mkN "liberator" "liberators"; -- from DictEng -lin liberian_A = compoundA (mkA "liberian"); -- from DictEng -lin liberian_N = mkN "liberian" "liberians"; -- from DictEng -lin libertarian_N = mkN "libertarian" ; -lin libertarianism_N = mkN "libertarianism" ; -lin libertine_N = mkN "libertine" "libertines"; -- from DictEng -lin liberty_N = mkN "liberty" "liberties"; -- from DictEng -lin libidinal_A = mkA "libidinal" ; -lin libidinous_A = compoundA (mkA "libidinous"); -- from DictEng -lin libido_N = mkN "libido" "libidos"; -- from DictEng -lin librarian_N = mkN "librarian" "librarians"; -- from DictEng -lin librarianship_N = mkN "librarianship" ; -- from DictEng -lin library_N = mkN "library" "libraries"; -- from DictEng -lin libration_N = mkN "libration" ; -lin librettist_N = mkN "librettist" "librettists"; -- from DictEng -lin libretto_N = mkN "libretto" "librettos"; -- from DictEng -lin libyan_A = compoundA (mkA "libyan"); -- from DictEng -lin libyan_N = mkN "libyan" "libyans"; -- from DictEng -lin licence_N = mkN "licence" "licences"; -- from DictEng -lin licence_V2 = mkV2 (mkV "licence" "licences" "licenced" "licenced" "licencing"); -- from DictEng -lin license_N = mkN "license" ; -lin license_V2 = mkV2 (mkV "license" "licenses" "licensed" "licensed" "licensing"); -- from DictEng -lin licensee_N = mkN "licensee" "licensees"; -- from DictEng -lin licenser_N = mkN "licenser" ; -lin licentiate_N = mkN "licentiate" "licentiates"; -- from DictEng -lin licentious_A = compoundA (mkA "licentious"); -- from DictEng -lin licentiously_Adv = mkAdv "licentiously" ; -lin licentiousness_N = mkN "licentiousness" ; -- from DictEng -lin lichee_N = mkN "lichee" "lichees"; -- from DictEng -lin lichen_N = mkN "lichen" ; -- from DictEng -lin lichgate_N = mkN "lichgate" "lichgates"; -- from DictEng -lin lichi_N = mkN "lichi" "lichis"; -- from DictEng -lin licit_A = compoundA (mkA "licit"); -- from DictEng -lin licitness_N = mkN "licitness" ; -lin lick_N = mkN "lick" "licks"; -- from DictEng -lin lick_V = mkV "lick" "licks" "licked" "licked" "licking"; -- from DictEng -lin lick_V2 = mkV2 (mkV "lick" "licks" "licked" "licked" "licking"); -- from DictEng -lin licked_A = mkA "licked" ; -lin lickety_split_Adv = mkAdv "lickety split" ; -lin licking_N = mkN "licking" "IRREG"; -- from DictEng -lin licorice_N = mkN "licorice" ; -lin lid_N = mkN "lid" "lids"; -- from DictEng -lin lidar_N = mkN "lidar" ; -lin lidded_A = mkA "lidded" ; -lin lidless_A = compoundA (mkA "lidless"); -- from DictEng -lin lido_N = mkN "lido" "lidos"; -- from DictEng -lin lie_N = mkN "lie" "lies"; -- from DictEng -lin lie_V = IrregEng.lie_V; -- from DictEng -lin lie_VS = mkVS (IrregEng.lie_V); -- from DictEng -lin lie_abed_N = mkN "lie - abed" "lie - abeds"; -- from DictEng -lin lie_in_N = mkN "lie - in" "lie - ins"; -- from DictEng -lin lie_abed_N = mkN "lie - abed" "lie - abeds"; -- from DictEng -lin lie_detector_N = mkN "lie - detector" "lie - detectors"; -- from DictEng -lin lie_down_V = mkV "lie down" ; -lin lie_in_N = mkN "lie - in" "lie - ins"; -- from DictEng -lin liebfraumilch_N = mkN "liebfraumilch" ; -lin liechtensteiner_A = compoundA (mkA "liechtensteiner"); -- from DictEng -lin liechtensteiner_N = mkN "liechtensteiner" "liechtensteiners"; -- from DictEng -lin lied_N = mkN "lied" "IRREG"; -- from DictEng -lin lieder_singer_N = mkN "lieder - singer" "lieder - singers"; -- from DictEng -lin lief_Adv = mkAdv "lief"; -- from DictEng -lin liege_A = compoundA (mkA "liege"); -- from DictEng -lin liege_N = mkN "liege" "lieges"; -- from DictEng -lin liegeman_N = mkN "liegeman" "liegemen" {- FIXME: guessed plural form -}; -- from DictEng -lin lien_N = mkN "lien" "liens"; -- from DictEng -lin lieu_N = mkN "lieu" ; -- from DictEng -lin lieutenancy_N = mkN "lieutenancy" "lieutenancies"; -- from DictEng -lin lieutenant_N = mkN "lieutenant" "lieutenants"; -- from DictEng -lin life_N = mkN "life" "lives" {- FIXME: guessed plural form -}; -- from DictEng -lin life_and_death_A = compoundA (mkA "life and death") ; -lin life_giving_A = compoundA (mkA "life - giving"); -- from DictEng -lin life_size_A = compoundA (mkA "life - size"); -- from DictEng -lin life_support_A = compoundA (mkA "life support") ; -lin life_buoy_N = mkN "life - buoy" "life - buoys"; -- from DictEng -lin life_giving_A = compoundA (mkA "life - giving"); -- from DictEng -lin life_jacket_N = mkN "life - jacket" "life - jackets"; -- from DictEng -lin life_office_N = mkN "life - office" "life - offices"; -- from DictEng -lin life_preserver_N = mkN "life - preserver" "life - preservers"; -- from DictEng -lin life_raft_N = mkN "life - raft" "life - rafts"; -- from DictEng -lin life_saver_N = mkN "life - saver" "life - savers"; -- from DictEng -lin life_size_A = compoundA (mkA "life - size"); -- from DictEng -lin life_sized_A = compoundA (mkA "life - sized"); -- from DictEng -lin life_span_N = mkN "life - span" "life - spans"; -- from DictEng -lin life_work_N = mkN "life - work" "life - works"; -- from DictEng -lin lifebelt_N = mkN "lifebelt" "lifebelts"; -- from DictEng -lin lifeblood_N = mkN "lifeblood" ; -- from DictEng -lin lifeboat_N = mkN "lifeboat" "lifeboats"; -- from DictEng -lin lifebuoy_N = mkN "lifebuoy" "lifebuoys"; -- from DictEng -lin lifeguard_N = mkN "lifeguard" "lifeguards"; -- from DictEng -lin lifeless_A = compoundA (mkA "lifeless"); -- from DictEng -lin lifelessly_Adv = mkAdv "lifelessly" ; -lin lifelike_A = compoundA (mkA "lifelike"); -- from DictEng -lin lifeline_N = mkN "lifeline" "lifelines"; -- from DictEng -lin lifelong_A = compoundA (mkA "lifelong"); -- from DictEng -lin lifer_N = mkN "lifer" "lifers"; -- from DictEng -lin lifesaving_N = mkN "lifesaving" ; -lin lifetime_N = mkN "lifetime" "lifetimes"; -- from DictEng -lin lifework_N = mkN "lifework" ; -lin lift_N = mkN "lift" "lifts"; -- from DictEng -lin lift_V = mkV "lift" "lifts" "lifted" "lifted" "lifting"; -- from DictEng -lin lift_V2 = mkV2 (mkV "lift" "lifts" "lifted" "lifted" "lifting"); -- from DictEng -lin lift_off_N = mkN "lift - off" "lift - offs"; -- from DictEng -lin liftman_N = mkN "liftman" "liftmen" {- FIXME: guessed plural form -}; -- from DictEng -lin liftoff_N = mkN "liftoff" ; -lin ligament_N = mkN "ligament" "ligaments"; -- from DictEng -lin ligand_N = mkN "ligand" ; -lin ligation_N = mkN "ligation" ; -lin ligature_N = mkN "ligature" "ligatures"; -- from DictEng -lin liger_N = mkN "liger" ; -lin light_A = mkA "light" "lighter"; -- from DictEng -lin light_Adv = mkAdv "light"; -- from DictEng -lin light_N = mkN "light" "lights"; -- from DictEng -lin light_V = mkV "light" "lights" "lighted" "lighted" "lighting"; -- from DictEng -lin light_V2 = mkV2 (mkV "light" "lights" "lighted" "lighted" "lighting"); -- from DictEng -lin light_armed_A = compoundA (mkA "light - armed"); -- from DictEng -lin light_blue_A = compoundA (mkA "light blue") ; -lin light_boned_A = compoundA (mkA "light boned") ; -lin light_duty_A = compoundA (mkA "light duty") ; -lin light_fingered_A = compoundA (mkA "light - fingered"); -- from DictEng -lin light_footed_A = compoundA (mkA "light footed") ; -lin light_handed_A = compoundA (mkA "light - handed"); -- from DictEng -lin light_handedly_Adv = mkAdv "light handedly" ; -lin light_heartedly_Adv = mkAdv "light heartedly" ; -lin light_o'_love_N = mkN "light - o'-love" "light - o'-loves"; -- from DictEng -lin light_sensitive_A = compoundA (mkA "light sensitive") ; -lin light_skinned_A = compoundA (mkA "light skinned") ; -lin light_armed_A = compoundA (mkA "light - armed"); -- from DictEng -lin light_coloured_A = compoundA (mkA "light - coloured"); -- from DictEng -lin light_fingered_A = compoundA (mkA "light - fingered"); -- from DictEng -lin light_handed_A = compoundA (mkA "light - handed"); -- from DictEng -lin light_headed_A = compoundA (mkA "light - headed"); -- from DictEng -lin light_headedness_N = mkN "light - headedness" ; -- from DictEng -lin light_hearted_A = compoundA (mkA "light - hearted"); -- from DictEng -lin light_heartedness_N = mkN "light - heartedness" ; -- from DictEng -lin light_heavyweight_N = mkN "light - heavyweight" "light - heavyweights"; -- from DictEng -lin light_minded_A = compoundA (mkA "light - minded"); -- from DictEng -lin light_mindedness_N = mkN "light - mindedness" ; -- from DictEng -lin light_o'_love_N = mkN "light - o'-love" "light - o'-loves"; -- from DictEng -lin lighted_A = mkA "lighted" ; -lin lighten_V = mkV "lighten" "lightens" "lightened" "lightened" "lightening"; -- from DictEng -lin lighten_V2 = mkV2 (mkV "lighten" "lightens" "lightened" "lightened" "lightening"); -- from DictEng -lin lightening_N = mkN "lightening" ; -lin lighter_N = mkN "lighter" "lighters"; -- from DictEng -lin lighter_V2 = mkV2 (mkV "lighter" "lighters" "lightered" "lightered" "lightering"); -- from DictEng -lin lighter_than_air_A = compoundA (mkA "lighter than air") ; -lin lighterage_N = mkN "lighterage" ; -- from DictEng -lin lighterman_N = mkN "lighterman" ; -lin lightheadedness_N = mkN "lightheadedness" ; -lin lighthouse_N = mkN "lighthouse" "lighthouses"; -- from DictEng -lin lighting_N = mkN "lighting" ; -lin lighting_up_A = compoundA (mkA "lighting - up"); -- from DictEng -lin lighting_up_A = compoundA (mkA "lighting - up"); -- from DictEng -lin lightless_A = mkA "lightless" ; -lin lightly_Adv = mkAdv "lightly" ; -lin lightly_armored_A = compoundA (mkA "lightly armored") ; -lin lightness_N = mkN "lightness" ; -- from DictEng -lin lightning_N = mkN "lightning" ; -- from DictEng -lin lightning_conductor_N = mkN "lightning - conductor" "lightning - conductors"; -- from DictEng -lin lightning_rod_N = mkN "lightning - rod" "lightning - rods"; -- from DictEng -lin lightproof_A = mkA "lightproof" ; -lin lights_out_N = mkN "lights out" ; -lin lightship_N = mkN "lightship" "lightships"; -- from DictEng -lin lightsome_A = compoundA (mkA "lightsome"); -- from DictEng -lin lightsomely_Adv = mkAdv "lightsomely" ; -lin lightsomeness_N = mkN "lightsomeness" ; -- from DictEng -lin lightweight_A = compoundA (mkA "lightweight"); -- from DictEng -lin lightweight_N = mkN "lightweight" "lightweights"; -- from DictEng -lin lightwood_N = mkN "lightwood" ; -lin ligne_N = mkN "ligne" ; -lin ligneous_A = compoundA (mkA "ligneous"); -- from DictEng -lin lignin_N = mkN "lignin" ; -lin lignite_N = mkN "lignite" ; -- from DictEng -lin lignosae_N = mkN "lignosae" ; -lin lignum_N = mkN "lignum" ; -lin ligule_N = mkN "ligule" ; -lin likable_A = compoundA (mkA "likable"); -- from DictEng -lin like_A = compoundA (mkA "like"); -- from DictEng -lin like_Adv = mkAdv "like"; -- from DictEng -lin like_N = mkN "like" "likes"; -- from DictEng -lin like_Prep = mkPrep "like"; -- from DictEng -lin like_V2 = mkV2 (mkV "like" "likes" "liked" "liked" "liking"); -- from DictEng -lin like_V2V = mkV2V (mkV "like") noPrep to_Prep ; -- from DictEng -lin like_VS = mkVS (mkV "like"); -- from DictEng -lin like_VV = mkVV (mkV "like"); -- from DictEng -lin like_minded_A = compoundA (mkA "like - minded"); -- from DictEng -lin like_clockwork_Adv = mkAdv "like clockwork" ; -lin like_hell_Adv = mkAdv "like hell" ; -lin like_minded_A = compoundA (mkA "like - minded"); -- from DictEng -lin likeable_A = compoundA (mkA "likeable"); -- from DictEng -lin liked_A = mkA "liked" ; -lin likelihood_N = mkN "likelihood" ; -- from DictEng -lin likely_A = mkA "likely" "likelier"; -- from DictEng -lin liken_V2 = mkV2 (mkV "liken" "likens" "likened" "likened" "likening"); -- from DictEng -lin likeness_N = mkN "likeness" "likenesses"; -- from DictEng -lin likening_N = mkN "likening" ; -lin likewise_Adv = mkAdv "likewise"; -- from DictEng -lin liking_N = mkN "liking" "likings"; -- from DictEng -lin likuta_N = mkN "likuta" ; -lin lilac_N = mkN "lilac" "lilacs"; -- from DictEng -lin lilac_blue_A = compoundA (mkA "lilac blue") ; -lin lilac_pink_A = compoundA (mkA "lilac pink") ; -lin lilac_purple_A = compoundA (mkA "lilac purple") ; -lin lilangeni_N = mkN "lilangeni" ; -lin liliaceous_A = mkA "liliaceous" ; -lin lilliputian_A = compoundA (mkA "lilliputian"); -- from DictEng -lin lilliputian_N = mkN "lilliputian" "lilliputians"; -- from DictEng -lin lilt_N = mkN "lilt" "lilts"; -- from DictEng -lin lilt_V = mkV "lilt" "lilts" "lilted" "lilted" "lilting"; -- from DictEng -lin lilt_V2 = mkV2 (mkV "lilt" "lilts" "lilted" "lilted" "lilting"); -- from DictEng -lin lilting_A = mkA "lilting" ; -lin lily_N = mkN "lily" "lilies"; -- from DictEng -lin lily_white_A = compoundA (mkA "lily - white"); -- from DictEng -lin lily_livered_A = compoundA (mkA "lily - livered"); -- from DictEng -lin lily_white_A = compoundA (mkA "lily - white"); -- from DictEng -lin lilyturf_N = mkN "lilyturf" ; -lin limacine_A = mkA "limacine" ; -lin liman_N = mkN "liman" ; -lin limb_N = mkN "limb" "limbs"; -- from DictEng -lin limbed_A = compoundA (mkA "limbed"); -- from DictEng -lin limber_A = compoundA (mkA "limber"); -- from DictEng -lin limber_N = mkN "limber" ; -lin limber_V = mkV "limber" "limbers" "limbered" "limbered" "limbering"; -- from DictEng -lin limber_V2 = mkV2 (mkV "limber" "limbers" "limbered" "limbered" "limbering"); -- from DictEng -lin limbers_N = mkN "limbers" ; -lin limbic_A = mkA "limbic" ; -lin limbless_A = compoundA (mkA "limbless"); -- from DictEng -lin limbo_N = mkN "limbo" "limbos"; -- from DictEng -lin limbus_N = mkN "limbus" ; -lin lime_N = mkN "lime" "limes"; -- from DictEng -lin lime_V2 = mkV2 (mkV "lime" "limes" "limed" "limed" "liming"); -- from DictEng -lin lime_tree_N = mkN "lime - tree" "lime - trees"; -- from DictEng -lin limeade_N = mkN "limeade" ; -lin limejuice_N = mkN "limejuice" ; -- from DictEng -lin limekiln_N = mkN "limekiln" "limekilns"; -- from DictEng -lin limelight_N = mkN "limelight" ; -- from DictEng -lin limerick_N = mkN "limerick" "limericks"; -- from DictEng -lin limestone_N = mkN "limestone" ; -- from DictEng -lin limewater_N = mkN "limewater" ; -lin limey_N = mkN "limey" "limeys"; -- from DictEng -lin limit_N = mkN "limit" "limits"; -- from DictEng -lin limit_V2 = mkV2 (mkV "limit" "limits" "limited" "limited" "limiting"); -- from DictEng -lin limitation_N = mkN "limitation" "limitations"; -- from DictEng -lin limited_A = mkA "limited" ; -lin limitedly_Adv = mkAdv "limitedly" ; -lin limiter_N = mkN "limiter" ; -lin limiting_A = mkA "limiting" ; -lin limitless_A = compoundA (mkA "limitless"); -- from DictEng -lin limn_V2 = mkV2 (mkV "limn" "limns" "limned" "limned" "limning"); -- from DictEng -lin limnological_A = mkA "limnological" ; -lin limnologically_Adv = mkAdv "limnologically" ; -lin limnologist_N = mkN "limnologist" ; -lin limnology_N = mkN "limnology" ; -lin limonene_N = mkN "limonene" ; -lin limonite_N = mkN "limonite" ; -lin limousine_N = mkN "limousine" "limousines"; -- from DictEng -lin limp_A = compoundA (mkA "limp"); -- from DictEng -lin limp_N = mkN "limp" "limps"; -- from DictEng -lin limp_V = mkV "limp" "limps" "limped" "limped" "limping"; -- from DictEng -lin limp_V2 = mkV2 (mkV "limp") ; -lin limpa_N = mkN "limpa" ; -lin limpet_N = mkN "limpet" "limpets"; -- from DictEng -lin limpid_A = compoundA (mkA "limpid"); -- from DictEng -lin limpidity_N = mkN "limpidity" ; -- from DictEng -lin limpkin_N = mkN "limpkin" ; -lin limply_Adv = mkAdv "limply" ; -lin limpness_N = mkN "limpness" ; -- from DictEng -lin linage_N = mkN "linage" ; -lin linalool_N = mkN "linalool" ; -lin linchpin_N = mkN "linchpin" "linchpins"; -- from DictEng -lin lincomycin_N = mkN "lincomycin" ; -lin lindane_N = mkN "lindane" ; -lin linden_N = mkN "linden" "lindens"; -- from DictEng -lin linden_tree_N = mkN "linden - tree" "linden - trees"; -- from DictEng -lin lindy_N = mkN "lindy" ; -lin line_N = mkN "line" "lines"; -- from DictEng -lin line_V = mkV "line" "lines" "lined" "lined" "lining"; -- from DictEng -lin line_V2 = mkV2 (mkV "line" "lines" "lined" "lined" "lining"); -- from DictEng -lin line_shooter_N = mkN "line - shooter" "line - shooters"; -- from DictEng -lin line_shooting_N = mkN "line - shooting" ; -- from DictEng -lin line_up_N = mkN "line - up" "line - ups"; -- from DictEng -lin lineage_N = mkN "lineage" ; -- from DictEng -lin lineal_A = compoundA (mkA "lineal"); -- from DictEng -lin lineally_Adv = mkAdv "lineally" ; -lin lineament_N = mkN "lineament" "lineaments"; -- from DictEng -lin linear_A = compoundA (mkA "linear"); -- from DictEng -lin linearly_Adv = mkAdv "linearly" ; -lin lineation_N = mkN "lineation" ; -lin linebacker_N = mkN "linebacker" ; -lin linecut_N = mkN "linecut" ; -lin lined_A = mkA "lined" ; -lin linelike_A = mkA "linelike" ; -lin lineman_N = mkN "lineman" "linemen" {- FIXME: guessed plural form -}; -- from DictEng -lin linemen_N = mkN "linemen" ; -lin linen_N = mkN "linen" ; -- from DictEng -lin linen_draper_N = mkN "linen - draper" "linen - drapers"; -- from DictEng -lin linendraper_N = mkN "linendraper" ; -lin liner_N = mkN "liner" "liners"; -- from DictEng -lin liner_train_N = mkN "liner - train" "liner - trains"; -- from DictEng -lin linesman_N = mkN "linesman" "linesmen" {- FIXME: guessed plural form -}; -- from DictEng -lin lineup_N = mkN "lineup" ; -lin ling_N = mkN "ling" "lings"; -- from DictEng -lin lingam_N = mkN "lingam" "lingams"; -- from DictEng -lin lingcod_N = mkN "lingcod" ; -lin linger_V = mkV "linger" "lingers" "lingered" "lingered" "lingering"; -- from DictEng -lin lingerer_N = mkN "lingerer" "lingerers"; -- from DictEng -lin lingerie_N = mkN "lingerie" ; -- from DictEng -lin lingering_A = compoundA (mkA "lingering"); -- from DictEng -lin lingeringly_Adv = mkAdv "lingeringly" ; -lin lingo_N = mkN "lingo" "lingoes"; -- from DictEng -lin lingonberry_N = mkN "lingonberry" ; -lin lingua_franca_N = mkN "lingua franca" "lingua francae" {- FIXME: guessed plural form -}; -- from DictEng -lin lingual_A = compoundA (mkA "lingual"); -- from DictEng -lin lingual_N = mkN "lingual" ; -lin linguica_N = mkN "linguica" ; -lin linguine_N = mkN "linguine" ; -lin linguist_N = mkN "linguist" "linguists"; -- from DictEng -lin linguistic_A = compoundA (mkA "linguistic"); -- from DictEng -lin linguistically_Adv = mkAdv "linguistically"; -- from DictEng -lin linguistics_N = mkN "linguistics" "linguistics"; -- from DictEng -lin lingulate_A = mkA "lingulate" ; -lin liniment_N = mkN "liniment" "liniments"; -- from DictEng -lin linin_N = mkN "linin" ; -lin lining_N = mkN "lining" "linings"; -- from DictEng -lin link_N = mkN "link" "links"; -- from DictEng -lin link_V = mkV "link" "links" "linked" "linked" "linking"; -- from DictEng -lin link_V2 = mkV2 (mkV "link" "links" "linked" "linked" "linking"); -- from DictEng -lin link_up_N = mkN "link - up" "link - ups"; -- from DictEng -lin linkage_N = mkN "linkage" "linkages"; -- from DictEng -lin linkboy_N = mkN "linkboy" "linkboys"; -- from DictEng -lin linkman_N = mkN "linkman" "linkmen" {- FIXME: guessed plural form -}; -- from DictEng -lin links_N = mkN "links" "links"; -- from DictEng -lin linnet_N = mkN "linnet" "linnets"; -- from DictEng -lin lino_N = mkN "lino" ; -- from DictEng -lin linocut_N = mkN "linocut" "linocuts"; -- from DictEng -lin linoleum_N = mkN "linoleum" ; -- from DictEng -lin linotype_N = mkN "linotype" "linotypes"; -- from DictEng -lin linseed_N = mkN "linseed" ; -- from DictEng -lin linsey_woolsey_N = mkN "linsey - woolsey" ; -- from DictEng -lin linsey_woolsey_N = mkN "linsey - woolsey" ; -- from DictEng -lin linstock_N = mkN "linstock" ; -lin lint_N = mkN "lint" ; -- from DictEng -lin lint_V2 = mkV2 (mkV "lint") ; -lin lintel_N = mkN "lintel" "lintels"; -- from DictEng -lin linuron_N = mkN "linuron" ; -lin lion_N = mkN "lion" "lions"; -- from DictEng -lin lion's_ear_N = mkN "lion's ear" ; -lin lion_hunter_N = mkN "lion - hunter" "lion - hunters"; -- from DictEng -lin lion_hearted_A = compoundA (mkA "lion - hearted"); -- from DictEng -lin lion_hunter_N = mkN "lion - hunter" "lion - hunters"; -- from DictEng -lin lioness_N = mkN "lioness" "lionesses"; -- from DictEng -lin lionet_N = mkN "lionet" ; -lin lionfish_N = mkN "lionfish" ; -lin lionhearted_A = mkA "lionhearted" ; -lin lionize_V2 = mkV2 (mkV "lionize" "lionizes" "lionized" "lionized" "lionizing"); -- from DictEng -lin lip_N = mkN "lip" "lips"; -- from DictEng -lin lip_gloss_N = mkN "lip gloss" ; -lin lip_shaped_A = compoundA (mkA "lip shaped") ; -lin lip_read_V2 = mkV2 (mkV "lip-" IrregEng.read_V); -- from DictEng -lin lip_reading_N = mkN "lip - reading" ; -- from DictEng -lin liparis_N = mkN "liparis" ; -lin lipase_N = mkN "lipase" ; -lin lipectomy_N = mkN "lipectomy" ; -lin lipemia_N = mkN "lipemia" ; -lin lipid_N = mkN "lipid" ; -lin lipidosis_N = mkN "lipidosis" ; -lin lipless_A = mkA "lipless" ; -lin lipogram_N = mkN "lipogram" ; -lin lipoma_N = mkN "lipoma" ; -lin lipomatosis_N = mkN "lipomatosis" ; -lin lipophilic_A = mkA "lipophilic" ; -lin lipoprotein_N = mkN "lipoprotein" ; -lin liposarcoma_N = mkN "liposarcoma" ; -lin liposome_N = mkN "liposome" ; -lin liposuction_N = mkN "liposuction" ; -lin lipped_A = compoundA (mkA "lipped"); -- from DictEng -lin lipreading_N = mkN "lipreading" ; -lin lipstick_N = mkN "lipstick" "lipsticks"; -- from DictEng -lin liquefaction_N = mkN "liquefaction" ; -- from DictEng -lin liquefiable_A = mkA "liquefiable" ; -lin liquefied_A = mkA "liquefied" ; -lin liquefy_V = mkV "liquefy" "liquefies" "liquefied" "liquefied" "liquefying"; -- from DictEng -lin liquefy_V2 = mkV2 (mkV "liquefy" "liquefies" "liquefied" "liquefied" "liquefying"); -- from DictEng -lin liquescent_A = compoundA (mkA "liquescent"); -- from DictEng -lin liqueur_N = mkN "liqueur" "liqueurs"; -- from DictEng -lin liquid_A = compoundA (mkA "liquid"); -- from DictEng -lin liquid_N = mkN "liquid" "liquids"; -- from DictEng -lin liquid_fueled_A = compoundA (mkA "liquid fueled") ; -lin liquidambar_N = mkN "liquidambar" ; -lin liquidate_V = mkV "liquidate" "liquidates" "liquidated" "liquidated" "liquidating"; -- from DictEng -lin liquidate_V2 = mkV2 (mkV "liquidate" "liquidates" "liquidated" "liquidated" "liquidating"); -- from DictEng -lin liquidation_N = mkN "liquidation" ; -- from DictEng -lin liquidator_N = mkN "liquidator" "liquidators"; -- from DictEng -lin liquidity_N = mkN "liquidity" ; -- from DictEng -lin liquidize_V2 = mkV2 (mkV "liquidize" "liquidizes" "liquidized" "liquidized" "liquidizing"); -- from DictEng -lin liquidizer_N = mkN "liquidizer" "liquidizers"; -- from DictEng -lin liquor_N = mkN "liquor" "liquors"; -- from DictEng -lin liquorice_N = mkN "liquorice" ; -- from DictEng -lin lira_N = mkN "lira" "liras"; -- from DictEng -lin lisinopril_N = mkN "lisinopril" ; -lin lisle_N = mkN "lisle" ; -- from DictEng -lin lisp_N = mkN "lisp" "lisps"; -- from DictEng -lin lisp_V = mkV "lisp" "lisps" "lisped" "lisped" "lisping"; -- from DictEng -lin lisp_V2 = mkV2 (mkV "lisp" "lisps" "lisped" "lisped" "lisping"); -- from DictEng -lin lisper_N = mkN "lisper" ; -lin lispingly_Adv = mkAdv "lispingly"; -- from DictEng -lin lissom_A = compoundA (mkA "lissom"); -- from DictEng -lin lissome_A = compoundA (mkA "lissome"); -- from DictEng -lin lissomeness_N = mkN "lissomeness" ; -lin lissomness_N = mkN "lissomness" ; -- from DictEng -lin list_N = mkN "list" "lists"; -- from DictEng -lin list_V = mkV "list" "lists" "listed" "listed" "listing"; -- from DictEng -lin list_V2 = mkV2 (mkV "list" "lists" "listed" "listed" "listing"); -- from DictEng -lin list_V2V = mkV2V (mkV "list" "lists" "listed" "listed" "listing") noPrep to_Prep ; -- from DictEng -lin list_price_N = mkN "list - price" "list - prices"; -- from DictEng -lin listed_A = mkA "listed" ; -lin listen_V = mkV "listen" "listens" "listened" "listened" "listening"; -- from DictEng -lin listener_N = mkN "listener" "listeners"; -- from DictEng -lin listening_N = mkN "listening" ; -lin lister_N = mkN "lister" ; -lin listeria_N = mkN "listeria" ; -lin listeriosis_N = mkN "listeriosis" ; -lin listing_N = mkN "listing" "listings"; -- from DictEng -lin listless_A = compoundA (mkA "listless"); -- from DictEng -lin listlessly_Adv = mkAdv "listlessly" ; -lin listlessness_N = mkN "listlessness" ; -- from DictEng -lin lit_V2 = mkV2 (irregDuplV "lit" "lit" "lit"); -- from DictEng -lin litany_N = mkN "litany" "litanies"; -- from DictEng -lin litas_N = mkN "litas" ; -lin litchee_N = mkN "litchee" "litchees"; -- from DictEng -lin litchi_N = mkN "litchi" "litchis"; -- from DictEng -lin liter_N = mkN "liter" ; -lin literacy_N = mkN "literacy" ; -- from DictEng -lin literal_A = compoundA (mkA "literal"); -- from DictEng -lin literal_N = mkN "literal" "literals"; -- from DictEng -lin literalism_N = mkN "literalism" ; -lin literally_Adv = mkAdv "literally" ; -lin literalness_N = mkN "literalness" ; -lin literary_A = compoundA (mkA "literary"); -- from DictEng -lin literate_A = compoundA (mkA "literate"); -- from DictEng -lin literate_N = mkN "literate" "literates"; -- from DictEng -lin literati_N = mkN "literati" ; -lin literatim_Adv = mkAdv "literatim" ; -lin literature_N = mkN "literature" ; -- from DictEng -lin lithe_A = compoundA (mkA "lithe"); -- from DictEng -lin lithe_bodied_A = compoundA (mkA "lithe bodied") ; -lin lithiasis_N = mkN "lithiasis" ; -lin lithic_A = mkA "lithic" ; -lin lithium_N = mkN "lithium" ; -lin lithograph_N = mkN "lithograph" "lithographs"; -- from DictEng -lin lithograph_V = mkV "lithograph" "lithographs" "lithographed" "lithographed" "lithographing"; -- from DictEng -lin lithograph_V2 = mkV2 (mkV "lithograph" "lithographs" "lithographed" "lithographed" "lithographing"); -- from DictEng -lin lithographer_N = mkN "lithographer" ; -lin lithographic_A = compoundA (mkA "lithographic"); -- from DictEng -lin lithography_N = mkN "lithography" ; -- from DictEng -lin lithomancer_N = mkN "lithomancer" ; -lin lithomancy_N = mkN "lithomancy" ; -lin lithomantic_A = mkA "lithomantic" ; -lin lithophyte_N = mkN "lithophyte" ; -lin lithophytic_A = mkA "lithophytic" ; -lin lithops_N = mkN "lithops" ; -lin lithosphere_N = mkN "lithosphere" ; -lin lithotomy_N = mkN "lithotomy" ; -lin lithuresis_N = mkN "lithuresis" ; -lin litigant_N = mkN "litigant" "litigants"; -- from DictEng -lin litigate_V = mkV "litigate" "litigates" "litigated" "litigated" "litigating"; -- from DictEng -lin litigate_V2 = mkV2 (mkV "litigate" "litigates" "litigated" "litigated" "litigating"); -- from DictEng -lin litigation_N = mkN "litigation" ; -- from DictEng -lin litigious_A = compoundA (mkA "litigious"); -- from DictEng -lin litigiousness_N = mkN "litigiousness" ; -lin litmus_N = mkN "litmus" ; -- from DictEng -lin litmus_paper_N = mkN "litmus - paper" "litmus - papers"; -- from DictEng -lin litotes_N = mkN "litotes" "litotes"; -- from DictEng -lin litre_N = mkN "litre" "litres"; -- from DictEng -lin litter_N = mkN "litter" "litters"; -- from DictEng -lin litter_V = mkV "litter" "litters" "littered" "littered" "littering"; -- from DictEng -lin litter_V2 = mkV2 (mkV "litter" "litters" "littered" "littered" "littering"); -- from DictEng -lin litter_basket_N = mkN "litter - basket" "litter - baskets"; -- from DictEng -lin litter_lout_N = mkN "litter - lout" "litter - louts"; -- from DictEng -lin litterbin_N = mkN "litterbin" "litterbins"; -- from DictEng -lin litterer_N = mkN "litterer" ; -lin little_A = mkA "little" "littler"; -- from DictEng -lin little_Adv = mkAdv "little"; -- from DictEng -lin little_N = mkN "little" ; -- from DictEng -lin little_known_A = compoundA (mkA "little known") ; -lin littleneck_N = mkN "littleneck" ; -lin littleness_N = mkN "littleness" ; -- from DictEng -lin littoral_A = compoundA (mkA "littoral"); -- from DictEng -lin littoral_N = mkN "littoral" "littorals"; -- from DictEng -lin liturgical_A = compoundA (mkA "liturgical"); -- from DictEng -lin liturgics_N = mkN "liturgics" ; -lin liturgist_N = mkN "liturgist" ; -lin liturgy_N = mkN "liturgy" "liturgies"; -- from DictEng -lin livable_A = compoundA (mkA "livable"); -- from DictEng -lin live_A = compoundA (mkA "live"); -- from DictEng -lin live_Adv = mkAdv "live"; -- from DictEng -lin live_V = mkV "live" "lives" "lived" "lived" "living"; -- from DictEng -lin live_V2 = mkV2 (mkV "live" "lives" "lived" "lived" "living"); -- from DictEng -lin live_VV = mkVV (mkV "live" "lives" "lived" "lived" "living"); -- from DictEng -lin live_birth_N = mkN "live - birth" "live - births"; -- from DictEng -lin liveable_A = compoundA (mkA "liveable"); -- from DictEng -lin liveborn_A = mkA "liveborn" ; -lin livedo_N = mkN "livedo" ; -lin livelihood_N = mkN "livelihood" "livelihoods"; -- from DictEng -lin liveliness_N = mkN "liveliness" ; -- from DictEng -lin livelong_A = compoundA (mkA "livelong"); -- from DictEng -lin lively_A = mkA "lively" "livelier"; -- from DictEng -lin liven_V = mkV "liven" "livens" "livened" "livened" "livening"; -- from DictEng -lin liven_V2 = mkV2 (mkV "liven" "livens" "livened" "livened" "livening"); -- from DictEng -lin liver_N = mkN "liver" "livers"; -- from DictEng -lin liver_colored_A = compoundA (mkA "liver colored") ; -lin liveried_A = compoundA (mkA "liveried"); -- from DictEng -lin liverish_A = compoundA (mkA "liverish"); -- from DictEng -lin liverpudlian_A = compoundA (mkA "liverpudlian"); -- from DictEng -lin liverpudlian_N = mkN "liverpudlian" "liverpudlians"; -- from DictEng -lin liverwort_N = mkN "liverwort" ; -lin liverwurst_N = mkN "liverwurst" ; -- from DictEng -lin livery_A = compoundA (mkA "livery"); -- from DictEng -lin livery_N = mkN "livery" "liveries"; -- from DictEng -lin liveryman_N = mkN "liveryman" "liverymen" {- FIXME: guessed plural form -}; -- from DictEng -lin livestock_N = mkN "livestock" ; -- from DictEng -lin livid_A = compoundA (mkA "livid"); -- from DictEng -lin lividity_N = mkN "lividity" ; -lin lividly_Adv = mkAdv "lividly" ; -lin lividness_N = mkN "lividness" ; -lin living_A = compoundA (mkA "living"); -- from DictEng -lin living_N = mkN "living" "livings"; -- from DictEng -lin living_room_N = mkN "living - room" "living - rooms"; -- from DictEng -lin living_space_N = mkN "living - space" "living - spaces"; -- from DictEng -lin liza_N = mkN "liza" ; -lin lizard_N = mkN "lizard" "lizards"; -- from DictEng -lin lizard's_tail_N = mkN "lizard's tail" ; -lin lizardfish_N = mkN "lizardfish" ; -lin llama_N = mkN "llama" "llamas"; -- from DictEng -lin llano_N = mkN "llano" ; -lin llb_N = mkN "llb" ; -- from DictEng -lin loach_N = mkN "loach" ; -lin load_N = mkN "load" "loads"; -- from DictEng -lin load_V = mkV "load" "loads" "loaded" "loaded" "loading"; -- from DictEng -lin load_V2 = mkV2 (mkV "load" "loads" "loaded" "loaded" "loading"); -- from DictEng -lin load_bearing_A = compoundA (mkA "load bearing") ; -lin load_shedding_N = mkN "load - shedding" ; -- from DictEng -lin load_line_N = mkN "load - line" "load - lines"; -- from DictEng -lin load_shedding_N = mkN "load - shedding" ; -- from DictEng -lin loaded_A = compoundA (mkA "loaded"); -- from DictEng -lin loader_N = mkN "loader" "loaders"; -- from DictEng -lin loading_N = mkN "loading" "loadings"; -- from DictEng -lin loadstar_N = mkN "loadstar" "loadstars"; -- from DictEng -lin loadstone_N = mkN "loadstone" ; -- from DictEng -lin loaf_N = mkN "loaf" "loaves" {- FIXME: guessed plural form -}; -- from DictEng -lin loaf_V = mkV "loaf" "loafs" "loafed" "loafed" "loafing"; -- from DictEng -lin loaf_V2 = mkV2 (mkV "loaf" "loafs" "loafed" "loafed" "loafing"); -- from DictEng -lin loaf_sugar_N = mkN "loaf - sugar" ; -- from DictEng -lin loafer_N = mkN "loafer" "loafers"; -- from DictEng -lin loam_N = mkN "loam" ; -- from DictEng -lin loamless_A = mkA "loamless" ; -lin loamy_A = mkA "loamy" "loamier"; -- from DictEng -lin loan_N = mkN "loan" "loans"; -- from DictEng -lin loan_V2 = mkV2 (mkV "loan" "loans" "loaned" "loaned" "loaning"); -- from DictEng -lin loan_collection_N = mkN "loan - collection" "loan - collections"; -- from DictEng -lin loan_office_N = mkN "loan - office" "loan - offices"; -- from DictEng -lin loanblend_N = mkN "loanblend" ; -lin loaner_N = mkN "loaner" ; -lin loanword_N = mkN "loanword" "loanwords"; -- from DictEng -lin loasa_N = mkN "loasa" ; -lin loath_A = compoundA (mkA "loath"); -- from DictEng -lin loathe_V2 = mkV2 (mkV "loathe" "loathes" "loathed" "loathed" "loathing"); -- from DictEng -lin loathing_N = mkN "loathing" ; -- from DictEng -lin loathly_A = mkA "loathly" "loathlier"; -- from DictEng -lin loathsome_A = compoundA (mkA "loathsome"); -- from DictEng -lin loathsomeness_N = mkN "loathsomeness" ; -lin lob_N = mkN "lob" "lobs"; -- from DictEng -lin lob_V = mkV "lob" "lobs" "lobbed" "lobbed" "lobbing"; -- from DictEng -lin lob_V2 = mkV2 (mkV "lob" "lobs" "lobbed" "lobbed" "lobbing"); -- from DictEng -lin lobar_A = mkA "lobar" ; -lin lobate_A = mkA "lobate" ; -lin lobby_N = mkN "lobby" "lobbies"; -- from DictEng -lin lobby_V = mkV "lobby" "lobbies" "lobbied" "lobbied" "lobbying"; -- from DictEng -lin lobby_V2 = mkV2 (mkV "lobby" "lobbies" "lobbied" "lobbied" "lobbying"); -- from DictEng -lin lobby_V2V = mkV2V (mkV "lobby" "lobbies" "lobbied" "lobbied" "lobbying") noPrep to_Prep ; -- from DictEng -lin lobby_VS = mkVS (mkV "lobby" ); -lin lobbyism_N = mkN "lobbyism" ; -lin lobbyist_N = mkN "lobbyist" "lobbyists"; -- from DictEng -lin lobe_N = mkN "lobe" "lobes"; -- from DictEng -lin lobectomy_N = mkN "lobectomy" ; -lin lobed_A = compoundA (mkA "lobed"); -- from DictEng -lin lobelia_N = mkN "lobelia" ; -lin lobeliaceous_A = mkA "lobeliaceous" ; -lin loblolly_N = mkN "loblolly" ; -lin lobotomy_N = mkN "lobotomy" ; -lin lobscouse_N = mkN "lobscouse" ; -lin lobster_N = mkN "lobster" "lobsters"; -- from DictEng -lin lobster_newburg_PN = mkPN "lobster Newburg" ; -lin lobster_pot_N = mkN "lobster - pot" "lobster - pots"; -- from DictEng -lin lobsterman_N = mkN "lobsterman" ; -lin lobular_A = mkA "lobular" ; -lin lobularity_N = mkN "lobularity" ; -lin lobule_N = mkN "lobule" ; -lin local_A = compoundA (mkA "local"); -- from DictEng -lin local_N = mkN "local" "locals"; -- from DictEng -lin locale_N = mkN "locale" "locales"; -- from DictEng -lin localism_N = mkN "localism" "localisms"; -- from DictEng -lin locality_N = mkN "locality" "localities"; -- from DictEng -lin localization_N = mkN "localization" "localizations"; -- from DictEng -lin localize_V2 = mkV2 (mkV "localize" "localizes" "localized" "localized" "localizing"); -- from DictEng -lin localized_A = mkA "localized" ; -lin locally_Adv = mkAdv "locally" ; -lin locate_V = mkV "locate"; -- from DictEng -lin locate_V2 = mkV2 (mkV "locate" "locates" "located" "located" "locating"); -- from DictEng -lin located_A = mkA "located" ; -lin location_N = mkN "location" "locations"; -- from DictEng -lin locator_N = mkN "locator" ; -lin loch_N = mkN "loch" "lochs"; -- from DictEng -lin lochia_N = mkN "lochia" ; -lin lock_N = mkN "lock" "locks"; -- from DictEng -lin lock_V = mkV "lock" "locks" "locked" "locked" "locking"; -- from DictEng -lin lock_V2 = mkV2 (mkV "lock" "locks" "locked" "locked" "locking"); -- from DictEng -lin lock_gate_N = mkN "lock - gate" "lock - gates"; -- from DictEng -lin lock_gate_N = mkN "lock - gate" "lock - gates"; -- from DictEng -lin lock_keeper_N = mkN "lock - keeper" "lock - keepers"; -- from DictEng -lin lockage_N = mkN "lockage" ; -lin lockdown_N = mkN "lockdown" ; -lin locker_N = mkN "locker" "lockers"; -- from DictEng -lin locker_room_A = compoundA (mkA "locker room") ; -lin locket_N = mkN "locket" "lockets"; -- from DictEng -lin locking_N = mkN "locking" ; -lin lockjaw_N = mkN "lockjaw" ; -- from DictEng -lin lockmaster_N = mkN "lockmaster" ; -lin locknut_N = mkN "locknut" "locknuts"; -- from DictEng -lin lockout_N = mkN "lockout" "lockouts"; -- from DictEng -lin lockring_N = mkN "lockring" ; -lin locksmith_N = mkN "locksmith" "locksmiths"; -- from DictEng -lin lockstep_N = mkN "lockstep" ; -lin lockstitch_N = mkN "lockstitch" "lockstitches"; -- from DictEng -lin lockup_A = compoundA (mkA "lockup"); -- from DictEng -lin lockup_N = mkN "lockup" "lockups"; -- from DictEng -lin loco_A = compoundA (mkA "loco"); -- from DictEng -lin locomotion_N = mkN "locomotion" ; -- from DictEng -lin locomotive_A = compoundA (mkA "locomotive"); -- from DictEng -lin locomotive_N = mkN "locomotive" "locomotives"; -- from DictEng -lin locoweed_N = mkN "locoweed" ; -lin locule_N = mkN "locule" ; -lin locum_N = mkN "locum" "locums"; -- from DictEng -lin locum_tenens_N = mkN "locum tenens" "IRREG"; -- from DictEng -lin locus_N = mkN "locus" "loci" {- FIXME: guessed plural form -}; -- from DictEng -lin locus_classicus_N = mkN "locus classicus" "locus classici" {- FIXME: guessed plural form -}; -- from DictEng -lin locust_N = mkN "locust" "locusts"; -- from DictEng -lin locust_tree_N = mkN "locust - tree" "locust - trees"; -- from DictEng -lin locution_N = mkN "locution" "locutions"; -- from DictEng -lin lode_N = mkN "lode" "lodes"; -- from DictEng -lin lodestar_N = mkN "lodestar" "lodestars"; -- from DictEng -lin lodestone_N = mkN "lodestone" ; -- from DictEng -lin lodge_N = mkN "lodge" "lodges"; -- from DictEng -lin lodge_V = mkV "lodge" "lodges" "lodged" "lodged" "lodging"; -- from DictEng -lin lodge_V2 = mkV2 (mkV "lodge" "lodges" "lodged" "lodged" "lodging"); -- from DictEng -lin lodgement_N = mkN "lodgement" "lodgements"; -- from DictEng -lin lodger_N = mkN "lodger" "lodgers"; -- from DictEng -lin lodging_N = mkN "lodging" "lodgings"; -- from DictEng -lin lodging_house_N = mkN "lodging - house" "lodging - houses"; -- from DictEng -lin lodgment_N = mkN "lodgment" "lodgments"; -- from DictEng -lin loess_N = mkN "loess" ; -- from DictEng -lin loft_N = mkN "loft" "lofts"; -- from DictEng -lin loft_V2 = mkV2 (mkV "loft" "lofts" "lofted" "lofted" "lofting"); -- from DictEng -lin loftily_Adv = mkAdv "loftily"; -- from DictEng -lin loftiness_N = mkN "loftiness" ; -- from DictEng -lin lofty_A = mkA "lofty" "loftier"; -- from DictEng -lin log_N = mkN "log" "logs"; -- from DictEng -lin log_V = mkV "log" ; -lin log_V2 = mkV2 (mkV "log" "logs" "logged" "logged" "logging"); -- from DictEng -lin log_cabin_N = mkN "log - cabin" "log - cabins"; -- from DictEng -lin log_jam_N = mkN "log - jam" "log - jams"; -- from DictEng -lin log_rolling_N = mkN "log - rolling" ; -- from DictEng -lin loganberry_N = mkN "loganberry" "loganberries"; -- from DictEng -lin logarithm_N = mkN "logarithm" "logarithms"; -- from DictEng -lin logarithmic_A = compoundA (mkA "logarithmic"); -- from DictEng -lin logarithmically_Adv = mkAdv "logarithmically"; -- from DictEng -lin logbook_N = mkN "logbook" "logbooks"; -- from DictEng -lin loge_N = mkN "loge" ; -lin loggerhead_N = mkN "loggerhead" ; -lin loggerheads_N = mkN "loggerheads" ; -- from DictEng -lin loggia_N = mkN "loggia" "loggias"; -- from DictEng -lin logging_N = mkN "logging" ; -- from DictEng -lin logic_N = mkN "logic" "logics"; -- from DictEng -lin logical_A = compoundA (mkA "logical"); -- from DictEng -lin logicality_N = mkN "logicality" ; -- from DictEng -lin logically_Adv = mkAdv "logically" ; -lin logician_N = mkN "logician" "logicians"; -- from DictEng -lin logicism_N = mkN "logicism" ; -lin loginess_N = mkN "loginess" ; -lin logion_N = mkN "logion" ; -lin logistic_A = mkA "logistic" ; -lin logistics_N = mkN "logistics" "logistics"; -- from DictEng -lin logjam_N = mkN "logjam" ; -lin logo_N = mkN "logo" ; -lin logogram_N = mkN "logogram" ; -lin logogrammatic_A = mkA "logogrammatic" ; -lin logogrammatically_Adv = mkAdv "logogrammatically" ; -lin logomach_N = mkN "logomach" ; -lin logomachy_N = mkN "logomachy" ; -lin logorrhea_N = mkN "logorrhea" ; -lin logrolling_N = mkN "logrolling" ; -lin logwood_N = mkN "logwood" ; -lin loin_N = mkN "loin" "loins"; -- from DictEng -lin loincloth_N = mkN "loincloth" "loincloths"; -- from DictEng -lin loins_N = mkN "loins" ; -lin loir_N = mkN "loir" ; -lin loiter_V = mkV "loiter" "loiters" "loitered" "loitered" "loitering"; -- from DictEng -lin loiter_V2 = mkV2 (mkV "loiter" "loiters" "loitered" "loitered" "loitering"); -- from DictEng -lin loiterer_N = mkN "loiterer" "loiterers"; -- from DictEng -lin loligo_N = mkN "loligo" ; -lin loll_V = mkV "loll" "lolls" "lolled" "lolled" "lolling"; -- from DictEng -lin loll_V2 = mkV2 (mkV "loll" "lolls" "lolled" "lolled" "lolling"); -- from DictEng -lin lollipop_N = mkN "lollipop" "lollipops"; -- from DictEng -lin lollop_V = mkV "lollop" ; -lin lollop_V2 = mkV2 (mkV "lollop") ; -lin lolly_N = mkN "lolly" "lollies"; -- from DictEng -lin lomatia_N = mkN "lomatia" ; -lin loment_N = mkN "loment" ; -lin lomustine_N = mkN "lomustine" ; -lin londoner_N = mkN "londoner" "londoners"; -- from DictEng -lin lone_A = compoundA (mkA "lone"); -- from DictEng -lin loneliness_N = mkN "loneliness" ; -- from DictEng -lin lonely_A = mkA "lonely" "lonelier"; -- from DictEng -lin loner_N = mkN "loner" ; -lin lonesome_A = compoundA (mkA "lonesome"); -- from DictEng -lin long_A = mkA "long" "longer"; -- from DictEng -lin long_Adv = mkAdv "long"; -- from DictEng -lin long_N = mkN "long" "longs"; -- from DictEng -lin long_V = mkV "long" "longs" "longed" "longed" "longing"; -- from DictEng -lin long_acting_A = compoundA (mkA "long acting") ; -lin long_ago_A = compoundA (mkA "long ago") ; -lin long_armed_A = compoundA (mkA "long armed") ; -lin long_bodied_A = compoundA (mkA "long bodied") ; -lin long_branched_A = compoundA (mkA "long branched") ; -lin long_chain_A = compoundA (mkA "long chain") ; -lin long_dated_A = compoundA (mkA "long dated") ; -lin long_distance_A = compoundA (mkA "long - distance"); -- from DictEng -lin long_faced_A = compoundA (mkA "long faced") ; -lin long_familiar_A = compoundA (mkA "long familiar") ; -lin long_haired_A = compoundA (mkA "long - haired"); -- from DictEng -lin long_handled_A = compoundA (mkA "long handled") ; -lin long_headed_A = compoundA (mkA "long - headed"); -- from DictEng -lin long_jawed_A = compoundA (mkA "long jawed") ; -lin long_life_A = compoundA (mkA "long life") ; -lin long_play_A = compoundA (mkA "long - play"); -- from DictEng -lin long_range_A = compoundA (mkA "long - range"); -- from DictEng -lin long_run_A = compoundA (mkA "long run") ; -lin long_snouted_A = compoundA (mkA "long snouted") ; -lin long_spurred_A = compoundA (mkA "long spurred") ; -lin long_stalked_A = compoundA (mkA "long stalked") ; -lin long_staple_A = compoundA (mkA "long staple") ; -lin long_sufferance_N = mkN "long sufferance" ; -lin long_winded_A = compoundA (mkA "long - winded"); -- from DictEng -lin long_wool_A = compoundA (mkA "long wool") ; -lin long_ago_Adv = mkAdv "long ago" ; -lin long_distance_A = compoundA (mkA "long - distance"); -- from DictEng -lin long_drawn_out_A = compoundA (mkA "long - drawn - out"); -- from DictEng -lin long_haired_A = compoundA (mkA "long - haired"); -- from DictEng -lin long_headed_A = compoundA (mkA "long - headed"); -- from DictEng -lin long_lived_A = compoundA (mkA "long - lived"); -- from DictEng -lin long_play_A = compoundA (mkA "long - play"); -- from DictEng -lin long_playing_A = compoundA (mkA "long - playing"); -- from DictEng -lin long_range_A = compoundA (mkA "long - range"); -- from DictEng -lin long_sighted_A = compoundA (mkA "long - sighted"); -- from DictEng -lin long_standing_A = compoundA (mkA "long - standing"); -- from DictEng -lin long_suffering_A = compoundA (mkA "long - suffering"); -- from DictEng -lin long_term_A = compoundA (mkA "long - term"); -- from DictEng -lin long_time_A = compoundA (mkA "long - time"); -- from DictEng -lin long_winded_A = compoundA (mkA "long - winded"); -- from DictEng -lin long_windedness_N = mkN "long - windedness" ; -- from DictEng -lin longan_N = mkN "longan" ; -lin longanberry_N = mkN "longanberry" ; -lin longboat_N = mkN "longboat" "longboats"; -- from DictEng -lin longbow_N = mkN "longbow" "longbows"; -- from DictEng -lin longbowman_N = mkN "longbowman" ; -lin longed_for_A = compoundA (mkA "longed for") ; -lin longer_Adv = mkAdv "longer"; -- from DictEng -lin longer_N = mkN "longer" ; -lin longest_Adv = mkAdv "longest"; -- from DictEng -lin longevity_N = mkN "longevity" ; -- from DictEng -lin longhand_A = mkA "longhand" ; -lin longhand_N = mkN "longhand" ; -- from DictEng -lin longhorn_N = mkN "longhorn" ; -lin longing_A = compoundA (mkA "longing"); -- from DictEng -lin longing_N = mkN "longing" "longings"; -- from DictEng -lin longingly_Adv = mkAdv "longingly" ; -lin longish_A = compoundA (mkA "longish"); -- from DictEng -lin longitude_N = mkN "longitude" "longitudes"; -- from DictEng -lin longitudinal_A = compoundA (mkA "longitudinal"); -- from DictEng -lin longitudinally_Adv = mkAdv "longitudinally" ; -lin longness_N = mkN "longness" ; -lin longshoreman_N = mkN "longshoreman" "longshoremen" {- FIXME: guessed plural form -}; -- from DictEng -lin longshot_N = mkN "longshot" ; -lin longstanding_A = mkA "longstanding" ; -lin longtime_A = mkA "longtime" ; -lin longueur_N = mkN "longueur" ; -lin longways_Adv = mkAdv "longways"; -- from DictEng -lin longways_N = mkN "longways" ; -lin longwise_Adv = mkAdv "longwise"; -- from DictEng -lin longwool_N = mkN "longwool" ; -lin loo_N = mkN "loo" "loos"; -- from DictEng -lin loofa_N = mkN "loofa" "loofas"; -- from DictEng -lin loofah_N = mkN "loofah" "loofahs"; -- from DictEng -lin look_N = mkN "look" "looks"; -- from DictEng -lin look_V = mkV "look" "looks" "looked" "looked" "looking"; -- from DictEng -lin look_V2 = mkV2 (mkV "look" "looks" "looked" "looked" "looking"); -- from DictEng -lin look_V2V = mkV2V (mkV "look" "looks" "looked" "looked" "looking") noPrep to_Prep ; -- from DictEng -lin look_VA = mkVA (mkV "look" "looks" "looked" "looked" "looking"); -- from DictEng -lin look_alike_A = compoundA (mkA "look alike") ; -lin look_over_N = mkN "look - over" "IRREG"; -- from DictEng -lin lookdown_N = mkN "lookdown" ; -lin looker_N = mkN "looker" "lookers"; -- from DictEng -lin looker_on_N = mkN "looker - on" "looker - a" {- FIXME: guessed plural form -}; -- from DictEng -lin looking_A = mkA "looking" ; -lin looking_N = mkN "looking" ; -lin looking_glass_N = mkN "looking - glass" "looking - glasses"; -- from DictEng -lin lookout_N = mkN "lookout" "lookouts"; -- from DictEng -lin loom_N = mkN "loom" "looms"; -- from DictEng -lin loom_V = mkV "loom" "looms" "loomed" "loomed" "looming"; -- from DictEng -lin loon_N = mkN "loon" "loons"; -- from DictEng -lin loony_A = mkA "loony" "loonier"; -- from DictEng -lin loony_N = mkN "loony" "loonies"; -- from DictEng -lin loonybin_N = mkN "loonybin" "loonybins"; -- from DictEng -lin loop_N = mkN "loop" "loops"; -- from DictEng -lin loop_V = mkV "loop" "loops" "looped" "looped" "looping"; -- from DictEng -lin loop_V2 = mkV2 (mkV "loop" "loops" "looped" "looped" "looping"); -- from DictEng -lin loop_line_N = mkN "loop - line" "loop - lines"; -- from DictEng -lin loop_line_N = mkN "loop - line" "loop - lines"; -- from DictEng -lin loophole_N = mkN "loophole" "loopholes"; -- from DictEng -lin loopy_A = compoundA (mkA "loopy"); -- from DictEng -lin loose_A = mkA "loose" "looser"; -- from DictEng -lin loose_Adv = mkAdv "loose" ; -lin loose_V2 = mkV2 (mkV "loose" "looses" "loosed" "loosed" "loosing"); -- from DictEng -lin loose_jointed_A = compoundA (mkA "loose jointed") ; -lin loose_leaf_A = compoundA (mkA "loose - leaf"); -- from DictEng -lin looseleaf_A = mkA "looseleaf" ; -lin loosely_Adv = mkAdv "loosely" ; -lin loosely_knit_A = compoundA (mkA "loosely knit") ; -lin loosen_V = mkV "loosen" "loosens" "loosened" "loosened" "loosening"; -- from DictEng -lin loosen_V2 = mkV2 (mkV "loosen" "loosens" "loosened" "loosened" "loosening"); -- from DictEng -lin looseness_N = mkN "looseness" ; -lin loosening_N = mkN "loosening" ; -lin loosestrife_N = mkN "loosestrife" ; -lin loot_N = mkN "loot" ; -- from DictEng -lin loot_V = mkV "loot" "loots" "looted" "looted" "looting"; -- from DictEng -lin loot_V2 = mkV2 (mkV "loot" "loots" "looted" "looted" "looting"); -- from DictEng -lin looted_A = mkA "looted" ; -lin looter_N = mkN "looter" "looters"; -- from DictEng -lin looting_N = mkN "looting" ; -lin lop_V = mkV "lop" "lops" "lopped" "lopped" "lopping"; -- from DictEng -lin lop_V2 = mkV2 (mkV "lop" "lops" "lopped" "lopped" "lopping"); -- from DictEng -lin lop_eared_A = compoundA (mkA "lop - eared"); -- from DictEng -lin lop_eared_A = compoundA (mkA "lop - eared"); -- from DictEng -lin lope_N = mkN "lope" "IRREG"; -- from DictEng -lin lope_V = mkV "lope" "lopes" "loped" "loped" "loping"; -- from DictEng -lin lope_V2 = mkV2 (mkV "lope") ; -lin lopsided_A = compoundA (mkA "lopsided"); -- from DictEng -lin lopsidedly_Adv = mkAdv "lopsidedly" ; -lin lopsidedness_N = mkN "lopsidedness" ; -lin loquacious_A = compoundA (mkA "loquacious"); -- from DictEng -lin loquaciously_Adv = mkAdv "loquaciously" ; -lin loquaciousness_N = mkN "loquaciousness" ; -- from DictEng -lin loquacity_N = mkN "loquacity" ; -- from DictEng -lin loquat_N = mkN "loquat" "loquats"; -- from DictEng -lin lorazepam_N = mkN "lorazepam" ; -lin lorchel_N = mkN "lorchel" ; -lin lord_N = mkN "lord" "lords"; -- from DictEng -lin lord_V2 = mkV2 (mkV "lord" "lords" "lorded" "lorded" "lording"); -- from DictEng -lin lordless_A = compoundA (mkA "lordless"); -- from DictEng -lin lordliness_N = mkN "lordliness" ; -- from DictEng -lin lordly_A = mkA "lordly" "lordlier"; -- from DictEng -lin lordolatry_N = mkN "lordolatry" ; -lin lordosis_N = mkN "lordosis" ; -lin lordship_N = mkN "lordship" "lordships"; -- from DictEng -lin lore_N = mkN "lore" ; -- from DictEng -lin lorgnette_N = mkN "lorgnette" "lorgnettes"; -- from DictEng -lin lorica_N = mkN "lorica" ; -lin lorikeet_N = mkN "lorikeet" ; -lin lorn_A = compoundA (mkA "lorn"); -- from DictEng -lin lorry_N = mkN "lorry" "lorries"; -- from DictEng -lin lory_N = mkN "lory" ; -lin lose_V = IrregEng.lose_V; -- from DictEng -lin lose_V2 = mkV2 (IrregEng.lose_V); -- from DictEng -lin loser_N = mkN "loser" "losers"; -- from DictEng -lin losings_N = mkN "losings" ; -lin loss_N = mkN "loss" "losses"; -- from DictEng -lin loss_leader_N = mkN "loss - leader" "loss - leaders"; -- from DictEng -lin lossless_A = mkA "lossless" ; -lin lossy_A = mkA "lossy" ; -lin lost_A = mkA "lost" ; -lin lost_and_found_N = mkN "lost and found" ; -lin lot_N = mkN "lot" "lots"; -- from DictEng -lin lota_N = mkN "lota" ; -lin loth_A = compoundA (mkA "loth"); -- from DictEng -lin loti_N = mkN "loti" ; -lin lotic_A = mkA "lotic" ; -lin lotion_N = mkN "lotion" "lotions"; -- from DictEng -lin lottery_N = mkN "lottery" "lotteries"; -- from DictEng -lin lotto_N = mkN "lotto" ; -- from DictEng -lin lotus_N = mkN "lotus" "lotuses"; -- from DictEng -lin lotus_eater_N = mkN "lotus - eater" "lotus - eaters"; -- from DictEng -lin lotus_eater_N = mkN "lotus - eater" "lotus - eaters"; -- from DictEng -lin lotusland_N = mkN "lotusland" ; -lin louche_A = mkA "louche" ; -lin loud_A = mkA "loud" "louder"; -- from DictEng -lin loud_Adv = mkAdv "loud"; -- from DictEng -lin loud_mouthed_A = compoundA (mkA "loud mouthed") ; -lin loud_voiced_A = compoundA (mkA "loud voiced") ; -lin loud_hailer_N = mkN "loud - hailer" "loud - hailers"; -- from DictEng -lin loudly_Adv = mkAdv "loudly" ; -lin loudmouth_N = mkN "loudmouth" ; -lin loudness_N = mkN "loudness" ; -- from DictEng -lin loudspeaker_N = mkN "loudspeaker" "loudspeakers"; -- from DictEng -lin lough_N = mkN "lough" "loughs"; -- from DictEng -lin lounge_N = mkN "lounge" "lounges"; -- from DictEng -lin lounge_V = mkV "lounge" "lounges" "lounged" "lounged" "lounging"; -- from DictEng -lin lounge_chair_N = mkN "lounge - chair" "lounge - chairs"; -- from DictEng -lin lounge_lizard_N = mkN "lounge - lizard" "lounge - lizards"; -- from DictEng -lin lounge_suit_N = mkN "lounge - suit" "lounge - suits"; -- from DictEng -lin lounger_N = mkN "lounger" "loungers"; -- from DictEng -lin loungewear_N = mkN "loungewear" ; -lin loupe_N = mkN "loupe" ; -lin lour_V = mkV "lour" "lours" "loured" "loured" "louring"; -- from DictEng -lin louringly_Adv = mkAdv "louringly"; -- from DictEng -lin louse_N = mkN "louse" "lice" {- FIXME: guessed plural form -}; -- from DictEng -lin louse_V2 = mkV2 (mkV "louse") ; -lin lousy_A = mkA "lousy" "lousier"; -- from DictEng -lin lout_N = mkN "lout" "louts"; -- from DictEng -lin loutish_A = compoundA (mkA "loutish"); -- from DictEng -lin louvar_N = mkN "louvar" ; -lin louver_N = mkN "louver" ; -lin louvered_A = compoundA (mkA "louvered"); -- from DictEng -lin louvre_N = mkN "louvre" "louvres"; -- from DictEng -lin lovable_A = compoundA (mkA "lovable"); -- from DictEng -lin lovage_N = mkN "lovage" ; -lin lovastatin_N = mkN "lovastatin" ; -lin love_N = mkN "love" "loves"; -- from DictEng -lin love_V2 = mkV2 (mkV "love" "loves" "loved" "loved" "loving"); -- from DictEng -lin love_V2V = mkV2V (mkV "love") noPrep to_Prep ; -- from DictEng -lin love_in_a_mist_N = mkN "love in a mist" ; -lin love_in_winter_N = mkN "love in winter" ; -lin love_lies_bleeding_N = mkN "love lies bleeding" ; -lin love_token_N = mkN "love - token" "love - tokens"; -- from DictEng -lin love_affair_N = mkN "love - affair" "love - affairs"; -- from DictEng -lin love_child_N = mkN "love - child" "love - children" {- FIXME: guessed plural form -}; -- from DictEng -lin love_feast_N = mkN "love - feast" "love - feasts"; -- from DictEng -lin love_knot_N = mkN "love - knot" "love - knots"; -- from DictEng -lin love_letter_N = mkN "love - letter" "love - letters"; -- from DictEng -lin love_match_N = mkN "love - match" "love - matches"; -- from DictEng -lin love_philtre_N = mkN "love - philtre" "love - philtres"; -- from DictEng -lin love_potion_N = mkN "love - potion" "love - potions"; -- from DictEng -lin love_seat_N = mkN "love - seat" "love - seats"; -- from DictEng -lin love_song_N = mkN "love - song" "love - songs"; -- from DictEng -lin love_story_N = mkN "love - story" "love - stories"; -- from DictEng -lin love_token_N = mkN "love - token" "love - tokens"; -- from DictEng -lin lovebird_N = mkN "lovebird" "lovebirds"; -- from DictEng -lin loved_A = mkA "loved" ; -lin loveless_A = compoundA (mkA "loveless"); -- from DictEng -lin loveliness_N = mkN "loveliness" ; -- from DictEng -lin lovelorn_A = compoundA (mkA "lovelorn"); -- from DictEng -lin lovely_A = mkA "lovely" "lovelier"; -- from DictEng -lin lovemaking_N = mkN "lovemaking" ; -- from DictEng -lin lover_N = mkN "lover" "lovers"; -- from DictEng -lin loverlike_A = compoundA (mkA "loverlike"); -- from DictEng -lin lovesick_A = compoundA (mkA "lovesick"); -- from DictEng -lin lovesickness_N = mkN "lovesickness" ; -lin loving_A = compoundA (mkA "loving"); -- from DictEng -lin loving_kindness_N = mkN "loving - kindness" ; -- from DictEng -lin loving_cup_N = mkN "loving - cup" "loving - cups"; -- from DictEng -lin loving_kindness_N = mkN "loving - kindness" ; -- from DictEng -lin lovingness_N = mkN "lovingness" ; -lin low_A = mkA "low" "lower"; -- from DictEng -lin low_Adv = mkAdv "low"; -- from DictEng -lin low_N = mkN "low" "lows"; -- from DictEng -lin low_V = mkV "low" "lows" "lowed" "lowed" "lowing"; -- from DictEng -lin low_backed_A = compoundA (mkA "low backed") ; -lin low_beam_A = compoundA (mkA "low beam") ; -lin low_budget_A = compoundA (mkA "low budget") ; -lin low_ceilinged_A = compoundA (mkA "low ceilinged") ; -lin low_cost_A = compoundA (mkA "low cost") ; -lin low_cut_A = compoundA (mkA "low cut") ; -lin low_density_A = compoundA (mkA "low density") ; -lin low_grade_A = compoundA (mkA "low grade") ; -lin low_growing_A = compoundA (mkA "low growing") ; -lin low_interest_A = compoundA (mkA "low interest") ; -lin low_key_A = compoundA (mkA "low key") ; -lin low_level_A = compoundA (mkA "low level") ; -lin low_lying_A = compoundA (mkA "low lying") ; -lin low_pitched_A = compoundA (mkA "low - pitched"); -- from DictEng -lin low_powered_A = compoundA (mkA "low powered") ; -lin low_pressure_A = compoundA (mkA "low pressure") ; -lin low_resolution_A = compoundA (mkA "low resolution") ; -lin low_rise_A = compoundA (mkA "low rise") ; -lin low_sudsing_A = compoundA (mkA "low sudsing") ; -lin low_tech_A = compoundA (mkA "low tech") ; -lin low_tension_A = compoundA (mkA "low tension") ; -lin low_warp_loom_N = mkN "low warp loom" ; -lin low_st_andrew's_cross_PN = mkPN "low St Andrew's cross" ; -lin low_down_A = compoundA (mkA "low - down"); -- from DictEng -lin low_keyed_A = compoundA (mkA "low - keyed"); -- from DictEng -lin low_pitched_A = compoundA (mkA "low - pitched"); -- from DictEng -lin low_relief_N = mkN "low - relief" "low - reliefs"; -- from DictEng -lin low_spirited_A = compoundA (mkA "low - spirited"); -- from DictEng -lin lowborn_A = compoundA (mkA "lowborn"); -- from DictEng -lin lowboy_N = mkN "lowboy" ; -lin lowbred_A = compoundA (mkA "lowbred"); -- from DictEng -lin lowbrow_A = compoundA (mkA "lowbrow"); -- from DictEng -lin lowbrow_N = mkN "lowbrow" "lowbrows"; -- from DictEng -lin lower_Adv = mkAdv "lower"; -- from DictEng -lin lower_V = mkV "lower" "lowers" "lowered" "lowered" "lowering"; -- from DictEng -lin lower_V2 = mkV2 (mkV "lower" "lowers" "lowered" "lowered" "lowering"); -- from DictEng -lin lower_class_A = compoundA (mkA "lower class") ; -lin lower_middle_class_A = compoundA (mkA "lower middle class") ; -lin lowercase_A = mkA "lowercase" ; -lin lowerclassman_N = mkN "lowerclassman" ; -lin lowered_A = mkA "lowered" ; -lin lowering_N = mkN "lowering" ; -lin loweringly_Adv = mkAdv "loweringly" ; -lin lowermost_A = compoundA (mkA "lowermost"); -- from DictEng -lin lowest_Adv = mkAdv "lowest"; -- from DictEng -lin lowland_A = mkA "lowland" ; -lin lowland_N = mkN "lowland" ; -lin lowlander_N = mkN "lowlander" "lowlanders"; -- from DictEng -lin lowliness_N = mkN "lowliness" ; -- from DictEng -lin lowly_A = mkA "lowly" "lowlier"; -- from DictEng -lin lowness_N = mkN "lowness" ; -- from DictEng -lin lowset_A = mkA "lowset" ; -lin lox_N = mkN "lox" ; -lin loxapine_N = mkN "loxapine" ; -lin loyal_A = mkA "loyal" "loyaller*"; -- from DictEng -lin loyalist_N = mkN "loyalist" "loyalists"; -- from DictEng -lin loyally_Adv = mkAdv "loyally" ; -lin loyalty_N = mkN "loyalty" "loyalties"; -- from DictEng -lin lozenge_N = mkN "lozenge" "lozenges"; -- from DictEng -lin lp_N = mkN "lp" "lps" {- FIXME: no plural form -}; -- from DictEng -lin lsd_N = mkN "lsd" ; -- from DictEng -lin luau_N = mkN "luau" ; -lin lubber_N = mkN "lubber" "lubbers"; -- from DictEng -lin lubberly_A = compoundA (mkA "lubberly"); -- from DictEng -lin lubricant_N = mkN "lubricant" "lubricants"; -- from DictEng -lin lubricate_V2 = mkV2 (mkV "lubricate" "lubricates" "lubricated" "lubricated" "lubricating"); -- from DictEng -lin lubricated_A = mkA "lubricated" ; -lin lubrication_N = mkN "lubrication" "lubrications"; -- from DictEng -lin lubricious_A = mkA "lubricious" ; -lin lucent_A = compoundA (mkA "lucent"); -- from DictEng -lin lucerne_N = mkN "lucerne" ; -- from DictEng -lin lucid_A = compoundA (mkA "lucid"); -- from DictEng -lin lucidity_N = mkN "lucidity" ; -- from DictEng -lin lucidly_Adv = mkAdv "lucidly" ; -lin lucifer_N = mkN "lucifer" "lucifers"; -- from DictEng -lin luciferin_N = mkN "luciferin" ; -lin lucifugous_A = mkA "lucifugous" ; -lin luck_N = mkN "luck" ; -- from DictEng -lin luckily_Adv = mkAdv "luckily"; -- from DictEng -lin luckless_A = compoundA (mkA "luckless"); -- from DictEng -lin lucky_A = mkA "lucky" "luckier"; -- from DictEng -lin lucrative_A = compoundA (mkA "lucrative"); -- from DictEng -lin lucre_N = mkN "lucre" ; -- from DictEng -lin lucubration_N = mkN "lucubration" ; -lin luddite_N = mkN "luddite" "luddites"; -- from DictEng -lin ludicrous_A = compoundA (mkA "ludicrous"); -- from DictEng -lin ludo_N = mkN "ludo" ; -- from DictEng -lin luff_N = mkN "luff" ; -lin luff_V = mkV "luff" "luffs" "luffed" "luffed" "luffing"; -- from DictEng -lin luff_V2 = mkV2 (mkV "luff" "luffs" "luffed" "luffed" "luffing"); -- from DictEng -lin luffa_N = mkN "luffa" ; -lin lug_N = mkN "lug" "lugs"; -- from DictEng -lin lug_V2 = mkV2 (mkV "lug" "lugs" "lugged" "lugged" "lugging"); -- from DictEng -lin luge_N = mkN "luge" "luges"; -- from DictEng -lin luger_N = mkN "luger" ; -lin luggage_N = mkN "luggage" ; -- from DictEng -lin luggage_carrier_N = mkN "luggage - carrier" "luggage - carriers"; -- from DictEng -lin luggage_rack_N = mkN "luggage - rack" "luggage - racks"; -- from DictEng -lin luggage_van_N = mkN "luggage - van" "luggage - vans"; -- from DictEng -lin lugger_N = mkN "lugger" "luggers"; -- from DictEng -lin luging_N = mkN "luging" ; -lin lugsail_N = mkN "lugsail" "lugsails"; -- from DictEng -lin lugubrious_A = compoundA (mkA "lugubrious"); -- from DictEng -lin lugubriously_Adv = mkAdv "lugubriously" ; -lin lugubriousness_N = mkN "lugubriousness" ; -- from DictEng -lin lugworm_N = mkN "lugworm" ; -lin lukewarm_A = compoundA (mkA "lukewarm"); -- from DictEng -lin lukewarmly_Adv = mkAdv "lukewarmly" ; -lin lukewarmness_N = mkN "lukewarmness" ; -- from DictEng -lin lull_N = mkN "lull" "lulls"; -- from DictEng -lin lull_V = mkV "lull" "lulls" "lulled" "lulled" "lulling"; -- from DictEng -lin lull_V2 = mkV2 (mkV "lull" "lulls" "lulled" "lulled" "lulling"); -- from DictEng -lin lullaby_N = mkN "lullaby" "lullabies"; -- from DictEng -lin lumbago_N = mkN "lumbago" ; -- from DictEng -lin lumbar_A = compoundA (mkA "lumbar"); -- from DictEng -lin lumber_N = mkN "lumber" ; -- from DictEng -lin lumber_V = mkV "lumber" "lumbers" "lumbered" "lumbered" "lumbering"; -- from DictEng -lin lumber_V2 = mkV2 (mkV "lumber" "lumbers" "lumbered" "lumbered" "lumbering"); -- from DictEng -lin lumber_mill_N = mkN "lumber - mill" "lumber - mills"; -- from DictEng -lin lumbering_N = mkN "lumbering" ; -lin lumberjack_N = mkN "lumberjack" "lumberjacks"; -- from DictEng -lin lumberman_N = mkN "lumberman" "lumbermen" {- FIXME: guessed plural form -}; -- from DictEng -lin lumbermill_N = mkN "lumbermill" ; -lin lumberroom_N = mkN "lumberroom" "lumberrooms"; -- from DictEng -lin lumberyard_N = mkN "lumberyard" "lumberyards"; -- from DictEng -lin lumbosacral_A = mkA "lumbosacral" ; -lin lumen_N = mkN "lumen" ; -lin luminary_N = mkN "luminary" "luminaries"; -- from DictEng -lin luminescence_N = mkN "luminescence" ; -lin luminescent_A = mkA "luminescent" ; -lin luminism_N = mkN "luminism" ; -lin luminosity_N = mkN "luminosity" ; -- from DictEng -lin luminous_A = compoundA (mkA "luminous"); -- from DictEng -lin lumma_N = mkN "lumma" ; -lin lump_N = mkN "lump" "lumps"; -- from DictEng -lin lump_V2 = mkV2 (mkV "lump" "lumps" "lumped" "lumped" "lumping"); -- from DictEng -lin lumpectomy_N = mkN "lumpectomy" ; -lin lumpenproletariat_N = mkN "lumpenproletariat" ; -lin lumper_N = mkN "lumper" ; -lin lumpfish_N = mkN "lumpfish" ; -lin lumpish_A = compoundA (mkA "lumpish"); -- from DictEng -lin lumpsucker_N = mkN "lumpsucker" ; -lin lumpy_A = mkA "lumpy" "lumpier"; -- from DictEng -lin lunacy_N = mkN "lunacy" "lunacies"; -- from DictEng -lin lunar_A = compoundA (mkA "lunar"); -- from DictEng -lin lunatic_A = mkA "lunatic" ; -lin lunatic_N = mkN "lunatic" "lunatics"; -- from DictEng -lin lunch_N = mkN "lunch" "lunches"; -- from DictEng -lin lunch_V = mkV "lunch" "lunches" "lunched" "lunched" "lunching"; -- from DictEng -lin lunch_V2 = mkV2 (mkV "lunch" "lunches" "lunched" "lunched" "lunching"); -- from DictEng -lin luncheon_N = mkN "luncheon" "luncheons"; -- from DictEng -lin luncheon_V = mkV "luncheon" ; -lin luncher_N = mkN "luncher" ; -lin lunching_N = mkN "lunching" ; -lin lunchroom_N = mkN "lunchroom" ; -lin lunchtime_N = mkN "lunchtime" "lunchtimes"; -- from DictEng -lin lunette_N = mkN "lunette" ; -lin lung_N = mkN "lung" "lungs"; -- from DictEng -lin lung_like_A = compoundA (mkA "lung like") ; -lin lung_power_N = mkN "lung - power" ; -- from DictEng -lin lung_power_N = mkN "lung - power" ; -- from DictEng -lin lunge_N = mkN "lunge" "lunges"; -- from DictEng -lin lunge_V = mkV "lunge" "lunges" "lunged" "lunged" "lunging"; -- from DictEng -lin lunger_N = mkN "lunger" ; -lin lungfish_N = mkN "lungfish" ; -lin lungi_N = mkN "lungi" ; -lin lunisolar_A = mkA "lunisolar" ; -lin lunula_N = mkN "lunula" ; -lin lupin_N = mkN "lupin" "lupins"; -- from DictEng -lin lupine_A = mkA "lupine" ; -lin lupine_N = mkN "lupine" ; -lin lupus_N = mkN "lupus" ; -lin lurch_N = mkN "lurch" "lurches"; -- from DictEng -lin lurch_V = mkV "lurch" "lurches" "lurched" "lurched" "lurching"; -- from DictEng -lin lurch_V2 = mkV2 (mkV "lurch") ; -lin lurcher_N = mkN "lurcher" "lurchers"; -- from DictEng -lin lure_N = mkN "lure" "lures"; -- from DictEng -lin lure_V2 = mkV2 (mkV "lure" "lures" "lured" "lured" "luring"); -- from DictEng -lin lurid_A = compoundA (mkA "lurid"); -- from DictEng -lin luridly_Adv = mkAdv "luridly" ; -lin luridness_N = mkN "luridness" ; -- from DictEng -lin lurk_V = mkV "lurk" "lurks" "lurked" "lurked" "lurking"; -- from DictEng -lin lurker_N = mkN "lurker" ; -lin lurking_place_N = mkN "lurking - place" "lurking - places"; -- from DictEng -lin luscious_A = compoundA (mkA "luscious"); -- from DictEng -lin lusciously_Adv = mkAdv "lusciously" ; -lin lusciousness_N = mkN "lusciousness" ; -- from DictEng -lin lush_A = mkA "lush" "lusher"; -- from DictEng -lin lush_N = mkN "lush" "lushes"; -- from DictEng -lin lust_N = mkN "lust" "lusts"; -- from DictEng -lin lust_V = mkV "lust" "lusts" "lusted" "lusted" "lusting"; -- from DictEng -lin luster_N = mkN "luster" ; -lin lusterware_N = mkN "lusterware" ; -lin lustful_A = compoundA (mkA "lustful"); -- from DictEng -lin lustfully_Adv = mkAdv "lustfully" ; -lin lustily_Adv = mkAdv "lustily"; -- from DictEng -lin lustre_N = mkN "lustre" ; -- from DictEng -lin lustrous_A = compoundA (mkA "lustrous"); -- from DictEng -lin lustrum_N = mkN "lustrum" ; -lin lusty_A = mkA "lusty" "lustier"; -- from DictEng -lin lutanist_N = mkN "lutanist" "lutanists"; -- from DictEng -lin lute_N = mkN "lute" "lutes"; -- from DictEng -lin luteal_A = mkA "luteal" ; -lin lutefisk_N = mkN "lutefisk" ; -lin lutenist_N = mkN "lutenist" "lutenists"; -- from DictEng -lin lutetium_N = mkN "lutetium" ; -lin lutheran_A = compoundA (mkA "lutheran"); -- from DictEng -lin lutheran_N = mkN "lutheran" "lutherans"; -- from DictEng -lin luthier_N = mkN "luthier" ; -lin lutist_N = mkN "lutist" ; -lin lux_N = mkN "lux" ; -lin luxation_N = mkN "luxation" ; -lin luxe_A = compoundA (mkA "luxe"); -- from DictEng -lin luxemburger_A = compoundA (mkA "luxemburger"); -- from DictEng -lin luxemburger_N = mkN "luxemburger" "luxemburgers"; -- from DictEng -lin luxuriance_N = mkN "luxuriance" ; -- from DictEng -lin luxuriant_A = compoundA (mkA "luxuriant"); -- from DictEng -lin luxuriantly_Adv = mkAdv "luxuriantly" ; -lin luxuriate_V = mkV "luxuriate" "luxuriates" "luxuriated" "luxuriated" "luxuriating"; -- from DictEng -lin luxuriation_N = mkN "luxuriation" ; -lin luxurious_A = compoundA (mkA "luxurious"); -- from DictEng -lin luxuriously_Adv = mkAdv "luxuriously" ; -lin luxury_N = mkN "luxury" "luxuries"; -- from DictEng -lin lwei_N = mkN "lwei" ; -lin lycaenid_N = mkN "lycaenid" ; -lin lycanthropy_N = mkN "lycanthropy" ; -lin lycee_N = mkN "lycée" "lycées"; -- from DictEng -lin lyceum_N = mkN "lyceum" "lyceums"; -- from DictEng -lin lychee_N = mkN "lychee" "lychees"; -- from DictEng -lin lychgate_N = mkN "lychgate" "lychgates"; -- from DictEng -lin lychnis_N = mkN "lychnis" ; -lin lycopene_N = mkN "lycopene" ; -lin lye_N = mkN "lye" "lyes"; -- from DictEng -lin lygaeid_N = mkN "lygaeid" ; -lin lying_N = mkN "lying" ; -lin lying_in_A = compoundA (mkA "lying - in"); -- from DictEng -lin lying_in_wait_A = compoundA (mkA "lying in wait") ; -lin lymantriid_N = mkN "lymantriid" ; -lin lymph_N = mkN "lymph" ; -- from DictEng -lin lymphadenitis_N = mkN "lymphadenitis" ; -lin lymphadenoma_N = mkN "lymphadenoma" ; -lin lymphadenopathy_N = mkN "lymphadenopathy" ; -lin lymphangiectasia_N = mkN "lymphangiectasia" ; -lin lymphangiogram_N = mkN "lymphangiogram" ; -lin lymphangiography_N = mkN "lymphangiography" ; -lin lymphangioma_N = mkN "lymphangioma" ; -lin lymphangitis_N = mkN "lymphangitis" ; -lin lymphatic_A = compoundA (mkA "lymphatic"); -- from DictEng -lin lymphedema_N = mkN "lymphedema" ; -lin lymphoblast_N = mkN "lymphoblast" ; -lin lymphoblast_like_A = compoundA (mkA "lymphoblast like") ; -lin lymphocyte_N = mkN "lymphocyte" ; -lin lymphocytic_A = mkA "lymphocytic" ; -lin lymphocytopenia_N = mkN "lymphocytopenia" ; -lin lymphocytosis_N = mkN "lymphocytosis" ; -lin lymphogranuloma_N = mkN "lymphogranuloma" ; -lin lymphoid_A = mkA "lymphoid" ; -lin lymphokine_N = mkN "lymphokine" ; -lin lymphoma_N = mkN "lymphoma" ; -lin lymphopoiesis_N = mkN "lymphopoiesis" ; -lin lymphuria_N = mkN "lymphuria" ; -lin lynch_N = mkN "lynch" ; -- from DictEng -lin lynch_V2 = mkV2 (mkV "lynch" "lynches" "lynched" "lynched" "lynching"); -- from DictEng -lin lynching_N = mkN "lynching" ; -lin lynchpin_N = mkN "lynchpin" "lynchpins"; -- from DictEng -lin lynx_N = mkN "lynx" "lynxes"; -- from DictEng -lin lynx_eyed_A = compoundA (mkA "lynx - eyed"); -- from DictEng -lin lyonnaise_A = mkA "lyonnaise" ; -lin lyophilized_A = mkA "lyophilized" ; -lin lypressin_N = mkN "lypressin" ; -lin lyrate_A = mkA "lyrate" ; -lin lyre_N = mkN "lyre" "lyres"; -- from DictEng -lin lyre_shaped_A = compoundA (mkA "lyre shaped") ; -lin lyre_bird_N = mkN "lyre - bird" "lyre - birds"; -- from DictEng -lin lyrebird_N = mkN "lyrebird" ; -lin lyric_A = compoundA (mkA "lyric"); -- from DictEng -lin lyric_N = mkN "lyric" "lyrics"; -- from DictEng -lin lyrical_A = compoundA (mkA "lyrical"); -- from DictEng -lin lyricality_N = mkN "lyricality" ; -lin lyrically_Adv = mkAdv "lyrically" ; -lin lyricism_N = mkN "lyricism" ; -- from DictEng -lin lyricist_N = mkN "lyricist" "lyricists"; -- from DictEng -lin lysin_N = mkN "lysin" ; -lin lysine_N = mkN "lysine" ; -lin lysinemia_N = mkN "lysinemia" ; -lin lysis_N = mkN "lysis" ; -lin lysogenic_A = mkA "lysogenic" ; -lin lysogenization_N = mkN "lysogenization" ; -lin lysogeny_N = mkN "lysogeny" ; -lin lysol_N = mkN "lysol" ; -- from DictEng -lin lysosome_N = mkN "lysosome" ; -lin lysozyme_N = mkN "lysozyme" ; -lin lyssavirus_N = mkN "lyssavirus" ; -lin ma_N = mkN "ma" ; -- from DictEng -lin ma'am_N = mkN "ma'am" "IRREG"; -- from DictEng -lin maar_N = mkN "maar" ; -lin mac_N = mkN "mac" "macs"; -- from DictEng -lin macabre_A = compoundA (mkA "macabre"); -- from DictEng -lin macadam_N = mkN "macadam" ; -- from DictEng -lin macadamia_N = mkN "macadamia" ; -lin macadamize_V2 = mkV2 (mkV "macadamize" "macadamizes" "macadamized" "macadamized" "macadamizing"); -- from DictEng -lin macaque_N = mkN "macaque" ; -lin macaroni_N = mkN "macaroni" ; -- from DictEng -lin macaronic_A = mkA "macaronic" ; -lin macaroon_N = mkN "macaroon" "macaroons"; -- from DictEng -lin macaw_N = mkN "macaw" "macaws"; -- from DictEng -lin mace_N = mkN "mace" "maces"; -- from DictEng -lin mace_bearer_N = mkN "mace - bearer" "mace - bearers"; -- from DictEng -lin macebearer_N = mkN "macebearer" ; -lin macedoine_N = mkN "macedoine" ; -lin macedonian_A = compoundA (mkA "macedonian"); -- from DictEng -lin macedonian_N = mkN "macedonian" "macedonians"; -- from DictEng -lin macerate_V = mkV "macerate" "macerates" "macerated" "macerated" "macerating"; -- from DictEng -lin macerate_V2 = mkV2 (mkV "macerate" "macerates" "macerated" "macerated" "macerating"); -- from DictEng -lin maceration_N = mkN "maceration" ; -lin macerative_A = mkA "macerative" ; -lin machete_N = mkN "machete" "machetes"; -- from DictEng -lin machiavellian_A = compoundA (mkA "machiavellian"); -- from DictEng -lin machicolation_N = mkN "machicolation" ; -lin machinate_V2 = mkV2 (mkV "machinate") ; -lin machination_N = mkN "machination" "machinations"; -- from DictEng -lin machine_N = mkN "machine" "machines"; -- from DictEng -lin machine_V2 = mkV2 (mkV "machine" "machines" "machined" "machined" "machining"); -- from DictEng -lin machine_accessible_A = compoundA (mkA "machine accessible") ; -lin machine_made_A = compoundA (mkA "machine - made"); -- from DictEng -lin machine_gun_N = mkN "machine - gun" "machine - guns"; -- from DictEng -lin machine_made_A = compoundA (mkA "machine - made"); -- from DictEng -lin machine_readable_A = compoundA (mkA "machine readable") ; -lin machinery_N = mkN "machinery" ; -- from DictEng -lin machinist_N = mkN "machinist" "machinists"; -- from DictEng -lin machismo_N = mkN "machismo" ; -- from DictEng -lin machmeter_N = mkN "machmeter" ; -lin macho_N = mkN "macho" ; -lin macintosh_N = mkN "macintosh" ; -lin mackerel_N = mkN "mackerel" "mackerel"; -- from DictEng -lin mackinaw_N = mkN "mackinaw" ; -lin mackintosh_N = mkN "mackintosh" "mackintoshes"; -- from DictEng -lin mackle_N = mkN "mackle" ; -lin macon_N = mkN "macon" ; -lin macrame_N = mkN "macrame" ; -lin macrencephalic_A = mkA "macrencephalic" ; -lin macrencephaly_N = mkN "macrencephaly" ; -lin macro_A = mkA "macro" ; -lin macro_N = mkN "macro" ; -lin macrobiotic_A = compoundA (mkA "macrobiotic"); -- from DictEng -lin macrobiotics_N = mkN "macrobiotics" ; -lin macrocephalic_A = mkA "macrocephalic" ; -lin macrocephaly_N = mkN "macrocephaly" ; -lin macrocosm_N = mkN "macrocosm" "macrocosms"; -- from DictEng -lin macrocosmic_A = mkA "macrocosmic" ; -lin macrocytosis_N = mkN "macrocytosis" ; -lin macroeconomic_A = mkA "macroeconomic" ; -lin macroeconomics_N = mkN "macroeconomics" ; -lin macroeconomist_N = mkN "macroeconomist" ; -lin macroevolution_N = mkN "macroevolution" ; -lin macroglossia_N = mkN "macroglossia" ; -lin macromolecular_A = mkA "macromolecular" ; -lin macromolecule_N = mkN "macromolecule" ; -lin macron_N = mkN "macron" ; -lin macrophage_N = mkN "macrophage" ; -lin macroscopic_A = mkA "macroscopic" ; -lin macroscopically_Adv = mkAdv "macroscopically" ; -lin macrotus_N = mkN "macrotus" ; -lin macrozamia_N = mkN "macrozamia" ; -lin macula_N = mkN "macula" ; -lin maculate_A = mkA "maculate" ; -lin macule_N = mkN "macule" ; -lin macumba_N = mkN "macumba" ; -lin macushla_N = mkN "macushla" ; -lin mad_A = mkA "mad" "madder*"; -- from DictEng -lin madagascan_A = compoundA (mkA "madagascan"); -- from DictEng -lin madagascan_N = mkN "madagascan" "madagascans"; -- from DictEng -lin madam_N = mkN "madam" "madams"; -- from DictEng -lin madame_N = mkN "madame" "madames"; -- from DictEng -lin madcap_N = mkN "madcap" "madcaps"; -- from DictEng -lin madden_V2 = mkV2 (mkV "madden" "maddens" "maddened" "maddened" "maddening"); -- from DictEng -lin madder_N = mkN "madder" ; -- from DictEng -lin madderwort_N = mkN "madderwort" ; -lin made_A = mkA "made" ; -lin made_up_A = compoundA (mkA "made up") ; -lin madeira_N = mkN "madeira" "madeiras"; -- from DictEng -lin mademoiselle_N = mkN "mademoiselle" "mademoiselles"; -- from DictEng -lin madhouse_N = mkN "madhouse" "madhouses"; -- from DictEng -lin madly_Adv = mkAdv "madly" ; -lin madman_N = mkN "madman" "madmen" {- FIXME: guessed plural form -}; -- from DictEng -lin madness_N = mkN "madness" ; -- from DictEng -lin madonna_N = mkN "madonna" "madonnas"; -- from DictEng -lin madras_N = mkN "madras" ; -lin madrasa_N = mkN "madrasa" ; -lin madrigal_N = mkN "madrigal" "madrigals"; -- from DictEng -lin madrigalist_N = mkN "madrigalist" ; -lin madrilene_N = mkN "madrilene" ; -lin madrona_N = mkN "madrona" ; -lin madwoman_N = mkN "madwoman" "madwomen" {- FIXME: guessed plural form -}; -- from DictEng -lin maelstrom_N = mkN "maelstrom" "maelstroms"; -- from DictEng -lin maenad_N = mkN "maenad" "maenads"; -- from DictEng -lin maestro_N = mkN "maestro" "maestros"; -- from DictEng -lin maffick_V = mkV "maffick" "mafficks" "mafficked" "mafficked" "mafficking"; -- from DictEng -lin mafia_N = mkN "mafia" "mafias"; -- from DictEng -lin mafioso_N = mkN "mafioso" ; -lin mag_N = mkN "mag" "mags"; -- from DictEng -lin magazine_N = mkN "magazine" "magazines"; -- from DictEng -lin magdalen_N = mkN "magdalen" ; -lin magenta_A = compoundA (mkA "magenta"); -- from DictEng -lin magenta_N = mkN "magenta" ; -- from DictEng -lin magenta_pink_A = compoundA (mkA "magenta pink") ; -lin maggot_N = mkN "maggot" "maggots"; -- from DictEng -lin maggoty_A = compoundA (mkA "maggoty"); -- from DictEng -lin magic_A = compoundA (mkA "magic"); -- from DictEng -lin magic_N = mkN "magic" ; -- from DictEng -lin magical_A = compoundA (mkA "magical"); -- from DictEng -lin magically_Adv = mkAdv "magically" ; -lin magician_N = mkN "magician" "magicians"; -- from DictEng -lin magisterial_A = compoundA (mkA "magisterial"); -- from DictEng -lin magistracy_N = mkN "magistracy" "magistracies"; -- from DictEng -lin magistrate_N = mkN "magistrate" "magistrates"; -- from DictEng -lin magma_N = mkN "magma" ; -lin magna_cum_laude_A = compoundA (mkA "magna cum laude") ; -lin magna_cum_laude_Adv = mkAdv "magna cum laude" ; -lin magnanimity_N = mkN "magnanimity" "magnanimities"; -- from DictEng -lin magnanimous_A = compoundA (mkA "magnanimous"); -- from DictEng -lin magnanimously_Adv = mkAdv "magnanimously" ; -lin magnate_N = mkN "magnate" "magnates"; -- from DictEng -lin magnesia_N = mkN "magnesia" ; -- from DictEng -lin magnesite_N = mkN "magnesite" ; -lin magnesium_N = mkN "magnesium" ; -- from DictEng -lin magnet_N = mkN "magnet" "magnets"; -- from DictEng -lin magnetic_A = compoundA (mkA "magnetic"); -- from DictEng -lin magnetically_Adv = mkAdv "magnetically"; -- from DictEng -lin magnetism_N = mkN "magnetism" ; -- from DictEng -lin magnetite_N = mkN "magnetite" ; -lin magnetization_N = mkN "magnetization" ; -- from DictEng -lin magnetize_V2 = mkV2 (mkV "magnetize" "magnetizes" "magnetized" "magnetized" "magnetizing"); -- from DictEng -lin magneto_N = mkN "magneto" "magnetos"; -- from DictEng -lin magnetograph_N = mkN "magnetograph" ; -lin magnetohydrodynamics_N = mkN "magnetohydrodynamics" ; -lin magnetometer_N = mkN "magnetometer" ; -lin magneton_N = mkN "magneton" ; -lin magnetosphere_N = mkN "magnetosphere" ; -lin magnetron_N = mkN "magnetron" ; -lin magnificat_N = mkN "magnificat" "magnificats"; -- from DictEng -lin magnification_N = mkN "magnification" "magnifications"; -- from DictEng -lin magnificence_N = mkN "magnificence" ; -- from DictEng -lin magnificent_A = compoundA (mkA "magnificent"); -- from DictEng -lin magnifico_N = mkN "magnifico" ; -lin magnifier_N = mkN "magnifier" "magnifiers"; -- from DictEng -lin magnify_V2 = mkV2 (mkV "magnify" "magnifies" "magnified" "magnified" "magnifying"); -- from DictEng -lin magniloquence_N = mkN "magniloquence" ; -- from DictEng -lin magniloquent_A = compoundA (mkA "magniloquent"); -- from DictEng -lin magnitude_N = mkN "magnitude" ; -- from DictEng -lin magnolia_N = mkN "magnolia" "magnolias"; -- from DictEng -lin magnum_N = mkN "magnum" "magnums"; -- from DictEng -lin magnum_opus_N = mkN "magnum opus" "magnum opi" {- FIXME: guessed plural form -}; -- from DictEng -lin magpie_N = mkN "magpie" "magpies"; -- from DictEng -lin maguey_N = mkN "maguey" ; -lin magus_N = mkN "magus" ; -lin magyar_A = compoundA (mkA "magyar"); -- from DictEng -lin magyar_N = mkN "magyar" "magyars"; -- from DictEng -lin maharaja_N = mkN "maharaja" "maharajas"; -- from DictEng -lin maharajah_N = mkN "maharajah" "maharajahs"; -- from DictEng -lin maharanee_N = mkN "maharanee" "maharanees"; -- from DictEng -lin maharani_N = mkN "maharani" ; -lin mahatma_N = mkN "mahatma" "mahatmas"; -- from DictEng -lin mahjong_N = mkN "mahjong" ; -- from DictEng -lin mahoe_N = mkN "mahoe" ; -lin mahogany_N = mkN "mahogany" "mahoganies"; -- from DictEng -lin mahout_N = mkN "mahout" "mahouts"; -- from DictEng -lin mahuang_N = mkN "mahuang" ; -lin maid_N = mkN "maid" "maids"; -- from DictEng -lin maiden_A = compoundA (mkA "maiden"); -- from DictEng -lin maiden_N = mkN "maiden" "maidens"; -- from DictEng -lin maiden_blue_eyed_mary_PN = mkPN "maiden blue eyed Mary" ; -lin maidenhair_N = mkN "maidenhair" "maidenhairs"; -- from DictEng -lin maidenhead_N = mkN "maidenhead" ; -- from DictEng -lin maidenhood_N = mkN "maidenhood" "maidenhoods"; -- from DictEng -lin maidenlike_A = compoundA (mkA "maidenlike"); -- from DictEng -lin maidenliness_N = mkN "maidenliness" ; -lin maidenly_A = compoundA (mkA "maidenly"); -- from DictEng -lin maidservant_N = mkN "maidservant" "maidservants"; -- from DictEng -lin maigre_N = mkN "maigre" ; -lin mail_N = mkN "mail" "mails"; -- from DictEng -lin mail_V2 = mkV2 (mkV "mail" "mails" "mailed" "mailed" "mailing"); -- from DictEng -lin mail_cheeked_A = compoundA (mkA "mail cheeked") ; -lin mail_clad_A = compoundA (mkA "mail clad") ; -lin mail_train_N = mkN "mail - train" "mail - trains"; -- from DictEng -lin mailbag_N = mkN "mailbag" "mailbags"; -- from DictEng -lin mailboat_N = mkN "mailboat" "mailboats"; -- from DictEng -lin mailbox_N = mkN "mailbox" "mailboxes"; -- from DictEng -lin maildrop_N = mkN "maildrop" ; -lin mailed_A = compoundA (mkA "mailed"); -- from DictEng -lin mailer_N = mkN "mailer" ; -lin mailing_N = mkN "mailing" ; -lin mailing_card_N = mkN "mailing - card" "mailing - cards"; -- from DictEng -lin mailing_list_N = mkN "mailing - list" "mailing - lists"; -- from DictEng -lin maillot_N = mkN "maillot" ; -lin mailman_N = mkN "mailman" "mailmen" {- FIXME: guessed plural form -}; -- from DictEng -lin mailsorter_N = mkN "mailsorter" ; -lin maim_V2 = mkV2 (mkV "maim" "maims" "maimed" "maimed" "maiming"); -- from DictEng -lin maimed_A = mkA "maimed" ; -lin main_A = compoundA (mkA "main"); -- from DictEng -lin main_N = mkN "main" "mains"; -- from DictEng -lin main_topmast_N = mkN "main topmast" ; -lin main_topsail_N = mkN "main topsail" ; -lin mainframe_N = mkN "mainframe" ; -lin mainland_N = mkN "mainland" "mainlands"; -- from DictEng -lin mainmast_N = mkN "mainmast" "mainmasts"; -- from DictEng -lin mainsail_N = mkN "mainsail" ; -lin mainspring_N = mkN "mainspring" "mainsprings"; -- from DictEng -lin mainstay_N = mkN "mainstay" "mainstays"; -- from DictEng -lin mainstream_N = mkN "mainstream"; -- from DictEng -lin mainstreamed_A = mkA "mainstreamed" ; -lin maintain_V = mkV "maintain"; -- from DictEng -lin maintain_V2 = mkV2 (mkV "maintain" "maintains" "maintained" "maintained" "maintaining"); -- from DictEng -lin maintain_VS = mkVS (mkV "maintain" "maintains" "maintained" "maintained" "maintaining"); -- from DictEng -lin maintainable_A = compoundA (mkA "maintainable"); -- from DictEng -lin maintenance_N = mkN "maintenance" ; -- from DictEng -lin maisonette_N = mkN "maisonette" ; -lin maisonnette_N = mkN "maisonnette" "maisonnettes"; -- from DictEng -lin maize_N = mkN "maize" ; -- from DictEng -lin majestic_A = compoundA (mkA "majestic"); -- from DictEng -lin majestically_Adv = mkAdv "majestically"; -- from DictEng -lin majesty_N = mkN "majesty" "majesties"; -- from DictEng -lin majolica_N = mkN "majolica" ; -- from DictEng -lin major_A = compoundA (mkA "major"); -- from DictEng -lin major_N = mkN "major" "majors"; -- from DictEng -lin major_V = mkV "major" "majors" "majored" "majored" "majoring"; -- from DictEng -lin major_domo_N = mkN "major - domo" "major - domos"; -- from DictEng -lin major_general_N = mkN "major - general" "major - generals"; -- from DictEng -lin major_domo_N = mkN "major - domo" "major - domos"; -- from DictEng -lin major_general_N = mkN "major - general" "major - generals"; -- from DictEng -lin majority_N = mkN "majority" "majorities"; -- from DictEng -lin majuscular_A = mkA "majuscular" ; -lin majuscule_A = mkA "majuscule" ; -lin make_N = mkN "make" "makes"; -- from DictEng -lin make_V = IrregEng.make_V; -- from DictEng -lin make_V2 = mkV2 (IrregEng.make_V); -- from DictEng -lin make_V2V = mkV2V (IrregEng.make_V) noPrep to_Prep ; -- from DictEng -lin make_VA = mkVA (IrregEng.make_V); -- from DictEng -lin make_VS = mkVS (IrregEng.make_V); -- from DictEng -lin make_VV = mkVV (IrregEng.make_V); -- from DictEng -lin make_believe_A = compoundA (mkA "make believe") ; -lin make_believe_N = mkN "make - believe" "make - believes"; -- from DictEng -lin make_believe_N = mkN "make - believe" "make - believes"; -- from DictEng -lin make_out_V2 = mkV2 (mkV "make out") ; -lin make_up_N = mkN "make - up" "make - ups"; -- from DictEng -lin makeover_N = mkN "makeover" ; -lin maker_N = mkN "maker" "makers"; -- from DictEng -lin makeready_N = mkN "makeready" ; -lin makeshift_N = mkN "makeshift" "makeshifts"; -- from DictEng -lin makeup_N = mkN "makeup" ; -lin makeweight_N = mkN "makeweight" "makeweights"; -- from DictEng -lin making_N = mkN "making" "makings"; -- from DictEng -lin mako_N = mkN "mako" ; -lin makomako_N = mkN "makomako" ; -lin malabsorption_N = mkN "malabsorption" ; -lin malacca_N = mkN "malacca" ; -- from DictEng -lin malachite_N = mkN "malachite" ; -- from DictEng -lin malacia_N = mkN "malacia" ; -lin malacologist_N = mkN "malacologist" ; -lin malacology_N = mkN "malacology" ; -lin maladaptive_A = mkA "maladaptive" ; -lin maladjusted_A = compoundA (mkA "maladjusted"); -- from DictEng -lin maladjustive_A = mkA "maladjustive" ; -lin maladjustment_N = mkN "maladjustment" ; -- from DictEng -lin maladroit_A = compoundA (mkA "maladroit"); -- from DictEng -lin maladroitly_Adv = mkAdv "maladroitly" ; -lin maladroitness_N = mkN "maladroitness" ; -- from DictEng -lin malady_N = mkN "malady" "maladies"; -- from DictEng -lin malahini_N = mkN "malahini" ; -lin malaise_N = mkN "malaise" "malaises"; -- from DictEng -lin malamute_N = mkN "malamute" ; -lin malapropism_N = mkN "malapropism" "malapropisms"; -- from DictEng -lin malapropos_A = compoundA (mkA "malapropos"); -- from DictEng -lin malapropos_Adv = mkAdv "malapropos"; -- from DictEng -lin malaria_N = mkN "malaria" ; -- from DictEng -lin malarial_A = compoundA (mkA "malarial"); -- from DictEng -lin malawian_A = compoundA (mkA "malawian"); -- from DictEng -lin malawian_N = mkN "malawian" "malawians"; -- from DictEng -lin malay_A = compoundA (mkA "malay"); -- from DictEng -lin malay_N = mkN "malay" "malays"; -- from DictEng -lin malayan_A = compoundA (mkA "malayan"); -- from DictEng -lin malayan_N = mkN "malayan" "malayans"; -- from DictEng -lin malaysian_A = compoundA (mkA "malaysian"); -- from DictEng -lin malaysian_N = mkN "malaysian" "malaysians"; -- from DictEng -lin malcontent_A = compoundA (mkA "malcontent"); -- from DictEng -lin malcontent_N = mkN "malcontent" "malcontents"; -- from DictEng -lin male_A = compoundA (mkA "male"); -- from DictEng -lin male_N = mkN "male" "males"; -- from DictEng -lin maleate_N = mkN "maleate" ; -lin maleberry_N = mkN "maleberry" ; -lin malediction_N = mkN "malediction" "maledictions"; -- from DictEng -lin malefactor_N = mkN "malefactor" "malefactors"; -- from DictEng -lin malefic_A = mkA "malefic" ; -lin maleficence_N = mkN "maleficence" ; -lin maleficent_A = compoundA (mkA "maleficent"); -- from DictEng -lin maleness_N = mkN "maleness" ; -lin maleo_N = mkN "maleo" ; -lin malevolence_N = mkN "malevolence" ; -- from DictEng -lin malevolent_A = compoundA (mkA "malevolent"); -- from DictEng -lin malevolently_Adv = mkAdv "malevolently" ; -lin malfeasance_N = mkN "malfeasance" "malfeasances"; -- from DictEng -lin malfeasant_N = mkN "malfeasant" ; -lin malformation_N = mkN "malformation" "malformations"; -- from DictEng -lin malformed_A = compoundA (mkA "malformed"); -- from DictEng -lin malfunction_N = mkN "malfunction" "malfunctions"; -- from DictEng -lin malfunction_V = mkV "malfunction" "malfunctions" "malfunctioned" "malfunctioned" "malfunctioning"; -- from DictEng -lin malfunctioning_A = mkA "malfunctioning" ; -lin malian_A = compoundA (mkA "malian"); -- from DictEng -lin malian_N = mkN "malian" "malians"; -- from DictEng -lin malice_N = mkN "malice" ; -- from DictEng -lin malicious_A = compoundA (mkA "malicious"); -- from DictEng -lin maliciously_Adv = mkAdv "maliciously" ; -lin malign_A = compoundA (mkA "malign"); -- from DictEng -lin malign_V2 = mkV2 (mkV "malign" "maligns" "maligned" "maligned" "maligning"); -- from DictEng -lin malignancy_N = mkN "malignancy" ; -- from DictEng -lin malignant_A = compoundA (mkA "malignant"); -- from DictEng -lin malignantly_Adv = mkAdv "malignantly" ; -lin malignity_N = mkN "malignity" "malignities"; -- from DictEng -lin malignly_Adv = mkAdv "malignly" ; -lin malik_N = mkN "malik" ; -lin malinger_V = mkV "malinger" "malingers" "malingered" "malingered" "malingering"; -- from DictEng -lin malingerer_N = mkN "malingerer" "malingerers"; -- from DictEng -lin malingering_N = mkN "malingering" ; -lin malinois_N = mkN "malinois" ; -lin mallard_N = mkN "mallard" "mallards"; -- from DictEng -lin malleability_N = mkN "malleability" ; -- from DictEng -lin malleable_A = compoundA (mkA "malleable"); -- from DictEng -lin mallee_N = mkN "mallee" ; -lin mallet_N = mkN "mallet" "mallets"; -- from DictEng -lin malleus_N = mkN "malleus" ; -lin mallow_N = mkN "mallow" "mallows"; -- from DictEng -lin malmsey_N = mkN "malmsey" ; -- from DictEng -lin malnourished_A = mkA "malnourished" ; -lin malnutrition_N = mkN "malnutrition" ; -- from DictEng -lin malocclusion_N = mkN "malocclusion" ; -lin malodor_N = mkN "malodor" ; -lin malodorous_A = compoundA (mkA "malodorous"); -- from DictEng -lin malodorousness_N = mkN "malodorousness" ; -lin malope_N = mkN "malope" ; -lin malposed_A = mkA "malposed" ; -lin malposition_N = mkN "malposition" ; -lin malpractice_N = mkN "malpractice" "malpractices"; -- from DictEng -lin malt_N = mkN "malt" ; -- from DictEng -lin malt_V = mkV "malt" "malts" "malted" "malted" "malting"; -- from DictEng -lin malt_V2 = mkV2 (mkV "malt" "malts" "malted" "malted" "malting"); -- from DictEng -lin malted_A = mkA "malted" ; -lin malted_N = mkN "malted" ; -lin maltese_A = compoundA (mkA "maltese"); -- from DictEng -lin maltese_N = mkN "maltese" "maltese"; -- from DictEng -lin maltha_N = mkN "maltha" ; -lin malthusian_A = compoundA (mkA "malthusian"); -- from DictEng -lin maltose_N = mkN "maltose" ; -lin maltreat_V2 = mkV2 (mkV "maltreat" "maltreats" "maltreated" "maltreated" "maltreating"); -- from DictEng -lin maltreatment_N = mkN "maltreatment" ; -- from DictEng -lin maltster_N = mkN "maltster" "maltsters"; -- from DictEng -lin malvasia_N = mkN "malvasia" ; -lin malversation_N = mkN "malversation" ; -- from DictEng -lin mama_N = mkN "mama" "mamas"; -- from DictEng -lin mamba_N = mkN "mamba" "mambas"; -- from DictEng -lin mambo_N = mkN "mambo" ; -lin mamey_N = mkN "mamey" ; -lin mamma_N = mkN "mamma" "mammas"; -- from DictEng -lin mammal_N = mkN "mammal" "mammals"; -- from DictEng -lin mammalian_A = mkA "mammalian" ; -lin mammalogist_N = mkN "mammalogist" ; -lin mammalogy_N = mkN "mammalogy" ; -lin mammary_A = mkA "mammary" ; -lin mammillaria_N = mkN "mammillaria" ; -lin mammogram_N = mkN "mammogram" ; -lin mammography_N = mkN "mammography" ; -lin mammon_N = mkN "mammon" ; -- from DictEng -lin mammoth_N = mkN "mammoth" "mammoths"; -- from DictEng -lin mammothermography_N = mkN "mammothermography" ; -lin mammy_N = mkN "mammy" "mammies"; -- from DictEng -lin mamo_N = mkN "mamo" ; -lin man_N = mkN "man" "men"; -- from DictEng -lin man_V2 = mkV2 (mkV "man" "mans" "manned" "manned" "manning"); -- from DictEng -lin man_at_arms_N = mkN "man - at - arms" "men*-at - arms"; -- from DictEng -lin man_made_A = compoundA (mkA "man made") ; -lin man_of_the_earth_N = mkN "man of the earth" ; -lin man_of_war_N = mkN "man - of - war" "men*-of - war"; -- from DictEng -lin man_on_a_horse_N = mkN "man on a horse" ; -lin man_portable_A = compoundA (mkA "man portable") ; -lin man_sized_A = compoundA (mkA "man - sized"); -- from DictEng -lin man_to_man_A = compoundA (mkA "man to man") ; -lin man_to_man_Adv = mkAdv "man to man" ; -lin man_at_arms_N = mkN "man - at - arms" "men*-at - arms"; -- from DictEng -lin man_eater_N = mkN "man - eater" "man - eaters"; -- from DictEng -lin man_hour_N = mkN "man - hour" "man - hours"; -- from DictEng -lin man_of_war_N = mkN "man - of - war" "men*-of - war"; -- from DictEng -lin man_sized_A = compoundA (mkA "man - sized"); -- from DictEng -lin manacle_N = mkN "manacle" "manacles"; -- from DictEng -lin manacle_V2 = mkV2 (mkV "manacle" "manacles" "manacled" "manacled" "manacling"); -- from DictEng -lin manage_V = mkV "manage" "manages" "managed" "managed" "managing"; -- from DictEng -lin manage_V2 = mkV2 (mkV "manage" "manages" "managed" "managed" "managing"); -- from DictEng -lin manage_VV = mkVV (mkV "manage" "manages" "managed" "managed" "managing"); -- from DictEng -lin manageability_N = mkN "manageability" ; -- from DictEng -lin manageable_A = compoundA (mkA "manageable"); -- from DictEng -lin manageably_Adv = mkAdv "manageably" ; -lin management_N = mkN "management" "managements"; -- from DictEng -lin manager_N = mkN "manager" "managers"; -- from DictEng -lin manageress_N = mkN "manageress" "manageresses"; -- from DictEng -lin managerial_A = compoundA (mkA "managerial"); -- from DictEng -lin managerially_Adv = mkAdv "managerially" ; -lin managership_N = mkN "managership" ; -lin manakin_N = mkN "manakin" ; -lin manana_N = mkN "manana" ; -lin manat_N = mkN "manat" ; -lin manatee_N = mkN "manatee" "manatees"; -- from DictEng -lin mancunian_A = compoundA (mkA "mancunian"); -- from DictEng -lin mancunian_N = mkN "mancunian" "mancunians"; -- from DictEng -lin mandala_N = mkN "mandala" ; -lin mandamus_N = mkN "mandamus" ; -lin mandarin_N = mkN "mandarin" "mandarins"; -- from DictEng -lin mandatary_N = mkN "mandatary" "mandataries"; -- from DictEng -lin mandate_N = mkN "mandate" "mandates"; -- from DictEng -lin mandate_V2 = mkV2 (mkV "mandate" "mandates" "mandated" "mandated" "mandating"); -- from DictEng -lin mandate_VS = mkVS (mkV "mandate"); -- from DictEng -lin mandator_N = mkN "mandator" ; -lin mandatory_A = compoundA (mkA "mandatory"); -- from DictEng -lin mandatory_N = mkN "mandatory" "mandatories"; -- from DictEng -lin mandible_N = mkN "mandible" "mandibles"; -- from DictEng -lin mandibular_A = mkA "mandibular" ; -lin mandibulate_A = mkA "mandibulate" ; -lin mandibulofacial_A = mkA "mandibulofacial" ; -lin mandola_N = mkN "mandola" ; -lin mandolin_N = mkN "mandolin" "mandolins"; -- from DictEng -lin mandragora_N = mkN "mandragora" ; -- from DictEng -lin mandrake_N = mkN "mandrake" "mandrakes"; -- from DictEng -lin mandrill_N = mkN "mandrill" "mandrills"; -- from DictEng -lin mane_N = mkN "mane" "manes"; -- from DictEng -lin maneuver_N = mkN "maneuver" ; -lin maneuver_V = mkV "maneuver"; -- from DictEng -lin maneuver_V2 = mkV2 (mkV "maneuver"); -- from DictEng -lin maneuverability_N = mkN "maneuverability" ; -lin maneuverable_A = mkA "maneuverable" ; -lin maneuverer_N = mkN "maneuverer" ; -lin manful_A = compoundA (mkA "manful"); -- from DictEng -lin manfully_Adv = mkAdv "manfully" ; -lin manfulness_N = mkN "manfulness" ; -lin mangabey_N = mkN "mangabey" ; -lin manganate_N = mkN "manganate" ; -lin manganese_N = mkN "manganese" ; -- from DictEng -lin manganite_N = mkN "manganite" ; -lin mange_N = mkN "mange" ; -- from DictEng -lin mangel_wurzel_N = mkN "mangel - wurzel" "mangel - wurzels"; -- from DictEng -lin mangel_wurzel_N = mkN "mangel - wurzel" "mangel - wurzels"; -- from DictEng -lin manger_N = mkN "manger" "mangers"; -- from DictEng -lin mangily_Adv = mkAdv "mangily"; -- from DictEng -lin mangle_N = mkN "mangle" "mangles"; -- from DictEng -lin mangle_V2 = mkV2 (mkV "mangle" "mangles" "mangled" "mangled" "mangling"); -- from DictEng -lin manglietia_N = mkN "manglietia" ; -lin mango_N = mkN "mango" "mangos"; -- from DictEng -lin mangosteen_N = mkN "mangosteen" "mangosteens"; -- from DictEng -lin mangrove_N = mkN "mangrove" "mangroves"; -- from DictEng -lin mangy_A = mkA "mangy" "mangier"; -- from DictEng -lin manhandle_V2 = mkV2 (mkV "manhandle" "manhandles" "manhandled" "manhandled" "manhandling"); -- from DictEng -lin manhattan_N = mkN "manhattan" "manhattans"; -- from DictEng -lin manhole_N = mkN "manhole" "manholes"; -- from DictEng -lin manhood_N = mkN "manhood" ; -- from DictEng -lin manhunt_N = mkN "manhunt" ; -lin mania_N = mkN "mania" "manias"; -- from DictEng -lin maniac_N = mkN "maniac" "maniacs"; -- from DictEng -lin maniacal_A = compoundA (mkA "maniacal"); -- from DictEng -lin maniacally_Adv = mkAdv "maniacally" ; -lin manic_depressive_A = compoundA (mkA "manic - depressive"); -- from DictEng -lin manic_depressive_N = mkN "manic - depressive" "manic - depressives"; -- from DictEng -lin manic_depressive_A = compoundA (mkA "manic - depressive"); -- from DictEng -lin manic_depressive_N = mkN "manic - depressive" "manic - depressives"; -- from DictEng -lin maniclike_A = mkA "maniclike" ; -lin manicotti_N = mkN "manicotti" ; -lin manicure_N = mkN "manicure" "manicures"; -- from DictEng -lin manicure_V2 = mkV2 (mkV "manicure" "manicures" "manicured" "manicured" "manicuring"); -- from DictEng -lin manicurist_N = mkN "manicurist" "manicurists"; -- from DictEng -lin manifest_A = compoundA (mkA "manifest"); -- from DictEng -lin manifest_N = mkN "manifest" "manifests"; -- from DictEng -lin manifest_V2 = mkV2 (mkV "manifest" "manifests" "manifested" "manifested" "manifesting"); -- from DictEng -lin manifestation_N = mkN "manifestation" "manifestations"; -- from DictEng -lin manifesto_N = mkN "manifesto" "manifestos"; -- from DictEng -lin manifold_A = compoundA (mkA "manifold"); -- from DictEng -lin manifold_N = mkN "manifold" "manifolds"; -- from DictEng -lin manifold_V2 = mkV2 (mkV "manifold" "manifolds" "manifolded" "manifolded" "manifolding"); -- from DictEng -lin manikin_N = mkN "manikin" "manikins"; -- from DictEng -lin manila_N = mkN "manila" ; -lin manilla_N = mkN "manilla" "manillas"; -- from DictEng -lin manipulability_N = mkN "manipulability" ; -lin manipulate_V2 = mkV2 (mkV "manipulate" "manipulates" "manipulated" "manipulated" "manipulating"); -- from DictEng -lin manipulation_N = mkN "manipulation" "manipulations"; -- from DictEng -lin manipulative_A = compoundA (mkA "manipulative"); -- from DictEng -lin manipulatively_Adv = mkAdv "manipulatively" ; -lin manipulator_N = mkN "manipulator" ; -lin maniraptor_N = mkN "maniraptor" ; -lin mankind_N = mkN "mankind" ; -- from DictEng -lin manky_A = mkA "manky" ; -lin manlike_A = compoundA (mkA "manlike"); -- from DictEng -lin manliness_N = mkN "manliness" ; -- from DictEng -lin manly_A = mkA "manly" "manlier"; -- from DictEng -lin manna_N = mkN "manna" ; -- from DictEng -lin manned_A = mkA "manned" ; -lin mannequin_N = mkN "mannequin" "mannequins"; -- from DictEng -lin manner_N = mkN "manner" "manners"; -- from DictEng -lin mannered_A = compoundA (mkA "mannered"); -- from DictEng -lin mannerism_N = mkN "mannerism" "mannerisms"; -- from DictEng -lin mannerly_A = compoundA (mkA "mannerly"); -- from DictEng -lin manners_N = mkN "manners" ; -lin mannish_A = compoundA (mkA "mannish"); -- from DictEng -lin mannitol_N = mkN "mannitol" ; -lin manoeuvrability_N = mkN "manoeuvrability" ; -- from DictEng -lin manoeuvrable_A = compoundA (mkA "manoeuvrable"); -- from DictEng -lin manoeuvre_N = mkN "manoeuvre" "manoeuvres"; -- from DictEng -lin manoeuvre_V = mkV "manoeuvre" "manoeuvres" "manoeuvred" "manoeuvred" "manoeuvring"; -- from DictEng -lin manoeuvre_V2 = mkV2 (mkV "manoeuvre" "manoeuvres" "manoeuvred" "manoeuvred" "manoeuvring"); -- from DictEng -lin manoeuvrer_N = mkN "manoeuvrer" "manoeuvrers"; -- from DictEng -lin manometer_N = mkN "manometer" ; -lin manor_N = mkN "manor" "manors"; -- from DictEng -lin manor_house_N = mkN "manor - house" "manor - houses"; -- from DictEng -lin manorial_A = compoundA (mkA "manorial"); -- from DictEng -lin manpower_N = mkN "manpower" ; -- from DictEng -lin manque_A = mkA "manque" ; -lin mansard_A = mkA "mansard" ; -lin mansard_N = mkN "mansard" "mansards"; -- from DictEng -lin manse_N = mkN "manse" "manses"; -- from DictEng -lin manservant_N = mkN "manservant" "manservants"; -- from DictEng -lin mansion_N = mkN "mansion" "mansions"; -- from DictEng -lin manslaughter_N = mkN "manslaughter" ; -- from DictEng -lin manta_N = mkN "manta" ; -lin mantel_N = mkN "mantel" "mantels"; -- from DictEng -lin mantelet_N = mkN "mantelet" ; -lin mantelpiece_N = mkN "mantelpiece" "mantelpieces"; -- from DictEng -lin manticore_N = mkN "manticore" ; -lin mantilla_N = mkN "mantilla" "mantillas"; -- from DictEng -lin mantis_N = mkN "mantis" "mantises"; -- from DictEng -lin mantispid_N = mkN "mantispid" ; -lin mantissa_N = mkN "mantissa" ; -lin mantle_N = mkN "mantle" "mantles"; -- from DictEng -lin mantle_V = mkV "mantle" "mantles" "mantled" "mantled" "mantling"; -- from DictEng -lin mantle_V2 = mkV2 (mkV "mantle" "mantles" "mantled" "mantled" "mantling"); -- from DictEng -lin mantra_N = mkN "mantra" ; -lin mantrap_N = mkN "mantrap" "mantraps"; -- from DictEng -lin mantua_N = mkN "mantua" ; -lin manual_A = compoundA (mkA "manual"); -- from DictEng -lin manual_N = mkN "manual" "manuals"; -- from DictEng -lin manually_Adv = mkAdv "manually" ; -lin manubrium_N = mkN "manubrium" ; -lin manufacture_N = mkN "manufacture" ; -- from DictEng -lin manufacture_V2 = mkV2 (mkV "manufacture" "manufactures" "manufactured" "manufactured" "manufacturing"); -- from DictEng -lin manufactured_A = mkA "manufactured" ; -lin manufacturer_N = mkN "manufacturer" "manufacturers"; -- from DictEng -lin manul_N = mkN "manul" ; -lin manumission_N = mkN "manumission" "manumissions"; -- from DictEng -lin manumit_V2 = mkV2 (mkV "manumit" "manumits" "manumitted" "manumitted" "manumitting"); -- from DictEng -lin manure_N = mkN "manure" ; -- from DictEng -lin manure_V2 = mkV2 (mkV "manure" "manures" "manured" "manured" "manuring"); -- from DictEng -lin manuscript_N = mkN "manuscript" "manuscripts"; -- from DictEng -lin manx_A = compoundA (mkA "manx"); -- from DictEng -lin manx_N = mkN "manx" ; -- from DictEng -lin many_A = mkA "many" ; -lin many_Det = mkDeterminer plural "many" ; -- from DictEng -lin many_chambered_A = compoundA (mkA "many chambered") ; -lin many_lobed_A = compoundA (mkA "many lobed") ; -lin many_sided_A = compoundA (mkA "many - sided"); -- from DictEng -lin many_a_A = compoundA (mkA "many a") ; -lin many_sided_A = compoundA (mkA "many - sided"); -- from DictEng -lin manzanita_N = mkN "manzanita" ; -lin maoism_N = mkN "maoism" ; -- from DictEng -lin maoist_N = mkN "maoist" "maoists"; -- from DictEng -lin maori_N = mkN "maori" "maoris"; -- from DictEng -lin map_N = mkN "map" "maps"; -- from DictEng -lin map_V2 = mkV2 (mkV "map" "maps" "mapped" "mapped" "mapping"); -- from DictEng -lin map_reader_N = mkN "map - reader" "map - readers"; -- from DictEng -lin map_reader_N = mkN "map - reader" "map - readers"; -- from DictEng -lin mapinguari_N = mkN "mapinguari" ; -lin maple_N = mkN "maple" "maples"; -- from DictEng -lin maple_leaf_N = mkN "maple - leaf" "maple - leaves"; -- from DictEng -lin maple_leaf_N = mkN "maple - leaf" "maple - leaves"; -- from DictEng -lin maplelike_A = mkA "maplelike" ; -lin mapmaking_N = mkN "mapmaking" ; -lin mapping_N = mkN "mapping" ; -lin maquiladora_N = mkN "maquiladora" ; -lin maquis_N = mkN "maquis" "maques" {- FIXME: guessed plural form -}; -- from DictEng -lin mar_V2 = mkV2 (mkV "mar" "mars" "marred" "marred" "marring"); -- from DictEng -lin mara_N = mkN "mara" ; -lin marabou_N = mkN "marabou" "marabous"; -- from DictEng -lin maraca_N = mkN "maraca" ; -lin marang_N = mkN "marang" ; -lin maranta_N = mkN "maranta" ; -lin marasca_N = mkN "marasca" ; -lin maraschino_N = mkN "maraschino" "maraschinos"; -- from DictEng -lin marasmus_N = mkN "marasmus" ; -lin marathon_N = mkN "marathon" "marathons"; -- from DictEng -lin marathoner_N = mkN "marathoner" ; -lin maraud_V = mkV "maraud" "marauds" "marauded" "marauded" "marauding"; -- from DictEng -lin marauder_N = mkN "marauder" "marauders"; -- from DictEng -lin marauding_A = mkA "marauding" ; -lin marble_N = mkN "marble" "marbles"; -- from DictEng -lin marbled_A = compoundA (mkA "marbled"); -- from DictEng -lin marbleization_N = mkN "marbleization" ; -lin marbles_N = mkN "marbles" ; -lin marblewood_N = mkN "marblewood" ; -lin marbling_N = mkN "marbling" ; -- from DictEng -lin marc_N = mkN "marc" ; -lin marcel_N = mkN "marcel" ; -lin march_N = mkN "march" "marches"; -- from DictEng -lin march_V = mkV "march" "marches" "marched" "marched" "marching"; -- from DictEng -lin march_V2 = mkV2 (mkV "march" "marches" "marched" "marched" "marching"); -- from DictEng -lin marched_upon_A = compoundA (mkA "marched upon") ; -lin marcher_N = mkN "marcher" "marchers"; -- from DictEng -lin marchioness_N = mkN "marchioness" "marchionesses"; -- from DictEng -lin mardi_gras_N = mkN "mardi gras" "mardi gras"; -- from DictEng -lin mare_N = mkN "mare" "mares"; -- from DictEng -lin margarin_N = mkN "margarin" ; -lin margarine_N = mkN "margarine" ; -- from DictEng -lin margarita_N = mkN "margarita" ; -lin margate_N = mkN "margate" ; -lin margay_N = mkN "margay" ; -lin marge_N = mkN "marge" ; -- from DictEng -lin margin_N = mkN "margin" "margins"; -- from DictEng -lin marginal_A = compoundA (mkA "marginal"); -- from DictEng -lin marginalia_N = mkN "marginalia" ; -lin marginality_N = mkN "marginality" ; -lin marginalization_N = mkN "marginalization" ; -lin marginalize_V2 = mkV2 (mkV "marginalize"); -- from DictEng -lin marginally_Adv = mkAdv "marginally" ; -lin margrave_N = mkN "margrave" "margraves"; -- from DictEng -lin marguerite_N = mkN "marguerite" "marguerites"; -- from DictEng -lin mariachi_N = mkN "mariachi" ; -lin marigold_N = mkN "marigold" "marigolds"; -- from DictEng -lin marihuana_N = mkN "marihuana" ; -- from DictEng -lin marijuana_N = mkN "marijuana" ; -- from DictEng -lin marimba_N = mkN "marimba" "marimbas"; -- from DictEng -lin marina_N = mkN "marina" "marinas"; -- from DictEng -lin marinade_N = mkN "marinade" ; -- from DictEng -lin marinade_V2 = mkV2 (mkV "marinade" "marinades" "marinaded" "marinaded" "marinading"); -- from DictEng -lin marinara_N = mkN "marinara" ; -lin marinate_V2 = mkV2 (mkV "marinate" "marinates" "marinated" "marinated" "marinating"); -- from DictEng -lin marine_A = compoundA (mkA "marine"); -- from DictEng -lin marine_N = mkN "marine" "marines"; -- from DictEng -lin mariner_N = mkN "mariner" "mariners"; -- from DictEng -lin marionette_N = mkN "marionette" "marionettes"; -- from DictEng -lin mariposa_N = mkN "mariposa" ; -lin marital_A = compoundA (mkA "marital"); -- from DictEng -lin mariticide_N = mkN "mariticide" ; -lin maritime_A = compoundA (mkA "maritime"); -- from DictEng -lin marjoram_N = mkN "marjoram" ; -- from DictEng -lin mark_N = mkN "mark" "marks"; -- from DictEng -lin mark_V = mkV "mark" ; -lin mark_V2 = mkV2 (mkV "mark" "marks" "marked" "marked" "marking"); -- from DictEng -lin mark_of_cain_PN = mkPN "mark of Cain" ; -lin mark_up_N = mkN "mark - up" "mark - ups"; -- from DictEng -lin marke_VS = mkVS (mkV "marke"); -- from DictEng -lin marked_A = compoundA (mkA "marked"); -- from DictEng -lin markedly_Adv = mkAdv "markedly" ; -lin marker_N = mkN "marker" "markers"; -- from DictEng -lin market_N = mkN "market" "markets"; -- from DictEng -lin market_V = mkV "market" "markets" "marketed" "marketed" "marketing"; -- from DictEng -lin market_V2 = mkV2 (mkV "market" "markets" "marketed" "marketed" "marketing"); -- from DictEng -lin market_cross_N = mkN "market - cross" "market - crosses"; -- from DictEng -lin market_day_N = mkN "market - day" "market - days"; -- from DictEng -lin market_garden_N = mkN "market - garden" "market - gardens"; -- from DictEng -lin market_gardening_N = mkN "market - gardening" ; -- from DictEng -lin market_square_N = mkN "market - square" "market - squares"; -- from DictEng -lin market_town_N = mkN "market - town" "market - towns"; -- from DictEng -lin marketable_A = compoundA (mkA "marketable"); -- from DictEng -lin marketing_N = mkN "marketing" "marketings"; -- from DictEng -lin marketplace_N = mkN "marketplace" "marketplaces"; -- from DictEng -lin markhor_N = mkN "markhor" ; -lin marking_N = mkN "marking" "markings"; -- from DictEng -lin marking_ink_N = mkN "marking - ink" "marking - inks"; -- from DictEng -lin marking_inks_N = mkN "marking - inks" "marking - inkss"; -- from DictEng -lin markka_N = mkN "markka" ; -lin marksman_N = mkN "marksman" "marksmen" {- FIXME: guessed plural form -}; -- from DictEng -lin marksmanship_N = mkN "marksmanship" ; -- from DictEng -lin markup_N = mkN "markup" ; -lin marl_N = mkN "marl" ; -- from DictEng -lin marlberry_N = mkN "marlberry" ; -lin marlin_N = mkN "marlin" ; -lin marline_N = mkN "marline" ; -lin marlinespike_N = mkN "marlinespike" "marlinespikes"; -- from DictEng -lin marlite_N = mkN "marlite" ; -lin marly_A = mkA "marly" ; -lin marmalade_N = mkN "marmalade" ; -- from DictEng -lin marmite_N = mkN "marmite" ; -lin marmoreal_A = compoundA (mkA "marmoreal"); -- from DictEng -lin marmorean_A = mkA "marmorean" ; -lin marmoset_N = mkN "marmoset" "marmosets"; -- from DictEng -lin marmot_N = mkN "marmot" "marmots"; -- from DictEng -lin marocain_N = mkN "marocain" ; -- from DictEng -lin maroon_A = compoundA (mkA "maroon"); -- from DictEng -lin maroon_N = mkN "maroon" "maroons"; -- from DictEng -lin maroon_V2 = mkV2 (mkV "maroon" "maroons" "marooned" "marooned" "marooning"); -- from DictEng -lin maroon_purple_A = compoundA (mkA "maroon purple") ; -lin maroon_spotted_A = compoundA (mkA "maroon spotted") ; -lin marque_N = mkN "marque" "marques"; -- from DictEng -lin marquee_N = mkN "marquee" "marquees"; -- from DictEng -lin marquess_N = mkN "marquess" "marquesses"; -- from DictEng -lin marquetry_N = mkN "marquetry" ; -- from DictEng -lin marquis_N = mkN "marquis" "marquises"; -- from DictEng -lin marred_A = mkA "marred" ; -lin marriage_N = mkN "marriage" "marriages"; -- from DictEng -lin marriageability_N = mkN "marriageability" ; -- from DictEng -lin marriageable_A = compoundA (mkA "marriageable"); -- from DictEng -lin married_A = compoundA (mkA "married"); -- from DictEng -lin married_N = mkN "married" ; -lin marrow_N = mkN "marrow" "marrows"; -- from DictEng -lin marrowbone_N = mkN "marrowbone" "marrowbones"; -- from DictEng -lin marry_V = mkV "marry" "marries" "married" "married" "marrying"; -- from DictEng -lin marry_V2 = mkV2 (mkV "marry" "marries" "married" "married" "marrying"); -- from DictEng -lin marsala_N = mkN "marsala" ; -- from DictEng -lin marseillaise_N = mkN "marseillaise" "marseillaises"; -- from DictEng -lin marseille_N = mkN "marseille" ; -lin marsh_N = mkN "marsh" "marshes"; -- from DictEng -lin marsh_st_john's_wort_PN = mkPN "marsh St John's wort" ; -lin marshal_N = mkN "marshal" "marshals"; -- from DictEng -lin marshal_V2 = mkV2 (mkV "marshal" "marshals" "marshalled" "marshalled" "marshalling"); -- from DictEng -lin marshalling_yard_N = mkN "marshalling - yard" "marshalling - yards"; -- from DictEng -lin marshalship_N = mkN "marshalship" ; -lin marshmallow_N = mkN "marshmallow" "marshmallows"; -- from DictEng -lin marshy_A = mkA "marshy" "marshier"; -- from DictEng -lin marsupial_A = compoundA (mkA "marsupial"); -- from DictEng -lin marsupial_N = mkN "marsupial" "marsupials"; -- from DictEng -lin marsupium_N = mkN "marsupium" ; -lin mart_N = mkN "mart" "marts"; -- from DictEng -lin marten_N = mkN "marten" "martens"; -- from DictEng -lin martensite_N = mkN "martensite" ; -lin martial_A = compoundA (mkA "martial"); -- from DictEng -lin martially_Adv = mkAdv "martially" ; -lin martian_A = compoundA (mkA "martian"); -- from DictEng -lin martian_N = mkN "martian" "martians"; -- from DictEng -lin martin_N = mkN "martin" "martins"; -- from DictEng -lin martinet_N = mkN "martinet" "martinets"; -- from DictEng -lin martingale_N = mkN "martingale" ; -lin martini_N = mkN "martini" "martinis"; -- from DictEng -lin martynia_N = mkN "martynia" ; -lin martyr_N = mkN "martyr" "martyrs"; -- from DictEng -lin martyr_V2 = mkV2 (mkV "martyr" "martyrs" "martyred" "martyred" "martyring"); -- from DictEng -lin martyrdom_N = mkN "martyrdom" "martyrdoms"; -- from DictEng -lin marumi_N = mkN "marumi" ; -lin marupa_N = mkN "marupa" ; -lin marvel_N = mkN "marvel" "marvels"; -- from DictEng -lin marvel_V = mkV "marvel" "marvels" "marvelled" "marvelled" "marvelling"; -- from DictEng -lin marvel_VS = mkVS (mkV "marvel" "marvels" "marvelled" "marvelled" "marvelling"); -- from DictEng -lin marvellous_A = compoundA (mkA "marvellous"); -- from DictEng -lin marvelous_A = compoundA (mkA "marvelous"); -- from DictEng -lin marxism_N = mkN "marxism" ; -- from DictEng -lin marxist_N = mkN "marxist" "marxists"; -- from DictEng -lin marzipan_N = mkN "marzipan" "marzipans"; -- from DictEng -lin mascara_N = mkN "mascara" ; -- from DictEng -lin mascarpone_N = mkN "mascarpone" ; -lin mascot_N = mkN "mascot" "mascots"; -- from DictEng -lin masculine_A = compoundA (mkA "masculine"); -- from DictEng -lin masculine_N = mkN "masculine" ; -lin masculinity_N = mkN "masculinity" ; -- from DictEng -lin masculinization_N = mkN "masculinization" ; -lin masdevallia_N = mkN "masdevallia" ; -lin maser_N = mkN "maser" "masers"; -- from DictEng -lin mash_N = mkN "mash" "mashes"; -- from DictEng -lin mash_V2 = mkV2 (mkV "mash" "mashes" "mashed" "mashed" "mashing"); -- from DictEng -lin masher_N = mkN "masher" "mashers"; -- from DictEng -lin mashie_N = mkN "mashie" ; -lin masjid_N = mkN "masjid" ; -lin mask_N = mkN "mask" "masks"; -- from DictEng -lin mask_V2 = mkV2 (mkV "mask" "masks" "masked" "masked" "masking"); -- from DictEng -lin masked_A = mkA "masked" ; -lin masking_N = mkN "masking" ; -lin masochism_N = mkN "masochism" ; -- from DictEng -lin masochist_N = mkN "masochist" "masochists"; -- from DictEng -lin masochistic_A = compoundA (mkA "masochistic"); -- from DictEng -lin masochistically_Adv = mkAdv "masochistically"; -- from DictEng -lin mason_N = mkN "mason" "masons"; -- from DictEng -lin masonic_A = compoundA (mkA "masonic"); -- from DictEng -lin masonry_N = mkN "masonry" ; -- from DictEng -lin masque_N = mkN "masque" "masques"; -- from DictEng -lin masquerade_N = mkN "masquerade" "masquerades"; -- from DictEng -lin masquerade_V = mkV "masquerade" "masquerades" "masqueraded" "masqueraded" "masquerading"; -- from DictEng -lin masquerader_N = mkN "masquerader" ; -lin mass_N = mkN "mass" "masses"; -- from DictEng -lin mass_V = mkV "mass" "masses" "massed" "massed" "massing"; -- from DictEng -lin mass_V2 = mkV2 (mkV "mass" "masses" "massed" "massed" "massing"); -- from DictEng -lin mass_produced_A = compoundA (mkA "mass produced") ; -lin mass_spectrometric_A = compoundA (mkA "mass spectrometric") ; -lin mass_produce_V2 = mkV2 (mkV "mass - produce" "mass - produces" "mass - produced" "mass - produced" "mass - producing"); -- from DictEng -lin mass_spectroscopic_A = compoundA (mkA "mass spectroscopic") ; -lin massacre_N = mkN "massacre" "massacres"; -- from DictEng -lin massacre_V2 = mkV2 (mkV "massacre" "massacres" "massacred" "massacred" "massacring"); -- from DictEng -lin massage_N = mkN "massage" "massages"; -- from DictEng -lin massage_V2 = mkV2 (mkV "massage" "massages" "massaged" "massaged" "massaging"); -- from DictEng -lin massager_N = mkN "massager" ; -lin massasauga_N = mkN "massasauga" ; -lin masse_N = mkN "masse" ; -lin masseter_N = mkN "masseter" ; -lin masseur_N = mkN "masseur" "masseurs"; -- from DictEng -lin masseuse_N = mkN "masseuse" "masseuses"; -- from DictEng -lin massicot_N = mkN "massicot" ; -lin massif_N = mkN "massif" "massifs"; -- from DictEng -lin massive_A = compoundA (mkA "massive"); -- from DictEng -lin massively_Adv = mkAdv "massively" ; -lin massiveness_N = mkN "massiveness" ; -- from DictEng -lin massy_A = mkA "massy" "massier"; -- from DictEng -lin mast_N = mkN "mast" "masts"; -- from DictEng -lin mastaba_N = mkN "mastaba" ; -lin mastalgia_N = mkN "mastalgia" ; -lin mastectomy_N = mkN "mastectomy" ; -lin masted_A = mkA "masted" ; -lin master_N = mkN "master" "masters"; -- from DictEng -lin master_V2 = mkV2 (mkV "master" "masters" "mastered" "mastered" "mastering"); -- from DictEng -lin master_at_arms_N = mkN "master - at - arms" "masters - at - arms"; -- from DictEng -lin master_at_arms_N = mkN "master - at - arms" "masters - at - arms"; -- from DictEng -lin master_key_N = mkN "master - key" "master - keys"; -- from DictEng -lin masterful_A = compoundA (mkA "masterful"); -- from DictEng -lin masterfully_Adv = mkAdv "masterfully" ; -lin mastering_N = mkN "mastering" ; -lin masterless_A = compoundA (mkA "masterless"); -- from DictEng -lin masterly_A = compoundA (mkA "masterly"); -- from DictEng -lin mastermind_N = mkN "mastermind" "masterminds"; -- from DictEng -lin mastermind_V2 = mkV2 (mkV "mastermind" "masterminds" "masterminded" "masterminded" "masterminding"); -- from DictEng -lin masterpiece_N = mkN "masterpiece" "masterpieces"; -- from DictEng -lin mastership_N = mkN "mastership" "masterships"; -- from DictEng -lin masterstroke_N = mkN "masterstroke" "masterstrokes"; -- from DictEng -lin mastery_N = mkN "mastery" ; -- from DictEng -lin masthead_N = mkN "masthead" "mastheads"; -- from DictEng -lin mastic_N = mkN "mastic" ; -lin masticate_V2 = mkV2 (mkV "masticate" "masticates" "masticated" "masticated" "masticating"); -- from DictEng -lin mastication_N = mkN "mastication" ; -- from DictEng -lin mastiff_N = mkN "mastiff" "mastiffs"; -- from DictEng -lin mastitis_N = mkN "mastitis" ; -lin mastodon_N = mkN "mastodon" "mastodons"; -- from DictEng -lin mastoid_A = mkA "mastoid" ; -lin mastoid_N = mkN "mastoid" "mastoids"; -- from DictEng -lin mastoidale_N = mkN "mastoidale" ; -lin mastoidectomy_N = mkN "mastoidectomy" ; -lin mastoiditis_N = mkN "mastoiditis" ; -- from DictEng -lin mastopathy_N = mkN "mastopathy" ; -lin mastopexy_N = mkN "mastopexy" ; -lin masturbate_V = mkV "masturbate" "masturbates" "masturbated" "masturbated" "masturbating"; -- from DictEng -lin masturbate_V2 = mkV2 (mkV "masturbate" "masturbates" "masturbated" "masturbated" "masturbating"); -- from DictEng -lin masturbation_N = mkN "masturbation" ; -- from DictEng -lin masturbator_N = mkN "masturbator" ; -lin mat_A = compoundA (mkA "mat"); -- from DictEng -lin mat_N = mkN "mat" "mats"; -- from DictEng -lin mat_V = mkV "mat" "mats" "matted" "matted" "matting"; -- from DictEng -lin mat_V2 = mkV2 (mkV "mat" "mats" "matted" "matted" "matting"); -- from DictEng -lin matador_N = mkN "matador" "matadors"; -- from DictEng -lin matai_N = mkN "matai" ; -lin match_N = mkN "match" "matches"; -- from DictEng -lin match_V = mkV "match" "matches" "matched" "matched" "matching"; -- from DictEng -lin match_V2 = mkV2 (mkV "match" "matches" "matched" "matched" "matching"); -- from DictEng -lin match_up_N = mkN "match up" ; -lin match_point_N = mkN "match - point" "match - points"; -- from DictEng -lin matchboard_N = mkN "matchboard" ; -lin matchbook_N = mkN "matchbook" ; -lin matchbox_N = mkN "matchbox" "matchboxes"; -- from DictEng -lin matched_A = mkA "matched" ; -lin matchet_N = mkN "matchet" "matchets"; -- from DictEng -lin matchless_A = compoundA (mkA "matchless"); -- from DictEng -lin matchlock_N = mkN "matchlock" "matchlocks"; -- from DictEng -lin matchmaker_N = mkN "matchmaker" "matchmakers"; -- from DictEng -lin matchmaking_N = mkN "matchmaking" ; -lin matchstick_N = mkN "matchstick" ; -lin matchweed_N = mkN "matchweed" ; -lin matchwood_N = mkN "matchwood" ; -- from DictEng -lin mate_N = mkN "mate" ; -lin mate_V = mkV "mate" "mates" "mated" "mated" "mating"; -- from DictEng -lin mate_V2 = mkV2 (mkV "mate" "mates" "mated" "mated" "mating"); -- from DictEng -lin mate_1_N = mkN "mate" "mates"; -- from DictEng -lin mate_2_N = mkN "maté" "matés" ; -- from DictEng -lin mated_A = mkA "mated" ; -lin mateless_A = mkA "mateless" ; -lin matelote_N = mkN "matelote" ; -lin mater_N = mkN "mater" ; -lin material_A = compoundA (mkA "material"); -- from DictEng -lin material_N = mkN "material" "materials"; -- from DictEng -lin materialism_N = mkN "materialism" ; -- from DictEng -lin materialist_N = mkN "materialist" "materialists"; -- from DictEng -lin materialistic_A = compoundA (mkA "materialistic"); -- from DictEng -lin materialistically_Adv = mkAdv "materialistically"; -- from DictEng -lin materiality_N = mkN "materiality" ; -lin materialization_N = mkN "materialization" "materializations"; -- from DictEng -lin materialize_V = mkV "materialize" "materializes" "materialized" "materialized" "materializing"; -- from DictEng -lin materialize_V2V = mkV2V (mkV "materialize" "materializes" "materialized" "materialized" "materializing") noPrep to_Prep ; -- from DictEng -lin materially_Adv = mkAdv "materially" ; -lin materiel_N = mkN "materiel" ; -lin maternal_A = compoundA (mkA "maternal"); -- from DictEng -lin maternalism_N = mkN "maternalism" ; -lin maternalistic_A = mkA "maternalistic" ; -lin maternally_Adv = mkAdv "maternally" ; -lin maternity_N = mkN "maternity" ; -- from DictEng -lin matey_A = compoundA (mkA "matey"); -- from DictEng -lin mathematical_A = compoundA (mkA "mathematical"); -- from DictEng -lin mathematically_Adv = mkAdv "mathematically" ; -lin mathematician_N = mkN "mathematician" "mathematicians"; -- from DictEng -lin mathematics_N = mkN "mathematics" "mathematics"; -- from DictEng -lin maths_N = mkN "maths" "maths"; -- from DictEng -lin matinee_N = mkN "matinée" "matinées"; -- from DictEng -lin matins_N = mkN "matins" ; -lin matriarch_N = mkN "matriarch" "matriarchs"; -- from DictEng -lin matriarchal_A = compoundA (mkA "matriarchal"); -- from DictEng -lin matriarchic_A = mkA "matriarchic" ; -lin matriarchy_N = mkN "matriarchy" "matriarchies"; -- from DictEng -lin matric_N = mkN "matric" "matrics"; -- from DictEng -lin matricentric_A = mkA "matricentric" ; -lin matricide_N = mkN "matricide" "matricides"; -- from DictEng -lin matriculate_N = mkN "matriculate" ; -lin matriculate_V = mkV "matriculate" "matriculates" "matriculated" "matriculated" "matriculating"; -- from DictEng -lin matriculate_V2 = mkV2 (mkV "matriculate" "matriculates" "matriculated" "matriculated" "matriculating"); -- from DictEng -lin matriculation_N = mkN "matriculation" "matriculations"; -- from DictEng -lin matrilineage_N = mkN "matrilineage" ; -lin matrilineal_A = mkA "matrilineal" ; -lin matrilineally_Adv = mkAdv "matrilineally" ; -lin matrimonial_A = compoundA (mkA "matrimonial"); -- from DictEng -lin matrimony_N = mkN "matrimony" ; -- from DictEng -lin matrix_N = mkN "matrix" "matrixes"; -- from DictEng -lin matron_N = mkN "matron" "matrons"; -- from DictEng -lin matronly_A = compoundA (mkA "matronly"); -- from DictEng -lin matronymic_N = mkN "matronymic" ; -lin matsyendra_N = mkN "matsyendra" ; -lin matt_A = compoundA (mkA "matt"); -- from DictEng -lin matte_N = mkN "matte" ; -lin matted_A = compoundA (mkA "matted"); -- from DictEng -lin matter_N = mkN "matter" "matters"; -- from DictEng -lin matter_V = mkV "matter" "matters" "mattered" "mattered" "mattering"; -- from DictEng -lin matter_of_course_A = compoundA (mkA "matter - of - course"); -- from DictEng -lin matter_of_fact_A = compoundA (mkA "matter - of - fact"); -- from DictEng -lin matter_of_course_A = compoundA (mkA "matter - of - course"); -- from DictEng -lin matter_of_fact_A = compoundA (mkA "matter - of - fact"); -- from DictEng -lin matting_N = mkN "matting" ; -- from DictEng -lin mattock_N = mkN "mattock" "mattocks"; -- from DictEng -lin mattress_N = mkN "mattress" "mattresses"; -- from DictEng -lin maturate_V = mkV "maturate" "maturates" "maturated" "maturated" "maturating"; -- from DictEng -lin maturation_N = mkN "maturation" ; -- from DictEng -lin maturational_A = mkA "maturational" ; -lin mature_A = compoundA (mkA "mature"); -- from DictEng -lin mature_V = mkV "mature" "matures" "matured" "matured" "maturing"; -- from DictEng -lin mature_V2 = mkV2 (mkV "mature" "matures" "matured" "matured" "maturing"); -- from DictEng -lin maturely_Adv = mkAdv "maturely" ; -lin maturity_N = mkN "maturity" ; -- from DictEng -lin matutinal_A = compoundA (mkA "matutinal"); -- from DictEng -lin matzo_N = mkN "matzo" ; -lin maudlin_A = compoundA (mkA "maudlin"); -- from DictEng -lin maul_N = mkN "maul" ; -lin maul_V2 = mkV2 (mkV "maul" "mauls" "mauled" "mauled" "mauling"); -- from DictEng -lin mauler_N = mkN "mauler" ; -lin maulstick_N = mkN "maulstick" "maulsticks"; -- from DictEng -lin maund_N = mkN "maund" ; -lin maunder_V = mkV "maunder" "maunders" "maundered" "maundered" "maundering"; -- from DictEng -lin maundy_thursday_N = mkN "maundy thursday" "maundy thursdays"; -- from DictEng -lin mauritanian_A = compoundA (mkA "mauritanian"); -- from DictEng -lin mauritanian_N = mkN "mauritanian" "mauritanians"; -- from DictEng -lin mauritian_A = compoundA (mkA "mauritian"); -- from DictEng -lin mauritian_N = mkN "mauritian" "mauritians"; -- from DictEng -lin mausoleum_N = mkN "mausoleum" "mausoleums"; -- from DictEng -lin mauve_A = compoundA (mkA "mauve"); -- from DictEng -lin mauve_N = mkN "mauve" "mauves"; -- from DictEng -lin mauve_blue_A = compoundA (mkA "mauve blue") ; -lin mauve_pink_A = compoundA (mkA "mauve pink") ; -lin maverick_N = mkN "maverick" "mavericks"; -- from DictEng -lin mavis_N = mkN "mavis" "mavises"; -- from DictEng -lin maw_N = mkN "maw" "maws"; -- from DictEng -lin mawkish_A = compoundA (mkA "mawkish"); -- from DictEng -lin mawkishly_Adv = mkAdv "mawkishly" ; -lin mawkishness_N = mkN "mawkishness" ; -- from DictEng -lin max_N = mkN "max" ; -- from DictEng -lin maxi_A = mkA "maxi" ; -lin maxi_N = mkN "maxi" ; -lin maxillaria_N = mkN "maxillaria" ; -lin maxillary_A = mkA "maxillary" ; -lin maxillodental_A = mkA "maxillodental" ; -lin maxillofacial_A = mkA "maxillofacial" ; -lin maxillomandibular_A = mkA "maxillomandibular" ; -lin maxim_N = mkN "maxim" "maxims"; -- from DictEng -lin maximal_A = compoundA (mkA "maximal"); -- from DictEng -lin maximally_Adv = mkAdv "maximally" ; -lin maximization_N = mkN "maximization" "maximizations"; -- from DictEng -lin maximize_V2 = mkV2 (mkV "maximize" "maximizes" "maximized" "maximized" "maximizing"); -- from DictEng -lin maximizing_A = mkA "maximizing" ; -lin maximum_A = compoundA (mkA "maximum"); -- from DictEng -lin maximum_N = mkN "maximum" "maximums"; -- from DictEng -lin maxwell_N = mkN "maxwell" ; -lin may_N = mkN "may" "mays"; -- from DictEng -lin may_VV = { - s = table { - VVF VInf => ["be allowed to"] ; - VVF VPres => "may" ; - VVF VPPart => ["been allowed to"] ; - VVF VPresPart => ["being allowed to"] ; - VVF VPast => "might" ; - VVPastNeg => "mightn't" ; - VVPresNeg => "may not" - } ; - typ = VVAux - } ; -lin may_beetle_N = mkN "may - beetle" "may - beetles"; -- from DictEng -lin may_bug_N = mkN "may - bug" "may - bugs"; -- from DictEng -lin mayapple_N = mkN "mayapple" ; -lin maybe_Adv = mkAdv "maybe"; -- from DictEng -lin mayday_N = mkN "mayday" "maydays"; -- from DictEng -lin mayeng_N = mkN "mayeng" ; -lin mayfly_N = mkN "mayfly" "mayflies"; -- from DictEng -lin mayhaw_N = mkN "mayhaw" ; -lin mayhem_N = mkN "mayhem" ; -- from DictEng -lin mayonnaise_N = mkN "mayonnaise" ; -- from DictEng -lin mayor_N = mkN "mayor" "mayors"; -- from DictEng -lin mayoral_A = compoundA (mkA "mayoral"); -- from DictEng -lin mayoralty_N = mkN "mayoralty" "mayoralties"; -- from DictEng -lin mayoress_N = mkN "mayoress" "mayoresses"; -- from DictEng -lin maypole_N = mkN "maypole" "maypoles"; -- from DictEng -lin maypop_N = mkN "maypop" ; -lin mayweed_N = mkN "mayweed" ; -lin maze_N = mkN "maze" "mazes"; -- from DictEng -lin mazed_A = compoundA (mkA "mazed"); -- from DictEng -lin mazer_N = mkN "mazer" ; -lin mazurka_N = mkN "mazurka" "mazurkas"; -- from DictEng -lin mb_N = mkN "mb" ; -- from DictEng -lin mc_N = mkN "mc" ; -- from DictEng -lin mcc_N = mkN "mcc" ; -- from DictEng -lin mccarthyism_N = mkN "mccarthyism" ; -- from DictEng -lin md_N = mkN "md" ; -- from DictEng -lin mead_N = mkN "mead" "meads"; -- from DictEng -lin meadow_N = mkN "meadow" "meadows"; -- from DictEng -lin meadowgrass_N = mkN "meadowgrass" ; -lin meadowlark_N = mkN "meadowlark" ; -lin meager_A = mkA "meager" ; -lin meagerly_Adv = mkAdv "meagerly" ; -lin meagerness_N = mkN "meagerness" ; -lin meagre_A = compoundA (mkA "meagre"); -- from DictEng -lin meagreness_N = mkN "meagreness" ; -- from DictEng -lin meal_N = mkN "meal" "meals"; -- from DictEng -lin mealie_N = mkN "mealie" "mealies"; -- from DictEng -lin mealtime_N = mkN "mealtime" "mealtimes"; -- from DictEng -lin mealworm_N = mkN "mealworm" ; -lin mealy_A = mkA "mealy" "mealier"; -- from DictEng -lin mealy_bug_N = mkN "mealy - bug" "mealy - bugs"; -- from DictEng -lin mealy_mouthed_A = compoundA (mkA "mealy - mouthed"); -- from DictEng -lin mealybug_N = mkN "mealybug" ; -lin mealymouthed_A = mkA "mealymouthed" ; -lin mean_A = mkA "mean" "meaner"; -- from DictEng -lin mean_N = mkN "mean" "means"; -- from DictEng -lin mean_V = IrregEng.mean_V; -- from DictEng -lin mean_V2 = mkV2 (IrregEng.mean_V); -- from DictEng -lin mean_VA = mkVA (IrregEng.mean_V); -- from DictEng -lin mean_VS = mkVS (IrregEng.mean_V); -- from DictEng -lin mean_VV = mkVV (IrregEng.mean_V); -- from DictEng -lin meander_N = mkN "meander" ; -lin meander_V = mkV "meander" "meanders" "meandered" "meandered" "meandering"; -- from DictEng -lin meander_V2 = mkV2 (mkV "meander") ; -lin meandering_A = mkA "meandering" ; -lin meanderingly_Adv = mkAdv "meanderingly"; -- from DictEng -lin meanie_N = mkN "meanie" "meanies"; -- from DictEng -lin meaning_A = compoundA (mkA "meaning"); -- from DictEng -lin meaning_N = mkN "meaning" "meanings"; -- from DictEng -lin meaningful_A = compoundA (mkA "meaningful"); -- from DictEng -lin meaningfully_Adv = mkAdv "meaningfully" ; -lin meaningfulness_N = mkN "meaningfulness" ; -lin meaningless_A = compoundA (mkA "meaningless"); -- from DictEng -lin meaninglessness_N = mkN "meaninglessness" ; -lin meanly_Adv = mkAdv "meanly" ; -lin meanness_N = mkN "meanness" ; -- from DictEng -lin means_N = mkN "means" ; -lin meanspiritedly_Adv = mkAdv "meanspiritedly" ; -lin meantime_Adv = mkAdv "meantime"; -- from DictEng -lin meantime_N = mkN "meantime" ; -- from DictEng -lin meanwhile_Adv = mkAdv "meanwhile"; -- from DictEng -lin meany_N = mkN "meany" "meanies"; -- from DictEng -lin measles_N = mkN "measles" "measles"; -- from DictEng -lin measly_A = compoundA (mkA "measly"); -- from DictEng -lin measurable_A = compoundA (mkA "measurable"); -- from DictEng -lin measurably_Adv = mkAdv "measurably" ; -lin measure_N = mkN "measure" "measures"; -- from DictEng -lin measure_V = mkV "measure" "measures" "measured" "measured" "measuring"; -- from DictEng -lin measure_V2 = mkV2 (mkV "measure" "measures" "measured" "measured" "measuring"); -- from DictEng -lin measured_A = compoundA (mkA "measured"); -- from DictEng -lin measuredly_Adv = mkAdv "measuredly" ; -lin measureless_A = compoundA (mkA "measureless"); -- from DictEng -lin measurement_N = mkN "measurement" "measurements"; -- from DictEng -lin measurer_N = mkN "measurer" ; -lin meat_N = mkN "meat" "meats"; -- from DictEng -lin meat_safe_N = mkN "meat - safe" "meat - safes"; -- from DictEng -lin meatball_N = mkN "meatball" "meatballs"; -- from DictEng -lin meatless_A = compoundA (mkA "meatless"); -- from DictEng -lin meatpacking_N = mkN "meatpacking" ; -lin meatus_N = mkN "meatus" ; -lin meaty_A = mkA "meaty" "meatier"; -- from DictEng -lin mebendazole_N = mkN "mebendazole" ; -lin mebibit_N = mkN "mebibit" ; -lin mecca_N = mkN "mecca" ; -lin mechanic_A = mkA "mechanic" ; -lin mechanic_N = mkN "mechanic" "mechanics"; -- from DictEng -lin mechanical_A = compoundA (mkA "mechanical"); -- from DictEng -lin mechanically_Adv = mkAdv "mechanically" ; -lin mechanics_N = mkN "mechanics" "mechanics"; -- from DictEng -lin mechanism_N = mkN "mechanism" "mechanisms"; -- from DictEng -lin mechanist_N = mkN "mechanist" ; -lin mechanistic_A = compoundA (mkA "mechanistic"); -- from DictEng -lin mechanistically_Adv = mkAdv "mechanistically"; -- from DictEng -lin mechanization_N = mkN "mechanization" "mechanizations"; -- from DictEng -lin mechanize_V2 = mkV2 (mkV "mechanize" "mechanizes" "mechanized" "mechanized" "mechanizing"); -- from DictEng -lin mechanized_A = mkA "mechanized" ; -lin meclizine_N = mkN "meclizine" ; -lin meclofenamate_N = mkN "meclofenamate" ; -lin meconium_N = mkN "meconium" ; -lin mecopteran_N = mkN "mecopteran" ; -lin mecopterous_A = mkA "mecopterous" ; -lin med_N = mkN "med" ; -- from DictEng -lin medal_N = mkN "medal" "medals"; -- from DictEng -lin medalist_N = mkN "medalist" "medalists"; -- from DictEng -lin medallion_N = mkN "medallion" "medallions"; -- from DictEng -lin medallist_N = mkN "medallist" "medallists"; -- from DictEng -lin meddle_V = mkV "meddle" "meddles" "meddled" "meddled" "meddling"; -- from DictEng -lin meddler_N = mkN "meddler" "meddlers"; -- from DictEng -lin meddlesome_A = compoundA (mkA "meddlesome"); -- from DictEng -lin meddling_N = mkN "meddling" ; -lin mediacy_N = mkN "mediacy" ; -lin mediaeval_A = compoundA (mkA "mediaeval"); -- from DictEng -lin medial_A = compoundA (mkA "medial"); -- from DictEng -lin medially_Adv = mkAdv "medially" ; -lin median_A = compoundA (mkA "median"); -- from DictEng -lin median_N = mkN "median" "medians"; -- from DictEng -lin mediant_N = mkN "mediant" ; -lin mediastinum_N = mkN "mediastinum" ; -lin mediate_A = mkA "mediate" ; -lin mediate_V = mkV "mediate" "mediates" "mediated" "mediated" "mediating"; -- from DictEng -lin mediate_V2 = mkV2 (mkV "mediate" "mediates" "mediated" "mediated" "mediating"); -- from DictEng -lin mediated_A = mkA "mediated" ; -lin mediation_N = mkN "mediation" ; -- from DictEng -lin mediator_N = mkN "mediator" "mediators"; -- from DictEng -lin mediatorial_A = mkA "mediatorial" ; -lin mediatory_A = mkA "mediatory" ; -lin mediatrix_N = mkN "mediatrix" ; -lin medic_N = mkN "medic" "medics"; -- from DictEng -lin medical_A = compoundA (mkA "medical"); -- from DictEng -lin medical_N = mkN "medical" "medicals"; -- from DictEng -lin medically_Adv = mkAdv "medically" ; -lin medicament_N = mkN "medicament" "medicaments"; -- from DictEng -lin medicare_N = mkN "medicare" ; -- from DictEng -lin medicate_V2 = mkV2 (mkV "medicate" "medicates" "medicated" "medicated" "medicating"); -- from DictEng -lin medication_N = mkN "medication" "medications"; -- from DictEng -lin medicative_A = mkA "medicative" ; -lin medicinal_A = compoundA (mkA "medicinal"); -- from DictEng -lin medicinally_Adv = mkAdv "medicinally" ; -lin medicine_N = mkN "medicine" "medicines"; -- from DictEng -lin medicine_ball_N = mkN "medicine - ball" "medicine - balls"; -- from DictEng -lin medicine_chest_N = mkN "medicine - chest" "medicine - chests"; -- from DictEng -lin medicine_man_N = mkN "medicine - man" "medicine - men"; -- from DictEng -lin medico_N = mkN "medico" "medicos"; -- from DictEng -lin medicolegal_A = mkA "medicolegal" ; -lin medieval_A = compoundA (mkA "medieval"); -- from DictEng -lin medina_N = mkN "medina" ; -lin mediocre_A = compoundA (mkA "mediocre"); -- from DictEng -lin mediocrity_N = mkN "mediocrity" "mediocrities"; -- from DictEng -lin meditate_V = mkV "meditate" "meditates" "meditated" "meditated" "meditating"; -- from DictEng -lin meditate_V2 = mkV2 (mkV "meditate" "meditates" "meditated" "meditated" "meditating"); -- from DictEng -lin meditation_N = mkN "meditation" "meditations"; -- from DictEng -lin meditative_A = compoundA (mkA "meditative"); -- from DictEng -lin meditatively_Adv = mkAdv "meditatively" ; -lin mediterranean_A = compoundA (mkA "mediterranean"); -- from DictEng -lin medium_A = compoundA (mkA "medium"); -- from DictEng -lin medium_N = mkN "medium" "mediums"; -- from DictEng -lin medium_dry_A = compoundA (mkA "medium dry") ; -lin medium_large_A = compoundA (mkA "medium large") ; -lin medium_sized_A = compoundA (mkA "medium sized") ; -lin medium_grade_A = compoundA (mkA "medium - grade"); -- from DictEng -lin medlar_N = mkN "medlar" "medlars"; -- from DictEng -lin medley_N = mkN "medley" "medleys"; -- from DictEng -lin medroxyprogesterone_N = mkN "medroxyprogesterone" ; -lin medulla_N = mkN "medulla" ; -lin medullary_A = mkA "medullary" ; -lin medusa_N = mkN "medusa" ; -lin medusoid_A = mkA "medusoid" ; -lin meed_N = mkN "meed" "meeds"; -- from DictEng -lin meek_A = mkA "meek" "meeker"; -- from DictEng -lin meekly_Adv = mkAdv "meekly" ; -lin meekness_N = mkN "meekness" ; -- from DictEng -lin meerkat_N = mkN "meerkat" ; -lin meerschaum_N = mkN "meerschaum" "meerschaums"; -- from DictEng -lin meet_A = compoundA (mkA "meet"); -- from DictEng -lin meet_N = mkN "meet" "meets"; -- from DictEng -lin meet_V = IrregEng.meet_V; -- from DictEng -lin meet_V2 = mkV2 (IrregEng.meet_V); -- from DictEng -lin meet_V2V = mkV2V (IrregEng.meet_V) noPrep to_Prep ; -- from DictEng -lin meeting_N = mkN "meeting" "meetings"; -- from DictEng -lin meeting_house_N = mkN "meeting - house" "meeting - houses"; -- from DictEng -lin meeting_place_N = mkN "meeting - place" "meeting - places"; -- from DictEng -lin mefloquine_N = mkN "mefloquine" ; -lin megabit_N = mkN "megabit" ; -lin megabyte_N = mkN "megabyte" ; -lin megacolon_N = mkN "megacolon" ; -lin megacycle_N = mkN "megacycle" "megacycles"; -- from DictEng -lin megadeath_N = mkN "megadeath" "megadeaths"; -- from DictEng -lin megaflop_N = mkN "megaflop" ; -lin megagametophyte_N = mkN "megagametophyte" ; -lin megahertz_N = mkN "megahertz" ; -lin megakaryocyte_N = mkN "megakaryocyte" ; -lin megakaryocytic_A = mkA "megakaryocytic" ; -lin megalith_N = mkN "megalith" "megaliths"; -- from DictEng -lin megalithic_A = compoundA (mkA "megalithic"); -- from DictEng -lin megaloblast_N = mkN "megaloblast" ; -lin megaloblastic_A = mkA "megaloblastic" ; -lin megalocyte_N = mkN "megalocyte" ; -lin megalomania_N = mkN "megalomania" ; -- from DictEng -lin megalomaniac_N = mkN "megalomaniac" "megalomaniacs"; -- from DictEng -lin megalomaniacal_A = mkA "megalomaniacal" ; -lin megalopolis_N = mkN "megalopolis" ; -lin megalosaur_N = mkN "megalosaur" ; -lin megaphone_N = mkN "megaphone" "megaphones"; -- from DictEng -lin megapode_N = mkN "megapode" ; -lin megascopic_A = mkA "megascopic" ; -lin megasporangium_N = mkN "megasporangium" ; -lin megaspore_N = mkN "megaspore" ; -lin megasporophyll_N = mkN "megasporophyll" ; -lin megatherian_N = mkN "megatherian" ; -lin megaton_N = mkN "megaton" "megatons"; -- from DictEng -lin megawatt_N = mkN "megawatt" ; -lin megestrol_N = mkN "megestrol" ; -lin megillah_N = mkN "megillah" ; -lin megilp_N = mkN "megilp" ; -lin megohm_N = mkN "megohm" ; -lin megrim_N = mkN "megrim" "megrims"; -- from DictEng -lin meiosis_N = mkN "meiosis" ; -- from DictEng -lin meiotic_A = mkA "meiotic" ; -lin meitnerium_N = mkN "meitnerium" ; -lin melagra_N = mkN "melagra" ; -lin melamine_N = mkN "melamine" ; -lin melancholia_N = mkN "melancholia" ; -- from DictEng -lin melancholic_A = compoundA (mkA "melancholic"); -- from DictEng -lin melancholic_N = mkN "melancholic" ; -lin melancholy_A = compoundA (mkA "melancholy"); -- from DictEng -lin melancholy_N = mkN "melancholy" ; -- from DictEng -lin melange_N = mkN "mélange" "mélanges"; -- from DictEng -lin melanin_N = mkN "melanin" ; -lin melanoblast_N = mkN "melanoblast" ; -lin melanocyte_N = mkN "melanocyte" ; -lin melanoderma_N = mkN "melanoderma" ; -lin melanoma_N = mkN "melanoma" ; -lin melanosis_N = mkN "melanosis" ; -lin melatonin_N = mkN "melatonin" ; -lin meld_V2 = mkV2 (mkV "meld"); -- from DictEng -lin melee_N = mkN "mêlée" "mêlées"; -- from DictEng -lin melena_N = mkN "melena" ; -lin melilotus_N = mkN "melilotus" ; -lin meliorate_V = mkV "meliorate" "meliorates" "meliorated" "meliorated" "meliorating"; -- from DictEng -lin meliorate_V2 = mkV2 (mkV "meliorate" "meliorates" "meliorated" "meliorated" "meliorating"); -- from DictEng -lin melioration_N = mkN "melioration" "meliorations"; -- from DictEng -lin meliorism_N = mkN "meliorism" ; -- from DictEng -lin mellifluous_A = compoundA (mkA "mellifluous"); -- from DictEng -lin mellow_A = mkA "mellow" "mellower"; -- from DictEng -lin mellow_V = mkV "mellow" "mellows" "mellowed" "mellowed" "mellowing"; -- from DictEng -lin mellow_V2 = mkV2 (mkV "mellow" "mellows" "mellowed" "mellowed" "mellowing"); -- from DictEng -lin mellowing_N = mkN "mellowing" ; -lin mellowingly_Adv = mkAdv "mellowingly" ; -lin mellowly_Adv = mkAdv "mellowly" ; -lin mellowness_N = mkN "mellowness" ; -- from DictEng -lin melodic_A = compoundA (mkA "melodic"); -- from DictEng -lin melodically_Adv = mkAdv "melodically" ; -lin melodious_A = compoundA (mkA "melodious"); -- from DictEng -lin melodiously_Adv = mkAdv "melodiously" ; -lin melodiousness_N = mkN "melodiousness" ; -- from DictEng -lin melodrama_N = mkN "melodrama" "melodramas"; -- from DictEng -lin melodramatic_A = compoundA (mkA "melodramatic"); -- from DictEng -lin melodramatically_Adv = mkAdv "melodramatically"; -- from DictEng -lin melody_N = mkN "melody" "melodies"; -- from DictEng -lin melon_N = mkN "melon" "melons"; -- from DictEng -lin melosa_N = mkN "melosa" ; -lin melphalan_N = mkN "melphalan" ; -lin melt_V = mkV "melt" "melts" "melted" "melted" "melting"; -- from DictEng -lin melt_V2 = mkV2 (mkV "melt" "melts" "melted" "melted" "melting"); -- from DictEng -lin meltable_A = mkA "meltable" ; -lin meltdown_N = mkN "meltdown" ; -lin melted_A = mkA "melted" ; -lin melter_N = mkN "melter" ; -lin melting_A = compoundA (mkA "melting"); -- from DictEng -lin melting_point_N = mkN "melting - point" "melting - points"; -- from DictEng -lin melting_pot_N = mkN "melting - pot" "melting - pots"; -- from DictEng -lin meltwater_N = mkN "meltwater" ; -lin mem_N = mkN "mem" ; -lin member_N = mkN "member" "members"; -- from DictEng -lin membered_A = mkA "membered" ; -lin memberless_A = mkA "memberless" ; -lin membership_N = mkN "membership" ; -- from DictEng -lin membrane_N = mkN "membrane" "membranes"; -- from DictEng -lin membranous_A = compoundA (mkA "membranous"); -- from DictEng -lin meme_N = mkN "meme" ; -lin memento_N = mkN "memento" "mementos"; -- from DictEng -lin memo_N = mkN "memo" "memos"; -- from DictEng -lin memoir_N = mkN "memoir" "memoirs"; -- from DictEng -lin memorabilia_N = mkN "memorabilia" ; -lin memorability_N = mkN "memorability" ; -lin memorable_A = compoundA (mkA "memorable"); -- from DictEng -lin memorably_Adv = mkAdv "memorably" ; -lin memorandum_N = mkN "memorandum" "memorandums"; -- from DictEng -lin memorial_N = mkN "memorial" "memorials"; -- from DictEng -lin memorialize_V2 = mkV2 (mkV "memorialize" "memorializes" "memorialized" "memorialized" "memorializing"); -- from DictEng -lin memorization_N = mkN "memorization" ; -lin memorize_V2 = mkV2 (mkV "memorize" "memorizes" "memorized" "memorized" "memorizing"); -- from DictEng -lin memorizer_N = mkN "memorizer" ; -lin memory_N = mkN "memory" "memories"; -- from DictEng -lin memsahib_N = mkN "memsahib" "memsahibs"; -- from DictEng -lin menace_N = mkN "menace" "menaces"; -- from DictEng -lin menace_V2 = mkV2 (mkV "menace" "menaces" "menaced" "menaced" "menacing"); -- from DictEng -lin menacingly_Adv = mkAdv "menacingly"; -- from DictEng -lin menage_N = mkN "ménage" "ménages"; -- from DictEng -lin menagerie_N = mkN "menagerie" "menageries"; -- from DictEng -lin menarche_N = mkN "menarche" ; -lin mend_N = mkN "mend" "mends"; -- from DictEng -lin mend_V = mkV "mend" "mends" "mended" "mended" "mending"; -- from DictEng -lin mend_V2 = mkV2 (mkV "mend" "mends" "mended" "mended" "mending"); -- from DictEng -lin mendacious_A = compoundA (mkA "mendacious"); -- from DictEng -lin mendaciously_Adv = mkAdv "mendaciously" ; -lin mendacity_N = mkN "mendacity" "mendacities"; -- from DictEng -lin mendelevium_N = mkN "mendelevium" ; -lin mendelian_A = compoundA (mkA "mendelian"); -- from DictEng -lin mender_N = mkN "mender" "menders"; -- from DictEng -lin mendicant_A = compoundA (mkA "mendicant"); -- from DictEng -lin mendicant_N = mkN "mendicant" "mendicants"; -- from DictEng -lin mending_N = mkN "mending" ; -- from DictEng -lin menhaden_N = mkN "menhaden" ; -lin menhir_N = mkN "menhir" ; -lin menial_A = compoundA (mkA "menial"); -- from DictEng -lin menial_N = mkN "menial" "menials"; -- from DictEng -lin menially_Adv = mkAdv "menially" ; -lin meningeal_A = mkA "meningeal" ; -lin meningioma_N = mkN "meningioma" ; -lin meningism_N = mkN "meningism" ; -lin meningitis_N = mkN "meningitis" ; -- from DictEng -lin meningocele_N = mkN "meningocele" ; -lin meningoencephalitis_N = mkN "meningoencephalitis" ; -lin meninx_N = mkN "meninx" ; -lin meniscectomy_N = mkN "meniscectomy" ; -lin meniscus_N = mkN "meniscus" ; -lin menopausal_A = mkA "menopausal" ; -lin menopause_N = mkN "menopause" "menopauses"; -- from DictEng -lin menorah_N = mkN "menorah" ; -lin menorrhagia_N = mkN "menorrhagia" ; -lin menorrhea_N = mkN "menorrhea" ; -lin mensal_A = mkA "mensal" ; -lin mensch_N = mkN "mensch" ; -lin menstrual_A = compoundA (mkA "menstrual"); -- from DictEng -lin menstruate_V = mkV "menstruate" "menstruates" "menstruated" "menstruated" "menstruating"; -- from DictEng -lin menstruation_N = mkN "menstruation" ; -- from DictEng -lin menstruum_N = mkN "menstruum" ; -lin mensurable_A = compoundA (mkA "mensurable"); -- from DictEng -lin mensural_A = mkA "mensural" ; -lin mensuration_N = mkN "mensuration" "mensurations"; -- from DictEng -lin mental_A = compoundA (mkA "mental"); -- from DictEng -lin mentalism_N = mkN "mentalism" ; -lin mentality_N = mkN "mentality" "mentalities"; -- from DictEng -lin mentally_Adv = mkAdv "mentally" ; -lin mentally_ill_A = compoundA (mkA "mentally ill") ; -lin menthol_N = mkN "menthol" ; -- from DictEng -lin mentholated_A = compoundA (mkA "mentholated"); -- from DictEng -lin mention_N = mkN "mention" "mentions"; -- from DictEng -lin mention_V = mkV "mention" "mentions" "mentioned" "mentioned" "mentioning"; -- from DictEng -lin mention_V2 = mkV2 (mkV "mention" "mentions" "mentioned" "mentioned" "mentioning"); -- from DictEng -lin mention_VS = mkVS (mkV "mention" "mentions" "mentioned" "mentioned" "mentioning"); -- from DictEng -lin mentioned_A = compoundA (mkA "mentioned"); -- from DictEng -lin mentioner_N = mkN "mentioner" ; -lin mentor_N = mkN "mentor" "mentors"; -- from DictEng -lin mentum_N = mkN "mentum" ; -lin menu_N = mkN "menu" "menus"; -- from DictEng -lin meow_N = mkN "meow" ; -lin meow_V = mkV "meow" ; -lin meperidine_N = mkN "meperidine" ; -lin mephenytoin_N = mkN "mephenytoin" ; -lin mephistophelian_A = compoundA (mkA "mephistophelian"); -- from DictEng -lin mephitis_N = mkN "mephitis" ; -lin mephobarbital_N = mkN "mephobarbital" ; -lin meprobamate_N = mkN "meprobamate" ; -lin meralgia_N = mkN "meralgia" ; -lin merbromine_N = mkN "merbromine" ; -lin mercantile_A = compoundA (mkA "mercantile"); -- from DictEng -lin mercantilism_N = mkN "mercantilism" ; -lin mercaptopurine_N = mkN "mercaptopurine" ; -lin mercenary_A = compoundA (mkA "mercenary"); -- from DictEng -lin mercenary_N = mkN "mercenary" "mercenaries"; -- from DictEng -lin mercer_N = mkN "mercer" "mercers"; -- from DictEng -lin mercerize_V2 = mkV2 (mkV "mercerize" "mercerizes" "mercerized" "mercerized" "mercerizing"); -- from DictEng -lin mercerized_A = mkA "mercerized" ; -lin merchandise_N = mkN "merchandise" ; -- from DictEng -lin merchant_N = mkN "merchant" "merchants"; -- from DictEng -lin merchantability_N = mkN "merchantability" ; -lin merchantman_N = mkN "merchantman" "merchantmen" {- FIXME: guessed plural form -}; -- from DictEng -lin merciful_A = compoundA (mkA "merciful"); -- from DictEng -lin mercifully_Adv = mkAdv "mercifully" ; -lin mercifulness_N = mkN "mercifulness" ; -lin merciless_A = compoundA (mkA "merciless"); -- from DictEng -lin mercilessly_Adv = mkAdv "mercilessly" ; -lin mercilessness_N = mkN "mercilessness" ; -lin mercurial_A = compoundA (mkA "mercurial"); -- from DictEng -lin mercuric_A = mkA "mercuric" ; -lin mercury_N = mkN "mercury" ; -- from DictEng -lin mercury_contaminated_A = compoundA (mkA "mercury contaminated") ; -lin mercy_N = mkN "mercy" "mercies"; -- from DictEng -lin mere_A = compoundA (mkA "mere"); -- from DictEng -lin mere_N = mkN "mere" "meres"; -- from DictEng -lin merely_Adv = mkAdv "merely" ; -lin merestone_N = mkN "merestone" ; -lin meretricious_A = compoundA (mkA "meretricious"); -- from DictEng -lin meretriciously_Adv = mkAdv "meretriciously" ; -lin meretriciousness_N = mkN "meretriciousness" ; -- from DictEng -lin merganser_N = mkN "merganser" ; -lin merge_V = mkV "merge" "merges" "merged" "merged" "merging"; -- from DictEng -lin merge_V2 = mkV2 (mkV "merge" "merges" "merged" "merged" "merging"); -- from DictEng -lin merger_N = mkN "merger" "mergers"; -- from DictEng -lin merging_N = mkN "merging" ; -lin mericarp_N = mkN "mericarp" ; -lin meridian_A = mkA "meridian" ; -lin meridian_N = mkN "meridian" "meridians"; -- from DictEng -lin meridional_A = compoundA (mkA "meridional"); -- from DictEng -lin meringue_N = mkN "meringue" "meringues"; -- from DictEng -lin merino_N = mkN "merino" ; -- from DictEng -lin merino_sheep_N = mkN "merino - sheep" "merino - sheep"; -- from DictEng -lin meristem_N = mkN "meristem" ; -lin merit_N = mkN "merit" "merits"; -- from DictEng -lin merit_V2 = mkV2 (mkV "merit" "merits" "merited" "merited" "meriting"); -- from DictEng -lin merited_A = mkA "merited" ; -lin meritocracy_N = mkN "meritocracy" "meritocracies"; -- from DictEng -lin meritocratic_A = compoundA (mkA "meritocratic"); -- from DictEng -lin meritorious_A = compoundA (mkA "meritorious"); -- from DictEng -lin meritoriously_Adv = mkAdv "meritoriously" ; -lin merlon_N = mkN "merlon" ; -lin mermaid_N = mkN "mermaid" "mermaids"; -- from DictEng -lin merman_N = mkN "merman" "mermen" {- FIXME: guessed plural form -}; -- from DictEng -lin meromelia_N = mkN "meromelia" ; -lin meronym_N = mkN "meronym" ; -lin meronymy_N = mkN "meronymy" ; -lin merozoite_N = mkN "merozoite" ; -lin merrily_Adv = mkAdv "merrily"; -- from DictEng -lin merriment_N = mkN "merriment" ; -- from DictEng -lin merry_A = mkA "merry" "merrier"; -- from DictEng -lin merry_go_round_N = mkN "merry - go - round" "merry - go - rounds"; -- from DictEng -lin merry_go_round_N = mkN "merry - go - round" "merry - go - rounds"; -- from DictEng -lin merrymaker_N = mkN "merrymaker" "merrymakers"; -- from DictEng -lin merrymaking_N = mkN "merrymaking" ; -- from DictEng -lin mesa_N = mkN "mesa" ; -lin mesalliance_N = mkN "mésalliance" "mésalliances"; -- from DictEng -lin mescal_N = mkN "mescal" "mescals"; -- from DictEng -lin mescaline_N = mkN "mescaline" ; -- from DictEng -lin meseems_Adv = mkAdv "meseems"; -- from DictEng -lin mesenchyme_N = mkN "mesenchyme" ; -lin mesenteric_A = mkA "mesenteric" ; -lin mesentery_N = mkN "mesentery" ; -lin mesh_N = mkN "mesh" "meshes"; -- from DictEng -lin mesh_V = mkV "mesh" "meshes" "meshed" "meshed" "meshing"; -- from DictEng -lin mesh_V2 = mkV2 (mkV "mesh" "meshes" "meshed" "meshed" "meshing"); -- from DictEng -lin meshed_A = mkA "meshed" ; -lin meshugaas_N = mkN "meshugaas" ; -lin meshugge_A = mkA "meshugge" ; -lin meshuggeneh_N = mkN "meshuggeneh" ; -lin mesial_A = mkA "mesial" ; -lin mesic_A = mkA "mesic" ; -lin mesmeric_A = compoundA (mkA "mesmeric"); -- from DictEng -lin mesmerism_N = mkN "mesmerism" ; -- from DictEng -lin mesmerist_N = mkN "mesmerist" "mesmerists"; -- from DictEng -lin mesmerize_V2 = mkV2 (mkV "mesmerize" "mesmerizes" "mesmerized" "mesmerized" "mesmerizing"); -- from DictEng -lin mesoblastic_A = mkA "mesoblastic" ; -lin mesocarp_N = mkN "mesocarp" ; -lin mesocolon_N = mkN "mesocolon" ; -lin mesoderm_N = mkN "mesoderm" ; -lin mesohippus_N = mkN "mesohippus" ; -lin mesolithic_A = mkA "mesolithic" ; -lin mesomorph_N = mkN "mesomorph" ; -lin mesomorphic_A = mkA "mesomorphic" ; -lin meson_N = mkN "meson" "mesons"; -- from DictEng -lin mesonic_A = mkA "mesonic" ; -lin mesophyte_N = mkN "mesophyte" ; -lin mesophytic_A = mkA "mesophytic" ; -lin mesosphere_N = mkN "mesosphere" ; -lin mesothelioma_N = mkN "mesothelioma" ; -lin mesothelium_N = mkN "mesothelium" ; -lin mesquite_N = mkN "mesquite" ; -lin mess_N = mkN "mess" "messes"; -- from DictEng -lin mess_V = mkV "mess" "messes" "messed" "messed" "messing"; -- from DictEng -lin mess_V2 = mkV2 (mkV "mess" "messes" "messed" "messed" "messing"); -- from DictEng -lin mess_jacket_N = mkN "mess - jacket" "mess - jackets"; -- from DictEng -lin mess_up_N = mkN "mess - up" "mess - ups"; -- from DictEng -lin message_N = mkN "message" "messages"; -- from DictEng -lin messaging_N = mkN "messaging" ; -lin messenger_N = mkN "messenger" "messengers"; -- from DictEng -lin messenger_rna_PN = mkPN "messenger RNA" ; -lin messiah_N = mkN "messiah" "messiahs"; -- from DictEng -lin messiahship_N = mkN "messiahship" ; -lin messianic_A = compoundA (mkA "messianic"); -- from DictEng -lin messily_Adv = mkAdv "messily"; -- from DictEng -lin messiness_N = mkN "messiness" ; -- from DictEng -lin messmate_N = mkN "messmate" "messmates"; -- from DictEng -lin messuage_N = mkN "messuage" "messuages"; -- from DictEng -lin messy_A = mkA "messy" "messier"; -- from DictEng -lin mestiza_N = mkN "mestiza" ; -lin mestizo_N = mkN "mestizo" ; -lin mestranol_N = mkN "mestranol" ; -lin metabolic_A = compoundA (mkA "metabolic"); -- from DictEng -lin metabolically_Adv = mkAdv "metabolically" ; -lin metabolism_N = mkN "metabolism" ; -- from DictEng -lin metabolite_N = mkN "metabolite" ; -lin metabolize_V2 = mkV2 (mkV "metabolize"); -- from DictEng -lin metacarpal_A = compoundA (mkA "metacarpal"); -- from DictEng -lin metacarpal_N = mkN "metacarpal" "metacarpals"; -- from DictEng -lin metacarpus_N = mkN "metacarpus" ; -lin metacenter_N = mkN "metacenter" ; -lin metacentric_A = mkA "metacentric" ; -lin metadata_N = mkN "metadata" ; -lin metagenesis_N = mkN "metagenesis" ; -lin metagrobolized_A = mkA "metagrobolized" ; -lin metaknowledge_N = mkN "metaknowledge" ; -lin metal_N = mkN "metal" "metals"; -- from DictEng -lin metal_V2 = mkV2 (mkV "metal" "metals" "metalled" "metalled" "metalling"); -- from DictEng -lin metal_colored_A = compoundA (mkA "metal colored") ; -lin metal_cutting_A = compoundA (mkA "metal cutting") ; -lin metalanguage_N = mkN "metalanguage" ; -lin metalepsis_N = mkN "metalepsis" ; -lin metalhead_N = mkN "metalhead" ; -lin metallic_A = compoundA (mkA "metallic"); -- from DictEng -lin metallic_N = mkN "metallic" ; -lin metallike_A = mkA "metallike" ; -lin metalloid_A = mkA "metalloid" ; -lin metallurgical_A = compoundA (mkA "metallurgical"); -- from DictEng -lin metallurgist_N = mkN "metallurgist" "metallurgists"; -- from DictEng -lin metallurgy_N = mkN "metallurgy" ; -- from DictEng -lin metalware_N = mkN "metalware" ; -lin metalwork_N = mkN "metalwork" "metalworks"; -- from DictEng -lin metalworker_N = mkN "metalworker" "metalworkers"; -- from DictEng -lin metalworking_N = mkN "metalworking" ; -lin metamathematics_N = mkN "metamathematics" ; -lin metamere_N = mkN "metamere" ; -lin metameric_A = mkA "metameric" ; -lin metamorphic_A = mkA "metamorphic" ; -lin metamorphism_N = mkN "metamorphism" ; -lin metamorphopsia_N = mkN "metamorphopsia" ; -lin metamorphose_V = mkV "metamorphose" "metamorphoses" "metamorphosed" "metamorphosed" "metamorphosing"; -- from DictEng -lin metamorphose_V2 = mkV2 (mkV "metamorphose" "metamorphoses" "metamorphosed" "metamorphosed" "metamorphosing"); -- from DictEng -lin metamorphosis_N = mkN "metamorphosis" "metamorphoses" {- FIXME: guessed plural form -}; -- from DictEng -lin metamorphous_A = mkA "metamorphous" ; -lin metaphase_N = mkN "metaphase" ; -lin metaphor_N = mkN "metaphor" "metaphors"; -- from DictEng -lin metaphorical_A = compoundA (mkA "metaphorical"); -- from DictEng -lin metaphorically_Adv = mkAdv "metaphorically" ; -lin metaphysical_A = compoundA (mkA "metaphysical"); -- from DictEng -lin metaphysically_Adv = mkAdv "metaphysically" ; -lin metaphysics_N = mkN "metaphysics" "metaphysics"; -- from DictEng -lin metaphysis_N = mkN "metaphysis" ; -lin metaproterenol_N = mkN "metaproterenol" ; -lin metarule_N = mkN "metarule" ; -lin metasequoia_N = mkN "metasequoia" ; -lin metastability_N = mkN "metastability" ; -lin metastable_A = mkA "metastable" ; -lin metastasis_N = mkN "metastasis" ; -lin metastatic_A = mkA "metastatic" ; -lin metatarsal_A = compoundA (mkA "metatarsal"); -- from DictEng -lin metatarsal_N = mkN "metatarsal" "metatarsals"; -- from DictEng -lin metatarsus_N = mkN "metatarsus" ; -lin metatherian_N = mkN "metatherian" ; -lin metathesis_N = mkN "metathesis" ; -lin metazoan_N = mkN "metazoan" ; -lin mete_V2 = mkV2 (mkV "mete" "metes" "meted" "meted" "meting"); -- from DictEng -lin metempsychosis_N = mkN "metempsychosis" ; -lin metencephalon_N = mkN "metencephalon" ; -lin meteor_N = mkN "meteor" "meteors"; -- from DictEng -lin meteoric_A = compoundA (mkA "meteoric"); -- from DictEng -lin meteorite_N = mkN "meteorite" "meteorites"; -- from DictEng -lin meteoritic_A = mkA "meteoritic" ; -lin meteoroid_N = mkN "meteoroid" ; -lin meteorologic_A = mkA "meteorologic" ; -lin meteorological_A = compoundA (mkA "meteorological"); -- from DictEng -lin meteorologically_Adv = mkAdv "meteorologically" ; -lin meteorologist_N = mkN "meteorologist" "meteorologists"; -- from DictEng -lin meteorology_N = mkN "meteorology" ; -- from DictEng -lin meteortropism_N = mkN "meteortropism" ; -lin meter_N = mkN "meter" "meters"; -- from DictEng -lin meterstick_N = mkN "meterstick" ; -lin metformin_N = mkN "metformin" ; -lin methacholine_N = mkN "methacholine" ; -lin methadone_N = mkN "methadone" ; -lin methamphetamine_N = mkN "methamphetamine" ; -lin methane_N = mkN "methane" ; -- from DictEng -lin methanogen_N = mkN "methanogen" ; -lin methanol_N = mkN "methanol" ; -lin methapyrilene_N = mkN "methapyrilene" ; -lin methaqualone_N = mkN "methaqualone" ; -lin metharbital_N = mkN "metharbital" ; -lin metheglin_N = mkN "metheglin" ; -lin methenamine_N = mkN "methenamine" ; -lin methicillin_N = mkN "methicillin" ; -lin methinks_Adv = mkAdv "methinks"; -- from DictEng -lin methionine_N = mkN "methionine" ; -lin methocarbamol_N = mkN "methocarbamol" ; -lin method_N = mkN "method" "methods"; -- from DictEng -lin methodical_A = compoundA (mkA "methodical"); -- from DictEng -lin methodically_Adv = mkAdv "methodically" ; -lin methodism_N = mkN "methodism" ; -- from DictEng -lin methodist_A = compoundA (mkA "methodist"); -- from DictEng -lin methodist_N = mkN "methodist" "methodists"; -- from DictEng -lin methodological_A = compoundA (mkA "methodological"); -- from DictEng -lin methodologically_Adv = mkAdv "methodologically" ; -lin methodology_N = mkN "methodology" "methodologies"; -- from DictEng -lin methotrexate_N = mkN "methotrexate" ; -lin methought_Adv = mkAdv "methought"; -- from DictEng -lin methyl_N = mkN "methyl" "methyls"; -- from DictEng -lin methylated_A = compoundA (mkA "methylated"); -- from DictEng -lin methyldopa_N = mkN "methyldopa" ; -lin methylenedioxymethamphetamine_N = mkN "methylenedioxymethamphetamine" ; -lin methylphenidate_N = mkN "methylphenidate" ; -lin methyltestosterone_N = mkN "methyltestosterone" ; -lin metic_N = mkN "metic" ; -lin metical_N = mkN "metical" ; -lin meticulous_A = compoundA (mkA "meticulous"); -- from DictEng -lin meticulously_Adv = mkAdv "meticulously" ; -lin meticulousness_N = mkN "meticulousness" ; -- from DictEng -lin metier_N = mkN "métier" "métiers"; -- from DictEng -lin metonym_N = mkN "metonym" ; -lin metonymic_A = mkA "metonymic" ; -lin metonymically_Adv = mkAdv "metonymically" ; -lin metonymy_N = mkN "metonymy" ; -lin metopion_N = mkN "metopion" ; -lin metoprolol_N = mkN "metoprolol" ; -lin metralgia_N = mkN "metralgia" ; -lin metre_N = mkN "metre" "metres"; -- from DictEng -lin metric_A = compoundA (mkA "metric"); -- from DictEng -lin metrical_A = compoundA (mkA "metrical"); -- from DictEng -lin metrically_Adv = mkAdv "metrically" ; -lin metrication_N = mkN "metrication" "metrications"; -- from DictEng -lin metricize_V2 = mkV2 (mkV "metricize" "metricizes" "metricized" "metricized" "metricizing"); -- from DictEng -lin metrification_N = mkN "metrification" ; -lin metritis_N = mkN "metritis" ; -lin metro_N = mkN "metro" "metros"; -- from DictEng -lin metrological_A = mkA "metrological" ; -lin metrology_N = mkN "metrology" ; -lin metronidazole_N = mkN "metronidazole" ; -lin metronome_N = mkN "metronome" "metronomes"; -- from DictEng -lin metropolis_N = mkN "metropolis" "metropolises"; -- from DictEng -lin metropolitan_A = compoundA (mkA "metropolitan"); -- from DictEng -lin metropolitan_N = mkN "metropolitan" "metropolitans"; -- from DictEng -lin metroptosis_N = mkN "metroptosis" ; -lin metrorrhagia_N = mkN "metrorrhagia" ; -lin mettle_N = mkN "mettle" ; -- from DictEng -lin mettlesome_A = compoundA (mkA "mettlesome"); -- from DictEng -lin mettlesomeness_N = mkN "mettlesomeness" ; -lin mew_N = mkN "mew" "mews"; -- from DictEng -lin mew_V = mkV "mew" "mews" "mewed" "mewed" "mewing"; -- from DictEng -lin mews_N = mkN "mews" "mews"; -- from DictEng -lin mexican_A = compoundA (mkA "mexican"); -- from DictEng -lin mexican_N = mkN "mexican" "mexicans"; -- from DictEng -lin mexiletine_N = mkN "mexiletine" ; -lin mezereon_N = mkN "mezereon" ; -lin mezereum_N = mkN "mezereum" ; -lin mezuzah_N = mkN "mezuzah" ; -lin mezzanine_A = compoundA (mkA "mezzanine"); -- from DictEng -lin mezzanine_N = mkN "mezzanine" "mezzanines"; -- from DictEng -lin mezzo_Adv = mkAdv "mezzo"; -- from DictEng -lin mezzo_relievo_N = mkN "mezzo relievo" ; -lin mezzo_soprano_N = mkN "mezzo - soprano" "mezzo - sopranos"; -- from DictEng -lin mezzo_soprano_N = mkN "mezzo - soprano" "mezzo - sopranos"; -- from DictEng -lin mezzotint_N = mkN "mezzotint" "mezzotints"; -- from DictEng -lin mg_N = mkN "mg" "mg"; -- from DictEng -lin mho_N = mkN "mho" ; -lin mi_N = mkN "mi" "IRREG"; -- from DictEng -lin miaou_N = mkN "miaou" "miaous"; -- from DictEng -lin miaou_V = mkV "miaou" "miaous" "miaoued" "miaoued" "miaouing"; -- from DictEng -lin miaow_N = mkN "miaow" "miaows"; -- from DictEng -lin miaow_V = mkV "miaow" "miaows" "miaowed" "miaowed" "miaowing"; -- from DictEng -lin miasma_N = mkN "miasma" "miasmas"; -- from DictEng -lin miasmal_A = mkA "miasmal" ; -lin miasmic_A = mkA "miasmic" ; -lin mica_N = mkN "mica" ; -- from DictEng -lin micaceous_A = mkA "micaceous" ; -lin micelle_N = mkN "micelle" ; -lin michaelmas_N = mkN "michaelmas" "michaelmases"; -- from DictEng -lin mickey_N = mkN "mickey" "IRREG"; -- from DictEng -lin mickle_N = mkN "mickle" "IRREG"; -- from DictEng -lin miconazole_N = mkN "miconazole" ; -lin micro_A = mkA "micro" ; -lin micro_organism_N = mkN "micro - organism" "micro - organisms"; -- from DictEng -lin microbalance_N = mkN "microbalance" ; -lin microbe_N = mkN "microbe" "microbes"; -- from DictEng -lin microbial_A = mkA "microbial" ; -lin microbiologist_N = mkN "microbiologist" ; -lin microbiology_N = mkN "microbiology" ; -- from DictEng -lin microbrachia_N = mkN "microbrachia" ; -lin microbrewery_N = mkN "microbrewery" ; -lin microcephalic_A = mkA "microcephalic" ; -lin microcephaly_N = mkN "microcephaly" ; -lin microcosm_N = mkN "microcosm" "microcosms"; -- from DictEng -lin microcosmic_A = mkA "microcosmic" ; -lin microcrystalline_A = mkA "microcrystalline" ; -lin microcyte_N = mkN "microcyte" ; -lin microcytosis_N = mkN "microcytosis" ; -lin microdot_N = mkN "microdot" "microdots"; -- from DictEng -lin microeconomic_A = mkA "microeconomic" ; -lin microeconomics_N = mkN "microeconomics" ; -lin microeconomist_N = mkN "microeconomist" ; -lin microelectronic_A = mkA "microelectronic" ; -lin microelectronics_N = mkN "microelectronics" "microelectronics"; -- from DictEng -lin microevolution_N = mkN "microevolution" ; -lin microfarad_N = mkN "microfarad" ; -lin microfiche_N = mkN "microfiche" "microfiches"; -- from DictEng -lin microfilm_N = mkN "microfilm" "microfilms"; -- from DictEng -lin microfilm_V2 = mkV2 (mkV "microfilm" "microfilms" "microfilmed" "microfilmed" "microfilming"); -- from DictEng -lin microflora_N = mkN "microflora" ; -lin microfossil_N = mkN "microfossil" ; -lin microgametophyte_N = mkN "microgametophyte" ; -lin microgauss_N = mkN "microgauss" ; -lin microglia_N = mkN "microglia" ; -lin microgliacyte_N = mkN "microgliacyte" ; -lin microgram_N = mkN "microgram" ; -lin micrometeoric_A = mkA "micrometeoric" ; -lin micrometeorite_N = mkN "micrometeorite" ; -lin micrometeoritic_A = mkA "micrometeoritic" ; -lin micrometer_N = mkN "micrometer" "micrometers"; -- from DictEng -lin micrometry_N = mkN "micrometry" ; -lin micron_N = mkN "micron" "microns"; -- from DictEng -lin micronutrient_N = mkN "micronutrient" ; -lin microorganism_N = mkN "microorganism" ; -lin micropaleontology_N = mkN "micropaleontology" ; -lin micropenis_N = mkN "micropenis" ; -lin microphage_N = mkN "microphage" ; -lin microphone_N = mkN "microphone" "microphones"; -- from DictEng -lin microphoning_N = mkN "microphoning" ; -lin microphotometer_N = mkN "microphotometer" ; -lin microprocessor_N = mkN "microprocessor" ; -lin micropylar_A = mkA "micropylar" ; -lin micropyle_N = mkN "micropyle" ; -lin microradian_N = mkN "microradian" ; -lin microscope_N = mkN "microscope" "microscopes"; -- from DictEng -lin microscopic_A = compoundA (mkA "microscopic"); -- from DictEng -lin microscopical_A = compoundA (mkA "microscopical"); -- from DictEng -lin microscopically_Adv = mkAdv "microscopically" ; -lin microscopist_N = mkN "microscopist" ; -lin microscopy_N = mkN "microscopy" ; -- from DictEng -lin microsecond_N = mkN "microsecond" ; -lin microsomal_A = mkA "microsomal" ; -lin microsome_N = mkN "microsome" ; -lin microsporangium_N = mkN "microsporangium" ; -lin microspore_N = mkN "microspore" ; -lin microsporidian_N = mkN "microsporidian" ; -lin microsporophyll_N = mkN "microsporophyll" ; -lin microsurgery_N = mkN "microsurgery" ; -lin microtome_N = mkN "microtome" ; -lin microtubule_N = mkN "microtubule" ; -lin microvolt_N = mkN "microvolt" ; -lin microwave_N = mkN "microwave" "microwaves"; -- from DictEng -lin micturition_N = mkN "micturition" ; -lin mid_A = compoundA (mkA "mid"); -- from DictEng -lin mid_april_N = mkN "mid April" ; -lin mid_august_N = mkN "mid August" ; -lin mid_december_N = mkN "mid December" ; -lin mid_february_N = mkN "mid February" ; -lin mid_january_N = mkN "mid January" ; -lin mid_july_N = mkN "mid July" ; -lin mid_june_N = mkN "mid June" ; -lin mid_march_N = mkN "mid March" ; -lin mid_may_N = mkN "mid May" ; -lin mid_november_N = mkN "mid November" ; -lin mid_october_N = mkN "mid October" ; -lin mid_september_N = mkN "mid September" ; -lin mid_calf_N = mkN "mid calf" ; -lin mid_off_N = mkN "mid - off" "mid - offs"; -- from DictEng -lin mid_on_N = mkN "mid - on" "mid - ons"; -- from DictEng -lin mid_water_N = mkN "mid water" ; -lin mid_off_N = mkN "mid - off" "mid - offs"; -- from DictEng -lin mid_on_N = mkN "mid - on" "mid - ons"; -- from DictEng -lin midafternoon_N = mkN "midafternoon" ; -lin midair_N = mkN "midair" ; -lin midazolam_N = mkN "midazolam" ; -lin midbrain_N = mkN "midbrain" ; -lin midday_N = mkN "midday" ; -- from DictEng -lin midden_N = mkN "midden" "middens"; -- from DictEng -lin middle_A = mkA "middle" ; -lin middle_N = mkN "middle" "middles"; -- from DictEng -lin middle_aged_A = compoundA (mkA "middle - aged"); -- from DictEng -lin middle_class_A = compoundA (mkA "middle - class"); -- from DictEng -lin middle_level_A = compoundA (mkA "middle level") ; -lin middle_of_the_road_A = compoundA (mkA "middle - of - the - road"); -- from DictEng -lin middle_atlantic_A = compoundA (mkA "middle Atlantic") ; -lin middle_c_PN = mkPN "middle C" ; -lin middle_aged_A = compoundA (mkA "middle - aged"); -- from DictEng -lin middle_class_A = compoundA (mkA "middle - class"); -- from DictEng -lin middle_distance_A = compoundA (mkA "middle - distance"); -- from DictEng -lin middle_of_the_road_A = compoundA (mkA "middle - of - the - road"); -- from DictEng -lin middlebrow_N = mkN "middlebrow" ; -lin middleman_N = mkN "middleman" "middlemen"; -- from DictEng -lin middlemost_A = mkA "middlemost" ; -lin middleweight_A = compoundA (mkA "middleweight"); -- from DictEng -lin middleweight_N = mkN "middleweight" "middleweights"; -- from DictEng -lin middling_A = compoundA (mkA "middling"); -- from DictEng -lin middling_Adv = mkAdv "middling"; -- from DictEng -lin middling_N = mkN "middling" "middlings"; -- from DictEng -lin middy_N = mkN "middy" "middies"; -- from DictEng -lin midfield_N = mkN "midfield" "IRREG"; -- from DictEng -lin midge_N = mkN "midge" "midges"; -- from DictEng -lin midget_N = mkN "midget" "midgets"; -- from DictEng -lin midgrass_N = mkN "midgrass" ; -lin midi_A = mkA "midi" ; -lin midinette_N = mkN "midinette" "midinettes"; -- from DictEng -lin midiron_N = mkN "midiron" ; -lin midland_N = mkN "midland" "midlands"; -- from DictEng -lin midmost_A = compoundA (mkA "midmost"); -- from DictEng -lin midmost_Adv = mkAdv "midmost"; -- from DictEng -lin midnight_N = mkN "midnight" ; -- from DictEng -lin midplane_N = mkN "midplane" ; -lin midrib_N = mkN "midrib" ; -lin midriff_N = mkN "midriff" "midriffs"; -- from DictEng -lin midshipman_N = mkN "midshipman" "midshipmen" {- FIXME: guessed plural form -}; -- from DictEng -lin midships_Adv = mkAdv "midships"; -- from DictEng -lin midst_N = mkN "midst" "IRREG"; -- from DictEng -lin midstream_N = mkN "midstream" ; -- from DictEng -lin midsummer_N = mkN "midsummer" ; -- from DictEng -lin midterm_N = mkN "midterm" ; -lin midway_A = compoundA (mkA "midway"); -- from DictEng -lin midway_Adv = mkAdv "midway"; -- from DictEng -lin midway_N = mkN "midway" ; -lin midweek_A = compoundA (mkA "midweek"); -- from DictEng -lin midweek_Adv = mkAdv "midweek"; -- from DictEng -lin midweek_N = mkN "midweek" ; -lin midweekly_A = mkA "midweekly" ; -lin midwestern_A = compoundA (mkA "midwestern"); -- from DictEng -lin midwife_N = mkN "midwife" "midwives" {- FIXME: guessed plural form -}; -- from DictEng -lin midwifery_N = mkN "midwifery" ; -- from DictEng -lin midwinter_N = mkN "midwinter" ; -lin mien_N = mkN "mien" "miens"; -- from DictEng -lin miff_V2 = mkV2 (mkV "miff"); -- from DictEng -lin might_N = mkN "might" ; -- from DictEng -lin might_have_been_N = mkN "might - have - been" "might - have - beens"; -- from DictEng -lin might_have_been_N = mkN "might - have - been" "might - have - beens"; -- from DictEng -lin mightily_Adv = mkAdv "mightily"; -- from DictEng -lin mighty_A = mkA "mighty" "mightier"; -- from DictEng -lin mighty_Adv = mkAdv "mighty"; -- from DictEng -lin mignonette_N = mkN "mignonette" ; -- from DictEng -lin migraine_N = mkN "migraine" "migraines"; -- from DictEng -lin migrant_A = mkA "migrant" ; -lin migrant_N = mkN "migrant" "migrants"; -- from DictEng -lin migrate_V = mkV "migrate" "migrates" "migrated" "migrated" "migrating"; -- from DictEng -lin migration_N = mkN "migration" "migrations"; -- from DictEng -lin migrational_A = mkA "migrational" ; -lin migrator_N = mkN "migrator" ; -lin migratory_A = compoundA (mkA "migratory"); -- from DictEng -lin mihrab_N = mkN "mihrab" ; -lin mikado_N = mkN "mikado" "mikados"; -- from DictEng -lin mike_N = mkN "mike" "mikes"; -- from DictEng -lin mikvah_N = mkN "mikvah" ; -lin mil_N = mkN "mil" ; -lin milady_N = mkN "milady" "miladies"; -- from DictEng -lin milage_N = mkN "milage" "milages"; -- from DictEng -lin milch_A = compoundA (mkA "milch"); -- from DictEng -lin mild_A = mkA "mild" "milder"; -- from DictEng -lin mild_mannered_A = compoundA (mkA "mild mannered") ; -lin mild_tasting_A = compoundA (mkA "mild tasting") ; -lin mildew_N = mkN "mildew" ; -- from DictEng -lin mildew_V = mkV "mildew" "mildews" "mildewed" "mildewed" "mildewing"; -- from DictEng -lin mildew_V2 = mkV2 (mkV "mildew" "mildews" "mildewed" "mildewed" "mildewing"); -- from DictEng -lin mildly_Adv = mkAdv "mildly" ; -lin mildness_N = mkN "mildness" ; -- from DictEng -lin mile_N = mkN "mile" "miles"; -- from DictEng -lin mileage_N = mkN "mileage" "mileages"; -- from DictEng -lin mileometer_N = mkN "mileometer" "mileometers"; -- from DictEng -lin miler_N = mkN "miler" "milers"; -- from DictEng -lin milestone_N = mkN "milestone" "milestones"; -- from DictEng -lin milieu_N = mkN "milieu" "milieus"; -- from DictEng -lin militainment_N = mkN "militainment" ; -lin militancy_N = mkN "militancy" ; -- from DictEng -lin militant_A = compoundA (mkA "militant"); -- from DictEng -lin militant_N = mkN "militant" "militants"; -- from DictEng -lin militarily_Adv = mkAdv "militarily" ; -lin militarism_N = mkN "militarism" ; -- from DictEng -lin militarist_N = mkN "militarist" "militarists"; -- from DictEng -lin militaristic_A = compoundA (mkA "militaristic"); -- from DictEng -lin militarized_A = mkA "militarized" ; -lin military_A = compoundA (mkA "military"); -- from DictEng -lin military_N = mkN "military" ; -- from DictEng -lin militate_V = mkV "militate" "militates" "militated" "militated" "militating"; -- from DictEng -lin militia_N = mkN "militia" "militias"; -- from DictEng -lin militiaman_N = mkN "militiaman" "militiamen" {- FIXME: guessed plural form -}; -- from DictEng -lin milk_N = mkN "milk" ; -- from DictEng -lin milk_V = mkV "milk" "milks" "milked" "milked" "milking"; -- from DictEng -lin milk_V2 = mkV2 (mkV "milk" "milks" "milked" "milked" "milking"); -- from DictEng -lin milk_sick_A = compoundA (mkA "milk sick") ; -lin milk_white_A = compoundA (mkA "milk - white"); -- from DictEng -lin milk_churn_N = mkN "milk - churn" "milk - churns"; -- from DictEng -lin milk_powder_N = mkN "milk - powder" "milk - powders"; -- from DictEng -lin milk_shake_N = mkN "milk - shake" "milk - shakes"; -- from DictEng -lin milk_tooth_N = mkN "milk - tooth" "milk - teeth"; -- from DictEng -lin milk_white_A = compoundA (mkA "milk - white"); -- from DictEng -lin milkbar_N = mkN "milkbar" "milkbars"; -- from DictEng -lin milkcap_N = mkN "milkcap" ; -lin milking_machine_N = mkN "milking - machine" "milking - machines"; -- from DictEng -lin milkless_A = mkA "milkless" ; -lin milkmaid_N = mkN "milkmaid" "milkmaids"; -- from DictEng -lin milkman_N = mkN "milkman" "milkmen" {- FIXME: guessed plural form -}; -- from DictEng -lin milkshake_N = mkN "milkshake" "milkshakes"; -- from DictEng -lin milksop_N = mkN "milksop" "milksops"; -- from DictEng -lin milkweed_N = mkN "milkweed" "milkweeds"; -- from DictEng -lin milkwort_N = mkN "milkwort" ; -lin milky_A = mkA "milky" "milkier"; -- from DictEng -lin mill_N = mkN "mill" "mills"; -- from DictEng -lin mill_V = mkV "mill" "mills" "milled" "milled" "milling"; -- from DictEng -lin mill_V2 = mkV2 (mkV "mill" "mills" "milled" "milled" "milling"); -- from DictEng -lin mill_girl_N = mkN "mill - girl" "mill - girls"; -- from DictEng -lin mill_hand_N = mkN "mill - hand" "mill - hands"; -- from DictEng -lin mill_dam_N = mkN "mill - dam" "mill - dams"; -- from DictEng -lin mill_girl_N = mkN "mill - girl" "mill - girls"; -- from DictEng -lin mill_hand_N = mkN "mill - hand" "mill - hands"; -- from DictEng -lin millboard_N = mkN "millboard" ; -- from DictEng -lin milldam_N = mkN "milldam" ; -lin milled_A = mkA "milled" ; -lin millenarian_A = mkA "millenarian" ; -lin millenarian_N = mkN "millenarian" "millenarians"; -- from DictEng -lin millenarianism_N = mkN "millenarianism" ; -lin millenary_A = mkA "millenary" ; -lin millenary_N = mkN "millenary" ; -lin millennial_A = compoundA (mkA "millennial"); -- from DictEng -lin millennium_N = mkN "millennium" "millennia" {- FIXME: guessed plural form -}; -- from DictEng -lin millepede_N = mkN "millepede" "millepedes"; -- from DictEng -lin miller_N = mkN "miller" "millers"; -- from DictEng -lin miller's_thumb_N = mkN "miller's thumb" ; -lin millerite_N = mkN "millerite" ; -lin millet_N = mkN "millet" ; -- from DictEng -lin millettia_N = mkN "millettia" ; -lin milliammeter_N = mkN "milliammeter" ; -lin milliampere_N = mkN "milliampere" ; -lin milliard_N = mkN "milliard" "milliards"; -- from DictEng -lin millibar_N = mkN "millibar" "millibars"; -- from DictEng -lin millicurie_N = mkN "millicurie" ; -lin millidegree_N = mkN "millidegree" ; -lin milliequivalent_N = mkN "milliequivalent" ; -lin millifarad_N = mkN "millifarad" ; -lin milligram_N = mkN "milligram" "milligrams"; -- from DictEng -lin millihenry_N = mkN "millihenry" ; -lin milliliter_N = mkN "milliliter" ; -lin millime_N = mkN "millime" ; -lin millimeter_N = mkN "millimeter" ; -lin millimetre_N = mkN "millimetre" "millimetres"; -- from DictEng -lin milline_N = mkN "milline" ; -lin milliner_N = mkN "milliner" "milliners"; -- from DictEng -lin millinery_N = mkN "millinery" ; -- from DictEng -lin milling_N = mkN "milling" ; -lin million_A = mkA "million" ; -lin million_N = mkN "million" ; -lin millionaire_N = mkN "millionaire" "millionaires"; -- from DictEng -lin millionairess_N = mkN "millionairess" "millionairesss"; -- from DictEng -lin millionfold_Adv = mkAdv "millionfold"; -- from DictEng -lin millionth_A = compoundA (mkA "millionth"); -- from DictEng -lin millionth_N = mkN "millionth" "millionths"; -- from DictEng -lin millipede_N = mkN "millipede" "millipedes"; -- from DictEng -lin milliradian_N = mkN "milliradian" ; -lin millisecond_N = mkN "millisecond" ; -lin millivolt_N = mkN "millivolt" ; -lin millivoltmeter_N = mkN "millivoltmeter" ; -lin milliwatt_N = mkN "milliwatt" ; -lin millpond_N = mkN "millpond" "millponds"; -- from DictEng -lin millrace_N = mkN "millrace" "millraces"; -- from DictEng -lin millstone_N = mkN "millstone" "millstones"; -- from DictEng -lin millwheel_N = mkN "millwheel" "millwheels"; -- from DictEng -lin millwork_N = mkN "millwork" ; -lin millwright_N = mkN "millwright" "millwrights"; -- from DictEng -lin milo_N = mkN "milo" ; -lin milometer_N = mkN "milometer" "milometers"; -- from DictEng -lin milord_N = mkN "milord" "milords"; -- from DictEng -lin milt_N = mkN "milt" ; -- from DictEng -lin mime_N = mkN "mime" "mimes"; -- from DictEng -lin mime_V = mkV "mime" "mimes" "mimed" "mimed" "miming"; -- from DictEng -lin mime_V2 = mkV2 (mkV "mime" "mimes" "mimed" "mimed" "miming"); -- from DictEng -lin mimeograph_N = mkN "mimeograph" "mimeographs"; -- from DictEng -lin mimeograph_V2 = mkV2 (mkV "mimeograph" "mimeographs" "mimeographed" "mimeographed" "mimeographing"); -- from DictEng -lin mimesis_N = mkN "mimesis" ; -lin mimetic_A = compoundA (mkA "mimetic"); -- from DictEng -lin mimic_A = compoundA (mkA "mimic"); -- from DictEng -lin mimic_N = mkN "mimic" "mimics"; -- from DictEng -lin mimic_V2 = mkV2 (mkV "mimic" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin mimicry_N = mkN "mimicry" ; -- from DictEng -lin mimosa_N = mkN "mimosa" "mimosas"; -- from DictEng -lin min_N = mkN "min" ; -- from DictEng -lin minaret_N = mkN "minaret" "minarets"; -- from DictEng -lin minatory_A = compoundA (mkA "minatory"); -- from DictEng -lin mince_N = mkN "mince" ; -- from DictEng -lin mince_V = mkV "mince" "minces" "minced" "minced" "mincing"; -- from DictEng -lin mince_V2 = mkV2 (mkV "mince" "minces" "minced" "minced" "mincing"); -- from DictEng -lin mince_pie_N = mkN "mince - pie" "mince - pies"; -- from DictEng -lin mincemeat_N = mkN "mincemeat" ; -- from DictEng -lin mincer_N = mkN "mincer" "mincers"; -- from DictEng -lin mincing_A = compoundA (mkA "mincing"); -- from DictEng -lin mincingly_Adv = mkAdv "mincingly" ; -lin mind_N = mkN "mind" "minds"; -- from DictEng -lin mind_V = mkV "mind" "minds" "minded" "minded" "minding"; -- from DictEng -lin mind_V2 = mkV2 (mkV "mind" "minds" "minded" "minded" "minding"); -- from DictEng -lin mind_VS = mkVS (mkV "mind" "minds" "minded" "minded" "minding"); -- from DictEng -lin mind_altering_A = compoundA (mkA "mind altering") ; -lin mind_bending_A = compoundA (mkA "mind - bending"); -- from DictEng -lin mind_blowing_A = compoundA (mkA "mind - blowing"); -- from DictEng -lin mind_boggling_A = compoundA (mkA "mind - boggling"); -- from DictEng -lin mind_expanding_A = compoundA (mkA "mind expanding") ; -lin mind_bending_A = compoundA (mkA "mind - bending"); -- from DictEng -lin mind_blowing_A = compoundA (mkA "mind - blowing"); -- from DictEng -lin mind_boggling_A = compoundA (mkA "mind - boggling"); -- from DictEng -lin mind_reader_N = mkN "mind - reader" "mind - readers"; -- from DictEng -lin minded_A = compoundA (mkA "minded"); -- from DictEng -lin minder_N = mkN "minder" "minders"; -- from DictEng -lin mindful_A = compoundA (mkA "mindful"); -- from DictEng -lin mindfully_Adv = mkAdv "mindfully" ; -lin mindfulness_N = mkN "mindfulness" ; -- from DictEng -lin mindless_A = compoundA (mkA "mindless"); -- from DictEng -lin mindlessly_Adv = mkAdv "mindlessly" ; -lin mindlessness_N = mkN "mindlessness" ; -- from DictEng -lin mine_A = compoundA (mkA "mine"); -- from DictEng -lin mine_N = mkN "mine" "mines"; -- from DictEng -lin mine_V = mkV "mine" "mines" "mined" "mined" "mining"; -- from DictEng -lin mine_V2 = mkV2 (mkV "mine" "mines" "mined" "mined" "mining"); -- from DictEng -lin mine_detector_N = mkN "mine - detector" "mine - detectors"; -- from DictEng -lin mine_disposal_N = mkN "mine - disposal" "mine - disposals"; -- from DictEng -lin mined_A = mkA "mined" ; -lin minefield_N = mkN "minefield" "minefields"; -- from DictEng -lin minelayer_N = mkN "minelayer" "minelayers"; -- from DictEng -lin minelaying_N = mkN "minelaying" ; -- from DictEng -lin miner_N = mkN "miner" "miners"; -- from DictEng -lin mineral_A = compoundA (mkA "mineral"); -- from DictEng -lin mineral_N = mkN "mineral" "minerals"; -- from DictEng -lin mineralocorticoid_N = mkN "mineralocorticoid" ; -lin mineralogist_N = mkN "mineralogist" "mineralogists"; -- from DictEng -lin mineralogy_N = mkN "mineralogy" ; -- from DictEng -lin mineshaft_N = mkN "mineshaft" ; -lin minestrone_N = mkN "minestrone" ; -- from DictEng -lin minesweeper_N = mkN "minesweeper" "minesweepers"; -- from DictEng -lin minesweeping_N = mkN "minesweeping" ; -- from DictEng -lin mineworker_N = mkN "mineworker" "mineworkers"; -- from DictEng -lin minge_N = mkN "minge" ; -lin mingle_V = mkV "mingle" "mingles" "mingled" "mingled" "mingling"; -- from DictEng -lin mingle_V2 = mkV2 (mkV "mingle" "mingles" "mingled" "mingled" "mingling"); -- from DictEng -lin mingling_N = mkN "mingling" ; -lin mingy_A = mkA "mingy" "mingier"; -- from DictEng -lin mini_A = mkA "mini" ; -lin miniature_A = mkA "miniature" ; -lin miniature_N = mkN "miniature" "miniatures"; -- from DictEng -lin miniaturist_N = mkN "miniaturist" "miniaturists"; -- from DictEng -lin miniaturization_N = mkN "miniaturization" ; -- from DictEng -lin miniaturize_V2 = mkV2 (mkV "miniaturize" "miniaturizes" "miniaturized" "miniaturized" "miniaturizing"); -- from DictEng -lin minibar_N = mkN "minibar" ; -lin minibike_N = mkN "minibike" ; -lin minibus_N = mkN "minibus" ; -lin minicab_N = mkN "minicab" ; -lin minicar_N = mkN "minicar" ; -lin minicomputer_N = mkN "minicomputer" ; -lin minim_N = mkN "minim" "minims"; -- from DictEng -lin minimal_A = compoundA (mkA "minimal"); -- from DictEng -lin minimalism_N = mkN "minimalism" ; -lin minimalist_A = mkA "minimalist" ; -lin minimalist_N = mkN "minimalist" ; -lin minimally_Adv = mkAdv "minimally" ; -lin minimization_N = mkN "minimization" ; -lin minimize_V2 = mkV2 (mkV "minimize" "minimizes" "minimized" "minimized" "minimizing"); -- from DictEng -lin minimized_A = mkA "minimized" ; -lin minimum_A = compoundA (mkA "minimum"); -- from DictEng -lin minimum_N = mkN "minimum" "minimums"; -- from DictEng -lin minimus_N = mkN "minimus" ; -lin mining_N = mkN "mining" ; -- from DictEng -lin minion_N = mkN "minion" "minions"; -- from DictEng -lin miniskirt_N = mkN "miniskirt" ; -lin minister_N = mkN "minister" "ministers"; -- from DictEng -lin minister_V = mkV "minister" "ministers" "ministered" "ministered" "ministering"; -- from DictEng -lin ministerial_A = compoundA (mkA "ministerial"); -- from DictEng -lin ministerially_Adv = mkAdv "ministerially" ; -lin ministrant_A = compoundA (mkA "ministrant"); -- from DictEng -lin ministrant_N = mkN "ministrant" "ministrants"; -- from DictEng -lin ministration_N = mkN "ministration" "ministrations"; -- from DictEng -lin ministry_N = mkN "ministry" "ministries"; -- from DictEng -lin minisub_N = mkN "minisub" ; -lin minivan_N = mkN "minivan" ; -lin miniver_N = mkN "miniver" ; -- from DictEng -lin mink_N = mkN "mink" "minks"; -- from DictEng -lin minniebush_N = mkN "minniebush" ; -lin minnow_N = mkN "minnow" "minnows"; -- from DictEng -lin minocycline_N = mkN "minocycline" ; -lin minor_A = compoundA (mkA "minor"); -- from DictEng -lin minor_N = mkN "minor" "minors"; -- from DictEng -lin minority_N = mkN "minority" "minorities"; -- from DictEng -lin minotaur_N = mkN "minotaur" "minotaurs"; -- from DictEng -lin minoxidil_N = mkN "minoxidil" ; -lin minster_N = mkN "minster" "minsters"; -- from DictEng -lin minstrel_N = mkN "minstrel" "minstrels"; -- from DictEng -lin minstrelsy_N = mkN "minstrelsy" ; -- from DictEng -lin mint_A = mkA "mint" ; -lin mint_N = mkN "mint" "mints"; -- from DictEng -lin mint_V2 = mkV2 (mkV "mint" "mints" "minted" "minted" "minting"); -- from DictEng -lin mint_scented_A = compoundA (mkA "mint scented") ; -lin mintage_N = mkN "mintage" ; -lin mintmark_N = mkN "mintmark" ; -lin minty_A = mkA "minty" ; -lin minuend_N = mkN "minuend" ; -lin minuet_N = mkN "minuet" "minuets"; -- from DictEng -lin minus_A = compoundA (mkA "minus"); -- from DictEng -lin minus_N = mkN "minus" "minuses"; -- from DictEng -lin minus_Prep = mkPrep "minus"; -- from DictEng -lin minuscule_A = compoundA (mkA "minuscule"); -- from DictEng -lin minuscule_N = mkN "minuscule" ; -lin minute_A = mkA "minute" "minuter"; -- from DictEng -lin minute_N = mkN "minute" "minutes"; -- from DictEng -lin minute_V2 = mkV2 (mkV "minute" "minutes" "minuted" "minuted" "minuting"); -- from DictEng -lin minute_book_N = mkN "minute - book" "minute - books"; -- from DictEng -lin minute_gun_N = mkN "minute - gun" "minute - guns"; -- from DictEng -lin minute_hand_N = mkN "minute - hand" "minute - hands"; -- from DictEng -lin minutely_Adv = mkAdv "minutely" ; -lin minuteman_N = mkN "minuteman" "minutemen" {- FIXME: guessed plural form -}; -- from DictEng -lin minuteness_N = mkN "minuteness" ; -- from DictEng -lin minutes_N = mkN "minutes" ; -lin minutia_N = mkN "minutia" ; -lin minx_N = mkN "minx" "minxes"; -- from DictEng -lin minyan_N = mkN "minyan" ; -lin miotic_A = mkA "miotic" ; -lin miracle_N = mkN "miracle" "miracles"; -- from DictEng -lin miraculous_A = compoundA (mkA "miraculous"); -- from DictEng -lin miraculously_Adv = mkAdv "miraculously" ; -lin mirage_N = mkN "mirage" "mirages"; -- from DictEng -lin mire_N = mkN "mire" ; -- from DictEng -lin mire_V = mkV "mire" "mires" "mired" "mired" "miring"; -- from DictEng -lin mire_V2 = mkV2 (mkV "mire" "mires" "mired" "mired" "miring"); -- from DictEng -lin miro_N = mkN "miro" ; -lin mirror_N = mkN "mirror" "mirrors"; -- from DictEng -lin mirror_V2 = mkV2 (mkV "mirror" "mirrors" "mirrored" "mirrored" "mirroring"); -- from DictEng -lin mirrored_A = mkA "mirrored" ; -lin mirrorlike_A = mkA "mirrorlike" ; -lin mirth_N = mkN "mirth" ; -- from DictEng -lin mirthful_A = compoundA (mkA "mirthful"); -- from DictEng -lin mirthless_A = compoundA (mkA "mirthless"); -- from DictEng -lin miry_A = mkA "miry" "mirier"; -- from DictEng -lin misadventure_N = mkN "misadventure" "misadventures"; -- from DictEng -lin misadvise_V2 = mkV2 (mkV "misadvise" "misadvises" "misadvised" "misadvised" "misadvising"); -- from DictEng -lin misalignment_N = mkN "misalignment" ; -lin misalliance_N = mkN "misalliance" "misalliances"; -- from DictEng -lin misanthrope_N = mkN "misanthrope" "misanthropes"; -- from DictEng -lin misanthropic_A = compoundA (mkA "misanthropic"); -- from DictEng -lin misanthropy_N = mkN "misanthropy" ; -- from DictEng -lin misapplication_N = mkN "misapplication" "misapplications"; -- from DictEng -lin misapply_V2 = mkV2 (mkV "misapply" "misapplies" "misapplied" "misapplied" "misapplying"); -- from DictEng -lin misapprehend_V2 = mkV2 (mkV "misapprehend" "misapprehends" "misapprehended" "misapprehended" "misapprehending"); -- from DictEng -lin misapprehension_N = mkN "misapprehension" "misapprehensions"; -- from DictEng -lin misappropriate_V2 = mkV2 (mkV "misappropriate" "misappropriates" "misappropriated" "misappropriated" "misappropriating"); -- from DictEng -lin misappropriation_N = mkN "misappropriation" "misappropriations"; -- from DictEng -lin misbegotten_A = compoundA (mkA "misbegotten"); -- from DictEng -lin misbehave_V = mkV "misbehave" "misbehaves" "misbehaved" "misbehaved" "misbehaving"; -- from DictEng -lin misbehave_V2 = mkV2 (mkV "misbehave" "misbehaves" "misbehaved" "misbehaved" "misbehaving"); -- from DictEng -lin misbehavior_N = mkN "misbehavior" ; -lin misbehaviour_N = mkN "misbehaviour" ; -- from DictEng -lin misbranded_A = mkA "misbranded" ; -lin miscalculate_V = mkV "miscalculate" "miscalculates" "miscalculated" "miscalculated" "miscalculating"; -- from DictEng -lin miscalculate_V2 = mkV2 (mkV "miscalculate" "miscalculates" "miscalculated" "miscalculated" "miscalculating"); -- from DictEng -lin miscalculation_N = mkN "miscalculation" "miscalculations"; -- from DictEng -lin miscall_V2 = mkV2 (mkV "miscall" "miscalls" "miscalled" "miscalled" "miscalling"); -- from DictEng -lin miscarriage_N = mkN "miscarriage" "miscarriages"; -- from DictEng -lin miscarry_V2 = mkV2 (mkV "miscarry" "miscarries" "miscarried" "miscarried" "miscarrying"); -- from DictEng -lin miscast_V2 = mkV2 (mkV "mis" IrregEng.cast_V); -- from DictEng -lin miscegenation_N = mkN "miscegenation" ; -- from DictEng -lin miscellaneous_A = compoundA (mkA "miscellaneous"); -- from DictEng -lin miscellany_N = mkN "miscellany" "miscellanies"; -- from DictEng -lin mischance_N = mkN "mischance" "mischances"; -- from DictEng -lin mischief_N = mkN "mischief" "mischiefs"; -- from DictEng -lin mischief_maker_N = mkN "mischief - maker" "mischief - makers"; -- from DictEng -lin mischief_making_N = mkN "mischief - making" ; -- from DictEng -lin mischievous_A = compoundA (mkA "mischievous"); -- from DictEng -lin mischievousness_N = mkN "mischievousness" ; -- from DictEng -lin miscible_A = mkA "miscible" ; -lin misconceive_V = mkV "misconceive" "misconceives" "misconceived" "misconceived" "misconceiving"; -- from DictEng -lin misconceive_V2 = mkV2 (mkV "misconceive" "misconceives" "misconceived" "misconceived" "misconceiving"); -- from DictEng -lin misconception_N = mkN "misconception" "misconceptions"; -- from DictEng -lin misconduct_N = mkN "misconduct" ; -- from DictEng -lin misconduct_V2 = mkV2 (mkV "misconduct" "misconducts" "misconducted" "misconducted" "misconducting"); -- from DictEng -lin misconstrual_N = mkN "misconstrual" ; -lin misconstruction_N = mkN "misconstruction" "misconstructions"; -- from DictEng -lin misconstrue_V2 = mkV2 (mkV "misconstrue" "misconstrues" "misconstrued" "misconstrued" "misconstruing"); -- from DictEng -lin miscount_N = mkN "miscount" "miscounts"; -- from DictEng -lin miscount_V = mkV "miscount" "miscounts" "miscounted" "miscounted" "miscounting"; -- from DictEng -lin miscount_V2 = mkV2 (mkV "miscount" "miscounts" "miscounted" "miscounted" "miscounting"); -- from DictEng -lin miscreant_N = mkN "miscreant" "miscreants"; -- from DictEng -lin miscue_N = mkN "miscue" ; -lin misdate_V2 = mkV2 (mkV "misdate" "misdates" "misdated" "misdated" "misdating"); -- from DictEng -lin misdeal_N = mkN "misdeal" "misdeals"; -- from DictEng -lin misdeal_V = mkV "mis" IrregEng.deal_V; -- from DictEng -lin misdeal_V2 = mkV2 (mkV "mis" IrregEng.deal_V); -- from DictEng -lin misdeed_N = mkN "misdeed" "misdeeds"; -- from DictEng -lin misdemeanor_N = mkN "misdemeanor" ; -lin misdemeanour_N = mkN "misdemeanour" "misdemeanours"; -- from DictEng -lin misdirect_V2 = mkV2 (mkV "misdirect" "misdirects" "misdirected" "misdirected" "misdirecting"); -- from DictEng -lin misdirection_N = mkN "misdirection" "misdirections"; -- from DictEng -lin misdoing_N = mkN "misdoing" "misdoings"; -- from DictEng -lin mise_en_scene_N = mkN "mise en scène" ; -- from DictEng -lin miser_N = mkN "miser" "misers"; -- from DictEng -lin miserable_A = compoundA (mkA "miserable"); -- from DictEng -lin miserably_Adv = mkAdv "miserably" ; -lin miserliness_N = mkN "miserliness" ; -- from DictEng -lin miserly_A = compoundA (mkA "miserly"); -- from DictEng -lin misery_N = mkN "misery" "miseries"; -- from DictEng -lin misfeasance_N = mkN "misfeasance" ; -lin misfire_N = mkN "misfire" "misfires"; -- from DictEng -lin misfire_V = mkV "misfire" "misfires" "misfired" "misfired" "misfiring"; -- from DictEng -lin misfit_N = mkN "misfit" "misfits"; -- from DictEng -lin misfortune_N = mkN "misfortune" "misfortunes"; -- from DictEng -lin misgive_V2 = mkV2 (mkV "mis" IrregEng.give_V); -- from DictEng -lin misgiving_N = mkN "misgiving" "misgivings"; -- from DictEng -lin misgovern_V2 = mkV2 (mkV "misgovern" "misgoverns" "misgoverned" "misgoverned" "misgoverning"); -- from DictEng -lin misgovernment_N = mkN "misgovernment" ; -- from DictEng -lin misguide_V2 = mkV2 (mkV "misguide" "misguides" "misguided" "misguided" "misguiding"); -- from DictEng -lin misguided_A = compoundA (mkA "misguided"); -- from DictEng -lin mishandle_V2 = mkV2 (mkV "mishandle" "mishandles" "mishandled" "mishandled" "mishandling"); -- from DictEng -lin mishap_N = mkN "mishap" "mishaps"; -- from DictEng -lin mishmash_N = mkN "mishmash" ; -- from DictEng -lin mishpocha_N = mkN "mishpocha" ; -lin misinform_V2 = mkV2 (mkV "misinform" "misinforms" "misinformed" "misinformed" "misinforming"); -- from DictEng -lin misinformation_N = mkN "misinformation" ; -- from DictEng -lin misinterpret_V2 = mkV2 (mkV "misinterpret" "misinterprets" "misinterpreted" "misinterpreted" "misinterpreting"); -- from DictEng -lin misinterpretation_N = mkN "misinterpretation" "misinterpretations"; -- from DictEng -lin misjudge_V = mkV "misjudge" "misjudges" "misjudged" "misjudged" "misjudging"; -- from DictEng -lin misjudge_V2 = mkV2 (mkV "misjudge" "misjudges" "misjudged" "misjudged" "misjudging"); -- from DictEng -lin mislaid_A = mkA "mislaid" ; -lin mislay_V2 = mkV2 (mkV "mi" IrregEng.slay_V); -- from DictEng -lin mislead_V2 = mkV2 (mkV "mis" IrregEng.lead_V); -- from DictEng -lin misleader_N = mkN "misleader" ; -lin mismanage_V2 = mkV2 (mkV "mismanage" "mismanages" "mismanaged" "mismanaged" "mismanaging"); -- from DictEng -lin mismanagement_N = mkN "mismanagement" ; -- from DictEng -lin mismatch_N = mkN "mismatch" ; -lin mismatched_A = mkA "mismatched" ; -lin misname_V2 = mkV2 (mkV "misname" "misnames" "misnamed" "misnamed" "misnaming"); -- from DictEng -lin misnomer_N = mkN "misnomer" "misnomers"; -- from DictEng -lin miso_N = mkN "miso" ; -lin misocainea_N = mkN "misocainea" ; -lin misogamist_N = mkN "misogamist" ; -lin misogamy_N = mkN "misogamy" ; -lin misogynic_A = mkA "misogynic" ; -lin misogynist_N = mkN "misogynist" "misogynists"; -- from DictEng -lin misogynous_A = mkA "misogynous" ; -lin misogyny_N = mkN "misogyny" ; -lin misology_N = mkN "misology" ; -lin misoneism_N = mkN "misoneism" ; -lin misopedia_N = mkN "misopedia" ; -lin misplace_V2 = mkV2 (mkV "misplace" "misplaces" "misplaced" "misplaced" "misplacing"); -- from DictEng -lin misplaced_A = mkA "misplaced" ; -lin misprint_N = mkN "misprint" "misprints"; -- from DictEng -lin misprint_V2 = mkV2 (mkV "misprint" "misprints" "misprinted" "misprinted" "misprinting"); -- from DictEng -lin mispronounce_V2 = mkV2 (mkV "mispronounce" "mispronounces" "mispronounced" "mispronounced" "mispronouncing"); -- from DictEng -lin mispronunciation_N = mkN "mispronunciation" "mispronunciations"; -- from DictEng -lin misquotation_N = mkN "misquotation" "misquotations"; -- from DictEng -lin misquote_V2 = mkV2 (mkV "misquote" "misquotes" "misquoted" "misquoted" "misquoting"); -- from DictEng -lin misread_V2 = mkV2 (mkV "mis" IrregEng.read_V); -- from DictEng -lin misreading_N = mkN "misreading" ; -lin misrelated_A = mkA "misrelated" ; -lin misrepresent_V2 = mkV2 (mkV "misrepresent" "misrepresents" "misrepresented" "misrepresented" "misrepresenting"); -- from DictEng -lin misrepresentation_N = mkN "misrepresentation" "misrepresentations"; -- from DictEng -lin misrule_N = mkN "misrule" ; -- from DictEng -lin miss_N = mkN "miss" "misses"; -- from DictEng -lin miss_V = mkV "miss" "misses" "missed" "missed" "missing"; -- from DictEng -lin miss_V2 = mkV2 (mkV "miss" "misses" "missed" "missed" "missing"); -- from DictEng -lin missal_N = mkN "missal" "missals"; -- from DictEng -lin misshapen_A = compoundA (mkA "misshapen"); -- from DictEng -lin missile_N = mkN "missile" "missiles"; -- from DictEng -lin missing_A = compoundA (mkA "missing"); -- from DictEng -lin mission_N = mkN "mission" "missions"; -- from DictEng -lin missionary_A = mkA "missionary" ; -lin missionary_N = mkN "missionary" "missionaries"; -- from DictEng -lin missis_N = mkN "missis" "misses" {- FIXME: guessed plural form -}; -- from DictEng -lin missive_N = mkN "missive" "missives"; -- from DictEng -lin misspell_V = mkV "misspell" ; -lin misspell_V2 = mkV2 (mkV "misspell" "misspells" "misspelled" "misspelled" "misspelling"); -- from DictEng -lin misspelling_N = mkN "misspelling" "misspellings"; -- from DictEng -lin misspend_V2 = mkV2 (mkV "mis" IrregEng.spend_V); -- from DictEng -lin misstate_V2 = mkV2 (mkV "misstate" "misstates" "misstated" "misstated" "misstating"); -- from DictEng -lin misstatement_N = mkN "misstatement" "misstatements"; -- from DictEng -lin missus_N = mkN "missus" "missi" {- FIXME: guessed plural form -}; -- from DictEng -lin missy_N = mkN "missy" "missies"; -- from DictEng -lin mist_N = mkN "mist" "mists"; -- from DictEng -lin mist_V = mkV "mist" "mists" "misted" "misted" "misting"; -- from DictEng -lin mist_V2 = mkV2 (mkV "mist" "mists" "misted" "misted" "misting"); -- from DictEng -lin mistake_N = mkN "mistake" "mistakes"; -- from DictEng -lin mistake_V = IrregEng.mistake_V; -- from DictEng -lin mistake_V2 = mkV2 (IrregEng.mistake_V); -- from DictEng -lin mistaken_A = compoundA (mkA "mistaken"); -- from DictEng -lin mistakenly_Adv = mkAdv "mistakenly" ; -lin mister_N = mkN "mister" "IRREG"; -- from DictEng -lin mistflower_N = mkN "mistflower" ; -lin mistily_Adv = mkAdv "mistily"; -- from DictEng -lin mistime_V2 = mkV2 (mkV "mistime" "mistimes" "mistimed" "mistimed" "mistiming"); -- from DictEng -lin mistiness_N = mkN "mistiness" ; -- from DictEng -lin mistletoe_N = mkN "mistletoe" ; -- from DictEng -lin mistral_N = mkN "mistral" "mistrals"; -- from DictEng -lin mistranslate_V2 = mkV2 (mkV "mistranslate" "mistranslates" "mistranslated" "mistranslated" "mistranslating"); -- from DictEng -lin mistranslation_N = mkN "mistranslation" "mistranslations"; -- from DictEng -lin mistreat_V2 = mkV2 (mkV "mistreat"); -- from DictEng -lin mistreatment_N = mkN "mistreatment" ; -lin mistress_N = mkN "mistress" "mistresses"; -- from DictEng -lin mistrial_N = mkN "mistrial" "mistrials"; -- from DictEng -lin mistrust_N = mkN "mistrust" ; -- from DictEng -lin mistrust_V2 = mkV2 (mkV "mistrust" "mistrusts" "mistrusted" "mistrusted" "mistrusting"); -- from DictEng -lin mistrustful_A = compoundA (mkA "mistrustful"); -- from DictEng -lin misty_A = mkA "misty" "mistier"; -- from DictEng -lin misty_eyed_A = compoundA (mkA "misty eyed") ; -lin misunderstand_V2 = mkV2 (mkV "mis" IrregEng.understand_V); -- from DictEng -lin misunderstanding_N = mkN "misunderstanding" "misunderstandings"; -- from DictEng -lin misunderstood_A = mkA "misunderstood" ; -lin misuse_N = mkN "misuse" "misuses"; -- from DictEng -lin misuse_V2 = mkV2 (mkV "misuse" "misuses" "misused" "misused" "misusing"); -- from DictEng -lin misused_A = mkA "misused" ; -lin mite_N = mkN "mite" "mites"; -- from DictEng -lin miter_N = mkN "miter" ; -lin miterwort_N = mkN "miterwort" ; -lin mithraic_A = mkA "mithraic" ; -lin mithramycin_N = mkN "mithramycin" ; -lin mitigable_A = mkA "mitigable" ; -lin mitigate_V2 = mkV2 (mkV "mitigate" "mitigates" "mitigated" "mitigated" "mitigating"); -- from DictEng -lin mitigated_A = mkA "mitigated" ; -lin mitigation_N = mkN "mitigation" ; -- from DictEng -lin mitochondrion_N = mkN "mitochondrion" ; -lin mitogen_N = mkN "mitogen" ; -lin mitomycin_N = mkN "mitomycin" ; -lin mitosis_N = mkN "mitosis" ; -lin mitotic_A = mkA "mitotic" ; -lin mitral_A = mkA "mitral" ; -lin mitre_N = mkN "mitre" "mitres"; -- from DictEng -lin mitre_joint_N = mkN "mitre - joint" "mitre - joints"; -- from DictEng -lin mitt_N = mkN "mitt" "mitts"; -- from DictEng -lin mittelschmerz_N = mkN "mittelschmerz" ; -lin mitten_N = mkN "mitten" "mittens"; -- from DictEng -lin mitzvah_N = mkN "mitzvah" ; -lin mix_N = mkN "mix" "mixes"; -- from DictEng -lin mix_V = mkV "mix" "mixes" "mixed" "mixed" "mixing"; -- from DictEng -lin mix_V2 = mkV2 (mkV "mix" "mixes" "mixed" "mixed" "mixing"); -- from DictEng -lin mix_up_N = mkN "mix - up" "mix - ups"; -- from DictEng -lin mixed_A = compoundA (mkA "mixed"); -- from DictEng -lin mixed_blood_N = mkN "mixed blood" ; -lin mixed_up_A = compoundA (mkA "mixed - up"); -- from DictEng -lin mixer_N = mkN "mixer" "mixers"; -- from DictEng -lin mixology_N = mkN "mixology" ; -lin mixture_N = mkN "mixture" "mixtures"; -- from DictEng -lin mizen_N = mkN "mizen" "mizens"; -- from DictEng -lin mizzen_N = mkN "mizzen" "mizzens"; -- from DictEng -lin mizzen_mast_N = mkN "mizzen - mast" "mizzen - masts"; -- from DictEng -lin mizzenmast_N = mkN "mizzenmast" ; -lin mizzle_V = mkV "mizzle" "mizzles" "mizzled" "mizzled" "mizzling"; -- from DictEng -lin ml_N = mkN "ml" "ml"; -- from DictEng -lin mm_N = mkN "mm" "mm"; -- from DictEng -lin mnemonic_A = compoundA (mkA "mnemonic"); -- from DictEng -lin mnemonic_N = mkN "mnemonic" ; -lin mnemonics_N = mkN "mnemonics" "mnemonics"; -- from DictEng -lin mnemonist_N = mkN "mnemonist" ; -lin mo_N = mkN "mo" "mi" {- FIXME: guessed plural form -}; -- from DictEng -lin moa_N = mkN "moa" ; -lin moan_N = mkN "moan" "moans"; -- from DictEng -lin moan_V = mkV "moan" "moans" "moaned" "moaned" "moaning"; -- from DictEng -lin moan_V2 = mkV2 (mkV "moan" "moans" "moaned" "moaned" "moaning"); -- from DictEng -lin moan_VS = mkVS (mkV "moan" "moans" "moaned" "moaned" "moaning"); -- from DictEng -lin moat_N = mkN "moat" "moats"; -- from DictEng -lin moated_A = compoundA (mkA "moated"); -- from DictEng -lin mob_N = mkN "mob" "mobs"; -- from DictEng -lin mob_V2 = mkV2 (mkV "mob" "mobs" "mobbed" "mobbed" "mobbing"); -- from DictEng -lin mobbish_A = mkA "mobbish" ; -lin mobcap_N = mkN "mobcap" "mobcaps"; -- from DictEng -lin mobile_A = compoundA (mkA "mobile"); -- from DictEng -lin mobile_N = mkN "mobile" "mobiles"; -- from DictEng -lin mobility_N = mkN "mobility" ; -- from DictEng -lin mobilization_N = mkN "mobilization" "mobilizations"; -- from DictEng -lin mobilize_V = mkV "mobilize" "mobilizes" "mobilized" "mobilized" "mobilizing"; -- from DictEng -lin mobilize_V2 = mkV2 (mkV "mobilize" "mobilizes" "mobilized" "mobilized" "mobilizing"); -- from DictEng -lin mobocracy_N = mkN "mobocracy" ; -lin mobster_N = mkN "mobster" "mobsters"; -- from DictEng -lin moccasin_N = mkN "moccasin" "moccasins"; -- from DictEng -lin mocha_N = mkN "mocha" ; -- from DictEng -lin mock_A = compoundA (mkA "mock"); -- from DictEng -lin mock_N = mkN "mock" "mocks"; -- from DictEng -lin mock_V = mkV "mock" "mocks" "mocked" "mocked" "mocking"; -- from DictEng -lin mock_V2 = mkV2 (mkV "mock" "mocks" "mocked" "mocked" "mocking"); -- from DictEng -lin mock_heroic_N = mkN "mock heroic" ; -lin mock_up_N = mkN "mock - up" "mock - ups"; -- from DictEng -lin mock_up_N = mkN "mock - up" "mock - ups"; -- from DictEng -lin mocker_N = mkN "mocker" "mockers"; -- from DictEng -lin mockernut_N = mkN "mockernut" ; -lin mockery_N = mkN "mockery" "mockeries"; -- from DictEng -lin mocking_A = mkA "mocking" ; -lin mockingbird_N = mkN "mockingbird" ; -lin mockingly_Adv = mkAdv "mockingly"; -- from DictEng -lin mod_A = compoundA (mkA "mod"); -- from DictEng -lin mod_N = mkN "mod" "mods"; -- from DictEng -lin mod_cons_N = mkN "mod con" "mod cons" ; -- from DictEng -lin modal_A = compoundA (mkA "modal"); -- from DictEng -lin modality_N = mkN "modality" "modalities"; -- from DictEng -lin mode_N = mkN "mode" "modes"; -- from DictEng -lin model_N = mkN "model" "models"; -- from DictEng -lin model_V = variants {mkV "model" "models" "modeled" "modeled" "modeling"}; -- US -- from DictEng -lin model_V2 = mkV2 (variants {mkV "model" "models" "modeled" "modeled" "modeling"}); -- US -- from DictEng -lin modeled_A = mkA "modeled" ; -lin modeler_N = mkN "modeler" "modelers"; -- from DictEng -lin modeling_N = mkN "modeling" ; -lin modeller_N = mkN "modeller" "modellers"; -- from DictEng -lin modelling_N = mkN "modelling" ; -- from DictEng -lin modem_N = mkN "modem" ; -lin modem_V2 = mkV2 (mkV "modem") ; -lin moderate_A = compoundA (mkA "moderate"); -- from DictEng -lin moderate_N = mkN "moderate" "moderates"; -- from DictEng -lin moderate_V = mkV "moderate" "moderates" "moderated" "moderated" "moderating"; -- from DictEng -lin moderate_V2 = mkV2 (mkV "moderate" "moderates" "moderated" "moderated" "moderating"); -- from DictEng -lin moderately_Adv = mkAdv "moderately" ; -lin moderating_A = mkA "moderating" ; -lin moderation_N = mkN "moderation" ; -- from DictEng -lin moderationism_N = mkN "moderationism" ; -lin moderationist_N = mkN "moderationist" ; -lin moderato_A = mkA "moderato" ; -lin moderator_N = mkN "moderator" "moderators"; -- from DictEng -lin moderatorship_N = mkN "moderatorship" ; -lin modern_A = compoundA (mkA "modern"); -- from DictEng -lin modern_N = mkN "modern" "moderns"; -- from DictEng -lin moderne_A = mkA "moderne" ; -lin modernism_N = mkN "modernism" ; -- from DictEng -lin modernist_N = mkN "modernist" "modernists"; -- from DictEng -lin modernistic_A = compoundA (mkA "modernistic"); -- from DictEng -lin modernity_N = mkN "modernity" ; -- from DictEng -lin modernization_N = mkN "modernization" ; -- from DictEng -lin modernize_V2 = mkV2 (mkV "modernize" "modernizes" "modernized" "modernized" "modernizing"); -- from DictEng -lin modernized_A = mkA "modernized" ; -lin modest_A = compoundA (mkA "modest"); -- from DictEng -lin modestly_Adv = mkAdv "modestly" ; -lin modesty_N = mkN "modesty" ; -- from DictEng -lin modicum_N = mkN "modicum" "modica" {- FIXME: guessed plural form -}; -- from DictEng -lin modifiable_A = mkA "modifiable" ; -lin modification_N = mkN "modification" "modifications"; -- from DictEng -lin modified_A = mkA "modified" ; -lin modified_american_plan_PN = mkPN "modified American plan" ; -lin modifier_N = mkN "modifier" "modifiers"; -- from DictEng -lin modify_V2 = mkV2 (mkV "modify" "modifies" "modified" "modified" "modifying"); -- from DictEng -lin modillion_N = mkN "modillion" ; -lin modiolus_N = mkN "modiolus" ; -lin modish_A = compoundA (mkA "modish"); -- from DictEng -lin modiste_N = mkN "modiste" "modistes"; -- from DictEng -lin mods_N = mkN "mods" ; -lin modular_A = compoundA (mkA "modular"); -- from DictEng -lin modulate_V = mkV "modulate" "modulates" "modulated" "modulated" "modulating"; -- from DictEng -lin modulate_V2 = mkV2 (mkV "modulate" "modulates" "modulated" "modulated" "modulating"); -- from DictEng -lin modulated_A = mkA "modulated" ; -lin modulation_N = mkN "modulation" "modulations"; -- from DictEng -lin module_N = mkN "module" "modules"; -- from DictEng -lin modulus_N = mkN "modulus" ; -lin modus_operandi_N = mkN "modus operandi" "IRREG"; -- from DictEng -lin modus_vivendi_N = mkN "modus vivendi" "IRREG"; -- from DictEng -lin mogul_N = mkN "mogul" "moguls"; -- from DictEng -lin mohair_N = mkN "mohair" ; -- from DictEng -lin mohammedan_N = mkN "mohammedan" "mohammedans"; -- from DictEng -lin mohawk_N = mkN "mohawk" ; -lin moiety_N = mkN "moiety" "moieties"; -- from DictEng -lin moil_V = mkV "moil" "moils" "moiled" "moiled" "moiling"; -- from DictEng -lin moire_A = mkA "moire" ; -lin moire_N = mkN "moire" ; -lin moist_A = compoundA (mkA "moist"); -- from DictEng -lin moisten_V = mkV "moisten" "moistens" "moistened" "moistened" "moistening"; -- from DictEng -lin moisten_V2 = mkV2 (mkV "moisten" "moistens" "moistened" "moistened" "moistening"); -- from DictEng -lin moistening_N = mkN "moistening" ; -lin moisture_N = mkN "moisture" ; -- from DictEng -lin moisturize_V = mkV "moisturize" ; -lin moisturize_V2 = mkV2 (mkV "moisturize") ; -lin mojarra_N = mkN "mojarra" ; -lin mojo_N = mkN "mojo" ; -lin moke_N = mkN "moke" "mokes"; -- from DictEng -lin moksa_N = mkN "moksa" ; -lin molal_A = mkA "molal" ; -lin molality_N = mkN "molality" ; -lin molar_A = compoundA (mkA "molar"); -- from DictEng -lin molar_N = mkN "molar" "molars"; -- from DictEng -lin molarity_N = mkN "molarity" ; -lin molasses_N = mkN "molasses" ; -- from DictEng -lin mold_N = mkN "mold" ; -lin mold_V = mkV "mold"; -- from DictEng -lin mold_V2 = mkV2 "mold"; -- from DictEng -lin moldboard_N = mkN "moldboard" ; -lin molding_N = mkN "molding" ; -lin moldy_A = mkA "moldy" "moldier"; -- from DictEng -lin mole_N = mkN "mole" "moles"; -- from DictEng -lin molecular_A = compoundA (mkA "molecular"); -- from DictEng -lin molecule_N = mkN "molecule" "molecules"; -- from DictEng -lin molehill_N = mkN "molehill" "molehills"; -- from DictEng -lin moleskin_N = mkN "moleskin" "moleskins"; -- from DictEng -lin molest_V2 = mkV2 (mkV "molest" "molests" "molested" "molested" "molesting"); -- from DictEng -lin molestation_N = mkN "molestation" ; -- from DictEng -lin molester_N = mkN "molester" ; -lin molindone_N = mkN "molindone" ; -lin moll_N = mkN "moll" "molls"; -- from DictEng -lin mollie_N = mkN "mollie" ; -lin mollification_N = mkN "mollification" ; -- from DictEng -lin mollify_V2 = mkV2 (mkV "mollify" "mollifies" "mollified" "mollified" "mollifying"); -- from DictEng -lin mollusc_N = mkN "mollusc" "molluscs"; -- from DictEng -lin molluscum_N = mkN "molluscum" ; -lin mollusk_N = mkN "mollusk" ; -lin mollycoddle_N = mkN "mollycoddle" "mollycoddles"; -- from DictEng -lin mollycoddle_V2 = mkV2 (mkV "mollycoddle" "mollycoddles" "mollycoddled" "mollycoddled" "mollycoddling"); -- from DictEng -lin moloch_N = mkN "moloch" ; -lin molt_N = mkN "molt" ; -lin molten_A = mkA "molten" ; -lin molter_N = mkN "molter" ; -lin molto_Adv = mkAdv "molto"; -- from DictEng -lin molybdenite_N = mkN "molybdenite" ; -lin molybdenum_N = mkN "molybdenum" ; -- from DictEng -lin mombin_N = mkN "mombin" ; -lin moment_N = mkN "moment" "moments"; -- from DictEng -lin momentarily_Adv = mkAdv "momentarily" ; -lin momentary_A = compoundA (mkA "momentary"); -- from DictEng -lin momentous_A = compoundA (mkA "momentous"); -- from DictEng -lin momentously_Adv = mkAdv "momentously" ; -lin momentousness_N = mkN "momentousness" ; -- from DictEng -lin momentum_N = mkN "momentum" ; -- from DictEng -lin momism_N = mkN "momism" ; -lin monad_N = mkN "monad" ; -lin monal_N = mkN "monal" ; -lin monandrous_A = mkA "monandrous" ; -lin monandry_N = mkN "monandry" ; -lin monarch_N = mkN "monarch" "monarchs"; -- from DictEng -lin monarchal_A = mkA "monarchal" ; -lin monarchic_A = compoundA (mkA "monarchic"); -- from DictEng -lin monarchism_N = mkN "monarchism" ; -- from DictEng -lin monarchist_N = mkN "monarchist" "monarchists"; -- from DictEng -lin monarchy_N = mkN "monarchy" "monarchies"; -- from DictEng -lin monarda_N = mkN "monarda" ; -lin monastery_N = mkN "monastery" "monasteries"; -- from DictEng -lin monastic_A = compoundA (mkA "monastic"); -- from DictEng -lin monasticism_N = mkN "monasticism" ; -- from DictEng -lin monatomic_A = mkA "monatomic" ; -lin monaural_A = compoundA (mkA "monaural"); -- from DictEng -lin monaurally_Adv = mkAdv "monaurally" ; -lin monazite_N = mkN "monazite" ; -lin monday_N = mkN "Monday" "Mondays"; -- from DictEng -lin monegasque_A = compoundA (mkA "monegasque"); -- from DictEng -lin monegasque_N = mkN "monegasque" "monegasques"; -- from DictEng -lin moneran_A = mkA "moneran" ; -lin moneran_N = mkN "moneran" ; -lin monestrous_A = mkA "monestrous" ; -lin monetarism_N = mkN "monetarism" ; -lin monetarist_N = mkN "monetarist" ; -lin monetary_A = compoundA (mkA "monetary"); -- from DictEng -lin monetization_N = mkN "monetization" ; -lin monetize_V2 = mkV2 (mkV "monetize" "monetizes" "monetized" "monetized" "monetizing"); -- from DictEng -lin money_N = mkN "money" ; -- from DictEng -lin money_grubber_N = mkN "money - grubber" "money - grubbers"; -- from DictEng -lin money_order_N = mkN "money - order" "money - orders"; -- from DictEng -lin money_spinner_N = mkN "money - spinner" "money - spinners"; -- from DictEng -lin moneybag_N = mkN "moneybag" ; -lin moneybox_N = mkN "moneybox" "moneyboxes"; -- from DictEng -lin moneychanger_N = mkN "moneychanger" "moneychangers"; -- from DictEng -lin moneyed_A = compoundA (mkA "moneyed"); -- from DictEng -lin moneygrubber_N = mkN "moneygrubber" ; -lin moneylender_N = mkN "moneylender" "moneylenders"; -- from DictEng -lin moneyless_A = compoundA (mkA "moneyless"); -- from DictEng -lin moneymaker_N = mkN "moneymaker" ; -lin moneymaking_N = mkN "moneymaking" ; -lin moneywort_N = mkN "moneywort" ; -lin monger_N = mkN "monger" "mongers"; -- from DictEng -lin mongo_N = mkN "mongo" ; -lin mongol_A = compoundA (mkA "mongol"); -- from DictEng -lin mongol_N = mkN "mongol" "mongols"; -- from DictEng -lin mongolian_A = compoundA (mkA "mongolian"); -- from DictEng -lin mongolian_N = mkN "mongolian" "mongolians"; -- from DictEng -lin mongolism_N = mkN "mongolism" ; -- from DictEng -lin mongoloid_A = mkA "mongoloid" ; -lin mongoloid_N = mkN "mongoloid" ; -lin mongoose_N = mkN "mongoose" "mongooses"; -- from DictEng -lin mongrel_A = compoundA (mkA "mongrel"); -- from DictEng -lin mongrel_N = mkN "mongrel" "mongrels"; -- from DictEng -lin monilia_N = mkN "monilia" ; -lin monism_N = mkN "monism" ; -lin monistic_A = mkA "monistic" ; -lin monition_N = mkN "monition" ; -lin monitor_N = mkN "monitor" "monitors"; -- from DictEng -lin monitor_V = mkV "monitor" "monitors" "monitored" "monitored" "monitoring"; -- from DictEng -lin monitor_V2 = mkV2 (mkV "monitor" "monitors" "monitored" "monitored" "monitoring"); -- from DictEng -lin monitoring_N = mkN "monitoring" ; -lin monk_N = mkN "monk" "monks"; -- from DictEng -lin monkey_N = mkN "monkey" "monkeys"; -- from DictEng -lin monkey_V = mkV "monkey" "monkeys" "monkeyed" "monkeyed" "monkeying"; -- from DictEng -lin monkey_wrench_N = mkN "monkey - wrench" "monkey - wrenches"; -- from DictEng -lin monkey_jacket_N = mkN "monkey - jacket" "monkey - jackets"; -- from DictEng -lin monkey_nut_N = mkN "monkey - nut" "monkey - nuts"; -- from DictEng -lin monkey_puzzle_N = mkN "monkey - puzzle" "monkey - puzzles"; -- from DictEng -lin monkey_wrench_N = mkN "monkey - wrench" "monkey - wrenches"; -- from DictEng -lin monkfish_N = mkN "monkfish" ; -lin monkish_A = compoundA (mkA "monkish"); -- from DictEng -lin monkshood_N = mkN "monkshood" ; -lin mono_A = compoundA (mkA "mono"); -- from DictEng -lin mono_iodotyrosine_N = mkN "mono iodotyrosine" ; -lin monoamine_N = mkN "monoamine" ; -lin monoblast_N = mkN "monoblast" ; -lin monocarboxylic_A = mkA "monocarboxylic" ; -lin monocarp_N = mkN "monocarp" ; -lin monocarpic_A = mkA "monocarpic" ; -lin monochromacy_N = mkN "monochromacy" ; -lin monochromat_N = mkN "monochromat" ; -lin monochromatic_A = mkA "monochromatic" ; -lin monochrome_A = compoundA (mkA "monochrome"); -- from DictEng -lin monochrome_N = mkN "monochrome" "monochromes"; -- from DictEng -lin monocle_N = mkN "monocle" "monocles"; -- from DictEng -lin monocled_A = compoundA (mkA "monocled"); -- from DictEng -lin monoclinal_A = mkA "monoclinal" ; -lin monocline_N = mkN "monocline" ; -lin monoclinic_A = mkA "monoclinic" ; -lin monoclinous_A = mkA "monoclinous" ; -lin monoclonal_A = mkA "monoclonal" ; -lin monocot_N = mkN "monocot" ; -lin monocotyledonous_A = mkA "monocotyledonous" ; -lin monoculture_N = mkN "monoculture" ; -lin monocyte_N = mkN "monocyte" ; -lin monocytosis_N = mkN "monocytosis" ; -lin monodic_A = mkA "monodic" ; -lin monoecious_A = mkA "monoecious" ; -lin monogamist_N = mkN "monogamist" "monogamists"; -- from DictEng -lin monogamous_A = compoundA (mkA "monogamous"); -- from DictEng -lin monogamy_N = mkN "monogamy" ; -- from DictEng -lin monogenesis_N = mkN "monogenesis" ; -lin monogenic_A = mkA "monogenic" ; -lin monogram_N = mkN "monogram" "monograms"; -- from DictEng -lin monogram_V2 = mkV2 (mkV "monogram") ; -lin monograph_N = mkN "monograph" "monographs"; -- from DictEng -lin monogynous_A = mkA "monogynous" ; -lin monogyny_N = mkN "monogyny" ; -lin monohybrid_N = mkN "monohybrid" ; -lin monohydrate_N = mkN "monohydrate" ; -lin monolatry_N = mkN "monolatry" ; -lin monolingual_A = mkA "monolingual" ; -lin monolingual_N = mkN "monolingual" ; -lin monolingually_Adv = mkAdv "monolingually" ; -lin monolith_N = mkN "monolith" "monoliths"; -- from DictEng -lin monolithic_A = compoundA (mkA "monolithic"); -- from DictEng -lin monologist_N = mkN "monologist" ; -lin monologue_N = mkN "monologue" "monologues"; -- from DictEng -lin monomania_N = mkN "monomania" "monomanias"; -- from DictEng -lin monomaniac_N = mkN "monomaniac" "monomaniacs"; -- from DictEng -lin monomaniacal_A = mkA "monomaniacal" ; -lin monomer_N = mkN "monomer" ; -lin monometallic_A = mkA "monometallic" ; -lin monomorphemic_A = mkA "monomorphemic" ; -lin mononeuropathy_N = mkN "mononeuropathy" ; -lin mononuclear_A = mkA "mononuclear" ; -lin monophonic_A = mkA "monophonic" ; -lin monophony_N = mkN "monophony" ; -lin monoplane_N = mkN "monoplane" "monoplanes"; -- from DictEng -lin monoplegia_N = mkN "monoplegia" ; -lin monopolist_N = mkN "monopolist" "monopolists"; -- from DictEng -lin monopolistic_A = compoundA (mkA "monopolistic"); -- from DictEng -lin monopolization_N = mkN "monopolization" "monopolizations"; -- from DictEng -lin monopolize_V2 = mkV2 (mkV "monopolize" "monopolizes" "monopolized" "monopolized" "monopolizing"); -- from DictEng -lin monopoly_N = mkN "monopoly" "monopolies"; -- from DictEng -lin monopsony_N = mkN "monopsony" ; -lin monopteral_A = mkA "monopteral" ; -lin monorail_N = mkN "monorail" "monorails"; -- from DictEng -lin monorchism_N = mkN "monorchism" ; -lin monosaccharide_N = mkN "monosaccharide" ; -lin monosemous_A = mkA "monosemous" ; -lin monosemy_N = mkN "monosemy" ; -lin monosomy_N = mkN "monosomy" ; -lin monosyllabic_A = compoundA (mkA "monosyllabic"); -- from DictEng -lin monosyllabically_Adv = mkAdv "monosyllabically" ; -lin monosyllable_N = mkN "monosyllable" "monosyllables"; -- from DictEng -lin monotheism_N = mkN "monotheism" ; -- from DictEng -lin monotheist_N = mkN "monotheist" "monotheists"; -- from DictEng -lin monotheistic_A = compoundA (mkA "monotheistic"); -- from DictEng -lin monotone_N = mkN "monotone" "monotones"; -- from DictEng -lin monotonic_A = mkA "monotonic" ; -lin monotonous_A = compoundA (mkA "monotonous"); -- from DictEng -lin monotonously_Adv = mkAdv "monotonously" ; -lin monotony_N = mkN "monotony" ; -- from DictEng -lin monotreme_N = mkN "monotreme" ; -lin monotype_N = mkN "monotype" "monotypes"; -- from DictEng -lin monotypic_A = mkA "monotypic" ; -lin monounsaturated_A = mkA "monounsaturated" ; -lin monovalent_A = mkA "monovalent" ; -lin monoxide_N = mkN "monoxide" "monoxides"; -- from DictEng -lin monozygotic_A = mkA "monozygotic" ; -lin mons_N = mkN "mons" ; -lin monsieur_N = mkN "monsieur" "IRREG"; -- from DictEng -lin monsignor_N = mkN "monsignor" "monsignors"; -- from DictEng -lin monsoon_N = mkN "monsoon" "monsoons"; -- from DictEng -lin monster_N = mkN "monster" "monsters"; -- from DictEng -lin monstera_N = mkN "monstera" ; -lin monstrance_N = mkN "monstrance" "monstrances"; -- from DictEng -lin monstrosity_N = mkN "monstrosity" "monstrosities"; -- from DictEng -lin monstrous_A = compoundA (mkA "monstrous"); -- from DictEng -lin montage_N = mkN "montage" ; -- from DictEng -lin montane_A = mkA "montane" ; -lin monte_N = mkN "monte" ; -lin month_N = mkN "month" "months"; -- from DictEng -lin month_by_month_Adv = mkAdv "month by month" ; -lin month_of_sundays_PN = mkPN "month of Sundays" ; -lin monthlong_A = mkA "monthlong" ; -lin monthly_A = compoundA (mkA "monthly"); -- from DictEng -lin monthly_Adv = mkAdv "monthly"; -- from DictEng -lin monthly_N = mkN "monthly" "monthlies"; -- from DictEng -lin montserratian_A = compoundA (mkA "montserratian"); -- from DictEng -lin montserratian_N = mkN "montserratian" "montserratians"; -- from DictEng -lin monument_N = mkN "monument" "monuments"; -- from DictEng -lin monumental_A = compoundA (mkA "monumental"); -- from DictEng -lin moo_N = mkN "moo" "moos"; -- from DictEng -lin moo_V = mkV "moo" "moos" "mooed" "mooed" "mooing"; -- from DictEng -lin moo_cow_N = mkN "moo - cow" "moo - cows"; -- from DictEng -lin mooch_V = mkV "mooch" "mooches" "mooched" "mooched" "mooching"; -- from DictEng -lin moocher_N = mkN "moocher" ; -lin mood_N = mkN "mood" "moods"; -- from DictEng -lin moodily_Adv = mkAdv "moodily"; -- from DictEng -lin moodiness_N = mkN "moodiness" ; -- from DictEng -lin moody_A = mkA "moody" "moodier"; -- from DictEng -lin moon_N = mkN "moon" "moons"; -- from DictEng -lin moon_V = mkV "moon" "moons" "mooned" "mooned" "mooning"; -- from DictEng -lin moon_V2 = mkV2 (mkV "moon" "moons" "mooned" "mooned" "mooning"); -- from DictEng -lin moon_faced_A = compoundA (mkA "moon faced") ; -lin moon_splashed_A = compoundA (mkA "moon splashed") ; -lin moon_worship_N = mkN "moon worship" ; -lin moonbeam_N = mkN "moonbeam" "moonbeams"; -- from DictEng -lin moonfish_N = mkN "moonfish" ; -lin moonflower_N = mkN "moonflower" "moonflowers"; -- from DictEng -lin moonless_A = compoundA (mkA "moonless"); -- from DictEng -lin moonlight_N = mkN "moonlight" ; -- from DictEng -lin moonlighter_N = mkN "moonlighter" ; -lin moonlike_A = mkA "moonlike" ; -lin moonlit_A = compoundA (mkA "moonlit"); -- from DictEng -lin moonseed_N = mkN "moonseed" ; -lin moonshine_N = mkN "moonshine" ; -- from DictEng -lin moonstone_N = mkN "moonstone" "moonstones"; -- from DictEng -lin moonstruck_A = compoundA (mkA "moonstruck"); -- from DictEng -lin moonwalk_N = mkN "moonwalk" ; -lin moonwort_N = mkN "moonwort" ; -lin moony_A = mkA "moony" "moonier"; -- from DictEng -lin moor_N = mkN "moor" "moors"; -- from DictEng -lin moor_V2 = mkV2 (mkV "moor" "moors" "moored" "moored" "mooring"); -- from DictEng -lin moorage_N = mkN "moorage" ; -lin moorcock_N = mkN "moorcock" "moorcocks"; -- from DictEng -lin moorfowl_N = mkN "moorfowl" "moorfowls"; -- from DictEng -lin moorgame_N = mkN "moorgame" "moorgame"; -- from DictEng -lin moorhen_N = mkN "moorhen" "moorhens"; -- from DictEng -lin mooring_N = mkN "mooring" ; -lin mooring_mast_N = mkN "mooring - mast" "mooring - masts"; -- from DictEng -lin moorish_A = compoundA (mkA "moorish"); -- from DictEng -lin moorland_N = mkN "moorland" "moorlands"; -- from DictEng -lin moose_N = mkN "moose" "moose"; -- from DictEng -lin moosewood_N = mkN "moosewood" ; -lin moot_A = compoundA (mkA "moot"); -- from DictEng -lin moot_N = mkN "moot" ; -lin moot_V2 = mkV2 (mkV "moot" "moots" "mooted" "mooted" "mooting"); -- from DictEng -lin mop_N = mkN "mop" "mops"; -- from DictEng -lin mop_V = mkV "mop" "mops" "mopped" "mopped" "mopping"; -- from DictEng -lin mop_V2 = mkV2 (mkV "mop" "mops" "mopped" "mopped" "mopping"); -- from DictEng -lin mop_headed_A = compoundA (mkA "mop headed") ; -lin mope_N = mkN "mope" "mopes"; -- from DictEng -lin mope_V = mkV "mope" "mopes" "moped" "moped" "moping"; -- from DictEng -lin moped_N = mkN "moped" "mopeds"; -- from DictEng -lin moped_V2 = mkV2 (mkV "moped") ; -lin mopper_N = mkN "mopper" ; -lin moppet_N = mkN "moppet" ; -lin moquette_N = mkN "moquette" ; -- from DictEng -lin moraceous_A = mkA "moraceous" ; -lin moraine_N = mkN "moraine" "moraines"; -- from DictEng -lin moral_A = compoundA (mkA "moral"); -- from DictEng -lin moral_N = mkN "moral" "morals"; -- from DictEng -lin morale_N = mkN "morale" ; -- from DictEng -lin moralism_N = mkN "moralism" ; -lin moralist_N = mkN "moralist" "moralists"; -- from DictEng -lin moralistic_A = compoundA (mkA "moralistic"); -- from DictEng -lin morality_N = mkN "morality" "moralities"; -- from DictEng -lin moralization_N = mkN "moralization" ; -lin moralize_V = mkV "moralize" "moralizes" "moralized" "moralized" "moralizing"; -- from DictEng -lin moralize_V2 = mkV2 (mkV "moralize" "moralizes" "moralized" "moralized" "moralizing"); -- from DictEng -lin moralizing_N = mkN "moralizing" ; -lin morally_Adv = mkAdv "morally" ; -lin morass_N = mkN "morass" "morasses"; -- from DictEng -lin moratorium_N = mkN "moratorium" "moratoriums"; -- from DictEng -lin moray_N = mkN "moray" ; -lin morbid_A = compoundA (mkA "morbid"); -- from DictEng -lin morbidity_N = mkN "morbidity" "morbidities"; -- from DictEng -lin morbidly_Adv = mkAdv "morbidly" ; -lin morbidness_N = mkN "morbidness" ; -- from DictEng -lin morbilliform_A = mkA "morbilliform" ; -lin morceau_N = mkN "morceau" ; -lin mordacious_A = mkA "mordacious" ; -lin mordaciously_Adv = mkAdv "mordaciously" ; -lin mordacity_N = mkN "mordacity" ; -lin mordant_A = compoundA (mkA "mordant"); -- from DictEng -lin mordant_N = mkN "mordant" ; -lin more_A = mkA "more" ; -lin more_Adv = mkAdv "more"; -- from DictEng -lin more_Det = mkDeterminer plural "more"; -- from DictEng -lin more_N = mkN "more" ; -- from DictEng -lin moreen_N = mkN "moreen" ; -lin morel_N = mkN "morel" ; -lin morello_N = mkN "morello" "morellos"; -- from DictEng -lin moreover_Adv = mkAdv "moreover"; -- from DictEng -lin mores_N = mkN "mores" ; -lin moresque_A = compoundA (mkA "moresque"); -- from DictEng -lin morganatic_A = compoundA (mkA "morganatic"); -- from DictEng -lin morganite_N = mkN "morganite" ; -lin morgen_N = mkN "morgen" ; -lin morgue_N = mkN "morgue" "morgues"; -- from DictEng -lin moribund_A = compoundA (mkA "moribund"); -- from DictEng -lin morion_N = mkN "morion" ; -lin mormon_A = compoundA (mkA "mormon"); -- from DictEng -lin mormon_N = mkN "mormon" "mormons"; -- from DictEng -lin mormonism_N = mkN "mormonism" ; -- from DictEng -lin morn_N = mkN "morn" "morns"; -- from DictEng -lin morning_N = mkN "morning" "mornings"; -- from DictEng -lin morning_glory_N = mkN "morning - glory" "morning - glories"; -- from DictEng -lin morning_room_N = mkN "morning - room" "morning - rooms"; -- from DictEng -lin moroccan_A = compoundA (mkA "moroccan"); -- from DictEng -lin moroccan_N = mkN "moroccan" "moroccans"; -- from DictEng -lin morocco_N = mkN "morocco" ; -- from DictEng -lin moron_N = mkN "moron" "morons"; -- from DictEng -lin moronic_A = compoundA (mkA "moronic"); -- from DictEng -lin moronity_N = mkN "moronity" ; -lin morose_A = compoundA (mkA "morose"); -- from DictEng -lin morosely_Adv = mkAdv "morosely" ; -lin moroseness_N = mkN "moroseness" ; -- from DictEng -lin morosoph_N = mkN "morosoph" ; -lin morphallaxis_N = mkN "morphallaxis" ; -lin morphea_N = mkN "morphea" ; -lin morpheme_N = mkN "morpheme" "morphemes"; -- from DictEng -lin morphemic_A = compoundA (mkA "morphemic"); -- from DictEng -lin morphia_N = mkN "morphia" ; -- from DictEng -lin morphine_N = mkN "morphine" ; -- from DictEng -lin morphogenesis_N = mkN "morphogenesis" ; -lin morphologic_A = mkA "morphologic" ; -lin morphological_A = compoundA (mkA "morphological"); -- from DictEng -lin morphologically_Adv = mkAdv "morphologically" ; -lin morphology_N = mkN "morphology" ; -- from DictEng -lin morphophoneme_N = mkN "morphophoneme" ; -lin morphophonemic_A = mkA "morphophonemic" ; -lin morphophonemics_N = mkN "morphophonemics" ; -lin morris_dance_N = mkN "morris dance" "morris dances"; -- from DictEng -lin morrow_N = mkN "morrow" "morrows"; -- from DictEng -lin morse_N = mkN "morse" ; -- from DictEng -lin morsel_N = mkN "morsel" "morsels"; -- from DictEng -lin mortal_A = compoundA (mkA "mortal"); -- from DictEng -lin mortal_N = mkN "mortal" "mortals"; -- from DictEng -lin mortality_N = mkN "mortality" ; -- from DictEng -lin mortally_Adv = mkAdv "mortally" ; -lin mortar_N = mkN "mortar" "mortars"; -- from DictEng -lin mortar_V2 = mkV2 (mkV "mortar" "mortars" "mortared" "mortared" "mortaring"); -- from DictEng -lin mortarboard_N = mkN "mortarboard" "mortarboards"; -- from DictEng -lin mortgage_N = mkN "mortgage" "mortgages"; -- from DictEng -lin mortgage_V2 = mkV2 (mkV "mortgage" "mortgages" "mortgaged" "mortgaged" "mortgaging"); -- from DictEng -lin mortgaged_A = mkA "mortgaged" ; -lin mortgagee_N = mkN "mortgagee" "mortgagees"; -- from DictEng -lin mortgagor_N = mkN "mortgagor" "mortgagors"; -- from DictEng -lin mortice_N = mkN "mortice" "mortices"; -- from DictEng -lin mortice_V2 = mkV2 (mkV "mortice" "mortices" "morticed" "morticed" "morticing"); -- from DictEng -lin mortician_N = mkN "mortician" "morticians"; -- from DictEng -lin mortification_N = mkN "mortification" ; -- from DictEng -lin mortify_V = mkV "mortify" "mortifies" "mortified" "mortified" "mortifying"; -- from DictEng -lin mortify_V2 = mkV2 (mkV "mortify" "mortifies" "mortified" "mortified" "mortifying"); -- from DictEng -lin mortise_N = mkN "mortise" "mortises"; -- from DictEng -lin mortise_V2 = mkV2 (mkV "mortise" "mortises" "mortised" "mortised" "mortising"); -- from DictEng -lin mortmain_N = mkN "mortmain" ; -lin mortuary_A = mkA "mortuary" ; -lin mortuary_N = mkN "mortuary" "mortuaries"; -- from DictEng -lin morula_N = mkN "morula" ; -lin mosaic_A = compoundA (mkA "mosaic"); -- from DictEng -lin mosaic_N = mkN "mosaic" "mosaics"; -- from DictEng -lin mosaicism_N = mkN "mosaicism" ; -lin moselle_N = mkN "moselle" "moselles"; -- from DictEng -lin mosey_V = mkV "mosey" "moseys" "moseyed" "moseyed" "moseying"; -- from DictEng -lin mosey_V2 = mkV2 (mkV "mosey") ; -lin moshav_N = mkN "moshav" ; -lin moslem_A = compoundA (mkA "moslem"); -- from DictEng -lin moslem_N = mkN "moslem" "moslems"; -- from DictEng -lin mosque_N = mkN "mosque" "mosques"; -- from DictEng -lin mosquito_N = mkN "mosquito" "mosquitoes"; -- from DictEng -lin mosquito_craft_N = mkN "mosquito - craft" "mosquito - craft"; -- from DictEng -lin mosquito_net_N = mkN "mosquito - net" "mosquito - nets"; -- from DictEng -lin mosquitofish_N = mkN "mosquitofish" ; -lin moss_N = mkN "moss" "mosses"; -- from DictEng -lin moss_grown_A = compoundA (mkA "moss - grown"); -- from DictEng -lin moss_trooper_N = mkN "moss trooper" ; -lin moss_green_A = compoundA (mkA "moss green") ; -lin moss_grown_A = compoundA (mkA "moss - grown"); -- from DictEng -lin mossback_N = mkN "mossback" ; -lin mossy_A = mkA "mossy" "mossier"; -- from DictEng -lin most_A = mkA "most" ; -lin most_Adv = mkAdv "most" ; -lin most_Det = mkDeterminer plural "most"; -- from DictEng -lin most_favored_nation_A = compoundA (mkA "most favored nation") ; -lin most_valuable_A = compoundA (mkA "most valuable") ; -lin mostaccioli_N = mkN "mostaccioli" ; -lin mostly_Adv = mkAdv "mostly"; -- from DictEng -lin mote_N = mkN "mote" "motes"; -- from DictEng -lin motel_N = mkN "motel" "motels"; -- from DictEng -lin motet_N = mkN "motet" ; -lin moth_N = mkN "moth" "moths"; -- from DictEng -lin moth_eaten_A = compoundA (mkA "moth - eaten"); -- from DictEng -lin moth_eaten_A = compoundA (mkA "moth - eaten"); -- from DictEng -lin mothball_N = mkN "mothball" "mothballs"; -- from DictEng -lin mother_N = mkN "mother" "mothers"; -- from DictEng -lin mother_V2 = mkV2 (mkV "mother" "mothers" "mothered" "mothered" "mothering"); -- from DictEng -lin mother_in_law_N = mkN "mother - in - law" "mothers - in - law"; -- from DictEng -lin mother_naked_A = compoundA (mkA "mother naked") ; -lin mother_of_pearl_N = mkN "mother - of - pearl" ; -- from DictEng -lin mother_in_law_N = mkN "mother - in - law" "mothers - in - law"; -- from DictEng -lin mother_of_pearl_N = mkN "mother - of - pearl" ; -- from DictEng -lin motherhood_N = mkN "motherhood" ; -- from DictEng -lin motherland_N = mkN "motherland" "motherlands"; -- from DictEng -lin motherless_A = compoundA (mkA "motherless"); -- from DictEng -lin motherlike_A = compoundA (mkA "motherlike"); -- from DictEng -lin motherliness_N = mkN "motherliness" ; -- from DictEng -lin motherly_A = compoundA (mkA "motherly"); -- from DictEng -lin motherwort_N = mkN "motherwort" ; -lin mothproof_A = compoundA (mkA "mothproof"); -- from DictEng -lin mothproof_V2 = mkV2 (mkV "mothproof" "mothproofs" "mothproofed" "mothproofed" "mothproofing"); -- from DictEng -lin mothy_A = mkA "mothy" ; -lin motif_N = mkN "motif" "motifs"; -- from DictEng -lin motile_A = mkA "motile" ; -lin motile_N = mkN "motile" ; -lin motilin_N = mkN "motilin" ; -lin motility_N = mkN "motility" ; -lin motion_N = mkN "motion" "motions"; -- from DictEng -lin motion_V = mkV "motion" "motions" "motioned" "motioned" "motioning"; -- from DictEng -lin motion_V2 = mkV2 (mkV "motion" "motions" "motioned" "motioned" "motioning"); -- from DictEng -lin motional_A = mkA "motional" ; -lin motionless_A = compoundA (mkA "motionless"); -- from DictEng -lin motionlessly_Adv = mkAdv "motionlessly" ; -lin motionlessness_N = mkN "motionlessness" ; -lin motivate_V2 = mkV2 (mkV "motivate" "motivates" "motivated" "motivated" "motivating"); -- from DictEng -lin motivate_V2V = mkV2V (mkV "motivate") noPrep to_Prep ; -- from DictEng -lin motivate_VS = mkVS (mkV "motivate" ); -lin motivated_A = mkA "motivated" ; -lin motivation_N = mkN "motivation" "motivations"; -- from DictEng -lin motivational_A = mkA "motivational" ; -lin motivative_A = mkA "motivative" ; -lin motive_A = compoundA (mkA "motive"); -- from DictEng -lin motive_N = mkN "motive" "motives"; -- from DictEng -lin motiveless_A = compoundA (mkA "motiveless"); -- from DictEng -lin motley_A = compoundA (mkA "motley"); -- from DictEng -lin motley_N = mkN "motley" ; -- from DictEng -lin motmot_N = mkN "motmot" ; -lin motor_N = mkN "motor" "motors"; -- from DictEng -lin motor_V = mkV "motor" "motors" "motored" "motored" "motoring"; -- from DictEng -lin motor_V2 = mkV2 (mkV "motor") ; -lin motor_assisted_A = compoundA (mkA "motor - assisted"); -- from DictEng -lin motor_assisted_A = compoundA (mkA "motor - assisted"); -- from DictEng -lin motorbike_N = mkN "motorbike" "motorbikes"; -- from DictEng -lin motorboat_N = mkN "motorboat" "motorboats"; -- from DictEng -lin motorcade_N = mkN "motorcade" "motorcades"; -- from DictEng -lin motorcar_N = mkN "motorcar" "motorcars"; -- from DictEng -lin motorcoach_N = mkN "motorcoach" "motorcoaches"; -- from DictEng -lin motorcycle_N = mkN "motorcycle" "motorcycles"; -- from DictEng -lin motorcycling_N = mkN "motorcycling" ; -lin motorcyclist_N = mkN "motorcyclist" ; -lin motoring_N = mkN "motoring" ; -lin motorist_N = mkN "motorist" "motorists"; -- from DictEng -lin motorization_N = mkN "motorization" ; -lin motorize_V2 = mkV2 (mkV "motorize" "motorizes" "motorized" "motorized" "motorizing"); -- from DictEng -lin motorized_A = mkA "motorized" ; -lin motorman_N = mkN "motorman" "motormen" {- FIXME: guessed plural form -}; -- from DictEng -lin motormouth_N = mkN "motormouth" ; -lin motorway_N = mkN "motorway" "motorways"; -- from DictEng -lin mottle_N = mkN "mottle" ; -lin mottle_V2 = mkV2 (mkV "mottle" "mottles" "mottled" "mottled" "mottling"); -- from DictEng -lin mottling_N = mkN "mottling" ; -lin motto_N = mkN "motto" "mottos"; -- from DictEng -lin mouflon_N = mkN "mouflon" ; -lin moujik_N = mkN "moujik" "moujiks"; -- from DictEng -lin mould_N = mkN "mould" "moulds"; -- from DictEng -lin mould_V = mkV "mould" "moulds" "moulded" "moulded" "moulding"; -- from DictEng -lin mould_V2 = mkV2 (mkV "mould" "moulds" "moulded" "moulded" "moulding"); -- from DictEng -lin moulder_V = mkV "moulder" "moulders" "mouldered" "mouldered" "mouldering"; -- from DictEng -lin moulding_N = mkN "moulding" "mouldings"; -- from DictEng -lin mouldy_A = mkA "mouldy" "mouldier"; -- from DictEng -lin moult_N = mkN "moult" "moults"; -- from DictEng -lin moult_V = mkV "moult" "moults" "moulted" "moulted" "moulting"; -- from DictEng -lin moult_V2 = mkV2 (mkV "moult" "moults" "moulted" "moulted" "moulting"); -- from DictEng -lin mound_N = mkN "mound" "mounds"; -- from DictEng -lin mounded_over_A = compoundA (mkA "mounded over") ; -lin mount_N = mkN "mount" "mounts"; -- from DictEng -lin mount_V = mkV "mount" "mounts" "mounted" "mounted" "mounting"; -- from DictEng -lin mount_V2 = mkV2 (mkV "mount" "mounts" "mounted" "mounted" "mounting"); -- from DictEng -lin mount_VS = mkVS (mkV "mount" "mounts" "mounted" "mounted" "mounting"); -- from DictEng -lin mountain_N = mkN "mountain" "mountains"; -- from DictEng -lin mountaineer_N = mkN "mountaineer" "mountaineers"; -- from DictEng -lin mountaineering_N = mkN "mountaineering" ; -- from DictEng -lin mountainous_A = compoundA (mkA "mountainous"); -- from DictEng -lin mountainside_N = mkN "mountainside" ; -lin mountebank_N = mkN "mountebank" "mountebanks"; -- from DictEng -lin mounted_A = mkA "mounted" ; -lin mounter_N = mkN "mounter" ; -lin mountie_N = mkN "mountie" "mounties"; -- from DictEng -lin mounting_N = mkN "mounting" ; -lin mourn_V = mkV "mourn" "mourns" "mourned" "mourned" "mourning"; -- from DictEng -lin mourn_V2 = mkV2 (mkV "mourn" "mourns" "mourned" "mourned" "mourning"); -- from DictEng -lin mourner_N = mkN "mourner" "mourners"; -- from DictEng -lin mournful_A = compoundA (mkA "mournful"); -- from DictEng -lin mournfully_Adv = mkAdv "mournfully" ; -lin mournfulness_N = mkN "mournfulness" ; -lin mourning_N = mkN "mourning" ; -- from DictEng -lin mourning_band_N = mkN "mourning - band" "mourning - bands"; -- from DictEng -lin mourning_ring_N = mkN "mourning - ring" "mourning - rings"; -- from DictEng -lin mouse_N = mkN "mouse" "mice" {- FIXME: guessed plural form -}; -- from DictEng -lin mouse_V = mkV "mouse" "mouses" "moused" "moused" "mousing"; -- from DictEng -lin mouse_eared_A = compoundA (mkA "mouse eared") ; -lin mouse_sized_A = compoundA (mkA "mouse sized") ; -lin mousepad_N = mkN "mousepad" ; -lin mouser_N = mkN "mouser" "mousers"; -- from DictEng -lin mousetrap_N = mkN "mousetrap" "mousetraps"; -- from DictEng -lin moussaka_N = mkN "moussaka" ; -lin mousse_N = mkN "mousse" "mousses"; -- from DictEng -lin moustache_N = mkN "moustache" "moustaches"; -- from DictEng -lin mousy_A = mkA "mousy" "mousier"; -- from DictEng -lin mouth_N = mkN "mouth" "mouths"; -- from DictEng -lin mouth_V = mkV "mouth" "mouths" "mouthed" "mouthed" "mouthing"; -- from DictEng -lin mouth_V2 = mkV2 (mkV "mouth" "mouths" "mouthed" "mouthed" "mouthing"); -- from DictEng -lin mouth_watering_A = compoundA (mkA "mouth - watering"); -- from DictEng -lin mouth_organ_N = mkN "mouth - organ" "mouth - organs"; -- from DictEng -lin mouth_watering_A = compoundA (mkA "mouth - watering"); -- from DictEng -lin mouthbreeder_N = mkN "mouthbreeder" ; -lin mouthful_N = mkN "mouthful" "mouthfuls"; -- from DictEng -lin mouthlike_A = mkA "mouthlike" ; -lin mouthpart_N = mkN "mouthpart" ; -lin mouthpiece_N = mkN "mouthpiece" "mouthpieces"; -- from DictEng -lin mouton_N = mkN "mouton" ; -lin movability_N = mkN "movability" ; -lin movable_A = compoundA (mkA "movable"); -- from DictEng -lin move_N = mkN "move" "moves"; -- from DictEng -lin move_V = mkV "move" "moves" "moved" "moved" "moving"; -- from DictEng -lin move_V2 = mkV2 (mkV "move" "moves" "moved" "moved" "moving"); -- from DictEng -lin move_V2V = mkV2V (mkV "move" "moves" "moved" "moved" "moving") noPrep to_Prep ; -- from DictEng -lin move_VV = mkVV (mkV "move" "moves" "moved" "moved" "moving") ; -- from DictEng -lin moved_A = mkA "moved" ; -lin movement_N = mkN "movement" "movements"; -- from DictEng -lin mover_N = mkN "mover" "movers"; -- from DictEng -lin movie_N = mkN "movie" "movies"; -- from DictEng -lin moviegoer_N = mkN "moviegoer" ; -lin moviemaking_N = mkN "moviemaking" ; -lin moving_A = mkA "moving" ; -lin movingly_Adv = mkAdv "movingly" ; -lin mow_N = mkN "mow" "mows"; -- from DictEng -lin mow_V = mkV "mow" "mows" "mowed" "mowed" "mowing"; -- from DictEng -lin mow_V2 = mkV2 (mkV "mow" "mows" "mowed" "mowed" "mowing"); -- from DictEng -lin mower_N = mkN "mower" "mowers"; -- from DictEng -lin mown_A = mkA "mown" ; -lin mozambican_A = compoundA (mkA "mozambican"); -- from DictEng -lin mozambican_N = mkN "mozambican" "mozambicans"; -- from DictEng -lin mozzarella_N = mkN "mozzarella" ; -lin mp_N = mkN "mp" "mp's" ; -- from DictEng -lin mpg_N = mkN "mpg" "mpg"; -- from DictEng -lin mph_N = mkN "mph" "mph"; -- from DictEng -lin ms_N = mkN "ms" ; -- from DictEng -lin msasa_N = mkN "msasa" ; -lin msc_N = mkN "msc" ; -- from DictEng -lin mu_N = mkN "mu" ; -lin much_A = mkA "much" ; -lin much_Adv = mkAdv "much" ; -lin much_Det = mkDeterminer singular "much"; -- from DictEng -lin much_N = mkN "much" "IRREG"; -- from DictEng -lin much_as_Adv = mkAdv "much as" ; -lin muchness_N = mkN "muchness" ; -- from DictEng -lin muciferous_A = mkA "muciferous" ; -lin mucilage_N = mkN "mucilage" ; -- from DictEng -lin mucin_N = mkN "mucin" ; -lin mucinoid_A = mkA "mucinoid" ; -lin mucinous_A = mkA "mucinous" ; -lin muck_N = mkN "muck" ; -- from DictEng -lin muck_V = mkV "muck" "mucks" "mucked" "mucked" "mucking"; -- from DictEng -lin muck_V2 = mkV2 (mkV "muck" "mucks" "mucked" "mucked" "mucking"); -- from DictEng -lin muck_heap_N = mkN "muck - heap" "muck - heaps"; -- from DictEng -lin muckle_N = mkN "muckle" "IRREG"; -- from DictEng -lin muckraker_N = mkN "muckraker" "muckrakers"; -- from DictEng -lin muckraking_N = mkN "muckraking" ; -- from DictEng -lin mucky_A = mkA "mucky" "muckier"; -- from DictEng -lin mucocutaneous_A = mkA "mucocutaneous" ; -lin mucoid_A = mkA "mucoid" ; -lin mucoid_N = mkN "mucoid" ; -lin mucopolysaccharide_N = mkN "mucopolysaccharide" ; -lin mucopolysaccharidosis_N = mkN "mucopolysaccharidosis" ; -lin mucopurulent_A = mkA "mucopurulent" ; -lin mucor_N = mkN "mucor" ; -lin mucosal_A = mkA "mucosal" ; -lin mucous_A = compoundA (mkA "mucous"); -- from DictEng -lin mucuna_N = mkN "mucuna" ; -lin mucus_N = mkN "mucus" ; -- from DictEng -lin mud_N = mkN "mud" ; -- from DictEng -lin mud_V2 = mkV2 (mkV "mud" "muds" "mudded" "mudded" "mudding"); -- from DictEng -lin mud_beplastered_A = compoundA (mkA "mud beplastered") ; -lin mud_brick_A = compoundA (mkA "mud brick") ; -lin mud_bath_N = mkN "mud - bath" "mud - baths"; -- from DictEng -lin mudder_N = mkN "mudder" ; -lin muddle_N = mkN "muddle" "muddles"; -- from DictEng -lin muddle_V = mkV "muddle" "muddles" "muddled" "muddled" "muddling"; -- from DictEng -lin muddle_V2 = mkV2 (mkV "muddle" "muddles" "muddled" "muddled" "muddling"); -- from DictEng -lin muddle_headed_A = compoundA (mkA "muddle - headed"); -- from DictEng -lin muddy_A = mkA "muddy" "muddier"; -- from DictEng -lin muddy_V2 = mkV2 (mkV "muddy" "muddies" "muddied" "muddied" "muddying"); -- from DictEng -lin mudguard_N = mkN "mudguard" "mudguards"; -- from DictEng -lin mudhif_N = mkN "mudhif" ; -lin mudra_N = mkN "mudra" ; -lin mudskipper_N = mkN "mudskipper" ; -lin mudslide_N = mkN "mudslide" ; -lin mudslinger_N = mkN "mudslinger" "mudslingers"; -- from DictEng -lin muesli_N = mkN "muesli" ; -- from DictEng -lin muezzin_N = mkN "muezzin" "muezzins"; -- from DictEng -lin muff_N = mkN "muff" "muffs"; -- from DictEng -lin muff_V2 = mkV2 (mkV "muff" "muffs" "muffed" "muffed" "muffing"); -- from DictEng -lin muffin_N = mkN "muffin" "muffins"; -- from DictEng -lin muffin_man_N = mkN "muffin - man" "muffin - men"; -- from DictEng -lin muffle_N = mkN "muffle" ; -lin muffle_V2 = mkV2 (mkV "muffle" "muffles" "muffled" "muffled" "muffling"); -- from DictEng -lin muffled_A = mkA "muffled" ; -lin muffler_N = mkN "muffler" "mufflers"; -- from DictEng -lin mufti_N = mkN "mufti" ; -- from DictEng -lin mug_N = mkN "mug" "mugs"; -- from DictEng -lin mug_V2 = mkV2 (mkV "mug" "mugs" "mugged" "mugged" "mugging"); -- from DictEng -lin muggee_N = mkN "muggee" ; -lin mugger_N = mkN "mugger" "muggers"; -- from DictEng -lin mugginess_N = mkN "mugginess" ; -- from DictEng -lin mugging_N = mkN "mugging" "muggings"; -- from DictEng -lin muggins_N = mkN "muggins" "mugginses"; -- from DictEng -lin muggy_A = mkA "muggy" "muggier"; -- from DictEng -lin mugwort_N = mkN "mugwort" ; -lin mugwump_N = mkN "mugwump" "mugwumps"; -- from DictEng -lin muhammadan_A = compoundA (mkA "muhammadan"); -- from DictEng -lin muhammadan_N = mkN "muhammadan" "muhammadans"; -- from DictEng -lin muhammadanism_N = mkN "muhammadanism" ; -- from DictEng -lin muishond_N = mkN "muishond" ; -lin mujahid_N = mkN "mujahid" ; -lin mujahidin_N = mkN "mujahidin" ; -lin mujtihad_N = mkN "mujtihad" ; -lin mukataa_N = mkN "mukataa" ; -lin mulatto_N = mkN "mulatto" "mulattos"; -- from DictEng -lin mulberry_N = mkN "mulberry" "mulberries"; -- from DictEng -lin mulch_N = mkN "mulch" "mulches"; -- from DictEng -lin mulch_V2 = mkV2 (mkV "mulch" "mulches" "mulched" "mulched" "mulching"); -- from DictEng -lin mulct_V2 = mkV2 (mkV "mulct" "mulcts" "mulcted" "mulcted" "mulcting"); -- from DictEng -lin mule_N = mkN "mule" "mules"; -- from DictEng -lin muleteer_N = mkN "muleteer" "muleteers"; -- from DictEng -lin mulish_A = compoundA (mkA "mulish"); -- from DictEng -lin mulishness_N = mkN "mulishness" ; -- from DictEng -lin mull_N = mkN "mull" "mulls"; -- from DictEng -lin mull_V2 = mkV2 (mkV "mull" "mulls" "mulled" "mulled" "mulling"); -- from DictEng -lin mullah_N = mkN "mullah" "mullahs"; -- from DictEng -lin mullein_N = mkN "mullein" "mulleins"; -- from DictEng -lin muller_N = mkN "muller" ; -lin mullet_N = mkN "mullet" "mullets"; -- from DictEng -lin mulligatawny_N = mkN "mulligatawny" ; -- from DictEng -lin mullion_N = mkN "mullion" "mullions"; -- from DictEng -lin mullioned_A = compoundA (mkA "mullioned"); -- from DictEng -lin mulloway_N = mkN "mulloway" ; -lin multi_billionaire_N = mkN "multi billionaire" ; -lin multi_seeded_A = compoundA (mkA "multi seeded") ; -lin multi_stemmed_A = compoundA (mkA "multi stemmed") ; -lin multi_lingual_A = compoundA (mkA "multi - lingual"); -- from DictEng -lin multicellular_A = mkA "multicellular" ; -lin multicollinearity_N = mkN "multicollinearity" ; -lin multicultural_A = mkA "multicultural" ; -lin multiculturalism_N = mkN "multiculturalism" ; -lin multidimensional_A = mkA "multidimensional" ; -lin multiethnic_A = mkA "multiethnic" ; -lin multifactorial_A = mkA "multifactorial" ; -lin multifarious_A = compoundA (mkA "multifarious"); -- from DictEng -lin multiflora_N = mkN "multiflora" ; -lin multiform_A = compoundA (mkA "multiform"); -- from DictEng -lin multilane_A = mkA "multilane" ; -lin multilateral_A = compoundA (mkA "multilateral"); -- from DictEng -lin multilaterally_Adv = mkAdv "multilaterally" ; -lin multilevel_A = mkA "multilevel" ; -lin multilingual_A = mkA "multilingual" ; -lin multimedia_N = mkN "multimedia" ; -lin multinational_A = mkA "multinational" ; -lin multinucleate_A = mkA "multinucleate" ; -lin multiparous_A = mkA "multiparous" ; -lin multipartite_A = mkA "multipartite" ; -lin multiphase_A = mkA "multiphase" ; -lin multiple_A = compoundA (mkA "multiple"); -- from DictEng -lin multiple_N = mkN "multiple" "multiples"; -- from DictEng -lin multiple_choice_A = compoundA (mkA "multiple choice") ; -lin multiplex_A = compoundA (mkA "multiplex"); -- from DictEng -lin multiplex_N = mkN "multiplex" ; -lin multiplexer_N = mkN "multiplexer" ; -lin multiplicand_N = mkN "multiplicand" ; -lin multiplication_N = mkN "multiplication" "multiplications"; -- from DictEng -lin multiplicative_A = mkA "multiplicative" ; -lin multiplicatively_Adv = mkAdv "multiplicatively" ; -lin multiplicity_N = mkN "multiplicity" ; -- from DictEng -lin multiplied_A = mkA "multiplied" ; -lin multiplier_N = mkN "multiplier" ; -lin multiply_Adv = mkAdv "multiply" ; -lin multiply_V = mkV "multiply" "multiplies" "multiplied" "multiplied" "multiplying"; -- from DictEng -lin multiply_V2 = mkV2 (mkV "multiply" "multiplies" "multiplied" "multiplied" "multiplying"); -- from DictEng -lin multipotent_A = mkA "multipotent" ; -lin multiprocessing_N = mkN "multiprocessing" ; -lin multiprocessor_N = mkN "multiprocessor" ; -lin multiprogramming_N = mkN "multiprogramming" ; -lin multipurpose_A = mkA "multipurpose" ; -lin multiracial_A = mkA "multiracial" ; -lin multistage_N = mkN "multistage" ; -lin multistory_A = mkA "multistory" ; -lin multitude_N = mkN "multitude" "multitudes"; -- from DictEng -lin multitudinous_A = compoundA (mkA "multitudinous"); -- from DictEng -lin multitudinousness_N = mkN "multitudinousness" ; -lin multivalent_A = mkA "multivalent" ; -lin multivariate_A = mkA "multivariate" ; -lin multiversity_N = mkN "multiversity" ; -lin multivitamin_N = mkN "multivitamin" ; -lin multum_in_parvo_N = mkN "multum in parvo" ; -- from DictEng -lin mum_A = compoundA (mkA "mum"); -- from DictEng -lin mum_N = mkN "mum" "mums"; -- from DictEng -lin mumble_N = mkN "mumble" ; -lin mumble_V = mkV "mumble" "mumbles" "mumbled" "mumbled" "mumbling"; -- from DictEng -lin mumble_V2 = mkV2 (mkV "mumble" "mumbles" "mumbled" "mumbled" "mumbling"); -- from DictEng -lin mumblety_peg_N = mkN "mumblety peg" ; -lin mumbling_N = mkN "mumbling" ; -lin mumbo_jumbo_N = mkN "mumbo - jumbo" ; -- from DictEng -lin mummer_N = mkN "mummer" "mummers"; -- from DictEng -lin mummery_N = mkN "mummery" "mummeries"; -- from DictEng -lin mummichog_N = mkN "mummichog" ; -lin mummification_N = mkN "mummification" "mummifications"; -- from DictEng -lin mummify_V2 = mkV2 (mkV "mummify" "mummifies" "mummified" "mummified" "mummifying"); -- from DictEng -lin mummy_N = mkN "mummy" "mummies"; -- from DictEng -lin mumps_N = mkN "mumps" "mumps"; -- from DictEng -lin mumpsimus_N = mkN "mumpsimus" ; -lin munch_N = mkN "munch" ; -lin munch_V = mkV "munch" "munches" "munched" "munched" "munching"; -- from DictEng -lin munch_V2 = mkV2 (mkV "munch" "munches" "munched" "munched" "munching"); -- from DictEng -lin muncher_N = mkN "muncher" ; -lin mundane_A = compoundA (mkA "mundane"); -- from DictEng -lin mundanely_Adv = mkAdv "mundanely" ; -lin mung_N = mkN "mung" ; -lin municipal_A = compoundA (mkA "municipal"); -- from DictEng -lin municipality_N = mkN "municipality" "municipalities"; -- from DictEng -lin municipally_Adv = mkAdv "municipally" ; -lin munificence_N = mkN "munificence" ; -- from DictEng -lin munificent_A = compoundA (mkA "munificent"); -- from DictEng -lin muniments_N = mkN "muniments" ; -lin munition_N = mkN "munition" "munitions"; -- from DictEng -lin munition_V2 = mkV2 (mkV "munition" "munitions" "munitioned" "munitioned" "munitioning"); -- from DictEng -lin munj_N = mkN "munj" ; -lin muntjac_N = mkN "muntjac" ; -lin muon_N = mkN "muon" ; -lin mural_A = compoundA (mkA "mural"); -- from DictEng -lin mural_N = mkN "mural" "murals"; -- from DictEng -lin muralist_N = mkN "muralist" ; -lin murder_N = mkN "murder" "murders"; -- from DictEng -lin murder_V2 = mkV2 (mkV "murder" "murders" "murdered" "murdered" "murdering"); -- from DictEng -lin murdered_A = mkA "murdered" ; -lin murderee_N = mkN "murderee" ; -lin murderer_N = mkN "murderer" "murderers"; -- from DictEng -lin murderess_N = mkN "murderess" "murderesses"; -- from DictEng -lin murderous_A = compoundA (mkA "murderous"); -- from DictEng -lin murderously_Adv = mkAdv "murderously" ; -lin murderousness_N = mkN "murderousness" ; -lin murine_A = mkA "murine" ; -lin murine_N = mkN "murine" ; -lin murk_N = mkN "murk" ; -- from DictEng -lin murkily_Adv = mkAdv "murkily"; -- from DictEng -lin murky_A = mkA "murky" "murkier"; -- from DictEng -lin murmur_N = mkN "murmur" "murmurs"; -- from DictEng -lin murmur_V = mkV "murmur" "murmurs" "murmured" "murmured" "murmuring"; -- from DictEng -lin murmur_V2 = mkV2 (mkV "murmur" "murmurs" "murmured" "murmured" "murmuring"); -- from DictEng -lin murmuring_A = mkA "murmuring" ; -lin murmurous_A = mkA "murmurous" ; -lin murphy_N = mkN "murphy" "murphies"; -- from DictEng -lin murrain_N = mkN "murrain" ; -- from DictEng -lin murre_N = mkN "murre" ; -lin muscadine_N = mkN "muscadine" ; -lin muscat_N = mkN "muscat" ; -lin muscatel_N = mkN "muscatel" ; -- from DictEng -lin muscle_N = mkN "muscle" "muscles"; -- from DictEng -lin muscle_V = mkV "muscle" "muscles" "muscled" "muscled" "muscling"; -- from DictEng -lin muscle_V2 = mkV2 (mkV "muscle" "muscles" "muscled" "muscled" "muscling"); -- from DictEng -lin muscle_bound_A = compoundA (mkA "muscle - bound"); -- from DictEng -lin muscle_bound_A = compoundA (mkA "muscle - bound"); -- from DictEng -lin muscleman_N = mkN "muscleman" "musclemen" {- FIXME: guessed plural form -}; -- from DictEng -lin muscovite_A = compoundA (mkA "muscovite"); -- from DictEng -lin muscovite_N = mkN "muscovite" "muscovites"; -- from DictEng -lin muscovy_N = mkN "muscovy" "muscovies"; -- from DictEng -lin muscular_A = compoundA (mkA "muscular"); -- from DictEng -lin muscularity_N = mkN "muscularity" ; -lin musculoskeletal_A = mkA "musculoskeletal" ; -lin muse_N = mkN "muse" "muses"; -- from DictEng -lin muse_V = mkV "muse" "muses" "mused" "mused" "musing"; -- from DictEng -lin muse_VS = mkVS (mkV "muse" "muses" "mused" "mused" "musing"); -- from DictEng -lin muser_N = mkN "muser" ; -lin musette_N = mkN "musette" ; -lin museum_N = mkN "museum" "museums"; -- from DictEng -lin mush_N = mkN "mush" ; -- from DictEng -lin musher_N = mkN "musher" ; -lin mushiness_N = mkN "mushiness" ; -lin mushroom_N = mkN "mushroom" "mushrooms"; -- from DictEng -lin mushroom_V = mkV "mushroom" "mushrooms" "mushroomed" "mushroomed" "mushrooming"; -- from DictEng -lin mushy_A = mkA "mushy" "mushier"; -- from DictEng -lin music_N = mkN "music" ; -- from DictEng -lin music_box_N = mkN "music - box" "music - boxes"; -- from DictEng -lin music_hall_N = mkN "music - hall" "music - halls"; -- from DictEng -lin music_stand_N = mkN "music - stand" "music - stands"; -- from DictEng -lin music_stool_N = mkN "music - stool" "music - stools"; -- from DictEng -lin musical_A = compoundA (mkA "musical"); -- from DictEng -lin musical_N = mkN "musical" "musicals"; -- from DictEng -lin musical_box_N = mkN "musical - box" "musical - boxes"; -- from DictEng -lin musicality_N = mkN "musicality" ; -lin musically_Adv = mkAdv "musically" ; -lin musician_N = mkN "musician" "musicians"; -- from DictEng -lin musicianship_N = mkN "musicianship" ; -- from DictEng -lin musicological_A = mkA "musicological" ; -lin musicologically_Adv = mkAdv "musicologically" ; -lin musicologist_N = mkN "musicologist" ; -lin musicology_N = mkN "musicology" ; -lin musingly_Adv = mkAdv "musingly"; -- from DictEng -lin musk_N = mkN "musk" ; -- from DictEng -lin musk_scented_A = compoundA (mkA "musk scented") ; -lin musk_deer_N = mkN "musk - deer" "musk - deer"; -- from DictEng -lin musk_rose_N = mkN "musk - rose" "musk - roses"; -- from DictEng -lin muskellunge_N = mkN "muskellunge" ; -lin musket_N = mkN "musket" "muskets"; -- from DictEng -lin musketeer_N = mkN "musketeer" "musketeers"; -- from DictEng -lin musketry_N = mkN "musketry" ; -- from DictEng -lin muskiness_N = mkN "muskiness" ; -lin muskmelon_N = mkN "muskmelon" ; -lin muskrat_N = mkN "muskrat" "muskrats"; -- from DictEng -lin muskwood_N = mkN "muskwood" ; -lin musky_A = mkA "musky" "muskier"; -- from DictEng -lin muslim_N = mkN "muslim" "muslims"; -- from DictEng -lin muslin_N = mkN "muslin" ; -- from DictEng -lin musnud_N = mkN "musnud" ; -lin musophobia_N = mkN "musophobia" ; -lin musquash_N = mkN "musquash" ; -- from DictEng -lin muss_N = mkN "muss" "musses"; -- from DictEng -lin muss_V2 = mkV2 (mkV "muss" "musses" "mussed" "mussed" "mussing"); -- from DictEng -lin mussel_N = mkN "mussel" "mussels"; -- from DictEng -lin must_A = mkA "must" ; -lin must_N = mkN "must" "musts"; -- from DictEng -lin must_VV = { - s = table { - VVF VInf => ["have to"] ; - VVF VPres => "must" ; - VVF VPPart => ["had to"] ; - VVF VPresPart => ["having to"] ; - VVF VPast => ["had to"] ; --# notpresent - VVPastNeg => ["hadn't to"] ; --# notpresent - VVPresNeg => "mustn't" - } ; - typ = VVAux - } ; -lin mustache_N = mkN "mustache" ; -lin mustachio_N = mkN "mustachio" "mustachios"; -- from DictEng -lin mustachioed_A = mkA "mustachioed" ; -lin mustang_N = mkN "mustang" "mustangs"; -- from DictEng -lin mustard_N = mkN "mustard" ; -- from DictEng -lin muster_N = mkN "muster" "musters"; -- from DictEng -lin muster_V = mkV "muster" "musters" "mustered" "mustered" "mustering"; -- from DictEng -lin muster_V2 = mkV2 (mkV "muster" "musters" "mustered" "mustered" "mustering"); -- from DictEng -lin musth_N = mkN "musth" ; -lin mustiness_N = mkN "mustiness" ; -- from DictEng -lin musty_A = mkA "musty" "mustier"; -- from DictEng -lin mutability_N = mkN "mutability" ; -- from DictEng -lin mutable_A = compoundA (mkA "mutable"); -- from DictEng -lin mutafacient_A = mkA "mutafacient" ; -lin mutagen_N = mkN "mutagen" ; -lin mutagenesis_N = mkN "mutagenesis" ; -lin mutagenic_A = mkA "mutagenic" ; -lin mutant_A = mkA "mutant" ; -lin mutant_N = mkN "mutant" ; -lin mutate_V = mkV "mutate" ; -lin mutate_V2 = mkV2 (mkV "mutate") ; -lin mutation_N = mkN "mutation" "mutations"; -- from DictEng -lin mutational_A = mkA "mutational" ; -lin mutatis_mutandis_Adv = mkAdv "mutatis mutandis"; -- from DictEng -lin mutative_A = mkA "mutative" ; -lin mutchkin_N = mkN "mutchkin" ; -lin mute_A = compoundA (mkA "mute"); -- from DictEng -lin mute_N = mkN "mute" "mutes"; -- from DictEng -lin mute_V2 = mkV2 (mkV "mute" "mutes" "muted" "muted" "muting"); -- from DictEng -lin mutely_Adv = mkAdv "mutely" ; -lin muteness_N = mkN "muteness" ; -lin mutilate_V = mkV "mutilate"; -- from DictEng -lin mutilate_V2 = mkV2 (mkV "mutilate" "mutilates" "mutilated" "mutilated" "mutilating"); -- from DictEng -lin mutilation_N = mkN "mutilation" "mutilations"; -- from DictEng -lin mutilator_N = mkN "mutilator" ; -lin mutineer_N = mkN "mutineer" "mutineers"; -- from DictEng -lin mutinous_A = compoundA (mkA "mutinous"); -- from DictEng -lin mutiny_N = mkN "mutiny" "mutinies"; -- from DictEng -lin mutiny_V = mkV "mutiny" "mutinies" "mutinied" "mutinied" "mutinying"; -- from DictEng -lin mutisia_N = mkN "mutisia" ; -lin mutism_N = mkN "mutism" ; -lin muton_N = mkN "muton" ; -lin mutt_N = mkN "mutt" "mutts"; -- from DictEng -lin mutter_N = mkN "mutter" "mutters"; -- from DictEng -lin mutter_V = mkV "mutter" "mutters" "muttered" "muttered" "muttering"; -- from DictEng -lin mutter_V2 = mkV2 (mkV "mutter" "mutters" "muttered" "muttered" "muttering"); -- from DictEng -lin mutterer_N = mkN "mutterer" "mutterers"; -- from DictEng -lin mutton_N = mkN "mutton" ; -- from DictEng -lin mutton_head_N = mkN "mutton - head" "mutton - heads"; -- from DictEng -lin mutual_A = compoundA (mkA "mutual"); -- from DictEng -lin mutuality_N = mkN "mutuality" ; -lin mutually_Adv = mkAdv "mutually" ; -lin muzhik_N = mkN "muzhik" ; -lin muzzle_N = mkN "muzzle" "muzzles"; -- from DictEng -lin muzzle_V2 = mkV2 (mkV "muzzle" "muzzles" "muzzled" "muzzled" "muzzling"); -- from DictEng -lin muzzle_loading_A = compoundA (mkA "muzzle loading") ; -lin muzzle_velocity_N = mkN "muzzle - velocity" "muzzle - velocities"; -- from DictEng -lin muzzler_N = mkN "muzzler" ; -lin muzzy_A = mkA "muzzy" "muzzier"; -- from DictEng -lin myalgia_N = mkN "myalgia" ; -lin myalgic_A = mkA "myalgic" ; -lin myasthenia_N = mkN "myasthenia" ; -lin mycelium_N = mkN "mycelium" ; -lin mycobacteria_N = mkN "mycobacteria" ; -lin mycologist_N = mkN "mycologist" ; -lin mycology_N = mkN "mycology" ; -- from DictEng -lin mycomycin_N = mkN "mycomycin" ; -lin mycophagist_N = mkN "mycophagist" ; -lin mycophagy_N = mkN "mycophagy" ; -lin mycoplasma_N = mkN "mycoplasma" ; -lin mycotoxin_N = mkN "mycotoxin" ; -lin mydriasis_N = mkN "mydriasis" ; -lin mydriatic_N = mkN "mydriatic" ; -lin myelatelia_N = mkN "myelatelia" ; -lin myelencephalon_N = mkN "myelencephalon" ; -lin myelic_A = mkA "myelic" ; -lin myelin_N = mkN "myelin" ; -lin myelinated_A = mkA "myelinated" ; -lin myelinic_A = mkA "myelinic" ; -lin myelinization_N = mkN "myelinization" ; -lin myelitis_N = mkN "myelitis" ; -- from DictEng -lin myeloblast_N = mkN "myeloblast" ; -lin myelocyte_N = mkN "myelocyte" ; -lin myelofibrosis_N = mkN "myelofibrosis" ; -lin myelogram_N = mkN "myelogram" ; -lin myelography_N = mkN "myelography" ; -lin myeloid_A = mkA "myeloid" ; -lin myeloma_N = mkN "myeloma" ; -lin myelomeningocele_N = mkN "myelomeningocele" ; -lin myiasis_N = mkN "myiasis" ; -lin mylodon_N = mkN "mylodon" ; -lin mylodontid_N = mkN "mylodontid" ; -lin myna_N = mkN "myna" "mynas"; -- from DictEng -lin mynah_N = mkN "mynah" "mynahs"; -- from DictEng -lin myocardial_A = mkA "myocardial" ; -lin myocardium_N = mkN "myocardium" ; -lin myoclonus_N = mkN "myoclonus" ; -lin myofibril_N = mkN "myofibril" ; -lin myoglobin_N = mkN "myoglobin" ; -lin myoglobinuria_N = mkN "myoglobinuria" ; -lin myogram_N = mkN "myogram" ; -lin myoid_A = mkA "myoid" ; -lin myology_N = mkN "myology" ; -lin myoma_N = mkN "myoma" ; -lin myometritis_N = mkN "myometritis" ; -lin myometrium_N = mkN "myometrium" ; -lin myonecrosis_N = mkN "myonecrosis" ; -lin myopathic_A = mkA "myopathic" ; -lin myopathy_N = mkN "myopathy" ; -lin myope_N = mkN "myope" ; -lin myopia_N = mkN "myopia" ; -- from DictEng -lin myopic_A = compoundA (mkA "myopic"); -- from DictEng -lin myosarcoma_N = mkN "myosarcoma" ; -lin myosin_N = mkN "myosin" ; -lin myositis_N = mkN "myositis" ; -lin myotomy_N = mkN "myotomy" ; -lin myotonia_N = mkN "myotonia" ; -lin myotonic_A = mkA "myotonic" ; -lin myriad_A = compoundA (mkA "myriad"); -- from DictEng -lin myriad_N = mkN "myriad" "myriads"; -- from DictEng -lin myriagram_N = mkN "myriagram" ; -lin myriameter_N = mkN "myriameter" ; -lin myriapod_N = mkN "myriapod" ; -lin myringectomy_N = mkN "myringectomy" ; -lin myringoplasty_N = mkN "myringoplasty" ; -lin myringotomy_N = mkN "myringotomy" ; -lin myrmecophagous_A = mkA "myrmecophagous" ; -lin myrmecophile_N = mkN "myrmecophile" ; -lin myrmecophilous_A = mkA "myrmecophilous" ; -lin myrmecophyte_N = mkN "myrmecophyte" ; -lin myrmecophytic_A = mkA "myrmecophytic" ; -lin myrmidon_N = mkN "myrmidon" "myrmidons"; -- from DictEng -lin myrrh_N = mkN "myrrh" ; -- from DictEng -lin myrtle_N = mkN "myrtle" "myrtles"; -- from DictEng -lin mysophilia_N = mkN "mysophilia" ; -lin mysophobia_N = mkN "mysophobia" ; -lin mysophobic_A = mkA "mysophobic" ; -lin mysterious_A = compoundA (mkA "mysterious"); -- from DictEng -lin mystery_N = mkN "mystery" "mysteries"; -- from DictEng -lin mystic_A = compoundA (mkA "mystic"); -- from DictEng -lin mystic_N = mkN "mystic" "mystics"; -- from DictEng -lin mystical_A = compoundA (mkA "mystical"); -- from DictEng -lin mystically_Adv = mkAdv "mystically" ; -lin mysticism_N = mkN "mysticism" ; -- from DictEng -lin mystification_N = mkN "mystification" "mystifications"; -- from DictEng -lin mystify_V2 = mkV2 (mkV "mystify" "mystifies" "mystified" "mystified" "mystifying"); -- from DictEng -lin mystique_N = mkN "mystique" "mystiques"; -- from DictEng -lin myth_N = mkN "myth" "myths"; -- from DictEng -lin mythic_A = mkA "mythic" ; -lin mythical_A = compoundA (mkA "mythical"); -- from DictEng -lin mythological_A = compoundA (mkA "mythological"); -- from DictEng -lin mythologist_N = mkN "mythologist" "mythologists"; -- from DictEng -lin mythologization_N = mkN "mythologization" ; -lin mythology_N = mkN "mythology" "mythologies"; -- from DictEng -lin myxedema_N = mkN "myxedema" ; -lin myxobacteria_N = mkN "myxobacteria" ; -lin myxoma_N = mkN "myxoma" ; -lin myxomatosis_N = mkN "myxomatosis" ; -- from DictEng -lin myxosporidian_N = mkN "myxosporidian" ; -lin myxovirus_N = mkN "myxovirus" ; -lin naafi_N = mkN "naafi" ; -- from DictEng -lin nab_V2 = mkV2 (mkV "nab" "nabs" "nabbed" "nabbed" "nabbing"); -- from DictEng -lin nabob_N = mkN "nabob" "nabobs"; -- from DictEng -lin naboom_N = mkN "naboom" ; -lin nabumetone_N = mkN "nabumetone" ; -lin nacelle_N = mkN "nacelle" "nacelles"; -- from DictEng -lin nacho_N = mkN "nacho" ; -lin nacre_N = mkN "nacre" ; -- from DictEng -lin nacreous_A = mkA "nacreous" ; -lin nadir_N = mkN "nadir" "nadirs"; -- from DictEng -lin nadolol_N = mkN "nadolol" ; -lin nafcillin_N = mkN "nafcillin" ; -lin nag_N = mkN "nag" "nags"; -- from DictEng -lin nag_V = mkV "nag" "nags" "nagged" "nagged" "nagging"; -- from DictEng -lin nag_V2 = mkV2 (mkV "nag" "nags" "nagged" "nagged" "nagging"); -- from DictEng -lin nagami_N = mkN "nagami" ; -lin nagger_N = mkN "nagger" "naggers"; -- from DictEng -lin nagi_N = mkN "nagi" ; -lin naiad_N = mkN "naiad" "naiads"; -- from DictEng -lin naiant_A = mkA "naiant" ; -lin naif_N = mkN "naif" ; -lin nail_N = mkN "nail" "nails"; -- from DictEng -lin nail_V2 = mkV2 (mkV "nail" "nails" "nailed" "nailed" "nailing"); -- from DictEng -lin nail_polish_N = mkN "nail - polish" "nail - polishes"; -- from DictEng -lin nail_varnish_N = mkN "nail - varnish" "nail - varnishes"; -- from DictEng -lin nailbrush_N = mkN "nailbrush" "nailbrushes"; -- from DictEng -lin nailer_N = mkN "nailer" ; -lin nailfile_N = mkN "nailfile" "nailfiles"; -- from DictEng -lin nailhead_N = mkN "nailhead" ; -lin nainsook_N = mkN "nainsook" ; -- from DictEng -lin naira_N = mkN "naira" "nairas"; -- from DictEng -lin naive_A = mkA "naive" ; -lin naive_1_A = compoundA (mkA "naive"); -- from DictEng -lin naive_2_A = compoundA (mkA "naïve"); -- from DictEng -lin naively_Adv = mkAdv "naively" ; -lin naivete_N = mkN "naiveté" "naivetés"; -- from DictEng -lin naivety_N = mkN "naivety" "naiveties"; -- from DictEng -lin naked_A = compoundA (mkA "naked"); -- from DictEng -lin naked_muzzled_A = compoundA (mkA "naked muzzled") ; -lin naked_tailed_A = compoundA (mkA "naked tailed") ; -lin nakedly_Adv = mkAdv "nakedly" ; -lin nakedness_N = mkN "nakedness" ; -- from DictEng -lin nakedwood_N = mkN "nakedwood" ; -lin nalorphine_N = mkN "nalorphine" ; -lin naloxone_N = mkN "naloxone" ; -lin naltrexone_N = mkN "naltrexone" ; -lin namby_pamby_A = compoundA (mkA "namby - pamby"); -- from DictEng -lin namby_pamby_N = mkN "namby - pamby" "namby - pambies"; -- from DictEng -lin namby_pamby_A = compoundA (mkA "namby - pamby"); -- from DictEng -lin namby_pamby_N = mkN "namby - pamby" "namby - pambies"; -- from DictEng -lin name_N = mkN "name" "names"; -- from DictEng -lin name_V2 = mkV2 (mkV "name" "names" "named" "named" "naming"); -- from DictEng -lin name_V2V = mkV2V (mkV "name") noPrep to_Prep ; -- from DictEng -lin name_VS = mkVS (mkV "name"); -- from DictEng -lin name_dropping_N = mkN "name - dropping" ; -- from DictEng -lin name_day_N = mkN "name - day" "name - days"; -- from DictEng -lin name_drop_V = mkV "name - drop" "name - drops" "name - dropped" "name - dropped" "name - dropping"; -- from DictEng -lin name_dropping_N = mkN "name - dropping" ; -- from DictEng -lin name_part_N = mkN "name - part" "name - parts"; -- from DictEng -lin nameko_N = mkN "nameko" ; -lin nameless_A = compoundA (mkA "nameless"); -- from DictEng -lin namely_Adv = mkAdv "namely"; -- from DictEng -lin nameplate_N = mkN "nameplate" "nameplates"; -- from DictEng -lin namer_N = mkN "namer" ; -lin namesake_N = mkN "namesake" "namesakes"; -- from DictEng -lin namibian_A = compoundA (mkA "namibian"); -- from DictEng -lin namibian_N = mkN "namibian" "namibians"; -- from DictEng -lin naming_N = mkN "naming" ; -lin nan_N = mkN "nan" ; -lin nandrolone_N = mkN "nandrolone" ; -lin nankeen_N = mkN "nankeen" ; -- from DictEng -lin nanny_N = mkN "nanny" "nannies"; -- from DictEng -lin nanny_goat_N = mkN "nanny - goat" "nanny - goats"; -- from DictEng -lin nanogram_N = mkN "nanogram" ; -lin nanometer_N = mkN "nanometer" ; -lin nanomia_N = mkN "nanomia" ; -lin nanophthalmos_N = mkN "nanophthalmos" ; -lin nanosecond_N = mkN "nanosecond" ; -lin nanotechnology_N = mkN "nanotechnology" ; -lin nanovolt_N = mkN "nanovolt" ; -lin nap_N = mkN "nap" "naps"; -- from DictEng -lin nap_V = mkV "nap" "naps" "napped" "napped" "napping"; -- from DictEng -lin nap_V2 = mkV2 (mkV "nap") ; -lin napalm_N = mkN "napalm" ; -- from DictEng -lin nape_N = mkN "nape" "napes"; -- from DictEng -lin napery_N = mkN "napery" ; -- from DictEng -lin naphazoline_N = mkN "naphazoline" ; -lin naphtha_N = mkN "naphtha" ; -- from DictEng -lin naphthalene_N = mkN "naphthalene" ; -- from DictEng -lin naphthol_N = mkN "naphthol" ; -lin napkin_N = mkN "napkin" "napkins"; -- from DictEng -lin napkin_ring_N = mkN "napkin - ring" "napkin - rings"; -- from DictEng -lin napoleon_N = mkN "napoleon" ; -lin napoleonic_A = compoundA (mkA "napoleonic"); -- from DictEng -lin napping_A = mkA "napping" ; -lin nappy_N = mkN "nappy" "nappies"; -- from DictEng -lin naprapath_N = mkN "naprapath" ; -lin naprapathy_N = mkN "naprapathy" ; -lin naproxen_N = mkN "naproxen" ; -lin napu_N = mkN "napu" ; -lin naranjilla_N = mkN "naranjilla" ; -lin narc_N = mkN "narc" ; -lin narcissism_N = mkN "narcissism" ; -- from DictEng -lin narcissist_N = mkN "narcissist" ; -lin narcissus_N = mkN "narcissus" "narcissuses"; -- from DictEng -lin narco_state_N = mkN "narco state" ; -lin narcolepsy_N = mkN "narcolepsy" ; -lin narcoleptic_A = mkA "narcoleptic" ; -lin narcoleptic_N = mkN "narcoleptic" ; -lin narcosis_N = mkN "narcosis" ; -lin narcoterrorism_N = mkN "narcoterrorism" ; -lin narcotic_A = compoundA (mkA "narcotic"); -- from DictEng -lin narcotic_N = mkN "narcotic" "narcotics"; -- from DictEng -lin nard_N = mkN "nard" ; -lin nardoo_N = mkN "nardoo" ; -lin narial_A = mkA "narial" ; -lin naris_N = mkN "naris" ; -lin nark_N = mkN "nark" "narks"; -- from DictEng -lin nark_V2 = mkV2 (mkV "nark" "narks" "narked" "narked" "narking"); -- from DictEng -lin narrate_V2 = mkV2 (mkV "narrate" "narrates" "narrated" "narrated" "narrating"); -- from DictEng -lin narration_N = mkN "narration" "narrations"; -- from DictEng -lin narrative_A = mkA "narrative" ; -lin narrative_N = mkN "narrative" "narratives"; -- from DictEng -lin narrator_N = mkN "narrator" "narrators"; -- from DictEng -lin narrow_A = mkA "narrow" "narrower"; -- from DictEng -lin narrow_N = mkN "narrow" "narrows"; -- from DictEng -lin narrow_V = mkV "narrow" "narrows" "narrowed" "narrowed" "narrowing"; -- from DictEng -lin narrow_V2 = mkV2 (mkV "narrow" "narrows" "narrowed" "narrowed" "narrowing"); -- from DictEng -lin narrow_bodied_A = compoundA (mkA "narrow bodied") ; -lin narrow_minded_A = compoundA (mkA "narrow - minded"); -- from DictEng -lin narrow_mindedly_Adv = mkAdv "narrow mindedly" ; -lin narrow_mindedness_N = mkN "narrow - mindedness" ; -- from DictEng -lin narrow_mouthed_A = compoundA (mkA "narrow mouthed") ; -lin narrow_minded_A = compoundA (mkA "narrow - minded"); -- from DictEng -lin narrow_mindedness_N = mkN "narrow - mindedness" ; -- from DictEng -lin narrowed_A = mkA "narrowed" ; -lin narrowing_N = mkN "narrowing" ; -lin narrowly_Adv = mkAdv "narrowly" ; -lin narrowness_N = mkN "narrowness" ; -- from DictEng -lin narthex_N = mkN "narthex" ; -lin narwhal_N = mkN "narwhal" "narwhals"; -- from DictEng -lin nary_A = mkA "nary" ; -lin nary_Predet = ss "nary"; -- from DictEng -lin nasal_A = compoundA (mkA "nasal"); -- from DictEng -lin nasal_N = mkN "nasal" "nasals"; -- from DictEng -lin nasality_N = mkN "nasality" ; -lin nasalization_N = mkN "nasalization" ; -lin nasalize_V2 = mkV2 (mkV "nasalize" "nasalizes" "nasalized" "nasalized" "nasalizing"); -- from DictEng -lin nasally_Adv = mkAdv "nasally" ; -lin nascent_A = compoundA (mkA "nascent"); -- from DictEng -lin nasion_N = mkN "nasion" ; -lin nasopharyngeal_A = mkA "nasopharyngeal" ; -lin nasopharynx_N = mkN "nasopharynx" ; -lin nastily_Adv = mkAdv "nastily"; -- from DictEng -lin nastiness_N = mkN "nastiness" ; -- from DictEng -lin nasturtium_N = mkN "nasturtium" "nasturtiums"; -- from DictEng -lin nasty_A = mkA "nasty" "nastier"; -- from DictEng -lin natal_A = compoundA (mkA "natal"); -- from DictEng -lin nation_N = mkN "nation" "nations"; -- from DictEng -lin national_A = compoundA (mkA "national"); -- from DictEng -lin national_N = mkN "national" "nationals"; -- from DictEng -lin national_socialist_A = compoundA (mkA "national socialist") ; -lin nationalism_N = mkN "nationalism" ; -- from DictEng -lin nationalist_A = compoundA (mkA "nationalist"); -- from DictEng -lin nationalist_N = mkN "nationalist" "nationalists"; -- from DictEng -lin nationalistic_A = compoundA (mkA "nationalistic"); -- from DictEng -lin nationality_N = mkN "nationality" "nationalities"; -- from DictEng -lin nationalization_N = mkN "nationalization" "nationalizations"; -- from DictEng -lin nationalize_V2 = mkV2 (mkV "nationalize" "nationalizes" "nationalized" "nationalized" "nationalizing"); -- from DictEng -lin nationally_Adv = mkAdv "nationally" ; -lin nationhood_N = mkN "nationhood" ; -lin nationwide_A = compoundA (mkA "nationwide"); -- from DictEng -lin nationwide_Adv = mkAdv "nationwide"; -- from DictEng -lin native_A = compoundA (mkA "native"); -- from DictEng -lin native_N = mkN "native" "natives"; -- from DictEng -lin native_born_A = compoundA (mkA "native born") ; -lin nativeness_N = mkN "nativeness" ; -lin nativism_N = mkN "nativism" ; -lin nativist_A = mkA "nativist" ; -lin nativist_N = mkN "nativist" ; -lin nativity_N = mkN "nativity" "nativities"; -- from DictEng -lin natriuresis_N = mkN "natriuresis" ; -lin natriuretic_A = mkA "natriuretic" ; -lin natrolite_N = mkN "natrolite" ; -lin natter_V = mkV "natter" "natters" "nattered" "nattered" "nattering"; -- from DictEng -lin natter_V2 = mkV2 (mkV "natter") ; -lin natterjack_N = mkN "natterjack" ; -lin nattily_Adv = mkAdv "nattily"; -- from DictEng -lin natty_A = mkA "natty" "nattier"; -- from DictEng -lin natural_A = compoundA (mkA "natural"); -- from DictEng -lin natural_N = mkN "natural" "naturals"; -- from DictEng -lin naturalism_N = mkN "naturalism" ; -- from DictEng -lin naturalist_N = mkN "naturalist" "naturalists"; -- from DictEng -lin naturalistic_A = compoundA (mkA "naturalistic"); -- from DictEng -lin naturalization_N = mkN "naturalization" ; -- from DictEng -lin naturalize_V = mkV "naturalize" "naturalizes" "naturalized" "naturalized" "naturalizing"; -- from DictEng -lin naturalize_V2 = mkV2 (mkV "naturalize" "naturalizes" "naturalized" "naturalized" "naturalizing"); -- from DictEng -lin naturalized_A = mkA "naturalized" ; -lin naturally_Adv = mkAdv "naturally" ; -lin naturally_occurring_A = compoundA (mkA "naturally occurring") ; -lin naturalness_N = mkN "naturalness" ; -- from DictEng -lin nature_N = mkN "nature" "natures"; -- from DictEng -lin naturism_N = mkN "naturism" ; -- from DictEng -lin naturist_N = mkN "naturist" "naturists"; -- from DictEng -lin naturistic_A = mkA "naturistic" ; -lin naturopath_N = mkN "naturopath" ; -lin naturopathy_N = mkN "naturopathy" ; -lin naught_N = mkN "naught" "naughts"; -- from DictEng -lin naughtily_Adv = mkAdv "naughtily"; -- from DictEng -lin naughtiness_N = mkN "naughtiness" ; -- from DictEng -lin naughty_A = mkA "naughty" "naughtier"; -- from DictEng -lin naumachy_N = mkN "naumachy" ; -lin nauruan_A = compoundA (mkA "nauruan"); -- from DictEng -lin nauruan_N = mkN "nauruan" "nauruans"; -- from DictEng -lin nausea_N = mkN "nausea" ; -- from DictEng -lin nauseate_V2 = mkV2 (mkV "nauseate" "nauseates" "nauseated" "nauseated" "nauseating"); -- from DictEng -lin nauseated_A = mkA "nauseated" ; -lin nauseating_A = mkA "nauseating" ; -lin nauseous_A = compoundA (mkA "nauseous"); -- from DictEng -lin nautch_N = mkN "nautch" "nautches"; -- from DictEng -lin nautch_girl_N = mkN "nautch - girl" "nautch - girls"; -- from DictEng -lin nautical_A = compoundA (mkA "nautical"); -- from DictEng -lin nautilus_N = mkN "nautilus" "nautiluses"; -- from DictEng -lin naval_A = compoundA (mkA "naval"); -- from DictEng -lin nave_N = mkN "nave" "naves"; -- from DictEng -lin navel_N = mkN "navel" "navels"; -- from DictEng -lin navicular_A = mkA "navicular" ; -lin navigability_N = mkN "navigability" ; -- from DictEng -lin navigable_A = compoundA (mkA "navigable"); -- from DictEng -lin navigate_V = mkV "navigate" "navigates" "navigated" "navigated" "navigating"; -- from DictEng -lin navigate_V2 = mkV2 (mkV "navigate" "navigates" "navigated" "navigated" "navigating"); -- from DictEng -lin navigation_N = mkN "navigation" ; -- from DictEng -lin navigational_A = mkA "navigational" ; -lin navigator_N = mkN "navigator" "navigators"; -- from DictEng -lin navvy_N = mkN "navvy" "navvies"; -- from DictEng -lin navy_N = mkN "navy" "navies"; -- from DictEng -lin nawab_N = mkN "nawab" ; -lin nay_Adv = mkAdv "nay"; -- from DictEng -lin nay_N = mkN "nay" ; -lin naysay_V2 = mkV2 (mkV "naysay"); -- from DictEng -lin naysayer_N = mkN "naysayer" ; -lin naysaying_N = mkN "naysaying" ; -lin nazi_A = compoundA (mkA "nazi"); -- from DictEng -lin nazi_N = mkN "nazi" "nazis"; -- from DictEng -lin nazism_N = mkN "nazism" ; -- from DictEng -lin nco_N = mkN "nco" ; -- from DictEng -lin ne'er_Adv = mkAdv "ne'er"; -- from DictEng -lin ne'er_do_well_N = mkN "ne'er - do - well" "ne'er - do - wells"; -- from DictEng -lin ne_plus_ultra_N = mkN "ne plus ultra" "ne plus ultrae" {- FIXME: guessed plural form -}; -- from DictEng -lin neanderthal_A = compoundA (mkA "neanderthal"); -- from DictEng -lin neap_N = mkN "neap" "neaps"; -- from DictEng -lin neap_tide_N = mkN "neap - tide" "neap - tides"; -- from DictEng -lin neapolitan_A = compoundA (mkA "neapolitan"); -- from DictEng -lin neapolitan_N = mkN "neapolitan" "neapolitans"; -- from DictEng -lin near_A = mkA "near" "nearer"; -- from DictEng -lin near_Adv = mkAdv "near"; -- from DictEng -lin near_Prep = mkPrep "near"; -- from DictEng -lin near_V = mkV "near" "nears" "neared" "neared" "nearing"; -- from DictEng -lin near_V2 = mkV2 (mkV "near" "nears" "neared" "neared" "nearing"); -- from DictEng -lin near_sighted_A = compoundA (mkA "near - sighted"); -- from DictEng -lin nearby_A = compoundA (mkA "nearby"); -- from DictEng -lin nearby_Adv = mkAdv "nearby" ; -lin nearer_Adv = mkAdv "nearer"; -- from DictEng -lin nearer_Prep = mkPrep "nearer"; -- from DictEng -lin nearest_Adv = mkAdv "nearest"; -- from DictEng -lin nearest_Prep = mkPrep "nearest"; -- from DictEng -lin nearness_N = mkN "nearness" ; -- from DictEng -lin nearside_N = mkN "nearside" "nearsides"; -- from DictEng -lin nearsighted_A = mkA "nearsighted" ; -lin neat_A = mkA "neat" "neater"; -- from DictEng -lin neaten_V2 = mkV2 (mkV "neaten") ; -lin neatly_Adv = mkAdv "neatly" ; -lin neatness_N = mkN "neatness" ; -- from DictEng -lin nebbish_N = mkN "nebbish" ; -lin nebuchadnezzar_N = mkN "nebuchadnezzar" ; -lin nebula_N = mkN "nebula" "nebulas"; -- from DictEng -lin nebular_A = compoundA (mkA "nebular"); -- from DictEng -lin nebule_N = mkN "nebule" ; -lin nebulous_A = compoundA (mkA "nebulous"); -- from DictEng -lin nebulously_Adv = mkAdv "nebulously" ; -lin necessarily_Adv = mkAdv "necessarily" ; -lin necessary_A = compoundA (mkA "necessary"); -- from DictEng -lin necessary_N = mkN "necessary" "necessaries"; -- from DictEng -lin necessitarian_N = mkN "necessitarian" ; -lin necessitate_V2 = mkV2 (mkV "necessitate" "necessitates" "necessitated" "necessitated" "necessitating"); -- from DictEng -lin necessitous_A = compoundA (mkA "necessitous"); -- from DictEng -lin necessity_N = mkN "necessity" "necessities"; -- from DictEng -lin neck_N = mkN "neck" "necks"; -- from DictEng -lin neck_V = mkV "neck" "necks" "necked" "necked" "necking"; -- from DictEng -lin neck_deep_A = compoundA (mkA "neck deep") ; -lin neck_and_neck_A = compoundA (mkA "neck and neck") ; -lin neck_and_neck_Adv = mkAdv "neck and neck" ; -lin neckband_N = mkN "neckband" "neckbands"; -- from DictEng -lin neckcloth_N = mkN "neckcloth" "neckcloths"; -- from DictEng -lin necked_A = mkA "necked" ; -lin necker_N = mkN "necker" ; -lin neckerchief_N = mkN "neckerchief" "neckerchiefs"; -- from DictEng -lin necklace_N = mkN "necklace" "necklaces"; -- from DictEng -lin neckless_A = mkA "neckless" ; -lin necklet_N = mkN "necklet" "necklets"; -- from DictEng -lin necklike_A = mkA "necklike" ; -lin neckline_N = mkN "neckline" "necklines"; -- from DictEng -lin neckpiece_N = mkN "neckpiece" ; -lin necktie_N = mkN "necktie" "neckties"; -- from DictEng -lin neckwear_N = mkN "neckwear" ; -- from DictEng -lin necrobiosis_N = mkN "necrobiosis" ; -lin necrology_N = mkN "necrology" ; -lin necrolysis_N = mkN "necrolysis" ; -lin necromancer_N = mkN "necromancer" "necromancers"; -- from DictEng -lin necromancy_N = mkN "necromancy" ; -- from DictEng -lin necromantic_A = mkA "necromantic" ; -lin necrophagia_N = mkN "necrophagia" ; -lin necrophilia_N = mkN "necrophilia" ; -lin necropolis_N = mkN "necropolis" "necropolises"; -- from DictEng -lin necrosis_N = mkN "necrosis" ; -lin necrotic_A = mkA "necrotic" ; -lin nectar_N = mkN "nectar" ; -- from DictEng -lin nectar_rich_A = compoundA (mkA "nectar rich") ; -lin nectariferous_A = mkA "nectariferous" ; -lin nectarine_N = mkN "nectarine" "nectarines"; -- from DictEng -lin nectary_N = mkN "nectary" ; -lin nee_A = compoundA (mkA "née"); -- from DictEng -lin need_N = mkN "need" "needs"; -- from DictEng -lin need_V = mkV "need"; -- from DictEng -lin need_V2 = mkV2 (mkV "need" "needs" "needed" "needed" "needing"); -- from DictEng -lin need_V2V = mkV2V (mkV "need" "needs" "needed" "needed" "needing") noPrep to_Prep ; -- from DictEng -lin need_VS = mkVS (mkV "need" "needs" "needed" "needed" "needing"); -- from DictEng -lin need_VV = mkVV (mkV "need" "needs" "needed" "needed" "needing") ; -- from DictEng -lin needed_A = mkA "needed" ; -lin needful_A = compoundA (mkA "needful"); -- from DictEng -lin neediness_N = mkN "neediness" ; -lin needle_N = mkN "needle" "needles"; -- from DictEng -lin needle_V2 = mkV2 (mkV "needle" "needles" "needled" "needled" "needling"); -- from DictEng -lin needlebush_N = mkN "needlebush" ; -lin needlecraft_N = mkN "needlecraft" ; -- from DictEng -lin needled_A = mkA "needled" ; -lin needlefish_N = mkN "needlefish" ; -lin needlepoint_N = mkN "needlepoint" ; -lin needless_A = compoundA (mkA "needless"); -- from DictEng -lin needlessly_Adv = mkAdv "needlessly" ; -lin needlewoman_N = mkN "needlewoman" "needlewomen" {- FIXME: guessed plural form -}; -- from DictEng -lin needlewood_N = mkN "needlewood" ; -lin needlework_N = mkN "needlework" ; -- from DictEng -lin needleworker_N = mkN "needleworker" ; -lin needs_Adv = mkAdv "needs"; -- from DictEng -lin needy_A = mkA "needy" "needier"; -- from DictEng -lin needy_N = mkN "needy" ; -lin neem_N = mkN "neem" ; -lin neencephalon_N = mkN "neencephalon" ; -lin nefarious_A = compoundA (mkA "nefarious"); -- from DictEng -lin nefariously_Adv = mkAdv "nefariously" ; -lin nefariousness_N = mkN "nefariousness" ; -- from DictEng -lin nefazodone_N = mkN "nefazodone" ; -lin negate_V2 = mkV2 (mkV "negate" "negates" "negated" "negated" "negating"); -- from DictEng -lin negation_N = mkN "negation" ; -- from DictEng -lin negative_A = compoundA (mkA "negative"); -- from DictEng -lin negative_N = mkN "negative" "negatives"; -- from DictEng -lin negative_V2 = mkV2 (mkV "negative" "negatives" "negatived" "negatived" "negativing"); -- from DictEng -lin negatively_Adv = mkAdv "negatively" ; -lin negativist_N = mkN "negativist" ; -lin negativity_N = mkN "negativity" ; -lin neglect_N = mkN "neglect" ; -- from DictEng -lin neglect_V2 = mkV2 (mkV "neglect" "neglects" "neglected" "neglected" "neglecting"); -- from DictEng -lin neglected_A = mkA "neglected" ; -lin neglecter_N = mkN "neglecter" ; -lin neglectful_A = compoundA (mkA "neglectful"); -- from DictEng -lin neglectfully_Adv = mkAdv "neglectfully" ; -lin neglectfulness_N = mkN "neglectfulness" ; -- from DictEng -lin neglige_N = mkN "négligé" "négligés"; -- from DictEng -lin negligee_N = mkN "negligee" "negligees"; -- from DictEng -lin negligence_N = mkN "negligence" ; -- from DictEng -lin negligent_A = compoundA (mkA "negligent"); -- from DictEng -lin negligently_Adv = mkAdv "negligently" ; -lin negligible_A = compoundA (mkA "negligible"); -- from DictEng -lin negotiable_A = compoundA (mkA "negotiable"); -- from DictEng -lin negotiate_V = mkV "negotiate" "negotiates" "negotiated" "negotiated" "negotiating"; -- from DictEng -lin negotiate_V2 = mkV2 (mkV "negotiate" "negotiates" "negotiated" "negotiated" "negotiating"); -- from DictEng -lin negotiate_VV = mkVV (mkV "negotiate" "negotiates" "negotiated" "negotiated" "negotiating"); -- from DictEng -lin negotiation_N = mkN "negotiation" "negotiations"; -- from DictEng -lin negotiator_N = mkN "negotiator" "negotiators"; -- from DictEng -lin negotiatress_N = mkN "negotiatress" ; -lin negress_N = mkN "negress" "negresses"; -- from DictEng -lin negro_A = mkA "negro" ; -lin negro_N = mkN "negro" "negroes"; -- from DictEng -lin negroid_A = compoundA (mkA "negroid"); -- from DictEng -lin negroid_N = mkN "negroid" "negroids"; -- from DictEng -lin negus_N = mkN "negus" "neguses"; -- from DictEng -lin neigh_N = mkN "neigh" "neighs"; -- from DictEng -lin neigh_V = mkV "neigh" "neighs" "neighed" "neighed" "neighing"; -- from DictEng -lin neighbor_N = mkN "neighbor" ; -lin neighbor_V2 = mkV2 (mkV "neighbor") ; -lin neighborhood_N = mkN "neighborhood" ; -lin neighborliness_N = mkN "neighborliness" ; -lin neighborly_A = mkA "neighborly" ; -lin neighbour_N = mkN "neighbour" "neighbours"; -- from DictEng -lin neighbour_V = mkV "neighbour" "neighbours" "neighboured" "neighboured" "neighbouring"; -- from DictEng -lin neighbour_V2 = mkV2 (mkV "neighbour" "neighbours" "neighboured" "neighboured" "neighbouring"); -- from DictEng -lin neighbourhood_N = mkN "neighbourhood" "neighbourhoods"; -- from DictEng -lin neighbourliness_N = mkN "neighbourliness" ; -- from DictEng -lin neighbourly_A = compoundA (mkA "neighbourly"); -- from DictEng -lin neither_A = compoundA (mkA "neither"); -- from DictEng -lin neither_Adv = mkAdv "neither"; -- from DictEng -lin neither_Prep = mkPrep "neither"; -- from DictEng -lin neither7nor_DConj = mkConj "neither" "nor"; -- from DictEng -lin nekton_N = mkN "nekton" ; -lin nelfinavir_N = mkN "nelfinavir" ; -lin nelly_N = mkN "nelly" "IRREG"; -- from DictEng -lin nelson_N = mkN "nelson" ; -lin nem_con_Adv = mkAdv "nem con"; -- from DictEng -lin nematode_N = mkN "nematode" ; -lin nemesis_N = mkN "nemesis" "nemeses" {- FIXME: guessed plural form -}; -- from DictEng -lin nemophila_N = mkN "nemophila" ; -lin neo_A = mkA "neo" ; -lin neo_darwinian_A = compoundA (mkA "neo Darwinian") ; -lin neo_darwinism_N = mkN "neo Darwinism" ; -lin neo_lamarckian_A = compoundA (mkA "neo Lamarckian") ; -lin neoclassic_A = mkA "neoclassic" ; -lin neoclassicism_N = mkN "neoclassicism" ; -lin neoclassicist_A = mkA "neoclassicist" ; -lin neoclassicist_N = mkN "neoclassicist" ; -lin neocolonialism_N = mkN "neocolonialism" ; -- from DictEng -lin neoconservatism_N = mkN "neoconservatism" ; -lin neoconservative_N = mkN "neoconservative" ; -lin neocortical_A = mkA "neocortical" ; -lin neodymium_N = mkN "neodymium" ; -lin neoexpressionism_N = mkN "neoexpressionism" ; -lin neoliberal_A = mkA "neoliberal" ; -lin neoliberal_N = mkN "neoliberal" ; -lin neoliberalism_N = mkN "neoliberalism" ; -lin neolith_N = mkN "neolith" ; -lin neolithic_A = compoundA (mkA "neolithic"); -- from DictEng -lin neologism_N = mkN "neologism" "neologisms"; -- from DictEng -lin neologist_N = mkN "neologist" ; -lin neomycin_N = mkN "neomycin" ; -lin neon_N = mkN "neon" ; -- from DictEng -lin neonatal_A = mkA "neonatal" ; -lin neonate_N = mkN "neonate" ; -lin neonatology_N = mkN "neonatology" ; -lin neopallium_N = mkN "neopallium" ; -lin neophobia_N = mkN "neophobia" ; -lin neophyte_N = mkN "neophyte" "neophytes"; -- from DictEng -lin neoplasia_N = mkN "neoplasia" ; -lin neoplasm_N = mkN "neoplasm" "neoplasms"; -- from DictEng -lin neoplastic_A = mkA "neoplastic" ; -lin neoprene_N = mkN "neoprene" ; -lin neoromanticism_N = mkN "neoromanticism" ; -lin neostigmine_N = mkN "neostigmine" ; -lin neotenic_A = mkA "neotenic" ; -lin neoteny_N = mkN "neoteny" ; -lin neotony_N = mkN "neotony" ; -lin nepalese_A = compoundA (mkA "nepalese"); -- from DictEng -lin nepalese_N = mkN "nepalese" "nepalese"; -- from DictEng -lin nepali_A = compoundA (mkA "nepali"); -- from DictEng -lin nepali_N = mkN "nepali" "nepalis"; -- from DictEng -lin nepheline_N = mkN "nepheline" ; -lin nephelinite_N = mkN "nephelinite" ; -lin nephew_N = mkN "nephew" "nephews"; -- from DictEng -lin nephology_N = mkN "nephology" ; -lin nephoscope_N = mkN "nephoscope" ; -lin nephralgia_N = mkN "nephralgia" ; -lin nephrectomy_N = mkN "nephrectomy" ; -lin nephrite_N = mkN "nephrite" ; -lin nephritic_A = mkA "nephritic" ; -lin nephritis_N = mkN "nephritis" ; -- from DictEng -lin nephrocalcinosis_N = mkN "nephrocalcinosis" ; -lin nephrolithiasis_N = mkN "nephrolithiasis" ; -lin nephrology_N = mkN "nephrology" ; -lin nephron_N = mkN "nephron" ; -lin nephroptosis_N = mkN "nephroptosis" ; -lin nephrosclerosis_N = mkN "nephrosclerosis" ; -lin nephrotomy_N = mkN "nephrotomy" ; -lin nephrotoxic_A = mkA "nephrotoxic" ; -lin nephrotoxin_N = mkN "nephrotoxin" ; -lin nephthytis_N = mkN "nephthytis" ; -lin nepotism_N = mkN "nepotism" ; -- from DictEng -lin nepotist_N = mkN "nepotist" ; -lin neptunium_N = mkN "neptunium" ; -lin nerd_N = mkN "nerd" ; -lin nereid_N = mkN "nereid" "nereids"; -- from DictEng -lin nerita_N = mkN "nerita" ; -lin neritic_A = mkA "neritic" ; -lin neritid_N = mkN "neritid" ; -lin neritina_N = mkN "neritina" ; -lin nerve_N = mkN "nerve" "nerves"; -- from DictEng -lin nerve_V2 = mkV2 (mkV "nerve" "nerves" "nerved" "nerved" "nerving"); -- from DictEng -lin nerve_racking_A = compoundA (mkA "nerve - racking"); -- from DictEng -lin nerve_cell_N = mkN "nerve - cell" "nerve - cells"; -- from DictEng -lin nerve_centre_N = mkN "nerve - centre" "nerve - centres"; -- from DictEng -lin nerve_racking_A = compoundA (mkA "nerve - racking"); -- from DictEng -lin nerveless_A = compoundA (mkA "nerveless"); -- from DictEng -lin nerves_N = mkN "nerves" ; -lin nervous_A = compoundA (mkA "nervous"); -- from DictEng -lin nervously_Adv = mkAdv "nervously" ; -lin nervousness_N = mkN "nervousness" ; -- from DictEng -lin nervy_A = compoundA (mkA "nervy"); -- from DictEng -lin nescience_N = mkN "nescience" ; -- from DictEng -lin nescient_A = compoundA (mkA "nescient"); -- from DictEng -lin ness_N = mkN "ness" "nesses"; -- from DictEng -lin nest_N = mkN "nest" "nests"; -- from DictEng -lin nest_V = mkV "nest" "nests" "nested" "nested" "nesting"; -- from DictEng -lin nest_egg_N = mkN "nest - egg" "nest - eggs"; -- from DictEng -lin nester_N = mkN "nester" ; -lin nestle_V = mkV "nestle" "nestles" "nestled" "nestled" "nestling"; -- from DictEng -lin nestle_V2 = mkV2 (mkV "nestle" "nestles" "nestled" "nestled" "nestling"); -- from DictEng -lin nestled_A = mkA "nestled" ; -lin nestling_N = mkN "nestling" "nestlings"; -- from DictEng -lin net_A = compoundA (mkA "net"); -- from DictEng -lin net_N = mkN "net" "nets"; -- from DictEng -lin net_V2 = mkV2 (mkV "net" "nets" "netted" "netted" "netting"); -- from DictEng -lin netball_N = mkN "netball" ; -- from DictEng -lin nether_A = compoundA (mkA "nether"); -- from DictEng -lin netherlander_N = mkN "netherlander" "netherlanders"; -- from DictEng -lin nethermost_A = compoundA (mkA "nethermost"); -- from DictEng -lin netmail_V2 = mkV2 (mkV "netmail") ; -lin nett_A = compoundA (mkA "nett"); -- from DictEng -lin nett_V2 = mkV2 (mkV "nett" "netts" "netted" "netted" "netting"); -- from DictEng -lin netting_N = mkN "netting" ; -- from DictEng -lin nettle_N = mkN "nettle" "nettles"; -- from DictEng -lin nettle_V2 = mkV2 (mkV "nettle" "nettles" "nettled" "nettled" "nettling"); -- from DictEng -lin nettlerash_N = mkN "nettlerash" ; -- from DictEng -lin network_N = mkN "network" "networks"; -- from DictEng -lin networklike_A = mkA "networklike" ; -lin neural_A = compoundA (mkA "neural"); -- from DictEng -lin neuralgia_N = mkN "neuralgia" ; -- from DictEng -lin neuralgic_A = compoundA (mkA "neuralgic"); -- from DictEng -lin neurasthenia_N = mkN "neurasthenia" ; -- from DictEng -lin neurasthenic_A = compoundA (mkA "neurasthenic"); -- from DictEng -lin neurasthenic_N = mkN "neurasthenic" "neurasthenics"; -- from DictEng -lin neurectomy_N = mkN "neurectomy" ; -lin neurinoma_N = mkN "neurinoma" ; -lin neuritis_N = mkN "neuritis" ; -- from DictEng -lin neuroanatomic_A = mkA "neuroanatomic" ; -lin neuroanatomy_N = mkN "neuroanatomy" ; -lin neurobiological_A = mkA "neurobiological" ; -lin neurobiological_Adv = mkAdv "neurobiological" ; -lin neurobiologist_N = mkN "neurobiologist" ; -lin neurobiology_N = mkN "neurobiology" ; -lin neuroblast_N = mkN "neuroblast" ; -lin neuroblastoma_N = mkN "neuroblastoma" ; -lin neurochemical_N = mkN "neurochemical" ; -lin neurodermatitis_N = mkN "neurodermatitis" ; -lin neuroendocrine_A = mkA "neuroendocrine" ; -lin neuroepithelioma_N = mkN "neuroepithelioma" ; -lin neuroepithelium_N = mkN "neuroepithelium" ; -lin neuroethics_N = mkN "neuroethics" ; -lin neurofibroma_N = mkN "neurofibroma" ; -lin neurofibromatosis_N = mkN "neurofibromatosis" ; -lin neurogenesis_N = mkN "neurogenesis" ; -lin neurogenic_A = mkA "neurogenic" ; -lin neuroglia_N = mkN "neuroglia" ; -lin neurogliacyte_N = mkN "neurogliacyte" ; -lin neuroglial_A = mkA "neuroglial" ; -lin neurohormone_N = mkN "neurohormone" ; -lin neurolemma_N = mkN "neurolemma" ; -lin neurolinguist_N = mkN "neurolinguist" ; -lin neurolinguistics_N = mkN "neurolinguistics" ; -lin neurological_A = mkA "neurological" ; -lin neurologist_N = mkN "neurologist" "neurologists"; -- from DictEng -lin neurology_N = mkN "neurology" ; -- from DictEng -lin neuroma_N = mkN "neuroma" ; -lin neuromatous_A = mkA "neuromatous" ; -lin neuromotor_A = mkA "neuromotor" ; -lin neuromuscular_A = mkA "neuromuscular" ; -lin neuropathy_N = mkN "neuropathy" ; -lin neurophysiological_A = mkA "neurophysiological" ; -lin neurophysiology_N = mkN "neurophysiology" ; -lin neuropil_N = mkN "neuropil" ; -lin neuroplasty_N = mkN "neuroplasty" ; -lin neuropsychiatric_A = mkA "neuropsychiatric" ; -lin neuropsychiatry_N = mkN "neuropsychiatry" ; -lin neuropsychological_A = mkA "neuropsychological" ; -lin neuropteron_N = mkN "neuropteron" ; -lin neurosarcoma_N = mkN "neurosarcoma" ; -lin neuroscience_N = mkN "neuroscience" ; -lin neuroscientist_N = mkN "neuroscientist" ; -lin neurosis_N = mkN "neurosis" "neuroses" {- FIXME: guessed plural form -}; -- from DictEng -lin neurosurgeon_N = mkN "neurosurgeon" ; -lin neurosurgery_N = mkN "neurosurgery" ; -lin neurosyphilis_N = mkN "neurosyphilis" ; -lin neurotic_A = compoundA (mkA "neurotic"); -- from DictEng -lin neurotic_N = mkN "neurotic" "neurotics"; -- from DictEng -lin neurotically_Adv = mkAdv "neurotically"; -- from DictEng -lin neurotoxic_A = mkA "neurotoxic" ; -lin neurotoxin_N = mkN "neurotoxin" ; -lin neurotransmitter_N = mkN "neurotransmitter" ; -lin neurotropic_A = mkA "neurotropic" ; -lin neurotropism_N = mkN "neurotropism" ; -lin neuter_A = compoundA (mkA "neuter"); -- from DictEng -lin neuter_N = mkN "neuter" "neuters"; -- from DictEng -lin neuter_V2 = mkV2 (mkV "neuter" "neuters" "neutered" "neutered" "neutering"); -- from DictEng -lin neutering_N = mkN "neutering" ; -lin neutral_A = compoundA (mkA "neutral"); -- from DictEng -lin neutral_N = mkN "neutral" "neutrals"; -- from DictEng -lin neutral_colored_A = compoundA (mkA "neutral colored") ; -lin neutralism_N = mkN "neutralism" ; -lin neutralist_N = mkN "neutralist" ; -lin neutrality_N = mkN "neutrality" ; -- from DictEng -lin neutralization_N = mkN "neutralization" "neutralizations"; -- from DictEng -lin neutralize_V2 = mkV2 (mkV "neutralize" "neutralizes" "neutralized" "neutralized" "neutralizing"); -- from DictEng -lin neutralized_A = mkA "neutralized" ; -lin neutrino_N = mkN "neutrino" ; -lin neutron_N = mkN "neutron" "neutrons"; -- from DictEng -lin neutropenia_N = mkN "neutropenia" ; -lin neutrophil_N = mkN "neutrophil" ; -lin neve_N = mkN "neve" ; -lin never_AdV = mkAdV "never"; -- from DictEng -lin never_Adv = mkAdv "never" ; -lin nevermore_Adv = mkAdv "nevermore"; -- from DictEng -lin nevertheless_Adv = mkAdv "nevertheless"; -- from DictEng -lin nevirapine_N = mkN "nevirapine" ; -lin new_A = mkA "new" "newer"; -- from DictEng -lin new_Adv = mkAdv "new"; -- from DictEng -lin new_made_A = compoundA (mkA "new made") ; -lin new_mown_A = compoundA (mkA "new mown") ; -lin newborn_A = mkA "newborn" ; -lin newcomer_N = mkN "newcomer" "newcomers"; -- from DictEng -lin newel_N = mkN "newel" "newels"; -- from DictEng -lin newfangled_A = compoundA (mkA "newfangled"); -- from DictEng -lin newfound_A = mkA "newfound" ; -lin newly_Adv = mkAdv "newly" ; -lin newlywed_N = mkN "newlywed" "newlyweds"; -- from DictEng -lin newmarket_N = mkN "newmarket" ; -- from DictEng -lin newness_N = mkN "newness" ; -- from DictEng -lin news_N = mkN "news" ; -- from DictEng -lin newsagent_N = mkN "newsagent" "newsagents"; -- from DictEng -lin newsboy_N = mkN "newsboy" "newsboys"; -- from DictEng -lin newscast_N = mkN "newscast" "newscasts"; -- from DictEng -lin newscaster_N = mkN "newscaster" "newscasters"; -- from DictEng -lin newsdealer_N = mkN "newsdealer" "newsdealers"; -- from DictEng -lin newsflash_N = mkN "newsflash" "newsflashes"; -- from DictEng -lin newsless_A = compoundA (mkA "newsless"); -- from DictEng -lin newsletter_N = mkN "newsletter" "newsletters"; -- from DictEng -lin newsmonger_N = mkN "newsmonger" "newsmongers"; -- from DictEng -lin newspaper_N = mkN "newspaper" "newspapers"; -- from DictEng -lin newspapering_N = mkN "newspapering" ; -lin newspaperman_N = mkN "newspaperman" "newspapermen" {- FIXME: guessed plural form -}; -- from DictEng -lin newspeak_N = mkN "newspeak" ; -lin newsprint_N = mkN "newsprint" ; -- from DictEng -lin newsreader_N = mkN "newsreader" ; -lin newsreel_N = mkN "newsreel" "newsreels"; -- from DictEng -lin newsroom_N = mkN "newsroom" "newsrooms"; -- from DictEng -lin newssheet_N = mkN "newssheet" "newssheets"; -- from DictEng -lin newsstand_N = mkN "newsstand" "newsstands"; -- from DictEng -lin newsvendor_N = mkN "newsvendor" "newsvendors"; -- from DictEng -lin newswoman_N = mkN "newswoman" ; -lin newsworthiness_N = mkN "newsworthiness" ; -lin newsworthy_A = compoundA (mkA "newsworthy"); -- from DictEng -lin newsy_A = mkA "newsy" "newsier"; -- from DictEng -lin newt_N = mkN "newt" "newts"; -- from DictEng -lin newton_N = mkN "newton" ; -lin newtonian_A = compoundA (mkA "newtonian"); -- from DictEng -lin newtonian_N = mkN "newtonian" "newtonians"; -- from DictEng -lin next_A = irregAdv (compoundA (mkA "next")) "next"; -- from DictEng -lin next_Adv = mkAdv "next" ; -lin next_N = mkN "next" "next"; -- from DictEng -lin next_Prep = mkPrep "next"; -- from DictEng -lin next_door_Adv = mkAdv "next door" ; -lin nexus_N = mkN "nexus" "nexuses"; -- from DictEng -lin ngultrum_N = mkN "ngultrum" ; -lin ngwee_N = mkN "ngwee" ; -lin nhs_N = mkN "nhs" ; -- from DictEng -lin niacin_N = mkN "niacin" ; -lin nib_N = mkN "nib" "nibs"; -- from DictEng -lin nibbed_A = mkA "nibbed" ; -lin nibble_N = mkN "nibble" "nibbles"; -- from DictEng -lin nibble_V = mkV "nibble" "nibbles" "nibbled" "nibbled" "nibbling"; -- from DictEng -lin nibble_V2 = mkV2 (mkV "nibble" "nibbles" "nibbled" "nibbled" "nibbling"); -- from DictEng -lin nibbler_N = mkN "nibbler" ; -lin niblick_N = mkN "niblick" ; -lin nicad_N = mkN "nicad" ; -lin nicaraguan_A = compoundA (mkA "nicaraguan"); -- from DictEng -lin nicaraguan_N = mkN "nicaraguan" "nicaraguans"; -- from DictEng -lin nice_A = mkA "nice" "nicer"; -- from DictEng -lin nicely_Adv = mkAdv "nicely" ; -lin niceness_N = mkN "niceness" ; -- from DictEng -lin nicety_N = mkN "nicety" "niceties"; -- from DictEng -lin niche_N = mkN "niche" "niches"; -- from DictEng -lin nick_N = mkN "nick" "nicks"; -- from DictEng -lin nick_V2 = mkV2 (mkV "nick" "nicks" "nicked" "nicked" "nicking"); -- from DictEng -lin nickel_N = mkN "nickel" "nickels"; -- from DictEng -lin nickel_V2 = mkV2 (mkV "nickel" "nickels" "nickelled" "nickelled" "nickelling"); -- from DictEng -lin nickel_and_dime_A = compoundA (mkA "nickel and dime") ; -lin nicknack_N = mkN "nicknack" "nicknacks"; -- from DictEng -lin nickname_N = mkN "nickname" "nicknames"; -- from DictEng -lin nickname_V2 = mkV2 (mkV "nickname" "nicknames" "nicknamed" "nicknamed" "nicknaming"); -- from DictEng -lin nickname_VS = mkVS (mkV "nickname"); -- from DictEng -lin nicotine_N = mkN "nicotine" ; -- from DictEng -lin nidicolous_A = mkA "nidicolous" ; -lin nidifugous_A = mkA "nidifugous" ; -lin nidus_N = mkN "nidus" ; -lin niece_N = mkN "niece" "nieces"; -- from DictEng -lin nifedipine_N = mkN "nifedipine" ; -lin niff_N = mkN "niff" "niffs"; -- from DictEng -lin niffy_A = mkA "niffy" "niffier"; -- from DictEng -lin nifty_A = mkA "nifty" "niftier"; -- from DictEng -lin nigella_N = mkN "nigella" ; -lin nigerian_A = compoundA (mkA "nigerian"); -- from DictEng -lin nigerian_N = mkN "nigerian" "nigerians"; -- from DictEng -lin nigerien_A = compoundA (mkA "nigerien"); -- from DictEng -lin nigerien_N = mkN "nigerien" "nigeriens"; -- from DictEng -lin niggard_N = mkN "niggard" "niggards"; -- from DictEng -lin niggardliness_N = mkN "niggardliness" ; -- from DictEng -lin niggardly_A = compoundA (mkA "niggardly"); -- from DictEng -lin nigger_N = mkN "nigger" "niggers"; -- from DictEng -lin niggle_V = mkV "niggle" "niggles" "niggled" "niggled" "niggling"; -- from DictEng -lin niggling_A = compoundA (mkA "niggling"); -- from DictEng -lin nigh_Adv = mkAdv "nigh"; -- from DictEng -lin nigher_Adv = mkAdv "nigher"; -- from DictEng -lin nighest_Adv = mkAdv "nighest"; -- from DictEng -lin night_N = mkN "night" "nights"; -- from DictEng -lin night_light_N = mkN "night - light" "night - lights"; -- from DictEng -lin night_line_N = mkN "night - line" "night - lines"; -- from DictEng -lin night_stop_N = mkN "night - stop" "night - stops"; -- from DictEng -lin night_bell_N = mkN "night - bell" "night - bells"; -- from DictEng -lin night_bird_N = mkN "night - bird" "night - birds"; -- from DictEng -lin night_light_N = mkN "night - light" "night - lights"; -- from DictEng -lin night_line_N = mkN "night - line" "night - lines"; -- from DictEng -lin night_porter_N = mkN "night - porter" "night - porters"; -- from DictEng -lin night_soil_N = mkN "night - soil" ; -- from DictEng -lin night_stop_N = mkN "night - stop" "night - stops"; -- from DictEng -lin night_time_N = mkN "night - time" ; -- from DictEng -lin night_watch_N = mkN "night - watch" "night - watches"; -- from DictEng -lin night_watchman_N = mkN "night - watchman" "night - watchmen"; -- from DictEng -lin nightcap_N = mkN "nightcap" "nightcaps"; -- from DictEng -lin nightclub_N = mkN "nightclub" "nightclubs"; -- from DictEng -lin nightdress_N = mkN "nightdress" "nightdresses"; -- from DictEng -lin nightfall_N = mkN "nightfall" ; -- from DictEng -lin nightgown_N = mkN "nightgown" "nightgowns"; -- from DictEng -lin nighthawk_N = mkN "nighthawk" ; -lin nightie_N = mkN "nightie" "nighties"; -- from DictEng -lin nightingale_N = mkN "nightingale" "nightingales"; -- from DictEng -lin nightjar_N = mkN "nightjar" "nightjars"; -- from DictEng -lin nightlife_N = mkN "nightlife" ; -lin nightlong_A = compoundA (mkA "nightlong"); -- from DictEng -lin nightly_A = compoundA (mkA "nightly"); -- from DictEng -lin nightly_Adv = mkAdv "nightly"; -- from DictEng -lin nightmare_N = mkN "nightmare" "nightmares"; -- from DictEng -lin nightmarish_A = compoundA (mkA "nightmarish"); -- from DictEng -lin nightshade_N = mkN "nightshade" ; -- from DictEng -lin nightshirt_N = mkN "nightshirt" "nightshirts"; -- from DictEng -lin nightwear_N = mkN "nightwear" ; -lin nightwork_N = mkN "nightwork" ; -- from DictEng -lin nihil_N = mkN "nihil" ; -lin nihilism_N = mkN "nihilism" ; -- from DictEng -lin nihilist_N = mkN "nihilist" "nihilists"; -- from DictEng -lin nihilistic_A = compoundA (mkA "nihilistic"); -- from DictEng -lin nil_N = mkN "nil" ; -- from DictEng -lin nilgai_N = mkN "nilgai" ; -lin nilotic_A = compoundA (mkA "nilotic"); -- from DictEng -lin nilpotent_A = mkA "nilpotent" ; -lin nim_N = mkN "nim" ; -lin nimble_A = mkA "nimble" "nimbler"; -- from DictEng -lin nimbleness_N = mkN "nimbleness" ; -- from DictEng -lin nimblewill_N = mkN "nimblewill" ; -lin nimbly_Adv = mkAdv "nimbly"; -- from DictEng -lin nimbus_N = mkN "nimbus" "nimbuses"; -- from DictEng -lin niminy_piminy_A = compoundA (mkA "niminy - piminy"); -- from DictEng -lin nincompoop_N = mkN "nincompoop" "nincompoops"; -- from DictEng -lin nine_A = mkA "nine" ; -lin nine_N = mkN "nine" ; -lin nine_membered_A = compoundA (mkA "nine membered") ; -lin nine_sided_A = compoundA (mkA "nine sided") ; -lin nine_spot_N = mkN "nine spot" ; -lin ninefold_A = compoundA (mkA "ninefold"); -- from DictEng -lin ninefold_Adv = mkAdv "ninefold"; -- from DictEng -lin ninepence_N = mkN "ninepence" "ninepences"; -- from DictEng -lin ninepenny_A = compoundA (mkA "ninepenny"); -- from DictEng -lin ninepin_N = mkN "ninepin" ; -lin ninepins_N = mkN "ninepins" "ninepins"; -- from DictEng -lin nineteen_A = mkA "nineteen" ; -lin nineteen_N = mkN "nineteen" ; -lin nineteenth_A = mkA "nineteenth" ; -lin nineteenth_N = mkN "nineteenth" ; -lin nineties_N = mkN "nineties" ; -lin ninetieth_A = mkA "ninetieth" ; -lin ninetieth_N = mkN "ninetieth" ; -lin ninety_A = mkA "ninety" ; -lin ninety_N = mkN "ninety" ; -lin ninety_eight_A = compoundA (mkA "ninety eight") ; -lin ninety_fifth_A = compoundA (mkA "ninety fifth") ; -lin ninety_five_A = compoundA (mkA "ninety five") ; -lin ninety_four_A = compoundA (mkA "ninety four") ; -lin ninety_nine_A = compoundA (mkA "ninety nine") ; -lin ninety_one_A = compoundA (mkA "ninety one") ; -lin ninety_seven_A = compoundA (mkA "ninety seven") ; -lin ninety_six_A = compoundA (mkA "ninety six") ; -lin ninety_three_A = compoundA (mkA "ninety three") ; -lin ninety_two_A = compoundA (mkA "ninety two") ; -lin ninja_N = mkN "ninja" ; -lin ninjutsu_N = mkN "ninjutsu" ; -lin ninny_N = mkN "ninny" "ninnies"; -- from DictEng -lin ninon_N = mkN "ninon" ; -lin ninth_A = compoundA (mkA "ninth"); -- from DictEng -lin ninth_N = mkN "ninth" "ninths"; -- from DictEng -lin niobite_N = mkN "niobite" ; -lin niobium_N = mkN "niobium" ; -lin nip_N = mkN "nip" "nips"; -- from DictEng -lin nip_V = mkV "nip" "nips" "nipped" "nipped" "nipping"; -- from DictEng -lin nip_V2 = mkV2 (mkV "nip" "nips" "nipped" "nipped" "nipping"); -- from DictEng -lin nipa_N = mkN "nipa" ; -lin nipper_N = mkN "nipper" "nippers"; -- from DictEng -lin nipping_A = compoundA (mkA "nipping"); -- from DictEng -lin nipple_N = mkN "nipple" "nipples"; -- from DictEng -lin nipponese_A = compoundA (mkA "nipponese"); -- from DictEng -lin nippy_A = mkA "nippy" "nippier"; -- from DictEng -lin niqaabi_N = mkN "niqaabi" ; -lin niqab_N = mkN "niqab" ; -lin nirvana_N = mkN "nirvana" "nirvanas"; -- from DictEng -lin nisi_A = compoundA (mkA "nisi"); -- from DictEng -lin nit_N = mkN "nit" "nits"; -- from DictEng -lin nitpicker_N = mkN "nitpicker" ; -lin nitrate_N = mkN "nitrate" "nitrates"; -- from DictEng -lin nitrazepam_N = mkN "nitrazepam" ; -lin nitre_N = mkN "nitre" ; -- from DictEng -lin nitric_A = compoundA (mkA "nitric"); -- from DictEng -lin nitride_N = mkN "nitride" ; -lin nitrification_N = mkN "nitrification" ; -lin nitrile_N = mkN "nitrile" ; -lin nitrite_N = mkN "nitrite" ; -lin nitrobacterium_N = mkN "nitrobacterium" ; -lin nitrobenzene_N = mkN "nitrobenzene" ; -lin nitrocalcite_N = mkN "nitrocalcite" ; -lin nitrochalk_N = mkN "nitrochalk" ; -- from DictEng -lin nitrochloromethane_N = mkN "nitrochloromethane" ; -lin nitrofuran_N = mkN "nitrofuran" ; -lin nitrofurantoin_N = mkN "nitrofurantoin" ; -lin nitrogen_N = mkN "nitrogen" ; -- from DictEng -lin nitrogen_fixing_A = compoundA (mkA "nitrogen fixing") ; -lin nitrogenase_N = mkN "nitrogenase" ; -lin nitrogenous_A = mkA "nitrogenous" ; -lin nitroglycerin_N = mkN "nitroglycerin" ; -- from DictEng -lin nitroglycerine_N = mkN "nitroglycerine" ; -- from DictEng -lin nitrosobacteria_N = mkN "nitrosobacteria" ; -lin nitrous_A = compoundA (mkA "nitrous"); -- from DictEng -lin nitty_gritty_N = mkN "nitty - gritty" ; -- from DictEng -lin nitwit_N = mkN "nitwit" "nitwits"; -- from DictEng -lin nitwitted_A = compoundA (mkA "nitwitted"); -- from DictEng -lin nix_N = mkN "nix" ; -- from DictEng -lin nix_V2 = mkV2 (mkV "nix"); -- from DictEng -lin no_A = mkA "no" ; -lin no_Adv = mkAdv "no" ; -lin no_N = mkN "no" ; -lin no_Quant = mkQuant "no" "no" "none" "none" ; -- from DictEng -lin no_brainer_N = mkN "no brainer" ; -lin no_frills_A = compoundA (mkA "no frills") ; -lin no_go_A = compoundA (mkA "no - go"); -- from DictEng -lin no_goal_N = mkN "no goal" ; -lin no_hit_A = compoundA (mkA "no hit") ; -lin no_nonsense_A = compoundA (mkA "no nonsense") ; -lin no_show_N = mkN "no show" ; -lin no_trump_N = mkN "no trump" ; -lin no_win_A = compoundA (mkA "no win") ; -lin no_ball_N = mkN "no - ball" "no - balls"; -- from DictEng -lin no_end_Adv = mkAdv "no end" ; -lin no_go_A = compoundA (mkA "no - go"); -- from DictEng -lin no_longer_Adv = mkAdv "no longer" ; -lin no_man's_land_N = mkN "no - man's - land" "no - man's - lands"; -- from DictEng -lin nob_N = mkN "nob" "nobs"; -- from DictEng -lin nobble_V2 = mkV2 (mkV "nobble" "nobbles" "nobbled" "nobbled" "nobbling"); -- from DictEng -lin nobelium_N = mkN "nobelium" ; -lin nobility_N = mkN "nobility" ; -- from DictEng -lin noble_A = mkA "noble" "nobler"; -- from DictEng -lin noble_N = mkN "noble" "nobles"; -- from DictEng -lin noble_mindedness_N = mkN "noble - mindedness" ; -- from DictEng -lin nobleman_N = mkN "nobleman" "noblemen" {- FIXME: guessed plural form -}; -- from DictEng -lin noblesse_N = mkN "noblesse" "IRREG"; -- from DictEng -lin noblesse_oblige_N = mkN "noblesse oblige" ; -- from DictEng -lin nobly_Adv = mkAdv "nobly"; -- from DictEng -lin nocent_A = mkA "nocent" ; -lin nociceptive_A = mkA "nociceptive" ; -lin noctambulist_N = mkN "noctambulist" "noctambulists"; -- from DictEng -lin noctiluca_N = mkN "noctiluca" ; -lin noctilucent_A = mkA "noctilucent" ; -lin nocturia_N = mkN "nocturia" ; -lin nocturnal_A = compoundA (mkA "nocturnal"); -- from DictEng -lin nocturnally_Adv = mkAdv "nocturnally" ; -lin nocturne_N = mkN "nocturne" "nocturnes"; -- from DictEng -lin nod_N = mkN "nod" "nods"; -- from DictEng -lin nod_V = mkV "nod" "nods" "nodded" "nodded" "nodding"; -- from DictEng -lin nod_V2 = mkV2 (mkV "nod" "nods" "nodded" "nodded" "nodding"); -- from DictEng -lin noddle_N = mkN "noddle" "noddles"; -- from DictEng -lin node_N = mkN "node" "nodes"; -- from DictEng -lin nodular_A = compoundA (mkA "nodular"); -- from DictEng -lin nodulated_A = compoundA (mkA "nodulated"); -- from DictEng -lin nodule_N = mkN "nodule" "nodules"; -- from DictEng -lin nodulose_A = mkA "nodulose" ; -lin noel_N = mkN "noel" "noels"; -- from DictEng -lin nog_N = mkN "nog" ; -lin noggin_N = mkN "noggin" "noggins"; -- from DictEng -lin nogging_N = mkN "nogging" ; -lin nohow_Adv = mkAdv "nohow"; -- from DictEng -lin noise_N = mkN "noise" "noises"; -- from DictEng -lin noise_V2 = mkV2 (mkV "noise" "noises" "noised" "noised" "noising"); -- from DictEng -lin noiseless_A = compoundA (mkA "noiseless"); -- from DictEng -lin noiselessly_Adv = mkAdv "noiselessly" ; -lin noiselessness_N = mkN "noiselessness" ; -- from DictEng -lin noisemaker_N = mkN "noisemaker" ; -lin noisily_Adv = mkAdv "noisily"; -- from DictEng -lin noisiness_N = mkN "noisiness" ; -- from DictEng -lin noisome_A = compoundA (mkA "noisome"); -- from DictEng -lin noisy_A = mkA "noisy" "noisier"; -- from DictEng -lin noli_me_tangere_N = mkN "noli me tangere" ; -lin nom_de_plume_N = mkN "nom de plume" "IRREG"; -- from DictEng -lin noma_N = mkN "noma" ; -lin nomad_N = mkN "nomad" "nomads"; -- from DictEng -lin nomadic_A = compoundA (mkA "nomadic"); -- from DictEng -lin nombril_N = mkN "nombril" ; -lin nomenclature_N = mkN "nomenclature" "nomenclatures"; -- from DictEng -lin nomenklatura_N = mkN "nomenklatura" ; -lin nomia_N = mkN "nomia" ; -lin nominal_A = compoundA (mkA "nominal"); -- from DictEng -lin nominalism_N = mkN "nominalism" ; -lin nominalist_N = mkN "nominalist" ; -lin nominalistic_A = mkA "nominalistic" ; -lin nominally_Adv = mkAdv "nominally" ; -lin nominate_V2 = mkV2 (mkV "nominate" "nominates" "nominated" "nominated" "nominating"); -- from DictEng -lin nominated_A = mkA "nominated" ; -lin nomination_N = mkN "nomination" "nominations"; -- from DictEng -lin nominative_A = compoundA (mkA "nominative"); -- from DictEng -lin nominative_N = mkN "nominative" "nominatives"; -- from DictEng -lin nominator_N = mkN "nominator" ; -lin nominee_N = mkN "nominee" "nominees"; -- from DictEng -lin nomogram_N = mkN "nomogram" ; -lin nomothetic_A = mkA "nomothetic" ; -lin non_catholic_N = mkN "non Catholic" ; -lin non_u_A = compoundA (mkA "non - u"); -- from DictEng -lin non_aromatic_A = compoundA (mkA "non aromatic") ; -lin non_buoyant_A = compoundA (mkA "non buoyant") ; -lin non_discrimination_N = mkN "non discrimination" ; -lin non_engagement_N = mkN "non engagement" ; -lin non_invertible_A = compoundA (mkA "non invertible") ; -lin non_metric_A = compoundA (mkA "non metric") ; -lin non_negotiable_A = compoundA (mkA "non negotiable") ; -lin non_paying_A = compoundA (mkA "non paying") ; -lin non_resistant_N = mkN "non resistant" ; -lin non_zero_A = compoundA (mkA "non zero") ; -lin non_compliance_N = mkN "non - compliance" ; -- from DictEng -lin non_compos_mentis_A = compoundA (mkA "non compos mentis"); -- from DictEng -lin non_contentious_A = compoundA (mkA "non - contentious"); -- from DictEng -lin non_interference_N = mkN "non - interference" ; -- from DictEng -lin non_sequitur_N = mkN "non sequitur" "non sequiturs"; -- from DictEng -lin non_skid_A = compoundA (mkA "non - skid"); -- from DictEng -lin non_u_A = compoundA (mkA "non - u"); -- from DictEng -lin nonabsorbency_N = mkN "nonabsorbency" ; -lin nonabsorbent_A = mkA "nonabsorbent" ; -lin nonacceptance_N = mkN "nonacceptance" ; -lin nonaccomplishment_N = mkN "nonaccomplishment" ; -lin nonaddictive_A = mkA "nonaddictive" ; -lin nonadhesive_A = mkA "nonadhesive" ; -lin nonadjacent_A = mkA "nonadjacent" ; -lin nonadsorbent_A = mkA "nonadsorbent" ; -lin nonage_N = mkN "nonage" ; -- from DictEng -lin nonagenarian_A = compoundA (mkA "nonagenarian"); -- from DictEng -lin nonagenarian_N = mkN "nonagenarian" "nonagenarians"; -- from DictEng -lin nonaggression_N = mkN "nonaggression" ; -- from DictEng -lin nonagon_N = mkN "nonagon" ; -lin nonalcoholic_A = mkA "nonalcoholic" ; -lin nonaligned_A = mkA "nonaligned" ; -lin nonalignment_N = mkN "nonalignment" ; -- from DictEng -lin nonallele_N = mkN "nonallele" ; -lin nonappearance_N = mkN "nonappearance" ; -lin nonappointive_A = mkA "nonappointive" ; -lin nonarbitrable_A = mkA "nonarbitrable" ; -lin nonarbitrary_A = mkA "nonarbitrary" ; -lin nonarboreal_A = mkA "nonarboreal" ; -lin nonassertive_A = mkA "nonassertive" ; -lin nonassociative_A = mkA "nonassociative" ; -lin nonastringent_A = mkA "nonastringent" ; -lin nonattendance_N = mkN "nonattendance" ; -lin nonautonomous_A = mkA "nonautonomous" ; -lin nonbearing_A = mkA "nonbearing" ; -lin nonbeing_N = mkN "nonbeing" ; -lin nonbelligerent_A = mkA "nonbelligerent" ; -lin noncaloric_A = mkA "noncaloric" ; -lin noncandidate_N = mkN "noncandidate" ; -lin noncarbonated_A = mkA "noncarbonated" ; -lin noncausative_A = mkA "noncausative" ; -lin nonce_N = mkN "nonce" "nonces"; -- from DictEng -lin nonce_word_N = mkN "nonce - word" "nonce - words"; -- from DictEng -lin noncellular_A = mkA "noncellular" ; -lin nonchalance_N = mkN "nonchalance" ; -- from DictEng -lin nonchalant_A = compoundA (mkA "nonchalant"); -- from DictEng -lin noncivilized_A = mkA "noncivilized" ; -lin nonclassical_A = mkA "nonclassical" ; -lin noncollapsible_A = mkA "noncollapsible" ; -lin noncolumned_A = mkA "noncolumned" ; -lin noncombatant_A = mkA "noncombatant" ; -lin noncombatant_N = mkN "noncombatant" "noncombatants"; -- from DictEng -lin noncombinative_A = mkA "noncombinative" ; -lin noncombining_A = mkA "noncombining" ; -lin noncombustible_A = mkA "noncombustible" ; -lin noncommercial_A = mkA "noncommercial" ; -lin noncommissioned_A = compoundA (mkA "noncommissioned"); -- from DictEng -lin noncommittal_A = compoundA (mkA "noncommittal"); -- from DictEng -lin noncommunicable_A = mkA "noncommunicable" ; -lin noncompetitive_A = mkA "noncompetitive" ; -lin noncompetitively_Adv = mkAdv "noncompetitively" ; -lin noncomprehensive_A = mkA "noncomprehensive" ; -lin noncomprehensively_Adv = mkAdv "noncomprehensively" ; -lin nonconductive_A = mkA "nonconductive" ; -lin nonconductor_N = mkN "nonconductor" "nonconductors"; -- from DictEng -lin nonconforming_A = mkA "nonconforming" ; -lin nonconformism_N = mkN "nonconformism" ; -lin nonconformist_A = mkA "nonconformist" ; -lin nonconformist_N = mkN "nonconformist" "nonconformists"; -- from DictEng -lin nonconformity_N = mkN "nonconformity" ; -- from DictEng -lin nonconscious_A = mkA "nonconscious" ; -lin noncontentious_A = mkA "noncontentious" ; -lin nonconvergent_A = mkA "nonconvergent" ; -lin noncritical_A = mkA "noncritical" ; -lin noncrucial_A = mkA "noncrucial" ; -lin noncrystalline_A = mkA "noncrystalline" ; -lin noncurrent_A = mkA "noncurrent" ; -lin noncyclic_A = mkA "noncyclic" ; -lin nondeductible_A = mkA "nondeductible" ; -lin nondenominational_A = mkA "nondenominational" ; -lin nondescript_A = compoundA (mkA "nondescript"); -- from DictEng -lin nondescript_N = mkN "nondescript" "nondescripts"; -- from DictEng -lin nondevelopment_N = mkN "nondevelopment" ; -lin nondigestible_A = mkA "nondigestible" ; -lin nondisjunction_N = mkN "nondisjunction" ; -lin nondisposable_A = mkA "nondisposable" ; -lin nondriver_N = mkN "nondriver" ; -lin none_A = mkA "none" ; -lin none_Adv = mkAdv "none"; -- from DictEng -lin none_N = mkN "none" ; -lin nonechoic_A = mkA "nonechoic" ; -lin noneffervescent_A = mkA "noneffervescent" ; -lin nonelective_A = mkA "nonelective" ; -lin nonentity_N = mkN "nonentity" "nonentities"; -- from DictEng -lin nonenzymatic_A = mkA "nonenzymatic" ; -lin nonequivalence_N = mkN "nonequivalence" ; -lin nonequivalent_A = mkA "nonequivalent" ; -lin nones_N = mkN "nones" ; -lin nonesuch_N = mkN "nonesuch" "IRREG"; -- from DictEng -lin nonevent_N = mkN "nonevent" "nonevents"; -- from DictEng -lin nonexempt_A = mkA "nonexempt" ; -lin nonexistence_N = mkN "nonexistence" ; -lin nonexistent_A = mkA "nonexistent" ; -lin nonexploratory_A = mkA "nonexploratory" ; -lin nonexplosive_A = mkA "nonexplosive" ; -lin nonextant_A = mkA "nonextant" ; -lin nonextensile_A = mkA "nonextensile" ; -lin nonfat_A = mkA "nonfat" ; -lin nonfatal_A = mkA "nonfatal" ; -lin nonfeasance_N = mkN "nonfeasance" ; -lin nonfiction_N = mkN "nonfiction" ; -- from DictEng -lin nonfictional_A = mkA "nonfictional" ; -lin nonfinancial_A = mkA "nonfinancial" ; -lin nonfissile_A = mkA "nonfissile" ; -lin nonfissionable_A = mkA "nonfissionable" ; -lin nonflammable_A = compoundA (mkA "nonflammable"); -- from DictEng -lin nonfunctional_A = mkA "nonfunctional" ; -lin nonglutinous_A = mkA "nonglutinous" ; -lin nongranular_A = mkA "nongranular" ; -lin nongregarious_A = mkA "nongregarious" ; -lin nonhairy_A = mkA "nonhairy" ; -lin nonharmonic_A = mkA "nonharmonic" ; -lin nonhereditary_A = mkA "nonhereditary" ; -lin nonhierarchical_A = mkA "nonhierarchical" ; -lin nonhuman_A = mkA "nonhuman" ; -lin nonimitative_A = mkA "nonimitative" ; -lin nonindulgent_A = mkA "nonindulgent" ; -lin nonindustrial_A = mkA "nonindustrial" ; -lin noninfectious_A = mkA "noninfectious" ; -lin noninflammatory_A = mkA "noninflammatory" ; -lin noninheritable_A = mkA "noninheritable" ; -lin noninstitutional_A = mkA "noninstitutional" ; -lin noninstitutionalized_A = mkA "noninstitutionalized" ; -lin nonintegrated_A = mkA "nonintegrated" ; -lin nonintellectual_A = mkA "nonintellectual" ; -lin noninterchangeable_A = mkA "noninterchangeable" ; -lin nonintervention_N = mkN "nonintervention" ; -- from DictEng -lin noninvasive_A = mkA "noninvasive" ; -lin nonionic_A = mkA "nonionic" ; -lin nonionized_A = mkA "nonionized" ; -lin nonjudgmental_A = mkA "nonjudgmental" ; -lin nonkosher_A = mkA "nonkosher" ; -lin nonlethal_A = mkA "nonlethal" ; -lin nonlexical_A = mkA "nonlexical" ; -lin nonlexically_Adv = mkAdv "nonlexically" ; -lin nonlinear_A = mkA "nonlinear" ; -lin nonlinguistic_A = mkA "nonlinguistic" ; -lin nonmagnetic_A = mkA "nonmagnetic" ; -lin nonmandatory_A = mkA "nonmandatory" ; -lin nonmechanical_A = mkA "nonmechanical" ; -lin nonmechanistic_A = mkA "nonmechanistic" ; -lin nonmember_N = mkN "nonmember" ; -lin nonmetal_N = mkN "nonmetal" ; -lin nonmetallic_A = mkA "nonmetallic" ; -lin nonmetamorphic_A = mkA "nonmetamorphic" ; -lin nonmigratory_A = mkA "nonmigratory" ; -lin nonmodern_A = mkA "nonmodern" ; -lin nonmonotonic_A = mkA "nonmonotonic" ; -lin nonmoral_A = compoundA (mkA "nonmoral"); -- from DictEng -lin nonmotile_A = mkA "nonmotile" ; -lin nonmoving_A = mkA "nonmoving" ; -lin nonnative_A = mkA "nonnative" ; -lin nonnatural_A = mkA "nonnatural" ; -lin nonnegative_A = mkA "nonnegative" ; -lin nonnomadic_A = mkA "nonnomadic" ; -lin nonnormative_A = mkA "nonnormative" ; -lin nonobservance_N = mkN "nonobservance" ; -- from DictEng -lin nonobservant_A = mkA "nonobservant" ; -lin nonoccurrence_N = mkN "nonoccurrence" ; -lin nonopening_A = mkA "nonopening" ; -lin nonoperational_A = mkA "nonoperational" ; -lin nonoscillatory_A = mkA "nonoscillatory" ; -lin nonparallel_A = mkA "nonparallel" ; -lin nonparametric_A = mkA "nonparametric" ; -lin nonpareil_A = compoundA (mkA "nonpareil"); -- from DictEng -lin nonpareil_N = mkN "nonpareil" "nonpareils"; -- from DictEng -lin nonparticipant_N = mkN "nonparticipant" ; -lin nonparticulate_A = mkA "nonparticulate" ; -lin nonpartisan_A = mkA "nonpartisan" ; -lin nonpartisan_N = mkN "nonpartisan" ; -lin nonpasserine_A = mkA "nonpasserine" ; -lin nonpayment_N = mkN "nonpayment" "nonpayments"; -- from DictEng -lin nonperson_N = mkN "nonperson" ; -lin nonpersonal_A = mkA "nonpersonal" ; -lin nonphotosynthetic_A = mkA "nonphotosynthetic" ; -lin nonplus_V2 = mkV2 (mkV "nonplus" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin nonpoisonous_A = mkA "nonpoisonous" ; -lin nonpolitical_A = mkA "nonpolitical" ; -lin nonporous_A = mkA "nonporous" ; -lin nonpregnant_A = mkA "nonpregnant" ; -lin nonprehensile_A = mkA "nonprehensile" ; -lin nonprescription_A = mkA "nonprescription" ; -lin nonproductive_A = mkA "nonproductive" ; -lin nonprofessional_A = mkA "nonprofessional" ; -lin nonprofit_A = mkA "nonprofit" ; -lin nonprognosticative_A = mkA "nonprognosticative" ; -lin nonproliferation_N = mkN "nonproliferation" ; -lin nonproprietary_A = mkA "nonproprietary" ; -lin nonpsychoactive_A = mkA "nonpsychoactive" ; -lin nonpublic_A = mkA "nonpublic" ; -lin nonpurulent_A = mkA "nonpurulent" ; -lin nonracial_A = mkA "nonracial" ; -lin nonradioactive_A = mkA "nonradioactive" ; -lin nonrandom_A = mkA "nonrandom" ; -lin nonrational_A = mkA "nonrational" ; -lin nonreader_N = mkN "nonreader" ; -lin nonreciprocal_A = mkA "nonreciprocal" ; -lin nonreciprocating_A = mkA "nonreciprocating" ; -lin nonrecreational_A = mkA "nonrecreational" ; -lin nonreflective_A = mkA "nonreflective" ; -lin nonrepetitive_A = mkA "nonrepetitive" ; -lin nonrepresentational_A = mkA "nonrepresentational" ; -lin nonrepresentative_A = mkA "nonrepresentative" ; -lin nonresident_A = compoundA (mkA "nonresident"); -- from DictEng -lin nonresident_N = mkN "nonresident" ; -lin nonresidential_A = mkA "nonresidential" ; -lin nonresilient_A = mkA "nonresilient" ; -lin nonresinous_A = mkA "nonresinous" ; -lin nonresistance_N = mkN "nonresistance" ; -lin nonresistant_A = mkA "nonresistant" ; -lin nonrestrictive_A = mkA "nonrestrictive" ; -lin nonreticulate_A = mkA "nonreticulate" ; -lin nonretractile_A = mkA "nonretractile" ; -lin nonreturnable_A = mkA "nonreturnable" ; -lin nonreversible_A = mkA "nonreversible" ; -lin nonrhythmic_A = mkA "nonrhythmic" ; -lin nonrigid_A = mkA "nonrigid" ; -lin nonruminant_A = mkA "nonruminant" ; -lin nonsectarian_A = mkA "nonsectarian" ; -lin nonsense_A = mkA "nonsense" ; -lin nonsense_N = mkN "nonsense" "nonsenses"; -- from DictEng -lin nonsensical_A = compoundA (mkA "nonsensical"); -- from DictEng -lin nonsensitive_A = mkA "nonsensitive" ; -lin nonsignificant_A = mkA "nonsignificant" ; -lin nonskid_A = mkA "nonskid" ; -lin nonslip_A = mkA "nonslip" ; -lin nonslippery_A = mkA "nonslippery" ; -lin nonsmoker_N = mkN "nonsmoker" "nonsmokers"; -- from DictEng -lin nonspatial_A = mkA "nonspatial" ; -lin nonspeaking_A = mkA "nonspeaking" ; -lin nonspecific_A = mkA "nonspecific" ; -lin nonspecifically_Adv = mkAdv "nonspecifically" ; -lin nonspherical_A = mkA "nonspherical" ; -lin nonstandard_A = mkA "nonstandard" ; -lin nonstarter_N = mkN "nonstarter" "nonstarters"; -- from DictEng -lin nonsteroid_N = mkN "nonsteroid" ; -lin nonsteroidal_A = mkA "nonsteroidal" ; -lin nonstick_A = compoundA (mkA "nonstick"); -- from DictEng -lin nonstop_A = compoundA (mkA "nonstop"); -- from DictEng -lin nonstop_Adv = mkAdv "nonstop"; -- from DictEng -lin nonstructural_A = mkA "nonstructural" ; -lin nonsubmersible_A = mkA "nonsubmersible" ; -lin nonsuch_N = mkN "nonsuch" "IRREG"; -- from DictEng -lin nonsuppurative_A = mkA "nonsuppurative" ; -lin nonsurgical_A = mkA "nonsurgical" ; -lin nonsyllabic_A = mkA "nonsyllabic" ; -lin nonsynchronous_A = mkA "nonsynchronous" ; -lin nonsynthetic_A = mkA "nonsynthetic" ; -lin nontaxable_A = mkA "nontaxable" ; -lin nontechnical_A = mkA "nontechnical" ; -lin nontelescopic_A = mkA "nontelescopic" ; -lin nonterritorial_A = mkA "nonterritorial" ; -lin nonthermal_A = mkA "nonthermal" ; -lin nontoxic_A = mkA "nontoxic" ; -lin nontraditional_A = mkA "nontraditional" ; -lin nontransferable_A = mkA "nontransferable" ; -lin nontranslational_A = mkA "nontranslational" ; -lin nontricyclic_N = mkN "nontricyclic" ; -lin nonturbulent_A = mkA "nonturbulent" ; -lin nonuniformity_N = mkN "nonuniformity" ; -lin nonunion_A = compoundA (mkA "nonunion"); -- from DictEng -lin nonuple_A = mkA "nonuple" ; -lin nonvenomous_A = mkA "nonvenomous" ; -lin nonverbal_A = mkA "nonverbal" ; -lin nonverbally_Adv = mkAdv "nonverbally" ; -lin nonviable_A = mkA "nonviable" ; -lin nonviolence_N = mkN "nonviolence" ; -- from DictEng -lin nonviolent_A = mkA "nonviolent" ; -lin nonviolently_Adv = mkAdv "nonviolently" ; -lin nonvisual_A = mkA "nonvisual" ; -lin nonvolatile_A = mkA "nonvolatile" ; -lin nonwashable_A = mkA "nonwashable" ; -lin nonwoody_A = mkA "nonwoody" ; -lin nonworker_N = mkN "nonworker" ; -lin noodle_N = mkN "noodle" "noodles"; -- from DictEng -lin nook_N = mkN "nook" "nooks"; -- from DictEng -lin noon_N = mkN "noon" ; -- from DictEng -lin noonday_A = compoundA (mkA "noonday"); -- from DictEng -lin noontide_N = mkN "noontide" ; -- from DictEng -lin noose_N = mkN "noose" "nooses"; -- from DictEng -lin noose_V2 = mkV2 (mkV "noose" "nooses" "noosed" "noosed" "noosing"); -- from DictEng -lin nopal_N = mkN "nopal" ; -lin nor_Conj = mkConj "nor"; -- from DictEng -lin nor'_east_Adv = mkAdv "nor'-east"; -- from DictEng -lin nor'_east_N = mkN "nor'-east" ; -- from DictEng -lin nor'_nor'_east_Adv = mkAdv "nor'-nor'-east"; -- from DictEng -lin nor'_nor'_east_N = mkN "nor'-nor'-east" ; -- from DictEng -lin nor'_nor'_west_Adv = mkAdv "nor'-nor'-west"; -- from DictEng -lin nor'_nor'_west_N = mkN "nor'-nor'-west" ; -- from DictEng -lin nor'_west_Adv = mkAdv "nor'-west"; -- from DictEng -lin nor'_west_N = mkN "nor'-west" ; -- from DictEng -lin noradrenaline_N = mkN "noradrenaline" ; -lin nordic_A = compoundA (mkA "nordic"); -- from DictEng -lin nordic_N = mkN "nordic" "nordics"; -- from DictEng -lin norethindrone_N = mkN "norethindrone" ; -lin norethynodrel_N = mkN "norethynodrel" ; -lin norgestrel_N = mkN "norgestrel" ; -lin noria_N = mkN "noria" ; -lin norm_N = mkN "norm" "norms"; -- from DictEng -lin normal_A = compoundA (mkA "normal"); -- from DictEng -lin normal_N = mkN "normal" ; -- from DictEng -lin normalcy_N = mkN "normalcy" ; -- from DictEng -lin normality_N = mkN "normality" ; -- from DictEng -lin normalization_N = mkN "normalization" "normalizations"; -- from DictEng -lin normalize_V2 = mkV2 (mkV "normalize" "normalizes" "normalized" "normalized" "normalizing"); -- from DictEng -lin normalizer_N = mkN "normalizer" ; -lin normally_Adv = mkAdv "normally" ; -lin norman_A = compoundA (mkA "norman"); -- from DictEng -lin norman_N = mkN "norman" "normans"; -- from DictEng -lin normative_A = compoundA (mkA "normative"); -- from DictEng -lin normotensive_A = mkA "normotensive" ; -lin normothermia_N = mkN "normothermia" ; -lin norse_A = compoundA (mkA "norse"); -- from DictEng -lin norse_N = mkN "norse" ; -- from DictEng -lin north_A = mkA "north"; -- from DictEng -lin north_Adv = mkAdv "north"; -- from DictEng -lin north_N = mkN "north" ; -- from DictEng -lin north_central_A = compoundA (mkA "north central") ; -lin north_northeast_Adv = mkAdv "north - northeast"; -- from DictEng -lin north_northwest_Adv = mkAdv "north - northwest"; -- from DictEng -lin north_polar_A = compoundA (mkA "north polar") ; -lin north_northeast_Adv = mkAdv "north - northeast"; -- from DictEng -lin north_northeast_N = mkN "north - northeast" ; -- from DictEng -lin north_northwest_Adv = mkAdv "north - northwest"; -- from DictEng -lin north_northwest_N = mkN "north - northwest" ; -- from DictEng -lin northbound_A = mkA "northbound" ; -lin northeast_Adv = mkAdv "northeast"; -- from DictEng -lin northeast_N = mkN "northeast" ; -- from DictEng -lin northeaster_N = mkN "northeaster" "northeasters"; -- from DictEng -lin northeasterly_A = compoundA (mkA "northeasterly"); -- from DictEng -lin northeastern_A = compoundA (mkA "northeastern"); -- from DictEng -lin northeastward_A = mkA "northeastward" ; -lin northeastward_Adv = mkAdv "northeastward" ; -lin northerly_A = compoundA (mkA "northerly"); -- from DictEng -lin northerly_Adv = mkAdv "northerly"; -- from DictEng -lin northern_A = compoundA (mkA "northern"); -- from DictEng -lin northern_europe_PN = mkPN "northern Europe" ; -lin northern_jacob's_ladder_PN = mkPN "northern Jacob's ladder" ; -lin northerner_N = mkN "northerner" "northerners"; -- from DictEng -lin northernmost_A = compoundA (mkA "northernmost"); -- from DictEng -lin northernness_N = mkN "northernness" ; -lin northland_N = mkN "northland" ; -lin northman_N = mkN "northman" "northmen" {- FIXME: guessed plural form -}; -- from DictEng -lin northwards_Adv = mkAdv "northwards"; -- from DictEng -lin northwest_Adv = mkAdv "northwest"; -- from DictEng -lin northwest_N = mkN "northwest" ; -- from DictEng -lin northwester_N = mkN "northwester" "northwesters"; -- from DictEng -lin northwesterly_A = compoundA (mkA "northwesterly"); -- from DictEng -lin northwestern_A = compoundA (mkA "northwestern"); -- from DictEng -lin northwestward_A = mkA "northwestward" ; -lin northwestward_Adv = mkAdv "northwestward" ; -lin nortriptyline_N = mkN "nortriptyline" ; -lin norwegian_A = compoundA (mkA "norwegian"); -- from DictEng -lin norwegian_N = mkN "norwegian" "norwegians"; -- from DictEng -lin nose_N = mkN "nose" "noses"; -- from DictEng -lin nose_V = mkV "nose" "noses" "nosed" "nosed" "nosing"; -- from DictEng -lin nose_V2 = mkV2 (mkV "nose" "noses" "nosed" "nosed" "nosing"); -- from DictEng -lin nose_flute_N = mkN "nose - flute" "nose - flutes"; -- from DictEng -lin nose_wheel_N = mkN "nose - wheel" "nose - wheels"; -- from DictEng -lin nosebag_N = mkN "nosebag" "nosebags"; -- from DictEng -lin noseband_N = mkN "noseband" ; -lin nosebleed_N = mkN "nosebleed" "nosebleeds"; -- from DictEng -lin nosecone_N = mkN "nosecone" "nosecones"; -- from DictEng -lin nosed_A = compoundA (mkA "nosed"); -- from DictEng -lin nosedive_N = mkN "nosedive" "nosedives"; -- from DictEng -lin nosedive_V = mkV "nosedive" "nosedives" "nosedived" "nosedived" "nosediving"; -- from DictEng -lin nosegay_N = mkN "nosegay" "nosegays"; -- from DictEng -lin noseless_A = mkA "noseless" ; -lin nosepiece_N = mkN "nosepiece" ; -lin nosering_N = mkN "nosering" "noserings"; -- from DictEng -lin nosewheel_N = mkN "nosewheel" ; -lin nosey_A = compoundA (mkA "nosey"); -- from DictEng -lin nosh_N = mkN "nosh" ; -- from DictEng -lin nosh_V = mkV "nosh" "noshes" "noshed" "noshed" "noshing"; -- from DictEng -lin nosh_up_N = mkN "nosh - up" "nosh - ups"; -- from DictEng -lin nosh_up_N = mkN "nosh - up" "nosh - ups"; -- from DictEng -lin nosher_N = mkN "nosher" ; -lin nosiness_N = mkN "nosiness" ; -lin nosocomial_A = mkA "nosocomial" ; -lin nosohusial_A = mkA "nosohusial" ; -lin nosology_N = mkN "nosology" ; -lin nostalgia_N = mkN "nostalgia" ; -- from DictEng -lin nostalgic_A = compoundA (mkA "nostalgic"); -- from DictEng -lin nostalgically_Adv = mkAdv "nostalgically"; -- from DictEng -lin nostoc_N = mkN "nostoc" ; -lin nostril_N = mkN "nostril" "nostrils"; -- from DictEng -lin nostrum_N = mkN "nostrum" "nostrums"; -- from DictEng -lin nosy_A = mkA "nosy" "nosier"; -- from DictEng -lin not_Adv = mkAdv "not"; -- from DictEng -lin notability_N = mkN "notability" "notabilities"; -- from DictEng -lin notable_A = compoundA (mkA "notable"); -- from DictEng -lin notable_N = mkN "notable" "notables"; -- from DictEng -lin notably_Adv = mkAdv "notably" ; -lin notary_N = mkN "notary" "notaries"; -- from DictEng -lin notation_N = mkN "notation" "notations"; -- from DictEng -lin notch_N = mkN "notch" "notches"; -- from DictEng -lin notch_V2 = mkV2 (mkV "notch" "notches" "notched" "notched" "notching"); -- from DictEng -lin note_N = mkN "note" "notes"; -- from DictEng -lin note_V = mkV "note"; -- from DictEng -lin note_V2 = mkV2 (mkV "note" "notes" "noted" "noted" "noting"); -- from DictEng -lin note_VS = mkVS (mkV "note"); -- from DictEng -lin notebook_N = mkN "notebook" "notebooks"; -- from DictEng -lin notecase_N = mkN "notecase" "notecases"; -- from DictEng -lin noted_A = compoundA (mkA "noted"); -- from DictEng -lin notepad_N = mkN "notepad" ; -lin notepaper_N = mkN "notepaper" ; -- from DictEng -lin noteworthy_A = compoundA (mkA "noteworthy"); -- from DictEng -lin nothing_Adv = mkAdv "nothing"; -- from DictEng -lin nothing_N = mkN "nothing" ; -lin nothingness_N = mkN "nothingness" ; -- from DictEng -lin nothings_N = mkN "nothings" ; -lin nothosaur_N = mkN "nothosaur" ; -lin notice_N = mkN "notice" "notices"; -- from DictEng -lin notice_V = mkV "notice" "notices" "noticed" "noticed" "noticing"; -- from DictEng -lin notice_V2 = mkV2 (mkV "notice" "notices" "noticed" "noticed" "noticing"); -- from DictEng -lin notice_VS = mkVS (mkV "notice" "notices" "noticed" "noticed" "noticing"); -- from DictEng -lin notice_board_N = mkN "notice - board" "notice - boards"; -- from DictEng -lin noticeable_A = compoundA (mkA "noticeable"); -- from DictEng -lin noticed_A = mkA "noticed" ; -lin noticer_N = mkN "noticer" ; -lin notifiable_A = compoundA (mkA "notifiable"); -- from DictEng -lin notification_N = mkN "notification" "notifications"; -- from DictEng -lin notify_V2 = mkV2 (mkV "notify" "notifies" "notified" "notified" "notifying"); -- from DictEng -lin notion_N = mkN "notion" "notions"; -- from DictEng -lin notional_A = compoundA (mkA "notional"); -- from DictEng -lin notochord_N = mkN "notochord" ; -lin notoriety_N = mkN "notoriety" ; -- from DictEng -lin notorious_A = compoundA (mkA "notorious"); -- from DictEng -lin notoriously_Adv = mkAdv "notoriously" ; -lin notornis_N = mkN "notornis" ; -lin notwithstanding_Adv = mkAdv "notwithstanding"; -- from DictEng -lin notwithstanding_Prep = mkPrep "notwithstanding"; -- from DictEng -lin nougat_N = mkN "nougat" "nougats"; -- from DictEng -lin nought_N = mkN "nought" "noughts"; -- from DictEng -lin noumenon_N = mkN "noumenon" ; -lin noun_N = mkN "noun" "nouns"; -- from DictEng -lin nourish_V2 = mkV2 (mkV "nourish" "nourishes" "nourished" "nourished" "nourishing"); -- from DictEng -lin nourished_A = mkA "nourished" ; -lin nourishment_N = mkN "nourishment" ; -- from DictEng -lin nous_N = mkN "nous" ; -- from DictEng -lin nouveau_riche_A = compoundA (mkA "nouveau riche") ; -lin nouveau_riche_N = mkN "nouveau riche" "IRREG"; -- from DictEng -lin nova_N = mkN "nova" "novas"; -- from DictEng -lin novation_N = mkN "novation" ; -lin novel_A = compoundA (mkA "novel"); -- from DictEng -lin novel_N = mkN "novel" "novels"; -- from DictEng -lin novelette_N = mkN "novelette" "novelettes"; -- from DictEng -lin novelist_N = mkN "novelist" "novelists"; -- from DictEng -lin novelization_N = mkN "novelization" ; -lin novelty_N = mkN "novelty" "novelties"; -- from DictEng -lin november_N = mkN "november" "novembers"; -- from DictEng -lin novena_N = mkN "novena" ; -lin novice_N = mkN "novice" "novices"; -- from DictEng -lin noviciate_N = mkN "noviciate" "noviciates"; -- from DictEng -lin novillada_N = mkN "novillada" ; -lin novillero_N = mkN "novillero" ; -lin novitiate_N = mkN "novitiate" "novitiates"; -- from DictEng -lin novobiocin_N = mkN "novobiocin" ; -lin now_Adv = mkAdv "now"; -- from DictEng -lin now_N = mkN "now" ; -lin now_now_Adv = mkAdv "now now" ; -lin nowadays_Adv = mkAdv "nowadays"; -- from DictEng -lin nowhere_Adv = mkAdv "nowhere"; -- from DictEng -lin nowhere_N = mkN "nowhere" ; -lin nowise_Adv = mkAdv "nowise"; -- from DictEng -lin noxious_A = compoundA (mkA "noxious"); -- from DictEng -lin noxiousness_N = mkN "noxiousness" ; -- from DictEng -lin nozzle_N = mkN "nozzle" "nozzles"; -- from DictEng -lin nspcc_N = mkN "nspcc" ; -- from DictEng -lin nt_N = mkN "nt" ; -- from DictEng -lin nth_A = mkA "nth" ; -lin nu_N = mkN "nu" ; -lin nuance_N = mkN "nuance" "nuances"; -- from DictEng -lin nub_N = mkN "nub" "nubs"; -- from DictEng -lin nubbin_N = mkN "nubbin" ; -lin nubile_A = compoundA (mkA "nubile"); -- from DictEng -lin nucellus_N = mkN "nucellus" ; -lin nuclear_A = compoundA (mkA "nuclear"); -- from DictEng -lin nuclear_rna_PN = mkPN "nuclear RNA" ; -lin nuclease_N = mkN "nuclease" ; -lin nucleated_A = mkA "nucleated" ; -lin nucleic_A = compoundA (mkA "nucleic"); -- from DictEng -lin nucleolus_N = mkN "nucleolus" ; -lin nucleon_N = mkN "nucleon" ; -lin nucleoplasm_N = mkN "nucleoplasm" ; -lin nucleoprotein_N = mkN "nucleoprotein" ; -lin nucleoside_N = mkN "nucleoside" ; -lin nucleosynthesis_N = mkN "nucleosynthesis" ; -lin nucleotide_N = mkN "nucleotide" ; -lin nucleus_N = mkN "nucleus" "nuclei" {- FIXME: guessed plural form -}; -- from DictEng -lin nude_A = compoundA (mkA "nude"); -- from DictEng -lin nude_N = mkN "nude" "nudes"; -- from DictEng -lin nudge_N = mkN "nudge" "nudges"; -- from DictEng -lin nudge_V2 = mkV2 (mkV "nudge" "nudges" "nudged" "nudged" "nudging"); -- from DictEng -lin nudger_N = mkN "nudger" ; -lin nudism_N = mkN "nudism" ; -- from DictEng -lin nudist_N = mkN "nudist" "nudists"; -- from DictEng -lin nudity_N = mkN "nudity" ; -- from DictEng -lin nudnik_N = mkN "nudnik" ; -lin nugatory_A = compoundA (mkA "nugatory"); -- from DictEng -lin nugget_N = mkN "nugget" "nuggets"; -- from DictEng -lin nuisance_N = mkN "nuisance" "nuisances"; -- from DictEng -lin null_A = compoundA (mkA "null"); -- from DictEng -lin nullah_N = mkN "nullah" ; -lin nullification_N = mkN "nullification" ; -- from DictEng -lin nullifier_N = mkN "nullifier" ; -lin nullify_V2 = mkV2 (mkV "nullify" "nullifies" "nullified" "nullified" "nullifying"); -- from DictEng -lin nullipara_N = mkN "nullipara" ; -lin nullity_N = mkN "nullity" ; -- from DictEng -lin numb_A = compoundA (mkA "numb"); -- from DictEng -lin numb_V2 = mkV2 (mkV "numb" "numbs" "numbed" "numbed" "numbing"); -- from DictEng -lin numbat_N = mkN "numbat" ; -lin number_N = mkN "number" "numbers"; -- from DictEng -lin number_V2 = mkV2 (mkV "number" "numbers" "numbered" "numbered" "numbering"); -- from DictEng -lin numberless_A = compoundA (mkA "numberless"); -- from DictEng -lin numberplate_N = mkN "numberplate" "numberplates"; -- from DictEng -lin numbing_A = mkA "numbing" ; -lin numbly_Adv = mkAdv "numbly" ; -lin numbness_N = mkN "numbness" ; -- from DictEng -lin numdah_N = mkN "numdah" ; -lin numen_N = mkN "numen" ; -lin numerable_A = compoundA (mkA "numerable"); -- from DictEng -lin numeracy_N = mkN "numeracy" ; -- from DictEng -lin numeral_A = compoundA (mkA "numeral"); -- from DictEng -lin numeral_N = mkN "numeral" "numerals"; -- from DictEng -lin numerate_A = compoundA (mkA "numerate"); -- from DictEng -lin numeration_N = mkN "numeration" "numerations"; -- from DictEng -lin numerator_N = mkN "numerator" "numerators"; -- from DictEng -lin numeric_A = compoundA (mkA "numeric"); -- from DictEng -lin numerical_A = compoundA (mkA "numerical"); -- from DictEng -lin numerically_Adv = mkAdv "numerically" ; -lin numerological_A = mkA "numerological" ; -lin numerologist_N = mkN "numerologist" ; -lin numerology_N = mkN "numerology" ; -lin numerous_A = compoundA (mkA "numerous"); -- from DictEng -lin numerousness_N = mkN "numerousness" ; -lin numinous_A = compoundA (mkA "numinous"); -- from DictEng -lin numismatics_N = mkN "numismatics" "numismatics"; -- from DictEng -lin numismatist_N = mkN "numismatist" "numismatists"; -- from DictEng -lin nummulite_N = mkN "nummulite" ; -lin numskull_N = mkN "numskull" "numskulls"; -- from DictEng -lin nun_N = mkN "nun" "nuns"; -- from DictEng -lin nuncio_N = mkN "nuncio" "nuncios"; -- from DictEng -lin nunnery_N = mkN "nunnery" "nunneries"; -- from DictEng -lin nuptial_A = compoundA (mkA "nuptial"); -- from DictEng -lin nurse_N = mkN "nurse" "nurses"; -- from DictEng -lin nurse_V2 = mkV2 (mkV "nurse" "nurses" "nursed" "nursed" "nursing"); -- from DictEng -lin nurse_midwife_N = mkN "nurse midwife" ; -lin nursed_A = mkA "nursed" ; -lin nurseling_N = mkN "nurseling" "nurselings"; -- from DictEng -lin nursemaid_N = mkN "nursemaid" "nursemaids"; -- from DictEng -lin nurser_N = mkN "nurser" ; -lin nursery_N = mkN "nursery" "nurseries"; -- from DictEng -lin nurseryman_N = mkN "nurseryman" "nurserymen" {- FIXME: guessed plural form -}; -- from DictEng -lin nursing_N = mkN "nursing" ; -lin nursing_home_N = mkN "nursing - home" "nursing - homes"; -- from DictEng -lin nursling_N = mkN "nursling" "nurslings"; -- from DictEng -lin nurtural_A = mkA "nurtural" ; -lin nurturance_N = mkN "nurturance" ; -lin nurturant_A = mkA "nurturant" ; -lin nurture_N = mkN "nurture" ; -- from DictEng -lin nurture_V2 = mkV2 (mkV "nurture" "nurtures" "nurtured" "nurtured" "nurturing"); -- from DictEng -lin nut_N = mkN "nut" "nuts"; -- from DictEng -lin nut_V = mkV "nut" "nuts" "nutted" "nutted" "nutting"; -- from DictEng -lin nut_bearing_A = compoundA (mkA "nut bearing") ; -lin nut_brown_A = compoundA (mkA "nut - brown"); -- from DictEng -lin nut_butter_N = mkN "nut - butter" "nut - butters"; -- from DictEng -lin nutation_N = mkN "nutation" ; -lin nutbrown_A = mkA "nutbrown" ; -lin nutcracker_N = mkN "nutcracker" ; -lin nutgrass_N = mkN "nutgrass" ; -lin nuthatch_N = mkN "nuthatch" ; -lin nuthouse_N = mkN "nuthouse" "nuthouses"; -- from DictEng -lin nutlet_N = mkN "nutlet" ; -lin nutlike_A = mkA "nutlike" ; -lin nutmeg_N = mkN "nutmeg" "nutmegs"; -- from DictEng -lin nutmeg_shaped_A = compoundA (mkA "nutmeg shaped") ; -lin nutria_N = mkN "nutria" ; -- from DictEng -lin nutrient_A = compoundA (mkA "nutrient"); -- from DictEng -lin nutrient_N = mkN "nutrient" "nutrients"; -- from DictEng -lin nutriment_N = mkN "nutriment" "nutriments"; -- from DictEng -lin nutrition_N = mkN "nutrition" ; -- from DictEng -lin nutritional_A = compoundA (mkA "nutritional"); -- from DictEng -lin nutritionally_Adv = mkAdv "nutritionally" ; -lin nutritious_A = compoundA (mkA "nutritious"); -- from DictEng -lin nutritiousness_N = mkN "nutritiousness" ; -lin nutritive_A = compoundA (mkA "nutritive"); -- from DictEng -lin nuts_A = compoundA (mkA "nuts"); -- from DictEng -lin nutshell_N = mkN "nutshell" "nutshells"; -- from DictEng -lin nutter_N = mkN "nutter" ; -lin nutty_A = mkA "nutty" "nuttier"; -- from DictEng -lin nuzzle_V = mkV "nuzzle" "nuzzles" "nuzzled" "nuzzled" "nuzzling"; -- from DictEng -lin nuzzle_V2 = mkV2 (mkV "nuzzle" "nuzzles" "nuzzled" "nuzzled" "nuzzling"); -- from DictEng -lin nyala_N = mkN "nyala" ; -lin nybble_N = mkN "nybble" ; -lin nyctalopia_N = mkN "nyctalopia" ; -lin nyctophobia_N = mkN "nyctophobia" ; -lin nylon_N = mkN "nylon" "nylons"; -- from DictEng -lin nylons_N = mkN "nylons" ; -lin nymph_N = mkN "nymph" "nymphs"; -- from DictEng -lin nymphalid_N = mkN "nymphalid" ; -lin nymphet_N = mkN "nymphet" "nymphets"; -- from DictEng -lin nympho_N = mkN "nympho" "nymphos"; -- from DictEng -lin nympholepsy_N = mkN "nympholepsy" ; -lin nympholept_N = mkN "nympholept" ; -lin nymphomania_N = mkN "nymphomania" ; -- from DictEng -lin nymphomaniac_A = compoundA (mkA "nymphomaniac"); -- from DictEng -lin nymphomaniac_N = mkN "nymphomaniac" "nymphomaniacs"; -- from DictEng -lin nymphomaniacal_A = mkA "nymphomaniacal" ; -lin nystagmus_N = mkN "nystagmus" ; -lin nystatin_N = mkN "nystatin" ; -lin o'clock_Adv = mkAdv "o'clock" ; -lin o'er_Adv = mkAdv "o'er"; -- from DictEng -lin o_level_N = mkN "o - level" "o - levels"; -- from DictEng -lin oaf_N = mkN "oaf" "oafs"; -- from DictEng -lin oafish_A = compoundA (mkA "oafish"); -- from DictEng -lin oak_N = mkN "oak" "oaks"; -- from DictEng -lin oak_apple_N = mkN "oak - apple" "oak - apples"; -- from DictEng -lin oaken_A = compoundA (mkA "oaken"); -- from DictEng -lin oakum_N = mkN "oakum" ; -- from DictEng -lin oap_N = mkN "OAP" "OAP's" ; -- from DictEng -lin oar_N = mkN "oar" "oars"; -- from DictEng -lin oar_V2 = mkV2 (mkV "oar") ; -lin oarfish_N = mkN "oarfish" ; -lin oarsman_N = mkN "oarsman" "oarsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin oarsmanship_N = mkN "oarsmanship" ; -- from DictEng -lin oarswoman_N = mkN "oarswoman" "oarswomen" {- FIXME: guessed plural form -}; -- from DictEng -lin oasis_N = mkN "oasis" "oases" {- FIXME: guessed plural form -}; -- from DictEng -lin oast_N = mkN "oast" "oasts"; -- from DictEng -lin oasthouse_N = mkN "oasthouse" "oasthouses"; -- from DictEng -lin oat_N = mkN "oat" "oats"; -- from DictEng -lin oatcake_N = mkN "oatcake" "oatcakes"; -- from DictEng -lin oaten_A = mkA "oaten" ; -lin oath_N = mkN "oath" "oaths"; -- from DictEng -lin oatmeal_N = mkN "oatmeal" ; -- from DictEng -lin oau_N = mkN "oau" ; -- from DictEng -lin obbligato_N = mkN "obbligato" "obbligatos"; -- from DictEng -lin obduracy_N = mkN "obduracy" ; -- from DictEng -lin obdurate_A = compoundA (mkA "obdurate"); -- from DictEng -lin obeah_N = mkN "obeah" ; -lin obeche_N = mkN "obeche" ; -lin obedience_N = mkN "obedience" ; -- from DictEng -lin obedient_A = compoundA (mkA "obedient"); -- from DictEng -lin obediently_Adv = mkAdv "obediently" ; -lin obeisance_N = mkN "obeisance" "obeisances"; -- from DictEng -lin obelion_N = mkN "obelion" ; -lin obelisk_N = mkN "obelisk" "obelisks"; -- from DictEng -lin obese_A = compoundA (mkA "obese"); -- from DictEng -lin obesity_N = mkN "obesity" ; -- from DictEng -lin obey_V = mkV "obey" "obeys" "obeyed" "obeyed" "obeying"; -- from DictEng -lin obey_V2 = mkV2 (mkV "obey" "obeys" "obeyed" "obeyed" "obeying"); -- from DictEng -lin obfuscate_V2 = mkV2 (mkV "obfuscate" "obfuscates" "obfuscated" "obfuscated" "obfuscating"); -- from DictEng -lin obfuscation_N = mkN "obfuscation" ; -lin obi_N = mkN "obi" "obis"; -- from DictEng -lin obiism_N = mkN "obiism" ; -lin obiter_dictum_N = mkN "obiter dictum" "obiter dicta" {- FIXME: guessed plural form -}; -- from DictEng -lin obituary_N = mkN "obituary" "obituaries"; -- from DictEng -lin object_N = mkN "object" "objects"; -- from DictEng -lin object_V = mkV "object" "objects" "objected" "objected" "objecting"; -- from DictEng -lin object_V2 = mkV2 (mkV "object" "objects" "objected" "objected" "objecting"); -- from DictEng -lin objectification_N = mkN "objectification" ; -lin objection_N = mkN "objection" "objections"; -- from DictEng -lin objectionable_A = compoundA (mkA "objectionable"); -- from DictEng -lin objective_A = compoundA (mkA "objective"); -- from DictEng -lin objective_N = mkN "objective" "objectives"; -- from DictEng -lin objectively_Adv = mkAdv "objectively" ; -lin objectivity_N = mkN "objectivity" ; -- from DictEng -lin objector_N = mkN "objector" "objectors"; -- from DictEng -lin objurgate_V2 = mkV2 (mkV "objurgate" "objurgates" "objurgated" "objurgated" "objurgating"); -- from DictEng -lin objurgation_N = mkN "objurgation" "objurgations"; -- from DictEng -lin oblanceolate_A = mkA "oblanceolate" ; -lin oblate_A = compoundA (mkA "oblate"); -- from DictEng -lin oblate_N = mkN "oblate" ; -lin oblateness_N = mkN "oblateness" ; -lin oblation_N = mkN "oblation" "oblations"; -- from DictEng -lin obligate_A = mkA "obligate" ; -lin obligate_V2 = mkV2 (mkV "obligate" "obligates" "obligated" "obligated" "obligating"); -- from DictEng -lin obligate_V2V = mkV2V (mkV "obligate") noPrep to_Prep ; -- from DictEng -lin obligated_A = mkA "obligated" ; -lin obligation_N = mkN "obligation" "obligations"; -- from DictEng -lin obligational_A = mkA "obligational" ; -lin obligatorily_Adv = mkAdv "obligatorily" ; -lin obligatory_A = compoundA (mkA "obligatory"); -- from DictEng -lin oblige_V2 = mkV2 (mkV "oblige" "obliges" "obliged" "obliged" "obliging"); -- from DictEng -lin obliger_N = mkN "obliger" ; -lin obliging_A = compoundA (mkA "obliging"); -- from DictEng -lin obligingly_Adv = mkAdv "obligingly" ; -lin oblique_A = compoundA (mkA "oblique"); -- from DictEng -lin oblique_N = mkN "oblique" ; -lin oblique_angled_A = compoundA (mkA "oblique angled") ; -lin obliquely_Adv = mkAdv "obliquely" ; -lin obliqueness_N = mkN "obliqueness" ; -lin obliquity_N = mkN "obliquity" "obliquities"; -- from DictEng -lin obliterable_A = mkA "obliterable" ; -lin obliterate_V2 = mkV2 (mkV "obliterate" "obliterates" "obliterated" "obliterated" "obliterating"); -- from DictEng -lin obliteration_N = mkN "obliteration" ; -- from DictEng -lin obliterator_N = mkN "obliterator" ; -lin oblivion_N = mkN "oblivion" ; -- from DictEng -lin oblivious_A = compoundA (mkA "oblivious"); -- from DictEng -lin obliviousness_N = mkN "obliviousness" ; -lin oblong_A = compoundA (mkA "oblong"); -- from DictEng -lin oblong_N = mkN "oblong" "oblongs"; -- from DictEng -lin obloquy_N = mkN "obloquy" ; -- from DictEng -lin obnoxious_A = compoundA (mkA "obnoxious"); -- from DictEng -lin obnoxiousness_N = mkN "obnoxiousness" ; -- from DictEng -lin oboe_N = mkN "oboe" "oboes"; -- from DictEng -lin oboist_N = mkN "oboist" "oboists"; -- from DictEng -lin obolus_N = mkN "obolus" ; -lin obovate_A = mkA "obovate" ; -lin obscene_A = compoundA (mkA "obscene"); -- from DictEng -lin obscenely_Adv = mkAdv "obscenely" ; -lin obscenity_N = mkN "obscenity" "obscenities"; -- from DictEng -lin obscurantism_N = mkN "obscurantism" ; -- from DictEng -lin obscurantist_N = mkN "obscurantist" "obscurantists"; -- from DictEng -lin obscure_A = compoundA (mkA "obscure"); -- from DictEng -lin obscure_V2 = mkV2 (mkV "obscure" "obscures" "obscured" "obscured" "obscuring"); -- from DictEng -lin obscure_VA = mkVA (mkV "obscure"); -- from DictEng -lin obscurely_Adv = mkAdv "obscurely" ; -lin obscureness_N = mkN "obscureness" ; -lin obscurity_N = mkN "obscurity" "obscurities"; -- from DictEng -lin obsequious_A = compoundA (mkA "obsequious"); -- from DictEng -lin obsequiously_Adv = mkAdv "obsequiously" ; -lin obsequiousness_N = mkN "obsequiousness" ; -- from DictEng -lin observable_A = compoundA (mkA "observable"); -- from DictEng -lin observance_N = mkN "observance" "observances"; -- from DictEng -lin observant_A = compoundA (mkA "observant"); -- from DictEng -lin observantly_Adv = mkAdv "observantly" ; -lin observation_N = mkN "observation" "observations"; -- from DictEng -lin observatory_N = mkN "observatory" "observatories"; -- from DictEng -lin observe_V = mkV "observe" "observes" "observed" "observed" "observing"; -- from DictEng -lin observe_V2 = mkV2 (mkV "observe" "observes" "observed" "observed" "observing"); -- from DictEng -lin observe_VS = mkVS (mkV "observe" "observes" "observed" "observed" "observing"); -- from DictEng -lin observer_N = mkN "observer" "observers"; -- from DictEng -lin observing_A = compoundA (mkA "observing"); -- from DictEng -lin obsess_V2 = mkV2 (mkV "obsess" "obsesses" "obsessed" "obsessed" "obsessing"); -- from DictEng -lin obsessed_A = mkA "obsessed" ; -lin obsession_N = mkN "obsession" "obsessions"; -- from DictEng -lin obsessional_A = compoundA (mkA "obsessional"); -- from DictEng -lin obsessive_A = compoundA (mkA "obsessive"); -- from DictEng -lin obsessive_N = mkN "obsessive" ; -lin obsessive_compulsive_A = compoundA (mkA "obsessive compulsive") ; -lin obsessive_compulsive_N = mkN "obsessive compulsive" ; -lin obsessiveness_N = mkN "obsessiveness" ; -lin obsidian_N = mkN "obsidian" ; -- from DictEng -lin obsolescence_N = mkN "obsolescence" ; -- from DictEng -lin obsolescent_A = compoundA (mkA "obsolescent"); -- from DictEng -lin obsolete_A = compoundA (mkA "obsolete"); -- from DictEng -lin obsoleteness_N = mkN "obsoleteness" ; -lin obstacle_N = mkN "obstacle" "obstacles"; -- from DictEng -lin obstetric_A = compoundA (mkA "obstetric"); -- from DictEng -lin obstetrical_A = compoundA (mkA "obstetrical"); -- from DictEng -lin obstetrician_N = mkN "obstetrician" "obstetricians"; -- from DictEng -lin obstetrics_N = mkN "obstetrics" "obstetrics"; -- from DictEng -lin obstinacy_N = mkN "obstinacy" ; -- from DictEng -lin obstinate_A = compoundA (mkA "obstinate"); -- from DictEng -lin obstipation_N = mkN "obstipation" ; -lin obstreperous_A = compoundA (mkA "obstreperous"); -- from DictEng -lin obstreperously_Adv = mkAdv "obstreperously" ; -lin obstreperousness_N = mkN "obstreperousness" ; -- from DictEng -lin obstruct_V2 = mkV2 (mkV "obstruct" "obstructs" "obstructed" "obstructed" "obstructing"); -- from DictEng -lin obstructed_A = mkA "obstructed" ; -lin obstruction_N = mkN "obstruction" "obstructions"; -- from DictEng -lin obstructionism_N = mkN "obstructionism" ; -- from DictEng -lin obstructionist_N = mkN "obstructionist" "obstructionists"; -- from DictEng -lin obstructive_A = compoundA (mkA "obstructive"); -- from DictEng -lin obstructively_Adv = mkAdv "obstructively" ; -lin obstruent_N = mkN "obstruent" ; -lin obtain_V = mkV "obtain" "obtains" "obtained" "obtained" "obtaining"; -- from DictEng -lin obtain_V2 = mkV2 (mkV "obtain" "obtains" "obtained" "obtained" "obtaining"); -- from DictEng -lin obtainable_A = compoundA (mkA "obtainable"); -- from DictEng -lin obtainment_N = mkN "obtainment" ; -lin obtrude_V = mkV "obtrude" "obtrudes" "obtruded" "obtruded" "obtruding"; -- from DictEng -lin obtrude_V2 = mkV2 (mkV "obtrude" "obtrudes" "obtruded" "obtruded" "obtruding"); -- from DictEng -lin obtrusive_A = compoundA (mkA "obtrusive"); -- from DictEng -lin obtrusively_Adv = mkAdv "obtrusively" ; -lin obtrusiveness_N = mkN "obtrusiveness" ; -lin obturator_N = mkN "obturator" ; -lin obtuse_A = compoundA (mkA "obtuse"); -- from DictEng -lin obtuseness_N = mkN "obtuseness" ; -- from DictEng -lin obverse_N = mkN "obverse" "obverses"; -- from DictEng -lin obviate_V2 = mkV2 (mkV "obviate" "obviates" "obviated" "obviated" "obviating"); -- from DictEng -lin obviation_N = mkN "obviation" ; -lin obvious_A = compoundA (mkA "obvious"); -- from DictEng -lin obviously_Adv = mkAdv "obviously" ; -lin obviousness_N = mkN "obviousness" ; -- from DictEng -lin oca_N = mkN "oca" ; -lin ocarina_N = mkN "ocarina" "ocarinas"; -- from DictEng -lin occasion_N = mkN "occasion" "occasions"; -- from DictEng -lin occasion_V2 = mkV2 (mkV "occasion" "occasions" "occasioned" "occasioned" "occasioning"); -- from DictEng -lin occasional_A = compoundA (mkA "occasional"); -- from DictEng -lin occasionally_Adv = mkAdv "occasionally" ; -lin occasions_N = mkN "occasions" ; -lin occidental_A = compoundA (mkA "occidental"); -- from DictEng -lin occidental_N = mkN "occidental" "occidentals"; -- from DictEng -lin occidentalism_N = mkN "occidentalism" ; -lin occipital_A = mkA "occipital" ; -lin occiput_N = mkN "occiput" ; -lin occluded_A = mkA "occluded" ; -lin occlusion_N = mkN "occlusion" ; -lin occlusive_A = mkA "occlusive" ; -lin occult_A = compoundA (mkA "occult"); -- from DictEng -lin occult_N = mkN "occult" "IRREG"; -- from DictEng -lin occultism_N = mkN "occultism" ; -lin occultist_N = mkN "occultist" ; -lin occupancy_N = mkN "occupancy" "occupancies"; -- from DictEng -lin occupant_N = mkN "occupant" "occupants"; -- from DictEng -lin occupation_N = mkN "occupation" "occupations"; -- from DictEng -lin occupational_A = compoundA (mkA "occupational"); -- from DictEng -lin occupied_A = mkA "occupied" ; -lin occupier_N = mkN "occupier" "occupiers"; -- from DictEng -lin occupy_V = mkV "occupy"; -- from DictEng -lin occupy_V2 = mkV2 (mkV "occupy" "occupies" "occupied" "occupied" "occupying"); -- from DictEng -lin occur_V = mkV "occur" "occurs" "occurred" "occurred" "occurring"; -- from DictEng -lin occurr_V2 = mkV2 (mkV "occurr"); -- from DictEng -lin occurrence_N = mkN "occurrence" "occurrences"; -- from DictEng -lin occurrent_A = mkA "occurrent" ; -lin ocean_N = mkN "ocean" "oceans"; -- from DictEng -lin oceanfront_N = mkN "oceanfront" ; -lin oceangoing_A = mkA "oceangoing" ; -lin oceanic_A = compoundA (mkA "oceanic"); -- from DictEng -lin oceanographer_N = mkN "oceanographer" ; -lin oceanography_N = mkN "oceanography" ; -lin ocellated_A = mkA "ocellated" ; -lin ocelot_N = mkN "ocelot" ; -lin ocher_A = mkA "ocher" ; -lin ocher_N = mkN "ocher" ; -lin ochre_N = mkN "ochre" ; -- from DictEng -lin ochronosis_N = mkN "ochronosis" ; -lin ocotillo_N = mkN "ocotillo" ; -lin octagon_N = mkN "octagon" "octagons"; -- from DictEng -lin octagonal_A = compoundA (mkA "octagonal"); -- from DictEng -lin octahedron_N = mkN "octahedron" ; -lin octal_A = mkA "octal" ; -lin octameter_N = mkN "octameter" ; -lin octane_N = mkN "octane" ; -- from DictEng -lin octangular_A = mkA "octangular" ; -lin octant_N = mkN "octant" ; -lin octave_N = mkN "octave" "octaves"; -- from DictEng -lin octavo_N = mkN "octavo" "octavos"; -- from DictEng -lin octet_N = mkN "octet" "octets"; -- from DictEng -lin octette_N = mkN "octette" "octettes"; -- from DictEng -lin octillion_N = mkN "octillion" ; -lin october_N = mkN "october" "octobers"; -- from DictEng -lin octogenarian_A = compoundA (mkA "octogenarian"); -- from DictEng -lin octogenarian_N = mkN "octogenarian" "octogenarians"; -- from DictEng -lin octopod_N = mkN "octopod" ; -lin octopus_N = mkN "octopus" "octopuses"; -- from DictEng -lin octoroon_N = mkN "octoroon" ; -lin octosyllabic_A = mkA "octosyllabic" ; -lin octosyllable_N = mkN "octosyllable" ; -lin octroi_N = mkN "octroi" "octrois"; -- from DictEng -lin octuple_A = mkA "octuple" ; -lin ocular_A = compoundA (mkA "ocular"); -- from DictEng -lin oculism_N = mkN "oculism" ; -lin oculist_N = mkN "oculist" "oculists"; -- from DictEng -lin oculomotor_N = mkN "oculomotor" ; -lin odalisque_N = mkN "odalisque" "odalisques"; -- from DictEng -lin odd_A = mkA "odd" "odder"; -- from DictEng -lin odd_job_A = compoundA (mkA "odd - job"); -- from DictEng -lin odd_pinnate_A = compoundA (mkA "odd pinnate") ; -lin odd_job_A = compoundA (mkA "odd - job"); -- from DictEng -lin oddish_A = mkA "oddish" ; -lin oddity_N = mkN "oddity" "oddities"; -- from DictEng -lin oddment_N = mkN "oddment" "oddments"; -- from DictEng -lin oddness_N = mkN "oddness" ; -lin odds_N = mkN "odds" ; -lin odds_maker_N = mkN "odds maker" ; -lin odds_on_A = compoundA (mkA "odds - on"); -- from DictEng -lin odds_on_A = compoundA (mkA "odds - on"); -- from DictEng -lin odds_on_Adv = mkAdv "odds - on"; -- from DictEng -lin ode_N = mkN "ode" "odes"; -- from DictEng -lin odious_A = compoundA (mkA "odious"); -- from DictEng -lin odist_N = mkN "odist" ; -lin odium_N = mkN "odium" ; -- from DictEng -lin odometer_N = mkN "odometer" ; -lin odonate_N = mkN "odonate" ; -lin odontoglossum_N = mkN "odontoglossum" ; -lin odoriferous_A = compoundA (mkA "odoriferous"); -- from DictEng -lin odorless_A = mkA "odorless" ; -lin odorous_A = compoundA (mkA "odorous"); -- from DictEng -lin odour_N = mkN "odour" "odours"; -- from DictEng -lin odourless_A = compoundA (mkA "odourless"); -- from DictEng -lin odynophagia_N = mkN "odynophagia" ; -lin odyssey_N = mkN "odyssey" "odysseys"; -- from DictEng -lin oecd_N = mkN "oecd" ; -- from DictEng -lin oecumenical_A = compoundA (mkA "oecumenical"); -- from DictEng -lin oed_N = mkN "oed" ; -- from DictEng -lin oenomel_N = mkN "oenomel" ; -lin oersted_N = mkN "oersted" ; -lin oesophagus_N = mkN "oesophagus" "oesophaguses"; -- from DictEng -lin oeuvre_N = mkN "oeuvre" ; -lin of_Prep = mkPrep "of"; -- from DictEng -lin off_A = compoundA (mkA "off"); -- from DictEng -lin off_Adv = mkAdv "off"; -- from DictEng -lin off_Prep = mkPrep "off"; -- from DictEng -lin off_V2 = mkV2 (mkV "off") ; -lin off_broadway_N = mkN "off Broadway" ; -lin off_base_A = compoundA (mkA "off base") ; -lin off_center_A = compoundA (mkA "off center") ; -lin off_day_N = mkN "off - day" "off - days"; -- from DictEng -lin off_hand_Adv = mkAdv "off hand" ; -lin off_limits_A = compoundA (mkA "off limits") ; -lin off_line_A = compoundA (mkA "off line") ; -lin off_putting_A = compoundA (mkA "off - putting"); -- from DictEng -lin off_season_N = mkN "off season" ; -lin off_site_A = compoundA (mkA "off site") ; -lin off_street_A = compoundA (mkA "off - street"); -- from DictEng -lin off_the_clock_Adv = mkAdv "off the clock" ; -lin off_the_rack_A = compoundA (mkA "off the rack") ; -lin off_the_shoulder_A = compoundA (mkA "off the shoulder") ; -lin off_and_on_Adv = mkAdv "off and on" ; -lin off_day_N = mkN "off - day" "off - days"; -- from DictEng -lin off_licence_N = mkN "off - licence" "off - licences"; -- from DictEng -lin off_peak_A = compoundA (mkA "off - peak"); -- from DictEng -lin off_putting_A = compoundA (mkA "off - putting"); -- from DictEng -lin off_street_A = compoundA (mkA "off - street"); -- from DictEng -lin off_the_beaten_track_A = compoundA (mkA "off the beaten track") ; -lin off_the_cuff_Adv = mkAdv "off the cuff" ; -lin off_the_hook_A = compoundA (mkA "off the hook") ; -lin off_the_record_Adv = mkAdv "off the record" ; -lin off_white_A = compoundA (mkA "off - white"); -- from DictEng -lin offal_N = mkN "offal" ; -- from DictEng -lin offbeat_A = compoundA (mkA "offbeat"); -- from DictEng -lin offence_N = mkN "offence" "offences"; -- from DictEng -lin offenceless_A = compoundA (mkA "offenceless"); -- from DictEng -lin offend_V = mkV "offend" "offends" "offended" "offended" "offending"; -- from DictEng -lin offend_V2 = mkV2 (mkV "offend" "offends" "offended" "offended" "offending"); -- from DictEng -lin offended_A = mkA "offended" ; -lin offender_N = mkN "offender" "offenders"; -- from DictEng -lin offending_A = mkA "offending" ; -lin offense_N = mkN "offense" ; -lin offenseless_A = mkA "offenseless" ; -lin offensive_A = compoundA (mkA "offensive"); -- from DictEng -lin offensive_N = mkN "offensive" "offensives"; -- from DictEng -lin offensively_Adv = mkAdv "offensively" ; -lin offensiveness_N = mkN "offensiveness" ; -- from DictEng -lin offer_N = mkN "offer" "offers"; -- from DictEng -lin offer_V = mkV "offer" "offers" "offered" "offered" "offering"; -- from DictEng -lin offer_V2 = mkV2 (mkV "offer" "offers" "offered" "offered" "offering"); -- from DictEng -lin offer_VS = mkVS (mkV "offer" "offers" "offered" "offered" "offering"); -- from DictEng -lin offer_VV = mkVV (mkV "offer" "offers" "offered" "offered" "offering"); -- from DictEng -lin offerer_N = mkN "offerer" ; -lin offering_N = mkN "offering" "offerings"; -- from DictEng -lin offertory_N = mkN "offertory" "offertories"; -- from DictEng -lin offhand_A = compoundA (mkA "offhand"); -- from DictEng -lin offhand_Adv = mkAdv "offhand"; -- from DictEng -lin offhanded_A = compoundA (mkA "offhanded"); -- from DictEng -lin offhanded_Adv = mkAdv "offhanded"; -- from DictEng -lin offhandedly_A = compoundA (mkA "offhandedly"); -- from DictEng -lin office_N = mkN "office" "offices"; -- from DictEng -lin office_bearer_N = mkN "office - bearer" "office - bearers"; -- from DictEng -lin office_bearer_N = mkN "office - bearer" "office - bearers"; -- from DictEng -lin office_block_N = mkN "office - block" "office - blocks"; -- from DictEng -lin office_boy_N = mkN "office - boy" "office - boys"; -- from DictEng -lin office_holder_N = mkN "office - holder" "office - holders"; -- from DictEng -lin officeholder_N = mkN "officeholder" ; -lin officer_N = mkN "officer" "officers"; -- from DictEng -lin official_A = compoundA (mkA "official"); -- from DictEng -lin official_N = mkN "official" "officials"; -- from DictEng -lin officialdom_N = mkN "officialdom" "officialdoms"; -- from DictEng -lin officialese_N = mkN "officialese" ; -- from DictEng -lin officially_Adv = mkAdv "officially" ; -lin officiant_N = mkN "officiant" ; -lin officiate_V = mkV "officiate" "officiates" "officiated" "officiated" "officiating"; -- from DictEng -lin officiation_N = mkN "officiation" ; -lin officious_A = compoundA (mkA "officious"); -- from DictEng -lin officiously_Adv = mkAdv "officiously" ; -lin officiousness_N = mkN "officiousness" ; -- from DictEng -lin offing_N = mkN "offing" "IRREG"; -- from DictEng -lin offish_A = compoundA (mkA "offish"); -- from DictEng -lin offprint_N = mkN "offprint" "offprints"; -- from DictEng -lin offset_N = mkN "offset" ; -- from DictEng -lin offset_V2 = mkV2 (mkV "off" IrregEng.set_V); -- from DictEng -lin offshoot_N = mkN "offshoot" "offshoots"; -- from DictEng -lin offshore_A = compoundA (mkA "offshore"); -- from DictEng -lin offshore_Adv = mkAdv "offshore" ; -lin offside_A = compoundA (mkA "offside"); -- from DictEng -lin offside_Adv = mkAdv "offside"; -- from DictEng -lin offside_N = mkN "offside" ; -lin offspring_N = mkN "offspring" "offspring"; -- from DictEng -lin offstage_A = compoundA (mkA "offstage"); -- from DictEng -lin offstage_Adv = mkAdv "offstage"; -- from DictEng -lin oft_Adv = mkAdv "oft"; -- from DictEng -lin oft_times_Adv = mkAdv "oft - times"; -- from DictEng -lin often_Adv = mkAdv "often"; -- from DictEng -lin oftener_Adv = mkAdv "oftener"; -- from DictEng -lin ogee_N = mkN "ogee" ; -lin ogle_V = mkV "ogle" "ogles" "ogled" "ogled" "ogling"; -- from DictEng -lin ogle_V2 = mkV2 (mkV "ogle" "ogles" "ogled" "ogled" "ogling"); -- from DictEng -lin ogler_N = mkN "ogler" ; -lin ogre_N = mkN "ogre" "ogres"; -- from DictEng -lin ogreish_A = compoundA (mkA "ogreish"); -- from DictEng -lin ogress_N = mkN "ogress" "ogresses"; -- from DictEng -lin ohm_N = mkN "ohm" "ohms"; -- from DictEng -lin ohmage_N = mkN "ohmage" ; -lin ohmic_A = mkA "ohmic" ; -lin ohmmeter_N = mkN "ohmmeter" ; -lin oil_N = mkN "oil" "oils"; -- from DictEng -lin oil_V2 = mkV2 (mkV "oil" "oils" "oiled" "oiled" "oiling"); -- from DictEng -lin oil_bearing_A = compoundA (mkA "oil - bearing"); -- from DictEng -lin oil_fired_A = compoundA (mkA "oil fired") ; -lin oil_soluble_A = compoundA (mkA "oil soluble") ; -lin oil_bearing_A = compoundA (mkA "oil - bearing"); -- from DictEng -lin oil_burner_N = mkN "oil - burner" "oil - burners"; -- from DictEng -lin oil_cake_N = mkN "oil - cake" ; -- from DictEng -lin oil_painting_N = mkN "oil - painting" "oil - paintings"; -- from DictEng -lin oil_palm_N = mkN "oil - palm" "oil - palms"; -- from DictEng -lin oil_paper_N = mkN "oil - paper" ; -- from DictEng -lin oil_rig_N = mkN "oil - rig" "oil - rigs"; -- from DictEng -lin oil_silk_N = mkN "oil - silk" ; -- from DictEng -lin oil_slick_N = mkN "oil - slick" "oil - slicks"; -- from DictEng -lin oil_tanker_N = mkN "oil - tanker" "oil - tankers"; -- from DictEng -lin oil_well_N = mkN "oil - well" "oil - wells"; -- from DictEng -lin oilbird_N = mkN "oilbird" ; -lin oilcan_N = mkN "oilcan" "oilcans"; -- from DictEng -lin oilcloth_N = mkN "oilcloth" ; -- from DictEng -lin oiled_A = compoundA (mkA "oiled"); -- from DictEng -lin oiler_N = mkN "oiler" "oilers"; -- from DictEng -lin oilfield_N = mkN "oilfield" "oilfields"; -- from DictEng -lin oilfired_A = compoundA (mkA "oilfired"); -- from DictEng -lin oilfish_N = mkN "oilfish" ; -lin oiliness_N = mkN "oiliness" ; -- from DictEng -lin oilman_N = mkN "oilman" ; -lin oilpaper_N = mkN "oilpaper" ; -lin oilseed_N = mkN "oilseed" ; -lin oilskin_N = mkN "oilskin" "oilskins"; -- from DictEng -lin oilstone_N = mkN "oilstone" ; -lin oily_A = mkA "oily" "oilier"; -- from DictEng -lin oink_V = mkV "oink" ; -lin ointment_N = mkN "ointment" "ointments"; -- from DictEng -lin oka_N = mkN "oka" ; -lin okapi_N = mkN "okapi" "okapis"; -- from DictEng -lin okay_A = compoundA (mkA "okay"); -- from DictEng -lin okay_Adv = mkAdv "okay"; -- from DictEng -lin okay_N = mkN "okay" "IRREG"; -- from DictEng -lin okay_V2 = mkV2 (mkV "okay" "okays" "okayed" "okayed" "okaying"); -- from DictEng -lin okra_N = mkN "okra" ; -- from DictEng -lin ola_N = mkN "ola" ; -lin old_A = mkA "old" "older"; -- from DictEng -lin old_N = mkN "old" ; -- from DictEng -lin old_fashionedness_N = mkN "old fashionedness" ; -lin old_maidish_A = compoundA (mkA "old - maidish"); -- from DictEng -lin old_man_of_the_woods_N = mkN "old man of the woods" ; -lin old_time_A = compoundA (mkA "old - time"); -- from DictEng -lin old_timer_N = mkN "old - timer" "old - timers"; -- from DictEng -lin old_world_A = compoundA (mkA "old - world"); -- from DictEng -lin old_fashioned_A = compoundA (mkA "old - fashioned"); -- from DictEng -lin old_maidish_A = compoundA (mkA "old - maidish"); -- from DictEng -lin old_time_A = compoundA (mkA "old - time"); -- from DictEng -lin old_timer_N = mkN "old - timer" "old - timers"; -- from DictEng -lin old_womanish_A = compoundA (mkA "old - womanish"); -- from DictEng -lin old_world_A = compoundA (mkA "old - world"); -- from DictEng -lin olden_A = compoundA (mkA "olden"); -- from DictEng -lin oldie_N = mkN "oldie" ; -lin oldish_A = compoundA (mkA "oldish"); -- from DictEng -lin oldline_A = mkA "oldline" ; -lin oldness_N = mkN "oldness" ; -lin oldster_N = mkN "oldster" "oldsters"; -- from DictEng -lin oleaceous_A = mkA "oleaceous" ; -lin oleaginous_A = compoundA (mkA "oleaginous"); -- from DictEng -lin oleander_N = mkN "oleander" "oleanders"; -- from DictEng -lin oleaster_N = mkN "oleaster" ; -lin olecranon_N = mkN "olecranon" ; -lin oleophilic_A = mkA "oleophilic" ; -lin oleophobic_A = mkA "oleophobic" ; -lin oleoresin_N = mkN "oleoresin" ; -lin olfactory_A = compoundA (mkA "olfactory"); -- from DictEng -lin oligarch_N = mkN "oligarch" "oligarchs"; -- from DictEng -lin oligarchic_A = mkA "oligarchic" ; -lin oligarchy_N = mkN "oligarchy" "oligarchies"; -- from DictEng -lin oligochaete_N = mkN "oligochaete" ; -lin oligodactyly_N = mkN "oligodactyly" ; -lin oligodendrocyte_N = mkN "oligodendrocyte" ; -lin oligodendroglia_N = mkN "oligodendroglia" ; -lin oligodontia_N = mkN "oligodontia" ; -lin oligomenorrhea_N = mkN "oligomenorrhea" ; -lin oligopoly_N = mkN "oligopoly" ; -lin oligosaccharide_N = mkN "oligosaccharide" ; -lin oligospermia_N = mkN "oligospermia" ; -lin oliguria_N = mkN "oliguria" ; -lin olive_A = compoundA (mkA "olive"); -- from DictEng -lin olive_N = mkN "olive" "olives"; -- from DictEng -lin olive_brown_A = compoundA (mkA "olive brown") ; -lin olive_colored_A = compoundA (mkA "olive colored") ; -lin olive_drab_A = compoundA (mkA "olive drab") ; -lin olive_grey_A = compoundA (mkA "olive grey") ; -lin olive_sized_A = compoundA (mkA "olive sized") ; -lin olive_tree_N = mkN "olive - tree" "olive - trees"; -- from DictEng -lin olivelike_A = mkA "olivelike" ; -lin olivenite_N = mkN "olivenite" ; -lin olivine_N = mkN "olivine" ; -lin olm_N = mkN "olm" ; -lin ology_N = mkN "ology" ; -lin olympiad_N = mkN "olympiad" "olympiads"; -- from DictEng -lin olympian_A = compoundA (mkA "olympian"); -- from DictEng -lin olympian_N = mkN "olympian" "olympians"; -- from DictEng -lin olympic_A = compoundA (mkA "olympic"); -- from DictEng -lin omani_A = compoundA (mkA "omani"); -- from DictEng -lin omani_N = mkN "omani" "omanis"; -- from DictEng -lin ombu_N = mkN "ombu" ; -lin ombudsman_N = mkN "ombudsman" "ombudsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin omega_N = mkN "omega" "omegas"; -- from DictEng -lin omelet_N = mkN "omelet" "omelets"; -- from DictEng -lin omelette_N = mkN "omelette" "omelettes"; -- from DictEng -lin omen_N = mkN "omen" "omens"; -- from DictEng -lin omen_V2 = mkV2 (mkV "omen" "omens" "omened" "omened" "omening"); -- from DictEng -lin omentum_N = mkN "omentum" ; -lin omeprazole_N = mkN "omeprazole" ; -lin omerta_N = mkN "omerta" ; -lin omicron_N = mkN "omicron" ; -lin ominous_A = compoundA (mkA "ominous"); -- from DictEng -lin ominously_Adv = mkAdv "ominously" ; -lin omissible_A = mkA "omissible" ; -lin omission_N = mkN "omission" "omissions"; -- from DictEng -lin omissive_A = mkA "omissive" ; -lin omit_V2 = mkV2 (mkV "omit" "omits" "omitted" "omitted" "omitting"); -- from DictEng -lin ommastrephes_N = mkN "ommastrephes" ; -lin ommatidium_N = mkN "ommatidium" ; -lin omnibus_A = mkA "omnibus" ; -lin omnibus_N = mkN "omnibus" "omnibuses"; -- from DictEng -lin omnidirectional_A = mkA "omnidirectional" ; -lin omnifarious_A = mkA "omnifarious" ; -lin omnipotence_N = mkN "omnipotence" ; -- from DictEng -lin omnipotent_A = compoundA (mkA "omnipotent"); -- from DictEng -lin omnipresent_A = mkA "omnipresent" ; -lin omnirange_N = mkN "omnirange" ; -lin omniscience_N = mkN "omniscience" ; -- from DictEng -lin omniscient_A = compoundA (mkA "omniscient"); -- from DictEng -lin omnivore_N = mkN "omnivore" ; -lin omnivorous_A = compoundA (mkA "omnivorous"); -- from DictEng -lin omophagia_N = mkN "omophagia" ; -lin omphaloskepsis_N = mkN "omphaloskepsis" ; -lin on_A = mkA "on" ; -lin on_Adv = mkAdv "on"; -- from DictEng -lin on_Prep = mkPrep "on"; -- from DictEng -lin on_key_A = compoundA (mkA "on key") ; -lin on_license_N = mkN "on license" ; -lin on_line_A = compoundA (mkA "on line") ; -lin on_site_A = compoundA (mkA "on site") ; -lin on_street_A = compoundA (mkA "on street") ; -lin on_the_job_A = compoundA (mkA "on the job") ; -lin on_the_spot_A = compoundA (mkA "on the spot") ; -lin on_air_Adv = mkAdv "on air" ; -lin on_all_fours_Adv = mkAdv "on all fours" ; -lin on_approval_Adv = mkAdv "on approval" ; -lin on_camera_Adv = mkAdv "on camera" ; -lin on_earth_Adv = mkAdv "on earth" ; -lin on_faith_Adv = mkAdv "on faith" ; -lin on_guard_A = compoundA (mkA "on guard") ; -lin on_hand_A = compoundA (mkA "on hand") ; -lin on_licence_N = mkN "on - licence" "on - licences"; -- from DictEng -lin on_paper_Adv = mkAdv "on paper" ; -lin on_tap_A = compoundA (mkA "on tap") ; -lin on_the_average_Adv = mkAdv "on the average" ; -lin on_the_coattails_Adv = mkAdv "on the coattails" ; -lin on_the_fence_A = compoundA (mkA "on the fence") ; -lin on_the_fly_Adv = mkAdv "on the fly" ; -lin on_the_go_A = compoundA (mkA "on the go") ; -lin on_the_hook_A = compoundA (mkA "on the hook") ; -lin on_the_nose_A = compoundA (mkA "on the nose") ; -lin on_the_offensive_A = compoundA (mkA "on the offensive") ; -lin on_the_one_hand_Adv = mkAdv "on the one hand" ; -lin on_the_other_hand_Adv = mkAdv "on the other hand" ; -lin on_the_spot_Adv = mkAdv "on the spot" ; -lin on_the_spur_of_the_moment_Adv = mkAdv "on the spur of the moment" ; -lin on_the_way_Adv = mkAdv "on the way" ; -lin on_time_Adv = mkAdv "on time" ; -lin on_trial_A = compoundA (mkA "on trial") ; -lin onager_N = mkN "onager" ; -lin once_Adv = mkAdv "once"; -- from DictEng -lin once_Prep = mkPrep "once"; -- from DictEng -lin once_over_N = mkN "once over" ; -lin onchocerciasis_N = mkN "onchocerciasis" ; -lin oncidium_N = mkN "oncidium" ; -lin oncogene_N = mkN "oncogene" ; -lin oncological_A = mkA "oncological" ; -lin oncologist_N = mkN "oncologist" ; -lin oncology_N = mkN "oncology" ; -lin oncoming_A = compoundA (mkA "oncoming"); -- from DictEng -lin oncoming_N = mkN "oncoming" "IRREG"; -- from DictEng -lin one_A = mkA "one" ; -lin one_N = mkN "one" ; -lin one_and_one_N = mkN "one and one" ; -lin one_armed_A = compoundA (mkA "one - armed"); -- from DictEng -lin one_billionth_N = mkN "one billionth" ; -lin one_dimensionality_N = mkN "one dimensionality" ; -lin one_eared_A = compoundA (mkA "one eared") ; -lin one_eighth_N = mkN "one eighth" ; -lin one_eyed_A = compoundA (mkA "one - eyed"); -- from DictEng -lin one_fifth_N = mkN "one fifth" ; -lin one_fourth_N = mkN "one fourth" ; -lin one_half_N = mkN "one half" ; -lin one_handed_A = compoundA (mkA "one handed") ; -lin one_hitter_N = mkN "one hitter" ; -lin one_humped_A = compoundA (mkA "one humped") ; -lin one_hundred_millionth_N = mkN "one hundred millionth" ; -lin one_hundred_thousandth_N = mkN "one hundred thousandth" ; -lin one_hundredth_N = mkN "one hundredth" ; -lin one_liner_N = mkN "one liner" ; -lin one_man_A = compoundA (mkA "one man") ; -lin one_millionth_N = mkN "one millionth" ; -lin one_ninth_N = mkN "one ninth" ; -lin one_off_N = mkN "one off" ; -lin one_on_one_A = compoundA (mkA "one on one") ; -lin one_on_one_Adv = mkAdv "one on one" ; -lin one_party_A = compoundA (mkA "one party") ; -lin one_piece_A = compoundA (mkA "one piece") ; -lin one_quadrillionth_N = mkN "one quadrillionth" ; -lin one_quintillionth_N = mkN "one quintillionth" ; -lin one_seventh_N = mkN "one seventh" ; -lin one_sixteenth_N = mkN "one sixteenth" ; -lin one_sixth_N = mkN "one sixth" ; -lin one_sixtieth_N = mkN "one sixtieth" ; -lin one_sixty_fourth_N = mkN "one sixty fourth" ; -lin one_spot_N = mkN "one spot" ; -lin one_step_N = mkN "one - step" "one - steps"; -- from DictEng -lin one_ten_thousandth_N = mkN "one ten thousandth" ; -lin one_tenth_N = mkN "one tenth" ; -lin one_third_N = mkN "one third" ; -lin one_thirty_second_N = mkN "one thirty second" ; -lin one_thousandth_N = mkN "one thousandth" ; -lin one_to_one_A = compoundA (mkA "one to one") ; -lin one_trillionth_N = mkN "one trillionth" ; -lin one_twelfth_N = mkN "one twelfth" ; -lin one_upmanship_N = mkN "one - upmanship" ; -- from DictEng -lin one_way_A = compoundA (mkA "one way") ; -lin one_winged_A = compoundA (mkA "one winged") ; -lin one_year_old_A = compoundA (mkA "one year old") ; -lin one_armed_A = compoundA (mkA "one - armed"); -- from DictEng -lin one_by_one_Adv = mkAdv "one by one" ; -lin one_eyed_A = compoundA (mkA "one - eyed"); -- from DictEng -lin one_horse_A = compoundA (mkA "one - horse"); -- from DictEng -lin one_hundred_eighty_A = compoundA (mkA "one hundred eighty") ; -lin one_hundred_fifteen_A = compoundA (mkA "one hundred fifteen") ; -lin one_hundred_fifty_A = compoundA (mkA "one hundred fifty") ; -lin one_hundred_fifty_five_A = compoundA (mkA "one hundred fifty five") ; -lin one_hundred_five_A = compoundA (mkA "one hundred five") ; -lin one_hundred_forty_A = compoundA (mkA "one hundred forty") ; -lin one_hundred_forty_five_A = compoundA (mkA "one hundred forty five") ; -lin one_hundred_ninety_A = compoundA (mkA "one hundred ninety") ; -lin one_hundred_seventy_A = compoundA (mkA "one hundred seventy") ; -lin one_hundred_seventy_five_A = compoundA (mkA "one hundred seventy five") ; -lin one_hundred_sixty_A = compoundA (mkA "one hundred sixty") ; -lin one_hundred_sixty_five_A = compoundA (mkA "one hundred sixty five") ; -lin one_hundred_ten_A = compoundA (mkA "one hundred ten") ; -lin one_hundred_thirty_A = compoundA (mkA "one hundred thirty") ; -lin one_hundred_thirty_five_A = compoundA (mkA "one hundred thirty five") ; -lin one_hundred_twenty_A = compoundA (mkA "one hundred twenty") ; -lin one_hundred_twenty_five_A = compoundA (mkA "one hundred twenty five") ; -lin one_idea'd_A = compoundA (mkA "one - idea'd"); -- from DictEng -lin one_sided_A = compoundA (mkA "one - sided"); -- from DictEng -lin one_step_N = mkN "one - step" "one - steps"; -- from DictEng -lin one_time_A = compoundA (mkA "one - time"); -- from DictEng -lin one_upmanship_N = mkN "one - upmanship" ; -- from DictEng -lin oneiric_A = mkA "oneiric" ; -lin oneiromancer_N = mkN "oneiromancer" ; -lin oneiromancy_N = mkN "oneiromancy" ; -lin oneness_N = mkN "oneness" ; -- from DictEng -lin onerous_A = compoundA (mkA "onerous"); -- from DictEng -lin onerously_Adv = mkAdv "onerously" ; -lin ongoing_A = compoundA (mkA "ongoing"); -- from DictEng -lin onion_N = mkN "onion" "onions"; -- from DictEng -lin onionskin_N = mkN "onionskin" ; -lin onlooker_N = mkN "onlooker" "onlookers"; -- from DictEng -lin only_Adv = mkAdv "only"; -- from DictEng -lin only_Predet = {s="only"}; -- from DictEng -lin onomancer_N = mkN "onomancer" ; -lin onomancy_N = mkN "onomancy" ; -lin onomastic_A = mkA "onomastic" ; -lin onomasticon_N = mkN "onomasticon" ; -lin onomastics_N = mkN "onomastics" ; -lin onomatomania_N = mkN "onomatomania" ; -lin onomatopoeia_N = mkN "onomatopoeia" ; -- from DictEng -lin onomatopoeic_A = mkA "onomatopoeic" ; -lin onrush_N = mkN "onrush" "onrushes"; -- from DictEng -lin onset_N = mkN "onset" "onsets"; -- from DictEng -lin onshore_A = compoundA (mkA "onshore"); -- from DictEng -lin onshore_Adv = mkAdv "onshore"; -- from DictEng -lin onside_A = mkA "onside" ; -lin onslaught_N = mkN "onslaught" "onslaughts"; -- from DictEng -lin onstage_A = mkA "onstage" ; -lin onstage_Adv = mkAdv "onstage" ; -lin onto_Prep = mkPrep "onto"; -- from DictEng -lin ontogenetic_A = mkA "ontogenetic" ; -lin ontological_A = mkA "ontological" ; -lin ontology_N = mkN "ontology" "ontologies"; -- from DictEng -lin onus_N = mkN "onus" "oni" {- FIXME: guessed plural form -}; -- from DictEng -lin onward_A = compoundA (mkA "onward"); -- from DictEng -lin onward_Adv = mkAdv "onward"; -- from DictEng -lin onwards_Adv = mkAdv "onwards"; -- from DictEng -lin onycholysis_N = mkN "onycholysis" ; -lin onychophoran_N = mkN "onychophoran" ; -lin onychosis_N = mkN "onychosis" ; -lin onymous_A = mkA "onymous" ; -lin onyx_N = mkN "onyx" ; -- from DictEng -lin oocyte_N = mkN "oocyte" ; -lin oogenesis_N = mkN "oogenesis" ; -lin oology_N = mkN "oology" ; -lin oolong_N = mkN "oolong" ; -lin oomph_N = mkN "oomph" ; -- from DictEng -lin oophorectomy_N = mkN "oophorectomy" ; -lin oophoritis_N = mkN "oophoritis" ; -lin oophorosalpingectomy_N = mkN "oophorosalpingectomy" ; -lin oosphere_N = mkN "oosphere" ; -lin oospore_N = mkN "oospore" ; -lin ootid_N = mkN "ootid" ; -lin ooze_N = mkN "ooze" ; -- from DictEng -lin ooze_V = mkV "ooze" "oozes" "oozed" "oozed" "oozing"; -- from DictEng -lin ooze_V2 = mkV2 (mkV "ooze" "oozes" "oozed" "oozed" "oozing"); -- from DictEng -lin oozing_A = mkA "oozing" ; -lin oozy_A = mkA "oozy" "oozier"; -- from DictEng -lin op_art_N = mkN "op art" ; -- from DictEng -lin opacification_N = mkN "opacification" ; -lin opacity_N = mkN "opacity" ; -- from DictEng -lin opah_N = mkN "opah" ; -lin opal_N = mkN "opal" "opals"; -- from DictEng -lin opalescence_N = mkN "opalescence" ; -lin opalescent_A = compoundA (mkA "opalescent"); -- from DictEng -lin opaque_A = compoundA (mkA "opaque"); -- from DictEng -lin opaquely_Adv = mkAdv "opaquely" ; -lin opaqueness_N = mkN "opaqueness" ; -- from DictEng -lin open_A = compoundA (mkA "open"); -- from DictEng -lin open_N = mkN "open" ; -- from DictEng -lin open_V = mkV "open" "opens" "opened" "opened" "opening"; -- from DictEng -lin open_V2 = mkV2 (mkV "open" "opens" "opened" "opened" "opening"); -- from DictEng -lin open_and_shut_A = compoundA (mkA "open and shut") ; -lin open_collared_A = compoundA (mkA "open collared") ; -lin open_ended_A = compoundA (mkA "open - ended"); -- from DictEng -lin open_hearth_A = compoundA (mkA "open hearth") ; -lin open_minded_A = compoundA (mkA "open - minded"); -- from DictEng -lin open_plan_A = compoundA (mkA "open plan") ; -lin open_source_A = compoundA (mkA "open source") ; -lin open_air_A = compoundA (mkA "open - air"); -- from DictEng -lin open_ended_A = compoundA (mkA "open - ended"); -- from DictEng -lin open_eyed_A = compoundA (mkA "open - eyed"); -- from DictEng -lin open_handed_A = compoundA (mkA "open - handed"); -- from DictEng -lin open_hearted_A = compoundA (mkA "open - hearted"); -- from DictEng -lin open_minded_A = compoundA (mkA "open - minded"); -- from DictEng -lin open_mouthed_A = compoundA (mkA "open - mouthed"); -- from DictEng -lin openbill_N = mkN "openbill" ; -lin opencast_A = compoundA (mkA "opencast"); -- from DictEng -lin opened_A = mkA "opened" ; -lin opener_N = mkN "opener" "openers"; -- from DictEng -lin openhearted_A = mkA "openhearted" ; -lin opening_A = compoundA (mkA "opening"); -- from DictEng -lin opening_N = mkN "opening" "openings"; -- from DictEng -lin openly_Adv = mkAdv "openly" ; -lin openness_N = mkN "openness" ; -- from DictEng -lin openwork_N = mkN "openwork" ; -- from DictEng -lin opepe_N = mkN "opepe" ; -lin opera_N = mkN "opera" "operas"; -- from DictEng -lin opera_cloak_N = mkN "opera - cloak" "opera - cloaks"; -- from DictEng -lin opera_hat_N = mkN "opera - hat" "opera - hats"; -- from DictEng -lin opera_house_N = mkN "opera - house" "opera - houses"; -- from DictEng -lin operable_A = compoundA (mkA "operable"); -- from DictEng -lin operagoer_N = mkN "operagoer" ; -lin operand_N = mkN "operand" ; -lin operant_A = mkA "operant" ; -lin operate_V = mkV "operate" "operates" "operated" "operated" "operating"; -- from DictEng -lin operate_V2 = mkV2 (mkV "operate" "operates" "operated" "operated" "operating"); -- from DictEng -lin operatic_A = compoundA (mkA "operatic"); -- from DictEng -lin operating_A = mkA "operating" ; -lin operating_table_N = mkN "operating - table" "operating - tables"; -- from DictEng -lin operating_theatre_N = mkN "operating - theatre" "operating - theatres"; -- from DictEng -lin operation_N = mkN "operation" "operations"; -- from DictEng -lin operational_A = compoundA (mkA "operational"); -- from DictEng -lin operationalism_N = mkN "operationalism" ; -lin operationalist_A = mkA "operationalist" ; -lin operationally_Adv = mkAdv "operationally" ; -lin operations_N = mkN "operations" ; -lin operative_A = compoundA (mkA "operative"); -- from DictEng -lin operative_N = mkN "operative" "operatives"; -- from DictEng -lin operatively_Adv = mkAdv "operatively" ; -lin operator_N = mkN "operator" "operators"; -- from DictEng -lin operculate_A = mkA "operculate" ; -lin operculum_N = mkN "operculum" ; -lin operetta_N = mkN "operetta" "operettas"; -- from DictEng -lin operon_N = mkN "operon" ; -lin ophidism_N = mkN "ophidism" ; -lin ophiolatry_N = mkN "ophiolatry" ; -lin ophryon_N = mkN "ophryon" ; -lin ophthalmectomy_N = mkN "ophthalmectomy" ; -lin ophthalmia_N = mkN "ophthalmia" ; -- from DictEng -lin ophthalmic_A = compoundA (mkA "ophthalmic"); -- from DictEng -lin ophthalmologist_N = mkN "ophthalmologist" ; -lin ophthalmology_N = mkN "ophthalmology" ; -lin ophthalmoplegia_N = mkN "ophthalmoplegia" ; -lin ophthalmoscope_N = mkN "ophthalmoscope" "ophthalmoscopes"; -- from DictEng -lin ophthalmoscopy_N = mkN "ophthalmoscopy" ; -lin opiate_N = mkN "opiate" "opiates"; -- from DictEng -lin opine_V2 = mkV2 (mkV "opine" "opines" "opined" "opined" "opining"); -- from DictEng -lin opine_VS = mkVS (mkV "opine" "opines" "opined" "opined" "opining"); -- from DictEng -lin opinion_N = mkN "opinion" "opinions"; -- from DictEng -lin opinionated_A = compoundA (mkA "opinionated"); -- from DictEng -lin opinionative_A = compoundA (mkA "opinionative"); -- from DictEng -lin opisthognathous_A = mkA "opisthognathous" ; -lin opisthorchiasis_N = mkN "opisthorchiasis" ; -lin opisthotonos_N = mkN "opisthotonos" ; -lin opium_N = mkN "opium" ; -- from DictEng -lin opium_den_N = mkN "opium - den" "opium - dens"; -- from DictEng -lin opopanax_N = mkN "opopanax" ; -lin opossum_N = mkN "opossum" "opossums"; -- from DictEng -lin opponent_A = mkA "opponent" ; -lin opponent_N = mkN "opponent" "opponents"; -- from DictEng -lin opportune_A = compoundA (mkA "opportune"); -- from DictEng -lin opportunely_Adv = mkAdv "opportunely" ; -lin opportuneness_N = mkN "opportuneness" ; -lin opportunism_N = mkN "opportunism" ; -- from DictEng -lin opportunist_A = mkA "opportunist" ; -lin opportunist_N = mkN "opportunist" "opportunists"; -- from DictEng -lin opportunity_N = mkN "opportunity" "opportunities"; -- from DictEng -lin opposable_A = mkA "opposable" ; -lin oppose_V = mkV "oppose"; -- from DictEng -lin oppose_V2 = mkV2 (mkV "oppose" "opposes" "opposed" "opposed" "opposing"); -- from DictEng -lin oppose_VS = mkVS (mkV "oppose"); -- from DictEng -lin opposed_A = mkA "opposed" ; -lin opposite_A = compoundA (mkA "opposite"); -- from DictEng -lin opposite_N = mkN "opposite" "opposites"; -- from DictEng -lin opposite_Prep = mkPrep "opposite"; -- from DictEng -lin oppositely_Adv = mkAdv "oppositely" ; -lin opposition_N = mkN "opposition" ; -- from DictEng -lin oppress_V2 = mkV2 (mkV "oppress" "oppresses" "oppressed" "oppressed" "oppressing"); -- from DictEng -lin oppression_N = mkN "oppression" "oppressions"; -- from DictEng -lin oppressive_A = compoundA (mkA "oppressive"); -- from DictEng -lin oppressively_Adv = mkAdv "oppressively" ; -lin oppressor_N = mkN "oppressor" "oppressors"; -- from DictEng -lin opprobrious_A = compoundA (mkA "opprobrious"); -- from DictEng -lin opprobrium_N = mkN "opprobrium" ; -- from DictEng -lin oppugn_V2 = mkV2 (mkV "oppugn" "oppugns" "oppugned" "oppugned" "oppugning"); -- from DictEng -lin opsin_N = mkN "opsin" ; -lin opsonin_N = mkN "opsonin" ; -lin opsonization_N = mkN "opsonization" ; -lin opt_V = mkV "opt" "opts" "opted" "opted" "opting"; -- from DictEng -lin opt_V2V = mkV2V (mkV "opt" "opts" "opted" "opted" "opting") noPrep to_Prep ; -- from DictEng -lin opt_VS = mkVS (mkV "opt" "opts" "opted" "opted" "opting"); -- from DictEng -lin optative_A = compoundA (mkA "optative"); -- from DictEng -lin optative_N = mkN "optative" "optatives"; -- from DictEng -lin optic_A = compoundA (mkA "optic"); -- from DictEng -lin optical_A = compoundA (mkA "optical"); -- from DictEng -lin optically_Adv = mkAdv "optically" ; -lin optician_N = mkN "optician" "opticians"; -- from DictEng -lin optics_N = mkN "optics" "optics"; -- from DictEng -lin optimal_A = compoundA (mkA "optimal"); -- from DictEng -lin optimally_Adv = mkAdv "optimally" ; -lin optimism_N = mkN "optimism" ; -- from DictEng -lin optimist_N = mkN "optimist" "optimists"; -- from DictEng -lin optimistic_A = compoundA (mkA "optimistic"); -- from DictEng -lin optimistically_Adv = mkAdv "optimistically"; -- from DictEng -lin optimization_N = mkN "optimization" ; -lin optimum_A = mkA "optimum" ; -lin optimum_N = mkN "optimum" "optimums"; -- from DictEng -lin option_N = mkN "option" "options"; -- from DictEng -lin optional_A = compoundA (mkA "optional"); -- from DictEng -lin optionally_Adv = mkAdv "optionally" ; -lin optometrist_N = mkN "optometrist" ; -lin optometry_N = mkN "optometry" ; -lin opulence_N = mkN "opulence" ; -- from DictEng -lin opulent_A = compoundA (mkA "opulent"); -- from DictEng -lin opus_N = mkN "opus" "opi" {- FIXME: guessed plural form -}; -- from DictEng -lin or_Conj = mkConj "or" singular ; -- from DictEng -lin orach_N = mkN "orach" ; -lin oracle_N = mkN "oracle" "oracles"; -- from DictEng -lin oracular_A = compoundA (mkA "oracular"); -- from DictEng -lin orad_Adv = mkAdv "orad" ; -lin oral_A = compoundA (mkA "oral"); -- from DictEng -lin oral_N = mkN "oral" "orals"; -- from DictEng -lin orally_Adv = mkAdv "orally" ; -lin orang_outan_N = mkN "orang - outan" "orang - outans"; -- from DictEng -lin orang_outang_N = mkN "orang - outang" "orang - outangs"; -- from DictEng -lin orang_utan_N = mkN "orang - utan" "orang - utans"; -- from DictEng -lin orange_A = compoundA (mkA "orange"); -- from DictEng -lin orange_N = mkN "orange" "oranges"; -- from DictEng -lin orange_brown_A = compoundA (mkA "orange brown") ; -lin orange_colored_A = compoundA (mkA "orange colored") ; -lin orange_flowered_A = compoundA (mkA "orange flowered") ; -lin orange_red_A = compoundA (mkA "orange red") ; -lin orange_sized_A = compoundA (mkA "orange sized") ; -lin orangeade_N = mkN "orangeade" ; -- from DictEng -lin orangeman_N = mkN "orangeman" "orangemen" {- FIXME: guessed plural form -}; -- from DictEng -lin orangery_N = mkN "orangery" ; -lin orangewood_N = mkN "orangewood" ; -lin orangutan_N = mkN "orangutan" ; -lin orate_V = mkV "orate" "orates" "orated" "orated" "orating"; -- from DictEng -lin oration_N = mkN "oration" "orations"; -- from DictEng -lin orator_N = mkN "orator" "orators"; -- from DictEng -lin oratorical_A = compoundA (mkA "oratorical"); -- from DictEng -lin oratorio_N = mkN "oratorio" "oratorios"; -- from DictEng -lin oratory_N = mkN "oratory" "oratories"; -- from DictEng -lin orb_N = mkN "orb" "orbs"; -- from DictEng -lin orb_weaving_A = compoundA (mkA "orb weaving") ; -lin orbiculate_A = mkA "orbiculate" ; -lin orbit_N = mkN "orbit" "orbits"; -- from DictEng -lin orbit_V = mkV "orbit" "orbits" "orbited" "orbited" "orbiting"; -- from DictEng -lin orbit_V2 = mkV2 (mkV "orbit" "orbits" "orbited" "orbited" "orbiting"); -- from DictEng -lin orbital_A = compoundA (mkA "orbital"); -- from DictEng -lin orbitale_N = mkN "orbitale" ; -lin orchard_N = mkN "orchard" "orchards"; -- from DictEng -lin orchestra_N = mkN "orchestra" "orchestras"; -- from DictEng -lin orchestral_A = compoundA (mkA "orchestral"); -- from DictEng -lin orchestrate_V2 = mkV2 (mkV "orchestrate" "orchestrates" "orchestrated" "orchestrated" "orchestrating"); -- from DictEng -lin orchestrated_A = mkA "orchestrated" ; -lin orchestration_N = mkN "orchestration" "orchestrations"; -- from DictEng -lin orchestrator_N = mkN "orchestrator" ; -lin orchid_N = mkN "orchid" "orchids"; -- from DictEng -lin orchidalgia_N = mkN "orchidalgia" ; -lin orchidectomy_N = mkN "orchidectomy" ; -lin orchil_N = mkN "orchil" ; -lin orchiopexy_N = mkN "orchiopexy" ; -lin orchis_N = mkN "orchis" "orchises"; -- from DictEng -lin orchitis_N = mkN "orchitis" ; -lin orchotomy_N = mkN "orchotomy" ; -lin ordain_V2 = mkV2 (mkV "ordain" "ordains" "ordained" "ordained" "ordaining"); -- from DictEng -lin ordain_VS = mkVS (mkV "ordain"); -- from DictEng -lin ordained_A = mkA "ordained" ; -lin ordainer_N = mkN "ordainer" ; -lin ordeal_N = mkN "ordeal" "ordeals"; -- from DictEng -lin order_N = mkN "order" "orders"; -- from DictEng -lin order_V = mkV "order"; -- from DictEng -lin order_V2 = mkV2 (mkV "order" "orders" "ordered" "ordered" "ordering"); -- from DictEng -lin order_V2V = mkV2V (mkV "order" "orders" "ordered" "ordered" "ordering") noPrep to_Prep ; -- from DictEng -lin order_VS = mkVS (mkV "order" "orders" "ordered" "ordered" "ordering"); -- from DictEng -lin order_myxobacteria_PN = mkPN "order Myxobacteria" ; -lin order_book_N = mkN "order - book" "order - books"; -- from DictEng -lin order_form_N = mkN "order - form" "order - forms"; -- from DictEng -lin order_paper_N = mkN "order - paper" "order - papers"; -- from DictEng -lin ordered_A = mkA "ordered" ; -lin orderer_N = mkN "orderer" ; -lin ordering_N = mkN "ordering" "orderings"; -- from DictEng -lin orderliness_N = mkN "orderliness" ; -- from DictEng -lin orderly_A = compoundA (mkA "orderly"); -- from DictEng -lin orderly_N = mkN "orderly" "orderlies"; -- from DictEng -lin ordinal_A = compoundA (mkA "ordinal"); -- from DictEng -lin ordinal_N = mkN "ordinal" "ordinals"; -- from DictEng -lin ordinance_N = mkN "ordinance" "ordinances"; -- from DictEng -lin ordinand_N = mkN "ordinand" "ordinands"; -- from DictEng -lin ordinariness_N = mkN "ordinariness" ; -lin ordinary_A = compoundA (mkA "ordinary"); -- from DictEng -lin ordinary_N = mkN "ordinary" ; -lin ordinate_N = mkN "ordinate" ; -lin ordination_N = mkN "ordination" "ordinations"; -- from DictEng -lin ordnance_N = mkN "ordnance" ; -- from DictEng -lin ordure_N = mkN "ordure" ; -- from DictEng -lin ore_N = mkN "ore" "ores"; -- from DictEng -lin oregano_N = mkN "oregano" ; -lin oreo_N = mkN "oreo" ; -lin organ_N = mkN "organ" "organs"; -- from DictEng -lin organ_grinder_N = mkN "organ - grinder" "organ - grinders"; -- from DictEng -lin organ_blower_N = mkN "organ - blower" "organ - blowers"; -- from DictEng -lin organ_grinder_N = mkN "organ - grinder" "organ - grinders"; -- from DictEng -lin organ_loft_N = mkN "organ - loft" "organ - lofts"; -- from DictEng -lin organ_of_corti_PN = mkPN "organ of Corti" ; -lin organdie_N = mkN "organdie" ; -- from DictEng -lin organdy_N = mkN "organdy" ; -lin organelle_N = mkN "organelle" ; -lin organic_A = compoundA (mkA "organic"); -- from DictEng -lin organic_N = mkN "organic" ; -lin organically_Adv = mkAdv "organically"; -- from DictEng -lin organicism_N = mkN "organicism" ; -lin organicistic_A = mkA "organicistic" ; -lin organification_N = mkN "organification" ; -lin organism_N = mkN "organism" "organisms"; -- from DictEng -lin organismal_A = mkA "organismal" ; -lin organist_N = mkN "organist" "organists"; -- from DictEng -lin organization_N = mkN "organization" "organizations"; -- from DictEng -lin organizational_A = compoundA (mkA "organizational"); -- from DictEng -lin organizationally_Adv = mkAdv "organizationally" ; -lin organize_V2 = mkV2 (mkV "organize" "organizes" "organized" "organized" "organizing"); -- from DictEng -lin organize_V2V = mkV2V (mkV "organize") noPrep to_Prep ; -- from DictEng -lin organized_A = compoundA (mkA "organized"); -- from DictEng -lin organizer_N = mkN "organizer" "organizers"; -- from DictEng -lin organon_N = mkN "organon" ; -lin organophosphate_N = mkN "organophosphate" ; -lin organza_N = mkN "organza" ; -lin orgasm_N = mkN "orgasm" "orgasms"; -- from DictEng -lin orgiastic_A = compoundA (mkA "orgiastic"); -- from DictEng -lin orgy_N = mkN "orgy" "orgies"; -- from DictEng -lin oriel_N = mkN "oriel" "oriels"; -- from DictEng -lin orient_A = compoundA (mkA "orient"); -- from DictEng -lin orient_N = mkN "orient" "IRREG"; -- from DictEng -lin orient_V2 = mkV2 (mkV "orient" "orients" "oriented" "oriented" "orienting"); -- from DictEng -lin oriental_A = compoundA (mkA "oriental"); -- from DictEng -lin oriental_N = mkN "oriental" "orientals"; -- from DictEng -lin orientalism_N = mkN "orientalism" ; -lin orientalist_N = mkN "orientalist" "orientalists"; -- from DictEng -lin orientate_V2 = mkV2 (mkV "orientate" "orientates" "orientated" "orientated" "orientating"); -- from DictEng -lin orientation_N = mkN "orientation" ; -- from DictEng -lin oriented_A = mkA "oriented" ; -lin orienting_A = mkA "orienting" ; -lin orifice_N = mkN "orifice" "orifices"; -- from DictEng -lin oriflamme_N = mkN "oriflamme" ; -lin origami_N = mkN "origami" ; -lin origanum_N = mkN "origanum" ; -lin origin_N = mkN "origin" "origins"; -- from DictEng -lin original_A = compoundA (mkA "original"); -- from DictEng -lin original_N = mkN "original" "originals"; -- from DictEng -lin originalism_N = mkN "originalism" ; -lin originality_N = mkN "originality" ; -- from DictEng -lin originally_Adv = mkAdv "originally" ; -lin originate_V = mkV "originate" "originates" "originated" "originated" "originating"; -- from DictEng -lin originate_V2 = mkV2 (mkV "originate" "originates" "originated" "originated" "originating"); -- from DictEng -lin originator_N = mkN "originator" "originators"; -- from DictEng -lin oriole_N = mkN "oriole" "orioles"; -- from DictEng -lin orison_N = mkN "orison" "orisons"; -- from DictEng -lin orlop_N = mkN "orlop" "orlops"; -- from DictEng -lin ormer_N = mkN "ormer" ; -lin ormolu_N = mkN "ormolu" "ormolus"; -- from DictEng -lin ornament_N = mkN "ornament" "ornaments"; -- from DictEng -lin ornament_V2 = mkV2 (mkV "ornament" "ornaments" "ornamented" "ornamented" "ornamenting"); -- from DictEng -lin ornamental_A = compoundA (mkA "ornamental"); -- from DictEng -lin ornamental_N = mkN "ornamental" ; -lin ornamentalism_N = mkN "ornamentalism" ; -lin ornamentally_Adv = mkAdv "ornamentally" ; -lin ornamentation_N = mkN "ornamentation" ; -- from DictEng -lin ornate_A = compoundA (mkA "ornate"); -- from DictEng -lin ornately_Adv = mkAdv "ornately" ; -lin ornateness_N = mkN "ornateness" ; -- from DictEng -lin ornery_A = compoundA (mkA "ornery"); -- from DictEng -lin ornithine_N = mkN "ornithine" ; -lin ornithischian_N = mkN "ornithischian" ; -lin ornithological_A = compoundA (mkA "ornithological"); -- from DictEng -lin ornithologist_N = mkN "ornithologist" "ornithologists"; -- from DictEng -lin ornithology_N = mkN "ornithology" ; -- from DictEng -lin ornithomimid_N = mkN "ornithomimid" ; -lin ornithopod_N = mkN "ornithopod" ; -lin orogeny_N = mkN "orogeny" ; -lin oroide_N = mkN "oroide" ; -lin orology_N = mkN "orology" ; -lin oropharyngeal_A = mkA "oropharyngeal" ; -lin oropharynx_N = mkN "oropharynx" ; -lin orotund_A = compoundA (mkA "orotund"); -- from DictEng -lin orphan_N = mkN "orphan" "orphans"; -- from DictEng -lin orphan_V2 = mkV2 (mkV "orphan" "orphans" "orphaned" "orphaned" "orphaning"); -- from DictEng -lin orphanage_N = mkN "orphanage" "orphanages"; -- from DictEng -lin orphaned_A = mkA "orphaned" ; -lin orphenadrine_N = mkN "orphenadrine" ; -lin orphrey_N = mkN "orphrey" ; -lin orpiment_N = mkN "orpiment" ; -lin orpine_N = mkN "orpine" ; -lin orrery_N = mkN "orrery" ; -lin orrisroot_N = mkN "orrisroot" ; -- from DictEng -lin orthicon_N = mkN "orthicon" ; -lin orthochorea_N = mkN "orthochorea" ; -lin orthoclase_N = mkN "orthoclase" ; -lin orthodontic_A = compoundA (mkA "orthodontic"); -- from DictEng -lin orthodontics_N = mkN "orthodontics" "orthodontics"; -- from DictEng -lin orthodontist_N = mkN "orthodontist" "orthodontists"; -- from DictEng -lin orthodox_A = compoundA (mkA "orthodox"); -- from DictEng -lin orthodoxy_N = mkN "orthodoxy" "orthodoxies"; -- from DictEng -lin orthoepist_N = mkN "orthoepist" ; -lin orthoepy_N = mkN "orthoepy" ; -lin orthogonal_A = compoundA (mkA "orthogonal"); -- from DictEng -lin orthogonality_N = mkN "orthogonality" ; -lin orthographic_A = compoundA (mkA "orthographic"); -- from DictEng -lin orthography_N = mkN "orthography" "orthographies"; -- from DictEng -lin orthomolecular_A = mkA "orthomolecular" ; -lin orthomyxovirus_N = mkN "orthomyxovirus" ; -lin orthopaedic_A = compoundA (mkA "orthopaedic"); -- from DictEng -lin orthopaedics_N = mkN "orthopaedics" "orthopaedics"; -- from DictEng -lin orthopedic_A = compoundA (mkA "orthopedic"); -- from DictEng -lin orthopedics_N = mkN "orthopedics" "orthopedics"; -- from DictEng -lin orthopedist_N = mkN "orthopedist" ; -lin orthopnea_N = mkN "orthopnea" ; -lin orthopter_N = mkN "orthopter" ; -lin orthoptic_A = mkA "orthoptic" ; -lin orthoptics_N = mkN "orthoptics" ; -lin orthoptist_N = mkN "orthoptist" ; -lin orthoscope_N = mkN "orthoscope" ; -lin orthostatic_A = mkA "orthostatic" ; -lin orthotropous_A = mkA "orthotropous" ; -lin ortolan_N = mkN "ortolan" "ortolans"; -- from DictEng -lin ortygan_N = mkN "ortygan" ; -lin oryx_N = mkN "oryx" "oryxes"; -- from DictEng -lin orzo_N = mkN "orzo" ; -lin os_N = mkN "os" ; -lin oscar_N = mkN "oscar" "oscars"; -- from DictEng -lin oscheocele_N = mkN "oscheocele" ; -lin oscillate_V = mkV "oscillate" "oscillates" "oscillated" "oscillated" "oscillating"; -- from DictEng -lin oscillate_V2 = mkV2 (mkV "oscillate" "oscillates" "oscillated" "oscillated" "oscillating"); -- from DictEng -lin oscillation_N = mkN "oscillation" "oscillations"; -- from DictEng -lin oscillator_N = mkN "oscillator" "oscillators"; -- from DictEng -lin oscillatory_A = mkA "oscillatory" ; -lin oscillogram_N = mkN "oscillogram" ; -lin oscillograph_N = mkN "oscillograph" "oscillographs"; -- from DictEng -lin oscilloscope_N = mkN "oscilloscope" "oscilloscopes"; -- from DictEng -lin oscine_A = mkA "oscine" ; -lin oscine_N = mkN "oscine" ; -lin oscitancy_N = mkN "oscitancy" ; -lin osculation_N = mkN "osculation" ; -lin osier_N = mkN "osier" "osiers"; -- from DictEng -lin osmiridium_N = mkN "osmiridium" ; -lin osmium_N = mkN "osmium" ; -lin osmoreceptor_N = mkN "osmoreceptor" ; -lin osmosis_N = mkN "osmosis" ; -lin osmotic_A = mkA "osmotic" ; -lin osmotically_Adv = mkAdv "osmotically" ; -lin osprey_N = mkN "osprey" "ospreys"; -- from DictEng -lin osseous_A = compoundA (mkA "osseous"); -- from DictEng -lin ossicle_N = mkN "ossicle" ; -lin ossicular_A = mkA "ossicular" ; -lin ossiferous_A = mkA "ossiferous" ; -lin ossification_N = mkN "ossification" ; -- from DictEng -lin ossify_V = mkV "ossify" "ossifies" "ossified" "ossified" "ossifying"; -- from DictEng -lin ossify_V2 = mkV2 (mkV "ossify" "ossifies" "ossified" "ossified" "ossifying"); -- from DictEng -lin ossuary_N = mkN "ossuary" ; -lin osteal_A = mkA "osteal" ; -lin osteitis_N = mkN "osteitis" ; -lin ostensible_A = compoundA (mkA "ostensible"); -- from DictEng -lin ostensive_A = mkA "ostensive" ; -lin ostentation_N = mkN "ostentation" ; -- from DictEng -lin ostentatious_A = compoundA (mkA "ostentatious"); -- from DictEng -lin ostentatiously_Adv = mkAdv "ostentatiously" ; -lin osteoarthritis_N = mkN "osteoarthritis" ; -lin osteoblast_N = mkN "osteoblast" ; -lin osteoblastoma_N = mkN "osteoblastoma" ; -lin osteochondroma_N = mkN "osteochondroma" ; -lin osteoclasis_N = mkN "osteoclasis" ; -lin osteoclast_N = mkN "osteoclast" ; -lin osteocyte_N = mkN "osteocyte" ; -lin osteodystrophy_N = mkN "osteodystrophy" ; -lin osteologist_N = mkN "osteologist" ; -lin osteology_N = mkN "osteology" ; -lin osteolysis_N = mkN "osteolysis" ; -lin osteoma_N = mkN "osteoma" ; -lin osteomalacia_N = mkN "osteomalacia" ; -lin osteomyelitis_N = mkN "osteomyelitis" ; -lin osteopath_N = mkN "osteopath" "osteopaths"; -- from DictEng -lin osteopathy_N = mkN "osteopathy" ; -- from DictEng -lin osteopetrosis_N = mkN "osteopetrosis" ; -lin osteophyte_N = mkN "osteophyte" ; -lin osteoporosis_N = mkN "osteoporosis" ; -lin osteosarcoma_N = mkN "osteosarcoma" ; -lin osteosclerosis_N = mkN "osteosclerosis" ; -lin osteostracan_N = mkN "osteostracan" ; -lin osteotomy_N = mkN "osteotomy" ; -lin ostinato_N = mkN "ostinato" ; -lin ostiole_N = mkN "ostiole" ; -lin ostler_N = mkN "ostler" "ostlers"; -- from DictEng -lin ostomy_N = mkN "ostomy" ; -lin ostracism_N = mkN "ostracism" ; -- from DictEng -lin ostracize_V2 = mkV2 (mkV "ostracize" "ostracizes" "ostracized" "ostracized" "ostracizing"); -- from DictEng -lin ostracoderm_N = mkN "ostracoderm" ; -lin ostrich_N = mkN "ostrich" "ostriches"; -- from DictEng -lin ot_N = mkN "ot" ; -- from DictEng -lin other_A = compoundA (mkA "other"); -- from DictEng -lin other_Adv = mkAdv "other"; -- from DictEng -lin other_N = mkN "other" "others"; -- from DictEng -lin otherness_N = mkN "otherness" ; -lin otherwise_A = mkA "otherwise" ; -lin otherwise_Adv = mkAdv "otherwise"; -- from DictEng -lin otherworld_N = mkN "otherworld" ; -lin otherworldly_A = compoundA (mkA "otherworldly"); -- from DictEng -lin othonna_N = mkN "othonna" ; -lin otic_A = mkA "otic" ; -lin otiose_A = compoundA (mkA "otiose"); -- from DictEng -lin otitis_N = mkN "otitis" ; -lin otology_N = mkN "otology" ; -lin otoplasty_N = mkN "otoplasty" ; -lin otorrhea_N = mkN "otorrhea" ; -lin otosclerosis_N = mkN "otosclerosis" ; -lin otoscope_N = mkN "otoscope" ; -lin ototoxic_A = mkA "ototoxic" ; -lin otter_N = mkN "otter" "otters"; -- from DictEng -lin otterhound_N = mkN "otterhound" ; -lin ottoman_N = mkN "ottoman" "ottomans"; -- from DictEng -lin oubliette_N = mkN "oubliette" "oubliettes"; -- from DictEng -lin ouguiya_N = mkN "ouguiya" ; -lin ouija_N = mkN "ouija" "ouijas"; -- from DictEng -lin ouija_board_N = mkN "ouija - board" "ouija - boards"; -- from DictEng -lin ounce_N = mkN "ounce" "ounces"; -- from DictEng -lin oust_V = mkV "oust"; -- from DictEng -lin oust_V2 = mkV2 (mkV "oust" "ousts" "ousted" "ousted" "ousting"); -- from DictEng -lin ouster_N = mkN "ouster" ; -lin out_A = mkA "out" ; -lin out_Adv = mkAdv "out"; -- from DictEng -lin out_N = mkN "out" ; -lin out_Prep = mkPrep "out"; -- from DictEng -lin out_V2 = mkV2 (mkV "out" "outs" "outed" "outed" "outing"); -- from DictEng -lin out_and_outer_N = mkN "out and outer" ; -lin out_basket_N = mkN "out basket" ; -lin out_of_bounds_A = compoundA (mkA "out of bounds") ; -lin out_of_pocket_A = compoundA (mkA "out of pocket") ; -lin out_of_school_A = compoundA (mkA "out of school") ; -lin out_of_the_way_A = compoundA (mkA "out - of - the - way"); -- from DictEng -lin out_of_town_A = compoundA (mkA "out of town") ; -lin out_herod_V2 = mkV2 (mkV "out - herod" "out - herods" "out - heroded" "out - heroded" "out - heroding"); -- from DictEng -lin out_of_Adv = mkAdv "out of" ; -lin out_of_date_A = compoundA (mkA "out - of - date"); -- from DictEng -lin out_of_door_A = compoundA (mkA "out - of - door"); -- from DictEng -lin out_of_doors_Adv = mkAdv "out - of - doors"; -- from DictEng -lin out_of_gear_A = compoundA (mkA "out of gear") ; -lin out_of_hand_Adv = mkAdv "out of hand" ; -lin out_of_place_Adv = mkAdv "out of place" ; -lin out_of_play_A = compoundA (mkA "out of play") ; -lin out_of_practice_A = compoundA (mkA "out of practice") ; -lin out_of_print_A = compoundA (mkA "out of print") ; -lin out_of_sight_Adv = mkAdv "out of sight" ; -lin out_of_stock_A = compoundA (mkA "out of stock") ; -lin out_of_the_way_A = compoundA (mkA "out - of - the - way"); -- from DictEng -lin out_of_the_way_Adv = mkAdv "out - of - the - way"; -- from DictEng -lin out_of_thin_air_Adv = mkAdv "out of thin air" ; -lin out_of_true_A = compoundA (mkA "out of true") ; -lin out_of_wedlock_Adv = mkAdv "out of wedlock" ; -lin out_of_whack_A = compoundA (mkA "out of whack") ; -lin out_of_work_A = compoundA (mkA "out - of - work"); -- from DictEng -lin out_trade_V2 = mkV2 (mkV "out - trade"); -- from DictEng -lin out_tray_N = mkN "out - tray" "out - trays"; -- from DictEng -lin outage_N = mkN "outage" ; -lin outback_A = compoundA (mkA "outback"); -- from DictEng -lin outback_N = mkN "outback" "IRREG"; -- from DictEng -lin outbalance_V2 = mkV2 (mkV "outbalance" "outbalances" "outbalanced" "outbalanced" "outbalancing"); -- from DictEng -lin outbid_V2 = mkV2 (mkV "out" IrregEng.bid_V); -- from DictEng -lin outboard_A = compoundA (mkA "outboard"); -- from DictEng -lin outbound_A = compoundA (mkA "outbound"); -- from DictEng -lin outbrave_V2 = mkV2 (mkV "outbrave" "outbraves" "outbraved" "outbraved" "outbraving"); -- from DictEng -lin outbreak_N = mkN "outbreak" "outbreaks"; -- from DictEng -lin outbred_A = mkA "outbred" ; -lin outbuilding_N = mkN "outbuilding" "outbuildings"; -- from DictEng -lin outburst_N = mkN "outburst" "outbursts"; -- from DictEng -lin outcast_A = compoundA (mkA "outcast"); -- from DictEng -lin outcast_N = mkN "outcast" "outcasts"; -- from DictEng -lin outcaste_A = compoundA (mkA "outcaste"); -- from DictEng -lin outcaste_N = mkN "outcaste" "outcastes"; -- from DictEng -lin outclass_V2 = mkV2 (mkV "outclass" "outclasses" "outclassed" "outclassed" "outclassing"); -- from DictEng -lin outclassed_A = mkA "outclassed" ; -lin outcome_N = mkN "outcome" "outcomes"; -- from DictEng -lin outcrop_N = mkN "outcrop" "outcrops"; -- from DictEng -lin outcry_N = mkN "outcry" "outcries"; -- from DictEng -lin outdated_A = compoundA (mkA "outdated"); -- from DictEng -lin outdistance_V2 = mkV2 (mkV "outdistance" "outdistances" "outdistanced" "outdistanced" "outdistancing"); -- from DictEng -lin outdo_V2 = mkV2 (mkV "out" IrregEng.do_V); -- from DictEng -lin outdoor_A = compoundA (mkA "outdoor"); -- from DictEng -lin outdoors_Adv = mkAdv "outdoors"; -- from DictEng -lin outdoors_N = mkN "outdoors" ; -lin outdoorsman_N = mkN "outdoorsman" ; -lin outdoorswoman_N = mkN "outdoorswoman" ; -lin outdoorsy_A = mkA "outdoorsy" ; -lin outer_A = compoundA (mkA "outer"); -- from DictEng -lin outercourse_N = mkN "outercourse" ; -lin outermost_A = compoundA (mkA "outermost"); -- from DictEng -lin outerwear_N = mkN "outerwear" ; -lin outface_V2 = mkV2 (mkV "outface" "outfaces" "outfaced" "outfaced" "outfacing"); -- from DictEng -lin outfall_N = mkN "outfall" "outfalls"; -- from DictEng -lin outfield_N = mkN "outfield" "outfields"; -- from DictEng -lin outfielder_N = mkN "outfielder" "outfielders"; -- from DictEng -lin outfight_V2 = mkV2 (mkV "out" IrregEng.fight_V); -- from DictEng -lin outfit_N = mkN "outfit" "outfits"; -- from DictEng -lin outfit_V2 = mkV2 (mkV "outfit" "outfits" "outfitted" "outfitted" "outfitting"); -- from DictEng -lin outfitted_A = mkA "outfitted" ; -lin outfitter_N = mkN "outfitter" "outfitters"; -- from DictEng -lin outfitting_N = mkN "outfitting" ; -lin outflank_V2 = mkV2 (mkV "outflank" "outflanks" "outflanked" "outflanked" "outflanking"); -- from DictEng -lin outflow_N = mkN "outflow" "outflows"; -- from DictEng -lin outfly_V2 = mkV2 (mkV "outfly"); -- from DictEng -lin outfox_V2 = mkV2 (mkV "outfox" "outfoxes" "outfoxed" "outfoxed" "outfoxing"); -- from DictEng -lin outgain_V2 = mkV2 (mkV "outgain"); -- from DictEng -lin outgo_N = mkN "outgo" "outgoes"; -- from DictEng -lin outgo_V = mkV "out" IrregEng.go_V; -- from DictEng -lin outgoing_A = compoundA (mkA "outgoing"); -- from DictEng -lin outgrow_V2 = mkV2 (mkV "out" IrregEng.grow_V); -- from DictEng -lin outgrowth_N = mkN "outgrowth" "outgrowths"; -- from DictEng -lin outhouse_N = mkN "outhouse" "outhouses"; -- from DictEng -lin outing_N = mkN "outing" "outings"; -- from DictEng -lin outlandish_A = compoundA (mkA "outlandish"); -- from DictEng -lin outlandishly_Adv = mkAdv "outlandishly" ; -lin outlandishness_N = mkN "outlandishness" ; -- from DictEng -lin outlast_V2 = mkV2 (mkV "outlast" "outlasts" "outlasted" "outlasted" "outlasting"); -- from DictEng -lin outlaw_N = mkN "outlaw" "outlaws"; -- from DictEng -lin outlaw_V2 = mkV2 (mkV "outlaw" "outlaws" "outlawed" "outlawed" "outlawing"); -- from DictEng -lin outlawry_N = mkN "outlawry" ; -- from DictEng -lin outlay_N = mkN "outlay" "outlays"; -- from DictEng -lin outleap_V2 = mkV2 (mkV "outleap"); -- from DictEng -lin outlet_N = mkN "outlet" "outlets"; -- from DictEng -lin outlier_N = mkN "outlier" "outliers"; -- from DictEng -lin outline_N = mkN "outline" "outlines"; -- from DictEng -lin outline_V2 = mkV2 (mkV "outline" "outlines" "outlined" "outlined" "outlining"); -- from DictEng -lin outlive_V2 = mkV2 (mkV "outlive" "outlives" "outlived" "outlived" "outliving"); -- from DictEng -lin outlook_N = mkN "outlook" "outlooks"; -- from DictEng -lin outlying_A = compoundA (mkA "outlying"); -- from DictEng -lin outmanoeuvre_V2 = mkV2 (mkV "outmanoeuvre" "outmanoeuvres" "outmanoeuvred" "outmanoeuvred" "outmanoeuvring"); -- from DictEng -lin outmarch_V2 = mkV2 (mkV "outmarch" "outmarches" "outmarched" "outmarched" "outmarching"); -- from DictEng -lin outmatch_V2 = mkV2 (mkV "outmatch" "outmatches" "outmatched" "outmatched" "outmatching"); -- from DictEng -lin outmoded_A = compoundA (mkA "outmoded"); -- from DictEng -lin outmost_A = compoundA (mkA "outmost"); -- from DictEng -lin outnumber_V2 = mkV2 (mkV "outnumber" "outnumbers" "outnumbered" "outnumbered" "outnumbering"); -- from DictEng -lin outpace_V2 = mkV2 (mkV "outpace"); -- from DictEng -lin outpatient_N = mkN "outpatient" "outpatients"; -- from DictEng -lin outperform_V2 = mkV2 (mkV "outperform"); -- from DictEng -lin outplay_V2 = mkV2 (mkV "outplay" "outplays" "outplayed" "outplayed" "outplaying"); -- from DictEng -lin outpoint_V2 = mkV2 (mkV "outpoint" "outpoints" "outpointed" "outpointed" "outpointing"); -- from DictEng -lin outport_N = mkN "outport" "outports"; -- from DictEng -lin outpost_N = mkN "outpost" "outposts"; -- from DictEng -lin outpouring_N = mkN "outpouring" "outpourings"; -- from DictEng -lin output_N = mkN "output" "IRREG"; -- from DictEng -lin outrace_V2 = mkV2 (mkV "outrace") ; -lin outrage_N = mkN "outrage" "outrages"; -- from DictEng -lin outrage_V2 = mkV2 (mkV "outrage" "outrages" "outraged" "outraged" "outraging"); -- from DictEng -lin outrageous_A = compoundA (mkA "outrageous"); -- from DictEng -lin outrageously_Adv = mkAdv "outrageously" ; -lin outrageousness_N = mkN "outrageousness" ; -lin outrange_V2 = mkV2 (mkV "outrange" "outranges" "outranged" "outranged" "outranging"); -- from DictEng -lin outrank_V2 = mkV2 (mkV "outrank" "outranks" "outranked" "outranked" "outranking"); -- from DictEng -lin outre_A = compoundA (mkA "outré"); -- from DictEng -lin outreach_N = mkN "outreach" ; -lin outride_V2 = mkV2 (mkV "out" IrregEng.ride_V); -- from DictEng -lin outrider_N = mkN "outrider" "outriders"; -- from DictEng -lin outrigged_A = compoundA (mkA "outrigged"); -- from DictEng -lin outrigger_N = mkN "outrigger" "outriggers"; -- from DictEng -lin outright_A = compoundA (mkA "outright"); -- from DictEng -lin outright_Adv = mkAdv "outright"; -- from DictEng -lin outrival_V2 = mkV2 (mkV "outrival" "outrivals" "outrivalled" "outrivalled" "outrivalling"); -- from DictEng -lin outrun_V2 = mkV2 (mkV "out" IrregEng.run_V); -- from DictEng -lin outsail_V2 = mkV2 (mkV "outsail" "outsails" "outsailed" "outsailed" "outsailing"); -- from DictEng -lin outsell_V2 = mkV2 (mkV "outsell"); -- from DictEng -lin outset_N = mkN "outset" "outsets"; -- from DictEng -lin outshine_V2 = mkV2 (mkV "out" IrregEng.shine_V); -- from DictEng -lin outside_A = compoundA (mkA "outside"); -- from DictEng -lin outside_Adv = mkAdv "outside"; -- from DictEng -lin outside_N = mkN "outside" "outsides"; -- from DictEng -lin outside_Prep = mkPrep "outside"; -- from DictEng -lin outsider_N = mkN "outsider" "outsiders"; -- from DictEng -lin outsize_A = compoundA (mkA "outsize"); -- from DictEng -lin outsize_N = mkN "outsize" ; -lin outskirt_N = mkN "outskirt" ; -lin outskirts_N = mkN "outskirts" ; -lin outsmart_V2 = mkV2 (mkV "outsmart" "outsmarts" "outsmarted" "outsmarted" "outsmarting"); -- from DictEng -lin outsole_N = mkN "outsole" ; -lin outspan_V = mkV "outspan" "outspans" "outspanned" "outspanned" "outspanning"; -- from DictEng -lin outspan_V2 = mkV2 (mkV "outspan" "outspans" "outspanned" "outspanned" "outspanning"); -- from DictEng -lin outspoken_A = compoundA (mkA "outspoken"); -- from DictEng -lin outspokenly_Adv = mkAdv "outspokenly" ; -lin outspokenness_N = mkN "outspokenness" ; -- from DictEng -lin outspread_A = compoundA (mkA "outspread"); -- from DictEng -lin outstanding_A = compoundA (mkA "outstanding"); -- from DictEng -lin outstandingly_Adv = mkAdv "outstandingly" ; -lin outstation_N = mkN "outstation" "outstations"; -- from DictEng -lin outstay_V2 = mkV2 (mkV "outstay" "outstays" "outstayed" "outstayed" "outstaying"); -- from DictEng -lin outstretched_A = compoundA (mkA "outstretched"); -- from DictEng -lin outstrip_V2 = mkV2 (mkV "outstrip" "outstrips" "outstripped" "outstripped" "outstripping"); -- from DictEng -lin outstroke_N = mkN "outstroke" ; -lin outtake_N = mkN "outtake" ; -lin outthrust_N = mkN "outthrust" ; -lin outvie_V2 = mkV2 (mkV "outvie" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin outvote_V2 = mkV2 (mkV "outvote" "outvotes" "outvoted" "outvoted" "outvoting"); -- from DictEng -lin outward_A = compoundA (mkA "outward"); -- from DictEng -lin outward_Adv = mkAdv "outward"; -- from DictEng -lin outward_developing_A = compoundA (mkA "outward developing") ; -lin outward_moving_A = compoundA (mkA "outward moving") ; -lin outwardly_Adv = mkAdv "outwardly" ; -lin outwardness_N = mkN "outwardness" ; -lin outwards_Adv = mkAdv "outwards"; -- from DictEng -lin outwear_V2 = mkV2 (mkV "out" IrregEng.wear_V); -- from DictEng -lin outweigh_V2 = mkV2 (mkV "outweigh" "outweighs" "outweighed" "outweighed" "outweighing"); -- from DictEng -lin outwit_V2 = mkV2 (mkV "outwit" "outwits" "outwitted" "outwitted" "outwitting"); -- from DictEng -lin outwork_N = mkN "outwork" "outworks"; -- from DictEng -lin ouzel_N = mkN "ouzel" "ouzels"; -- from DictEng -lin ouzo_N = mkN "ouzo" ; -- from DictEng -lin oval_A = compoundA (mkA "oval"); -- from DictEng -lin oval_N = mkN "oval" "ovals"; -- from DictEng -lin oval_bodied_A = compoundA (mkA "oval bodied") ; -lin oval_fruited_A = compoundA (mkA "oval fruited") ; -lin ovarian_A = mkA "ovarian" ; -lin ovaritis_N = mkN "ovaritis" ; -lin ovary_N = mkN "ovary" "ovaries"; -- from DictEng -lin ovate_A = mkA "ovate" ; -lin ovation_N = mkN "ovation" "ovations"; -- from DictEng -lin oven_N = mkN "oven" "ovens"; -- from DictEng -lin oven_ready_A = compoundA (mkA "oven ready") ; -lin oven_shaped_A = compoundA (mkA "oven shaped") ; -lin ovenbird_N = mkN "ovenbird" ; -lin ovenware_N = mkN "ovenware" ; -- from DictEng -lin over_Adv = mkAdv "over"; -- from DictEng -lin over_N = mkN "over" "overs"; -- from DictEng -lin over_Prep = mkPrep "over"; -- from DictEng -lin over_the_counter_A = compoundA (mkA "over the counter") ; -lin over_abundance_N = mkN "over - abundance" ; -- from DictEng -lin over_and_over_Adv = mkAdv "over and over" ; -lin over_magazine_V2 = mkV2 (mkV "over - magazine"); -- from DictEng -lin over_ripe_A = compoundA (mkA "over - ripe"); -- from DictEng -lin overabundance_N = mkN "overabundance" ; -lin overabundant_A = compoundA (mkA "overabundant"); -- from DictEng -lin overachievement_N = mkN "overachievement" ; -lin overachiever_N = mkN "overachiever" ; -lin overact_V = mkV "overact" "overacts" "overacted" "overacted" "overacting"; -- from DictEng -lin overact_V2 = mkV2 (mkV "overact" "overacts" "overacted" "overacted" "overacting"); -- from DictEng -lin overactive_A = compoundA (mkA "overactive"); -- from DictEng -lin overactivity_N = mkN "overactivity" ; -lin overage_A = mkA "overage" ; -lin overage_N = mkN "overage" ; -lin overall_A = compoundA (mkA "overall"); -- from DictEng -lin overall_N = mkN "overall" "overalls"; -- from DictEng -lin overambitious_A = compoundA (mkA "overambitious"); -- from DictEng -lin overanxiety_N = mkN "overanxiety" ; -- from DictEng -lin overanxious_A = compoundA (mkA "overanxious"); -- from DictEng -lin overarch_V = mkV "overarch" "overarches" "overarched" "overarched" "overarching"; -- from DictEng -lin overarch_V2 = mkV2 (mkV "overarch" "overarches" "overarched" "overarched" "overarching"); -- from DictEng -lin overarm_A = compoundA (mkA "overarm"); -- from DictEng -lin overarm_Adv = mkAdv "overarm"; -- from DictEng -lin overawe_V2 = mkV2 (mkV "overawe" "overawes" "overawed" "overawed" "overawing"); -- from DictEng -lin overawed_A = mkA "overawed" ; -lin overbalance_V = mkV "overbalance" "overbalances" "overbalanced" "overbalanced" "overbalancing"; -- from DictEng -lin overbalance_V2 = mkV2 (mkV "overbalance" "overbalances" "overbalanced" "overbalanced" "overbalancing"); -- from DictEng -lin overbear_V2 = mkV2 (mkV "over" IrregEng.bear_V); -- from DictEng -lin overbearing_A = compoundA (mkA "overbearing"); -- from DictEng -lin overbearingly_Adv = mkAdv "overbearingly" ; -lin overbid_N = mkN "overbid" "overbids"; -- from DictEng -lin overbid_V = mkV "over" IrregEng.bid_V; -- from DictEng -lin overbid_V2 = mkV2 (mkV "over" IrregEng.bid_V); -- from DictEng -lin overbite_N = mkN "overbite" ; -lin overblown_A = compoundA (mkA "overblown"); -- from DictEng -lin overboard_Adv = mkAdv "overboard"; -- from DictEng -lin overbold_A = compoundA (mkA "overbold"); -- from DictEng -lin overburden_N = mkN "overburden" ; -- from DictEng -lin overburden_V2 = mkV2 (mkV "overburden" "overburdens" "overburdened" "overburdened" "overburdening"); -- from DictEng -lin overbusy_A = compoundA (mkA "overbusy"); -- from DictEng -lin overcall_V = mkV "overcall" "overcalls" "overcalled" "overcalled" "overcalling"; -- from DictEng -lin overcall_V2 = mkV2 (mkV "overcall" "overcalls" "overcalled" "overcalled" "overcalling"); -- from DictEng -lin overcapitalization_N = mkN "overcapitalization" ; -- from DictEng -lin overcapitalize_V2 = mkV2 (mkV "overcapitalize" "overcapitalizes" "overcapitalized" "overcapitalized" "overcapitalizing"); -- from DictEng -lin overcareful_A = compoundA (mkA "overcareful"); -- from DictEng -lin overcast_A = compoundA (mkA "overcast"); -- from DictEng -lin overcast_N = mkN "overcast" "IRREG"; -- from DictEng -lin overcast_V2 = mkV2 (mkV "overcast") ; -lin overcautious_A = compoundA (mkA "overcautious"); -- from DictEng -lin overcharge_N = mkN "overcharge" "overcharges"; -- from DictEng -lin overcharge_V = mkV "overcharge" "overcharges" "overcharged" "overcharged" "overcharging"; -- from DictEng -lin overcharge_V2 = mkV2 (mkV "overcharge" "overcharges" "overcharged" "overcharged" "overcharging"); -- from DictEng -lin overclothe_V2 = mkV2 (mkV "overclothe" "overclothes" "overclothed" "overclothed" "overclothing"); -- from DictEng -lin overcloud_V = mkV "overcloud" "overclouds" "overclouded" "overclouded" "overclouding"; -- from DictEng -lin overcloud_V2 = mkV2 (mkV "overcloud" "overclouds" "overclouded" "overclouded" "overclouding"); -- from DictEng -lin overcoat_N = mkN "overcoat" "overcoats"; -- from DictEng -lin overcome_V = mkV "overcome"; -- from DictEng -lin overcome_V2 = mkV2 (IrregEng.overcome_V); -- from DictEng -lin overcommit_V2 = mkV2 (mkV "overcommit"); -- from DictEng -lin overcompensation_N = mkN "overcompensation" ; -lin overconfidence_N = mkN "overconfidence" ; -- from DictEng -lin overconfident_A = compoundA (mkA "overconfident"); -- from DictEng -lin overcook_V2 = mkV2 (mkV "overcook" "overcooks" "overcooked" "overcooked" "overcooking"); -- from DictEng -lin overcredulity_N = mkN "overcredulity" ; -- from DictEng -lin overcredulous_A = compoundA (mkA "overcredulous"); -- from DictEng -lin overcritical_A = compoundA (mkA "overcritical"); -- from DictEng -lin overcrop_V2 = mkV2 (mkV "overcrop" "overcrops" "overcropped" "overcropped" "overcropping"); -- from DictEng -lin overcrowd_V2 = mkV2 (mkV "overcrowd" "overcrowds" "overcrowded" "overcrowded" "overcrowding"); -- from DictEng -lin overcurious_A = compoundA (mkA "overcurious"); -- from DictEng -lin overdelicate_A = compoundA (mkA "overdelicate"); -- from DictEng -lin overdo_V2 = mkV2 (IrregEng.overdo_V); -- from DictEng -lin overdone_A = mkA "overdone" ; -lin overdose_V = mkV "overdose"; -- from DictEng -lin overdraft_N = mkN "overdraft" "overdrafts"; -- from DictEng -lin overdraw_V = mkV "over" IrregEng.draw_V; -- from DictEng -lin overdraw_V2 = mkV2 (mkV "over" IrregEng.draw_V); -- from DictEng -lin overdress_V = mkV "overdress" "overdresses" "overdressed" "overdressed" "overdressing"; -- from DictEng -lin overdress_V2 = mkV2 (mkV "overdress" "overdresses" "overdressed" "overdressed" "overdressing"); -- from DictEng -lin overdressed_A = mkA "overdressed" ; -lin overdrive_N = mkN "overdrive" "overdrives"; -- from DictEng -lin overdue_A = compoundA (mkA "overdue"); -- from DictEng -lin overeager_A = compoundA (mkA "overeager"); -- from DictEng -lin overeat_V = mkV "over" IrregEng.eat_V; -- from DictEng -lin overemotional_A = compoundA (mkA "overemotional"); -- from DictEng -lin overemphasis_N = mkN "overemphasis" ; -- from DictEng -lin overemphasize_V = mkV "overemphasize"; -- from DictEng -lin overemphasize_V2 = mkV2 (mkV "overemphasize" "overemphasizes" "overemphasized" "overemphasized" "overemphasizing"); -- from DictEng -lin overenthusiastic_A = compoundA (mkA "overenthusiastic"); -- from DictEng -lin overestimate_N = mkN "overestimate" ; -lin overestimate_V2 = mkV2 (mkV "overestimate" "overestimates" "overestimated" "overestimated" "overestimating"); -- from DictEng -lin overexcited_A = compoundA (mkA "overexcited"); -- from DictEng -lin overexert_V2 = mkV2 (mkV "overexert" "overexerts" "overexerted" "overexerted" "overexerting"); -- from DictEng -lin overexertion_N = mkN "overexertion" "overexertions"; -- from DictEng -lin overexploitation_N = mkN "overexploitation" ; -lin overexpose_V2 = mkV2 (mkV "overexpose" "overexposes" "overexposed" "overexposed" "overexposing"); -- from DictEng -lin overexposure_N = mkN "overexposure" "overexposures"; -- from DictEng -lin overfamiliar_A = compoundA (mkA "overfamiliar"); -- from DictEng -lin overfed_A = mkA "overfed" ; -lin overfeed_V = mkV "overfeed" "overfeeds" "overfeeded" "overfeeded" "overfeeding"; -- from DictEng -lin overfeed_V2 = mkV2 (mkV "overfeed" "overfeeds" "overfeeded" "overfeeded" "overfeeding"); -- from DictEng -lin overfeeding_N = mkN "overfeeding" ; -- from DictEng -lin overflight_N = mkN "overflight" ; -lin overflow_N = mkN "overflow" "overflows"; -- from DictEng -lin overflow_V = mkV "overflow" "overflows" "overflowed" "overflowed" "overflowing"; -- from DictEng -lin overflow_V2 = mkV2 (mkV "overflow" "overflows" "overflowed" "overflowed" "overflowing"); -- from DictEng -lin overfly_V2 = mkV2 (mkV "over" IrregEng.fly_V); -- from DictEng -lin overfond_A = compoundA (mkA "overfond"); -- from DictEng -lin overfull_A = compoundA (mkA "overfull"); -- from DictEng -lin overgarment_N = mkN "overgarment" ; -lin overgenerous_A = compoundA (mkA "overgenerous"); -- from DictEng -lin overgreedy_A = compoundA (mkA "overgreedy"); -- from DictEng -lin overgrown_A = compoundA (mkA "overgrown"); -- from DictEng -lin overgrowth_N = mkN "overgrowth" "overgrowths"; -- from DictEng -lin overhand_A = compoundA (mkA "overhand"); -- from DictEng -lin overhang_N = mkN "overhang" "overhangs"; -- from DictEng -lin overhang_V = mkV "over" IrregEng.hang_V; -- from DictEng -lin overhang_V2 = mkV2 (mkV "over" IrregEng.hang_V); -- from DictEng -lin overhasty_A = compoundA (mkA "overhasty"); -- from DictEng -lin overhaul_N = mkN "overhaul" "overhauls"; -- from DictEng -lin overhaul_V2 = mkV2 (mkV "overhaul" "overhauls" "overhauled" "overhauled" "overhauling"); -- from DictEng -lin overhead_A = compoundA (mkA "overhead"); -- from DictEng -lin overhead_Adv = mkAdv "overhead"; -- from DictEng -lin overhead_N = mkN "overhead" ; -lin overhear_V2 = mkV2 (mkV "over" IrregEng.hear_V); -- from DictEng -lin overheat_V2 = mkV2 (mkV "overheat" "overheats" "overheated" "overheated" "overheating"); -- from DictEng -lin overheated_A = mkA "overheated" ; -lin overheating_N = mkN "overheating" ; -lin overindulge_V = mkV "overindulge" "overindulges" "overindulged" "overindulged" "overindulging"; -- from DictEng -lin overindulge_V2 = mkV2 (mkV "overindulge" "overindulges" "overindulged" "overindulged" "overindulging"); -- from DictEng -lin overindulgence_N = mkN "overindulgence" "overindulgences"; -- from DictEng -lin overindulgent_A = mkA "overindulgent" ; -lin overjealous_A = compoundA (mkA "overjealous"); -- from DictEng -lin overjoyed_A = compoundA (mkA "overjoyed"); -- from DictEng -lin overkill_N = mkN "overkill" ; -- from DictEng -lin overladen_A = compoundA (mkA "overladen"); -- from DictEng -lin overland_A = compoundA (mkA "overland"); -- from DictEng -lin overlap_N = mkN "overlap" "overlaps"; -- from DictEng -lin overlap_V = mkV "overlap" "overlaps" "overlapped" "overlapped" "overlapping"; -- from DictEng -lin overlap_V2 = mkV2 (mkV "overlap" "overlaps" "overlapped" "overlapped" "overlapping"); -- from DictEng -lin overlarge_A = compoundA (mkA "overlarge"); -- from DictEng -lin overlay_N = mkN "overlay" "overlays"; -- from DictEng -lin overlay_V2 = mkV2 (mkV "over" IrregEng.lay_V); -- from DictEng -lin overleaf_Adv = mkAdv "overleaf"; -- from DictEng -lin overleap_V2 = mkV2 (mkV "overleap" "overleaps" "overleaped" "overleaped" "overleaping"); -- from DictEng -lin overlie_V = mkV "over" IrregEng.lie_V; -- from DictEng -lin overlip_N = mkN "overlip" ; -lin overload_N = mkN "overload" ; -lin overload_V2 = mkV2 (mkV "overload" "overloads" "overloaded" "overloaded" "overloading"); -- from DictEng -lin overlook_N = mkN "overlook" ; -lin overlook_V2 = mkV2 (mkV "overlook" "overlooks" "overlooked" "overlooked" "overlooking"); -- from DictEng -lin overlooked_A = mkA "overlooked" ; -lin overlord_N = mkN "overlord" "overlords"; -- from DictEng -lin overlordship_N = mkN "overlordship" ; -lin overly_Adv = mkAdv "overly"; -- from DictEng -lin overlying_A = mkA "overlying" ; -lin overmantel_N = mkN "overmantel" "overmantels"; -- from DictEng -lin overmaster_V2 = mkV2 (mkV "overmaster" "overmasters" "overmastered" "overmastered" "overmastering"); -- from DictEng -lin overmodest_A = compoundA (mkA "overmodest"); -- from DictEng -lin overmuch_A = compoundA (mkA "overmuch"); -- from DictEng -lin overmuch_Adv = mkAdv "overmuch"; -- from DictEng -lin overnervous_A = compoundA (mkA "overnervous"); -- from DictEng -lin overnight_A = compoundA (mkA "overnight"); -- from DictEng -lin overnight_Adv = mkAdv "overnight"; -- from DictEng -lin overnighter_N = mkN "overnighter" ; -lin overpass_N = mkN "overpass" "overpasses"; -- from DictEng -lin overpay_V = mkV "overpay"; -- from DictEng -lin overpay_V2 = mkV2 (mkV "over" IrregEng.pay_V); -- from DictEng -lin overpayment_N = mkN "overpayment" "overpayments"; -- from DictEng -lin overplant_V2 = mkV2 (mkV "overplant"); -- from DictEng -lin overplay_V2 = mkV2 (mkV "overplay" "overplays" "overplayed" "overplayed" "overplaying"); -- from DictEng -lin overplus_N = mkN "overplus" "overpluses"; -- from DictEng -lin overpopulation_N = mkN "overpopulation" ; -- from DictEng -lin overpower_V2 = mkV2 (mkV "overpower" "overpowers" "overpowered" "overpowered" "overpowering"); -- from DictEng -lin overpowering_A = compoundA (mkA "overpowering"); -- from DictEng -lin overpraise_V2 = mkV2 (mkV "overpraise" "overpraises" "overpraised" "overpraised" "overpraising"); -- from DictEng -lin overpressure_N = mkN "overpressure" ; -lin overprice_V2 = mkV2 (mkV "overprice"); -- from DictEng -lin overpriced_A = mkA "overpriced" ; -lin overprint_N = mkN "overprint" "overprints"; -- from DictEng -lin overprint_V2 = mkV2 (mkV "overprint" "overprints" "overprinted" "overprinted" "overprinting"); -- from DictEng -lin overproduce_V = mkV "overproduce" "overproduces" "overproduced" "overproduced" "overproducing"; -- from DictEng -lin overproduce_V2 = mkV2 (mkV "overproduce" "overproduces" "overproduced" "overproduced" "overproducing"); -- from DictEng -lin overproduction_N = mkN "overproduction" ; -- from DictEng -lin overprotective_A = mkA "overprotective" ; -lin overproud_A = compoundA (mkA "overproud"); -- from DictEng -lin overrate_V2 = mkV2 (mkV "overrate" "overrates" "overrated" "overrated" "overrating"); -- from DictEng -lin overreach_V2 = mkV2 (mkV "overreach" "overreaches" "overreached" "overreached" "overreaching"); -- from DictEng -lin overreaching_A = mkA "overreaching" ; -lin overreact_V = mkV "overreact"; -- from DictEng -lin overreaction_N = mkN "overreaction" ; -lin overrefined_A = mkA "overrefined" ; -lin override_N = mkN "override" ; -lin override_V2 = mkV2 (mkV "over" IrregEng.ride_V); -- from DictEng -lin overriding_A = mkA "overriding" ; -lin overripe_A = compoundA (mkA "overripe"); -- from DictEng -lin overrule_V2 = mkV2 (mkV "overrule" "overrules" "overruled" "overruled" "overruling"); -- from DictEng -lin overrun_V2 = mkV2 (mkV "over" IrregEng.run_V); -- from DictEng -lin oversea_A = compoundA (mkA "oversea"); -- from DictEng -lin oversea_Adv = mkAdv "oversea"; -- from DictEng -lin overseas_A = compoundA (mkA "overseas"); -- from DictEng -lin overseas_Adv = mkAdv "overseas"; -- from DictEng -lin oversee_V2 = mkV2 (mkV "over" IrregEng.see_V); -- from DictEng -lin overseer_N = mkN "overseer" "overseers"; -- from DictEng -lin oversell_V2 = mkV2 (mkV "oversell"); -- from DictEng -lin oversensitive_A = compoundA (mkA "oversensitive"); -- from DictEng -lin oversensitiveness_N = mkN "oversensitiveness" ; -lin overserious_A = compoundA (mkA "overserious"); -- from DictEng -lin oversew_V2 = mkV2 (mkV "over" IrregEng.sew_V); -- from DictEng -lin oversewn_A = compoundA (mkA "oversewn"); -- from DictEng -lin oversexed_A = compoundA (mkA "oversexed"); -- from DictEng -lin overshadow_V2 = mkV2 (mkV "overshadow" "overshadows" "overshadowed" "overshadowed" "overshadowing"); -- from DictEng -lin overshoe_N = mkN "overshoe" "overshoes"; -- from DictEng -lin overshoot_N = mkN "overshoot" ; -lin overshoot_V2 = mkV2 (mkV "over" IrregEng.shoot_V); -- from DictEng -lin overshot_A = compoundA (mkA "overshot"); -- from DictEng -lin overside_Adv = mkAdv "overside"; -- from DictEng -lin oversight_N = mkN "oversight" "oversights"; -- from DictEng -lin oversimplification_N = mkN "oversimplification" ; -lin oversimplify_V = mkV "oversimplify"; -- from DictEng -lin oversimplify_V2 = mkV2 (mkV "oversimplify" "oversimplifies" "oversimplified" "oversimplified" "oversimplifying"); -- from DictEng -lin oversize_A = compoundA (mkA "oversize"); -- from DictEng -lin overskirt_N = mkN "overskirt" "overskirts"; -- from DictEng -lin oversleep_V = mkV "over" IrregEng.sleep_V; -- from DictEng -lin oversolicitous_A = mkA "oversolicitous" ; -lin overspend_V = mkV "over" IrregEng.spend_V; -- from DictEng -lin overspend_V2 = mkV2 (mkV "over" IrregEng.spend_V); -- from DictEng -lin overspill_N = mkN "overspill" "overspills"; -- from DictEng -lin overstate_V2 = mkV2 (mkV "overstate" "overstates" "overstated" "overstated" "overstating"); -- from DictEng -lin overstatement_N = mkN "overstatement" "overstatements"; -- from DictEng -lin overstay_V2 = mkV2 (mkV "overstay" "overstays" "overstayed" "overstayed" "overstaying"); -- from DictEng -lin overstep_V2 = mkV2 (mkV "overstep" "oversteps" "overstepped" "overstepped" "overstepping"); -- from DictEng -lin overstock_V2 = mkV2 (mkV "overstock" "overstocks" "overstocked" "overstocked" "overstocking"); -- from DictEng -lin overstrain_N = mkN "overstrain" ; -- from DictEng -lin overstrain_V2 = mkV2 (mkV "overstrain" "overstrains" "overstrained" "overstrained" "overstraining"); -- from DictEng -lin overstress_V2 = mkV2 (mkV "overstress") ; -lin overstrung_A = compoundA (mkA "overstrung"); -- from DictEng -lin overstuffed_A = compoundA (mkA "overstuffed"); -- from DictEng -lin oversubscribe_V2 = mkV2 (mkV "oversubscribe"); -- from DictEng -lin oversubscribed_A = compoundA (mkA "oversubscribed"); -- from DictEng -lin oversuspicious_A = compoundA (mkA "oversuspicious"); -- from DictEng -lin overt_A = compoundA (mkA "overt"); -- from DictEng -lin overtake_V2 = mkV2 (IrregEng.overtake_V); -- from DictEng -lin overtax_V2 = mkV2 (mkV "overtax" "overtaxes" "overtaxed" "overtaxed" "overtaxing"); -- from DictEng -lin overthrow_N = mkN "overthrow" "overthrows"; -- from DictEng -lin overthrow_V2 = mkV2 (IrregEng.overthrow_V); -- from DictEng -lin overtime_Adv = mkAdv "overtime"; -- from DictEng -lin overtime_N = mkN "overtime" ; -- from DictEng -lin overtly_Adv = mkAdv "overtly" ; -lin overtolerance_N = mkN "overtolerance" ; -- from DictEng -lin overtone_N = mkN "overtone" "overtones"; -- from DictEng -lin overtop_V2 = mkV2 (mkV "overtop" "overtops" "overtopped" "overtopped" "overtopping"); -- from DictEng -lin overtrump_V2 = mkV2 (mkV "overtrump" "overtrumps" "overtrumped" "overtrumped" "overtrumping"); -- from DictEng -lin overture_N = mkN "overture" "overtures"; -- from DictEng -lin overturn_N = mkN "overturn" ; -lin overturn_V = mkV "overturn" "overturns" "overturned" "overturned" "overturning"; -- from DictEng -lin overturn_V2 = mkV2 (mkV "overturn" "overturns" "overturned" "overturned" "overturning"); -- from DictEng -lin overturned_A = mkA "overturned" ; -lin overvaliant_A = mkA "overvaliant" ; -lin overvaluation_N = mkN "overvaluation" ; -lin overvalue_V2 = mkV2 (mkV "overvalue" "overvalues" "overvalued" "overvalued" "overvaluing"); -- from DictEng -lin overview_N = mkN "overview" ; -lin overweening_A = compoundA (mkA "overweening"); -- from DictEng -lin overweight_A = compoundA (mkA "overweight"); -- from DictEng -lin overweight_N = mkN "overweight" ; -- from DictEng -lin overweighted_A = compoundA (mkA "overweighted"); -- from DictEng -lin overwhelm_V2 = mkV2 (mkV "overwhelm" "overwhelms" "overwhelmed" "overwhelmed" "overwhelming"); -- from DictEng -lin overwhelmingly_Adv = mkAdv "overwhelmingly"; -- from DictEng -lin overwork_N = mkN "overwork" ; -- from DictEng -lin overwork_V = mkV "overwork" "overworks" "overworked" "overworked" "overworking"; -- from DictEng -lin overwork_V2 = mkV2 (mkV "overwork" "overworks" "overworked" "overworked" "overworking"); -- from DictEng -lin overwrought_A = compoundA (mkA "overwrought"); -- from DictEng -lin overzealous_A = compoundA (mkA "overzealous"); -- from DictEng -lin oviduct_N = mkN "oviduct" "oviducts"; -- from DictEng -lin ovine_A = mkA "ovine" ; -lin oviparous_A = compoundA (mkA "oviparous"); -- from DictEng -lin ovipositor_N = mkN "ovipositor" ; -lin oviraptorid_N = mkN "oviraptorid" ; -lin ovoid_A = compoundA (mkA "ovoid"); -- from DictEng -lin ovoid_N = mkN "ovoid" "ovoids"; -- from DictEng -lin ovolo_N = mkN "ovolo" ; -lin ovotestis_N = mkN "ovotestis" ; -lin ovoviviparous_A = mkA "ovoviviparous" ; -lin ovular_A = mkA "ovular" ; -lin ovulation_N = mkN "ovulation" ; -lin ovule_N = mkN "ovule" ; -lin ovum_N = mkN "ovum" "ova" {- FIXME: guessed plural form -}; -- from DictEng -lin owe_V = mkV "owe" "owes" "owed" "owed" "owing"; -- from DictEng -lin owe_V2 = mkV2 (mkV "owe" "owes" "owed" "owed" "owing"); -- from DictEng -lin owing_A = compoundA (mkA "owing"); -- from DictEng -lin owl_N = mkN "owl" "owls"; -- from DictEng -lin owlet_N = mkN "owlet" "owlets"; -- from DictEng -lin owlish_A = compoundA (mkA "owlish"); -- from DictEng -lin owlishly_Adv = mkAdv "owlishly" ; -lin own_A = compoundA (mkA "own"); -- from DictEng -lin own_V = mkV "own" "owns" "owned" "owned" "owning"; -- from DictEng -lin own_V2 = mkV2 (mkV "own" "owns" "owned" "owned" "owning"); -- from DictEng -lin owned_A = mkA "owned" ; -lin owner_N = mkN "owner" "owners"; -- from DictEng -lin owner_driver_N = mkN "owner - driver" "owner - drivers"; -- from DictEng -lin owner_occupied_A = compoundA (mkA "owner - occupied"); -- from DictEng -lin owner_occupier_N = mkN "owner - occupier" "owner - occupiers"; -- from DictEng -lin owner_driven_A = compoundA (mkA "owner - driven"); -- from DictEng -lin owner_driver_N = mkN "owner - driver" "owner - drivers"; -- from DictEng -lin owner_occupied_A = compoundA (mkA "owner - occupied"); -- from DictEng -lin owner_occupier_N = mkN "owner - occupier" "owner - occupiers"; -- from DictEng -lin ownerless_A = compoundA (mkA "ownerless"); -- from DictEng -lin ownership_N = mkN "ownership" ; -- from DictEng -lin ox_N = mkN "ox" "IRREG"; -- from DictEng -lin ox_eyed_A = compoundA (mkA "ox eyed") ; -lin oxacillin_N = mkN "oxacillin" ; -lin oxalacetate_N = mkN "oxalacetate" ; -lin oxalate_N = mkN "oxalate" ; -lin oxalis_N = mkN "oxalis" ; -lin oxaprozin_N = mkN "oxaprozin" ; -lin oxazepam_N = mkN "oxazepam" ; -lin oxbow_N = mkN "oxbow" ; -lin oxcart_N = mkN "oxcart" ; -lin oxeye_N = mkN "oxeye" "oxeyes"; -- from DictEng -lin oxeyed_A = compoundA (mkA "oxeyed"); -- from DictEng -lin oxford_N = mkN "oxford" ; -lin oxford_grey_A = compoundA (mkA "oxford grey") ; -lin oxidant_N = mkN "oxidant" ; -lin oxidase_N = mkN "oxidase" ; -lin oxidation_N = mkN "oxidation" ; -- from DictEng -lin oxidation_reduction_N = mkN "oxidation reduction" ; -lin oxidative_A = mkA "oxidative" ; -lin oxide_N = mkN "oxide" "oxides"; -- from DictEng -lin oxidizable_A = mkA "oxidizable" ; -lin oxidization_N = mkN "oxidization" "oxidizations"; -- from DictEng -lin oxidize_V = mkV "oxidize" "oxidizes" "oxidized" "oxidized" "oxidizing"; -- from DictEng -lin oxidize_V2 = mkV2 (mkV "oxidize" "oxidizes" "oxidized" "oxidized" "oxidizing"); -- from DictEng -lin oxidized_A = mkA "oxidized" ; -lin oxidized_ldl_cholesterol_PN = mkPN "oxidized LDL cholesterol" ; -lin oxidoreductase_N = mkN "oxidoreductase" ; -lin oxime_N = mkN "oxime" ; -lin oximeter_N = mkN "oximeter" ; -lin oxlip_N = mkN "oxlip" ; -lin oxonian_A = compoundA (mkA "oxonian"); -- from DictEng -lin oxonian_N = mkN "oxonian" "oxonians"; -- from DictEng -lin oxtail_N = mkN "oxtail" "oxtails"; -- from DictEng -lin oxtant_N = mkN "oxtant" ; -lin oxtongue_N = mkN "oxtongue" ; -lin oxyacetylene_A = compoundA (mkA "oxyacetylene"); -- from DictEng -lin oxyacetylene_N = mkN "oxyacetylene" ; -- from DictEng -lin oxyacid_N = mkN "oxyacid" ; -lin oxycephaly_N = mkN "oxycephaly" ; -lin oxygen_N = mkN "oxygen" ; -- from DictEng -lin oxygenase_N = mkN "oxygenase" ; -lin oxygenate_V2 = mkV2 (mkV "oxygenate" "oxygenates" "oxygenated" "oxygenated" "oxygenating"); -- from DictEng -lin oxygenation_N = mkN "oxygenation" ; -lin oxygenize_V2 = mkV2 (mkV "oxygenize" "oxygenizes" "oxygenized" "oxygenized" "oxygenizing"); -- from DictEng -lin oxyhemoglobin_N = mkN "oxyhemoglobin" ; -lin oxymoron_N = mkN "oxymoron" ; -lin oxyopia_N = mkN "oxyopia" ; -lin oxyphenbutazone_N = mkN "oxyphenbutazone" ; -lin oxyphencyclimine_N = mkN "oxyphencyclimine" ; -lin oxytetracycline_N = mkN "oxytetracycline" ; -lin oxytocic_N = mkN "oxytocic" ; -lin oxytocin_N = mkN "oxytocin" ; -lin oxytone_N = mkN "oxytone" ; -lin oyabun_N = mkN "oyabun" ; -lin oyster_N = mkN "oyster" "oysters"; -- from DictEng -lin oyster_V = mkV "oyster" ; -lin oyster_bank_N = mkN "oyster - bank" "oyster - banks"; -- from DictEng -lin oyster_bar_N = mkN "oyster - bar" "oyster - bars"; -- from DictEng -lin oyster_bed_N = mkN "oyster - bed" "oyster - beds"; -- from DictEng -lin oyster_catcher_N = mkN "oyster - catcher" "oyster - catchers"; -- from DictEng -lin oystercatcher_N = mkN "oystercatcher" ; -lin oysters_rockefeller_PN = mkPN "oysters Rockefeller" ; -lin oz_N = mkN "oz" "oz"; -- from DictEng -lin ozena_N = mkN "ozena" ; -lin ozone_N = mkN "ozone" ; -- from DictEng -lin ozonide_N = mkN "ozonide" ; -lin ph_N = mkN "pH" ; -lin pa_N = mkN "pa" ; -- from DictEng -lin pa'anga_N = mkN "pa'anga" ; -lin pabulum_N = mkN "pabulum" ; -- from DictEng -lin paca_N = mkN "paca" ; -lin pace_N = mkN "pace" "paces"; -- from DictEng -lin pace_V = mkV "pace" "paces" "paced" "paced" "pacing"; -- from DictEng -lin pace_V2 = mkV2 (mkV "pace" "paces" "paced" "paced" "pacing"); -- from DictEng -lin pacemaker_N = mkN "pacemaker" "pacemakers"; -- from DictEng -lin pacer_N = mkN "pacer" ; -lin pacesetter_N = mkN "pacesetter" "pacesetters"; -- from DictEng -lin pachinko_N = mkN "pachinko" ; -lin pachisi_N = mkN "pachisi" ; -lin pachuco_N = mkN "pachuco" ; -lin pachycephalosaur_N = mkN "pachycephalosaur" ; -lin pachycheilia_N = mkN "pachycheilia" ; -lin pachyderm_N = mkN "pachyderm" "pachyderms"; -- from DictEng -lin pachydermatous_A = mkA "pachydermatous" ; -lin pachysandra_N = mkN "pachysandra" ; -lin pachytene_N = mkN "pachytene" ; -lin pacific_A = compoundA (mkA "pacific"); -- from DictEng -lin pacifically_Adv = mkAdv "pacifically"; -- from DictEng -lin pacification_N = mkN "pacification" ; -- from DictEng -lin pacifier_N = mkN "pacifier" ; -lin pacifism_N = mkN "pacifism" ; -- from DictEng -lin pacifist_A = mkA "pacifist" ; -lin pacifist_N = mkN "pacifist" "pacifists"; -- from DictEng -lin pacifistically_Adv = mkAdv "pacifistically" ; -lin pacify_V2 = mkV2 (mkV "pacify" "pacifies" "pacified" "pacified" "pacifying"); -- from DictEng -lin pacing_N = mkN "pacing" ; -lin pack_N = mkN "pack" "packs"; -- from DictEng -lin pack_V = mkV "pack" "packs" "packed" "packed" "packing"; -- from DictEng -lin pack_V2 = mkV2 (mkV "pack" "packs" "packed" "packed" "packing"); -- from DictEng -lin pack_animal_N = mkN "pack - animal" "pack - animals"; -- from DictEng -lin pack_saddle_N = mkN "pack - saddle" "pack - saddles"; -- from DictEng -lin pack_thread_N = mkN "pack - thread" ; -- from DictEng -lin packable_A = mkA "packable" ; -lin package_N = mkN "package" "packages"; -- from DictEng -lin package_V2 = mkV2 (mkV "package" "packages" "packaged" "packaged" "packaging"); -- from DictEng -lin packaged_A = mkA "packaged" ; -lin packaging_N = mkN "packaging" ; -lin packed_A = mkA "packed" ; -lin packer_N = mkN "packer" "packers"; -- from DictEng -lin packet_N = mkN "packet" "packets"; -- from DictEng -lin packet_boat_N = mkN "packet - boat" "packet - boats"; -- from DictEng -lin packhorse_N = mkN "packhorse" "packhorses"; -- from DictEng -lin packing_N = mkN "packing" ; -- from DictEng -lin packing_case_N = mkN "packing - case" "packing - cases"; -- from DictEng -lin packing_needle_N = mkN "packing - needle" "packing - needles"; -- from DictEng -lin packinghouse_N = mkN "packinghouse" ; -lin packrat_N = mkN "packrat" ; -lin packsaddle_N = mkN "packsaddle" ; -lin packthread_N = mkN "packthread" ; -lin pact_N = mkN "pact" "pacts"; -- from DictEng -lin pad_N = mkN "pad" "pads"; -- from DictEng -lin pad_V = mkV "pad" "pads" "padded" "padded" "padding"; -- from DictEng -lin pad_V2 = mkV2 (mkV "pad" "pads" "padded" "padded" "padding"); -- from DictEng -lin padauk_N = mkN "padauk" ; -lin padding_N = mkN "padding" ; -- from DictEng -lin paddle_N = mkN "paddle" "paddles"; -- from DictEng -lin paddle_V = mkV "paddle" "paddles" "paddled" "paddled" "paddling"; -- from DictEng -lin paddle_V2 = mkV2 (mkV "paddle" "paddles" "paddled" "paddled" "paddling"); -- from DictEng -lin paddle_shaped_A = compoundA (mkA "paddle shaped") ; -lin paddle_box_N = mkN "paddle - box" "paddle - boxes"; -- from DictEng -lin paddle_steamer_N = mkN "paddle - steamer" "paddle - steamers"; -- from DictEng -lin paddle_wheel_N = mkN "paddle - wheel" "paddle - wheels"; -- from DictEng -lin paddlefish_N = mkN "paddlefish" ; -lin paddlewheel_N = mkN "paddlewheel" ; -lin paddock_N = mkN "paddock" "paddocks"; -- from DictEng -lin paddy_N = mkN "paddy" "paddies"; -- from DictEng -lin paddy_field_N = mkN "paddy - field" "paddy - fields"; -- from DictEng -lin paddy_wagon_N = mkN "paddy - wagon" "paddy - wagons"; -- from DictEng -lin paddywhack_V2 = mkV2 (mkV "paddywhack") ; -lin pademelon_N = mkN "pademelon" ; -lin padlock_N = mkN "padlock" "padlocks"; -- from DictEng -lin padlock_V2 = mkV2 (mkV "padlock" "padlocks" "padlocked" "padlocked" "padlocking"); -- from DictEng -lin padre_N = mkN "padre" "padres"; -- from DictEng -lin padrone_N = mkN "padrone" ; -lin paean_N = mkN "paean" "paeans"; -- from DictEng -lin paederasty_N = mkN "paederasty" ; -- from DictEng -lin paediatrics_N = mkN "paediatrics" "paediatrics"; -- from DictEng -lin paella_N = mkN "paella" ; -lin paeony_N = mkN "paeony" "paeonies"; -- from DictEng -lin pagan_A = compoundA (mkA "pagan"); -- from DictEng -lin pagan_N = mkN "pagan" "pagans"; -- from DictEng -lin paganism_N = mkN "paganism" ; -- from DictEng -lin page_N = mkN "page" "pages"; -- from DictEng -lin page_V2 = mkV2 (mkV "page" "pages" "paged" "paged" "paging"); -- from DictEng -lin pageant_N = mkN "pageant" "pageants"; -- from DictEng -lin pageantry_N = mkN "pageantry" ; -- from DictEng -lin pageboy_N = mkN "pageboy" ; -lin pagination_N = mkN "pagination" ; -- from DictEng -lin paging_N = mkN "paging" ; -lin pagoda_N = mkN "pagoda" "pagodas"; -- from DictEng -lin pahautea_N = mkN "pahautea" ; -lin pahoehoe_N = mkN "pahoehoe" ; -lin paid_A = mkA "paid" ; -lin paid_up_A = compoundA (mkA "paid up") ; -lin pail_N = mkN "pail" "pails"; -- from DictEng -lin pailful_N = mkN "pailful" "pailfuls"; -- from DictEng -lin paillasse_N = mkN "paillasse" "paillasses"; -- from DictEng -lin pailliasse_N = mkN "pailliasse" "pailliasses"; -- from DictEng -lin pain_N = mkN "pain" "pains"; -- from DictEng -lin pain_V = mkV "pain" ; -lin pain_V2 = mkV2 (mkV "pain" "pains" "pained" "pained" "paining"); -- from DictEng -lin pain_free_A = compoundA (mkA "pain free") ; -lin pained_A = compoundA (mkA "pained"); -- from DictEng -lin painful_A = compoundA (mkA "painful"); -- from DictEng -lin painfully_Adv = mkAdv "painfully" ; -lin painfulness_N = mkN "painfulness" ; -lin painkiller_N = mkN "painkiller" "painkillers"; -- from DictEng -lin painless_A = compoundA (mkA "painless"); -- from DictEng -lin painlessly_Adv = mkAdv "painlessly" ; -lin painstaking_A = compoundA (mkA "painstaking"); -- from DictEng -lin painstakingly_Adv = mkAdv "painstakingly" ; -lin paint_N = mkN "paint" "paints"; -- from DictEng -lin paint_V = mkV "paint" "paints" "painted" "painted" "painting"; -- from DictEng -lin paint_V2 = mkV2 (mkV "paint" "paints" "painted" "painted" "painting"); -- from DictEng -lin paintable_A = mkA "paintable" ; -lin paintball_N = mkN "paintball" ; -lin paintbox_N = mkN "paintbox" "paintboxes"; -- from DictEng -lin paintbrush_N = mkN "paintbrush" "paintbrushes"; -- from DictEng -lin painted_A = mkA "painted" ; -lin painter_N = mkN "painter" "painters"; -- from DictEng -lin painterly_A = mkA "painterly" ; -lin painting_N = mkN "painting" "paintings"; -- from DictEng -lin pair_N = mkN "pair" "pairs"; -- from DictEng -lin pair_V = mkV "pair" "pairs" "paired" "paired" "pairing"; -- from DictEng -lin pair_V2 = mkV2 (mkV "pair" "pairs" "paired" "paired" "pairing"); -- from DictEng -lin paired_A = mkA "paired" ; -lin pairing_N = mkN "pairing" ; -lin paisa_N = mkN "paisa" ; -lin paisley_N = mkN "paisley" ; -- from DictEng -lin pajama_N = mkN "pajama" ; -lin pakistani_A = compoundA (mkA "pakistani"); -- from DictEng -lin pakistani_N = mkN "pakistani" "pakistanis"; -- from DictEng -lin pal_N = mkN "pal" "pals"; -- from DictEng -lin pal_V = mkV "pal" "pals" "palled" "palled" "palling"; -- from DictEng -lin palace_N = mkN "palace" "palaces"; -- from DictEng -lin paladin_N = mkN "paladin" "paladins"; -- from DictEng -lin palaeolithic_A = compoundA (mkA "palaeolithic"); -- from DictEng -lin palaeontologist_N = mkN "palaeontologist" "palaeontologists"; -- from DictEng -lin palaeontology_N = mkN "palaeontology" ; -- from DictEng -lin palankeen_N = mkN "palankeen" "palankeens"; -- from DictEng -lin palanquin_N = mkN "palanquin" "palanquins"; -- from DictEng -lin palatability_N = mkN "palatability" ; -lin palatable_A = compoundA (mkA "palatable"); -- from DictEng -lin palatably_Adv = mkAdv "palatably" ; -lin palatal_A = compoundA (mkA "palatal"); -- from DictEng -lin palatal_N = mkN "palatal" "palatals"; -- from DictEng -lin palate_N = mkN "palate" "palates"; -- from DictEng -lin palatial_A = compoundA (mkA "palatial"); -- from DictEng -lin palatinate_N = mkN "palatinate" "palatinates"; -- from DictEng -lin palatine_A = mkA "palatine" ; -lin palatine_N = mkN "palatine" ; -lin palatoglossal_A = mkA "palatoglossal" ; -lin palatopharyngoplasty_N = mkN "palatopharyngoplasty" ; -lin palaver_N = mkN "palaver" "palavers"; -- from DictEng -lin palaver_V = mkV "palaver" "palavers" "palavered" "palavered" "palavering"; -- from DictEng -lin pale_A = mkA "pale" "paler"; -- from DictEng -lin pale_N = mkN "pale" "pales"; -- from DictEng -lin pale_V = mkV "pale" "pales" "paled" "paled" "paling"; -- from DictEng -lin pale_colored_A = compoundA (mkA "pale colored") ; -lin pale_faced_A = compoundA (mkA "pale faced") ; -lin paleencephalon_N = mkN "paleencephalon" ; -lin paleface_N = mkN "paleface" "palefaces"; -- from DictEng -lin palely_Adv = mkAdv "palely" ; -lin paleness_N = mkN "paleness" ; -- from DictEng -lin paleoanthropological_A = mkA "paleoanthropological" ; -lin paleoanthropology_N = mkN "paleoanthropology" ; -lin paleobiology_N = mkN "paleobiology" ; -lin paleobotany_N = mkN "paleobotany" ; -lin paleocerebellum_N = mkN "paleocerebellum" ; -lin paleoclimatology_N = mkN "paleoclimatology" ; -lin paleocortical_A = mkA "paleocortical" ; -lin paleodendrology_N = mkN "paleodendrology" ; -lin paleoecology_N = mkN "paleoecology" ; -lin paleoethnography_N = mkN "paleoethnography" ; -lin paleogeography_N = mkN "paleogeography" ; -lin paleogeology_N = mkN "paleogeology" ; -lin paleographer_N = mkN "paleographer" ; -lin paleography_N = mkN "paleography" ; -lin paleolith_N = mkN "paleolith" ; -lin paleolithic_A = compoundA (mkA "paleolithic"); -- from DictEng -lin paleology_N = mkN "paleology" ; -lin paleomammalogy_N = mkN "paleomammalogy" ; -lin paleontological_A = mkA "paleontological" ; -lin paleontologist_N = mkN "paleontologist" "paleontologists"; -- from DictEng -lin paleontology_N = mkN "paleontology" ; -- from DictEng -lin paleopathology_N = mkN "paleopathology" ; -lin paleornithology_N = mkN "paleornithology" ; -lin paleozoology_N = mkN "paleozoology" ; -lin palestinian_A = compoundA (mkA "palestinian"); -- from DictEng -lin palestinian_N = mkN "palestinian" "palestinians"; -- from DictEng -lin palestra_N = mkN "palestra" ; -lin paletiology_N = mkN "paletiology" ; -lin palette_N = mkN "palette" "palettes"; -- from DictEng -lin palette_knife_N = mkN "palette - knife" "palette - knives"; -- from DictEng -lin palfrey_N = mkN "palfrey" "palfreys"; -- from DictEng -lin palilalia_N = mkN "palilalia" ; -lin palimony_N = mkN "palimony" ; -lin palimpsest_N = mkN "palimpsest" "palimpsests"; -- from DictEng -lin palindrome_N = mkN "palindrome" "palindromes"; -- from DictEng -lin paling_N = mkN "paling" "palings"; -- from DictEng -lin palingenesis_N = mkN "palingenesis" ; -lin palingenetic_A = mkA "palingenetic" ; -lin palisade_N = mkN "palisade" "palisades"; -- from DictEng -lin palisade_V2 = mkV2 (mkV "palisade" "palisades" "palisaded" "palisaded" "palisading"); -- from DictEng -lin palish_A = compoundA (mkA "palish"); -- from DictEng -lin pall_N = mkN "pall" "palls"; -- from DictEng -lin pall_V = mkV "pall" "palls" "palled" "palled" "palling"; -- from DictEng -lin pall_mall_N = mkN "pall mall" ; -lin palladium_N = mkN "palladium" ; -lin pallasite_N = mkN "pallasite" ; -lin pallbearer_N = mkN "pallbearer" "pallbearers"; -- from DictEng -lin pallet_N = mkN "pallet" "pallets"; -- from DictEng -lin pallette_N = mkN "pallette" ; -lin palliasse_N = mkN "palliasse" "palliasses"; -- from DictEng -lin palliate_V2 = mkV2 (mkV "palliate" "palliates" "palliated" "palliated" "palliating"); -- from DictEng -lin palliation_N = mkN "palliation" "palliations"; -- from DictEng -lin palliative_A = compoundA (mkA "palliative"); -- from DictEng -lin palliative_N = mkN "palliative" "palliatives"; -- from DictEng -lin pallid_A = compoundA (mkA "pallid"); -- from DictEng -lin pallidly_Adv = mkAdv "pallidly" ; -lin pallidness_N = mkN "pallidness" ; -- from DictEng -lin pallidum_N = mkN "pallidum" ; -lin pallium_N = mkN "pallium" ; -lin pallone_N = mkN "pallone" ; -lin pallor_N = mkN "pallor" ; -- from DictEng -lin pally_A = mkA "pally" "pallier"; -- from DictEng -lin palm_N = mkN "palm" "palms"; -- from DictEng -lin palm_V2 = mkV2 (mkV "palm" "palms" "palmed" "palmed" "palming"); -- from DictEng -lin palm_oil_N = mkN "palm - oil" ; -- from DictEng -lin palmar_A = mkA "palmar" ; -lin palmate_A = mkA "palmate" ; -lin palmately_Adv = mkAdv "palmately" ; -lin palmately_lobed_A = compoundA (mkA "palmately lobed") ; -lin palmatifid_A = mkA "palmatifid" ; -lin palmature_N = mkN "palmature" ; -lin palmer_N = mkN "palmer" "palmers"; -- from DictEng -lin palmetto_N = mkN "palmetto" "palmettos"; -- from DictEng -lin palmist_N = mkN "palmist" "palmists"; -- from DictEng -lin palmistry_N = mkN "palmistry" ; -- from DictEng -lin palmitin_N = mkN "palmitin" ; -lin palmlike_A = mkA "palmlike" ; -lin palmy_A = mkA "palmy" "palmier"; -- from DictEng -lin palmyra_N = mkN "palmyra" ; -lin palometa_N = mkN "palometa" ; -lin palomino_N = mkN "palomino" ; -lin paloverde_N = mkN "paloverde" ; -lin palpable_A = compoundA (mkA "palpable"); -- from DictEng -lin palpably_Adv = mkAdv "palpably" ; -lin palpation_N = mkN "palpation" ; -lin palpatory_A = mkA "palpatory" ; -lin palpebrate_A = mkA "palpebrate" ; -lin palpebration_N = mkN "palpebration" ; -lin palpitant_A = mkA "palpitant" ; -lin palpitate_V = mkV "palpitate" "palpitates" "palpitated" "palpitated" "palpitating"; -- from DictEng -lin palpitation_N = mkN "palpitation" "palpitations"; -- from DictEng -lin palsied_A = mkA "palsied" ; -lin palsy_N = mkN "palsy" ; -- from DictEng -lin palsy_V2 = mkV2 (mkV "palsy" "palsies" "palsied" "palsied" "palsying"); -- from DictEng -lin palter_V = mkV "palter" "palters" "paltered" "paltered" "paltering"; -- from DictEng -lin paltriness_N = mkN "paltriness" ; -lin paltry_A = mkA "paltry" "paltrier"; -- from DictEng -lin pampas_N = mkN "pampas" ; -lin pampas_grass_N = mkN "pampas - grass" ; -- from DictEng -lin pamper_V2 = mkV2 (mkV "pamper" "pampers" "pampered" "pampered" "pampering"); -- from DictEng -lin pamperer_N = mkN "pamperer" ; -lin pampering_A = mkA "pampering" ; -lin pamphlet_N = mkN "pamphlet" "pamphlets"; -- from DictEng -lin pamphleteer_N = mkN "pamphleteer" "pamphleteers"; -- from DictEng -lin pan_N = mkN "pan" "pans"; -- from DictEng -lin pan_V = mkV "pan" "pans" "panned" "panned" "panning"; -- from DictEng -lin pan_V2 = mkV2 (mkV "pan" "pans" "panned" "panned" "panning"); -- from DictEng -lin panacea_N = mkN "panacea" "panaceas"; -- from DictEng -lin panache_N = mkN "panache" ; -- from DictEng -lin panama_N = mkN "panama" "panamas"; -- from DictEng -lin panamanian_A = compoundA (mkA "panamanian"); -- from DictEng -lin panamanian_N = mkN "panamanian" "panamanians"; -- from DictEng -lin panatela_N = mkN "panatela" ; -lin panatella_N = mkN "panatella" "panatellas"; -- from DictEng -lin pancake_N = mkN "pancake" "pancakes"; -- from DictEng -lin pancake_like_A = compoundA (mkA "pancake like") ; -lin pancake_style_A = compoundA (mkA "pancake style") ; -lin pancarditis_N = mkN "pancarditis" ; -lin panchayat_N = mkN "panchayat" ; -lin panchromatic_A = compoundA (mkA "panchromatic"); -- from DictEng -lin pancreas_N = mkN "pancreas" "pancreases"; -- from DictEng -lin pancreatectomy_N = mkN "pancreatectomy" ; -lin pancreatic_A = compoundA (mkA "pancreatic"); -- from DictEng -lin pancreatin_N = mkN "pancreatin" ; -lin pancreatitis_N = mkN "pancreatitis" ; -lin pancytopenia_N = mkN "pancytopenia" ; -lin panda_N = mkN "panda" "pandas"; -- from DictEng -lin pandanus_N = mkN "pandanus" ; -lin pandemic_A = compoundA (mkA "pandemic"); -- from DictEng -lin pandemic_N = mkN "pandemic" "pandemics"; -- from DictEng -lin pandemonium_N = mkN "pandemonium" "pandemoniums"; -- from DictEng -lin pander_N = mkN "pander" "panders"; -- from DictEng -lin pander_V = mkV "pander" "panders" "pandered" "pandered" "pandering"; -- from DictEng -lin panderer_N = mkN "panderer" ; -lin pandiculation_N = mkN "pandiculation" ; -lin pandurate_A = mkA "pandurate" ; -lin pane_N = mkN "pane" "panes"; -- from DictEng -lin panegyric_N = mkN "panegyric" "panegyrics"; -- from DictEng -lin panel_N = mkN "panel" "panels"; -- from DictEng -lin panel_V2 = mkV2 (mkV "panel" "panels" "panelled" "panelled" "panelling"); -- from DictEng -lin paneled_A = mkA "paneled" ; -lin paneling_N = mkN "paneling" ; -lin panelist_N = mkN "panelist" ; -lin panelling_N = mkN "panelling" ; -- from DictEng -lin panencephalitis_N = mkN "panencephalitis" ; -lin panfish_N = mkN "panfish" ; -lin pang_N = mkN "pang" "pangs"; -- from DictEng -lin panga_N = mkN "panga" "pangas"; -- from DictEng -lin pangolin_N = mkN "pangolin" ; -lin panhandle_N = mkN "panhandle" "panhandles"; -- from DictEng -lin panhandle_V = mkV "panhandle" "panhandles" "panhandled" "panhandled" "panhandling"; -- from DictEng -lin panhandler_N = mkN "panhandler" ; -lin panic_N = mkN "panic"; -- from DictEng -lin panic_V = mkV "panic" "panics" "panicked" "panicked" "panicking"; -- from DictEng -lin panic_V2 = mkV2 (mkV "panic" "panics" "panicked" "panicked" "panicking"); -- from DictEng -lin panic_stricken_A = compoundA (mkA "panic - stricken"); -- from DictEng -lin panicky_A = compoundA (mkA "panicky"); -- from DictEng -lin panicle_N = mkN "panicle" ; -lin panicled_A = mkA "panicled" ; -lin paniculate_A = mkA "paniculate" ; -lin panjandrum_N = mkN "panjandrum" "panjandrums"; -- from DictEng -lin pannier_N = mkN "pannier" "panniers"; -- from DictEng -lin pannikin_N = mkN "pannikin" "pannikins"; -- from DictEng -lin panoplied_A = compoundA (mkA "panoplied"); -- from DictEng -lin panoply_N = mkN "panoply" "panoplies"; -- from DictEng -lin panoptic_A = compoundA (mkA "panoptic"); -- from DictEng -lin panopticon_N = mkN "panopticon" ; -lin panorama_N = mkN "panorama" "panoramas"; -- from DictEng -lin panoramic_A = compoundA (mkA "panoramic"); -- from DictEng -lin panpipe_N = mkN "panpipe" ; -lin pansexual_N = mkN "pansexual" ; -lin pansinusitis_N = mkN "pansinusitis" ; -lin pansy_N = mkN "pansy" "pansies"; -- from DictEng -lin pant_N = mkN "pant" "pants"; -- from DictEng -lin pant_V = mkV "pant" "pants" "panted" "panted" "panting"; -- from DictEng -lin pant_V2 = mkV2 (mkV "pant" "pants" "panted" "panted" "panting"); -- from DictEng -lin pantaloon_N = mkN "pantaloon" "pantaloons"; -- from DictEng -lin pantechnicon_N = mkN "pantechnicon" "pantechnicons"; -- from DictEng -lin pantheism_N = mkN "pantheism" ; -- from DictEng -lin pantheist_A = mkA "pantheist" ; -lin pantheist_N = mkN "pantheist" "pantheists"; -- from DictEng -lin pantheistic_A = compoundA (mkA "pantheistic"); -- from DictEng -lin pantheon_N = mkN "pantheon" "pantheons"; -- from DictEng -lin panther_N = mkN "panther" "panthers"; -- from DictEng -lin pantie_N = mkN "pantie" ; -lin pantile_N = mkN "pantile" "pantiles"; -- from DictEng -lin panting_N = mkN "panting" ; -lin pantingly_Adv = mkAdv "pantingly"; -- from DictEng -lin panto_N = mkN "panto" "pantos"; -- from DictEng -lin pantograph_N = mkN "pantograph" "pantographs"; -- from DictEng -lin pantomime_N = mkN "pantomime" "pantomimes"; -- from DictEng -lin pantropical_A = mkA "pantropical" ; -lin pantry_N = mkN "pantry" "pantries"; -- from DictEng -lin pantryman_N = mkN "pantryman" "pantrymen" {- FIXME: guessed plural form -}; -- from DictEng -lin panty_hose_N = mkN "panty - hose" ; -- from DictEng -lin pantyhose_N = mkN "pantyhose" ; -lin panzer_A = compoundA (mkA "panzer"); -- from DictEng -lin panzer_N = mkN "panzer" ; -lin pap_N = mkN "pap" ; -- from DictEng -lin papa_N = mkN "papa" "papas"; -- from DictEng -lin papacy_N = mkN "papacy" "papacies"; -- from DictEng -lin papain_N = mkN "papain" ; -lin papal_A = compoundA (mkA "papal"); -- from DictEng -lin paparazzo_N = mkN "paparazzo" ; -lin papaverine_N = mkN "papaverine" ; -lin papaw_N = mkN "papaw" "papaws"; -- from DictEng -lin papaya_N = mkN "papaya" "papayas"; -- from DictEng -lin paper_N = mkN "paper" "papers"; -- from DictEng -lin paper_V2 = mkV2 (mkV "paper" "papers" "papered" "papered" "papering"); -- from DictEng -lin paper_pusher_N = mkN "paper pusher" ; -lin paper_chase_N = mkN "paper - chase" "paper - chases"; -- from DictEng -lin paper_thin_A = compoundA (mkA "paper thin") ; -lin paperback_A = mkA "paperback" ; -lin paperback_N = mkN "paperback" "paperbacks"; -- from DictEng -lin paperbacked_A = compoundA (mkA "paperbacked"); -- from DictEng -lin paperboard_N = mkN "paperboard" ; -lin paperboy_N = mkN "paperboy" ; -lin paperclip_N = mkN "paperclip" "paperclips"; -- from DictEng -lin paperhanger_N = mkN "paperhanger" "paperhangers"; -- from DictEng -lin papering_N = mkN "papering" ; -lin paperknife_N = mkN "paperknife" "paperknives"; -- from DictEng -lin paperless_A = compoundA (mkA "paperless"); -- from DictEng -lin papermaking_N = mkN "papermaking" ; -lin papermill_N = mkN "papermill" "papermills"; -- from DictEng -lin paperweight_N = mkN "paperweight" "paperweights"; -- from DictEng -lin paperwork_N = mkN "paperwork" ; -- from DictEng -lin papery_A = mkA "papery" ; -lin papier_mache_N = mkN "papier - mâché" ; -- from DictEng -lin papier_mache_N = mkN "papier - mâché" ; -- from DictEng -lin papilla_N = mkN "papilla" ; -lin papillary_A = mkA "papillary" ; -lin papillate_A = mkA "papillate" ; -lin papilledema_N = mkN "papilledema" ; -lin papilliform_A = mkA "papilliform" ; -lin papilloma_N = mkN "papilloma" ; -lin papillon_N = mkN "papillon" ; -lin papist_A = compoundA (mkA "papist"); -- from DictEng -lin papist_N = mkN "papist" "papists"; -- from DictEng -lin papoose_N = mkN "papoose" "papooses"; -- from DictEng -lin papovavirus_N = mkN "papovavirus" ; -lin pappose_A = mkA "pappose" ; -lin pappus_N = mkN "pappus" ; -lin paprika_N = mkN "paprika" ; -- from DictEng -lin papuan_A = compoundA (mkA "papuan"); -- from DictEng -lin papuan_N = mkN "papuan" "papuans"; -- from DictEng -lin papule_N = mkN "papule" ; -lin papulovesicle_N = mkN "papulovesicle" ; -lin papyrus_N = mkN "papyrus" "papyruses"; -- from DictEng -lin par_N = mkN "par" "pars"; -- from DictEng -lin par_excellence_Adv = mkAdv "par excellence"; -- from DictEng -lin para_N = mkN "para" ; -- from DictEng -lin parable_N = mkN "parable" "parables"; -- from DictEng -lin parabola_N = mkN "parabola" "parabolas"; -- from DictEng -lin parabolic_A = compoundA (mkA "parabolic"); -- from DictEng -lin parabolical_A = compoundA (mkA "parabolical"); -- from DictEng -lin paraboloid_N = mkN "paraboloid" ; -lin paraboloidal_A = mkA "paraboloidal" ; -lin parachute_N = mkN "parachute" "parachutes"; -- from DictEng -lin parachute_V = mkV "parachute" "parachutes" "parachuted" "parachuted" "parachuting"; -- from DictEng -lin parachute_V2 = mkV2 (mkV "parachute" "parachutes" "parachuted" "parachuted" "parachuting"); -- from DictEng -lin parachutist_N = mkN "parachutist" "parachutists"; -- from DictEng -lin paracosm_N = mkN "paracosm" ; -lin parade_N = mkN "parade" "parades"; -- from DictEng -lin parade_V = mkV "parade" "parades" "paraded" "paraded" "parading"; -- from DictEng -lin parade_V2 = mkV2 (mkV "parade" "parades" "paraded" "paraded" "parading"); -- from DictEng -lin parade_ground_N = mkN "parade - ground" "parade - grounds"; -- from DictEng -lin paradiddle_N = mkN "paradiddle" ; -lin paradigm_N = mkN "paradigm" "paradigms"; -- from DictEng -lin paradigmatic_A = mkA "paradigmatic" ; -lin paradise_N = mkN "paradise" "paradises"; -- from DictEng -lin paradisiac_A = compoundA (mkA "paradisiac"); -- from DictEng -lin paradisiacal_A = compoundA (mkA "paradisiacal"); -- from DictEng -lin paradox_N = mkN "paradox" "paradoxes"; -- from DictEng -lin paradoxical_A = compoundA (mkA "paradoxical"); -- from DictEng -lin paradoxically_Adv = mkAdv "paradoxically" ; -lin paraffin_N = mkN "paraffin" ; -- from DictEng -lin parafovea_N = mkN "parafovea" ; -lin paragon_N = mkN "paragon" "paragons"; -- from DictEng -lin paragonite_N = mkN "paragonite" ; -lin paragraph_N = mkN "paragraph" "paragraphs"; -- from DictEng -lin paragraph_V2 = mkV2 (mkV "paragraph" "paragraphs" "paragraphed" "paragraphed" "paragraphing"); -- from DictEng -lin paragrapher_N = mkN "paragrapher" ; -lin paraguayan_A = compoundA (mkA "paraguayan"); -- from DictEng -lin paraguayan_N = mkN "paraguayan" "paraguayans"; -- from DictEng -lin parakeet_N = mkN "parakeet" "parakeets"; -- from DictEng -lin paralanguage_N = mkN "paralanguage" ; -lin paraldehyde_N = mkN "paraldehyde" ; -lin paralegal_N = mkN "paralegal" ; -lin paralepsis_N = mkN "paralepsis" ; -lin parallax_N = mkN "parallax" ; -lin parallel_A = compoundA (mkA "parallel"); -- from DictEng -lin parallel_N = mkN "parallel" "parallels"; -- from DictEng -lin parallel_V2 = mkV2 (mkV "parallel" "parallels" "parallelled" "parallelled" "parallelling"); -- from DictEng -lin parallelepiped_N = mkN "parallelepiped" ; -lin parallelism_N = mkN "parallelism" "parallelisms"; -- from DictEng -lin parallelogram_N = mkN "parallelogram" "parallelograms"; -- from DictEng -lin paralogism_N = mkN "paralogism" ; -lin paralyse_V2 = mkV2 (mkV "paralyse" "paralyses" "paralysed" "paralysed" "paralysing"); -- from DictEng -lin paralysis_N = mkN "paralysis" ; -- from DictEng -lin paralytic_A = compoundA (mkA "paralytic"); -- from DictEng -lin paralytic_N = mkN "paralytic" "paralytics"; -- from DictEng -lin paralyze_V2 = mkV2 (mkV "paralyze" "paralyzes" "paralyzed" "paralyzed" "paralyzing"); -- from DictEng -lin paramagnet_N = mkN "paramagnet" ; -lin paramagnetic_A = mkA "paramagnetic" ; -lin paramagnetism_N = mkN "paramagnetism" ; -lin paramecium_N = mkN "paramecium" ; -lin paramedic_N = mkN "paramedic" ; -lin paramedical_A = mkA "paramedical" ; -lin parameter_N = mkN "parameter" "parameters"; -- from DictEng -lin parametric_A = mkA "parametric" ; -lin parametritis_N = mkN "parametritis" ; -lin paramilitary_A = compoundA (mkA "paramilitary"); -- from DictEng -lin paramilitary_N = mkN "paramilitary" ; -lin paramnesia_N = mkN "paramnesia" ; -lin paramount_A = compoundA (mkA "paramount"); -- from DictEng -lin paramountcy_N = mkN "paramountcy" ; -- from DictEng -lin paramour_N = mkN "paramour" "paramours"; -- from DictEng -lin paramyxovirus_N = mkN "paramyxovirus" ; -lin paranasal_A = mkA "paranasal" ; -lin parang_N = mkN "parang" ; -lin paranoia_N = mkN "paranoia" ; -- from DictEng -lin paranoiac_N = mkN "paranoiac" "paranoiacs"; -- from DictEng -lin paranoid_A = compoundA (mkA "paranoid"); -- from DictEng -lin paranoid_N = mkN "paranoid" "paranoids"; -- from DictEng -lin paranormal_A = mkA "paranormal" ; -lin paraparesis_N = mkN "paraparesis" ; -lin parapet_N = mkN "parapet" "parapets"; -- from DictEng -lin paraph_N = mkN "paraph" ; -lin paraphernalia_N = mkN "paraphernalia" ; -- from DictEng -lin paraphilia_N = mkN "paraphilia" ; -lin paraphrase_N = mkN "paraphrase" ; -lin paraphrase_V2 = mkV2 (mkV "paraphrase" "paraphrases" "paraphrased" "paraphrased" "paraphrasing"); -- from DictEng -lin paraphrastic_A = mkA "paraphrastic" ; -lin paraphysis_N = mkN "paraphysis" ; -lin paraplegia_N = mkN "paraplegia" ; -- from DictEng -lin paraplegic_A = compoundA (mkA "paraplegic"); -- from DictEng -lin paraplegic_N = mkN "paraplegic" "paraplegics"; -- from DictEng -lin parapodium_N = mkN "parapodium" ; -lin paraprofessional_N = mkN "paraprofessional" ; -lin parapsychological_A = mkA "parapsychological" ; -lin parapsychologist_N = mkN "parapsychologist" ; -lin paraquat_N = mkN "paraquat" ; -lin parasail_N = mkN "parasail" ; -lin parasailing_N = mkN "parasailing" ; -lin parasite_N = mkN "parasite" "parasites"; -- from DictEng -lin parasitemia_N = mkN "parasitemia" ; -lin parasitic_A = compoundA (mkA "parasitic"); -- from DictEng -lin parasitical_A = compoundA (mkA "parasitical"); -- from DictEng -lin parasitically_Adv = mkAdv "parasitically" ; -lin parasitism_N = mkN "parasitism" ; -lin parasol_N = mkN "parasol" "parasols"; -- from DictEng -lin parasympathetic_A = mkA "parasympathetic" ; -lin parasympathomimetic_A = mkA "parasympathomimetic" ; -lin parathion_N = mkN "parathion" ; -lin paratrooper_N = mkN "paratrooper" "paratroopers"; -- from DictEng -lin paratroops_N = mkN "paratroops" ; -lin paratyphoid_N = mkN "paratyphoid" ; -- from DictEng -lin parboil_V2 = mkV2 (mkV "parboil" "parboils" "parboiled" "parboiled" "parboiling"); -- from DictEng -lin parcel_N = mkN "parcel" "parcels"; -- from DictEng -lin parcel_V2 = mkV2 (mkV "parcel" "parcels" "parcelled" "parcelled" "parcelling"); -- from DictEng -lin parcellation_N = mkN "parcellation" ; -lin parch_V2 = mkV2 (mkV "parch" "parches" "parched" "parched" "parching"); -- from DictEng -lin parched_A = mkA "parched" ; -lin parchment_N = mkN "parchment" "parchments"; -- from DictEng -lin pardon_N = mkN "pardon" "pardons"; -- from DictEng -lin pardon_V2 = mkV2 (mkV "pardon" "pardons" "pardoned" "pardoned" "pardoning"); -- from DictEng -lin pardonable_A = compoundA (mkA "pardonable"); -- from DictEng -lin pardoner_N = mkN "pardoner" "pardoners"; -- from DictEng -lin pare_V2 = mkV2 (mkV "pare" "pares" "pared" "pared" "paring"); -- from DictEng -lin paregmenon_N = mkN "paregmenon" ; -lin paregoric_N = mkN "paregoric" ; -- from DictEng -lin parenchyma_N = mkN "parenchyma" ; -lin parent_N = mkN "parent" "parents"; -- from DictEng -lin parentage_N = mkN "parentage" ; -- from DictEng -lin parental_A = compoundA (mkA "parental"); -- from DictEng -lin parentally_Adv = mkAdv "parentally" ; -lin parented_A = mkA "parented" ; -lin parenteral_A = mkA "parenteral" ; -lin parenterally_Adv = mkAdv "parenterally" ; -lin parenthesis_N = mkN "parenthesis" "parentheses" {- FIXME: guessed plural form -}; -- from DictEng -lin parenthetic_A = compoundA (mkA "parenthetic"); -- from DictEng -lin parenthetical_A = compoundA (mkA "parenthetical"); -- from DictEng -lin parenthetically_Adv = mkAdv "parenthetically" ; -lin parenthood_N = mkN "parenthood" ; -lin parer_N = mkN "parer" ; -lin paresis_N = mkN "paresis" ; -lin paresthesia_N = mkN "paresthesia" ; -lin paretic_N = mkN "paretic" ; -lin pareve_A = mkA "pareve" ; -lin parfait_N = mkN "parfait" ; -lin parget_N = mkN "parget" ; -lin pargeting_N = mkN "pargeting" ; -lin parhelic_A = mkA "parhelic" ; -lin parhelion_N = mkN "parhelion" ; -lin pari_mutuel_N = mkN "pari - mutuel" "pari - mutuels"; -- from DictEng -lin pari_passu_Adv = mkAdv "pari passu"; -- from DictEng -lin pariah_N = mkN "pariah" "pariahs"; -- from DictEng -lin pariah_dog_N = mkN "pariah - dog" "pariah - dogs"; -- from DictEng -lin parietal_A = mkA "parietal" ; -lin parimutuel_N = mkN "parimutuel" ; -lin paring_N = mkN "paring" ; -lin parish_N = mkN "parish" "parishes"; -- from DictEng -lin parishioner_N = mkN "parishioner" "parishioners"; -- from DictEng -lin parisian_A = compoundA (mkA "parisian"); -- from DictEng -lin parisian_N = mkN "parisian" "parisians"; -- from DictEng -lin parisology_N = mkN "parisology" ; -lin parity_N = mkN "parity" ; -- from DictEng -lin park_N = mkN "park" "parks"; -- from DictEng -lin park_V = mkV "park" "parks" "parked" "parked" "parking"; -- from DictEng -lin park_V2 = mkV2 (mkV "park" "parks" "parked" "parked" "parking"); -- from DictEng -lin parka_N = mkN "parka" "parkas"; -- from DictEng -lin parked_A = mkA "parked" ; -lin parking_N = mkN "parking" ; -- from DictEng -lin parkinson's_A = compoundA (mkA "parkinson's"); -- from DictEng -lin parky_A = compoundA (mkA "parky"); -- from DictEng -lin parlance_N = mkN "parlance" "parlances"; -- from DictEng -lin parlay_N = mkN "parlay" ; -lin parley_N = mkN "parley" "parleys"; -- from DictEng -lin parley_V = mkV "parley" "parleys" "parleyed" "parleyed" "parleying"; -- from DictEng -lin parliament_N = mkN "parliament" "parliaments"; -- from DictEng -lin parliamentarian_N = mkN "parliamentarian" "parliamentarians"; -- from DictEng -lin parliamentary_A = compoundA (mkA "parliamentary"); -- from DictEng -lin parlor_N = mkN "parlor" ; -lin parlormaid_N = mkN "parlormaid" ; -lin parlour_N = mkN "parlour" "parlours"; -- from DictEng -lin parlour_car_N = mkN "parlour - car" "parlour - cars"; -- from DictEng -lin parlous_A = compoundA (mkA "parlous"); -- from DictEng -lin parmesan_N = mkN "parmesan" ; -- from DictEng -lin parnassia_N = mkN "parnassia" ; -lin parochial_A = compoundA (mkA "parochial"); -- from DictEng -lin parochialism_N = mkN "parochialism" ; -- from DictEng -lin parochially_Adv = mkAdv "parochially" ; -lin parodist_N = mkN "parodist" "parodists"; -- from DictEng -lin parody_N = mkN "parody" "parodies"; -- from DictEng -lin parody_V2 = mkV2 (mkV "parody" "parodies" "parodied" "parodied" "parodying"); -- from DictEng -lin paroicous_A = mkA "paroicous" ; -lin parole_N = mkN "parole" ; -- from DictEng -lin parole_V2 = mkV2 (mkV "parole" "paroles" "paroled" "paroled" "paroling"); -- from DictEng -lin paronychia_N = mkN "paronychia" ; -lin paroquet_N = mkN "paroquet" "paroquets"; -- from DictEng -lin parotid_A = mkA "parotid" ; -lin parotitis_N = mkN "parotitis" ; -lin parous_A = mkA "parous" ; -lin paroxetime_N = mkN "paroxetime" ; -lin paroxysm_N = mkN "paroxysm" "paroxysms"; -- from DictEng -lin paroxysmal_A = mkA "paroxysmal" ; -lin paroxytone_N = mkN "paroxytone" ; -lin parquet_N = mkN "parquet" ; -- from DictEng -lin parquetry_N = mkN "parquetry" ; -lin parr_N = mkN "parr" "parrs"; -- from DictEng -lin parricide_N = mkN "parricide" "parricides"; -- from DictEng -lin parrot_N = mkN "parrot" "parrots"; -- from DictEng -lin parrotfish_N = mkN "parrotfish" ; -lin parrotlike_A = mkA "parrotlike" ; -lin parry_N = mkN "parry" "parries"; -- from DictEng -lin parry_V2 = mkV2 (mkV "parry" "parries" "parried" "parried" "parrying"); -- from DictEng -lin parse_V2 = mkV2 (mkV "parse" "parses" "parsed" "parsed" "parsing"); -- from DictEng -lin parsec_N = mkN "parsec" ; -lin parsee_N = mkN "parsee" "parsees"; -- from DictEng -lin parser_N = mkN "parser" ; -lin parsimonious_A = compoundA (mkA "parsimonious"); -- from DictEng -lin parsimony_N = mkN "parsimony" ; -- from DictEng -lin parsley_N = mkN "parsley" ; -- from DictEng -lin parsnip_N = mkN "parsnip" "parsnips"; -- from DictEng -lin parson_N = mkN "parson" "parsons"; -- from DictEng -lin parsonage_N = mkN "parsonage" "parsonages"; -- from DictEng -lin part_Adv = mkAdv "part"; -- from DictEng -lin part_N = mkN "part" "parts"; -- from DictEng -lin part_V = mkV "part" "parts" "parted" "parted" "parting"; -- from DictEng -lin part_V2 = mkV2 (mkV "part" "parts" "parted" "parted" "parting"); -- from DictEng -lin part_owner_N = mkN "part - owner" "part - owners"; -- from DictEng -lin part_singing_N = mkN "part - singing" ; -- from DictEng -lin part_time_A = compoundA (mkA "part - time"); -- from DictEng -lin part_timer_N = mkN "part - timer" "part - timers"; -- from DictEng -lin part_owner_N = mkN "part - owner" "part - owners"; -- from DictEng -lin part_singing_N = mkN "part - singing" ; -- from DictEng -lin part_song_N = mkN "part - song" "part - songs"; -- from DictEng -lin part_time_A = compoundA (mkA "part - time"); -- from DictEng -lin part_time_Adv = mkAdv "part - time"; -- from DictEng -lin part_timer_N = mkN "part - timer" "part - timers"; -- from DictEng -lin partake_V = mkV "par" IrregEng.take_V; -- from DictEng -lin partake_V2 = mkV2 (mkV "par" IrregEng.take_V); -- from DictEng -lin partaker_N = mkN "partaker" ; -lin parted_A = mkA "parted" ; -lin parterre_N = mkN "parterre" "parterres"; -- from DictEng -lin parthenocarpy_N = mkN "parthenocarpy" ; -lin parthenogenesis_N = mkN "parthenogenesis" ; -- from DictEng -lin parthenote_N = mkN "parthenote" ; -lin parthian_A = compoundA (mkA "parthian"); -- from DictEng -lin parti_coloured_A = compoundA (mkA "parti - coloured"); -- from DictEng -lin partial_A = compoundA (mkA "partial"); -- from DictEng -lin partiality_N = mkN "partiality" "partialities"; -- from DictEng -lin partially_Adv = mkAdv "partially" ; -lin partialness_N = mkN "partialness" ; -lin partible_A = mkA "partible" ; -lin participant_N = mkN "participant" "participants"; -- from DictEng -lin participate_V = mkV "participate" "participates" "participated" "participated" "participating"; -- from DictEng -lin participate_V2 = mkV2 (mkV "participate" "participates" "participated" "participated" "participating"); -- from DictEng -lin participation_N = mkN "participation" ; -- from DictEng -lin participatory_A = mkA "participatory" ; -lin participial_A = compoundA (mkA "participial"); -- from DictEng -lin participle_N = mkN "participle" "participles"; -- from DictEng -lin particle_N = mkN "particle" "particles"; -- from DictEng -lin particular_A = compoundA (mkA "particular"); -- from DictEng -lin particular_N = mkN "particular" "particulars"; -- from DictEng -lin particularism_N = mkN "particularism" ; -lin particularistic_A = mkA "particularistic" ; -lin particularity_N = mkN "particularity" "particularities"; -- from DictEng -lin particularization_N = mkN "particularization" ; -lin particularize_V = mkV "particularize" "particularizes" "particularized" "particularized" "particularizing"; -- from DictEng -lin particularize_V2 = mkV2 (mkV "particularize" "particularizes" "particularized" "particularized" "particularizing"); -- from DictEng -lin particularized_A = mkA "particularized" ; -lin particularly_Adv = mkAdv "particularly" ; -lin particulate_A = mkA "particulate" ; -lin particulate_N = mkN "particulate" ; -lin parting_N = mkN "parting" "partings"; -- from DictEng -lin partisan_A = compoundA (mkA "partisan"); -- from DictEng -lin partisan_N = mkN "partisan" "partisans"; -- from DictEng -lin partisanship_N = mkN "partisanship" ; -- from DictEng -lin partita_N = mkN "partita" ; -lin partition_N = mkN "partition" "partitions"; -- from DictEng -lin partition_V2 = mkV2 (mkV "partition" "partitions" "partitioned" "partitioned" "partitioning"); -- from DictEng -lin partitionist_N = mkN "partitionist" ; -lin partitive_A = compoundA (mkA "partitive"); -- from DictEng -lin partitive_N = mkN "partitive" "partitives"; -- from DictEng -lin partly_Adv = mkAdv "partly"; -- from DictEng -lin partner_N = mkN "partner" "partners"; -- from DictEng -lin partner_V = mkV "partner" ; -lin partner_V2 = mkV2 (mkV "partner" "partners" "partnered" "partnered" "partnering"); -- from DictEng -lin partnership_N = mkN "partnership" "partnerships"; -- from DictEng -lin partridge_N = mkN "partridge" "partridges"; -- from DictEng -lin partridgeberry_N = mkN "partridgeberry" ; -lin parts_N = mkN "parts" ; -lin partsong_N = mkN "partsong" ; -lin parturiency_N = mkN "parturiency" ; -lin parturient_A = mkA "parturient" ; -lin parturition_N = mkN "parturition" ; -- from DictEng -lin party_N = mkN "party" "parties"; -- from DictEng -lin party_spirited_A = compoundA (mkA "party - spirited"); -- from DictEng -lin party_spirit_N = mkN "party - spirit" ; -- from DictEng -lin party_spirited_A = compoundA (mkA "party - spirited"); -- from DictEng -lin party_wall_N = mkN "party - wall" "party - walls"; -- from DictEng -lin partygoer_N = mkN "partygoer" ; -lin parvenu_A = mkA "parvenu" ; -lin parvenu_N = mkN "parvenu" "parvenus"; -- from DictEng -lin parvis_N = mkN "parvis" ; -lin parvovirus_N = mkN "parvovirus" ; -lin pas_N = mkN "pas" ; -lin pascal_N = mkN "pascal" ; -lin paschal_A = compoundA (mkA "paschal"); -- from DictEng -lin pasha_N = mkN "pasha" "pashas"; -- from DictEng -lin pashto_N = mkN "pashto" ; -- from DictEng -lin pasqueflower_N = mkN "pasqueflower" ; -lin pass_N = mkN "pass" "passes"; -- from DictEng -lin pass_V = mkV "pass" "passes" "passed" "passed" "passing"; -- from DictEng -lin pass_V2 = mkV2 (mkV "pass" "passes" "passed" "passed" "passing"); -- from DictEng -lin pass_through_N = mkN "pass through" ; -lin pass_on_V2 = mkV2 (mkV "pass on") ; -lin passable_A = compoundA (mkA "passable"); -- from DictEng -lin passage_N = mkN "passage" "passages"; -- from DictEng -lin passageway_N = mkN "passageway" "passageways"; -- from DictEng -lin passant_A = mkA "passant" ; -lin passbook_N = mkN "passbook" "passbooks"; -- from DictEng -lin passe_A = compoundA (mkA "passé"); -- from DictEng -lin passe_partout_N = mkN "passe partout" ; -lin passee_A = compoundA (mkA "passée"); -- from DictEng -lin passenger_N = mkN "passenger" "passengers"; -- from DictEng -lin passepartout_N = mkN "passepartout" "passepartouts"; -- from DictEng -lin passer_N = mkN "passer" ; -lin passer_by_N = mkN "passer - by" "IRREG"; -- from DictEng -lin passerby_N = mkN "passerby" ; -lin passerine_A = mkA "passerine" ; -lin passerine_N = mkN "passerine" ; -lin passim_Adv = mkAdv "passim"; -- from DictEng -lin passing_A = compoundA (mkA "passing"); -- from DictEng -lin passing_Adv = mkAdv "passing"; -- from DictEng -lin passing_N = mkN "passing" ; -- from DictEng -lin passing_out_A = compoundA (mkA "passing - out"); -- from DictEng -lin passion_N = mkN "passion" "passions"; -- from DictEng -lin passion_flower_N = mkN "passion - flower" "passion - flowers"; -- from DictEng -lin passionate_A = compoundA (mkA "passionate"); -- from DictEng -lin passionately_Adv = mkAdv "passionately" ; -lin passionflower_N = mkN "passionflower" ; -lin passionless_A = compoundA (mkA "passionless"); -- from DictEng -lin passive_A = compoundA (mkA "passive"); -- from DictEng -lin passive_N = mkN "passive" "passives"; -- from DictEng -lin passively_Adv = mkAdv "passively" ; -lin passiveness_N = mkN "passiveness" ; -- from DictEng -lin passivity_N = mkN "passivity" ; -- from DictEng -lin passkey_N = mkN "passkey" "passkeys"; -- from DictEng -lin passover_N = mkN "passover" "passovers"; -- from DictEng -lin passport_N = mkN "passport" "passports"; -- from DictEng -lin password_N = mkN "password" "passwords"; -- from DictEng -lin past_A = compoundA (mkA "past"); -- from DictEng -lin past_Adv = mkAdv "past"; -- from DictEng -lin past_N = mkN "past" "pasts"; -- from DictEng -lin past_Prep = mkPrep "past"; -- from DictEng -lin pasta_N = mkN "pasta" ; -- from DictEng -lin paste_N = mkN "paste" "pastes"; -- from DictEng -lin paste_V2 = mkV2 (mkV "paste" "pastes" "pasted" "pasted" "pasting"); -- from DictEng -lin paste_up_N = mkN "paste - up" "paste - ups"; -- from DictEng -lin paste_up_N = mkN "paste - up" "paste - ups"; -- from DictEng -lin pasteboard_N = mkN "pasteboard" ; -- from DictEng -lin pastel_A = mkA "pastel" ; -lin pastel_N = mkN "pastel" "pastels"; -- from DictEng -lin pastel_colored_A = compoundA (mkA "pastel colored") ; -lin paster_N = mkN "paster" ; -lin pastern_N = mkN "pastern" "pasterns"; -- from DictEng -lin pasteurization_N = mkN "pasteurization" ; -- from DictEng -lin pasteurize_V2 = mkV2 (mkV "pasteurize" "pasteurizes" "pasteurized" "pasteurized" "pasteurizing"); -- from DictEng -lin pasteurized_A = mkA "pasteurized" ; -lin pastiche_N = mkN "pastiche" "pastiches"; -- from DictEng -lin pastille_N = mkN "pastille" "pastilles"; -- from DictEng -lin pastime_N = mkN "pastime" "pastimes"; -- from DictEng -lin pasting_N = mkN "pasting" "pastings"; -- from DictEng -lin pastis_N = mkN "pastis" ; -lin pastness_N = mkN "pastness" ; -lin pastor_N = mkN "pastor" "pastors"; -- from DictEng -lin pastoral_A = compoundA (mkA "pastoral"); -- from DictEng -lin pastoral_N = mkN "pastoral" "pastorals"; -- from DictEng -lin pastorale_N = mkN "pastorale" ; -lin pastorate_N = mkN "pastorate" "pastorates"; -- from DictEng -lin pastorship_N = mkN "pastorship" ; -lin pastrami_N = mkN "pastrami" ; -lin pastry_N = mkN "pastry" "pastries"; -- from DictEng -lin pastry_cook_N = mkN "pastry - cook" "pastry - cooks"; -- from DictEng -lin pasturage_N = mkN "pasturage" ; -- from DictEng -lin pasture_N = mkN "pasture" "pastures"; -- from DictEng -lin pasture_V = mkV "pasture" "pastures" "pastured" "pastured" "pasturing"; -- from DictEng -lin pasture_V2 = mkV2 (mkV "pasture" "pastures" "pastured" "pastured" "pasturing"); -- from DictEng -lin pasty_A = mkA "pasty" "pastier"; -- from DictEng -lin pasty_N = mkN "pasty" "pasties"; -- from DictEng -lin pat_A = mkA "pat" ; -lin pat_Adv = mkAdv "pat"; -- from DictEng -lin pat_N = mkN "pat" "pats"; -- from DictEng -lin pat_V = mkV "pat" "pats" "patted" "patted" "patting"; -- from DictEng -lin pat_V2 = mkV2 (mkV "pat" "pats" "patted" "patted" "patting"); -- from DictEng -lin pataca_N = mkN "pataca" ; -lin patas_N = mkN "patas" ; -lin patch_N = mkN "patch" "patches"; -- from DictEng -lin patch_V2 = mkV2 (mkV "patch" "patches" "patched" "patched" "patching"); -- from DictEng -lin patch_pocket_N = mkN "patch - pocket" "patch - pockets"; -- from DictEng -lin patchcord_N = mkN "patchcord" ; -lin patched_A = mkA "patched" ; -lin patchily_Adv = mkAdv "patchily"; -- from DictEng -lin patchiness_N = mkN "patchiness" ; -- from DictEng -lin patching_N = mkN "patching" ; -lin patchouli_N = mkN "patchouli" ; -- from DictEng -lin patchwork_N = mkN "patchwork" ; -- from DictEng -lin patchy_A = mkA "patchy" "patchier"; -- from DictEng -lin pate_N = mkN "pate" ; -lin pate_1_N = mkN "pate" "pates"; -- from DictEng -lin pate_2_N = mkN "pâté" "pâtés"; -- from DictEng -lin pate_de_foie_gras_N = mkN "pate de foie gras" ; -- from DictEng -lin patella_N = mkN "patella" "patellas"; -- from DictEng -lin patellar_A = mkA "patellar" ; -lin patency_N = mkN "patency" ; -lin patent_A = compoundA (mkA "patent"); -- from DictEng -lin patent_N = mkN "patent" "patents"; -- from DictEng -lin patent_V2 = mkV2 (mkV "patent" "patents" "patented" "patented" "patenting"); -- from DictEng -lin patented_A = mkA "patented" ; -lin patentee_N = mkN "patentee" "patentees"; -- from DictEng -lin pater_N = mkN "pater" ; -lin paterfamilias_N = mkN "paterfamilias" "IRREG"; -- from DictEng -lin paternal_A = compoundA (mkA "paternal"); -- from DictEng -lin paternalism_N = mkN "paternalism" ; -- from DictEng -lin paternalistic_A = mkA "paternalistic" ; -lin paternally_Adv = mkAdv "paternally" ; -lin paternity_N = mkN "paternity" ; -- from DictEng -lin paternoster_N = mkN "paternoster" "paternosters"; -- from DictEng -lin path_N = mkN "path" "paths"; -- from DictEng -lin path_finder_N = mkN "path - finder" "path - finders"; -- from DictEng -lin pathetic_A = compoundA (mkA "pathetic"); -- from DictEng -lin pathetically_Adv = mkAdv "pathetically"; -- from DictEng -lin pathless_A = compoundA (mkA "pathless"); -- from DictEng -lin pathogen_N = mkN "pathogen" "pathogens"; -- from DictEng -lin pathogenesis_N = mkN "pathogenesis" ; -lin pathogenically_Adv = mkAdv "pathogenically" ; -lin pathological_A = compoundA (mkA "pathological"); -- from DictEng -lin pathologically_Adv = mkAdv "pathologically" ; -lin pathologist_N = mkN "pathologist" "pathologists"; -- from DictEng -lin pathology_N = mkN "pathology" ; -- from DictEng -lin pathos_N = mkN "pathos" ; -- from DictEng -lin pathway_N = mkN "pathway" "pathways"; -- from DictEng -lin patience_N = mkN "patience" ; -- from DictEng -lin patient_A = compoundA (mkA "patient"); -- from DictEng -lin patient_N = mkN "patient" "patients"; -- from DictEng -lin patiently_Adv = mkAdv "patiently" ; -lin patina_N = mkN "patina" "patinas"; -- from DictEng -lin patio_N = mkN "patio" "patios"; -- from DictEng -lin patisserie_N = mkN "patisserie" "patisseries"; -- from DictEng -lin patka_N = mkN "patka" ; -lin patois_N = mkN "patois" "patoes" {- FIXME: guessed plural form -}; -- from DictEng -lin patrial_N = mkN "patrial" "patrials"; -- from DictEng -lin patriarch_N = mkN "patriarch" "patriarchs"; -- from DictEng -lin patriarchal_A = compoundA (mkA "patriarchal"); -- from DictEng -lin patriarchate_N = mkN "patriarchate" "patriarchates"; -- from DictEng -lin patriarchic_A = mkA "patriarchic" ; -lin patriarchy_N = mkN "patriarchy" "patriarchies"; -- from DictEng -lin patricentric_A = mkA "patricentric" ; -lin patrician_A = compoundA (mkA "patrician"); -- from DictEng -lin patrician_N = mkN "patrician" "patricians"; -- from DictEng -lin patricide_N = mkN "patricide" "patricides"; -- from DictEng -lin patrilineage_N = mkN "patrilineage" ; -lin patrilineal_A = mkA "patrilineal" ; -lin patrilineally_Adv = mkAdv "patrilineally" ; -lin patrimonial_A = compoundA (mkA "patrimonial"); -- from DictEng -lin patrimony_N = mkN "patrimony" "patrimonies"; -- from DictEng -lin patriot_N = mkN "patriot" "patriots"; -- from DictEng -lin patriotic_A = compoundA (mkA "patriotic"); -- from DictEng -lin patriotically_Adv = mkAdv "patriotically"; -- from DictEng -lin patriotism_N = mkN "patriotism" ; -- from DictEng -lin patristic_A = mkA "patristic" ; -lin patristics_N = mkN "patristics" ; -lin patrol_N = mkN "patrol" "patrols"; -- from DictEng -lin patrol_V = mkV "patrol" "patrols" "patrolled" "patrolled" "patrolling"; -- from DictEng -lin patrol_V2 = mkV2 (mkV "patrol" "patrols" "patrolled" "patrolled" "patrolling"); -- from DictEng -lin patroller_N = mkN "patroller" ; -lin patrolman_N = mkN "patrolman" "patrolmen" {- FIXME: guessed plural form -}; -- from DictEng -lin patron_N = mkN "patron" "patrons"; -- from DictEng -lin patronage_N = mkN "patronage" ; -- from DictEng -lin patroness_N = mkN "patroness" "patronesses"; -- from DictEng -lin patronize_V2 = mkV2 (mkV "patronize" "patronizes" "patronized" "patronized" "patronizing"); -- from DictEng -lin patronized_A = mkA "patronized" ; -lin patronizing_A = compoundA (mkA "patronizing"); -- from DictEng -lin patronymic_A = compoundA (mkA "patronymic"); -- from DictEng -lin patronymic_N = mkN "patronymic" "patronymics"; -- from DictEng -lin patten_N = mkN "patten" "pattens"; -- from DictEng -lin patter_N = mkN "patter" ; -- from DictEng -lin patter_V = mkV "patter" "patters" "pattered" "pattered" "pattering"; -- from DictEng -lin patter_V2 = mkV2 (mkV "patter" "patters" "pattered" "pattered" "pattering"); -- from DictEng -lin pattern_N = mkN "pattern" "patterns"; -- from DictEng -lin pattern_V2 = mkV2 (mkV "pattern" "patterns" "patterned" "patterned" "patterning"); -- from DictEng -lin patterned_A = mkA "patterned" ; -lin patternmaker_N = mkN "patternmaker" ; -lin patty_N = mkN "patty" "patties"; -- from DictEng -lin patty_pan_N = mkN "patty - pan" "patty - pans"; -- from DictEng -lin patty_pan_N = mkN "patty - pan" "patty - pans"; -- from DictEng -lin patzer_N = mkN "patzer" ; -lin paucity_N = mkN "paucity" ; -- from DictEng -lin paunch_N = mkN "paunch" "paunches"; -- from DictEng -lin paunchiness_N = mkN "paunchiness" ; -- from DictEng -lin paunchy_A = mkA "paunchy" "paunchier"; -- from DictEng -lin pauper_N = mkN "pauper" "paupers"; -- from DictEng -lin pauper_V2 = mkV2 (mkV "pauper") ; -lin pauperism_N = mkN "pauperism" ; -- from DictEng -lin pauperization_N = mkN "pauperization" ; -- from DictEng -lin pauperize_V2 = mkV2 (mkV "pauperize" "pauperizes" "pauperized" "pauperized" "pauperizing"); -- from DictEng -lin pause_N = mkN "pause" "pauses"; -- from DictEng -lin pause_V = mkV "pause" "pauses" "paused" "paused" "pausing"; -- from DictEng -lin pause_V2V = mkV2V (mkV "pause" "pauses" "paused" "paused" "pausing") noPrep to_Prep ; -- from DictEng -lin pause_VS = mkVS (mkV "pause" "pauses" "paused" "paused" "pausing"); -- from DictEng -lin pavage_N = mkN "pavage" ; -lin pavane_N = mkN "pavane" ; -lin pave_N = mkN "pave" ; -lin pave_V2 = mkV2 (mkV "pave" "paves" "paved" "paved" "paving"); -- from DictEng -lin paved_A = mkA "paved" ; -lin pavement_N = mkN "pavement" "pavements"; -- from DictEng -lin pavilion_N = mkN "pavilion" "pavilions"; -- from DictEng -lin paving_N = mkN "paving" ; -lin paving_stone_N = mkN "paving - stone" "paving - stones"; -- from DictEng -lin pavior_N = mkN "pavior" ; -lin pavis_N = mkN "pavis" ; -lin pavlova_N = mkN "pavlova" ; -lin pavonia_N = mkN "pavonia" ; -lin paw_N = mkN "paw" "paws"; -- from DictEng -lin paw_V = mkV "paw"; -- from DictEng -lin paw_V2 = mkV2 (mkV "paw" "paws" "pawed" "pawed" "pawing"); -- from DictEng -lin pawer_N = mkN "pawer" ; -lin pawky_A = compoundA (mkA "pawky"); -- from DictEng -lin pawl_N = mkN "pawl" "pawls"; -- from DictEng -lin pawn_N = mkN "pawn" "pawns"; -- from DictEng -lin pawn_V2 = mkV2 (mkV "pawn" "pawns" "pawned" "pawned" "pawning"); -- from DictEng -lin pawn_ticket_N = mkN "pawn - ticket" "pawn - tickets"; -- from DictEng -lin pawnbroker_N = mkN "pawnbroker" "pawnbrokers"; -- from DictEng -lin pawnshop_N = mkN "pawnshop" "pawnshops"; -- from DictEng -lin pawpaw_N = mkN "pawpaw" "pawpaws"; -- from DictEng -lin pax_N = mkN "pax" "paxes"; -- from DictEng -lin pax_romana_N = mkN "pax romana" "pax romanae" {- FIXME: guessed plural form -}; -- from DictEng -lin pay_N = mkN "pay" ; -- from DictEng -lin pay_V = IrregEng.pay_V; -- from DictEng -lin pay_V2 = mkV2 (IrregEng.pay_V); -- from DictEng -lin pay_V2V = mkV2V (IrregEng.pay_V) noPrep to_Prep ; -- from DictEng -lin pay_VS = mkVS (IrregEng.pay_V); -- from DictEng -lin pay_phone_N = mkN "pay phone" ; -lin pay_as_you_earn_N = mkN "pay - as - you - earn" ; -- from DictEng -lin pay_claim_N = mkN "pay - claim" "pay - claims"; -- from DictEng -lin pay_packet_N = mkN "pay - packet" "pay - packets"; -- from DictEng -lin pay_station_N = mkN "pay - station" "pay - stations"; -- from DictEng -lin payable_A = compoundA (mkA "payable"); -- from DictEng -lin payables_N = mkN "payables" ; -lin payback_N = mkN "payback" ; -lin paycheck_N = mkN "paycheck" ; -lin payday_N = mkN "payday" "paydays"; -- from DictEng -lin paydirt_N = mkN "paydirt" ; -- from DictEng -lin payee_N = mkN "payee" "payees"; -- from DictEng -lin payer_N = mkN "payer" "payers"; -- from DictEng -lin payload_N = mkN "payload" "payloads"; -- from DictEng -lin paymaster_N = mkN "paymaster" "paymasters"; -- from DictEng -lin payment_N = mkN "payment" "payments"; -- from DictEng -lin paynim_N = mkN "paynim" "paynims"; -- from DictEng -lin payoff_N = mkN "payoff" "payoffs"; -- from DictEng -lin payola_N = mkN "payola" ; -lin payphone_N = mkN "payphone" "payphones"; -- from DictEng -lin payroll_N = mkN "payroll" "payrolls"; -- from DictEng -lin paysheet_N = mkN "paysheet" "paysheets"; -- from DictEng -lin payslip_N = mkN "payslip" "payslips"; -- from DictEng -lin pdsa_N = mkN "pdsa" ; -- from DictEng -lin pe_N = mkN "pe" ; -- from DictEng -lin pea_N = mkN "pea" "peas"; -- from DictEng -lin pea_green_A = compoundA (mkA "pea - green"); -- from DictEng -lin pea_chick_N = mkN "pea - chick" "pea - chicks"; -- from DictEng -lin pea_flour_N = mkN "pea - flour" ; -- from DictEng -lin pea_green_A = compoundA (mkA "pea - green"); -- from DictEng -lin pea_green_N = mkN "pea - green" "pea - greens"; -- from DictEng -lin pea_jacket_N = mkN "pea - jacket" "pea - jackets"; -- from DictEng -lin pea_soup_N = mkN "pea - soup" "pea - soups"; -- from DictEng -lin peace_N = mkN "peace" ; -- from DictEng -lin peace_offering_N = mkN "peace - offering" "peace - offerings"; -- from DictEng -lin peaceable_A = compoundA (mkA "peaceable"); -- from DictEng -lin peaceableness_N = mkN "peaceableness" ; -lin peaceably_Adv = mkAdv "peaceably" ; -lin peaceful_A = compoundA (mkA "peaceful"); -- from DictEng -lin peacefully_Adv = mkAdv "peacefully" ; -lin peacefulness_N = mkN "peacefulness" ; -- from DictEng -lin peacekeeper_N = mkN "peacekeeper" ; -lin peacekeeping_A = mkA "peacekeeping" ; -lin peacekeeping_N = mkN "peacekeeping" ; -lin peacemaker_N = mkN "peacemaker" "peacemakers"; -- from DictEng -lin peacetime_N = mkN "peacetime" ; -- from DictEng -lin peach_N = mkN "peach" "peaches"; -- from DictEng -lin peach_V = mkV "peach" "peaches" "peached" "peached" "peaching"; -- from DictEng -lin peach_V2 = mkV2 (mkV "peach" "peaches" "peached" "peached" "peaching"); -- from DictEng -lin peach_colored_A = compoundA (mkA "peach colored") ; -lin peachick_N = mkN "peachick" ; -lin peachy_A = mkA "peachy" ; -lin peacock_N = mkN "peacock" "peacocks"; -- from DictEng -lin peacock_blue_A = compoundA (mkA "peacock - blue"); -- from DictEng -lin peacock_throne_N = mkN "peacock throne" ; -lin peacock_blue_A = compoundA (mkA "peacock - blue"); -- from DictEng -lin peacock_blue_N = mkN "peacock - blue" "peacock - blues"; -- from DictEng -lin peafowl_N = mkN "peafowl" "peafowls"; -- from DictEng -lin peahen_N = mkN "peahen" "peahens"; -- from DictEng -lin peak_N = mkN "peak" "peaks"; -- from DictEng -lin peak_V = mkV "peak" "peaks" "peaked" "peaked" "peaking"; -- from DictEng -lin peak_V2 = mkV2 (mkV "peak" "peaks" "peaked" "peaked" "peaking"); -- from DictEng -lin peaked_A = compoundA (mkA "peaked"); -- from DictEng -lin peaky_A = mkA "peaky" "peakier"; -- from DictEng -lin peal_N = mkN "peal" "peals"; -- from DictEng -lin peal_V = mkV "peal" "peals" "pealed" "pealed" "pealing"; -- from DictEng -lin peal_V2 = mkV2 (mkV "peal" "peals" "pealed" "pealed" "pealing"); -- from DictEng -lin peanut_N = mkN "peanut" "peanuts"; -- from DictEng -lin peanuts_N = mkN "peanuts" ; -lin pear_N = mkN "pear" "pears"; -- from DictEng -lin pear_shaped_A = compoundA (mkA "pear shaped") ; -lin pearl_N = mkN "pearl" "pearls"; -- from DictEng -lin pearl_V = mkV "pearl" "pearls" "pearled" "pearled" "pearling"; -- from DictEng -lin pearl_barley_N = mkN "pearl - barley" ; -- from DictEng -lin pearl_diver_N = mkN "pearl - diver" "pearl - divers"; -- from DictEng -lin pearl_fishery_N = mkN "pearl - fishery" "pearl - fisheries"; -- from DictEng -lin pearl_grey_A = compoundA (mkA "pearl grey") ; -lin pearl_oyster_N = mkN "pearl - oyster" "pearl - oysters"; -- from DictEng -lin pearl_sago_N = mkN "pearl - sago" ; -- from DictEng -lin pearlfish_N = mkN "pearlfish" ; -lin pearlite_N = mkN "pearlite" ; -lin pearlwort_N = mkN "pearlwort" ; -lin pearly_A = mkA "pearly" "pearlier"; -- from DictEng -lin pearmain_N = mkN "pearmain" "pearmains"; -- from DictEng -lin peasant_N = mkN "peasant" "peasants"; -- from DictEng -lin peasanthood_N = mkN "peasanthood" ; -lin peasantry_N = mkN "peasantry" "peasantries"; -- from DictEng -lin pease_N = mkN "pease" ; -- from DictEng -lin pease_pudding_N = mkN "pease - pudding" "pease - puddings"; -- from DictEng -lin peashooter_N = mkN "peashooter" "peashooters"; -- from DictEng -lin peasouper_N = mkN "peasouper" "peasoupers"; -- from DictEng -lin peat_N = mkN "peat" ; -- from DictEng -lin peaty_A = mkA "peaty" "peatier"; -- from DictEng -lin peavey_N = mkN "peavey" ; -lin peba_N = mkN "peba" ; -lin pebble_N = mkN "pebble" "pebbles"; -- from DictEng -lin pebble_grained_A = compoundA (mkA "pebble grained") ; -lin pebbly_A = mkA "pebbly" "pebblier"; -- from DictEng -lin pebibit_N = mkN "pebibit" ; -lin pecan_N = mkN "pecan" "pecans"; -- from DictEng -lin peccable_A = compoundA (mkA "peccable"); -- from DictEng -lin peccadillo_N = mkN "peccadillo" "peccadillos"; -- from DictEng -lin peccary_N = mkN "peccary" "peccaries"; -- from DictEng -lin peck_N = mkN "peck" "pecks"; -- from DictEng -lin peck_V = mkV "peck" "pecks" "pecked" "pecked" "pecking"; -- from DictEng -lin peck_V2 = mkV2 (mkV "peck" "pecks" "pecked" "pecked" "pecking"); -- from DictEng -lin pecker_N = mkN "pecker" "peckers"; -- from DictEng -lin peckish_A = compoundA (mkA "peckish"); -- from DictEng -lin pecopteris_N = mkN "pecopteris" ; -lin pectic_A = compoundA (mkA "pectic"); -- from DictEng -lin pectin_N = mkN "pectin" ; -- from DictEng -lin pectinate_A = mkA "pectinate" ; -lin pectineal_A = mkA "pectineal" ; -lin pectoral_A = compoundA (mkA "pectoral"); -- from DictEng -lin pectoral_N = mkN "pectoral" ; -lin peculate_V = mkV "peculate" "peculates" "peculated" "peculated" "peculating"; -- from DictEng -lin peculate_V2 = mkV2 (mkV "peculate" "peculates" "peculated" "peculated" "peculating"); -- from DictEng -lin peculation_N = mkN "peculation" "peculations"; -- from DictEng -lin peculiar_A = compoundA (mkA "peculiar"); -- from DictEng -lin peculiarity_N = mkN "peculiarity" "peculiarities"; -- from DictEng -lin peculiarly_Adv = mkAdv "peculiarly" ; -lin pecuniary_A = compoundA (mkA "pecuniary"); -- from DictEng -lin pedagogic_A = compoundA (mkA "pedagogic"); -- from DictEng -lin pedagogical_A = compoundA (mkA "pedagogical"); -- from DictEng -lin pedagogue_N = mkN "pedagogue" "pedagogues"; -- from DictEng -lin pedagogy_N = mkN "pedagogy" ; -- from DictEng -lin pedal_A = compoundA (mkA "pedal"); -- from DictEng -lin pedal_N = mkN "pedal" "pedals"; -- from DictEng -lin pedal_V = mkV "pedal" "pedals" "pedalled" "pedalled" "pedalling"; -- from DictEng -lin pedal_V2 = mkV2 (mkV "pedal" "pedals" "pedalled" "pedalled" "pedalling"); -- from DictEng -lin pedaler_N = mkN "pedaler" ; -lin pedant_N = mkN "pedant" "pedants"; -- from DictEng -lin pedantic_A = compoundA (mkA "pedantic"); -- from DictEng -lin pedantically_Adv = mkAdv "pedantically"; -- from DictEng -lin pedantry_N = mkN "pedantry" "pedantries"; -- from DictEng -lin pedate_A = mkA "pedate" ; -lin peddle_V = mkV "peddle" "peddles" "peddled" "peddled" "peddling"; -- from DictEng -lin peddle_V2 = mkV2 (mkV "peddle" "peddles" "peddled" "peddled" "peddling"); -- from DictEng -lin peddler_N = mkN "peddler" "peddlers"; -- from DictEng -lin peddling_A = compoundA (mkA "peddling"); -- from DictEng -lin pederast_N = mkN "pederast" "pederasts"; -- from DictEng -lin pederastic_A = mkA "pederastic" ; -lin pederasty_N = mkN "pederasty" ; -- from DictEng -lin pedestal_N = mkN "pedestal" "pedestals"; -- from DictEng -lin pedestrian_A = compoundA (mkA "pedestrian"); -- from DictEng -lin pedestrian_N = mkN "pedestrian" "pedestrians"; -- from DictEng -lin pediatric_A = mkA "pediatric" ; -lin pediatrician_N = mkN "pediatrician" "pediatricians"; -- from DictEng -lin pediatrics_N = mkN "pediatrics" "pediatrics"; -- from DictEng -lin pedicab_N = mkN "pedicab" "pedicabs"; -- from DictEng -lin pedicel_N = mkN "pedicel" ; -lin pediculicide_N = mkN "pediculicide" ; -lin pediculosis_N = mkN "pediculosis" ; -lin pedicure_N = mkN "pedicure" "pedicures"; -- from DictEng -lin pedigree_A = mkA "pedigree" ; -lin pedigree_N = mkN "pedigree" "pedigrees"; -- from DictEng -lin pediment_N = mkN "pediment" "pediments"; -- from DictEng -lin pedlar_N = mkN "pedlar" "pedlars"; -- from DictEng -lin pedodontist_N = mkN "pedodontist" ; -lin pedometer_N = mkN "pedometer" "pedometers"; -- from DictEng -lin pedophile_N = mkN "pedophile" ; -lin pedophilia_N = mkN "pedophilia" ; -lin peduncle_N = mkN "peduncle" ; -lin pedunculate_A = mkA "pedunculate" ; -lin pee_N = mkN "pee" "pees"; -- from DictEng -lin pee_V = mkV "pee" "pees" "peed" "peed" "peeing"; -- from DictEng -lin peeing_N = mkN "peeing" ; -lin peek_N = mkN "peek" "peeks"; -- from DictEng -lin peek_V = mkV "peek" "peeks" "peeked" "peeked" "peeking"; -- from DictEng -lin peek_a_boo_N = mkN "peek - a - boo" ; -- from DictEng -lin peekaboo_N = mkN "peekaboo" ; -lin peel_N = mkN "peel" ; -- from DictEng -lin peel_V = mkV "peel" "peels" "peeled" "peeled" "peeling"; -- from DictEng -lin peel_V2 = mkV2 (mkV "peel" "peels" "peeled" "peeled" "peeling"); -- from DictEng -lin peeler_N = mkN "peeler" "peelers"; -- from DictEng -lin peen_N = mkN "peen" ; -lin peep_N = mkN "peep" "peeps"; -- from DictEng -lin peep_V = mkV "peep" "peeps" "peeped" "peeped" "peeping"; -- from DictEng -lin peeper_N = mkN "peeper" "peepers"; -- from DictEng -lin peephole_N = mkN "peephole" "peepholes"; -- from DictEng -lin peepshow_N = mkN "peepshow" "peepshows"; -- from DictEng -lin peepul_N = mkN "peepul" "peepuls"; -- from DictEng -lin peer_N = mkN "peer" "peers"; -- from DictEng -lin peer_V = mkV "peer" "peers" "peered" "peered" "peering"; -- from DictEng -lin peerage_N = mkN "peerage" "peerages"; -- from DictEng -lin peeress_N = mkN "peeress" "peeresses"; -- from DictEng -lin peerless_A = compoundA (mkA "peerless"); -- from DictEng -lin peeve_N = mkN "peeve" ; -lin peeve_V2 = mkV2 (mkV "peeve" "peeves" "peeved" "peeved" "peeving"); -- from DictEng -lin peeved_A = compoundA (mkA "peeved"); -- from DictEng -lin peevish_A = compoundA (mkA "peevish"); -- from DictEng -lin peevishly_Adv = mkAdv "peevishly" ; -lin peevishness_N = mkN "peevishness" ; -- from DictEng -lin peewit_N = mkN "peewit" "peewits"; -- from DictEng -lin peg_N = mkN "peg" "pegs"; -- from DictEng -lin peg_V = mkV "peg" "pegs" "pegged" "pegged" "pegging"; -- from DictEng -lin peg_V2 = mkV2 (mkV "peg" "pegs" "pegged" "pegged" "pegging"); -- from DictEng -lin pegboard_N = mkN "pegboard" ; -lin pegged_down_A = compoundA (mkA "pegged down") ; -lin pegmatite_N = mkN "pegmatite" ; -lin peignoir_N = mkN "peignoir" "peignoirs"; -- from DictEng -lin pejorative_A = compoundA (mkA "pejorative"); -- from DictEng -lin pejoratively_Adv = mkAdv "pejoratively" ; -lin peke_N = mkN "peke" "pekes"; -- from DictEng -lin pekinese_N = mkN "pekinese" "pekinese"; -- from DictEng -lin pekoe_N = mkN "pekoe" ; -- from DictEng -lin pelf_N = mkN "pelf" ; -- from DictEng -lin pelican_N = mkN "pelican" "pelicans"; -- from DictEng -lin pelisse_N = mkN "pelisse" "pelisses"; -- from DictEng -lin pell_mell_Adv = mkAdv "pell - mell"; -- from DictEng -lin pellagra_N = mkN "pellagra" ; -lin pellet_N = mkN "pellet" "pellets"; -- from DictEng -lin pellicle_N = mkN "pellicle" ; -lin pellitory_N = mkN "pellitory" ; -lin pellitory_of_the_wall_N = mkN "pellitory of the wall" ; -lin pellucid_A = compoundA (mkA "pellucid"); -- from DictEng -lin pellucidness_N = mkN "pellucidness" ; -lin pelmet_N = mkN "pelmet" "pelmets"; -- from DictEng -lin pelota_N = mkN "pelota" ; -- from DictEng -lin pelt_N = mkN "pelt" "pelts"; -- from DictEng -lin pelt_V = mkV "pelt" "pelts" "pelted" "pelted" "pelting"; -- from DictEng -lin pelt_V2 = mkV2 (mkV "pelt" "pelts" "pelted" "pelted" "pelting"); -- from DictEng -lin peltate_A = mkA "peltate" ; -lin pelter_N = mkN "pelter" ; -lin peludo_N = mkN "peludo" ; -lin pelvic_A = compoundA (mkA "pelvic"); -- from DictEng -lin pelvimeter_N = mkN "pelvimeter" ; -lin pelvimetry_N = mkN "pelvimetry" ; -lin pelvis_N = mkN "pelvis" "pelvises"; -- from DictEng -lin pelycosaur_N = mkN "pelycosaur" ; -lin pemmican_N = mkN "pemmican" ; -- from DictEng -lin pemphigous_A = mkA "pemphigous" ; -lin pemphigus_N = mkN "pemphigus" ; -lin pen_N = mkN "pen" "pens"; -- from DictEng -lin pen_V2 = mkV2 (mkV "pen" "pens" "penned" "penned" "penning"); -- from DictEng -lin pen_and_ink_N = mkN "pen - and - ink" ; -- from DictEng -lin pen_and_ink_N = mkN "pen - and - ink" ; -- from DictEng -lin pen_friend_N = mkN "pen - friend" "pen - friends"; -- from DictEng -lin pen_name_N = mkN "pen - name" "pen - names"; -- from DictEng -lin pen_pusher_N = mkN "pen - pusher" "pen - pushers"; -- from DictEng -lin penal_A = compoundA (mkA "penal"); -- from DictEng -lin penalization_N = mkN "penalization" "penalizations"; -- from DictEng -lin penalize_V2 = mkV2 (mkV "penalize" "penalizes" "penalized" "penalized" "penalizing"); -- from DictEng -lin penalty_N = mkN "penalty" "penalties"; -- from DictEng -lin penance_N = mkN "penance" ; -- from DictEng -lin penchant_N = mkN "penchant" "penchants"; -- from DictEng -lin pencil_N = mkN "pencil" "pencils"; -- from DictEng -lin pencil_V = mkV "pencil" ; -lin pencil_V2 = mkV2 (mkV "pencil" "pencils" "pencilled" "pencilled" "pencilling"); -- from DictEng -lin penciled_A = mkA "penciled" ; -lin pend_V = mkV "pend"; -- from DictEng -lin pend_V2 = mkV2 (mkV "pend"); -- from DictEng -lin pendant_N = mkN "pendant" "pendants"; -- from DictEng -lin pendent_A = compoundA (mkA "pendent"); -- from DictEng -lin pending_A = compoundA (mkA "pending"); -- from DictEng -lin pending_Prep = mkPrep "pending"; -- from DictEng -lin pendragon_N = mkN "pendragon" ; -lin pendulous_A = compoundA (mkA "pendulous"); -- from DictEng -lin pendulum_N = mkN "pendulum" "pendulums"; -- from DictEng -lin peneplain_N = mkN "peneplain" ; -lin penetrability_N = mkN "penetrability" ; -- from DictEng -lin penetrable_A = compoundA (mkA "penetrable"); -- from DictEng -lin penetralia_N = mkN "penetralia" ; -lin penetrate_V = mkV "penetrate" "penetrates" "penetrated" "penetrated" "penetrating"; -- from DictEng -lin penetrate_V2 = mkV2 (mkV "penetrate" "penetrates" "penetrated" "penetrated" "penetrating"); -- from DictEng -lin penetrating_A = compoundA (mkA "penetrating"); -- from DictEng -lin penetratingly_Adv = mkAdv "penetratingly" ; -lin penetration_N = mkN "penetration" "penetrations"; -- from DictEng -lin penetrative_A = compoundA (mkA "penetrative"); -- from DictEng -lin penetrator_N = mkN "penetrator" ; -lin pengo_N = mkN "pengo" ; -lin penguin_N = mkN "penguin" "penguins"; -- from DictEng -lin penicillamine_N = mkN "penicillamine" ; -lin penicillin_N = mkN "penicillin" ; -- from DictEng -lin penicillin_resistant_A = compoundA (mkA "penicillin resistant") ; -lin penicillin_f_PN = mkPN "penicillin F" ; -lin penicillin_g_PN = mkPN "penicillin G" ; -lin penicillin_o_PN = mkPN "penicillin O" ; -lin penicillin_v_PN = mkPN "penicillin V" ; -lin penicillin_v_potassium_PN = mkPN "penicillin V potassium" ; -lin penicillinase_N = mkN "penicillinase" ; -lin penile_A = mkA "penile" ; -lin peninsula_N = mkN "peninsula" "peninsulas"; -- from DictEng -lin peninsular_A = compoundA (mkA "peninsular"); -- from DictEng -lin penis_N = mkN "penis" "penises"; -- from DictEng -lin penitence_N = mkN "penitence" ; -- from DictEng -lin penitent_A = compoundA (mkA "penitent"); -- from DictEng -lin penitent_N = mkN "penitent" "penitents"; -- from DictEng -lin penitential_A = compoundA (mkA "penitential"); -- from DictEng -lin penitentiary_A = compoundA (mkA "penitentiary"); -- from DictEng -lin penitentiary_N = mkN "penitentiary" "penitentiaries"; -- from DictEng -lin penitently_Adv = mkAdv "penitently" ; -lin penknife_N = mkN "penknife" "penknives"; -- from DictEng -lin penlight_N = mkN "penlight" ; -lin penmanship_N = mkN "penmanship" ; -- from DictEng -lin penn'orth_N = mkN "penn'orth" "penn'orths"; -- from DictEng -lin pennant_N = mkN "pennant" "pennants"; -- from DictEng -lin pennate_A = mkA "pennate" ; -lin penne_N = mkN "penne" ; -lin penni_N = mkN "penni" ; -lin penniless_A = compoundA (mkA "penniless"); -- from DictEng -lin pennon_N = mkN "pennon"; -- from DictEng -lin pennoncel_N = mkN "pennoncel" ; -lin penny_N = mkN "penny" (variants {"pennies"; "pence"}); -- from DictEng -lin penny_wise_A = compoundA (mkA "penny wise") ; -lin pennycress_N = mkN "pennycress" ; -lin pennyroyal_N = mkN "pennyroyal" ; -lin pennyweight_N = mkN "pennyweight"; -- from DictEng -lin pennywhistle_N = mkN "pennywhistle" ; -lin pennyworth_N = mkN "pennyworth"; -- from DictEng -lin penologist_N = mkN "penologist" ; -lin penology_N = mkN "penology" ; -- from DictEng -lin penpusher_N = mkN "penpusher" ; -lin pension_N = mkN "pension"; -- from DictEng -lin pension_V2 = mkV2 (mkV "pension" "pensions" "pensioned" "pensioned" "pensioning"); -- from DictEng -lin pensionable_A = compoundA (mkA "pensionable"); -- from DictEng -lin pensioner_N = mkN "pensioner" "pensioners"; -- from DictEng -lin pensive_A = compoundA (mkA "pensive"); -- from DictEng -lin pensively_Adv = mkAdv "pensively" ; -lin pensiveness_N = mkN "pensiveness" ; -- from DictEng -lin penstock_N = mkN "penstock" "penstocks"; -- from DictEng -lin pent_A = mkA "pent" ; -lin pent_up_A = compoundA (mkA "pent - up"); -- from DictEng -lin pent_up_A = compoundA (mkA "pent - up"); -- from DictEng -lin pentacle_N = mkN "pentacle" ; -lin pentaerythritol_N = mkN "pentaerythritol" ; -lin pentagon_N = mkN "pentagon" "pentagons"; -- from DictEng -lin pentagonal_A = compoundA (mkA "pentagonal"); -- from DictEng -lin pentahedron_N = mkN "pentahedron" ; -lin pentail_N = mkN "pentail" ; -lin pentamerous_A = mkA "pentamerous" ; -lin pentameter_N = mkN "pentameter" "pentameters"; -- from DictEng -lin pentangular_A = mkA "pentangular" ; -lin pentasyllabic_A = mkA "pentasyllabic" ; -lin pentateuch_N = mkN "pentateuch" "pentateuchs"; -- from DictEng -lin pentathlete_N = mkN "pentathlete" ; -lin pentathlon_N = mkN "pentathlon" "pentathlons"; -- from DictEng -lin pentatonic_A = mkA "pentatonic" ; -lin pentavalent_A = mkA "pentavalent" ; -lin pentazocine_N = mkN "pentazocine" ; -lin pentecost_N = mkN "pentecost" ; -- from DictEng -lin pentecostal_A = compoundA (mkA "pentecostal"); -- from DictEng -lin pentecostalism_N = mkN "pentecostalism" ; -lin penthouse_N = mkN "penthouse" "penthouses"; -- from DictEng -lin pentimento_N = mkN "pentimento" ; -lin pentlandite_N = mkN "pentlandite" ; -lin pentode_N = mkN "pentode" ; -lin pentose_N = mkN "pentose" ; -lin pentoxide_N = mkN "pentoxide" ; -lin pentoxifylline_N = mkN "pentoxifylline" ; -lin pentylenetetrazol_N = mkN "pentylenetetrazol" ; -lin penuche_N = mkN "penuche" ; -lin penult_N = mkN "penult" ; -lin penultimate_A = compoundA (mkA "penultimate"); -- from DictEng -lin penultimate_N = mkN "penultimate" "penultimates"; -- from DictEng -lin penumbra_N = mkN "penumbra" "penumbras"; -- from DictEng -lin penumbral_A = mkA "penumbral" ; -lin penurious_A = compoundA (mkA "penurious"); -- from DictEng -lin penuriously_Adv = mkAdv "penuriously" ; -lin penuriousness_N = mkN "penuriousness" ; -- from DictEng -lin penury_N = mkN "penury" ; -- from DictEng -lin peon_N = mkN "peon" "peons"; -- from DictEng -lin peonage_N = mkN "peonage" ; -- from DictEng -lin peony_N = mkN "peony" "peonies"; -- from DictEng -lin people_N = mkN "people" (variants {"people"; "peoples"}); -- from DictEng -lin people_V2 = mkV2 (mkV "people" "peoples" "peopled" "peopled" "peopling"); -- from DictEng -lin peopled_A = mkA "peopled" ; -lin peoples_N = mkN "peoples" ; -lin pep_N = mkN "pep" ; -- from DictEng -lin pep_V2 = mkV2 (mkV "pep" "peps" "pepped" "pepped" "pepping"); -- from DictEng -lin peperomia_N = mkN "peperomia" ; -lin peplos_N = mkN "peplos" ; -lin peplum_N = mkN "peplum" ; -lin pepper_N = mkN "pepper" "peppers"; -- from DictEng -lin pepper_V2 = mkV2 (mkV "pepper" "peppers" "peppered" "peppered" "peppering"); -- from DictEng -lin pepper_and_salt_N = mkN "pepper - and - salt" ; -- from DictEng -lin pepper_and_salt_N = mkN "pepper - and - salt" ; -- from DictEng -lin pepper_mill_N = mkN "pepper - mill" "pepper - mills"; -- from DictEng -lin pepper_pot_N = mkN "pepper - pot" "pepper - pots"; -- from DictEng -lin peppercorn_N = mkN "peppercorn" "peppercorns"; -- from DictEng -lin peppermint_N = mkN "peppermint" "peppermints"; -- from DictEng -lin pepperoni_N = mkN "pepperoni" ; -lin peppery_A = compoundA (mkA "peppery"); -- from DictEng -lin pepsin_N = mkN "pepsin" ; -- from DictEng -lin pepsinogen_N = mkN "pepsinogen" ; -lin peptic_A = compoundA (mkA "peptic"); -- from DictEng -lin peptide_N = mkN "peptide" ; -lin peptization_N = mkN "peptization" ; -lin peptone_N = mkN "peptone" ; -lin per_Prep = mkPrep "per"; -- from DictEng -lin per_annum_Adv = mkAdv "per annum" ; -lin per_capita_A = compoundA (mkA "per capita") ; -lin per_capita_Adv = mkAdv "per capita" ; -lin per_diem_Adv = mkAdv "per diem" ; -lin peradventure_Adv = mkAdv "peradventure"; -- from DictEng -lin peradventure_N = mkN "peradventure" ; -lin perambulate_V = mkV "perambulate" "perambulates" "perambulated" "perambulated" "perambulating"; -- from DictEng -lin perambulate_V2 = mkV2 (mkV "perambulate" "perambulates" "perambulated" "perambulated" "perambulating"); -- from DictEng -lin perambulating_A = mkA "perambulating" ; -lin perambulation_N = mkN "perambulation" "perambulations"; -- from DictEng -lin perambulator_N = mkN "perambulator" "perambulators"; -- from DictEng -lin percale_N = mkN "percale" ; -lin perceivable_A = compoundA (mkA "perceivable"); -- from DictEng -lin perceive_V2 = mkV2 (mkV "perceive" "perceives" "perceived" "perceived" "perceiving"); -- from DictEng -lin perceive_V2V = mkV2V (mkV "perceive") noPrep to_Prep ; -- from DictEng -lin perceive_VS = mkVS (mkV "perceive"); -- from DictEng -lin perceived_A = mkA "perceived" ; -lin perceiver_N = mkN "perceiver" "perceivers"; -- from DictEng -lin percent_N = mkN "percent" "percent"; -- from DictEng -lin percentage_N = mkN "percentage" "percentages"; -- from DictEng -lin percentile_N = mkN "percentile" ; -lin percept_N = mkN "percept" ; -lin perceptibility_N = mkN "perceptibility" ; -- from DictEng -lin perceptible_A = compoundA (mkA "perceptible"); -- from DictEng -lin perceptibly_Adv = mkAdv "perceptibly" ; -lin perception_N = mkN "perception" "perceptions"; -- from DictEng -lin perceptive_A = compoundA (mkA "perceptive"); -- from DictEng -lin perceptively_Adv = mkAdv "perceptively" ; -lin perceptiveness_N = mkN "perceptiveness" ; -lin perceptual_A = compoundA (mkA "perceptual"); -- from DictEng -lin perceptually_Adv = mkAdv "perceptually" ; -lin perch_N = mkN "perch" "perch"; -- from DictEng -lin perch_V = mkV "perch" "perches" "perched" "perched" "perching"; -- from DictEng -lin perch_V2 = mkV2 (mkV "perch" "perches" "perched" "perched" "perching"); -- from DictEng -lin perchance_Adv = mkAdv "perchance"; -- from DictEng -lin percher_N = mkN "percher" ; -lin perchlorate_N = mkN "perchlorate" ; -lin perchloride_N = mkN "perchloride" ; -lin percipient_A = compoundA (mkA "percipient"); -- from DictEng -lin percolate_N = mkN "percolate" ; -lin percolate_V = mkV "percolate" "percolates" "percolated" "percolated" "percolating"; -- from DictEng -lin percolate_V2 = mkV2 (mkV "percolate" "percolates" "percolated" "percolated" "percolating"); -- from DictEng -lin percolation_N = mkN "percolation" ; -lin percolator_N = mkN "percolator" "percolators"; -- from DictEng -lin percussion_N = mkN "percussion" "percussions"; -- from DictEng -lin percussionist_N = mkN "percussionist" "percussionists"; -- from DictEng -lin percussive_A = mkA "percussive" ; -lin perdition_N = mkN "perdition" ; -- from DictEng -lin perdurability_N = mkN "perdurability" ; -lin peregrination_N = mkN "peregrination" "peregrinations"; -- from DictEng -lin peregrine_N = mkN "peregrine" ; -lin peremptory_A = compoundA (mkA "peremptory"); -- from DictEng -lin perennation_N = mkN "perennation" ; -lin perennial_A = compoundA (mkA "perennial"); -- from DictEng -lin perennial_N = mkN "perennial" "perennials"; -- from DictEng -lin perennially_Adv = mkAdv "perennially" ; -lin perestroika_N = mkN "perestroika" ; -lin perfect_A = compoundA (mkA "perfect"); -- from DictEng -lin perfect_V2 = mkV2 (mkV "perfect" "perfects" "perfected" "perfected" "perfecting"); -- from DictEng -lin perfected_A = mkA "perfected" ; -lin perfecter_N = mkN "perfecter" ; -lin perfectibility_N = mkN "perfectibility" ; -- from DictEng -lin perfectible_A = compoundA (mkA "perfectible"); -- from DictEng -lin perfection_N = mkN "perfection" ; -- from DictEng -lin perfectionism_N = mkN "perfectionism" ; -lin perfectionist_N = mkN "perfectionist" "perfectionists"; -- from DictEng -lin perfective_N = mkN "perfective" ; -lin perfectly_Adv = mkAdv "perfectly" ; -lin perfervid_A = compoundA (mkA "perfervid"); -- from DictEng -lin perfidious_A = compoundA (mkA "perfidious"); -- from DictEng -lin perfidiously_Adv = mkAdv "perfidiously" ; -lin perfidiousness_N = mkN "perfidiousness" ; -- from DictEng -lin perfidy_N = mkN "perfidy" "perfidies"; -- from DictEng -lin perfluorocarbon_N = mkN "perfluorocarbon" ; -lin perfoliate_A = mkA "perfoliate" ; -lin perforate_V2 = mkV2 (mkV "perforate" "perforates" "perforated" "perforated" "perforating"); -- from DictEng -lin perforated_A = mkA "perforated" ; -lin perforation_N = mkN "perforation" "perforations"; -- from DictEng -lin perforce_Adv = mkAdv "perforce"; -- from DictEng -lin perform_V = mkV "perform" "performs" "performed" "performed" "performing"; -- from DictEng -lin perform_V2 = mkV2 (mkV "perform" "performs" "performed" "performed" "performing"); -- from DictEng -lin performance_N = mkN "performance" "performances"; -- from DictEng -lin performer_N = mkN "performer" "performers"; -- from DictEng -lin perfume_N = mkN "perfume" "perfumes"; -- from DictEng -lin perfume_V2 = mkV2 (mkV "perfume" "perfumes" "perfumed" "perfumed" "perfuming"); -- from DictEng -lin perfumed_A = mkA "perfumed" ; -lin perfumer_N = mkN "perfumer" "perfumers"; -- from DictEng -lin perfumery_N = mkN "perfumery" ; -lin perfunctorily_Adv = mkAdv "perfunctorily" ; -lin perfunctory_A = compoundA (mkA "perfunctory"); -- from DictEng -lin perfusion_N = mkN "perfusion" ; -lin pergola_N = mkN "pergola" "pergolas"; -- from DictEng -lin perhaps_Adv = mkAdv "perhaps"; -- from DictEng -lin peri_N = mkN "peri" "peris"; -- from DictEng -lin perianal_A = mkA "perianal" ; -lin perianth_N = mkN "perianth" ; -lin periapsis_N = mkN "periapsis" ; -lin periarteritis_N = mkN "periarteritis" ; -lin pericardial_A = mkA "pericardial" ; -lin pericarditis_N = mkN "pericarditis" ; -lin pericardium_N = mkN "pericardium" ; -lin pericarp_N = mkN "pericarp" ; -lin pericementoclasia_N = mkN "pericementoclasia" ; -lin periclase_N = mkN "periclase" ; -lin peridinian_N = mkN "peridinian" ; -lin peridium_N = mkN "peridium" ; -lin peridot_N = mkN "peridot" ; -lin peridotite_N = mkN "peridotite" ; -lin perigee_N = mkN "perigee" "perigees"; -- from DictEng -lin perigon_N = mkN "perigon" ; -lin perigonal_A = mkA "perigonal" ; -lin perihelion_N = mkN "perihelion" "perihelions"; -- from DictEng -lin perijove_N = mkN "perijove" ; -lin peril_N = mkN "peril" "perils"; -- from DictEng -lin peril_V2 = mkV2 (mkV "peril" "perils" "perilled" "perilled" "perilling"); -- from DictEng -lin perilous_A = compoundA (mkA "perilous"); -- from DictEng -lin perilously_Adv = mkAdv "perilously" ; -lin perilymph_N = mkN "perilymph" ; -lin perimeter_N = mkN "perimeter" "perimeters"; -- from DictEng -lin perimysium_N = mkN "perimysium" ; -lin perinasal_A = mkA "perinasal" ; -lin perinatal_A = mkA "perinatal" ; -lin perinatologist_N = mkN "perinatologist" ; -lin perinatology_N = mkN "perinatology" ; -lin perineal_A = mkA "perineal" ; -lin perineotomy_N = mkN "perineotomy" ; -lin perineum_N = mkN "perineum" ; -lin perineurium_N = mkN "perineurium" ; -lin period_N = mkN "period" "periods"; -- from DictEng -lin periodic_A = compoundA (mkA "periodic"); -- from DictEng -lin periodical_A = compoundA (mkA "periodical"); -- from DictEng -lin periodical_N = mkN "periodical" "periodicals"; -- from DictEng -lin periodontic_A = mkA "periodontic" ; -lin periodontics_N = mkN "periodontics" ; -lin periodontist_N = mkN "periodontist" ; -lin periosteum_N = mkN "periosteum" ; -lin peripatetic_A = compoundA (mkA "peripatetic"); -- from DictEng -lin peripatetic_N = mkN "peripatetic" ; -lin peripeteia_N = mkN "peripeteia" ; -lin peripheral_A = compoundA (mkA "peripheral"); -- from DictEng -lin peripheral_N = mkN "peripheral" ; -lin peripherally_Adv = mkAdv "peripherally" ; -lin periphery_N = mkN "periphery" "peripheries"; -- from DictEng -lin periphrasis_N = mkN "periphrasis" "periphrases" {- FIXME: guessed plural form -}; -- from DictEng -lin periphrastic_A = compoundA (mkA "periphrastic"); -- from DictEng -lin peripteral_A = mkA "peripteral" ; -lin periscope_N = mkN "periscope" "periscopes"; -- from DictEng -lin periselene_N = mkN "periselene" ; -lin perish_V = mkV "perish" "perishes" "perished" "perished" "perishing"; -- from DictEng -lin perish_V2 = mkV2 (mkV "perish" "perishes" "perished" "perished" "perishing"); -- from DictEng -lin perishability_N = mkN "perishability" ; -lin perishable_A = compoundA (mkA "perishable"); -- from DictEng -lin perishable_N = mkN "perishable" ; -lin perisher_N = mkN "perisher" "perishers"; -- from DictEng -lin perisperm_N = mkN "perisperm" ; -lin peristalsis_N = mkN "peristalsis" ; -lin peristome_N = mkN "peristome" ; -lin peristylar_A = mkA "peristylar" ; -lin peristyle_N = mkN "peristyle" "peristyles"; -- from DictEng -lin perithecium_N = mkN "perithecium" ; -lin perithelial_A = mkA "perithelial" ; -lin perithelium_N = mkN "perithelium" ; -lin peritoneal_A = mkA "peritoneal" ; -lin peritoneum_N = mkN "peritoneum" ; -lin peritonitis_N = mkN "peritonitis" ; -- from DictEng -lin peritrichous_A = mkA "peritrichous" ; -lin periwig_N = mkN "periwig" "periwigs"; -- from DictEng -lin periwinkle_N = mkN "periwinkle" "periwinkles"; -- from DictEng -lin perjure_V2 = mkV2 (mkV "perjure" "perjures" "perjured" "perjured" "perjuring"); -- from DictEng -lin perjurer_N = mkN "perjurer" "perjurers"; -- from DictEng -lin perjury_N = mkN "perjury" "perjuries"; -- from DictEng -lin perk_N = mkN "perk" "perks"; -- from DictEng -lin perk_V = mkV "perk" "perks" "perked" "perked" "perking"; -- from DictEng -lin perk_V2 = mkV2 (mkV "perk" "perks" "perked" "perked" "perking"); -- from DictEng -lin perked_up_A = compoundA (mkA "perked up") ; -lin perkily_Adv = mkAdv "perkily"; -- from DictEng -lin perkiness_N = mkN "perkiness" ; -- from DictEng -lin perky_A = mkA "perky" "perkier"; -- from DictEng -lin perm_N = mkN "perm" "perms"; -- from DictEng -lin perm_V2 = mkV2 (mkV "perm" "perms" "permed" "permed" "perming"); -- from DictEng -lin permafrost_N = mkN "permafrost" ; -- from DictEng -lin permanence_N = mkN "permanence" ; -- from DictEng -lin permanency_N = mkN "permanency" "permanencies"; -- from DictEng -lin permanent_A = compoundA (mkA "permanent"); -- from DictEng -lin permanently_Adv = mkAdv "permanently" ; -lin permanganate_N = mkN "permanganate" "permanganates"; -- from DictEng -lin permeability_N = mkN "permeability" ; -- from DictEng -lin permeable_A = compoundA (mkA "permeable"); -- from DictEng -lin permeant_A = mkA "permeant" ; -lin permeate_V = mkV "permeate" "permeates" "permeated" "permeated" "permeating"; -- from DictEng -lin permeate_V2 = mkV2 (mkV "permeate" "permeates" "permeated" "permeated" "permeating"); -- from DictEng -lin permeation_N = mkN "permeation" ; -- from DictEng -lin permed_A = mkA "permed" ; -lin permissibility_N = mkN "permissibility" ; -lin permissible_A = compoundA (mkA "permissible"); -- from DictEng -lin permissibly_Adv = mkAdv "permissibly" ; -lin permission_N = mkN "permission" ; -- from DictEng -lin permissive_A = compoundA (mkA "permissive"); -- from DictEng -lin permissively_Adv = mkAdv "permissively" ; -lin permissiveness_N = mkN "permissiveness" ; -- from DictEng -lin permit_N = mkN "permit" "permits"; -- from DictEng -lin permit_V = mkV "permit" "permits" "permitted" "permitted" "permitting"; -- from DictEng -lin permit_V2 = mkV2 (mkV "permit" "permits" "permitted" "permitted" "permitting"); -- from DictEng -lin permit_V2V = mkV2V (mkV "permit" "permits" "permitted" "permitted" "permitting") noPrep to_Prep ; -- from DictEng -lin permutability_N = mkN "permutability" ; -lin permutation_N = mkN "permutation" "permutations"; -- from DictEng -lin permute_V2 = mkV2 (mkV "permute" "permutes" "permuted" "permuted" "permuting"); -- from DictEng -lin pernicious_A = compoundA (mkA "pernicious"); -- from DictEng -lin perniciousness_N = mkN "perniciousness" ; -- from DictEng -lin pernickety_A = compoundA (mkA "pernickety"); -- from DictEng -lin peroneal_A = mkA "peroneal" ; -lin peroneus_N = mkN "peroneus" ; -lin peroration_N = mkN "peroration" "perorations"; -- from DictEng -lin peroxidase_N = mkN "peroxidase" ; -lin peroxide_N = mkN "peroxide" "peroxides"; -- from DictEng -lin perpendicular_A = compoundA (mkA "perpendicular"); -- from DictEng -lin perpendicular_N = mkN "perpendicular" "perpendiculars"; -- from DictEng -lin perpendicularity_N = mkN "perpendicularity" ; -lin perpendicularly_Adv = mkAdv "perpendicularly" ; -lin perpetrate_V2 = mkV2 (mkV "perpetrate" "perpetrates" "perpetrated" "perpetrated" "perpetrating"); -- from DictEng -lin perpetration_N = mkN "perpetration" "perpetrations"; -- from DictEng -lin perpetrator_N = mkN "perpetrator" "perpetrators"; -- from DictEng -lin perpetual_A = compoundA (mkA "perpetual"); -- from DictEng -lin perpetually_Adv = mkAdv "perpetually" ; -lin perpetuate_V2 = mkV2 (mkV "perpetuate" "perpetuates" "perpetuated" "perpetuated" "perpetuating"); -- from DictEng -lin perpetuation_N = mkN "perpetuation" "perpetuations"; -- from DictEng -lin perpetuity_N = mkN "perpetuity" "perpetuities"; -- from DictEng -lin perphenazine_N = mkN "perphenazine" ; -lin perplex_V2 = mkV2 (mkV "perplex" "perplexes" "perplexed" "perplexed" "perplexing"); -- from DictEng -lin perplexed_A = compoundA (mkA "perplexed"); -- from DictEng -lin perplexedly_Adv = mkAdv "perplexedly" ; -lin perplexity_N = mkN "perplexity" "perplexities"; -- from DictEng -lin perquisite_N = mkN "perquisite" "perquisites"; -- from DictEng -lin perry_N = mkN "perry" ; -- from DictEng -lin persecute_V2 = mkV2 (mkV "persecute" "persecutes" "persecuted" "persecuted" "persecuting"); -- from DictEng -lin persecution_N = mkN "persecution" "persecutions"; -- from DictEng -lin persecutor_N = mkN "persecutor" "persecutors"; -- from DictEng -lin perseverance_N = mkN "perseverance" ; -- from DictEng -lin perseveration_N = mkN "perseveration" ; -lin persevere_V = mkV "persevere" "perseveres" "persevered" "persevered" "persevering"; -- from DictEng -lin persevering_A = compoundA (mkA "persevering"); -- from DictEng -lin perseveringly_Adv = mkAdv "perseveringly" ; -lin persian_A = compoundA (mkA "persian"); -- from DictEng -lin persian_N = mkN "persian" "persians"; -- from DictEng -lin persiflage_N = mkN "persiflage" ; -- from DictEng -lin persimmon_N = mkN "persimmon" "persimmons"; -- from DictEng -lin persist_V = mkV "persist" "persists" "persisted" "persisted" "persisting"; -- from DictEng -lin persistence_N = mkN "persistence" ; -- from DictEng -lin persistent_A = compoundA (mkA "persistent"); -- from DictEng -lin persistently_Adv = mkAdv "persistently" ; -lin person_N = mkN "person" "persons"; -- from DictEng -lin person_to_person_A = compoundA (mkA "person to person") ; -lin persona_N = mkN "persona" "personas"; -- from DictEng -lin persona_grata_N = mkN "persona grata" "persona gratae" {- FIXME: guessed plural form -}; -- from DictEng -lin persona_non_grata_N = mkN "persona non grata" "persona non gratae" {- FIXME: guessed plural form -}; -- from DictEng -lin personable_A = compoundA (mkA "personable"); -- from DictEng -lin personableness_N = mkN "personableness" ; -lin personage_N = mkN "personage" "personages"; -- from DictEng -lin personal_A = compoundA (mkA "personal"); -- from DictEng -lin personal_N = mkN "personal" "personals"; -- from DictEng -lin personality_N = mkN "personality" "personalities"; -- from DictEng -lin personalize_V2 = mkV2 (mkV "personalize" "personalizes" "personalized" "personalized" "personalizing"); -- from DictEng -lin personalized_A = mkA "personalized" ; -lin personally_Adv = mkAdv "personally" ; -lin personalty_N = mkN "personalty" ; -- from DictEng -lin personate_V2 = mkV2 (mkV "personate" "personates" "personated" "personated" "personating"); -- from DictEng -lin personation_N = mkN "personation" "personations"; -- from DictEng -lin personhood_N = mkN "personhood" ; -lin personification_N = mkN "personification" "personifications"; -- from DictEng -lin personify_V2 = mkV2 (mkV "personify" "personifies" "personified" "personified" "personifying"); -- from DictEng -lin perspective_N = mkN "perspective" "perspectives"; -- from DictEng -lin perspex_N = mkN "perspex" ; -- from DictEng -lin perspicacious_A = compoundA (mkA "perspicacious"); -- from DictEng -lin perspicacity_N = mkN "perspicacity" ; -- from DictEng -lin perspicuity_N = mkN "perspicuity" ; -- from DictEng -lin perspicuous_A = compoundA (mkA "perspicuous"); -- from DictEng -lin perspicuousness_N = mkN "perspicuousness" ; -- from DictEng -lin perspiration_N = mkN "perspiration" ; -- from DictEng -lin perspire_V = mkV "perspire" "perspires" "perspired" "perspired" "perspiring"; -- from DictEng -lin perspirer_N = mkN "perspirer" ; -lin persuadable_A = compoundA (mkA "persuadable"); -- from DictEng -lin persuade_V2 = mkV2 (mkV "persuade" "persuades" "persuaded" "persuaded" "persuading"); -- from DictEng -lin persuade_VS = mkVS (mkV "persuade" ); -lin persuader_N = mkN "persuader" ; -lin persuasion_N = mkN "persuasion" "persuasions"; -- from DictEng -lin persuasive_A = compoundA (mkA "persuasive"); -- from DictEng -lin persuasively_Adv = mkAdv "persuasively" ; -lin persuasiveness_N = mkN "persuasiveness" ; -- from DictEng -lin pert_A = compoundA (mkA "pert"); -- from DictEng -lin pertain_V = mkV "pertain" "pertains" "pertained" "pertained" "pertaining"; -- from DictEng -lin pertainym_N = mkN "pertainym" ; -lin pertinacious_A = compoundA (mkA "pertinacious"); -- from DictEng -lin pertinaciously_Adv = mkAdv "pertinaciously" ; -lin pertinacity_N = mkN "pertinacity" ; -- from DictEng -lin pertinence_N = mkN "pertinence" ; -- from DictEng -lin pertinent_A = compoundA (mkA "pertinent"); -- from DictEng -lin pertinently_Adv = mkAdv "pertinently" ; -lin pertness_N = mkN "pertness" ; -- from DictEng -lin perturb_V2 = mkV2 (mkV "perturb" "perturbs" "perturbed" "perturbed" "perturbing"); -- from DictEng -lin perturbation_N = mkN "perturbation" "perturbations"; -- from DictEng -lin peruke_N = mkN "peruke" "perukes"; -- from DictEng -lin peruked_A = mkA "peruked" ; -lin perusal_N = mkN "perusal" "perusals"; -- from DictEng -lin peruse_V2 = mkV2 (mkV "peruse" "peruses" "perused" "perused" "perusing"); -- from DictEng -lin peruvian_A = compoundA (mkA "peruvian"); -- from DictEng -lin peruvian_N = mkN "peruvian" "peruvians"; -- from DictEng -lin pervade_V2 = mkV2 (mkV "pervade" "pervades" "pervaded" "pervaded" "pervading"); -- from DictEng -lin pervaporation_N = mkN "pervaporation" ; -lin pervasion_N = mkN "pervasion" ; -- from DictEng -lin pervasive_A = compoundA (mkA "pervasive"); -- from DictEng -lin pervasively_Adv = mkAdv "pervasively" ; -lin pervasiveness_N = mkN "pervasiveness" ; -- from DictEng -lin perverse_A = compoundA (mkA "perverse"); -- from DictEng -lin perversely_Adv = mkAdv "perversely" ; -lin perverseness_N = mkN "perverseness" ; -- from DictEng -lin perversion_N = mkN "perversion" "perversions"; -- from DictEng -lin perversity_N = mkN "perversity" "perversities"; -- from DictEng -lin pervert_N = mkN "pervert" "perverts"; -- from DictEng -lin pervert_V2 = mkV2 (mkV "pervert" "perverts" "perverted" "perverted" "perverting"); -- from DictEng -lin pervious_A = mkA "pervious" ; -lin pesantran_N = mkN "pesantran" ; -lin peseta_N = mkN "peseta" "pesetas"; -- from DictEng -lin pesewa_N = mkN "pesewa" ; -lin peshmerga_N = mkN "peshmerga" ; -lin pesky_A = mkA "pesky" "peskier"; -- from DictEng -lin peso_N = mkN "peso" "pesos"; -- from DictEng -lin pessary_N = mkN "pessary" "pessaries"; -- from DictEng -lin pessimal_A = mkA "pessimal" ; -lin pessimism_N = mkN "pessimism" ; -- from DictEng -lin pessimist_N = mkN "pessimist" "pessimists"; -- from DictEng -lin pessimistic_A = compoundA (mkA "pessimistic"); -- from DictEng -lin pessimistically_Adv = mkAdv "pessimistically"; -- from DictEng -lin pest_N = mkN "pest" "pests"; -- from DictEng -lin pester_V2 = mkV2 (mkV "pester" "pesters" "pestered" "pestered" "pestering"); -- from DictEng -lin pesthole_N = mkN "pesthole" ; -lin pesticide_N = mkN "pesticide" "pesticides"; -- from DictEng -lin pestiferous_A = compoundA (mkA "pestiferous"); -- from DictEng -lin pestilence_N = mkN "pestilence" "pestilences"; -- from DictEng -lin pestilent_A = compoundA (mkA "pestilent"); -- from DictEng -lin pestilential_A = compoundA (mkA "pestilential"); -- from DictEng -lin pestle_N = mkN "pestle" "pestles"; -- from DictEng -lin pestle_V2 = mkV2 (mkV "pestle" "pestles" "pestled" "pestled" "pestling"); -- from DictEng -lin pesto_N = mkN "pesto" ; -lin pet_N = mkN "pet" "pets"; -- from DictEng -lin pet_V = mkV "pet" ; -lin pet_V2 = mkV2 (mkV "pet" "pets" "petted" "petted" "petting"); -- from DictEng -lin petabit_N = mkN "petabit" ; -lin petabyte_N = mkN "petabyte" ; -lin petal_N = mkN "petal" "petals"; -- from DictEng -lin petaled_A = compoundA (mkA "petaled"); -- from DictEng -lin petalled_A = compoundA (mkA "petalled"); -- from DictEng -lin petallike_A = mkA "petallike" ; -lin petaloid_A = mkA "petaloid" ; -lin petalous_A = mkA "petalous" ; -lin petard_N = mkN "petard" "petards"; -- from DictEng -lin petcock_N = mkN "petcock" ; -lin petechia_N = mkN "petechia" ; -lin peter_V = mkV "peter" "peters" "petered" "petered" "petering"; -- from DictEng -lin petfood_N = mkN "petfood" ; -lin petiole_N = mkN "petiole" ; -lin petiolule_N = mkN "petiolule" ; -lin petit_bourgeois_N = mkN "petit bourgeois" "petit bourgeoes" {- FIXME: guessed plural form -}; -- from DictEng -lin petite_A = compoundA (mkA "petite"); -- from DictEng -lin petite_N = mkN "petite" ; -lin petition_N = mkN "petition" "petitions"; -- from DictEng -lin petition_V = mkV "petition" "petitions" "petitioned" "petitioned" "petitioning"; -- from DictEng -lin petition_V2 = mkV2 (mkV "petition" "petitions" "petitioned" "petitioned" "petitioning"); -- from DictEng -lin petitionary_A = mkA "petitionary" ; -lin petitioner_N = mkN "petitioner" "petitioners"; -- from DictEng -lin petrel_N = mkN "petrel" "petrels"; -- from DictEng -lin petrifaction_N = mkN "petrifaction" "petrifactions"; -- from DictEng -lin petrify_V = mkV "petrify" "petrifies" "petrified" "petrified" "petrifying"; -- from DictEng -lin petrify_V2 = mkV2 (mkV "petrify" "petrifies" "petrified" "petrified" "petrifying"); -- from DictEng -lin petrifying_A = mkA "petrifying" ; -lin petrissage_N = mkN "petrissage" ; -lin petro_chemical_N = mkN "petro - chemical" "petro - chemicals"; -- from DictEng -lin petrochemical_N = mkN "petrochemical" ; -lin petroglyph_N = mkN "petroglyph" ; -lin petrol_N = mkN "petrol" ; -- from DictEng -lin petrolatum_N = mkN "petrolatum" ; -lin petroleum_N = mkN "petroleum" ; -- from DictEng -lin petrology_N = mkN "petrology" ; -- from DictEng -lin petrous_A = mkA "petrous" ; -lin petter_N = mkN "petter" ; -lin petticoat_N = mkN "petticoat" "petticoats"; -- from DictEng -lin petticoated_A = mkA "petticoated" ; -lin pettifogging_A = compoundA (mkA "pettifogging"); -- from DictEng -lin pettily_Adv = mkAdv "pettily"; -- from DictEng -lin pettiness_N = mkN "pettiness" "pettinesses"; -- from DictEng -lin pettish_A = compoundA (mkA "pettish"); -- from DictEng -lin pettishness_N = mkN "pettishness" ; -- from DictEng -lin petty_A = mkA "petty" "pettier"; -- from DictEng -lin petulance_N = mkN "petulance" ; -- from DictEng -lin petulant_A = compoundA (mkA "petulant"); -- from DictEng -lin petunia_N = mkN "petunia" "petunias"; -- from DictEng -lin pew_N = mkN "pew" "pews"; -- from DictEng -lin pew_opener_N = mkN "pew - opener" "pew - openers"; -- from DictEng -lin pewee_N = mkN "pewee" ; -lin pewit_N = mkN "pewit" "pewits"; -- from DictEng -lin pewter_N = mkN "pewter" ; -- from DictEng -lin peyote_N = mkN "peyote" "peyotes"; -- from DictEng -lin pfannkuchen_N = mkN "pfannkuchen" ; -lin pfennig_N = mkN "pfennig" "pfennigs"; -- from DictEng -lin phacoemulsification_N = mkN "phacoemulsification" ; -lin phaeton_N = mkN "phaeton" "phaetons"; -- from DictEng -lin phagocyte_N = mkN "phagocyte" "phagocytes"; -- from DictEng -lin phagocytic_A = mkA "phagocytic" ; -lin phagocytosis_N = mkN "phagocytosis" ; -lin phaius_N = mkN "phaius" ; -lin phalangeal_A = mkA "phalangeal" ; -lin phalanger_N = mkN "phalanger" ; -lin phalangitis_N = mkN "phalangitis" ; -lin phalanx_N = mkN "phalanx" "phalanxes"; -- from DictEng -lin phalarope_N = mkN "phalarope" ; -lin phallic_A = compoundA (mkA "phallic"); -- from DictEng -lin phalloplasty_N = mkN "phalloplasty" ; -lin phallus_N = mkN "phallus" "phalluses"; -- from DictEng -lin phalsa_N = mkN "phalsa" ; -lin phaneromania_N = mkN "phaneromania" ; -lin phantasm_N = mkN "phantasm" "phantasms"; -- from DictEng -lin phantasmagoria_N = mkN "phantasmagoria" "phantasmagorias"; -- from DictEng -lin phantasmagoric_A = mkA "phantasmagoric" ; -lin phantasmal_A = compoundA (mkA "phantasmal"); -- from DictEng -lin phantasy_N = mkN "phantasy" "phantasies"; -- from DictEng -lin phantom_A = mkA "phantom" ; -lin phantom_N = mkN "phantom" "phantoms"; -- from DictEng -lin pharaoh_N = mkN "pharaoh" "pharaohs"; -- from DictEng -lin pharisaic_A = compoundA (mkA "pharisaic"); -- from DictEng -lin pharisaical_A = compoundA (mkA "pharisaical"); -- from DictEng -lin pharisee_N = mkN "pharisee" "pharisees"; -- from DictEng -lin pharmaceutical_A = compoundA (mkA "pharmaceutical"); -- from DictEng -lin pharmaceutical_N = mkN "pharmaceutical" ; -lin pharmacist_N = mkN "pharmacist" "pharmacists"; -- from DictEng -lin pharmacogenetics_N = mkN "pharmacogenetics" ; -lin pharmacokinetics_N = mkN "pharmacokinetics" ; -lin pharmacological_A = compoundA (mkA "pharmacological"); -- from DictEng -lin pharmacologically_Adv = mkAdv "pharmacologically" ; -lin pharmacologist_N = mkN "pharmacologist" "pharmacologists"; -- from DictEng -lin pharmacology_N = mkN "pharmacology" ; -- from DictEng -lin pharmacopoeia_N = mkN "pharmacopoeia" "pharmacopoeias"; -- from DictEng -lin pharmacy_N = mkN "pharmacy" "pharmacies"; -- from DictEng -lin pharos_N = mkN "pharos" "IRREG"; -- from DictEng -lin pharyngeal_A = mkA "pharyngeal" ; -lin pharyngitis_N = mkN "pharyngitis" ; -- from DictEng -lin pharynx_N = mkN "pharynx" "pharynxes"; -- from DictEng -lin phase_N = mkN "phase" "phases"; -- from DictEng -lin phase_V2 = mkV2 (mkV "phase" "phases" "phased" "phased" "phasing"); -- from DictEng -lin phase_out_N = mkN "phase out" ; -lin phase_iii_clinical_trial_PN = mkPN "phase III clinical trial" ; -lin phase_ii_clinical_trial_PN = mkPN "phase II clinical trial" ; -lin phase_iv_clinical_trial_PN = mkPN "phase IV clinical trial" ; -lin phase_i_clinical_trial_PN = mkPN "phase I clinical trial" ; -lin phasianid_N = mkN "phasianid" ; -lin phasmid_N = mkN "phasmid" ; -lin phd_N = mkN "phd" ; -- from DictEng -lin pheasant_N = mkN "pheasant" "pheasants"; -- from DictEng -lin pheasant's_eye_N = mkN "pheasant's eye" ; -lin phellem_N = mkN "phellem" ; -lin phenacomys_N = mkN "phenacomys" ; -lin phenazopyridine_N = mkN "phenazopyridine" ; -lin phencyclidine_N = mkN "phencyclidine" ; -lin phenelzine_N = mkN "phenelzine" ; -lin pheniramine_N = mkN "pheniramine" ; -lin pheno_safranine_N = mkN "pheno safranine" ; -lin phenobarbitone_N = mkN "phenobarbitone" ; -- from DictEng -lin phenol_N = mkN "phenol" ; -- from DictEng -lin phenolphthalein_N = mkN "phenolphthalein" ; -lin phenomenal_A = compoundA (mkA "phenomenal"); -- from DictEng -lin phenomenally_Adv = mkAdv "phenomenally" ; -lin phenomenology_N = mkN "phenomenology" ; -lin phenomenon_N = mkN "phenomenon" "phenomena" {- FIXME: guessed plural form -}; -- from DictEng -lin phenothiazine_N = mkN "phenothiazine" ; -lin phenotype_N = mkN "phenotype" ; -lin phenotypical_A = mkA "phenotypical" ; -lin phensuximide_N = mkN "phensuximide" ; -lin phentolamine_N = mkN "phentolamine" ; -lin phenylalanine_N = mkN "phenylalanine" ; -lin phenylbutazone_N = mkN "phenylbutazone" ; -lin phenylephrine_N = mkN "phenylephrine" ; -lin phenylketonuria_N = mkN "phenylketonuria" ; -lin phenylpropanolamine_N = mkN "phenylpropanolamine" ; -lin phenyltoloxamine_N = mkN "phenyltoloxamine" ; -lin pheochromocytoma_N = mkN "pheochromocytoma" ; -lin pheromone_N = mkN "pheromone" ; -lin phi_N = mkN "phi" ; -lin phial_N = mkN "phial" "phials"; -- from DictEng -lin philadelphus_N = mkN "philadelphus" ; -lin philander_V = mkV "philander" "philanders" "philandered" "philandered" "philandering"; -- from DictEng -lin philanderer_N = mkN "philanderer" "philanderers"; -- from DictEng -lin philanthropic_A = compoundA (mkA "philanthropic"); -- from DictEng -lin philanthropically_Adv = mkAdv "philanthropically"; -- from DictEng -lin philanthropist_N = mkN "philanthropist" "philanthropists"; -- from DictEng -lin philanthropy_N = mkN "philanthropy" ; -- from DictEng -lin philatelic_A = compoundA (mkA "philatelic"); -- from DictEng -lin philatelically_Adv = mkAdv "philatelically" ; -lin philatelist_N = mkN "philatelist" "philatelists"; -- from DictEng -lin philately_N = mkN "philately" ; -- from DictEng -lin philharmonic_A = compoundA (mkA "philharmonic"); -- from DictEng -lin philhellene_A = compoundA (mkA "philhellene"); -- from DictEng -lin philhellene_N = mkN "philhellene" "philhellenes"; -- from DictEng -lin philhellenic_A = compoundA (mkA "philhellenic"); -- from DictEng -lin philhellenism_N = mkN "philhellenism" ; -lin philippine_A = compoundA (mkA "philippine"); -- from DictEng -lin philippine_N = mkN "philippine" "philippines"; -- from DictEng -lin philistine_N = mkN "philistine" "philistines"; -- from DictEng -lin philistinism_N = mkN "philistinism" ; -- from DictEng -lin phillipsite_N = mkN "phillipsite" ; -lin philodendron_N = mkN "philodendron" ; -lin philogyny_N = mkN "philogyny" ; -lin philological_A = compoundA (mkA "philological"); -- from DictEng -lin philologist_N = mkN "philologist" "philologists"; -- from DictEng -lin philology_N = mkN "philology" ; -- from DictEng -lin philomath_N = mkN "philomath" ; -lin philosopher_N = mkN "philosopher" "philosophers"; -- from DictEng -lin philosophic_A = compoundA (mkA "philosophic"); -- from DictEng -lin philosophical_A = compoundA (mkA "philosophical"); -- from DictEng -lin philosophically_Adv = mkAdv "philosophically" ; -lin philosophize_V = mkV "philosophize" "philosophizes" "philosophized" "philosophized" "philosophizing"; -- from DictEng -lin philosophizer_N = mkN "philosophizer" ; -lin philosophizing_N = mkN "philosophizing" ; -lin philosophy_N = mkN "philosophy" "philosophies"; -- from DictEng -lin philter_N = mkN "philter" ; -lin philtre_N = mkN "philtre" "philtres"; -- from DictEng -lin phimosis_N = mkN "phimosis" ; -lin phlebectomy_N = mkN "phlebectomy" ; -lin phlebitis_N = mkN "phlebitis" ; -- from DictEng -lin phlebothrombosis_N = mkN "phlebothrombosis" ; -lin phlebotomist_N = mkN "phlebotomist" ; -lin phlegm_N = mkN "phlegm" ; -- from DictEng -lin phlegmatic_A = compoundA (mkA "phlegmatic"); -- from DictEng -lin phlegmatically_Adv = mkAdv "phlegmatically"; -- from DictEng -lin phlegmy_A = mkA "phlegmy" ; -lin phloem_N = mkN "phloem" ; -lin phlogiston_N = mkN "phlogiston" ; -lin phlogopite_N = mkN "phlogopite" ; -lin phlomis_N = mkN "phlomis" ; -lin phlox_N = mkN "phlox" ; -- from DictEng -lin phobia_N = mkN "phobia" "phobias"; -- from DictEng -lin phobic_A = mkA "phobic" ; -lin phobophobia_N = mkN "phobophobia" ; -lin phocine_A = mkA "phocine" ; -lin phocomelia_N = mkN "phocomelia" ; -lin phoebe_N = mkN "phoebe" ; -lin phoenicophorium_N = mkN "phoenicophorium" ; -lin phoenix_N = mkN "phoenix" "phoenixes"; -- from DictEng -lin phon_N = mkN "phon" ; -lin phone_N = mkN "phone" "phones"; -- from DictEng -lin phone_V = mkV "phone" "phones" "phoned" "phoned" "phoning"; -- from DictEng -lin phone_V2 = mkV2 (mkV "phone" "phones" "phoned" "phoned" "phoning"); -- from DictEng -lin phone_in_N = mkN "phone - in" "phone - ins"; -- from DictEng -lin phone_in_N = mkN "phone - in" "phone - ins"; -- from DictEng -lin phonebook_N = mkN "phonebook" ; -lin phonebooth_N = mkN "phonebooth" "phonebooths"; -- from DictEng -lin phonecall_N = mkN "phonecall" "phonecalls"; -- from DictEng -lin phoneme_N = mkN "phoneme" "phonemes"; -- from DictEng -lin phonemic_A = compoundA (mkA "phonemic"); -- from DictEng -lin phonemic_Adv = mkAdv "phonemic" ; -lin phonemics_N = mkN "phonemics" "phonemics"; -- from DictEng -lin phonetic_A = compoundA (mkA "phonetic"); -- from DictEng -lin phonetically_Adv = mkAdv "phonetically"; -- from DictEng -lin phonetician_N = mkN "phonetician" "phoneticians"; -- from DictEng -lin phonetics_N = mkN "phonetics" "phonetics"; -- from DictEng -lin phoney_A = compoundA (mkA "phoney"); -- from DictEng -lin phoney_N = mkN "phoney" "phoneys"; -- from DictEng -lin phonic_A = compoundA (mkA "phonic"); -- from DictEng -lin phonics_N = mkN "phonics" "phonics"; -- from DictEng -lin phonogram_N = mkN "phonogram" ; -lin phonogramic_A = mkA "phonogramic" ; -lin phonograph_N = mkN "phonograph" "phonographs"; -- from DictEng -lin phonological_A = compoundA (mkA "phonological"); -- from DictEng -lin phonologist_N = mkN "phonologist" ; -lin phonology_N = mkN "phonology" ; -- from DictEng -lin phonophobia_N = mkN "phonophobia" ; -lin phony_A = compoundA (mkA "phony"); -- from DictEng -lin phony_N = mkN "phony" "phonies"; -- from DictEng -lin phoronid_N = mkN "phoronid" ; -lin phosgene_N = mkN "phosgene" ; -- from DictEng -lin phosphatase_N = mkN "phosphatase" ; -lin phosphate_N = mkN "phosphate" "phosphates"; -- from DictEng -lin phosphine_N = mkN "phosphine" ; -lin phosphocreatine_N = mkN "phosphocreatine" ; -lin phospholipid_N = mkN "phospholipid" ; -lin phosphoprotein_N = mkN "phosphoprotein" ; -lin phosphor_N = mkN "phosphor" ; -lin phosphorescence_N = mkN "phosphorescence" ; -- from DictEng -lin phosphorescent_A = compoundA (mkA "phosphorescent"); -- from DictEng -lin phosphoric_A = compoundA (mkA "phosphoric"); -- from DictEng -lin phosphorous_A = compoundA (mkA "phosphorous"); -- from DictEng -lin phosphorus_N = mkN "phosphorus" ; -- from DictEng -lin phot_N = mkN "phot" ; -lin photalgia_N = mkN "photalgia" ; -lin photic_A = mkA "photic" ; -lin photo_N = mkN "photo" "photos"; -- from DictEng -lin photocathode_N = mkN "photocathode" ; -lin photochemical_A = mkA "photochemical" ; -lin photochemistry_N = mkN "photochemistry" ; -lin photocoagulation_N = mkN "photocoagulation" ; -lin photocoagulator_N = mkN "photocoagulator" ; -lin photoconductive_A = mkA "photoconductive" ; -lin photoconductivity_N = mkN "photoconductivity" ; -lin photocopier_N = mkN "photocopier" "photocopiers"; -- from DictEng -lin photocopy_N = mkN "photocopy" "photocopies"; -- from DictEng -lin photocopy_V2 = mkV2 (mkV "photocopy" "photocopies" "photocopied" "photocopied" "photocopying"); -- from DictEng -lin photoelectric_A = compoundA (mkA "photoelectric"); -- from DictEng -lin photoelectrically_Adv = mkAdv "photoelectrically" ; -lin photoelectricity_N = mkN "photoelectricity" ; -lin photoelectron_N = mkN "photoelectron" ; -lin photoemission_N = mkN "photoemission" ; -lin photoemissive_A = mkA "photoemissive" ; -lin photoflash_N = mkN "photoflash" "photoflashes"; -- from DictEng -lin photogenic_A = compoundA (mkA "photogenic"); -- from DictEng -lin photograph_N = mkN "photograph" "photographs"; -- from DictEng -lin photograph_V2 = mkV2 (mkV "photograph" "photographs" "photographed" "photographed" "photographing"); -- from DictEng -lin photographer_N = mkN "photographer" "photographers"; -- from DictEng -lin photographic_A = compoundA (mkA "photographic"); -- from DictEng -lin photographically_Adv = mkAdv "photographically"; -- from DictEng -lin photography_N = mkN "photography" ; -- from DictEng -lin photogravure_N = mkN "photogravure" "photogravures"; -- from DictEng -lin photojournalism_N = mkN "photojournalism" ; -lin photojournalist_N = mkN "photojournalist" ; -lin photolithograph_N = mkN "photolithograph" ; -lin photolithography_N = mkN "photolithography" ; -- from DictEng -lin photomechanical_A = mkA "photomechanical" ; -lin photomechanics_N = mkN "photomechanics" ; -lin photometer_N = mkN "photometer" "photometers"; -- from DictEng -lin photometric_A = mkA "photometric" ; -lin photometrically_Adv = mkAdv "photometrically" ; -lin photometrist_N = mkN "photometrist" ; -lin photometry_N = mkN "photometry" ; -lin photomicrograph_N = mkN "photomicrograph" ; -lin photomontage_N = mkN "photomontage" ; -lin photon_N = mkN "photon" "photons"; -- from DictEng -lin photophobia_N = mkN "photophobia" ; -lin photopigment_N = mkN "photopigment" ; -lin photoretinitis_N = mkN "photoretinitis" ; -lin photosensitivity_N = mkN "photosensitivity" ; -lin photosensitize_V2 = mkV2 (mkV "photosensitize" "photosensitizes" "photosensitized" "photosensitized" "photosensitizing"); -- from DictEng -lin photosphere_N = mkN "photosphere" ; -lin photostat_N = mkN "photostat" "photostats"; -- from DictEng -lin photostat_V2 = mkV2 (mkV "photostat" "photostats" "photostatted" "photostatted" "photostatting"); -- from DictEng -lin photosynthesis_N = mkN "photosynthesis" ; -- from DictEng -lin photosynthetic_A = mkA "photosynthetic" ; -lin phototherapy_N = mkN "phototherapy" ; -lin phototropism_N = mkN "phototropism" ; -lin photovoltaic_A = mkA "photovoltaic" ; -lin phragmocone_N = mkN "phragmocone" ; -lin phrasal_A = compoundA (mkA "phrasal"); -- from DictEng -lin phrase_N = mkN "phrase" "phrases"; -- from DictEng -lin phrase_V2 = mkV2 (mkV "phrase" "phrases" "phrased" "phrased" "phrasing"); -- from DictEng -lin phrase_book_N = mkN "phrase - book" "phrase - books"; -- from DictEng -lin phraseology_N = mkN "phraseology" ; -- from DictEng -lin phrasing_N = mkN "phrasing" ; -lin phreatic_A = mkA "phreatic" ; -lin phrenetic_A = compoundA (mkA "phrenetic"); -- from DictEng -lin phrenic_A = mkA "phrenic" ; -lin phrenological_A = mkA "phrenological" ; -lin phrenologist_N = mkN "phrenologist" "phrenologists"; -- from DictEng -lin phrenology_N = mkN "phrenology" ; -- from DictEng -lin phrontistery_N = mkN "phrontistery" ; -lin phthisis_N = mkN "phthisis" ; -- from DictEng -lin phut_Adv = mkAdv "phut"; -- from DictEng -lin phycobilin_N = mkN "phycobilin" ; -lin phycocyanin_N = mkN "phycocyanin" ; -lin phycoerythrin_N = mkN "phycoerythrin" ; -lin phycology_N = mkN "phycology" ; -lin phycomycosis_N = mkN "phycomycosis" ; -lin phylactery_N = mkN "phylactery" ; -lin phyle_N = mkN "phyle" ; -lin phylliform_A = mkA "phylliform" ; -lin phyllo_N = mkN "phyllo" ; -lin phyllode_N = mkN "phyllode" ; -lin phyllodial_A = mkA "phyllodial" ; -lin phylogenetic_A = mkA "phylogenetic" ; -lin phylogenetically_Adv = mkAdv "phylogenetically" ; -lin phylum_N = mkN "phylum" "phylums"; -- from DictEng -lin physa_N = mkN "physa" ; -lin physic_N = mkN "physic" "physics"; -- from DictEng -lin physical_A = compoundA (mkA "physical"); -- from DictEng -lin physically_Adv = mkAdv "physically" ; -lin physician_N = mkN "physician" "physicians"; -- from DictEng -lin physicist_N = mkN "physicist" "physicists"; -- from DictEng -lin physicochemical_A = mkA "physicochemical" ; -lin physics_N = mkN "physics" "physics"; -- from DictEng -lin physiognomy_N = mkN "physiognomy" "physiognomies"; -- from DictEng -lin physiologic_A = mkA "physiologic" ; -lin physiological_A = compoundA (mkA "physiological"); -- from DictEng -lin physiologically_Adv = mkAdv "physiologically" ; -lin physiologist_N = mkN "physiologist" "physiologists"; -- from DictEng -lin physiology_N = mkN "physiology" ; -- from DictEng -lin physiotherapeutic_A = mkA "physiotherapeutic" ; -lin physiotherapist_N = mkN "physiotherapist" "physiotherapists"; -- from DictEng -lin physiotherapy_N = mkN "physiotherapy" ; -- from DictEng -lin physique_N = mkN "physique" "physiques"; -- from DictEng -lin physostegia_N = mkN "physostegia" ; -lin physostigmine_N = mkN "physostigmine" ; -lin phytelephas_N = mkN "phytelephas" ; -lin phytochemical_N = mkN "phytochemical" ; -lin phytochemist_N = mkN "phytochemist" ; -lin phytochemistry_N = mkN "phytochemistry" ; -lin phytohormone_N = mkN "phytohormone" ; -lin phytoplankton_N = mkN "phytoplankton" ; -lin phytotherapy_N = mkN "phytotherapy" ; -lin pi_N = mkN "pi" "pis"; -- from DictEng -lin pia_N = mkN "pia" ; -lin piaffe_N = mkN "piaffe" ; -lin pianism_N = mkN "pianism" ; -lin pianissimo_A = compoundA (mkA "pianissimo"); -- from DictEng -lin pianissimo_Adv = mkAdv "pianissimo"; -- from DictEng -lin pianissimo_assai_A = compoundA (mkA "pianissimo assai") ; -lin pianist_N = mkN "pianist" "pianists"; -- from DictEng -lin pianistic_A = mkA "pianistic" ; -lin piano_A = compoundA (mkA "piano"); -- from DictEng -lin piano_Adv = mkAdv "piano"; -- from DictEng -lin piano_N = mkN "piano" "pianos"; -- from DictEng -lin pianoforte_N = mkN "pianoforte" "pianofortes"; -- from DictEng -lin pianola_N = mkN "pianola" "pianolas"; -- from DictEng -lin piaster_N = mkN "piaster" ; -lin piastre_N = mkN "piastre" "piastres"; -- from DictEng -lin piazza_N = mkN "piazza" "piazzas"; -- from DictEng -lin pibroch_N = mkN "pibroch" "pibrochs"; -- from DictEng -lin pica_N = mkN "pica" "pica"; -- from DictEng -lin picador_N = mkN "picador" "picadors"; -- from DictEng -lin picaresque_A = compoundA (mkA "picaresque"); -- from DictEng -lin piccalilli_N = mkN "piccalilli" ; -- from DictEng -lin piccaninny_N = mkN "piccaninny" "piccaninnies"; -- from DictEng -lin piccolo_N = mkN "piccolo" "piccolos"; -- from DictEng -lin pichi_N = mkN "pichi" ; -lin pichiciago_N = mkN "pichiciago" ; -lin pick_N = mkN "pick" "picks"; -- from DictEng -lin pick_V = mkV "pick" "picks" "picked" "picked" "picking"; -- from DictEng -lin pick_V2 = mkV2 (mkV "pick" "picks" "picked" "picked" "picking"); -- from DictEng -lin pick_off_N = mkN "pick off" ; -lin pick_me_up_N = mkN "pick - me - up" "pick - me - ups"; -- from DictEng -lin pick_up_N = mkN "pick - up" "pick - ups"; -- from DictEng -lin pickaback_Adv = mkAdv "pickaback"; -- from DictEng -lin pickaninny_N = mkN "pickaninny" ; -lin pickaxe_N = mkN "pickaxe" "pickaxes"; -- from DictEng -lin pickelhaube_N = mkN "pickelhaube" ; -lin picker_N = mkN "picker" "pickers"; -- from DictEng -lin pickerel_N = mkN "pickerel" "pickerel"; -- from DictEng -lin pickerelweed_N = mkN "pickerelweed" ; -lin picket_N = mkN "picket" "pickets"; -- from DictEng -lin picket_V = mkV "picket" "pickets" "picketed" "picketed" "picketing"; -- from DictEng -lin picket_V2 = mkV2 (mkV "picket" "pickets" "picketed" "picketed" "picketing"); -- from DictEng -lin picking_N = mkN "picking" "pickings"; -- from DictEng -lin pickings_N = mkN "pickings" ; -lin pickle_N = mkN "pickle" "pickles"; -- from DictEng -lin pickle_V2 = mkV2 (mkV "pickle" "pickles" "pickled" "pickled" "pickling"); -- from DictEng -lin pickled_A = mkA "pickled" ; -lin pickpocket_N = mkN "pickpocket" "pickpockets"; -- from DictEng -lin pickpocket_V2 = mkV2 (mkV "pickpocket") ; -lin pickup_N = mkN "pickup" ; -lin picnic_N = mkN "picnic" "picnics"; -- from DictEng -lin picnic_V = mkV "picnic" "picnics" "picnicked" "picnicked" "picnicking"; -- from DictEng -lin picnicker_N = mkN "picnicker" "picnickers"; -- from DictEng -lin picofarad_N = mkN "picofarad" ; -lin picometer_N = mkN "picometer" ; -lin picornavirus_N = mkN "picornavirus" ; -lin picosecond_N = mkN "picosecond" ; -lin picot_N = mkN "picot" ; -lin picovolt_N = mkN "picovolt" ; -lin picric_A = compoundA (mkA "picric"); -- from DictEng -lin pictograph_N = mkN "pictograph" ; -lin pictographic_A = mkA "pictographic" ; -lin pictorial_A = compoundA (mkA "pictorial"); -- from DictEng -lin pictorial_N = mkN "pictorial" "pictorials"; -- from DictEng -lin pictorially_Adv = mkAdv "pictorially" ; -lin picture_N = mkN "picture" "pictures"; -- from DictEng -lin picture_V2 = mkV2 (mkV "picture" "pictures" "pictured" "pictured" "picturing"); -- from DictEng -lin picture_book_N = mkN "picture - book" "picture - books"; -- from DictEng -lin picture_card_N = mkN "picture - card" "picture - cards"; -- from DictEng -lin picture_gallery_N = mkN "picture - gallery" "picture - galleries"; -- from DictEng -lin picturesque_A = compoundA (mkA "picturesque"); -- from DictEng -lin picturesquely_Adv = mkAdv "picturesquely" ; -lin picturesqueness_N = mkN "picturesqueness" ; -- from DictEng -lin picturing_N = mkN "picturing" ; -lin picul_N = mkN "picul" ; -lin piculet_N = mkN "piculet" ; -lin piddle_N = mkN "piddle" "piddles"; -- from DictEng -lin piddle_V = mkV "piddle" "piddles" "piddled" "piddled" "piddling"; -- from DictEng -lin piddling_A = compoundA (mkA "piddling"); -- from DictEng -lin piddock_N = mkN "piddock" ; -lin pidgin_N = mkN "pidgin" "pidgins"; -- from DictEng -lin pie_N = mkN "pie" "pies"; -- from DictEng -lin pie_crust_N = mkN "pie - crust" ; -- from DictEng -lin piebald_A = compoundA (mkA "piebald"); -- from DictEng -lin piece_N = mkN "piece" "pieces"; -- from DictEng -lin piece_V2 = mkV2 (mkV "piece" "pieces" "pieced" "pieced" "piecing"); -- from DictEng -lin piecemeal_A = compoundA (mkA "piecemeal"); -- from DictEng -lin piecemeal_Adv = mkAdv "piecemeal"; -- from DictEng -lin piecework_N = mkN "piecework" ; -- from DictEng -lin pied_A = compoundA (mkA "pied"); -- from DictEng -lin pied_a_terre_N = mkN "pied - à - terre" "pied - à - terres"; -- from DictEng -lin pied_a_terre_N = mkN "pied - à - terre" "pied - à - terres"; -- from DictEng -lin piedmont_N = mkN "piedmont" ; -lin pieplant_N = mkN "pieplant" ; -lin pier_N = mkN "pier" "piers"; -- from DictEng -lin pier_glass_N = mkN "pier - glass" "pier - glasses"; -- from DictEng -lin pierce_V = mkV "pierce" "pierces" "pierced" "pierced" "piercing"; -- from DictEng -lin pierce_V2 = mkV2 (mkV "pierce" "pierces" "pierced" "pierced" "piercing"); -- from DictEng -lin pierced_A = mkA "pierced" ; -lin piercing_A = compoundA (mkA "piercing"); -- from DictEng -lin piercingly_Adv = mkAdv "piercingly" ; -lin pierid_N = mkN "pierid" ; -lin pierrot_N = mkN "pierrot" "pierrots"; -- from DictEng -lin pieta_N = mkN "pietà" "pietàs"; -- from DictEng -lin pietistic_A = mkA "pietistic" ; -lin piety_N = mkN "piety" "pieties"; -- from DictEng -lin piezoelectric_A = mkA "piezoelectric" ; -lin piezoelectricity_N = mkN "piezoelectricity" ; -lin piezometer_N = mkN "piezometer" ; -lin piffle_N = mkN "piffle" ; -- from DictEng -lin piffle_V = mkV "piffle" "piffles" "piffled" "piffled" "piffling"; -- from DictEng -lin piffling_A = compoundA (mkA "piffling"); -- from DictEng -lin pig_N = mkN "pig" "pigs"; -- from DictEng -lin pig_V = mkV "pig" "pigs" "pigged" "pigged" "pigging"; -- from DictEng -lin pig_sized_A = compoundA (mkA "pig sized") ; -lin pig_headed_A = compoundA (mkA "pig - headed"); -- from DictEng -lin pig_headedness_N = mkN "pig - headedness" ; -- from DictEng -lin pig_iron_N = mkN "pig - iron" ; -- from DictEng -lin pig_sticking_N = mkN "pig - sticking" ; -- from DictEng -lin pigboat_N = mkN "pigboat" "pigboats"; -- from DictEng -lin pigeon_N = mkN "pigeon" "pigeons"; -- from DictEng -lin pigeon_breasted_A = compoundA (mkA "pigeon - breasted"); -- from DictEng -lin pigeon_toed_A = compoundA (mkA "pigeon - toed"); -- from DictEng -lin pigeon_breasted_A = compoundA (mkA "pigeon - breasted"); -- from DictEng -lin pigeon_toed_A = compoundA (mkA "pigeon - toed"); -- from DictEng -lin pigeonhole_N = mkN "pigeonhole" "pigeonholes"; -- from DictEng -lin pigeonhole_V2 = mkV2 (mkV "pigeonhole" "pigeonholes" "pigeonholed" "pigeonholed" "pigeonholing"); -- from DictEng -lin pigfish_N = mkN "pigfish" ; -lin piggery_N = mkN "piggery" "piggeries"; -- from DictEng -lin piggish_A = compoundA (mkA "piggish"); -- from DictEng -lin piggishly_Adv = mkAdv "piggishly" ; -lin piggishness_N = mkN "piggishness" ; -- from DictEng -lin piggy_A = mkA "piggy" "piggier"; -- from DictEng -lin piggy_N = mkN "piggy" "piggies"; -- from DictEng -lin piggyback_Adv = mkAdv "piggyback" ; -lin piggyback_N = mkN "piggyback" "piggybacks"; -- from DictEng -lin piggyback_V = mkV "piggyback"; -- from DictEng -lin piglet_N = mkN "piglet" "piglets"; -- from DictEng -lin pigment_N = mkN "pigment" "pigments"; -- from DictEng -lin pigmentation_N = mkN "pigmentation" "pigmentations"; -- from DictEng -lin pigmy_N = mkN "pigmy" "pigmies"; -- from DictEng -lin pignut_N = mkN "pignut" ; -lin pigskin_N = mkN "pigskin" ; -- from DictEng -lin pigsticking_N = mkN "pigsticking" ; -lin pigsty_N = mkN "pigsty" "pigsties"; -- from DictEng -lin pigswill_N = mkN "pigswill" ; -- from DictEng -lin pigtail_N = mkN "pigtail" "pigtails"; -- from DictEng -lin pigwash_N = mkN "pigwash" ; -- from DictEng -lin pigweed_N = mkN "pigweed" ; -lin pika_N = mkN "pika" ; -lin pike_N = mkN "pike" "pike"; -- from DictEng -lin pike_perch_N = mkN "pike perch" ; -lin pikeblenny_N = mkN "pikeblenny" ; -lin pikestaff_N = mkN "pikestaff" "pikestaffs"; -- from DictEng -lin pilaf_N = mkN "pilaf" ; -- from DictEng -lin pilaff_N = mkN "pilaff" ; -- from DictEng -lin pilar_A = mkA "pilar" ; -lin pilaster_N = mkN "pilaster" "pilasters"; -- from DictEng -lin pilau_N = mkN "pilau" ; -- from DictEng -lin pilchard_N = mkN "pilchard" "pilchards"; -- from DictEng -lin pile_N = mkN "pile" "piles"; -- from DictEng -lin pile_V = mkV "pile" "piles" "piled" "piled" "piling"; -- from DictEng -lin pile_V2 = mkV2 (mkV "pile" "piles" "piled" "piled" "piling"); -- from DictEng -lin pile_driver_N = mkN "pile - driver" "pile - drivers"; -- from DictEng -lin pile_dwelling_N = mkN "pile - dwelling" "pile - dwellings"; -- from DictEng -lin pile_up_N = mkN "pile - up" "pile - ups"; -- from DictEng -lin piles_N = mkN "piles" "piles"; -- from DictEng -lin pileup_N = mkN "pileup" ; -lin pilfer_V = mkV "pilfer" "pilfers" "pilfered" "pilfered" "pilfering"; -- from DictEng -lin pilfer_V2 = mkV2 (mkV "pilfer" "pilfers" "pilfered" "pilfered" "pilfering"); -- from DictEng -lin pilferage_N = mkN "pilferage" ; -- from DictEng -lin pilferer_N = mkN "pilferer" "pilferers"; -- from DictEng -lin pilgrim_N = mkN "pilgrim" "pilgrims"; -- from DictEng -lin pilgrimage_N = mkN "pilgrimage" "pilgrimages"; -- from DictEng -lin pill_N = mkN "pill" "pills"; -- from DictEng -lin pillage_N = mkN "pillage" "pillages"; -- from DictEng -lin pillage_V2 = mkV2 (mkV "pillage" "pillages" "pillaged" "pillaged" "pillaging"); -- from DictEng -lin pillager_N = mkN "pillager" "pillagers"; -- from DictEng -lin pillar_N = mkN "pillar" "pillars"; -- from DictEng -lin pillar_shaped_A = compoundA (mkA "pillar shaped") ; -lin pillar_box_N = mkN "pillar - box" "pillar - boxes"; -- from DictEng -lin pillar_of_islam_PN = mkPN "pillar of Islam" ; -lin pillared_A = compoundA (mkA "pillared"); -- from DictEng -lin pillbox_N = mkN "pillbox" "pillboxes"; -- from DictEng -lin pillion_N = mkN "pillion" "pillions"; -- from DictEng -lin pillory_N = mkN "pillory" "pillories"; -- from DictEng -lin pillory_V2 = mkV2 (mkV "pillory"); -- from DictEng -lin pillow_N = mkN "pillow" "pillows"; -- from DictEng -lin pillow_V2 = mkV2 (mkV "pillow" "pillows" "pillowed" "pillowed" "pillowing"); -- from DictEng -lin pillow_fight_N = mkN "pillow - fight" "pillow - fights"; -- from DictEng -lin pillowcase_N = mkN "pillowcase" "pillowcases"; -- from DictEng -lin pillowslip_N = mkN "pillowslip" "pillowslips"; -- from DictEng -lin pillwort_N = mkN "pillwort" ; -lin pilocarpine_N = mkN "pilocarpine" ; -lin pilosebaceous_A = mkA "pilosebaceous" ; -lin pilot_N = mkN "pilot" "pilots"; -- from DictEng -lin pilot_V2 = mkV2 (mkV "pilot" "pilots" "piloted" "piloted" "piloting"); -- from DictEng -lin pilot_boat_N = mkN "pilot - boat" "pilot - boats"; -- from DictEng -lin pilot_burner_N = mkN "pilot - burner" "pilot - burners"; -- from DictEng -lin pilot_cloth_N = mkN "pilot - cloth" ; -- from DictEng -lin pilot_engine_N = mkN "pilot - engine" "pilot - engines"; -- from DictEng -lin pilot_fish_N = mkN "pilot - fish" "pilot - fish"; -- from DictEng -lin pilot_light_N = mkN "pilot - light" "pilot - lights"; -- from DictEng -lin pilotfish_N = mkN "pilotfish" ; -lin pilothouse_N = mkN "pilothouse" ; -lin piloting_N = mkN "piloting" ; -lin pilotless_A = mkA "pilotless" ; -lin pilous_A = mkA "pilous" ; -lin pilus_N = mkN "pilus" ; -lin pimento_N = mkN "pimento" "pimentos"; -- from DictEng -lin pimozide_N = mkN "pimozide" ; -lin pimp_N = mkN "pimp" "pimps"; -- from DictEng -lin pimp_V = mkV "pimp" "pimps" "pimped" "pimped" "pimping"; -- from DictEng -lin pimpernel_N = mkN "pimpernel" "pimpernels"; -- from DictEng -lin pimple_N = mkN "pimple" "pimples"; -- from DictEng -lin pimpled_A = compoundA (mkA "pimpled"); -- from DictEng -lin pimply_A = mkA "pimply" "pimplier"; -- from DictEng -lin pin_N = mkN "pin" "pins"; -- from DictEng -lin pin_V2 = mkV2 (mkV "pin" "pins" "pinned" "pinned" "pinning"); -- from DictEng -lin pin_money_N = mkN "pin - money" ; -- from DictEng -lin pin_point_V2 = mkV2 (mkV "pin - point"); -- from DictEng -lin pin_table_N = mkN "pin - table" "pin - tables"; -- from DictEng -lin pin_up_N = mkN "pin - up" "pin - ups"; -- from DictEng -lin pinafore_N = mkN "pinafore" "pinafores"; -- from DictEng -lin pinata_N = mkN "pinata" ; -lin pinball_N = mkN "pinball" ; -- from DictEng -lin pince_nez_N = mkN "pince - nez" "pince - nez"; -- from DictEng -lin pince_nez_N = mkN "pince - nez" "pince - nez"; -- from DictEng -lin pincer_N = mkN "pincer" "pincers"; -- from DictEng -lin pinch_N = mkN "pinch" "pinches"; -- from DictEng -lin pinch_V = mkV "pinch" "pinches" "pinched" "pinched" "pinching"; -- from DictEng -lin pinch_V2 = mkV2 (mkV "pinch" "pinches" "pinched" "pinched" "pinching"); -- from DictEng -lin pinchbeck_A = compoundA (mkA "pinchbeck"); -- from DictEng -lin pinchbeck_N = mkN "pinchbeck" "pinchbecks"; -- from DictEng -lin pinche_N = mkN "pinche" ; -lin pinched_A = mkA "pinched" ; -lin pinchgut_N = mkN "pinchgut" ; -lin pincushion_N = mkN "pincushion" "pincushions"; -- from DictEng -lin pindolol_N = mkN "pindolol" ; -lin pine_N = mkN "pine" "pines"; -- from DictEng -lin pine_V = mkV "pine" "pines" "pined" "pined" "pining"; -- from DictEng -lin pineal_A = compoundA (mkA "pineal"); -- from DictEng -lin pinealoma_N = mkN "pinealoma" ; -lin pineapple_N = mkN "pineapple" "pineapples"; -- from DictEng -lin pinecone_N = mkN "pinecone" ; -lin pinesap_N = mkN "pinesap" ; -lin pinetum_N = mkN "pinetum" ; -lin pinfish_N = mkN "pinfish" ; -lin pinfold_N = mkN "pinfold" ; -lin ping_N = mkN "ping" "pings"; -- from DictEng -lin ping_V = mkV "ping" "pings" "pinged" "pinged" "pinging"; -- from DictEng -lin ping_V2 = mkV2 (mkV "ping") ; -lin pinger_N = mkN "pinger" ; -lin pingpong_N = mkN "pingpong" ; -- from DictEng -lin pinguecula_N = mkN "pinguecula" ; -lin pinhead_N = mkN "pinhead" "pinheads"; -- from DictEng -lin pinhole_N = mkN "pinhole" ; -lin pining_N = mkN "pining" ; -lin pinion_N = mkN "pinion" "pinions"; -- from DictEng -lin pinion_V2 = mkV2 (mkV "pinion" "pinions" "pinioned" "pinioned" "pinioning"); -- from DictEng -lin pinioned_A = mkA "pinioned" ; -lin pinite_N = mkN "pinite" ; -lin pink_A = mkA "pink" "pinker"; -- from DictEng -lin pink_N = mkN "pink" "pinks"; -- from DictEng -lin pink_V = mkV "pink" "pinks" "pinked" "pinked" "pinking"; -- from DictEng -lin pink_V2 = mkV2 (mkV "pink" "pinks" "pinked" "pinked" "pinking"); -- from DictEng -lin pink_collar_A = compoundA (mkA "pink collar") ; -lin pink_lavender_A = compoundA (mkA "pink lavender") ; -lin pink_orange_A = compoundA (mkA "pink orange") ; -lin pink_purple_A = compoundA (mkA "pink purple") ; -lin pink_red_A = compoundA (mkA "pink red") ; -lin pink_tinged_A = compoundA (mkA "pink tinged") ; -lin pink_tipped_A = compoundA (mkA "pink tipped") ; -lin pinkish_A = compoundA (mkA "pinkish"); -- from DictEng -lin pinkish_white_A = compoundA (mkA "pinkish white") ; -lin pinkness_N = mkN "pinkness" ; -lin pinko_N = mkN "pinko" ; -lin pinkroot_N = mkN "pinkroot" ; -lin pinna_N = mkN "pinna" ; -lin pinnace_N = mkN "pinnace" "pinnaces"; -- from DictEng -lin pinnacle_N = mkN "pinnacle" "pinnacles"; -- from DictEng -lin pinnacle_V2 = mkV2 (mkV "pinnacle" "pinnacles" "pinnacled" "pinnacled" "pinnacling"); -- from DictEng -lin pinnate_A = compoundA (mkA "pinnate"); -- from DictEng -lin pinnate_leaved_A = compoundA (mkA "pinnate leaved") ; -lin pinnately_Adv = mkAdv "pinnately" ; -lin pinnatifid_A = mkA "pinnatifid" ; -lin pinnatisect_A = mkA "pinnatisect" ; -lin pinner_N = mkN "pinner" ; -lin pinning_N = mkN "pinning" ; -lin pinny_N = mkN "pinny" "pinnies"; -- from DictEng -lin pinochle_N = mkN "pinochle" ; -lin pinocytosis_N = mkN "pinocytosis" ; -lin pinole_N = mkN "pinole" ; -lin pinon_N = mkN "pinon" ; -lin pinpoint_N = mkN "pinpoint" "pinpoints"; -- from DictEng -lin pinpoint_V2 = mkV2 (mkV "pinpoint" "pinpoints" "pinpointed" "pinpointed" "pinpointing"); -- from DictEng -lin pinprick_N = mkN "pinprick" "pinpricks"; -- from DictEng -lin pinscher_N = mkN "pinscher" ; -lin pinstripe_A = compoundA (mkA "pinstripe"); -- from DictEng -lin pinstripe_N = mkN "pinstripe" ; -lin pinstriped_A = mkA "pinstriped" ; -lin pint_N = mkN "pint" "pints"; -- from DictEng -lin pint_size_A = compoundA (mkA "pint size") ; -lin pintail_N = mkN "pintail" ; -lin pintle_N = mkN "pintle" ; -lin pinto_N = mkN "pinto" ; -lin pinwheel_N = mkN "pinwheel" ; -lin pinwheel_shaped_A = compoundA (mkA "pinwheel shaped") ; -lin pinworm_N = mkN "pinworm" ; -lin pion_N = mkN "pion" ; -lin pioneer_N = mkN "pioneer" "pioneers"; -- from DictEng -lin pioneer_V = mkV "pioneer" "pioneers" "pioneered" "pioneered" "pioneering"; -- from DictEng -lin pioneer_V2 = mkV2 (mkV "pioneer" "pioneers" "pioneered" "pioneered" "pioneering"); -- from DictEng -lin pious_A = compoundA (mkA "pious"); -- from DictEng -lin pip_N = mkN "pip" "pips"; -- from DictEng -lin pip_V2 = mkV2 (mkV "pip" "pips" "pipped" "pipped" "pipping"); -- from DictEng -lin pip_squeak_N = mkN "pip squeak" ; -lin pipage_N = mkN "pipage" ; -lin pipal_N = mkN "pipal" "pipals"; -- from DictEng -lin pipe_N = mkN "pipe" "pipes"; -- from DictEng -lin pipe_V = mkV "pipe" "pipes" "piped" "piped" "piping"; -- from DictEng -lin pipe_V2 = mkV2 (mkV "pipe" "pipes" "piped" "piped" "piping"); -- from DictEng -lin pipe_organ_N = mkN "pipe - organ" "pipe - organs"; -- from DictEng -lin pipe_rack_N = mkN "pipe - rack" "pipe - racks"; -- from DictEng -lin pipeclay_N = mkN "pipeclay" ; -- from DictEng -lin pipedream_N = mkN "pipedream" "pipedreams"; -- from DictEng -lin pipefish_N = mkN "pipefish" ; -lin pipefitting_N = mkN "pipefitting" ; -lin pipeful_N = mkN "pipeful" "pipefuls"; -- from DictEng -lin pipeline_N = mkN "pipeline" "pipelines"; -- from DictEng -lin piper_N = mkN "piper" "pipers"; -- from DictEng -lin piperacillin_N = mkN "piperacillin" ; -lin piperazine_N = mkN "piperazine" ; -lin piperin_N = mkN "piperin" ; -lin piperocaine_N = mkN "piperocaine" ; -lin pipet_N = mkN "pipet" ; -lin pipette_N = mkN "pipette" "pipettes"; -- from DictEng -lin pipework_N = mkN "pipework" ; -- from DictEng -lin pipewort_N = mkN "pipewort" ; -lin piping_A = compoundA (mkA "piping"); -- from DictEng -lin piping_Adv = mkAdv "piping"; -- from DictEng -lin piping_N = mkN "piping" ; -- from DictEng -lin pipistrelle_N = mkN "pipistrelle" ; -lin pipit_N = mkN "pipit" ; -lin pippin_N = mkN "pippin" "pippins"; -- from DictEng -lin pipsissewa_N = mkN "pipsissewa" ; -lin pipsqueak_N = mkN "pipsqueak" "pipsqueaks"; -- from DictEng -lin piquancy_N = mkN "piquancy" ; -- from DictEng -lin piquant_A = compoundA (mkA "piquant"); -- from DictEng -lin piquantly_Adv = mkAdv "piquantly" ; -lin pique_N = mkN "pique" "piques"; -- from DictEng -lin pique_V2 = mkV2 (mkV "pique" "piques" "piqued" "piqued" "piquing"); -- from DictEng -lin piquet_N = mkN "piquet" ; -- from DictEng -lin piracy_N = mkN "piracy" "piracies"; -- from DictEng -lin piranha_N = mkN "piranha" "piranhas"; -- from DictEng -lin pirate_N = mkN "pirate" "pirates"; -- from DictEng -lin pirate_V2 = mkV2 (mkV "pirate" "pirates" "pirated" "pirated" "pirating"); -- from DictEng -lin piratical_A = compoundA (mkA "piratical"); -- from DictEng -lin piratically_Adv = mkAdv "piratically" ; -lin pirogi_N = mkN "pirogi" ; -lin piroplasm_N = mkN "piroplasm" ; -lin pirouette_N = mkN "pirouette" "pirouettes"; -- from DictEng -lin pirouette_V = mkV "pirouette" "pirouettes" "pirouetted" "pirouetted" "pirouetting"; -- from DictEng -lin piroxicam_N = mkN "piroxicam" ; -lin pis_aller_N = mkN "pis aller" "IRREG"; -- from DictEng -lin pisanosaur_N = mkN "pisanosaur" ; -lin piscatorial_A = compoundA (mkA "piscatorial"); -- from DictEng -lin piscine_A = mkA "piscine" ; -lin piscivorous_A = mkA "piscivorous" ; -lin pisiform_N = mkN "pisiform" ; -lin piss_N = mkN "piss" "pisses"; -- from DictEng -lin piss_V = mkV "piss" "pisses" "pissed" "pissed" "pissing"; -- from DictEng -lin piss_V2 = mkV2 (mkV "piss" "pisses" "pissed" "pissed" "pissing"); -- from DictEng -lin piss_up_N = mkN "piss up" ; -lin pissed_A = compoundA (mkA "pissed"); -- from DictEng -lin pisser_N = mkN "pisser" ; -lin pistachio_N = mkN "pistachio" "pistachios"; -- from DictEng -lin piste_N = mkN "piste" ; -lin pistia_N = mkN "pistia" ; -lin pistil_N = mkN "pistil" "pistils"; -- from DictEng -lin pistillate_A = mkA "pistillate" ; -lin pistillode_N = mkN "pistillode" ; -lin pistol_N = mkN "pistol" "pistols"; -- from DictEng -lin pistoleer_N = mkN "pistoleer" ; -lin piston_N = mkN "piston" "pistons"; -- from DictEng -lin pit_N = mkN "pit" "pits"; -- from DictEng -lin pit_V2 = mkV2 (mkV "pit" "pits" "pitted" "pitted" "pitting"); -- from DictEng -lin pit_a_pat_Adv = mkAdv "pit - a - pat"; -- from DictEng -lin pit_a_pat_Adv = mkAdv "pit - a - pat"; -- from DictEng -lin pit_prop_N = mkN "pit - prop" "pit - props"; -- from DictEng -lin pita_N = mkN "pita" ; -lin pitahaya_N = mkN "pitahaya" ; -lin pitch_N = mkN "pitch" "pitches"; -- from DictEng -lin pitch_V = mkV "pitch" "pitches" "pitched" "pitched" "pitching"; -- from DictEng -lin pitch_V2 = mkV2 (mkV "pitch" "pitches" "pitched" "pitched" "pitching"); -- from DictEng -lin pitch_black_A = compoundA (mkA "pitch - black"); -- from DictEng -lin pitch_dark_A = compoundA (mkA "pitch - dark"); -- from DictEng -lin pitchblende_N = mkN "pitchblende" ; -- from DictEng -lin pitched_A = mkA "pitched" ; -lin pitcher_N = mkN "pitcher" "pitchers"; -- from DictEng -lin pitcher_shaped_A = compoundA (mkA "pitcher shaped") ; -lin pitchfork_N = mkN "pitchfork" "pitchforks"; -- from DictEng -lin pitchfork_V2 = mkV2 (mkV "pitchfork" "pitchforks" "pitchforked" "pitchforked" "pitchforking"); -- from DictEng -lin pitching_N = mkN "pitching" ; -lin pitchman_N = mkN "pitchman" ; -lin pitchstone_N = mkN "pitchstone" ; -lin pitchy_A = mkA "pitchy" ; -lin piteous_A = compoundA (mkA "piteous"); -- from DictEng -lin piteously_Adv = mkAdv "piteously" ; -lin pitfall_N = mkN "pitfall" "pitfalls"; -- from DictEng -lin pith_N = mkN "pith" ; -- from DictEng -lin pith_V2 = mkV2 (mkV "pith") ; -lin pithead_N = mkN "pithead" "pitheads"; -- from DictEng -lin pithily_Adv = mkAdv "pithily"; -- from DictEng -lin pithy_A = mkA "pithy" "pithier"; -- from DictEng -lin pitiable_A = compoundA (mkA "pitiable"); -- from DictEng -lin pitiful_A = compoundA (mkA "pitiful"); -- from DictEng -lin pitifully_Adv = mkAdv "pitifully" ; -lin pitiless_A = compoundA (mkA "pitiless"); -- from DictEng -lin pitilessness_N = mkN "pitilessness" ; -lin pitman_N = mkN "pitman" "pitmen" {- FIXME: guessed plural form -}; -- from DictEng -lin piton_N = mkN "piton" "pitons"; -- from DictEng -lin pitprop_N = mkN "pitprop" ; -lin pitsaw_N = mkN "pitsaw" "pitsaws"; -- from DictEng -lin pitta_N = mkN "pitta" ; -lin pittance_N = mkN "pittance" "pittances"; -- from DictEng -lin pitter_patter_N = mkN "pitter - patter" ; -- from DictEng -lin pitter_patter_N = mkN "pitter - patter" ; -- from DictEng -lin pitting_N = mkN "pitting" ; -lin pituitary_A = compoundA (mkA "pituitary"); -- from DictEng -lin pituitary_N = mkN "pituitary" "pituitaries"; -- from DictEng -lin pity_N = mkN "pity" "pities"; -- from DictEng -lin pity_V2 = mkV2 (mkV "pity" "pities" "pitied" "pitied" "pitying"); -- from DictEng -lin pitying_A = compoundA (mkA "pitying"); -- from DictEng -lin pityingly_Adv = mkAdv "pityingly" ; -lin pityriasis_N = mkN "pityriasis" ; -lin pivot_N = mkN "pivot" "pivots"; -- from DictEng -lin pivot_V = mkV "pivot" "pivots" "pivoted" "pivoted" "pivoting"; -- from DictEng -lin pivot_V2 = mkV2 (mkV "pivot" "pivots" "pivoted" "pivoted" "pivoting"); -- from DictEng -lin pivotal_A = compoundA (mkA "pivotal"); -- from DictEng -lin pixel_N = mkN "pixel" ; -lin pixie_N = mkN "pixie" "pixies"; -- from DictEng -lin pixilated_A = compoundA (mkA "pixilated"); -- from DictEng -lin pixy_N = mkN "pixy" "pixies"; -- from DictEng -lin pizza_N = mkN "pizza" "pizzas"; -- from DictEng -lin pizzeria_N = mkN "pizzeria" ; -lin pizzicato_A = compoundA (mkA "pizzicato"); -- from DictEng -lin pizzicato_Adv = mkAdv "pizzicato"; -- from DictEng -lin pizzicato_N = mkN "pizzicato" ; -lin placable_A = mkA "placable" ; -lin placard_N = mkN "placard" "placards"; -- from DictEng -lin placard_V2 = mkV2 (mkV "placard" "placards" "placarded" "placarded" "placarding"); -- from DictEng -lin placate_V2 = mkV2 (mkV "placate" "placates" "placated" "placated" "placating"); -- from DictEng -lin placatingly_Adv = mkAdv "placatingly"; -- from DictEng -lin placation_N = mkN "placation" ; -lin place_N = mkN "place" "places"; -- from DictEng -lin place_V2 = mkV2 (mkV "place" "places" "placed" "placed" "placing"); -- from DictEng -lin place_kicker_N = mkN "place kicker" ; -lin place_bet_N = mkN "place - bet" "place - bets"; -- from DictEng -lin place_name_N = mkN "place - name" "place - names"; -- from DictEng -lin placebo_N = mkN "placebo" "placebos"; -- from DictEng -lin placed_A = mkA "placed" ; -lin placeholder_N = mkN "placeholder" ; -lin placeman_N = mkN "placeman" "placemen" {- FIXME: guessed plural form -}; -- from DictEng -lin placement_N = mkN "placement" "placements"; -- from DictEng -lin placenta_N = mkN "placenta" "placentas"; -- from DictEng -lin placental_A = mkA "placental" ; -lin placental_N = mkN "placental" ; -lin placentation_N = mkN "placentation" ; -lin placer_N = mkN "placer" ; -lin placeseeker_N = mkN "placeseeker" "placeseekers"; -- from DictEng -lin placid_A = compoundA (mkA "placid"); -- from DictEng -lin placidity_N = mkN "placidity" ; -- from DictEng -lin placidly_Adv = mkAdv "placidly" ; -lin placing_N = mkN "placing" "placings"; -- from DictEng -lin placket_N = mkN "placket" "plackets"; -- from DictEng -lin placoderm_N = mkN "placoderm" ; -lin placoid_A = mkA "placoid" ; -lin plage_N = mkN "plage" "IRREG"; -- from DictEng -lin plagiarism_N = mkN "plagiarism" "plagiarisms"; -- from DictEng -lin plagiarist_N = mkN "plagiarist" "plagiarists"; -- from DictEng -lin plagiaristic_A = mkA "plagiaristic" ; -lin plagiarize_V2 = mkV2 (mkV "plagiarize" "plagiarizes" "plagiarized" "plagiarized" "plagiarizing"); -- from DictEng -lin plagiocephaly_N = mkN "plagiocephaly" ; -lin plagioclase_N = mkN "plagioclase" ; -lin plagioclastic_A = mkA "plagioclastic" ; -lin plague_N = mkN "plague" "plagues"; -- from DictEng -lin plague_V2 = mkV2 (mkV "plague" "plagues" "plagued" "plagued" "plaguing"); -- from DictEng -lin plague_spot_N = mkN "plague - spot" "plague - spots"; -- from DictEng -lin plaguey_Adv = mkAdv "plaguey" ; -lin plaguy_A = compoundA (mkA "plaguy"); -- from DictEng -lin plaice_N = mkN "plaice" "plaice"; -- from DictEng -lin plaid_N = mkN "plaid" "plaids"; -- from DictEng -lin plain_A = mkA "plain" "plainer"; -- from DictEng -lin plain_Adv = mkAdv "plain"; -- from DictEng -lin plain_N = mkN "plain" "plains"; -- from DictEng -lin plain_V = mkV "plain" "plains" "plained" "plained" "plaining"; -- from DictEng -lin plain_V2 = mkV2 (mkV "plain" "plains" "plained" "plained" "plaining"); -- from DictEng -lin plain_woven_A = compoundA (mkA "plain woven") ; -lin plain_spoken_A = compoundA (mkA "plain - spoken"); -- from DictEng -lin plainclothesman_N = mkN "plainclothesman" ; -lin plainly_Adv = mkAdv "plainly" ; -lin plainness_N = mkN "plainness" ; -- from DictEng -lin plainsman_N = mkN "plainsman" "plainsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin plainsong_N = mkN "plainsong" ; -lin plainspoken_A = mkA "plainspoken" ; -lin plaint_N = mkN "plaint" "plaints"; -- from DictEng -lin plaintiff_N = mkN "plaintiff" "plaintiffs"; -- from DictEng -lin plaintive_A = compoundA (mkA "plaintive"); -- from DictEng -lin plaintively_Adv = mkAdv "plaintively" ; -lin plaintiveness_N = mkN "plaintiveness" ; -- from DictEng -lin plait_N = mkN "plait" "plaits"; -- from DictEng -lin plait_V2 = mkV2 (mkV "plait" "plaits" "plaited" "plaited" "plaiting"); -- from DictEng -lin plaiter_N = mkN "plaiter" ; -lin plan_N = mkN "plan" "plans"; -- from DictEng -lin plan_V = mkV "plan"; -- from DictEng -lin plan_V2 = mkV2 (mkV "plan"); -- from DictEng -lin plan_V2V = mkV2V (mkV "plan") noPrep to_Prep ; -- from DictEng -lin plan_VS = mkVS (mkV "plan"); -- from DictEng -lin plan_VV = mkVV (mkV "plan"); -- from DictEng -lin planar_A = mkA "planar" ; -lin planarian_N = mkN "planarian" ; -lin planate_A = mkA "planate" ; -lin planation_N = mkN "planation" ; -lin planchet_N = mkN "planchet" ; -lin planchette_N = mkN "planchette" "planchettes"; -- from DictEng -lin plane_N = mkN "plane" "planes"; -- from DictEng -lin plane_V = mkV "plane" "planes" "planed" "planed" "planing"; -- from DictEng -lin plane_V2 = mkV2 (mkV "plane" "planes" "planed" "planed" "planing"); -- from DictEng -lin plane_polarized_A = compoundA (mkA "plane polarized") ; -lin plane_tree_N = mkN "plane - tree" "plane - trees"; -- from DictEng -lin planet_N = mkN "planet" "planets"; -- from DictEng -lin planetal_A = mkA "planetal" ; -lin planetarium_N = mkN "planetarium" "planetariums"; -- from DictEng -lin planetary_A = compoundA (mkA "planetary"); -- from DictEng -lin planetesimal_N = mkN "planetesimal" ; -lin plangency_N = mkN "plangency" ; -lin plangent_A = compoundA (mkA "plangent"); -- from DictEng -lin plank_N = mkN "plank" "planks"; -- from DictEng -lin plank_V2 = mkV2 (mkV "plank" "planks" "planked" "planked" "planking"); -- from DictEng -lin plank_bed_N = mkN "plank - bed" "plank - beds"; -- from DictEng -lin plank_bed_N = mkN "plank - bed" "plank - beds"; -- from DictEng -lin planking_N = mkN "planking" ; -- from DictEng -lin plankton_N = mkN "plankton" ; -- from DictEng -lin planktonic_A = mkA "planktonic" ; -lin planless_A = compoundA (mkA "planless"); -- from DictEng -lin planned_A = mkA "planned" ; -lin planner_N = mkN "planner" "planners"; -- from DictEng -lin planning_N = mkN "planning" ; -lin planoconcave_A = mkA "planoconcave" ; -lin planoconvex_A = mkA "planoconvex" ; -lin planographic_A = mkA "planographic" ; -lin plant_N = mkN "plant" "plants"; -- from DictEng -lin plant_V2 = mkV2 (mkV "plant" "plants" "planted" "planted" "planting"); -- from DictEng -lin plant_eating_A = compoundA (mkA "plant eating") ; -lin plant_louse_N = mkN "plant - louse" "plant - lice"; -- from DictEng -lin plantain_N = mkN "plantain" "plantains"; -- from DictEng -lin plantal_A = mkA "plantal" ; -lin plantar_A = mkA "plantar" ; -lin plantation_N = mkN "plantation" "plantations"; -- from DictEng -lin planted_A = mkA "planted" ; -lin planter_N = mkN "planter" "planters"; -- from DictEng -lin plantigrade_A = mkA "plantigrade" ; -lin planting_N = mkN "planting" ; -lin plantlet_N = mkN "plantlet" ; -lin planula_N = mkN "planula" ; -lin plaque_N = mkN "plaque" "plaques"; -- from DictEng -lin plash_N = mkN "plash" "IRREG"; -- from DictEng -lin plash_V = mkV "plash" "plashes" "plashed" "plashed" "plashing"; -- from DictEng -lin plash_V2 = mkV2 (mkV "plash" "plashes" "plashed" "plashed" "plashing"); -- from DictEng -lin plasm_N = mkN "plasm" ; -- from DictEng -lin plasma_N = mkN "plasma" ; -- from DictEng -lin plasmablast_N = mkN "plasmablast" ; -lin plasmacytoma_N = mkN "plasmacytoma" ; -lin plasmapheresis_N = mkN "plasmapheresis" ; -lin plasmid_N = mkN "plasmid" ; -lin plasmin_N = mkN "plasmin" ; -lin plasminogen_N = mkN "plasminogen" ; -lin plasmodium_N = mkN "plasmodium" ; -lin plaster_N = mkN "plaster" "plasters"; -- from DictEng -lin plaster_V2 = mkV2 (mkV "plaster" "plasters" "plastered" "plastered" "plastering"); -- from DictEng -lin plaster_of_paris_PN = mkPN "plaster of Paris" ; -lin plasterboard_N = mkN "plasterboard" ; -- from DictEng -lin plastered_A = compoundA (mkA "plastered"); -- from DictEng -lin plasterer_N = mkN "plasterer" "plasterers"; -- from DictEng -lin plastering_N = mkN "plastering" ; -lin plastic_A = compoundA (mkA "plastic"); -- from DictEng -lin plastic_N = mkN "plastic" "plastics"; -- from DictEng -lin plastic_bomb_N = mkN "plastic - bomb" "plastic - bombs"; -- from DictEng -lin plastically_Adv = mkAdv "plastically" ; -lin plasticine_N = mkN "plasticine" ; -- from DictEng -lin plasticity_N = mkN "plasticity" ; -- from DictEng -lin plasticizer_N = mkN "plasticizer" ; -lin plastics_N = mkN "plastics" "plastics"; -- from DictEng -lin plastid_N = mkN "plastid" ; -lin plastination_N = mkN "plastination" ; -lin plastron_N = mkN "plastron" ; -lin plat_N = mkN "plat" ; -lin plate_N = mkN "plate" "plates"; -- from DictEng -lin plate_V2 = mkV2 (mkV "plate" "plates" "plated" "plated" "plating"); -- from DictEng -lin plate_glass_N = mkN "plate - glass" ; -- from DictEng -lin plate_powder_N = mkN "plate - powder" ; -- from DictEng -lin plate_rack_N = mkN "plate - rack" "plate - racks"; -- from DictEng -lin plateau_N = mkN "plateau" "plateaus"; -- from DictEng -lin plateful_N = mkN "plateful" "platefuls"; -- from DictEng -lin platelayer_N = mkN "platelayer" "platelayers"; -- from DictEng -lin platelet_N = mkN "platelet" ; -lin plateletpheresis_N = mkN "plateletpheresis" ; -lin platen_N = mkN "platen" ; -lin plater_N = mkN "plater" ; -lin platform_N = mkN "platform" "platforms"; -- from DictEng -lin plating_N = mkN "plating" ; -- from DictEng -lin platinum_N = mkN "platinum" ; -- from DictEng -lin platitude_N = mkN "platitude" "platitudes"; -- from DictEng -lin platitudinarian_N = mkN "platitudinarian" ; -lin platitudinous_A = compoundA (mkA "platitudinous"); -- from DictEng -lin platonic_A = compoundA (mkA "platonic"); -- from DictEng -lin platoon_N = mkN "platoon" "platoons"; -- from DictEng -lin platter_N = mkN "platter" "platters"; -- from DictEng -lin platy_N = mkN "platy" ; -lin platyctenean_N = mkN "platyctenean" ; -lin platypus_N = mkN "platypus" "platypuses"; -- from DictEng -lin platyrrhine_A = mkA "platyrrhine" ; -lin platysma_N = mkN "platysma" ; -lin plaudit_N = mkN "plaudit" "plaudits"; -- from DictEng -lin plausibility_N = mkN "plausibility" "plausibilities"; -- from DictEng -lin plausible_A = compoundA (mkA "plausible"); -- from DictEng -lin play_N = mkN "play" "plays"; -- from DictEng -lin play_V = mkV "play" "plays" "played" "played" "playing"; -- from DictEng -lin play_V2 = mkV2 (mkV "play" "plays" "played" "played" "playing"); -- from DictEng -lin play_acting_N = mkN "play - acting" ; -- from DictEng -lin play_actor_N = mkN "play - actor" "play - actors"; -- from DictEng -lin play_box_N = mkN "play - box" "play - boxes"; -- from DictEng -lin play_off_N = mkN "play - off" "play - offs"; -- from DictEng -lin play_reading_N = mkN "play - reading" "play - readings"; -- from DictEng -lin playable_A = mkA "playable" ; -lin playback_N = mkN "playback" "playbacks"; -- from DictEng -lin playbill_N = mkN "playbill" "playbills"; -- from DictEng -lin playbook_N = mkN "playbook" ; -lin playbox_N = mkN "playbox" ; -lin playboy_N = mkN "playboy" "playboys"; -- from DictEng -lin played_A = mkA "played" ; -lin played_out_A = compoundA (mkA "played out") ; -lin player_N = mkN "player" "players"; -- from DictEng -lin player_piano_N = mkN "player - piano" "player - pianos"; -- from DictEng -lin playfellow_N = mkN "playfellow" "playfellows"; -- from DictEng -lin playful_A = compoundA (mkA "playful"); -- from DictEng -lin playfully_Adv = mkAdv "playfully" ; -lin playfulness_N = mkN "playfulness" ; -- from DictEng -lin playgoer_N = mkN "playgoer" "playgoers"; -- from DictEng -lin playground_N = mkN "playground" "playgrounds"; -- from DictEng -lin playgroup_N = mkN "playgroup" "playgroups"; -- from DictEng -lin playhouse_N = mkN "playhouse" "playhouses"; -- from DictEng -lin playing_N = mkN "playing" "playings"; -- from DictEng -lin playing_card_N = mkN "playing - card" "playing - cards"; -- from DictEng -lin playing_field_N = mkN "playing - field" "playing - fields"; -- from DictEng -lin playlet_N = mkN "playlet" "playlets"; -- from DictEng -lin playlist_N = mkN "playlist" ; -lin playmaker_N = mkN "playmaker" ; -lin playmate_N = mkN "playmate" "playmates"; -- from DictEng -lin playoff_N = mkN "playoff" ; -lin playpen_N = mkN "playpen" "playpens"; -- from DictEng -lin playroom_N = mkN "playroom" "playrooms"; -- from DictEng -lin playschool_N = mkN "playschool" "playschools"; -- from DictEng -lin playsuit_N = mkN "playsuit" "playsuits"; -- from DictEng -lin plaything_N = mkN "plaything" "playthings"; -- from DictEng -lin playtime_N = mkN "playtime" "playtimes"; -- from DictEng -lin playwright_N = mkN "playwright" "playwrights"; -- from DictEng -lin plaza_N = mkN "plaza" "plazas"; -- from DictEng -lin plea_N = mkN "plea" "pleas"; -- from DictEng -lin pleach_V2 = mkV2 (mkV "pleach" "pleaches" "pleached" "pleached" "pleaching"); -- from DictEng -lin plead_V = mkV "plead" "pleads" "pleaded" "pleaded" "pleading"; -- from DictEng -lin plead_V2 = mkV2 (mkV "plead" "pleads" "pleaded" "pleaded" "pleading"); -- from DictEng -lin plead_VA = mkVA (mkV "plead" "pleads" "pleaded" "pleaded" "pleading"); -- from DictEng -lin plead_VS = mkVS (mkV "plead" "pleads" "pleaded" "pleaded" "pleading"); -- from DictEng -lin pleading_N = mkN "pleading" ; -lin pleadingly_Adv = mkAdv "pleadingly"; -- from DictEng -lin pleasance_N = mkN "pleasance" "pleasances"; -- from DictEng -lin pleasant_A = mkA "pleasant" "pleasanter"; -- from DictEng -lin pleasant_smelling_A = compoundA (mkA "pleasant smelling") ; -lin pleasantly_Adv = mkAdv "pleasantly" ; -lin pleasantness_N = mkN "pleasantness" ; -- from DictEng -lin pleasantry_N = mkN "pleasantry" "pleasantries"; -- from DictEng -lin please_Adv = mkAdv "please" ; -lin please_V = mkV "please" "pleases" "pleased" "pleased" "pleasing"; -- from DictEng -lin please_V2 = mkV2 (mkV "please" "pleases" "pleased" "pleased" "pleasing"); -- from DictEng -lin pleased_A = compoundA (mkA "pleased"); -- from DictEng -lin pleaser_N = mkN "pleaser" ; -lin pleasing_A = compoundA (mkA "pleasing"); -- from DictEng -lin pleasing_N = mkN "pleasing" ; -lin pleasingly_Adv = mkAdv "pleasingly" ; -lin pleasingness_N = mkN "pleasingness" ; -lin pleasurable_A = compoundA (mkA "pleasurable"); -- from DictEng -lin pleasure_N = mkN "pleasure" "pleasures"; -- from DictEng -lin pleasure_boat_N = mkN "pleasure - boat" "pleasure - boats"; -- from DictEng -lin pleasure_craft_N = mkN "pleasure - craft" "pleasure - crafts"; -- from DictEng -lin pleasure_ground_N = mkN "pleasure - ground" "pleasure - grounds"; -- from DictEng -lin pleat_N = mkN "pleat" "pleats"; -- from DictEng -lin pleat_V2 = mkV2 (mkV "pleat" "pleats" "pleated" "pleated" "pleating"); -- from DictEng -lin pleb_N = mkN "pleb" "plebs"; -- from DictEng -lin plebeian_A = compoundA (mkA "plebeian"); -- from DictEng -lin plebeian_N = mkN "plebeian" "plebeians"; -- from DictEng -lin plebiscite_N = mkN "plebiscite" "plebiscites"; -- from DictEng -lin plectognath_N = mkN "plectognath" ; -lin plectranthus_N = mkN "plectranthus" ; -lin plectrum_N = mkN "plectrum" "plectrums"; -- from DictEng -lin pledge_N = mkN "pledge" "pledges"; -- from DictEng -lin pledge_V2 = mkV2 (mkV "pledge" "pledges" "pledged" "pledged" "pledging"); -- from DictEng -lin pledge_V2V = mkV2V (mkV "pledge") noPrep to_Prep ; -- from DictEng -lin pledge_VS = mkVS (mkV "pledge"); -- from DictEng -lin pledged_A = mkA "pledged" ; -lin pledgee_N = mkN "pledgee" ; -lin pledger_N = mkN "pledger" ; -lin plenarily_Adv = mkAdv "plenarily" ; -lin plenary_A = compoundA (mkA "plenary"); -- from DictEng -lin plenipotentiary_N = mkN "plenipotentiary" "plenipotentiaries"; -- from DictEng -lin plenitude_N = mkN "plenitude" "IRREG"; -- from DictEng -lin plenteous_A = compoundA (mkA "plenteous"); -- from DictEng -lin plentiful_A = compoundA (mkA "plentiful"); -- from DictEng -lin plenty_Adv = mkAdv "plenty"; -- from DictEng -lin plenty_N = mkN "plenty" ; -- from DictEng -lin plenum_N = mkN "plenum" ; -lin pleochroic_A = mkA "pleochroic" ; -lin pleochroism_N = mkN "pleochroism" ; -lin pleomorphic_A = mkA "pleomorphic" ; -lin pleomorphism_N = mkN "pleomorphism" ; -lin pleonasm_N = mkN "pleonasm" "pleonasms"; -- from DictEng -lin pleonastic_A = mkA "pleonastic" ; -lin plesiosaur_N = mkN "plesiosaur" ; -lin plethora_N = mkN "plethora" "plethoras"; -- from DictEng -lin plethysmograph_N = mkN "plethysmograph" ; -lin pleura_N = mkN "pleura" ; -lin pleural_A = mkA "pleural" ; -lin pleurisy_N = mkN "pleurisy" ; -- from DictEng -lin pleurocarp_N = mkN "pleurocarp" ; -lin pleurocarpous_A = mkA "pleurocarpous" ; -lin pleurodont_N = mkN "pleurodont" ; -lin pleurodynia_N = mkN "pleurodynia" ; -lin pleuropneumonia_N = mkN "pleuropneumonia" ; -lin pleurothallis_N = mkN "pleurothallis" ; -lin pleximeter_N = mkN "pleximeter" ; -lin plexor_N = mkN "plexor" ; -lin plexus_N = mkN "plexus" "plexus"; -- from DictEng -lin pliability_N = mkN "pliability" ; -- from DictEng -lin pliable_A = compoundA (mkA "pliable"); -- from DictEng -lin pliancy_N = mkN "pliancy" ; -- from DictEng -lin pliant_A = compoundA (mkA "pliant"); -- from DictEng -lin plication_N = mkN "plication" ; -lin plier_N = mkN "plier" ; -lin pliers_N = mkN "pliers" ; -lin plight_N = mkN "plight" "plights"; -- from DictEng -lin plight_V2 = mkV2 (mkV "plight" "plights" "plighted" "plighted" "plighting"); -- from DictEng -lin plimsoll_N = mkN "plimsoll" "plimsolls"; -- from DictEng -lin plink_V = mkV "plink" ; -lin plink_V2 = mkV2 (mkV "plink") ; -lin plinth_N = mkN "plinth" "plinths"; -- from DictEng -lin ploce_N = mkN "ploce" ; -lin plod_V = mkV "plod" "plods" "plodded" "plodded" "plodding"; -- from DictEng -lin plod_V2 = mkV2 (mkV "plod" "plods" "plodded" "plodded" "plodding"); -- from DictEng -lin plodder_N = mkN "plodder" "plodders"; -- from DictEng -lin plodding_A = compoundA (mkA "plodding"); -- from DictEng -lin plodding_N = mkN "plodding" ; -lin ploddingly_Adv = mkAdv "ploddingly" ; -lin plonk_Adv = mkAdv "plonk"; -- from DictEng -lin plonk_N = mkN "plonk" "plonks"; -- from DictEng -lin plonk_V = mkV "plonk" "plonks" "plonked" "plonked" "plonking"; -- from DictEng -lin plonk_V2 = mkV2 (mkV "plonk") ; -lin plop_Adv = mkAdv "plop"; -- from DictEng -lin plop_N = mkN "plop" "plops"; -- from DictEng -lin plop_V = mkV "plop" "plops" "plopped" "plopped" "plopping"; -- from DictEng -lin plop_V2 = mkV2 (mkV "plop") ; -lin plosion_N = mkN "plosion" ; -lin plosive_A = compoundA (mkA "plosive"); -- from DictEng -lin plosive_N = mkN "plosive" "plosives"; -- from DictEng -lin plot_N = mkN "plot" "plots"; -- from DictEng -lin plot_V = mkV "plot" "plots" "plotted" "plotted" "plotting"; -- from DictEng -lin plot_V2 = mkV2 (mkV "plot" "plots" "plotted" "plotted" "plotting"); -- from DictEng -lin plotter_N = mkN "plotter" "plotters"; -- from DictEng -lin plough_N = mkN "plough" "ploughs"; -- from DictEng -lin plough_V = mkV "plough" "ploughs" "ploughed" "ploughed" "ploughing"; -- from DictEng -lin plough_V2 = mkV2 (mkV "plough" "ploughs" "ploughed" "ploughed" "ploughing"); -- from DictEng -lin ploughboy_N = mkN "ploughboy" "ploughboys"; -- from DictEng -lin ploughman_N = mkN "ploughman" "ploughmen" {- FIXME: guessed plural form -}; -- from DictEng -lin ploughshare_N = mkN "ploughshare" "ploughshares"; -- from DictEng -lin plover_N = mkN "plover" "plovers"; -- from DictEng -lin plow_N = mkN "plow" ; -lin plow_V = mkV "plow"; -- from DictEng -lin plow_V2 = mkV2 (mkV "plow"); -- from DictEng -lin plowboy_N = mkN "plowboy" ; -lin plowed_A = mkA "plowed" ; -lin plowing_N = mkN "plowing" ; -lin plowman_N = mkN "plowman" ; -lin plowshare_N = mkN "plowshare" ; -lin plowwright_N = mkN "plowwright" ; -lin ploy_N = mkN "ploy" "ploys"; -- from DictEng -lin pluck_N = mkN "pluck" "plucks"; -- from DictEng -lin pluck_V = mkV "pluck" "plucks" "plucked" "plucked" "plucking"; -- from DictEng -lin pluck_V2 = mkV2 (mkV "pluck" "plucks" "plucked" "plucked" "plucking"); -- from DictEng -lin plucked_A = mkA "plucked" ; -lin pluckily_Adv = mkAdv "pluckily"; -- from DictEng -lin plucky_A = mkA "plucky" "pluckier"; -- from DictEng -lin plug_N = mkN "plug" "plugs"; -- from DictEng -lin plug_V = mkV "plug" "plugs" "plugged" "plugged" "plugging"; -- from DictEng -lin plug_V2 = mkV2 (mkV "plug" "plugs" "plugged" "plugged" "plugging"); -- from DictEng -lin plugged_A = mkA "plugged" ; -lin plughole_N = mkN "plughole" "plugholes"; -- from DictEng -lin plum_N = mkN "plum" "plums"; -- from DictEng -lin plum_yew_N = mkN "plum yew" ; -lin plum_pudding_N = mkN "plum - pudding" "plum - puddings"; -- from DictEng -lin plumage_N = mkN "plumage" ; -- from DictEng -lin plumaged_A = mkA "plumaged" ; -lin plumate_A = mkA "plumate" ; -lin plumb_A = mkA "plumb" ; -lin plumb_Adv = mkAdv "plumb"; -- from DictEng -lin plumb_N = mkN "plumb" "plumbs"; -- from DictEng -lin plumb_V2 = mkV2 (mkV "plumb" "plumbs" "plumbed" "plumbed" "plumbing"); -- from DictEng -lin plumbaginaceous_A = mkA "plumbaginaceous" ; -lin plumbago_N = mkN "plumbago" "plumbagos"; -- from DictEng -lin plumber_N = mkN "plumber" "plumbers"; -- from DictEng -lin plumbic_A = mkA "plumbic" ; -lin plumbing_N = mkN "plumbing" ; -- from DictEng -lin plumcot_N = mkN "plumcot" ; -lin plume_N = mkN "plume" "plumes"; -- from DictEng -lin plume_V2 = mkV2 (mkV "plume" "plumes" "plumed" "plumed" "pluming"); -- from DictEng -lin plume_tipped_A = compoundA (mkA "plume tipped") ; -lin plumed_A = mkA "plumed" ; -lin plumelike_A = mkA "plumelike" ; -lin plumlike_A = mkA "plumlike" ; -lin plummet_N = mkN "plummet" "plummets"; -- from DictEng -lin plummet_V = mkV "plummet" "plummets" "plummeted" "plummeted" "plummeting"; -- from DictEng -lin plummet_V2 = mkV2 (mkV "plummet" "plummets" "plummeted" "plummeted" "plummeting"); -- from DictEng -lin plummy_A = mkA "plummy" "plummier"; -- from DictEng -lin plump_A = mkA "plump" "plumper"; -- from DictEng -lin plump_Adv = mkAdv "plump"; -- from DictEng -lin plump_N = mkN "plump" "plumps"; -- from DictEng -lin plump_V = mkV "plump" "plumps" "plumped" "plumped" "plumping"; -- from DictEng -lin plump_V2 = mkV2 (mkV "plump" "plumps" "plumped" "plumped" "plumping"); -- from DictEng -lin plumping_A = mkA "plumping" ; -lin plumpness_N = mkN "plumpness" ; -lin plumule_N = mkN "plumule" ; -lin plunder_N = mkN "plunder" ; -- from DictEng -lin plunder_V = mkV "plunder" "plunders" "plundered" "plundered" "plundering"; -- from DictEng -lin plunder_V2 = mkV2 (mkV "plunder" "plunders" "plundered" "plundered" "plundering"); -- from DictEng -lin plunderage_N = mkN "plunderage" ; -lin plunderer_N = mkN "plunderer" "plunderers"; -- from DictEng -lin plundering_A = mkA "plundering" ; -lin plundering_N = mkN "plundering" ; -lin plunge_N = mkN "plunge" "plunges"; -- from DictEng -lin plunge_V = mkV "plunge" "plunges" "plunged" "plunged" "plunging"; -- from DictEng -lin plunge_V2 = mkV2 (mkV "plunge" "plunges" "plunged" "plunged" "plunging"); -- from DictEng -lin plunger_N = mkN "plunger" "plungers"; -- from DictEng -lin plunk_N = mkN "plunk" "plunks"; -- from DictEng -lin plunk_V = mkV "plunk" ; -lin plunk_V2 = mkV2 (mkV "plunk") ; -lin pluperfect_A = compoundA (mkA "pluperfect"); -- from DictEng -lin pluperfect_N = mkN "pluperfect" "pluperfects"; -- from DictEng -lin plural_A = compoundA (mkA "plural"); -- from DictEng -lin plural_N = mkN "plural" "plurals"; -- from DictEng -lin pluralism_N = mkN "pluralism" ; -- from DictEng -lin pluralist_N = mkN "pluralist" "pluralists"; -- from DictEng -lin pluralistic_A = mkA "pluralistic" ; -lin plurality_N = mkN "plurality" "pluralities"; -- from DictEng -lin pluralization_N = mkN "pluralization" ; -lin plus_A = compoundA (mkA "plus"); -- from DictEng -lin plus_N = mkN "plus" "pluses"; -- from DictEng -lin plus_Prep = mkPrep "plus"; -- from DictEng -lin plush_A = mkA "plush" "plusher"; -- from DictEng -lin plush_N = mkN "plush" ; -- from DictEng -lin plushy_A = mkA "plushy" "plushier"; -- from DictEng -lin plutocracy_N = mkN "plutocracy" "plutocracies"; -- from DictEng -lin plutocrat_N = mkN "plutocrat" "plutocrats"; -- from DictEng -lin plutocratic_A = compoundA (mkA "plutocratic"); -- from DictEng -lin plutonium_N = mkN "plutonium" ; -- from DictEng -lin ply_N = mkN "ply" "ply"; -- from DictEng -lin ply_V = mkV "ply" "plies" "plied" "plied" "plying"; -- from DictEng -lin ply_V2 = mkV2 (mkV "ply" "plies" "plied" "plied" "plying"); -- from DictEng -lin ply_VS = mkVS (mkV "ply" "plies" "plied" "plied" "plying"); -- from DictEng -lin plywood_N = mkN "plywood" ; -- from DictEng -lin pneumatic_A = compoundA (mkA "pneumatic"); -- from DictEng -lin pneumatically_Adv = mkAdv "pneumatically"; -- from DictEng -lin pneumatics_N = mkN "pneumatics" ; -lin pneumatophore_N = mkN "pneumatophore" ; -lin pneumococcal_A = mkA "pneumococcal" ; -lin pneumococcus_N = mkN "pneumococcus" ; -lin pneumoconiosis_N = mkN "pneumoconiosis" ; -lin pneumocytosis_N = mkN "pneumocytosis" ; -lin pneumogastric_A = mkA "pneumogastric" ; -lin pneumonectomy_N = mkN "pneumonectomy" ; -lin pneumonia_N = mkN "pneumonia" ; -- from DictEng -lin pneumonic_A = mkA "pneumonic" ; -lin pneumonitis_N = mkN "pneumonitis" ; -lin pneumothorax_N = mkN "pneumothorax" ; -lin po_N = mkN "po" ; -- from DictEng -lin po_faced_A = compoundA (mkA "po faced") ; -lin poach_V = mkV "poach" "poaches" "poached" "poached" "poaching"; -- from DictEng -lin poach_V2 = mkV2 (mkV "poach" "poaches" "poached" "poached" "poaching"); -- from DictEng -lin poacher_N = mkN "poacher" "poachers"; -- from DictEng -lin poaching_N = mkN "poaching" ; -lin pochard_N = mkN "pochard" ; -lin pock_N = mkN "pock" "pocks"; -- from DictEng -lin pocked_A = compoundA (mkA "pocked"); -- from DictEng -lin pocket_N = mkN "pocket" "pockets"; -- from DictEng -lin pocket_V2 = mkV2 (mkV "pocket" "pockets" "pocketed" "pocketed" "pocketing"); -- from DictEng -lin pocket_handkerchief_N = mkN "pocket - handkerchief" "pocket - handkerchiefs"; -- from DictEng -lin pocket_size_A = compoundA (mkA "pocket size") ; -lin pocket_book_N = mkN "pocket - book" "pocket - books"; -- from DictEng -lin pocket_handkerchief_N = mkN "pocket - handkerchief" "pocket - handkerchiefs"; -- from DictEng -lin pocket_knife_N = mkN "pocket - knife" "pocket - knives"; -- from DictEng -lin pocket_money_N = mkN "pocket - money" ; -- from DictEng -lin pocketbook_N = mkN "pocketbook" ; -lin pocketcomb_N = mkN "pocketcomb" ; -lin pocketful_N = mkN "pocketful" "pocketfuls"; -- from DictEng -lin pocketknife_N = mkN "pocketknife" ; -lin pockmark_N = mkN "pockmark" ; -lin pockmarked_A = compoundA (mkA "pockmarked"); -- from DictEng -lin pod_N = mkN "pod" "pods"; -- from DictEng -lin pod_V = mkV "pod" "pods" "podded" "podded" "podding"; -- from DictEng -lin pod_V2 = mkV2 (mkV "pod" "pods" "podded" "podded" "podding"); -- from DictEng -lin podalgia_N = mkN "podalgia" ; -lin podetium_N = mkN "podetium" ; -lin podgy_A = mkA "podgy" "podgier"; -- from DictEng -lin podiatry_N = mkN "podiatry" ; -- from DictEng -lin podium_N = mkN "podium" "podiums"; -- from DictEng -lin podlike_A = mkA "podlike" ; -lin podocarp_N = mkN "podocarp" ; -lin podzol_N = mkN "podzol" ; -lin poem_N = mkN "poem" "poems"; -- from DictEng -lin poesy_N = mkN "poesy" ; -- from DictEng -lin poet_N = mkN "poet" "poets"; -- from DictEng -lin poetess_N = mkN "poetess" "poetesses"; -- from DictEng -lin poetic_A = compoundA (mkA "poetic"); -- from DictEng -lin poetical_A = compoundA (mkA "poetical"); -- from DictEng -lin poetically_Adv = mkAdv "poetically" ; -lin poetics_N = mkN "poetics" ; -lin poetry_N = mkN "poetry" ; -- from DictEng -lin pogge_N = mkN "pogge" ; -lin pogonia_N = mkN "pogonia" ; -lin pogonion_N = mkN "pogonion" ; -lin pogrom_N = mkN "pogrom" "pogroms"; -- from DictEng -lin poi_N = mkN "poi" ; -lin poignance_N = mkN "poignance" ; -lin poignancy_N = mkN "poignancy" ; -- from DictEng -lin poignant_A = compoundA (mkA "poignant"); -- from DictEng -lin poikilotherm_N = mkN "poikilotherm" ; -lin poikilothermic_A = mkA "poikilothermic" ; -lin poilu_N = mkN "poilu" ; -lin poinsettia_N = mkN "poinsettia" "poinsettias"; -- from DictEng -lin point_N = mkN "point" "points"; -- from DictEng -lin point_V = mkV "point" "points" "pointed" "pointed" "pointing"; -- from DictEng -lin point_V2 = mkV2 (mkV "point" "points" "pointed" "pointed" "pointing"); -- from DictEng -lin point_blank_A = compoundA (mkA "point - blank"); -- from DictEng -lin point_blank_Adv = mkAdv "point - blank"; -- from DictEng -lin point_of_sale_A = compoundA (mkA "point of sale") ; -lin point_blank_A = compoundA (mkA "point - blank"); -- from DictEng -lin point_blank_Adv = mkAdv "point - blank"; -- from DictEng -lin point_duty_N = mkN "point - duty" ; -- from DictEng -lin pointed_A = compoundA (mkA "pointed"); -- from DictEng -lin pointedly_Adv = mkAdv "pointedly" ; -lin pointedness_N = mkN "pointedness" ; -lin pointer_N = mkN "pointer" "pointers"; -- from DictEng -lin pointillism_N = mkN "pointillism" ; -lin pointillist_A = mkA "pointillist" ; -lin pointillist_N = mkN "pointillist" ; -lin pointless_A = compoundA (mkA "pointless"); -- from DictEng -lin pointlessly_Adv = mkAdv "pointlessly" ; -lin pointsman_N = mkN "pointsman" "pointsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin pointy_toed_A = compoundA (mkA "pointy toed") ; -lin poise_N = mkN "poise" ; -- from DictEng -lin poise_V = mkV "poise" "poises" "poised" "poised" "poising"; -- from DictEng -lin poise_V2 = mkV2 (mkV "poise" "poises" "poised" "poised" "poising"); -- from DictEng -lin poised_A = mkA "poised" ; -lin poison_N = mkN "poison" "poisons"; -- from DictEng -lin poison_V2 = mkV2 (mkV "poison" "poisons" "poisoned" "poisoned" "poisoning"); -- from DictEng -lin poison_gas_N = mkN "poison - gas" "poison - gases"; -- from DictEng -lin poison_ivy_N = mkN "poison - ivy" "poison - ivies"; -- from DictEng -lin poisoner_N = mkN "poisoner" "poisoners"; -- from DictEng -lin poisoning_N = mkN "poisoning" ; -lin poisonous_A = compoundA (mkA "poisonous"); -- from DictEng -lin poisonously_Adv = mkAdv "poisonously" ; -lin poke_N = mkN "poke" "pokes"; -- from DictEng -lin poke_V = mkV "poke" "pokes" "poked" "poked" "poking"; -- from DictEng -lin poke_V2 = mkV2 (mkV "poke" "pokes" "poked" "poked" "poking"); -- from DictEng -lin poke_bonnet_N = mkN "poke - bonnet" "poke - bonnets"; -- from DictEng -lin poker_N = mkN "poker" "pokers"; -- from DictEng -lin poker_face_N = mkN "poker - face" "poker - faces"; -- from DictEng -lin pokeweed_N = mkN "pokeweed" ; -lin poky_A = mkA "poky" "pokier"; -- from DictEng -lin polack_N = mkN "polack" ; -lin polar_A = compoundA (mkA "polar"); -- from DictEng -lin polarimeter_N = mkN "polarimeter" ; -lin polaris_N = mkN "polaris" "polares" {- FIXME: guessed plural form -}; -- from DictEng -lin polarity_N = mkN "polarity" "polarities"; -- from DictEng -lin polarization_N = mkN "polarization" "polarizations"; -- from DictEng -lin polarize_V2 = mkV2 (mkV "polarize" "polarizes" "polarized" "polarized" "polarizing"); -- from DictEng -lin polarographic_A = mkA "polarographic" ; -lin polarography_N = mkN "polarography" ; -lin polaroid_N = mkN "polaroid" ; -- from DictEng -lin polder_N = mkN "polder" ; -lin pole_N = mkN "pole" "poles"; -- from DictEng -lin pole_jumping_N = mkN "pole - jumping" ; -- from DictEng -lin pole_star_N = mkN "pole - star" "pole - stars"; -- from DictEng -lin pole_vault_N = mkN "pole - vault" "pole - vaults"; -- from DictEng -lin poleax_N = mkN "poleax" "poleaxes"; -- from DictEng -lin poleax_V2 = mkV2 (mkV "poleax" "poleaxes" "poleaxed" "poleaxed" "poleaxing"); -- from DictEng -lin poleaxe_N = mkN "poleaxe" "poleaxes"; -- from DictEng -lin poleaxe_V2 = mkV2 (mkV "poleaxe" "poleaxes" "poleaxed" "poleaxed" "poleaxing"); -- from DictEng -lin polecat_N = mkN "polecat" "polecats"; -- from DictEng -lin polemic_A = compoundA (mkA "polemic"); -- from DictEng -lin polemic_N = mkN "polemic" "polemics"; -- from DictEng -lin polemically_Adv = mkAdv "polemically"; -- from DictEng -lin polemicist_N = mkN "polemicist" ; -lin polemics_N = mkN "polemics" ; -lin polemoniaceous_A = mkA "polemoniaceous" ; -lin polemonium_N = mkN "polemonium" ; -lin polenta_N = mkN "polenta" ; -lin police_N = mkN "police" ; -lin police_V2 = mkV2 (mkV "police" "polices" "policed" "policed" "policing"); -- from DictEng -lin police_office_N = mkN "police - office" "police - offices"; -- from DictEng -lin police_officer_N = mkN "police - officer" "police - officers"; -- from DictEng -lin police_station_N = mkN "police - station" "police - stations"; -- from DictEng -lin policeman_N = mkN "policeman" "policemen" {- FIXME: guessed plural form -}; -- from DictEng -lin policewoman_N = mkN "policewoman" "policewomen" {- FIXME: guessed plural form -}; -- from DictEng -lin policy_N = mkN "policy" "policies"; -- from DictEng -lin policy_making_A = compoundA (mkA "policy making") ; -lin policyholder_N = mkN "policyholder" ; -lin polio_N = mkN "polio" ; -- from DictEng -lin poliomyelitis_N = mkN "poliomyelitis" ; -- from DictEng -lin poliosis_N = mkN "poliosis" ; -lin poliovirus_N = mkN "poliovirus" ; -lin polish_A = compoundA (mkA "polish"); -- from DictEng -lin polish_N = mkN "polish" ; -- from DictEng -lin polish_V = mkV "polish" "polishes" "polished" "polished" "polishing"; -- from DictEng -lin polish_V2 = mkV2 (mkV "polish" "polishes" "polished" "polished" "polishing"); -- from DictEng -lin polished_A = mkA "polished" ; -lin polisher_N = mkN "polisher" "polishers"; -- from DictEng -lin politburo_N = mkN "politburo" "politburos"; -- from DictEng -lin polite_A = mkA "polite" "politer"; -- from DictEng -lin politely_Adv = mkAdv "politely" ; -lin politeness_N = mkN "politeness" ; -- from DictEng -lin politic_A = compoundA (mkA "politic"); -- from DictEng -lin political_A = compoundA (mkA "political"); -- from DictEng -lin politically_Adv = mkAdv "politically" ; -lin politically_correct_A = compoundA (mkA "politically correct") ; -lin politically_incorrect_A = compoundA (mkA "politically incorrect") ; -lin politician_N = mkN "politician" "politicians"; -- from DictEng -lin politicize_V = mkV "politicize" "politicizes" "politicized" "politicized" "politicizing"; -- from DictEng -lin politicize_V2 = mkV2 (mkV "politicize" "politicizes" "politicized" "politicized" "politicizing"); -- from DictEng -lin politick_V = mkV "politick" "politicks" "politicked" "politicked" "politicking"; -- from DictEng -lin politics_N = mkN "politics" "politics"; -- from DictEng -lin polity_N = mkN "polity" "polities"; -- from DictEng -lin polka_N = mkN "polka" "polkas"; -- from DictEng -lin poll_N = mkN "poll" "polls"; -- from DictEng -lin poll_V = mkV "poll" "polls" "polled" "polled" "polling"; -- from DictEng -lin poll_V2 = mkV2 (mkV "poll" "polls" "polled" "polled" "polling"); -- from DictEng -lin poll_tax_N = mkN "poll - tax" "poll - taxes"; -- from DictEng -lin pollack_N = mkN "pollack" ; -lin pollard_N = mkN "pollard" "pollards"; -- from DictEng -lin pollard_V2 = mkV2 (mkV "pollard" "pollards" "pollarded" "pollarded" "pollarding"); -- from DictEng -lin pollen_N = mkN "pollen" ; -- from DictEng -lin pollinate_V2 = mkV2 (mkV "pollinate" "pollinates" "pollinated" "pollinated" "pollinating"); -- from DictEng -lin pollination_N = mkN "pollination" ; -- from DictEng -lin pollinator_N = mkN "pollinator" ; -lin polling_booth_N = mkN "polling - booth" "polling - booths"; -- from DictEng -lin polling_day_N = mkN "polling - day" "polling - days"; -- from DictEng -lin polling_station_N = mkN "polling - station" "polling - stations"; -- from DictEng -lin pollinium_N = mkN "pollinium" ; -lin polls_N = mkN "polls" ; -lin pollster_N = mkN "pollster" "pollsters"; -- from DictEng -lin pollucite_N = mkN "pollucite" ; -lin pollutant_N = mkN "pollutant" "pollutants"; -- from DictEng -lin pollute_V2 = mkV2 (mkV "pollute" "pollutes" "polluted" "polluted" "polluting"); -- from DictEng -lin polluter_N = mkN "polluter" ; -lin pollution_N = mkN "pollution" ; -- from DictEng -lin polo_N = mkN "polo" ; -- from DictEng -lin polo_neck_A = compoundA (mkA "polo - neck"); -- from DictEng -lin polonaise_N = mkN "polonaise" "polonaises"; -- from DictEng -lin polonium_N = mkN "polonium" ; -lin polony_N = mkN "polony" ; -- from DictEng -lin poltergeist_N = mkN "poltergeist" "poltergeists"; -- from DictEng -lin poltroon_A = mkA "poltroon" ; -lin poltroon_N = mkN "poltroon" "poltroons"; -- from DictEng -lin poltroonery_N = mkN "poltroonery" ; -- from DictEng -lin poly_N = mkN "poly" "polys"; -- from DictEng -lin polyamide_N = mkN "polyamide" ; -lin polyandrist_N = mkN "polyandrist" ; -lin polyandrous_A = compoundA (mkA "polyandrous"); -- from DictEng -lin polyandry_N = mkN "polyandry" ; -- from DictEng -lin polyanthus_N = mkN "polyanthus" "polyanthuses"; -- from DictEng -lin polyarteritis_N = mkN "polyarteritis" ; -lin polyatomic_A = mkA "polyatomic" ; -lin polybutylene_N = mkN "polybutylene" ; -lin polychaete_N = mkN "polychaete" ; -lin polychromatic_A = mkA "polychromatic" ; -lin polychrome_N = mkN "polychrome" ; -lin polycrystalline_A = mkA "polycrystalline" ; -lin polycythemia_N = mkN "polycythemia" ; -lin polydactyl_A = mkA "polydactyl" ; -lin polydactyly_N = mkN "polydactyly" ; -lin polydipsia_N = mkN "polydipsia" ; -lin polyelectrolyte_N = mkN "polyelectrolyte" ; -lin polyester_N = mkN "polyester" ; -lin polyestrous_A = mkA "polyestrous" ; -lin polyethylene_N = mkN "polyethylene" ; -lin polyfoam_N = mkN "polyfoam" ; -lin polygamist_N = mkN "polygamist" "polygamists"; -- from DictEng -lin polygamous_A = compoundA (mkA "polygamous"); -- from DictEng -lin polygamy_N = mkN "polygamy" ; -- from DictEng -lin polygene_N = mkN "polygene" ; -lin polygenic_A = mkA "polygenic" ; -lin polyglot_A = compoundA (mkA "polyglot"); -- from DictEng -lin polyglot_N = mkN "polyglot" "polyglots"; -- from DictEng -lin polygon_N = mkN "polygon" "polygons"; -- from DictEng -lin polygonal_A = compoundA (mkA "polygonal"); -- from DictEng -lin polygonally_Adv = mkAdv "polygonally" ; -lin polygraph_N = mkN "polygraph" ; -lin polygynist_N = mkN "polygynist" ; -lin polygynous_A = mkA "polygynous" ; -lin polygyny_N = mkN "polygyny" ; -lin polyhedral_A = mkA "polyhedral" ; -lin polyhedron_N = mkN "polyhedron" ; -lin polymastigote_N = mkN "polymastigote" ; -lin polymath_N = mkN "polymath" ; -lin polymer_N = mkN "polymer" ; -lin polymerase_N = mkN "polymerase" ; -lin polymeric_A = mkA "polymeric" ; -lin polymerization_N = mkN "polymerization" ; -lin polymorph_N = mkN "polymorph" ; -lin polymorphemic_A = mkA "polymorphemic" ; -lin polymorphic_A = compoundA (mkA "polymorphic"); -- from DictEng -lin polymorphism_N = mkN "polymorphism" ; -lin polymorphous_A = compoundA (mkA "polymorphous"); -- from DictEng -lin polymyositis_N = mkN "polymyositis" ; -lin polymyxin_N = mkN "polymyxin" ; -lin polyneuritis_N = mkN "polyneuritis" ; -lin polynomial_A = compoundA (mkA "polynomial"); -- from DictEng -lin polynomial_N = mkN "polynomial" "polynomials"; -- from DictEng -lin polynya_N = mkN "polynya" ; -lin polyoma_N = mkN "polyoma" ; -lin polyp_N = mkN "polyp" "polyps"; -- from DictEng -lin polypectomy_N = mkN "polypectomy" ; -lin polypeptide_N = mkN "polypeptide" ; -lin polypetalous_A = mkA "polypetalous" ; -lin polyphone_N = mkN "polyphone" ; -lin polyphonic_A = compoundA (mkA "polyphonic"); -- from DictEng -lin polyphonically_Adv = mkAdv "polyphonically" ; -lin polyphony_N = mkN "polyphony" ; -- from DictEng -lin polyphosphate_N = mkN "polyphosphate" ; -lin polyploid_A = mkA "polyploid" ; -lin polyploid_N = mkN "polyploid" ; -lin polyploidy_N = mkN "polyploidy" ; -lin polypody_N = mkN "polypody" ; -lin polypore_N = mkN "polypore" ; -lin polypropenonitrile_N = mkN "polypropenonitrile" ; -lin polypropylene_N = mkN "polypropylene" ; -lin polyptoton_N = mkN "polyptoton" ; -lin polypus_N = mkN "polypus" "polypuses"; -- from DictEng -lin polysaccharide_N = mkN "polysaccharide" ; -lin polysemant_N = mkN "polysemant" ; -lin polysemous_A = mkA "polysemous" ; -lin polysemy_N = mkN "polysemy" ; -lin polysomy_N = mkN "polysomy" ; -lin polystyrene_N = mkN "polystyrene" ; -lin polysyllabic_A = compoundA (mkA "polysyllabic"); -- from DictEng -lin polysyllabically_Adv = mkAdv "polysyllabically" ; -lin polysyllable_N = mkN "polysyllable" "polysyllables"; -- from DictEng -lin polysyndeton_N = mkN "polysyndeton" ; -lin polytechnic_N = mkN "polytechnic" "polytechnics"; -- from DictEng -lin polytheism_N = mkN "polytheism" ; -- from DictEng -lin polytheist_N = mkN "polytheist" ; -lin polytheistic_A = compoundA (mkA "polytheistic"); -- from DictEng -lin polythene_N = mkN "polythene" ; -- from DictEng -lin polytonal_A = mkA "polytonal" ; -lin polytonality_N = mkN "polytonality" ; -lin polyunsaturated_A = mkA "polyunsaturated" ; -lin polyurethane_N = mkN "polyurethane" ; -lin polyuria_N = mkN "polyuria" ; -lin polyvalence_N = mkN "polyvalence" ; -lin polyvalent_A = mkA "polyvalent" ; -lin polyvinyl_formaldehyde_N = mkN "polyvinyl formaldehyde" ; -lin pom_N = mkN "pom" "poms"; -- from DictEng -lin pomade_N = mkN "pomade" ; -- from DictEng -lin pomade_V2 = mkV2 (mkV "pomade" "pomades" "pomaded" "pomaded" "pomading"); -- from DictEng -lin pomaded_A = mkA "pomaded" ; -lin pome_N = mkN "pome" ; -lin pomegranate_N = mkN "pomegranate" "pomegranates"; -- from DictEng -lin pomelo_N = mkN "pomelo" "pomelos"; -- from DictEng -lin pomfret_N = mkN "pomfret" ; -lin pommel_N = mkN "pommel" "pommels"; -- from DictEng -lin pommel_V2 = mkV2 (mkV "pommel" "pommels" "pommelled" "pommelled" "pommelling"); -- from DictEng -lin pommy_N = mkN "pommy" "pommies"; -- from DictEng -lin pomologist_N = mkN "pomologist" ; -lin pomology_N = mkN "pomology" ; -lin pomp_N = mkN "pomp" ; -- from DictEng -lin pompadour_N = mkN "pompadour" ; -lin pompano_N = mkN "pompano" ; -lin pompon_N = mkN "pompon" "pompons"; -- from DictEng -lin pomposity_N = mkN "pomposity" "pomposities"; -- from DictEng -lin pompous_A = compoundA (mkA "pompous"); -- from DictEng -lin pompously_Adv = mkAdv "pompously" ; -lin ponce_N = mkN "ponce" "ponces"; -- from DictEng -lin poncho_N = mkN "poncho" "ponchos"; -- from DictEng -lin pond_N = mkN "pond" "ponds"; -- from DictEng -lin ponder_V = mkV "ponder" "ponders" "pondered" "pondered" "pondering"; -- from DictEng -lin ponder_V2 = mkV2 (mkV "ponder" "ponders" "pondered" "pondered" "pondering"); -- from DictEng -lin ponder_VS = mkVS (mkV "ponder" "ponders" "pondered" "pondered" "pondering"); -- from DictEng -lin ponderable_A = compoundA (mkA "ponderable"); -- from DictEng -lin ponderosa_N = mkN "ponderosa" ; -lin ponderous_A = compoundA (mkA "ponderous"); -- from DictEng -lin ponderously_Adv = mkAdv "ponderously" ; -lin ponderousness_N = mkN "ponderousness" ; -lin pondweed_N = mkN "pondweed" ; -lin pone_N = mkN "pone" "pones"; -- from DictEng -lin pongee_N = mkN "pongee" ; -- from DictEng -lin poniard_N = mkN "poniard" "poniards"; -- from DictEng -lin poniard_V2 = mkV2 (mkV "poniard" "poniards" "poniarded" "poniarded" "poniarding"); -- from DictEng -lin pons_N = mkN "pons" ; -lin pontifex_N = mkN "pontifex" ; -lin pontiff_N = mkN "pontiff" "pontiffs"; -- from DictEng -lin pontifical_A = compoundA (mkA "pontifical"); -- from DictEng -lin pontifical_N = mkN "pontifical" ; -lin pontificate_N = mkN "pontificate" "pontificates"; -- from DictEng -lin pontificate_V = mkV "pontificate" "pontificates" "pontificated" "pontificated" "pontificating"; -- from DictEng -lin pontoon_N = mkN "pontoon" "pontoons"; -- from DictEng -lin pony_N = mkN "pony" "ponies"; -- from DictEng -lin pony_trekking_N = mkN "pony - trekking" ; -- from DictEng -lin pony_trekking_N = mkN "pony - trekking" ; -- from DictEng -lin ponytail_N = mkN "ponytail" "ponytails"; -- from DictEng -lin pooch_N = mkN "pooch" ; -lin pood_N = mkN "pood" ; -lin poodle_N = mkN "poodle" "poodles"; -- from DictEng -lin poof_N = mkN "poof" "poofs"; -- from DictEng -lin pooh_pooh_V2 = mkV2 (mkV "pooh - pooh" "pooh - poohs" "pooh - poohed" "pooh - poohed" "pooh - poohing"); -- from DictEng -lin pool_N = mkN "pool" "pools"; -- from DictEng -lin pool_V2 = mkV2 (mkV "pool" "pools" "pooled" "pooled" "pooling"); -- from DictEng -lin pooler_N = mkN "pooler" ; -lin poolroom_N = mkN "poolroom" "poolrooms"; -- from DictEng -lin poon_N = mkN "poon" ; -lin poop_N = mkN "poop" "poops"; -- from DictEng -lin poor_A = mkA "poor" "poorer"; -- from DictEng -lin poor_box_N = mkN "poor - box" "poor - boxes"; -- from DictEng -lin poor_rate_N = mkN "poor - rate" "poor - rates"; -- from DictEng -lin poor_spirited_A = compoundA (mkA "poor - spirited"); -- from DictEng -lin poorhouse_N = mkN "poorhouse" "poorhouses"; -- from DictEng -lin poorly_A = compoundA (mkA "poorly"); -- from DictEng -lin poorness_N = mkN "poorness" ; -- from DictEng -lin poorwill_N = mkN "poorwill" ; -lin pop_A = compoundA (mkA "pop"); -- from DictEng -lin pop_Adv = mkAdv "pop"; -- from DictEng -lin pop_N = mkN "pop" "pops"; -- from DictEng -lin pop_V = mkV "pop" "pops" "popped" "popped" "popping"; -- from DictEng -lin pop_V2 = mkV2 (mkV "pop" "pops" "popped" "popped" "popping"); -- from DictEng -lin pop_up_V = mkV "pop up" ; -lin popcorn_N = mkN "popcorn" "popcorns"; -- from DictEng -lin pope_N = mkN "pope" "popes"; -- from DictEng -lin popery_N = mkN "popery" ; -- from DictEng -lin popeyed_A = compoundA (mkA "popeyed"); -- from DictEng -lin popgun_N = mkN "popgun" "popguns"; -- from DictEng -lin popinjay_N = mkN "popinjay" "popinjays"; -- from DictEng -lin popish_A = compoundA (mkA "popish"); -- from DictEng -lin popishly_Adv = mkAdv "popishly" ; -lin poplar_N = mkN "poplar" "poplars"; -- from DictEng -lin poplin_N = mkN "poplin" ; -- from DictEng -lin popliteal_A = mkA "popliteal" ; -lin popover_N = mkN "popover" ; -lin poppa_N = mkN "poppa" "poppas"; -- from DictEng -lin popper_N = mkN "popper" ; -lin poppet_N = mkN "poppet" "poppets"; -- from DictEng -lin poppy_N = mkN "poppy" "poppies"; -- from DictEng -lin poppycock_N = mkN "poppycock" ; -- from DictEng -lin populace_N = mkN "populace" "populaces"; -- from DictEng -lin popular_A = compoundA (mkA "popular"); -- from DictEng -lin popularism_N = mkN "popularism" ; -lin popularity_N = mkN "popularity" ; -- from DictEng -lin popularization_N = mkN "popularization" "popularizations"; -- from DictEng -lin popularize_V2 = mkV2 (mkV "popularize" "popularizes" "popularized" "popularized" "popularizing"); -- from DictEng -lin popularizer_N = mkN "popularizer" ; -lin popularly_Adv = mkAdv "popularly" ; -lin populate_V2 = mkV2 (mkV "populate" "populates" "populated" "populated" "populating"); -- from DictEng -lin populated_A = mkA "populated" ; -lin population_N = mkN "population" "populations"; -- from DictEng -lin populism_N = mkN "populism" ; -- from DictEng -lin populist_N = mkN "populist" "populists"; -- from DictEng -lin populous_A = compoundA (mkA "populous"); -- from DictEng -lin porbeagle_N = mkN "porbeagle" ; -lin porcelain_N = mkN "porcelain" ; -- from DictEng -lin porch_N = mkN "porch" "porches"; -- from DictEng -lin porcine_A = compoundA (mkA "porcine"); -- from DictEng -lin porcupine_N = mkN "porcupine" "porcupines"; -- from DictEng -lin porcupinefish_N = mkN "porcupinefish" ; -lin pore_N = mkN "pore" "pores"; -- from DictEng -lin pore_V = mkV "pore" "pores" "pored" "pored" "poring"; -- from DictEng -lin porgy_N = mkN "porgy" ; -lin pork_N = mkN "pork" ; -- from DictEng -lin pork_barreling_N = mkN "pork barreling" ; -lin pork_barrel_N = mkN "pork - barrel" "pork - barrels"; -- from DictEng -lin pork_butcher_N = mkN "pork - butcher" "pork - butchers"; -- from DictEng -lin porkchop_N = mkN "porkchop" ; -lin porker_N = mkN "porker" "porkers"; -- from DictEng -lin porkfish_N = mkN "porkfish" ; -lin porkholt_N = mkN "porkholt" ; -lin porkpie_N = mkN "porkpie" ; -lin porn_N = mkN "porn" ; -- from DictEng -lin pornographer_N = mkN "pornographer" "pornographers"; -- from DictEng -lin pornographic_A = compoundA (mkA "pornographic"); -- from DictEng -lin pornographically_Adv = mkAdv "pornographically" ; -lin pornography_N = mkN "pornography" ; -- from DictEng -lin porose_A = mkA "porose" ; -lin porosity_N = mkN "porosity" "porosities"; -- from DictEng -lin porous_A = compoundA (mkA "porous"); -- from DictEng -lin porousness_N = mkN "porousness" ; -- from DictEng -lin porphyria_N = mkN "porphyria" ; -lin porphyrin_N = mkN "porphyrin" ; -lin porphyritic_A = mkA "porphyritic" ; -lin porphyry_N = mkN "porphyry" ; -- from DictEng -lin porpoise_N = mkN "porpoise" "porpoises"; -- from DictEng -lin porridge_N = mkN "porridge" ; -- from DictEng -lin porringer_N = mkN "porringer" "porringers"; -- from DictEng -lin port_A = mkA "port" ; -lin port_N = mkN "port" "ports"; -- from DictEng -lin port_V2 = mkV2 (mkV "port" "ports" "ported" "ported" "porting"); -- from DictEng -lin portability_N = mkN "portability" ; -- from DictEng -lin portable_A = compoundA (mkA "portable"); -- from DictEng -lin portable_N = mkN "portable" ; -lin portage_N = mkN "portage" "portages"; -- from DictEng -lin portal_N = mkN "portal" "portals"; -- from DictEng -lin portcullis_N = mkN "portcullis" "portcullises"; -- from DictEng -lin porte_cochere_N = mkN "porte - cochère" "porte - cochères"; -- from DictEng -lin porte_cochere_N = mkN "porte - cochère" "porte - cochères"; -- from DictEng -lin portend_V2 = mkV2 (mkV "portend" "portends" "portended" "portended" "portending"); -- from DictEng -lin portent_N = mkN "portent" "portents"; -- from DictEng -lin portentous_A = compoundA (mkA "portentous"); -- from DictEng -lin portentously_Adv = mkAdv "portentously" ; -lin porter_N = mkN "porter" "porters"; -- from DictEng -lin porterage_N = mkN "porterage" ; -- from DictEng -lin porterhouse_N = mkN "porterhouse" "porterhouses"; -- from DictEng -lin portfolio_N = mkN "portfolio" "portfolios"; -- from DictEng -lin porthole_N = mkN "porthole" "portholes"; -- from DictEng -lin portico_N = mkN "portico" "porticos"; -- from DictEng -lin portiere_N = mkN "portière" "portières"; -- from DictEng -lin portion_N = mkN "portion" "portions"; -- from DictEng -lin portion_V2 = mkV2 (mkV "portion" "portions" "portioned" "portioned" "portioning"); -- from DictEng -lin portly_A = compoundA (mkA "portly"); -- from DictEng -lin portmanteau_N = mkN "portmanteau" "portmanteaus"; -- from DictEng -lin portrait_N = mkN "portrait" "portraits"; -- from DictEng -lin portraitist_N = mkN "portraitist" "portraitists"; -- from DictEng -lin portraiture_N = mkN "portraiture" ; -- from DictEng -lin portray_V2 = mkV2 (mkV "portray" "portrays" "portrayed" "portrayed" "portraying"); -- from DictEng -lin portrayal_N = mkN "portrayal" "portrayals"; -- from DictEng -lin portuguese_A = compoundA (mkA "Portuguese"); -- from DictEng -lin portuguese_N = mkN "Portuguese" "Portuguese"; -- from DictEng -lin portulaca_N = mkN "portulaca" ; -lin portwatcher_N = mkN "portwatcher" ; -lin pose_N = mkN "pose" "poses"; -- from DictEng -lin pose_V = mkV "pose" "poses" "posed" "posed" "posing"; -- from DictEng -lin pose_V2 = mkV2 (mkV "pose" "poses" "posed" "posed" "posing"); -- from DictEng -lin posed_A = mkA "posed" ; -lin poser_N = mkN "poser" "posers"; -- from DictEng -lin poseur_N = mkN "poseur" "poseurs"; -- from DictEng -lin poseuse_N = mkN "poseuse" "IRREG"; -- from DictEng -lin posh_A = mkA "posh" "posher"; -- from DictEng -lin posh_V2 = mkV2 (mkV "posh" "poshes" "poshed" "poshed" "poshing"); -- from DictEng -lin posit_V2 = mkV2 (mkV "posit" "posits" "posited" "posited" "positing"); -- from DictEng -lin position_N = mkN "position" "positions"; -- from DictEng -lin position_V2 = mkV2 (mkV "position" "positions" "positioned" "positioned" "positioning"); -- from DictEng -lin position_V2V = mkV2V (mkV "position") noPrep to_Prep ; -- from DictEng -lin positionable_A = mkA "positionable" ; -lin positional_A = mkA "positional" ; -lin positive_A = compoundA (mkA "positive"); -- from DictEng -lin positive_N = mkN "positive" "positives"; -- from DictEng -lin positively_Adv = mkAdv "positively" ; -lin positiveness_N = mkN "positiveness" ; -- from DictEng -lin positivism_N = mkN "positivism" ; -- from DictEng -lin positivist_A = mkA "positivist" ; -lin positivist_N = mkN "positivist" "positivists"; -- from DictEng -lin positivity_N = mkN "positivity" ; -lin positron_N = mkN "positron" ; -lin posology_N = mkN "posology" ; -lin posse_N = mkN "posse" "posses"; -- from DictEng -lin posseman_N = mkN "posseman" ; -lin possess_V2 = mkV2 (mkV "possess" "possesses" "possessed" "possessed" "possessing"); -- from DictEng -lin possession_N = mkN "possession" "possessions"; -- from DictEng -lin possessive_A = compoundA (mkA "possessive"); -- from DictEng -lin possessively_Adv = mkAdv "possessively" ; -lin possessiveness_N = mkN "possessiveness" ; -- from DictEng -lin possessor_N = mkN "possessor" "possessors"; -- from DictEng -lin posset_N = mkN "posset" "possets"; -- from DictEng -lin possibility_N = mkN "possibility" "possibilities"; -- from DictEng -lin possible_A = compoundA (mkA "possible"); -- from DictEng -lin possible_N = mkN "possible" "possibles"; -- from DictEng -lin possibly_Adv = mkAdv "possibly" ; -lin possum_N = mkN "possum" "possums"; -- from DictEng -lin post_N = mkN "post" "posts"; -- from DictEng -lin post_Prep = mkPrep "post"; -- from DictEng -lin post_V = mkV "post" "posts" "posted" "posted" "posting"; -- from DictEng -lin post_V2 = mkV2 (mkV "post" "posts" "posted" "posted" "posting"); -- from DictEng -lin post_communist_A = compoundA (mkA "post communist") ; -lin post_free_A = compoundA (mkA "post - free"); -- from DictEng -lin post_free_Adv = mkAdv "post - free"; -- from DictEng -lin post_haste_Adv = mkAdv "post - haste"; -- from DictEng -lin post_maturity_N = mkN "post maturity" ; -lin post_chaise_N = mkN "post - chaise" "post - chaises"; -- from DictEng -lin post_free_A = compoundA (mkA "post - free"); -- from DictEng -lin post_free_Adv = mkAdv "post - free"; -- from DictEng -lin post_haste_Adv = mkAdv "post - haste"; -- from DictEng -lin post_horse_N = mkN "post - horse" "post - horses"; -- from DictEng -lin post_meridiem_A = compoundA (mkA "post meridiem") ; -lin post_meridiem_Adv = mkAdv "post meridiem"; -- from DictEng -lin post_mortem_A = compoundA (mkA "post - mortem"); -- from DictEng -lin post_mortem_N = mkN "post - mortem" "post - mortems"; -- from DictEng -lin post_paid_A = compoundA (mkA "post - paid"); -- from DictEng -lin post_paid_Adv = mkAdv "post - paid"; -- from DictEng -lin postage_N = mkN "postage" ; -- from DictEng -lin postage_stamp_N = mkN "postage - stamp" "postage - stamps"; -- from DictEng -lin postal_A = compoundA (mkA "postal"); -- from DictEng -lin postbag_N = mkN "postbag" "postbags"; -- from DictEng -lin postbiblical_A = mkA "postbiblical" ; -lin postbox_N = mkN "postbox" "postboxes"; -- from DictEng -lin postcard_N = mkN "postcard" "postcards"; -- from DictEng -lin postcode_N = mkN "postcode" "postcodes"; -- from DictEng -lin postdate_V2 = mkV2 (mkV "postdate" "postdates" "postdated" "postdated" "postdating"); -- from DictEng -lin postdiluvian_A = mkA "postdiluvian" ; -lin postdiluvian_N = mkN "postdiluvian" ; -lin postdoc_N = mkN "postdoc" ; -lin postdoctoral_A = mkA "postdoctoral" ; -lin postdoctoral_N = mkN "postdoctoral" ; -lin poste_restante_N = mkN "poste restante" ; -- from DictEng -lin posted_A = mkA "posted" ; -lin poster_N = mkN "poster" "posters"; -- from DictEng -lin posterior_A = compoundA (mkA "posterior"); -- from DictEng -lin posterior_N = mkN "posterior" "posteriors"; -- from DictEng -lin posteriority_N = mkN "posteriority" ; -lin posterity_N = mkN "posterity" ; -- from DictEng -lin postern_N = mkN "postern" "posterns"; -- from DictEng -lin postexilic_A = mkA "postexilic" ; -lin postganglionic_A = mkA "postganglionic" ; -lin postglacial_A = mkA "postglacial" ; -lin postgraduate_A = compoundA (mkA "postgraduate"); -- from DictEng -lin postgraduate_N = mkN "postgraduate" "postgraduates"; -- from DictEng -lin posthitis_N = mkN "posthitis" ; -lin posthole_N = mkN "posthole" ; -lin posthouse_N = mkN "posthouse" ; -lin posthumous_A = compoundA (mkA "posthumous"); -- from DictEng -lin posthumously_Adv = mkAdv "posthumously" ; -lin postictal_A = mkA "postictal" ; -lin postilion_N = mkN "postilion" "postilions"; -- from DictEng -lin postillion_N = mkN "postillion" "postillions"; -- from DictEng -lin postindustrial_A = mkA "postindustrial" ; -lin posting_N = mkN "posting" ; -lin postlude_N = mkN "postlude" ; -lin postman_N = mkN "postman" "postmen" {- FIXME: guessed plural form -}; -- from DictEng -lin postmark_N = mkN "postmark" "postmarks"; -- from DictEng -lin postmark_V2 = mkV2 (mkV "postmark" "postmarks" "postmarked" "postmarked" "postmarking"); -- from DictEng -lin postmaster_N = mkN "postmaster" "postmasters"; -- from DictEng -lin postmenopausal_A = mkA "postmenopausal" ; -lin postmeridian_A = mkA "postmeridian" ; -lin postmillennial_A = mkA "postmillennial" ; -lin postmistress_N = mkN "postmistress" "postmistresses"; -- from DictEng -lin postmodernism_N = mkN "postmodernism" ; -lin postmodernist_A = mkA "postmodernist" ; -lin postmortem_A = mkA "postmortem" ; -lin postmortem_N = mkN "postmortem" ; -lin postnatal_A = mkA "postnatal" ; -lin postnuptial_A = mkA "postnuptial" ; -lin postoperative_A = mkA "postoperative" ; -lin postoperatively_Adv = mkAdv "postoperatively" ; -lin postpaid_A = mkA "postpaid" ; -lin postpone_V2 = mkV2 (mkV "postpone" "postpones" "postponed" "postponed" "postponing"); -- from DictEng -lin postponement_N = mkN "postponement" "postponements"; -- from DictEng -lin postposition_N = mkN "postposition" ; -lin postpositive_A = mkA "postpositive" ; -lin postprandial_A = compoundA (mkA "postprandial"); -- from DictEng -lin postscript_N = mkN "postscript" "postscripts"; -- from DictEng -lin postulant_N = mkN "postulant" "postulants"; -- from DictEng -lin postulate_N = mkN "postulate" "postulates"; -- from DictEng -lin postulate_V2 = mkV2 (mkV "postulate" "postulates" "postulated" "postulated" "postulating"); -- from DictEng -lin postulation_N = mkN "postulation" ; -lin postulator_N = mkN "postulator" ; -lin postural_A = compoundA (mkA "postural"); -- from DictEng -lin posture_N = mkN "posture" "postures"; -- from DictEng -lin posture_V = mkV "posture" "postures" "postured" "postured" "posturing"; -- from DictEng -lin posture_V2 = mkV2 (mkV "posture" "postures" "postured" "postured" "posturing"); -- from DictEng -lin posturer_N = mkN "posturer" ; -lin posturing_N = mkN "posturing" "posturings"; -- from DictEng -lin postwar_A = mkA "postwar" ; -lin posy_N = mkN "posy" "posies"; -- from DictEng -lin pot_N = mkN "pot" "pots"; -- from DictEng -lin pot_V = mkV "pot" "pots" "potted" "potted" "potting"; -- from DictEng -lin pot_V2 = mkV2 (mkV "pot" "pots" "potted" "potted" "potting"); -- from DictEng -lin pot_au_feu_N = mkN "pot au feu" ; -lin pot_shot_N = mkN "pot - shot" "pot - shots"; -- from DictEng -lin pot_trained_A = compoundA (mkA "pot - trained"); -- from DictEng -lin potable_A = compoundA (mkA "potable"); -- from DictEng -lin potage_N = mkN "potage" ; -lin potash_N = mkN "potash" ; -- from DictEng -lin potassium_N = mkN "potassium" ; -- from DictEng -lin potation_N = mkN "potation" "potations"; -- from DictEng -lin potato_N = mkN "potato" "potatoes"; -- from DictEng -lin potbellied_A = compoundA (mkA "potbellied"); -- from DictEng -lin potbelly_N = mkN "potbelly" "potbellies"; -- from DictEng -lin potboiler_N = mkN "potboiler" "potboilers"; -- from DictEng -lin potbound_A = compoundA (mkA "potbound"); -- from DictEng -lin potboy_N = mkN "potboy" "potboys"; -- from DictEng -lin poteen_N = mkN "poteen" ; -- from DictEng -lin potency_N = mkN "potency" "potencies"; -- from DictEng -lin potent_A = compoundA (mkA "potent"); -- from DictEng -lin potentate_N = mkN "potentate" "potentates"; -- from DictEng -lin potential_A = compoundA (mkA "potential"); -- from DictEng -lin potential_N = mkN "potential" "potentials"; -- from DictEng -lin potentiality_N = mkN "potentiality" "potentialities"; -- from DictEng -lin potentially_Adv = mkAdv "potentially" ; -lin potentiation_N = mkN "potentiation" ; -lin potentiometer_N = mkN "potentiometer" ; -lin potently_Adv = mkAdv "potently" ; -lin pothead_N = mkN "pothead" "potheads"; -- from DictEng -lin pother_N = mkN "pother" "pothers"; -- from DictEng -lin potherb_N = mkN "potherb" "potherbs"; -- from DictEng -lin potholder_N = mkN "potholder" ; -lin pothole_N = mkN "pothole" "potholes"; -- from DictEng -lin potholer_N = mkN "potholer" "potholers"; -- from DictEng -lin pothook_N = mkN "pothook" "pothooks"; -- from DictEng -lin pothos_N = mkN "pothos" ; -lin pothouse_N = mkN "pothouse" "pothouses"; -- from DictEng -lin pothunter_N = mkN "pothunter" "pothunters"; -- from DictEng -lin potion_N = mkN "potion" "potions"; -- from DictEng -lin potlatch_N = mkN "potlatch" ; -lin potluck_N = mkN "potluck" ; -lin potman_N = mkN "potman" "potmen" {- FIXME: guessed plural form -}; -- from DictEng -lin potoroo_N = mkN "potoroo" ; -lin potpie_N = mkN "potpie" ; -lin potpourri_N = mkN "potpourri" "potpourris"; -- from DictEng -lin potsherd_N = mkN "potsherd" "potsherds"; -- from DictEng -lin potshot_N = mkN "potshot" ; -lin pottage_N = mkN "pottage" "pottages"; -- from DictEng -lin potted_A = compoundA (mkA "potted"); -- from DictEng -lin potter_N = mkN "potter" "potters"; -- from DictEng -lin potter_V = mkV "potter" "potters" "pottered" "pottered" "pottering"; -- from DictEng -lin potterer_N = mkN "potterer" "potterers"; -- from DictEng -lin pottery_N = mkN "pottery" "potteries"; -- from DictEng -lin pottle_N = mkN "pottle" ; -lin potto_N = mkN "potto" ; -lin potty_A = mkA "potty" "pottier"; -- from DictEng -lin potty_N = mkN "potty" "potties"; -- from DictEng -lin potty_trained_A = compoundA (mkA "potty trained") ; -lin pouch_N = mkN "pouch" "pouches"; -- from DictEng -lin pouch_V2 = mkV2 (mkV "pouch" "pouches" "pouched" "pouched" "pouching"); -- from DictEng -lin pouched_A = mkA "pouched" ; -lin pouf_N = mkN "pouf" "poufs"; -- from DictEng -lin pouffe_N = mkN "pouffe" "pouffes"; -- from DictEng -lin poulette_N = mkN "poulette" ; -lin poulterer_N = mkN "poulterer" "poulterers"; -- from DictEng -lin poultice_N = mkN "poultice" "poultices"; -- from DictEng -lin poultice_V2 = mkV2 (mkV "poultice" "poultices" "poulticed" "poulticed" "poulticing"); -- from DictEng -lin poultry_N = mkN "poultry" ; -lin poultryman_N = mkN "poultryman" ; -lin pounce_N = mkN "pounce" "pounces"; -- from DictEng -lin pounce_V = mkV "pounce" "pounces" "pounced" "pounced" "pouncing"; -- from DictEng -lin pound_N = mkN "pound" "pounds"; -- from DictEng -lin pound_V = mkV "pound" "pounds" "pounded" "pounded" "pounding"; -- from DictEng -lin pound_V2 = mkV2 (mkV "pound" "pounds" "pounded" "pounded" "pounding"); -- from DictEng -lin pound_foolish_A = compoundA (mkA "pound foolish") ; -lin poundage_N = mkN "poundage" ; -- from DictEng -lin poundal_N = mkN "poundal" ; -lin pounder_N = mkN "pounder" "pounders"; -- from DictEng -lin pounding_N = mkN "pounding" ; -lin pour_V = mkV "pour" "pours" "poured" "poured" "pouring"; -- from DictEng -lin pour_V2 = mkV2 (mkV "pour" "pours" "poured" "poured" "pouring"); -- from DictEng -lin pousse_cafe_N = mkN "pousse cafe" ; -lin pout_N = mkN "pout" "pouts"; -- from DictEng -lin pout_V = mkV "pout" "pouts" "pouted" "pouted" "pouting"; -- from DictEng -lin pout_V2 = mkV2 (mkV "pout" "pouts" "pouted" "pouted" "pouting"); -- from DictEng -lin poutingly_Adv = mkAdv "poutingly"; -- from DictEng -lin poverty_N = mkN "poverty" ; -- from DictEng -lin poverty_stricken_A = compoundA (mkA "poverty - stricken"); -- from DictEng -lin pow_N = mkN "pow" ; -- from DictEng -lin powder_N = mkN "powder" "powders"; -- from DictEng -lin powder_V = mkV "powder" "powders" "powdered" "powdered" "powdering"; -- from DictEng -lin powder_V2 = mkV2 (mkV "powder" "powders" "powdered" "powdered" "powdering"); -- from DictEng -lin powder_puff_A = compoundA (mkA "powder puff") ; -lin powder_blue_A = compoundA (mkA "powder blue") ; -lin powder_flask_N = mkN "powder - flask" "powder - flasks"; -- from DictEng -lin powder_horn_N = mkN "powder - horn" "powder - horns"; -- from DictEng -lin powder_magazine_N = mkN "powder - magazine" "powder - magazines"; -- from DictEng -lin powder_puff_N = mkN "powder - puff" "powder - puffs"; -- from DictEng -lin powder_room_N = mkN "powder - room" "powder - rooms"; -- from DictEng -lin powdered_A = compoundA (mkA "powdered"); -- from DictEng -lin powderer_N = mkN "powderer" ; -lin powderpuff_N = mkN "powderpuff" ; -lin powdery_A = compoundA (mkA "powdery"); -- from DictEng -lin power_N = mkN "power" "powers"; -- from DictEng -lin power_V2 = mkV2 (mkV "power" "powers" "powered" "powered" "powering"); -- from DictEng -lin power_assisted_A = compoundA (mkA "power assisted") ; -lin power_driven_A = compoundA (mkA "power driven") ; -lin power_dive_N = mkN "power - dive" "power - dives"; -- from DictEng -lin power_dive_V2 = mkV2 (mkV "power - dive" "power - dives" "power - dived" "power - dived" "power - diving"); -- from DictEng -lin power_point_N = mkN "power - point" "power - points"; -- from DictEng -lin power_station_N = mkN "power - station" "power - stations"; -- from DictEng -lin powerboat_N = mkN "powerboat" "powerboats"; -- from DictEng -lin powered_A = compoundA (mkA "powered"); -- from DictEng -lin powerful_A = compoundA (mkA "powerful"); -- from DictEng -lin powerfully_Adv = mkAdv "powerfully" ; -lin powerhouse_N = mkN "powerhouse" "powerhouses"; -- from DictEng -lin powerless_A = compoundA (mkA "powerless"); -- from DictEng -lin powerlessly_Adv = mkAdv "powerlessly" ; -lin powerlessness_N = mkN "powerlessness" ; -lin powwow_N = mkN "powwow" "powwows"; -- from DictEng -lin powwow_V = mkV "powwow" "powwows" "powwowed" "powwowed" "powwowing"; -- from DictEng -lin pox_N = mkN "pox" "IRREG"; -- from DictEng -lin poxvirus_N = mkN "poxvirus" ; -lin pp_N = mkN "p" "pp" ; -- from DictEng -lin pr_N = mkN "pr" ; -- from DictEng -lin practicability_N = mkN "practicability" ; -- from DictEng -lin practicable_A = compoundA (mkA "practicable"); -- from DictEng -lin practicably_Adv = mkAdv "practicably" ; -lin practical_A = compoundA (mkA "practical"); -- from DictEng -lin practicality_N = mkN "practicality" "practicalities"; -- from DictEng -lin practically_Adv = mkAdv "practically" ; -lin practice_N = mkN "practice" "practices"; -- from DictEng -lin practice_V = mkV "practice"; -- from DictEng -lin practice_V2 = mkV2 (mkV "practice"); -- from DictEng -lin practiced_A = mkA "practiced" ; -lin practician_N = mkN "practician" "practicians"; -- from DictEng -lin practise_V = mkV "practise" "practises" "practised" "practised" "practising"; -- from DictEng -lin practise_V2 = mkV2 (mkV "practise" "practises" "practised" "practised" "practising"); -- from DictEng -lin practised_A = compoundA (mkA "practised"); -- from DictEng -lin practitioner_N = mkN "practitioner" "practitioners"; -- from DictEng -lin praenomen_N = mkN "praenomen" ; -lin praesidium_N = mkN "praesidium" "praesidiums"; -- from DictEng -lin praetor_N = mkN "praetor" "praetors"; -- from DictEng -lin praetorian_A = compoundA (mkA "praetorian"); -- from DictEng -lin praetorium_N = mkN "praetorium" ; -lin praetorship_N = mkN "praetorship" ; -lin pragmatic_A = compoundA (mkA "pragmatic"); -- from DictEng -lin pragmatically_Adv = mkAdv "pragmatically"; -- from DictEng -lin pragmatics_N = mkN "pragmatics" ; -lin pragmatism_N = mkN "pragmatism" ; -- from DictEng -lin pragmatist_N = mkN "pragmatist" "pragmatists"; -- from DictEng -lin prairia_sabbatia_PN = mkPN "prairia Sabbatia" ; -lin prairie_N = mkN "prairie" "prairies"; -- from DictEng -lin praise_N = mkN "praise" "praises"; -- from DictEng -lin praise_V2 = mkV2 (mkV "praise" "praises" "praised" "praised" "praising"); -- from DictEng -lin praiseworthiness_N = mkN "praiseworthiness" ; -- from DictEng -lin praiseworthy_A = compoundA (mkA "praiseworthy"); -- from DictEng -lin praisworthiness_N = mkN "praisworthiness" ; -lin praline_N = mkN "praline" ; -lin pram_N = mkN "pram" "prams"; -- from DictEng -lin prance_N = mkN "prance" "prances"; -- from DictEng -lin prance_V = mkV "prance" "prances" "pranced" "pranced" "prancing"; -- from DictEng -lin prance_V2 = mkV2 (mkV "prance") ; -lin prancer_N = mkN "prancer" ; -lin prandial_A = mkA "prandial" ; -lin prang_N = mkN "prang" ; -lin prank_N = mkN "prank" "pranks"; -- from DictEng -lin prankishness_N = mkN "prankishness" ; -lin prankster_N = mkN "prankster" ; -lin praseodymium_N = mkN "praseodymium" ; -lin prate_N = mkN "prate" ; -lin prate_V = mkV "prate" "prates" "prated" "prated" "prating"; -- from DictEng -lin pratfall_N = mkN "pratfall" ; -lin pratincole_N = mkN "pratincole" ; -lin prattle_N = mkN "prattle" ; -- from DictEng -lin prattle_V = mkV "prattle" "prattles" "prattled" "prattled" "prattling"; -- from DictEng -lin prattle_V2 = mkV2 (mkV "prattle") ; -lin prattler_N = mkN "prattler" "prattlers"; -- from DictEng -lin pravastatin_N = mkN "pravastatin" ; -lin prawn_N = mkN "prawn" "prawns"; -- from DictEng -lin prawn_V = mkV "prawn" "prawns" "prawned" "prawned" "prawning"; -- from DictEng -lin pray_V = mkV "pray" "prays" "prayed" "prayed" "praying"; -- from DictEng -lin pray_V2 = mkV2 (mkV "pray" "prays" "prayed" "prayed" "praying"); -- from DictEng -lin praya_N = mkN "praya" ; -lin prayer_N = mkN "prayer" "prayers"; -- from DictEng -lin prayer_book_N = mkN "prayer - book" "prayer - books"; -- from DictEng -lin prayer_mat_N = mkN "prayer - mat" "prayer - mats"; -- from DictEng -lin prayer_meeting_N = mkN "prayer - meeting" "prayer - meetings"; -- from DictEng -lin prayer_rug_N = mkN "prayer - rug" "prayer - rugs"; -- from DictEng -lin prayer_wheel_N = mkN "prayer - wheel" "prayer - wheels"; -- from DictEng -lin prayerful_A = mkA "prayerful" ; -lin prazosin_N = mkN "prazosin" ; -lin pre_christian_A = compoundA (mkA "pre Christian") ; -lin pre_columbian_A = compoundA (mkA "pre Columbian") ; -lin pre_jurassic_A = compoundA (mkA "pre Jurassic") ; -lin pre_socratic_N = mkN "pre Socratic" ; -lin pre_eminently_Adv = mkAdv "pre eminently" ; -lin pre_empt_V2 = mkV2 (mkV "pre - empt" "pre - empts" "pre - empted" "pre - empted" "pre - empting"); -- from DictEng -lin pre_approve_V2 = mkV2 (mkV "pre - approve") ; -- from DictEng -lin pre_eminence_N = mkN "pre - eminence" ; -- from DictEng -lin pre_eminent_A = compoundA (mkA "pre - eminent"); -- from DictEng -lin pre_empt_V2 = mkV2 (mkV "pre - empt" "pre - empts" "pre - empted" "pre - empted" "pre - empting"); -- from DictEng -lin pre_emption_N = mkN "pre - emption" ; -- from DictEng -lin pre_emptive_A = compoundA (mkA "pre - emptive"); -- from DictEng -lin pre_exist_V = mkV "pre - exist" "pre - exists" "pre - existed" "pre - existed" "pre - existing"; -- from DictEng -lin pre_existence_N = mkN "pre - existence" "pre - existences"; -- from DictEng -lin pre_existent_A = compoundA (mkA "pre - existent"); -- from DictEng -lin pre_packaged_A = compoundA (mkA "pre - packaged"); -- from DictEng -lin pre_raphaelite_A = compoundA (mkA "pre - raphaelite"); -- from DictEng -lin pre_raphaelite_N = mkN "pre - raphaelite" "pre - raphaelites"; -- from DictEng -lin pre_register_V2 = mkV2 (mkV "pre - register"); -- from DictEng -lin pre_sign_V2 = mkV2 (mkV "pre - sign"); -- from DictEng -lin pre_test_V2 = mkV2 (mkV "pre - test"); -- from DictEng -lin preach_V = mkV "preach" "preaches" "preached" "preached" "preaching"; -- from DictEng -lin preach_V2 = mkV2 (mkV "preach" "preaches" "preached" "preached" "preaching"); -- from DictEng -lin preacher_N = mkN "preacher" "preachers"; -- from DictEng -lin preachification_N = mkN "preachification" ; -lin preachify_V = mkV "preachify" "preachifies" "preachified" "preachified" "preachifying"; -- from DictEng -lin preachy_A = mkA "preachy" ; -lin preamble_N = mkN "preamble" "preambles"; -- from DictEng -lin preanal_A = mkA "preanal" ; -lin prearrange_V2 = mkV2 (mkV "prearrange" "prearranges" "prearranged" "prearranged" "prearranging"); -- from DictEng -lin prearrangement_N = mkN "prearrangement" "prearrangements"; -- from DictEng -lin prebend_N = mkN "prebend" "prebends"; -- from DictEng -lin prebendary_N = mkN "prebendary" "prebendaries"; -- from DictEng -lin precancerous_A = mkA "precancerous" ; -lin precarious_A = compoundA (mkA "precarious"); -- from DictEng -lin precariously_Adv = mkAdv "precariously" ; -lin precariousness_N = mkN "precariousness" ; -- from DictEng -lin precast_A = compoundA (mkA "precast"); -- from DictEng -lin precatory_A = mkA "precatory" ; -lin precaution_N = mkN "precaution" "precautions"; -- from DictEng -lin precautionary_A = compoundA (mkA "precautionary"); -- from DictEng -lin precede_V = mkV "precede" "precedes" "preceded" "preceded" "preceding"; -- from DictEng -lin precede_V2 = mkV2 (mkV "precede" "precedes" "preceded" "preceded" "preceding"); -- from DictEng -lin precedence_N = mkN "precedence" ; -- from DictEng -lin precedent_A = mkA "precedent" ; -lin precedent_N = mkN "precedent" "precedents"; -- from DictEng -lin precedented_A = compoundA (mkA "precedented"); -- from DictEng -lin precedentedly_Adv = mkAdv "precedentedly" ; -lin precedential_A = mkA "precedential" ; -lin preceding_A = compoundA (mkA "preceding"); -- from DictEng -lin precentor_N = mkN "precentor" "precentors"; -- from DictEng -lin precentorship_N = mkN "precentorship" ; -lin precept_N = mkN "precept" "precepts"; -- from DictEng -lin preceptor_N = mkN "preceptor" "preceptors"; -- from DictEng -lin preceptorship_N = mkN "preceptorship" ; -lin precession_N = mkN "precession" "precessions"; -- from DictEng -lin prechlorination_N = mkN "prechlorination" ; -lin precinct_N = mkN "precinct" "precincts"; -- from DictEng -lin preciosity_N = mkN "preciosity" "preciosities"; -- from DictEng -lin precious_A = compoundA (mkA "precious"); -- from DictEng -lin precious_Adv = mkAdv "precious"; -- from DictEng -lin preciousness_N = mkN "preciousness" ; -- from DictEng -lin precipice_N = mkN "precipice" "precipices"; -- from DictEng -lin precipitant_N = mkN "precipitant" ; -lin precipitate_A = compoundA (mkA "precipitate"); -- from DictEng -lin precipitate_N = mkN "precipitate" "precipitates"; -- from DictEng -lin precipitate_V2 = mkV2 (mkV "precipitate" "precipitates" "precipitated" "precipitated" "precipitating"); -- from DictEng -lin precipitating_A = mkA "precipitating" ; -lin precipitation_N = mkN "precipitation" ; -- from DictEng -lin precipitator_N = mkN "precipitator" ; -lin precipitin_N = mkN "precipitin" ; -lin precipitous_A = compoundA (mkA "precipitous"); -- from DictEng -lin precipitously_Adv = mkAdv "precipitously" ; -lin precis_N = mkN "précis" "précis"; -- from DictEng -lin precis_V2 = mkV2 (mkV "précis" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin precise_A = compoundA (mkA "precise"); -- from DictEng -lin precisely_Adv = mkAdv "precisely" ; -lin preciseness_N = mkN "preciseness" ; -- from DictEng -lin precision_N = mkN "precision" ; -- from DictEng -lin preclinical_A = mkA "preclinical" ; -lin preclude_V2 = mkV2 (mkV "preclude" "precludes" "precluded" "precluded" "precluding"); -- from DictEng -lin preclusion_N = mkN "preclusion" "preclusions"; -- from DictEng -lin preclusive_A = mkA "preclusive" ; -lin precocial_A = mkA "precocial" ; -lin precocious_A = compoundA (mkA "precocious"); -- from DictEng -lin precociously_Adv = mkAdv "precociously" ; -lin precociousness_N = mkN "precociousness" ; -- from DictEng -lin precocity_N = mkN "precocity" ; -- from DictEng -lin precognition_N = mkN "precognition" ; -- from DictEng -lin preconceive_V2 = mkV2 (mkV "preconceive" "preconceives" "preconceived" "preconceived" "preconceiving"); -- from DictEng -lin preconceived_A = mkA "preconceived" ; -lin preconception_N = mkN "preconception" "preconceptions"; -- from DictEng -lin preconcerted_A = compoundA (mkA "preconcerted"); -- from DictEng -lin precondition_N = mkN "precondition" "preconditions"; -- from DictEng -lin preconditioned_A = compoundA (mkA "preconditioned"); -- from DictEng -lin precooked_A = mkA "precooked" ; -lin precooled_A = mkA "precooled" ; -lin precordial_A = mkA "precordial" ; -lin precordium_N = mkN "precordium" ; -lin precursor_N = mkN "precursor" "precursors"; -- from DictEng -lin precursory_A = compoundA (mkA "precursory"); -- from DictEng -lin predaceous_A = mkA "predaceous" ; -lin predacious_A = mkA "predacious" ; -lin predate_V2 = mkV2 (mkV "predate"); -- from DictEng -lin predation_N = mkN "predation" ; -lin predator_N = mkN "predator" "predators"; -- from DictEng -lin predatory_A = compoundA (mkA "predatory"); -- from DictEng -lin predecease_V2 = mkV2 (mkV "predecease" "predeceases" "predeceased" "predeceased" "predeceasing"); -- from DictEng -lin predecessor_N = mkN "predecessor" "predecessors"; -- from DictEng -lin predestinarian_A = mkA "predestinarian" ; -lin predestinarianism_N = mkN "predestinarianism" ; -lin predestinate_A = compoundA (mkA "predestinate"); -- from DictEng -lin predestinate_V2 = mkV2 (mkV "predestinate" "predestinates" "predestinated" "predestinated" "predestinating"); -- from DictEng -lin predestination_N = mkN "predestination" "predestinations"; -- from DictEng -lin predestine_V2 = mkV2 (mkV "predestine" "predestines" "predestined" "predestined" "predestining"); -- from DictEng -lin predetermination_N = mkN "predetermination" "predeterminations"; -- from DictEng -lin predetermine_V2 = mkV2 (mkV "predetermine" "predetermines" "predetermined" "predetermined" "predetermining"); -- from DictEng -lin predicament_N = mkN "predicament" "predicaments"; -- from DictEng -lin predicate_N = mkN "predicate" "predicates"; -- from DictEng -lin predicate_V2 = mkV2 (mkV "predicate" "predicates" "predicated" "predicated" "predicating"); -- from DictEng -lin predicative_A = compoundA (mkA "predicative"); -- from DictEng -lin predicatively_Adv = mkAdv "predicatively" ; -lin predicator_N = mkN "predicator" ; -lin predict_V2 = mkV2 (mkV "predict" "predicts" "predicted" "predicted" "predicting"); -- from DictEng -lin predict_VS = mkVS (mkV "predict"); -- from DictEng -lin predictability_N = mkN "predictability" ; -- from DictEng -lin predictable_A = compoundA (mkA "predictable"); -- from DictEng -lin predictably_Adv = mkAdv "predictably" ; -lin prediction_N = mkN "prediction" "predictions"; -- from DictEng -lin predictive_A = mkA "predictive" ; -lin predictor_N = mkN "predictor" "predictors"; -- from DictEng -lin predigest_V2 = mkV2 (mkV "predigest" "predigests" "predigested" "predigested" "predigesting"); -- from DictEng -lin predigested_A = mkA "predigested" ; -lin predilection_N = mkN "predilection" "predilections"; -- from DictEng -lin predispose_V2 = mkV2 (mkV "predispose" "predisposes" "predisposed" "predisposed" "predisposing"); -- from DictEng -lin predisposed_A = mkA "predisposed" ; -lin predisposition_N = mkN "predisposition" "predispositions"; -- from DictEng -lin prednisolone_N = mkN "prednisolone" ; -lin prednisone_N = mkN "prednisone" ; -lin predominance_N = mkN "predominance" ; -- from DictEng -lin predominant_A = compoundA (mkA "predominant"); -- from DictEng -lin predominantly_Adv = mkAdv "predominantly" ; -lin predominate_V = mkV "predominate" "predominates" "predominated" "predominated" "predominating"; -- from DictEng -lin predomination_N = mkN "predomination" ; -lin preeclampsia_N = mkN "preeclampsia" ; -lin preemption_N = mkN "preemption" ; -lin preemptive_A = mkA "preemptive" ; -lin preemptor_N = mkN "preemptor" ; -lin preen_V = mkV "preen" ; -lin preen_V2 = mkV2 (mkV "preen" "preens" "preened" "preened" "preening"); -- from DictEng -lin preexistence_N = mkN "preexistence" ; -lin preexistent_A = mkA "preexistent" ; -lin prefab_A = mkA "prefab" ; -lin prefab_N = mkN "prefab" "prefabs"; -- from DictEng -lin prefabricate_V2 = mkV2 (mkV "prefabricate" "prefabricates" "prefabricated" "prefabricated" "prefabricating"); -- from DictEng -lin prefabrication_N = mkN "prefabrication" "prefabrications"; -- from DictEng -lin preface_N = mkN "preface" "prefaces"; -- from DictEng -lin preface_V2 = mkV2 (mkV "preface" "prefaces" "prefaced" "prefaced" "prefacing"); -- from DictEng -lin prefaded_A = mkA "prefaded" ; -lin prefatory_A = compoundA (mkA "prefatory"); -- from DictEng -lin prefect_N = mkN "prefect" "prefects"; -- from DictEng -lin prefectural_A = compoundA (mkA "prefectural"); -- from DictEng -lin prefecture_N = mkN "prefecture" "prefectures"; -- from DictEng -lin prefer_V2 = mkV2 (mkV "prefer" "prefers" "preferred" "preferred" "preferring"); -- from DictEng -lin prefer_V2V = mkV2V (mkV "prefer" "prefers" "preferred" "preferred" "preferring") noPrep to_Prep ; -- from DictEng -lin prefer_VS = mkVS (mkV "prefer" "prefers" "preferred" "preferred" "preferring"); -- from DictEng -lin prefer_VV = mkVV (mkV "prefer" "prefers" "preferred" "preferred" "preferring"); -- from DictEng -lin preferable_A = compoundA (mkA "preferable"); -- from DictEng -lin preferably_Adv = mkAdv "preferably" ; -lin preference_N = mkN "preference" "preferences"; -- from DictEng -lin preferential_A = compoundA (mkA "preferential"); -- from DictEng -lin preferentially_Adv = mkAdv "preferentially" ; -lin preferment_N = mkN "preferment" ; -- from DictEng -lin prefiguration_N = mkN "prefiguration" ; -lin prefigure_V2 = mkV2 (mkV "prefigure" "prefigures" "prefigured" "prefigured" "prefiguring"); -- from DictEng -lin prefix_N = mkN "prefix" "prefixes"; -- from DictEng -lin prefix_V2 = mkV2 (mkV "prefix" "prefixes" "prefixed" "prefixed" "prefixing"); -- from DictEng -lin prefixation_N = mkN "prefixation" ; -lin preformation_N = mkN "preformation" ; -lin prefrontal_A = mkA "prefrontal" ; -lin pregnancy_N = mkN "pregnancy" "pregnancies"; -- from DictEng -lin pregnanediol_N = mkN "pregnanediol" ; -lin pregnant_A = compoundA (mkA "pregnant"); -- from DictEng -lin preheat_V2 = mkV2 (mkV "preheat" "preheats" "preheated" "preheated" "preheating"); -- from DictEng -lin prehensile_A = compoundA (mkA "prehensile"); -- from DictEng -lin prehensor_N = mkN "prehensor" ; -lin prehistoric_A = compoundA (mkA "prehistoric"); -- from DictEng -lin prehistorical_A = compoundA (mkA "prehistorical"); -- from DictEng -lin prehistory_N = mkN "prehistory" "prehistories"; -- from DictEng -lin prejudge_V2 = mkV2 (mkV "prejudge" "prejudges" "prejudged" "prejudged" "prejudging"); -- from DictEng -lin prejudgement_N = mkN "prejudgement" "prejudgements"; -- from DictEng -lin prejudgment_N = mkN "prejudgment" ; -lin prejudice_N = mkN "prejudice" "prejudices"; -- from DictEng -lin prejudice_V2 = mkV2 (mkV "prejudice" "prejudices" "prejudiced" "prejudiced" "prejudicing"); -- from DictEng -lin prejudiced_A = mkA "prejudiced" ; -lin prejudicial_A = compoundA (mkA "prejudicial"); -- from DictEng -lin prelacy_N = mkN "prelacy" "prelacies"; -- from DictEng -lin prelapsarian_A = mkA "prelapsarian" ; -lin prelate_N = mkN "prelate" "prelates"; -- from DictEng -lin prelim_N = mkN "prelim" "prelims"; -- from DictEng -lin preliminary_A = compoundA (mkA "preliminary"); -- from DictEng -lin preliminary_N = mkN "preliminary" "preliminaries"; -- from DictEng -lin preliterate_A = mkA "preliterate" ; -lin prelude_N = mkN "prelude" "preludes"; -- from DictEng -lin prelude_V2 = mkV2 (mkV "prelude" "preludes" "preluded" "preluded" "preluding"); -- from DictEng -lin premarital_A = compoundA (mkA "premarital"); -- from DictEng -lin premature_A = compoundA (mkA "premature"); -- from DictEng -lin prematurely_Adv = mkAdv "prematurely" ; -lin prematureness_N = mkN "prematureness" ; -lin premedical_A = mkA "premedical" ; -lin premeditate_V2 = mkV2 (mkV "premeditate" "premeditates" "premeditated" "premeditated" "premeditating"); -- from DictEng -lin premeditated_A = mkA "premeditated" ; -lin premeditation_N = mkN "premeditation" ; -- from DictEng -lin premenopausal_A = mkA "premenopausal" ; -lin premenstrual_A = mkA "premenstrual" ; -lin premier_A = compoundA (mkA "premier"); -- from DictEng -lin premier_N = mkN "premier" "premiers"; -- from DictEng -lin premiere_N = mkN "première" "premières"; -- from DictEng -lin premiere_V = mkV "premiere"; -- from DictEng -lin premiere_V2 = mkV2 (mkV "premiere"); -- from DictEng -lin premiership_N = mkN "premiership" "premierships"; -- from DictEng -lin premise_N = mkN "premise" "premises"; -- from DictEng -lin premise_V2 = mkV2 (mkV "premise" "premises" "premised" "premised" "premising"); -- from DictEng -lin premises_N = mkN "premises" ; -lin premiss_N = mkN "premiss" "premisses"; -- from DictEng -lin premiss_V2 = mkV2 (mkV "premiss" "premisses" "premissed" "premissed" "premissing"); -- from DictEng -lin premium_A = mkA "premium" ; -lin premium_N = mkN "premium" "premiums"; -- from DictEng -lin premolar_N = mkN "premolar" ; -lin premonition_N = mkN "premonition" "premonitions"; -- from DictEng -lin premonitory_A = compoundA (mkA "premonitory"); -- from DictEng -lin prenatal_A = compoundA (mkA "prenatal"); -- from DictEng -lin prentice_N = mkN "prentice" "prentices"; -- from DictEng -lin prenuptial_A = mkA "prenuptial" ; -lin preoccupancy_N = mkN "preoccupancy" ; -lin preoccupation_N = mkN "preoccupation" "preoccupations"; -- from DictEng -lin preoccupy_V2 = mkV2 (mkV "preoccupy" "preoccupies" "preoccupied" "preoccupied" "preoccupying"); -- from DictEng -lin preoperative_A = mkA "preoperative" ; -lin preordain_V2 = mkV2 (mkV "preordain" "preordains" "preordained" "preordained" "preordaining"); -- from DictEng -lin prep_N = mkN "prep" "preps"; -- from DictEng -lin prepackaged_A = mkA "prepackaged" ; -lin prepacked_A = compoundA (mkA "prepacked"); -- from DictEng -lin preparation_N = mkN "preparation" "preparations"; -- from DictEng -lin preparatory_A = compoundA (mkA "preparatory"); -- from DictEng -lin prepare_V = mkV "prepare" "prepares" "prepared" "prepared" "preparing"; -- from DictEng -lin prepare_V2 = mkV2 (mkV "prepare" "prepares" "prepared" "prepared" "preparing"); -- from DictEng -lin prepare_V2V = mkV2V (mkV "prepare" "prepares" "prepared" "prepared" "preparing") noPrep to_Prep ; -- from DictEng -lin prepare_VS = mkVS (mkV "prepare" "prepares" "prepared" "prepared" "preparing"); -- from DictEng -lin prepare_VV = mkVV (mkV "prepare" "prepares" "prepared" "prepared" "preparing"); -- from DictEng -lin prepared_A = mkA "prepared" ; -lin preparedness_N = mkN "preparedness" ; -- from DictEng -lin prepay_V2 = mkV2 (mkV "pre" IrregEng.pay_V); -- from DictEng -lin prepayment_N = mkN "prepayment" ; -lin preponderance_N = mkN "preponderance" "preponderances"; -- from DictEng -lin preponderant_A = compoundA (mkA "preponderant"); -- from DictEng -lin preponderate_V = mkV "preponderate" "preponderates" "preponderated" "preponderated" "preponderating"; -- from DictEng -lin preposition_N = mkN "preposition" "prepositions"; -- from DictEng -lin prepositional_A = compoundA (mkA "prepositional"); -- from DictEng -lin prepositionally_Adv = mkAdv "prepositionally" ; -lin prepossess_V2 = mkV2 (mkV "prepossess" "prepossesses" "prepossessed" "prepossessed" "prepossessing"); -- from DictEng -lin prepossessing_A = compoundA (mkA "prepossessing"); -- from DictEng -lin prepossession_N = mkN "prepossession" "prepossessions"; -- from DictEng -lin preposterous_A = compoundA (mkA "preposterous"); -- from DictEng -lin preprandial_A = mkA "preprandial" ; -lin prepuberty_N = mkN "prepuberty" ; -lin prepubescent_A = mkA "prepubescent" ; -lin prepuce_N = mkN "prepuce" "prepuces"; -- from DictEng -lin prepupal_A = mkA "prepupal" ; -lin prerecord_V2 = mkV2 (mkV "prerecord" "prerecords" "prerecorded" "prerecorded" "prerecording"); -- from DictEng -lin prerecorded_A = mkA "prerecorded" ; -lin prerequisite_A = compoundA (mkA "prerequisite"); -- from DictEng -lin prerequisite_N = mkN "prerequisite" "prerequisites"; -- from DictEng -lin prerogative_N = mkN "prerogative" "prerogatives"; -- from DictEng -lin pres_N = mkN "pres" ; -- from DictEng -lin presage_N = mkN "presage" "presages"; -- from DictEng -lin presage_V2 = mkV2 (mkV "presage" "presages" "presaged" "presaged" "presaging"); -- from DictEng -lin presbyope_N = mkN "presbyope" ; -lin presbyopia_N = mkN "presbyopia" ; -lin presbyter_N = mkN "presbyter" "presbyters"; -- from DictEng -lin presbyterian_A = compoundA (mkA "presbyterian"); -- from DictEng -lin presbyterian_N = mkN "presbyterian" "presbyterians"; -- from DictEng -lin presbyterianism_N = mkN "presbyterianism" ; -- from DictEng -lin presbytery_N = mkN "presbytery" "presbyteries"; -- from DictEng -lin preschool_N = mkN "preschool" ; -lin preschooler_N = mkN "preschooler" ; -lin prescience_N = mkN "prescience" ; -- from DictEng -lin prescient_A = compoundA (mkA "prescient"); -- from DictEng -lin presciently_Adv = mkAdv "presciently" ; -lin prescribe_V = mkV "prescribe" "prescribes" "prescribed" "prescribed" "prescribing"; -- from DictEng -lin prescribe_V2 = mkV2 (mkV "prescribe" "prescribes" "prescribed" "prescribed" "prescribing"); -- from DictEng -lin prescribed_A = mkA "prescribed" ; -lin prescript_N = mkN "prescript" "prescripts"; -- from DictEng -lin prescription_A = mkA "prescription" ; -lin prescription_N = mkN "prescription" "prescriptions"; -- from DictEng -lin prescriptive_A = compoundA (mkA "prescriptive"); -- from DictEng -lin prescriptivism_N = mkN "prescriptivism" ; -lin preseason_N = mkN "preseason" ; -lin presence_N = mkN "presence" ; -- from DictEng -lin present_A = compoundA (mkA "present"); -- from DictEng -lin present_N = mkN "present" "presents"; -- from DictEng -lin present_V2 = mkV2 (mkV "present" "presents" "presented" "presented" "presenting"); -- from DictEng -lin present_day_A = compoundA (mkA "present - day"); -- from DictEng -lin presentable_A = compoundA (mkA "presentable"); -- from DictEng -lin presentably_Adv = mkAdv "presentably" ; -lin presentation_N = mkN "presentation" "presentations"; -- from DictEng -lin presentational_A = mkA "presentational" ; -lin presenter_N = mkN "presenter" ; -lin presentiment_N = mkN "presentiment" "presentiments"; -- from DictEng -lin presentism_N = mkN "presentism" ; -lin presentist_N = mkN "presentist" ; -lin presently_Adv = mkAdv "presently" ; -lin presentment_N = mkN "presentment" ; -lin presentness_N = mkN "presentness" ; -lin preservable_A = compoundA (mkA "preservable"); -- from DictEng -lin preservation_N = mkN "preservation" ; -- from DictEng -lin preservationist_N = mkN "preservationist" ; -lin preservative_A = compoundA (mkA "preservative"); -- from DictEng -lin preservative_N = mkN "preservative" "preservatives"; -- from DictEng -lin preserve_N = mkN "preserve" "preserves"; -- from DictEng -lin preserve_V2 = mkV2 (mkV "preserve" "preserves" "preserved" "preserved" "preserving"); -- from DictEng -lin preserved_A = mkA "preserved" ; -lin preserver_N = mkN "preserver" "preservers"; -- from DictEng -lin preset_A = mkA "preset" ; -lin preside_V = mkV "preside" "presides" "presided" "presided" "presiding"; -- from DictEng -lin presidency_N = mkN "presidency" "presidencies"; -- from DictEng -lin president_N = mkN "president" "presidents"; -- from DictEng -lin presidential_A = compoundA (mkA "presidential"); -- from DictEng -lin presidentially_Adv = mkAdv "presidentially" ; -lin presidio_N = mkN "presidio" ; -lin presidium_N = mkN "presidium" "presidiums"; -- from DictEng -lin presocratic_A = mkA "presocratic" ; -lin press_N = mkN "press" "presses"; -- from DictEng -lin press_V = mkV "press" "presses" "pressed" "pressed" "pressing"; -- from DictEng -lin press_V2 = mkV2 (mkV "press" "presses" "pressed" "pressed" "pressing"); -- from DictEng -lin press_V2V = mkV2V (mkV "press" "presses" "pressed" "pressed" "pressing") noPrep to_Prep ; -- from DictEng -lin press_agency_N = mkN "press - agency" "press - agencies"; -- from DictEng -lin press_agent_N = mkN "press - agent" "press - agents"; -- from DictEng -lin press_box_N = mkN "press - box" "press - boxes"; -- from DictEng -lin press_clipping_N = mkN "press - clipping" "press - clippings"; -- from DictEng -lin press_cutting_N = mkN "press - cutting" "press - cuttings"; -- from DictEng -lin press_gallery_N = mkN "press - gallery" "press - galleries"; -- from DictEng -lin press_gang_N = mkN "press - gang" "press - gangs"; -- from DictEng -lin press_lord_N = mkN "press - lord" "press - lords"; -- from DictEng -lin press_photographer_N = mkN "press - photographer" "press - photographers"; -- from DictEng -lin press_stud_N = mkN "press - stud" "press - studs"; -- from DictEng -lin press_up_N = mkN "press - up" "press - ups"; -- from DictEng -lin pressed_A = mkA "pressed" ; -lin pressing_A = compoundA (mkA "pressing"); -- from DictEng -lin pressing_N = mkN "pressing" "pressings"; -- from DictEng -lin pressingly_Adv = mkAdv "pressingly" ; -lin pressman_N = mkN "pressman" "pressmen" {- FIXME: guessed plural form -}; -- from DictEng -lin pressmark_N = mkN "pressmark" "pressmarks"; -- from DictEng -lin pressor_A = mkA "pressor" ; -lin pressure_N = mkN "pressure" "pressures"; -- from DictEng -lin pressure_V2 = mkV2 (mkV "pressure"); -- from DictEng -lin pressure_V2V = mkV2V (mkV "pressure") noPrep to_Prep ; -- from DictEng -lin pressure_cooker_N = mkN "pressure - cooker" "pressure - cookers"; -- from DictEng -lin pressure_gauge_N = mkN "pressure - gauge" "pressure - gauges"; -- from DictEng -lin pressurized_A = compoundA (mkA "pressurized"); -- from DictEng -lin prestidigitation_N = mkN "prestidigitation" "prestidigitations"; -- from DictEng -lin prestidigitator_N = mkN "prestidigitator" "prestidigitators"; -- from DictEng -lin prestige_N = mkN "prestige" ; -- from DictEng -lin prestigious_A = compoundA (mkA "prestigious"); -- from DictEng -lin prestissimo_A = compoundA (mkA "prestissimo"); -- from DictEng -lin prestissimo_Adv = mkAdv "prestissimo"; -- from DictEng -lin presto_A = compoundA (mkA "presto"); -- from DictEng -lin presto_Adv = mkAdv "presto"; -- from DictEng -lin prestressed_A = compoundA (mkA "prestressed"); -- from DictEng -lin presumable_A = compoundA (mkA "presumable"); -- from DictEng -lin presumably_Adv = mkAdv "presumably" ; -lin presume_V = mkV "presume" "presumes" "presumed" "presumed" "presuming"; -- from DictEng -lin presume_V2 = mkV2 (mkV "presume" "presumes" "presumed" "presumed" "presuming"); -- from DictEng -lin presume_VS = mkVS (mkV "presume" "presumes" "presumed" "presumed" "presuming"); -- from DictEng -lin presume_VV = mkVV (mkV "presume" "presumes" "presumed" "presumed" "presuming"); -- from DictEng -lin presuming_A = compoundA (mkA "presuming"); -- from DictEng -lin presumption_N = mkN "presumption" "presumptions"; -- from DictEng -lin presumptive_A = compoundA (mkA "presumptive"); -- from DictEng -lin presumptuous_A = compoundA (mkA "presumptuous"); -- from DictEng -lin presumptuously_Adv = mkAdv "presumptuously" ; -lin presuppose_V2 = mkV2 (mkV "presuppose" "presupposes" "presupposed" "presupposed" "presupposing"); -- from DictEng -lin presupposition_N = mkN "presupposition" "presuppositions"; -- from DictEng -lin preteen_A = mkA "preteen" ; -lin preteen_N = mkN "preteen" ; -lin pretence_N = mkN "pretence" "pretences"; -- from DictEng -lin pretend_V = mkV "pretend" "pretends" "pretended" "pretended" "pretending"; -- from DictEng -lin pretend_V2 = mkV2 (mkV "pretend" "pretends" "pretended" "pretended" "pretending"); -- from DictEng -lin pretend_VS = mkVS (mkV "pretend" "pretends" "pretended" "pretended" "pretending"); -- from DictEng -lin pretendedly_Adv = mkAdv "pretendedly"; -- from DictEng -lin pretender_N = mkN "pretender" "pretenders"; -- from DictEng -lin pretense_N = mkN "pretense" ; -lin pretension_N = mkN "pretension" "pretensions"; -- from DictEng -lin pretentious_A = compoundA (mkA "pretentious"); -- from DictEng -lin pretentiously_Adv = mkAdv "pretentiously" ; -lin pretentiousness_N = mkN "pretentiousness" ; -- from DictEng -lin preterist_N = mkN "preterist" ; -lin preterit_A = compoundA (mkA "preterit"); -- from DictEng -lin preterit_N = mkN "preterit" "preterits"; -- from DictEng -lin preterite_A = compoundA (mkA "preterite"); -- from DictEng -lin preterite_N = mkN "preterite" "preterites"; -- from DictEng -lin pretermission_N = mkN "pretermission" ; -lin preternatural_A = compoundA (mkA "preternatural"); -- from DictEng -lin preternaturally_Adv = mkAdv "preternaturally" ; -lin pretext_N = mkN "pretext" "pretexts"; -- from DictEng -lin pretor_N = mkN "pretor" "pretors"; -- from DictEng -lin pretrial_N = mkN "pretrial" ; -lin prettify_V2 = mkV2 (mkV "prettify" "prettifies" "prettified" "prettified" "prettifying"); -- from DictEng -lin prettily_Adv = mkAdv "prettily"; -- from DictEng -lin prettiness_N = mkN "prettiness" ; -- from DictEng -lin pretty_A = mkA "pretty" "prettier"; -- from DictEng -lin pretty_Adv = mkAdv "pretty"; -- from DictEng -lin pretty_N = mkN "pretty" "pretties"; -- from DictEng -lin pretty_pretty_A = compoundA (mkA "pretty - pretty"); -- from DictEng -lin pretty_much_Adv = mkAdv "pretty much" ; -lin pretty_pretty_A = compoundA (mkA "pretty - pretty"); -- from DictEng -lin pretzel_N = mkN "pretzel" "pretzels"; -- from DictEng -lin prevail_V = mkV "prevail" "prevails" "prevailed" "prevailed" "prevailing"; -- from DictEng -lin prevail_V2 = mkV2 (mkV "prevail" "prevails" "prevailed" "prevailed" "prevailing"); -- from DictEng -lin prevailing_A = compoundA (mkA "prevailing"); -- from DictEng -lin prevalence_N = mkN "prevalence" ; -- from DictEng -lin prevalent_A = compoundA (mkA "prevalent"); -- from DictEng -lin prevaricate_V = mkV "prevaricate" "prevaricates" "prevaricated" "prevaricated" "prevaricating"; -- from DictEng -lin prevarication_N = mkN "prevarication" "prevarications"; -- from DictEng -lin prevent_V2 = mkV2 (mkV "prevent" "prevents" "prevented" "prevented" "preventing"); -- from DictEng -lin preventable_A = compoundA (mkA "preventable"); -- from DictEng -lin preventative_N = mkN "preventative" "preventatives"; -- from DictEng -lin prevention_N = mkN "prevention" ; -- from DictEng -lin preventive_A = compoundA (mkA "preventive"); -- from DictEng -lin preventive_N = mkN "preventive" ; -lin preview_N = mkN "preview" "previews"; -- from DictEng -lin preview_V2 = mkV2 (mkV "preview" "previews" "previewed" "previewed" "previewing"); -- from DictEng -lin previous_A = compoundA (mkA "previous"); -- from DictEng -lin previously_Adv = mkAdv "previously" ; -lin prevision_N = mkN "prevision" "previsions"; -- from DictEng -lin prewar_A = mkA "prewar" ; -lin prey_N = mkN "prey" "IRREG"; -- from DictEng -lin prey_V = mkV "prey" "preys" "preyed" "preyed" "preying"; -- from DictEng -lin priapic_A = mkA "priapic" ; -lin priapism_N = mkN "priapism" ; -lin price_N = mkN "price" "prices"; -- from DictEng -lin price_V = mkV "price"; -- from DictEng -lin price_V2 = mkV2 (mkV "price" "prices" "priced" "priced" "pricing"); -- from DictEng -lin price_V2V = mkV2V (mkV "price") noPrep to_Prep ; -- from DictEng -lin price_controlled_A = compoundA (mkA "price - controlled"); -- from DictEng -lin price_fixing_N = mkN "price fixing" ; -lin price_control_N = mkN "price - control" "price - controls"; -- from DictEng -lin price_controlled_A = compoundA (mkA "price - controlled"); -- from DictEng -lin priceless_A = compoundA (mkA "priceless"); -- from DictEng -lin pricelist_N = mkN "pricelist" "pricelists"; -- from DictEng -lin pricey_A = mkA "pricey" "priceyyer*"; -- from DictEng -lin pricing_N = mkN "pricing" ; -lin prick_N = mkN "prick" "pricks"; -- from DictEng -lin prick_V = mkV "prick" "pricks" "pricked" "pricked" "pricking"; -- from DictEng -lin prick_V2 = mkV2 (mkV "prick" "pricks" "pricked" "pricked" "pricking"); -- from DictEng -lin pricker_N = mkN "pricker" "prickers"; -- from DictEng -lin pricket_N = mkN "pricket" ; -lin pricking_N = mkN "pricking" "prickings"; -- from DictEng -lin prickle_N = mkN "prickle" "prickles"; -- from DictEng -lin prickle_V = mkV "prickle" "prickles" "prickled" "prickled" "prickling"; -- from DictEng -lin prickle_V2 = mkV2 (mkV "prickle" "prickles" "prickled" "prickled" "prickling"); -- from DictEng -lin prickleback_N = mkN "prickleback" ; -lin prickliness_N = mkN "prickliness" ; -lin prickling_N = mkN "prickling" ; -lin prickly_A = mkA "prickly" "pricklier"; -- from DictEng -lin prickly_leaved_A = compoundA (mkA "prickly leaved") ; -lin pride_N = mkN "pride" "prides"; -- from DictEng -lin pride_V2 = mkV2 (mkV "pride" "prides" "prided" "prided" "priding"); -- from DictEng -lin pride_of_california_PN = mkPN "pride of California" ; -lin prie_dieu_N = mkN "prie - dieu" "prie - dieus"; -- from DictEng -lin prie_dieu_N = mkN "prie - dieu" "prie - dieus"; -- from DictEng -lin priest_N = mkN "priest" "priests"; -- from DictEng -lin priest_ridden_A = compoundA (mkA "priest - ridden"); -- from DictEng -lin priestcraft_N = mkN "priestcraft" ; -- from DictEng -lin priestess_N = mkN "priestess" "priestesses"; -- from DictEng -lin priesthood_N = mkN "priesthood" "priesthoods"; -- from DictEng -lin priestlike_A = compoundA (mkA "priestlike"); -- from DictEng -lin priestly_A = mkA "priestly" "priestlier"; -- from DictEng -lin prig_N = mkN "prig" "prigs"; -- from DictEng -lin priggish_A = compoundA (mkA "priggish"); -- from DictEng -lin priggishly_Adv = mkAdv "priggishly" ; -lin priggishness_N = mkN "priggishness" ; -- from DictEng -lin prim_A = mkA "prim" "primmer*"; -- from DictEng -lin prim_V2 = mkV2 (mkV "prim" "prims" "primmed" "primmed" "primming"); -- from DictEng -lin prima_A = compoundA (mkA "prima"); -- from DictEng -lin prima_ballerina_N = mkN "prima ballerina" "prima ballerinas"; -- from DictEng -lin prima_donna_N = mkN "prima donna" "prima donnas"; -- from DictEng -lin prima_facie_A = compoundA (mkA "prima facie"); -- from DictEng -lin prima_facie_Adv = mkAdv "prima facie"; -- from DictEng -lin primacy_N = mkN "primacy" "primacies"; -- from DictEng -lin primaeval_A = compoundA (mkA "primaeval"); -- from DictEng -lin primal_A = compoundA (mkA "primal"); -- from DictEng -lin primality_N = mkN "primality" ; -lin primaquine_N = mkN "primaquine" ; -lin primarily_Adv = mkAdv "primarily" ; -lin primary_A = compoundA (mkA "primary"); -- from DictEng -lin primary_N = mkN "primary" "primaries"; -- from DictEng -lin primate_N = mkN "primate" "primates"; -- from DictEng -lin primateship_N = mkN "primateship" ; -lin primatology_N = mkN "primatology" ; -lin prime_A = compoundA (mkA "prime"); -- from DictEng -lin prime_N = mkN "prime" ; -- from DictEng -lin prime_V2 = mkV2 (mkV "prime" "primes" "primed" "primed" "priming"); -- from DictEng -lin primer_N = mkN "primer" "primers"; -- from DictEng -lin primeval_A = compoundA (mkA "primeval"); -- from DictEng -lin primidone_N = mkN "primidone" ; -lin primigravida_N = mkN "primigravida" ; -lin priming_N = mkN "priming" "primings"; -- from DictEng -lin primipara_N = mkN "primipara" ; -lin primiparous_A = mkA "primiparous" ; -lin primitive_A = compoundA (mkA "primitive"); -- from DictEng -lin primitive_N = mkN "primitive" "primitives"; -- from DictEng -lin primitively_Adv = mkAdv "primitively" ; -lin primitiveness_N = mkN "primitiveness" ; -- from DictEng -lin primitivism_N = mkN "primitivism" ; -lin primly_Adv = mkAdv "primly" ; -lin primness_N = mkN "primness" ; -- from DictEng -lin primo_A = mkA "primo" ; -lin primo_N = mkN "primo" ; -lin primogeniture_N = mkN "primogeniture" ; -- from DictEng -lin primordial_A = compoundA (mkA "primordial"); -- from DictEng -lin primordium_N = mkN "primordium" ; -lin primp_V = mkV "primp" ; -lin primp_V2 = mkV2 (mkV "primp" "primps" "primped" "primped" "primping"); -- from DictEng -lin primping_N = mkN "primping" ; -lin primrose_N = mkN "primrose" "primroses"; -- from DictEng -lin primula_N = mkN "primula" "primulas"; -- from DictEng -lin primus_N = mkN "primus" "primuses"; -- from DictEng -lin prince_N = mkN "prince" "princes"; -- from DictEng -lin prince's_feather_N = mkN "prince's feather" ; -lin princedom_N = mkN "princedom" "princedoms"; -- from DictEng -lin princeling_N = mkN "princeling" ; -lin princely_A = mkA "princely" "princelier"; -- from DictEng -lin princess_N = mkN "princess" "princesses"; -- from DictEng -lin princewood_N = mkN "princewood" ; -lin principal_A = compoundA (mkA "principal"); -- from DictEng -lin principal_N = mkN "principal" "principals"; -- from DictEng -lin principality_N = mkN "principality" "principalities"; -- from DictEng -lin principalship_N = mkN "principalship" ; -lin principle_N = mkN "principle" "principles"; -- from DictEng -lin principled_A = compoundA (mkA "principled"); -- from DictEng -lin prink_V2 = mkV2 (mkV "prink" "prinks" "prinked" "prinked" "prinking"); -- from DictEng -lin print_N = mkN "print" "prints"; -- from DictEng -lin print_V = mkV "print" "prints" "printed" "printed" "printing"; -- from DictEng -lin print_V2 = mkV2 (mkV "print" "prints" "printed" "printed" "printing"); -- from DictEng -lin print_seller_N = mkN "print - seller" "print - sellers"; -- from DictEng -lin print_shop_N = mkN "print - shop" "print - shops"; -- from DictEng -lin printable_A = compoundA (mkA "printable"); -- from DictEng -lin printer_N = mkN "printer" "printers"; -- from DictEng -lin printing_N = mkN "printing" "printings"; -- from DictEng -lin printing_ink_N = mkN "printing - ink" "printing - inks"; -- from DictEng -lin printing_press_N = mkN "printing - press" "printing - presses"; -- from DictEng -lin printmaker_N = mkN "printmaker" ; -lin printmaking_N = mkN "printmaking" ; -lin printout_N = mkN "printout" "printouts"; -- from DictEng -lin prion_N = mkN "prion" ; -lin prior_A = compoundA (mkA "prior"); -- from DictEng -lin prior_N = mkN "prior" "priors"; -- from DictEng -lin prioress_N = mkN "prioress" "prioresses"; -- from DictEng -lin priority_N = mkN "priority" "priorities"; -- from DictEng -lin priorship_N = mkN "priorship" ; -lin priory_N = mkN "priory" "priories"; -- from DictEng -lin prise_V2 = mkV2 (mkV "prise" "prises" "prised" "prised" "prising"); -- from DictEng -lin prism_N = mkN "prism" "prisms"; -- from DictEng -lin prismatic_A = compoundA (mkA "prismatic"); -- from DictEng -lin prismatoid_N = mkN "prismatoid" ; -lin prismoid_N = mkN "prismoid" ; -lin prison_N = mkN "prison" "prisons"; -- from DictEng -lin prison_breaking_N = mkN "prison - breaking" "prison - breakings"; -- from DictEng -lin prisoner_N = mkN "prisoner" "prisoners"; -- from DictEng -lin prisonlike_A = mkA "prisonlike" ; -lin pristine_A = compoundA (mkA "pristine"); -- from DictEng -lin privacy_N = mkN "privacy" ; -- from DictEng -lin private_A = compoundA (mkA "private"); -- from DictEng -lin private_N = mkN "private" "privates"; -- from DictEng -lin privateer_N = mkN "privateer" "privateers"; -- from DictEng -lin privately_Adv = mkAdv "privately" ; -lin privation_N = mkN "privation" "privations"; -- from DictEng -lin privatize_V2 = mkV2 (mkV "privatize"); -- from DictEng -lin privet_N = mkN "privet" ; -- from DictEng -lin privilege_N = mkN "privilege" "privileges"; -- from DictEng -lin privileged_A = compoundA (mkA "privileged"); -- from DictEng -lin privily_Adv = mkAdv "privily" ; -lin privy_A = compoundA (mkA "privy"); -- from DictEng -lin privy_N = mkN "privy" "privies"; -- from DictEng -lin prize_N = mkN "prize" "prizes"; -- from DictEng -lin prize_V2 = mkV2 (mkV "prize" "prizes" "prized" "prized" "prizing"); -- from DictEng -lin prize_fight_N = mkN "prize - fight" "prize - fights"; -- from DictEng -lin prize_money_N = mkN "prize - money" ; -- from DictEng -lin prize_ring_N = mkN "prize - ring" "prize - rings"; -- from DictEng -lin prizefight_N = mkN "prizefight" ; -lin prizefighter_N = mkN "prizefighter" ; -lin pro_A = mkA "pro" ; -lin pro_Adv = mkAdv "pro"; -- from DictEng -lin pro_N = mkN "pro" "pros"; -- from DictEng -lin pro_american_A = compoundA (mkA "pro American") ; -lin pro_choice_A = compoundA (mkA "pro choice") ; -lin pro_life_A = compoundA (mkA "pro life") ; -lin pro_lifer_N = mkN "pro lifer" ; -lin pro_bono_A = compoundA (mkA "pro bono") ; -lin pro_forma_A = compoundA (mkA "pro forma"); -- from DictEng -lin pro_forma_Adv = mkAdv "pro forma"; -- from DictEng -lin pro_rata_Adv = mkAdv "pro rata"; -- from DictEng -lin pro_tem_A = compoundA (mkA "pro tem") ; -lin pro_tem_Adv = mkAdv "pro tem"; -- from DictEng -lin pro_tempore_Adv = mkAdv "pro tempore"; -- from DictEng -lin proaccelerin_N = mkN "proaccelerin" ; -lin proactive_A = mkA "proactive" ; -lin probabilism_N = mkN "probabilism" ; -lin probabilistic_A = compoundA (mkA "probabilistic"); -- from DictEng -lin probabilistically_Adv = mkAdv "probabilistically"; -- from DictEng -lin probability_N = mkN "probability" "probabilities"; -- from DictEng -lin probable_A = compoundA (mkA "probable"); -- from DictEng -lin probable_N = mkN "probable" "probables"; -- from DictEng -lin probably_Adv = mkAdv "probably" ; -lin probate_N = mkN "probate" "probates"; -- from DictEng -lin probate_V2 = mkV2 (mkV "probate" "probates" "probated" "probated" "probating"); -- from DictEng -lin probation_N = mkN "probation" ; -- from DictEng -lin probationary_A = compoundA (mkA "probationary"); -- from DictEng -lin probationer_N = mkN "probationer" "probationers"; -- from DictEng -lin probative_A = mkA "probative" ; -lin probe_N = mkN "probe" "probes"; -- from DictEng -lin probe_V = mkV "probe"; -- from DictEng -lin probe_V2 = mkV2 (mkV "probe" "probes" "probed" "probed" "probing"); -- from DictEng -lin probenecid_N = mkN "probenecid" ; -lin probiotic_N = mkN "probiotic" ; -lin probity_N = mkN "probity" ; -- from DictEng -lin problem_N = mkN "problem" "problems"; -- from DictEng -lin problematic_A = compoundA (mkA "problematic"); -- from DictEng -lin problematically_Adv = mkAdv "problematically"; -- from DictEng -lin proboscidean_N = mkN "proboscidean" ; -lin proboscis_N = mkN "proboscis" "proboscises"; -- from DictEng -lin procaine_N = mkN "procaine" ; -lin procarbazine_N = mkN "procarbazine" ; -lin procedural_A = compoundA (mkA "procedural"); -- from DictEng -lin procedure_N = mkN "procedure" "procedures"; -- from DictEng -lin proceed_V = mkV "proceed" "proceeds" "proceeded" "proceeded" "proceeding"; -- from DictEng -lin proceed_V2 = mkV2 (mkV "proceed" "proceeds" "proceeded" "proceeded" "proceeding"); -- from DictEng -lin proceed_V2V = mkV2V (mkV "proceed" "proceeds" "proceeded" "proceeded" "proceeding") noPrep to_Prep ; -- from DictEng -lin proceeding_N = mkN "proceeding" "proceedings"; -- from DictEng -lin process_N = mkN "process" "processes"; -- from DictEng -lin process_V = mkV "process" "processes" "processed" "processed" "processing"; -- from DictEng -lin process_V2 = mkV2 (mkV "process" "processes" "processed" "processed" "processing"); -- from DictEng -lin process_server_N = mkN "process - server" "process - servers"; -- from DictEng -lin process_server_N = mkN "process - server" "process - servers"; -- from DictEng -lin processed_A = mkA "processed" ; -lin processing_N = mkN "processing" ; -lin procession_N = mkN "procession" "processions"; -- from DictEng -lin processional_A = compoundA (mkA "processional"); -- from DictEng -lin processional_N = mkN "processional" ; -lin processor_N = mkN "processor" "processors"; -- from DictEng -lin prochlorperazine_N = mkN "prochlorperazine" ; -lin proclaim_V2 = mkV2 (mkV "proclaim" "proclaims" "proclaimed" "proclaimed" "proclaiming"); -- from DictEng -lin proclaim_VS = mkVS (mkV "proclaim"); -- from DictEng -lin proclamation_N = mkN "proclamation" "proclamations"; -- from DictEng -lin proclivity_N = mkN "proclivity" "proclivities"; -- from DictEng -lin proconsul_N = mkN "proconsul" "proconsuls"; -- from DictEng -lin proconsular_A = compoundA (mkA "proconsular"); -- from DictEng -lin proconsulate_N = mkN "proconsulate" "proconsulates"; -- from DictEng -lin proconsulship_N = mkN "proconsulship" ; -lin proconvertin_N = mkN "proconvertin" ; -lin procrastinate_V = mkV "procrastinate" "procrastinates" "procrastinated" "procrastinated" "procrastinating"; -- from DictEng -lin procrastination_N = mkN "procrastination" ; -- from DictEng -lin procrastinator_N = mkN "procrastinator" ; -lin procreate_V2 = mkV2 (mkV "procreate" "procreates" "procreated" "procreated" "procreating"); -- from DictEng -lin procreation_N = mkN "procreation" "procreations"; -- from DictEng -lin proctalgia_N = mkN "proctalgia" ; -lin proctitis_N = mkN "proctitis" ; -lin proctologist_N = mkN "proctologist" ; -lin proctology_N = mkN "proctology" ; -lin proctoplasty_N = mkN "proctoplasty" ; -lin proctor_N = mkN "proctor" "proctors"; -- from DictEng -lin proctorship_N = mkN "proctorship" ; -lin proctoscope_N = mkN "proctoscope" ; -lin proctoscopy_N = mkN "proctoscopy" ; -lin procumbent_A = mkA "procumbent" ; -lin procurable_A = compoundA (mkA "procurable"); -- from DictEng -lin procurator_N = mkN "procurator" "procurators"; -- from DictEng -lin procure_V2 = mkV2 (mkV "procure" "procures" "procured" "procured" "procuring"); -- from DictEng -lin procurement_N = mkN "procurement" "procurements"; -- from DictEng -lin procurer_N = mkN "procurer" "procurers"; -- from DictEng -lin procuress_N = mkN "procuress" "procuresses"; -- from DictEng -lin procyclidine_N = mkN "procyclidine" ; -lin procyonid_N = mkN "procyonid" ; -lin prod_N = mkN "prod" "prods"; -- from DictEng -lin prod_V = mkV "prod" "prods" "prodded" "prodded" "prodding"; -- from DictEng -lin prod_V2 = mkV2 (mkV "prod" "prods" "prodded" "prodded" "prodding"); -- from DictEng -lin prod_V2V = mkV2V (mkV "prod" "prods" "prodded" "prodded" "prodding") noPrep to_Prep ; -- from DictEng -lin prodigal_A = compoundA (mkA "prodigal"); -- from DictEng -lin prodigal_N = mkN "prodigal" "prodigals"; -- from DictEng -lin prodigality_N = mkN "prodigality" ; -- from DictEng -lin prodigious_A = compoundA (mkA "prodigious"); -- from DictEng -lin prodigiously_Adv = mkAdv "prodigiously" ; -lin prodigy_N = mkN "prodigy" "prodigies"; -- from DictEng -lin prodromal_A = mkA "prodromal" ; -lin prodrome_N = mkN "prodrome" ; -lin produce_N = mkN "produce" ; -- from DictEng -lin produce_V = mkV "produce" "produces" "produced" "produced" "producing"; -- from DictEng -lin produce_V2 = mkV2 (mkV "produce" "produces" "produced" "produced" "producing"); -- from DictEng -lin producer_N = mkN "producer" "producers"; -- from DictEng -lin product_N = mkN "product" "products"; -- from DictEng -lin production_N = mkN "production" "productions"; -- from DictEng -lin productive_A = compoundA (mkA "productive"); -- from DictEng -lin productively_Adv = mkAdv "productively" ; -lin productiveness_N = mkN "productiveness" ; -lin productivity_N = mkN "productivity" ; -- from DictEng -lin proenzyme_N = mkN "proenzyme" ; -lin profanation_N = mkN "profanation" "profanations"; -- from DictEng -lin profanatory_A = mkA "profanatory" ; -lin profane_A = compoundA (mkA "profane"); -- from DictEng -lin profane_V2 = mkV2 (mkV "profane" "profanes" "profaned" "profaned" "profaning"); -- from DictEng -lin profaned_A = mkA "profaned" ; -lin profanely_Adv = mkAdv "profanely" ; -lin profaneness_N = mkN "profaneness" ; -- from DictEng -lin profanity_N = mkN "profanity" "profanities"; -- from DictEng -lin profess_V = mkV "profess" "professes" "professed" "professed" "professing"; -- from DictEng -lin profess_V2 = mkV2 (mkV "profess" "professes" "professed" "professed" "professing"); -- from DictEng -lin profess_V2V = mkV2V (mkV "profess" "professes" "professed" "professed" "professing") noPrep to_Prep ; -- from DictEng -lin professed_A = compoundA (mkA "professed"); -- from DictEng -lin professedly_Adv = mkAdv "professedly" ; -lin profession_N = mkN "profession" "professions"; -- from DictEng -lin professional_A = compoundA (mkA "professional"); -- from DictEng -lin professional_N = mkN "professional" "professionals"; -- from DictEng -lin professionalism_N = mkN "professionalism" ; -- from DictEng -lin professionalization_N = mkN "professionalization" ; -lin professionally_Adv = mkAdv "professionally" ; -lin professor_N = mkN "professor" "professors"; -- from DictEng -lin professorial_A = compoundA (mkA "professorial"); -- from DictEng -lin professorially_Adv = mkAdv "professorially" ; -lin professorship_N = mkN "professorship" "professorships"; -- from DictEng -lin proffer_N = mkN "proffer" "proffers"; -- from DictEng -lin proffer_V2 = mkV2 (mkV "proffer" "proffers" "proffered" "proffered" "proffering"); -- from DictEng -lin proficiency_N = mkN "proficiency" ; -- from DictEng -lin proficient_A = compoundA (mkA "proficient"); -- from DictEng -lin proficiently_Adv = mkAdv "proficiently" ; -lin profile_N = mkN "profile" "profiles"; -- from DictEng -lin profile_V2 = mkV2 (mkV "profile" "profiles" "profiled" "profiled" "profiling"); -- from DictEng -lin profiling_N = mkN "profiling" ; -lin profit_N = mkN "profit" "profits"; -- from DictEng -lin profit_V = mkV "profit" "profits" "profited" "profited" "profiting"; -- from DictEng -lin profit_V2 = mkV2 (mkV "profit" "profits" "profited" "profited" "profiting"); -- from DictEng -lin profit_maximizing_A = compoundA (mkA "profit maximizing") ; -lin profit_margin_N = mkN "profit - margin" "profit - margins"; -- from DictEng -lin profit_sharing_N = mkN "profit - sharing" ; -- from DictEng -lin profitable_A = compoundA (mkA "profitable"); -- from DictEng -lin profitableness_N = mkN "profitableness" ; -lin profiteer_N = mkN "profiteer" "profiteers"; -- from DictEng -lin profiteer_V = mkV "profiteer" "profiteers" "profiteered" "profiteered" "profiteering"; -- from DictEng -lin profiterole_N = mkN "profiterole" ; -lin profitless_A = compoundA (mkA "profitless"); -- from DictEng -lin profitlessly_Adv = mkAdv "profitlessly" ; -lin profligacy_N = mkN "profligacy" ; -- from DictEng -lin profligate_A = compoundA (mkA "profligate"); -- from DictEng -lin profligate_N = mkN "profligate" "profligates"; -- from DictEng -lin profligately_Adv = mkAdv "profligately" ; -lin profound_A = compoundA (mkA "profound"); -- from DictEng -lin profoundly_Adv = mkAdv "profoundly" ; -lin profoundly_deaf_A = compoundA (mkA "profoundly deaf") ; -lin profoundness_N = mkN "profoundness" ; -lin profundity_N = mkN "profundity" "profundities"; -- from DictEng -lin profuse_A = compoundA (mkA "profuse"); -- from DictEng -lin profuseness_N = mkN "profuseness" ; -- from DictEng -lin profusion_N = mkN "profusion" ; -- from DictEng -lin progenitor_N = mkN "progenitor" "progenitors"; -- from DictEng -lin progeria_N = mkN "progeria" ; -lin progestational_A = mkA "progestational" ; -lin progesterone_N = mkN "progesterone" ; -lin progestin_N = mkN "progestin" ; -lin prognathism_N = mkN "prognathism" ; -lin prognathous_A = mkA "prognathous" ; -lin prognosis_N = mkN "prognosis" "prognoses" {- FIXME: guessed plural form -}; -- from DictEng -lin prognostic_A = compoundA (mkA "prognostic"); -- from DictEng -lin prognostic_N = mkN "prognostic" "prognostics"; -- from DictEng -lin prognosticate_V2 = mkV2 (mkV "prognosticate" "prognosticates" "prognosticated" "prognosticated" "prognosticating"); -- from DictEng -lin prognostication_N = mkN "prognostication" "prognostications"; -- from DictEng -lin program_N = mkN "program" "programs"; -- from DictEng -lin program_V2 = mkV2 (mkV "program" "programs" "programmed" "programmed" "programming"); -- from DictEng -lin program_V2V = mkV2V (mkV "program") noPrep to_Prep ; -- from DictEng -lin programma_N = mkN "programma" ; -lin programme_N = mkN "programme" "programmes"; -- from DictEng -lin programme_V2 = mkV2 (mkV "programme" "programmes" "programmed" "programmed" "programming"); -- from DictEng -lin programmer_N = mkN "programmer" "programmers"; -- from DictEng -lin programming_N = mkN "programming" ; -lin progress_N = mkN "progress" "progresses"; -- from DictEng -lin progress_V = mkV "progress" "progresses" "progressed" "progressed" "progressing"; -- from DictEng -lin progress_V2 = mkV2 (mkV "progress" "progresses" "progressed" "progressed" "progressing"); -- from DictEng -lin progression_N = mkN "progression" ; -- from DictEng -lin progressive_A = compoundA (mkA "progressive"); -- from DictEng -lin progressive_N = mkN "progressive" "progressives"; -- from DictEng -lin progressiveness_N = mkN "progressiveness" ; -- from DictEng -lin progressivism_N = mkN "progressivism" ; -lin progymnosperm_N = mkN "progymnosperm" ; -lin prohibit_V = mkV "prohibit"; -- from DictEng -lin prohibit_V2 = mkV2 (mkV "prohibit" "prohibits" "prohibited" "prohibited" "prohibiting"); -- from DictEng -lin prohibit_VS = mkVS (mkV "prohibit"); -- from DictEng -lin prohibition_N = mkN "prohibition" "prohibitions"; -- from DictEng -lin prohibitionist_N = mkN "prohibitionist" "prohibitionists"; -- from DictEng -lin prohibitive_A = compoundA (mkA "prohibitive"); -- from DictEng -lin prohibitively_Adv = mkAdv "prohibitively" ; -lin prohibitory_A = compoundA (mkA "prohibitory"); -- from DictEng -lin proinflammatory_A = mkA "proinflammatory" ; -lin project_N = mkN "project" "projects"; -- from DictEng -lin project_V = mkV "project" "projects" "projected" "projected" "projecting"; -- from DictEng -lin project_V2 = mkV2 (mkV "project" "projects" "projected" "projected" "projecting"); -- from DictEng -lin project_V2V = mkV2V (mkV "project" "projects" "projected" "projected" "projecting") noPrep to_Prep ; -- from DictEng -lin project_VS = mkVS (mkV "project" "projects" "projected" "projected" "projecting"); -- from DictEng -lin projectile_A = compoundA (mkA "projectile"); -- from DictEng -lin projectile_N = mkN "projectile" "projectiles"; -- from DictEng -lin projection_N = mkN "projection" "projections"; -- from DictEng -lin projectionist_N = mkN "projectionist" "projectionists"; -- from DictEng -lin projector_N = mkN "projector" "projectors"; -- from DictEng -lin prokaryote_N = mkN "prokaryote" ; -lin prokaryotic_A = mkA "prokaryotic" ; -lin prolactin_N = mkN "prolactin" ; -lin prolamine_N = mkN "prolamine" ; -lin prolapse_N = mkN "prolapse" "prolapses"; -- from DictEng -lin prolapse_V = mkV "prolapse" "prolapses" "prolapsed" "prolapsed" "prolapsing"; -- from DictEng -lin prolate_A = mkA "prolate" ; -lin prole_N = mkN "prole" "proles"; -- from DictEng -lin prolegomenon_N = mkN "prolegomenon" ; -lin prolepsis_N = mkN "prolepsis" ; -lin proletarian_A = compoundA (mkA "proletarian"); -- from DictEng -lin proletarian_N = mkN "proletarian" "proletarians"; -- from DictEng -lin proletariat_N = mkN "proletariat" "proletariats"; -- from DictEng -lin proliferate_V = mkV "proliferate" "proliferates" "proliferated" "proliferated" "proliferating"; -- from DictEng -lin proliferate_V2 = mkV2 (mkV "proliferate" "proliferates" "proliferated" "proliferated" "proliferating"); -- from DictEng -lin proliferation_N = mkN "proliferation" "proliferations"; -- from DictEng -lin prolific_A = compoundA (mkA "prolific"); -- from DictEng -lin proline_N = mkN "proline" ; -lin prolix_A = compoundA (mkA "prolix"); -- from DictEng -lin prolixity_N = mkN "prolixity" ; -- from DictEng -lin prologue_N = mkN "prologue" "prologues"; -- from DictEng -lin prolong_V2 = mkV2 (mkV "prolong" "prolongs" "prolonged" "prolonged" "prolonging"); -- from DictEng -lin prolongation_N = mkN "prolongation" "prolongations"; -- from DictEng -lin prolonge_N = mkN "prolonge" ; -lin prolonged_A = compoundA (mkA "prolonged"); -- from DictEng -lin prolusory_A = mkA "prolusory" ; -lin prom_N = mkN "prom" "proms"; -- from DictEng -lin promenade_N = mkN "promenade" "promenades"; -- from DictEng -lin promenade_V = mkV "promenade" "promenades" "promenaded" "promenaded" "promenading"; -- from DictEng -lin promenade_V2 = mkV2 (mkV "promenade" "promenades" "promenaded" "promenaded" "promenading"); -- from DictEng -lin promethazine_N = mkN "promethazine" ; -lin promethium_N = mkN "promethium" ; -lin prominence_N = mkN "prominence" "prominences"; -- from DictEng -lin prominent_A = compoundA (mkA "prominent"); -- from DictEng -lin prominently_Adv = mkAdv "prominently" ; -lin promiscuity_N = mkN "promiscuity" ; -- from DictEng -lin promiscuous_A = compoundA (mkA "promiscuous"); -- from DictEng -lin promiscuously_Adv = mkAdv "promiscuously" ; -lin promise_N = mkN "promise" "promises"; -- from DictEng -lin promise_V = mkV "promise" "promises" "promised" "promised" "promising"; -- from DictEng -lin promise_V2 = mkV2 (mkV "promise" "promises" "promised" "promised" "promising"); -- from DictEng -lin promise_VS = mkVS (mkV "promise" "promises" "promised" "promised" "promising"); -- from DictEng -lin promise_VV = mkVV (mkV "promise" "promises" "promised" "promised" "promising"); -- from DictEng -lin promisee_N = mkN "promisee" ; -lin promiser_N = mkN "promiser" ; -lin promising_A = compoundA (mkA "promising"); -- from DictEng -lin promisingly_Adv = mkAdv "promisingly" ; -lin promissory_A = compoundA (mkA "promissory"); -- from DictEng -lin promontory_N = mkN "promontory" "promontories"; -- from DictEng -lin promote_V = mkV "promote"; -- from DictEng -lin promote_V2 = mkV2 (mkV "promote" "promotes" "promoted" "promoted" "promoting"); -- from DictEng -lin promoter_N = mkN "promoter" "promoters"; -- from DictEng -lin promotion_N = mkN "promotion" "promotions"; -- from DictEng -lin promotional_A = compoundA (mkA "promotional"); -- from DictEng -lin promotive_A = mkA "promotive" ; -lin prompt_A = compoundA (mkA "prompt"); -- from DictEng -lin prompt_N = mkN "prompt" "prompts"; -- from DictEng -lin prompt_V2 = mkV2 (mkV "prompt" "prompts" "prompted" "prompted" "prompting"); -- from DictEng -lin prompt_V2V = mkV2V (mkV "prompt" "prompts" "prompted" "prompted" "prompting") noPrep to_Prep; -- from DictEng -lin prompt_box_N = mkN "prompt - box" "prompt - boxes"; -- from DictEng -lin prompt_copy_N = mkN "prompt - copy" "prompt - copies"; -- from DictEng -lin promptbook_N = mkN "promptbook" ; -lin prompter_N = mkN "prompter" "prompters"; -- from DictEng -lin prompting_N = mkN "prompting" "promptings"; -- from DictEng -lin promptitude_N = mkN "promptitude" ; -- from DictEng -lin promptly_Adv = mkAdv "promptly" ; -lin promptness_N = mkN "promptness" ; -- from DictEng -lin promulgate_V2 = mkV2 (mkV "promulgate" "promulgates" "promulgated" "promulgated" "promulgating"); -- from DictEng -lin promulgated_A = mkA "promulgated" ; -lin promulgation_N = mkN "promulgation" ; -- from DictEng -lin promulgator_N = mkN "promulgator" ; -lin promycelium_N = mkN "promycelium" ; -lin pronation_N = mkN "pronation" ; -lin pronator_N = mkN "pronator" ; -lin prone_A = compoundA (mkA "prone"); -- from DictEng -lin proneness_N = mkN "proneness" ; -- from DictEng -lin prong_N = mkN "prong" "prongs"; -- from DictEng -lin pronged_A = compoundA (mkA "pronged"); -- from DictEng -lin pronghorn_N = mkN "pronghorn" ; -lin pronominal_A = compoundA (mkA "pronominal"); -- from DictEng -lin pronoun_N = mkN "pronoun" "pronouns"; -- from DictEng -lin pronounce_V = mkV "pronounce" "pronounces" "pronounced" "pronounced" "pronouncing"; -- from DictEng -lin pronounce_V2 = mkV2 (mkV "pronounce" "pronounces" "pronounced" "pronounced" "pronouncing"); -- from DictEng -lin pronounce_VS = mkVS (mkV "pronounce" "pronounces" "pronounced" "pronounced" "pronouncing"); -- from DictEng -lin pronounceable_A = compoundA (mkA "pronounceable"); -- from DictEng -lin pronounced_A = compoundA (mkA "pronounced"); -- from DictEng -lin pronouncement_N = mkN "pronouncement" "pronouncements"; -- from DictEng -lin pronto_Adv = mkAdv "pronto"; -- from DictEng -lin pronucleus_N = mkN "pronucleus" ; -lin pronunciamento_N = mkN "pronunciamento" "pronunciamentos"; -- from DictEng -lin pronunciation_N = mkN "pronunciation" "pronunciations"; -- from DictEng -lin proof_A = compoundA (mkA "proof"); -- from DictEng -lin proof_N = mkN "proof" "proofs"; -- from DictEng -lin proof_V2 = mkV2 (mkV "proof" "proofs" "proofed" "proofed" "proofing"); -- from DictEng -lin proofed_A = mkA "proofed" ; -lin proofread_V = mkV "proof" IrregEng.read_V; -- from DictEng -lin proofread_V2 = mkV2 (mkV "proof" IrregEng.read_V); -- from DictEng -lin proofreader_N = mkN "proofreader" "proofreaders"; -- from DictEng -lin prop_N = mkN "prop" "props"; -- from DictEng -lin prop_V2 = mkV2 (mkV "prop" "props" "propped" "propped" "propping"); -- from DictEng -lin propaedeutic_N = mkN "propaedeutic" ; -lin propaganda_N = mkN "propaganda" ; -- from DictEng -lin propagandist_A = mkA "propagandist" ; -lin propagandist_N = mkN "propagandist" "propagandists"; -- from DictEng -lin propagandize_V = mkV "propagandize" "propagandizes" "propagandized" "propagandized" "propagandizing"; -- from DictEng -lin propagate_V = mkV "propagate" "propagates" "propagated" "propagated" "propagating"; -- from DictEng -lin propagate_V2 = mkV2 (mkV "propagate" "propagates" "propagated" "propagated" "propagating"); -- from DictEng -lin propagation_N = mkN "propagation" ; -- from DictEng -lin propagative_A = mkA "propagative" ; -lin propagator_N = mkN "propagator" "propagators"; -- from DictEng -lin propanal_N = mkN "propanal" ; -lin propane_N = mkN "propane" ; -- from DictEng -lin propanol_N = mkN "propanol" ; -lin propanolol_N = mkN "propanolol" ; -lin proparoxytone_N = mkN "proparoxytone" ; -lin propel_V2 = mkV2 (mkV "propel" "propels" "propelled" "propelled" "propelling"); -- from DictEng -lin propellant_A = compoundA (mkA "propellant"); -- from DictEng -lin propellant_N = mkN "propellant" "propellants"; -- from DictEng -lin propellent_A = compoundA (mkA "propellent"); -- from DictEng -lin propellent_N = mkN "propellent" "propellents"; -- from DictEng -lin propeller_N = mkN "propeller" "propellers"; -- from DictEng -lin propenal_N = mkN "propenal" ; -lin propenoate_N = mkN "propenoate" ; -lin propenonitrile_N = mkN "propenonitrile" ; -lin propensity_N = mkN "propensity" "propensities"; -- from DictEng -lin proper_A = compoundA (mkA "proper"); -- from DictEng -lin properly_Adv = mkAdv "properly" ; -lin properly_speaking_Adv = mkAdv "properly speaking" ; -lin propertied_A = compoundA (mkA "propertied"); -- from DictEng -lin property_N = mkN "property" "properties"; -- from DictEng -lin property_man_N = mkN "property - man" "property - men"; -- from DictEng -lin property_master_N = mkN "property - master" "property - masters"; -- from DictEng -lin propertyless_A = mkA "propertyless" ; -lin prophase_N = mkN "prophase" ; -lin prophecy_N = mkN "prophecy" "prophecies"; -- from DictEng -lin prophesy_V = mkV "prophesy" "prophesies" "prophesied" "prophesied" "prophesying"; -- from DictEng -lin prophesy_V2 = mkV2 (mkV "prophesy" "prophesies" "prophesied" "prophesied" "prophesying"); -- from DictEng -lin prophet_N = mkN "prophet" "prophets"; -- from DictEng -lin prophetess_N = mkN "prophetess" "prophetesses"; -- from DictEng -lin prophetic_A = compoundA (mkA "prophetic"); -- from DictEng -lin prophetical_A = compoundA (mkA "prophetical"); -- from DictEng -lin prophetically_Adv = mkAdv "prophetically" ; -lin prophylactic_A = compoundA (mkA "prophylactic"); -- from DictEng -lin prophylactic_N = mkN "prophylactic" "prophylactics"; -- from DictEng -lin prophylaxis_N = mkN "prophylaxis" ; -- from DictEng -lin prophyll_N = mkN "prophyll" ; -lin propinquity_N = mkN "propinquity" ; -- from DictEng -lin propitiate_V2 = mkV2 (mkV "propitiate" "propitiates" "propitiated" "propitiated" "propitiating"); -- from DictEng -lin propitiation_N = mkN "propitiation" ; -- from DictEng -lin propitiative_A = mkA "propitiative" ; -lin propitiatory_A = compoundA (mkA "propitiatory"); -- from DictEng -lin propitious_A = compoundA (mkA "propitious"); -- from DictEng -lin propjet_N = mkN "propjet" ; -lin proponent_N = mkN "proponent" "proponents"; -- from DictEng -lin proportion_N = mkN "proportion" "proportions"; -- from DictEng -lin proportion_V2 = mkV2 (mkV "proportion" "proportions" "proportioned" "proportioned" "proportioning"); -- from DictEng -lin proportionable_A = compoundA (mkA "proportionable"); -- from DictEng -lin proportional_A = compoundA (mkA "proportional"); -- from DictEng -lin proportional_N = mkN "proportional" ; -lin proportionality_N = mkN "proportionality" ; -- from DictEng -lin proportionate_A = compoundA (mkA "proportionate"); -- from DictEng -lin proportionately_Adv = mkAdv "proportionately" ; -lin proposal_N = mkN "proposal" "proposals"; -- from DictEng -lin propose_V = mkV "propose" "proposes" "proposed" "proposed" "proposing"; -- from DictEng -lin propose_V2 = mkV2 (mkV "propose" "proposes" "proposed" "proposed" "proposing"); -- from DictEng -lin propose_VS = mkVS (mkV "propose" "proposes" "proposed" "proposed" "proposing"); -- from DictEng -lin propose_VV = mkVV (mkV "propose" "proposes" "proposed" "proposed" "proposing"); -- from DictEng -lin proposer_N = mkN "proposer" "proposers"; -- from DictEng -lin proposition_N = mkN "proposition" "propositions"; -- from DictEng -lin proposition_V2 = mkV2 (mkV "proposition" "propositions" "propositioned" "propositioned" "propositioning"); -- from DictEng -lin propositus_N = mkN "propositus" ; -lin propound_V2 = mkV2 (mkV "propound" "propounds" "propounded" "propounded" "propounding"); -- from DictEng -lin propoxyphene_N = mkN "propoxyphene" ; -lin proprietary_A = compoundA (mkA "proprietary"); -- from DictEng -lin proprietor_N = mkN "proprietor" "proprietors"; -- from DictEng -lin proprietorship_N = mkN "proprietorship" ; -lin proprietress_N = mkN "proprietress" "proprietresses"; -- from DictEng -lin propriety_N = mkN "propriety" "proprieties"; -- from DictEng -lin proprioception_N = mkN "proprioception" ; -lin proprioceptive_A = mkA "proprioceptive" ; -lin proprioceptor_N = mkN "proprioceptor" ; -lin proprionamide_N = mkN "proprionamide" ; -lin props_N = mkN "props" ; -lin propulsion_N = mkN "propulsion" ; -- from DictEng -lin propulsive_A = compoundA (mkA "propulsive"); -- from DictEng -lin propyl_N = mkN "propyl" ; -lin propylene_N = mkN "propylene" ; -lin propylthiouracil_N = mkN "propylthiouracil" ; -lin proration_N = mkN "proration" ; -lin prorogation_N = mkN "prorogation" "prorogations"; -- from DictEng -lin prorogue_V2 = mkV2 (mkV "prorogue" "prorogues" "prorogued" "prorogued" "proroguing"); -- from DictEng -lin prosaic_A = compoundA (mkA "prosaic"); -- from DictEng -lin prosaically_Adv = mkAdv "prosaically"; -- from DictEng -lin proscenium_N = mkN "proscenium" "prosceniums"; -- from DictEng -lin prosciutto_N = mkN "prosciutto" ; -lin proscribe_V2 = mkV2 (mkV "proscribe" "proscribes" "proscribed" "proscribed" "proscribing"); -- from DictEng -lin proscription_N = mkN "proscription" "proscriptions"; -- from DictEng -lin prose_N = mkN "prose" ; -- from DictEng -lin prosecute_V2 = mkV2 (mkV "prosecute" "prosecutes" "prosecuted" "prosecuted" "prosecuting"); -- from DictEng -lin prosecution_N = mkN "prosecution" "prosecutions"; -- from DictEng -lin prosecutor_N = mkN "prosecutor" "prosecutors"; -- from DictEng -lin proselyte_N = mkN "proselyte" "proselytes"; -- from DictEng -lin proselytism_N = mkN "proselytism" ; -lin proselytize_V = mkV "proselytize" "proselytizes" "proselytized" "proselytized" "proselytizing"; -- from DictEng -lin proselytize_V2 = mkV2 (mkV "proselytize" "proselytizes" "proselytized" "proselytized" "proselytizing"); -- from DictEng -lin prosily_Adv = mkAdv "prosily"; -- from DictEng -lin prosimian_N = mkN "prosimian" ; -lin prosiness_N = mkN "prosiness" ; -- from DictEng -lin prosodic_A = mkA "prosodic" ; -lin prosody_N = mkN "prosody" ; -- from DictEng -lin prospect_N = mkN "prospect" "prospects"; -- from DictEng -lin prospect_V = mkV "prospect" "prospects" "prospected" "prospected" "prospecting"; -- from DictEng -lin prospective_A = compoundA (mkA "prospective"); -- from DictEng -lin prospector_N = mkN "prospector" "prospectors"; -- from DictEng -lin prospectus_N = mkN "prospectus" "prospectuses"; -- from DictEng -lin prosper_V = mkV "prosper" "prospers" "prospered" "prospered" "prospering"; -- from DictEng -lin prosper_V2 = mkV2 (mkV "prosper" "prospers" "prospered" "prospered" "prospering"); -- from DictEng -lin prosperity_N = mkN "prosperity" ; -- from DictEng -lin prosperous_A = compoundA (mkA "prosperous"); -- from DictEng -lin prosperously_Adv = mkAdv "prosperously" ; -lin prostaglandin_N = mkN "prostaglandin" ; -lin prostate_A = mkA "prostate" ; -lin prostate_N = mkN "prostate" "prostates"; -- from DictEng -lin prostatectomy_N = mkN "prostatectomy" ; -lin prostatitis_N = mkN "prostatitis" ; -lin prosthesis_N = mkN "prosthesis" ; -lin prosthetic_A = mkA "prosthetic" ; -lin prosthetics_N = mkN "prosthetics" ; -lin prosthetist_N = mkN "prosthetist" ; -lin prosthion_N = mkN "prosthion" ; -lin prosthodontic_A = mkA "prosthodontic" ; -lin prosthodontics_N = mkN "prosthodontics" ; -lin prosthodontist_N = mkN "prosthodontist" ; -lin prostitute_N = mkN "prostitute" "prostitutes"; -- from DictEng -lin prostitute_V2 = mkV2 (mkV "prostitute" "prostitutes" "prostituted" "prostituted" "prostituting"); -- from DictEng -lin prostitution_N = mkN "prostitution" ; -- from DictEng -lin prostrate_A = compoundA (mkA "prostrate"); -- from DictEng -lin prostrate_V2 = mkV2 (mkV "prostrate" "prostrates" "prostrated" "prostrated" "prostrating"); -- from DictEng -lin prostration_N = mkN "prostration" "prostrations"; -- from DictEng -lin prostyle_A = mkA "prostyle" ; -lin prosy_A = mkA "prosy" "prosier"; -- from DictEng -lin protactinium_N = mkN "protactinium" ; -lin protagonist_N = mkN "protagonist" "protagonists"; -- from DictEng -lin protamine_N = mkN "protamine" ; -lin protanopia_N = mkN "protanopia" ; -lin protanopic_A = mkA "protanopic" ; -lin protea_N = mkN "protea" ; -lin protean_A = compoundA (mkA "protean"); -- from DictEng -lin protease_N = mkN "protease" ; -lin protect_V = mkV "protect"; -- from DictEng -lin protect_V2 = mkV2 (mkV "protect" "protects" "protected" "protected" "protecting"); -- from DictEng -lin protected_A = mkA "protected" ; -lin protecting_A = mkA "protecting" ; -lin protection_N = mkN "protection" "protections"; -- from DictEng -lin protectionism_N = mkN "protectionism" ; -- from DictEng -lin protectionist_N = mkN "protectionist" "protectionists"; -- from DictEng -lin protective_A = compoundA (mkA "protective"); -- from DictEng -lin protectively_Adv = mkAdv "protectively" ; -lin protectiveness_N = mkN "protectiveness" ; -lin protector_N = mkN "protector" "protectors"; -- from DictEng -lin protectorate_N = mkN "protectorate" "protectorates"; -- from DictEng -lin protectorship_N = mkN "protectorship" ; -lin protege_N = mkN "protégé" "protégés"; -- from DictEng -lin protegee_N = mkN "protégée" "protégées"; -- from DictEng -lin protein_N = mkN "protein" "proteins"; -- from DictEng -lin proteinaceous_A = mkA "proteinaceous" ; -lin proteolysis_N = mkN "proteolysis" ; -lin proteolytic_A = mkA "proteolytic" ; -lin proteome_N = mkN "proteome" ; -lin proteomics_N = mkN "proteomics" ; -lin proterozoic_A = mkA "proterozoic" ; -lin protest_N = mkN "protest" "protests"; -- from DictEng -lin protest_V = mkV "protest" "protests" "protested" "protested" "protesting"; -- from DictEng -lin protest_V2 = mkV2 (mkV "protest" "protests" "protested" "protested" "protesting"); -- from DictEng -lin protestant_A = compoundA (mkA "protestant"); -- from DictEng -lin protestant_N = mkN "protestant" "protestants"; -- from DictEng -lin protestantism_N = mkN "protestantism" ; -- from DictEng -lin protestation_N = mkN "protestation" "protestations"; -- from DictEng -lin protester_N = mkN "protester" "protesters"; -- from DictEng -lin protestingly_Adv = mkAdv "protestingly"; -- from DictEng -lin prothalamion_N = mkN "prothalamion" ; -lin prothorax_N = mkN "prothorax" ; -lin prothrombin_N = mkN "prothrombin" ; -lin prothrombinase_N = mkN "prothrombinase" ; -lin protist_N = mkN "protist" ; -lin proto_A = mkA "proto" ; -lin proto_oncogene_N = mkN "proto oncogene" ; -lin protoarcheology_N = mkN "protoarcheology" ; -lin protoavis_N = mkN "protoavis" ; -lin protoceratops_N = mkN "protoceratops" ; -lin protocol_N = mkN "protocol" "protocols"; -- from DictEng -lin protoctist_N = mkN "protoctist" ; -lin protogeometric_A = mkA "protogeometric" ; -lin protohippus_N = mkN "protohippus" ; -lin protohistory_N = mkN "protohistory" ; -lin protology_N = mkN "protology" ; -lin proton_N = mkN "proton" "protons"; -- from DictEng -lin protoplasm_N = mkN "protoplasm" ; -- from DictEng -lin prototherian_N = mkN "prototherian" ; -lin prototype_N = mkN "prototype" "prototypes"; -- from DictEng -lin protozoal_A = mkA "protozoal" ; -lin protozoan_N = mkN "protozoan" ; -lin protozoological_A = mkA "protozoological" ; -lin protozoologist_N = mkN "protozoologist" ; -lin protozoology_N = mkN "protozoology" ; -lin protract_V2 = mkV2 (mkV "protract" "protracts" "protracted" "protracted" "protracting"); -- from DictEng -lin protractile_A = mkA "protractile" ; -lin protraction_N = mkN "protraction" "protractions"; -- from DictEng -lin protractor_N = mkN "protractor" "protractors"; -- from DictEng -lin protriptyline_N = mkN "protriptyline" ; -lin protrude_V = mkV "protrude" "protrudes" "protruded" "protruded" "protruding"; -- from DictEng -lin protrude_V2 = mkV2 (mkV "protrude" "protrudes" "protruded" "protruded" "protruding"); -- from DictEng -lin protrusile_A = mkA "protrusile" ; -lin protrusion_N = mkN "protrusion" "protrusions"; -- from DictEng -lin protrusive_A = compoundA (mkA "protrusive"); -- from DictEng -lin protuberance_N = mkN "protuberance" "protuberances"; -- from DictEng -lin protuberant_A = compoundA (mkA "protuberant"); -- from DictEng -lin proturan_N = mkN "proturan" ; -lin proud_A = mkA "proud" "prouder"; -- from DictEng -lin proudly_Adv = mkAdv "proudly" ; -lin provable_A = compoundA (mkA "provable"); -- from DictEng -lin prove_V = mkV "prove" "proves" "proved" "proved" "proving"; -- from DictEng -lin prove_V2 = mkV2 (mkV "prove" "proves" "proved" "proved" "proving"); -- from DictEng -lin prove_V2V = mkV2V (mkV "prove" "proves" "proved" "proved" "proving") noPrep to_Prep ; -- from DictEng -lin prove_VA = mkVA (mkV "prove" "proves" "proved" "proved" "proving"); -- from DictEng -lin prove_VS = mkVS (mkV "prove" "proves" "proved" "proved" "proving"); -- from DictEng -lin proved_A = mkA "proved" ; -lin provenance_N = mkN "provenance" ; -- from DictEng -lin provencal_A = mkA "provencal" ; -lin provender_N = mkN "provender" ; -- from DictEng -lin proverb_N = mkN "proverb" "proverbs"; -- from DictEng -lin proverbial_A = compoundA (mkA "proverbial"); -- from DictEng -lin proverbially_Adv = mkAdv "proverbially" ; -lin provide_V = mkV "provide" "provides" "provided" "provided" "providing"; -- from DictEng -lin provide_V2 = mkV2 (mkV "provide" "provides" "provided" "provided" "providing"); -- from DictEng -lin provide_VS = mkVS (mkV "provide" "provides" "provided" "provided" "providing"); -- from DictEng -lin providence_N = mkN "providence" ; -- from DictEng -lin provident_A = compoundA (mkA "provident"); -- from DictEng -lin providential_A = compoundA (mkA "providential"); -- from DictEng -lin providentially_Adv = mkAdv "providentially" ; -lin providently_Adv = mkAdv "providently" ; -lin provider_N = mkN "provider" "providers"; -- from DictEng -lin province_N = mkN "province" "provinces"; -- from DictEng -lin provincial_A = compoundA (mkA "provincial"); -- from DictEng -lin provincial_N = mkN "provincial" "provincials"; -- from DictEng -lin provincialism_N = mkN "provincialism" "provincialisms"; -- from DictEng -lin provincially_Adv = mkAdv "provincially" ; -lin provirus_N = mkN "provirus" ; -lin provision_N = mkN "provision" "provisions"; -- from DictEng -lin provision_V2 = mkV2 (mkV "provision" "provisions" "provisioned" "provisioned" "provisioning"); -- from DictEng -lin provisional_A = compoundA (mkA "provisional"); -- from DictEng -lin provisionally_Adv = mkAdv "provisionally" ; -lin proviso_N = mkN "proviso" "provisos"; -- from DictEng -lin provisory_A = compoundA (mkA "provisory"); -- from DictEng -lin provitamin_N = mkN "provitamin" ; -lin provitamin_a_PN = mkPN "provitamin A" ; -lin provocation_N = mkN "provocation" "provocations"; -- from DictEng -lin provocative_A = compoundA (mkA "provocative"); -- from DictEng -lin provocatively_Adv = mkAdv "provocatively" ; -lin provoke_V2 = mkV2 (mkV "provoke" "provokes" "provoked" "provoked" "provoking"); -- from DictEng -lin provoking_A = compoundA (mkA "provoking"); -- from DictEng -lin provost_N = mkN "provost" "provosts"; -- from DictEng -lin prow_N = mkN "prow" "prows"; -- from DictEng -lin prowess_N = mkN "prowess" ; -- from DictEng -lin prowl_N = mkN "prowl" "prowls"; -- from DictEng -lin prowl_V = mkV "prowl" "prowls" "prowled" "prowled" "prowling"; -- from DictEng -lin prowl_V2 = mkV2 (mkV "prowl" "prowls" "prowled" "prowled" "prowling"); -- from DictEng -lin prowler_N = mkN "prowler" "prowlers"; -- from DictEng -lin prox_Adv = mkAdv "prox"; -- from DictEng -lin proxemics_N = mkN "proxemics" ; -lin proximal_A = mkA "proximal" ; -lin proximate_A = compoundA (mkA "proximate"); -- from DictEng -lin proximity_N = mkN "proximity" ; -- from DictEng -lin proximo_A = compoundA (mkA "proximo"); -- from DictEng -lin proxy_N = mkN "proxy" "proxies"; -- from DictEng -lin prude_N = mkN "prude" "prudes"; -- from DictEng -lin prudence_N = mkN "prudence" ; -- from DictEng -lin prudent_A = compoundA (mkA "prudent"); -- from DictEng -lin prudential_A = compoundA (mkA "prudential"); -- from DictEng -lin prudently_Adv = mkAdv "prudently" ; -lin prudery_N = mkN "prudery" "pruderies"; -- from DictEng -lin prudish_A = compoundA (mkA "prudish"); -- from DictEng -lin prudishly_Adv = mkAdv "prudishly" ; -lin prune_N = mkN "prune" "prunes"; -- from DictEng -lin prune_V2 = mkV2 (mkV "prune" "prunes" "pruned" "pruned" "pruning"); -- from DictEng -lin pruner_N = mkN "pruner" ; -lin pruning_N = mkN "pruning" ; -- from DictEng -lin pruning_hook_N = mkN "pruning - hook" "pruning - hooks"; -- from DictEng -lin pruning_knife_N = mkN "pruning - knife" "pruning - knives"; -- from DictEng -lin pruning_saw_N = mkN "pruning - saw" "pruning - saws"; -- from DictEng -lin pruno_N = mkN "pruno" ; -lin prurience_N = mkN "prurience" ; -- from DictEng -lin pruriency_N = mkN "pruriency" ; -- from DictEng -lin prurient_A = compoundA (mkA "prurient"); -- from DictEng -lin pruriently_Adv = mkAdv "pruriently" ; -lin prurigo_N = mkN "prurigo" ; -lin pruritus_N = mkN "pruritus" ; -lin prussian_A = compoundA (mkA "Prussian"); -- from DictEng -lin prussian_N = mkN "Prussian" "Prussians"; -- from DictEng -lin prussic_A = compoundA (mkA "prussic"); -- from DictEng -lin pry_V = mkV "pry" "pries" "pried" "pried" "prying"; -- from DictEng -lin pry_V2 = mkV2 (mkV "pry" "pries" "pried" "pried" "prying"); -- from DictEng -lin pry_V2Q = mkV2Q (mkV "pry") noPrep; -lin pryingly_Adv = mkAdv "pryingly"; -- from DictEng -lin psalm_N = mkN "psalm" "psalms"; -- from DictEng -lin psalmist_N = mkN "psalmist" "psalmists"; -- from DictEng -lin psalmody_N = mkN "psalmody" "psalmodies"; -- from DictEng -lin psalter_N = mkN "psalter" "psalters"; -- from DictEng -lin psalterium_N = mkN "psalterium" ; -lin psaltery_N = mkN "psaltery" "psalteries"; -- from DictEng -lin psammoma_N = mkN "psammoma" ; -lin psephologist_N = mkN "psephologist" "psephologists"; -- from DictEng -lin psephology_N = mkN "psephology" ; -- from DictEng -lin pseud_N = mkN "pseud" "pseuds"; -- from DictEng -lin pseudo_A = compoundA (mkA "pseudo"); -- from DictEng -lin pseudo_N = mkN "pseudo" "pseudos"; -- from DictEng -lin pseudobulb_N = mkN "pseudobulb" ; -lin pseudoephedrine_N = mkN "pseudoephedrine" ; -lin pseudohallucination_N = mkN "pseudohallucination" ; -lin pseudohermaphrodite_N = mkN "pseudohermaphrodite" ; -lin pseudohermaphroditic_A = mkA "pseudohermaphroditic" ; -lin pseudohermaphroditism_N = mkN "pseudohermaphroditism" ; -lin pseudomonad_N = mkN "pseudomonad" ; -lin pseudonym_N = mkN "pseudonym" "pseudonyms"; -- from DictEng -lin pseudonymous_A = compoundA (mkA "pseudonymous"); -- from DictEng -lin pseudophloem_N = mkN "pseudophloem" ; -lin pseudopod_N = mkN "pseudopod" ; -lin pseudoscience_N = mkN "pseudoscience" ; -lin pseudoscientific_A = mkA "pseudoscientific" ; -lin psi_N = mkN "psi" ; -lin psilocybin_N = mkN "psilocybin" ; -lin psilomelane_N = mkN "psilomelane" ; -lin psilophyte_N = mkN "psilophyte" ; -lin psilophyton_N = mkN "psilophyton" ; -lin psilosis_N = mkN "psilosis" ; -lin psittacosaur_N = mkN "psittacosaur" ; -lin psittacosis_N = mkN "psittacosis" ; -- from DictEng -lin psoas_N = mkN "psoas" ; -lin psocid_N = mkN "psocid" ; -lin psoriasis_N = mkN "psoriasis" ; -lin psyche_N = mkN "psyche" "psyches"; -- from DictEng -lin psychedelia_N = mkN "psychedelia" ; -lin psychedelic_A = compoundA (mkA "psychedelic"); -- from DictEng -lin psychiatric_A = compoundA (mkA "psychiatric"); -- from DictEng -lin psychiatrist_N = mkN "psychiatrist" "psychiatrists"; -- from DictEng -lin psychiatry_N = mkN "psychiatry" ; -- from DictEng -lin psychic_A = compoundA (mkA "psychic"); -- from DictEng -lin psychic_N = mkN "psychic" "psychics"; -- from DictEng -lin psychical_A = compoundA (mkA "psychical"); -- from DictEng -lin psychically_Adv = mkAdv "psychically" ; -lin psychoactive_A = mkA "psychoactive" ; -lin psychoanalyse_V2 = mkV2 (mkV "psychoanalyse" "psychoanalyses" "psychoanalysed" "psychoanalysed" "psychoanalysing"); -- from DictEng -lin psychoanalysis_N = mkN "psychoanalysis" ; -- from DictEng -lin psychoanalyst_N = mkN "psychoanalyst" "psychoanalysts"; -- from DictEng -lin psychoanalytic_A = compoundA (mkA "psychoanalytic"); -- from DictEng -lin psychoanalytical_A = compoundA (mkA "psychoanalytical"); -- from DictEng -lin psychoanalyze_V2 = mkV2 (mkV "psychoanalyze" "psychoanalyzes" "psychoanalyzed" "psychoanalyzed" "psychoanalyzing"); -- from DictEng -lin psychobabble_N = mkN "psychobabble" ; -lin psychodid_N = mkN "psychodid" ; -lin psychodynamics_N = mkN "psychodynamics" ; -lin psychogenesis_N = mkN "psychogenesis" ; -lin psychogenetic_A = mkA "psychogenetic" ; -lin psychogenic_A = mkA "psychogenic" ; -lin psychokinetic_A = mkA "psychokinetic" ; -lin psycholinguist_N = mkN "psycholinguist" ; -lin psycholinguistic_A = mkA "psycholinguistic" ; -lin psycholinguistics_N = mkN "psycholinguistics" ; -lin psychological_A = compoundA (mkA "psychological"); -- from DictEng -lin psychologically_Adv = mkAdv "psychologically" ; -lin psychologist_N = mkN "psychologist" "psychologists"; -- from DictEng -lin psychology_N = mkN "psychology" "psychologies"; -- from DictEng -lin psychometric_A = mkA "psychometric" ; -lin psychometry_N = mkN "psychometry" ; -lin psychomotor_A = mkA "psychomotor" ; -lin psychopath_N = mkN "psychopath" "psychopaths"; -- from DictEng -lin psychopathic_A = compoundA (mkA "psychopathic"); -- from DictEng -lin psychopharmacological_A = mkA "psychopharmacological" ; -lin psychopharmacology_N = mkN "psychopharmacology" ; -lin psychophysicist_N = mkN "psychophysicist" ; -lin psychophysics_N = mkN "psychophysics" ; -lin psychopomp_N = mkN "psychopomp" ; -lin psychosexual_A = mkA "psychosexual" ; -lin psychosexuality_N = mkN "psychosexuality" ; -lin psychosis_N = mkN "psychosis" "psychoses" {- FIXME: guessed plural form -}; -- from DictEng -lin psychosomatic_A = compoundA (mkA "psychosomatic"); -- from DictEng -lin psychosurgery_N = mkN "psychosurgery" ; -lin psychotherapeutic_A = mkA "psychotherapeutic" ; -lin psychotherapist_N = mkN "psychotherapist" ; -lin psychotherapy_N = mkN "psychotherapy" ; -- from DictEng -lin psychotic_A = mkA "psychotic" ; -lin psychotic_N = mkN "psychotic" "psychotics"; -- from DictEng -lin psychrometer_N = mkN "psychrometer" ; -lin pt_N = mkN "pt" ; -- from DictEng -lin pta_N = mkN "pta" ; -- from DictEng -lin ptarmigan_N = mkN "ptarmigan" "ptarmigans"; -- from DictEng -lin pteridological_A = mkA "pteridological" ; -lin pteridologist_N = mkN "pteridologist" ; -lin pteridology_N = mkN "pteridology" ; -lin pteridophyte_N = mkN "pteridophyte" ; -lin pterion_N = mkN "pterion" ; -lin pterodactyl_N = mkN "pterodactyl" "pterodactyls"; -- from DictEng -lin pteropogon_N = mkN "pteropogon" ; -lin pterosaur_N = mkN "pterosaur" ; -lin pterygium_N = mkN "pterygium" ; -lin ptomaine_N = mkN "ptomaine" "ptomaines"; -- from DictEng -lin ptosis_N = mkN "ptosis" ; -lin ptyalin_N = mkN "ptyalin" ; -lin ptyalism_N = mkN "ptyalism" ; -lin ptyalith_N = mkN "ptyalith" ; -lin pub_N = mkN "pub" "pubs"; -- from DictEng -lin pub_crawl_N = mkN "pub - crawl" "pub - crawls"; -- from DictEng -lin pub_crawl_V = mkV "pub - crawl" "pub - crawls" "pub - crawled" "pub - crawled" "pub - crawling"; -- from DictEng -lin pubertal_A = mkA "pubertal" ; -lin puberty_N = mkN "puberty" ; -- from DictEng -lin pubes_N = mkN "pubes" ; -lin pubescent_A = mkA "pubescent" ; -lin pubic_A = compoundA (mkA "pubic"); -- from DictEng -lin pubis_N = mkN "pubis" ; -lin public_A = compoundA (mkA "public"); -- from DictEng -lin public_N = mkN "public" "publics"; -- from DictEng -lin public_spirited_A = compoundA (mkA "public - spirited"); -- from DictEng -lin public_spirited_A = compoundA (mkA "public - spirited"); -- from DictEng -lin publican_N = mkN "publican" "publicans"; -- from DictEng -lin publication_N = mkN "publication" "publications"; -- from DictEng -lin publicist_N = mkN "publicist" "publicists"; -- from DictEng -lin publicity_N = mkN "publicity" ; -- from DictEng -lin publicize_V2 = mkV2 (mkV "publicize" "publicizes" "publicized" "publicized" "publicizing"); -- from DictEng -lin publicized_A = mkA "publicized" ; -lin publicly_Adv = mkAdv "publicly" ; -lin publish_V = mkV "publish"; -- from DictEng -lin publish_V2 = mkV2 (mkV "publish" "publishes" "published" "published" "publishing"); -- from DictEng -lin publishable_A = mkA "publishable" ; -lin published_A = mkA "published" ; -lin publisher_N = mkN "publisher" "publishers"; -- from DictEng -lin puccoon_N = mkN "puccoon" ; -lin puce_N = mkN "puce" ; -- from DictEng -lin puck_N = mkN "puck" "pucks"; -- from DictEng -lin pucker_N = mkN "pucker" "puckers"; -- from DictEng -lin pucker_V = mkV "pucker" "puckers" "puckered" "puckered" "puckering"; -- from DictEng -lin pucker_V2 = mkV2 (mkV "pucker" "puckers" "puckered" "puckered" "puckering"); -- from DictEng -lin puckish_A = compoundA (mkA "puckish"); -- from DictEng -lin pud_N = mkN "pud" ; -- from DictEng -lin pudden_N = mkN "pudden" "puddens"; -- from DictEng -lin pudden_head_N = mkN "pudden - head" "pudden - heads"; -- from DictEng -lin pudding_N = mkN "pudding" "puddings"; -- from DictEng -lin pudding_face_N = mkN "pudding - face" "pudding - faces"; -- from DictEng -lin puddingwife_N = mkN "puddingwife" ; -lin puddle_N = mkN "puddle" "puddles"; -- from DictEng -lin puddle_V2 = mkV2 (mkV "puddle" "puddles" "puddled" "puddled" "puddling"); -- from DictEng -lin puddler_N = mkN "puddler" "puddlers"; -- from DictEng -lin pudendal_A = mkA "pudendal" ; -lin pudendum_N = mkN "pudendum" ; -lin pudge_N = mkN "pudge" ; -lin pudgy_A = mkA "pudgy" "pudgier"; -- from DictEng -lin pueblo_N = mkN "pueblo" "pueblos"; -- from DictEng -lin puerile_A = compoundA (mkA "puerile"); -- from DictEng -lin puerility_N = mkN "puerility" "puerilities"; -- from DictEng -lin puerpera_N = mkN "puerpera" ; -lin puerperal_A = compoundA (mkA "puerperal"); -- from DictEng -lin puerperium_N = mkN "puerperium" ; -lin puff_A = mkA "puff" ; -lin puff_N = mkN "puff" "puffs"; -- from DictEng -lin puff_V = mkV "puff" "puffs" "puffed" "puffed" "puffing"; -- from DictEng -lin puff_V2 = mkV2 (mkV "puff" "puffs" "puffed" "puffed" "puffing"); -- from DictEng -lin puffball_N = mkN "puffball" "puffballs"; -- from DictEng -lin puffbird_N = mkN "puffbird" ; -lin puffer_N = mkN "puffer" ; -lin puffery_N = mkN "puffery" ; -lin puffin_N = mkN "puffin" "puffins"; -- from DictEng -lin puffiness_N = mkN "puffiness" ; -- from DictEng -lin puffing_N = mkN "puffing" ; -lin puffy_A = mkA "puffy" "puffier"; -- from DictEng -lin pug_N = mkN "pug" "pugs"; -- from DictEng -lin pug_faced_A = compoundA (mkA "pug faced") ; -lin pug_nosed_A = compoundA (mkA "pug - nosed"); -- from DictEng -lin pug_dog_N = mkN "pug - dog" "pug - dogs"; -- from DictEng -lin pug_nose_A = compoundA (mkA "pug - nose"); -- from DictEng -lin pug_nose_N = mkN "pug - nose" "pug - noses"; -- from DictEng -lin pug_nosed_A = compoundA (mkA "pug - nosed"); -- from DictEng -lin pugilism_N = mkN "pugilism" ; -- from DictEng -lin pugilist_N = mkN "pugilist" "pugilists"; -- from DictEng -lin pugilistic_A = compoundA (mkA "pugilistic"); -- from DictEng -lin pugnacious_A = compoundA (mkA "pugnacious"); -- from DictEng -lin pugnaciously_Adv = mkAdv "pugnaciously" ; -lin pugnacity_N = mkN "pugnacity" ; -- from DictEng -lin puissance_N = mkN "puissance" ; -- from DictEng -lin puissant_A = compoundA (mkA "puissant"); -- from DictEng -lin puka_N = mkN "puka" ; -lin puke_N = mkN "puke" ; -- from DictEng -lin puke_V = mkV "puke" "pukes" "puked" "puked" "puking"; -- from DictEng -lin puke_V2 = mkV2 (mkV "puke" "pukes" "puked" "puked" "puking"); -- from DictEng -lin pukka_A = compoundA (mkA "pukka"); -- from DictEng -lin puku_N = mkN "puku" ; -lin pul_N = mkN "pul" ; -lin pula_N = mkN "pula" ; -lin pulasan_N = mkN "pulasan" ; -lin pulchritude_N = mkN "pulchritude" ; -- from DictEng -lin pulchritudinous_A = compoundA (mkA "pulchritudinous"); -- from DictEng -lin pule_V = mkV "pule" "pules" "puled" "puled" "puling"; -- from DictEng -lin pull_N = mkN "pull" "pulls"; -- from DictEng -lin pull_V = mkV "pull" "pulls" "pulled" "pulled" "pulling"; -- from DictEng -lin pull_V2 = mkV2 (mkV "pull" "pulls" "pulled" "pulled" "pulling"); -- from DictEng -lin pull_in_N = mkN "pull - in" "pull - ins"; -- from DictEng -lin pull_off_N = mkN "pull - off" "pull - offs"; -- from DictEng -lin pull_through_N = mkN "pull - through" "pull - throughs"; -- from DictEng -lin pull_up_N = mkN "pull - up" "pull - ups"; -- from DictEng -lin pull_in_N = mkN "pull - in" "pull - ins"; -- from DictEng -lin pull_off_N = mkN "pull - off" "pull - offs"; -- from DictEng -lin pull_out_N = mkN "pull - out" "pull - outs"; -- from DictEng -lin pull_through_N = mkN "pull - through" "pull - throughs"; -- from DictEng -lin pull_up_N = mkN "pull - up" "pull - ups"; -- from DictEng -lin pullback_N = mkN "pullback" ; -lin puller_N = mkN "puller" ; -lin pullet_N = mkN "pullet" "pullets"; -- from DictEng -lin pulley_N = mkN "pulley" "pulleys"; -- from DictEng -lin pulley_block_N = mkN "pulley - block" "pulley - blocks"; -- from DictEng -lin pullman_N = mkN "pullman" "pullmans"; -- from DictEng -lin pullover_N = mkN "pullover" "pullovers"; -- from DictEng -lin pullulate_V = mkV "pullulate" "pullulates" "pullulated" "pullulated" "pullulating"; -- from DictEng -lin pullulation_N = mkN "pullulation" ; -lin pulmonary_A = compoundA (mkA "pulmonary"); -- from DictEng -lin pulp_N = mkN "pulp" "pulps"; -- from DictEng -lin pulp_V = mkV "pulp" "pulps" "pulped" "pulped" "pulping"; -- from DictEng -lin pulp_V2 = mkV2 (mkV "pulp" "pulps" "pulped" "pulped" "pulping"); -- from DictEng -lin pulpit_N = mkN "pulpit" "pulpits"; -- from DictEng -lin pulpwood_N = mkN "pulpwood" ; -lin pulpy_A = mkA "pulpy" "pulpier"; -- from DictEng -lin pulque_N = mkN "pulque" ; -- from DictEng -lin pulsar_N = mkN "pulsar" "pulsars"; -- from DictEng -lin pulsate_V = mkV "pulsate" "pulsates" "pulsated" "pulsated" "pulsating"; -- from DictEng -lin pulsate_V2 = mkV2 (mkV "pulsate" "pulsates" "pulsated" "pulsated" "pulsating"); -- from DictEng -lin pulsation_N = mkN "pulsation" "pulsations"; -- from DictEng -lin pulse_N = mkN "pulse" "pulses"; -- from DictEng -lin pulse_V = mkV "pulse" "pulses" "pulsed" "pulsed" "pulsing"; -- from DictEng -lin pulverization_N = mkN "pulverization" ; -lin pulverize_V = mkV "pulverize" "pulverizes" "pulverized" "pulverized" "pulverizing"; -- from DictEng -lin pulverize_V2 = mkV2 (mkV "pulverize" "pulverizes" "pulverized" "pulverized" "pulverizing"); -- from DictEng -lin puma_N = mkN "puma" "pumas"; -- from DictEng -lin pumice_N = mkN "pumice" ; -- from DictEng -lin pumice_stone_N = mkN "pumice - stone" "pumice - stones"; -- from DictEng -lin pummel_V2 = mkV2 (mkV "pummel" "pummels" "pummelled" "pummelled" "pummelling"); -- from DictEng -lin pump_N = mkN "pump" "pumps"; -- from DictEng -lin pump_V = mkV "pump" "pumps" "pumped" "pumped" "pumping"; -- from DictEng -lin pump_V2 = mkV2 (mkV "pump" "pumps" "pumped" "pumped" "pumping"); -- from DictEng -lin pump_room_N = mkN "pump - room" "pump - rooms"; -- from DictEng -lin pumped_up_A = compoundA (mkA "pumped up") ; -lin pumpernickel_N = mkN "pumpernickel" ; -- from DictEng -lin pumpkin_N = mkN "pumpkin" "pumpkins"; -- from DictEng -lin pumpkinseed_N = mkN "pumpkinseed" ; -lin pun_N = mkN "pun" "puns"; -- from DictEng -lin pun_V = mkV "pun" "puns" "punned" "punned" "punning"; -- from DictEng -lin punch_N = mkN "punch" "punches"; -- from DictEng -lin punch_V2 = mkV2 (mkV "punch" "punches" "punched" "punched" "punching"); -- from DictEng -lin punch_drunk_A = compoundA (mkA "punch - drunk"); -- from DictEng -lin punch_up_N = mkN "punch - up" "punch - ups"; -- from DictEng -lin punch_drunk_A = compoundA (mkA "punch - drunk"); -- from DictEng -lin punch_up_N = mkN "punch - up" "punch - ups"; -- from DictEng -lin punchball_N = mkN "punchball" "punchballs"; -- from DictEng -lin punchboard_N = mkN "punchboard" ; -lin punchbowl_N = mkN "punchbowl" "punchbowls"; -- from DictEng -lin puncher_N = mkN "puncher" ; -lin punching_ball_N = mkN "punching - ball" "punching - balls"; -- from DictEng -lin punctilio_N = mkN "punctilio" "punctilios"; -- from DictEng -lin punctilious_A = compoundA (mkA "punctilious"); -- from DictEng -lin punctiliously_Adv = mkAdv "punctiliously" ; -lin punctiliousness_N = mkN "punctiliousness" ; -- from DictEng -lin punctual_A = compoundA (mkA "punctual"); -- from DictEng -lin punctuality_N = mkN "punctuality" ; -- from DictEng -lin punctually_Adv = mkAdv "punctually" ; -lin punctuate_V2 = mkV2 (mkV "punctuate" "punctuates" "punctuated" "punctuated" "punctuating"); -- from DictEng -lin punctuation_N = mkN "punctuation" ; -- from DictEng -lin punctum_N = mkN "punctum" ; -lin puncturable_A = mkA "puncturable" ; -lin puncture_N = mkN "puncture" "punctures"; -- from DictEng -lin puncture_V = mkV "puncture" "punctures" "punctured" "punctured" "puncturing"; -- from DictEng -lin puncture_V2 = mkV2 (mkV "puncture" "punctures" "punctured" "punctured" "puncturing"); -- from DictEng -lin punctureless_A = mkA "punctureless" ; -lin pundit_N = mkN "pundit" "pundits"; -- from DictEng -lin pung_N = mkN "pung" ; -lin pungapung_N = mkN "pungapung" ; -lin pungency_N = mkN "pungency" ; -- from DictEng -lin pungent_A = compoundA (mkA "pungent"); -- from DictEng -lin pungently_Adv = mkAdv "pungently" ; -lin punic_A = compoundA (mkA "punic"); -- from DictEng -lin punily_Adv = mkAdv "punily"; -- from DictEng -lin puniness_N = mkN "puniness" ; -lin punish_V2 = mkV2 (mkV "punish" "punishes" "punished" "punished" "punishing"); -- from DictEng -lin punishable_A = compoundA (mkA "punishable"); -- from DictEng -lin punished_A = mkA "punished" ; -lin punishing_A = mkA "punishing" ; -lin punishingly_Adv = mkAdv "punishingly" ; -lin punishment_N = mkN "punishment" "punishments"; -- from DictEng -lin punitive_A = compoundA (mkA "punitive"); -- from DictEng -lin punitively_Adv = mkAdv "punitively" ; -lin punk_N = mkN "punk" "punks"; -- from DictEng -lin punkah_N = mkN "punkah" "punkahs"; -- from DictEng -lin punkie_N = mkN "punkie" ; -lin punks_N = mkN "punks" ; -lin punnet_N = mkN "punnet" "punnets"; -- from DictEng -lin punster_N = mkN "punster" "punsters"; -- from DictEng -lin punt_N = mkN "punt" "punts"; -- from DictEng -lin punt_V = mkV "punt" "punts" "punted" "punted" "punting"; -- from DictEng -lin punt_V2 = mkV2 (mkV "punt" "punts" "punted" "punted" "punting"); -- from DictEng -lin punter_N = mkN "punter" "punters"; -- from DictEng -lin puny_A = mkA "puny" "punier"; -- from DictEng -lin pup_N = mkN "pup" "pups"; -- from DictEng -lin pup_V = mkV "pup" ; -lin pupa_N = mkN "pupa" "pupas"; -- from DictEng -lin pupal_A = mkA "pupal" ; -lin pupil_N = mkN "pupil" "pupils"; -- from DictEng -lin pupillary_A = mkA "pupillary" ; -lin puppet_N = mkN "puppet" "puppets"; -- from DictEng -lin puppeteer_N = mkN "puppeteer" "puppeteers"; -- from DictEng -lin puppetry_N = mkN "puppetry" ; -lin puppy_N = mkN "puppy" "puppies"; -- from DictEng -lin puppyish_A = mkA "puppyish" ; -lin purblind_A = compoundA (mkA "purblind"); -- from DictEng -lin purchasable_A = compoundA (mkA "purchasable"); -- from DictEng -lin purchase_N = mkN "purchase" "purchases"; -- from DictEng -lin purchase_V2 = mkV2 (mkV "purchase" "purchases" "purchased" "purchased" "purchasing"); -- from DictEng -lin purchaser_N = mkN "purchaser" "purchasers"; -- from DictEng -lin purdah_N = mkN "purdah" ; -- from DictEng -lin pure_A = mkA "pure" "purer"; -- from DictEng -lin purebred_A = mkA "purebred" ; -lin puree_N = mkN "purée" "purées"; -- from DictEng -lin pureness_N = mkN "pureness" ; -- from DictEng -lin purgation_N = mkN "purgation" ; -- from DictEng -lin purgative_A = compoundA (mkA "purgative"); -- from DictEng -lin purgative_N = mkN "purgative" "purgatives"; -- from DictEng -lin purgatorial_A = compoundA (mkA "purgatorial"); -- from DictEng -lin purgatory_N = mkN "purgatory" "purgatories"; -- from DictEng -lin purge_N = mkN "purge" "purges"; -- from DictEng -lin purge_V2 = mkV2 (mkV "purge" "purges" "purged" "purged" "purging"); -- from DictEng -lin purification_N = mkN "purification" "purifications"; -- from DictEng -lin purifier_N = mkN "purifier" "purifiers"; -- from DictEng -lin purify_V2 = mkV2 (mkV "purify" "purifies" "purified" "purified" "purifying"); -- from DictEng -lin purifying_A = mkA "purifying" ; -lin purine_N = mkN "purine" ; -lin purism_N = mkN "purism" ; -lin purist_N = mkN "purist" "purists"; -- from DictEng -lin puritan_A = compoundA (mkA "puritan"); -- from DictEng -lin puritan_N = mkN "puritan" "puritans"; -- from DictEng -lin puritanical_A = compoundA (mkA "puritanical"); -- from DictEng -lin puritanism_N = mkN "puritanism" ; -- from DictEng -lin purity_N = mkN "purity" ; -- from DictEng -lin purl_N = mkN "purl" "purls"; -- from DictEng -lin purl_V = mkV "purl" "purls" "purled" "purled" "purling"; -- from DictEng -lin purl_V2 = mkV2 (mkV "purl" "purls" "purled" "purled" "purling"); -- from DictEng -lin purloin_V2 = mkV2 (mkV "purloin" "purloins" "purloined" "purloined" "purloining"); -- from DictEng -lin purloo_N = mkN "purloo" ; -lin purple_A = compoundA (mkA "purple"); -- from DictEng -lin purple_N = mkN "purple" "purples"; -- from DictEng -lin purple_black_A = compoundA (mkA "purple black") ; -lin purple_blue_A = compoundA (mkA "purple blue") ; -lin purple_brown_A = compoundA (mkA "purple brown") ; -lin purple_eyed_A = compoundA (mkA "purple eyed") ; -lin purple_flowered_A = compoundA (mkA "purple flowered") ; -lin purple_green_A = compoundA (mkA "purple green") ; -lin purple_lilac_A = compoundA (mkA "purple lilac") ; -lin purple_red_A = compoundA (mkA "purple red") ; -lin purple_spotted_A = compoundA (mkA "purple spotted") ; -lin purple_tinged_A = compoundA (mkA "purple tinged") ; -lin purple_veined_A = compoundA (mkA "purple veined") ; -lin purple_white_A = compoundA (mkA "purple white") ; -lin purplish_A = compoundA (mkA "purplish"); -- from DictEng -lin purport_N = mkN "purport" ; -- from DictEng -lin purport_V2 = mkV2 (mkV "purport" "purports" "purported" "purported" "purporting"); -- from DictEng -lin purport_V2V = mkV2V (mkV "purport") noPrep to_Prep ; -- from DictEng -lin purportedly_Adv = mkAdv "purportedly" ; -lin purpose_N = mkN "purpose" "purposes"; -- from DictEng -lin purpose_V2 = mkV2 (mkV "purpose" "purposes" "purposed" "purposed" "purposing"); -- from DictEng -lin purpose_built_A = compoundA (mkA "purpose - built"); -- from DictEng -lin purpose_built_A = compoundA (mkA "purpose - built"); -- from DictEng -lin purposeful_A = compoundA (mkA "purposeful"); -- from DictEng -lin purposefully_Adv = mkAdv "purposefully" ; -lin purposefulness_N = mkN "purposefulness" ; -lin purposeless_A = compoundA (mkA "purposeless"); -- from DictEng -lin purposelessly_Adv = mkAdv "purposelessly" ; -lin purposelessness_N = mkN "purposelessness" ; -lin purposely_Adv = mkAdv "purposely"; -- from DictEng -lin purposive_A = compoundA (mkA "purposive"); -- from DictEng -lin purpura_N = mkN "purpura" ; -lin purr_N = mkN "purr" "purrs"; -- from DictEng -lin purr_V = mkV "purr" "purrs" "purred" "purred" "purring"; -- from DictEng -lin purr_V2 = mkV2 (mkV "purr" "purrs" "purred" "purred" "purring"); -- from DictEng -lin purr_VS = mkVS (mkV "purr" "purrs" "purred" "purred" "purring"); -- from DictEng -lin purse_N = mkN "purse" "purses"; -- from DictEng -lin purse_V2 = mkV2 (mkV "purse" "purses" "pursed" "pursed" "pursing"); -- from DictEng -lin purse_proud_A = compoundA (mkA "purse - proud"); -- from DictEng -lin purse_proud_A = compoundA (mkA "purse - proud"); -- from DictEng -lin purser_N = mkN "purser" "pursers"; -- from DictEng -lin purslane_N = mkN "purslane" ; -lin pursuance_N = mkN "pursuance" "pursuances"; -- from DictEng -lin pursuant_A = compoundA (mkA "pursuant"); -- from DictEng -lin pursue_V = mkV "pursue"; -- from DictEng -lin pursue_V2 = mkV2 (mkV "pursue" "pursues" "pursued" "pursued" "pursuing"); -- from DictEng -lin pursued_A = mkA "pursued" ; -lin pursued_N = mkN "pursued" ; -lin pursuer_N = mkN "pursuer" "pursuers"; -- from DictEng -lin pursuing_A = mkA "pursuing" ; -lin pursuit_N = mkN "pursuit" "pursuits"; -- from DictEng -lin pursy_A = compoundA (mkA "pursy"); -- from DictEng -lin purulence_N = mkN "purulence" ; -- from DictEng -lin purulent_A = compoundA (mkA "purulent"); -- from DictEng -lin purvey_V = mkV "purvey" "purveys" "purveyed" "purveyed" "purveying"; -- from DictEng -lin purvey_V2 = mkV2 (mkV "purvey" "purveys" "purveyed" "purveyed" "purveying"); -- from DictEng -lin purveyance_N = mkN "purveyance" "purveyances"; -- from DictEng -lin purveyor_N = mkN "purveyor" "purveyors"; -- from DictEng -lin purview_N = mkN "purview" "purviews"; -- from DictEng -lin pus_N = mkN "pus" ; -- from DictEng -lin push_N = mkN "push" "pushes"; -- from DictEng -lin push_V = mkV "push" "pushes" "pushed" "pushed" "pushing"; -- from DictEng -lin push_V2 = mkV2 (mkV "push" "pushes" "pushed" "pushed" "pushing"); -- from DictEng -lin push_V2V = mkV2V (mkV "push" "pushes" "pushed" "pushed" "pushing") noPrep to_Prep ; -- from DictEng -lin push_VS = mkVS (mkV "push" "pushes" "pushed" "pushed" "pushing"); -- from DictEng -lin push_bike_N = mkN "push - bike" "push - bikes"; -- from DictEng -lin push_bike_N = mkN "push - bike" "push - bikes"; -- from DictEng -lin pushball_N = mkN "pushball" ; -lin pushcart_N = mkN "pushcart" "pushcarts"; -- from DictEng -lin pushchair_N = mkN "pushchair" "pushchairs"; -- from DictEng -lin pusher_N = mkN "pusher" "pushers"; -- from DictEng -lin pushful_A = compoundA (mkA "pushful"); -- from DictEng -lin pushing_A = compoundA (mkA "pushing"); -- from DictEng -lin pushover_N = mkN "pushover" "pushovers"; -- from DictEng -lin pushup_N = mkN "pushup" ; -lin pusillanimity_N = mkN "pusillanimity" ; -- from DictEng -lin pusillanimous_A = compoundA (mkA "pusillanimous"); -- from DictEng -lin pusillanimously_Adv = mkAdv "pusillanimously" ; -lin puss_N = mkN "puss" "IRREG"; -- from DictEng -lin pussy_N = mkN "pussy" "pussies"; -- from DictEng -lin pussy_paw_N = mkN "pussy paw" ; -lin pussycat_N = mkN "pussycat" "pussycats"; -- from DictEng -lin pussyfoot_V = mkV "pussyfoot" "pussyfoots" "pussyfooted" "pussyfooted" "pussyfooting"; -- from DictEng -lin pustule_N = mkN "pustule" "pustules"; -- from DictEng -lin put_N = mkN "put" "puts"; -- from DictEng -lin put_V = IrregEng.put_V; -- from DictEng -lin put_V2 = mkV2 (IrregEng.put_V); -- from DictEng -lin put_V2V = mkV2V (IrregEng.put_V) noPrep to_Prep ; -- from DictEng -lin put_VS = mkVS (IrregEng.put_V); -- from DictEng -lin put_down_N = mkN "put - down" "put - downs"; -- from DictEng -lin put_put_N = mkN "put put" ; -lin put_up_A = compoundA (mkA "put up") ; -lin put_down_N = mkN "put - down" "put - downs"; -- from DictEng -lin put_on_N = mkN "put - on" "put - ons"; -- from DictEng -lin putamen_N = mkN "putamen" ; -lin putative_A = compoundA (mkA "putative"); -- from DictEng -lin putdownable_A = mkA "putdownable" ; -lin putoff_N = mkN "putoff" ; -lin putout_N = mkN "putout" ; -lin putrefaction_N = mkN "putrefaction" "putrefactions"; -- from DictEng -lin putrefactive_A = mkA "putrefactive" ; -lin putrefy_V = mkV "putrefy" "putrefies" "putrefied" "putrefied" "putrefying"; -- from DictEng -lin putrefy_V2 = mkV2 (mkV "putrefy" "putrefies" "putrefied" "putrefied" "putrefying"); -- from DictEng -lin putrescence_N = mkN "putrescence" "putrescences"; -- from DictEng -lin putrescent_A = compoundA (mkA "putrescent"); -- from DictEng -lin putrescine_N = mkN "putrescine" ; -lin putrid_A = compoundA (mkA "putrid"); -- from DictEng -lin putrid_smelling_A = compoundA (mkA "putrid smelling") ; -lin putridity_N = mkN "putridity" ; -- from DictEng -lin putsch_N = mkN "putsch" "putsches"; -- from DictEng -lin putt_N = mkN "putt" "putts"; -- from DictEng -lin putt_V = mkV "putt" "putts" "putted" "putted" "putting"; -- from DictEng -lin putt_V2 = mkV2 (mkV "putt" "putts" "putted" "putted" "putting"); -- from DictEng -lin puttee_N = mkN "puttee" "puttees"; -- from DictEng -lin putter_N = mkN "putter" ; -lin putter_V = mkV "putter" "putters" "puttered" "puttered" "puttering"; -- from DictEng -lin putter_V2 = mkV2 (mkV "putter" "putters" "puttered" "puttered" "puttering"); -- from DictEng -lin putterer_N = mkN "putterer" ; -lin putting_green_N = mkN "putting - green" "putting - greens"; -- from DictEng -lin putting_iron_N = mkN "putting - iron" "putting - irons"; -- from DictEng -lin putty_N = mkN "putty" ; -- from DictEng -lin putty_V2 = mkV2 (mkV "putty" "putties" "puttied" "puttied" "puttying"); -- from DictEng -lin puttyroot_N = mkN "puttyroot" ; -lin putz_N = mkN "putz" ; -lin puzzle_N = mkN "puzzle" "puzzles"; -- from DictEng -lin puzzle_V = mkV "puzzle" "puzzles" "puzzled" "puzzled" "puzzling"; -- from DictEng -lin puzzle_V2 = mkV2 (mkV "puzzle" "puzzles" "puzzled" "puzzled" "puzzling"); -- from DictEng -lin puzzlement_N = mkN "puzzlement" "puzzlements"; -- from DictEng -lin puzzler_N = mkN "puzzler" "puzzlers"; -- from DictEng -lin pya_N = mkN "pya" ; -lin pycnidium_N = mkN "pycnidium" ; -lin pycnodysostosis_N = mkN "pycnodysostosis" ; -lin pycnosis_N = mkN "pycnosis" ; -lin pyelitis_N = mkN "pyelitis" ; -lin pyelogram_N = mkN "pyelogram" ; -lin pyelography_N = mkN "pyelography" ; -lin pyelonephritis_N = mkN "pyelonephritis" ; -lin pyemia_N = mkN "pyemia" ; -lin pyemic_A = mkA "pyemic" ; -lin pygmy_N = mkN "pygmy" "pygmies"; -- from DictEng -lin pyinma_N = mkN "pyinma" ; -lin pyjama_A = compoundA (mkA "pyjama"); -- from DictEng -lin pyknotic_A = mkA "pyknotic" ; -lin pylon_N = mkN "pylon" "pylons"; -- from DictEng -lin pyloric_A = mkA "pyloric" ; -lin pylorus_N = mkN "pylorus" ; -lin pyocyanase_N = mkN "pyocyanase" ; -lin pyocyanin_N = mkN "pyocyanin" ; -lin pyogenic_A = mkA "pyogenic" ; -lin pyorrhea_N = mkN "pyorrhea" ; -lin pyorrhoea_N = mkN "pyorrhoea" ; -- from DictEng -lin pyralid_N = mkN "pyralid" ; -lin pyramid_N = mkN "pyramid" "pyramids"; -- from DictEng -lin pyramidal_A = mkA "pyramidal" ; -lin pyramidically_Adv = mkAdv "pyramidically" ; -lin pyramiding_N = mkN "pyramiding" ; -lin pyre_N = mkN "pyre" "pyres"; -- from DictEng -lin pyrectic_A = mkA "pyrectic" ; -lin pyrene_N = mkN "pyrene" ; -lin pyrethrum_N = mkN "pyrethrum" ; -lin pyretic_A = mkA "pyretic" ; -lin pyridine_N = mkN "pyridine" ; -lin pyrilamine_N = mkN "pyrilamine" ; -lin pyrimidine_N = mkN "pyrimidine" ; -lin pyrite_N = mkN "pyrite" ; -lin pyrites_N = mkN "pyrites" ; -- from DictEng -lin pyrocellulose_N = mkN "pyrocellulose" ; -lin pyrochemical_A = mkA "pyrochemical" ; -lin pyroelectric_A = mkA "pyroelectric" ; -lin pyroelectricity_N = mkN "pyroelectricity" ; -lin pyrogallic_A = mkA "pyrogallic" ; -lin pyrogallol_N = mkN "pyrogallol" ; -lin pyrogen_N = mkN "pyrogen" ; -lin pyrogenic_A = mkA "pyrogenic" ; -lin pyrograph_N = mkN "pyrograph" ; -lin pyrographer_N = mkN "pyrographer" ; -lin pyrographic_A = mkA "pyrographic" ; -lin pyrography_N = mkN "pyrography" ; -lin pyrolatry_N = mkN "pyrolatry" ; -lin pyroligneous_A = mkA "pyroligneous" ; -lin pyrolusite_N = mkN "pyrolusite" ; -lin pyrolysis_N = mkN "pyrolysis" ; -lin pyrolytic_A = mkA "pyrolytic" ; -lin pyromancer_N = mkN "pyromancer" ; -lin pyromancy_N = mkN "pyromancy" ; -lin pyromania_N = mkN "pyromania" ; -lin pyromaniac_N = mkN "pyromaniac" ; -lin pyrometer_N = mkN "pyrometer" ; -lin pyromorphite_N = mkN "pyromorphite" ; -lin pyrope_N = mkN "pyrope" ; -lin pyrophobia_N = mkN "pyrophobia" ; -lin pyrophosphate_N = mkN "pyrophosphate" ; -lin pyrophyllite_N = mkN "pyrophyllite" ; -lin pyrostat_N = mkN "pyrostat" ; -lin pyrotechnic_A = compoundA (mkA "pyrotechnic"); -- from DictEng -lin pyrotechnics_N = mkN "pyrotechnics" ; -lin pyroxene_N = mkN "pyroxene" ; -lin pyroxylin_N = mkN "pyroxylin" ; -lin pyrrhic_A = compoundA (mkA "pyrrhic"); -- from DictEng -lin pyrrhic_N = mkN "pyrrhic" ; -lin pyrrhotite_N = mkN "pyrrhotite" ; -lin pyrrhuloxia_N = mkN "pyrrhuloxia" ; -lin pythium_N = mkN "pythium" ; -lin python_N = mkN "python" "pythons"; -- from DictEng -lin pythoness_N = mkN "pythoness" ; -lin pyuria_N = mkN "pyuria" ; -lin pyx_N = mkN "pyx" "pyxes"; -- from DictEng -lin pyxidium_N = mkN "pyxidium" ; -lin pyxie_N = mkN "pyxie" ; -lin pyxis_N = mkN "pyxis" ; -lin qadi_N = mkN "qadi" ; -lin qatari_A = compoundA (mkA "qatari"); -- from DictEng -lin qatari_N = mkN "qatari" "qataris"; -- from DictEng -lin qc_N = mkN "qc" ; -- from DictEng -lin qepiq_N = mkN "qepiq" ; -lin qi_N = mkN "qi" ; -lin qibla_N = mkN "qibla" ; -lin qindarka_N = mkN "qindarka" ; -lin qoph_N = mkN "qoph" ; -lin qt_N = mkN "qt" "qt"; -- from DictEng -lin quack_A = mkA "quack" ; -lin quack_N = mkN "quack" "quacks"; -- from DictEng -lin quack_V = mkV "quack" "quacks" "quacked" "quacked" "quacking"; -- from DictEng -lin quack_quack_N = mkN "quack - quack" "quack - quacks"; -- from DictEng -lin quack_quack_N = mkN "quack - quack" "quack - quacks"; -- from DictEng -lin quackery_N = mkN "quackery" ; -- from DictEng -lin quad_N = mkN "quad" "quads"; -- from DictEng -lin quadrangle_N = mkN "quadrangle" "quadrangles"; -- from DictEng -lin quadrangular_A = compoundA (mkA "quadrangular"); -- from DictEng -lin quadrant_N = mkN "quadrant" "quadrants"; -- from DictEng -lin quadrantanopia_N = mkN "quadrantanopia" ; -lin quadraphonic_A = mkA "quadraphonic" ; -lin quadraphony_N = mkN "quadraphony" ; -lin quadrate_A = mkA "quadrate" ; -lin quadrate_N = mkN "quadrate" ; -lin quadratic_A = compoundA (mkA "quadratic"); -- from DictEng -lin quadratic_N = mkN "quadratic" ; -lin quadratics_N = mkN "quadratics" ; -lin quadrature_N = mkN "quadrature" ; -lin quadrennium_N = mkN "quadrennium" ; -lin quadric_N = mkN "quadric" ; -lin quadriceps_N = mkN "quadriceps" ; -lin quadrilateral_A = compoundA (mkA "quadrilateral"); -- from DictEng -lin quadrilateral_N = mkN "quadrilateral" "quadrilaterals"; -- from DictEng -lin quadrille_N = mkN "quadrille" "quadrilles"; -- from DictEng -lin quadrillion_N = mkN "quadrillion" "quadrillions"; -- from DictEng -lin quadrillionth_A = mkA "quadrillionth" ; -lin quadripara_N = mkN "quadripara" ; -lin quadripartite_A = mkA "quadripartite" ; -lin quadriplegia_N = mkN "quadriplegia" ; -lin quadriplegic_N = mkN "quadriplegic" ; -lin quadrivium_N = mkN "quadrivium" ; -lin quadroon_N = mkN "quadroon" ; -lin quadrophonic_A = compoundA (mkA "quadrophonic"); -- from DictEng -lin quadrophony_N = mkN "quadrophony" ; -- from DictEng -lin quadrumvirate_N = mkN "quadrumvirate" ; -lin quadruped_N = mkN "quadruped" "quadrupeds"; -- from DictEng -lin quadrupedal_A = mkA "quadrupedal" ; -lin quadruple_A = compoundA (mkA "quadruple"); -- from DictEng -lin quadruple_N = mkN "quadruple" "quadruples"; -- from DictEng -lin quadruple_V = mkV "quadruple" "quadruples" "quadrupled" "quadrupled" "quadrupling"; -- from DictEng -lin quadruple_V2 = mkV2 (mkV "quadruple" "quadruples" "quadrupled" "quadrupled" "quadrupling"); -- from DictEng -lin quadruplet_N = mkN "quadruplet" "quadruplets"; -- from DictEng -lin quadruplicate_A = compoundA (mkA "quadruplicate"); -- from DictEng -lin quadruplicate_N = mkN "quadruplicate" "quadruplicates"; -- from DictEng -lin quadruplicate_V2 = mkV2 (mkV "quadruplicate" "quadruplicates" "quadruplicated" "quadruplicated" "quadruplicating"); -- from DictEng -lin quadrupling_N = mkN "quadrupling" ; -lin quaestor_N = mkN "quaestor" ; -lin quaff_N = mkN "quaff" ; -lin quaff_V = mkV "quaff" "quaffs" "quaffed" "quaffed" "quaffing"; -- from DictEng -lin quaff_V2 = mkV2 (mkV "quaff" "quaffs" "quaffed" "quaffed" "quaffing"); -- from DictEng -lin quaffer_N = mkN "quaffer" ; -lin quagga_N = mkN "quagga" "quaggas"; -- from DictEng -lin quagmire_N = mkN "quagmire" "quagmires"; -- from DictEng -lin quahaug_N = mkN "quahaug" ; -lin quahog_N = mkN "quahog" ; -lin quai_d'orsay_N = mkN "quai d'orsay" "IRREG"; -- from DictEng -lin quail_N = mkN "quail" "quails"; -- from DictEng -lin quail_V = mkV "quail" "quails" "quailed" "quailed" "quailing"; -- from DictEng -lin quaint_A = mkA "quaint" "quainter"; -- from DictEng -lin quaintly_Adv = mkAdv "quaintly" ; -lin quaintness_N = mkN "quaintness" ; -- from DictEng -lin quake_N = mkN "quake" "quakes"; -- from DictEng -lin quake_V = mkV "quake" "quakes" "quaked" "quaked" "quaking"; -- from DictEng -lin quaker_N = mkN "quaker" "quakers"; -- from DictEng -lin qualification_N = mkN "qualification" "qualifications"; -- from DictEng -lin qualified_A = compoundA (mkA "qualified"); -- from DictEng -lin qualifier_N = mkN "qualifier" "qualifiers"; -- from DictEng -lin qualify_V = mkV "qualify" "qualifies" "qualified" "qualified" "qualifying"; -- from DictEng -lin qualify_V2 = mkV2 (mkV "qualify" "qualifies" "qualified" "qualified" "qualifying"); -- from DictEng -lin qualitative_A = compoundA (mkA "qualitative"); -- from DictEng -lin qualitatively_Adv = mkAdv "qualitatively" ; -lin quality_A = mkA "quality" ; -lin quality_N = mkN "quality" "qualities"; -- from DictEng -lin qualm_N = mkN "qualm" "qualms"; -- from DictEng -lin quandary_N = mkN "quandary" "quandaries"; -- from DictEng -lin quandong_N = mkN "quandong" ; -lin quango_N = mkN "quango" "quangos"; -- from DictEng -lin quantal_A = mkA "quantal" ; -lin quantic_N = mkN "quantic" ; -lin quantifiability_N = mkN "quantifiability" ; -lin quantifiable_A = mkA "quantifiable" ; -lin quantification_N = mkN "quantification" ; -lin quantifier_N = mkN "quantifier" ; -lin quantify_V2 = mkV2 (mkV "quantify" "quantifies" "quantified" "quantified" "quantifying"); -- from DictEng -lin quantitative_A = compoundA (mkA "quantitative"); -- from DictEng -lin quantitatively_Adv = mkAdv "quantitatively" ; -lin quantity_N = mkN "quantity" "quantities"; -- from DictEng -lin quantization_N = mkN "quantization" ; -lin quantize_V2 = mkV2 (mkV "quantize") ; -lin quantum_N = mkN "quantum" "quanta" {- FIXME: guessed plural form -}; -- from DictEng -lin quarantine_N = mkN "quarantine" ; -- from DictEng -lin quarantine_V2 = mkV2 (mkV "quarantine" "quarantines" "quarantined" "quarantined" "quarantining"); -- from DictEng -lin quark_N = mkN "quark" "quarks"; -- from DictEng -lin quarrel_N = mkN "quarrel" "quarrels"; -- from DictEng -lin quarrel_V = mkV "quarrel" "quarrels" "quarrelled" "quarrelled" "quarrelling"; -- from DictEng -lin quarreler_N = mkN "quarreler" ; -lin quarrelsome_A = compoundA (mkA "quarrelsome"); -- from DictEng -lin quarrelsomeness_N = mkN "quarrelsomeness" ; -lin quarry_N = mkN "quarry" "quarries"; -- from DictEng -lin quarry_V = mkV "quarry" "quarries" "quarried" "quarried" "quarrying"; -- from DictEng -lin quarry_V2 = mkV2 (mkV "quarry" "quarries" "quarried" "quarried" "quarrying"); -- from DictEng -lin quarrying_N = mkN "quarrying" ; -lin quarryman_N = mkN "quarryman" "quarrymen" {- FIXME: guessed plural form -}; -- from DictEng -lin quart_N = mkN "quart" "quarts"; -- from DictEng -lin quartan_A = mkA "quartan" ; -lin quartan_N = mkN "quartan" ; -lin quarter_N = mkN "quarter" "quarters"; -- from DictEng -lin quarter_V2 = mkV2 (mkV "quarter" "quarters" "quartered" "quartered" "quartering"); -- from DictEng -lin quarter_century_N = mkN "quarter century" ; -lin quarter_hour_N = mkN "quarter hour" ; -lin quarter_day_N = mkN "quarter - day" "quarter - days"; -- from DictEng -lin quarter_deck_N = mkN "quarter - deck" "quarter - decks"; -- from DictEng -lin quarter_plate_N = mkN "quarter - plate" "quarter - plates"; -- from DictEng -lin quarterback_N = mkN "quarterback" ; -lin quarterdeck_N = mkN "quarterdeck" ; -lin quarterfinal_N = mkN "quarterfinal" "quarterfinals"; -- from DictEng -lin quartering_N = mkN "quartering" "quarterings"; -- from DictEng -lin quarterlight_N = mkN "quarterlight" "quarterlights"; -- from DictEng -lin quarterly_A = compoundA (mkA "quarterly"); -- from DictEng -lin quarterly_Adv = mkAdv "quarterly"; -- from DictEng -lin quarterly_N = mkN "quarterly" "quarterlies"; -- from DictEng -lin quartermaster_N = mkN "quartermaster" "quartermasters"; -- from DictEng -lin quartermaster_general_N = mkN "quartermaster - general" "quartermaster - generals"; -- from DictEng -lin quarterstaff_N = mkN "quarterstaff" "quarterstaffs"; -- from DictEng -lin quartet_N = mkN "quartet" "quartets"; -- from DictEng -lin quartile_N = mkN "quartile" ; -lin quarto_N = mkN "quarto" "quartos"; -- from DictEng -lin quartz_N = mkN "quartz" ; -- from DictEng -lin quartzite_N = mkN "quartzite" ; -lin quartzose_A = mkA "quartzose" ; -lin quasar_N = mkN "quasar" "quasars"; -- from DictEng -lin quash_V2 = mkV2 (mkV "quash" "quashes" "quashed" "quashed" "quashing"); -- from DictEng -lin quasi_A = mkA "quasi" ; -lin quasi_religious_A = compoundA (mkA "quasi religious") ; -lin quasi_royal_A = compoundA (mkA "quasi royal") ; -lin quasiparticle_N = mkN "quasiparticle" ; -lin quassia_N = mkN "quassia" ; -- from DictEng -lin quatercentenary_N = mkN "quatercentenary" "quatercentenaries"; -- from DictEng -lin quatercentennial_N = mkN "quatercentennial" ; -lin quaternate_A = mkA "quaternate" ; -lin quatrain_N = mkN "quatrain" "quatrains"; -- from DictEng -lin quattrocento_N = mkN "quattrocento" "quattrocentos"; -- from DictEng -lin quaver_N = mkN "quaver" "quavers"; -- from DictEng -lin quaver_V = mkV "quaver" "quavers" "quavered" "quavered" "quavering"; -- from DictEng -lin quaver_V2 = mkV2 (mkV "quaver" "quavers" "quavered" "quavered" "quavering"); -- from DictEng -lin quavering_A = mkA "quavering" ; -lin quaveringly_Adv = mkAdv "quaveringly" ; -lin quay_N = mkN "quay" "quays"; -- from DictEng -lin queasily_Adv = mkAdv "queasily"; -- from DictEng -lin queasiness_N = mkN "queasiness" ; -- from DictEng -lin queasy_A = mkA "queasy" "queasier"; -- from DictEng -lin queen_N = mkN "queen" "queens"; -- from DictEng -lin queen_V2 = mkV2 (mkV "queen" "queens" "queened" "queened" "queening"); -- from DictEng -lin queen_size_A = compoundA (mkA "queen size") ; -lin queenly_A = mkA "queenly" "queenlier"; -- from DictEng -lin queer_A = mkA "queer" "queerer"; -- from DictEng -lin queer_N = mkN "queer" "queers"; -- from DictEng -lin queer_V2 = mkV2 (mkV "queer" "queers" "queered" "queered" "queering"); -- from DictEng -lin queerly_Adv = mkAdv "queerly" ; -lin queerness_N = mkN "queerness" ; -- from DictEng -lin quell_V2 = mkV2 (mkV "quell" "quells" "quelled" "quelled" "quelling"); -- from DictEng -lin quelled_A = mkA "quelled" ; -lin quellung_N = mkN "quellung" ; -lin quench_V2 = mkV2 (mkV "quench" "quenches" "quenched" "quenched" "quenching"); -- from DictEng -lin quenched_A = mkA "quenched" ; -lin quenchless_A = compoundA (mkA "quenchless"); -- from DictEng -lin quercitron_N = mkN "quercitron" ; -lin quern_N = mkN "quern" "querns"; -- from DictEng -lin querulous_A = compoundA (mkA "querulous"); -- from DictEng -lin querulousness_N = mkN "querulousness" ; -- from DictEng -lin query_N = mkN "query" "queries"; -- from DictEng -lin query_V = mkV "query" "queries" "queried" "queried" "querying"; -- from DictEng -lin query_V2 = mkV2 (mkV "query" "queries" "queried" "queried" "querying"); -- from DictEng -lin quesadilla_N = mkN "quesadilla" ; -lin quest_N = mkN "quest" "quests"; -- from DictEng -lin quest_V = mkV "quest" "quests" "quested" "quested" "questing"; -- from DictEng -lin question_N = mkN "question" "questions"; -- from DictEng -lin question_V2 = mkV2 (mkV "question" "questions" "questioned" "questioned" "questioning"); -- from DictEng -lin question_mark_N = mkN "question - mark" "question - marks"; -- from DictEng -lin question_master_N = mkN "question - master" "question - masters"; -- from DictEng -lin questionable_A = compoundA (mkA "questionable"); -- from DictEng -lin questionably_Adv = mkAdv "questionably" ; -lin questioner_N = mkN "questioner" "questioners"; -- from DictEng -lin questioning_A = mkA "questioning" ; -lin questioning_N = mkN "questioning" ; -lin questioningly_Adv = mkAdv "questioningly"; -- from DictEng -lin questionnaire_N = mkN "questionnaire" "questionnaires"; -- from DictEng -lin quetzal_N = mkN "quetzal" "quetzals"; -- from DictEng -lin queue_N = mkN "queue" "queues"; -- from DictEng -lin queue_V = mkV "queue" "queues" "queued" "queued" (variants {"queueing"; "queuing"}); -- from DictEng -lin qui_vive_N = mkN "qui vive" ; -- from DictEng -lin quibble_N = mkN "quibble" "quibbles"; -- from DictEng -lin quibble_V = mkV "quibble" "quibbles" "quibbled" "quibbled" "quibbling"; -- from DictEng -lin quibbler_N = mkN "quibbler" "quibblers"; -- from DictEng -lin quibbling_A = compoundA (mkA "quibbling"); -- from DictEng -lin quiche_N = mkN "quiche" "quiches"; -- from DictEng -lin quiche_lorraine_PN = mkPN "quiche Lorraine" ; -lin quick_A = mkA "quick" "quicker"; -- from DictEng -lin quick_Adv = mkAdv "quick"; -- from DictEng -lin quick_N = mkN "quick" ; -- from DictEng -lin quick_change_A = compoundA (mkA "quick - change"); -- from DictEng -lin quick_drying_A = compoundA (mkA "quick drying") ; -lin quick_sighted_A = compoundA (mkA "quick - sighted"); -- from DictEng -lin quick_witted_A = compoundA (mkA "quick - witted"); -- from DictEng -lin quick_change_A = compoundA (mkA "quick - change"); -- from DictEng -lin quick_eared_A = compoundA (mkA "quick - eared"); -- from DictEng -lin quick_eyed_A = compoundA (mkA "quick - eyed"); -- from DictEng -lin quick_freeze_V2 = mkV2 (mkV "quick-" IrregEng.freeze_V); -- from DictEng -lin quick_sighted_A = compoundA (mkA "quick - sighted"); -- from DictEng -lin quick_tempered_A = compoundA (mkA "quick - tempered"); -- from DictEng -lin quick_witted_A = compoundA (mkA "quick - witted"); -- from DictEng -lin quicken_V = mkV "quicken" "quickens" "quickened" "quickened" "quickening"; -- from DictEng -lin quicken_V2 = mkV2 (mkV "quicken" "quickens" "quickened" "quickened" "quickening"); -- from DictEng -lin quickener_N = mkN "quickener" ; -lin quickening_N = mkN "quickening" ; -lin quicker_Adv = mkAdv "quicker"; -- from DictEng -lin quickest_Adv = mkAdv "quickest"; -- from DictEng -lin quickie_N = mkN "quickie" "quickies"; -- from DictEng -lin quicklime_N = mkN "quicklime" ; -- from DictEng -lin quickly_Adv = mkAdv "quickly" ; -lin quickness_N = mkN "quickness" ; -- from DictEng -lin quicksand_N = mkN "quicksand" "quicksands"; -- from DictEng -lin quickset_A = compoundA (mkA "quickset"); -- from DictEng -lin quickset_N = mkN "quickset" ; -lin quicksilver_N = mkN "quicksilver" ; -- from DictEng -lin quickstep_N = mkN "quickstep" "quicksteps"; -- from DictEng -lin quid_N = mkN "quid" "quid"; -- from DictEng -lin quid_pro_quo_N = mkN "quid pro quo" "quid pro qui" {- FIXME: guessed plural form -}; -- from DictEng -lin quiddity_N = mkN "quiddity" ; -lin quiescence_N = mkN "quiescence" "IRREG"; -- from DictEng -lin quiescent_A = compoundA (mkA "quiescent"); -- from DictEng -lin quiet_A = mkA "quiet" "quieter"; -- from DictEng -lin quiet_N = mkN "quiet" ; -- from DictEng -lin quiet_V = mkV "quiet" "quiets" "quieted" "quieted" "quieting"; -- from DictEng -lin quiet_V2 = mkV2 (mkV "quiet" "quiets" "quieted" "quieted" "quieting"); -- from DictEng -lin quieten_V = mkV "quieten" "quietens" "quietened" "quietened" "quietening"; -- from DictEng -lin quieten_V2 = mkV2 (mkV "quieten" "quietens" "quietened" "quietened" "quietening"); -- from DictEng -lin quietism_N = mkN "quietism" ; -- from DictEng -lin quietist_N = mkN "quietist" "quietists"; -- from DictEng -lin quietly_Adv = mkAdv "quietly" ; -lin quietness_N = mkN "quietness" ; -- from DictEng -lin quietude_N = mkN "quietude" "IRREG"; -- from DictEng -lin quietus_N = mkN "quietus" "quietuses"; -- from DictEng -lin quiff_N = mkN "quiff" "quiffs"; -- from DictEng -lin quill_N = mkN "quill" "quills"; -- from DictEng -lin quill_feather_N = mkN "quill - feather" "quill - feathers"; -- from DictEng -lin quillwort_N = mkN "quillwort" ; -lin quilt_N = mkN "quilt" "quilts"; -- from DictEng -lin quilt_V2 = mkV2 (mkV "quilt" "quilts" "quilted" "quilted" "quilting"); -- from DictEng -lin quilted_A = mkA "quilted" ; -lin quilting_N = mkN "quilting" ; -lin quin_N = mkN "quin" "quins"; -- from DictEng -lin quinacrine_N = mkN "quinacrine" ; -lin quince_N = mkN "quince" "quinces"; -- from DictEng -lin quincentenary_A = compoundA (mkA "quincentenary"); -- from DictEng -lin quincentenary_N = mkN "quincentenary" "quincentenaries"; -- from DictEng -lin quincentennial_A = mkA "quincentennial" ; -lin quincentennial_N = mkN "quincentennial" ; -lin quinidine_N = mkN "quinidine" ; -lin quinine_N = mkN "quinine" ; -- from DictEng -lin quinone_N = mkN "quinone" ; -lin quinquagesima_N = mkN "quinquagesima" "quinquagesimas"; -- from DictEng -lin quinquefoliate_A = mkA "quinquefoliate" ; -lin quinquennium_N = mkN "quinquennium" ; -lin quinsy_N = mkN "quinsy" ; -- from DictEng -lin quintal_N = mkN "quintal" "quintals"; -- from DictEng -lin quintessence_N = mkN "quintessence" "quintessences"; -- from DictEng -lin quintessential_A = mkA "quintessential" ; -lin quintet_N = mkN "quintet" "quintets"; -- from DictEng -lin quintillion_N = mkN "quintillion" ; -lin quintillionth_A = mkA "quintillionth" ; -lin quintipara_N = mkN "quintipara" ; -lin quintuple_A = mkA "quintuple" ; -lin quintuplet_N = mkN "quintuplet" "quintuplets"; -- from DictEng -lin quintupling_N = mkN "quintupling" ; -lin quip_N = mkN "quip" "quips"; -- from DictEng -lin quip_V = mkV "quip" "quips" "quipped" "quipped" "quipping"; -- from DictEng -lin quip_VS = mkVS (mkV "quip" "quips" "quipped" "quipped" "quipping"); -- from DictEng -lin quipu_N = mkN "quipu" ; -lin quira_N = mkN "quira" ; -lin quire_N = mkN "quire" "quires"; -- from DictEng -lin quirk_N = mkN "quirk" "quirks"; -- from DictEng -lin quirt_N = mkN "quirt" ; -lin quisling_N = mkN "quisling" "quislings"; -- from DictEng -lin quit_A = compoundA (mkA "quit"); -- from DictEng -lin quit_V = mkV "quit"; -- from DictEng -lin quit_V2 = mkV2 (mkV "quit" "quits" "quitted" "quitted" "quitting"); -- from DictEng -lin quitclaim_N = mkN "quitclaim" ; -lin quite_Adv = mkAdv "quite" ; -lin quite_Predet = ss "quite"; -- from DictEng -lin quits_A = compoundA (mkA "quits"); -- from DictEng -lin quittance_N = mkN "quittance" "quittances"; -- from DictEng -lin quitter_N = mkN "quitter" "quitters"; -- from DictEng -lin quiver_N = mkN "quiver" "quivers"; -- from DictEng -lin quiver_V = mkV "quiver" "quivers" "quivered" "quivered" "quivering"; -- from DictEng -lin quiver_V2 = mkV2 (mkV "quiver" "quivers" "quivered" "quivered" "quivering"); -- from DictEng -lin quixotic_A = compoundA (mkA "quixotic"); -- from DictEng -lin quixotically_Adv = mkAdv "quixotically"; -- from DictEng -lin quiz_N = mkN "quiz" "quizzes"; -- from DictEng -lin quiz_V2 = mkV2 (mkV "quiz" "quizzes" "quizzed" "quizzed" "quizzing"); -- from DictEng -lin quizmaster_N = mkN "quizmaster" "quizmasters"; -- from DictEng -lin quizzical_A = compoundA (mkA "quizzical"); -- from DictEng -lin quodlibet_N = mkN "quodlibet" ; -lin quoin_N = mkN "quoin" "quoins"; -- from DictEng -lin quoit_N = mkN "quoit" "quoits"; -- from DictEng -lin quoits_N = mkN "quoits" ; -lin quonset_N = mkN "quonset" "quonsets"; -- from DictEng -lin quorum_N = mkN "quorum" "quorums"; -- from DictEng -lin quot_V = mkV "quot"; -- from DictEng -lin quot_VS = mkVS (mkV "quot"); -- from DictEng -lin quota_N = mkN "quota" "quotas"; -- from DictEng -lin quotability_N = mkN "quotability" ; -- from DictEng -lin quotable_A = compoundA (mkA "quotable"); -- from DictEng -lin quotation_N = mkN "quotation" "quotations"; -- from DictEng -lin quote_N = mkN "quote" "quotes"; -- from DictEng -lin quote_V = mkV "quote"; -- from DictEng -lin quote_V2 = mkV2 (mkV "quote" "quotes" "quoted" "quoted" "quoting"); -- from DictEng -lin quoter_N = mkN "quoter" ; -lin quotidian_A = compoundA (mkA "quotidian"); -- from DictEng -lin quotient_N = mkN "quotient" "quotients"; -- from DictEng -lin qurush_N = mkN "qurush" ; -lin ra_N = mkN "ra" ; -- from DictEng -lin rabato_N = mkN "rabato" ; -lin rabbet_N = mkN "rabbet" ; -lin rabbi_N = mkN "rabbi" "rabbis"; -- from DictEng -lin rabbinate_N = mkN "rabbinate" ; -lin rabbinical_A = compoundA (mkA "rabbinical"); -- from DictEng -lin rabbit_N = mkN "rabbit" "rabbits"; -- from DictEng -lin rabbit_V = mkV "rabbit" "rabbits" "rabbited" "rabbited" "rabbiting"; -- from DictEng -lin rabbit_sized_A = compoundA (mkA "rabbit sized") ; -lin rabbit_burrow_N = mkN "rabbit - burrow" "rabbit - burrows"; -- from DictEng -lin rabbit_hole_N = mkN "rabbit - hole" "rabbit - holes"; -- from DictEng -lin rabbit_hutch_N = mkN "rabbit - hutch" "rabbit - hutches"; -- from DictEng -lin rabbit_punch_N = mkN "rabbit - punch" "rabbit - punches"; -- from DictEng -lin rabbit_warren_N = mkN "rabbit - warren" "rabbit - warrens"; -- from DictEng -lin rabbitfish_N = mkN "rabbitfish" ; -lin rabbitweed_N = mkN "rabbitweed" ; -lin rabbitwood_N = mkN "rabbitwood" ; -lin rabble_N = mkN "rabble" "rabbles"; -- from DictEng -lin rabble_rousing_A = compoundA (mkA "rabble - rousing"); -- from DictEng -lin rabelaisian_A = compoundA (mkA "rabelaisian"); -- from DictEng -lin rabid_A = compoundA (mkA "rabid"); -- from DictEng -lin rabies_N = mkN "rabies" ; -- from DictEng -lin raccoon_N = mkN "raccoon" "raccoons"; -- from DictEng -lin race_N = mkN "race" "races"; -- from DictEng -lin race_V = mkV "race" "races" "raced" "raced" "racing"; -- from DictEng -lin race_V2 = mkV2 (mkV "race" "races" "raced" "raced" "racing"); -- from DictEng -lin race_V2V = mkV2V (mkV "race" "races" "raced" "raced" "racing") noPrep to_Prep ; -- from DictEng -lin race_VV = mkVV (mkV "race" "races" "raced" "raced" "racing") ; -- from DictEng -lin race_meeting_N = mkN "race - meeting" "race - meetings"; -- from DictEng -lin raceabout_N = mkN "raceabout" ; -lin racecard_N = mkN "racecard" "racecards"; -- from DictEng -lin racecourse_N = mkN "racecourse" "racecourses"; -- from DictEng -lin racehorse_N = mkN "racehorse" "racehorses"; -- from DictEng -lin raceme_N = mkN "raceme" "racemes"; -- from DictEng -lin racemose_A = mkA "racemose" ; -lin racer_N = mkN "racer" "racers"; -- from DictEng -lin racerunner_N = mkN "racerunner" ; -lin racetrack_N = mkN "racetrack" ; -lin raceway_N = mkN "raceway" ; -lin rachis_N = mkN "rachis" ; -lin rachitis_N = mkN "rachitis" ; -lin racial_A = compoundA (mkA "racial"); -- from DictEng -lin racialism_N = mkN "racialism" ; -- from DictEng -lin racialist_N = mkN "racialist" "racialists"; -- from DictEng -lin racially_Adv = mkAdv "racially" ; -lin racily_Adv = mkAdv "racily"; -- from DictEng -lin raciness_N = mkN "raciness" ; -- from DictEng -lin racing_N = mkN "racing" ; -- from DictEng -lin racism_N = mkN "racism" ; -- from DictEng -lin racist_A = mkA "racist" ; -lin racist_N = mkN "racist" "racists"; -- from DictEng -lin rack_N = mkN "rack" "racks"; -- from DictEng -lin rack_V2 = mkV2 (mkV "rack" "racks" "racked" "racked" "racking"); -- from DictEng -lin rack_railway_N = mkN "rack - railway" "rack - railways"; -- from DictEng -lin rack_rent_N = mkN "rack - rent" "rack - rents"; -- from DictEng -lin racker_N = mkN "racker" ; -lin racket_N = mkN "racket" "rackets"; -- from DictEng -lin racket_V = mkV "racket" "rackets" "racketed" "racketed" "racketing"; -- from DictEng -lin racketeer_N = mkN "racketeer" "racketeers"; -- from DictEng -lin racketeering_N = mkN "racketeering" ; -- from DictEng -lin rackety_A = mkA "rackety" ; -lin racking_A = mkA "racking" ; -lin raconteur_N = mkN "raconteur" "raconteurs"; -- from DictEng -lin racoon_N = mkN "racoon" "racoons"; -- from DictEng -lin racquet_N = mkN "racquet" "racquets"; -- from DictEng -lin racquetball_N = mkN "racquetball" ; -lin racy_A = mkA "racy" "racier"; -- from DictEng -lin rad_N = mkN "rad" ; -lin radar_N = mkN "radar" ; -- from DictEng -lin raddled_A = compoundA (mkA "raddled"); -- from DictEng -lin radial_A = compoundA (mkA "radial"); -- from DictEng -lin radial_N = mkN "radial" "radials"; -- from DictEng -lin radial_ply_A = compoundA (mkA "radial ply") ; -lin radially_Adv = mkAdv "radially" ; -lin radially_symmetrical_A = compoundA (mkA "radially symmetrical") ; -lin radian_N = mkN "radian" ; -lin radiance_N = mkN "radiance" ; -- from DictEng -lin radiant_A = compoundA (mkA "radiant"); -- from DictEng -lin radiantly_Adv = mkAdv "radiantly" ; -lin radiate_A = mkA "radiate" ; -lin radiate_V = mkV "radiate" "radiates" "radiated" "radiated" "radiating"; -- from DictEng -lin radiate_V2 = mkV2 (mkV "radiate" "radiates" "radiated" "radiated" "radiating"); -- from DictEng -lin radiating_A = mkA "radiating" ; -lin radiation_N = mkN "radiation" "radiations"; -- from DictEng -lin radiator_N = mkN "radiator" "radiators"; -- from DictEng -lin radical_A = compoundA (mkA "radical"); -- from DictEng -lin radical_N = mkN "radical" "radicals"; -- from DictEng -lin radicalism_N = mkN "radicalism" ; -- from DictEng -lin radically_Adv = mkAdv "radically" ; -lin radicchio_N = mkN "radicchio" ; -lin radicle_N = mkN "radicle" "radicles"; -- from DictEng -lin radiculitis_N = mkN "radiculitis" ; -lin radio_A = mkA "radio" ; -lin radio_N = mkN "radio" "radios"; -- from DictEng -lin radio_V2 = mkV2 (mkV "radio"); -- from DictEng -lin radio_controlled_A = compoundA (mkA "radio controlled") ; -lin radio_phonograph_N = mkN "radio phonograph" ; -lin radio_gramophone_N = mkN "radio - gramophone" "radio - gramophones"; -- from DictEng -lin radio_location_N = mkN "radio - location" "radio - locations"; -- from DictEng -lin radio_set_N = mkN "radio - set" "radio - sets"; -- from DictEng -lin radio_telescope_N = mkN "radio - telescope" "radio - telescopes"; -- from DictEng -lin radioactive_A = compoundA (mkA "radioactive"); -- from DictEng -lin radioactively_Adv = mkAdv "radioactively" ; -lin radioactivity_N = mkN "radioactivity" ; -- from DictEng -lin radiobiologist_N = mkN "radiobiologist" ; -lin radiobiology_N = mkN "radiobiology" ; -lin radiocarbon_N = mkN "radiocarbon" ; -lin radiochemistry_N = mkN "radiochemistry" ; -lin radiochlorine_N = mkN "radiochlorine" ; -lin radiogram_N = mkN "radiogram" "radiograms"; -- from DictEng -lin radiograph_N = mkN "radiograph" "radiographs"; -- from DictEng -lin radiographer_N = mkN "radiographer" "radiographers"; -- from DictEng -lin radiographic_A = mkA "radiographic" ; -lin radiography_N = mkN "radiography" ; -- from DictEng -lin radioimmunoassay_N = mkN "radioimmunoassay" ; -lin radioisotope_N = mkN "radioisotope" "radioisotopes"; -- from DictEng -lin radiolarian_N = mkN "radiolarian" ; -lin radiological_A = mkA "radiological" ; -lin radiologist_N = mkN "radiologist" "radiologists"; -- from DictEng -lin radiology_N = mkN "radiology" ; -- from DictEng -lin radiolucent_A = mkA "radiolucent" ; -lin radiolysis_N = mkN "radiolysis" ; -lin radiometer_N = mkN "radiometer" ; -lin radiomicrometer_N = mkN "radiomicrometer" ; -lin radiopacity_N = mkN "radiopacity" ; -lin radiopaque_A = mkA "radiopaque" ; -lin radiopharmaceutical_N = mkN "radiopharmaceutical" ; -lin radiophotograph_N = mkN "radiophotograph" ; -lin radiophotography_N = mkN "radiophotography" ; -lin radioprotection_N = mkN "radioprotection" ; -lin radioscopy_N = mkN "radioscopy" ; -lin radiosensitive_A = mkA "radiosensitive" ; -lin radiotelegraph_N = mkN "radiotelegraph" ; -lin radiotelephone_N = mkN "radiotelephone" ; -lin radiotelephonic_A = mkA "radiotelephonic" ; -lin radiotherapist_N = mkN "radiotherapist" "radiotherapists"; -- from DictEng -lin radiotherapy_N = mkN "radiotherapy" ; -- from DictEng -lin radish_N = mkN "radish" "radishes"; -- from DictEng -lin radium_N = mkN "radium" ; -- from DictEng -lin radius_N = mkN "radius" "radii" {- FIXME: guessed plural form -}; -- from DictEng -lin radome_N = mkN "radome" ; -lin radon_N = mkN "radon" ; -lin raf_N = mkN "raf" ; -- from DictEng -lin raffia_N = mkN "raffia" ; -- from DictEng -lin raffinose_N = mkN "raffinose" ; -lin raffish_A = compoundA (mkA "raffish"); -- from DictEng -lin raffle_N = mkN "raffle" "raffles"; -- from DictEng -lin raffle_V2 = mkV2 (mkV "raffle" "raffles" "raffled" "raffled" "raffling"); -- from DictEng -lin raft_N = mkN "raft" "rafts"; -- from DictEng -lin raft_V = mkV "raft" "rafts" "rafted" "rafted" "rafting"; -- from DictEng -lin raft_V2 = mkV2 (mkV "raft" "rafts" "rafted" "rafted" "rafting"); -- from DictEng -lin rafter_N = mkN "rafter" "rafters"; -- from DictEng -lin raftered_A = compoundA (mkA "raftered"); -- from DictEng -lin raftsman_N = mkN "raftsman" "raftsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin rag_N = mkN "rag" "rags"; -- from DictEng -lin rag_V2 = mkV2 (mkV "rag" "rags" "ragged" "ragged" "ragging"); -- from DictEng -lin rag_day_N = mkN "rag - day" "rag - days"; -- from DictEng -lin ragamuffin_N = mkN "ragamuffin" "ragamuffins"; -- from DictEng -lin ragbag_N = mkN "ragbag" "ragbags"; -- from DictEng -lin rage_N = mkN "rage" "rages"; -- from DictEng -lin rage_V = mkV "rage" "rages" "raged" "raged" "raging"; -- from DictEng -lin rage_V2 = mkV2 (mkV "rage") ; -lin ragged_A = compoundA (mkA "ragged"); -- from DictEng -lin raggedly_Adv = mkAdv "raggedly" ; -lin raggedness_N = mkN "raggedness" ; -- from DictEng -lin raging_A = mkA "raging" ; -lin raglan_N = mkN "raglan" "raglans"; -- from DictEng -lin ragout_N = mkN "ragout" "ragouts"; -- from DictEng -lin ragpicker_N = mkN "ragpicker" ; -lin ragsorter_N = mkN "ragsorter" ; -lin ragtag_N = mkN "ragtag" "ragtags"; -- from DictEng -lin ragtime_N = mkN "ragtime" ; -- from DictEng -lin ragweed_N = mkN "ragweed" ; -lin ragwort_N = mkN "ragwort" ; -lin raid_N = mkN "raid" "raids"; -- from DictEng -lin raid_V = mkV "raid" "raids" "raided" "raided" "raiding"; -- from DictEng -lin raid_V2 = mkV2 (mkV "raid" "raids" "raided" "raided" "raiding"); -- from DictEng -lin raider_N = mkN "raider" "raiders"; -- from DictEng -lin rail_N = mkN "rail" "rails"; -- from DictEng -lin rail_V = mkV "rail" "rails" "railed" "railed" "railing"; -- from DictEng -lin rail_V2 = mkV2 (mkV "rail" "rails" "railed" "railed" "railing"); -- from DictEng -lin rail_splitter_N = mkN "rail splitter" ; -lin railbird_N = mkN "railbird" ; -lin railcar_N = mkN "railcar" "railcars"; -- from DictEng -lin railhead_N = mkN "railhead" "railheads"; -- from DictEng -lin railing_N = mkN "railing" "railings"; -- from DictEng -lin raillery_N = mkN "raillery" "railleries"; -- from DictEng -lin railroad_N = mkN "railroad" "railroads"; -- from DictEng -lin railroad_V2 = mkV2 (mkV "railroad" "railroads" "railroaded" "railroaded" "railroading"); -- from DictEng -lin railway_N = mkN "railway" "railways"; -- from DictEng -lin railwayman_N = mkN "railwayman" "railwaymen" {- FIXME: guessed plural form -}; -- from DictEng -lin raiment_N = mkN "raiment" ; -- from DictEng -lin rain_N = mkN "rain" "rains"; -- from DictEng -lin rain_V = mkV "rain" "rains" "rained" "rained" "raining"; -- from DictEng -lin rain_V2 = mkV2 (mkV "rain" "rains" "rained" "rained" "raining"); -- from DictEng -lin rain_wash_N = mkN "rain wash" ; -lin rain_gauge_N = mkN "rain - gauge" "rain - gauges"; -- from DictEng -lin rainbow_N = mkN "rainbow" "rainbows"; -- from DictEng -lin raincoat_N = mkN "raincoat" "raincoats"; -- from DictEng -lin raindrop_N = mkN "raindrop" "raindrops"; -- from DictEng -lin rainfall_N = mkN "rainfall" "rainfalls"; -- from DictEng -lin raining_A = mkA "raining" ; -lin rainless_A = mkA "rainless" ; -lin rainmaker_N = mkN "rainmaker" ; -lin rainmaking_N = mkN "rainmaking" ; -lin rainproof_A = compoundA (mkA "rainproof"); -- from DictEng -lin rainstorm_N = mkN "rainstorm" ; -lin rainwater_N = mkN "rainwater" ; -- from DictEng -lin rainy_A = mkA "rainy" "rainier"; -- from DictEng -lin raisable_A = mkA "raisable" ; -lin raise_N = mkN "raise" "raises"; -- from DictEng -lin raise_V2 = mkV2 (mkV "raise" "raises" "raised" "raised" "raising"); -- from DictEng -lin raised_A = mkA "raised" ; -lin raiser_N = mkN "raiser" "raisers"; -- from DictEng -lin raisin_N = mkN "raisin" "raisins"; -- from DictEng -lin raising_A = mkA "raising" ; -lin raising_N = mkN "raising" ; -lin raison_d'etre_N = mkN "raison d'être" "IRREG"; -- from DictEng -lin raita_N = mkN "raita" ; -lin raj_N = mkN "raj" "IRREG"; -- from DictEng -lin raja_N = mkN "raja" ; -lin rajah_N = mkN "rajah" "rajahs"; -- from DictEng -lin rajanya_N = mkN "rajanya" ; -lin rake_N = mkN "rake" "rakes"; -- from DictEng -lin rake_V = mkV "rake" "rakes" "raked" "raked" "raking"; -- from DictEng -lin rake_V2 = mkV2 (mkV "rake" "rakes" "raked" "raked" "raking"); -- from DictEng -lin rake_off_N = mkN "rake - off" "rake - offs"; -- from DictEng -lin rake_off_N = mkN "rake - off" "rake - offs"; -- from DictEng -lin rakish_A = compoundA (mkA "rakish"); -- from DictEng -lin rakishly_Adv = mkAdv "rakishly" ; -lin rakishness_N = mkN "rakishness" ; -- from DictEng -lin rallentando_A = compoundA (mkA "rallentando"); -- from DictEng -lin rallentando_Adv = mkAdv "rallentando"; -- from DictEng -lin rally_N = mkN "rally" "rallies"; -- from DictEng -lin rally_V = mkV "rally" "rallies" "rallied" "rallied" "rallying"; -- from DictEng -lin rally_V2 = mkV2 (mkV "rally" "rallies" "rallied" "rallied" "rallying"); -- from DictEng -lin rally_V2V = mkV2V (mkV "rally" "rallies" "rallied" "rallied" "rallying") noPrep to_Prep ; -- from DictEng -lin rallying_A = mkA "rallying" ; -lin rallying_N = mkN "rallying" ; -lin ram_N = mkN "ram" "rams"; -- from DictEng -lin ram_V2 = mkV2 (mkV "ram" "rams" "rammed" "rammed" "ramming"); -- from DictEng -lin ram's_head_N = mkN "ram's head" ; -lin ramadan_N = mkN "ramadan" "ramadans"; -- from DictEng -lin ramble_N = mkN "ramble" "rambles"; -- from DictEng -lin ramble_V = mkV "ramble" "rambles" "rambled" "rambled" "rambling"; -- from DictEng -lin ramble_V2 = mkV2 (mkV "ramble") ; -lin rambler_N = mkN "rambler" "ramblers"; -- from DictEng -lin rambling_A = compoundA (mkA "rambling"); -- from DictEng -lin rambunctious_A = compoundA (mkA "rambunctious"); -- from DictEng -lin rambutan_N = mkN "rambutan" ; -lin ramekin_N = mkN "ramekin" ; -lin ramie_N = mkN "ramie" ; -lin ramification_N = mkN "ramification" "ramifications"; -- from DictEng -lin ramify_V = mkV "ramify" "ramifies" "ramified" "ramified" "ramifying"; -- from DictEng -lin ramify_V2 = mkV2 (mkV "ramify" "ramifies" "ramified" "ramified" "ramifying"); -- from DictEng -lin ramipril_N = mkN "ramipril" ; -lin ramjet_N = mkN "ramjet" "ramjets"; -- from DictEng -lin rammer_N = mkN "rammer" ; -lin ramp_N = mkN "ramp" "ramps"; -- from DictEng -lin ramp_V2 = mkV2 (mkV "ramp" "ramps" "ramped" "ramped" "ramping"); -- from DictEng -lin rampage_N = mkN "rampage" "rampages"; -- from DictEng -lin rampage_V = mkV "rampage" "rampages" "rampaged" "rampaged" "rampaging"; -- from DictEng -lin rampageous_A = compoundA (mkA "rampageous"); -- from DictEng -lin rampant_A = compoundA (mkA "rampant"); -- from DictEng -lin rampantly_Adv = mkAdv "rampantly" ; -lin rampart_N = mkN "rampart" "ramparts"; -- from DictEng -lin rampion_N = mkN "rampion" ; -lin ramrod_N = mkN "ramrod" "ramrods"; -- from DictEng -lin ramshackle_A = compoundA (mkA "ramshackle"); -- from DictEng -lin ramus_N = mkN "ramus" ; -lin ranch_N = mkN "ranch" "ranches"; -- from DictEng -lin rancher_N = mkN "rancher" "ranchers"; -- from DictEng -lin ranching_N = mkN "ranching" ; -lin rancid_A = compoundA (mkA "rancid"); -- from DictEng -lin rancidity_N = mkN "rancidity" ; -lin rancidness_N = mkN "rancidness" ; -lin rancorous_A = compoundA (mkA "rancorous"); -- from DictEng -lin rancour_N = mkN "rancour" ; -- from DictEng -lin rand_N = mkN "rand" "rands"; -- from DictEng -lin random_A = mkA "random" ; -lin random_N = mkN "random" "IRREG"; -- from DictEng -lin randomization_N = mkN "randomization" ; -lin randomized_A = mkA "randomized" ; -lin randomly_Adv = mkAdv "randomly"; -- from DictEng -lin randomness_N = mkN "randomness" ; -- from DictEng -lin randy_A = mkA "randy" "randier"; -- from DictEng -lin ranee_N = mkN "ranee" "ranees"; -- from DictEng -lin range_N = mkN "range" "ranges"; -- from DictEng -lin range_V = mkV "range" "ranges" "ranged" "ranged" "ranging"; -- from DictEng -lin range_V2 = mkV2 (mkV "range" "ranges" "ranged" "ranged" "ranging"); -- from DictEng -lin rangefinder_N = mkN "rangefinder" "rangefinders"; -- from DictEng -lin rangeland_N = mkN "rangeland" ; -lin ranger_N = mkN "ranger" "rangers"; -- from DictEng -lin ranging_A = mkA "ranging" ; -lin rangpur_N = mkN "rangpur" ; -lin rangy_A = mkA "rangy" ; -lin rani_N = mkN "rani" "ranis"; -- from DictEng -lin ranitidine_N = mkN "ranitidine" ; -lin rank_A = compoundA (mkA "rank"); -- from DictEng -lin rank_N = mkN "rank" "ranks"; -- from DictEng -lin rank_V = mkV "rank" "ranks" "ranked" "ranked" "ranking"; -- from DictEng -lin rank_V2 = mkV2 (mkV "rank" "ranks" "ranked" "ranked" "ranking"); -- from DictEng -lin rank_VS = mkVS (mkV "rank" "ranks" "ranked" "ranked" "ranking"); -- from DictEng -lin rank_smelling_A = compoundA (mkA "rank smelling") ; -lin ranker_N = mkN "ranker" "rankers"; -- from DictEng -lin ranking_A = mkA "ranking" ; -lin ranking_N = mkN "ranking" "rankings"; -- from DictEng -lin rankle_V = mkV "rankle" "rankles" "rankled" "rankled" "rankling"; -- from DictEng -lin rankle_V2 = mkV2 (mkV "rankle") ; -lin rankness_N = mkN "rankness" ; -- from DictEng -lin ransack_V2 = mkV2 (mkV "ransack" "ransacks" "ransacked" "ransacked" "ransacking"); -- from DictEng -lin ransacking_N = mkN "ransacking" ; -lin ransom_N = mkN "ransom" "ransoms"; -- from DictEng -lin ransom_V2 = mkV2 (mkV "ransom" "ransoms" "ransomed" "ransomed" "ransoming"); -- from DictEng -lin ransomed_A = mkA "ransomed" ; -lin rant_N = mkN "rant" "rants"; -- from DictEng -lin rant_V = mkV "rant" "rants" "ranted" "ranted" "ranting"; -- from DictEng -lin rant_V2 = mkV2 (mkV "rant" "rants" "ranted" "ranted" "ranting"); -- from DictEng -lin ranter_N = mkN "ranter" "ranters"; -- from DictEng -lin ranula_N = mkN "ranula" ; -lin rap_N = mkN "rap" "raps"; -- from DictEng -lin rap_V = mkV "rap" "raps" "rapped" "rapped" "rapping"; -- from DictEng -lin rap_V2 = mkV2 (mkV "rap" "raps" "rapped" "rapped" "rapping"); -- from DictEng -lin rapacious_A = compoundA (mkA "rapacious"); -- from DictEng -lin rapaciously_Adv = mkAdv "rapaciously" ; -lin rapacity_N = mkN "rapacity" ; -- from DictEng -lin rape_N = mkN "rape" "rapes"; -- from DictEng -lin rape_V2 = mkV2 (mkV "rape" "rapes" "raped" "raped" "raping"); -- from DictEng -lin raper_N = mkN "raper" ; -lin rapeseed_N = mkN "rapeseed" ; -lin raphe_N = mkN "raphe" ; -lin rapid_A = compoundA (mkA "rapid"); -- from DictEng -lin rapid_N = mkN "rapid" "rapids"; -- from DictEng -lin rapidity_N = mkN "rapidity" ; -- from DictEng -lin rapier_N = mkN "rapier" "rapiers"; -- from DictEng -lin rapier_thrust_N = mkN "rapier - thrust" "rapier - thrusts"; -- from DictEng -lin rapine_N = mkN "rapine" ; -- from DictEng -lin rapist_N = mkN "rapist" "rapists"; -- from DictEng -lin rappee_N = mkN "rappee" ; -lin rappel_N = mkN "rappel" ; -lin rapper_N = mkN "rapper" ; -lin rapport_N = mkN "rapport" "rapports"; -- from DictEng -lin rapporteur_N = mkN "rapporteur" ; -lin rapprochement_N = mkN "rapprochement" "rapprochements"; -- from DictEng -lin rapscallion_N = mkN "rapscallion" "rapscallions"; -- from DictEng -lin rapt_A = compoundA (mkA "rapt"); -- from DictEng -lin raptorial_A = mkA "raptorial" ; -lin rapture_N = mkN "rapture" "raptures"; -- from DictEng -lin rapturous_A = compoundA (mkA "rapturous"); -- from DictEng -lin rare_A = mkA "rare" "rarer"; -- from DictEng -lin rare_roasted_A = compoundA (mkA "rare roasted") ; -lin rarebit_N = mkN "rarebit" "rarebits"; -- from DictEng -lin raree_show_N = mkN "raree show" ; -lin rarefaction_N = mkN "rarefaction" ; -- from DictEng -lin rarefy_V = mkV "rarefy" "rarefies" "rarefied" "rarefied" "rarefying"; -- from DictEng -lin rarefy_V2 = mkV2 (mkV "rarefy" "rarefies" "rarefied" "rarefied" "rarefying"); -- from DictEng -lin rarely_Adv = mkAdv "rarely" ; -lin rareness_N = mkN "rareness" ; -- from DictEng -lin raring_A = compoundA (mkA "raring"); -- from DictEng -lin rariora_N = mkN "rariora" ; -lin rarity_N = mkN "rarity" "rarities"; -- from DictEng -lin rascal_N = mkN "rascal" "rascals"; -- from DictEng -lin rascality_N = mkN "rascality" ; -lin rascally_A = compoundA (mkA "rascally"); -- from DictEng -lin rase_V2 = mkV2 (mkV "rase" "rases" "rased" "rased" "rasing"); -- from DictEng -lin rash_A = mkA "rash" "rasher"; -- from DictEng -lin rash_N = mkN "rash" "rashes"; -- from DictEng -lin rasher_N = mkN "rasher" "rashers"; -- from DictEng -lin rashness_N = mkN "rashness" ; -- from DictEng -lin rasp_N = mkN "rasp" "rasps"; -- from DictEng -lin rasp_V = mkV "rasp" "rasps" "rasped" "rasped" "rasping"; -- from DictEng -lin rasp_V2 = mkV2 (mkV "rasp" "rasps" "rasped" "rasped" "rasping"); -- from DictEng -lin raspberry_N = mkN "raspberry" "raspberries"; -- from DictEng -lin raspingly_Adv = mkAdv "raspingly"; -- from DictEng -lin raster_N = mkN "raster" ; -lin rat_N = mkN "rat" "rats"; -- from DictEng -lin rat_V = mkV "rat"; -- from DictEng -lin rat_V2 = mkV2 (mkV "rat" "rats" "ratted" "ratted" "ratting"); -- from DictEng -lin rat_a_tat_tat_N = mkN "rat - a - tat - tat" "rat - a - tat - tats"; -- from DictEng -lin rat_catcher_N = mkN "rat catcher" ; -lin rat_a_tat_tat_N = mkN "rat - a - tat - tat" "rat - a - tat - tats"; -- from DictEng -lin rat_tat_N = mkN "rat - tat" "rat - tats"; -- from DictEng -lin ratability_N = mkN "ratability" ; -- from DictEng -lin ratable_A = compoundA (mkA "ratable"); -- from DictEng -lin ratables_N = mkN "ratables" ; -lin ratafia_N = mkN "ratafia" ; -lin ratan_N = mkN "ratan" "ratans"; -- from DictEng -lin ratatouille_N = mkN "ratatouille" ; -lin ratch_N = mkN "ratch" "ratches"; -- from DictEng -lin ratchet_N = mkN "ratchet" "ratchets"; -- from DictEng -lin rate_N = mkN "rate" "rates"; -- from DictEng -lin rate_V = mkV "rate" "rates" "rated" "rated" "rating"; -- from DictEng -lin rate_V2 = mkV2 (mkV "rate" "rates" "rated" "rated" "rating"); -- from DictEng -lin rate_VA = mkVA (mkV "rate" "rates" "rated" "rated" "rating"); -- from DictEng -lin rate_VS = mkVS (mkV "rate" "rates" "rated" "rated" "rating"); -- from DictEng -lin rateability_N = mkN "rateability" ; -- from DictEng -lin rateable_A = compoundA (mkA "rateable"); -- from DictEng -lin ratel_N = mkN "ratel" ; -lin ratepayer_N = mkN "ratepayer" "ratepayers"; -- from DictEng -lin rates_N = mkN "rates" ; -lin rather_Adv = mkAdv "rather"; -- from DictEng -lin rathole_N = mkN "rathole" ; -lin rathskeller_N = mkN "rathskeller" ; -lin ratification_N = mkN "ratification" "ratifications"; -- from DictEng -lin ratified_A = mkA "ratified" ; -lin ratify_V2 = mkV2 (mkV "ratify" "ratifies" "ratified" "ratified" "ratifying"); -- from DictEng -lin rating_N = mkN "rating" "ratings"; -- from DictEng -lin ratio_N = mkN "ratio" "ratios"; -- from DictEng -lin ratiocination_N = mkN "ratiocination" ; -- from DictEng -lin ratiocinative_A = mkA "ratiocinative" ; -lin ration_N = mkN "ration" "rations"; -- from DictEng -lin ration_V2 = mkV2 (mkV "ration" "rations" "rationed" "rationed" "rationing"); -- from DictEng -lin rational_A = compoundA (mkA "rational"); -- from DictEng -lin rationale_N = mkN "rationale" "rationales"; -- from DictEng -lin rationalism_N = mkN "rationalism" ; -- from DictEng -lin rationalist_A = mkA "rationalist" ; -lin rationalist_N = mkN "rationalist" "rationalists"; -- from DictEng -lin rationalistic_A = compoundA (mkA "rationalistic"); -- from DictEng -lin rationality_N = mkN "rationality" "rationalities"; -- from DictEng -lin rationalization_N = mkN "rationalization" "rationalizations"; -- from DictEng -lin rationalize_V2 = mkV2 (mkV "rationalize" "rationalizes" "rationalized" "rationalized" "rationalizing"); -- from DictEng -lin rationally_Adv = mkAdv "rationally" ; -lin rationed_A = mkA "rationed" ; -lin rationing_N = mkN "rationing" ; -lin ratite_N = mkN "ratite" ; -lin ratlike_A = mkA "ratlike" ; -lin ratlin_N = mkN "ratlin" "ratlins"; -- from DictEng -lin ratline_N = mkN "ratline" "ratlines"; -- from DictEng -lin rattan_N = mkN "rattan" "rattans"; -- from DictEng -lin ratter_N = mkN "ratter" "ratters"; -- from DictEng -lin rattle_N = mkN "rattle" "rattles"; -- from DictEng -lin rattle_V = mkV "rattle" "rattles" "rattled" "rattled" "rattling"; -- from DictEng -lin rattle_V2 = mkV2 (mkV "rattle" "rattles" "rattled" "rattled" "rattling"); -- from DictEng -lin rattlebrained_A = compoundA (mkA "rattlebrained"); -- from DictEng -lin rattlepated_A = compoundA (mkA "rattlepated"); -- from DictEng -lin rattler_N = mkN "rattler" "rattlers"; -- from DictEng -lin rattlesnake_N = mkN "rattlesnake" "rattlesnakes"; -- from DictEng -lin rattling_A = compoundA (mkA "rattling"); -- from DictEng -lin rattling_Adv = mkAdv "rattling"; -- from DictEng -lin rattrap_N = mkN "rattrap" ; -lin ratty_A = mkA "ratty" "rattier"; -- from DictEng -lin raucous_A = compoundA (mkA "raucous"); -- from DictEng -lin raucously_Adv = mkAdv "raucously" ; -lin raunchy_A = mkA "raunchy" ; -lin rauwolfia_N = mkN "rauwolfia" ; -lin ravage_N = mkN "ravage" "ravages"; -- from DictEng -lin ravage_V = mkV "ravage" "ravages" "ravaged" "ravaged" "ravaging"; -- from DictEng -lin ravage_V2 = mkV2 (mkV "ravage" "ravages" "ravaged" "ravaged" "ravaging"); -- from DictEng -lin ravaging_A = mkA "ravaging" ; -lin ravaging_N = mkN "ravaging" ; -lin rave_N = mkN "rave" "raves"; -- from DictEng -lin rave_V = mkV "rave" "raves" "raved" "raved" "raving"; -- from DictEng -lin rave_V2 = mkV2 (mkV "rave" "raves" "raved" "raved" "raving"); -- from DictEng -lin rave_up_N = mkN "rave - up" "rave - ups"; -- from DictEng -lin rave_up_N = mkN "rave - up" "rave - ups"; -- from DictEng -lin ravehook_N = mkN "ravehook" ; -lin ravel_V = mkV "ravel" "ravels" "ravelled" "ravelled" "ravelling"; -- from DictEng -lin ravel_V2 = mkV2 (mkV "ravel" "ravels" "ravelled" "ravelled" "ravelling"); -- from DictEng -lin raveling_N = mkN "raveling" ; -lin raven_N = mkN "raven" "ravens"; -- from DictEng -lin ravening_A = compoundA (mkA "ravening"); -- from DictEng -lin ravenous_A = compoundA (mkA "ravenous"); -- from DictEng -lin raver_N = mkN "raver" "ravers"; -- from DictEng -lin ravigote_N = mkN "ravigote" ; -lin ravine_N = mkN "ravine" "ravines"; -- from DictEng -lin raving_A = compoundA (mkA "raving"); -- from DictEng -lin raving_Adv = mkAdv "raving"; -- from DictEng -lin raving_N = mkN "raving" ; -lin raving_mad_A = compoundA (mkA "raving mad") ; -lin ravioli_N = mkN "ravioli" "raviolis"; -- from DictEng -lin ravish_V2 = mkV2 (mkV "ravish" "ravishes" "ravished" "ravished" "ravishing"); -- from DictEng -lin ravishing_A = mkA "ravishing" ; -lin ravishingly_Adv = mkAdv "ravishingly"; -- from DictEng -lin ravishment_N = mkN "ravishment" "ravishments"; -- from DictEng -lin raw_A = compoundA (mkA "raw"); -- from DictEng -lin raw_N = mkN "raw" "IRREG"; -- from DictEng -lin rawboned_A = compoundA (mkA "rawboned"); -- from DictEng -lin rawhide_A = compoundA (mkA "rawhide"); -- from DictEng -lin rawhide_N = mkN "rawhide" ; -lin rawness_N = mkN "rawness" ; -lin ray_N = mkN "ray" "rays"; -- from DictEng -lin ray_V = mkV "ray" "rays" "rayed" "rayed" "raying"; -- from DictEng -lin ray_V2 = mkV2 (mkV "ray" "rays" "rayed" "rayed" "raying"); -- from DictEng -lin rayless_A = mkA "rayless" ; -lin rayon_N = mkN "rayon" ; -- from DictEng -lin razbliuto_N = mkN "razbliuto" ; -lin raze_V2 = mkV2 (mkV "raze" "razes" "razed" "razed" "razing"); -- from DictEng -lin razing_N = mkN "razing" ; -lin razor_N = mkN "razor" "razors"; -- from DictEng -lin razor_V2 = mkV2 (mkV "razor" "razors" "razored" "razored" "razoring"); -- from DictEng -lin razor_sharp_A = compoundA (mkA "razor sharp") ; -lin razor_edge_N = mkN "razor - edge" "razor - edges"; -- from DictEng -lin razorback_A = mkA "razorback" ; -lin razorback_N = mkN "razorback" "razorbacks"; -- from DictEng -lin razorbacked_A = compoundA (mkA "razorbacked"); -- from DictEng -lin razorbill_N = mkN "razorbill" ; -lin razorblade_N = mkN "razorblade" "razorblades"; -- from DictEng -lin razzle_N = mkN "razzle" "IRREG"; -- from DictEng -lin razzle_dazzle_N = mkN "razzle - dazzle" "IRREG"; -- from DictEng -lin razzle_dazzle_N = mkN "razzle - dazzle" "IRREG"; -- from DictEng -lin re_N = mkN "re" "IRREG"; -- from DictEng -lin re_created_A = compoundA (mkA "re created") ; -lin re_creation_N = mkN "re creation" ; -lin re_echo_N = mkN "re - echo" "re - echoes"; -- from DictEng -lin re_emerge_V = mkV "re - emerge"; -- from DictEng -lin re_entrant_A = compoundA (mkA "re entrant") ; -lin re_establishment_N = mkN "re establishment" ; -lin re_formation_N = mkN "re - formation" "re - formations"; -- from DictEng -lin re_formed_A = compoundA (mkA "re formed") ; -lin re_introduction_N = mkN "re introduction" ; -lin re_address_V2 = mkV2 (mkV "re - address" "re - addresses" "re - addressed" "re - addressed" "re - addressing"); -- from DictEng -lin re_afforest_V2 = mkV2 (mkV "re - afforest" "re - afforests" "re - afforested" "re - afforested" "re - afforesting"); -- from DictEng -lin re_afforestation_N = mkN "re - afforestation" "re - afforestations"; -- from DictEng -lin re_count_N = mkN "re - count" "re - counts"; -- from DictEng -lin re_count_V2 = mkV2 (mkV "re - count" "re - counts" "re - counted" "re - counted" "re - counting"); -- from DictEng -lin re_cover_V2 = mkV2 (mkV "re - cover" "re - covers" "re - covered" "re - covered" "re - covering"); -- from DictEng -lin re_create_V2 = mkV2 (mkV "re - create"); -- from DictEng -lin re_echo_N = mkN "re - echo" "re - echoes"; -- from DictEng -lin re_echo_V = mkV "re - echo" "re - echos" "re - echoed" "re - echoed" "re - echoing"; -- from DictEng -lin re_elect_V2 = mkV2 (mkV "re - elect"); -- from DictEng -lin re_emerge_V = mkV "re - emerge"; -- from DictEng -lin re_emphasize_V2 = mkV2 (mkV "re - emphasize"); -- from DictEng -lin re_enter_V = mkV "re - enter"; -- from DictEng -lin re_enter_V2 = mkV2 (mkV "re - enter"); -- from DictEng -lin re_entry_N = mkN "re - entry" "re - entries"; -- from DictEng -lin re_establish_V2 = mkV2 (mkV "re - establish"); -- from DictEng -lin re_evaluate_V2 = mkV2 (mkV "re - evaluate"); -- from DictEng -lin re_examine_V2 = mkV2 (mkV "re - examine"); -- from DictEng -lin re_form_V = mkV "re - form" "re - forms" "re - formed" "re - formed" "re - forming"; -- from DictEng -lin re_form_V2 = mkV2 (mkV "re - form" "re - forms" "re - formed" "re - formed" "re - forming"); -- from DictEng -lin re_formation_N = mkN "re - formation" "re - formations"; -- from DictEng -lin re_join_V2 = mkV2 (mkV "re - join" "re - joins" "re - joined" "re - joined" "re - joining"); -- from DictEng -lin re_supply_V2 = mkV2 (mkV "re - supply"); -- from DictEng -lin reach_N = mkN "reach" "reaches"; -- from DictEng -lin reach_V = mkV "reach" "reaches" "reached" "reached" "reaching"; -- from DictEng -lin reach_V2 = mkV2 (mkV "reach" "reaches" "reached" "reached" "reaching"); -- from DictEng -lin reach_V2V = mkV2V (mkV "reach" "reaches" "reached" "reached" "reaching") noPrep to_Prep ; -- from DictEng -lin reach_VA = mkVA (mkV "reach" "reaches" "reached" "reached" "reaching"); -- from DictEng -lin react_V = mkV "react" "reacts" "reacted" "reacted" "reacting"; -- from DictEng -lin reactance_N = mkN "reactance" ; -lin reactant_N = mkN "reactant" ; -lin reaction_N = mkN "reaction" "reactions"; -- from DictEng -lin reactionary_A = mkA "reactionary" ; -lin reactionary_N = mkN "reactionary" "reactionaries"; -- from DictEng -lin reactionism_N = mkN "reactionism" ; -lin reactivate_V2 = mkV2 (mkV "reactivate"); -- from DictEng -lin reactive_A = mkA "reactive" ; -lin reactivity_N = mkN "reactivity" ; -lin reactor_N = mkN "reactor" "reactors"; -- from DictEng -lin read_N = mkN "read" "IRREG"; -- from DictEng -lin read_V = IrregEng.read_V; -- from DictEng -lin read_V2 = mkV2 (IrregEng.read_V); -- from DictEng -lin read_VA = mkVA (IrregEng.read_V); -- from DictEng -lin read_VS = mkVS (IrregEng.read_V); -- from DictEng -lin readability_N = mkN "readability" ; -- from DictEng -lin readable_A = compoundA (mkA "readable"); -- from DictEng -lin reader_N = mkN "reader" "readers"; -- from DictEng -lin readership_N = mkN "readership" "readerships"; -- from DictEng -lin readily_Adv = mkAdv "readily"; -- from DictEng -lin readiness_N = mkN "readiness" ; -- from DictEng -lin reading_N = mkN "reading" "readings"; -- from DictEng -lin reading_lamp_N = mkN "reading - lamp" "reading - lamps"; -- from DictEng -lin reading_room_N = mkN "reading - room" "reading - rooms"; -- from DictEng -lin readjust_V2 = mkV2 (mkV "readjust" "readjusts" "readjusted" "readjusted" "readjusting"); -- from DictEng -lin readjustment_N = mkN "readjustment" "readjustments"; -- from DictEng -lin readmission_N = mkN "readmission" "readmissions"; -- from DictEng -lin readmit_V2 = mkV2 (mkV "readmit" "readmits" "readmitted" "readmitted" "readmitting"); -- from DictEng -lin readout_N = mkN "readout" ; -lin ready_A = mkA "ready" "readier"; -- from DictEng -lin ready_N = mkN "ready" "readies"; -- from DictEng -lin ready_V2 = mkV2 (mkV "ready"); -- from DictEng -lin ready_cooked_A = compoundA (mkA "ready cooked") ; -lin ready_made_A = compoundA (mkA "ready - made"); -- from DictEng -lin ready_made_N = mkN "ready made" ; -lin ready_mix_N = mkN "ready mix" ; -lin ready_to_eat_A = compoundA (mkA "ready to eat") ; -lin ready_to_wear_N = mkN "ready to wear" ; -lin ready_made_A = compoundA (mkA "ready - made"); -- from DictEng -lin reaffiliation_N = mkN "reaffiliation" "reaffiliations"; -- from DictEng -lin reaffirm_V2 = mkV2 (mkV "reaffirm" "reaffirms" "reaffirmed" "reaffirmed" "reaffirming"); -- from DictEng -lin reagent_N = mkN "reagent" "reagents"; -- from DictEng -lin reagin_N = mkN "reagin" ; -lin real_A = compoundA (mkA "real"); -- from DictEng -lin real_N = mkN "real" "reals"; -- from DictEng -lin real_time_A = compoundA (mkA "real time") ; -lin real_mccoy_PN = mkPN "real McCoy" ; -lin realgar_N = mkN "realgar" ; -lin realign_V2 = mkV2 (mkV "realign"); -- from DictEng -lin realism_N = mkN "realism" ; -- from DictEng -lin realist_N = mkN "realist" "realists"; -- from DictEng -lin realistic_A = compoundA (mkA "realistic"); -- from DictEng -lin realistically_Adv = mkAdv "realistically"; -- from DictEng -lin reality_N = mkN "reality" "realities"; -- from DictEng -lin realizable_A = compoundA (mkA "realizable"); -- from DictEng -lin realization_N = mkN "realization" ; -- from DictEng -lin realize_V2 = mkV2 (mkV "realize" "realizes" "realized" "realized" "realizing"); -- from DictEng -lin realize_VS = mkVS (mkV "realize"); -- from DictEng -lin reallocation_N = mkN "reallocation" "reallocations"; -- from DictEng -lin reallotment_N = mkN "reallotment" ; -lin realm_N = mkN "realm" "realms"; -- from DictEng -lin realpolitik_N = mkN "realpolitik" ; -lin realtor_N = mkN "realtor" "realtors"; -- from DictEng -lin realty_N = mkN "realty" "realties"; -- from DictEng -lin ream_N = mkN "ream" "reams"; -- from DictEng -lin reamer_N = mkN "reamer" ; -lin reanimate_V2 = mkV2 (mkV "reanimate" "reanimates" "reanimated" "reanimated" "reanimating"); -- from DictEng -lin reanimated_A = mkA "reanimated" ; -lin reap_V = mkV "reap" "reaps" "reaped" "reaped" "reaping"; -- from DictEng -lin reap_V2 = mkV2 (mkV "reap" "reaps" "reaped" "reaped" "reaping"); -- from DictEng -lin reaper_N = mkN "reaper" "reapers"; -- from DictEng -lin reaping_hook_N = mkN "reaping - hook" "reaping - hooks"; -- from DictEng -lin reappear_V = mkV "reappear" "reappears" "reappeared" "reappeared" "reappearing"; -- from DictEng -lin reappearance_N = mkN "reappearance" "reappearances"; -- from DictEng -lin reappoint_V = mkV "reappoint"; -- from DictEng -lin reappoint_V2 = mkV2 (mkV "reappoint"); -- from DictEng -lin reappraisal_N = mkN "reappraisal" "reappraisals"; -- from DictEng -lin reappraise_V2 = mkV2 (mkV "reappraise"); -- from DictEng -lin rear_A = mkA "rear" ; -lin rear_N = mkN "rear" "rears"; -- from DictEng -lin rear_V = mkV "rear" "rears" "reared" "reared" "rearing"; -- from DictEng -lin rear_V2 = mkV2 (mkV "rear" "rears" "reared" "reared" "rearing"); -- from DictEng -lin rear_admiral_N = mkN "rear - admiral" "rear - admirals"; -- from DictEng -lin rearguard_N = mkN "rearguard" "rearguards"; -- from DictEng -lin rearm_V = mkV "rearm" "rearms" "rearmed" "rearmed" "rearming"; -- from DictEng -lin rearm_V2 = mkV2 (mkV "rearm" "rearms" "rearmed" "rearmed" "rearming"); -- from DictEng -lin rearmament_N = mkN "rearmament" "rearmaments"; -- from DictEng -lin rearmost_A = compoundA (mkA "rearmost"); -- from DictEng -lin rearrange_V2 = mkV2 (mkV "rearrange" "rearranges" "rearranged" "rearranged" "rearranging"); -- from DictEng -lin rearrangement_N = mkN "rearrangement" "rearrangements"; -- from DictEng -lin rearward_A = mkA "rearward" ; -lin rearward_N = mkN "rearward" "rearwards"; -- from DictEng -lin rearwards_Adv = mkAdv "rearwards"; -- from DictEng -lin reason_N = mkN "reason" "reasons"; -- from DictEng -lin reason_V = mkV "reason" "reasons" "reasoned" "reasoned" "reasoning"; -- from DictEng -lin reason_V2 = mkV2 (mkV "reason" "reasons" "reasoned" "reasoned" "reasoning"); -- from DictEng -lin reason_VS = mkVS (mkV "reason" "reasons" "reasoned" "reasoned" "reasoning"); -- from DictEng -lin reason_out_V2 = mkV2 (mkV "reason out") ; -lin reasonable_A = compoundA (mkA "reasonable"); -- from DictEng -lin reasonableness_N = mkN "reasonableness" ; -- from DictEng -lin reasonably_Adv = mkAdv "reasonably" ; -lin reasoned_A = mkA "reasoned" ; -lin reasoner_N = mkN "reasoner" ; -lin reasoning_N = mkN "reasoning" ; -- from DictEng -lin reasonless_A = compoundA (mkA "reasonless"); -- from DictEng -lin reassemble_V = mkV "reassemble" "reassembles" "reassembled" "reassembled" "reassembling"; -- from DictEng -lin reassemble_V2 = mkV2 (mkV "reassemble" "reassembles" "reassembled" "reassembled" "reassembling"); -- from DictEng -lin reassembly_N = mkN "reassembly" ; -lin reassert_V2 = mkV2 (mkV "reassert"); -- from DictEng -lin reassertion_N = mkN "reassertion" ; -lin reassess_V2 = mkV2 (mkV "reassess" "reassesses" "reassessed" "reassessed" "reassessing"); -- from DictEng -lin reassessment_N = mkN "reassessment" "reassessments"; -- from DictEng -lin reassign_V2 = mkV2 (mkV "reassign"); -- from DictEng -lin reassignment_N = mkN "reassignment" ; -lin reassume_V2 = mkV2 (mkV "reassume"); -- from DictEng -lin reassurance_N = mkN "reassurance" "reassurances"; -- from DictEng -lin reassure_V2 = mkV2 (mkV "reassure" "reassures" "reassured" "reassured" "reassuring"); -- from DictEng -lin reassure_VS = mkVS (mkV "reassure"); -- from DictEng -lin reassured_A = mkA "reassured" ; -lin reassuring_A = compoundA (mkA "reassuring"); -- from DictEng -lin reassuringly_Adv = mkAdv "reassuringly" ; -lin reattribute_V2 = mkV2 (mkV "reattribute" "reattributes" "reattributed" "reattributed" "reattributing"); -- from DictEng -lin rebarbative_A = compoundA (mkA "rebarbative"); -- from DictEng -lin rebate_N = mkN "rebate" "rebates"; -- from DictEng -lin rebel_N = mkN "rebel" "rebels"; -- from DictEng -lin rebel_V = mkV "rebel" "rebels" "rebelled" "rebelled" "rebelling"; -- from DictEng -lin rebellion_N = mkN "rebellion" "rebellions"; -- from DictEng -lin rebellious_A = compoundA (mkA "rebellious"); -- from DictEng -lin rebelliously_Adv = mkAdv "rebelliously" ; -lin rebelliousness_N = mkN "rebelliousness" ; -- from DictEng -lin rebind_V2 = mkV2 (mkV "re" IrregEng.bind_V); -- from DictEng -lin rebirth_N = mkN "rebirth" "rebirths"; -- from DictEng -lin reborn_A = compoundA (mkA "reborn"); -- from DictEng -lin rebound_N = mkN "rebound" "rebounds"; -- from DictEng -lin rebound_V = mkV "rebound" "rebounds" "rebounded" "rebounded" "rebounding"; -- from DictEng -lin rebound_V2 = mkV2 (mkV "rebound" "rebounds" "rebounded" "rebounded" "rebounding"); -- from DictEng -lin rebound_V2V = mkV2V (mkV "rebound" "rebounds" "rebounded" "rebounded" "rebounding") noPrep to_Prep ; -- from DictEng -lin reboxetine_N = mkN "reboxetine" ; -lin rebozo_N = mkN "rebozo" ; -lin rebroadcast_N = mkN "rebroadcast" ; -lin rebuff_N = mkN "rebuff" "rebuffs"; -- from DictEng -lin rebuff_V = mkV "rebuff"; -- from DictEng -lin rebuff_V2 = mkV2 (mkV "rebuff" "rebuffs" "rebuffed" "rebuffed" "rebuffing"); -- from DictEng -lin rebuild_V2 = mkV2 (mkV "re" IrregEng.build_V); -- from DictEng -lin rebuilding_N = mkN "rebuilding" ; -lin rebuke_N = mkN "rebuke" "rebukes"; -- from DictEng -lin rebuke_V2 = mkV2 (mkV "rebuke" "rebukes" "rebuked" "rebuked" "rebuking"); -- from DictEng -lin rebukingly_Adv = mkAdv "rebukingly"; -- from DictEng -lin reburying_N = mkN "reburying" ; -lin rebus_N = mkN "rebus" "rebuses"; -- from DictEng -lin rebut_V2 = mkV2 (mkV "rebut" "rebuts" "rebutted" "rebutted" "rebutting"); -- from DictEng -lin rebuttal_N = mkN "rebuttal" "rebuttals"; -- from DictEng -lin rebutter_N = mkN "rebutter" ; -lin recalcitrance_N = mkN "recalcitrance" ; -- from DictEng -lin recalcitrancy_N = mkN "recalcitrancy" ; -- from DictEng -lin recalcitrant_A = compoundA (mkA "recalcitrant"); -- from DictEng -lin recalculate_V2 = mkV2 (mkV "recalculate"); -- from DictEng -lin recalculation_N = mkN "recalculation" ; -lin recall_N = mkN "recall" "recalls"; -- from DictEng -lin recall_V2 = mkV2 (mkV "recall" "recalls" "recalled" "recalled" "recalling"); -- from DictEng -lin recall_VS = mkVS (mkV "recall"); -- from DictEng -lin recant_V = mkV "recant" "recants" "recanted" "recanted" "recanting"; -- from DictEng -lin recant_V2 = mkV2 (mkV "recant" "recants" "recanted" "recanted" "recanting"); -- from DictEng -lin recantation_N = mkN "recantation" "recantations"; -- from DictEng -lin recap_N = mkN "recap" "recaps"; -- from DictEng -lin recap_V = mkV "recap" "recaps" "recapped" "recapped" "recapping"; -- from DictEng -lin recap_V2 = mkV2 (mkV "recap" "recaps" "recapped" "recapped" "recapping"); -- from DictEng -lin recapitulate_V = mkV "recapitulate" "recapitulates" "recapitulated" "recapitulated" "recapitulating"; -- from DictEng -lin recapitulate_V2 = mkV2 (mkV "recapitulate" "recapitulates" "recapitulated" "recapitulated" "recapitulating"); -- from DictEng -lin recapitulation_N = mkN "recapitulation" "recapitulations"; -- from DictEng -lin recapture_N = mkN "recapture" ; -lin recapture_V2 = mkV2 (mkV "recapture" "recaptures" "recaptured" "recaptured" "recapturing"); -- from DictEng -lin recast_V2 = mkV2 (mkV "re" IrregEng.cast_V); -- from DictEng -lin recce_N = mkN "recce" "recces"; -- from DictEng -lin recede_V = mkV "recede" "recedes" "receded" "receded" "receding"; -- from DictEng -lin receding_A = mkA "receding" ; -lin receding_N = mkN "receding" ; -lin receipt_N = mkN "receipt" "receipts"; -- from DictEng -lin receipt_V2 = mkV2 (mkV "receipt" "receipts" "receipted" "receipted" "receipting"); -- from DictEng -lin receivable_A = compoundA (mkA "receivable"); -- from DictEng -lin receivables_N = mkN "receivables" ; -lin receive_V = mkV "receive" "receives" "received" "received" "receiving"; -- from DictEng -lin receive_V2 = mkV2 (mkV "receive" "receives" "received" "received" "receiving"); -- from DictEng -lin received_A = compoundA (mkA "received"); -- from DictEng -lin receiver_N = mkN "receiver" "receivers"; -- from DictEng -lin receivership_N = mkN "receivership" "receiverships"; -- from DictEng -lin receiving_set_N = mkN "receiving - set" "receiving - sets"; -- from DictEng -lin recency_N = mkN "recency" ; -lin recent_A = compoundA (mkA "recent"); -- from DictEng -lin recently_Adv = mkAdv "recently" ; -lin recentralize_V2 = mkV2 (mkV "recentralize"); -- from DictEng -lin receptacle_N = mkN "receptacle" "receptacles"; -- from DictEng -lin reception_N = mkN "reception" "receptions"; -- from DictEng -lin reception_desk_N = mkN "reception - desk" "reception - desks"; -- from DictEng -lin receptionist_N = mkN "receptionist" "receptionists"; -- from DictEng -lin receptive_A = compoundA (mkA "receptive"); -- from DictEng -lin receptively_Adv = mkAdv "receptively" ; -lin receptiveness_N = mkN "receptiveness" ; -- from DictEng -lin receptivity_N = mkN "receptivity" ; -- from DictEng -lin receptor_N = mkN "receptor" ; -lin recess_N = mkN "recess" "recesses"; -- from DictEng -lin recess_V2 = mkV2 (mkV "recess" "recesses" "recessed" "recessed" "recessing"); -- from DictEng -lin recessed_A = mkA "recessed" ; -lin recession_N = mkN "recession" "recessions"; -- from DictEng -lin recessional_A = compoundA (mkA "recessional"); -- from DictEng -lin recessional_N = mkN "recessional" "recessionals"; -- from DictEng -lin recessionary_A = mkA "recessionary" ; -lin recessive_A = compoundA (mkA "recessive"); -- from DictEng -lin recharge_V2 = mkV2 (mkV "recharge") ; -lin rechargeable_A = mkA "rechargeable" ; -lin rechauffe_N = mkN "réchauffé" "réchauffés"; -- from DictEng -lin recherche_A = compoundA (mkA "recherché"); -- from DictEng -lin recidivism_N = mkN "recidivism" ; -- from DictEng -lin recidivist_N = mkN "recidivist" "recidivists"; -- from DictEng -lin recipe_N = mkN "recipe" "recipes"; -- from DictEng -lin recipient_N = mkN "recipient" "recipients"; -- from DictEng -lin reciprocal_A = compoundA (mkA "reciprocal"); -- from DictEng -lin reciprocal_N = mkN "reciprocal" "reciprocals"; -- from DictEng -lin reciprocality_N = mkN "reciprocality" ; -lin reciprocate_V = mkV "reciprocate" "reciprocates" "reciprocated" "reciprocated" "reciprocating"; -- from DictEng -lin reciprocate_V2 = mkV2 (mkV "reciprocate" "reciprocates" "reciprocated" "reciprocated" "reciprocating"); -- from DictEng -lin reciprocation_N = mkN "reciprocation" ; -- from DictEng -lin reciprocative_A = mkA "reciprocative" ; -lin reciprocity_N = mkN "reciprocity" ; -- from DictEng -lin recirculation_N = mkN "recirculation" ; -lin recission_N = mkN "recission" ; -lin recital_N = mkN "recital" "recitals"; -- from DictEng -lin recitalist_N = mkN "recitalist" "recitalists"; -- from DictEng -lin recitation_N = mkN "recitation" "recitations"; -- from DictEng -lin recitative_N = mkN "recitative" "recitatives"; -- from DictEng -lin recite_V = mkV "recite" "recites" "recited" "recited" "reciting"; -- from DictEng -lin recite_V2 = mkV2 (mkV "recite" "recites" "recited" "recited" "reciting"); -- from DictEng -lin reciter_N = mkN "reciter" ; -lin reckless_A = compoundA (mkA "reckless"); -- from DictEng -lin recklessly_Adv = mkAdv "recklessly" ; -lin recklessness_N = mkN "recklessness" ; -- from DictEng -lin reckon_V = mkV "reckon" "reckons" "reckoned" "reckoned" "reckoning"; -- from DictEng -lin reckon_V2 = mkV2 (mkV "reckon" "reckons" "reckoned" "reckoned" "reckoning"); -- from DictEng -lin reckon_VS = mkVS (mkV "reckon" "reckons" "reckoned" "reckoned" "reckoning"); -- from DictEng -lin reckoner_N = mkN "reckoner" "reckoners"; -- from DictEng -lin reckoning_N = mkN "reckoning" "reckonings"; -- from DictEng -lin reclaim_V2 = mkV2 (mkV "reclaim" "reclaims" "reclaimed" "reclaimed" "reclaiming"); -- from DictEng -lin reclaimable_A = mkA "reclaimable" ; -lin reclamation_N = mkN "reclamation" ; -- from DictEng -lin reclassification_N = mkN "reclassification" ; -lin reclassify_V2 = mkV2 (mkV "reclassify"); -- from DictEng -lin recline_V = mkV "recline" "reclines" "reclined" "reclined" "reclining"; -- from DictEng -lin recline_V2 = mkV2 (mkV "recline" "reclines" "reclined" "reclined" "reclining"); -- from DictEng -lin recliner_N = mkN "recliner" ; -lin reclining_N = mkN "reclining" ; -lin recluse_A = mkA "recluse" ; -lin recluse_N = mkN "recluse" "recluses"; -- from DictEng -lin reclusiveness_N = mkN "reclusiveness" ; -lin recode_V2 = mkV2 (mkV "recode") ; -lin recoding_N = mkN "recoding" ; -lin recognition_N = mkN "recognition" ; -- from DictEng -lin recognizable_A = compoundA (mkA "recognizable"); -- from DictEng -lin recognizably_Adv = mkAdv "recognizably" ; -lin recognizance_N = mkN "recognizance" "recognizances"; -- from DictEng -lin recognize_V2 = mkV2 (mkV "recognize" "recognizes" "recognized" "recognized" "recognizing"); -- from DictEng -lin recognize_VS = mkVS (mkV "recognize"); -- from DictEng -lin recognized_A = mkA "recognized" ; -lin recoil_N = mkN "recoil" "recoils"; -- from DictEng -lin recoil_V = mkV "recoil" "recoils" "recoiled" "recoiled" "recoiling"; -- from DictEng -lin recoilless_A = mkA "recoilless" ; -lin recollect_V = mkV "recollect" "recollects" "recollected" "recollected" "recollecting"; -- from DictEng -lin recollect_V2 = mkV2 (mkV "recollect" "recollects" "recollected" "recollected" "recollecting"); -- from DictEng -lin recollection_N = mkN "recollection" "recollections"; -- from DictEng -lin recombinant_A = mkA "recombinant" ; -lin recombinant_N = mkN "recombinant" ; -lin recombination_N = mkN "recombination" ; -lin recommend_V2 = mkV2 (mkV "recommend" "recommends" "recommended" "recommended" "recommending"); -- from DictEng -lin recommend_VS = mkVS (mkV "recommend"); -- from DictEng -lin recommendation_N = mkN "recommendation" "recommendations"; -- from DictEng -lin recommit_V2 = mkV2 (mkV "recommit" "recommits" "recommitted" "recommitted" "recommitting"); -- from DictEng -lin recompense_N = mkN "recompense" "recompenses"; -- from DictEng -lin recompense_V2 = mkV2 (mkV "recompense" "recompenses" "recompensed" "recompensed" "recompensing"); -- from DictEng -lin reconcilable_A = compoundA (mkA "reconcilable"); -- from DictEng -lin reconcile_V2 = mkV2 (mkV "reconcile" "reconciles" "reconciled" "reconciled" "reconciling"); -- from DictEng -lin reconciled_A = mkA "reconciled" ; -lin reconciliation_N = mkN "reconciliation" "reconciliations"; -- from DictEng -lin recondite_A = compoundA (mkA "recondite"); -- from DictEng -lin reconditeness_N = mkN "reconditeness" ; -lin recondition_V2 = mkV2 (mkV "recondition" "reconditions" "reconditioned" "reconditioned" "reconditioning"); -- from DictEng -lin reconnaissance_N = mkN "reconnaissance" "reconnaissances"; -- from DictEng -lin reconnoitre_V = mkV "reconnoitre" "reconnoitres" "reconnoitred" "reconnoitred" "reconnoitring"; -- from DictEng -lin reconnoitre_V2 = mkV2 (mkV "reconnoitre" "reconnoitres" "reconnoitred" "reconnoitred" "reconnoitring"); -- from DictEng -lin reconsecrate_V2 = mkV2 (mkV "reconsecrate" "reconsecrates" "reconsecrated" "reconsecrated" "reconsecrating"); -- from DictEng -lin reconsider_V2 = mkV2 (mkV "reconsider" "reconsiders" "reconsidered" "reconsidered" "reconsidering"); -- from DictEng -lin reconsider_VS = mkVS (mkV "reconsider" "reconsiders" "reconsidered" "reconsidered" "reconsidering"); -- from DictEng -lin reconsideration_N = mkN "reconsideration" ; -lin reconstruct_V2 = mkV2 (mkV "reconstruct" "reconstructs" "reconstructed" "reconstructed" "reconstructing"); -- from DictEng -lin reconstructed_A = mkA "reconstructed" ; -lin reconstruction_N = mkN "reconstruction" "reconstructions"; -- from DictEng -lin reconstructive_A = mkA "reconstructive" ; -lin reconvict_V2 = mkV2 (mkV "reconvict" "reconvicts" "reconvicted" "reconvicted" "reconvicting"); -- from DictEng -lin record_N = mkN "record" "records"; -- from DictEng -lin record_V2 = mkV2 (mkV "record" "records" "recorded" "recorded" "recording"); -- from DictEng -lin record_breaker_N = mkN "record breaker" ; -lin record_breaking_A = compoundA (mkA "record - breaking"); -- from DictEng -lin record_breaking_A = compoundA (mkA "record - breaking"); -- from DictEng -lin record_player_N = mkN "record - player" "record - players"; -- from DictEng -lin recorded_A = mkA "recorded" ; -lin recorder_N = mkN "recorder" "recorders"; -- from DictEng -lin recording_N = mkN "recording" "recordings"; -- from DictEng -lin recount_N = mkN "recount" ; -lin recount_V2 = mkV2 (mkV "recount" "recounts" "recounted" "recounted" "recounting"); -- from DictEng -lin recount_VS = mkVS (mkV "recount"); -- from DictEng -lin recoup_V2 = mkV2 (mkV "recoup" "recoups" "recouped" "recouped" "recouping"); -- from DictEng -lin recourse_N = mkN "recourse" ; -- from DictEng -lin recover_V = mkV "recover" "recovers" "recovered" "recovered" "recovering"; -- from DictEng -lin recover_V2 = mkV2 (mkV "recover" "recovers" "recovered" "recovered" "recovering"); -- from DictEng -lin recover_V2V = mkV2V (mkV "recover" "recovers" "recovered" "recovered" "recovering") noPrep to_Prep ; -- from DictEng -lin recoverable_A = compoundA (mkA "recoverable"); -- from DictEng -lin recovered_A = mkA "recovered" ; -lin recovery_N = mkN "recovery" "recoveries"; -- from DictEng -lin recreant_A = compoundA (mkA "recreant"); -- from DictEng -lin recreant_N = mkN "recreant" "recreants"; -- from DictEng -lin recreate_V2 = mkV2 (mkV "recreate" "recreates" "recreated" "recreated" "recreating"); -- from DictEng -lin recreation_N = mkN "recreation" "recreations"; -- from DictEng -lin recreational_A = compoundA (mkA "recreational"); -- from DictEng -lin recriminate_V = mkV "recriminate" "recriminates" "recriminated" "recriminated" "recriminating"; -- from DictEng -lin recrimination_N = mkN "recrimination" "recriminations"; -- from DictEng -lin recriminative_A = mkA "recriminative" ; -lin recriminatory_A = compoundA (mkA "recriminatory"); -- from DictEng -lin recrudescence_N = mkN "recrudescence" "recrudescences"; -- from DictEng -lin recrudescent_A = mkA "recrudescent" ; -lin recruit_N = mkN "recruit" "recruits"; -- from DictEng -lin recruit_V = mkV "recruit" "recruits" "recruited" "recruited" "recruiting"; -- from DictEng -lin recruit_V2 = mkV2 (mkV "recruit" "recruits" "recruited" "recruited" "recruiting"); -- from DictEng -lin recruiter_N = mkN "recruiter" ; -lin recruiting_sergeant_N = mkN "recruiting sergeant" ; -lin recruitment_N = mkN "recruitment" "recruitments"; -- from DictEng -lin rectal_A = compoundA (mkA "rectal"); -- from DictEng -lin rectangle_N = mkN "rectangle" "rectangles"; -- from DictEng -lin rectangular_A = compoundA (mkA "rectangular"); -- from DictEng -lin rectangularity_N = mkN "rectangularity" ; -lin rectification_N = mkN "rectification" "rectifications"; -- from DictEng -lin rectified_A = mkA "rectified" ; -lin rectifier_N = mkN "rectifier" "rectifiers"; -- from DictEng -lin rectify_V2 = mkV2 (mkV "rectify" "rectifies" "rectified" "rectified" "rectifying"); -- from DictEng -lin rectilinear_A = compoundA (mkA "rectilinear"); -- from DictEng -lin rectitude_N = mkN "rectitude" ; -- from DictEng -lin recto_N = mkN "recto" "rectos"; -- from DictEng -lin rectocele_N = mkN "rectocele" ; -lin rector_N = mkN "rector" "rectors"; -- from DictEng -lin rectorship_N = mkN "rectorship" ; -lin rectory_N = mkN "rectory" "rectories"; -- from DictEng -lin rectosigmoid_A = mkA "rectosigmoid" ; -lin rectum_N = mkN "rectum" "rectums"; -- from DictEng -lin rectus_N = mkN "rectus" ; -lin recumbent_A = compoundA (mkA "recumbent"); -- from DictEng -lin recuperate_V = mkV "recuperate" "recuperates" "recuperated" "recuperated" "recuperating"; -- from DictEng -lin recuperate_V2 = mkV2 (mkV "recuperate" "recuperates" "recuperated" "recuperated" "recuperating"); -- from DictEng -lin recuperation_N = mkN "recuperation" "recuperations"; -- from DictEng -lin recuperative_A = compoundA (mkA "recuperative"); -- from DictEng -lin recur_V = mkV "recur" "recurs" "recurred" "recurred" "recurring"; -- from DictEng -lin recurrence_N = mkN "recurrence" "recurrences"; -- from DictEng -lin recurrent_A = compoundA (mkA "recurrent"); -- from DictEng -lin recurrently_Adv = mkAdv "recurrently" ; -lin recurring_A = mkA "recurring" ; -lin recursion_N = mkN "recursion" ; -lin recursive_A = mkA "recursive" ; -lin recurve_V = mkV "recurve" "recurves" "recurved" "recurved" "recurving"; -- from DictEng -lin recurve_V2 = mkV2 (mkV "recurve" "recurves" "recurved" "recurved" "recurving"); -- from DictEng -lin recurved_A = mkA "recurved" ; -lin recusancy_N = mkN "recusancy" ; -- from DictEng -lin recusant_A = compoundA (mkA "recusant"); -- from DictEng -lin recusant_N = mkN "recusant" "recusants"; -- from DictEng -lin recusation_N = mkN "recusation" ; -lin recycle_V2 = mkV2 (mkV "recycle" "recycles" "recycled" "recycled" "recycling"); -- from DictEng -lin recycling_N = mkN "recycling" ; -lin red_A = mkA "red" "redder*"; -- from DictEng -lin red_N = mkN "red" "reds"; -- from DictEng -lin red_brick_A = compoundA (mkA "red brick") ; -lin red_brown_A = compoundA (mkA "red brown") ; -lin red_coated_A = compoundA (mkA "red coated") ; -lin red_flowered_A = compoundA (mkA "red flowered") ; -lin red_fruited_A = compoundA (mkA "red fruited") ; -lin red_grey_A = compoundA (mkA "red grey") ; -lin red_handed_A = compoundA (mkA "red handed") ; -lin red_handed_Adv = mkAdv "red handed" ; -lin red_hot_A = compoundA (mkA "red - hot"); -- from DictEng -lin red_lavender_A = compoundA (mkA "red lavender") ; -lin red_letter_A = compoundA (mkA "red letter") ; -lin red_orange_A = compoundA (mkA "red orange") ; -lin red_purple_A = compoundA (mkA "red purple") ; -lin red_rimmed_A = compoundA (mkA "red - rimmed"); -- from DictEng -lin red_striped_A = compoundA (mkA "red striped") ; -lin red_violet_A = compoundA (mkA "red violet") ; -lin red_clintonia_PN = mkPN "red Clintonia" ; -lin red_carpet_A = compoundA (mkA "red carpet") ; -lin red_hot_A = compoundA (mkA "red - hot"); -- from DictEng -lin red_rimmed_A = compoundA (mkA "red - rimmed"); -- from DictEng -lin redact_N = mkN "redact" ; -lin redact_V2 = mkV2 (mkV "redact" "redacts" "redacted" "redacted" "redacting"); -- from DictEng -lin redaction_N = mkN "redaction" "redactions"; -- from DictEng -lin redberry_N = mkN "redberry" ; -lin redbone_N = mkN "redbone" ; -lin redbreast_N = mkN "redbreast" "redbreasts"; -- from DictEng -lin redbrick_A = compoundA (mkA "redbrick"); -- from DictEng -lin redbud_N = mkN "redbud" ; -lin redcap_N = mkN "redcap" "redcaps"; -- from DictEng -lin redcoat_N = mkN "redcoat" "redcoats"; -- from DictEng -lin redden_V = mkV "redden" "reddens" "reddened" "reddened" "reddening"; -- from DictEng -lin redden_V2 = mkV2 (mkV "redden" "reddens" "reddened" "reddened" "reddening"); -- from DictEng -lin reddish_A = compoundA (mkA "reddish"); -- from DictEng -lin reddish_pink_A = compoundA (mkA "reddish pink") ; -lin redecorate_V2 = mkV2 (mkV "redecorate" "redecorates" "redecorated" "redecorated" "redecorating"); -- from DictEng -lin rededication_N = mkN "rededication" ; -lin redeem_V2 = mkV2 (mkV "redeem" "redeems" "redeemed" "redeemed" "redeeming"); -- from DictEng -lin redeemable_A = compoundA (mkA "redeemable"); -- from DictEng -lin redeemer_N = mkN "redeemer" "redeemers"; -- from DictEng -lin redeeming_A = mkA "redeeming" ; -lin redefine_V2 = mkV2 (mkV "redefine" "redefines" "redefined" "redefined" "redefining"); -- from DictEng -lin redefinition_N = mkN "redefinition" ; -lin redemption_N = mkN "redemption" ; -- from DictEng -lin redemptive_A = compoundA (mkA "redemptive"); -- from DictEng -lin redeploy_V2 = mkV2 (mkV "redeploy" "redeploys" "redeployed" "redeployed" "redeploying"); -- from DictEng -lin redeployment_N = mkN "redeployment" "redeployments"; -- from DictEng -lin redeposition_N = mkN "redeposition" ; -lin redesign_V2 = mkV2 (mkV "redesign" "redesigns" "redesigned" "redesigned" "redesigning"); -- from DictEng -lin redetermination_N = mkN "redetermination" ; -lin redevelop_V2 = mkV2 (mkV "redevelop" "redevelops" "redeveloped" "redeveloped" "redeveloping"); -- from DictEng -lin redevelopment_N = mkN "redevelopment" "redevelopments"; -- from DictEng -lin redeye_N = mkN "redeye" ; -lin redfish_N = mkN "redfish" ; -lin redhead_N = mkN "redhead" "redheads"; -- from DictEng -lin redheaded_A = mkA "redheaded" ; -lin redhorse_N = mkN "redhorse" ; -lin rediffusion_N = mkN "rediffusion" ; -- from DictEng -lin rediscover_V2 = mkV2 (mkV "rediscover" "rediscovers" "rediscovered" "rediscovered" "rediscovering"); -- from DictEng -lin rediscovery_N = mkN "rediscovery" "rediscoveries"; -- from DictEng -lin redisposition_N = mkN "redisposition" "redispositions"; -- from DictEng -lin redistribute_V2 = mkV2 (mkV "redistribute" "redistributes" "redistributed" "redistributed" "redistributing"); -- from DictEng -lin redistributed_A = mkA "redistributed" ; -lin redistribution_N = mkN "redistribution" "redistributions"; -- from DictEng -lin redline_V2 = mkV2 (mkV "redline"); -- from DictEng -lin redly_Adv = mkAdv "redly" ; -lin redneck_N = mkN "redneck" ; -lin redness_N = mkN "redness" ; -- from DictEng -lin redo_V2 = mkV2 (mkV "re" IrregEng.do_V); -- from DictEng -lin redolence_N = mkN "redolence" ; -- from DictEng -lin redolent_A = compoundA (mkA "redolent"); -- from DictEng -lin redouble_V = mkV "redouble" "redoubles" "redoubled" "redoubled" "redoubling"; -- from DictEng -lin redouble_V2 = mkV2 (mkV "redouble" "redoubles" "redoubled" "redoubled" "redoubling"); -- from DictEng -lin redoubled_A = mkA "redoubled" ; -lin redoubt_N = mkN "redoubt" "redoubts"; -- from DictEng -lin redoubtable_A = compoundA (mkA "redoubtable"); -- from DictEng -lin redound_V = mkV "redound" "redounds" "redounded" "redounded" "redounding"; -- from DictEng -lin redpoll_N = mkN "redpoll" ; -lin redraft_N = mkN "redraft" ; -lin redraw_V2 = mkV2 (mkV "redraw"); -- from DictEng -lin redress_N = mkN "redress" ; -- from DictEng -lin redress_V2 = mkV2 (mkV "redress" "redresses" "redressed" "redressed" "redressing"); -- from DictEng -lin redshank_N = mkN "redshank" ; -lin redskin_N = mkN "redskin" "redskins"; -- from DictEng -lin redstart_N = mkN "redstart" ; -lin redtail_N = mkN "redtail" ; -lin reduce_V = mkV "reduce" "reduces" "reduced" "reduced" "reducing"; -- from DictEng -lin reduce_V2 = mkV2 (mkV "reduce" "reduces" "reduced" "reduced" "reducing"); -- from DictEng -lin reduced_A = mkA "reduced" ; -lin reducer_N = mkN "reducer" ; -lin reducible_A = compoundA (mkA "reducible"); -- from DictEng -lin reducing_N = mkN "reducing" ; -lin reductase_N = mkN "reductase" ; -lin reductio_ad_absurdum_N = mkN "reductio ad absurdum" "reductio ad absurda" {- FIXME: guessed plural form -}; -- from DictEng -lin reduction_N = mkN "reduction" "reductions"; -- from DictEng -lin reductionism_N = mkN "reductionism" ; -lin reductionist_A = mkA "reductionist" ; -lin reductive_A = mkA "reductive" ; -lin redundance_N = mkN "redundance" "redundances"; -- from DictEng -lin redundancy_N = mkN "redundancy" "redundancies"; -- from DictEng -lin redundant_A = compoundA (mkA "redundant"); -- from DictEng -lin reduplicate_V2 = mkV2 (mkV "reduplicate" "reduplicates" "reduplicated" "reduplicated" "reduplicating"); -- from DictEng -lin reduplication_N = mkN "reduplication" "reduplications"; -- from DictEng -lin redux_A = mkA "redux" ; -lin redwing_N = mkN "redwing" "redwings"; -- from DictEng -lin redwood_N = mkN "redwood" "redwoods"; -- from DictEng -lin reed_N = mkN "reed" "reeds"; -- from DictEng -lin reedy_A = mkA "reedy" "reedier"; -- from DictEng -lin reef_N = mkN "reef" "reefs"; -- from DictEng -lin reef_V2 = mkV2 (mkV "reef" "reefs" "reefed" "reefed" "reefing"); -- from DictEng -lin reef_knot_N = mkN "reef - knot" "reef - knots"; -- from DictEng -lin reefer_N = mkN "reefer" "reefers"; -- from DictEng -lin reefy_A = mkA "reefy" ; -lin reek_N = mkN "reek" ; -- from DictEng -lin reek_V = mkV "reek" "reeks" "reeked" "reeked" "reeking"; -- from DictEng -lin reeking_A = mkA "reeking" ; -lin reel_N = mkN "reel" "reels"; -- from DictEng -lin reel_V = mkV "reel" "reels" "reeled" "reeled" "reeling"; -- from DictEng -lin reel_V2 = mkV2 (mkV "reel" "reels" "reeled" "reeled" "reeling"); -- from DictEng -lin reelect_V2 = mkV2 (mkV "reelect") ; -lin reelection_N = mkN "reelection" ; -lin reeler_N = mkN "reeler" ; -lin reenactment_N = mkN "reenactment" ; -lin reenactor_N = mkN "reenactor" ; -lin reenlistment_N = mkN "reenlistment" ; -lin reentry_N = mkN "reentry" ; -lin reevaluation_N = mkN "reevaluation" ; -lin reeve_N = mkN "reeve" "reeves"; -- from DictEng -lin reexamine_V = mkV "reexamine"; -- from DictEng -lin ref_N = mkN "ref" ; -- from DictEng -lin reface_V2 = mkV2 (mkV "reface" "refaces" "refaced" "refaced" "refacing"); -- from DictEng -lin refashion_N = mkN "refashion" "refashions"; -- from DictEng -lin refashion_V2 = mkV2 (mkV "refashion" "refashions" "refashioned" "refashioned" "refashioning"); -- from DictEng -lin refection_N = mkN "refection" "refections"; -- from DictEng -lin refectory_N = mkN "refectory" "refectories"; -- from DictEng -lin refer_V = mkV "refer" "refers" "referred" "referred" "referring"; -- from DictEng -lin refer_V2 = mkV2 (mkV "refer" "refers" "referred" "referred" "referring"); -- from DictEng -lin referable_A = compoundA (mkA "referable"); -- from DictEng -lin referee_N = mkN "referee" "referees"; -- from DictEng -lin referee_V = mkV "referee" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin referee_V2 = mkV2 (mkV "referee" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin reference_N = mkN "reference" "references"; -- from DictEng -lin referenced_A = mkA "referenced" ; -lin referendum_N = mkN "referendum" "referendums"; -- from DictEng -lin referent_A = mkA "referent" ; -lin referent_N = mkN "referent" ; -lin referential_A = compoundA (mkA "referential"); -- from DictEng -lin referral_N = mkN "referral" ; -lin refill_N = mkN "refill" "refills"; -- from DictEng -lin refill_V2 = mkV2 (mkV "refill" "refills" "refilled" "refilled" "refilling"); -- from DictEng -lin refilling_N = mkN "refilling" ; -lin refinance_V = mkV "refinance"; -- from DictEng -lin refinance_V2 = mkV2 (mkV "refinance"); -- from DictEng -lin refine_V = mkV "refine" "refines" "refined" "refined" "refining"; -- from DictEng -lin refine_V2 = mkV2 (mkV "refine" "refines" "refined" "refined" "refining"); -- from DictEng -lin refined_A = mkA "refined" ; -lin refinement_N = mkN "refinement" "refinements"; -- from DictEng -lin refiner_N = mkN "refiner" "refiners"; -- from DictEng -lin refinery_N = mkN "refinery" "refineries"; -- from DictEng -lin refining_N = mkN "refining" ; -lin refinisher_N = mkN "refinisher" ; -lin refit_N = mkN "refit" "refits"; -- from DictEng -lin refit_V = mkV "refit" "refits" "refitted" "refitted" "refitting"; -- from DictEng -lin refit_V2 = mkV2 (mkV "refit" "refits" "refitted" "refitted" "refitting"); -- from DictEng -lin reflate_V2 = mkV2 (mkV "reflate" "reflates" "reflated" "reflated" "reflating"); -- from DictEng -lin reflation_N = mkN "reflation" ; -- from DictEng -lin reflect_V = mkV "reflect" "reflects" "reflected" "reflected" "reflecting"; -- from DictEng -lin reflect_V2 = mkV2 (mkV "reflect" "reflects" "reflected" "reflected" "reflecting"); -- from DictEng -lin reflected_A = mkA "reflected" ; -lin reflecting_A = mkA "reflecting" ; -lin reflection_N = mkN "reflection" "reflections"; -- from DictEng -lin reflective_A = compoundA (mkA "reflective"); -- from DictEng -lin reflectively_Adv = mkAdv "reflectively" ; -lin reflectiveness_N = mkN "reflectiveness" ; -lin reflectometer_N = mkN "reflectometer" ; -lin reflector_N = mkN "reflector" "reflectors"; -- from DictEng -lin reflex_A = compoundA (mkA "reflex"); -- from DictEng -lin reflex_N = mkN "reflex" "reflexes"; -- from DictEng -lin reflexed_A = mkA "reflexed" ; -lin reflexion_N = mkN "reflexion" "reflexions"; -- from DictEng -lin reflexive_A = compoundA (mkA "reflexive"); -- from DictEng -lin reflexive_N = mkN "reflexive" "reflexives"; -- from DictEng -lin reflexivity_N = mkN "reflexivity" ; -lin reflexly_Adv = mkAdv "reflexly" ; -lin reflexology_N = mkN "reflexology" ; -lin refloat_V = mkV "refloat" "refloats" "refloated" "refloated" "refloating"; -- from DictEng -lin refloat_V2 = mkV2 (mkV "refloat" "refloats" "refloated" "refloated" "refloating"); -- from DictEng -lin reflux_N = mkN "reflux" "refluxes"; -- from DictEng -lin refocus_V = mkV "refocus"; -- from DictEng -lin refocus_V2 = mkV2 (mkV "refocus"); -- from DictEng -lin refocus_V2V = mkV2V (mkV "refocus") noPrep to_Prep ; -- from DictEng -lin refocusing_N = mkN "refocusing" ; -lin reforest_V2 = mkV2 (mkV "reforest" "reforests" "reforested" "reforested" "reforesting"); -- from DictEng -lin reforestation_N = mkN "reforestation" "reforestations"; -- from DictEng -lin reform_N = mkN "reform" "reforms"; -- from DictEng -lin reform_V = mkV "reform" "reforms" "reformed" "reformed" "reforming"; -- from DictEng -lin reform_V2 = mkV2 (mkV "reform" "reforms" "reformed" "reformed" "reforming"); -- from DictEng -lin reformation_N = mkN "reformation" "reformations"; -- from DictEng -lin reformative_A = mkA "reformative" ; -lin reformatory_A = compoundA (mkA "reformatory"); -- from DictEng -lin reformatory_N = mkN "reformatory" "reformatories"; -- from DictEng -lin reformed_A = mkA "reformed" ; -lin reformer_N = mkN "reformer" "reformers"; -- from DictEng -lin reformism_N = mkN "reformism" ; -lin reformulate_V2 = mkV2 (mkV "reformulate"); -- from DictEng -lin refract_V2 = mkV2 (mkV "refract" "refracts" "refracted" "refracted" "refracting"); -- from DictEng -lin refraction_N = mkN "refraction" "refractions"; -- from DictEng -lin refractive_A = mkA "refractive" ; -lin refractivity_N = mkN "refractivity" ; -lin refractometer_N = mkN "refractometer" ; -lin refractoriness_N = mkN "refractoriness" ; -lin refractory_A = compoundA (mkA "refractory"); -- from DictEng -lin refractory_lined_A = compoundA (mkA "refractory lined") ; -lin refrain_N = mkN "refrain" "refrains"; -- from DictEng -lin refrain_V = mkV "refrain" "refrains" "refrained" "refrained" "refraining"; -- from DictEng -lin refresh_V2 = mkV2 (mkV "refresh" "refreshes" "refreshed" "refreshed" "refreshing"); -- from DictEng -lin refresher_N = mkN "refresher" "refreshers"; -- from DictEng -lin refreshing_A = compoundA (mkA "refreshing"); -- from DictEng -lin refreshingly_Adv = mkAdv "refreshingly" ; -lin refreshment_N = mkN "refreshment" "refreshments"; -- from DictEng -lin refrigerant_A = compoundA (mkA "refrigerant"); -- from DictEng -lin refrigerant_N = mkN "refrigerant" "refrigerants"; -- from DictEng -lin refrigerate_V2 = mkV2 (mkV "refrigerate" "refrigerates" "refrigerated" "refrigerated" "refrigerating"); -- from DictEng -lin refrigerated_A = mkA "refrigerated" ; -lin refrigeration_N = mkN "refrigeration" "refrigerations"; -- from DictEng -lin refrigerator_N = mkN "refrigerator" "refrigerators"; -- from DictEng -lin refuel_V = mkV "refuel" "refuels" "refuelled" "refuelled" "refuelling"; -- from DictEng -lin refuel_V2 = mkV2 (mkV "refuel" "refuels" "refuelled" "refuelled" "refuelling"); -- from DictEng -lin refuge_N = mkN "refuge" "refuges"; -- from DictEng -lin refugee_N = mkN "refugee" "refugees"; -- from DictEng -lin refulgence_N = mkN "refulgence" ; -- from DictEng -lin refulgent_A = compoundA (mkA "refulgent"); -- from DictEng -lin refund_N = mkN "refund" "refunds"; -- from DictEng -lin refund_V2 = mkV2 (mkV "refund" "refunds" "refunded" "refunded" "refunding"); -- from DictEng -lin refurbish_V2 = mkV2 (mkV "refurbish" "refurbishes" "refurbished" "refurbished" "refurbishing"); -- from DictEng -lin refurnish_V2 = mkV2 (mkV "refurnish" "refurnishes" "refurnished" "refurnished" "refurnishing"); -- from DictEng -lin refusal_N = mkN "refusal" "refusals"; -- from DictEng -lin refuse_N = mkN "refuse" ; -- from DictEng -lin refuse_V = mkV "refuse" "refuses" "refused" "refused" "refusing"; -- from DictEng -lin refuse_V2 = mkV2 (mkV "refuse" "refuses" "refused" "refused" "refusing"); -- from DictEng -lin refuse_VV = mkVV (mkV "refuse" "refuses" "refused" "refused" "refusing"); -- from DictEng -lin refuse_collector_N = mkN "refuse - collector" "refuse - collectors"; -- from DictEng -lin refutable_A = compoundA (mkA "refutable"); -- from DictEng -lin refutation_N = mkN "refutation" "refutations"; -- from DictEng -lin refute_V2 = mkV2 (mkV "refute" "refutes" "refuted" "refuted" "refuting"); -- from DictEng -lin regain_V2 = mkV2 (mkV "regain" "regains" "regained" "regained" "regaining"); -- from DictEng -lin regal_A = compoundA (mkA "regal"); -- from DictEng -lin regale_V2 = mkV2 (mkV "regale" "regales" "regaled" "regaled" "regaling"); -- from DictEng -lin regalia_N = mkN "regalia" ; -lin regally_Adv = mkAdv "regally" ; -lin regard_N = mkN "regard" "regards"; -- from DictEng -lin regard_V = mkV "regard"; -- from DictEng -lin regard_V2 = mkV2 (mkV "regard" "regards" "regarded" "regarded" "regarding"); -- from DictEng -lin regard_VS = mkVS (mkV "regard"); -- from DictEng -lin regardant_A = mkA "regardant" ; -lin regardful_A = compoundA (mkA "regardful"); -- from DictEng -lin regardless_A = compoundA (mkA "regardless"); -- from DictEng -lin regardless_Adv = mkAdv "regardless" ; -lin regatta_N = mkN "regatta" "regattas"; -- from DictEng -lin regency_N = mkN "regency" "regencies"; -- from DictEng -lin regenerate_A = compoundA (mkA "regenerate"); -- from DictEng -lin regenerate_V = mkV "regenerate" "regenerates" "regenerated" "regenerated" "regenerating"; -- from DictEng -lin regenerate_V2 = mkV2 (mkV "regenerate" "regenerates" "regenerated" "regenerated" "regenerating"); -- from DictEng -lin regenerating_A = mkA "regenerating" ; -lin regeneration_N = mkN "regeneration" ; -- from DictEng -lin regent_A = compoundA (mkA "regent"); -- from DictEng -lin regent_N = mkN "regent" "regents"; -- from DictEng -lin reggae_N = mkN "reggae" ; -- from DictEng -lin regicide_N = mkN "regicide" "regicides"; -- from DictEng -lin regime_1_N = mkN "regime" "regimes"; -- from DictEng -lin regime_2_N = mkN "régime" "régimes"; -- from DictEng -lin regimen_N = mkN "regimen" "regimens"; -- from DictEng -lin regiment_N = mkN "regiment" "regiments"; -- from DictEng -lin regiment_V2 = mkV2 (mkV "regiment" "regiments" "regimented" "regimented" "regimenting"); -- from DictEng -lin regimental_A = compoundA (mkA "regimental"); -- from DictEng -lin regimentally_Adv = mkAdv "regimentally" ; -lin regimentals_N = mkN "regimentals" ; -lin regimentation_N = mkN "regimentation" ; -- from DictEng -lin regimented_A = mkA "regimented" ; -lin region_N = mkN "region" "regions"; -- from DictEng -lin regional_A = compoundA (mkA "regional"); -- from DictEng -lin regionalism_N = mkN "regionalism" ; -lin regionally_Adv = mkAdv "regionally" ; -lin register_N = mkN "register" "registers"; -- from DictEng -lin register_V = mkV "register" "registers" "registered" "registered" "registering"; -- from DictEng -lin register_V2 = mkV2 (mkV "register" "registers" "registered" "registered" "registering"); -- from DictEng -lin registered_A = mkA "registered" ; -lin registrant_N = mkN "registrant" ; -lin registrar_N = mkN "registrar" "registrars"; -- from DictEng -lin registration_N = mkN "registration" "registrations"; -- from DictEng -lin registry_N = mkN "registry" "registries"; -- from DictEng -lin regnant_A = compoundA (mkA "regnant"); -- from DictEng -lin regnellidium_N = mkN "regnellidium" ; -lin regosol_N = mkN "regosol" ; -lin regress_N = mkN "regress" ; -lin regress_V = mkV "regress" "regresses" "regressed" "regressed" "regressing"; -- from DictEng -lin regression_N = mkN "regression" "regressions"; -- from DictEng -lin regressive_A = compoundA (mkA "regressive"); -- from DictEng -lin regret_N = mkN "regret" "regrets"; -- from DictEng -lin regret_V2 = mkV2 (mkV "regret" "regrets" "regretted" "regretted" "regretting"); -- from DictEng -lin regret_VS = mkVS (mkV "regret"); -- from DictEng -lin regretful_A = compoundA (mkA "regretful"); -- from DictEng -lin regretfully_Adv = mkAdv "regretfully" ; -lin regrettable_A = compoundA (mkA "regrettable"); -- from DictEng -lin regroup_V = mkV "regroup" "regroups" "regrouped" "regrouped" "regrouping"; -- from DictEng -lin regroup_V2 = mkV2 (mkV "regroup" "regroups" "regrouped" "regrouped" "regrouping"); -- from DictEng -lin regular_A = compoundA (mkA "regular"); -- from DictEng -lin regular_N = mkN "regular" "regulars"; -- from DictEng -lin regularity_N = mkN "regularity" "regularities"; -- from DictEng -lin regularization_N = mkN "regularization" "regularizations"; -- from DictEng -lin regularize_V2 = mkV2 (mkV "regularize" "regularizes" "regularized" "regularized" "regularizing"); -- from DictEng -lin regularly_Adv = mkAdv "regularly" ; -lin regulate_V2 = mkV2 (mkV "regulate" "regulates" "regulated" "regulated" "regulating"); -- from DictEng -lin regulated_A = mkA "regulated" ; -lin regulation_A = mkA "regulation" ; -lin regulation_N = mkN "regulation" "regulations"; -- from DictEng -lin regulative_A = mkA "regulative" ; -lin regulator_N = mkN "regulator" "regulators"; -- from DictEng -lin regum_V2 = mkV2 (mkV "regum"); -- from DictEng -lin regur_N = mkN "regur" ; -lin regurgitate_V = mkV "regurgitate" "regurgitates" "regurgitated" "regurgitated" "regurgitating"; -- from DictEng -lin regurgitate_V2 = mkV2 (mkV "regurgitate" "regurgitates" "regurgitated" "regurgitated" "regurgitating"); -- from DictEng -lin regurgitation_N = mkN "regurgitation" ; -lin rehabilitate_V2 = mkV2 (mkV "rehabilitate" "rehabilitates" "rehabilitated" "rehabilitated" "rehabilitating"); -- from DictEng -lin rehabilitation_N = mkN "rehabilitation" "rehabilitations"; -- from DictEng -lin rehabilitative_A = mkA "rehabilitative" ; -lin reharmonization_N = mkN "reharmonization" ; -lin rehash_N = mkN "rehash" "rehashes"; -- from DictEng -lin rehash_V2 = mkV2 (mkV "rehash" "rehashes" "rehashed" "rehashed" "rehashing"); -- from DictEng -lin rehear_V2 = mkV2 (mkV "re" IrregEng.hear_V); -- from DictEng -lin rehearing_N = mkN "rehearing" "rehearings"; -- from DictEng -lin rehearsal_N = mkN "rehearsal" "rehearsals"; -- from DictEng -lin rehearse_V = mkV "rehearse" "rehearses" "rehearsed" "rehearsed" "rehearsing"; -- from DictEng -lin rehearse_V2 = mkV2 (mkV "rehearse" "rehearses" "rehearsed" "rehearsed" "rehearsing"); -- from DictEng -lin rehouse_V2 = mkV2 (mkV "rehouse" "rehouses" "rehoused" "rehoused" "rehousing"); -- from DictEng -lin reich_N = mkN "reich" "reichs"; -- from DictEng -lin reign_N = mkN "reign" "reigns"; -- from DictEng -lin reign_V = mkV "reign" "reigns" "reigned" "reigned" "reigning"; -- from DictEng -lin reignite_V2 = mkV2 (mkV "reignite"); -- from DictEng -lin reimburse_V2 = mkV2 (mkV "reimburse" "reimburses" "reimbursed" "reimbursed" "reimbursing"); -- from DictEng -lin reimbursement_N = mkN "reimbursement" "reimbursements"; -- from DictEng -lin reimpose_V2 = mkV2 (mkV "reimpose"); -- from DictEng -lin reimposition_N = mkN "reimposition" "reimpositions"; -- from DictEng -lin rein_N = mkN "rein" "reins"; -- from DictEng -lin rein_V2 = mkV2 (mkV "rein" "reins" "reined" "reined" "reining"); -- from DictEng -lin reincarnate_A = compoundA (mkA "reincarnate"); -- from DictEng -lin reincarnate_V2 = mkV2 (mkV "reincarnate" "reincarnates" "reincarnated" "reincarnated" "reincarnating"); -- from DictEng -lin reincarnation_N = mkN "reincarnation" "reincarnations"; -- from DictEng -lin reincarnationism_N = mkN "reincarnationism" ; -lin reindeer_N = mkN "reindeer" "reindeer"; -- from DictEng -lin reindict_V2 = mkV2 (mkV "reindict"); -- from DictEng -lin reinforce_V2 = mkV2 (mkV "reinforce" "reinforces" "reinforced" "reinforced" "reinforcing"); -- from DictEng -lin reinforced_A = mkA "reinforced" ; -lin reinforcement_N = mkN "reinforcement" "reinforcements"; -- from DictEng -lin reinstall_V2 = mkV2 (mkV "reinstall"); -- from DictEng -lin reinstate_V2 = mkV2 (mkV "reinstate" "reinstates" "reinstated" "reinstated" "reinstating"); -- from DictEng -lin reinstatement_N = mkN "reinstatement" "reinstatements"; -- from DictEng -lin reinstitute_V2 = mkV2 (mkV "reinstitute"); -- from DictEng -lin reinsurance_N = mkN "reinsurance" "reinsurances"; -- from DictEng -lin reinsure_V2 = mkV2 (mkV "reinsure" "reinsures" "reinsured" "reinsured" "reinsuring"); -- from DictEng -lin reintegrate_V2 = mkV2 (mkV "reintegrate" "reintegrates" "reintegrated" "reintegrated" "reintegrating"); -- from DictEng -lin reinterpret_V2 = mkV2 (mkV "reinterpret" "reinterprets" "reinterpreted" "reinterpreted" "reinterpreting"); -- from DictEng -lin reinterpretation_N = mkN "reinterpretation" "reinterpretations"; -- from DictEng -lin reintroduce_V2 = mkV2 (mkV "reintroduce"); -- from DictEng -lin reintroduction_N = mkN "reintroduction" ; -lin reinvent_V2 = mkV2 (mkV "reinvent"); -- from DictEng -lin reinvest_V2 = mkV2 (mkV "reinvest"); -- from DictEng -lin reinvigorate_V2 = mkV2 (mkV "reinvigorate"); -- from DictEng -lin reissue_N = mkN "reissue" "reissues"; -- from DictEng -lin reissue_V2 = mkV2 (mkV "reissue" "reissues" "reissued" "reissued" "reissuing"); -- from DictEng -lin reiterate_V2 = mkV2 (mkV "reiterate" "reiterates" "reiterated" "reiterated" "reiterating"); -- from DictEng -lin reiterate_VS = mkVS (mkV "reiterate"); -- from DictEng -lin reiteration_N = mkN "reiteration" "reiterations"; -- from DictEng -lin reject_N = mkN "reject" "rejects"; -- from DictEng -lin reject_V2 = mkV2 (mkV "reject" "rejects" "rejected" "rejected" "rejecting"); -- from DictEng -lin rejection_N = mkN "rejection" "rejections"; -- from DictEng -lin rejective_A = mkA "rejective" ; -lin rejig_V2 = mkV2 (mkV "rejig" "rejigs" "rejigged" "rejigged" "rejigging"); -- from DictEng -lin rejoice_V = mkV "rejoice" "rejoices" "rejoiced" "rejoiced" "rejoicing"; -- from DictEng -lin rejoice_V2 = mkV2 (mkV "rejoice" "rejoices" "rejoiced" "rejoiced" "rejoicing"); -- from DictEng -lin rejoicing_N = mkN "rejoicing" ; -- from DictEng -lin rejoin_V = mkV "rejoin" "rejoins" "rejoined" "rejoined" "rejoining"; -- from DictEng -lin rejoin_V2 = mkV2 (mkV "rejoin" "rejoins" "rejoined" "rejoined" "rejoining"); -- from DictEng -lin rejoinder_N = mkN "rejoinder" "rejoinders"; -- from DictEng -lin rejuvenate_V = mkV "rejuvenate" "rejuvenates" "rejuvenated" "rejuvenated" "rejuvenating"; -- from DictEng -lin rejuvenate_V2 = mkV2 (mkV "rejuvenate" "rejuvenates" "rejuvenated" "rejuvenated" "rejuvenating"); -- from DictEng -lin rejuvenation_N = mkN "rejuvenation" "rejuvenations"; -- from DictEng -lin rekindle_V = mkV "rekindle" "rekindles" "rekindled" "rekindled" "rekindling"; -- from DictEng -lin rekindle_V2 = mkV2 (mkV "rekindle" "rekindles" "rekindled" "rekindled" "rekindling"); -- from DictEng -lin relapse_N = mkN "relapse" "relapses"; -- from DictEng -lin relapse_V = mkV "relapse" "relapses" "relapsed" "relapsed" "relapsing"; -- from DictEng -lin relate_V = mkV "relate" "relates" "related" "related" "relating"; -- from DictEng -lin relate_V2 = mkV2 (mkV "relate" "relates" "related" "related" "relating"); -- from DictEng -lin related_A = mkA "related" ; -lin relatedness_N = mkN "relatedness" ; -lin relation_N = mkN "relation" "relations"; -- from DictEng -lin relational_A = mkA "relational" ; -lin relations_N = mkN "relations" ; -lin relationship_N = mkN "relationship" "relationships"; -- from DictEng -lin relative_A = compoundA (mkA "relative"); -- from DictEng -lin relative_N = mkN "relative" "relatives"; -- from DictEng -lin relatively_Adv = mkAdv "relatively" ; -lin relativism_N = mkN "relativism" ; -lin relativistic_A = mkA "relativistic" ; -lin relativistically_Adv = mkAdv "relativistically" ; -lin relativity_N = mkN "relativity" ; -- from DictEng -lin relatum_N = mkN "relatum" ; -lin relax_V = mkV "relax" "relaxes" "relaxed" "relaxed" "relaxing"; -- from DictEng -lin relax_V2 = mkV2 (mkV "relax" "relaxes" "relaxed" "relaxed" "relaxing"); -- from DictEng -lin relaxant_A = mkA "relaxant" ; -lin relaxant_N = mkN "relaxant" ; -lin relaxation_N = mkN "relaxation" "relaxations"; -- from DictEng -lin relaxed_A = mkA "relaxed" ; -lin relaxer_N = mkN "relaxer" ; -lin relaxin_N = mkN "relaxin" ; -lin relay_N = mkN "relay" "relays"; -- from DictEng -lin relay_V2 = mkV2 (mkV "re" IrregEng.lay_V); -- from DictEng -lin release_N = mkN "release" "releases"; -- from DictEng -lin release_V2 = mkV2 (mkV "release" "releases" "released" "released" "releasing"); -- from DictEng -lin relegate_V2 = mkV2 (mkV "relegate" "relegates" "relegated" "relegated" "relegating"); -- from DictEng -lin relegation_N = mkN "relegation" ; -- from DictEng -lin relent_V = mkV "relent" "relents" "relented" "relented" "relenting"; -- from DictEng -lin relentless_A = compoundA (mkA "relentless"); -- from DictEng -lin relentlessly_Adv = mkAdv "relentlessly" ; -lin relentlessness_N = mkN "relentlessness" ; -lin relevance_N = mkN "relevance" "relevances"; -- from DictEng -lin relevancy_N = mkN "relevancy" ; -- from DictEng -lin relevant_A = compoundA (mkA "relevant"); -- from DictEng -lin relevantly_Adv = mkAdv "relevantly" ; -lin reliability_N = mkN "reliability" ; -- from DictEng -lin reliable_A = compoundA (mkA "reliable"); -- from DictEng -lin reliance_N = mkN "reliance" ; -- from DictEng -lin reliant_A = compoundA (mkA "reliant"); -- from DictEng -lin relic_N = mkN "relic" "relics"; -- from DictEng -lin relict_N = mkN "relict" "relicts"; -- from DictEng -lin relief_N = mkN "relief" "reliefs"; -- from DictEng -lin relieve_V2 = mkV2 (mkV "relieve" "relieves" "relieved" "relieved" "relieving"); -- from DictEng -lin reliever_N = mkN "reliever" ; -lin religion_N = mkN "religion" "religions"; -- from DictEng -lin religionism_N = mkN "religionism" ; -lin religionist_N = mkN "religionist" ; -lin religiosity_N = mkN "religiosity" ; -lin religious_A = compoundA (mkA "religious"); -- from DictEng -lin religious_N = mkN "religious" "religious"; -- from DictEng -lin religiously_Adv = mkAdv "religiously" ; -lin religiousness_N = mkN "religiousness" ; -lin reline_V2 = mkV2 (mkV "reline" "relines" "relined" "relined" "relining"); -- from DictEng -lin relinquish_V2 = mkV2 (mkV "relinquish" "relinquishes" "relinquished" "relinquished" "relinquishing"); -- from DictEng -lin relinquished_A = mkA "relinquished" ; -lin relinquishment_N = mkN "relinquishment" ; -lin reliquary_N = mkN "reliquary" "reliquaries"; -- from DictEng -lin relish_N = mkN "relish" "relishes"; -- from DictEng -lin relish_V2 = mkV2 (mkV "relish" "relishes" "relished" "relished" "relishing"); -- from DictEng -lin relish_VS = mkVS (mkV "relish"); -- from DictEng -lin relistening_N = mkN "relistening" ; -lin relive_V2 = mkV2 (mkV "relive" "relives" "relived" "relived" "reliving"); -- from DictEng -lin reliving_N = mkN "reliving" ; -lin relocate_V = mkV "relocate" "relocates" "relocated" "relocated" "relocating"; -- from DictEng -lin relocate_V2 = mkV2 (mkV "relocate" "relocates" "relocated" "relocated" "relocating"); -- from DictEng -lin relocated_A = mkA "relocated" ; -lin relocation_N = mkN "relocation" ; -- from DictEng -lin reluctance_N = mkN "reluctance" ; -- from DictEng -lin reluctant_A = compoundA (mkA "reluctant"); -- from DictEng -lin reluctantly_Adv = mkAdv "reluctantly" ; -lin reluctivity_N = mkN "reluctivity" ; -lin rely_V = mkV "rely" "relies" "relied" "relied" "relying"; -- from DictEng -lin remain_V = mkV "remain"; -- from DictEng -lin remain_V2 = mkV2 (mkV "remain"); -- from DictEng -lin remain_VA = mkVA (mkV "remain" "remains" "remained" "remained" "remaining"); -- from DictEng -lin remain_VS = mkVS (mkV "remain" "remains" "remained" "remained" "remaining"); -- from DictEng -lin remain_VV = mkVV (mkV "remain" "remains" "remained" "remained" "remaining"); -- from DictEng -lin remainder_N = mkN "remainder" "remainders"; -- from DictEng -lin remains_N = mkN "remains" ; -lin remake_N = mkN "remake" "remakes"; -- from DictEng -lin remake_V2 = mkV2 (mkV "re" IrregEng.make_V); -- from DictEng -lin remand_N = mkN "remand" ; -- from DictEng -lin remand_V2 = mkV2 (mkV "remand" "remands" "remanded" "remanded" "remanding"); -- from DictEng -lin remark_N = mkN "remark" "remarks"; -- from DictEng -lin remark_V = mkV "remark" "remarks" "remarked" "remarked" "remarking"; -- from DictEng -lin remark_V2 = mkV2 (mkV "remark" "remarks" "remarked" "remarked" "remarking"); -- from DictEng -lin remark_VS = mkVS (mkV "remark" "remarks" "remarked" "remarked" "remarking"); -- from DictEng -lin remarkable_A = compoundA (mkA "remarkable"); -- from DictEng -lin remarriage_N = mkN "remarriage" "remarriages"; -- from DictEng -lin remarry_V = mkV "remarry" "remarries" "remarried" "remarried" "remarrying"; -- from DictEng -lin remarry_V2 = mkV2 (mkV "remarry" "remarries" "remarried" "remarried" "remarrying"); -- from DictEng -lin remediable_A = compoundA (mkA "remediable"); -- from DictEng -lin remedial_A = compoundA (mkA "remedial"); -- from DictEng -lin remedy_N = mkN "remedy" "remedies"; -- from DictEng -lin remedy_V2 = mkV2 (mkV "remedy" "remedies" "remedied" "remedied" "remedying"); -- from DictEng -lin remember_V = mkV "remember" "remembers" "remembered" "remembered" "remembering"; -- from DictEng -lin remember_V2 = mkV2 (mkV "remember" "remembers" "remembered" "remembered" "remembering"); -- from DictEng -lin remember_VS = mkVS (mkV "remember" "remembers" "remembered" "remembered" "remembering"); -- from DictEng -lin remembrance_N = mkN "remembrance" "remembrances"; -- from DictEng -lin remilitarization_N = mkN "remilitarization" "remilitarizations"; -- from DictEng -lin remilitarize_V2 = mkV2 (mkV "remilitarize" "remilitarizes" "remilitarized" "remilitarized" "remilitarizing"); -- from DictEng -lin remind_V2 = mkV2 (mkV "remind" "reminds" "reminded" "reminded" "reminding"); -- from DictEng -lin reminder_N = mkN "reminder" "reminders"; -- from DictEng -lin reminisce_V = mkV "reminisce" "reminisces" "reminisced" "reminisced" "reminiscing"; -- from DictEng -lin reminiscence_N = mkN "reminiscence" "reminiscences"; -- from DictEng -lin reminiscent_A = compoundA (mkA "reminiscent"); -- from DictEng -lin reminiscently_Adv = mkAdv "reminiscently" ; -lin remise_N = mkN "remise" ; -lin remiss_A = compoundA (mkA "remiss"); -- from DictEng -lin remission_N = mkN "remission" "remissions"; -- from DictEng -lin remissness_N = mkN "remissness" ; -- from DictEng -lin remit_N = mkN "remit" ; -lin remit_V = mkV "remit" "remits" "remitted" "remitted" "remitting"; -- from DictEng -lin remit_V2 = mkV2 (mkV "remit" "remits" "remitted" "remitted" "remitting"); -- from DictEng -lin remittance_N = mkN "remittance" "remittances"; -- from DictEng -lin remittent_A = compoundA (mkA "remittent"); -- from DictEng -lin remnant_N = mkN "remnant" "remnants"; -- from DictEng -lin remodel_V = variants {mkV "remodel" "remodels" "remodeled" "remodeled" "remodeling"}; -- from DictEng -lin remodel_V2 = mkV2 (variants {mkV "remodel" "remodels" "remodeled" "remodeled" "remodeling"}); -- from DictEng -lin remonstrance_N = mkN "remonstrance" "remonstrances"; -- from DictEng -lin remonstrate_V = mkV "remonstrate" "remonstrates" "remonstrated" "remonstrated" "remonstrating"; -- from DictEng -lin remora_N = mkN "remora" ; -lin remorse_N = mkN "remorse" ; -- from DictEng -lin remorseful_A = compoundA (mkA "remorseful"); -- from DictEng -lin remorseless_A = compoundA (mkA "remorseless"); -- from DictEng -lin remote_A = mkA "remote" "remoter"; -- from DictEng -lin remotely_Adv = mkAdv "remotely" ; -lin remoteness_N = mkN "remoteness" ; -- from DictEng -lin remould_V2 = mkV2 (mkV "remould" "remoulds" "remoulded" "remoulded" "remoulding"); -- from DictEng -lin remount_N = mkN "remount" "remounts"; -- from DictEng -lin remount_V = mkV "remount" "remounts" "remounted" "remounted" "remounting"; -- from DictEng -lin remount_V2 = mkV2 (mkV "remount" "remounts" "remounted" "remounted" "remounting"); -- from DictEng -lin removable_A = compoundA (mkA "removable"); -- from DictEng -lin removal_N = mkN "removal" "removals"; -- from DictEng -lin remove_N = mkN "remove" "removes"; -- from DictEng -lin remove_V = mkV "remove" "removes" "removed" "removed" "removing"; -- from DictEng -lin remove_V2 = mkV2 (mkV "remove" "removes" "removed" "removed" "removing"); -- from DictEng -lin removed_A = compoundA (mkA "removed"); -- from DictEng -lin remover_N = mkN "remover" "removers"; -- from DictEng -lin remuda_N = mkN "remuda" ; -lin remunerate_V2 = mkV2 (mkV "remunerate" "remunerates" "remunerated" "remunerated" "remunerating"); -- from DictEng -lin remuneration_N = mkN "remuneration" ; -- from DictEng -lin remunerative_A = compoundA (mkA "remunerative"); -- from DictEng -lin renaissance_N = mkN "renaissance" "renaissances"; -- from DictEng -lin renal_A = compoundA (mkA "renal"); -- from DictEng -lin rename_V2 = mkV2 (mkV "rename" "renames" "renamed" "renamed" "renaming"); -- from DictEng -lin rename_VS = mkVS (mkV "rename"); -- from DictEng -lin renascence_N = mkN "renascence" "renascences"; -- from DictEng -lin renascent_A = compoundA (mkA "renascent"); -- from DictEng -lin rend_V2 = mkV2 (mkV "rend" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin render_N = mkN "render" ; -lin render_V2 = mkV2 (mkV "render" "renders" "rendered" "rendered" "rendering"); -- from DictEng -lin render_VS = mkVS (mkV "render"); -- from DictEng -lin rendering_N = mkN "rendering" "renderings"; -- from DictEng -lin rendezvous_N = mkN "rendezvous" "rendezvous"; -- from DictEng -lin rendezvous_V = mkV "rendezvous" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin rendezvouse_V = mkV "rendezvouse"; -- from DictEng -lin rending_A = mkA "rending" ; -lin rendition_N = mkN "rendition" "renditions"; -- from DictEng -lin renegade_N = mkN "renegade" "renegades"; -- from DictEng -lin renegade_V = mkV "renegade" "renegades" "renegaded" "renegaded" "renegading"; -- from DictEng -lin renege_V = mkV "renege" "reneges" "reneged" "reneged" "reneging"; -- from DictEng -lin renegotiate_V2 = mkV2 (mkV "renegotiate"); -- from DictEng -lin renegue_V = mkV "renegue" "renegues" "renegued" "renegued" "reneguing"; -- from DictEng -lin renew_V2 = mkV2 (mkV "renew" "renews" "renewed" "renewed" "renewing"); -- from DictEng -lin renewable_A = compoundA (mkA "renewable"); -- from DictEng -lin renewal_N = mkN "renewal" "renewals"; -- from DictEng -lin renewed_A = mkA "renewed" ; -lin renewing_A = mkA "renewing" ; -lin reniform_A = mkA "reniform" ; -lin renin_N = mkN "renin" ; -lin rennet_N = mkN "rennet" ; -- from DictEng -lin rennin_N = mkN "rennin" ; -lin renounce_V = mkV "renounce" ; -lin renounce_V2 = mkV2 (mkV "renounce" "renounces" "renounced" "renounced" "renouncing"); -- from DictEng -lin renovate_V2 = mkV2 (mkV "renovate" "renovates" "renovated" "renovated" "renovating"); -- from DictEng -lin renovation_N = mkN "renovation" "renovations"; -- from DictEng -lin renovator_N = mkN "renovator" "renovators"; -- from DictEng -lin renown_N = mkN "renown" ; -- from DictEng -lin renowned_A = compoundA (mkA "renowned"); -- from DictEng -lin rensselaerite_N = mkN "rensselaerite" ; -lin rent_N = mkN "rent" "rents"; -- from DictEng -lin rent_V = mkV "rent" "rents" "rented" "rented" "renting"; -- from DictEng -lin rent_V2 = mkV2 (mkV "rent" "rents" "rented" "rented" "renting"); -- from DictEng -lin rent_free_A = compoundA (mkA "rent - free"); -- from DictEng -lin rent_free_Adv = mkAdv "rent - free"; -- from DictEng -lin rent_rebate_N = mkN "rent - rebate" "rent - rebates"; -- from DictEng -lin rent_roll_N = mkN "rent - roll" "rent - rolls"; -- from DictEng -lin rent_collector_N = mkN "rent - collector" "rent - collectors"; -- from DictEng -lin rent_free_A = compoundA (mkA "rent - free"); -- from DictEng -lin rent_free_Adv = mkAdv "rent - free"; -- from DictEng -lin rent_rebate_N = mkN "rent - rebate" "rent - rebates"; -- from DictEng -lin rent_roll_N = mkN "rent - roll" "rent - rolls"; -- from DictEng -lin rentable_A = compoundA (mkA "rentable"); -- from DictEng -lin rental_A = mkA "rental" ; -lin rental_N = mkN "rental" "rentals"; -- from DictEng -lin renter_N = mkN "renter" ; -lin rentier_N = mkN "rentier" "rentiers"; -- from DictEng -lin renunciant_A = mkA "renunciant" ; -lin renunciation_N = mkN "renunciation" ; -- from DictEng -lin reoffer_V2 = mkV2 (mkV "reoffer"); -- from DictEng -lin reopen_V = mkV "reopen" "reopens" "reopened" "reopened" "reopening"; -- from DictEng -lin reopen_V2 = mkV2 (mkV "reopen" "reopens" "reopened" "reopened" "reopening"); -- from DictEng -lin reorder_N = mkN "reorder" ; -lin reordering_N = mkN "reordering" ; -lin reorganization_N = mkN "reorganization" "reorganizations"; -- from DictEng -lin reorganize_V = mkV "reorganize" "reorganizes" "reorganized" "reorganized" "reorganizing"; -- from DictEng -lin reorganize_V2 = mkV2 (mkV "reorganize" "reorganizes" "reorganized" "reorganized" "reorganizing"); -- from DictEng -lin reorganized_A = mkA "reorganized" ; -lin reorient_V = mkV "reorient" "reorients" "reoriented" "reoriented" "reorienting"; -- from DictEng -lin reorient_V2 = mkV2 (mkV "reorient" "reorients" "reoriented" "reoriented" "reorienting"); -- from DictEng -lin reorientate_V = mkV "reorientate" "reorientates" "reorientated" "reorientated" "reorientating"; -- from DictEng -lin reorientate_V2 = mkV2 (mkV "reorientate" "reorientates" "reorientated" "reorientated" "reorientating"); -- from DictEng -lin reorientation_N = mkN "reorientation" ; -- from DictEng -lin reovirus_N = mkN "reovirus" ; -lin rep_N = mkN "rep" "reps"; -- from DictEng -lin repackage_V2 = mkV2 (mkV "repackage"); -- from DictEng -lin repaint_V2 = mkV2 (mkV "repaint" "repaints" "repainted" "repainted" "repainting"); -- from DictEng -lin repair_N = mkN "repair" "repairs"; -- from DictEng -lin repair_V = mkV "repair" "repairs" "repaired" "repaired" "repairing"; -- from DictEng -lin repair_V2 = mkV2 (mkV "repair" "repairs" "repaired" "repaired" "repairing"); -- from DictEng -lin repairable_A = compoundA (mkA "repairable"); -- from DictEng -lin repairer_N = mkN "repairer" "repairers"; -- from DictEng -lin repairman_N = mkN "repairman" ; -lin repand_A = mkA "repand" ; -lin reparable_A = compoundA (mkA "reparable"); -- from DictEng -lin reparation_N = mkN "reparation" "reparations"; -- from DictEng -lin repartee_N = mkN "repartee" "repartees"; -- from DictEng -lin repass_V2 = mkV2 (mkV "repass"); -- from DictEng -lin repast_N = mkN "repast" "repasts"; -- from DictEng -lin repatriate_N = mkN "repatriate" "repatriates"; -- from DictEng -lin repatriate_V2 = mkV2 (mkV "repatriate" "repatriates" "repatriated" "repatriated" "repatriating"); -- from DictEng -lin repatriation_N = mkN "repatriation" "repatriations"; -- from DictEng -lin repay_V = mkV "re" IrregEng.pay_V; -- from DictEng -lin repay_V2 = mkV2 (mkV "re" IrregEng.pay_V); -- from DictEng -lin repayable_A = compoundA (mkA "repayable"); -- from DictEng -lin repayment_N = mkN "repayment" "repayments"; -- from DictEng -lin repeal_N = mkN "repeal" "repeals"; -- from DictEng -lin repeal_V2 = mkV2 (mkV "repeal" "repeals" "repealed" "repealed" "repealing"); -- from DictEng -lin repeat_N = mkN "repeat" "repeats"; -- from DictEng -lin repeat_V = mkV "repeat" "repeats" "repeated" "repeated" "repeating"; -- from DictEng -lin repeat_V2 = mkV2 (mkV "repeat" "repeats" "repeated" "repeated" "repeating"); -- from DictEng -lin repeat_VS = mkVS (mkV "repeat" "repeats" "repeated" "repeated" "repeating"); -- from DictEng -lin repeatable_A = compoundA (mkA "repeatable"); -- from DictEng -lin repeatedly_Adv = mkAdv "repeatedly" ; -lin repeater_N = mkN "repeater" "repeaters"; -- from DictEng -lin repechage_N = mkN "repechage" ; -lin repel_V2 = mkV2 (mkV "repel" "repels" "repelled" "repelled" "repelling"); -- from DictEng -lin repellent_A = compoundA (mkA "repellent"); -- from DictEng -lin repellent_N = mkN "repellent" ; -- from DictEng -lin repellently_Adv = mkAdv "repellently" ; -lin repent_V = mkV "repent" "repents" "repented" "repented" "repenting"; -- from DictEng -lin repent_V2 = mkV2 (mkV "repent" "repents" "repented" "repented" "repenting"); -- from DictEng -lin repentance_N = mkN "repentance" ; -- from DictEng -lin repentant_A = compoundA (mkA "repentant"); -- from DictEng -lin repercussion_N = mkN "repercussion" "repercussions"; -- from DictEng -lin repertoire_N = mkN "repertoire" "repertoires"; -- from DictEng -lin repertory_N = mkN "repertory" "repertories"; -- from DictEng -lin repetition_N = mkN "repetition" "repetitions"; -- from DictEng -lin repetitious_A = compoundA (mkA "repetitious"); -- from DictEng -lin repetitive_A = compoundA (mkA "repetitive"); -- from DictEng -lin repetitively_Adv = mkAdv "repetitively" ; -lin repetitiveness_N = mkN "repetitiveness" ; -lin repine_V = mkV "repine" "repines" "repined" "repined" "repining"; -- from DictEng -lin replace_V2 = mkV2 (mkV "replace" "replaces" "replaced" "replaced" "replacing"); -- from DictEng -lin replace_VV = ingVV (mkV "replace"); -- from DictEng -lin replaceability_N = mkN "replaceability" ; -lin replaceable_A = compoundA (mkA "replaceable"); -- from DictEng -lin replacement_N = mkN "replacement" "replacements"; -- from DictEng -lin replant_V2 = mkV2 (mkV "replant" "replants" "replanted" "replanted" "replanting"); -- from DictEng -lin replaster_V2 = mkV2 (mkV "replaster"); -- from DictEng -lin replay_N = mkN "replay" "replays"; -- from DictEng -lin replay_V2 = mkV2 (mkV "replay" "replays" "replayed" "replayed" "replaying"); -- from DictEng -lin replenish_V2 = mkV2 (mkV "replenish" "replenishes" "replenished" "replenished" "replenishing"); -- from DictEng -lin replenishment_N = mkN "replenishment" "replenishments"; -- from DictEng -lin replete_A = compoundA (mkA "replete"); -- from DictEng -lin repletion_N = mkN "repletion" ; -- from DictEng -lin replica_N = mkN "replica" "replicas"; -- from DictEng -lin replicate_V2 = mkV2 (mkV "replicate"); -- from DictEng -lin replication_N = mkN "replication" ; -lin reply_N = mkN "reply" "replies"; -- from DictEng -lin reply_V = mkV "reply" "replies" "replied" "replied" "replying"; -- from DictEng -lin reply_V2 = mkV2 (mkV "reply" "replies" "replied" "replied" "replying"); -- from DictEng -lin reply_VS = mkVS (mkV "reply" "replies" "replied" "replied" "replying"); -- from DictEng -lin reply_paid_A = compoundA (mkA "reply - paid"); -- from DictEng -lin reply_paid_A = compoundA (mkA "reply - paid"); -- from DictEng -lin repoint_V2 = mkV2 (mkV "repoint" "repoints" "repointed" "repointed" "repointing"); -- from DictEng -lin repond_V = mkV "repond"; -- from DictEng -lin report_N = mkN "report" "reports"; -- from DictEng -lin report_V = mkV "report" "reports" "reported" "reported" "reporting"; -- from DictEng -lin report_V2 = mkV2 (mkV "report" "reports" "reported" "reported" "reporting"); -- from DictEng -lin report_V2V = mkV2V (mkV "report" "reports" "reported" "reported" "reporting") noPrep to_Prep ; -- from DictEng -lin report_VS = mkVS (mkV "report" "reports" "reported" "reported" "reporting"); -- from DictEng -lin reportable_A = compoundA (mkA "reportable"); -- from DictEng -lin reportage_N = mkN "reportage" ; -- from DictEng -lin reported_A = mkA "reported" ; -lin reportedly_Adv = mkAdv "reportedly"; -- from DictEng -lin reporter_N = mkN "reporter" "reporters"; -- from DictEng -lin repose_N = mkN "repose" ; -- from DictEng -lin repose_V = mkV "repose" "reposes" "reposed" "reposed" "reposing"; -- from DictEng -lin repose_V2 = mkV2 (mkV "repose" "reposes" "reposed" "reposed" "reposing"); -- from DictEng -lin reposeful_A = compoundA (mkA "reposeful"); -- from DictEng -lin repositing_N = mkN "repositing" ; -lin reposition_V2 = mkV2 (mkV "reposition"); -- from DictEng -lin repositioning_N = mkN "repositioning" ; -lin repository_N = mkN "repository" "repositories"; -- from DictEng -lin repossess_V2 = mkV2 (mkV "repossess"); -- from DictEng -lin repossession_N = mkN "repossession" ; -lin repot_V2 = mkV2 (mkV "repot" "repots" "repotted" "repotted" "repotting"); -- from DictEng -lin repp_N = mkN "repp" ; -- from DictEng -lin reprehend_V2 = mkV2 (mkV "reprehend" "reprehends" "reprehended" "reprehended" "reprehending"); -- from DictEng -lin reprehensibility_N = mkN "reprehensibility" ; -lin reprehensible_A = compoundA (mkA "reprehensible"); -- from DictEng -lin reprehensibly_Adv = mkAdv "reprehensibly" ; -lin represent_V = mkV "represent"; -- from DictEng -lin represent_V2 = mkV2 (mkV "represent" "represents" "represented" "represented" "representing"); -- from DictEng -lin representable_A = mkA "representable" ; -lin representation_N = mkN "representation" "representations"; -- from DictEng -lin representational_A = mkA "representational" ; -lin representative_A = compoundA (mkA "representative"); -- from DictEng -lin representative_N = mkN "representative" "representatives"; -- from DictEng -lin repress_V2 = mkV2 (mkV "repress" "represses" "repressed" "repressed" "repressing"); -- from DictEng -lin repressed_A = compoundA (mkA "repressed"); -- from DictEng -lin repression_N = mkN "repression" "repressions"; -- from DictEng -lin repressive_A = compoundA (mkA "repressive"); -- from DictEng -lin repressor_N = mkN "repressor" ; -lin reprieve_N = mkN "reprieve" "reprieves"; -- from DictEng -lin reprieve_V2 = mkV2 (mkV "reprieve" "reprieves" "reprieved" "reprieved" "reprieving"); -- from DictEng -lin reprimand_N = mkN "reprimand" "reprimands"; -- from DictEng -lin reprimand_V2 = mkV2 (mkV "reprimand" "reprimands" "reprimanded" "reprimanded" "reprimanding"); -- from DictEng -lin reprint_N = mkN "reprint" "reprints"; -- from DictEng -lin reprint_V2 = mkV2 (mkV "reprint" "reprints" "reprinted" "reprinted" "reprinting"); -- from DictEng -lin reprisal_N = mkN "reprisal" "reprisals"; -- from DictEng -lin reproach_N = mkN "reproach" "reproaches"; -- from DictEng -lin reproach_V2 = mkV2 (mkV "reproach" "reproaches" "reproached" "reproached" "reproaching"); -- from DictEng -lin reproachful_A = compoundA (mkA "reproachful"); -- from DictEng -lin reprobate_N = mkN "reprobate" "reprobates"; -- from DictEng -lin reprobate_V2 = mkV2 (mkV "reprobate" "reprobates" "reprobated" "reprobated" "reprobating"); -- from DictEng -lin reprobation_N = mkN "reprobation" ; -- from DictEng -lin reproduce_V = mkV "reproduce" "reproduces" "reproduced" "reproduced" "reproducing"; -- from DictEng -lin reproduce_V2 = mkV2 (mkV "reproduce" "reproduces" "reproduced" "reproduced" "reproducing"); -- from DictEng -lin reproducer_N = mkN "reproducer" "reproducers"; -- from DictEng -lin reproducibility_N = mkN "reproducibility" ; -lin reproducible_A = compoundA (mkA "reproducible"); -- from DictEng -lin reproducibly_Adv = mkAdv "reproducibly" ; -lin reproduction_N = mkN "reproduction" "reproductions"; -- from DictEng -lin reproductive_A = compoundA (mkA "reproductive"); -- from DictEng -lin reproof_N = mkN "reproof" "reproofs"; -- from DictEng -lin reproof_V2 = mkV2 (mkV "reproof" "reproofs" "reproofed" "reproofed" "reproofing"); -- from DictEng -lin reprove_V2 = mkV2 (mkV "reprove" "reproves" "reproved" "reproved" "reproving"); -- from DictEng -lin reprovingly_Adv = mkAdv "reprovingly"; -- from DictEng -lin reps_N = mkN "reps" ; -- from DictEng -lin reptile_N = mkN "reptile" "reptiles"; -- from DictEng -lin reptilian_A = compoundA (mkA "reptilian"); -- from DictEng -lin reptilian_N = mkN "reptilian" "reptilians"; -- from DictEng -lin republic_N = mkN "republic" "republics"; -- from DictEng -lin republican_A = compoundA (mkA "republican"); -- from DictEng -lin republican_N = mkN "republican" "republicans"; -- from DictEng -lin republicanism_N = mkN "republicanism" ; -- from DictEng -lin republication_N = mkN "republication" ; -lin repudiate_V2 = mkV2 (mkV "repudiate" "repudiates" "repudiated" "repudiated" "repudiating"); -- from DictEng -lin repudiation_N = mkN "repudiation" "repudiations"; -- from DictEng -lin repudiative_A = mkA "repudiative" ; -lin repugnance_N = mkN "repugnance" ; -- from DictEng -lin repugnant_A = compoundA (mkA "repugnant"); -- from DictEng -lin repulse_N = mkN "repulse" "repulses"; -- from DictEng -lin repulse_V2 = mkV2 (mkV "repulse" "repulses" "repulsed" "repulsed" "repulsing"); -- from DictEng -lin repulsion_N = mkN "repulsion" ; -- from DictEng -lin repulsive_A = compoundA (mkA "repulsive"); -- from DictEng -lin repurchase_V2 = mkV2 (mkV "repurchase"); -- from DictEng -lin reputable_A = compoundA (mkA "reputable"); -- from DictEng -lin reputably_Adv = mkAdv "reputably" ; -lin reputation_N = mkN "reputation" "reputations"; -- from DictEng -lin repute_N = mkN "repute" ; -- from DictEng -lin repute_V2 = mkV2 (mkV "repute" "reputes" "reputed" "reputed" "reputing"); -- from DictEng -lin reputed_A = compoundA (mkA "reputed"); -- from DictEng -lin reputedly_Adv = mkAdv "reputedly" ; -lin request_N = mkN "request" "requests"; -- from DictEng -lin request_V2 = mkV2 (mkV "request" "requests" "requested" "requested" "requesting"); -- from DictEng -lin request_VS = mkVS (mkV "request"); -- from DictEng -lin requested_A = mkA "requested" ; -lin requiem_N = mkN "requiem" "requiems"; -- from DictEng -lin requiescat_N = mkN "requiescat" ; -lin require_V = mkV "require"; -- from DictEng -lin require_V2 = mkV2 (mkV "require"); -- from DictEng -lin require_V2V = mkV2V (mkV "require") noPrep to_Prep; -- from DictEng -lin require_VS = mkVS (mkV "require"); -- from DictEng -lin require_VV = mkVV (mkV "require"); -- from DictEng -lin requirement_N = mkN "requirement" "requirements"; -- from DictEng -lin requisite_A = compoundA (mkA "requisite"); -- from DictEng -lin requisite_N = mkN "requisite" "requisites"; -- from DictEng -lin requisiteness_N = mkN "requisiteness" ; -lin requisition_N = mkN "requisition" "requisitions"; -- from DictEng -lin requisition_V2 = mkV2 (mkV "requisition" "requisitions" "requisitioned" "requisitioned" "requisitioning"); -- from DictEng -lin requital_N = mkN "requital" ; -- from DictEng -lin requite_V2 = mkV2 (mkV "requite" "requites" "requited" "requited" "requiting"); -- from DictEng -lin reread_V2 = mkV2 (mkV "re" IrregEng.read_V); -- from DictEng -lin rerebrace_N = mkN "rerebrace" ; -lin reredos_N = mkN "reredos" "reredoses"; -- from DictEng -lin reroute_V2 = mkV2 (mkV "reroute"); -- from DictEng -lin rerun_N = mkN "rerun" "reruns"; -- from DictEng -lin rerun_V2 = mkV2 (mkV "re" IrregEng.run_V); -- from DictEng -lin res_N = mkN "res" ; -- from DictEng -lin resale_N = mkN "resale" ; -lin reschedule_V2 = mkV2 (mkV "reschedule"); -- from DictEng -lin rescind_V2 = mkV2 (mkV "rescind" "rescinds" "rescinded" "rescinded" "rescinding"); -- from DictEng -lin rescindable_A = mkA "rescindable" ; -lin rescript_N = mkN "rescript" "rescripts"; -- from DictEng -lin rescue_N = mkN "rescue" "rescues"; -- from DictEng -lin rescue_V2 = mkV2 (mkV "rescue" "rescues" "rescued" "rescued" "rescuing"); -- from DictEng -lin rescued_A = mkA "rescued" ; -lin rescuer_N = mkN "rescuer" "rescuers"; -- from DictEng -lin research_N = mkN "research" "researches"; -- from DictEng -lin research_V = mkV "research" "researches" "researched" "researched" "researching"; -- from DictEng -lin research_V2 = mkV2 (mkV "research" "researches" "researched" "researched" "researching"); -- from DictEng -lin researcher_N = mkN "researcher" "researchers"; -- from DictEng -lin reseat_V2 = mkV2 (mkV "reseat" "reseats" "reseated" "reseated" "reseating"); -- from DictEng -lin reseau_N = mkN "reseau" ; -lin resection_N = mkN "resection" ; -lin reseda_N = mkN "reseda" ; -lin reseed_V2 = mkV2 (mkV "reseed" "reseeds" "reseeded" "reseeded" "reseeding"); -- from DictEng -lin resell_V2 = mkV2 (mkV "re" IrregEng.sell_V); -- from DictEng -lin resemblance_N = mkN "resemblance" "resemblances"; -- from DictEng -lin resemble_V2 = mkV2 (mkV "resemble" "resembles" "resembled" "resembled" "resembling"); -- from DictEng -lin resent_V2 = mkV2 (mkV "resent" "resents" "resented" "resented" "resenting"); -- from DictEng -lin resent_VS = mkVS (mkV "resent" "resents" "resented" "resented" "resenting"); -- from DictEng -lin resentful_A = compoundA (mkA "resentful"); -- from DictEng -lin resentfully_Adv = mkAdv "resentfully" ; -lin resentment_N = mkN "resentment" ; -- from DictEng -lin reserpine_N = mkN "reserpine" ; -lin reservation_N = mkN "reservation" "reservations"; -- from DictEng -lin reserve_N = mkN "reserve" "reserves"; -- from DictEng -lin reserve_V = mkV "reserve"; -- from DictEng -lin reserve_V2 = mkV2 (mkV "reserve" "reserves" "reserved" "reserved" "reserving"); -- from DictEng -lin reserved_A = compoundA (mkA "reserved"); -- from DictEng -lin reservedly_Adv = mkAdv "reservedly" ; -lin reservist_N = mkN "reservist" "reservists"; -- from DictEng -lin reservoir_N = mkN "reservoir" "reservoirs"; -- from DictEng -lin reset_N = mkN "reset" ; -lin reset_V = mkV "reset"; -- from DictEng -lin reset_V2 = mkV2 (mkV "re" IrregEng.set_V); -- from DictEng -lin resettle_V = mkV "resettle" "resettles" "resettled" "resettled" "resettling"; -- from DictEng -lin resettle_V2 = mkV2 (mkV "resettle" "resettles" "resettled" "resettled" "resettling"); -- from DictEng -lin resettlement_N = mkN "resettlement" "resettlements"; -- from DictEng -lin resh_N = mkN "resh" ; -lin reshape_V2 = mkV2 (mkV "reshape" "reshapes" "reshaped" "reshaped" "reshaping"); -- from DictEng -lin reshipment_N = mkN "reshipment" ; -lin reshuffle_N = mkN "reshuffle" "reshuffles"; -- from DictEng -lin reshuffle_V2 = mkV2 (mkV "reshuffle" "reshuffles" "reshuffled" "reshuffled" "reshuffling"); -- from DictEng -lin reside_V = mkV "reside" "resides" "resided" "resided" "residing"; -- from DictEng -lin residence_N = mkN "residence" "residences"; -- from DictEng -lin residency_N = mkN "residency" "residencies"; -- from DictEng -lin resident_A = compoundA (mkA "resident"); -- from DictEng -lin resident_N = mkN "resident" "residents"; -- from DictEng -lin residential_A = compoundA (mkA "residential"); -- from DictEng -lin residentially_Adv = mkAdv "residentially" ; -lin residual_A = compoundA (mkA "residual"); -- from DictEng -lin residual_N = mkN "residual" ; -lin residuary_A = compoundA (mkA "residuary"); -- from DictEng -lin residue_N = mkN "residue" "residues"; -- from DictEng -lin resign_V = mkV "resign" "resigns" "resigned" "resigned" "resigning"; -- from DictEng -lin resign_V2 = mkV2 (mkV "resign" "resigns" "resigned" "resigned" "resigning"); -- from DictEng -lin resign_V2V = mkV2V (mkV "resign" "resigns" "resigned" "resigned" "resigning") noPrep to_Prep ; -- from DictEng -lin resign_VS = mkVS (mkV "resign" "resigns" "resigned" "resigned" "resigning"); -- from DictEng -lin resign_VV = mkVV (mkV "resign" "resigns" "resigned" "resigned" "resigning") ; -- from DictEng -lin resignation_N = mkN "resignation" "resignations"; -- from DictEng -lin resigned_A = compoundA (mkA "resigned"); -- from DictEng -lin resignedly_Adv = mkAdv "resignedly" ; -lin resilience_N = mkN "resilience" ; -- from DictEng -lin resiliency_N = mkN "resiliency" ; -- from DictEng -lin resilient_A = compoundA (mkA "resilient"); -- from DictEng -lin resin_N = mkN "resin" "resins"; -- from DictEng -lin resinated_A = compoundA (mkA "resinated"); -- from DictEng -lin resinlike_A = mkA "resinlike" ; -lin resinoid_N = mkN "resinoid" ; -lin resinous_A = compoundA (mkA "resinous"); -- from DictEng -lin resist_V = mkV "resist" "resists" "resisted" "resisted" "resisting"; -- from DictEng -lin resist_V2 = mkV2 (mkV "resist" "resists" "resisted" "resisted" "resisting"); -- from DictEng -lin resist_VS = mkVS (mkV "resist" "resists" "resisted" "resisted" "resisting"); -- from DictEng -lin resistance_N = mkN "resistance" "resistances"; -- from DictEng -lin resistant_A = compoundA (mkA "resistant"); -- from DictEng -lin resister_N = mkN "resister" "resisters"; -- from DictEng -lin resistible_A = mkA "resistible" ; -lin resistive_A = compoundA (mkA "resistive"); -- from DictEng -lin resistivity_N = mkN "resistivity" ; -- from DictEng -lin resistless_A = compoundA (mkA "resistless"); -- from DictEng -lin resistor_N = mkN "resistor" "resistors"; -- from DictEng -lin resold_V2 = mkV2 (mkV "resold"); -- from DictEng -lin resole_V2 = mkV2 (mkV "resole" "resoles" "resoled" "resoled" "resoling"); -- from DictEng -lin resolute_A = compoundA (mkA "resolute"); -- from DictEng -lin resolutely_Adv = mkAdv "resolutely" ; -lin resoluteness_N = mkN "resoluteness" ; -- from DictEng -lin resolution_N = mkN "resolution" "resolutions"; -- from DictEng -lin resolvable_A = compoundA (mkA "resolvable"); -- from DictEng -lin resolve_N = mkN "resolve" "resolves"; -- from DictEng -lin resolve_V = mkV "resolve" "resolves" "resolved" "resolved" "resolving"; -- from DictEng -lin resolve_V2 = mkV2 (mkV "resolve" "resolves" "resolved" "resolved" "resolving"); -- from DictEng -lin resonance_N = mkN "resonance" ; -- from DictEng -lin resonant_A = compoundA (mkA "resonant"); -- from DictEng -lin resonate_V = mkV "resonate" "resonates" "resonated" "resonated" "resonating"; -- from DictEng -lin resonate_V2 = mkV2 (mkV "resonate" "resonates" "resonated" "resonated" "resonating"); -- from DictEng -lin resonator_N = mkN "resonator" "resonators"; -- from DictEng -lin resorcinol_N = mkN "resorcinol" ; -lin resorption_N = mkN "resorption" ; -lin resort_N = mkN "resort" "resorts"; -- from DictEng -lin resort_V = mkV "resort" "resorts" "resorted" "resorted" "resorting"; -- from DictEng -lin resound_V = mkV "resound" "resounds" "resounded" "resounded" "resounding"; -- from DictEng -lin resound_V2 = mkV2 (mkV "resound" "resounds" "resounded" "resounded" "resounding"); -- from DictEng -lin resoundingly_Adv = mkAdv "resoundingly"; -- from DictEng -lin resource_N = mkN "resource" "resources"; -- from DictEng -lin resourceful_A = compoundA (mkA "resourceful"); -- from DictEng -lin resourcefully_Adv = mkAdv "resourcefully" ; -lin resourcefulness_N = mkN "resourcefulness" ; -lin resourceless_A = compoundA (mkA "resourceless"); -- from DictEng -lin respect_N = mkN "respect" "respects"; -- from DictEng -lin respect_V2 = mkV2 (mkV "respect" "respects" "respected" "respected" "respecting"); -- from DictEng -lin respectability_N = mkN "respectability" "respectabilities"; -- from DictEng -lin respectable_A = compoundA (mkA "respectable"); -- from DictEng -lin respectably_Adv = mkAdv "respectably" ; -lin respected_A = mkA "respected" ; -lin respecter_N = mkN "respecter" "respecters"; -- from DictEng -lin respectful_A = compoundA (mkA "respectful"); -- from DictEng -lin respectfully_Adv = mkAdv "respectfully" ; -lin respective_A = compoundA (mkA "respective"); -- from DictEng -lin respectively_Adv = mkAdv "respectively" ; -lin respects_N = mkN "respects" ; -lin respiration_N = mkN "respiration" "respirations"; -- from DictEng -lin respirator_N = mkN "respirator" "respirators"; -- from DictEng -lin respiratory_A = compoundA (mkA "respiratory"); -- from DictEng -lin respire_V = mkV "respire" "respires" "respired" "respired" "respiring"; -- from DictEng -lin respite_N = mkN "respite" "respites"; -- from DictEng -lin respite_V2 = mkV2 (mkV "respite" "respites" "respited" "respited" "respiting"); -- from DictEng -lin resplendence_N = mkN "resplendence" ; -- from DictEng -lin resplendency_N = mkN "resplendency" ; -- from DictEng -lin resplendent_A = compoundA (mkA "resplendent"); -- from DictEng -lin respond_V = mkV "respond" "responds" "responded" "responded" "responding"; -- from DictEng -lin respond_V2 = mkV2 (mkV "respond" "responds" "responded" "responded" "responding"); -- from DictEng -lin respond_VS = mkVS (mkV "respond" "responds" "responded" "responded" "responding"); -- from DictEng -lin respondent_N = mkN "respondent" "respondents"; -- from DictEng -lin response_N = mkN "response" "responses"; -- from DictEng -lin responsibility_N = mkN "responsibility" "responsibilities"; -- from DictEng -lin responsible_A = compoundA (mkA "responsible"); -- from DictEng -lin responsibly_Adv = mkAdv "responsibly" ; -lin responsive_A = compoundA (mkA "responsive"); -- from DictEng -lin responsiveness_N = mkN "responsiveness" ; -- from DictEng -lin rest_N = mkN "rest" "rests"; -- from DictEng -lin rest_V = mkV "rest" "rests" "rested" "rested" "resting"; -- from DictEng -lin rest_V2 = mkV2 (mkV "rest" "rests" "rested" "rested" "resting"); -- from DictEng -lin rest_VS = mkVS (mkV "rest" "rests" "rested" "rested" "resting"); -- from DictEng -lin rest_cure_N = mkN "rest - cure" "rest - cures"; -- from DictEng -lin rest_cure_N = mkN "rest - cure" "rest - cures"; -- from DictEng -lin rest_day_N = mkN "rest - day" "rest - days"; -- from DictEng -lin rest_home_N = mkN "rest - home" "rest - homes"; -- from DictEng -lin rest_house_N = mkN "rest - house" "rest - houses"; -- from DictEng -lin restart_V = mkV "restart" "restarts" "restarted" "restarted" "restarting"; -- from DictEng -lin restart_V2 = mkV2 (mkV "restart" "restarts" "restarted" "restarted" "restarting"); -- from DictEng -lin restate_V2 = mkV2 (mkV "restate" "restates" "restated" "restated" "restating"); -- from DictEng -lin restate_V2V = mkV2V (mkV "restate") noPrep to_Prep ; -- from DictEng -lin restatement_N = mkN "restatement" "restatements"; -- from DictEng -lin restaurant_N = mkN "restaurant" "restaurants"; -- from DictEng -lin restauranteur_N = mkN "restauranteur" "restauranteurs"; -- from DictEng -lin restaurateur_N = mkN "restaurateur" "restaurateurs"; -- from DictEng -lin rested_A = mkA "rested" ; -lin rester_N = mkN "rester" ; -lin restful_A = compoundA (mkA "restful"); -- from DictEng -lin restfully_Adv = mkAdv "restfully" ; -lin restfulness_N = mkN "restfulness" ; -- from DictEng -lin restharrow_N = mkN "restharrow" ; -lin restitution_N = mkN "restitution" ; -- from DictEng -lin restive_A = compoundA (mkA "restive"); -- from DictEng -lin restively_Adv = mkAdv "restively" ; -lin restiveness_N = mkN "restiveness" ; -- from DictEng -lin restless_A = compoundA (mkA "restless"); -- from DictEng -lin restlessly_Adv = mkAdv "restlessly" ; -lin restlessness_N = mkN "restlessness" ; -- from DictEng -lin restock_V2 = mkV2 (mkV "restock" "restocks" "restocked" "restocked" "restocking"); -- from DictEng -lin restoration_N = mkN "restoration" "restorations"; -- from DictEng -lin restorative_A = compoundA (mkA "restorative"); -- from DictEng -lin restorative_N = mkN "restorative" "restoratives"; -- from DictEng -lin restore_V2 = mkV2 (mkV "restore" "restores" "restored" "restored" "restoring"); -- from DictEng -lin restorer_N = mkN "restorer" "restorers"; -- from DictEng -lin restrain_V2 = mkV2 (mkV "restrain" "restrains" "restrained" "restrained" "restraining"); -- from DictEng -lin restrained_A = compoundA (mkA "restrained"); -- from DictEng -lin restrainer_N = mkN "restrainer" ; -lin restraint_N = mkN "restraint" "restraints"; -- from DictEng -lin restrict_V = mkV "restrict"; -- from DictEng -lin restrict_V2 = mkV2 (mkV "restrict" "restricts" "restricted" "restricted" "restricting"); -- from DictEng -lin restricted_A = mkA "restricted" ; -lin restriction_N = mkN "restriction" "restrictions"; -- from DictEng -lin restrictive_A = compoundA (mkA "restrictive"); -- from DictEng -lin restrictively_Adv = mkAdv "restrictively" ; -lin restrictiveness_N = mkN "restrictiveness" ; -- from DictEng -lin restructure_V = mkV "restructure"; -- from DictEng -lin restructure_V2 = mkV2 (mkV "restructure" "restructures" "restructured" "restructured" "restructuring"); -- from DictEng -lin restructure_V2V = mkV2V (mkV "restructure") noPrep to_Prep ; -- from DictEng -lin result_N = mkN "result" "results"; -- from DictEng -lin result_V = mkV "result" "results" "resulted" "resulted" "resulting"; -- from DictEng -lin resultant_A = compoundA (mkA "resultant"); -- from DictEng -lin resultant_N = mkN "resultant" ; -lin resume_N = mkN "résumé" "résumés"; -- from DictEng -lin resume_V = mkV "resume"; -- from DictEng -lin resume_V2 = mkV2 (mkV "resume" "resumes" "resumed" "resumed" "resuming"); -- from DictEng -lin resume_VS = mkVS (mkV "resume"); -- from DictEng -lin resumption_N = mkN "resumption" "resumptions"; -- from DictEng -lin resurface_V = mkV "resurface" "resurfaces" "resurfaced" "resurfaced" "resurfacing"; -- from DictEng -lin resurface_V2 = mkV2 (mkV "resurface" "resurfaces" "resurfaced" "resurfaced" "resurfacing"); -- from DictEng -lin resurgence_N = mkN "resurgence" "resurgences"; -- from DictEng -lin resurgent_A = compoundA (mkA "resurgent"); -- from DictEng -lin resurrect_V = mkV "resurrect" "resurrects" "resurrected" "resurrected" "resurrecting"; -- from DictEng -lin resurrect_V2 = mkV2 (mkV "resurrect" "resurrects" "resurrected" "resurrected" "resurrecting"); -- from DictEng -lin resurrection_N = mkN "resurrection" ; -- from DictEng -lin resurvey_N = mkN "resurvey" ; -lin resuscitate_V = mkV "resuscitate" "resuscitates" "resuscitated" "resuscitated" "resuscitating"; -- from DictEng -lin resuscitate_V2 = mkV2 (mkV "resuscitate" "resuscitates" "resuscitated" "resuscitated" "resuscitating"); -- from DictEng -lin resuscitated_A = mkA "resuscitated" ; -lin resuscitation_N = mkN "resuscitation" "resuscitations"; -- from DictEng -lin resuscitator_N = mkN "resuscitator" ; -lin resuspension_N = mkN "resuspension" ; -lin ret_V2 = mkV2 (mkV "ret" "rets" "retted" "retted" "retting"); -- from DictEng -lin retail_Adv = mkAdv "retail"; -- from DictEng -lin retail_N = mkN "retail" "retails"; -- from DictEng -lin retail_V = mkV "retail" "retails" "retailed" "retailed" "retailing"; -- from DictEng -lin retail_V2 = mkV2 (mkV "retail" "retails" "retailed" "retailed" "retailing"); -- from DictEng -lin retailer_N = mkN "retailer" "retailers"; -- from DictEng -lin retailing_N = mkN "retailing" ; -lin retain_V2 = mkV2 (mkV "retain" "retains" "retained" "retained" "retaining"); -- from DictEng -lin retain_V2V = mkV2V (mkV "retain") noPrep to_Prep ; -- from DictEng -lin retained_A = mkA "retained" ; -lin retainer_N = mkN "retainer" "retainers"; -- from DictEng -lin retake_N = mkN "retake" "retakes"; -- from DictEng -lin retake_V2 = mkV2 (mkV "re" IrregEng.take_V); -- from DictEng -lin retaliate_V = mkV "retaliate" "retaliates" "retaliated" "retaliated" "retaliating"; -- from DictEng -lin retaliation_N = mkN "retaliation" ; -- from DictEng -lin retaliative_A = compoundA (mkA "retaliative"); -- from DictEng -lin retaliatory_A = compoundA (mkA "retaliatory"); -- from DictEng -lin retard_V2 = mkV2 (mkV "retard" "retards" "retarded" "retarded" "retarding"); -- from DictEng -lin retardant_N = mkN "retardant" ; -lin retardation_N = mkN "retardation" "retardations"; -- from DictEng -lin retarded_A = mkA "retarded" ; -lin retch_V = mkV "retch" "retches" "retched" "retched" "retching"; -- from DictEng -lin retell_V2 = mkV2 (mkV "re" IrregEng.tell_V); -- from DictEng -lin retem_N = mkN "retem" ; -lin retention_N = mkN "retention" ; -- from DictEng -lin retentive_A = compoundA (mkA "retentive"); -- from DictEng -lin retentively_Adv = mkAdv "retentively" ; -lin retentiveness_N = mkN "retentiveness" ; -- from DictEng -lin rethink_N = mkN "rethink" "rethinks"; -- from DictEng -lin rethink_V = mkV "re" IrregEng.think_V; -- from DictEng -lin rethink_V2 = mkV2 (mkV "re" IrregEng.think_V); -- from DictEng -lin reticence_N = mkN "reticence" "reticences"; -- from DictEng -lin reticent_A = compoundA (mkA "reticent"); -- from DictEng -lin reticently_Adv = mkAdv "reticently" ; -lin reticle_N = mkN "reticle" ; -lin reticulate_A = compoundA (mkA "reticulate"); -- from DictEng -lin reticulate_V = mkV "reticulate" "reticulates" "reticulated" "reticulated" "reticulating"; -- from DictEng -lin reticulate_V2 = mkV2 (mkV "reticulate" "reticulates" "reticulated" "reticulated" "reticulating"); -- from DictEng -lin reticulation_N = mkN "reticulation" "reticulations"; -- from DictEng -lin reticule_N = mkN "reticule" "reticules"; -- from DictEng -lin reticulocyte_N = mkN "reticulocyte" ; -lin reticulum_N = mkN "reticulum" ; -lin retina_N = mkN "retina" "retinas"; -- from DictEng -lin retinal_A = compoundA (mkA "retinal"); -- from DictEng -lin retinene_N = mkN "retinene" ; -lin retinitis_N = mkN "retinitis" ; -lin retinoblastoma_N = mkN "retinoblastoma" ; -lin retinopathy_N = mkN "retinopathy" ; -lin retinue_N = mkN "retinue" "retinues"; -- from DictEng -lin retire_N = mkN "retire" "IRREG"; -- from DictEng -lin retire_V = mkV "retire" "retires" "retired" "retired" "retiring"; -- from DictEng -lin retire_V2 = mkV2 (mkV "retire" "retires" "retired" "retired" "retiring"); -- from DictEng -lin retired_A = compoundA (mkA "retired"); -- from DictEng -lin retiree_N = mkN "retiree" ; -lin retirement_N = mkN "retirement" "retirements"; -- from DictEng -lin retiring_A = compoundA (mkA "retiring"); -- from DictEng -lin retool_V2 = mkV2 (mkV "retool" "retools" "retooled" "retooled" "retooling"); -- from DictEng -lin retort_N = mkN "retort" "retorts"; -- from DictEng -lin retort_V = mkV "retort" "retorts" "retorted" "retorted" "retorting"; -- from DictEng -lin retort_V2 = mkV2 (mkV "retort" "retorts" "retorted" "retorted" "retorting"); -- from DictEng -lin retouch_V2 = mkV2 (mkV "retouch" "retouches" "retouched" "retouched" "retouching"); -- from DictEng -lin retrace_V2 = mkV2 (mkV "retrace" "retraces" "retraced" "retraced" "retracing"); -- from DictEng -lin retract_V = mkV "retract" "retracts" "retracted" "retracted" "retracting"; -- from DictEng -lin retract_V2 = mkV2 (mkV "retract" "retracts" "retracted" "retracted" "retracting"); -- from DictEng -lin retractable_A = compoundA (mkA "retractable"); -- from DictEng -lin retracted_A = mkA "retracted" ; -lin retractile_A = compoundA (mkA "retractile"); -- from DictEng -lin retraction_N = mkN "retraction" "retractions"; -- from DictEng -lin retractor_N = mkN "retractor" ; -lin retraining_N = mkN "retraining" ; -lin retral_A = mkA "retral" ; -lin retransmit_V2 = mkV2 (mkV "retransmit" "retransmits" "retransmitted" "retransmitted" "retransmitting"); -- from DictEng -lin retread_N = mkN "retread" "retreads"; -- from DictEng -lin retread_V2 = mkV2 (mkV "retread" "retreads" "retreaded" "retreaded" "retreading"); -- from DictEng -lin retreat_N = mkN "retreat" "retreats"; -- from DictEng -lin retreat_V = mkV "retreat" "retreats" "retreated" "retreated" "retreating"; -- from DictEng -lin retreat_V2 = mkV2 (mkV "retreat" "retreats" "retreated" "retreated" "retreating"); -- from DictEng -lin retreatant_N = mkN "retreatant" ; -lin retreated_N = mkN "retreated" ; -lin retrench_V = mkV "retrench" "retrenches" "retrenched" "retrenched" "retrenching"; -- from DictEng -lin retrench_V2 = mkV2 (mkV "retrench" "retrenches" "retrenched" "retrenched" "retrenching"); -- from DictEng -lin retrenchment_N = mkN "retrenchment" "retrenchments"; -- from DictEng -lin retrial_N = mkN "retrial" "retrials"; -- from DictEng -lin retribution_N = mkN "retribution" ; -- from DictEng -lin retributive_A = compoundA (mkA "retributive"); -- from DictEng -lin retrievable_A = compoundA (mkA "retrievable"); -- from DictEng -lin retrieval_N = mkN "retrieval" ; -- from DictEng -lin retrieve_V = mkV "retrieve" "retrieves" "retrieved" "retrieved" "retrieving"; -- from DictEng -lin retrieve_V2 = mkV2 (mkV "retrieve" "retrieves" "retrieved" "retrieved" "retrieving"); -- from DictEng -lin retriever_N = mkN "retriever" "retrievers"; -- from DictEng -lin retro_N = mkN "retro" ; -lin retroactive_A = compoundA (mkA "retroactive"); -- from DictEng -lin retroactively_Adv = mkAdv "retroactively" ; -lin retrofit_N = mkN "retrofit" ; -lin retrofit_V2 = mkV2 (mkV "retrofit"); -- from DictEng -lin retroflection_N = mkN "retroflection" ; -lin retroflex_A = mkA "retroflex" ; -lin retrograde_A = compoundA (mkA "retrograde"); -- from DictEng -lin retrograde_V = mkV "retrograde" "retrogrades" "retrograded" "retrograded" "retrograding"; -- from DictEng -lin retrogress_V = mkV "retrogress" "retrogresses" "retrogressed" "retrogressed" "retrogressing"; -- from DictEng -lin retrogression_N = mkN "retrogression" "retrogressions"; -- from DictEng -lin retrogressive_A = compoundA (mkA "retrogressive"); -- from DictEng -lin retronym_N = mkN "retronym" ; -lin retrorocket_N = mkN "retrorocket" "retrorockets"; -- from DictEng -lin retrorse_A = mkA "retrorse" ; -lin retrospect_N = mkN "retrospect" ; -- from DictEng -lin retrospection_N = mkN "retrospection" "retrospections"; -- from DictEng -lin retrospective_A = compoundA (mkA "retrospective"); -- from DictEng -lin retrospective_N = mkN "retrospective" ; -lin retrospectively_Adv = mkAdv "retrospectively" ; -lin retrousse_A = compoundA (mkA "retroussé"); -- from DictEng -lin retroversion_N = mkN "retroversion" "retroversions"; -- from DictEng -lin retrovirus_N = mkN "retrovirus" ; -lin retrovision_N = mkN "retrovision" ; -lin retsina_N = mkN "retsina" ; -- from DictEng -lin return_N = mkN "return" "returns"; -- from DictEng -lin return_V = mkV "return" "returns" "returned" "returned" "returning"; -- from DictEng -lin return_V2 = mkV2 (mkV "return" "returns" "returned" "returned" "returning"); -- from DictEng -lin return_V2V = mkV2V (mkV "return" "returns" "returned" "returned" "returning") noPrep to_Prep ; -- from DictEng -lin returnable_A = compoundA (mkA "returnable"); -- from DictEng -lin returning_A = mkA "returning" ; -lin reunification_N = mkN "reunification" ; -- from DictEng -lin reunion_N = mkN "reunion" "reunions"; -- from DictEng -lin reunite_V = mkV "reunite" "reunites" "reunited" "reunited" "reuniting"; -- from DictEng -lin reunite_V2 = mkV2 (mkV "reunite" "reunites" "reunited" "reunited" "reuniting"); -- from DictEng -lin reuptake_N = mkN "reuptake" ; -lin rev_N = mkN "rev" "revs"; -- from DictEng -lin rev_V = mkV "rev" "revs" "revved" "revved" "revving"; -- from DictEng -lin rev_V2 = mkV2 (mkV "rev" "revs" "revved" "revved" "revving"); -- from DictEng -lin revaluation_N = mkN "revaluation" "revaluations"; -- from DictEng -lin revalue_V2 = mkV2 (mkV "revalue" "revalues" "revalued" "revalued" "revaluing"); -- from DictEng -lin revamp_V2 = mkV2 (mkV "revamp" "revamps" "revamped" "revamped" "revamping"); -- from DictEng -lin reveal_V2 = mkV2 (mkV "reveal" "reveals" "revealed" "revealed" "revealing"); -- from DictEng -lin reveal_VS = mkVS (mkV "reveal"); -- from DictEng -lin revealing_A = mkA "revealing" ; -lin reveille_N = mkN "reveille" "reveilles"; -- from DictEng -lin revel_N = mkN "revel" "revels"; -- from DictEng -lin revel_V = mkV "revel" "revels" "reveled" "reveled" "reveling"; -- from DictEng -lin revelation_N = mkN "revelation" "revelations"; -- from DictEng -lin reveler_N = mkN "reveler" ; -lin reveller_N = mkN "reveller" "revellers"; -- from DictEng -lin revelry_N = mkN "revelry" "revelries"; -- from DictEng -lin revenant_A = mkA "revenant" ; -lin revenant_N = mkN "revenant" ; -lin revenge_N = mkN "revenge" ; -- from DictEng -lin revenge_V2 = mkV2 (mkV "revenge" "revenges" "revenged" "revenged" "revenging"); -- from DictEng -lin revengeful_A = compoundA (mkA "revengeful"); -- from DictEng -lin revengefully_Adv = mkAdv "revengefully" ; -lin revenue_N = mkN "revenue" "revenues"; -- from DictEng -lin revenuer_N = mkN "revenuer" ; -lin reverberant_A = compoundA (mkA "reverberant"); -- from DictEng -lin reverberate_V = mkV "reverberate" "reverberates" "reverberated" "reverberated" "reverberating"; -- from DictEng -lin reverberate_V2 = mkV2 (mkV "reverberate" "reverberates" "reverberated" "reverberated" "reverberating"); -- from DictEng -lin reverberation_N = mkN "reverberation" "reverberations"; -- from DictEng -lin revere_V2 = mkV2 (mkV "revere" "reveres" "revered" "revered" "revering"); -- from DictEng -lin reverence_N = mkN "reverence" ; -- from DictEng -lin reverence_V2 = mkV2 (mkV "reverence" "reverences" "reverenced" "reverenced" "reverencing"); -- from DictEng -lin reverend_A = compoundA (mkA "reverend"); -- from DictEng -lin reverend_N = mkN "reverend" "reverends"; -- from DictEng -lin reverent_A = compoundA (mkA "reverent"); -- from DictEng -lin reverential_A = compoundA (mkA "reverential"); -- from DictEng -lin reverentially_Adv = mkAdv "reverentially" ; -lin reverie_N = mkN "reverie" "reveries"; -- from DictEng -lin revers_N = mkN "revers" "IRREG"; -- from DictEng -lin reversal_N = mkN "reversal" "reversals"; -- from DictEng -lin reverse_A = compoundA (mkA "reverse"); -- from DictEng -lin reverse_N = mkN "reverse" "reverses"; -- from DictEng -lin reverse_V = mkV "reverse" "reverses" "reversed" "reversed" "reversing"; -- from DictEng -lin reverse_V2 = mkV2 (mkV "reverse" "reverses" "reversed" "reversed" "reversing"); -- from DictEng -lin reversed_A = mkA "reversed" ; -lin reversely_Adv = mkAdv "reversely" ; -lin reversibility_N = mkN "reversibility" ; -- from DictEng -lin reversible_A = compoundA (mkA "reversible"); -- from DictEng -lin reversible_N = mkN "reversible" ; -lin reversibly_Adv = mkAdv "reversibly" ; -lin reversion_N = mkN "reversion" "reversions"; -- from DictEng -lin reversionary_A = compoundA (mkA "reversionary"); -- from DictEng -lin reversioner_N = mkN "reversioner" ; -lin revert_V = mkV "revert" "reverts" "reverted" "reverted" "reverting"; -- from DictEng -lin revertible_A = compoundA (mkA "revertible"); -- from DictEng -lin revetment_N = mkN "revetment" "revetments"; -- from DictEng -lin review_N = mkN "review" "reviews"; -- from DictEng -lin review_V = mkV "review" "reviews" "reviewed" "reviewed" "reviewing"; -- from DictEng -lin review_V2 = mkV2 (mkV "review" "reviews" "reviewed" "reviewed" "reviewing"); -- from DictEng -lin reviewer_N = mkN "reviewer" "reviewers"; -- from DictEng -lin revile_V = mkV "revile" "reviles" "reviled" "reviled" "reviling"; -- from DictEng -lin revile_V2 = mkV2 (mkV "revile" "reviles" "reviled" "reviled" "reviling"); -- from DictEng -lin revise_N = mkN "revise" "revises"; -- from DictEng -lin revise_V = mkV "revise"; -- from DictEng -lin revise_V2 = mkV2 (mkV "revise" "revises" "revised" "revised" "revising"); -- from DictEng -lin revised_A = mkA "revised" ; -lin reviser_N = mkN "reviser" "revisers"; -- from DictEng -lin revision_N = mkN "revision" "revisions"; -- from DictEng -lin revisionism_N = mkN "revisionism" ; -- from DictEng -lin revisionist_N = mkN "revisionist" "revisionists"; -- from DictEng -lin revisit_V2 = mkV2 (mkV "revisit" "revisits" "revisited" "revisited" "revisiting"); -- from DictEng -lin revitalization_N = mkN "revitalization" "revitalizations"; -- from DictEng -lin revitalize_V2 = mkV2 (mkV "revitalize" "revitalizes" "revitalized" "revitalized" "revitalizing"); -- from DictEng -lin revitalized_A = mkA "revitalized" ; -lin revival_N = mkN "revival" "revivals"; -- from DictEng -lin revivalism_N = mkN "revivalism" ; -lin revivalist_N = mkN "revivalist" "revivalists"; -- from DictEng -lin revivalistic_A = mkA "revivalistic" ; -lin revive_V = mkV "revive" "revives" "revived" "revived" "reviving"; -- from DictEng -lin revive_V2 = mkV2 (mkV "revive" "revives" "revived" "revived" "reviving"); -- from DictEng -lin revived_A = mkA "revived" ; -lin revivify_V2 = mkV2 (mkV "revivify" "revivifies" "revivified" "revivified" "revivifying"); -- from DictEng -lin revocable_A = compoundA (mkA "revocable"); -- from DictEng -lin revocation_N = mkN "revocation" "revocations"; -- from DictEng -lin revoke_N = mkN "revoke" "revokes"; -- from DictEng -lin revoke_V = mkV "revoke" "revokes" "revoked" "revoked" "revoking"; -- from DictEng -lin revoke_V2 = mkV2 (mkV "revoke" "revokes" "revoked" "revoked" "revoking"); -- from DictEng -lin revolt_N = mkN "revolt" "revolts"; -- from DictEng -lin revolt_V = mkV "revolt" "revolts" "revolted" "revolted" "revolting"; -- from DictEng -lin revolt_V2 = mkV2 (mkV "revolt" "revolts" "revolted" "revolted" "revolting"); -- from DictEng -lin revolting_A = compoundA (mkA "revolting"); -- from DictEng -lin revolution_N = mkN "revolution" "revolutions"; -- from DictEng -lin revolutionary_A = compoundA (mkA "revolutionary"); -- from DictEng -lin revolutionary_N = mkN "revolutionary" "revolutionarys"; -- from DictEng -lin revolutionism_N = mkN "revolutionism" ; -lin revolutionist_N = mkN "revolutionist" ; -lin revolutionize_V2 = mkV2 (mkV "revolutionize" "revolutionizes" "revolutionized" "revolutionized" "revolutionizing"); -- from DictEng -lin revolve_V = mkV "revolve" "revolves" "revolved" "revolved" "revolving"; -- from DictEng -lin revolve_V2 = mkV2 (mkV "revolve" "revolves" "revolved" "revolved" "revolving"); -- from DictEng -lin revolver_N = mkN "revolver" "revolvers"; -- from DictEng -lin revue_N = mkN "revue" "revues"; -- from DictEng -lin revulsion_N = mkN "revulsion" ; -- from DictEng -lin rewa_rewa_N = mkN "rewa rewa" ; -lin reward_N = mkN "reward" "rewards"; -- from DictEng -lin reward_V2 = mkV2 (mkV "reward" "rewards" "rewarded" "rewarded" "rewarding"); -- from DictEng -lin rewardful_A = mkA "rewardful" ; -lin rewarding_A = mkA "rewarding" ; -lin rewardingly_Adv = mkAdv "rewardingly" ; -lin rewire_V2 = mkV2 (mkV "rewire" "rewires" "rewired" "rewired" "rewiring"); -- from DictEng -lin reword_V2 = mkV2 (mkV "reword" "rewords" "reworded" "reworded" "rewording"); -- from DictEng -lin rewording_N = mkN "rewording" ; -lin rework_V2 = mkV2 (mkV "rework"); -- from DictEng -lin rewrite_N = mkN "rewrite" "rewrites"; -- from DictEng -lin rewrite_V2 = mkV2 (mkV "re" IrregEng.write_V); -- from DictEng -lin rewriting_N = mkN "rewriting" ; -lin rh_negative_A = compoundA (mkA "rh negative") ; -lin rh_positive_A = compoundA (mkA "rh positive") ; -lin rhabdomyoma_N = mkN "rhabdomyoma" ; -lin rhabdomyosarcoma_N = mkN "rhabdomyosarcoma" ; -lin rhabdovirus_N = mkN "rhabdovirus" ; -lin rhagades_N = mkN "rhagades" ; -lin rhapsodize_V = mkV "rhapsodize" "rhapsodizes" "rhapsodized" "rhapsodized" "rhapsodizing"; -- from DictEng -lin rhapsody_N = mkN "rhapsody" "rhapsodies"; -- from DictEng -lin rhea_N = mkN "rhea" "rheas"; -- from DictEng -lin rhenish_A = compoundA (mkA "rhenish"); -- from DictEng -lin rhenium_N = mkN "rhenium" ; -lin rheologic_A = mkA "rheologic" ; -lin rheology_N = mkN "rheology" ; -lin rheometer_N = mkN "rheometer" ; -lin rheostat_N = mkN "rheostat" "rheostats"; -- from DictEng -lin rhesus_N = mkN "rhesus" "rhesuses"; -- from DictEng -lin rhetoric_N = mkN "rhetoric" ; -- from DictEng -lin rhetorical_A = compoundA (mkA "rhetorical"); -- from DictEng -lin rhetorically_Adv = mkAdv "rhetorically" ; -lin rhetorician_N = mkN "rhetorician" "rhetoricians"; -- from DictEng -lin rheum_N = mkN "rheum" ; -- from DictEng -lin rheumatic_A = compoundA (mkA "rheumatic"); -- from DictEng -lin rheumatic_N = mkN "rheumatic" "rheumatics"; -- from DictEng -lin rheumatism_N = mkN "rheumatism" ; -- from DictEng -lin rheumatoid_A = compoundA (mkA "rheumatoid"); -- from DictEng -lin rheumatologist_N = mkN "rheumatologist" ; -lin rheumatology_N = mkN "rheumatology" ; -lin rheumy_A = mkA "rheumy" ; -lin rhinal_A = compoundA (mkA "rhinal"); -- from DictEng -lin rhinencephalon_N = mkN "rhinencephalon" ; -lin rhinestone_N = mkN "rhinestone" "rhinestones"; -- from DictEng -lin rhinion_N = mkN "rhinion" ; -lin rhinitis_N = mkN "rhinitis" ; -lin rhino_N = mkN "rhino" "rhinos"; -- from DictEng -lin rhinoceros_N = mkN "rhinoceros" "rhinoceros"; -- from DictEng -lin rhinolaryngology_N = mkN "rhinolaryngology" ; -lin rhinopathy_N = mkN "rhinopathy" ; -lin rhinophyma_N = mkN "rhinophyma" ; -lin rhinorrhea_N = mkN "rhinorrhea" ; -lin rhinoscope_N = mkN "rhinoscope" ; -lin rhinoscopy_N = mkN "rhinoscopy" ; -lin rhinosporidiosis_N = mkN "rhinosporidiosis" ; -lin rhinostenosis_N = mkN "rhinostenosis" ; -lin rhinotomy_N = mkN "rhinotomy" ; -lin rhinotracheitis_N = mkN "rhinotracheitis" ; -lin rhinovirus_N = mkN "rhinovirus" ; -lin rhizoctinia_N = mkN "rhizoctinia" ; -lin rhizoid_N = mkN "rhizoid" ; -lin rhizoidal_A = mkA "rhizoidal" ; -lin rhizomatous_A = mkA "rhizomatous" ; -lin rhizome_N = mkN "rhizome" "rhizomes"; -- from DictEng -lin rhizomorph_N = mkN "rhizomorph" ; -lin rhizopod_N = mkN "rhizopod" ; -lin rhizopus_N = mkN "rhizopus" ; -lin rhizotomy_N = mkN "rhizotomy" ; -lin rho_N = mkN "rho" ; -lin rhodium_N = mkN "rhodium" ; -lin rhodochrosite_N = mkN "rhodochrosite" ; -lin rhododendron_N = mkN "rhododendron" "rhododendrons"; -- from DictEng -lin rhodolite_N = mkN "rhodolite" ; -lin rhodonite_N = mkN "rhodonite" ; -lin rhomb_N = mkN "rhomb" "rhombs"; -- from DictEng -lin rhombic_A = mkA "rhombic" ; -lin rhombohedral_A = mkA "rhombohedral" ; -lin rhombohedron_N = mkN "rhombohedron" ; -lin rhomboid_A = compoundA (mkA "rhomboid"); -- from DictEng -lin rhomboid_N = mkN "rhomboid" "rhomboids"; -- from DictEng -lin rhombus_N = mkN "rhombus" "rhombuses"; -- from DictEng -lin rhonchus_N = mkN "rhonchus" ; -lin rhubarb_N = mkN "rhubarb" ; -- from DictEng -lin rhyme_N = mkN "rhyme" "rhymes"; -- from DictEng -lin rhyme_V = mkV "rhyme" "rhymes" "rhymed" "rhymed" "rhyming"; -- from DictEng -lin rhyme_V2 = mkV2 (mkV "rhyme" "rhymes" "rhymed" "rhymed" "rhyming"); -- from DictEng -lin rhymed_A = compoundA (mkA "rhymed"); -- from DictEng -lin rhymer_N = mkN "rhymer" ; -lin rhymester_N = mkN "rhymester" "rhymesters"; -- from DictEng -lin rhyolite_N = mkN "rhyolite" ; -lin rhythm_N = mkN "rhythm" "rhythms"; -- from DictEng -lin rhythmic_A = compoundA (mkA "rhythmic"); -- from DictEng -lin rhythmical_A = compoundA (mkA "rhythmical"); -- from DictEng -lin rhythmically_Adv = mkAdv "rhythmically" ; -lin rhythmicity_N = mkN "rhythmicity" ; -lin rib_N = mkN "rib" "ribs"; -- from DictEng -lin rib_V2 = mkV2 (mkV "rib" "ribs" "ribbed" "ribbed" "ribbing"); -- from DictEng -lin ribald_A = compoundA (mkA "ribald"); -- from DictEng -lin ribald_N = mkN "ribald" "ribalds"; -- from DictEng -lin ribaldry_N = mkN "ribaldry" ; -- from DictEng -lin riband_N = mkN "riband" "ribands"; -- from DictEng -lin ribavirin_N = mkN "ribavirin" ; -lin ribbed_A = mkA "ribbed" ; -lin ribbing_N = mkN "ribbing" ; -lin ribbon_N = mkN "ribbon" "ribbons"; -- from DictEng -lin ribbon_shaped_A = compoundA (mkA "ribbon shaped") ; -lin ribbonfish_N = mkN "ribbonfish" ; -lin ribbonlike_A = mkA "ribbonlike" ; -lin ribier_N = mkN "ribier" ; -lin ribless_A = mkA "ribless" ; -lin riblike_A = mkA "riblike" ; -lin riboflavin_N = mkN "riboflavin" ; -- from DictEng -lin ribonuclease_N = mkN "ribonuclease" ; -lin ribose_N = mkN "ribose" ; -lin ribosome_N = mkN "ribosome" ; -lin rice_N = mkN "rice" ; -- from DictEng -lin rice_paper_N = mkN "rice - paper" ; -- from DictEng -lin ricegrass_N = mkN "ricegrass" ; -lin ricer_N = mkN "ricer" ; -lin rich_A = mkA "rich" "richer"; -- from DictEng -lin richness_N = mkN "richness" ; -- from DictEng -lin richweed_N = mkN "richweed" ; -lin ricin_N = mkN "ricin" ; -lin rick_N = mkN "rick" "ricks"; -- from DictEng -lin rick_V2 = mkV2 (mkV "rick" "ricks" "ricked" "ricked" "ricking"); -- from DictEng -lin rickets_N = mkN "rickets" "rickets"; -- from DictEng -lin rickettsia_N = mkN "rickettsia" ; -lin rickettsial_A = mkA "rickettsial" ; -lin rickettsialpox_N = mkN "rickettsialpox" ; -lin rickety_A = compoundA (mkA "rickety"); -- from DictEng -lin rickey_N = mkN "rickey" ; -lin rickrack_N = mkN "rickrack" ; -lin rickshaw_N = mkN "rickshaw" "rickshaws"; -- from DictEng -lin rickshaw_V2 = mkV2 (mkV "rickshaw") ; -lin ricochet_N = mkN "ricochet" "ricochets"; -- from DictEng -lin ricochet_V = mkV "ricochet" "ricochets" "ricocheted" "ricocheted" "ricocheting"; -- from DictEng -lin ricochet_V2 = mkV2 (mkV "ricochet" "ricochets" "ricocheted" "ricocheted" "ricocheting"); -- from DictEng -lin ricotta_N = mkN "ricotta" ; -lin rictus_N = mkN "rictus" ; -lin rid_V = mkV "rid"; -- from DictEng -lin rid_V2 = mkV2 (IrregEng.rid_V); -- from DictEng -lin riddance_N = mkN "riddance" ; -- from DictEng -lin riddle_N = mkN "riddle" "riddles"; -- from DictEng -lin riddle_V2 = mkV2 (mkV "riddle" "riddles" "riddled" "riddled" "riddling"); -- from DictEng -lin riddled_A = mkA "riddled" ; -lin ride_N = mkN "ride" "rides"; -- from DictEng -lin ride_V = IrregEng.ride_V; -- from DictEng -lin ride_V2 = mkV2 (IrregEng.ride_V); -- from DictEng -lin rider_N = mkN "rider" "riders"; -- from DictEng -lin riderless_A = compoundA (mkA "riderless"); -- from DictEng -lin ridge_N = mkN "ridge" "ridges"; -- from DictEng -lin ridge_V2 = mkV2 (mkV "ridge" "ridges" "ridged" "ridged" "ridging"); -- from DictEng -lin ridge_tile_N = mkN "ridge - tile" "ridge - tiles"; -- from DictEng -lin ridged_A = mkA "ridged" ; -lin ridgeling_N = mkN "ridgeling" ; -lin ridgepole_N = mkN "ridgepole" "ridgepoles"; -- from DictEng -lin ridicule_N = mkN "ridicule" "ridicules"; -- from DictEng -lin ridicule_V2 = mkV2 (mkV "ridicule" "ridicules" "ridiculed" "ridiculed" "ridiculing"); -- from DictEng -lin ridiculous_A = compoundA (mkA "ridiculous"); -- from DictEng -lin riding_N = mkN "riding" "ridings"; -- from DictEng -lin riding_habit_N = mkN "riding - habit" "riding - habits"; -- from DictEng -lin riding_lamp_N = mkN "riding - lamp" "riding - lamps"; -- from DictEng -lin riding_light_N = mkN "riding - light" "riding - lights"; -- from DictEng -lin riding_master_N = mkN "riding - master" "riding - masters"; -- from DictEng -lin riding_school_N = mkN "riding - school" "riding - schools"; -- from DictEng -lin ridley_N = mkN "ridley" ; -lin riel_N = mkN "riel" ; -lin riesling_N = mkN "riesling" "rieslings"; -- from DictEng -lin rifampin_N = mkN "rifampin" ; -lin rife_A = compoundA (mkA "rife"); -- from DictEng -lin riff_N = mkN "riff" "riffs"; -- from DictEng -lin riff_raff_N = mkN "riff - raff" "riff - rafves" {- FIXME: guessed plural form -}; -- from DictEng -lin riffle_N = mkN "riffle" ; -lin riffle_V = mkV "riffle" "riffles" "riffled" "riffled" "riffling"; -- from DictEng -lin riffle_V2 = mkV2 (mkV "riffle" "riffles" "riffled" "riffled" "riffling"); -- from DictEng -lin rifle_N = mkN "rifle" "rifles"; -- from DictEng -lin rifle_V2 = mkV2 (mkV "rifle" "rifles" "rifled" "rifled" "rifling"); -- from DictEng -lin rifle_range_N = mkN "rifle - range" "rifle - ranges"; -- from DictEng -lin rifle_shot_N = mkN "rifle - shot" "rifle - shots"; -- from DictEng -lin riflebird_N = mkN "riflebird" ; -lin rifled_A = mkA "rifled" ; -lin rifleman_N = mkN "rifleman" "riflemen" {- FIXME: guessed plural form -}; -- from DictEng -lin rift_N = mkN "rift" "rifts"; -- from DictEng -lin rift_valley_N = mkN "rift - valley" "rift - valleys"; -- from DictEng -lin rig_N = mkN "rig" "rigs"; -- from DictEng -lin rig_V = mkV "rig" "rigs" "rigged" "rigged" "rigging"; -- from DictEng -lin rig_V2 = mkV2 (mkV "rig" "rigs" "rigged" "rigged" "rigging"); -- from DictEng -lin rigatoni_N = mkN "rigatoni" ; -lin rigged_A = mkA "rigged" ; -lin rigger_N = mkN "rigger" "riggers"; -- from DictEng -lin rigging_N = mkN "rigging" ; -- from DictEng -lin right_A = compoundA (mkA "right"); -- from DictEng -lin right_Adv = mkAdv "right"; -- from DictEng -lin right_N = mkN "right" "rights"; -- from DictEng -lin right_V2 = mkV2 (mkV "right" "rights" "righted" "righted" "righting"); -- from DictEng -lin right_angled_A = compoundA (mkA "right - angled"); -- from DictEng -lin right_down_Adv = mkAdv "right - down"; -- from DictEng -lin right_eyed_A = compoundA (mkA "right eyed") ; -lin right_hand_A = compoundA (mkA "right - hand"); -- from DictEng -lin right_handed_A = compoundA (mkA "right - handed"); -- from DictEng -lin right_handedness_N = mkN "right handedness" ; -lin right_hander_N = mkN "right - hander" "right - handers"; -- from DictEng -lin right_minded_A = compoundA (mkA "right - minded"); -- from DictEng -lin right_side_out_A = compoundA (mkA "right side out") ; -lin right_side_up_A = compoundA (mkA "right side up") ; -lin right_angled_A = compoundA (mkA "right - angled"); -- from DictEng -lin right_down_A = compoundA (mkA "right - down"); -- from DictEng -lin right_down_Adv = mkAdv "right - down"; -- from DictEng -lin right_hand_A = compoundA (mkA "right - hand"); -- from DictEng -lin right_handed_A = compoundA (mkA "right - handed"); -- from DictEng -lin right_hander_N = mkN "right - hander" "right - handers"; -- from DictEng -lin right_minded_A = compoundA (mkA "right - minded"); -- from DictEng -lin right_smart_A = compoundA (mkA "right smart") ; -lin right_turn_N = mkN "right - turn" "right - turns"; -- from DictEng -lin right_wing_N = mkN "right - wing" "right - wings"; -- from DictEng -lin right_winger_N = mkN "right - winger" "right - wingers"; -- from DictEng -lin righteous_A = compoundA (mkA "righteous"); -- from DictEng -lin righteously_Adv = mkAdv "righteously" ; -lin righteousness_N = mkN "righteousness" ; -- from DictEng -lin rightful_A = compoundA (mkA "rightful"); -- from DictEng -lin rightfully_Adv = mkAdv "rightfully" ; -lin rightfulness_N = mkN "rightfulness" ; -- from DictEng -lin rightish_A = mkA "rightish" ; -lin rightism_N = mkN "rightism" ; -lin rightist_A = compoundA (mkA "rightist"); -- from DictEng -lin rightist_N = mkN "rightist" "rightists"; -- from DictEng -lin rightly_Adv = mkAdv "rightly" ; -lin rightmost_A = mkA "rightmost" ; -lin rightness_N = mkN "rightness" ; -- from DictEng -lin rigid_A = compoundA (mkA "rigid"); -- from DictEng -lin rigidity_N = mkN "rigidity" "rigidities"; -- from DictEng -lin rigidly_Adv = mkAdv "rigidly" ; -lin rigmarole_N = mkN "rigmarole" "rigmaroles"; -- from DictEng -lin rigor_mortis_N = mkN "rigor mortis" ; -- from DictEng -lin rigorous_A = compoundA (mkA "rigorous"); -- from DictEng -lin rigorously_Adv = mkAdv "rigorously" ; -lin rigour_N = mkN "rigour" "rigours"; -- from DictEng -lin rigout_N = mkN "rigout" "rigouts"; -- from DictEng -lin rijsttaffel_N = mkN "rijsttaffel" ; -lin rile_V2 = mkV2 (mkV "rile" "riles" "riled" "riled" "riling"); -- from DictEng -lin rill_N = mkN "rill" "rills"; -- from DictEng -lin rim_N = mkN "rim" "rims"; -- from DictEng -lin rim_V2 = mkV2 (mkV "rim" "rims" "rimmed" "rimmed" "rimming"); -- from DictEng -lin rima_N = mkN "rima" ; -lin rime_N = mkN "rime" ; -- from DictEng -lin rime_V2 = mkV2 (mkV "rime" "rimes" "rimed" "rimed" "riming"); -- from DictEng -lin rimless_A = mkA "rimless" ; -lin rimmed_A = mkA "rimmed" ; -lin rimose_A = mkA "rimose" ; -lin rimu_N = mkN "rimu" ; -lin rind_N = mkN "rind" "rinds"; -- from DictEng -lin rind_V2 = mkV2 (mkV "rind") ; -lin rinderpest_N = mkN "rinderpest" ; -- from DictEng -lin ring_N = mkN "ring" "rings"; -- from DictEng -lin ring_V = mkV "ring" "rings" "ringed" "ringed" "ringing"; -- from DictEng -lin ring_V2 = mkV2 (mkV "ring" "rings" "ringed" "ringed" "ringing"); -- from DictEng -lin ring_around_the_rosy_N = mkN "ring around the rosy" ; -lin ring_armour_N = mkN "ring - armour" ; -- from DictEng -lin ring_finger_N = mkN "ring - finger" "ring - fingers"; -- from DictEng -lin ring_mail_N = mkN "ring - mail" ; -- from DictEng -lin ring_road_N = mkN "ring - road" "ring - roads"; -- from DictEng -lin ringdove_N = mkN "ringdove" ; -lin ringed_A = mkA "ringed" ; -lin ringer_N = mkN "ringer" "ringers"; -- from DictEng -lin ringgit_N = mkN "ringgit" ; -lin ringhals_N = mkN "ringhals" ; -lin ringing_N = mkN "ringing" ; -lin ringleader_N = mkN "ringleader" "ringleaders"; -- from DictEng -lin ringlet_N = mkN "ringlet" "ringlets"; -- from DictEng -lin ringleted_A = mkA "ringleted" ; -lin ringlike_A = mkA "ringlike" ; -lin ringmaster_N = mkN "ringmaster" "ringmasters"; -- from DictEng -lin rings_N = mkN "rings" ; -lin ringside_N = mkN "ringside" "ringsides"; -- from DictEng -lin ringtail_N = mkN "ringtail" ; -lin ringworm_N = mkN "ringworm" ; -- from DictEng -lin rink_N = mkN "rink" "rinks"; -- from DictEng -lin rinse_N = mkN "rinse" "rinses"; -- from DictEng -lin rinse_V2 = mkV2 (mkV "rinse" "rinses" "rinsed" "rinsed" "rinsing"); -- from DictEng -lin riot_N = mkN "riot" "riots"; -- from DictEng -lin riot_V = mkV "riot" "riots" "rioted" "rioted" "rioting"; -- from DictEng -lin rioter_N = mkN "rioter" "rioters"; -- from DictEng -lin rioting_N = mkN "rioting" ; -lin riotous_A = compoundA (mkA "riotous"); -- from DictEng -lin rip_N = mkN "rip" "rips"; -- from DictEng -lin rip_V = mkV "rip" "rips" "ripped" "ripped" "ripping"; -- from DictEng -lin rip_V2 = mkV2 (mkV "rip" "rips" "ripped" "ripped" "ripping"); -- from DictEng -lin rip_off_N = mkN "rip - off" "rip - offs"; -- from DictEng -lin rip_roaring_A = compoundA (mkA "rip - roaring"); -- from DictEng -lin riparian_A = compoundA (mkA "riparian"); -- from DictEng -lin ripcord_N = mkN "ripcord" "ripcords"; -- from DictEng -lin ripe_A = mkA "ripe" "riper"; -- from DictEng -lin ripely_Adv = mkAdv "ripely" ; -lin ripen_V = mkV "ripen" "ripens" "ripened" "ripened" "ripening"; -- from DictEng -lin ripen_V2 = mkV2 (mkV "ripen" "ripens" "ripened" "ripened" "ripening"); -- from DictEng -lin ripeness_N = mkN "ripeness" ; -- from DictEng -lin ripening_N = mkN "ripening" ; -lin riposte_N = mkN "riposte" "ripostes"; -- from DictEng -lin riposte_V = mkV "riposte" "ripostes" "riposted" "riposted" "riposting"; -- from DictEng -lin ripper_N = mkN "ripper" ; -lin ripple_N = mkN "ripple" "ripples"; -- from DictEng -lin ripple_V = mkV "ripple" "ripples" "rippled" "rippled" "rippling"; -- from DictEng -lin ripple_V2 = mkV2 (mkV "ripple" "ripples" "rippled" "rippled" "rippling"); -- from DictEng -lin rippled_A = mkA "rippled" ; -lin ripsaw_N = mkN "ripsaw" "ripsaws"; -- from DictEng -lin riptide_N = mkN "riptide" "riptides"; -- from DictEng -lin rise_N = mkN "rise" "rises"; -- from DictEng -lin rise_V = IrregEng.rise_V; -- from DictEng -lin rise_V2 = mkV2 (IrregEng.rise_V); -- from DictEng -lin rise_VA = mkVA (IrregEng.rise_V); -- from DictEng -lin risen_A = mkA "risen" ; -lin riser_N = mkN "riser" "risers"; -- from DictEng -lin risibility_N = mkN "risibility" ; -- from DictEng -lin risible_A = compoundA (mkA "risible"); -- from DictEng -lin rising_A = mkA "rising" ; -lin rising_N = mkN "rising" "risings"; -- from DictEng -lin risk_N = mkN "risk" "risks"; -- from DictEng -lin risk_V2 = mkV2 (mkV "risk" "risks" "risked" "risked" "risking"); -- from DictEng -lin risk_VS = mkVS (mkV "risk"); -- from DictEng -lin risk_free_A = compoundA (mkA "risk free") ; -lin riskily_Adv = mkAdv "riskily"; -- from DictEng -lin riskiness_N = mkN "riskiness" ; -- from DictEng -lin risklessness_N = mkN "risklessness" ; -lin risky_A = mkA "risky" "riskier"; -- from DictEng -lin risotto_N = mkN "risotto" "risottos"; -- from DictEng -lin risque_A = compoundA (mkA "risqué"); -- from DictEng -lin rissole_N = mkN "rissole" "rissoles"; -- from DictEng -lin rite_N = mkN "rite" "rites"; -- from DictEng -lin ritonavir_N = mkN "ritonavir" ; -lin ritual_A = compoundA (mkA "ritual"); -- from DictEng -lin ritual_N = mkN "ritual" "rituals"; -- from DictEng -lin ritualism_N = mkN "ritualism" ; -- from DictEng -lin ritualist_N = mkN "ritualist" "ritualists"; -- from DictEng -lin ritualistic_A = compoundA (mkA "ritualistic"); -- from DictEng -lin ritz_N = mkN "ritz" ; -lin ritzy_A = compoundA (mkA "ritzy"); -- from DictEng -lin rival_N = mkN "rival" "rivals"; -- from DictEng -lin rival_V2 = mkV2 (mkV "rival" "rivals" "rivalled" "rivalled" "rivalling"); -- from DictEng -lin rivalry_N = mkN "rivalry" "rivalries"; -- from DictEng -lin rive_V = mkV "rive" "rives" "rived" "rived" "riving"; -- from DictEng -lin rive_V2 = mkV2 (mkV "rive" "rives" "rived" "rived" "riving"); -- from DictEng -lin river_N = mkN "river" "rivers"; -- from DictEng -lin river_basin_N = mkN "river - basin" "river - basins"; -- from DictEng -lin river_bed_N = mkN "river - bed" "river - beds"; -- from DictEng -lin riverbank_N = mkN "riverbank" ; -lin riverbed_N = mkN "riverbed" ; -lin riverside_N = mkN "riverside" "riversides"; -- from DictEng -lin rivet_N = mkN "rivet" "rivets"; -- from DictEng -lin rivet_V = mkV "rivet"; -- from DictEng -lin rivet_V2 = mkV2 (mkV "rivet" "rivets" "riveted" "riveted" "riveting"); -- from DictEng -lin riveter_N = mkN "riveter" "riveters"; -- from DictEng -lin rivulet_N = mkN "rivulet" "rivulets"; -- from DictEng -lin rivulus_N = mkN "rivulus" ; -lin riyal_omani_N = mkN "riyal omani" ; -lin rly_N = mkN "rly" ; -- from DictEng -lin rm_N = mkN "rm" ; -- from DictEng -lin rn_N = mkN "rn" ; -- from DictEng -lin roach_N = mkN "roach" "roach"; -- from DictEng -lin road_N = mkN "road" "roads"; -- from DictEng -lin road_book_N = mkN "road - book" "road - books"; -- from DictEng -lin road_hog_N = mkN "road - hog" "road - hogs"; -- from DictEng -lin road_metal_N = mkN "road - metal" ; -- from DictEng -lin road_sense_N = mkN "road - sense" ; -- from DictEng -lin road_to_damascus_PN = mkPN "road to Damascus" ; -lin roadbed_N = mkN "roadbed" "roadbeds"; -- from DictEng -lin roadblock_N = mkN "roadblock" "roadblocks"; -- from DictEng -lin roadbook_N = mkN "roadbook" ; -lin roadhouse_N = mkN "roadhouse" "roadhouses"; -- from DictEng -lin roadkill_N = mkN "roadkill" ; -lin roadless_A = compoundA (mkA "roadless"); -- from DictEng -lin roadman_N = mkN "roadman" "roadmen" {- FIXME: guessed plural form -}; -- from DictEng -lin roadmender_N = mkN "roadmender" "roadmenders"; -- from DictEng -lin roadrunner_N = mkN "roadrunner" ; -lin roads_N = mkN "roads" ; -lin roadside_N = mkN "roadside" "roadsides"; -- from DictEng -lin roadstead_N = mkN "roadstead" "roadsteads"; -- from DictEng -lin roadster_N = mkN "roadster" "roadsters"; -- from DictEng -lin roadway_N = mkN "roadway" "roadways"; -- from DictEng -lin roadworthiness_N = mkN "roadworthiness" ; -lin roadworthy_A = compoundA (mkA "roadworthy"); -- from DictEng -lin roam_V = mkV "roam" "roams" "roamed" "roamed" "roaming"; -- from DictEng -lin roam_V2 = mkV2 (mkV "roam" "roams" "roamed" "roamed" "roaming"); -- from DictEng -lin roan_A = compoundA (mkA "roan"); -- from DictEng -lin roan_N = mkN "roan" "roans"; -- from DictEng -lin roar_N = mkN "roar" "roars"; -- from DictEng -lin roar_V = mkV "roar" "roars" "roared" "roared" "roaring"; -- from DictEng -lin roar_V2 = mkV2 (mkV "roar" "roars" "roared" "roared" "roaring"); -- from DictEng -lin roarer_N = mkN "roarer" ; -lin roaring_A = compoundA (mkA "roaring"); -- from DictEng -lin roaring_Adv = mkAdv "roaring"; -- from DictEng -lin roast_A = compoundA (mkA "roast"); -- from DictEng -lin roast_N = mkN "roast" "roasts"; -- from DictEng -lin roast_V = mkV "roast" "roasts" "roasted" "roasted" "roasting"; -- from DictEng -lin roast_V2 = mkV2 (mkV "roast" "roasts" "roasted" "roasted" "roasting"); -- from DictEng -lin roaster_N = mkN "roaster" "roasters"; -- from DictEng -lin roasting_N = mkN "roasting" "roastings"; -- from DictEng -lin rob_V2 = mkV2 (mkV "rob" "robs" "robbed" "robbed" "robbing"); -- from DictEng -lin robalo_N = mkN "robalo" ; -lin robber_N = mkN "robber" "robbers"; -- from DictEng -lin robbery_N = mkN "robbery" "robberies"; -- from DictEng -lin robe_N = mkN "robe" "robes"; -- from DictEng -lin robe_V = mkV "robe" "robes" "robed" "robed" "robing"; -- from DictEng -lin robe_V2 = mkV2 (mkV "robe" "robes" "robed" "robed" "robing"); -- from DictEng -lin robin_N = mkN "robin" "robins"; -- from DictEng -lin roble_N = mkN "roble" ; -lin robot_N = mkN "robot" "robots"; -- from DictEng -lin robotic_A = mkA "robotic" ; -lin robotics_N = mkN "robotics" ; -lin robust_A = compoundA (mkA "robust"); -- from DictEng -lin robustly_Adv = mkAdv "robustly" ; -lin robustness_N = mkN "robustness" ; -- from DictEng -lin roc_N = mkN "roc" "rocs"; -- from DictEng -lin roccella_N = mkN "roccella" ; -lin rock_N = mkN "rock" "rocks"; -- from DictEng -lin rock_V = mkV "rock" "rocks" "rocked" "rocked" "rocking"; -- from DictEng -lin rock_V2 = mkV2 (mkV "rock" "rocks" "rocked" "rocked" "rocking"); -- from DictEng -lin rock_inhabiting_A = compoundA (mkA "rock inhabiting") ; -lin rock_loving_A = compoundA (mkA "rock loving") ; -lin rock_ribbed_A = compoundA (mkA "rock ribbed") ; -lin rock_'n_roll_N = mkN "rock-'n - roll" ; -- from DictEng -lin rock_bottom_N = mkN "rock - bottom" ; -- from DictEng -lin rock_cake_N = mkN "rock - cake" "rock - cakes"; -- from DictEng -lin rock_climbing_N = mkN "rock - climbing" ; -- from DictEng -lin rock_crystal_N = mkN "rock - crystal" "rock - crystals"; -- from DictEng -lin rock_garden_N = mkN "rock - garden" "rock - gardens"; -- from DictEng -lin rock_plant_N = mkN "rock - plant" "rock - plants"; -- from DictEng -lin rock_salmon_N = mkN "rock - salmon" "rock - salmon"; -- from DictEng -lin rock_salt_N = mkN "rock - salt" ; -- from DictEng -lin rockabilly_N = mkN "rockabilly" ; -lin rocker_N = mkN "rocker" "rockers"; -- from DictEng -lin rockers_N = mkN "rockers" ; -lin rockery_N = mkN "rockery" "rockeries"; -- from DictEng -lin rocket_N = mkN "rocket" "rockets"; -- from DictEng -lin rocket_V = mkV "rocket" "rockets" "rocketed" "rocketed" "rocketing"; -- from DictEng -lin rocket_V2 = mkV2 (mkV "rocket") ; -lin rocket_propelled_A = compoundA (mkA "rocket propelled") ; -lin rocket_base_N = mkN "rocket - base" "rocket - bases"; -- from DictEng -lin rocket_range_N = mkN "rocket - range" "rocket - ranges"; -- from DictEng -lin rocketry_N = mkN "rocketry" ; -- from DictEng -lin rockfish_N = mkN "rockfish" ; -lin rockiness_N = mkN "rockiness" ; -lin rocking_chair_N = mkN "rocking - chair" "rocking - chairs"; -- from DictEng -lin rocking_horse_N = mkN "rocking - horse" "rocking - horses"; -- from DictEng -lin rockrose_N = mkN "rockrose" ; -lin rockslide_N = mkN "rockslide" ; -lin rockweed_N = mkN "rockweed" ; -lin rocky_A = mkA "rocky" "rockier"; -- from DictEng -lin rococo_A = compoundA (mkA "rococo"); -- from DictEng -lin rococo_N = mkN "rococo" ; -lin rod_N = mkN "rod" "rods"; -- from DictEng -lin rod_shaped_A = compoundA (mkA "rod shaped") ; -lin rodent_N = mkN "rodent" "rodents"; -- from DictEng -lin rodeo_N = mkN "rodeo" "rodeos"; -- from DictEng -lin rodomontade_N = mkN "rodomontade" ; -- from DictEng -lin roe_N = mkN "roe" "roe"; -- from DictEng -lin roebuck_N = mkN "roebuck" "roebucks"; -- from DictEng -lin roentgen_N = mkN "roentgen" "roentgens"; -- from DictEng -lin roentgenium_N = mkN "roentgenium" ; -lin roentgenogram_N = mkN "roentgenogram" ; -lin roentgenographic_A = mkA "roentgenographic" ; -lin roentgenography_N = mkN "roentgenography" ; -lin rofecoxib_N = mkN "rofecoxib" ; -lin rogation_N = mkN "rogation" "rogations"; -- from DictEng -lin rogue_N = mkN "rogue" "rogues"; -- from DictEng -lin rogue_elephant_N = mkN "rogue - elephant" "rogue - elephants"; -- from DictEng -lin roguery_N = mkN "roguery" "rogueries"; -- from DictEng -lin roguish_A = compoundA (mkA "roguish"); -- from DictEng -lin roguishly_Adv = mkAdv "roguishly" ; -lin roguishness_N = mkN "roguishness" ; -- from DictEng -lin roil_V = mkV "roil" ; -lin roil_V2 = mkV2 (mkV "roil"); -- from DictEng -lin roisterer_N = mkN "roisterer" "roisterers"; -- from DictEng -lin role_N = mkN "role" ; -lin role_1_N = mkN "role" "roles"; -- from DictEng -lin role_2_N = mkN "rôle" "rôles"; -- from DictEng -lin roleplaying_N = mkN "roleplaying" ; -lin roll_N = mkN "roll" "rolls"; -- from DictEng -lin roll_V = mkV "roll" "rolls" "rolled" "rolled" "rolling"; -- from DictEng -lin roll_V2 = mkV2 (mkV "roll" "rolls" "rolled" "rolled" "rolling"); -- from DictEng -lin roll_on_N = mkN "roll - on" "roll - ons"; -- from DictEng -lin roll_call_N = mkN "roll - call" "roll - calls"; -- from DictEng -lin roll_on_N = mkN "roll - on" "roll - ons"; -- from DictEng -lin rollback_N = mkN "rollback" ; -lin rolled_A = mkA "rolled" ; -lin rolled_into_one_A = compoundA (mkA "rolled into one") ; -lin roller_N = mkN "roller" "rollers"; -- from DictEng -lin roller_skater_N = mkN "roller skater" ; -lin roller_skate_N = mkN "roller - skate" "roller - skates"; -- from DictEng -lin rollerblader_N = mkN "rollerblader" ; -lin rollerblading_N = mkN "rollerblading" ; -lin rollicking_A = compoundA (mkA "rollicking"); -- from DictEng -lin rollickingly_Adv = mkAdv "rollickingly" ; -lin rolling_N = mkN "rolling" ; -- from DictEng -lin rolling_mill_N = mkN "rolling - mill" "rolling - mills"; -- from DictEng -lin rolling_pin_N = mkN "rolling - pin" "rolling - pins"; -- from DictEng -lin rolling_stock_N = mkN "rolling - stock" ; -- from DictEng -lin rollmops_N = mkN "rollmops" ; -lin rollover_N = mkN "rollover" ; -lin roly_poly_N = mkN "roly - poly" "roly - polies"; -- from DictEng -lin roly_poly_N = mkN "roly - poly" "roly - polies"; -- from DictEng -lin romaic_A = compoundA (mkA "romaic"); -- from DictEng -lin romaic_N = mkN "romaic" ; -- from DictEng -lin roman_A = compoundA (mkA "roman"); -- from DictEng -lin roman_N = mkN "roman" "romans"; -- from DictEng -lin romance_A = compoundA (mkA "romance"); -- from DictEng -lin romance_N = mkN "romance" "romances"; -- from DictEng -lin romance_V = mkV "romance" "romances" "romanced" "romanced" "romancing"; -- from DictEng -lin romance_V2 = mkV2 (mkV "romance" "romances" "romanced" "romanced" "romancing"); -- from DictEng -lin romanesque_N = mkN "romanesque" ; -- from DictEng -lin romanian_A = compoundA (mkA "Romanian"); -- from DictEng -lin romanian_N = mkN "Romanian" "Romanians"; -- from DictEng -lin romantic_A = compoundA (mkA "romantic"); -- from DictEng -lin romantic_N = mkN "romantic" "romantics"; -- from DictEng -lin romantically_Adv = mkAdv "romantically"; -- from DictEng -lin romanticism_N = mkN "romanticism" ; -- from DictEng -lin romanticist_N = mkN "romanticist" "romanticists"; -- from DictEng -lin romanticize_V = mkV "romanticize" "romanticizes" "romanticized" "romanticized" "romanticizing"; -- from DictEng -lin romanticize_V2 = mkV2 (mkV "romanticize" "romanticizes" "romanticized" "romanticized" "romanticizing"); -- from DictEng -lin romany_A = compoundA (mkA "romany"); -- from DictEng -lin romany_N = mkN "romany" "romanies"; -- from DictEng -lin romish_A = compoundA (mkA "romish"); -- from DictEng -lin romp_N = mkN "romp" "romps"; -- from DictEng -lin romp_V = mkV "romp" "romps" "romped" "romped" "romping"; -- from DictEng -lin romp_V2 = mkV2 (mkV "romp") ; -lin romper_N = mkN "romper" "rompers"; -- from DictEng -lin rondeau_N = mkN "rondeau" "rondeaus"; -- from DictEng -lin rondel_N = mkN "rondel" "rondels"; -- from DictEng -lin rondelet_N = mkN "rondelet" ; -lin rondo_N = mkN "rondo" "rondos"; -- from DictEng -lin roneo_N = mkN "roneo" "roneos"; -- from DictEng -lin roneo_V2 = mkV2 (mkV "roneo" "roneos" "roneoed" "roneoed" "roneoing"); -- from DictEng -lin rontgen_N = mkN "röntgen" "röntgens"; -- from DictEng -lin rood_N = mkN "rood" "roods"; -- from DictEng -lin rood_tree_N = mkN "rood - tree" "rood - trees"; -- from DictEng -lin roof_N = mkN "roof" "roofs"; -- from DictEng -lin roof_V2 = mkV2 (mkV "roof" "roofs" "roofed" "roofed" "roofing"); -- from DictEng -lin roof_garden_N = mkN "roof - garden" "roof - gardens"; -- from DictEng -lin roof_tree_N = mkN "roof - tree" "roof - trees"; -- from DictEng -lin roofed_A = mkA "roofed" ; -lin roofer_N = mkN "roofer" ; -lin roofing_N = mkN "roofing" ; -- from DictEng -lin roofless_A = compoundA (mkA "roofless"); -- from DictEng -lin rooftop_N = mkN "rooftop" ; -lin rooibos_N = mkN "rooibos" ; -lin rook_N = mkN "rook" "rooks"; -- from DictEng -lin rook_V2 = mkV2 (mkV "rook" "rooks" "rooked" "rooked" "rooking"); -- from DictEng -lin rookery_N = mkN "rookery" "rookeries"; -- from DictEng -lin rookie_N = mkN "rookie" "rookies"; -- from DictEng -lin room_N = mkN "room" "rooms"; -- from DictEng -lin room_V = mkV "room" "rooms" "roomed" "roomed" "rooming"; -- from DictEng -lin room_mate_N = mkN "room - mate" "room - mates"; -- from DictEng -lin roomed_A = compoundA (mkA "roomed"); -- from DictEng -lin roomer_N = mkN "roomer" "roomers"; -- from DictEng -lin roomette_N = mkN "roomette" ; -lin roomful_N = mkN "roomful" "roomfuls"; -- from DictEng -lin roomily_Adv = mkAdv "roomily"; -- from DictEng -lin roommate_N = mkN "roommate" ; -lin roomy_A = mkA "roomy" "roomier"; -- from DictEng -lin roost_N = mkN "roost" "roosts"; -- from DictEng -lin roost_V = mkV "roost" "roosts" "roosted" "roosted" "roosting"; -- from DictEng -lin rooster_N = mkN "rooster" "roosters"; -- from DictEng -lin root_N = mkN "root" "roots"; -- from DictEng -lin root_V = mkV "root" "roots" "rooted" "rooted" "rooting"; -- from DictEng -lin root_V2 = mkV2 (mkV "root" "roots" "rooted" "rooted" "rooting"); -- from DictEng -lin rootage_N = mkN "rootage" ; -lin rootbound_A = mkA "rootbound" ; -lin rooting_N = mkN "rooting" ; -lin rootle_V = mkV "rootle" "rootles" "rootled" "rootled" "rootling"; -- from DictEng -lin rootless_A = compoundA (mkA "rootless"); -- from DictEng -lin rootlet_N = mkN "rootlet" ; -lin roots_N = mkN "roots" ; -lin rootstock_N = mkN "rootstock" ; -lin rope_N = mkN "rope" "ropes"; -- from DictEng -lin rope_V2 = mkV2 (mkV "rope" "ropes" "roped" "roped" "roping"); -- from DictEng -lin rope_a_dope_N = mkN "rope a dope" ; -lin rope_dancer_N = mkN "rope - dancer" "rope - dancers"; -- from DictEng -lin rope_ladder_N = mkN "rope - ladder" "rope - ladders"; -- from DictEng -lin rope_yard_N = mkN "rope - yard" "rope - yards"; -- from DictEng -lin rope_yarn_N = mkN "rope - yarn" ; -- from DictEng -lin ropemaker_N = mkN "ropemaker" ; -lin roper_N = mkN "roper" ; -lin ropewalk_N = mkN "ropewalk" "ropewalks"; -- from DictEng -lin ropewalker_N = mkN "ropewalker" "ropewalkers"; -- from DictEng -lin ropeway_N = mkN "ropeway" "ropeways"; -- from DictEng -lin ropey_A = mkA "ropey" "ropeyyer*"; -- from DictEng -lin roping_N = mkN "roping" ; -lin ropy_A = mkA "ropy" ; -lin roquefort_N = mkN "roquefort" ; -- from DictEng -lin roridula_N = mkN "roridula" ; -lin rorqual_N = mkN "rorqual" ; -lin rosaceous_A = mkA "rosaceous" ; -lin rosary_N = mkN "rosary" "rosaries"; -- from DictEng -lin rose_A = mkA "rose" ; -lin rose_N = mkN "rose" "roses"; -- from DictEng -lin rose_V = mkV "rose"; -- from DictEng -lin rose_V2 = mkV2 (mkV "rose"); -- from DictEng -lin rose_colored_A = compoundA (mkA "rose colored") ; -lin rose_lilac_A = compoundA (mkA "rose lilac") ; -lin rose_mauve_A = compoundA (mkA "rose mauve") ; -lin rose_purple_A = compoundA (mkA "rose purple") ; -lin rose_red_A = compoundA (mkA "rose - red"); -- from DictEng -lin rose_root_N = mkN "rose root" ; -lin rose_tinted_A = compoundA (mkA "rose tinted") ; -lin rose_bed_N = mkN "rose - bed" "rose - beds"; -- from DictEng -lin rose_leaf_N = mkN "rose - leaf" "rose - leaves"; -- from DictEng -lin rose_of_jericho_PN = mkPN "rose of Jericho" ; -lin rose_of_sharon_PN = mkPN "rose of Sharon" ; -lin rose_red_A = compoundA (mkA "rose - red"); -- from DictEng -lin rose_water_N = mkN "rose - water" ; -- from DictEng -lin roseate_A = compoundA (mkA "roseate"); -- from DictEng -lin rosebay_N = mkN "rosebay" ; -lin rosebud_N = mkN "rosebud" "rosebuds"; -- from DictEng -lin rosefish_N = mkN "rosefish" ; -lin roselle_N = mkN "roselle" ; -lin rosemaling_N = mkN "rosemaling" ; -lin rosemary_N = mkN "rosemary" ; -- from DictEng -lin rosette_N = mkN "rosette" "rosettes"; -- from DictEng -lin rosewood_N = mkN "rosewood" ; -- from DictEng -lin rosilla_N = mkN "rosilla" ; -lin rosin_N = mkN "rosin" ; -- from DictEng -lin rosin_V2 = mkV2 (mkV "rosin" "rosins" "rosinned" "rosinned" "rosinning"); -- from DictEng -lin rosinweed_N = mkN "rosinweed" ; -lin rosita_N = mkN "rosita" ; -lin roster_N = mkN "roster" "rosters"; -- from DictEng -lin rostrate_A = mkA "rostrate" ; -lin rostrum_N = mkN "rostrum" "rostrums"; -- from DictEng -lin rosy_A = mkA "rosy" "rosier"; -- from DictEng -lin rot_N = mkN "rot" ; -- from DictEng -lin rot_V = mkV "rot" "rots" "rotted" "rotted" "rotting"; -- from DictEng -lin rot_V2 = mkV2 (mkV "rot" "rots" "rotted" "rotted" "rotting"); -- from DictEng -lin rot_resistant_A = compoundA (mkA "rot resistant") ; -lin rota_N = mkN "rota" "rotas"; -- from DictEng -lin rotarian_N = mkN "rotarian" "rotarians"; -- from DictEng -lin rotary_A = compoundA (mkA "rotary"); -- from DictEng -lin rotary_N = mkN "rotary" "rotaries"; -- from DictEng -lin rotatable_A = mkA "rotatable" ; -lin rotate_V = mkV "rotate" "rotates" "rotated" "rotated" "rotating"; -- from DictEng -lin rotate_V2 = mkV2 (mkV "rotate" "rotates" "rotated" "rotated" "rotating"); -- from DictEng -lin rotated_A = mkA "rotated" ; -lin rotation_N = mkN "rotation" "rotations"; -- from DictEng -lin rotational_A = compoundA (mkA "rotational"); -- from DictEng -lin rotationally_Adv = mkAdv "rotationally" ; -lin rotatory_A = compoundA (mkA "rotatory"); -- from DictEng -lin rotavirus_N = mkN "rotavirus" ; -lin rote_N = mkN "rote" "IRREG"; -- from DictEng -lin rotenone_N = mkN "rotenone" ; -lin rotgut_N = mkN "rotgut" ; -- from DictEng -lin rotifer_N = mkN "rotifer" ; -lin rotisserie_N = mkN "rotisserie" "rotisseries"; -- from DictEng -lin rotl_N = mkN "rotl" ; -lin rotogravure_N = mkN "rotogravure" "rotogravures"; -- from DictEng -lin rotor_N = mkN "rotor" "rotors"; -- from DictEng -lin rotten_A = compoundA (mkA "rotten"); -- from DictEng -lin rottenness_N = mkN "rottenness" ; -- from DictEng -lin rottenstone_N = mkN "rottenstone" ; -lin rotter_N = mkN "rotter" "rotters"; -- from DictEng -lin rotund_A = compoundA (mkA "rotund"); -- from DictEng -lin rotunda_N = mkN "rotunda" "rotundas"; -- from DictEng -lin rotundity_N = mkN "rotundity" ; -- from DictEng -lin rouble_N = mkN "rouble" "roubles"; -- from DictEng -lin roue_N = mkN "roué" "roués"; -- from DictEng -lin rouge_N = mkN "rouge" ; -- from DictEng -lin rouge_V = mkV "rouge" "rouges" "rouged" "rouged" "rouging"; -- from DictEng -lin rouge_V2 = mkV2 (mkV "rouge" "rouges" "rouged" "rouged" "rouging"); -- from DictEng -lin rouged_A = mkA "rouged" ; -lin rough_A = mkA "rough" "rougher"; -- from DictEng -lin rough_Adv = mkAdv "rough"; -- from DictEng -lin rough_N = mkN "rough" "roughs"; -- from DictEng -lin rough_V2 = mkV2 (mkV "rough" "roughs" "roughed" "roughed" "roughing"); -- from DictEng -lin rough_and_ready_A = compoundA (mkA "rough and ready") ; -lin rough_and_tumble_A = compoundA (mkA "rough - and - tumble"); -- from DictEng -lin rough_haired_A = compoundA (mkA "rough haired") ; -lin rough_spoken_A = compoundA (mkA "rough - spoken"); -- from DictEng -lin rough_and_tumble_A = compoundA (mkA "rough - and - tumble"); -- from DictEng -lin rough_and_tumble_N = mkN "rough - and - tumble" "rough - and - tumbles"; -- from DictEng -lin rough_dry_V2 = mkV2 (mkV "rough - dry" "rough - dries" "rough - dried" "rough - dried" "rough - drying"); -- from DictEng -lin rough_hewn_A = compoundA (mkA "rough - hewn"); -- from DictEng -lin rough_house_V = mkV "rough - house" "rough - houses" "rough - housed" "rough - housed" "rough - housing"; -- from DictEng -lin rough_house_V2 = mkV2 (mkV "rough - house" "rough - houses" "rough - housed" "rough - housed" "rough - housing"); -- from DictEng -lin rough_spoken_A = compoundA (mkA "rough - spoken"); -- from DictEng -lin roughage_N = mkN "roughage" ; -- from DictEng -lin roughcast_N = mkN "roughcast" ; -- from DictEng -lin roughcast_V2 = mkV2 (mkV "rough" IrregEng.cast_V); -- from DictEng -lin roughdried_A = mkA "roughdried" ; -lin roughen_V = mkV "roughen" "roughens" "roughened" "roughened" "roughening"; -- from DictEng -lin roughen_V2 = mkV2 (mkV "roughen" "roughens" "roughened" "roughened" "roughening"); -- from DictEng -lin roughhewn_A = mkA "roughhewn" ; -lin roughish_A = compoundA (mkA "roughish"); -- from DictEng -lin roughly_Adv = mkAdv "roughly" ; -lin roughneck_N = mkN "roughneck" "roughnecks"; -- from DictEng -lin roughness_N = mkN "roughness" ; -- from DictEng -lin roughrider_N = mkN "roughrider" "roughriders"; -- from DictEng -lin roughshod_A = compoundA (mkA "roughshod"); -- from DictEng -lin roulade_N = mkN "roulade" ; -lin rouleau_N = mkN "rouleau" ; -lin roulette_N = mkN "roulette" ; -- from DictEng -lin round_A = mkA "round" "rounder"; -- from DictEng -lin round_Adv = mkAdv "round"; -- from DictEng -lin round_N = mkN "round" "rounds"; -- from DictEng -lin round_V = mkV "round" "rounds" "rounded" "rounded" "rounding"; -- from DictEng -lin round_V2 = mkV2 (mkV "round" "rounds" "rounded" "rounded" "rounding"); -- from DictEng -lin round_arm_A = compoundA (mkA "round - arm"); -- from DictEng -lin round_arm_Adv = mkAdv "round - arm"; -- from DictEng -lin round_bottomed_A = compoundA (mkA "round bottomed") ; -lin round_fruited_A = compoundA (mkA "round fruited") ; -lin round_arm_A = compoundA (mkA "round - arm"); -- from DictEng -lin round_arm_Adv = mkAdv "round - arm"; -- from DictEng -lin round_backed_A = compoundA (mkA "round - backed"); -- from DictEng -lin round_eyed_A = compoundA (mkA "round - eyed"); -- from DictEng -lin round_hand_N = mkN "round - hand" ; -- from DictEng -lin round_shot_N = mkN "round - shot" "round - shots"; -- from DictEng -lin round_shouldered_A = compoundA (mkA "round - shouldered"); -- from DictEng -lin round_the_clock_A = compoundA (mkA "round - the - clock"); -- from DictEng -lin round_the_clock_Adv = mkAdv "round - the - clock"; -- from DictEng -lin roundabout_A = compoundA (mkA "roundabout"); -- from DictEng -lin roundabout_N = mkN "roundabout" "roundabouts"; -- from DictEng -lin rounded_A = mkA "rounded" ; -lin roundedness_N = mkN "roundedness" ; -lin roundel_N = mkN "roundel" "roundels"; -- from DictEng -lin roundelay_N = mkN "roundelay" "roundelays"; -- from DictEng -lin rounder_N = mkN "rounder" ; -lin rounders_N = mkN "rounders" ; -lin roundhead_N = mkN "roundhead" "roundheads"; -- from DictEng -lin roundhouse_N = mkN "roundhouse" "roundhouses"; -- from DictEng -lin rounding_N = mkN "rounding" ; -lin roundish_A = compoundA (mkA "roundish"); -- from DictEng -lin roundly_Adv = mkAdv "roundly" ; -lin roundness_N = mkN "roundness" ; -- from DictEng -lin roundsman_N = mkN "roundsman" "roundsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin roundup_N = mkN "roundup" "roundups"; -- from DictEng -lin rouse_V = mkV "rouse" "rouses" "roused" "roused" "rousing"; -- from DictEng -lin rouse_V2 = mkV2 (mkV "rouse" "rouses" "roused" "roused" "rousing"); -- from DictEng -lin rousing_A = mkA "rousing" ; -lin roust_V2 = mkV2 (mkV "roust") ; -lin rout_N = mkN "rout" "routs"; -- from DictEng -lin rout_V2 = mkV2 (mkV "rout" "routs" "routed" "routed" "routing"); -- from DictEng -lin route_N = mkN "route" "routes"; -- from DictEng -lin route_V2 = mkV2 (mkV "route" "routes" "routed" "routed" "routing"); -- from DictEng -lin routemarch_N = mkN "routemarch" "routemarches"; -- from DictEng -lin router_N = mkN "router" ; -lin routine_A = compoundA (mkA "routine"); -- from DictEng -lin routine_N = mkN "routine" "routines"; -- from DictEng -lin routinely_Adv = mkAdv "routinely" ; -lin roux_N = mkN "roux" ; -lin rove_V = mkV "rove" "roves" "roved" "roved" "roving"; -- from DictEng -lin rove_V2 = mkV2 (mkV "rove" "roves" "roved" "roved" "roving"); -- from DictEng -lin rover_N = mkN "rover" "rovers"; -- from DictEng -lin row_N = mkN "row" "rows"; -- from DictEng -lin row_V = mkV "row" "rows" "rowed" "rowed" "rowing"; -- from DictEng -lin row_V2 = mkV2 (mkV "row" "rows" "rowed" "rowed" "rowing"); -- from DictEng -lin rowan_N = mkN "rowan" "rowans"; -- from DictEng -lin rowan_berry_N = mkN "rowan - berry" "rowan - berries"; -- from DictEng -lin rowan_tree_N = mkN "rowan - tree" "rowan - trees"; -- from DictEng -lin rowanberry_N = mkN "rowanberry" ; -lin rowboat_N = mkN "rowboat" "rowboats"; -- from DictEng -lin rowdily_Adv = mkAdv "rowdily"; -- from DictEng -lin rowdiness_N = mkN "rowdiness" ; -- from DictEng -lin rowdy_A = mkA "rowdy" "rowdier"; -- from DictEng -lin rowdy_N = mkN "rowdy" "rowdies"; -- from DictEng -lin rowdyism_N = mkN "rowdyism" ; -- from DictEng -lin rowel_N = mkN "rowel" "rowels"; -- from DictEng -lin rower_N = mkN "rower" "rowers"; -- from DictEng -lin rowing_N = mkN "rowing" ; -- from DictEng -lin rowing_boat_N = mkN "rowing - boat" "rowing - boats"; -- from DictEng -lin rowing_club_N = mkN "rowing - club" "rowing - clubs"; -- from DictEng -lin rowlock_N = mkN "rowlock" "rowlocks"; -- from DictEng -lin royal_A = compoundA (mkA "royal"); -- from DictEng -lin royal_N = mkN "royal" ; -lin royalism_N = mkN "royalism" ; -lin royalist_N = mkN "royalist" "royalists"; -- from DictEng -lin royally_Adv = mkAdv "royally" ; -lin royalty_N = mkN "royalty" "royalties"; -- from DictEng -lin rpm_N = mkN "rpm" "rpm"; -- from DictEng -lin rspca_N = mkN "rspca" ; -- from DictEng -lin rub_N = mkN "rub" "rubs"; -- from DictEng -lin rub_V = mkV "rub" "rubs" "rubbed" "rubbed" "rubbing"; -- from DictEng -lin rub_V2 = mkV2 (mkV "rub" "rubs" "rubbed" "rubbed" "rubbing"); -- from DictEng -lin rub_a_dub_N = mkN "rub - a - dub" ; -- from DictEng -lin rub_a_dub_N = mkN "rub - a - dub" ; -- from DictEng -lin rub_down_N = mkN "rub - down" "rub - downs"; -- from DictEng -lin rub_up_N = mkN "rub - up" "rub - ups"; -- from DictEng -lin rubato_N = mkN "rubato" ; -lin rubber_A = mkA "rubber" ; -lin rubber_N = mkN "rubber" "rubbers"; -- from DictEng -lin rubber_V2 = mkV2 (mkV "rubber" "rubbers" "rubbered" "rubbered" "rubbering"); -- from DictEng -lin rubber_necking_V = mkV "rubber - necking"; -- from DictEng -lin rubber_stamp_V2 = mkV2 (mkV "rubber - stamp" "rubber - stamps" "rubber - stamped" "rubber - stamped" "rubber - stamping"); -- from DictEng -lin rubberize_V2 = mkV2 (mkV "rubberize" "rubberizes" "rubberized" "rubberized" "rubberizing"); -- from DictEng -lin rubberneck_N = mkN "rubberneck" "rubbernecks"; -- from DictEng -lin rubberneck_V = mkV "rubberneck" "rubbernecks" "rubbernecked" "rubbernecked" "rubbernecking"; -- from DictEng -lin rubbery_A = compoundA (mkA "rubbery"); -- from DictEng -lin rubbing_N = mkN "rubbing" "rubbings"; -- from DictEng -lin rubbish_N = mkN "rubbish" ; -- from DictEng -lin rubbish_V2 = mkV2 (mkV "rubbish" "rubbishes" "rubbished" "rubbished" "rubbishing"); -- from DictEng -lin rubbishing_N = mkN "rubbishing" "rubbishings"; -- from DictEng -lin rubbishy_A = compoundA (mkA "rubbishy"); -- from DictEng -lin rubble_N = mkN "rubble" ; -- from DictEng -lin rubdown_N = mkN "rubdown" ; -lin rubefacient_N = mkN "rubefacient" ; -lin rubel_N = mkN "rubel" ; -lin rubicelle_N = mkN "rubicelle" ; -lin rubicon_N = mkN "rubicon" "rubicons"; -- from DictEng -lin rubicund_A = compoundA (mkA "rubicund"); -- from DictEng -lin rubidium_N = mkN "rubidium" ; -lin ruble_N = mkN "ruble" ; -lin rubric_N = mkN "rubric" "rubrics"; -- from DictEng -lin ruby_A = compoundA (mkA "ruby"); -- from DictEng -lin ruby_N = mkN "ruby" "rubies"; -- from DictEng -lin ruck_N = mkN "ruck" "rucks"; -- from DictEng -lin ruck_V = mkV "ruck" "rucks" "rucked" "rucked" "rucking"; -- from DictEng -lin ruck_V2 = mkV2 (mkV "ruck" "rucks" "rucked" "rucked" "rucking"); -- from DictEng -lin rucksack_N = mkN "rucksack" "rucksacks"; -- from DictEng -lin ruckus_N = mkN "ruckus" "ruckuss"; -- from DictEng -lin rudapithecus_N = mkN "rudapithecus" ; -lin rudd_N = mkN "rudd" ; -lin rudder_N = mkN "rudder" "rudders"; -- from DictEng -lin rudder_like_A = compoundA (mkA "rudder like") ; -lin rudderfish_N = mkN "rudderfish" ; -lin rudderless_A = compoundA (mkA "rudderless"); -- from DictEng -lin rudderpost_N = mkN "rudderpost" ; -lin ruddiness_N = mkN "ruddiness" ; -- from DictEng -lin ruddle_N = mkN "ruddle" ; -- from DictEng -lin ruddle_V2 = mkV2 (mkV "ruddle" "ruddles" "ruddled" "ruddled" "ruddling"); -- from DictEng -lin ruddy_A = mkA "ruddy" "ruddier"; -- from DictEng -lin rude_A = mkA "rude" "ruder"; -- from DictEng -lin rudeness_N = mkN "rudeness" "rudenesses"; -- from DictEng -lin rudiment_N = mkN "rudiment" "rudiments"; -- from DictEng -lin rudimentary_A = compoundA (mkA "rudimentary"); -- from DictEng -lin rue_N = mkN "rue" ; -- from DictEng -lin rue_V2 = mkV2 (mkV "rue" "rues" "rued" "rued" "ruing"); -- from DictEng -lin rueful_A = compoundA (mkA "rueful"); -- from DictEng -lin ruefully_Adv = mkAdv "ruefully" ; -lin ruff_N = mkN "ruff" "ruffs"; -- from DictEng -lin ruff_V = mkV "ruff" "ruffs" "ruffed" "ruffed" "ruffing"; -- from DictEng -lin ruff_V2 = mkV2 (mkV "ruff" "ruffs" "ruffed" "ruffed" "ruffing"); -- from DictEng -lin ruffian_N = mkN "ruffian" "ruffians"; -- from DictEng -lin ruffianism_N = mkN "ruffianism" ; -- from DictEng -lin ruffianly_A = compoundA (mkA "ruffianly"); -- from DictEng -lin ruffle_N = mkN "ruffle" "ruffles"; -- from DictEng -lin ruffle_V = mkV "ruffle" "ruffles" "ruffled" "ruffled" "ruffling"; -- from DictEng -lin ruffle_V2 = mkV2 (mkV "ruffle" "ruffles" "ruffled" "ruffled" "ruffling"); -- from DictEng -lin rug_N = mkN "rug" "rugs"; -- from DictEng -lin ruga_N = mkN "ruga" ; -lin rugby_N = mkN "rugby" ; -- from DictEng -lin rugged_A = compoundA (mkA "rugged"); -- from DictEng -lin ruggedization_N = mkN "ruggedization" ; -lin ruggedly_Adv = mkAdv "ruggedly" ; -lin ruggedness_N = mkN "ruggedness" ; -- from DictEng -lin rugger_N = mkN "rugger" ; -- from DictEng -lin rugose_A = mkA "rugose" ; -lin rugulah_N = mkN "rugulah" ; -lin ruin_N = mkN "ruin" "ruins"; -- from DictEng -lin ruin_V2 = mkV2 (mkV "ruin" "ruins" "ruined" "ruined" "ruining"); -- from DictEng -lin ruin_VS = mkVS (mkV "ruin"); -- from DictEng -lin ruination_N = mkN "ruination" ; -- from DictEng -lin ruinous_A = compoundA (mkA "ruinous"); -- from DictEng -lin ruinously_Adv = mkAdv "ruinously" ; -lin rule_N = mkN "rule" "rules"; -- from DictEng -lin rule_V = mkV "rule" "rules" "ruled" "ruled" "ruling"; -- from DictEng -lin rule_V2 = mkV2 (mkV "rule" "rules" "ruled" "ruled" "ruling"); -- from DictEng -lin rule_VS = mkVS (mkV "rule" "rules" "ruled" "ruled" "ruling"); -- from DictEng -lin ruled_A = mkA "ruled" ; -lin ruler_N = mkN "ruler" "rulers"; -- from DictEng -lin rulership_N = mkN "rulership" ; -lin ruling_A = compoundA (mkA "ruling"); -- from DictEng -lin ruling_N = mkN "ruling" "rulings"; -- from DictEng -lin ruly_A = mkA "ruly" ; -lin rum_N = mkN "rum" ; -- from DictEng -lin rum_runner_N = mkN "rum - runner" "rum - runners"; -- from DictEng -lin rumba_N = mkN "rumba" "rumbas"; -- from DictEng -lin rumble_N = mkN "rumble" "rumbles"; -- from DictEng -lin rumble_V = mkV "rumble" "rumbles" "rumbled" "rumbled" "rumbling"; -- from DictEng -lin rumble_V2 = mkV2 (mkV "rumble" "rumbles" "rumbled" "rumbled" "rumbling"); -- from DictEng -lin rumbling_N = mkN "rumbling" "rumblings"; -- from DictEng -lin rumbustious_A = compoundA (mkA "rumbustious"); -- from DictEng -lin rumen_N = mkN "rumen" ; -lin ruminant_A = compoundA (mkA "ruminant"); -- from DictEng -lin ruminant_N = mkN "ruminant" "ruminants"; -- from DictEng -lin ruminate_V = mkV "ruminate" "ruminates" "ruminated" "ruminated" "ruminating"; -- from DictEng -lin rumination_N = mkN "rumination" ; -- from DictEng -lin ruminative_A = compoundA (mkA "ruminative"); -- from DictEng -lin rummage_N = mkN "rummage" ; -- from DictEng -lin rummage_V = mkV "rummage" "rummages" "rummaged" "rummaged" "rummaging"; -- from DictEng -lin rummage_V2 = mkV2 (mkV "rummage" "rummages" "rummaged" "rummaged" "rummaging"); -- from DictEng -lin rummer_N = mkN "rummer" ; -lin rummy_A = mkA "rummy" "rummyyer*"; -- from DictEng -lin rummy_N = mkN "rummy" ; -- from DictEng -lin rumor_N = mkN "rumor" ; -lin rumor_V2 = mkV2 (mkV "rumor" "rumors" "rumored" "rumored" "rumoring"); -- from DictEng -lin rumor_V2V = mkV2V (mkV "rumor" "rumors" "rumored" "rumored" "rumoring") noPrep to_Prep ; -- from DictEng -lin rumor_VS = mkVS (mkV "rumor" "rumors" "rumored" "rumored" "rumoring"); -- from DictEng -lin rumour_N = mkN "rumour" "rumours"; -- from DictEng -lin rumour_V2 = mkV2 (mkV "rumour" "rumours" "rumoured" "rumoured" "rumouring"); -- from DictEng -lin rumour_monger_N = mkN "rumour - monger" "rumour - mongers"; -- from DictEng -lin rump_N = mkN "rump" "rumps"; -- from DictEng -lin rump_steak_N = mkN "rump - steak" "rump - steaks"; -- from DictEng -lin rumple_V2 = mkV2 (mkV "rumple" "rumples" "rumpled" "rumpled" "rumpling"); -- from DictEng -lin rumpus_N = mkN "rumpus" "rumpi" {- FIXME: guessed plural form -}; -- from DictEng -lin rumrunner_N = mkN "rumrunner" ; -lin run_N = mkN "run" "runs"; -- from DictEng -lin run_V = IrregEng.run_V; -- from DictEng -lin run_V2 = mkV2 (IrregEng.run_V); -- from DictEng -lin run_VS = mkVS (IrregEng.run_V); -- from DictEng -lin run_down_A = compoundA (mkA "run down") ; -lin run_of_the_mill_A = compoundA (mkA "run - of - the - mill"); -- from DictEng -lin run_on_A = compoundA (mkA "run on") ; -lin run_through_N = mkN "run - through" "run - throughs"; -- from DictEng -lin run_time_N = mkN "run time" ; -lin run_up_N = mkN "run - up" "run - ups"; -- from DictEng -lin run_of_the_mill_A = compoundA (mkA "run - of - the - mill"); -- from DictEng -lin run_off_N = mkN "run - off" "run - offs"; -- from DictEng -lin run_through_N = mkN "run - through" "run - throughs"; -- from DictEng -lin run_up_N = mkN "run - up" "run - ups"; -- from DictEng -lin runaway_A = compoundA (mkA "runaway"); -- from DictEng -lin runaway_N = mkN "runaway" "runaways"; -- from DictEng -lin runcinate_A = mkA "runcinate" ; -lin rundle_N = mkN "rundle" ; -lin rundown_A = compoundA (mkA "rundown"); -- from DictEng -lin rundown_N = mkN "rundown" "rundowns"; -- from DictEng -lin rune_N = mkN "rune" "runes"; -- from DictEng -lin rung_N = mkN "rung" "rungs"; -- from DictEng -lin rung_V2V = mkV2V (mkV "rung") noPrep to_Prep ; -- from DictEng -lin runic_A = compoundA (mkA "runic"); -- from DictEng -lin runnel_N = mkN "runnel" "runnels"; -- from DictEng -lin runner_N = mkN "runner" "runners"; -- from DictEng -lin runner_up_N = mkN "runner - up" "IRREG"; -- from DictEng -lin runner_up_N = mkN "runner - up" "IRREG"; -- from DictEng -lin running_A = compoundA (mkA "running"); -- from DictEng -lin running_N = mkN "running" ; -- from DictEng -lin running_board_N = mkN "running - board" "running - boards"; -- from DictEng -lin runny_A = mkA "runny" "runnier"; -- from DictEng -lin runoff_N = mkN "runoff" ; -lin runproof_A = mkA "runproof" ; -lin runt_N = mkN "runt" "runts"; -- from DictEng -lin runup_N = mkN "runup" ; -lin runway_N = mkN "runway" "runways"; -- from DictEng -lin rupee_N = mkN "rupee" "rupees"; -- from DictEng -lin rupestral_A = mkA "rupestral" ; -lin rupiah_N = mkN "rupiah" "rupiahs"; -- from DictEng -lin rupture_N = mkN "rupture" "ruptures"; -- from DictEng -lin rupture_V = mkV "rupture" "ruptures" "ruptured" "ruptured" "rupturing"; -- from DictEng -lin rupture_V2 = mkV2 (mkV "rupture" "ruptures" "ruptured" "ruptured" "rupturing"); -- from DictEng -lin rupturewort_N = mkN "rupturewort" ; -lin rural_A = compoundA (mkA "rural"); -- from DictEng -lin ruralism_N = mkN "ruralism" ; -lin ruralist_N = mkN "ruralist" ; -lin rurality_N = mkN "rurality" ; -lin rurally_Adv = mkAdv "rurally" ; -lin ruritanian_A = compoundA (mkA "ruritanian"); -- from DictEng -lin ruse_N = mkN "ruse" "ruses"; -- from DictEng -lin rush_A = mkA "rush" ; -lin rush_N = mkN "rush" "rushes"; -- from DictEng -lin rush_V = mkV "rush" "rushes" "rushed" "rushed" "rushing"; -- from DictEng -lin rush_V2 = mkV2 (mkV "rush" "rushes" "rushed" "rushed" "rushing"); -- from DictEng -lin rush_V2V = mkV2V (mkV "rush" "rushes" "rushed" "rushed" "rushing") noPrep to_Prep ; -- from DictEng -lin rush_VS = mkVS (mkV "rush" "rushes" "rushed" "rushed" "rushing"); -- from DictEng -lin rusher_N = mkN "rusher" ; -lin rushlight_N = mkN "rushlight" "rushlights"; -- from DictEng -lin rushlike_A = mkA "rushlike" ; -lin rushy_A = mkA "rushy" "rushier"; -- from DictEng -lin rusk_N = mkN "rusk" "rusks"; -- from DictEng -lin russet_A = compoundA (mkA "russet"); -- from DictEng -lin russet_N = mkN "russet" "russets"; -- from DictEng -lin russian_A = compoundA (mkA "Russian"); -- from DictEng -lin russian_N = mkN "Russian" "Russians"; -- from DictEng -lin rust_A = mkA "rust" ; -lin rust_N = mkN "rust" ; -- from DictEng -lin rust_V = mkV "rust" "rusts" "rusted" "rusted" "rusting"; -- from DictEng -lin rust_V2 = mkV2 (mkV "rust" "rusts" "rusted" "rusted" "rusting"); -- from DictEng -lin rust_colored_A = compoundA (mkA "rust colored") ; -lin rust_free_A = compoundA (mkA "rust free") ; -lin rust_red_A = compoundA (mkA "rust red") ; -lin rust_resistant_A = compoundA (mkA "rust resistant") ; -lin rusted_A = mkA "rusted" ; -lin rustic_A = compoundA (mkA "rustic"); -- from DictEng -lin rustic_N = mkN "rustic" "rustics"; -- from DictEng -lin rusticate_V = mkV "rusticate" "rusticates" "rusticated" "rusticated" "rusticating"; -- from DictEng -lin rusticate_V2 = mkV2 (mkV "rusticate" "rusticates" "rusticated" "rusticated" "rusticating"); -- from DictEng -lin rustication_N = mkN "rustication" ; -lin rusticity_N = mkN "rusticity" ; -- from DictEng -lin rustiness_N = mkN "rustiness" ; -- from DictEng -lin rustle_N = mkN "rustle" ; -- from DictEng -lin rustle_V = mkV "rustle" "rustles" "rustled" "rustled" "rustling"; -- from DictEng -lin rustle_V2 = mkV2 (mkV "rustle" "rustles" "rustled" "rustled" "rustling"); -- from DictEng -lin rustler_N = mkN "rustler" "rustlers"; -- from DictEng -lin rustless_A = compoundA (mkA "rustless"); -- from DictEng -lin rustling_N = mkN "rustling" "rustlings"; -- from DictEng -lin rustproof_A = mkA "rustproof" ; -lin rusty_A = mkA "rusty" "rustier"; -- from DictEng -lin rusty_brown_A = compoundA (mkA "rusty brown") ; -lin rut_N = mkN "rut" "ruts"; -- from DictEng -lin rut_V2 = mkV2 (mkV "rut" "ruts" "rutted" "rutted" "rutting"); -- from DictEng -lin rutabaga_N = mkN "rutabaga" ; -lin ruthenium_N = mkN "ruthenium" ; -lin rutherford_N = mkN "rutherford" ; -lin rutherfordium_N = mkN "rutherfordium" ; -lin ruthless_A = compoundA (mkA "ruthless"); -- from DictEng -lin ruthlessly_Adv = mkAdv "ruthlessly" ; -lin ruthlessness_N = mkN "ruthlessness" ; -- from DictEng -lin rutile_N = mkN "rutile" ; -lin rutted_A = mkA "rutted" ; -lin rwandan_A = compoundA (mkA "rwandan"); -- from DictEng -lin rwandan_N = mkN "rwandan" "rwandans"; -- from DictEng -lin rya_N = mkN "rya" ; -lin rydberg_N = mkN "rydberg" ; -lin rye_N = mkN "rye" ; -- from DictEng -lin rye_bread_N = mkN "rye - bread" ; -- from DictEng -lin s_shaped_A = compoundA (mkA "s shaped") ; -lin sabahan_A = compoundA (mkA "sabahan"); -- from DictEng -lin sabahan_N = mkN "sabahan" "sabahans"; -- from DictEng -lin sabbat_N = mkN "sabbat" ; -lin sabbatarian_A = compoundA (mkA "sabbatarian"); -- from DictEng -lin sabbatarian_N = mkN "sabbatarian" "sabbatarians"; -- from DictEng -lin sabbath_N = mkN "sabbath" "sabbaths"; -- from DictEng -lin sabbatia_N = mkN "sabbatia" ; -lin sabbatical_A = compoundA (mkA "sabbatical"); -- from DictEng -lin sabbatical_N = mkN "sabbatical" "sabbaticals"; -- from DictEng -lin saber_N = mkN "saber" ; -lin saber_toothed_A = compoundA (mkA "saber toothed") ; -lin sabicu_N = mkN "sabicu" ; -lin sabin_N = mkN "sabin" ; -lin sable_A = compoundA (mkA "sable"); -- from DictEng -lin sable_N = mkN "sable" "sables"; -- from DictEng -lin sabot_N = mkN "sabot" "sabots"; -- from DictEng -lin sabotage_N = mkN "sabotage" ; -- from DictEng -lin sabotage_V2 = mkV2 (mkV "sabotage" "sabotages" "sabotaged" "sabotaged" "sabotaging"); -- from DictEng -lin saboteur_N = mkN "saboteur" "saboteurs"; -- from DictEng -lin sabra_N = mkN "sabra" ; -lin sabre_N = mkN "sabre" "sabres"; -- from DictEng -lin sabre_V2 = mkV2 (mkV "sabre" "sabres" "sabred" "sabred" "sabring"); -- from DictEng -lin sabre_rattling_N = mkN "sabre - rattling" ; -- from DictEng -lin sabre_toothed_A = compoundA (mkA "sabre - toothed"); -- from DictEng -lin sac_N = mkN "sac" "sacs"; -- from DictEng -lin saccade_N = mkN "saccade" ; -lin saccadic_A = mkA "saccadic" ; -lin saccharin_N = mkN "saccharin" ; -- from DictEng -lin saccharine_A = compoundA (mkA "saccharine"); -- from DictEng -lin saccharinity_N = mkN "saccharinity" ; -lin sacculated_A = mkA "sacculated" ; -lin saccule_N = mkN "saccule" ; -lin sacerdotal_A = compoundA (mkA "sacerdotal"); -- from DictEng -lin sacerdotalism_N = mkN "sacerdotalism" ; -- from DictEng -lin sachem_N = mkN "sachem" ; -lin sachet_N = mkN "sachet" "sachets"; -- from DictEng -lin sack_N = mkN "sack" "sacks"; -- from DictEng -lin sack_V2 = mkV2 (mkV "sack" "sacks" "sacked" "sacked" "sacking"); -- from DictEng -lin sack_race_N = mkN "sack - race" "sack - races"; -- from DictEng -lin sackbut_N = mkN "sackbut" "sackbuts"; -- from DictEng -lin sackcloth_N = mkN "sackcloth" ; -- from DictEng -lin sacking_N = mkN "sacking" ; -- from DictEng -lin sacral_A = mkA "sacral" ; -lin sacrament_N = mkN "sacrament" "sacraments"; -- from DictEng -lin sacramental_A = compoundA (mkA "sacramental"); -- from DictEng -lin sacred_A = compoundA (mkA "sacred"); -- from DictEng -lin sacredness_N = mkN "sacredness" ; -- from DictEng -lin sacrifice_N = mkN "sacrifice" "sacrifices"; -- from DictEng -lin sacrifice_V = mkV "sacrifice" "sacrifices" "sacrificed" "sacrificed" "sacrificing"; -- from DictEng -lin sacrifice_V2 = mkV2 (mkV "sacrifice" "sacrifices" "sacrificed" "sacrificed" "sacrificing"); -- from DictEng -lin sacrificeable_A = mkA "sacrificeable" ; -lin sacrificer_N = mkN "sacrificer" ; -lin sacrificial_A = compoundA (mkA "sacrificial"); -- from DictEng -lin sacrilege_N = mkN "sacrilege" ; -- from DictEng -lin sacrilegious_A = compoundA (mkA "sacrilegious"); -- from DictEng -lin sacrilegiously_Adv = mkAdv "sacrilegiously" ; -lin sacrilegiousness_N = mkN "sacrilegiousness" ; -lin sacristan_N = mkN "sacristan" "sacristans"; -- from DictEng -lin sacristy_N = mkN "sacristy" "sacristies"; -- from DictEng -lin sacrosanct_A = compoundA (mkA "sacrosanct"); -- from DictEng -lin sacrum_N = mkN "sacrum" ; -lin sad_A = mkA "sad" "sadder*"; -- from DictEng -lin sad_faced_A = compoundA (mkA "sad faced") ; -lin sadden_V = mkV "sadden" "saddens" "saddened" "saddened" "saddening"; -- from DictEng -lin sadden_V2 = mkV2 (mkV "sadden" "saddens" "saddened" "saddened" "saddening"); -- from DictEng -lin saddle_N = mkN "saddle" "saddles"; -- from DictEng -lin saddle_V = mkV "saddle"; -- from DictEng -lin saddle_V2 = mkV2 (mkV "saddle" "saddles" "saddled" "saddled" "saddling"); -- from DictEng -lin saddle_shaped_A = compoundA (mkA "saddle shaped") ; -lin saddle_sore_A = compoundA (mkA "saddle - sore"); -- from DictEng -lin saddle_sore_A = compoundA (mkA "saddle - sore"); -- from DictEng -lin saddleback_N = mkN "saddleback" ; -lin saddlebag_N = mkN "saddlebag" "saddlebags"; -- from DictEng -lin saddlebill_N = mkN "saddlebill" ; -lin saddled_A = mkA "saddled" ; -lin saddler_N = mkN "saddler" "saddlers"; -- from DictEng -lin saddlery_N = mkN "saddlery" "saddleries"; -- from DictEng -lin sadhe_N = mkN "sadhe" ; -lin sadhu_N = mkN "sadhu" "sadhus"; -- from DictEng -lin sadism_N = mkN "sadism" ; -- from DictEng -lin sadist_N = mkN "sadist" "sadists"; -- from DictEng -lin sadistic_A = compoundA (mkA "sadistic"); -- from DictEng -lin sadly_Adv = mkAdv "sadly" ; -lin sadness_N = mkN "sadness" ; -- from DictEng -lin sado_masochist_N = mkN "sado - masochist" "sado - masochists"; -- from DictEng -lin sadomasochism_N = mkN "sadomasochism" ; -- from DictEng -lin sadomasochist_N = mkN "sadomasochist" ; -lin sadomasochistic_A = mkA "sadomasochistic" ; -lin sae_N = mkN "sae" ; -- from DictEng -lin safari_N = mkN "safari" "safaris"; -- from DictEng -lin safe_A = mkA "safe" "safer"; -- from DictEng -lin safe_N = mkN "safe" "safes"; -- from DictEng -lin safe_conduct_N = mkN "safe - conduct" ; -- from DictEng -lin safe_deposit_N = mkN "safe - deposit" "safe - deposits"; -- from DictEng -lin safe_and_sound_A = compoundA (mkA "safe and sound") ; -lin safe_conduct_N = mkN "safe - conduct" ; -- from DictEng -lin safe_deposit_A = compoundA (mkA "safe - deposit"); -- from DictEng -lin safe_deposit_N = mkN "safe - deposit" "safe - deposits"; -- from DictEng -lin safebreaker_N = mkN "safebreaker" ; -lin safecracker_N = mkN "safecracker" "safecrackers"; -- from DictEng -lin safeguard_N = mkN "safeguard" "safeguards"; -- from DictEng -lin safeguard_V2 = mkV2 (mkV "safeguard" "safeguards" "safeguarded" "safeguarded" "safeguarding"); -- from DictEng -lin safehold_N = mkN "safehold" ; -lin safekeeping_N = mkN "safekeeping" ; -- from DictEng -lin safely_Adv = mkAdv "safely" ; -lin safeness_N = mkN "safeness" ; -- from DictEng -lin safety_N = mkN "safety" ; -- from DictEng -lin safety_related_A = compoundA (mkA "safety related") ; -lin safety_belt_N = mkN "safety - belt" "safety - belts"; -- from DictEng -lin safety_bolt_N = mkN "safety - bolt" "safety - bolts"; -- from DictEng -lin safety_catch_N = mkN "safety - catch" "safety - catches"; -- from DictEng -lin safety_curtain_N = mkN "safety - curtain" "safety - curtains"; -- from DictEng -lin safety_factor_N = mkN "safety - factor" "safety - factors"; -- from DictEng -lin safety_lamp_N = mkN "safety - lamp" "safety - lamps"; -- from DictEng -lin safety_lock_N = mkN "safety - lock" "safety - locks"; -- from DictEng -lin safety_match_N = mkN "safety - match" "safety - matches"; -- from DictEng -lin safety_pin_N = mkN "safety - pin" "safety - pins"; -- from DictEng -lin safety_razor_N = mkN "safety - razor" "safety - razors"; -- from DictEng -lin safety_valve_N = mkN "safety - valve" "safety - valves"; -- from DictEng -lin safflower_N = mkN "safflower" ; -lin saffron_N = mkN "saffron" "saffrons"; -- from DictEng -lin safranine_N = mkN "safranine" ; -lin sag_N = mkN "sag" "sags"; -- from DictEng -lin sag_V = mkV "sag" "sags" "sagged" "sagged" "sagging"; -- from DictEng -lin saga_N = mkN "saga" "sagas"; -- from DictEng -lin sagacious_A = compoundA (mkA "sagacious"); -- from DictEng -lin sagacity_N = mkN "sagacity" ; -- from DictEng -lin sage_A = compoundA (mkA "sage"); -- from DictEng -lin sage_N = mkN "sage" "sages"; -- from DictEng -lin sage_green_A = compoundA (mkA "sage - green"); -- from DictEng -lin sage_green_N = mkN "sage - green" ; -- from DictEng -lin sagebrush_N = mkN "sagebrush" ; -lin sagitta_N = mkN "sagitta" ; -lin sagittal_A = mkA "sagittal" ; -lin sagittate_A = mkA "sagittate" ; -lin sagittate_leaf_N = mkN "sagittate leaf" ; -lin sago_N = mkN "sago" ; -- from DictEng -lin saguaro_N = mkN "saguaro" ; -lin sahib_N = mkN "sahib" "sahibs"; -- from DictEng -lin said_A = compoundA (mkA "said"); -- from DictEng -lin saiga_N = mkN "saiga" ; -lin sail_N = mkN "sail" "sails"; -- from DictEng -lin sail_V = mkV "sail" "sails" "sailed" "sailed" "sailing"; -- from DictEng -lin sail_V2 = mkV2 (mkV "sail" "sails" "sailed" "sailed" "sailing"); -- from DictEng -lin sailboat_N = mkN "sailboat" ; -lin sailcloth_N = mkN "sailcloth" ; -- from DictEng -lin sailfish_N = mkN "sailfish" ; -lin sailing_N = mkN "sailing" "sailings"; -- from DictEng -lin sailing_race_N = mkN "sailing race" ; -lin sailing_boat_N = mkN "sailing - boat" "sailing - boats"; -- from DictEng -lin sailing_master_N = mkN "sailing - master" "sailing - masters"; -- from DictEng -lin sailing_ship_N = mkN "sailing - ship" "sailing - ships"; -- from DictEng -lin sailing_vessel_N = mkN "sailing - vessel" "sailing - vessels"; -- from DictEng -lin sailmaker_N = mkN "sailmaker" ; -lin sailor_N = mkN "sailor" "sailors"; -- from DictEng -lin sailor's_choice_N = mkN "sailor's choice" ; -lin sainfoin_N = mkN "sainfoin" ; -lin saint_N = mkN "saint" "saints"; -- from DictEng -lin saint's_day_N = mkN "saint's - day" "saint's - days"; -- from DictEng -lin sainted_A = compoundA (mkA "sainted"); -- from DictEng -lin sainthood_N = mkN "sainthood" ; -- from DictEng -lin saintlike_A = compoundA (mkA "saintlike"); -- from DictEng -lin saintliness_N = mkN "saintliness" ; -- from DictEng -lin saintly_A = mkA "saintly" "saintlier"; -- from DictEng -lin sake_N = mkN "sake" ; -lin sake_1_N = mkN "sake" "sakes"; -- from DictEng -lin sake_2_N = mkN "saké" "sakés" ; -- from DictEng -lin saki_N = mkN "saki" ; -lin sal_volatile_N = mkN "sal volatile" "sal volatiles" ; -- from DictEng -lin salaam_N = mkN "salaam" "salaams"; -- from DictEng -lin salaam_V = mkV "salaam" "salaams" "salaamed" "salaamed" "salaaming"; -- from DictEng -lin salaam_V2 = mkV2 (mkV "salaam") ; -lin salability_N = mkN "salability" ; -lin salable_A = compoundA (mkA "salable"); -- from DictEng -lin salacious_A = compoundA (mkA "salacious"); -- from DictEng -lin salaciousness_N = mkN "salaciousness" ; -- from DictEng -lin salacity_N = mkN "salacity" ; -- from DictEng -lin salad_N = mkN "salad" "salads"; -- from DictEng -lin salad_dressing_N = mkN "salad - dressing" "salad - dressings"; -- from DictEng -lin salad_oil_N = mkN "salad - oil" "salad - oils"; -- from DictEng -lin salai_N = mkN "salai" ; -lin salal_N = mkN "salal" ; -lin salamander_N = mkN "salamander" "salamanders"; -- from DictEng -lin salamandriform_A = mkA "salamandriform" ; -lin salami_N = mkN "salami" ; -- from DictEng -lin salaried_A = compoundA (mkA "salaried"); -- from DictEng -lin salary_N = mkN "salary" "salaries"; -- from DictEng -lin salat_N = mkN "salat" ; -lin sale_N = mkN "sale" "sales"; -- from DictEng -lin saleable_A = compoundA (mkA "saleable"); -- from DictEng -lin saleroom_N = mkN "saleroom" "salerooms"; -- from DictEng -lin salesclerk_N = mkN "salesclerk" ; -lin salesgirl_N = mkN "salesgirl" ; -lin salesman_N = mkN "salesman" "salesmen" {- FIXME: guessed plural form -}; -- from DictEng -lin salesmanship_N = mkN "salesmanship" ; -- from DictEng -lin salesperson_N = mkN "salesperson" ; -lin saleswoman_N = mkN "saleswoman" "saleswomen" {- FIXME: guessed plural form -}; -- from DictEng -lin salicylate_N = mkN "salicylate" ; -lin salience_N = mkN "salience" ; -- from DictEng -lin salient_A = compoundA (mkA "salient"); -- from DictEng -lin salient_N = mkN "salient" "salients"; -- from DictEng -lin saliferous_A = mkA "saliferous" ; -lin saline_A = compoundA (mkA "saline"); -- from DictEng -lin saline_N = mkN "saline" "salines"; -- from DictEng -lin salinity_N = mkN "salinity" ; -- from DictEng -lin salinometer_N = mkN "salinometer" ; -lin saliva_N = mkN "saliva" ; -- from DictEng -lin salivary_A = compoundA (mkA "salivary"); -- from DictEng -lin salivate_V = mkV "salivate" "salivates" "salivated" "salivated" "salivating"; -- from DictEng -lin salivation_N = mkN "salivation" ; -lin sallet_N = mkN "sallet" ; -lin sallow_A = mkA "sallow" "sallower"; -- from DictEng -lin sallow_N = mkN "sallow" ; -lin sallow_V = mkV "sallow" "sallows" "sallowed" "sallowed" "sallowing"; -- from DictEng -lin sallow_V2 = mkV2 (mkV "sallow" "sallows" "sallowed" "sallowed" "sallowing"); -- from DictEng -lin sallowness_N = mkN "sallowness" ; -lin sally_N = mkN "sally" "sallies"; -- from DictEng -lin sally_V = mkV "sally" "sallies" "sallied" "sallied" "sallying"; -- from DictEng -lin salmagundi_N = mkN "salmagundi" ; -lin salmi_N = mkN "salmi" ; -lin salmon_N = mkN "salmon" "salmon"; -- from DictEng -lin salmonberry_N = mkN "salmonberry" ; -lin salmonella_N = mkN "salmonella" ; -lin salmonellosis_N = mkN "salmonellosis" ; -lin salmonid_N = mkN "salmonid" ; -lin salol_N = mkN "salol" ; -lin salon_N = mkN "salon" "salons"; -- from DictEng -lin saloon_N = mkN "saloon" "saloons"; -- from DictEng -lin salp_N = mkN "salp" ; -lin salpiglossis_N = mkN "salpiglossis" ; -lin salpingectomy_N = mkN "salpingectomy" ; -lin salpingitis_N = mkN "salpingitis" ; -lin salpinx_N = mkN "salpinx" ; -lin salsa_N = mkN "salsa" ; -lin salsify_N = mkN "salsify" ; -- from DictEng -lin salsilla_N = mkN "salsilla" ; -lin salt_A = compoundA (mkA "salt"); -- from DictEng -lin salt_N = mkN "salt" "salts"; -- from DictEng -lin salt_V2 = mkV2 (mkV "salt" "salts" "salted" "salted" "salting"); -- from DictEng -lin salt_cellar_N = mkN "salt - cellar" "salt - cellars"; -- from DictEng -lin salt_lick_N = mkN "salt - lick" "salt - licks"; -- from DictEng -lin saltation_N = mkN "saltation" ; -lin saltbox_N = mkN "saltbox" ; -lin saltbush_N = mkN "saltbush" ; -lin saltcellar_N = mkN "saltcellar" ; -lin salted_A = mkA "salted" ; -lin salter_N = mkN "salter" ; -lin saltine_N = mkN "saltine" ; -lin saltiness_N = mkN "saltiness" ; -- from DictEng -lin salting_N = mkN "salting" ; -lin saltish_A = mkA "saltish" ; -lin saltlike_A = mkA "saltlike" ; -lin saltpan_N = mkN "saltpan" "saltpans"; -- from DictEng -lin saltpetre_N = mkN "saltpetre" ; -- from DictEng -lin saltshaker_N = mkN "saltshaker" ; -lin saltwater_N = mkN "saltwater" ; -- from DictEng -lin saltworks_N = mkN "saltworks" "saltworks"; -- from DictEng -lin saltwort_N = mkN "saltwort" ; -lin salty_A = mkA "salty" "saltier"; -- from DictEng -lin salubrious_A = compoundA (mkA "salubrious"); -- from DictEng -lin salubrity_N = mkN "salubrity" ; -- from DictEng -lin salutary_A = compoundA (mkA "salutary"); -- from DictEng -lin salutation_N = mkN "salutation" "salutations"; -- from DictEng -lin salutatorian_N = mkN "salutatorian" ; -lin salute_N = mkN "salute" "salutes"; -- from DictEng -lin salute_V = mkV "salute" "salutes" "saluted" "saluted" "saluting"; -- from DictEng -lin salute_V2 = mkV2 (mkV "salute" "salutes" "saluted" "saluted" "saluting"); -- from DictEng -lin salvadorean_A = compoundA (mkA "salvadorean"); -- from DictEng -lin salvadorean_N = mkN "salvadorean" "salvadoreans"; -- from DictEng -lin salvage_N = mkN "salvage" ; -- from DictEng -lin salvage_V2 = mkV2 (mkV "salvage" "salvages" "salvaged" "salvaged" "salvaging"); -- from DictEng -lin salvageable_A = mkA "salvageable" ; -lin salvager_N = mkN "salvager" ; -lin salvation_N = mkN "salvation" ; -- from DictEng -lin salve_N = mkN "salve" "salves"; -- from DictEng -lin salve_V2 = mkV2 (mkV "salve" "salves" "salved" "salved" "salving"); -- from DictEng -lin salver_N = mkN "salver" "salvers"; -- from DictEng -lin salverform_A = mkA "salverform" ; -lin salvia_N = mkN "salvia" "salvias"; -- from DictEng -lin salvific_A = mkA "salvific" ; -lin salvinorin_N = mkN "salvinorin" ; -lin salvo_N = mkN "salvo" "salvos"; -- from DictEng -lin salwar_N = mkN "salwar" ; -lin samara_N = mkN "samara" ; -lin samaritan_N = mkN "samaritan" "samaritans"; -- from DictEng -lin samarium_N = mkN "samarium" ; -lin samarskite_N = mkN "samarskite" ; -lin samba_N = mkN "samba" "sambas"; -- from DictEng -lin sambar_N = mkN "sambar" ; -lin sambuca_N = mkN "sambuca" ; -lin same_A = compoundA (mkA "same"); -- from DictEng -lin same_Adv = mkAdv "same"; -- from DictEng -lin samekh_N = mkN "samekh" ; -lin sameness_N = mkN "sameness" ; -- from DictEng -lin samisen_N = mkN "samisen" ; -lin samite_N = mkN "samite" ; -lin samizdat_N = mkN "samizdat" ; -lin samoan_A = compoundA (mkA "samoan"); -- from DictEng -lin samoan_N = mkN "samoan" "samoans"; -- from DictEng -lin samosa_N = mkN "samosa" ; -lin samovar_N = mkN "samovar" "samovars"; -- from DictEng -lin sampan_N = mkN "sampan" "sampans"; -- from DictEng -lin sample_N = mkN "sample" "samples"; -- from DictEng -lin sample_V2 = mkV2 (mkV "sample" "samples" "sampled" "sampled" "sampling"); -- from DictEng -lin sampler_N = mkN "sampler" "samplers"; -- from DictEng -lin sampling_N = mkN "sampling" ; -lin samsara_N = mkN "samsara" ; -lin samurai_N = mkN "samurai" "samurai"; -- from DictEng -lin san_marinese_A = compoundA (mkA "san marinese"); -- from DictEng -lin san_marinese_N = mkN "san marinese" "san marinese"; -- from DictEng -lin sanatorium_N = mkN "sanatorium" "sanatoriums"; -- from DictEng -lin sanctification_N = mkN "sanctification" "sanctifications"; -- from DictEng -lin sanctify_V2 = mkV2 (mkV "sanctify" "sanctifies" "sanctified" "sanctified" "sanctifying"); -- from DictEng -lin sanctimonious_A = compoundA (mkA "sanctimonious"); -- from DictEng -lin sanctimoniously_Adv = mkAdv "sanctimoniously" ; -lin sanctimoniousness_N = mkN "sanctimoniousness" ; -lin sanction_N = mkN "sanction" "sanctions"; -- from DictEng -lin sanction_V2 = mkV2 (mkV "sanction" "sanctions" "sanctioned" "sanctioned" "sanctioning"); -- from DictEng -lin sanctionative_A = mkA "sanctionative" ; -lin sanctity_N = mkN "sanctity" "sanctities"; -- from DictEng -lin sanctuary_N = mkN "sanctuary" "sanctuaries"; -- from DictEng -lin sanctum_N = mkN "sanctum" "sanctums"; -- from DictEng -lin sand_N = mkN "sand" "sands"; -- from DictEng -lin sand_V2 = mkV2 (mkV "sand" "sands" "sanded" "sanded" "sanding"); -- from DictEng -lin sand_bar_N = mkN "sand - bar" "sand - bars"; -- from DictEng -lin sandal_N = mkN "sandal" "sandals"; -- from DictEng -lin sandaled_A = mkA "sandaled" ; -lin sandalled_A = compoundA (mkA "sandalled"); -- from DictEng -lin sandalwood_N = mkN "sandalwood" ; -- from DictEng -lin sandarac_N = mkN "sandarac" ; -lin sandbag_N = mkN "sandbag" "sandbags"; -- from DictEng -lin sandbagger_N = mkN "sandbagger" ; -lin sandbank_N = mkN "sandbank" "sandbanks"; -- from DictEng -lin sandbar_N = mkN "sandbar" ; -lin sandblast_N = mkN "sandblast" ; -lin sandblast_V2 = mkV2 (mkV "sandblast" "sandblasts" "sandblasted" "sandblasted" "sandblasting"); -- from DictEng -lin sandblaster_N = mkN "sandblaster" ; -lin sandbox_N = mkN "sandbox" ; -lin sandboy_N = mkN "sandboy" "sandboys"; -- from DictEng -lin sandbur_N = mkN "sandbur" ; -lin sanderling_N = mkN "sanderling" ; -lin sandfish_N = mkN "sandfish" ; -lin sandfly_N = mkN "sandfly" "sandflies"; -- from DictEng -lin sandglass_N = mkN "sandglass" "sandglasses"; -- from DictEng -lin sandgrouse_N = mkN "sandgrouse" ; -lin sandhi_N = mkN "sandhi" ; -lin sandiness_N = mkN "sandiness" ; -- from DictEng -lin sandlot_N = mkN "sandlot" ; -lin sandman_N = mkN "sandman" ; -lin sandpaper_N = mkN "sandpaper" "sandpapers"; -- from DictEng -lin sandpaper_V = mkV "sandpaper" ; -lin sandpaper_V2 = mkV2 (mkV "sandpaper" "sandpapers" "sandpapered" "sandpapered" "sandpapering"); -- from DictEng -lin sandpapery_A = mkA "sandpapery" ; -lin sandpiper_N = mkN "sandpiper" "sandpipers"; -- from DictEng -lin sandpit_N = mkN "sandpit" "sandpits"; -- from DictEng -lin sandstone_N = mkN "sandstone" ; -- from DictEng -lin sandstorm_N = mkN "sandstorm" "sandstorms"; -- from DictEng -lin sandwich_N = mkN "sandwich" "sandwiches"; -- from DictEng -lin sandwich_V = mkV "sandwich"; -- from DictEng -lin sandwich_V2 = mkV2 (mkV "sandwich" "sandwiches" "sandwiched" "sandwiched" "sandwiching"); -- from DictEng -lin sandwich_board_N = mkN "sandwich - board" "sandwich - boards"; -- from DictEng -lin sandwichman_N = mkN "sandwichman" "sandwichmen" {- FIXME: guessed plural form -}; -- from DictEng -lin sandwort_N = mkN "sandwort" ; -lin sandy_A = mkA "sandy" "sandier"; -- from DictEng -lin sane_A = mkA "sane" "saner"; -- from DictEng -lin sanely_Adv = mkAdv "sanely" ; -lin sang_froid_N = mkN "sang froid" ; -- from DictEng -lin sangapenum_N = mkN "sangapenum" ; -lin sangaree_N = mkN "sangaree" ; -lin sango_N = mkN "sango" ; -- from DictEng -lin sangoma_N = mkN "sangoma" ; -lin sanguinary_A = compoundA (mkA "sanguinary"); -- from DictEng -lin sanguine_A = compoundA (mkA "sanguine"); -- from DictEng -lin sanguine_N = mkN "sanguine" ; -lin sanguinity_N = mkN "sanguinity" ; -lin sanicle_N = mkN "sanicle" ; -lin sanitariness_N = mkN "sanitariness" ; -lin sanitary_A = compoundA (mkA "sanitary"); -- from DictEng -lin sanitation_N = mkN "sanitation" ; -- from DictEng -lin sanitize_V2 = mkV2 (mkV "sanitize"); -- from DictEng -lin sanitized_A = mkA "sanitized" ; -lin sanity_N = mkN "sanity" ; -- from DictEng -lin sannup_N = mkN "sannup" ; -lin sannyasi_N = mkN "sannyasi" ; -lin sansevieria_N = mkN "sansevieria" ; -lin sanskrit_N = mkN "sanskrit" ; -- from DictEng -lin santa_claus_N = mkN "santa claus" "santa clauses"; -- from DictEng -lin santims_N = mkN "santims" ; -lin sap_N = mkN "sap" "saps"; -- from DictEng -lin sap_V = mkV "sap" "saps" "sapped" "sapped" "sapping"; -- from DictEng -lin sap_V2 = mkV2 (mkV "sap" "saps" "sapped" "sapped" "sapping"); -- from DictEng -lin saphead_N = mkN "saphead" "sapheads"; -- from DictEng -lin sapidity_N = mkN "sapidity" ; -lin sapience_N = mkN "sapience" ; -- from DictEng -lin sapiens_A = mkA "sapiens" ; -lin sapient_A = compoundA (mkA "sapient"); -- from DictEng -lin sapiential_A = mkA "sapiential" ; -lin sapless_A = compoundA (mkA "sapless"); -- from DictEng -lin sapling_N = mkN "sapling" "saplings"; -- from DictEng -lin sapodilla_N = mkN "sapodilla" ; -lin saponaceous_A = mkA "saponaceous" ; -lin saponification_N = mkN "saponification" ; -lin saponified_A = mkA "saponified" ; -lin saponin_N = mkN "saponin" ; -lin sapote_N = mkN "sapote" ; -lin sapper_N = mkN "sapper" "sappers"; -- from DictEng -lin sapphic_A = compoundA (mkA "sapphic"); -- from DictEng -lin sapphire_A = mkA "sapphire" ; -lin sapphire_N = mkN "sapphire" "sapphires"; -- from DictEng -lin sapphirine_A = mkA "sapphirine" ; -lin sapphirine_N = mkN "sapphirine" ; -lin sappy_A = mkA "sappy" "sappier"; -- from DictEng -lin sapremia_N = mkN "sapremia" ; -lin saprobe_N = mkN "saprobe" ; -lin saprobic_A = mkA "saprobic" ; -lin saprolite_N = mkN "saprolite" ; -lin sapropel_N = mkN "sapropel" ; -lin saprophagous_A = mkA "saprophagous" ; -lin saprophyte_N = mkN "saprophyte" ; -lin saprophytic_A = mkA "saprophytic" ; -lin sapsago_N = mkN "sapsago" ; -lin sapsucker_N = mkN "sapsucker" ; -lin sapwood_N = mkN "sapwood" ; -- from DictEng -lin saquinavir_N = mkN "saquinavir" ; -lin saraband_N = mkN "saraband" "sarabands"; -- from DictEng -lin saracen_N = mkN "saracen" "saracens"; -- from DictEng -lin saran_N = mkN "saran" ; -lin sarawakian_A = compoundA (mkA "sarawakian"); -- from DictEng -lin sarawakian_N = mkN "sarawakian" "sarawakians"; -- from DictEng -lin sarcasm_N = mkN "sarcasm" "sarcasms"; -- from DictEng -lin sarcastic_A = compoundA (mkA "sarcastic"); -- from DictEng -lin sarcastically_Adv = mkAdv "sarcastically"; -- from DictEng -lin sarcenet_N = mkN "sarcenet" ; -lin sarcodinian_N = mkN "sarcodinian" ; -lin sarcoidosis_N = mkN "sarcoidosis" ; -lin sarcolemma_N = mkN "sarcolemma" ; -lin sarcolemmal_A = mkA "sarcolemmal" ; -lin sarcolemmic_A = mkA "sarcolemmic" ; -lin sarcoma_N = mkN "sarcoma" ; -lin sarcomere_N = mkN "sarcomere" ; -lin sarcophagus_N = mkN "sarcophagus" "sarcophagi" {- FIXME: guessed plural form -}; -- from DictEng -lin sarcoplasm_N = mkN "sarcoplasm" ; -lin sarcosine_N = mkN "sarcosine" ; -lin sarcosomal_A = mkA "sarcosomal" ; -lin sarcosome_N = mkN "sarcosome" ; -lin sarcosporidian_N = mkN "sarcosporidian" ; -lin sard_N = mkN "sard" ; -lin sardine_N = mkN "sardine" "sardines"; -- from DictEng -lin sardonic_A = compoundA (mkA "sardonic"); -- from DictEng -lin sardonically_Adv = mkAdv "sardonically"; -- from DictEng -lin sardonyx_N = mkN "sardonyx" ; -lin sari_N = mkN "sari" "saris"; -- from DictEng -lin sarin_N = mkN "sarin" ; -lin sarong_N = mkN "sarong" "sarongs"; -- from DictEng -lin sarsaparilla_N = mkN "sarsaparilla" ; -- from DictEng -lin sartorial_A = compoundA (mkA "sartorial"); -- from DictEng -lin sartorius_N = mkN "sartorius" ; -lin sash_N = mkN "sash" "sashes"; -- from DictEng -lin sash_cord_N = mkN "sash - cord" "sash - cords"; -- from DictEng -lin sash_line_N = mkN "sash - line" "sash - lines"; -- from DictEng -lin sashay_N = mkN "sashay" ; -lin sashay_V = mkV "sashay" ; -lin sashay_V2 = mkV2 (mkV "sashay") ; -lin sashimi_N = mkN "sashimi" ; -lin saskatoon_N = mkN "saskatoon" ; -lin sass_N = mkN "sass" ; -lin sassaby_N = mkN "sassaby" ; -lin sassafras_N = mkN "sassafras" ; -lin sassenach_N = mkN "sassenach" "sassenachs"; -- from DictEng -lin satan_N = mkN "satan" "satans"; -- from DictEng -lin satang_N = mkN "satang" ; -lin satanic_A = compoundA (mkA "satanic"); -- from DictEng -lin satanophobia_N = mkN "satanophobia" ; -lin satchel_N = mkN "satchel" "satchels"; -- from DictEng -lin sate_V2 = mkV2 (mkV "sate" "sates" "sated" "sated" "sating"); -- from DictEng -lin sateen_N = mkN "sateen" ; -- from DictEng -lin satellite_A = mkA "satellite" ; -lin satellite_N = mkN "satellite" "satellites"; -- from DictEng -lin satellite_V2 = mkV2 (mkV "satellite") ; -lin satiable_A = compoundA (mkA "satiable"); -- from DictEng -lin satiate_A = mkA "satiate" ; -lin satiate_V2 = mkV2 (mkV "satiate" "satiates" "satiated" "satiated" "satiating"); -- from DictEng -lin satiation_N = mkN "satiation" ; -lin satiety_N = mkN "satiety" ; -- from DictEng -lin satin_A = compoundA (mkA "satin"); -- from DictEng -lin satin_N = mkN "satin" ; -- from DictEng -lin satinet_N = mkN "satinet" ; -lin satinleaf_N = mkN "satinleaf" ; -lin satinwood_N = mkN "satinwood" ; -- from DictEng -lin satiny_A = mkA "satiny" ; -lin satire_N = mkN "satire" "satires"; -- from DictEng -lin satirical_A = compoundA (mkA "satirical"); -- from DictEng -lin satirically_Adv = mkAdv "satirically" ; -lin satirist_N = mkN "satirist" "satirists"; -- from DictEng -lin satirize_V2 = mkV2 (mkV "satirize" "satirizes" "satirized" "satirized" "satirizing"); -- from DictEng -lin satisfaction_N = mkN "satisfaction" "satisfactions"; -- from DictEng -lin satisfactorily_Adv = mkAdv "satisfactorily" ; -lin satisfactoriness_N = mkN "satisfactoriness" ; -lin satisfactory_A = compoundA (mkA "satisfactory"); -- from DictEng -lin satisfied_A = mkA "satisfied" ; -lin satisfier_N = mkN "satisfier" ; -lin satisfy_V = mkV "satisfy" "satisfies" "satisfied" "satisfied" "satisfying"; -- from DictEng -lin satisfy_V2 = mkV2 (mkV "satisfy" "satisfies" "satisfied" "satisfied" "satisfying"); -- from DictEng -lin satisfying_A = compoundA (mkA "satisfying"); -- from DictEng -lin satori_N = mkN "satori" ; -lin satrap_N = mkN "satrap" "satraps"; -- from DictEng -lin satsuma_N = mkN "satsuma" "satsumas"; -- from DictEng -lin saturate_V2 = mkV2 (mkV "saturate" "saturates" "saturated" "saturated" "saturating"); -- from DictEng -lin saturated_A = mkA "saturated" ; -lin saturation_N = mkN "saturation" ; -- from DictEng -lin saturday_N = mkN "Saturday" "Saturdays"; -- from DictEng -lin saturnalia_N = mkN "saturnalia" "saturnalias"; -- from DictEng -lin saturniid_N = mkN "saturniid" ; -lin saturnine_A = compoundA (mkA "saturnine"); -- from DictEng -lin satyr_N = mkN "satyr" "satyrs"; -- from DictEng -lin satyriasis_N = mkN "satyriasis" ; -lin satyric_A = compoundA (mkA "satyric"); -- from DictEng -lin sauce_N = mkN "sauce" "sauces"; -- from DictEng -lin sauce_V2 = mkV2 (mkV "sauce" "sauces" "sauced" "sauced" "saucing"); -- from DictEng -lin sauce_louis_PN = mkPN "sauce Louis" ; -lin sauce_boat_N = mkN "sauce - boat" "sauce - boats"; -- from DictEng -lin saucepan_N = mkN "saucepan" "saucepans"; -- from DictEng -lin saucepot_N = mkN "saucepot" ; -lin saucer_N = mkN "saucer" "saucers"; -- from DictEng -lin saucer_eyed_A = compoundA (mkA "saucer - eyed"); -- from DictEng -lin saucer_shaped_A = compoundA (mkA "saucer shaped") ; -lin saucer_eyed_A = compoundA (mkA "saucer - eyed"); -- from DictEng -lin saucily_Adv = mkAdv "saucily"; -- from DictEng -lin sauciness_N = mkN "sauciness" ; -- from DictEng -lin saucy_A = mkA "saucy" "saucier"; -- from DictEng -lin saudi_arabian_A = compoundA (mkA "saudi arabian"); -- from DictEng -lin saudi_arabian_N = mkN "saudi arabian" "saudi arabians"; -- from DictEng -lin sauerbraten_N = mkN "sauerbraten" ; -lin sauerkraut_N = mkN "sauerkraut" ; -- from DictEng -lin sauna_N = mkN "sauna" "saunas"; -- from DictEng -lin saunter_N = mkN "saunter" "saunters"; -- from DictEng -lin saunter_V = mkV "saunter" "saunters" "sauntered" "sauntered" "sauntering"; -- from DictEng -lin saunter_V2 = mkV2 (mkV "saunter") ; -lin saunterer_N = mkN "saunterer" "saunterers"; -- from DictEng -lin saurian_A = compoundA (mkA "saurian"); -- from DictEng -lin saurian_N = mkN "saurian" "saurians"; -- from DictEng -lin saurischian_N = mkN "saurischian" ; -lin sauropod_N = mkN "sauropod" ; -lin saury_N = mkN "saury" ; -lin sausage_N = mkN "sausage" "sausages"; -- from DictEng -lin sausage_dog_N = mkN "sausage - dog" "sausage - dogs"; -- from DictEng -lin sausage_meat_N = mkN "sausage - meat" ; -- from DictEng -lin sausage_roll_N = mkN "sausage - roll" "sausage - rolls"; -- from DictEng -lin saute_A = compoundA (mkA "sauté"); -- from DictEng -lin saute_N = mkN "saute" ; -lin saute_V2 = mkV2 (mkV "sauté" "sautés" "sautéed" "sautéed" "sautéing"); -- from DictEng -lin savage_A = compoundA (mkA "savage"); -- from DictEng -lin savage_N = mkN "savage" "savages"; -- from DictEng -lin savage_V2 = mkV2 (mkV "savage" "savages" "savaged" "savaged" "savaging"); -- from DictEng -lin savagely_Adv = mkAdv "savagely" ; -lin savageness_N = mkN "savageness" ; -- from DictEng -lin savagery_N = mkN "savagery" ; -- from DictEng -lin savanna_N = mkN "savanna" "savannas"; -- from DictEng -lin savannah_N = mkN "savannah" "savannahs"; -- from DictEng -lin savant_N = mkN "savant" "savants"; -- from DictEng -lin savarin_N = mkN "savarin" ; -lin save_N = mkN "save" "saves"; -- from DictEng -lin save_V = mkV "save" "saves" "saved" "saved" "saving"; -- from DictEng -lin save_V2 = mkV2 (mkV "save" "saves" "saved" "saved" "saving"); -- from DictEng -lin save_all_N = mkN "save all" ; -lin saved_A = mkA "saved" ; -lin saveloy_N = mkN "saveloy" "saveloys"; -- from DictEng -lin saver_N = mkN "saver" "savers"; -- from DictEng -lin saving_A = compoundA (mkA "saving"); -- from DictEng -lin saving_N = mkN "saving" "savings"; -- from DictEng -lin savings_N = mkN "savings" ; -lin savings_bank_N = mkN "savings - bank" "savings - banks"; -- from DictEng -lin savior_N = mkN "savior" ; -lin saviour_N = mkN "saviour" "saviours"; -- from DictEng -lin savoir_faire_N = mkN "savoir - faire" ; -- from DictEng -lin savoir_faire_N = mkN "savoir - faire" ; -- from DictEng -lin savor_V2 = mkV2 (mkV "savor") ; -lin savore_V2 = mkV2 (mkV "savore"); -- from DictEng -lin savory_A = mkA "savory" ; -lin savory_N = mkN "savory" ; -- from DictEng -lin savour_N = mkN "savour" "savours"; -- from DictEng -lin savour_V = mkV "savour" "savours" "savoured" "savoured" "savouring"; -- from DictEng -lin savour_V2 = mkV2 (mkV "savour" "savours" "savoured" "savoured" "savouring"); -- from DictEng -lin savoury_A = compoundA (mkA "savoury"); -- from DictEng -lin savoury_N = mkN "savoury" "savouries"; -- from DictEng -lin savoy_N = mkN "savoy" "savoys"; -- from DictEng -lin savvy_N = mkN "savvy" ; -- from DictEng -lin savvy_V = mkV "savvy" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin saw_N = mkN "saw" "saws"; -- from DictEng -lin saw_V = mkV "saw" "saws" "sawed" "sawed" "sawing"; -- from DictEng -lin saw_V2 = mkV2 (mkV "saw" "saws" "sawed" "sawed" "sawing"); -- from DictEng -lin saw_like_A = compoundA (mkA "saw like") ; -lin saw_pit_N = mkN "saw - pit" "saw - pits"; -- from DictEng -lin sawdust_N = mkN "sawdust" ; -- from DictEng -lin sawed_off_A = compoundA (mkA "sawed off") ; -lin sawfish_N = mkN "sawfish" ; -lin sawfly_N = mkN "sawfly" ; -lin sawhorse_N = mkN "sawhorse" "sawhorses"; -- from DictEng -lin sawm_N = mkN "sawm" ; -lin sawmill_N = mkN "sawmill" "sawmills"; -- from DictEng -lin sawpit_N = mkN "sawpit" ; -lin sawtooth_N = mkN "sawtooth" ; -lin sawtoothed_edged_A = compoundA (mkA "sawtoothed edged") ; -lin sawwort_N = mkN "sawwort" ; -lin sawyer_N = mkN "sawyer" "sawyers"; -- from DictEng -lin sax_N = mkN "sax" "saxes"; -- from DictEng -lin saxhorn_N = mkN "saxhorn" "saxhorns"; -- from DictEng -lin saxicolous_A = mkA "saxicolous" ; -lin saxifrage_N = mkN "saxifrage" ; -- from DictEng -lin saxitoxin_N = mkN "saxitoxin" ; -lin saxon_A = compoundA (mkA "saxon"); -- from DictEng -lin saxon_N = mkN "saxon" "saxons"; -- from DictEng -lin saxophone_N = mkN "saxophone" "saxophones"; -- from DictEng -lin saxophonist_N = mkN "saxophonist" "saxophonists"; -- from DictEng -lin say_N = mkN "say" "IRREG"; -- from DictEng -lin say_V = IrregEng.say_V; -- from DictEng -lin say_V2 = mkV2 (IrregEng.say_V); -- from DictEng -lin say_VA = mkVA (IrregEng.say_V); -- from DictEng -lin say_VS = mkVS (IrregEng.say_V); -- from DictEng -lin say_VV = mkVV (IrregEng.say_V); -- from DictEng -lin say_so_N = mkN "say so" ; -lin saying_N = mkN "saying" "sayings"; -- from DictEng -lin scab_N = mkN "scab" "scabs"; -- from DictEng -lin scabbard_N = mkN "scabbard" "scabbards"; -- from DictEng -lin scabby_A = mkA "scabby" "scabbier"; -- from DictEng -lin scabicide_N = mkN "scabicide" ; -lin scabies_N = mkN "scabies" ; -- from DictEng -lin scabious_N = mkN "scabious" ; -- from DictEng -lin scablands_N = mkN "scablands" ; -lin scabrous_A = compoundA (mkA "scabrous"); -- from DictEng -lin scad_N = mkN "scad" ; -lin scaffold_N = mkN "scaffold" "scaffolds"; -- from DictEng -lin scaffolding_N = mkN "scaffolding" ; -- from DictEng -lin scalability_N = mkN "scalability" ; -lin scalable_A = mkA "scalable" ; -lin scalage_N = mkN "scalage" ; -lin scalar_A = mkA "scalar" ; -lin scalar_N = mkN "scalar" ; -lin scalawag_N = mkN "scalawag" "scalawags"; -- from DictEng -lin scald_N = mkN "scald" "scalds"; -- from DictEng -lin scald_V2 = mkV2 (mkV "scald" "scalds" "scalded" "scalded" "scalding"); -- from DictEng -lin scale_N = mkN "scale" "scales"; -- from DictEng -lin scale_V = mkV "scale" "scales" "scaled" "scaled" "scaling"; -- from DictEng -lin scale_V2 = mkV2 (mkV "scale" "scales" "scaled" "scaled" "scaling"); -- from DictEng -lin scaled_A = mkA "scaled" ; -lin scaleless_A = mkA "scaleless" ; -lin scalelike_A = mkA "scalelike" ; -lin scalene_A = mkA "scalene" ; -lin scalenus_N = mkN "scalenus" ; -lin scaler_N = mkN "scaler" ; -lin scalic_A = mkA "scalic" ; -lin scaliness_N = mkN "scaliness" ; -lin scaling_N = mkN "scaling" ; -lin scaling_ladder_N = mkN "scaling - ladder" "scaling - ladders"; -- from DictEng -lin scallop_N = mkN "scallop" "scallops"; -- from DictEng -lin scallop_V2 = mkV2 (mkV "scallop" "scallops" "scalloped" "scalloped" "scalloping"); -- from DictEng -lin scallop_shell_N = mkN "scallop - shell" "scallop - shells"; -- from DictEng -lin scallopine_N = mkN "scallopine" ; -lin scallywag_N = mkN "scallywag" "scallywags"; -- from DictEng -lin scalp_N = mkN "scalp" "scalps"; -- from DictEng -lin scalp_V2 = mkV2 (mkV "scalp" "scalps" "scalped" "scalped" "scalping"); -- from DictEng -lin scalpel_N = mkN "scalpel" "scalpels"; -- from DictEng -lin scalper_N = mkN "scalper" ; -lin scaly_A = mkA "scaly" "scalier"; -- from DictEng -lin scaly_tailed_A = compoundA (mkA "scaly tailed") ; -lin scam_N = mkN "scam" ; -lin scam_V2 = mkV2 (mkV "scam"); -- from DictEng -lin scammony_N = mkN "scammony" ; -lin scamp_N = mkN "scamp" "scamps"; -- from DictEng -lin scamp_V2 = mkV2 (mkV "scamp" "scamps" "scamped" "scamped" "scamping"); -- from DictEng -lin scamper_N = mkN "scamper" "scampers"; -- from DictEng -lin scamper_V = mkV "scamper" "scampers" "scampered" "scampered" "scampering"; -- from DictEng -lin scamper_V2 = mkV2 (mkV "scamper") ; -lin scampi_N = mkN "scampi" ; -lin scan_N = mkN "scan" ; -lin scan_V = mkV "scan" "scans" "scanned" "scanned" "scanning"; -- from DictEng -lin scan_V2 = mkV2 (mkV "scan" "scans" "scanned" "scanned" "scanning"); -- from DictEng -lin scandal_N = mkN "scandal" "scandals"; -- from DictEng -lin scandalization_N = mkN "scandalization" ; -lin scandalize_V2 = mkV2 (mkV "scandalize" "scandalizes" "scandalized" "scandalized" "scandalizing"); -- from DictEng -lin scandalmonger_N = mkN "scandalmonger" "scandalmongers"; -- from DictEng -lin scandalmongering_A = mkA "scandalmongering" ; -lin scandalmongering_N = mkN "scandalmongering" ; -- from DictEng -lin scandalous_A = compoundA (mkA "scandalous"); -- from DictEng -lin scandalously_Adv = mkAdv "scandalously" ; -lin scandalousness_N = mkN "scandalousness" ; -lin scandent_A = mkA "scandent" ; -lin scandinavian_A = compoundA (mkA "Scandinavian"); -- from DictEng -lin scandinavian_N = mkN "Scandinavian" "Scandinavians"; -- from DictEng -lin scandium_N = mkN "scandium" ; -lin scanner_N = mkN "scanner" "scanners"; -- from DictEng -lin scanning_N = mkN "scanning" ; -lin scansion_N = mkN "scansion" ; -- from DictEng -lin scant_A = compoundA (mkA "scant"); -- from DictEng -lin scant_V2 = mkV2 (mkV "scant" "scants" "scanted" "scanted" "scanting"); -- from DictEng -lin scantily_Adv = mkAdv "scantily"; -- from DictEng -lin scantiness_N = mkN "scantiness" ; -- from DictEng -lin scantling_N = mkN "scantling" "scantlings"; -- from DictEng -lin scanty_A = mkA "scanty" "scantier"; -- from DictEng -lin scape_N = mkN "scape" ; -lin scapegoat_N = mkN "scapegoat" "scapegoats"; -- from DictEng -lin scapegrace_N = mkN "scapegrace" "scapegraces"; -- from DictEng -lin scaphocephaly_N = mkN "scaphocephaly" ; -lin scaphopod_N = mkN "scaphopod" ; -lin scapose_A = mkA "scapose" ; -lin scapula_N = mkN "scapula" "scapulas"; -- from DictEng -lin scapular_A = mkA "scapular" ; -lin scapular_N = mkN "scapular" ; -lin scapulohumeral_A = mkA "scapulohumeral" ; -lin scar_N = mkN "scar" "scars"; -- from DictEng -lin scar_V = mkV "scar" "scars" "scarred" "scarred" "scarring"; -- from DictEng -lin scar_V2 = mkV2 (mkV "scar" "scars" "scarred" "scarred" "scarring"); -- from DictEng -lin scarab_N = mkN "scarab" "scarabs"; -- from DictEng -lin scarce_A = mkA "scarce" "scarcer"; -- from DictEng -lin scarcity_N = mkN "scarcity" "scarcities"; -- from DictEng -lin scare_N = mkN "scare" "scares"; -- from DictEng -lin scare_V = mkV "scare" "scares" "scared" "scared" "scaring"; -- from DictEng -lin scare_V2 = mkV2 (mkV "scare" "scares" "scared" "scared" "scaring"); -- from DictEng -lin scarecrow_N = mkN "scarecrow" "scarecrows"; -- from DictEng -lin scarecrowish_A = mkA "scarecrowish" ; -lin scaremonger_N = mkN "scaremonger" "scaremongers"; -- from DictEng -lin scarf_N = mkN "scarf" "scarfs"; -- from DictEng -lin scarf_pin_N = mkN "scarf - pin" "scarf - pins"; -- from DictEng -lin scarify_V2 = mkV2 (mkV "scarify" "scarifies" "scarified" "scarified" "scarifying"); -- from DictEng -lin scarlet_A = compoundA (mkA "scarlet"); -- from DictEng -lin scarlet_N = mkN "scarlet" "scarlets"; -- from DictEng -lin scarlet_crimson_A = compoundA (mkA "scarlet crimson") ; -lin scarlet_pink_A = compoundA (mkA "scarlet pink") ; -lin scarp_N = mkN "scarp" "scarps"; -- from DictEng -lin scarper_V = mkV "scarper" "scarpers" "scarpered" "scarpered" "scarpering"; -- from DictEng -lin scarred_A = mkA "scarred" ; -lin scary_A = mkA "scary" "scarier"; -- from DictEng -lin scat_N = mkN "scat" ; -lin scathing_A = compoundA (mkA "scathing"); -- from DictEng -lin scathingly_Adv = mkAdv "scathingly" ; -lin scatological_A = mkA "scatological" ; -lin scatology_N = mkN "scatology" ; -lin scatophagy_N = mkN "scatophagy" ; -lin scatter_N = mkN "scatter" "scatters"; -- from DictEng -lin scatter_V = mkV "scatter" "scatters" "scattered" "scattered" "scattering"; -- from DictEng -lin scatter_V2 = mkV2 (mkV "scatter" "scatters" "scattered" "scattered" "scattering"); -- from DictEng -lin scatterbrain_N = mkN "scatterbrain" "scatterbrains"; -- from DictEng -lin scatterbrained_A = compoundA (mkA "scatterbrained"); -- from DictEng -lin scattered_A = compoundA (mkA "scattered"); -- from DictEng -lin scattering_N = mkN "scattering" ; -lin scattershot_A = mkA "scattershot" ; -lin scatty_A = mkA "scatty" "scattier"; -- from DictEng -lin scaup_N = mkN "scaup" ; -lin scauper_N = mkN "scauper" ; -lin scavenge_V = mkV "scavenge" "scavenges" "scavenged" "scavenged" "scavenging"; -- from DictEng -lin scavenger_N = mkN "scavenger" "scavengers"; -- from DictEng -lin scenario_N = mkN "scenario" "scenarios"; -- from DictEng -lin scenarist_N = mkN "scenarist" "scenarists"; -- from DictEng -lin scene_N = mkN "scene" "scenes"; -- from DictEng -lin scene_stealer_N = mkN "scene stealer" ; -lin scene_painter_N = mkN "scene - painter" "scene - painters"; -- from DictEng -lin scene_shifter_N = mkN "scene - shifter" "scene - shifters"; -- from DictEng -lin scenery_N = mkN "scenery" ; -- from DictEng -lin sceneshifter_N = mkN "sceneshifter" ; -lin scenic_A = compoundA (mkA "scenic"); -- from DictEng -lin scenically_Adv = mkAdv "scenically"; -- from DictEng -lin scent_N = mkN "scent" "scents"; -- from DictEng -lin scent_V2 = mkV2 (mkV "scent" "scents" "scented" "scented" "scenting"); -- from DictEng -lin scented_A = mkA "scented" ; -lin scentless_A = compoundA (mkA "scentless"); -- from DictEng -lin scepter_N = mkN "scepter" ; -lin sceptered_A = compoundA (mkA "sceptered"); -- from DictEng -lin sceptic_N = mkN "sceptic" "sceptics"; -- from DictEng -lin sceptical_A = compoundA (mkA "sceptical"); -- from DictEng -lin sceptically_Adv = mkAdv "sceptically" ; -lin scepticism_N = mkN "scepticism" ; -- from DictEng -lin sceptre_N = mkN "sceptre" "sceptres"; -- from DictEng -lin sceptred_A = compoundA (mkA "sceptred"); -- from DictEng -lin schedule_N = mkN "schedule" "schedules"; -- from DictEng -lin schedule_V = mkV "schedule"; -- from DictEng -lin schedule_V2 = mkV2 (mkV "schedule" "schedules" "scheduled" "scheduled" "scheduling"); -- from DictEng -lin schedule_VV = mkVV (mkV "schedule"); -- from DictEng -lin scheduled_A = mkA "scheduled" ; -lin scheduler_N = mkN "scheduler" ; -lin scheduling_N = mkN "scheduling" ; -lin scheelite_N = mkN "scheelite" ; -lin schema_N = mkN "schema" "schemas"; -- from DictEng -lin schematic_A = compoundA (mkA "schematic"); -- from DictEng -lin schematic_N = mkN "schematic" ; -lin schematically_Adv = mkAdv "schematically"; -- from DictEng -lin schematization_N = mkN "schematization" ; -lin scheme_N = mkN "scheme" "schemes"; -- from DictEng -lin scheme_V = mkV "scheme" "schemes" "schemed" "schemed" "scheming"; -- from DictEng -lin scheme_V2 = mkV2 (mkV "scheme" "schemes" "schemed" "schemed" "scheming"); -- from DictEng -lin schemer_N = mkN "schemer" "schemers"; -- from DictEng -lin schemozzle_N = mkN "schemozzle" ; -lin scherzo_N = mkN "scherzo" "scherzos"; -- from DictEng -lin schilling_N = mkN "schilling" ; -lin schipperke_N = mkN "schipperke" ; -lin schism_N = mkN "schism" "schisms"; -- from DictEng -lin schismatic_A = compoundA (mkA "schismatic"); -- from DictEng -lin schismatically_Adv = mkAdv "schismatically" ; -lin schist_N = mkN "schist" "schists"; -- from DictEng -lin schistosome_N = mkN "schistosome" ; -lin schistosomiasis_N = mkN "schistosomiasis" ; -lin schizocarp_N = mkN "schizocarp" ; -lin schizogony_N = mkN "schizogony" ; -lin schizoid_A = compoundA (mkA "schizoid"); -- from DictEng -lin schizopetalon_N = mkN "schizopetalon" ; -lin schizophrenia_N = mkN "schizophrenia" ; -- from DictEng -lin schizophrenic_A = compoundA (mkA "schizophrenic"); -- from DictEng -lin schizophrenic_N = mkN "schizophrenic" "schizophrenics"; -- from DictEng -lin schizothymia_N = mkN "schizothymia" ; -lin schlemiel_N = mkN "schlemiel" ; -lin schlep_N = mkN "schlep" ; -lin schlep_V2 = mkV2 (mkV "schlep") ; -lin schlepper_N = mkN "schlepper" ; -lin schlimazel_N = mkN "schlimazel" ; -lin schlock_N = mkN "schlock" ; -lin schlockmeister_N = mkN "schlockmeister" ; -lin schmaltz_N = mkN "schmaltz" ; -- from DictEng -lin schmaltzy_A = mkA "schmaltzy" "schmaltzier"; -- from DictEng -lin schmalz_N = mkN "schmalz" ; -- from DictEng -lin schmalzy_A = mkA "schmalzy" "schmalzier"; -- from DictEng -lin schmeer_N = mkN "schmeer" ; -lin schmooze_V = mkV "schmooze" ; -lin schmuck_N = mkN "schmuck" ; -lin schnapps_N = mkN "schnapps" ; -- from DictEng -lin schnauzer_N = mkN "schnauzer" ; -lin schnitzel_N = mkN "schnitzel" "schnitzels"; -- from DictEng -lin schnook_N = mkN "schnook" ; -lin schnorkel_N = mkN "schnorkel" "schnorkels"; -- from DictEng -lin schnorrer_N = mkN "schnorrer" ; -lin scholar_N = mkN "scholar" "scholars"; -- from DictEng -lin scholarly_A = compoundA (mkA "scholarly"); -- from DictEng -lin scholarship_N = mkN "scholarship" "scholarships"; -- from DictEng -lin scholastic_A = compoundA (mkA "scholastic"); -- from DictEng -lin scholastically_Adv = mkAdv "scholastically" ; -lin scholasticism_N = mkN "scholasticism" ; -- from DictEng -lin scholiast_N = mkN "scholiast" ; -lin scholium_N = mkN "scholium" ; -lin school_N = mkN "school" "schools"; -- from DictEng -lin school_V2 = mkV2 (mkV "school" "schools" "schooled" "schooled" "schooling"); -- from DictEng -lin school_board_N = mkN "school - board" "school - boards"; -- from DictEng -lin schoolbag_N = mkN "schoolbag" ; -lin schoolbook_N = mkN "schoolbook" "schoolbooks"; -- from DictEng -lin schoolboy_N = mkN "schoolboy" "schoolboys"; -- from DictEng -lin schoolchild_N = mkN "schoolchild" "schoolchildren" {- FIXME: guessed plural form -}; -- from DictEng -lin schooldays_N = mkN "schooldays" ; -lin schoolfellow_N = mkN "schoolfellow" "schoolfellows"; -- from DictEng -lin schoolfriend_N = mkN "schoolfriend" "schoolfriends"; -- from DictEng -lin schoolgirl_N = mkN "schoolgirl" "schoolgirls"; -- from DictEng -lin schoolhouse_N = mkN "schoolhouse" "schoolhouses"; -- from DictEng -lin schooling_N = mkN "schooling" ; -- from DictEng -lin schoolman_N = mkN "schoolman" "schoolmen" {- FIXME: guessed plural form -}; -- from DictEng -lin schoolmarm_N = mkN "schoolmarm" ; -lin schoolmaster_N = mkN "schoolmaster" "schoolmasters"; -- from DictEng -lin schoolmate_N = mkN "schoolmate" "schoolmates"; -- from DictEng -lin schoolmistress_N = mkN "schoolmistress" "schoolmistresses"; -- from DictEng -lin schoolroom_N = mkN "schoolroom" "schoolrooms"; -- from DictEng -lin schoolteacher_N = mkN "schoolteacher" "schoolteachers"; -- from DictEng -lin schooltime_N = mkN "schooltime" "schooltimes"; -- from DictEng -lin schoolwide_A = mkA "schoolwide" ; -lin schoolyard_N = mkN "schoolyard" ; -lin schooner_N = mkN "schooner" "schooners"; -- from DictEng -lin schorl_N = mkN "schorl" ; -lin schottische_N = mkN "schottische" "schottisches"; -- from DictEng -lin schrod_N = mkN "schrod" ; -lin schwa_N = mkN "schwa" "schwas"; -- from DictEng -lin sci_fi_N = mkN "sci fi" ; -- from DictEng -lin sciatic_A = compoundA (mkA "sciatic"); -- from DictEng -lin sciatica_N = mkN "sciatica" ; -- from DictEng -lin science_N = mkN "science" "sciences"; -- from DictEng -lin scienter_Adv = mkAdv "scienter" ; -lin scientific_A = compoundA (mkA "scientific"); -- from DictEng -lin scientifically_Adv = mkAdv "scientifically"; -- from DictEng -lin scientist_N = mkN "scientist" "scientists"; -- from DictEng -lin scilla_N = mkN "scilla" ; -lin scimitar_N = mkN "scimitar" "scimitars"; -- from DictEng -lin scintilla_N = mkN "scintilla" "scintillas"; -- from DictEng -lin scintillate_V = mkV "scintillate" "scintillates" "scintillated" "scintillated" "scintillating"; -- from DictEng -lin scintillating_A = mkA "scintillating" ; -lin scintillation_N = mkN "scintillation" "scintillations"; -- from DictEng -lin sciolism_N = mkN "sciolism" ; -lin scion_N = mkN "scion" "scions"; -- from DictEng -lin scission_N = mkN "scission" ; -lin scissor_tailed_A = compoundA (mkA "scissor tailed") ; -lin scissors_N = mkN "scissors" ; -lin scissortail_N = mkN "scissortail" ; -lin sclaff_N = mkN "sclaff" ; -lin sclera_N = mkN "sclera" ; -lin scleredema_N = mkN "scleredema" ; -lin sclerite_N = mkN "sclerite" ; -lin scleritis_N = mkN "scleritis" ; -lin scleroderma_N = mkN "scleroderma" ; -lin sclerometer_N = mkN "sclerometer" ; -lin scleroprotein_N = mkN "scleroprotein" ; -lin sclerosis_N = mkN "sclerosis" ; -- from DictEng -lin sclerotic_A = mkA "sclerotic" ; -lin sclerotinia_N = mkN "sclerotinia" ; -lin sclerotium_N = mkN "sclerotium" ; -lin sclerotomy_N = mkN "sclerotomy" ; -lin scoff_N = mkN "scoff" "scoffs"; -- from DictEng -lin scoff_V = mkV "scoff" "scoffs" "scoffed" "scoffed" "scoffing"; -- from DictEng -lin scoff_V2 = mkV2 (mkV "scoff" "scoffs" "scoffed" "scoffed" "scoffing"); -- from DictEng -lin scoffer_N = mkN "scoffer" "scoffers"; -- from DictEng -lin scoffingly_Adv = mkAdv "scoffingly"; -- from DictEng -lin scofflaw_N = mkN "scofflaw" ; -lin scold_N = mkN "scold" "scolds"; -- from DictEng -lin scold_V = mkV "scold" "scolds" "scolded" "scolded" "scolding"; -- from DictEng -lin scold_V2 = mkV2 (mkV "scold" "scolds" "scolded" "scolded" "scolding"); -- from DictEng -lin scolding_N = mkN "scolding" "scoldings"; -- from DictEng -lin scolion_N = mkN "scolion" ; -lin scoliosis_N = mkN "scoliosis" ; -lin scollop_N = mkN "scollop" "scollops"; -- from DictEng -lin scollop_V2 = mkV2 (mkV "scollop" "scollops" "scolloped" "scolloped" "scolloping"); -- from DictEng -lin scolopendrium_N = mkN "scolopendrium" ; -lin scombroid_N = mkN "scombroid" ; -lin sconce_N = mkN "sconce" "sconces"; -- from DictEng -lin scone_N = mkN "scone" "scones"; -- from DictEng -lin scoop_N = mkN "scoop" "scoops"; -- from DictEng -lin scoop_V = mkV "scoop"; -- from DictEng -lin scoop_V2 = mkV2 (mkV "scoop" "scoops" "scooped" "scooped" "scooping"); -- from DictEng -lin scoopful_N = mkN "scoopful" "scoopfuls"; -- from DictEng -lin scoot_V = mkV "scoot" "scoots" "scooted" "scooted" "scooting"; -- from DictEng -lin scoot_V2 = mkV2 (mkV "scoot" "scoots" "scooted" "scooted" "scooting"); -- from DictEng -lin scooter_N = mkN "scooter" "scooters"; -- from DictEng -lin scopal_A = mkA "scopal" ; -lin scope_N = mkN "scope" ; -- from DictEng -lin scopolamine_N = mkN "scopolamine" ; -lin scorbutic_A = compoundA (mkA "scorbutic"); -- from DictEng -lin scorch_N = mkN "scorch" "scorches"; -- from DictEng -lin scorch_V = mkV "scorch" "scorches" "scorched" "scorched" "scorching"; -- from DictEng -lin scorch_V2 = mkV2 (mkV "scorch" "scorches" "scorched" "scorched" "scorching"); -- from DictEng -lin scorched_A = mkA "scorched" ; -lin scorcher_N = mkN "scorcher" "scorchers"; -- from DictEng -lin scorching_A = compoundA (mkA "scorching"); -- from DictEng -lin scorching_Adv = mkAdv "scorching"; -- from DictEng -lin score_N = mkN "score" "scores"; -- from DictEng -lin score_V = mkV "score" "scores" "scored" "scored" "scoring"; -- from DictEng -lin score_V2 = mkV2 (mkV "score" "scores" "scored" "scored" "scoring"); -- from DictEng -lin scoreboard_N = mkN "scoreboard" "scoreboards"; -- from DictEng -lin scorebook_N = mkN "scorebook" "scorebooks"; -- from DictEng -lin scorecard_N = mkN "scorecard" "scorecards"; -- from DictEng -lin scorekeeper_N = mkN "scorekeeper" ; -lin scoreless_A = mkA "scoreless" ; -lin scorer_N = mkN "scorer" "scorers"; -- from DictEng -lin scorn_N = mkN "scorn" ; -- from DictEng -lin scorn_V2 = mkV2 (mkV "scorn" "scorns" "scorned" "scorned" "scorning"); -- from DictEng -lin scornful_A = compoundA (mkA "scornful"); -- from DictEng -lin scorpaenid_N = mkN "scorpaenid" ; -lin scorpaenoid_N = mkN "scorpaenoid" ; -lin scorpion_N = mkN "scorpion" "scorpions"; -- from DictEng -lin scorpionfish_N = mkN "scorpionfish" ; -lin scorpionweed_N = mkN "scorpionweed" ; -lin scorzonera_N = mkN "scorzonera" ; -lin scot_N = mkN "scot" "scots"; -- from DictEng -lin scot_free_Adv = mkAdv "scot - free"; -- from DictEng -lin scotch_A = compoundA (mkA "scotch"); -- from DictEng -lin scotch_N = mkN "scotch" "scotches"; -- from DictEng -lin scotch_V2 = mkV2 (mkV "scotch" "scotches" "scotched" "scotched" "scotching"); -- from DictEng -lin scotchman_N = mkN "scotchman" "scotchmen" {- FIXME: guessed plural form -}; -- from DictEng -lin scotchwoman_N = mkN "scotchwoman" "scotchwomen" {- FIXME: guessed plural form -}; -- from DictEng -lin scoter_N = mkN "scoter" ; -lin scotoma_N = mkN "scotoma" ; -lin scotomatous_A = mkA "scotomatous" ; -lin scots_A = compoundA (mkA "scots"); -- from DictEng -lin scotsman_N = mkN "scotsman" "scotsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin scotswoman_N = mkN "scotswoman" "scotswomen" {- FIXME: guessed plural form -}; -- from DictEng -lin scottish_A = compoundA (mkA "scottish"); -- from DictEng -lin scoundrel_N = mkN "scoundrel" "scoundrels"; -- from DictEng -lin scoundrelly_A = compoundA (mkA "scoundrelly"); -- from DictEng -lin scour_N = mkN "scour" "scours"; -- from DictEng -lin scour_V = mkV "scour" "scours" "scoured" "scoured" "scouring"; -- from DictEng -lin scour_V2 = mkV2 (mkV "scour" "scours" "scoured" "scoured" "scouring"); -- from DictEng -lin scourer_N = mkN "scourer" "scourers"; -- from DictEng -lin scourge_N = mkN "scourge" "scourges"; -- from DictEng -lin scourge_V2 = mkV2 (mkV "scourge" "scourges" "scourged" "scourged" "scourging"); -- from DictEng -lin scouring_N = mkN "scouring" ; -lin scours_N = mkN "scours" ; -lin scout_N = mkN "scout" "scouts"; -- from DictEng -lin scout_V = mkV "scout" "scouts" "scouted" "scouted" "scouting"; -- from DictEng -lin scout_V2 = mkV2 (mkV "scout" "scouts" "scouted" "scouted" "scouting"); -- from DictEng -lin scouting_N = mkN "scouting" ; -lin scoutmaster_N = mkN "scoutmaster" "scoutmasters"; -- from DictEng -lin scow_N = mkN "scow" "scows"; -- from DictEng -lin scowl_N = mkN "scowl" "scowls"; -- from DictEng -lin scowl_V = mkV "scowl" "scowls" "scowled" "scowled" "scowling"; -- from DictEng -lin scowl_V2 = mkV2 (mkV "scowl") ; -lin scrabble_N = mkN "scrabble" "scrabbles"; -- from DictEng -lin scrabble_V = mkV "scrabble" "scrabbles" "scrabbled" "scrabbled" "scrabbling"; -- from DictEng -lin scrabbly_A = mkA "scrabbly" ; -lin scrag_N = mkN "scrag" "scrags"; -- from DictEng -lin scrag_V2 = mkV2 (mkV "scrag" "scrags" "scragged" "scragged" "scragging"); -- from DictEng -lin scrag_end_N = mkN "scrag - end" "scrag - ends"; -- from DictEng -lin scraggly_A = mkA "scraggly" ; -lin scraggy_A = mkA "scraggy" "scraggier"; -- from DictEng -lin scram_V = mkV "scram" "scrams" "scrammed" "scrammed" "scramming"; -- from DictEng -lin scram_V2 = mkV2 (mkV "scram") ; -lin scramble_N = mkN "scramble" "scrambles"; -- from DictEng -lin scramble_V = mkV "scramble" "scrambles" "scrambled" "scrambled" "scrambling"; -- from DictEng -lin scramble_V2 = mkV2 (mkV "scramble" "scrambles" "scrambled" "scrambled" "scrambling"); -- from DictEng -lin scramble_V2V = mkV2V (mkV "scramble" "scrambles" "scrambled" "scrambled" "scrambling") noPrep to_Prep ; -- from DictEng -lin scramble_VV = mkVV (mkV "scramble" "scrambles" "scrambled" "scrambled" "scrambling"); -- from DictEng -lin scrambled_A = mkA "scrambled" ; -lin scrambler_N = mkN "scrambler" "scramblers"; -- from DictEng -lin scrap_N = mkN "scrap" "scraps"; -- from DictEng -lin scrap_V = mkV "scrap"; -- from DictEng -lin scrap_V2 = mkV2 (mkV "scrap" "scraps" "scrapped" "scrapped" "scrapping"); -- from DictEng -lin scrap_iron_N = mkN "scrap - iron" ; -- from DictEng -lin scrapbook_N = mkN "scrapbook" "scrapbooks"; -- from DictEng -lin scrape_N = mkN "scrape" "scrapes"; -- from DictEng -lin scrape_V = mkV "scrape" "scrapes" "scraped" "scraped" "scraping"; -- from DictEng -lin scrape_V2 = mkV2 (mkV "scrape" "scrapes" "scraped" "scraped" "scraping"); -- from DictEng -lin scraper_N = mkN "scraper" "scrapers"; -- from DictEng -lin scrapheap_N = mkN "scrapheap" "scrapheaps"; -- from DictEng -lin scrapie_N = mkN "scrapie" ; -lin scraping_N = mkN "scraping" "scrapings"; -- from DictEng -lin scrappily_Adv = mkAdv "scrappily"; -- from DictEng -lin scrappiness_N = mkN "scrappiness" ; -- from DictEng -lin scrapple_N = mkN "scrapple" ; -lin scrappy_A = mkA "scrappy" "scrappier"; -- from DictEng -lin scratch_N = mkN "scratch" "scratches"; -- from DictEng -lin scratch_V = mkV "scratch" "scratches" "scratched" "scratched" "scratching"; -- from DictEng -lin scratch_V2 = mkV2 (mkV "scratch" "scratches" "scratched" "scratched" "scratching"); -- from DictEng -lin scratch_pad_N = mkN "scratch - pad" "scratch - pads"; -- from DictEng -lin scratch_race_N = mkN "scratch - race" "scratch - races"; -- from DictEng -lin scratcher_N = mkN "scratcher" ; -lin scratchpad_N = mkN "scratchpad" ; -lin scratchy_A = mkA "scratchy" "scratchier"; -- from DictEng -lin scrawk_V = mkV "scrawk" ; -lin scrawl_N = mkN "scrawl" "scrawls"; -- from DictEng -lin scrawl_V = mkV "scrawl" "scrawls" "scrawled" "scrawled" "scrawling"; -- from DictEng -lin scrawl_V2 = mkV2 (mkV "scrawl" "scrawls" "scrawled" "scrawled" "scrawling"); -- from DictEng -lin scrawler_N = mkN "scrawler" ; -lin scrawniness_N = mkN "scrawniness" ; -lin scrawny_A = mkA "scrawny" "scrawnier"; -- from DictEng -lin screaky_A = mkA "screaky" ; -lin scream_N = mkN "scream" "screams"; -- from DictEng -lin scream_V = mkV "scream" "screams" "screamed" "screamed" "screaming"; -- from DictEng -lin scream_V2 = mkV2 (mkV "scream" "screams" "screamed" "screamed" "screaming"); -- from DictEng -lin scream_VS = mkVS (mkV "scream" "screams" "screamed" "screamed" "screaming"); -- from DictEng -lin screamer_N = mkN "screamer" ; -lin screaming_A = mkA "screaming" ; -lin screamingly_Adv = mkAdv "screamingly"; -- from DictEng -lin scree_N = mkN "scree" "screes"; -- from DictEng -lin screech_N = mkN "screech" "screeches"; -- from DictEng -lin screech_V = mkV "screech" "screeches" "screeched" "screeched" "screeching"; -- from DictEng -lin screech_V2 = mkV2 (mkV "screech" "screeches" "screeched" "screeched" "screeching"); -- from DictEng -lin screech_owl_N = mkN "screech - owl" "screech - owls"; -- from DictEng -lin screed_N = mkN "screed" "screeds"; -- from DictEng -lin screen_N = mkN "screen" "screens"; -- from DictEng -lin screen_V = mkV "screen" "screens" "screened" "screened" "screening"; -- from DictEng -lin screen_V2 = mkV2 (mkV "screen" "screens" "screened" "screened" "screening"); -- from DictEng -lin screener_N = mkN "screener" ; -lin screening_N = mkN "screening" ; -lin screenplay_N = mkN "screenplay" ; -lin screenwriter_N = mkN "screenwriter" ; -lin screw_N = mkN "screw" "screws"; -- from DictEng -lin screw_V = mkV "screw" "screws" "screwed" "screwed" "screwing"; -- from DictEng -lin screw_V2 = mkV2 (mkV "screw" "screws" "screwed" "screwed" "screwing"); -- from DictEng -lin screw_loose_A = compoundA (mkA "screw loose") ; -lin screw_topped_A = compoundA (mkA "screw - topped"); -- from DictEng -lin screw_topped_A = compoundA (mkA "screw - topped"); -- from DictEng -lin screwball_A = compoundA (mkA "screwball"); -- from DictEng -lin screwball_N = mkN "screwball" "screwballs"; -- from DictEng -lin screwballer_N = mkN "screwballer" ; -lin screwdriver_N = mkN "screwdriver" "screwdrivers"; -- from DictEng -lin screwtop_N = mkN "screwtop" ; -lin screwup_N = mkN "screwup" ; -lin screwy_A = mkA "screwy" "screwier"; -- from DictEng -lin scribble_N = mkN "scribble" "scribbles"; -- from DictEng -lin scribble_V = mkV "scribble" "scribbles" "scribbled" "scribbled" "scribbling"; -- from DictEng -lin scribble_V2 = mkV2 (mkV "scribble" "scribbles" "scribbled" "scribbled" "scribbling"); -- from DictEng -lin scribbler_N = mkN "scribbler" "scribblers"; -- from DictEng -lin scribbling_block_N = mkN "scribbling - block" "scribbling - blocks"; -- from DictEng -lin scribe_N = mkN "scribe" "scribes"; -- from DictEng -lin scriber_N = mkN "scriber" ; -lin scrim_N = mkN "scrim" ; -lin scrimmage_N = mkN "scrimmage" "scrimmages"; -- from DictEng -lin scrimmage_V = mkV "scrimmage" "scrimmages" "scrimmaged" "scrimmaged" "scrimmaging"; -- from DictEng -lin scrimmage_V2 = mkV2 (mkV "scrimmage" "scrimmages" "scrimmaged" "scrimmaged" "scrimmaging"); -- from DictEng -lin scrimp_V = mkV "scrimp" "scrimps" "scrimped" "scrimped" "scrimping"; -- from DictEng -lin scrimp_V2 = mkV2 (mkV "scrimp" "scrimps" "scrimped" "scrimped" "scrimping"); -- from DictEng -lin scrimshank_V = mkV "scrimshank" "scrimshanks" "scrimshanked" "scrimshanked" "scrimshanking"; -- from DictEng -lin scrimshanker_N = mkN "scrimshanker" "scrimshankers"; -- from DictEng -lin scrimshaw_N = mkN "scrimshaw" ; -lin scrimy_A = mkA "scrimy" ; -lin scrip_N = mkN "scrip" "scrips"; -- from DictEng -lin script_N = mkN "script" "scripts"; -- from DictEng -lin scripted_A = compoundA (mkA "scripted"); -- from DictEng -lin scriptorium_N = mkN "scriptorium" ; -lin scriptural_A = compoundA (mkA "scriptural"); -- from DictEng -lin scripture_N = mkN "scripture" "scriptures"; -- from DictEng -lin scriptwriter_N = mkN "scriptwriter" "scriptwriters"; -- from DictEng -lin scrivened_A = mkA "scrivened" ; -lin scrivener_N = mkN "scrivener" "scriveners"; -- from DictEng -lin scrod_N = mkN "scrod" ; -lin scrofula_N = mkN "scrofula" ; -- from DictEng -lin scrofulous_A = compoundA (mkA "scrofulous"); -- from DictEng -lin scroll_N = mkN "scroll" "scrolls"; -- from DictEng -lin scrooge_N = mkN "scrooge" "scrooges"; -- from DictEng -lin scrotal_A = mkA "scrotal" ; -lin scrotum_N = mkN "scrotum" "scrotums"; -- from DictEng -lin scrounge_V = mkV "scrounge" "scrounges" "scrounged" "scrounged" "scrounging"; -- from DictEng -lin scrounge_V2 = mkV2 (mkV "scrounge" "scrounges" "scrounged" "scrounged" "scrounging"); -- from DictEng -lin scrounger_N = mkN "scrounger" "scroungers"; -- from DictEng -lin scrub_A = mkA "scrub" ; -lin scrub_N = mkN "scrub" "scrubs"; -- from DictEng -lin scrub_V = mkV "scrub" "scrubs" "scrubbed" "scrubbed" "scrubbing"; -- from DictEng -lin scrub_V2 = mkV2 (mkV "scrub" "scrubs" "scrubbed" "scrubbed" "scrubbing"); -- from DictEng -lin scrubbed_A = mkA "scrubbed" ; -lin scrubber_N = mkN "scrubber" ; -lin scrubbing_brush_N = mkN "scrubbing - brush" "scrubbing - brushes"; -- from DictEng -lin scrubbird_N = mkN "scrubbird" ; -lin scrubby_A = mkA "scrubby" "scrubbier"; -- from DictEng -lin scrubland_N = mkN "scrubland" ; -lin scruff_N = mkN "scruff" "scruffs"; -- from DictEng -lin scruffy_A = mkA "scruffy" "scruffier"; -- from DictEng -lin scrum_N = mkN "scrum" "scrums"; -- from DictEng -lin scrummage_N = mkN "scrummage" "scrummages"; -- from DictEng -lin scrumptious_A = compoundA (mkA "scrumptious"); -- from DictEng -lin scrumpy_N = mkN "scrumpy" ; -lin scrunch_N = mkN "scrunch" "scrunches"; -- from DictEng -lin scrunch_V2 = mkV2 (mkV "scrunch" "scrunches" "scrunched" "scrunched" "scrunching"); -- from DictEng -lin scruple_N = mkN "scruple" "scruples"; -- from DictEng -lin scruple_V = mkV "scruple" "scruples" "scrupled" "scrupled" "scrupling"; -- from DictEng -lin scrupulous_A = compoundA (mkA "scrupulous"); -- from DictEng -lin scrupulously_Adv = mkAdv "scrupulously" ; -lin scrupulousness_N = mkN "scrupulousness" ; -lin scrutineer_N = mkN "scrutineer" "scrutineers"; -- from DictEng -lin scrutinize_V2 = mkV2 (mkV "scrutinize" "scrutinizes" "scrutinized" "scrutinized" "scrutinizing"); -- from DictEng -lin scrutinizer_N = mkN "scrutinizer" ; -lin scrutiny_N = mkN "scrutiny" "scrutinies"; -- from DictEng -lin scud_N = mkN "scud" "scuds"; -- from DictEng -lin scud_V = mkV "scud" "scuds" "scudded" "scudded" "scudding"; -- from DictEng -lin scud_V2 = mkV2 (mkV "scud") ; -lin scuff_N = mkN "scuff" ; -lin scuff_V = mkV "scuff" "scuffs" "scuffed" "scuffed" "scuffing"; -- from DictEng -lin scuff_V2 = mkV2 (mkV "scuff" "scuffs" "scuffed" "scuffed" "scuffing"); -- from DictEng -lin scuffer_N = mkN "scuffer" ; -lin scuffle_N = mkN "scuffle" ; -lin scuffle_V = mkV "scuffle" "scuffles" "scuffled" "scuffled" "scuffling"; -- from DictEng -lin scull_N = mkN "scull" "sculls"; -- from DictEng -lin scull_V = mkV "scull" "sculls" "sculled" "sculled" "sculling"; -- from DictEng -lin scull_V2 = mkV2 (mkV "scull" "sculls" "sculled" "sculled" "sculling"); -- from DictEng -lin sculler_N = mkN "sculler" "scullers"; -- from DictEng -lin scullery_N = mkN "scullery" "sculleries"; -- from DictEng -lin sculling_N = mkN "sculling" ; -lin scullion_N = mkN "scullion" "scullions"; -- from DictEng -lin sculpin_N = mkN "sculpin" ; -lin sculpt_V = mkV "sculpt" "sculpts" "sculpted" "sculpted" "sculpting"; -- from DictEng -lin sculpt_V2 = mkV2 (mkV "sculpt" "sculpts" "sculpted" "sculpted" "sculpting"); -- from DictEng -lin sculptor_N = mkN "sculptor" "sculptors"; -- from DictEng -lin sculptress_N = mkN "sculptress" "sculptresses"; -- from DictEng -lin sculptural_A = compoundA (mkA "sculptural"); -- from DictEng -lin sculpture_N = mkN "sculpture" "sculptures"; -- from DictEng -lin sculpture_V = mkV "sculpture" "sculptures" "sculptured" "sculptured" "sculpturing"; -- from DictEng -lin sculpture_V2 = mkV2 (mkV "sculpture" "sculptures" "sculptured" "sculptured" "sculpturing"); -- from DictEng -lin scultpure_V = mkV "scultpure" ; -lin scultpure_V2 = mkV2 (mkV "scultpure") ; -lin scum_N = mkN "scum" ; -- from DictEng -lin scumble_N = mkN "scumble" ; -lin scummy_A = mkA "scummy" "scummier"; -- from DictEng -lin scunner_N = mkN "scunner" ; -lin scup_N = mkN "scup" ; -lin scupper_N = mkN "scupper" "scuppers"; -- from DictEng -lin scupper_V2 = mkV2 (mkV "scupper" "scuppers" "scuppered" "scuppered" "scuppering"); -- from DictEng -lin scuppernong_N = mkN "scuppernong" ; -lin scurf_N = mkN "scurf" ; -- from DictEng -lin scurfy_A = mkA "scurfy" "scurfier"; -- from DictEng -lin scurrility_N = mkN "scurrility" ; -- from DictEng -lin scurrilous_A = compoundA (mkA "scurrilous"); -- from DictEng -lin scurrilously_Adv = mkAdv "scurrilously" ; -lin scurry_N = mkN "scurry" "scurries"; -- from DictEng -lin scurry_V = mkV "scurry" "scurries" "scurried" "scurried" "scurrying"; -- from DictEng -lin scurry_V2 = mkV2 (mkV "scurry") ; -lin scurvy_A = compoundA (mkA "scurvy"); -- from DictEng -lin scurvy_N = mkN "scurvy" ; -- from DictEng -lin scut_N = mkN "scut" "scuts"; -- from DictEng -lin scutcheon_N = mkN "scutcheon" "scutcheons"; -- from DictEng -lin scute_N = mkN "scute" ; -lin scutter_V = mkV "scutter" ; -lin scutter_V2 = mkV2 (mkV "scutter") ; -lin scuttle_N = mkN "scuttle" "scuttles"; -- from DictEng -lin scuttle_V = mkV "scuttle" "scuttles" "scuttled" "scuttled" "scuttling"; -- from DictEng -lin scuttle_V2 = mkV2 (mkV "scuttle" "scuttles" "scuttled" "scuttled" "scuttling"); -- from DictEng -lin scylla_N = mkN "scylla" "scyllas"; -- from DictEng -lin scyphozoan_N = mkN "scyphozoan" ; -lin scyphus_N = mkN "scyphus" ; -lin scythe_N = mkN "scythe" "scythes"; -- from DictEng -lin scythe_V2 = mkV2 (mkV "scythe" "scythes" "scythed" "scythed" "scything"); -- from DictEng -lin sea_N = mkN "sea" "seas"; -- from DictEng -lin sea_duty_N = mkN "sea duty" ; -lin sea_green_A = compoundA (mkA "sea - green"); -- from DictEng -lin sea_rocket_N = mkN "sea rocket" ; -lin sea_anemone_N = mkN "sea - anemone" "sea - anemones"; -- from DictEng -lin sea_animal_N = mkN "sea - animal" "sea - animals"; -- from DictEng -lin sea_bathing_N = mkN "sea - bathing" ; -- from DictEng -lin sea_boat_N = mkN "sea - boat" "sea - boats"; -- from DictEng -lin sea_bream_N = mkN "sea - bream" "sea - bream"; -- from DictEng -lin sea_breeze_N = mkN "sea - breeze" "sea - breezes"; -- from DictEng -lin sea_coal_N = mkN "sea - coal" ; -- from DictEng -lin sea_cow_N = mkN "sea - cow" "sea - cows"; -- from DictEng -lin sea_dog_N = mkN "sea - dog" "sea - dogs"; -- from DictEng -lin sea_fish_N = mkN "sea - fish" "sea - fish"; -- from DictEng -lin sea_girt_A = compoundA (mkA "sea - girt"); -- from DictEng -lin sea_god_N = mkN "sea - god" "sea - gods"; -- from DictEng -lin sea_green_A = compoundA (mkA "sea - green"); -- from DictEng -lin sea_green_N = mkN "sea - green" ; -- from DictEng -lin sea_horse_N = mkN "sea - horse" "sea - horses"; -- from DictEng -lin sea_level_N = mkN "sea - level" "IRREG"; -- from DictEng -lin sea_lion_N = mkN "sea - lion" "sea - lions"; -- from DictEng -lin sea_power_N = mkN "sea - power" ; -- from DictEng -lin sea_rover_N = mkN "sea - rover" "sea - rovers"; -- from DictEng -lin sea_snake_N = mkN "sea - snake" "sea - snakes"; -- from DictEng -lin sea_urchin_N = mkN "sea - urchin" "sea - urchins"; -- from DictEng -lin sea_wall_N = mkN "sea - wall" "sea - walls"; -- from DictEng -lin sea_water_N = mkN "sea - water" ; -- from DictEng -lin seabag_N = mkN "seabag" ; -lin seabed_N = mkN "seabed" "seabeds"; -- from DictEng -lin seabird_N = mkN "seabird" "seabirds"; -- from DictEng -lin seaboard_N = mkN "seaboard" "seaboards"; -- from DictEng -lin seaborgium_N = mkN "seaborgium" ; -lin seaborne_A = compoundA (mkA "seaborne"); -- from DictEng -lin seafarer_N = mkN "seafarer" "seafarers"; -- from DictEng -lin seafaring_A = compoundA (mkA "seafaring"); -- from DictEng -lin seafaring_N = mkN "seafaring" ; -lin seafood_N = mkN "seafood" "seafoods"; -- from DictEng -lin seafood_newburg_PN = mkPN "seafood Newburg" ; -lin seafront_N = mkN "seafront" "seafronts"; -- from DictEng -lin seagirt_A = mkA "seagirt" ; -lin seagoing_A = compoundA (mkA "seagoing"); -- from DictEng -lin seagrass_N = mkN "seagrass" ; -lin seagull_N = mkN "seagull" "seagulls"; -- from DictEng -lin seahorse_N = mkN "seahorse" ; -lin seakale_N = mkN "seakale" ; -- from DictEng -lin seal_N = mkN "seal" "seals"; -- from DictEng -lin seal_V = mkV "seal" "seals" "sealed" "sealed" "sealing"; -- from DictEng -lin seal_V2 = mkV2 (mkV "seal" "seals" "sealed" "sealed" "sealing"); -- from DictEng -lin seal_VS = mkVS (mkV "seal" "seals" "sealed" "sealed" "sealing"); -- from DictEng -lin seal_ring_N = mkN "seal - ring" "seal - rings"; -- from DictEng -lin sealant_N = mkN "sealant" ; -lin sealed_A = mkA "sealed" ; -lin sealer_N = mkN "sealer" "sealers"; -- from DictEng -lin sealing_wax_N = mkN "sealing - wax" ; -- from DictEng -lin sealskin_N = mkN "sealskin" "sealskins"; -- from DictEng -lin sealyham_N = mkN "sealyham" "sealyhams"; -- from DictEng -lin seam_N = mkN "seam" "seams"; -- from DictEng -lin seam_V2 = mkV2 (mkV "seam" "seams" "seamed" "seamed" "seaming"); -- from DictEng -lin seaman_N = mkN "seaman" "seamen" {- FIXME: guessed plural form -}; -- from DictEng -lin seamanlike_A = compoundA (mkA "seamanlike"); -- from DictEng -lin seamanship_N = mkN "seamanship" ; -- from DictEng -lin seamed_A = mkA "seamed" ; -lin seamless_A = compoundA (mkA "seamless"); -- from DictEng -lin seamount_N = mkN "seamount" ; -lin seamstress_N = mkN "seamstress" "seamstresses"; -- from DictEng -lin seamy_A = mkA "seamy" "seamier"; -- from DictEng -lin seance_N = mkN "séance" "séances"; -- from DictEng -lin seaplane_N = mkN "seaplane" "seaplanes"; -- from DictEng -lin seaport_N = mkN "seaport" "seaports"; -- from DictEng -lin seaquake_N = mkN "seaquake" ; -lin sear_A = compoundA (mkA "sear"); -- from DictEng -lin sear_V2 = mkV2 (mkV "sear" "sears" "seared" "seared" "searing"); -- from DictEng -lin search_N = mkN "search" "searches"; -- from DictEng -lin search_V = mkV "search" "searches" "searched" "searched" "searching"; -- from DictEng -lin search_V2 = mkV2 (mkV "search" "searches" "searched" "searched" "searching"); -- from DictEng -lin search_party_N = mkN "search - party" "search - parties"; -- from DictEng -lin search_warrant_N = mkN "search - warrant" "search - warrants"; -- from DictEng -lin searcher_N = mkN "searcher" "searchers"; -- from DictEng -lin searching_A = compoundA (mkA "searching"); -- from DictEng -lin searchingly_Adv = mkAdv "searchingly" ; -lin searchlight_N = mkN "searchlight" "searchlights"; -- from DictEng -lin seared_A = mkA "seared" ; -lin searing_A = mkA "searing" ; -lin searing_iron_N = mkN "searing - iron" "searing - irons"; -- from DictEng -lin seascape_N = mkN "seascape" "seascapes"; -- from DictEng -lin seashell_N = mkN "seashell" "seashells"; -- from DictEng -lin seashore_N = mkN "seashore" "seashores"; -- from DictEng -lin seasick_A = compoundA (mkA "seasick"); -- from DictEng -lin seasickness_N = mkN "seasickness" ; -- from DictEng -lin seaside_N = mkN "seaside" "seasides"; -- from DictEng -lin seasnail_N = mkN "seasnail" ; -lin season_N = mkN "season" "seasons"; -- from DictEng -lin season_V = mkV "season" "seasons" "seasoned" "seasoned" "seasoning"; -- from DictEng -lin season_V2 = mkV2 (mkV "season" "seasons" "seasoned" "seasoned" "seasoning"); -- from DictEng -lin season_ticket_N = mkN "season - ticket" "season - tickets"; -- from DictEng -lin seasonable_A = compoundA (mkA "seasonable"); -- from DictEng -lin seasonableness_N = mkN "seasonableness" ; -lin seasonably_Adv = mkAdv "seasonably" ; -lin seasonal_A = compoundA (mkA "seasonal"); -- from DictEng -lin seasonally_Adv = mkAdv "seasonally" ; -lin seasoned_A = mkA "seasoned" ; -lin seasoner_N = mkN "seasoner" ; -lin seasoning_N = mkN "seasoning" "seasonings"; -- from DictEng -lin seat_N = mkN "seat" "seats"; -- from DictEng -lin seat_V2 = mkV2 (mkV "seat" "seats" "seated" "seated" "seating"); -- from DictEng -lin seat_belt_N = mkN "seat - belt" "seat - belts"; -- from DictEng -lin seated_A = mkA "seated" ; -lin seating_N = mkN "seating" ; -lin seating_room_N = mkN "seating - room" ; -- from DictEng -lin seaward_A = compoundA (mkA "seaward"); -- from DictEng -lin seaward_Adv = mkAdv "seaward" ; -lin seaward_N = mkN "seaward" ; -lin seawards_Adv = mkAdv "seawards"; -- from DictEng -lin seawater_N = mkN "seawater" ; -lin seaway_N = mkN "seaway" "seaways"; -- from DictEng -lin seaweed_N = mkN "seaweed" "seaweeds"; -- from DictEng -lin seaworthiness_N = mkN "seaworthiness" ; -- from DictEng -lin seaworthy_A = compoundA (mkA "seaworthy"); -- from DictEng -lin seborrhea_N = mkN "seborrhea" ; -lin sebum_N = mkN "sebum" ; -lin sec_A = mkA "sec" ; -lin sec_N = mkN "sec" "secs"; -- from DictEng -lin secant_N = mkN "secant" ; -lin secateurs_N = mkN "secateurs" ; -lin secede_V = mkV "secede" "secedes" "seceded" "seceded" "seceding"; -- from DictEng -lin secession_N = mkN "secession" "secessions"; -- from DictEng -lin secessionism_N = mkN "secessionism" ; -lin secessionist_N = mkN "secessionist" "secessionists"; -- from DictEng -lin seckel_N = mkN "seckel" ; -lin seclude_V2 = mkV2 (mkV "seclude" "secludes" "secluded" "secluded" "secluding"); -- from DictEng -lin secluded_A = compoundA (mkA "secluded"); -- from DictEng -lin seclusion_N = mkN "seclusion" ; -- from DictEng -lin second_A = mkA "second" ; -lin second_Adv = mkAdv "second" ; -lin second_N = mkN "second" ; -- from DictEng -lin second_V2 = mkV2 (mkV "second" "seconds" "seconded" "seconded" "seconding"); -- from DictEng -lin second_best_A = compoundA (mkA "second - best"); -- from DictEng -lin second_best_Adv = mkAdv "second - best"; -- from DictEng -lin second_class_A = compoundA (mkA "second - class"); -- from DictEng -lin second_in_command_N = mkN "second in command" ; -lin second_rater_N = mkN "second - rater" "second - raters"; -- from DictEng -lin second_string_A = compoundA (mkA "second string") ; -lin second_best_A = compoundA (mkA "second - best"); -- from DictEng -lin second_best_Adv = mkAdv "second - best"; -- from DictEng -lin second_best_N = mkN "second - best" "IRREG"; -- from DictEng -lin second_class_A = compoundA (mkA "second - class"); -- from DictEng -lin second_class_Adv = mkAdv "second - class"; -- from DictEng -lin second_class_N = mkN "second - class" ; -- from DictEng -lin second_guess_V2 = mkV2 (mkV "second - guess"); -- from DictEng -lin second_hand_A = compoundA (mkA "second - hand"); -- from DictEng -lin second_hand_Adv = mkAdv "second hand" ; -lin second_hand_N = mkN "second - hand" "second - hands"; -- from DictEng -lin second_rate_A = compoundA (mkA "second - rate"); -- from DictEng -lin second_rater_N = mkN "second - rater" "second - raters"; -- from DictEng -lin second_sighted_A = compoundA (mkA "second - sighted"); -- from DictEng -lin secondarily_Adv = mkAdv "secondarily" ; -lin secondary_A = compoundA (mkA "secondary"); -- from DictEng -lin secondary_N = mkN "secondary" ; -lin seconder_N = mkN "seconder" "seconders"; -- from DictEng -lin secondhand_A = mkA "secondhand" ; -lin secondhand_Adv = mkAdv "secondhand" ; -lin secondment_N = mkN "secondment" "secondments"; -- from DictEng -lin secondo_N = mkN "secondo" ; -lin secrecy_N = mkN "secrecy" ; -- from DictEng -lin secret_A = compoundA (mkA "secret"); -- from DictEng -lin secret_N = mkN "secret" "secrets"; -- from DictEng -lin secretarial_A = compoundA (mkA "secretarial"); -- from DictEng -lin secretariat_N = mkN "secretariat" "secretariats"; -- from DictEng -lin secretary_N = mkN "secretary" "secretaries"; -- from DictEng -lin secretary_general_N = mkN "secretary - general" "secretary - generals"; -- from DictEng -lin secretaryship_N = mkN "secretaryship" ; -lin secretase_N = mkN "secretase" ; -lin secrete_V2 = mkV2 (mkV "secrete" "secretes" "secreted" "secreted" "secreting"); -- from DictEng -lin secretin_N = mkN "secretin" ; -lin secretion_N = mkN "secretion" "secretions"; -- from DictEng -lin secretive_A = compoundA (mkA "secretive"); -- from DictEng -lin secretively_Adv = mkAdv "secretively" ; -lin secretiveness_N = mkN "secretiveness" ; -- from DictEng -lin secretly_Adv = mkAdv "secretly" ; -lin secretory_A = mkA "secretory" ; -lin sect_N = mkN "sect" "sects"; -- from DictEng -lin sectarian_A = compoundA (mkA "sectarian"); -- from DictEng -lin sectarian_N = mkN "sectarian" "sectarians"; -- from DictEng -lin sectarianism_N = mkN "sectarianism" ; -- from DictEng -lin section_N = mkN "section" "sections"; -- from DictEng -lin sectional_A = compoundA (mkA "sectional"); -- from DictEng -lin sectional_N = mkN "sectional" ; -lin sectionalism_N = mkN "sectionalism" ; -- from DictEng -lin sector_N = mkN "sector" "sectors"; -- from DictEng -lin sectorial_A = mkA "sectorial" ; -lin secular_A = compoundA (mkA "secular"); -- from DictEng -lin secularism_N = mkN "secularism" ; -- from DictEng -lin secularist_N = mkN "secularist" "secularists"; -- from DictEng -lin secularization_N = mkN "secularization" ; -lin secularize_V2 = mkV2 (mkV "secularize" "secularizes" "secularized" "secularized" "secularizing"); -- from DictEng -lin secundigravida_N = mkN "secundigravida" ; -lin secure_A = compoundA (mkA "secure"); -- from DictEng -lin secure_V2 = mkV2 (mkV "secure" "secures" "secured" "secured" "securing"); -- from DictEng -lin securely_Adv = mkAdv "securely" ; -lin secureness_N = mkN "secureness" ; -lin security_N = mkN "security" "securities"; -- from DictEng -lin sedan_N = mkN "sedan" "sedans"; -- from DictEng -lin sedan_chair_N = mkN "sedan - chair" "sedan - chairs"; -- from DictEng -lin sedate_A = compoundA (mkA "sedate"); -- from DictEng -lin sedate_V2 = mkV2 (mkV "sedate" "sedates" "sedated" "sedated" "sedating"); -- from DictEng -lin sedately_Adv = mkAdv "sedately" ; -lin sedateness_N = mkN "sedateness" ; -- from DictEng -lin sedation_N = mkN "sedation" ; -- from DictEng -lin sedative_A = compoundA (mkA "sedative"); -- from DictEng -lin sedative_N = mkN "sedative" "sedatives"; -- from DictEng -lin sedative_hypnotic_N = mkN "sedative hypnotic" ; -lin sedentary_A = compoundA (mkA "sedentary"); -- from DictEng -lin sedge_N = mkN "sedge" "sedges"; -- from DictEng -lin sedgy_A = mkA "sedgy" "sedgier"; -- from DictEng -lin sediment_N = mkN "sediment" ; -- from DictEng -lin sedimentary_A = compoundA (mkA "sedimentary"); -- from DictEng -lin sedition_N = mkN "sedition" ; -- from DictEng -lin seditious_A = compoundA (mkA "seditious"); -- from DictEng -lin seduce_V2 = mkV2 (mkV "seduce" "seduces" "seduced" "seduced" "seducing"); -- from DictEng -lin seducer_N = mkN "seducer" "seducers"; -- from DictEng -lin seduction_N = mkN "seduction" "seductions"; -- from DictEng -lin seductive_A = compoundA (mkA "seductive"); -- from DictEng -lin seductively_Adv = mkAdv "seductively" ; -lin seductress_N = mkN "seductress" ; -lin sedulity_N = mkN "sedulity" ; -lin sedulous_A = compoundA (mkA "sedulous"); -- from DictEng -lin sedulously_Adv = mkAdv "sedulously" ; -lin sedum_N = mkN "sedum" ; -lin see_N = mkN "see" "sees"; -- from DictEng -lin see_V = IrregEng.see_V; -- from DictEng -lin see_V2 = mkV2 (IrregEng.see_V); -- from DictEng -lin see_V2V = mkV2V (IrregEng.see_V) noPrep to_Prep ; -- from DictEng -lin see_VA = mkVA (IrregEng.see_V); -- from DictEng -lin see_VS = mkVS (IrregEng.see_V); -- from DictEng -lin see_through_A = compoundA (mkA "see - through"); -- from DictEng -lin seed_N = mkN "seed" "seed"; -- from DictEng -lin seed_V = mkV "seed" "seeds" "seeded" "seeded" "seeding"; -- from DictEng -lin seed_V2 = mkV2 (mkV "seed" "seeds" "seeded" "seeded" "seeding"); -- from DictEng -lin seed_corn_N = mkN "seed - corn" ; -- from DictEng -lin seedbed_N = mkN "seedbed" "seedbeds"; -- from DictEng -lin seedcake_N = mkN "seedcake" "seedcakes"; -- from DictEng -lin seeded_A = mkA "seeded" ; -lin seeder_N = mkN "seeder" ; -lin seedily_Adv = mkAdv "seedily"; -- from DictEng -lin seediness_N = mkN "seediness" ; -- from DictEng -lin seedless_A = compoundA (mkA "seedless"); -- from DictEng -lin seedling_N = mkN "seedling" "seedlings"; -- from DictEng -lin seedsman_N = mkN "seedsman" "seedsmen"; -- from DictEng -lin seedtime_N = mkN "seedtime" "seedtimes"; -- from DictEng -lin seedy_A = mkA "seedy" "seedier"; -- from DictEng -lin seeing_A = mkA "seeing" ; -lin seek_N = mkN "seek" ; -lin seek_V2 = mkV2 (IrregEng.seek_V); -- from DictEng -lin seek_VS = mkVS (IrregEng.seek_V); -- from DictEng -lin seek_VV = mkVV (IrregEng.seek_V); -- from DictEng -lin seeker_N = mkN "seeker" "seekers"; -- from DictEng -lin seeking_N = mkN "seeking" ; -lin seem_V = mkV "seem" "seems" "seemed" "seemed" "seeming"; -- from DictEng -lin seem_V2 = mkV2 (mkV "seem" "seems" "seemed" "seemed" "seeming"); -- from DictEng -lin seem_VA = mkVA (mkV "seem" "seems" "seemed" "seemed" "seeming"); -- from DictEng -lin seem_VS = mkVS (mkV "seem" "seems" "seemed" "seemed" "seeming"); -- from DictEng -lin seem_VV = mkVV (mkV "seem" "seems" "seemed" "seemed" "seeming"); -- from DictEng -lin seeming_A = compoundA (mkA "seeming"); -- from DictEng -lin seemliness_N = mkN "seemliness" ; -- from DictEng -lin seemly_A = mkA "seemly" "seemlier"; -- from DictEng -lin seep_V = mkV "seep" "seeps" "seeped" "seeped" "seeping"; -- from DictEng -lin seep_V2 = mkV2 (mkV "seep") ; -lin seepage_N = mkN "seepage" ; -- from DictEng -lin seer_N = mkN "seer" "seers"; -- from DictEng -lin seersucker_N = mkN "seersucker" ; -- from DictEng -lin seesaw_N = mkN "seesaw" "seesaws"; -- from DictEng -lin seesaw_V = mkV "seesaw" "seesaws" "seesawed" "seesawed" "seesawing"; -- from DictEng -lin seethe_V = mkV "seethe" "seethes" "seethed" "seethed" "seething"; -- from DictEng -lin seethe_V2 = mkV2 (mkV "seethe" "seethes" "seethed" "seethed" "seething"); -- from DictEng -lin seething_A = mkA "seething" ; -lin segment_N = mkN "segment" "segments"; -- from DictEng -lin segment_V = mkV "segment" "segments" "segmented" "segmented" "segmenting"; -- from DictEng -lin segment_V2 = mkV2 (mkV "segment" "segments" "segmented" "segmented" "segmenting"); -- from DictEng -lin segmental_A = mkA "segmental" ; -lin segmentation_N = mkN "segmentation" "segmentations"; -- from DictEng -lin segno_N = mkN "segno" ; -lin segregate_N = mkN "segregate" ; -lin segregate_V2 = mkV2 (mkV "segregate" "segregates" "segregated" "segregated" "segregating"); -- from DictEng -lin segregated_A = mkA "segregated" ; -lin segregation_N = mkN "segregation" "segregations"; -- from DictEng -lin segregationism_N = mkN "segregationism" ; -lin segregator_N = mkN "segregator" ; -lin segue_N = mkN "segue" ; -lin seiche_N = mkN "seiche" ; -lin seidel_N = mkN "seidel" ; -lin seigneury_N = mkN "seigneury" ; -lin seignior_N = mkN "seignior" "seigniors"; -- from DictEng -lin seigniorage_N = mkN "seigniorage" ; -lin seigniory_N = mkN "seigniory" ; -lin seine_N = mkN "seine" "seines"; -- from DictEng -lin seine_V = mkV "seine" "seines" "seined" "seined" "seining"; -- from DictEng -lin seine_V2 = mkV2 (mkV "seine" "seines" "seined" "seined" "seining"); -- from DictEng -lin seismic_A = compoundA (mkA "seismic"); -- from DictEng -lin seismogram_N = mkN "seismogram" ; -lin seismograph_N = mkN "seismograph" "seismographs"; -- from DictEng -lin seismography_N = mkN "seismography" ; -lin seismological_A = mkA "seismological" ; -lin seismologist_N = mkN "seismologist" "seismologists"; -- from DictEng -lin seismology_N = mkN "seismology" ; -- from DictEng -lin seize_V = mkV "seize" "seizes" "seized" "seized" "seizing"; -- from DictEng -lin seize_V2 = mkV2 (mkV "seize" "seizes" "seized" "seized" "seizing"); -- from DictEng -lin seizing_N = mkN "seizing" ; -lin seizure_N = mkN "seizure" "seizures"; -- from DictEng -lin seldom_Adv = mkAdv "seldom"; -- from DictEng -lin select_A = compoundA (mkA "select"); -- from DictEng -lin select_V = mkV "select"; -- from DictEng -lin select_V2 = mkV2 (mkV "select" "selects" "selected" "selected" "selecting"); -- from DictEng -lin select_V2V = mkV2V (mkV "select") noPrep to_Prep ; -- from DictEng -lin select_VV = mkVV (mkV "select"); -- from DictEng -lin selected_A = mkA "selected" ; -lin selection_N = mkN "selection" "selections"; -- from DictEng -lin selective_A = compoundA (mkA "selective"); -- from DictEng -lin selectively_Adv = mkAdv "selectively" ; -lin selectivity_N = mkN "selectivity" ; -- from DictEng -lin selectman_N = mkN "selectman" ; -lin selector_N = mkN "selector" "selectors"; -- from DictEng -lin selectwoman_N = mkN "selectwoman" ; -lin selenium_N = mkN "selenium" ; -- from DictEng -lin selenology_N = mkN "selenology" ; -lin self_A = mkA "self" ; -lin self_N = mkN "self" "selves" {- FIXME: guessed plural form -}; -- from DictEng -lin self_absorbed_A = compoundA (mkA "self - absorbed"); -- from DictEng -lin self_absorption_N = mkN "self absorption" ; -lin self_accusation_N = mkN "self accusation" ; -lin self_acting_A = compoundA (mkA "self - acting"); -- from DictEng -lin self_addressed_A = compoundA (mkA "self - addressed"); -- from DictEng -lin self_aggrandizement_N = mkN "self aggrandizement" ; -lin self_aggrandizing_A = compoundA (mkA "self aggrandizing") ; -lin self_analysis_N = mkN "self analysis" ; -lin self_appointed_A = compoundA (mkA "self - appointed"); -- from DictEng -lin self_assertion_N = mkN "self - assertion" ; -- from DictEng -lin self_assured_A = compoundA (mkA "self - assured"); -- from DictEng -lin self_awareness_N = mkN "self awareness" ; -lin self_balancing_A = compoundA (mkA "self balancing") ; -lin self_confessed_A = compoundA (mkA "self - confessed"); -- from DictEng -lin self_conscious_A = compoundA (mkA "self - conscious"); -- from DictEng -lin self_consciously_Adv = mkAdv "self consciously" ; -lin self_consciousness_N = mkN "self - consciousness" ; -- from DictEng -lin self_consistent_A = compoundA (mkA "self consistent") ; -lin self_constituted_A = compoundA (mkA "self constituted") ; -lin self_contained_A = compoundA (mkA "self - contained"); -- from DictEng -lin self_contradiction_N = mkN "self contradiction" ; -lin self_control_N = mkN "self - control" ; -- from DictEng -lin self_criticism_N = mkN "self criticism" ; -lin self_deception_N = mkN "self deception" ; -lin self_defeating_A = compoundA (mkA "self defeating") ; -lin self_defense_N = mkN "self defense" ; -lin self_denial_N = mkN "self - denial" ; -- from DictEng -lin self_denying_A = compoundA (mkA "self - denying"); -- from DictEng -lin self_deprecating_A = compoundA (mkA "self deprecating") ; -lin self_depreciation_N = mkN "self depreciation" ; -lin self_destruction_N = mkN "self destruction" ; -lin self_destructive_A = compoundA (mkA "self destructive") ; -lin self_determination_N = mkN "self - determination" ; -- from DictEng -lin self_discipline_N = mkN "self discipline" ; -lin self_disciplined_A = compoundA (mkA "self disciplined") ; -lin self_discovery_N = mkN "self discovery" ; -lin self_disgust_N = mkN "self disgust" ; -lin self_educated_A = compoundA (mkA "self - educated"); -- from DictEng -lin self_education_N = mkN "self education" ; -lin self_enclosed_A = compoundA (mkA "self enclosed") ; -lin self_esteem_N = mkN "self - esteem" ; -- from DictEng -lin self_evidently_Adv = mkAdv "self evidently" ; -lin self_explanatory_A = compoundA (mkA "self - explanatory"); -- from DictEng -lin self_expression_N = mkN "self expression" ; -lin self_feeder_N = mkN "self feeder" ; -lin self_fertilization_N = mkN "self fertilization" ; -lin self_fertilized_A = compoundA (mkA "self fertilized") ; -lin self_flagellation_N = mkN "self flagellation" ; -lin self_forgetful_A = compoundA (mkA "self forgetful") ; -lin self_fulfillment_N = mkN "self fulfillment" ; -lin self_generated_A = compoundA (mkA "self generated") ; -lin self_government_N = mkN "self government" ; -lin self_gratification_N = mkN "self gratification" ; -lin self_heal_N = mkN "self heal" ; -lin self_help_N = mkN "self - help" ; -- from DictEng -lin self_hypnosis_N = mkN "self hypnosis" ; -lin self_imposed_A = compoundA (mkA "self - imposed"); -- from DictEng -lin self_improvement_N = mkN "self improvement" ; -lin self_incrimination_N = mkN "self incrimination" ; -lin self_induced_A = compoundA (mkA "self induced") ; -lin self_induction_N = mkN "self induction" ; -lin self_indulgent_A = compoundA (mkA "self - indulgent"); -- from DictEng -lin self_indulgently_Adv = mkAdv "self indulgently" ; -lin self_insurance_N = mkN "self insurance" ; -lin self_knowledge_N = mkN "self knowledge" ; -lin self_limited_A = compoundA (mkA "self limited") ; -lin self_locking_A = compoundA (mkA "self - locking"); -- from DictEng -lin self_love_N = mkN "self love" ; -lin self_luminous_A = compoundA (mkA "self luminous") ; -lin self_made_A = compoundA (mkA "self - made"); -- from DictEng -lin self_organization_N = mkN "self organization" ; -lin self_pity_N = mkN "self - pity" ; -- from DictEng -lin self_pollinating_A = compoundA (mkA "self pollinating") ; -lin self_pollination_N = mkN "self pollination" ; -lin self_portrait_N = mkN "self portrait" ; -lin self_preservation_N = mkN "self - preservation" ; -- from DictEng -lin self_proclaimed_A = compoundA (mkA "self proclaimed") ; -lin self_propelled_A = compoundA (mkA "self propelled") ; -lin self_punishment_N = mkN "self punishment" ; -lin self_renewal_N = mkN "self renewal" ; -lin self_renewing_A = compoundA (mkA "self renewing") ; -lin self_reproach_N = mkN "self reproach" ; -lin self_restraint_N = mkN "self restraint" ; -lin self_sealing_A = compoundA (mkA "self - sealing"); -- from DictEng -lin self_seeded_A = compoundA (mkA "self seeded") ; -lin self_service_A = compoundA (mkA "self service") ; -lin self_service_N = mkN "self - service" ; -- from DictEng -lin self_serving_A = compoundA (mkA "self serving") ; -lin self_starter_N = mkN "self - starter" "self - starters"; -- from DictEng -lin self_stimulation_N = mkN "self stimulation" ; -lin self_styled_A = compoundA (mkA "self - styled"); -- from DictEng -lin self_sufficient_A = compoundA (mkA "self - sufficient"); -- from DictEng -lin self_supporting_A = compoundA (mkA "self - supporting"); -- from DictEng -lin self_sustained_A = compoundA (mkA "self sustained") ; -lin self_torture_N = mkN "self torture" ; -lin self_whispered_A = compoundA (mkA "self whispered") ; -lin self_winding_A = compoundA (mkA "self - winding"); -- from DictEng -lin self_abasement_N = mkN "self - abasement" ; -- from DictEng -lin self_abnegation_N = mkN "self - abnegation" ; -- from DictEng -lin self_absorbed_A = compoundA (mkA "self - absorbed"); -- from DictEng -lin self_acting_A = compoundA (mkA "self - acting"); -- from DictEng -lin self_activating_A = compoundA (mkA "self - activating"); -- from DictEng -lin self_addressed_A = compoundA (mkA "self - addressed"); -- from DictEng -lin self_appointed_A = compoundA (mkA "self - appointed"); -- from DictEng -lin self_assertion_N = mkN "self - assertion" ; -- from DictEng -lin self_assertive_A = compoundA (mkA "self - assertive"); -- from DictEng -lin self_assurance_N = mkN "self - assurance" ; -- from DictEng -lin self_assured_A = compoundA (mkA "self - assured"); -- from DictEng -lin self_centred_A = compoundA (mkA "self - centred"); -- from DictEng -lin self_collected_A = compoundA (mkA "self - collected"); -- from DictEng -lin self_coloured_A = compoundA (mkA "self - coloured"); -- from DictEng -lin self_command_N = mkN "self - command" ; -- from DictEng -lin self_communion_N = mkN "self - communion" ; -- from DictEng -lin self_complacency_N = mkN "self - complacency" ; -- from DictEng -lin self_confessed_A = compoundA (mkA "self - confessed"); -- from DictEng -lin self_confidence_N = mkN "self - confidence" ; -- from DictEng -lin self_confident_A = compoundA (mkA "self - confident"); -- from DictEng -lin self_conscious_A = compoundA (mkA "self - conscious"); -- from DictEng -lin self_consciousness_N = mkN "self - consciousness" ; -- from DictEng -lin self_contained_A = compoundA (mkA "self - contained"); -- from DictEng -lin self_control_N = mkN "self - control" ; -- from DictEng -lin self_defence_N = mkN "self - defence" ; -- from DictEng -lin self_denial_N = mkN "self - denial" ; -- from DictEng -lin self_denying_A = compoundA (mkA "self - denying"); -- from DictEng -lin self_destruct_V = mkV "self - destruct"; -- from DictEng -lin self_determination_N = mkN "self - determination" ; -- from DictEng -lin self_educated_A = compoundA (mkA "self - educated"); -- from DictEng -lin self_effacing_A = compoundA (mkA "self - effacing"); -- from DictEng -lin self_employed_A = compoundA (mkA "self - employed"); -- from DictEng -lin self_esteem_N = mkN "self - esteem" ; -- from DictEng -lin self_evident_A = compoundA (mkA "self - evident"); -- from DictEng -lin self_examination_N = mkN "self - examination" "self - examinations"; -- from DictEng -lin self_explanatory_A = compoundA (mkA "self - explanatory"); -- from DictEng -lin self_help_N = mkN "self - help" ; -- from DictEng -lin self_importance_N = mkN "self - importance" ; -- from DictEng -lin self_important_A = compoundA (mkA "self - important"); -- from DictEng -lin self_imposed_A = compoundA (mkA "self - imposed"); -- from DictEng -lin self_indulgence_N = mkN "self - indulgence" ; -- from DictEng -lin self_indulgent_A = compoundA (mkA "self - indulgent"); -- from DictEng -lin self_insure_V = mkV "self - insure"; -- from DictEng -lin self_interest_N = mkN "self - interest" ; -- from DictEng -lin self_locking_A = compoundA (mkA "self - locking"); -- from DictEng -lin self_made_A = compoundA (mkA "self - made"); -- from DictEng -lin self_opinionated_A = compoundA (mkA "self - opinionated"); -- from DictEng -lin self_pity_N = mkN "self - pity" ; -- from DictEng -lin self_possessed_A = compoundA (mkA "self - possessed"); -- from DictEng -lin self_possession_N = mkN "self - possession" ; -- from DictEng -lin self_preservation_N = mkN "self - preservation" ; -- from DictEng -lin self_raising_A = compoundA (mkA "self - raising"); -- from DictEng -lin self_reliance_N = mkN "self - reliance" ; -- from DictEng -lin self_reliant_A = compoundA (mkA "self - reliant"); -- from DictEng -lin self_respect_N = mkN "self - respect" ; -- from DictEng -lin self_respecting_A = compoundA (mkA "self - respecting"); -- from DictEng -lin self_righteous_A = compoundA (mkA "self - righteous"); -- from DictEng -lin self_rule_N = mkN "self - rule" ; -- from DictEng -lin self_sacrifice_N = mkN "self - sacrifice" "self - sacrifices"; -- from DictEng -lin self_sacrificing_A = compoundA (mkA "self - sacrificing"); -- from DictEng -lin self_same_A = compoundA (mkA "self - same"); -- from DictEng -lin self_sealing_A = compoundA (mkA "self - sealing"); -- from DictEng -lin self_seeker_N = mkN "self - seeker" "self - seekers"; -- from DictEng -lin self_seeking_A = compoundA (mkA "self - seeking"); -- from DictEng -lin self_seeking_N = mkN "self - seeking" ; -- from DictEng -lin self_service_N = mkN "self - service" ; -- from DictEng -lin self_sown_A = compoundA (mkA "self - sown"); -- from DictEng -lin self_starter_N = mkN "self - starter" "self - starters"; -- from DictEng -lin self_styled_A = compoundA (mkA "self - styled"); -- from DictEng -lin self_sufficiency_N = mkN "self - sufficiency" ; -- from DictEng -lin self_sufficient_A = compoundA (mkA "self - sufficient"); -- from DictEng -lin self_sufficing_A = compoundA (mkA "self - sufficing"); -- from DictEng -lin self_supporting_A = compoundA (mkA "self - supporting"); -- from DictEng -lin self_will_N = mkN "self - will" ; -- from DictEng -lin self_willed_A = compoundA (mkA "self - willed"); -- from DictEng -lin self_winding_A = compoundA (mkA "self - winding"); -- from DictEng -lin selfconsciously_Adv = mkAdv "selfconsciously"; -- from DictEng -lin selfish_A = compoundA (mkA "selfish"); -- from DictEng -lin selfishness_N = mkN "selfishness" ; -- from DictEng -lin selflessness_N = mkN "selflessness" ; -lin selfsameness_N = mkN "selfsameness" ; -lin sell_N = mkN "sell" "IRREG"; -- from DictEng -lin sell_V = IrregEng.sell_V; -- from DictEng -lin sell_V2 = mkV2 (IrregEng.sell_V); -- from DictEng -lin sell_VA = mkVA (IrregEng.sell_V); -- from DictEng -lin sell_VS = mkVS (IrregEng.sell_V); -- from DictEng -lin seller_N = mkN "seller" "sellers"; -- from DictEng -lin selling_N = mkN "selling" ; -- from DictEng -lin selloff_N = mkN "selloff" ; -lin sellout_N = mkN "sellout" "sellouts"; -- from DictEng -lin selsyn_N = mkN "selsyn" ; -lin seltzer_N = mkN "seltzer" ; -lin selvage_N = mkN "selvage" "selvages"; -- from DictEng -lin selvedge_N = mkN "selvedge" "selvedges"; -- from DictEng -lin semantic_A = compoundA (mkA "semantic"); -- from DictEng -lin semantically_Adv = mkAdv "semantically" ; -lin semanticist_N = mkN "semanticist" ; -lin semantics_N = mkN "semantics" "semantics"; -- from DictEng -lin semaphore_N = mkN "semaphore" ; -- from DictEng -lin semaphore_V = mkV "semaphore" "semaphores" "semaphored" "semaphored" "semaphoring"; -- from DictEng -lin semaphore_V2 = mkV2 (mkV "semaphore" "semaphores" "semaphored" "semaphored" "semaphoring"); -- from DictEng -lin semblance_N = mkN "semblance" "semblances"; -- from DictEng -lin semen_N = mkN "semen" ; -- from DictEng -lin semester_N = mkN "semester" "semesters"; -- from DictEng -lin semestral_A = mkA "semestral" ; -lin semi_abstraction_N = mkN "semi abstraction" ; -lin semi_climber_N = mkN "semi climber" ; -lin semi_climbing_A = compoundA (mkA "semi climbing") ; -lin semi_dry_A = compoundA (mkA "semi dry") ; -lin semi_erect_A = compoundA (mkA "semi erect") ; -lin semi_evergreen_A = compoundA (mkA "semi evergreen") ; -lin semi_processed_A = compoundA (mkA "semi processed") ; -lin semi_prostrate_A = compoundA (mkA "semi prostrate") ; -lin semi_tuberous_A = compoundA (mkA "semi tuberous") ; -lin semi_upright_A = compoundA (mkA "semi upright") ; -lin semi_wild_A = compoundA (mkA "semi wild") ; -lin semiabstract_A = mkA "semiabstract" ; -lin semiannual_A = mkA "semiannual" ; -lin semiannually_Adv = mkAdv "semiannually" ; -lin semiaquatic_A = mkA "semiaquatic" ; -lin semiarid_A = mkA "semiarid" ; -lin semiautobiographical_A = mkA "semiautobiographical" ; -lin semiautomatic_A = mkA "semiautomatic" ; -lin semibreve_N = mkN "semibreve" "semibreves"; -- from DictEng -lin semicentennial_A = mkA "semicentennial" ; -lin semicentennial_N = mkN "semicentennial" ; -lin semicircle_N = mkN "semicircle" "semicircles"; -- from DictEng -lin semicircular_A = compoundA (mkA "semicircular"); -- from DictEng -lin semicolon_N = mkN "semicolon" "semicolons"; -- from DictEng -lin semicoma_N = mkN "semicoma" ; -lin semicomatose_A = mkA "semicomatose" ; -lin semiconducting_A = compoundA (mkA "semiconducting"); -- from DictEng -lin semiconductor_N = mkN "semiconductor" "semiconductors"; -- from DictEng -lin semiconscious_A = compoundA (mkA "semiconscious"); -- from DictEng -lin semidark_A = mkA "semidark" ; -lin semidarkness_N = mkN "semidarkness" ; -lin semidesert_N = mkN "semidesert" ; -lin semidetached_A = compoundA (mkA "semidetached"); -- from DictEng -lin semidiameter_N = mkN "semidiameter" ; -lin semiempirical_A = mkA "semiempirical" ; -lin semifinal_N = mkN "semifinal" "semifinals"; -- from DictEng -lin semifinalist_N = mkN "semifinalist" "semifinalists"; -- from DictEng -lin semifluidity_N = mkN "semifluidity" ; -lin semiformal_A = mkA "semiformal" ; -lin semigloss_N = mkN "semigloss" ; -lin semihard_A = mkA "semihard" ; -lin semiliquid_A = mkA "semiliquid" ; -lin semiliterate_A = mkA "semiliterate" ; -lin semimonthly_A = mkA "semimonthly" ; -lin semimonthly_Adv = mkAdv "semimonthly" ; -lin semimonthly_N = mkN "semimonthly" ; -lin seminal_A = compoundA (mkA "seminal"); -- from DictEng -lin seminar_N = mkN "seminar" "seminars"; -- from DictEng -lin seminarian_N = mkN "seminarian" ; -lin seminarist_N = mkN "seminarist" "seminarists"; -- from DictEng -lin seminary_N = mkN "seminary" "seminaries"; -- from DictEng -lin seminiferous_A = mkA "seminiferous" ; -lin seminoma_N = mkN "seminoma" ; -lin seminude_A = mkA "seminude" ; -lin semiofficial_A = compoundA (mkA "semiofficial"); -- from DictEng -lin semiopaque_A = mkA "semiopaque" ; -lin semiotic_A = mkA "semiotic" ; -lin semiotics_N = mkN "semiotics" ; -lin semiparasitic_A = mkA "semiparasitic" ; -lin semipermeable_A = mkA "semipermeable" ; -lin semipolitical_A = mkA "semipolitical" ; -lin semiprecious_A = mkA "semiprecious" ; -lin semiprivate_A = mkA "semiprivate" ; -lin semiprofessional_N = mkN "semiprofessional" ; -lin semipublic_A = mkA "semipublic" ; -lin semiquaver_N = mkN "semiquaver" "semiquavers"; -- from DictEng -lin semirigid_A = compoundA (mkA "semirigid"); -- from DictEng -lin semiskilled_A = mkA "semiskilled" ; -lin semisolid_A = mkA "semisolid" ; -lin semite_A = compoundA (mkA "semite"); -- from DictEng -lin semite_N = mkN "semite" "semites"; -- from DictEng -lin semiterrestrial_A = mkA "semiterrestrial" ; -lin semitic_A = compoundA (mkA "semitic"); -- from DictEng -lin semitone_N = mkN "semitone" "semitones"; -- from DictEng -lin semitrailer_N = mkN "semitrailer" ; -lin semitrance_N = mkN "semitrance" ; -lin semitropical_A = compoundA (mkA "semitropical"); -- from DictEng -lin semivowel_N = mkN "semivowel" "semivowels"; -- from DictEng -lin semiweekly_A = mkA "semiweekly" ; -lin semiweekly_Adv = mkAdv "semiweekly" ; -lin semiweekly_N = mkN "semiweekly" ; -lin semolina_N = mkN "semolina" ; -- from DictEng -lin sempstress_N = mkN "sempstress" "sempstresses"; -- from DictEng -lin sen_N = mkN "sen" ; -lin senate_N = mkN "senate" "senates"; -- from DictEng -lin senator_N = mkN "senator" "senators"; -- from DictEng -lin senatorial_A = compoundA (mkA "senatorial"); -- from DictEng -lin senatorship_N = mkN "senatorship" ; -lin send_V = IrregEng.send_V; -- from DictEng -lin send_V2 = mkV2 (IrregEng.send_V); -- from DictEng -lin send_V2V = mkV2V (IrregEng.send_V) noPrep to_Prep ; -- from DictEng -lin send_VS = mkVS (IrregEng.send_V); -- from DictEng -lin send_away_V2 = mkV2 (mkV "send away") ; -lin send_up_N = mkN "send - up" "send - ups"; -- from DictEng -lin sendee_N = mkN "sendee" ; -lin sender_N = mkN "sender" "senders"; -- from DictEng -lin sending_N = mkN "sending" ; -lin sendoff_N = mkN "sendoff" "sendoffs"; -- from DictEng -lin sene_N = mkN "sene" ; -lin senega_N = mkN "senega" ; -lin senegalese_A = compoundA (mkA "senegalese"); -- from DictEng -lin senegalese_N = mkN "senegalese" "senegalese"; -- from DictEng -lin senescence_N = mkN "senescence" ; -- from DictEng -lin senescent_A = compoundA (mkA "senescent"); -- from DictEng -lin seneschal_N = mkN "seneschal" "seneschals"; -- from DictEng -lin senile_A = compoundA (mkA "senile"); -- from DictEng -lin senility_N = mkN "senility" ; -- from DictEng -lin senior_A = compoundA (mkA "senior"); -- from DictEng -lin senior_N = mkN "senior" "seniors"; -- from DictEng -lin seniority_N = mkN "seniority" ; -- from DictEng -lin seniti_N = mkN "seniti" ; -lin senna_N = mkN "senna" ; -- from DictEng -lin sennit_N = mkN "sennit" ; -lin senor_N = mkN "señor" "IRREG"; -- from DictEng -lin senora_N = mkN "senora" "senoras"; -- from DictEng -lin senorita_N = mkN "senorita" "senoritas"; -- from DictEng -lin sensate_A = mkA "sensate" ; -lin sensation_N = mkN "sensation" "sensations"; -- from DictEng -lin sensational_A = compoundA (mkA "sensational"); -- from DictEng -lin sensationalism_N = mkN "sensationalism" ; -- from DictEng -lin sensationalist_N = mkN "sensationalist" "sensationalists"; -- from DictEng -lin sensationally_Adv = mkAdv "sensationally" ; -lin sense_N = mkN "sense" "senses"; -- from DictEng -lin sense_V2 = mkV2 (mkV "sense" "senses" "sensed" "sensed" "sensing"); -- from DictEng -lin sense_VS = mkVS (mkV "sense"); -- from DictEng -lin sense_organ_N = mkN "sense - organ" "sense - organs"; -- from DictEng -lin sensed_A = mkA "sensed" ; -lin senseless_A = compoundA (mkA "senseless"); -- from DictEng -lin senselessly_Adv = mkAdv "senselessly" ; -lin senselessness_N = mkN "senselessness" ; -- from DictEng -lin sensibility_N = mkN "sensibility" "sensibilities"; -- from DictEng -lin sensible_A = compoundA (mkA "sensible"); -- from DictEng -lin sensibleness_N = mkN "sensibleness" ; -lin sensing_N = mkN "sensing" ; -lin sensitive_A = compoundA (mkA "sensitive"); -- from DictEng -lin sensitively_Adv = mkAdv "sensitively" ; -lin sensitivity_N = mkN "sensitivity" "sensitivities"; -- from DictEng -lin sensitization_N = mkN "sensitization" ; -- from DictEng -lin sensitize_V2 = mkV2 (mkV "sensitize" "sensitizes" "sensitized" "sensitized" "sensitizing"); -- from DictEng -lin sensitizer_N = mkN "sensitizer" ; -lin sensitizing_A = mkA "sensitizing" ; -lin sensitizing_N = mkN "sensitizing" ; -lin sensitometer_N = mkN "sensitometer" ; -lin sensorimotor_A = mkA "sensorimotor" ; -lin sensorineural_A = mkA "sensorineural" ; -lin sensorium_N = mkN "sensorium" ; -lin sensory_A = compoundA (mkA "sensory"); -- from DictEng -lin sensual_A = compoundA (mkA "sensual"); -- from DictEng -lin sensualism_N = mkN "sensualism" ; -- from DictEng -lin sensualist_N = mkN "sensualist" "sensualists"; -- from DictEng -lin sensuality_N = mkN "sensuality" ; -- from DictEng -lin sensually_Adv = mkAdv "sensually" ; -lin sensuous_A = compoundA (mkA "sensuous"); -- from DictEng -lin sensuously_Adv = mkAdv "sensuously" ; -lin sensuousness_N = mkN "sensuousness" ; -- from DictEng -lin sent_A = mkA "sent" ; -lin sent_N = mkN "sent" ; -lin sente_N = mkN "sente" ; -lin sentence_N = mkN "sentence" "sentences"; -- from DictEng -lin sentence_V = mkV "sentence"; -- from DictEng -lin sentence_V2 = mkV2 (mkV "sentence" "sentences" "sentenced" "sentenced" "sentencing"); -- from DictEng -lin sentential_A = mkA "sentential" ; -lin sententious_A = compoundA (mkA "sententious"); -- from DictEng -lin sentience_N = mkN "sentience" ; -lin sentient_A = compoundA (mkA "sentient"); -- from DictEng -lin sentiment_N = mkN "sentiment" "sentiments"; -- from DictEng -lin sentimental_A = compoundA (mkA "sentimental"); -- from DictEng -lin sentimentalism_N = mkN "sentimentalism" ; -lin sentimentalist_N = mkN "sentimentalist" "sentimentalists"; -- from DictEng -lin sentimentality_N = mkN "sentimentality" ; -- from DictEng -lin sentimentalization_N = mkN "sentimentalization" ; -lin sentimentalize_V = mkV "sentimentalize" "sentimentalizes" "sentimentalized" "sentimentalized" "sentimentalizing"; -- from DictEng -lin sentimentalize_V2 = mkV2 (mkV "sentimentalize" "sentimentalizes" "sentimentalized" "sentimentalized" "sentimentalizing"); -- from DictEng -lin sentimentally_Adv = mkAdv "sentimentally" ; -lin sentinel_N = mkN "sentinel" "sentinels"; -- from DictEng -lin sentry_N = mkN "sentry" "sentries"; -- from DictEng -lin sentry_box_N = mkN "sentry - box" "sentry - boxes"; -- from DictEng -lin sentry_go_N = mkN "sentry - go" "sentry - gi" {- FIXME: guessed plural form -}; -- from DictEng -lin sepal_N = mkN "sepal" "sepals"; -- from DictEng -lin sepaloid_A = mkA "sepaloid" ; -lin separability_N = mkN "separability" ; -- from DictEng -lin separable_A = compoundA (mkA "separable"); -- from DictEng -lin separably_Adv = mkAdv "separably" ; -lin separate_A = compoundA (mkA "separate"); -- from DictEng -lin separate_N = mkN "separate" "separates"; -- from DictEng -lin separate_V = mkV "separate" "separates" "separated" "separated" "separating"; -- from DictEng -lin separate_V2 = mkV2 (mkV "separate" "separates" "separated" "separated" "separating"); -- from DictEng -lin separated_A = mkA "separated" ; -lin separateness_N = mkN "separateness" ; -lin separation_N = mkN "separation" "separations"; -- from DictEng -lin separationism_N = mkN "separationism" ; -lin separatism_N = mkN "separatism" ; -lin separatist_N = mkN "separatist" "separatists"; -- from DictEng -lin separative_A = mkA "separative" ; -lin separator_N = mkN "separator" "separators"; -- from DictEng -lin sepia_N = mkN "sepia" ; -- from DictEng -lin sepsis_N = mkN "sepsis" ; -- from DictEng -lin septal_A = mkA "septal" ; -lin septation_N = mkN "septation" ; -lin septectomy_N = mkN "septectomy" ; -lin september_N = mkN "september" "septembers"; -- from DictEng -lin septet_N = mkN "septet" "septets"; -- from DictEng -lin septic_A = compoundA (mkA "septic"); -- from DictEng -lin septicaemia_N = mkN "septicaemia" ; -- from DictEng -lin septicemia_N = mkN "septicemia" ; -- from DictEng -lin septicemic_A = mkA "septicemic" ; -lin septillion_N = mkN "septillion" ; -lin septrional_A = mkA "septrional" ; -lin septuagenarian_N = mkN "septuagenarian" "septuagenarians"; -- from DictEng -lin septuagint_N = mkN "septuagint" "septuagints"; -- from DictEng -lin septum_N = mkN "septum" ; -lin septuple_A = mkA "septuple" ; -lin sepulchral_A = compoundA (mkA "sepulchral"); -- from DictEng -lin sepulchre_N = mkN "sepulchre" "sepulchres"; -- from DictEng -lin sepulture_N = mkN "sepulture" ; -- from DictEng -lin sequel_N = mkN "sequel" "sequels"; -- from DictEng -lin sequela_N = mkN "sequela" ; -lin sequella_N = mkN "sequella" ; -lin sequence_N = mkN "sequence" "sequences"; -- from DictEng -lin sequencer_N = mkN "sequencer" ; -lin sequent_A = compoundA (mkA "sequent"); -- from DictEng -lin sequential_A = compoundA (mkA "sequential"); -- from DictEng -lin sequester_V2 = mkV2 (mkV "sequester" "sequesters" "sequestered" "sequestered" "sequestering"); -- from DictEng -lin sequestered_A = compoundA (mkA "sequestered"); -- from DictEng -lin sequestrate_V2 = mkV2 (mkV "sequestrate" "sequestrates" "sequestrated" "sequestrated" "sequestrating"); -- from DictEng -lin sequestration_N = mkN "sequestration" "sequestrations"; -- from DictEng -lin sequin_N = mkN "sequin" "sequins"; -- from DictEng -lin sequoia_N = mkN "sequoia" "sequoias"; -- from DictEng -lin seraglio_N = mkN "seraglio" "seraglios"; -- from DictEng -lin serape_N = mkN "serape" ; -lin seraph_N = mkN "seraph" "seraphs"; -- from DictEng -lin seraphic_A = compoundA (mkA "seraphic"); -- from DictEng -lin serbo_croat_N = mkN "serbo - croat" ; -- from DictEng -lin sere_A = compoundA (mkA "sere"); -- from DictEng -lin serenade_N = mkN "serenade" "serenades"; -- from DictEng -lin serenade_V2 = mkV2 (mkV "serenade" "serenades" "serenaded" "serenaded" "serenading"); -- from DictEng -lin serendipitous_A = mkA "serendipitous" ; -lin serendipity_N = mkN "serendipity" ; -- from DictEng -lin serene_A = compoundA (mkA "serene"); -- from DictEng -lin serenely_Adv = mkAdv "serenely" ; -lin sereness_N = mkN "sereness" ; -lin serenity_N = mkN "serenity" ; -- from DictEng -lin serf_N = mkN "serf" "serfs"; -- from DictEng -lin serfdom_N = mkN "serfdom" ; -- from DictEng -lin serflike_A = mkA "serflike" ; -lin serge_N = mkN "serge" ; -- from DictEng -lin sergeant_N = mkN "sergeant" "sergeants"; -- from DictEng -lin sergeant_major_N = mkN "sergeant - major" "sergeant - majors"; -- from DictEng -lin serger_N = mkN "serger" ; -lin serial_A = compoundA (mkA "serial"); -- from DictEng -lin serial_N = mkN "serial" "serials"; -- from DictEng -lin serialism_N = mkN "serialism" ; -lin serialization_N = mkN "serialization" ; -lin serialize_V2 = mkV2 (mkV "serialize" "serializes" "serialized" "serialized" "serializing"); -- from DictEng -lin serially_Adv = mkAdv "serially" ; -lin seriatim_Adv = mkAdv "seriatim"; -- from DictEng -lin sericultural_A = compoundA (mkA "sericultural"); -- from DictEng -lin sericulture_N = mkN "sericulture" "sericultures"; -- from DictEng -lin sericulturist_N = mkN "sericulturist" "sericulturists"; -- from DictEng -lin series_N = mkN "series" "series"; -- from DictEng -lin serif_N = mkN "serif" ; -lin serigraphy_N = mkN "serigraphy" ; -lin serin_N = mkN "serin" ; -lin serine_N = mkN "serine" ; -lin seriocomedy_N = mkN "seriocomedy" ; -lin seriocomic_A = compoundA (mkA "seriocomic"); -- from DictEng -lin serious_A = compoundA (mkA "serious"); -- from DictEng -lin seriously_Adv = mkAdv "seriously" ; -lin seriousness_N = mkN "seriousness" ; -- from DictEng -lin serjeant_N = mkN "serjeant" "serjeants"; -- from DictEng -lin serjeant_at_law_N = mkN "serjeant at law" ; -lin serjeant_at_arms_N = mkN "serjeant - at - arms" "serjeants - at - arms"; -- from DictEng -lin sermon_N = mkN "sermon" "sermons"; -- from DictEng -lin sermonize_V = mkV "sermonize" "sermonizes" "sermonized" "sermonized" "sermonizing"; -- from DictEng -lin sermonize_V2 = mkV2 (mkV "sermonize" "sermonizes" "sermonized" "sermonized" "sermonizing"); -- from DictEng -lin serologic_A = mkA "serologic" ; -lin serologist_N = mkN "serologist" ; -lin serology_N = mkN "serology" ; -lin serotine_N = mkN "serotine" ; -lin serotonin_N = mkN "serotonin" ; -lin serous_A = compoundA (mkA "serous"); -- from DictEng -lin serow_N = mkN "serow" ; -lin serpent_N = mkN "serpent" "serpents"; -- from DictEng -lin serpentine_A = compoundA (mkA "serpentine"); -- from DictEng -lin serrate_A = mkA "serrate" ; -lin serrated_A = compoundA (mkA "serrated"); -- from DictEng -lin serration_N = mkN "serration" ; -lin serratus_N = mkN "serratus" ; -lin serried_A = compoundA (mkA "serried"); -- from DictEng -lin serrulate_A = mkA "serrulate" ; -lin sertraline_N = mkN "sertraline" ; -lin sertularian_N = mkN "sertularian" ; -lin serum_N = mkN "serum" ; -- from DictEng -lin serval_N = mkN "serval" ; -lin servant_N = mkN "servant" "servants"; -- from DictEng -lin serve_N = mkN "serve" "serves"; -- from DictEng -lin serve_V = mkV "serve" "serves" "served" "served" "serving"; -- from DictEng -lin serve_V2 = mkV2 (mkV "serve" "serves" "served" "served" "serving"); -- from DictEng -lin serve_VS = mkVS (mkV "serve" "serves" "served" "served" "serving"); -- from DictEng -lin serve_VV = mkVV (mkV "serve" "serves" "served" "served" "serving"); -- from DictEng -lin server_N = mkN "server" "servers"; -- from DictEng -lin service_N = mkN "service" "services"; -- from DictEng -lin service_V2 = mkV2 (mkV "service" "services" "serviced" "serviced" "servicing"); -- from DictEng -lin serviceability_N = mkN "serviceability" ; -lin serviceable_A = compoundA (mkA "serviceable"); -- from DictEng -lin serviceman_N = mkN "serviceman" "servicemen" {- FIXME: guessed plural form -}; -- from DictEng -lin services_N = mkN "services" ; -lin servicing_N = mkN "servicing" ; -lin serviette_N = mkN "serviette" "serviettes"; -- from DictEng -lin servile_A = compoundA (mkA "servile"); -- from DictEng -lin servility_N = mkN "servility" ; -- from DictEng -lin serving_N = mkN "serving" "servings"; -- from DictEng -lin servitor_N = mkN "servitor" "servitors"; -- from DictEng -lin servitude_N = mkN "servitude" ; -- from DictEng -lin servo_N = mkN "servo" ; -lin servomechanical_A = mkA "servomechanical" ; -lin sesame_N = mkN "sesame" ; -- from DictEng -lin sesbania_N = mkN "sesbania" ; -lin sesotho_N = mkN "sesotho" ; -- from DictEng -lin sesquicentennial_N = mkN "sesquicentennial" ; -lin sesquipedalian_A = compoundA (mkA "sesquipedalian"); -- from DictEng -lin sesquipedalian_N = mkN "sesquipedalian" ; -lin sesquipedality_N = mkN "sesquipedality" ; -lin sessile_A = mkA "sessile" ; -lin session_N = mkN "session" "sessions"; -- from DictEng -lin sestet_N = mkN "sestet" ; -lin set_A = mkA "set" ; -lin set_N = mkN "set" "sets"; -- from DictEng -lin set_V = IrregEng.set_V; -- from DictEng -lin set_V2 = mkV2 (IrregEng.set_V); -- from DictEng -lin set_VS = mkVS (IrregEng.set_V); -- from DictEng -lin set_VV = mkVV (IrregEng.set_V); -- from DictEng -lin set_back_N = mkN "set back" ; -lin set_to_N = mkN "set - to" "set - tos"; -- from DictEng -lin set_about_V2 = mkV2 (mkV "set about") ; -lin set_in_stone_A = compoundA (mkA "set in stone") ; -lin set_off_V2 = mkV2 (mkV "set off") ; -lin set_square_N = mkN "set - square" "set - squares"; -- from DictEng -lin set_to_N = mkN "set - to" "set - tos"; -- from DictEng -lin set_up_N = mkN "set - up" "set - ups"; -- from DictEng -lin seta_N = mkN "seta" ; -lin setback_N = mkN "setback" "setbacks"; -- from DictEng -lin setscrew_N = mkN "setscrew" ; -lin setswana_N = mkN "setswana" ; -- from DictEng -lin sett_N = mkN "sett" "setts"; -- from DictEng -lin settee_N = mkN "settee" "settees"; -- from DictEng -lin setter_N = mkN "setter" "setters"; -- from DictEng -lin setting_N = mkN "setting" "settings"; -- from DictEng -lin settle_N = mkN "settle" "settles"; -- from DictEng -lin settle_V = mkV "settle" "settles" "settled" "settled" "settling"; -- from DictEng -lin settle_V2 = mkV2 (mkV "settle" "settles" "settled" "settled" "settling"); -- from DictEng -lin settle_VA = mkVA (mkV "settle" "settles" "settled" "settled" "settling"); -- from DictEng -lin settle_VS = mkVS (mkV "settle" "settles" "settled" "settled" "settling"); -- from DictEng -lin settled_A = compoundA (mkA "settled"); -- from DictEng -lin settlement_N = mkN "settlement" "settlements"; -- from DictEng -lin settler_N = mkN "settler" "settlers"; -- from DictEng -lin settling_N = mkN "settling" ; -lin settlor_N = mkN "settlor" ; -lin setup_N = mkN "setup" ; -lin seven_A = mkA "seven" ; -lin seven_N = mkN "seven" ; -lin seven_membered_A = compoundA (mkA "seven membered") ; -lin seven_sided_A = compoundA (mkA "seven sided") ; -lin seven_spot_N = mkN "seven spot" ; -lin seven_up_N = mkN "seven up" ; -lin sevenfold_A = compoundA (mkA "sevenfold"); -- from DictEng -lin sevenfold_Adv = mkAdv "sevenfold"; -- from DictEng -lin seventeen_A = mkA "seventeen" ; -lin seventeen_N = mkN "seventeen" ; -lin seventeenth_A = mkA "seventeenth" ; -lin seventeenth_N = mkN "seventeenth" ; -lin seventh_A = mkA "seventh" ; -lin seventh_N = mkN "seventh" ; -lin seventhly_Adv = mkAdv "seventhly" ; -lin seventies_N = mkN "seventies" ; -lin seventieth_A = mkA "seventieth" ; -lin seventieth_N = mkN "seventieth" ; -lin seventy_A = mkA "seventy" ; -lin seventy_N = mkN "seventy" ; -lin seventy_eight_A = compoundA (mkA "seventy eight") ; -lin seventy_eight_N = mkN "seventy eight" ; -lin seventy_fifth_A = compoundA (mkA "seventy fifth") ; -lin seventy_five_A = compoundA (mkA "seventy five") ; -lin seventy_four_A = compoundA (mkA "seventy four") ; -lin seventy_nine_A = compoundA (mkA "seventy nine") ; -lin seventy_one_A = compoundA (mkA "seventy one") ; -lin seventy_seven_A = compoundA (mkA "seventy seven") ; -lin seventy_six_A = compoundA (mkA "seventy six") ; -lin seventy_three_A = compoundA (mkA "seventy three") ; -lin seventy_two_A = compoundA (mkA "seventy two") ; -lin sever_V = mkV "sever" "severs" "severed" "severed" "severing"; -- from DictEng -lin sever_V2 = mkV2 (mkV "sever" "severs" "severed" "severed" "severing"); -- from DictEng -lin several_A = compoundA (mkA "several"); -- from DictEng -lin severally_Adv = mkAdv "severally"; -- from DictEng -lin severalty_N = mkN "severalty" ; -lin severance_N = mkN "severance" ; -- from DictEng -lin severe_A = mkA "severe" "severer"; -- from DictEng -lin severed_A = mkA "severed" ; -lin severity_N = mkN "severity" "severities"; -- from DictEng -lin sew_V = IrregEng.sew_V; -- from DictEng -lin sew_V2 = mkV2 (IrregEng.sew_V); -- from DictEng -lin sewage_N = mkN "sewage" ; -- from DictEng -lin sewage_farm_N = mkN "sewage - farm" "sewage - farms"; -- from DictEng -lin sewage_works_N = mkN "sewage - works" "sewage - works"; -- from DictEng -lin sewed_A = mkA "sewed" ; -lin sewer_N = mkN "sewer" "sewers"; -- from DictEng -lin sewer_gas_N = mkN "sewer - gas" ; -- from DictEng -lin sewer_rat_N = mkN "sewer - rat" "sewer - rats"; -- from DictEng -lin sewerage_N = mkN "sewerage" "sewerages"; -- from DictEng -lin sewing_N = mkN "sewing" ; -- from DictEng -lin sewing_machine_N = mkN "sewing - machine" "sewing - machines"; -- from DictEng -lin sex_N = mkN "sex" "sexes"; -- from DictEng -lin sex_V2 = mkV2 (mkV "sex" "sexes" "sexed" "sexed" "sexing"); -- from DictEng -lin sex_limited_A = compoundA (mkA "sex limited") ; -lin sex_linked_A = compoundA (mkA "sex linked") ; -lin sex_starved_A = compoundA (mkA "sex - starved"); -- from DictEng -lin sex_starved_A = compoundA (mkA "sex - starved"); -- from DictEng -lin sexagenarian_A = compoundA (mkA "sexagenarian"); -- from DictEng -lin sexagenarian_N = mkN "sexagenarian" "sexagenarians"; -- from DictEng -lin sexagesimal_A = mkA "sexagesimal" ; -lin sexcapade_N = mkN "sexcapade" ; -lin sexed_A = compoundA (mkA "sexed"); -- from DictEng -lin sexism_N = mkN "sexism" ; -- from DictEng -lin sexist_A = compoundA (mkA "sexist"); -- from DictEng -lin sexist_N = mkN "sexist" "sexists"; -- from DictEng -lin sexless_A = compoundA (mkA "sexless"); -- from DictEng -lin sexploitation_N = mkN "sexploitation" ; -lin sext_N = mkN "sext" ; -lin sextant_N = mkN "sextant" "sextants"; -- from DictEng -lin sextet_N = mkN "sextet" "sextets"; -- from DictEng -lin sextette_N = mkN "sextette" "sextettes"; -- from DictEng -lin sextillion_N = mkN "sextillion" ; -lin sexton_N = mkN "sexton" "sextons"; -- from DictEng -lin sextuple_A = mkA "sextuple" ; -lin sexual_A = compoundA (mkA "sexual"); -- from DictEng -lin sexuality_N = mkN "sexuality" ; -- from DictEng -lin sexually_Adv = mkAdv "sexually" ; -lin sexy_A = mkA "sexy" "sexier"; -- from DictEng -lin seychellois_A = compoundA (mkA "seychellois"); -- from DictEng -lin seychellois_N = mkN "seychellois" "seychellois"; -- from DictEng -lin sforzando_N = mkN "sforzando" ; -lin sgraffito_N = mkN "sgraffito" ; -lin shabbily_Adv = mkAdv "shabbily"; -- from DictEng -lin shabbiness_N = mkN "shabbiness" ; -- from DictEng -lin shabby_A = mkA "shabby" "shabbier"; -- from DictEng -lin shabby_genteel_A = compoundA (mkA "shabby - genteel"); -- from DictEng -lin shabby_genteel_A = compoundA (mkA "shabby - genteel"); -- from DictEng -lin shack_N = mkN "shack" "shacks"; -- from DictEng -lin shack_V = mkV "shack" "shacks" "shacked" "shacked" "shacking"; -- from DictEng -lin shackle_N = mkN "shackle" "shackles"; -- from DictEng -lin shackle_V2 = mkV2 (mkV "shackle" "shackles" "shackled" "shackled" "shackling"); -- from DictEng -lin shad_N = mkN "shad" "shad"; -- from DictEng -lin shaddock_N = mkN "shaddock" "shaddocks"; -- from DictEng -lin shade_N = mkN "shade" "shades"; -- from DictEng -lin shade_V = mkV "shade" "shades" "shaded" "shaded" "shading"; -- from DictEng -lin shade_V2 = mkV2 (mkV "shade" "shades" "shaded" "shaded" "shading"); -- from DictEng -lin shade_tree_N = mkN "shade - tree" "shade - trees"; -- from DictEng -lin shaded_A = mkA "shaded" ; -lin shadiness_N = mkN "shadiness" ; -lin shading_N = mkN "shading" "shadings"; -- from DictEng -lin shadow_N = mkN "shadow" "shadows"; -- from DictEng -lin shadow_V2 = mkV2 (mkV "shadow" "shadows" "shadowed" "shadowed" "shadowing"); -- from DictEng -lin shadow_boxing_N = mkN "shadow - boxing" ; -- from DictEng -lin shadowboxing_N = mkN "shadowboxing" ; -lin shadowing_N = mkN "shadowing" ; -lin shadowy_A = mkA "shadowy" "shadowier"; -- from DictEng -lin shady_A = mkA "shady" "shadier"; -- from DictEng -lin shaft_N = mkN "shaft" "shafts"; -- from DictEng -lin shag_N = mkN "shag" ; -- from DictEng -lin shag_V = mkV "shag" "shags" "shagged" "shagged" "shagging"; -- from DictEng -lin shag_V2 = mkV2 (mkV "shag" "shags" "shagged" "shagged" "shagging"); -- from DictEng -lin shagbark_N = mkN "shagbark" ; -lin shagged_A = mkA "shagged" ; -lin shaggily_Adv = mkAdv "shaggily"; -- from DictEng -lin shagginess_N = mkN "shagginess" ; -- from DictEng -lin shagging_N = mkN "shagging" ; -- from DictEng -lin shaggy_A = mkA "shaggy" "shaggier"; -- from DictEng -lin shaggymane_N = mkN "shaggymane" ; -lin shah_N = mkN "shah" "shahs"; -- from DictEng -lin shahadah_N = mkN "shahadah" ; -lin shaheed_N = mkN "shaheed" ; -lin shaitan_N = mkN "shaitan" ; -lin shakable_A = mkA "shakable" ; -lin shake_N = mkN "shake" "shakes"; -- from DictEng -lin shake_V = IrregEng.shake_V; -- from DictEng -lin shake_V2 = mkV2 (IrregEng.shake_V); -- from DictEng -lin shake_up_N = mkN "shake - up" "shake - ups"; -- from DictEng -lin shakedown_A = mkA "shakedown" ; -lin shakedown_N = mkN "shakedown" "shakedowns"; -- from DictEng -lin shakeout_N = mkN "shakeout" "shakeouts"; -- from DictEng -lin shaker_N = mkN "shaker" "shakers"; -- from DictEng -lin shakespearian_A = compoundA (mkA "shakespearian"); -- from DictEng -lin shakily_Adv = mkAdv "shakily"; -- from DictEng -lin shakiness_N = mkN "shakiness" ; -- from DictEng -lin shaking_N = mkN "shaking" "shakings"; -- from DictEng -lin shaky_A = mkA "shaky" "shakier"; -- from DictEng -lin shale_N = mkN "shale" ; -- from DictEng -lin shale_oil_N = mkN "shale - oil" ; -- from DictEng -lin shallot_N = mkN "shallot" "shallots"; -- from DictEng -lin shallow_A = mkA "shallow" "shallower"; -- from DictEng -lin shallow_N = mkN "shallow" "shallows"; -- from DictEng -lin shallow_V = mkV "shallow" "shallows" "shallowed" "shallowed" "shallowing"; -- from DictEng -lin shallow_draft_A = compoundA (mkA "shallow draft") ; -lin shallowly_Adv = mkAdv "shallowly" ; -lin shallowness_N = mkN "shallowness" ; -lin shallu_N = mkN "shallu" ; -lin sham_A = compoundA (mkA "sham"); -- from DictEng -lin sham_N = mkN "sham" "IRREG"; -- from DictEng -lin sham_V = mkV "sham" "shams" "shammed" "shammed" "shamming"; -- from DictEng -lin sham_V2 = mkV2 (mkV "sham" "shams" "shammed" "shammed" "shamming"); -- from DictEng -lin shaman_N = mkN "shaman" ; -lin shamanism_N = mkN "shamanism" ; -lin shamanist_A = mkA "shamanist" ; -lin shamble_N = mkN "shamble" "shambles"; -- from DictEng -lin shamble_V = mkV "shamble" "shambles" "shambled" "shambled" "shambling"; -- from DictEng -lin shamble_V2 = mkV2 (mkV "shamble") ; -lin shambles_N = mkN "shambles" "IRREG"; -- from DictEng -lin shambolic_A = mkA "shambolic" ; -lin shambolically_Adv = mkAdv "shambolically" ; -lin shame_N = mkN "shame" ; -- from DictEng -lin shame_V2 = mkV2 (mkV "shame" "shames" "shamed" "shamed" "shaming"); -- from DictEng -lin shame_making_A = compoundA (mkA "shame - making"); -- from DictEng -lin shamefaced_A = compoundA (mkA "shamefaced"); -- from DictEng -lin shamefacedly_Adv = mkAdv "shamefacedly" ; -lin shamefacedness_N = mkN "shamefacedness" ; -lin shameful_A = compoundA (mkA "shameful"); -- from DictEng -lin shamefulness_N = mkN "shamefulness" ; -lin shameless_A = compoundA (mkA "shameless"); -- from DictEng -lin shamelessness_N = mkN "shamelessness" ; -- from DictEng -lin shammy_N = mkN "shammy" "shammies"; -- from DictEng -lin shampoo_N = mkN "shampoo" "shampoos"; -- from DictEng -lin shampoo_V2 = mkV2 (mkV "shampoo" "shampoos" "shampooed" "shampooed" "shampooing"); -- from DictEng -lin shamrock_N = mkN "shamrock" "shamrocks"; -- from DictEng -lin shandy_N = mkN "shandy" "shandies"; -- from DictEng -lin shandygaff_N = mkN "shandygaff" ; -lin shanghai_V2 = mkV2 (mkV "shanghai" "shanghais" "shanghaied" "shanghaied" "shanghaiing"); -- from DictEng -lin shanghaier_N = mkN "shanghaier" ; -lin shank_N = mkN "shank" "shanks"; -- from DictEng -lin shanny_N = mkN "shanny" ; -lin shantung_N = mkN "shantung" ; -- from DictEng -lin shanty_N = mkN "shanty" "shanties"; -- from DictEng -lin shantytown_N = mkN "shantytown" "shantytowns"; -- from DictEng -lin shape_N = mkN "shape" "shapes"; -- from DictEng -lin shape_V = mkV "shape" "shapes" "shaped" "shaped" "shaping"; -- from DictEng -lin shape_V2 = mkV2 (mkV "shape" "shapes" "shaped" "shaped" "shaping"); -- from DictEng -lin shape_VV = mkVV (mkV "shape" "shapes" "shaped" "shaped" "shaping"); -- from DictEng -lin shape_up_N = mkN "shape up" ; -lin shaped_A = mkA "shaped" ; -lin shapeless_A = compoundA (mkA "shapeless"); -- from DictEng -lin shapelessly_Adv = mkAdv "shapelessly" ; -lin shapelessness_N = mkN "shapelessness" ; -- from DictEng -lin shapely_A = mkA "shapely" "shapelier"; -- from DictEng -lin shaper_N = mkN "shaper" ; -lin shaping_N = mkN "shaping" ; -lin shard_N = mkN "shard" "shards"; -- from DictEng -lin share_N = mkN "share" "shares"; -- from DictEng -lin share_V = mkV "share" "shares" "shared" "shared" "sharing"; -- from DictEng -lin share_V2 = mkV2 (mkV "share" "shares" "shared" "shared" "sharing"); -- from DictEng -lin share_out_N = mkN "share - out" "share - outs"; -- from DictEng -lin sharecropper_N = mkN "sharecropper" "sharecroppers"; -- from DictEng -lin shared_A = mkA "shared" ; -lin shareholder_N = mkN "shareholder" "shareholders"; -- from DictEng -lin shareholding_N = mkN "shareholding" "shareholdings"; -- from DictEng -lin shareware_N = mkN "shareware" ; -lin shariah_N = mkN "shariah" ; -lin sharing_A = mkA "sharing" ; -lin sharing_N = mkN "sharing" ; -lin shark_N = mkN "shark" "sharks"; -- from DictEng -lin shark_V = mkV "shark" ; -lin sharkskin_N = mkN "sharkskin" "sharkskins"; -- from DictEng -lin sharksucker_N = mkN "sharksucker" ; -lin sharp_A = mkA "sharp" "sharper"; -- from DictEng -lin sharp_Adv = mkAdv "sharp"; -- from DictEng -lin sharp_N = mkN "sharp" "sharps"; -- from DictEng -lin sharp_cornered_A = compoundA (mkA "sharp cornered") ; -lin sharp_eared_A = compoundA (mkA "sharp eared") ; -lin sharp_limbed_A = compoundA (mkA "sharp limbed") ; -lin sharp_nosed_A = compoundA (mkA "sharp nosed") ; -lin sharp_pointed_A = compoundA (mkA "sharp pointed") ; -lin sharp_toothed_A = compoundA (mkA "sharp toothed") ; -lin sharp_eyed_A = compoundA (mkA "sharp - eyed"); -- from DictEng -lin sharp_set_A = compoundA (mkA "sharp - set"); -- from DictEng -lin sharp_sighted_A = compoundA (mkA "sharp - sighted"); -- from DictEng -lin sharp_witted_A = compoundA (mkA "sharp - witted"); -- from DictEng -lin sharpen_V = mkV "sharpen" "sharpens" "sharpened" "sharpened" "sharpening"; -- from DictEng -lin sharpen_V2 = mkV2 (mkV "sharpen" "sharpens" "sharpened" "sharpened" "sharpening"); -- from DictEng -lin sharpened_A = mkA "sharpened" ; -lin sharpener_N = mkN "sharpener" "sharpeners"; -- from DictEng -lin sharper_N = mkN "sharper" "sharpers"; -- from DictEng -lin sharpie_N = mkN "sharpie" ; -lin sharply_Adv = mkAdv "sharply" ; -lin sharpness_N = mkN "sharpness" ; -- from DictEng -lin sharpshooter_N = mkN "sharpshooter" "sharpshooters"; -- from DictEng -lin shatter_V = mkV "shatter" "shatters" "shattered" "shattered" "shattering"; -- from DictEng -lin shatter_V2 = mkV2 (mkV "shatter" "shatters" "shattered" "shattered" "shattering"); -- from DictEng -lin shattered_A = mkA "shattered" ; -lin shattering_A = mkA "shattering" ; -lin shatterproof_A = compoundA (mkA "shatterproof"); -- from DictEng -lin shave_N = mkN "shave" "shaves"; -- from DictEng -lin shave_V = mkV "shave" "shaves" "shaved" "shaved" "shaving"; -- from DictEng -lin shave_V2 = mkV2 (mkV "shave" "shaves" "shaved" "shaved" "shaving"); -- from DictEng -lin shaven_A = mkA "shaven" ; -lin shaver_N = mkN "shaver" "shavers"; -- from DictEng -lin shavian_A = compoundA (mkA "shavian"); -- from DictEng -lin shavian_N = mkN "shavian" "shavians"; -- from DictEng -lin shaving_brush_N = mkN "shaving - brush" "shaving - brushes"; -- from DictEng -lin shawl_N = mkN "shawl" "shawls"; -- from DictEng -lin shawm_N = mkN "shawm" ; -lin she_Pron = mkPron "she" "her" "her" "hers" singular P3 feminine ; -- from DictEng -lin she_devil_N = mkN "she devil" ; -lin she_oak_N = mkN "she oak" ; -lin she_goat_N = mkN "she - goat" "she - goats"; -- from DictEng -lin sheaf_N = mkN "sheaf" "sheaves"; -- from DictEng -lin shear_N = mkN "shear" ; -lin shear_V2 = mkV2 (mkV "shear" "shears" "sheared" "sheared" "shearing"); -- from DictEng -lin sheared_A = mkA "sheared" ; -lin shearer_N = mkN "shearer" ; -lin shearing_N = mkN "shearing" ; -lin shears_N = mkN "shears" ; -lin shearwater_N = mkN "shearwater" ; -lin sheath_N = mkN "sheath" "sheaths"; -- from DictEng -lin sheath_knife_N = mkN "sheath - knife" "sheath - knives"; -- from DictEng -lin sheathe_V2 = mkV2 (mkV "sheathe" "sheathes" "sheathed" "sheathed" "sheathing"); -- from DictEng -lin sheathed_A = mkA "sheathed" ; -lin sheathing_N = mkN "sheathing" "sheathings"; -- from DictEng -lin shebang_N = mkN "shebang" "IRREG"; -- from DictEng -lin shebeen_N = mkN "shebeen" "shebeens"; -- from DictEng -lin shed_N = mkN "shed" "sheds"; -- from DictEng -lin shed_V = irregV "shed" "shed" "shed"; -lin shed_V2 = mkV2 (IrregEng.shed_V); -- from DictEng -lin shedder_N = mkN "shedder" ; -lin shedding_N = mkN "shedding" ; -lin sheen_N = mkN "sheen" ; -- from DictEng -lin sheep_N = mkN "sheep" "sheep"; -- from DictEng -lin sheep_tick_N = mkN "sheep tick" ; -lin sheepdog_N = mkN "sheepdog" "sheepdogs"; -- from DictEng -lin sheepfold_N = mkN "sheepfold" "sheepfolds"; -- from DictEng -lin sheepherder_N = mkN "sheepherder" ; -lin sheepish_A = compoundA (mkA "sheepish"); -- from DictEng -lin sheepishly_Adv = mkAdv "sheepishly" ; -lin sheepishness_N = mkN "sheepishness" ; -- from DictEng -lin sheeplike_A = mkA "sheeplike" ; -lin sheepman_N = mkN "sheepman" ; -lin sheeprun_N = mkN "sheeprun" "sheepruns"; -- from DictEng -lin sheepshank_N = mkN "sheepshank" ; -lin sheepshead_N = mkN "sheepshead" ; -lin sheepshearing_N = mkN "sheepshearing" ; -lin sheepskin_N = mkN "sheepskin" "sheepskins"; -- from DictEng -lin sheepwalk_N = mkN "sheepwalk" ; -lin sheer_A = mkA "sheer" "sheerer"; -- from DictEng -lin sheer_Adv = mkAdv "sheer"; -- from DictEng -lin sheer_V = mkV "sheer" "sheers" "sheered" "sheered" "sheering"; -- from DictEng -lin sheet_N = mkN "sheet" "sheets"; -- from DictEng -lin sheet_anchor_N = mkN "sheet - anchor" "sheet - anchors"; -- from DictEng -lin sheet_lightning_N = mkN "sheet - lightning" ; -- from DictEng -lin sheeting_N = mkN "sheeting" ; -- from DictEng -lin sheetlike_A = mkA "sheetlike" ; -lin shegetz_N = mkN "shegetz" ; -lin sheik_N = mkN "sheik" "sheiks"; -- from DictEng -lin sheika_N = mkN "sheika" ; -lin sheikdom_N = mkN "sheikdom" "sheikdoms"; -- from DictEng -lin sheikh_N = mkN "sheikh" "sheikhs"; -- from DictEng -lin sheikhdom_N = mkN "sheikhdom" "sheikhdoms"; -- from DictEng -lin shekel_N = mkN "shekel" "shekels"; -- from DictEng -lin sheldrake_N = mkN "sheldrake" "sheldrakes"; -- from DictEng -lin shelduck_N = mkN "shelduck" ; -lin shelf_N = mkN "shelf" "shelves" {- FIXME: guessed plural form -}; -- from DictEng -lin shelfful_N = mkN "shelfful" ; -lin shelflike_A = mkA "shelflike" ; -lin shell_N = mkN "shell" "shells"; -- from DictEng -lin shell_V = mkV "shell" "shells" "shelled" "shelled" "shelling"; -- from DictEng -lin shell_V2 = mkV2 (mkV "shell" "shells" "shelled" "shelled" "shelling"); -- from DictEng -lin shell_shock_N = mkN "shell - shock" ; -- from DictEng -lin shellac_N = mkN "shellac" ; -- from DictEng -lin shellac_V2 = mkV2 (mkV "shellac" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin shelled_A = mkA "shelled" ; -lin sheller_N = mkN "sheller" ; -lin shellfire_N = mkN "shellfire" ; -- from DictEng -lin shellfish_N = mkN "shellfish" "shellfish"; -- from DictEng -lin shellflower_N = mkN "shellflower" ; -lin shellproof_A = compoundA (mkA "shellproof"); -- from DictEng -lin shelter_N = mkN "shelter" "shelters"; -- from DictEng -lin shelter_V = mkV "shelter" "shelters" "sheltered" "sheltered" "sheltering"; -- from DictEng -lin shelter_V2 = mkV2 (mkV "shelter" "shelters" "sheltered" "sheltered" "sheltering"); -- from DictEng -lin sheltered_A = mkA "sheltered" ; -lin shelve_V = mkV "shelve" "shelves" "shelved" "shelved" "shelving"; -- from DictEng -lin shelve_V2 = mkV2 (mkV "shelve" "shelves" "shelved" "shelved" "shelving"); -- from DictEng -lin shelver_N = mkN "shelver" ; -lin shepherd_N = mkN "shepherd" "shepherds"; -- from DictEng -lin shepherd_V2 = mkV2 (mkV "shepherd" "shepherds" "shepherded" "shepherded" "shepherding"); -- from DictEng -lin shepherdess_N = mkN "shepherdess" "shepherdesses"; -- from DictEng -lin sheraton_N = mkN "sheraton" ; -- from DictEng -lin sherbert_N = mkN "sherbert" ; -lin sherbet_N = mkN "sherbet" "sherbets"; -- from DictEng -lin sheriff_N = mkN "sheriff" "sheriffs"; -- from DictEng -lin sherry_N = mkN "sherry" "sherries"; -- from DictEng -lin shew_V = mkV "shew" "shews" "shewed" "shewed" "shewing"; -- from DictEng -lin shew_V2 = mkV2 (mkV "shew" "shews" "shewed" "shewed" "shewing"); -- from DictEng -lin shibboleth_N = mkN "shibboleth" "shibboleths"; -- from DictEng -lin shield_N = mkN "shield" "shields"; -- from DictEng -lin shield_V2 = mkV2 (mkV "shield" "shields" "shielded" "shielded" "shielding"); -- from DictEng -lin shielded_A = mkA "shielded" ; -lin shielding_N = mkN "shielding" ; -lin shift_N = mkN "shift" "shifts"; -- from DictEng -lin shift_V = mkV "shift" "shifts" "shifted" "shifted" "shifting"; -- from DictEng -lin shift_V2 = mkV2 (mkV "shift" "shifts" "shifted" "shifted" "shifting"); -- from DictEng -lin shiftily_Adv = mkAdv "shiftily"; -- from DictEng -lin shiftiness_N = mkN "shiftiness" ; -- from DictEng -lin shifting_A = mkA "shifting" ; -lin shiftless_A = compoundA (mkA "shiftless"); -- from DictEng -lin shiftlessness_N = mkN "shiftlessness" ; -lin shifty_A = mkA "shifty" "shiftier"; -- from DictEng -lin shigella_N = mkN "shigella" ; -lin shigellosis_N = mkN "shigellosis" ; -lin shiitake_N = mkN "shiitake" ; -lin shiksa_N = mkN "shiksa" ; -lin shill_N = mkN "shill" ; -lin shillelagh_N = mkN "shillelagh" "shillelaghs"; -- from DictEng -lin shilling_N = mkN "shilling" "shillings"; -- from DictEng -lin shillyshally_N = mkN "shillyshally" ; -- from DictEng -lin shillyshally_V = mkV "shillyshally" "shillyshallies" "shillyshallied" "shillyshallied" "shillyshallying"; -- from DictEng -lin shim_N = mkN "shim" ; -lin shimmer_N = mkN "shimmer" ; -- from DictEng -lin shimmer_V = mkV "shimmer" "shimmers" "shimmered" "shimmered" "shimmering"; -- from DictEng -lin shimmery_A = mkA "shimmery" ; -lin shimmy_N = mkN "shimmy" ; -lin shin_N = mkN "shin" "shins"; -- from DictEng -lin shin_V = mkV "shin" "shins" "shinned" "shinned" "shinning"; -- from DictEng -lin shinbone_N = mkN "shinbone" "shinbones"; -- from DictEng -lin shindig_N = mkN "shindig" "shindigs"; -- from DictEng -lin shindy_N = mkN "shindy" "shindies"; -- from DictEng -lin shine_N = mkN "shine" ; -- from DictEng -lin shine_V = IrregEng.shine_V; -- from DictEng -lin shine_V2 = mkV2 (IrregEng.shine_V); -- from DictEng -lin shiner_N = mkN "shiner" ; -lin shingle_N = mkN "shingle" "shingles"; -- from DictEng -lin shingle_V2 = mkV2 (mkV "shingle" "shingles" "shingled" "shingled" "shingling"); -- from DictEng -lin shingler_N = mkN "shingler" ; -lin shingles_N = mkN "shingles" "shingles"; -- from DictEng -lin shingling_N = mkN "shingling" ; -lin shingly_A = mkA "shingly" "shinglier"; -- from DictEng -lin shinguard_N = mkN "shinguard" "shinguards"; -- from DictEng -lin shininess_N = mkN "shininess" ; -lin shining_A = mkA "shining" ; -lin shining_N = mkN "shining" ; -lin shinny_N = mkN "shinny" ; -lin shinplaster_N = mkN "shinplaster" ; -lin shiny_A = mkA "shiny" "shinier"; -- from DictEng -lin ship_N = mkN "ship" "ships"; -- from DictEng -lin ship_V = mkV "ship" "ships" "shipped" "shipped" "shipping"; -- from DictEng -lin ship_V2 = mkV2 (mkV "ship" "ships" "shipped" "shipped" "shipping"); -- from DictEng -lin ship's_chandler_N = mkN "ship's - chandler" "ship's - chandlers"; -- from DictEng -lin ship_breaker_N = mkN "ship - breaker" "ship - breakers"; -- from DictEng -lin ship_breaker_N = mkN "ship - breaker" "ship - breakers"; -- from DictEng -lin ship_canal_N = mkN "ship - canal" "ship - canals"; -- from DictEng -lin shipboard_A = compoundA (mkA "shipboard"); -- from DictEng -lin shipbroker_N = mkN "shipbroker" "shipbrokers"; -- from DictEng -lin shipbuilder_N = mkN "shipbuilder" "shipbuilders"; -- from DictEng -lin shipbuilding_N = mkN "shipbuilding" ; -- from DictEng -lin shipload_N = mkN "shipload" "shiploads"; -- from DictEng -lin shipmate_N = mkN "shipmate" "shipmates"; -- from DictEng -lin shipment_N = mkN "shipment" "shipments"; -- from DictEng -lin shipowner_N = mkN "shipowner" "shipowners"; -- from DictEng -lin shipper_N = mkN "shipper" "shippers"; -- from DictEng -lin shipping_N = mkN "shipping" ; -- from DictEng -lin shipping_agent_N = mkN "shipping - agent" "shipping - agents"; -- from DictEng -lin shipping_office_N = mkN "shipping - office" "shipping - offices"; -- from DictEng -lin shipshape_A = compoundA (mkA "shipshape"); -- from DictEng -lin shipshape_Adv = mkAdv "shipshape"; -- from DictEng -lin shipside_N = mkN "shipside" ; -lin shipway_N = mkN "shipway" "shipways"; -- from DictEng -lin shipworm_N = mkN "shipworm" ; -lin shipwreck_N = mkN "shipwreck" "shipwrecks"; -- from DictEng -lin shipwreck_V = mkV "shipwreck" "shipwrecks" "shipwrecked" "shipwrecked" "shipwrecking"; -- from DictEng -lin shipwright_N = mkN "shipwright" "shipwrights"; -- from DictEng -lin shipyard_N = mkN "shipyard" "shipyards"; -- from DictEng -lin shire_N = mkN "shire" "shires"; -- from DictEng -lin shirk_V = mkV "shirk" "shirks" "shirked" "shirked" "shirking"; -- from DictEng -lin shirk_V2 = mkV2 (mkV "shirk" "shirks" "shirked" "shirked" "shirking"); -- from DictEng -lin shirker_N = mkN "shirker" "shirkers"; -- from DictEng -lin shirking_N = mkN "shirking" ; -lin shirring_N = mkN "shirring" ; -lin shirt_N = mkN "shirt" "shirts"; -- from DictEng -lin shirt_front_N = mkN "shirt - front" "shirt - fronts"; -- from DictEng -lin shirtdress_N = mkN "shirtdress" ; -lin shirtfront_N = mkN "shirtfront" ; -lin shirting_N = mkN "shirting" ; -- from DictEng -lin shirtmaker_N = mkN "shirtmaker" ; -lin shirtsleeve_N = mkN "shirtsleeve" ; -lin shirtsleeves_N = mkN "shirtsleeves" ; -lin shirttail_N = mkN "shirttail" ; -lin shirtwaist_N = mkN "shirtwaist" "shirtwaists"; -- from DictEng -lin shirtwaister_N = mkN "shirtwaister" "shirtwaisters"; -- from DictEng -lin shirty_A = mkA "shirty" "shirtier"; -- from DictEng -lin shish_kebab_N = mkN "shish kebab" "shish kebabs"; -- from DictEng -lin shit_N = mkN "shit" ; -- from DictEng -lin shit_V = mkV "shit" "shits" "shitted" "shitted" "shitting"; -- from DictEng -lin shitless_A = mkA "shitless" ; -lin shittah_N = mkN "shittah" ; -lin shittimwood_N = mkN "shittimwood" ; -lin shiv_N = mkN "shiv" ; -lin shiva_N = mkN "shiva" ; -lin shivaree_N = mkN "shivaree" ; -lin shiver_N = mkN "shiver" "shivers"; -- from DictEng -lin shiver_V = mkV "shiver" "shivers" "shivered" "shivered" "shivering"; -- from DictEng -lin shiver_V2 = mkV2 (mkV "shiver" "shivers" "shivered" "shivered" "shivering"); -- from DictEng -lin shivery_A = compoundA (mkA "shivery"); -- from DictEng -lin shmegegge_N = mkN "shmegegge" ; -lin shmooze_N = mkN "shmooze" ; -lin shoal_N = mkN "shoal" "shoals"; -- from DictEng -lin shoal_V = mkV "shoal" "shoals" "shoaled" "shoaled" "shoaling"; -- from DictEng -lin shock_Adv = mkAdv "shock"; -- from DictEng -lin shock_N = mkN "shock" "shocks"; -- from DictEng -lin shock_V2 = mkV2 (mkV "shock" "shocks" "shocked" "shocked" "shocking"); -- from DictEng -lin shock_absorbent_A = compoundA (mkA "shock absorbent") ; -lin shock_headed_A = compoundA (mkA "shock - headed"); -- from DictEng -lin shock_brigade_N = mkN "shock - brigade" "shock - brigades"; -- from DictEng -lin shock_headed_A = compoundA (mkA "shock - headed"); -- from DictEng -lin shock_worker_N = mkN "shock - worker" "shock - workers"; -- from DictEng -lin shockable_A = compoundA (mkA "shockable"); -- from DictEng -lin shocker_N = mkN "shocker" "shockers"; -- from DictEng -lin shocking_A = compoundA (mkA "shocking"); -- from DictEng -lin shockingly_Adv = mkAdv "shockingly" ; -lin shod_A = mkA "shod" ; -lin shoddily_Adv = mkAdv "shoddily" ; -lin shoddiness_N = mkN "shoddiness" ; -- from DictEng -lin shoddy_A = mkA "shoddy" "shoddier"; -- from DictEng -lin shoddy_N = mkN "shoddy" ; -- from DictEng -lin shoe_N = mkN "shoe" "shoes"; -- from DictEng -lin shoe_V2 = mkV2 (IrregEng.shoe_V); -- from DictEng -lin shoe_leather_N = mkN "shoe - leather" "shoe - leathers"; -- from DictEng -lin shoebill_N = mkN "shoebill" ; -lin shoeblack_N = mkN "shoeblack" ; -- from DictEng -lin shoebox_N = mkN "shoebox" ; -lin shoeful_N = mkN "shoeful" ; -lin shoehorn_N = mkN "shoehorn" "shoehorns"; -- from DictEng -lin shoehorn_V2 = mkV2 (mkV "shoehorn"); -- from DictEng -lin shoelace_N = mkN "shoelace" "shoelaces"; -- from DictEng -lin shoemaker_N = mkN "shoemaker" "shoemakers"; -- from DictEng -lin shoemaking_N = mkN "shoemaking" ; -- from DictEng -lin shoeshine_N = mkN "shoeshine" ; -lin shoestring_N = mkN "shoestring" "shoestrings"; -- from DictEng -lin shoetree_N = mkN "shoetree" "shoetrees"; -- from DictEng -lin shofar_N = mkN "shofar" ; -lin shogi_N = mkN "shogi" ; -lin shogun_N = mkN "shogun" "shoguns"; -- from DictEng -lin shoji_N = mkN "shoji" ; -lin shoo_V = mkV "shoo" "shoos" "shooed" "shooed" "shooing"; -- from DictEng -lin shoo_V2 = mkV2 (mkV "shoo" "shoos" "shooed" "shooed" "shooing"); -- from DictEng -lin shoofly_N = mkN "shoofly" ; -lin shook_N = mkN "shook" ; -lin shoot_N = mkN "shoot" "shoots"; -- from DictEng -lin shoot_V = IrregEng.shoot_V; -- from DictEng -lin shoot_V2 = mkV2 (IrregEng.shoot_V); -- from DictEng -lin shoot_'em_up_N = mkN "shoot 'em up" ; -lin shoot_down_N = mkN "shoot down" ; -lin shooter_N = mkN "shooter" "shooters"; -- from DictEng -lin shooting_N = mkN "shooting" ; -- from DictEng -lin shooting_box_N = mkN "shooting - box" "shooting - boxes"; -- from DictEng -lin shooting_brake_N = mkN "shooting - brake" "shooting - brakes"; -- from DictEng -lin shooting_gallery_N = mkN "shooting - gallery" "shooting - galleries"; -- from DictEng -lin shooting_range_N = mkN "shooting - range" "shooting - ranges"; -- from DictEng -lin shooting_stick_N = mkN "shooting - stick" "shooting - sticks"; -- from DictEng -lin shop_N = mkN "shop" "shops"; -- from DictEng -lin shop_V = mkV "shop" "shops" "shopped" "shopped" "shopping"; -- from DictEng -lin shop_assistant_N = mkN "shop - assistant" "shop - assistants"; -- from DictEng -lin shop_bell_N = mkN "shop - bell" "shop - bells"; -- from DictEng -lin shop_boy_N = mkN "shop - boy" "shop - boys"; -- from DictEng -lin shop_front_N = mkN "shop - front" "shop - fronts"; -- from DictEng -lin shop_girl_N = mkN "shop - girl" "shop - girls"; -- from DictEng -lin shop_steward_N = mkN "shop - steward" "shop - stewards"; -- from DictEng -lin shopaholic_N = mkN "shopaholic" ; -lin shopfront_N = mkN "shopfront" ; -lin shopkeeper_N = mkN "shopkeeper" "shopkeepers"; -- from DictEng -lin shoplift_V = mkV "shoplift" "shoplifts" "shoplifted" "shoplifted" "shoplifting"; -- from DictEng -lin shoplift_V2 = mkV2 (mkV "shoplift" "shoplifts" "shoplifted" "shoplifted" "shoplifting"); -- from DictEng -lin shoplifter_N = mkN "shoplifter" "shoplifters"; -- from DictEng -lin shoplifting_N = mkN "shoplifting" ; -- from DictEng -lin shopper_N = mkN "shopper" "shoppers"; -- from DictEng -lin shopping_N = mkN "shopping" ; -- from DictEng -lin shopsoiled_A = compoundA (mkA "shopsoiled"); -- from DictEng -lin shopwalker_N = mkN "shopwalker" "shopwalkers"; -- from DictEng -lin shopwindow_N = mkN "shopwindow" "shopwindows"; -- from DictEng -lin shopworn_A = compoundA (mkA "shopworn"); -- from DictEng -lin shore_N = mkN "shore" "shores"; -- from DictEng -lin shore_V2 = mkV2 (mkV "shore" "shores" "shored" "shored" "shoring"); -- from DictEng -lin shorebird_N = mkN "shorebird" ; -lin shoreline_N = mkN "shoreline" ; -lin shoring_N = mkN "shoring" ; -lin shorn_V2 = mkV2 (mkV "shorn"); -- from DictEng -lin short_A = mkA "short" "shorter"; -- from DictEng -lin short_Adv = mkAdv "short"; -- from DictEng -lin short_N = mkN "short" "shorts"; -- from DictEng -lin short_V = mkV "short" "shorts" "shorted" "shorted" "shorting"; -- from DictEng -lin short_V2 = mkV2 (mkV "short" "shorts" "shorted" "shorted" "shorting"); -- from DictEng -lin short_beaked_A = compoundA (mkA "short beaked") ; -lin short_bodied_A = compoundA (mkA "short bodied") ; -lin short_dated_A = compoundA (mkA "short - dated"); -- from DictEng -lin short_eared_A = compoundA (mkA "short eared") ; -lin short_haired_A = compoundA (mkA "short haired") ; -lin short_handed_A = compoundA (mkA "short - handed"); -- from DictEng -lin short_handled_A = compoundA (mkA "short handled") ; -lin short_order_A = compoundA (mkA "short order") ; -lin short_range_A = compoundA (mkA "short - range"); -- from DictEng -lin short_run_A = compoundA (mkA "short run") ; -lin short_snouted_A = compoundA (mkA "short snouted") ; -lin short_spurred_A = compoundA (mkA "short spurred") ; -lin short_stalked_A = compoundA (mkA "short stalked") ; -lin short_stemmed_A = compoundA (mkA "short stemmed") ; -lin short_tailed_A = compoundA (mkA "short tailed") ; -lin short_and_sweet_A = compoundA (mkA "short and sweet") ; -lin short_change_V2 = mkV2 (mkV "short - change" "short - changes" "short - changed" "short - changed" "short - changing"); -- from DictEng -lin short_circuit_N = mkN "short - circuit" "short - circuits"; -- from DictEng -lin short_circuit_V = mkV "short - circuit" "short - circuits" "short - circuited" "short - circuited" "short - circuiting"; -- from DictEng -lin short_circuit_V2 = mkV2 (mkV "short - circuit" "short - circuits" "short - circuited" "short - circuited" "short - circuiting"); -- from DictEng -lin short_dated_A = compoundA (mkA "short - dated"); -- from DictEng -lin short_handed_A = compoundA (mkA "short - handed"); -- from DictEng -lin short_lived_A = compoundA (mkA "short - lived"); -- from DictEng -lin short_range_A = compoundA (mkA "short - range"); -- from DictEng -lin short_sighted_A = compoundA (mkA "short - sighted"); -- from DictEng -lin short_tempered_A = compoundA (mkA "short - tempered"); -- from DictEng -lin short_term_A = compoundA (mkA "short - term"); -- from DictEng -lin short_winded_A = compoundA (mkA "short - winded"); -- from DictEng -lin shortage_N = mkN "shortage" "shortages"; -- from DictEng -lin shortbread_N = mkN "shortbread" ; -- from DictEng -lin shortcake_N = mkN "shortcake" ; -- from DictEng -lin shortcoming_N = mkN "shortcoming" "shortcomings"; -- from DictEng -lin shortcut_N = mkN "shortcut" ; -lin shorten_V = mkV "shorten" "shortens" "shortened" "shortened" "shortening"; -- from DictEng -lin shorten_V2 = mkV2 (mkV "shorten" "shortens" "shortened" "shortened" "shortening"); -- from DictEng -lin shortener_N = mkN "shortener" ; -lin shortening_N = mkN "shortening" ; -- from DictEng -lin shortfall_N = mkN "shortfall" "shortfalls"; -- from DictEng -lin shortgrass_N = mkN "shortgrass" ; -lin shorthand_A = mkA "shorthand" ; -lin shorthand_N = mkN "shorthand" ; -- from DictEng -lin shorthorn_N = mkN "shorthorn" "shorthorns"; -- from DictEng -lin shortia_N = mkN "shortia" ; -lin shortish_A = compoundA (mkA "shortish"); -- from DictEng -lin shortlist_N = mkN "shortlist" "shortlists"; -- from DictEng -lin shortlist_V2 = mkV2 (mkV "shortlist" "shortlists" "shortlisted" "shortlisted" "shortlisting"); -- from DictEng -lin shortly_Adv = mkAdv "shortly" ; -lin shortness_N = mkN "shortness" ; -- from DictEng -lin shortstop_N = mkN "shortstop" ; -lin shot_N = mkN "shot" "shots"; -- from DictEng -lin shot_put_N = mkN "shot - put" "shot - puts"; -- from DictEng -lin shot_tower_N = mkN "shot - tower" "shot - towers"; -- from DictEng -lin shotgun_N = mkN "shotgun" "shotguns"; -- from DictEng -lin should_VV = { - s = table { - VVF VInf => ["be obliged to"] ; - VVF VPres => "should" ; - VVF VPPart => ["been obliged to"] ; - VVF VPresPart => ["being obliged to"] ; - VVF VPast => "shall" ; - VVPastNeg => "shall not" ; - VVPresNeg => "shouldn't" - } ; - typ = VVAux - } ; -lin shoulder_N = mkN "shoulder" "shoulders"; -- from DictEng -lin shoulder_V2 = mkV2 (mkV "shoulder" "shoulders" "shouldered" "shouldered" "shouldering"); -- from DictEng -lin shoulder_to_shoulder_Adv = mkAdv "shoulder to shoulder" ; -lin shoulder_blade_N = mkN "shoulder - blade" "shoulder - blades"; -- from DictEng -lin shoulder_flash_N = mkN "shoulder - flash" "shoulder - flashes"; -- from DictEng -lin shoulder_strap_N = mkN "shoulder - strap" "shoulder - straps"; -- from DictEng -lin shouldered_A = mkA "shouldered" ; -lin shout_N = mkN "shout" "shouts"; -- from DictEng -lin shout_V = mkV "shout" "shouts" "shouted" "shouted" "shouting"; -- from DictEng -lin shout_V2 = mkV2 (mkV "shout" "shouts" "shouted" "shouted" "shouting"); -- from DictEng -lin shouted_A = mkA "shouted" ; -lin shouting_N = mkN "shouting" ; -- from DictEng -lin shove_N = mkN "shove" "shoves"; -- from DictEng -lin shove_V = mkV "shove" "shoves" "shoved" "shoved" "shoving"; -- from DictEng -lin shove_V2 = mkV2 (mkV "shove" "shoves" "shoved" "shoved" "shoving"); -- from DictEng -lin shove_ha'penny_N = mkN "shove - ha'penny" ; -- from DictEng -lin shovel_N = mkN "shovel" "shovels"; -- from DictEng -lin shovel_V2 = mkV2 (mkV "shovel" "shovels" "shovelled" "shovelled" "shovelling"); -- from DictEng -lin shovel_board_N = mkN "shovel - board" ; -- from DictEng -lin shoveler_N = mkN "shoveler" ; -lin shovelful_N = mkN "shovelful" "shovelfuls"; -- from DictEng -lin shovelhead_N = mkN "shovelhead" ; -lin show_N = mkN "show" "shows"; -- from DictEng -lin show_V = IrregEng.show_V; -- from DictEng -lin show_V2 = mkV2 IrregEng.show_V; -- from DictEng -lin show_V2V = mkV2V IrregEng.show_V noPrep to_Prep ; -- from DictEng -lin show_VS = mkVS IrregEng.show_V; -- from DictEng -lin show_stopper_N = mkN "show stopper" ; -lin show_business_N = mkN "show - business" ; -- from DictEng -lin show_off_N = mkN "show - off" "show - offs"; -- from DictEng -lin show_up_V = mkV "show up" ; -lin show_window_N = mkN "show - window" "show - windows"; -- from DictEng -lin showbiz_N = mkN "showbiz" ; -- from DictEng -lin showboat_N = mkN "showboat" "showboats"; -- from DictEng -lin showcase_N = mkN "showcase" "showcases"; -- from DictEng -lin showdown_N = mkN "showdown" "showdowns"; -- from DictEng -lin shower_N = mkN "shower" "showers"; -- from DictEng -lin shower_V = mkV "shower" "showers" "showered" "showered" "showering"; -- from DictEng -lin shower_V2 = mkV2 (mkV "shower" "showers" "showered" "showered" "showering"); -- from DictEng -lin shower_bath_N = mkN "shower - bath" "shower - baths"; -- from DictEng -lin showerhead_N = mkN "showerhead" ; -lin showery_A = mkA "showery" "showerier"; -- from DictEng -lin showgirl_N = mkN "showgirl" "showgirls"; -- from DictEng -lin showily_Adv = mkAdv "showily"; -- from DictEng -lin showiness_N = mkN "showiness" ; -- from DictEng -lin showing_N = mkN "showing" "showings"; -- from DictEng -lin showjumping_N = mkN "showjumping" ; -- from DictEng -lin showman_N = mkN "showman" "showmen" {- FIXME: guessed plural form -}; -- from DictEng -lin showmanship_N = mkN "showmanship" ; -- from DictEng -lin showplace_N = mkN "showplace" "showplaces"; -- from DictEng -lin showroom_N = mkN "showroom" "showrooms"; -- from DictEng -lin showy_A = mkA "showy" "showier"; -- from DictEng -lin shrapnel_N = mkN "shrapnel" ; -- from DictEng -lin shred_N = mkN "shred" "shreds"; -- from DictEng -lin shred_V2 = mkV2 (mkV "shred" "shreds" "shredded" "shredded" "shredding"); -- from DictEng -lin shredder_N = mkN "shredder" ; -lin shrew_N = mkN "shrew" "shrews"; -- from DictEng -lin shrew_sized_A = compoundA (mkA "shrew sized") ; -lin shrew_mouse_N = mkN "shrew - mouse" "shrew - mice"; -- from DictEng -lin shrewd_A = mkA "shrewd" "shrewder"; -- from DictEng -lin shrewdness_N = mkN "shrewdness" ; -- from DictEng -lin shrewish_A = compoundA (mkA "shrewish"); -- from DictEng -lin shrewishly_Adv = mkAdv "shrewishly" ; -lin shrewishness_N = mkN "shrewishness" ; -- from DictEng -lin shriek_N = mkN "shriek" "shrieks"; -- from DictEng -lin shriek_V = mkV "shriek" "shrieks" "shrieked" "shrieked" "shrieking"; -- from DictEng -lin shriek_V2 = mkV2 (mkV "shriek" "shrieks" "shrieked" "shrieked" "shrieking"); -- from DictEng -lin shrieked_A = mkA "shrieked" ; -lin shrift_N = mkN "shrift" ; -- from DictEng -lin shrike_N = mkN "shrike" "shrikes"; -- from DictEng -lin shrill_A = mkA "shrill" "shriller"; -- from DictEng -lin shrill_V = mkV "shrill" "shrills" "shrilled" "shrilled" "shrilling"; -- from DictEng -lin shrill_V2 = mkV2 (mkV "shrill" "shrills" "shrilled" "shrilled" "shrilling"); -- from DictEng -lin shrilling_N = mkN "shrilling" ; -lin shrillness_N = mkN "shrillness" ; -- from DictEng -lin shrilly_Adv = mkAdv "shrilly"; -- from DictEng -lin shrimp_N = mkN "shrimp" "shrimps"; -- from DictEng -lin shrimp_V = mkV "shrimp" "shrimps" "shrimped" "shrimped" "shrimping"; -- from DictEng -lin shrimp_newburg_PN = mkPN "shrimp Newburg" ; -lin shrimper_N = mkN "shrimper" ; -lin shrimpfish_N = mkN "shrimpfish" ; -lin shrine_N = mkN "shrine" "shrines"; -- from DictEng -lin shrine_V2 = mkV2 (mkV "shrine" "shrines" "shrined" "shrined" "shrining"); -- from DictEng -lin shrink_N = mkN "shrink" "shrinks"; -- from DictEng -lin shrink_V = IrregEng.shrink_V; -- from DictEng -lin shrink_V2 = mkV2 (IrregEng.shrink_V); -- from DictEng -lin shrink_wrap_N = mkN "shrink wrap" ; -lin shrinkable_A = compoundA (mkA "shrinkable"); -- from DictEng -lin shrinkage_N = mkN "shrinkage" ; -- from DictEng -lin shrinking_N = mkN "shrinking" ; -lin shrive_V2 = mkV2 (mkV "shrive" "shrives" "shrived" "shrived" "shriving"); -- from DictEng -lin shrivel_V = mkV "shrivel" "shrivels" "shrivelled" "shrivelled" "shrivelling"; -- from DictEng -lin shrivel_V2 = mkV2 (mkV "shrivel" "shrivels" "shrivelled" "shrivelled" "shrivelling"); -- from DictEng -lin shriveled_A = mkA "shriveled" ; -lin shroud_N = mkN "shroud" "shrouds"; -- from DictEng -lin shroud_V2 = mkV2 (mkV "shroud" "shrouds" "shrouded" "shrouded" "shrouding"); -- from DictEng -lin shrove_tuesday_N = mkN "shrove tuesday" "shrove tuesdays"; -- from DictEng -lin shrub_N = mkN "shrub" "shrubs"; -- from DictEng -lin shrubbery_N = mkN "shrubbery" "shrubberies"; -- from DictEng -lin shrubby_A = mkA "shrubby" ; -lin shrubby_st_john's_wort_PN = mkPN "shrubby St John's wort" ; -lin shrublet_N = mkN "shrublet" ; -lin shrug_N = mkN "shrug" "shrugs"; -- from DictEng -lin shrug_V2 = mkV2 (mkV "shrug" "shrugs" "shrugged" "shrugged" "shrugging"); -- from DictEng -lin shrug_VS = mkVS (mkV "shrug"); -- from DictEng -lin shtik_N = mkN "shtik" ; -lin shtikl_N = mkN "shtikl" ; -lin shuck_N = mkN "shuck" "shucks"; -- from DictEng -lin shuck_V2 = mkV2 (mkV "shuck" "shucks" "shucked" "shucked" "shucking"); -- from DictEng -lin shucks_N = mkN "shucks" ; -lin shudder_N = mkN "shudder" "shudders"; -- from DictEng -lin shudder_V = mkV "shudder" "shudders" "shuddered" "shuddered" "shuddering"; -- from DictEng -lin shuddering_A = mkA "shuddering" ; -lin shudderingly_Adv = mkAdv "shudderingly"; -- from DictEng -lin shuffle_N = mkN "shuffle" "shuffles"; -- from DictEng -lin shuffle_V = mkV "shuffle" "shuffles" "shuffled" "shuffled" "shuffling"; -- from DictEng -lin shuffle_V2 = mkV2 (mkV "shuffle" "shuffles" "shuffled" "shuffled" "shuffling"); -- from DictEng -lin shuffleboard_N = mkN "shuffleboard" ; -lin shuffler_N = mkN "shuffler" "shufflers"; -- from DictEng -lin shufti_N = mkN "shufti" ; -lin shun_V2 = mkV2 (mkV "shun" "shuns" "shunned" "shunned" "shunning"); -- from DictEng -lin shunt_N = mkN "shunt" ; -lin shunt_V = mkV "shunt" "shunts" "shunted" "shunted" "shunting"; -- from DictEng -lin shunt_V2 = mkV2 (mkV "shunt" "shunts" "shunted" "shunted" "shunting"); -- from DictEng -lin shunter_N = mkN "shunter" "shunters"; -- from DictEng -lin shush_V = mkV "shush" "shushes" "shushed" "shushed" "shushing"; -- from DictEng -lin shush_V2 = mkV2 (mkV "shush" "shushes" "shushed" "shushed" "shushing"); -- from DictEng -lin shut_A = mkA "shut" ; -lin shut_V = IrregEng.shut_V; -- from DictEng -lin shut_V2 = mkV2 (IrregEng.shut_V); -- from DictEng -lin shut_up_V2 = mkV2 (mkV "shut up") ; -lin shutdown_N = mkN "shutdown" "shutdowns"; -- from DictEng -lin shuteye_N = mkN "shuteye" ; -- from DictEng -lin shutout_N = mkN "shutout" ; -lin shutter_N = mkN "shutter" "shutters"; -- from DictEng -lin shutter_V2 = mkV2 (mkV "shutter" "shutters" "shuttered" "shuttered" "shuttering"); -- from DictEng -lin shutterbug_N = mkN "shutterbug" ; -lin shuttered_A = mkA "shuttered" ; -lin shutting_N = mkN "shutting" ; -lin shuttle_N = mkN "shuttle" "shuttles"; -- from DictEng -lin shuttle_V = mkV "shuttle" "shuttles" "shuttled" "shuttled" "shuttling"; -- from DictEng -lin shuttle_V2 = mkV2 (mkV "shuttle" "shuttles" "shuttled" "shuttled" "shuttling"); -- from DictEng -lin shuttlecock_N = mkN "shuttlecock" "shuttlecocks"; -- from DictEng -lin shy_A = mkA "shy" "shyer"; -- from DictEng -lin shy_N = mkN "shy" "shies"; -- from DictEng -lin shy_V = mkV "shy" "shies" "shied" "shied" "shying"; -- from DictEng -lin shy_V2 = mkV2 (mkV "shy" "shies" "shied" "shied" "shying"); -- from DictEng -lin shyly_Adv = mkAdv "shyly" ; -lin shyness_N = mkN "shyness" ; -- from DictEng -lin shyster_N = mkN "shyster" "shysters"; -- from DictEng -lin sial_N = mkN "sial" ; -lin sialadenitis_N = mkN "sialadenitis" ; -lin sialolith_N = mkN "sialolith" ; -lin siamang_N = mkN "siamang" ; -lin siamese_A = compoundA (mkA "siamese"); -- from DictEng -lin siamese_N = mkN "siamese" "siamese"; -- from DictEng -lin siberian_A = compoundA (mkA "siberian"); -- from DictEng -lin sibilant_A = compoundA (mkA "sibilant"); -- from DictEng -lin sibilant_N = mkN "sibilant" "sibilants"; -- from DictEng -lin sibilation_N = mkN "sibilation" ; -lin sibling_N = mkN "sibling" "siblings"; -- from DictEng -lin sibyl_N = mkN "sibyl" "sibyls"; -- from DictEng -lin sibylline_A = compoundA (mkA "sibylline"); -- from DictEng -lin sic_Adv = mkAdv "sic"; -- from DictEng -lin sicilian_A = compoundA (mkA "sicilian"); -- from DictEng -lin sicilian_N = mkN "sicilian" "sicilians"; -- from DictEng -lin sick_A = compoundA (mkA "sick"); -- from DictEng -lin sick_N = mkN "sick" ; -lin sick_V2 = mkV2 (mkV "sick" "sicks" "sicked" "sicked" "sicking"); -- from DictEng -lin sick_benefit_N = mkN "sick - benefit" "sick - benefits"; -- from DictEng -lin sick_berth_N = mkN "sick - berth" "sick - berths"; -- from DictEng -lin sick_headache_N = mkN "sick - headache" "sick - headaches"; -- from DictEng -lin sick_leave_N = mkN "sick - leave" ; -- from DictEng -lin sick_list_N = mkN "sick - list" "sick - lists"; -- from DictEng -lin sick_parade_N = mkN "sick - parade" "sick - parades"; -- from DictEng -lin sick_pay_N = mkN "sick - pay" ; -- from DictEng -lin sick_room_N = mkN "sick - room" "sick - rooms"; -- from DictEng -lin sickbay_N = mkN "sickbay" "sickbays"; -- from DictEng -lin sickbed_N = mkN "sickbed" "sickbeds"; -- from DictEng -lin sicken_V = mkV "sicken" "sickens" "sickened" "sickened" "sickening"; -- from DictEng -lin sicken_V2 = mkV2 (mkV "sicken" "sickens" "sickened" "sickened" "sickening"); -- from DictEng -lin sickening_A = compoundA (mkA "sickening"); -- from DictEng -lin sickish_A = compoundA (mkA "sickish"); -- from DictEng -lin sickle_N = mkN "sickle" "sickles"; -- from DictEng -lin sicklepod_N = mkN "sicklepod" ; -lin sickly_A = mkA "sickly" "sicklier"; -- from DictEng -lin sickness_N = mkN "sickness" "sicknesses"; -- from DictEng -lin sickroom_N = mkN "sickroom" ; -lin side_A = mkA "side" ; -lin side_N = mkN "side" "sides"; -- from DictEng -lin side_V = mkV "side" "sides" "sided" "sided" "siding"; -- from DictEng -lin side_glance_N = mkN "side - glance" "side - glances"; -- from DictEng -lin side_to_side_A = compoundA (mkA "side to side") ; -lin side_wheeler_N = mkN "side wheeler" ; -lin side_by_side_A = compoundA (mkA "side by side") ; -lin side_chapel_N = mkN "side - chapel" "side - chapels"; -- from DictEng -lin side_dish_N = mkN "side - dish" "side - dishes"; -- from DictEng -lin side_drum_N = mkN "side - drum" "side - drums"; -- from DictEng -lin side_face_Adv = mkAdv "side - face"; -- from DictEng -lin side_glance_N = mkN "side - glance" "side - glances"; -- from DictEng -lin side_road_N = mkN "side - road" "side - roads"; -- from DictEng -lin side_saddle_Adv = mkAdv "side - saddle"; -- from DictEng -lin side_saddle_N = mkN "side - saddle" "side - saddles"; -- from DictEng -lin side_slip_N = mkN "side - slip" "side - slips"; -- from DictEng -lin side_slip_V = mkV "side - slip" "side - slips" "side - slipped" "side - slipped" "side - slipping"; -- from DictEng -lin side_splitting_A = compoundA (mkA "side - splitting"); -- from DictEng -lin side_stroke_N = mkN "side - stroke" ; -- from DictEng -lin side_view_N = mkN "side - view" "side - views"; -- from DictEng -lin sidearm_A = mkA "sidearm" ; -lin sidearm_Adv = mkAdv "sidearm" ; -lin sidebar_N = mkN "sidebar" ; -lin sideboard_N = mkN "sideboard" "sideboards"; -- from DictEng -lin sideburn_N = mkN "sideburn" ; -lin sidecar_N = mkN "sidecar" "sidecars"; -- from DictEng -lin sided_A = compoundA (mkA "sided"); -- from DictEng -lin sidelight_N = mkN "sidelight" "sidelights"; -- from DictEng -lin sideline_N = mkN "sideline" "sidelines"; -- from DictEng -lin sideline_V = mkV "sideline"; -- from DictEng -lin sideline_V2 = mkV2 (mkV "sideline"); -- from DictEng -lin sidelong_A = compoundA (mkA "sidelong"); -- from DictEng -lin sidelong_Adv = mkAdv "sidelong"; -- from DictEng -lin sidereal_A = compoundA (mkA "sidereal"); -- from DictEng -lin siderite_N = mkN "siderite" ; -lin sideroblast_N = mkN "sideroblast" ; -lin siderocyte_N = mkN "siderocyte" ; -lin sideropenia_N = mkN "sideropenia" ; -lin siderosis_N = mkN "siderosis" ; -lin sidesaddle_Adv = mkAdv "sidesaddle" ; -lin sidesaddle_N = mkN "sidesaddle" ; -lin sideshow_N = mkN "sideshow" "sideshows"; -- from DictEng -lin sidesman_N = mkN "sidesman" "sidesmen" {- FIXME: guessed plural form -}; -- from DictEng -lin sidestep_N = mkN "sidestep" "sidesteps"; -- from DictEng -lin sidestep_V = mkV "sidestep" "sidesteps" "sidestepped" "sidestepped" "sidestepping"; -- from DictEng -lin sidestep_V2 = mkV2 (mkV "sidestep" "sidesteps" "sidestepped" "sidestepped" "sidestepping"); -- from DictEng -lin sidestroke_N = mkN "sidestroke" ; -lin sideswipe_N = mkN "sideswipe" ; -lin sidetrack_N = mkN "sidetrack" "sidetracks"; -- from DictEng -lin sidetrack_V2 = mkV2 (mkV "sidetrack" "sidetracks" "sidetracked" "sidetracked" "sidetracking"); -- from DictEng -lin sidewalk_N = mkN "sidewalk" "sidewalks"; -- from DictEng -lin sidewall_N = mkN "sidewall" ; -lin sideward_Adv = mkAdv "sideward" ; -lin sidewards_Adv = mkAdv "sidewards"; -- from DictEng -lin sideway_Adv = mkAdv "sideway" ; -lin sideways_Adv = mkAdv "sideways"; -- from DictEng -lin sidewinder_N = mkN "sidewinder" ; -lin siding_N = mkN "siding" "sidings"; -- from DictEng -lin sidle_V = mkV "sidle" "sidles" "sidled" "sidled" "sidling"; -- from DictEng -lin sidle_V2 = mkV2 (mkV "sidle") ; -lin siege_N = mkN "siege" "sieges"; -- from DictEng -lin sienna_N = mkN "sienna" ; -- from DictEng -lin sierra_N = mkN "sierra" "sierras"; -- from DictEng -lin sierra_leonian_A = compoundA (mkA "sierra leonian"); -- from DictEng -lin sierra_leonian_N = mkN "sierra leonian" "sierra leonians"; -- from DictEng -lin siesta_N = mkN "siesta" "siestas"; -- from DictEng -lin sieve_N = mkN "sieve" "sieves"; -- from DictEng -lin sieve_V2 = mkV2 (mkV "sieve" "sieves" "sieved" "sieved" "sieving"); -- from DictEng -lin sift_V = mkV "sift" "sifts" "sifted" "sifted" "sifting"; -- from DictEng -lin sift_V2 = mkV2 (mkV "sift" "sifts" "sifted" "sifted" "sifting"); -- from DictEng -lin sifter_N = mkN "sifter" "sifters"; -- from DictEng -lin sigeh_N = mkN "sigeh" ; -lin sigh_N = mkN "sigh" "sighs"; -- from DictEng -lin sigh_V = mkV "sigh" "sighs" "sighed" "sighed" "sighing"; -- from DictEng -lin sigh_V2 = mkV2 (mkV "sigh" "sighs" "sighed" "sighed" "sighing"); -- from DictEng -lin sigh_VS = mkVS (mkV "sigh" "sighs" "sighed" "sighed" "sighing"); -- from DictEng -lin sight_N = mkN "sight" "sights"; -- from DictEng -lin sight_V2 = mkV2 (mkV "sight" "sights" "sighted" "sighted" "sighting"); -- from DictEng -lin sighted_A = compoundA (mkA "sighted"); -- from DictEng -lin sighting_N = mkN "sighting" "sightings"; -- from DictEng -lin sightless_A = compoundA (mkA "sightless"); -- from DictEng -lin sightreader_N = mkN "sightreader" ; -lin sights_N = mkN "sights" ; -lin sightseeing_N = mkN "sightseeing" ; -- from DictEng -lin sightseer_N = mkN "sightseer" "sightseers"; -- from DictEng -lin sigma_N = mkN "sigma" ; -lin sigmoid_A = mkA "sigmoid" ; -lin sigmoidectomy_N = mkN "sigmoidectomy" ; -lin sigmoidoscope_N = mkN "sigmoidoscope" ; -lin sigmoidoscopy_N = mkN "sigmoidoscopy" ; -lin sign_N = mkN "sign" "signs"; -- from DictEng -lin sign_V = mkV "sign" "signs" "signed" "signed" "signing"; -- from DictEng -lin sign_V2 = mkV2 (mkV "sign" "signs" "signed" "signed" "signing"); -- from DictEng -lin sign_V2V = mkV2V (mkV "sign" "signs" "signed" "signed" "signing") noPrep to_Prep ; -- from DictEng -lin sign_on_V2 = mkV2 (mkV "sign on") ; -lin sign_painter_N = mkN "sign - painter" "sign - painters"; -- from DictEng -lin sign_up_V = mkV "sign up" "signs up" "signed up" "signed up" "signing up"; -- from DictEng -lin sign_up_V2 = mkV2 (mkV "sign up") ; -lin signage_N = mkN "signage" ; -lin signal_A = compoundA (mkA "signal"); -- from DictEng -lin signal_N = mkN "signal" "signals"; -- from DictEng -lin signal_V = mkV "signal" "signals" "signalled" "signalled" "signalling"; -- from DictEng -lin signal_V2 = mkV2 (mkV "signal" "signals" "signalled" "signalled" "signalling"); -- from DictEng -lin signal_VS = mkVS (mkV "signal" "signals" "signalled" "signalled" "signalling"); -- from DictEng -lin signal_box_N = mkN "signal - box" "signal - boxes"; -- from DictEng -lin signale_V2 = mkV2 (mkV "signale"); -- from DictEng -lin signale_VS = mkVS (mkV "signale"); -- from DictEng -lin signaler_N = mkN "signaler" ; -lin signalization_N = mkN "signalization" ; -lin signalize_V2 = mkV2 (mkV "signalize" "signalizes" "signalized" "signalized" "signalizing"); -- from DictEng -lin signaller_N = mkN "signaller" "signallers"; -- from DictEng -lin signally_Adv = mkAdv "signally" ; -lin signalman_N = mkN "signalman" "signalmen" {- FIXME: guessed plural form -}; -- from DictEng -lin signatory_N = mkN "signatory" "signatories"; -- from DictEng -lin signature_N = mkN "signature" "signatures"; -- from DictEng -lin signboard_N = mkN "signboard" ; -lin signed_A = mkA "signed" ; -lin signer_N = mkN "signer" ; -lin signet_N = mkN "signet" "signets"; -- from DictEng -lin signet_ring_N = mkN "signet - ring" "signet - rings"; -- from DictEng -lin significance_N = mkN "significance" ; -- from DictEng -lin significant_A = compoundA (mkA "significant"); -- from DictEng -lin significantly_Adv = mkAdv "significantly" ; -lin signification_N = mkN "signification" "significations"; -- from DictEng -lin significative_A = compoundA (mkA "significative"); -- from DictEng -lin signify_V = mkV "signify" "signifies" "signified" "signified" "signifying"; -- from DictEng -lin signify_V2 = mkV2 (mkV "signify" "signifies" "signified" "signified" "signifying"); -- from DictEng -lin signor_N = mkN "signor" "signors"; -- from DictEng -lin signora_N = mkN "signora" "signoras"; -- from DictEng -lin signore_N = mkN "signore" ; -lin signorina_N = mkN "signorina" "signorinas"; -- from DictEng -lin signpost_N = mkN "signpost" "signposts"; -- from DictEng -lin signpost_V2 = mkV2 (mkV "signpost" "signposts" "signposted" "signposted" "signposting"); -- from DictEng -lin sikh_N = mkN "sikh" "sikhs"; -- from DictEng -lin silage_N = mkN "silage" ; -- from DictEng -lin sild_N = mkN "sild" ; -lin sildenafil_N = mkN "sildenafil" ; -lin silence_N = mkN "silence" "silences"; -- from DictEng -lin silence_V2 = mkV2 (mkV "silence" "silences" "silenced" "silenced" "silencing"); -- from DictEng -lin silenced_A = mkA "silenced" ; -lin silencer_N = mkN "silencer" "silencers"; -- from DictEng -lin silene_N = mkN "silene" ; -lin silent_A = compoundA (mkA "silent"); -- from DictEng -lin silenus_N = mkN "silenus" ; -lin silesia_N = mkN "silesia" ; -lin silex_N = mkN "silex" ; -lin silhouette_N = mkN "silhouette" "silhouettes"; -- from DictEng -lin silhouette_V2 = mkV2 (mkV "silhouette" "silhouettes" "silhouetted" "silhouetted" "silhouetting"); -- from DictEng -lin silica_N = mkN "silica" ; -- from DictEng -lin silicate_N = mkN "silicate" ; -- from DictEng -lin siliceous_A = mkA "siliceous" ; -lin silicide_N = mkN "silicide" ; -lin silicle_N = mkN "silicle" ; -lin silicon_N = mkN "silicon" ; -- from DictEng -lin silicone_N = mkN "silicone" ; -- from DictEng -lin silicosis_N = mkN "silicosis" ; -- from DictEng -lin silique_N = mkN "silique" ; -lin silk_N = mkN "silk" "silks"; -- from DictEng -lin silk_lined_A = compoundA (mkA "silk lined") ; -lin silken_A = compoundA (mkA "silken"); -- from DictEng -lin silkily_Adv = mkAdv "silkily"; -- from DictEng -lin silkiness_N = mkN "silkiness" ; -- from DictEng -lin silks_N = mkN "silks" ; -lin silkscreen_N = mkN "silkscreen" ; -lin silkworm_N = mkN "silkworm" "silkworms"; -- from DictEng -lin silky_A = mkA "silky" "silkier"; -- from DictEng -lin silky_haired_A = compoundA (mkA "silky haired") ; -lin silky_leaved_A = compoundA (mkA "silky leaved") ; -lin sill_N = mkN "sill" "sills"; -- from DictEng -lin sillabub_N = mkN "sillabub" "sillabubs"; -- from DictEng -lin silliness_N = mkN "silliness" ; -- from DictEng -lin silly_A = mkA "silly" "sillier"; -- from DictEng -lin silly_N = mkN "silly" "sillies"; -- from DictEng -lin silo_N = mkN "silo" "silos"; -- from DictEng -lin siloxane_N = mkN "siloxane" ; -lin silt_N = mkN "silt" ; -- from DictEng -lin silt_V = mkV "silt" "silts" "silted" "silted" "silting"; -- from DictEng -lin silt_V2 = mkV2 (mkV "silt" "silts" "silted" "silted" "silting"); -- from DictEng -lin siltstone_N = mkN "siltstone" ; -lin silty_A = mkA "silty" ; -lin silurid_N = mkN "silurid" ; -lin silva_N = mkN "silva" ; -lin silvan_A = compoundA (mkA "silvan"); -- from DictEng -lin silver_A = mkA "silver" ; -lin silver_N = mkN "silver" ; -- from DictEng -lin silver_V = mkV "silver" "silvers" "silvered" "silvered" "silvering"; -- from DictEng -lin silver_V2 = mkV2 (mkV "silver" "silvers" "silvered" "silvered" "silvering"); -- from DictEng -lin silver_blue_A = compoundA (mkA "silver blue") ; -lin silver_bodied_A = compoundA (mkA "silver bodied") ; -lin silver_colored_A = compoundA (mkA "silver colored") ; -lin silver_green_A = compoundA (mkA "silver green") ; -lin silver_grey_A = compoundA (mkA "silver grey") ; -lin silver_haired_A = compoundA (mkA "silver haired") ; -lin silver_leaved_A = compoundA (mkA "silver leaved") ; -lin silver_scaled_A = compoundA (mkA "silver scaled") ; -lin silver_white_A = compoundA (mkA "silver white") ; -lin silver_fish_N = mkN "silver - fish" "silver - fish"; -- from DictEng -lin silverback_N = mkN "silverback" ; -lin silverberry_N = mkN "silverberry" ; -lin silverfish_N = mkN "silverfish" ; -lin silvern_A = compoundA (mkA "silvern"); -- from DictEng -lin silverpoint_N = mkN "silverpoint" ; -lin silverrod_N = mkN "silverrod" ; -lin silverside_N = mkN "silverside" ; -- from DictEng -lin silversides_N = mkN "silversides" ; -lin silversmith_N = mkN "silversmith" "silversmiths"; -- from DictEng -lin silverspot_N = mkN "silverspot" ; -lin silversword_N = mkN "silversword" ; -lin silvervine_N = mkN "silvervine" ; -lin silverware_N = mkN "silverware" ; -lin silverweed_N = mkN "silverweed" ; -lin silverwork_N = mkN "silverwork" ; -lin silvery_A = mkA "silvery" "silverier"; -- from DictEng -lin silvex_N = mkN "silvex" ; -lin silviculture_N = mkN "silviculture" ; -lin sima_N = mkN "sima" ; -lin simazine_N = mkN "simazine" ; -lin simian_A = compoundA (mkA "simian"); -- from DictEng -lin simian_N = mkN "simian" "simians"; -- from DictEng -lin similar_A = compoundA (mkA "similar"); -- from DictEng -lin similarity_N = mkN "similarity" "similarities"; -- from DictEng -lin similarly_Adv = mkAdv "similarly" ; -lin simile_N = mkN "simile" "similes"; -- from DictEng -lin similitude_N = mkN "similitude" "similitudes"; -- from DictEng -lin simmer_N = mkN "simmer" "IRREG"; -- from DictEng -lin simmer_V = mkV "simmer" "simmers" "simmered" "simmered" "simmering"; -- from DictEng -lin simmer_V2 = mkV2 (mkV "simmer" "simmers" "simmered" "simmered" "simmering"); -- from DictEng -lin simnel_N = mkN "simnel" ; -lin simony_N = mkN "simony" ; -- from DictEng -lin simoom_N = mkN "simoom" "simooms"; -- from DictEng -lin simoon_N = mkN "simoon" "simoons"; -- from DictEng -lin simper_N = mkN "simper" ; -lin simper_V = mkV "simper" "simpers" "simpered" "simpered" "simpering"; -- from DictEng -lin simper_V2 = mkV2 (mkV "simper") ; -lin simperer_N = mkN "simperer" ; -lin simperingly_Adv = mkAdv "simperingly"; -- from DictEng -lin simple_A = irregAdv (mkA "simple" "simpler") "simply"; -- from DictEng -lin simple_N = mkN "simple" "simples"; -- from DictEng -lin simple_minded_A = compoundA (mkA "simple - minded"); -- from DictEng -lin simple_hearted_A = compoundA (mkA "simple - hearted"); -- from DictEng -lin simple_minded_A = compoundA (mkA "simple - minded"); -- from DictEng -lin simpleton_N = mkN "simpleton" "simpletons"; -- from DictEng -lin simplex_A = mkA "simplex" ; -lin simplicity_N = mkN "simplicity" ; -- from DictEng -lin simplification_N = mkN "simplification" "simplifications"; -- from DictEng -lin simplified_A = mkA "simplified" ; -lin simplify_V = mkV "simplify"; -- from DictEng -lin simplify_V2 = mkV2 (mkV "simplify" "simplifies" "simplified" "simplified" "simplifying"); -- from DictEng -lin simplistic_A = mkA "simplistic" ; -lin simply_Adv = mkAdv "simply" ; -lin simulacrum_N = mkN "simulacrum" "simulacra" {- FIXME: guessed plural form -}; -- from DictEng -lin simulate_V2 = mkV2 (mkV "simulate" "simulates" "simulated" "simulated" "simulating"); -- from DictEng -lin simulated_A = mkA "simulated" ; -lin simulation_N = mkN "simulation" ; -- from DictEng -lin simulator_N = mkN "simulator" "simulators"; -- from DictEng -lin simulcast_N = mkN "simulcast" ; -lin simultaneity_N = mkN "simultaneity" ; -- from DictEng -lin simultaneous_A = compoundA (mkA "simultaneous"); -- from DictEng -lin simultaneously_Adv = mkAdv "simultaneously" ; -lin simultaneousness_N = mkN "simultaneousness" ; -- from DictEng -lin simvastatin_N = mkN "simvastatin" ; -lin sin_N = mkN "sin" "sins"; -- from DictEng -lin sin_V = mkV "sin" "sins" "sinned" "sinned" "sinning"; -- from DictEng -lin since_Adv = mkAdv "since"; -- from DictEng -lin since_Prep = mkPrep "since"; -- from DictEng -lin since_Subj = mkSubj "since"; -- from DictEng -lin sincere_A = compoundA (mkA "sincere"); -- from DictEng -lin sincerely_Adv = mkAdv "sincerely" ; -lin sincerity_N = mkN "sincerity" ; -- from DictEng -lin sinciput_N = mkN "sinciput" ; -lin sine_N = mkN "sine" "sines"; -- from DictEng -lin sine_die_Adv = mkAdv "sine die"; -- from DictEng -lin sine_qua_non_N = mkN "sine qua non" "sine qua na" {- FIXME: guessed plural form -}; -- from DictEng -lin sinecure_N = mkN "sinecure" "sinecures"; -- from DictEng -lin sinew_N = mkN "sinew" "sinews"; -- from DictEng -lin sinewy_A = compoundA (mkA "sinewy"); -- from DictEng -lin sinful_A = compoundA (mkA "sinful"); -- from DictEng -lin sinfulness_N = mkN "sinfulness" ; -- from DictEng -lin sing_V = IrregEng.sing_V; -- from DictEng -lin sing_V2 = mkV2 (IrregEng.sing_V); -- from DictEng -lin singable_A = compoundA (mkA "singable"); -- from DictEng -lin singalong_N = mkN "singalong" ; -lin singaporean_A = compoundA (mkA "singaporean"); -- from DictEng -lin singaporean_N = mkN "singaporean" "singaporeans"; -- from DictEng -lin singe_N = mkN "singe" "singes"; -- from DictEng -lin singe_V = mkV "singe" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin singe_V2 = mkV2 (mkV "singe" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin singer_N = mkN "singer" "singers"; -- from DictEng -lin singhalese_A = compoundA (mkA "singhalese"); -- from DictEng -lin singing_N = mkN "singing" ; -- from DictEng -lin single_A = compoundA (mkA "single"); -- from DictEng -lin single_N = mkN "single" "singles"; -- from DictEng -lin single_V2 = mkV2 (mkV "single" "singles" "singled" "singled" "singling"); -- from DictEng -lin single_barreled_A = compoundA (mkA "single barreled") ; -lin single_bedded_A = compoundA (mkA "single bedded") ; -lin single_breasted_A = compoundA (mkA "single - breasted"); -- from DictEng -lin single_celled_A = compoundA (mkA "single celled") ; -lin single_handed_A = compoundA (mkA "single - handed"); -- from DictEng -lin single_handed_Adv = mkAdv "single - handed"; -- from DictEng -lin single_lane_A = compoundA (mkA "single lane") ; -lin single_leaf_N = mkN "single leaf" ; -lin single_minded_A = compoundA (mkA "single - minded"); -- from DictEng -lin single_mindedly_Adv = mkAdv "single mindedly" ; -lin single_mindedness_N = mkN "single mindedness" ; -lin single_seeded_A = compoundA (mkA "single seeded") ; -lin single_shelled_A = compoundA (mkA "single shelled") ; -lin single_spaced_A = compoundA (mkA "single spaced") ; -lin single_spacing_N = mkN "single - spacing" ; -- from DictEng -lin single_stranded_A = compoundA (mkA "single stranded") ; -lin single_breasted_A = compoundA (mkA "single - breasted"); -- from DictEng -lin single_handed_A = compoundA (mkA "single - handed"); -- from DictEng -lin single_handed_Adv = mkAdv "single - handed"; -- from DictEng -lin single_minded_A = compoundA (mkA "single - minded"); -- from DictEng -lin single_spacing_N = mkN "single - spacing" ; -- from DictEng -lin singleness_N = mkN "singleness" ; -- from DictEng -lin singles_N = mkN "singles" ; -lin singlestick_N = mkN "singlestick" "singlesticks"; -- from DictEng -lin singlet_N = mkN "singlet" "singlets"; -- from DictEng -lin singleton_N = mkN "singleton" "singletons"; -- from DictEng -lin singly_Adv = mkAdv "singly"; -- from DictEng -lin singsong_N = mkN "singsong" "singsongs"; -- from DictEng -lin singular_A = compoundA (mkA "singular"); -- from DictEng -lin singular_N = mkN "singular" "singulars"; -- from DictEng -lin singularity_N = mkN "singularity" "singularities"; -- from DictEng -lin singularize_V2 = mkV2 (mkV "singularize" "singularizes" "singularized" "singularized" "singularizing"); -- from DictEng -lin singularly_Adv = mkAdv "singularly" ; -lin sinhala_N = mkN "sinhala" ; -- from DictEng -lin sinhalese_A = compoundA (mkA "sinhalese"); -- from DictEng -lin sinhalese_N = mkN "sinhalese" "sinhalese"; -- from DictEng -lin sinister_A = compoundA (mkA "sinister"); -- from DictEng -lin sinistral_A = mkA "sinistral" ; -lin sinistrorse_A = mkA "sinistrorse" ; -lin sink_N = mkN "sink" "sinks"; -- from DictEng -lin sink_V = IrregEng.sink_V; -- from DictEng -lin sink_V2 = mkV2 (IrregEng.sink_V); -- from DictEng -lin sinkable_A = compoundA (mkA "sinkable"); -- from DictEng -lin sinker_N = mkN "sinker" "sinkers"; -- from DictEng -lin sinkhole_N = mkN "sinkhole" ; -lin sinking_N = mkN "sinking" "sinkings"; -- from DictEng -lin sinking_fund_N = mkN "sinking - fund" "sinking - funds"; -- from DictEng -lin sinless_A = compoundA (mkA "sinless"); -- from DictEng -lin sinlessness_N = mkN "sinlessness" ; -- from DictEng -lin sinner_N = mkN "sinner" "sinners"; -- from DictEng -lin sinning_A = mkA "sinning" ; -lin sinologist_N = mkN "sinologist" "sinologists"; -- from DictEng -lin sinology_N = mkN "sinology" ; -- from DictEng -lin sinopis_N = mkN "sinopis" ; -lin sintered_A = mkA "sintered" ; -lin sinuate_A = mkA "sinuate" ; -lin sinuosity_N = mkN "sinuosity" "sinuosities"; -- from DictEng -lin sinuous_A = compoundA (mkA "sinuous"); -- from DictEng -lin sinuously_Adv = mkAdv "sinuously" ; -lin sinus_N = mkN "sinus" "sinuses"; -- from DictEng -lin sinusitis_N = mkN "sinusitis" ; -- from DictEng -lin sinusoid_N = mkN "sinusoid" ; -lin sinusoidal_A = mkA "sinusoidal" ; -lin sinusoidally_Adv = mkAdv "sinusoidally" ; -lin sioux_N = mkN "sioux" "sioux"; -- from DictEng -lin sip_N = mkN "sip" "sips"; -- from DictEng -lin sip_V = mkV "sip" "sips" "sipped" "sipped" "sipping"; -- from DictEng -lin sip_V2 = mkV2 (mkV "sip" "sips" "sipped" "sipped" "sipping"); -- from DictEng -lin siphon_N = mkN "siphon" "siphons"; -- from DictEng -lin siphon_V = mkV "siphon" "siphons" "siphoned" "siphoned" "siphoning"; -- from DictEng -lin siphon_V2 = mkV2 (mkV "siphon" "siphons" "siphoned" "siphoned" "siphoning"); -- from DictEng -lin siphonophore_N = mkN "siphonophore" ; -lin sipper_N = mkN "sipper" ; -lin sir_N = mkN "sir" "sirs"; -- from DictEng -lin sir_roger_de_coverley_N = mkN "sir roger de coverley" "IRREG"; -- from DictEng -lin sirdar_N = mkN "sirdar" "sirdars"; -- from DictEng -lin sire_N = mkN "sire" "sires"; -- from DictEng -lin sire_V2 = mkV2 (mkV "sire" "sires" "sired" "sired" "siring"); -- from DictEng -lin siren_N = mkN "siren" "sirens"; -- from DictEng -lin siris_N = mkN "siris" ; -lin sirloin_N = mkN "sirloin" "sirloins"; -- from DictEng -lin sirocco_N = mkN "sirocco" "siroccos"; -- from DictEng -lin sirrah_N = mkN "sirrah" "sirrahs"; -- from DictEng -lin sirup_N = mkN "sirup" "sirups"; -- from DictEng -lin sisal_N = mkN "sisal" ; -- from DictEng -lin siskin_N = mkN "siskin" ; -lin sissified_A = compoundA (mkA "sissified"); -- from DictEng -lin sissoo_N = mkN "sissoo" ; -lin sissy_N = mkN "sissy" "sissies"; -- from DictEng -lin sister_N = mkN "sister" "sisters"; -- from DictEng -lin sister_in_law_N = mkN "sister - in - law" "sisters - in - law"; -- from DictEng -lin sister_in_law_N = mkN "sister - in - law" "sisters - in - law"; -- from DictEng -lin sisterhood_N = mkN "sisterhood" ; -- from DictEng -lin sisterly_A = compoundA (mkA "sisterly"); -- from DictEng -lin siswati_N = mkN "siswati" ; -- from DictEng -lin sit_V = IrregEng.sit_V; -- from DictEng -lin sit_V2 = mkV2 (IrregEng.sit_V); -- from DictEng -lin sit_VA = mkVA (IrregEng.sit_V); -- from DictEng -lin sit_down_N = mkN "sit down" ; -lin sit_in_N = mkN "sit - in" "sit - ins"; -- from DictEng -lin sit_up_N = mkN "sit up" ; -lin sit_down_V = mkV "sit down" ; -lin sit_in_N = mkN "sit - in" "sit - ins"; -- from DictEng -lin sitar_N = mkN "sitar" "sitars"; -- from DictEng -lin site_N = mkN "site" "sites"; -- from DictEng -lin site_V = mkV "site" "sites" "sited" "sited" "siting"; -- from DictEng -lin sitter_N = mkN "sitter" "sitters"; -- from DictEng -lin sitting_A = mkA "sitting" ; -lin sitting_N = mkN "sitting" "sittings"; -- from DictEng -lin sitting_room_N = mkN "sitting - room" "sitting - rooms"; -- from DictEng -lin situate_V2 = mkV2 (mkV "situate"); -- from DictEng -lin situated_A = compoundA (mkA "situated"); -- from DictEng -lin situation_N = mkN "situation" "situations"; -- from DictEng -lin six_A = mkA "six" ; -lin six_N = mkN "six" ; -lin six_footer_N = mkN "six - footer" "six - footers"; -- from DictEng -lin six_membered_A = compoundA (mkA "six membered") ; -lin six_pack_N = mkN "six pack" ; -lin six_pointed_A = compoundA (mkA "six pointed") ; -lin six_sided_A = compoundA (mkA "six sided") ; -lin six_spot_N = mkN "six spot" ; -lin six_footer_N = mkN "six - footer" "six - footers"; -- from DictEng -lin six_shooter_N = mkN "six - shooter" "six - shooters"; -- from DictEng -lin sixfold_A = compoundA (mkA "sixfold"); -- from DictEng -lin sixfold_Adv = mkAdv "sixfold"; -- from DictEng -lin sixpence_N = mkN "sixpence" "sixpences"; -- from DictEng -lin sixpenny_A = compoundA (mkA "sixpenny"); -- from DictEng -lin sixteen_A = mkA "sixteen" ; -lin sixteen_N = mkN "sixteen" ; -lin sixteenth_A = mkA "sixteenth" ; -lin sixteenth_N = mkN "sixteenth" ; -lin sixth_A = mkA "sixth" ; -lin sixth_N = mkN "sixth" ; -lin sixth_former_N = mkN "sixth - former" "sixth - formers"; -- from DictEng -lin sixth_former_N = mkN "sixth - former" "sixth - formers"; -- from DictEng -lin sixthly_Adv = mkAdv "sixthly" ; -lin sixties_N = mkN "sixties" ; -lin sixtieth_A = mkA "sixtieth" ; -lin sixtieth_N = mkN "sixtieth" ; -lin sixty_A = mkA "sixty" ; -lin sixty_N = mkN "sixty" ; -lin sixty_eight_A = compoundA (mkA "sixty eight") ; -lin sixty_fifth_A = compoundA (mkA "sixty fifth") ; -lin sixty_five_A = compoundA (mkA "sixty five") ; -lin sixty_four_A = compoundA (mkA "sixty four") ; -lin sixty_fourth_A = compoundA (mkA "sixty fourth") ; -lin sixty_nine_A = compoundA (mkA "sixty nine") ; -lin sixty_one_A = compoundA (mkA "sixty one") ; -lin sixty_seven_A = compoundA (mkA "sixty seven") ; -lin sixty_six_A = compoundA (mkA "sixty six") ; -lin sixty_three_A = compoundA (mkA "sixty three") ; -lin sixty_two_A = compoundA (mkA "sixty two") ; -lin sizable_A = compoundA (mkA "sizable"); -- from DictEng -lin size_A = mkA "size" ; -lin size_N = mkN "size" "sizes"; -- from DictEng -lin size_V2 = mkV2 (mkV "size" "sizes" "sized" "sized" "sizing"); -- from DictEng -lin sizeable_A = compoundA (mkA "sizeable"); -- from DictEng -lin sized_A = compoundA (mkA "sized"); -- from DictEng -lin sizzle_N = mkN "sizzle" ; -lin sizzle_V = mkV "sizzle" "sizzles" "sizzled" "sizzled" "sizzling"; -- from DictEng -lin sizzle_V2 = mkV2 (mkV "sizzle") ; -lin sizzling_A = mkA "sizzling" ; -lin skank_N = mkN "skank" ; -lin skate_N = mkN "skate" "skates"; -- from DictEng -lin skate_V = mkV "skate" "skates" "skated" "skated" "skating"; -- from DictEng -lin skateboard_N = mkN "skateboard" "skateboards"; -- from DictEng -lin skateboarder_N = mkN "skateboarder" "skateboarders"; -- from DictEng -lin skateboarding_N = mkN "skateboarding" ; -- from DictEng -lin skater_N = mkN "skater" "skaters"; -- from DictEng -lin skating_N = mkN "skating" ; -- from DictEng -lin skating_rink_N = mkN "skating - rink" "skating - rinks"; -- from DictEng -lin skedaddle_N = mkN "skedaddle" ; -lin skedaddle_V = mkV "skedaddle" "skedaddles" "skedaddled" "skedaddled" "skedaddling"; -- from DictEng -lin skedaddle_V2 = mkV2 (mkV "skedaddle") ; -lin skeet_N = mkN "skeet" "skeets"; -- from DictEng -lin skeg_N = mkN "skeg" ; -lin skein_N = mkN "skein" "skeins"; -- from DictEng -lin skeletal_A = mkA "skeletal" ; -lin skeleton_N = mkN "skeleton" "skeletons"; -- from DictEng -lin skep_N = mkN "skep" "skeps"; -- from DictEng -lin skepful_N = mkN "skepful" ; -lin skeptic_N = mkN "skeptic" ; -lin skeptical_A = compoundA (mkA "skeptical"); -- from DictEng -lin skepticism_N = mkN "skepticism" ; -- from DictEng -lin sketch_N = mkN "sketch" "sketches"; -- from DictEng -lin sketch_V = mkV "sketch" "sketches" "sketched" "sketched" "sketching"; -- from DictEng -lin sketch_V2 = mkV2 (mkV "sketch" "sketches" "sketched" "sketched" "sketching"); -- from DictEng -lin sketch_block_N = mkN "sketch - block" "sketch - blocks"; -- from DictEng -lin sketch_book_N = mkN "sketch - book" "sketch - books"; -- from DictEng -lin sketch_map_N = mkN "sketch - map" "sketch - maps"; -- from DictEng -lin sketchbook_N = mkN "sketchbook" ; -lin sketcher_N = mkN "sketcher" "sketchers"; -- from DictEng -lin sketchily_Adv = mkAdv "sketchily"; -- from DictEng -lin sketchiness_N = mkN "sketchiness" ; -- from DictEng -lin sketchy_A = mkA "sketchy" "sketchier"; -- from DictEng -lin skew_A = compoundA (mkA "skew"); -- from DictEng -lin skew_V2 = mkV2 (mkV "skew"); -- from DictEng -lin skew_eyed_A = compoundA (mkA "skew - eyed"); -- from DictEng -lin skew_eyed_A = compoundA (mkA "skew - eyed"); -- from DictEng -lin skewer_N = mkN "skewer" "skewers"; -- from DictEng -lin skewer_V2 = mkV2 (mkV "skewer" "skewers" "skewered" "skewered" "skewering"); -- from DictEng -lin ski_N = mkN "ski" "skis"; -- from DictEng -lin ski_V = mkV "ski" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin ski_plane_N = mkN "ski - plane" "ski - planes"; -- from DictEng -lin ski_bob_N = mkN "ski - bob" "ski - bobs"; -- from DictEng -lin ski_jump_N = mkN "ski - jump" "ski - jumps"; -- from DictEng -lin ski_lift_N = mkN "ski - lift" "ski - lifts"; -- from DictEng -lin ski_plane_N = mkN "ski - plane" "ski - planes"; -- from DictEng -lin skibob_N = mkN "skibob" ; -lin skid_N = mkN "skid" "skids"; -- from DictEng -lin skid_V = mkV "skid" "skids" "skidded" "skidded" "skidding"; -- from DictEng -lin skid_V2 = mkV2 (mkV "skid" "skids" "skidded" "skidded" "skidding"); -- from DictEng -lin skidder_N = mkN "skidder" ; -lin skidpan_N = mkN "skidpan" "skidpans"; -- from DictEng -lin skier_N = mkN "skier" "skiers"; -- from DictEng -lin skiff_N = mkN "skiff" "skiffs"; -- from DictEng -lin skiffle_N = mkN "skiffle" ; -- from DictEng -lin skiffle_group_N = mkN "skiffle - group" "skiffle - groups"; -- from DictEng -lin skiing_N = mkN "skiing" ; -lin skilful_A = compoundA (mkA "skilful"); -- from DictEng -lin skill_N = mkN "skill" "skills"; -- from DictEng -lin skilled_A = compoundA (mkA "skilled"); -- from DictEng -lin skillet_N = mkN "skillet" "skillets"; -- from DictEng -lin skillfully_Adv = mkAdv "skillfully" ; -lin skillfulness_N = mkN "skillfulness" ; -lin skilly_N = mkN "skilly" ; -- from DictEng -lin skim_A = mkA "skim" ; -lin skim_N = mkN "skim" ; -lin skim_V = mkV "skim" "skims" "skimmed" "skimmed" "skimming"; -- from DictEng -lin skim_V2 = mkV2 (mkV "skim" "skims" "skimmed" "skimmed" "skimming"); -- from DictEng -lin skimmed_milk_N = mkN "skimmed - milk" ; -- from DictEng -lin skimmer_N = mkN "skimmer" "skimmers"; -- from DictEng -lin skimming_N = mkN "skimming" ; -lin skimp_V = mkV "skimp" "skimps" "skimped" "skimped" "skimping"; -- from DictEng -lin skimp_V2 = mkV2 (mkV "skimp" "skimps" "skimped" "skimped" "skimping"); -- from DictEng -lin skimpily_Adv = mkAdv "skimpily"; -- from DictEng -lin skimpy_A = mkA "skimpy" "skimpier"; -- from DictEng -lin skin_N = mkN "skin" "skins"; -- from DictEng -lin skin_V = mkV "skin" "skins" "skinned" "skinned" "skinning"; -- from DictEng -lin skin_V2 = mkV2 (mkV "skin" "skins" "skinned" "skinned" "skinning"); -- from DictEng -lin skin_deep_A = compoundA (mkA "skin - deep"); -- from DictEng -lin skin_diver_N = mkN "skin diver" ; -lin skin_deep_A = compoundA (mkA "skin - deep"); -- from DictEng -lin skin_diving_N = mkN "skin - diving" ; -- from DictEng -lin skin_graft_N = mkN "skin - graft" "skin - grafts"; -- from DictEng -lin skin_tight_A = compoundA (mkA "skin - tight"); -- from DictEng -lin skinflint_N = mkN "skinflint" "skinflints"; -- from DictEng -lin skinful_N = mkN "skinful" ; -lin skinhead_N = mkN "skinhead" "skinheads"; -- from DictEng -lin skinheads_N = mkN "skinheads" ; -lin skink_N = mkN "skink" ; -lin skinless_A = mkA "skinless" ; -lin skinned_A = mkA "skinned" ; -lin skinner_N = mkN "skinner" ; -lin skinniness_N = mkN "skinniness" ; -lin skinny_A = mkA "skinny" "skinnier"; -- from DictEng -lin skinny_N = mkN "skinny" ; -lin skinny_dip_N = mkN "skinny dip" ; -lin skinny_dipper_N = mkN "skinny dipper" ; -lin skint_A = compoundA (mkA "skint"); -- from DictEng -lin skintight_A = mkA "skintight" ; -lin skip_N = mkN "skip" "skips"; -- from DictEng -lin skip_V = mkV "skip" "skips" "skipped" "skipped" "skipping"; -- from DictEng -lin skip_V2 = mkV2 (mkV "skip" "skips" "skipped" "skipped" "skipping"); -- from DictEng -lin skipjack_N = mkN "skipjack" ; -lin skipper_N = mkN "skipper" "skippers"; -- from DictEng -lin skipper_V2 = mkV2 (mkV "skipper" "skippers" "skippered" "skippered" "skippering"); -- from DictEng -lin skipping_rope_N = mkN "skipping - rope" "skipping - ropes"; -- from DictEng -lin skirl_N = mkN "skirl" "skirls"; -- from DictEng -lin skirmish_N = mkN "skirmish" "skirmishes"; -- from DictEng -lin skirmish_V = mkV "skirmish" "skirmishes" "skirmished" "skirmished" "skirmishing"; -- from DictEng -lin skirmisher_N = mkN "skirmisher" "skirmishers"; -- from DictEng -lin skirret_N = mkN "skirret" ; -lin skirt_N = mkN "skirt" "skirts"; -- from DictEng -lin skirt_V = mkV "skirt" "skirts" "skirted" "skirted" "skirting"; -- from DictEng -lin skirt_V2 = mkV2 (mkV "skirt" "skirts" "skirted" "skirted" "skirting"); -- from DictEng -lin skirting_board_N = mkN "skirting - board" "skirting - boards"; -- from DictEng -lin skit_N = mkN "skit" "skits"; -- from DictEng -lin skitter_V = mkV "skitter" "skitters" "skittered" "skittered" "skittering"; -- from DictEng -lin skitter_V2 = mkV2 (mkV "skitter") ; -lin skittish_A = compoundA (mkA "skittish"); -- from DictEng -lin skittishly_Adv = mkAdv "skittishly" ; -lin skittishness_N = mkN "skittishness" ; -- from DictEng -lin skittle_N = mkN "skittle" "skittles"; -- from DictEng -lin skittle_V2 = mkV2 (mkV "skittle" "skittles" "skittled" "skittled" "skittling"); -- from DictEng -lin skittle_pin_N = mkN "skittle - pin" "skittle - pins"; -- from DictEng -lin skittles_N = mkN "skittles" "skittles"; -- from DictEng -lin skivvy_N = mkN "skivvy" "skivvies"; -- from DictEng -lin skua_N = mkN "skua" "skuas"; -- from DictEng -lin skulk_V = mkV "skulk" "skulks" "skulked" "skulked" "skulking"; -- from DictEng -lin skulk_V2 = mkV2 (mkV "skulk") ; -lin skulker_N = mkN "skulker" "skulkers"; -- from DictEng -lin skull_N = mkN "skull" "skulls"; -- from DictEng -lin skullcap_N = mkN "skullcap" "skullcaps"; -- from DictEng -lin skullduggery_N = mkN "skullduggery" "IRREG"; -- from DictEng -lin skulled_A = compoundA (mkA "skulled"); -- from DictEng -lin skunk_N = mkN "skunk" "skunks"; -- from DictEng -lin skunkweed_N = mkN "skunkweed" ; -lin sky_N = mkN "sky" "skies"; -- from DictEng -lin sky_V2 = mkV2 (mkV "sky" "skies" "skied" "skied" "skying"); -- from DictEng -lin sky_high_Adv = mkAdv "sky - high"; -- from DictEng -lin sky_blue_A = compoundA (mkA "sky - blue"); -- from DictEng -lin sky_blue_N = mkN "sky - blue" ; -- from DictEng -lin sky_high_Adv = mkAdv "sky - high"; -- from DictEng -lin skybox_N = mkN "skybox" ; -lin skycap_N = mkN "skycap" ; -lin skydiver_N = mkN "skydiver" ; -lin skydiving_N = mkN "skydiving" ; -lin skyhook_N = mkN "skyhook" ; -lin skylark_N = mkN "skylark" "skylarks"; -- from DictEng -lin skylark_V = mkV "skylark" "skylarks" "skylarked" "skylarked" "skylarking"; -- from DictEng -lin skylight_N = mkN "skylight" "skylights"; -- from DictEng -lin skyline_N = mkN "skyline" "skylines"; -- from DictEng -lin skyrocket_N = mkN "skyrocket" ; -lin skyrocket_V = mkV "skyrocket" "skyrockets" "skyrocketed" "skyrocketed" "skyrocketing"; -- from DictEng -lin skyrocket_V2 = mkV2 (mkV "skyrocket" "skyrockets" "skyrocketed" "skyrocketed" "skyrocketing"); -- from DictEng -lin skysail_N = mkN "skysail" ; -lin skyscraper_N = mkN "skyscraper" "skyscrapers"; -- from DictEng -lin skywalk_N = mkN "skywalk" ; -lin skyward_A = compoundA (mkA "skyward"); -- from DictEng -lin skyward_Adv = mkAdv "skyward"; -- from DictEng -lin skywards_A = compoundA (mkA "skywards"); -- from DictEng -lin skywards_Adv = mkAdv "skywards"; -- from DictEng -lin skywriting_N = mkN "skywriting" ; -- from DictEng -lin slab_N = mkN "slab" "slabs"; -- from DictEng -lin slack_A = mkA "slack" "slacker"; -- from DictEng -lin slack_N = mkN "slack" "slacks"; -- from DictEng -lin slack_V = mkV "slack" "slacks" "slacked" "slacked" "slacking"; -- from DictEng -lin slacken_V = mkV "slacken" "slackens" "slackened" "slackened" "slackening"; -- from DictEng -lin slacken_V2 = mkV2 (mkV "slacken" "slackens" "slackened" "slackened" "slackening"); -- from DictEng -lin slacker_N = mkN "slacker" "slackers"; -- from DictEng -lin slackness_N = mkN "slackness" ; -- from DictEng -lin slacks_N = mkN "slacks" ; -lin slag_N = mkN "slag" ; -- from DictEng -lin slag_heap_N = mkN "slag - heap" "slag - heaps"; -- from DictEng -lin slagheap_N = mkN "slagheap" ; -lin slain_A = mkA "slain" ; -lin slain_N = mkN "slain" ; -lin slake_V2 = mkV2 (mkV "slake" "slakes" "slaked" "slaked" "slaking"); -- from DictEng -lin slalom_N = mkN "slalom" "slaloms"; -- from DictEng -lin slam_N = mkN "slam" "slams"; -- from DictEng -lin slam_V = mkV "slam" "slams" "slammed" "slammed" "slamming"; -- from DictEng -lin slam_V2 = mkV2 (mkV "slam" "slams" "slammed" "slammed" "slamming"); -- from DictEng -lin slam_bang_A = compoundA (mkA "slam bang") ; -lin slam_bang_Adv = mkAdv "slam bang" ; -lin slam_dunk_V2 = mkV2 (mkV "slam - dunk"); -- from DictEng -lin slammer_N = mkN "slammer" ; -lin slander_N = mkN "slander" "slanders"; -- from DictEng -lin slander_V2 = mkV2 (mkV "slander" "slanders" "slandered" "slandered" "slandering"); -- from DictEng -lin slanderer_N = mkN "slanderer" "slanderers"; -- from DictEng -lin slanderous_A = compoundA (mkA "slanderous"); -- from DictEng -lin slanderously_Adv = mkAdv "slanderously" ; -lin slang_N = mkN "slang" ; -- from DictEng -lin slang_V2 = mkV2 (mkV "slang" "slangs" "slanged" "slanged" "slanging"); -- from DictEng -lin slangily_Adv = mkAdv "slangily"; -- from DictEng -lin slanginess_N = mkN "slanginess" ; -- from DictEng -lin slanguage_N = mkN "slanguage" ; -lin slangy_A = mkA "slangy" "slangier"; -- from DictEng -lin slant_N = mkN "slant" "slants"; -- from DictEng -lin slant_V = mkV "slant" "slants" "slanted" "slanted" "slanting"; -- from DictEng -lin slant_V2 = mkV2 (mkV "slant" "slants" "slanted" "slanted" "slanting"); -- from DictEng -lin slantingly_Adv = mkAdv "slantingly"; -- from DictEng -lin slantwise_Adv = mkAdv "slantwise"; -- from DictEng -lin slap_Adv = mkAdv "slap"; -- from DictEng -lin slap_N = mkN "slap" "slaps"; -- from DictEng -lin slap_V2 = mkV2 (mkV "slap" "slaps" "slapped" "slapped" "slapping"); -- from DictEng -lin slap_bang_Adv = mkAdv "slap - bang"; -- from DictEng -lin slap_bang_Adv = mkAdv "slap - bang"; -- from DictEng -lin slap_happy_A = compoundA (mkA "slap - happy"); -- from DictEng -lin slap_up_A = compoundA (mkA "slap - up"); -- from DictEng -lin slapdash_A = compoundA (mkA "slapdash"); -- from DictEng -lin slapdash_Adv = mkAdv "slapdash"; -- from DictEng -lin slapper_N = mkN "slapper" ; -lin slapshot_N = mkN "slapshot" ; -lin slapstick_A = mkA "slapstick" ; -lin slapstick_N = mkN "slapstick" ; -- from DictEng -lin slash_N = mkN "slash" "slashes"; -- from DictEng -lin slash_V = mkV "slash" "slashes" "slashed" "slashed" "slashing"; -- from DictEng -lin slash_V2 = mkV2 (mkV "slash" "slashes" "slashed" "slashed" "slashing"); -- from DictEng -lin slashed_A = mkA "slashed" ; -lin slasher_N = mkN "slasher" ; -lin slashing_A = mkA "slashing" ; -lin slat_N = mkN "slat" "slats"; -- from DictEng -lin slate_N = mkN "slate" "slates"; -- from DictEng -lin slate_V2 = mkV2 (mkV "slate" "slates" "slated" "slated" "slating"); -- from DictEng -lin slate_V2V = mkV2V (mkV "slate") noPrep to_Prep ; -- from DictEng -lin slate_black_A = compoundA (mkA "slate black") ; -lin slate_grey_A = compoundA (mkA "slate grey") ; -lin slate_club_N = mkN "slate - club" "slate - clubs"; -- from DictEng -lin slate_pencil_N = mkN "slate - pencil" "slate - pencils"; -- from DictEng -lin slating_N = mkN "slating" "slatings"; -- from DictEng -lin slatted_A = compoundA (mkA "slatted"); -- from DictEng -lin slattern_N = mkN "slattern" "slatterns"; -- from DictEng -lin slatternliness_N = mkN "slatternliness" ; -- from DictEng -lin slatternly_A = compoundA (mkA "slatternly"); -- from DictEng -lin slaty_A = mkA "slaty" "slatier"; -- from DictEng -lin slaughter_N = mkN "slaughter" ; -- from DictEng -lin slaughter_V2 = mkV2 (mkV "slaughter" "slaughters" "slaughtered" "slaughtered" "slaughtering"); -- from DictEng -lin slaughterer_N = mkN "slaughterer" "slaughterers"; -- from DictEng -lin slaughterhouse_N = mkN "slaughterhouse" "slaughterhouses"; -- from DictEng -lin slav_A = compoundA (mkA "slav"); -- from DictEng -lin slav_N = mkN "slav" "slavs"; -- from DictEng -lin slave_N = mkN "slave" "slaves"; -- from DictEng -lin slave_V = mkV "slave" "slaves" "slaved" "slaved" "slaving"; -- from DictEng -lin slave_driver_N = mkN "slave - driver" "slave - drivers"; -- from DictEng -lin slave_trade_N = mkN "slave - trade" ; -- from DictEng -lin slave_traffic_N = mkN "slave - traffic" ; -- from DictEng -lin slaveholder_N = mkN "slaveholder" ; -lin slaveholding_A = mkA "slaveholding" ; -lin slavelike_A = mkA "slavelike" ; -lin slaver_N = mkN "slaver" ; -- from DictEng -lin slaver_V = mkV "slaver" "slavers" "slavered" "slavered" "slavering"; -- from DictEng -lin slavery_N = mkN "slavery" ; -- from DictEng -lin slavey_N = mkN "slavey" "slaveys"; -- from DictEng -lin slavish_A = compoundA (mkA "slavish"); -- from DictEng -lin slavishly_Adv = mkAdv "slavishly" ; -lin slavonic_A = compoundA (mkA "slavonic"); -- from DictEng -lin slaw_N = mkN "slaw" ; -- from DictEng -lin slay_V2 = mkV2 (IrregEng.slay_V); -- from DictEng -lin slayer_N = mkN "slayer" "slayers"; -- from DictEng -lin sleaziness_N = mkN "sleaziness" ; -lin sleazy_A = mkA "sleazy" "sleazier"; -- from DictEng -lin sled_N = mkN "sled" "sleds"; -- from DictEng -lin sledder_N = mkN "sledder" ; -lin sledding_N = mkN "sledding" ; -lin sledge_N = mkN "sledge" "sledges"; -- from DictEng -lin sledge_V = mkV "sledge" "sledges" "sledged" "sledged" "sledging"; -- from DictEng -lin sledge_V2 = mkV2 (mkV "sledge" "sledges" "sledged" "sledged" "sledging"); -- from DictEng -lin sledgehammer_N = mkN "sledgehammer" "sledgehammers"; -- from DictEng -lin sleek_A = mkA "sleek" "sleeker"; -- from DictEng -lin sleek_V2 = mkV2 (mkV "sleek" "sleeks" "sleeked" "sleeked" "sleeking"); -- from DictEng -lin sleekly_Adv = mkAdv "sleekly" ; -lin sleekness_N = mkN "sleekness" ; -- from DictEng -lin sleep_N = mkN "sleep" ; -- from DictEng -lin sleep_V = IrregEng.sleep_V; -- from DictEng -lin sleep_V2 = mkV2 (IrregEng.sleep_V); -- from DictEng -lin sleep_learning_N = mkN "sleep learning" ; -lin sleeper_N = mkN "sleeper" "sleepers"; -- from DictEng -lin sleepily_Adv = mkAdv "sleepily"; -- from DictEng -lin sleepiness_N = mkN "sleepiness" ; -- from DictEng -lin sleeping_N = mkN "sleeping" ; -- from DictEng -lin sleeping_bag_N = mkN "sleeping - bag" "sleeping - bags"; -- from DictEng -lin sleeping_car_N = mkN "sleeping - car" "sleeping - cars"; -- from DictEng -lin sleeping_draught_N = mkN "sleeping - draught" "sleeping - draughts"; -- from DictEng -lin sleeping_pill_N = mkN "sleeping - pill" "sleeping - pills"; -- from DictEng -lin sleeping_sickness_N = mkN "sleeping - sickness" ; -- from DictEng -lin sleepless_A = compoundA (mkA "sleepless"); -- from DictEng -lin sleeplessly_Adv = mkAdv "sleeplessly" ; -lin sleeplessness_N = mkN "sleeplessness" ; -- from DictEng -lin sleepover_N = mkN "sleepover" ; -lin sleepwalk_V = mkV "sleepwalk" ; -lin sleepwalk_V2 = mkV2 (mkV "sleepwalk") ; -lin sleepwalker_N = mkN "sleepwalker" "sleepwalkers"; -- from DictEng -lin sleepwalking_N = mkN "sleepwalking" ; -lin sleepy_A = mkA "sleepy" "sleepier"; -- from DictEng -lin sleepy_head_N = mkN "sleepy - head" "sleepy - heads"; -- from DictEng -lin sleepyhead_N = mkN "sleepyhead" ; -lin sleet_N = mkN "sleet" ; -- from DictEng -lin sleet_V = mkV "sleet" "sleets" "sleeted" "sleeted" "sleeting"; -- from DictEng -lin sleety_A = mkA "sleety" "sleetier"; -- from DictEng -lin sleeve_N = mkN "sleeve" "sleeves"; -- from DictEng -lin sleeved_A = compoundA (mkA "sleeved"); -- from DictEng -lin sleeveless_A = compoundA (mkA "sleeveless"); -- from DictEng -lin sleigh_N = mkN "sleigh" "sleighs"; -- from DictEng -lin sleigh_V = mkV "sleigh" "sleighs" "sleighed" "sleighed" "sleighing"; -- from DictEng -lin sleigh_V2 = mkV2 (mkV "sleigh" "sleighs" "sleighed" "sleighed" "sleighing"); -- from DictEng -lin sleigh_bell_N = mkN "sleigh - bell" "sleigh - bells"; -- from DictEng -lin sleight_N = mkN "sleight" "sleights"; -- from DictEng -lin slender_A = compoundA (mkA "slender"); -- from DictEng -lin slender_waisted_A = compoundA (mkA "slender waisted") ; -lin slender_winged_A = compoundA (mkA "slender winged") ; -lin slenderize_V = mkV "slenderize" "slenderizes" "slenderized" "slenderized" "slenderizing"; -- from DictEng -lin slenderize_V2 = mkV2 (mkV "slenderize" "slenderizes" "slenderized" "slenderized" "slenderizing"); -- from DictEng -lin slenderly_Adv = mkAdv "slenderly" ; -lin slenderness_N = mkN "slenderness" ; -- from DictEng -lin sleuth_N = mkN "sleuth" "sleuths"; -- from DictEng -lin sleuth_hound_N = mkN "sleuth - hound" "sleuth - hounds"; -- from DictEng -lin slew_V = mkV "slew" "slews" "slewed" "slewed" "slewing"; -- from DictEng -lin slew_V2 = mkV2 (mkV "slew" "slews" "slewed" "slewed" "slewing"); -- from DictEng -lin slice_N = mkN "slice" "slices"; -- from DictEng -lin slice_V = mkV "slice" "slices" "sliced" "sliced" "slicing"; -- from DictEng -lin slice_V2 = mkV2 (mkV "slice" "slices" "sliced" "sliced" "slicing"); -- from DictEng -lin sliced_A = mkA "sliced" ; -lin slicer_N = mkN "slicer" ; -lin slicing_N = mkN "slicing" ; -lin slick_A = mkA "slick" "slicker"; -- from DictEng -lin slick_Adv = mkAdv "slick"; -- from DictEng -lin slick_N = mkN "slick" "slicks"; -- from DictEng -lin slicked_up_A = compoundA (mkA "slicked up") ; -lin slicker_N = mkN "slicker" "slickers"; -- from DictEng -lin slickness_N = mkN "slickness" ; -lin slide_N = mkN "slide" "slides"; -- from DictEng -lin slide_V = IrregEng.slide_V; -- from DictEng -lin slide_V2 = mkV2 (IrregEng.slide_V); -- from DictEng -lin slide_rule_N = mkN "slide - rule" "slide - rules"; -- from DictEng -lin slider_N = mkN "slider" ; -lin sliding_A = mkA "sliding" ; -lin slight_A = mkA "slight" "slighter"; -- from DictEng -lin slight_N = mkN "slight" "slights"; -- from DictEng -lin slight_V2 = mkV2 (mkV "slight" "slights" "slighted" "slighted" "slighting"); -- from DictEng -lin slightingly_Adv = mkAdv "slightingly"; -- from DictEng -lin slightly_Adv = mkAdv "slightly" ; -lin slightness_N = mkN "slightness" ; -- from DictEng -lin slim_A = mkA "slim" "slimmer*"; -- from DictEng -lin slim_V = mkV "slim" "slims" "slimmed" "slimmed" "slimming"; -- from DictEng -lin slim_V2 = mkV2 (mkV "slim" "slims" "slimmed" "slimmed" "slimming"); -- from DictEng -lin slim_bodied_A = compoundA (mkA "slim bodied") ; -lin slime_N = mkN "slime" ; -- from DictEng -lin slimed_A = mkA "slimed" ; -lin sliminess_N = mkN "sliminess" ; -- from DictEng -lin slimness_N = mkN "slimness" ; -- from DictEng -lin slimy_A = mkA "slimy" "slimier"; -- from DictEng -lin sling_N = mkN "sling" "slings"; -- from DictEng -lin sling_V = IrregEng.sling_V; -- from DictEng -lin sling_V2 = mkV2 (IrregEng.sling_V); -- from DictEng -lin slingback_N = mkN "slingback" ; -lin slinger_N = mkN "slinger" "slingers"; -- from DictEng -lin slinging_N = mkN "slinging" ; -lin slingshot_N = mkN "slingshot" ; -lin slink_V = mkV "slink" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin slink_V2 = mkV2 (irregV "slink" "slunk" "slunk"); -lin slip_N = mkN "slip" "slips"; -- from DictEng -lin slip_V = mkV "slip" "slips" "slipped" "slipped" "slipping"; -- from DictEng -lin slip_V2 = mkV2 (mkV "slip" "slips" "slipped" "slipped" "slipping"); -- from DictEng -lin slip_on_N = mkN "slip on" ; -lin slip_carriage_N = mkN "slip - carriage" "slip - carriages"; -- from DictEng -lin slip_coach_N = mkN "slip - coach" "slip - coaches"; -- from DictEng -lin slip_road_N = mkN "slip - road" "slip - roads"; -- from DictEng -lin slip_up_N = mkN "slip - up" "slip - ups"; -- from DictEng -lin slipcover_N = mkN "slipcover" "slipcovers"; -- from DictEng -lin slipknot_N = mkN "slipknot" "slipknots"; -- from DictEng -lin slipon_N = mkN "slipon" "slipons"; -- from DictEng -lin slipover_N = mkN "slipover" "slipovers"; -- from DictEng -lin slippage_N = mkN "slippage" ; -lin slipper_N = mkN "slipper" "slippers"; -- from DictEng -lin slipper_shaped_A = compoundA (mkA "slipper shaped") ; -lin slippered_A = compoundA (mkA "slippered"); -- from DictEng -lin slipperiness_N = mkN "slipperiness" ; -- from DictEng -lin slippery_A = mkA "slippery" "slipperier"; -- from DictEng -lin slipping_A = mkA "slipping" ; -lin slippy_A = compoundA (mkA "slippy"); -- from DictEng -lin slipshod_A = compoundA (mkA "slipshod"); -- from DictEng -lin slipstream_N = mkN "slipstream" "slipstreams"; -- from DictEng -lin slipway_N = mkN "slipway" "slipways"; -- from DictEng -lin slit_N = mkN "slit" "slits"; -- from DictEng -lin slit_V2 = mkV2 (IrregEng.slit_V); -- from DictEng -lin slither_V = mkV "slither" "slithers" "slithered" "slithered" "slithering"; -- from DictEng -lin slither_V2 = mkV2 (mkV "slither") ; -lin slithery_A = compoundA (mkA "slithery"); -- from DictEng -lin sliver_N = mkN "sliver" "slivers"; -- from DictEng -lin sliver_V = mkV "sliver" "slivers" "slivered" "slivered" "slivering"; -- from DictEng -lin sliver_V2 = mkV2 (mkV "sliver" "slivers" "slivered" "slivered" "slivering"); -- from DictEng -lin slivovitz_N = mkN "slivovitz" ; -lin slob_N = mkN "slob" "slobs"; -- from DictEng -lin slobber_N = mkN "slobber" ; -- from DictEng -lin slobber_V = mkV "slobber" "slobbers" "slobbered" "slobbered" "slobbering"; -- from DictEng -lin slobber_V2 = mkV2 (mkV "slobber" "slobbers" "slobbered" "slobbered" "slobbering"); -- from DictEng -lin sloe_N = mkN "sloe" "sloes"; -- from DictEng -lin sloe_gin_N = mkN "sloe - gin" ; -- from DictEng -lin slog_V = mkV "slog" "slogs" "slogged" "slogged" "slogging"; -- from DictEng -lin slog_V2 = mkV2 (mkV "slog" "slogs" "slogged" "slogged" "slogging"); -- from DictEng -lin slogan_N = mkN "slogan" "slogans"; -- from DictEng -lin sloganeer_N = mkN "sloganeer" ; -lin sloganeering_N = mkN "sloganeering" ; -lin slogger_N = mkN "slogger" "sloggers"; -- from DictEng -lin sloop_N = mkN "sloop" "sloops"; -- from DictEng -lin slop_N = mkN "slop" "slops"; -- from DictEng -lin slop_V = mkV "slop" "slops" "slopped" "slopped" "slopping"; -- from DictEng -lin slop_V2 = mkV2 (mkV "slop" "slops" "slopped" "slopped" "slopping"); -- from DictEng -lin slop_basin_N = mkN "slop - basin" "slop - basins"; -- from DictEng -lin slop_pail_N = mkN "slop - pail" "slop - pails"; -- from DictEng -lin slop_shop_N = mkN "slop - shop" "slop - shops"; -- from DictEng -lin slope_N = mkN "slope" "slopes"; -- from DictEng -lin slope_V = mkV "slope" "slopes" "sloped" "sloped" "sloping"; -- from DictEng -lin slope_V2 = mkV2 (mkV "slope" "slopes" "sloped" "sloped" "sloping"); -- from DictEng -lin sloping_A = mkA "sloping" ; -lin slopingly_Adv = mkAdv "slopingly"; -- from DictEng -lin sloppily_Adv = mkAdv "sloppily"; -- from DictEng -lin sloppiness_N = mkN "sloppiness" ; -- from DictEng -lin sloppy_A = mkA "sloppy" "sloppier"; -- from DictEng -lin slops_N = mkN "slops" ; -lin slopseller_N = mkN "slopseller" ; -lin slopshop_N = mkN "slopshop" ; -lin slosh_V = mkV "slosh" "sloshes" "sloshed" "sloshed" "sloshing"; -- from DictEng -lin slosh_V2 = mkV2 (mkV "slosh" "sloshes" "sloshed" "sloshed" "sloshing"); -- from DictEng -lin sloshed_A = compoundA (mkA "sloshed"); -- from DictEng -lin slot_N = mkN "slot" "slots"; -- from DictEng -lin slot_V2 = mkV2 (mkV "slot" "slots" "slotted" "slotted" "slotting"); -- from DictEng -lin slot_machine_N = mkN "slot - machine" "slot - machines"; -- from DictEng -lin sloth_N = mkN "sloth" "sloths"; -- from DictEng -lin slothful_A = compoundA (mkA "slothful"); -- from DictEng -lin slouch_N = mkN "slouch" "slouches"; -- from DictEng -lin slouch_V = mkV "slouch" "slouches" "slouched" "slouched" "slouching"; -- from DictEng -lin slouch_V2 = mkV2 (mkV "slouch") ; -lin slouch_hat_N = mkN "slouch - hat" "slouch - hats"; -- from DictEng -lin sloucher_N = mkN "sloucher" ; -lin slouchily_Adv = mkAdv "slouchily" ; -lin slouchingly_Adv = mkAdv "slouchingly"; -- from DictEng -lin slouchy_A = mkA "slouchy" ; -lin slough_N = mkN "slough" "sloughs"; -- from DictEng -lin slough_V = mkV "slough" "sloughs" "sloughed" "sloughed" "sloughing"; -- from DictEng -lin slough_V2 = mkV2 (mkV "slough" "sloughs" "sloughed" "sloughed" "sloughing"); -- from DictEng -lin slovak_N = mkN "slovak" ; -- from DictEng -lin sloven_N = mkN "sloven" "slovens"; -- from DictEng -lin slovenian_A = compoundA (mkA "slovenian"); -- from DictEng -lin slovenian_N = mkN "slovenian" "slovenians"; -- from DictEng -lin slovenliness_N = mkN "slovenliness" ; -- from DictEng -lin slovenly_A = mkA "slovenly" "slovenlier"; -- from DictEng -lin slow_A = mkA "slow" "slower"; -- from DictEng -lin slow_Adv = mkAdv "slow"; -- from DictEng -lin slow_V = mkV "slow" "slows" "slowed" "slowed" "slowing"; -- from DictEng -lin slow_V2 = mkV2 (mkV "slow" "slows" "slowed" "slowed" "slowing"); -- from DictEng -lin slow_moving_A = compoundA (mkA "slow moving") ; -lin slow_worm_N = mkN "slow - worm" "slow - worms"; -- from DictEng -lin slowcoach_N = mkN "slowcoach" "slowcoaches"; -- from DictEng -lin slowdown_N = mkN "slowdown" "slowdowns"; -- from DictEng -lin slower_Adv = mkAdv "slower"; -- from DictEng -lin slowest_Adv = mkAdv "slowest"; -- from DictEng -lin slowgoing_A = mkA "slowgoing" ; -lin slowly_Adv = mkAdv "slowly" ; -lin slowness_N = mkN "slowness" ; -- from DictEng -lin slub_N = mkN "slub" ; -lin sludge_N = mkN "sludge" ; -- from DictEng -lin slug_N = mkN "slug" "slugs"; -- from DictEng -lin slug_V = mkV "slug" "slugs" "slugged" "slugged" "slugging"; -- from DictEng -lin slug_V2 = mkV2 (mkV "slug" "slugs" "slugged" "slugged" "slugging"); -- from DictEng -lin sluggard_N = mkN "sluggard" "sluggards"; -- from DictEng -lin slugger_N = mkN "slugger" ; -lin sluggish_A = compoundA (mkA "sluggish"); -- from DictEng -lin sluggishly_Adv = mkAdv "sluggishly" ; -lin sluggishness_N = mkN "sluggishness" ; -- from DictEng -lin sluice_N = mkN "sluice" "sluices"; -- from DictEng -lin sluice_V = mkV "sluice" "sluices" "sluiced" "sluiced" "sluicing"; -- from DictEng -lin sluice_V2 = mkV2 (mkV "sluice" "sluices" "sluiced" "sluiced" "sluicing"); -- from DictEng -lin sluice_valve_N = mkN "sluice - valve" "sluice - valves"; -- from DictEng -lin sluicegate_N = mkN "sluicegate" "sluicegates"; -- from DictEng -lin sluicing_A = mkA "sluicing" ; -lin slum_N = mkN "slum" "slums"; -- from DictEng -lin slum_V = mkV "slum" "slums" "slummed" "slummed" "slumming"; -- from DictEng -lin slumber_N = mkN "slumber" "slumbers"; -- from DictEng -lin slumber_V = mkV "slumber" "slumbers" "slumbered" "slumbered" "slumbering"; -- from DictEng -lin slumber_V2 = mkV2 (mkV "slumber" "slumbers" "slumbered" "slumbered" "slumbering"); -- from DictEng -lin slumberer_N = mkN "slumberer" "slumberers"; -- from DictEng -lin slumberous_A = compoundA (mkA "slumberous"); -- from DictEng -lin slumgullion_N = mkN "slumgullion" ; -lin slummy_A = mkA "slummy" "slummier"; -- from DictEng -lin slump_N = mkN "slump" "slumps"; -- from DictEng -lin slump_V = mkV "slump" "slumps" "slumped" "slumped" "slumping"; -- from DictEng -lin slump_V2 = mkV2 (mkV "slump" "slumps" "slumped" "slumped" "slumping"); -- from DictEng -lin slur_N = mkN "slur" "slurs"; -- from DictEng -lin slur_V = mkV "slur" "slurs" "slurred" "slurred" "slurring"; -- from DictEng -lin slur_V2 = mkV2 (mkV "slur" "slurs" "slurred" "slurred" "slurring"); -- from DictEng -lin slurred_A = mkA "slurred" ; -lin slurry_N = mkN "slurry" ; -- from DictEng -lin slush_N = mkN "slush" ; -- from DictEng -lin slushy_A = mkA "slushy" "slushier"; -- from DictEng -lin slut_N = mkN "slut" "sluts"; -- from DictEng -lin sluttish_A = compoundA (mkA "sluttish"); -- from DictEng -lin sly_A = mkA "sly" "slyer"; -- from DictEng -lin slyness_N = mkN "slyness" ; -- from DictEng -lin smack_Adv = mkAdv "smack"; -- from DictEng -lin smack_N = mkN "smack" "smacks"; -- from DictEng -lin smack_V = mkV "smack" "smacks" "smacked" "smacked" "smacking"; -- from DictEng -lin smack_V2 = mkV2 (mkV "smack" "smacks" "smacked" "smacked" "smacking"); -- from DictEng -lin smacker_N = mkN "smacker" "smackers"; -- from DictEng -lin smacking_N = mkN "smacking" "smackings"; -- from DictEng -lin small_A = mkA "small" "smaller"; -- from DictEng -lin small_Adv = mkAdv "small"; -- from DictEng -lin small_N = mkN "small" "smalls"; -- from DictEng -lin small_capitalization_A = compoundA (mkA "small capitalization") ; -lin small_eared_A = compoundA (mkA "small eared") ; -lin small_fruited_A = compoundA (mkA "small fruited") ; -lin small_scale_A = compoundA (mkA "small scale") ; -lin small_seeded_A = compoundA (mkA "small seeded") ; -lin small_toothed_A = compoundA (mkA "small toothed") ; -lin small_winged_A = compoundA (mkA "small winged") ; -lin small_minded_A = compoundA (mkA "small - minded"); -- from DictEng -lin smaller_A = mkA "smaller" ; -lin smallholder_N = mkN "smallholder" "smallholders"; -- from DictEng -lin smallholding_N = mkN "smallholding" "smallholdings"; -- from DictEng -lin smallish_A = mkA "smallish" ; -lin smallmouth_N = mkN "smallmouth" ; -lin smallness_N = mkN "smallness" ; -- from DictEng -lin smallpox_N = mkN "smallpox" ; -- from DictEng -lin smalltime_A = compoundA (mkA "smalltime"); -- from DictEng -lin smaltite_N = mkN "smaltite" ; -lin smarmy_A = compoundA (mkA "smarmy"); -- from DictEng -lin smart_A = mkA "smart" "smarter"; -- from DictEng -lin smart_N = mkN "smart" ; -- from DictEng -lin smart_V = mkV "smart" "smarts" "smarted" "smarted" "smarting"; -- from DictEng -lin smarta_N = mkN "smarta" ; -lin smarten_V = mkV "smarten" "smartens" "smartened" "smartened" "smartening"; -- from DictEng -lin smarten_V2 = mkV2 (mkV "smarten" "smartens" "smartened" "smartened" "smartening"); -- from DictEng -lin smartly_Adv = mkAdv "smartly" ; -lin smartness_N = mkN "smartness" ; -- from DictEng -lin smash_Adv = mkAdv "smash"; -- from DictEng -lin smash_N = mkN "smash" "smashes"; -- from DictEng -lin smash_V = mkV "smash" "smashes" "smashed" "smashed" "smashing"; -- from DictEng -lin smash_V2 = mkV2 (mkV "smash" "smashes" "smashed" "smashed" "smashing"); -- from DictEng -lin smash_up_N = mkN "smash - up" "smash - ups"; -- from DictEng -lin smasher_N = mkN "smasher" "smashers"; -- from DictEng -lin smashing_A = compoundA (mkA "smashing"); -- from DictEng -lin smashing_N = mkN "smashing" ; -lin smattering_N = mkN "smattering" "smatterings"; -- from DictEng -lin smear_N = mkN "smear" "smears"; -- from DictEng -lin smear_V = mkV "smear" "smears" "smeared" "smeared" "smearing"; -- from DictEng -lin smear_V2 = mkV2 (mkV "smear" "smears" "smeared" "smeared" "smearing"); -- from DictEng -lin smear_word_N = mkN "smear - word" "smear - words"; -- from DictEng -lin smegma_N = mkN "smegma" ; -lin smell_N = mkN "smell" "smells"; -- from DictEng -lin smell_V = mkV "smell" "smells" "smelled" "smelled" "smelling"; -- from DictEng -lin smell_V2 = mkV2 (mkV "smell" "smells" "smelled" "smelled" "smelling"); -- from DictEng -lin smell_VA = mkVA (mkV "smell" "smells" "smelled" "smelled" "smelling"); -- from DictEng -lin smelling_bottle_N = mkN "smelling - bottle" "smelling - bottles"; -- from DictEng -lin smelly_A = mkA "smelly" "smellier"; -- from DictEng -lin smelt_N = mkN "smelt" "smelts"; -- from DictEng -lin smelt_V2 = mkV2 (mkV "smelt" "smelts" "smelted" "smelted" "smelting"); -- from DictEng -lin smelter_N = mkN "smelter" ; -lin smew_N = mkN "smew" ; -lin smilax_N = mkN "smilax" ; -- from DictEng -lin smile_N = mkN "smile" "smiles"; -- from DictEng -lin smile_V = mkV "smile" "smiles" "smiled" "smiled" "smiling"; -- from DictEng -lin smile_V2 = mkV2 (mkV "smile" "smiles" "smiled" "smiled" "smiling"); -- from DictEng -lin smiler_N = mkN "smiler" ; -lin smiley_N = mkN "smiley" ; -lin smilingly_Adv = mkAdv "smilingly"; -- from DictEng -lin smilo_N = mkN "smilo" ; -lin smirch_N = mkN "smirch" "smirches"; -- from DictEng -lin smirch_V2 = mkV2 (mkV "smirch" "smirches" "smirched" "smirched" "smirching"); -- from DictEng -lin smirk_N = mkN "smirk" "smirks"; -- from DictEng -lin smirk_V = mkV "smirk" "smirks" "smirked" "smirked" "smirking"; -- from DictEng -lin smirk_V2 = mkV2 (mkV "smirk") ; -lin smirker_N = mkN "smirker" ; -lin smite_V = IrregEng.smite_V; -- from DictEng -lin smite_V2 = mkV2 (IrregEng.smite_V); -- from DictEng -lin smith_N = mkN "smith" "smiths"; -- from DictEng -lin smithereens_N = mkN "smithereens" ; -lin smithy_N = mkN "smithy" "smithies"; -- from DictEng -lin smitten_A = mkA "smitten" ; -lin smock_N = mkN "smock" "smocks"; -- from DictEng -lin smocking_N = mkN "smocking" ; -- from DictEng -lin smog_N = mkN "smog" "smogs"; -- from DictEng -lin smoggy_A = mkA "smoggy" ; -lin smoke_N = mkN "smoke" "smokes"; -- from DictEng -lin smoke_V = mkV "smoke" "smokes" "smoked" "smoked" "smoking"; -- from DictEng -lin smoke_V2 = mkV2 (mkV "smoke" "smokes" "smoked" "smoked" "smoking"); -- from DictEng -lin smoke_filled_A = compoundA (mkA "smoke filled") ; -lin smoke_free_A = compoundA (mkA "smoke free") ; -lin smoke_bomb_N = mkN "smoke - bomb" "smoke - bombs"; -- from DictEng -lin smoke_cured_A = compoundA (mkA "smoke - cured"); -- from DictEng -lin smoke_dried_A = compoundA (mkA "smoke - dried"); -- from DictEng -lin smoke_screen_N = mkN "smoke - screen" "smoke - screens"; -- from DictEng -lin smoked_A = mkA "smoked" ; -lin smokehouse_N = mkN "smokehouse" ; -lin smokeless_A = compoundA (mkA "smokeless"); -- from DictEng -lin smoker_N = mkN "smoker" "smokers"; -- from DictEng -lin smokestack_N = mkN "smokestack" "smokestacks"; -- from DictEng -lin smoking_A = mkA "smoking" ; -lin smoking_N = mkN "smoking" ; -- from DictEng -lin smoking_car_N = mkN "smoking - car" "smoking - cars"; -- from DictEng -lin smoking_carriage_N = mkN "smoking - carriage" "smoking - carriages"; -- from DictEng -lin smoking_compartment_N = mkN "smoking - compartment" "smoking - compartments"; -- from DictEng -lin smoking_mixture_N = mkN "smoking - mixture" ; -- from DictEng -lin smoking_room_N = mkN "smoking - room" "smoking - rooms"; -- from DictEng -lin smoky_A = mkA "smoky" "smokier"; -- from DictEng -lin smolder_V = mkV "smolder" ; -lin smoldering_A = mkA "smoldering" ; -lin smolderingly_Adv = mkAdv "smolderingly" ; -lin smooth_A = mkA "smooth" "smoother"; -- from DictEng -lin smooth_N = mkN "smooth" "smeeth" {- FIXME: guessed plural form -}; -- from DictEng -lin smooth_V = mkV "smooth" "smooths" "smoothed" "smoothed" "smoothing"; -- from DictEng -lin smooth_V2 = mkV2 (mkV "smooth" "smooths" "smoothed" "smoothed" "smoothing"); -- from DictEng -lin smooth_bodied_A = compoundA (mkA "smooth bodied") ; -lin smooth_haired_A = compoundA (mkA "smooth haired") ; -lin smooth_shelled_A = compoundA (mkA "smooth shelled") ; -lin smooth_skinned_A = compoundA (mkA "smooth skinned") ; -lin smooth_bore_A = compoundA (mkA "smooth - bore"); -- from DictEng -lin smooth_faced_A = compoundA (mkA "smooth - faced"); -- from DictEng -lin smooth_spoken_A = compoundA (mkA "smooth - spoken"); -- from DictEng -lin smooth_tongued_A = compoundA (mkA "smooth - tongued"); -- from DictEng -lin smoothbark_N = mkN "smoothbark" ; -lin smoothbore_N = mkN "smoothbore" ; -lin smoothed_A = mkA "smoothed" ; -lin smoothhound_N = mkN "smoothhound" ; -lin smoothie_N = mkN "smoothie" ; -lin smoothing_iron_N = mkN "smoothing - iron" "smoothing - irons"; -- from DictEng -lin smoothing_plane_N = mkN "smoothing - plane" "smoothing - planes"; -- from DictEng -lin smoothly_Adv = mkAdv "smoothly" ; -lin smoothness_N = mkN "smoothness" ; -- from DictEng -lin smorgasbord_N = mkN "smorgasbord" ; -- from DictEng -lin smother_N = mkN "smother" "IRREG"; -- from DictEng -lin smother_V2 = mkV2 (mkV "smother" "smothers" "smothered" "smothered" "smothering"); -- from DictEng -lin smothered_A = mkA "smothered" ; -lin smothering_A = mkA "smothering" ; -lin smoulder_N = mkN "smoulder" ; -- from DictEng -lin smoulder_V = mkV "smoulder" "smoulders" "smouldered" "smouldered" "smouldering"; -- from DictEng -lin smudge_N = mkN "smudge" "smudges"; -- from DictEng -lin smudge_V = mkV "smudge" "smudges" "smudged" "smudged" "smudging"; -- from DictEng -lin smudge_V2 = mkV2 (mkV "smudge" "smudges" "smudged" "smudged" "smudging"); -- from DictEng -lin smudgy_A = compoundA (mkA "smudgy"); -- from DictEng -lin smug_A = mkA "smug" "smugger*"; -- from DictEng -lin smuggle_V2 = mkV2 (mkV "smuggle" "smuggles" "smuggled" "smuggled" "smuggling"); -- from DictEng -lin smuggler_N = mkN "smuggler" "smugglers"; -- from DictEng -lin smuggling_N = mkN "smuggling" ; -lin smugly_Adv = mkAdv "smugly" ; -lin smugness_N = mkN "smugness" ; -- from DictEng -lin smut_N = mkN "smut" "smuts"; -- from DictEng -lin smut_V2 = mkV2 (mkV "smut" "smuts" "smutted" "smutted" "smutting"); -- from DictEng -lin smuttily_Adv = mkAdv "smuttily"; -- from DictEng -lin smuttiness_N = mkN "smuttiness" ; -- from DictEng -lin smutty_A = mkA "smutty" "smuttier"; -- from DictEng -lin snack_N = mkN "snack" "snacks"; -- from DictEng -lin snack_V = mkV "snack" ; -lin snack_bar_N = mkN "snack - bar" "snack - bars"; -- from DictEng -lin snack_counter_N = mkN "snack - counter" "snack - counters"; -- from DictEng -lin snaffle_N = mkN "snaffle" "snaffles"; -- from DictEng -lin snaffle_V2 = mkV2 (mkV "snaffle" "snaffles" "snaffled" "snaffled" "snaffling"); -- from DictEng -lin snaffle_bit_N = mkN "snaffle - bit" "snaffle - bits"; -- from DictEng -lin snafu_N = mkN "snafu" ; -lin snag_N = mkN "snag" "snags"; -- from DictEng -lin snag_V = mkV "snag"; -- from DictEng -lin snag_V2 = mkV2 (mkV "snag" "snags" "snagged" "snagged" "snagging"); -- from DictEng -lin snail_N = mkN "snail" "snails"; -- from DictEng -lin snail_V = mkV "snail" ; -lin snail_V2 = mkV2 (mkV "snail") ; -lin snailfish_N = mkN "snailfish" ; -lin snailflower_N = mkN "snailflower" ; -lin snake_N = mkN "snake" "snakes"; -- from DictEng -lin snake_V = mkV "snake" "snakes" "snaked" "snaked" "snaking"; -- from DictEng -lin snake_haired_A = compoundA (mkA "snake haired") ; -lin snake_charmer_N = mkN "snake - charmer" "snake - charmers"; -- from DictEng -lin snakebird_N = mkN "snakebird" ; -lin snakebite_N = mkN "snakebite" ; -lin snakeblenny_N = mkN "snakeblenny" ; -lin snakefly_N = mkN "snakefly" ; -lin snakewood_N = mkN "snakewood" ; -lin snaky_A = mkA "snaky" "snakier"; -- from DictEng -lin snap_N = mkN "snap" "snaps"; -- from DictEng -lin snap_V = mkV "snap" "snaps" "snapped" "snapped" "snapping"; -- from DictEng -lin snap_V2 = mkV2 (mkV "snap" "snaps" "snapped" "snapped" "snapping"); -- from DictEng -lin snap_VS = mkVS (mkV "snap" "snaps" "snapped" "snapped" "snapping"); -- from DictEng -lin snap_fastener_N = mkN "snap - fastener" "snap - fasteners"; -- from DictEng -lin snapdragon_N = mkN "snapdragon" "snapdragons"; -- from DictEng -lin snapper_N = mkN "snapper" ; -lin snappish_A = compoundA (mkA "snappish"); -- from DictEng -lin snappishly_Adv = mkAdv "snappishly" ; -lin snappishness_N = mkN "snappishness" ; -- from DictEng -lin snappy_A = mkA "snappy" "snappier"; -- from DictEng -lin snapshot_N = mkN "snapshot" "snapshots"; -- from DictEng -lin snare_N = mkN "snare" "snares"; -- from DictEng -lin snare_V2 = mkV2 (mkV "snare" "snares" "snared" "snared" "snaring"); -- from DictEng -lin snare_drum_N = mkN "snare - drum" "snare - drums"; -- from DictEng -lin snarer_N = mkN "snarer" ; -lin snarl_N = mkN "snarl" "snarls"; -- from DictEng -lin snarl_V = mkV "snarl" "snarls" "snarled" "snarled" "snarling"; -- from DictEng -lin snarl_V2 = mkV2 (mkV "snarl" "snarls" "snarled" "snarled" "snarling"); -- from DictEng -lin snarl_up_N = mkN "snarl - up" "snarl - ups"; -- from DictEng -lin snatch_N = mkN "snatch" "snatches"; -- from DictEng -lin snatch_V = mkV "snatch" "snatches" "snatched" "snatched" "snatching"; -- from DictEng -lin snatch_V2 = mkV2 (mkV "snatch" "snatches" "snatched" "snatched" "snatching"); -- from DictEng -lin snatch_away_V2 = mkV2 (mkV "snatch away") ; -lin snatcher_N = mkN "snatcher" "snatchers"; -- from DictEng -lin snazzy_A = compoundA (mkA "snazzy"); -- from DictEng -lin sneak_N = mkN "sneak" "sneaks"; -- from DictEng -lin sneak_V = mkV "sneak" "sneaks" "sneaked" "sneaked" "sneaking"; -- from DictEng -lin sneak_V2 = mkV2 (mkV "sneak" "sneaks" "sneaked" "sneaked" "sneaking"); -- from DictEng -lin sneak_thief_N = mkN "sneak - thief" "sneak - thieves"; -- from DictEng -lin sneaking_A = compoundA (mkA "sneaking"); -- from DictEng -lin sneakingly_Adv = mkAdv "sneakingly" ; -lin sneaky_A = mkA "sneaky" "sneakier"; -- from DictEng -lin sneer_N = mkN "sneer" "sneers"; -- from DictEng -lin sneer_V = mkV "sneer" "sneers" "sneered" "sneered" "sneering"; -- from DictEng -lin sneer_V2 = mkV2 (mkV "sneer") ; -lin sneerer_N = mkN "sneerer" ; -lin sneeringly_Adv = mkAdv "sneeringly"; -- from DictEng -lin sneeze_N = mkN "sneeze" "sneezes"; -- from DictEng -lin sneeze_V = mkV "sneeze" "sneezes" "sneezed" "sneezed" "sneezing"; -- from DictEng -lin sneeze_V2 = mkV2 (mkV "sneeze") ; -lin sneezer_N = mkN "sneezer" ; -lin sneezeweed_N = mkN "sneezeweed" ; -lin sneezy_A = mkA "sneezy" ; -lin snick_N = mkN "snick" "snicks"; -- from DictEng -lin snick_V = mkV "snick" "snicks" "snicked" "snicked" "snicking"; -- from DictEng -lin snick_V2 = mkV2 (mkV "snick" "snicks" "snicked" "snicked" "snicking"); -- from DictEng -lin snicker_N = mkN "snicker" "snickers"; -- from DictEng -lin snicker_V = mkV "snicker" "snickers" "snickered" "snickered" "snickering"; -- from DictEng -lin snicker_V2 = mkV2 (mkV "snicker") ; -lin snide_A = compoundA (mkA "snide"); -- from DictEng -lin sniff_N = mkN "sniff" "sniffs"; -- from DictEng -lin sniff_V = mkV "sniff" "sniffs" "sniffed" "sniffed" "sniffing"; -- from DictEng -lin sniff_V2 = mkV2 (mkV "sniff" "sniffs" "sniffed" "sniffed" "sniffing"); -- from DictEng -lin sniff_VS = mkVS (mkV "sniff" "sniffs" "sniffed" "sniffed" "sniffing"); -- from DictEng -lin sniffer_N = mkN "sniffer" ; -lin sniffle_V = mkV "sniffle" "sniffles" "sniffled" "sniffled" "sniffling"; -- from DictEng -lin sniffler_N = mkN "sniffler" ; -lin sniffly_A = mkA "sniffly" ; -lin sniffy_A = mkA "sniffy" "sniffier"; -- from DictEng -lin snifter_N = mkN "snifter" "snifters"; -- from DictEng -lin snigger_N = mkN "snigger" "sniggers"; -- from DictEng -lin snigger_V = mkV "snigger" "sniggers" "sniggered" "sniggered" "sniggering"; -- from DictEng -lin snigger_V2 = mkV2 (mkV "snigger") ; -lin snip_N = mkN "snip" "snips"; -- from DictEng -lin snip_V = mkV "snip" "snips" "snipped" "snipped" "snipping"; -- from DictEng -lin snip_V2 = mkV2 (mkV "snip" "snips" "snipped" "snipped" "snipping"); -- from DictEng -lin snipe_N = mkN "snipe" "snipe"; -- from DictEng -lin snipe_V = mkV "snipe" "snipes" "sniped" "sniped" "sniping"; -- from DictEng -lin snipe_V2 = mkV2 (mkV "snipe" "snipes" "sniped" "sniped" "sniping"); -- from DictEng -lin snipefish_N = mkN "snipefish" ; -lin sniper_N = mkN "sniper" "snipers"; -- from DictEng -lin snippet_N = mkN "snippet" "snippets"; -- from DictEng -lin snipping_N = mkN "snipping" "snippings"; -- from DictEng -lin snips_N = mkN "snips" ; -lin snit_N = mkN "snit" ; -lin snitch_V = mkV "snitch" "snitches" "snitched" "snitched" "snitching"; -- from DictEng -lin snitch_V2 = mkV2 (mkV "snitch" "snitches" "snitched" "snitched" "snitching"); -- from DictEng -lin snivel_N = mkN "snivel" ; -lin snivel_V = mkV "snivel" "snivels" "snivelled" "snivelled" "snivelling"; -- from DictEng -lin snivel_V2 = mkV2 (mkV "snivel") ; -lin sniveller_N = mkN "sniveller" "snivellers"; -- from DictEng -lin snob_N = mkN "snob" "snobs"; -- from DictEng -lin snobbery_N = mkN "snobbery" ; -- from DictEng -lin snobbish_A = compoundA (mkA "snobbish"); -- from DictEng -lin snobbishly_Adv = mkAdv "snobbishly" ; -lin snobbishness_N = mkN "snobbishness" ; -- from DictEng -lin snog_V = mkV "snog" "snogs" "snogged" "snogged" "snogging"; -- from DictEng -lin snogging_N = mkN "snogging" ; -- from DictEng -lin snood_N = mkN "snood" "snoods"; -- from DictEng -lin snook_N = mkN "snook" "snooks"; -- from DictEng -lin snooker_N = mkN "snooker" "snookers"; -- from DictEng -lin snoop_N = mkN "snoop" ; -lin snoop_V = mkV "snoop" "snoops" "snooped" "snooped" "snooping"; -- from DictEng -lin snooper_N = mkN "snooper" "snoopers"; -- from DictEng -lin snootily_Adv = mkAdv "snootily"; -- from DictEng -lin snootiness_N = mkN "snootiness" ; -lin snooty_A = mkA "snooty" "snootier"; -- from DictEng -lin snooze_N = mkN "snooze" "snoozes"; -- from DictEng -lin snooze_V = mkV "snooze" "snoozes" "snoozed" "snoozed" "snoozing"; -- from DictEng -lin snooze_V2 = mkV2 (mkV "snooze") ; -lin snore_N = mkN "snore" "snores"; -- from DictEng -lin snore_V = mkV "snore" "snores" "snored" "snored" "snoring"; -- from DictEng -lin snore_V2 = mkV2 (mkV "snore") ; -lin snorer_N = mkN "snorer" "snorers"; -- from DictEng -lin snorkel_N = mkN "snorkel" "snorkels"; -- from DictEng -lin snorkeling_N = mkN "snorkeling" ; -lin snort_N = mkN "snort" "snorts"; -- from DictEng -lin snort_V = mkV "snort" "snorts" "snorted" "snorted" "snorting"; -- from DictEng -lin snort_V2 = mkV2 (mkV "snort" "snorts" "snorted" "snorted" "snorting"); -- from DictEng -lin snort_VS = mkVS (mkV "snort" "snorts" "snorted" "snorted" "snorting"); -- from DictEng -lin snorter_N = mkN "snorter" "snorters"; -- from DictEng -lin snorty_A = mkA "snorty" "snortier"; -- from DictEng -lin snot_N = mkN "snot" ; -- from DictEng -lin snot_nosed_A = compoundA (mkA "snot - nosed"); -- from DictEng -lin snotty_A = mkA "snotty" "snottier"; -- from DictEng -lin snout_N = mkN "snout" "snouts"; -- from DictEng -lin snow_N = mkN "snow" "snows"; -- from DictEng -lin snow_V = mkV "snow" "snows" "snowed" "snowed" "snowing"; -- from DictEng -lin snow_V2 = mkV2 (mkV "snow" "snows" "snowed" "snowed" "snowing"); -- from DictEng -lin snow_blind_A = compoundA (mkA "snow blind") ; -lin snow_capped_A = compoundA (mkA "snow capped") ; -lin snow_clad_A = compoundA (mkA "snow - clad"); -- from DictEng -lin snow_in_summer_N = mkN "snow in summer" ; -lin snow_on_the_mountain_N = mkN "snow on the mountain" ; -lin snow_white_A = compoundA (mkA "snow - white"); -- from DictEng -lin snow_clad_A = compoundA (mkA "snow - clad"); -- from DictEng -lin snow_covered_A = compoundA (mkA "snow - covered"); -- from DictEng -lin snow_line_N = mkN "snow - line" "snow - lines"; -- from DictEng -lin snow_white_A = compoundA (mkA "snow - white"); -- from DictEng -lin snowball_N = mkN "snowball" "snowballs"; -- from DictEng -lin snowball_V = mkV "snowball" "snowballs" "snowballed" "snowballed" "snowballing"; -- from DictEng -lin snowball_V2 = mkV2 (mkV "snowball" "snowballs" "snowballed" "snowballed" "snowballing"); -- from DictEng -lin snowbank_N = mkN "snowbank" ; -lin snowbell_N = mkN "snowbell" ; -lin snowberry_N = mkN "snowberry" "snowberries"; -- from DictEng -lin snowblind_A = compoundA (mkA "snowblind"); -- from DictEng -lin snowblindness_N = mkN "snowblindness" ; -- from DictEng -lin snowboard_N = mkN "snowboard" ; -lin snowboarder_N = mkN "snowboarder" ; -lin snowboarding_N = mkN "snowboarding" ; -lin snowbound_A = compoundA (mkA "snowbound"); -- from DictEng -lin snowcap_N = mkN "snowcap" ; -lin snowcapped_A = compoundA (mkA "snowcapped"); -- from DictEng -lin snowdrift_N = mkN "snowdrift" "snowdrifts"; -- from DictEng -lin snowdrop_N = mkN "snowdrop" "snowdrops"; -- from DictEng -lin snowfall_N = mkN "snowfall" "snowfalls"; -- from DictEng -lin snowfield_N = mkN "snowfield" "snowfields"; -- from DictEng -lin snowflake_N = mkN "snowflake" "snowflakes"; -- from DictEng -lin snowman_N = mkN "snowman" "snowmen" {- FIXME: guessed plural form -}; -- from DictEng -lin snowmobile_N = mkN "snowmobile" ; -lin snowplough_N = mkN "snowplough" "snowploughs"; -- from DictEng -lin snowplow_N = mkN "snowplow" ; -lin snowshoe_N = mkN "snowshoe" ; -lin snowstorm_N = mkN "snowstorm" "snowstorms"; -- from DictEng -lin snowsuit_N = mkN "snowsuit" ; -lin snowy_A = mkA "snowy" "snowier"; -- from DictEng -lin snub_A = compoundA (mkA "snub"); -- from DictEng -lin snub_N = mkN "snub" "snubs"; -- from DictEng -lin snub_V2 = mkV2 (mkV "snub" "snubs" "snubbed" "snubbed" "snubbing"); -- from DictEng -lin snub_nosed_A = compoundA (mkA "snub - nosed"); -- from DictEng -lin snuff_A = mkA "snuff" ; -lin snuff_N = mkN "snuff" "snuffs"; -- from DictEng -lin snuff_V = mkV "snuff" "snuffs" "snuffed" "snuffed" "snuffing"; -- from DictEng -lin snuff_V2 = mkV2 (mkV "snuff" "snuffs" "snuffed" "snuffed" "snuffing"); -- from DictEng -lin snuff_color_N = mkN "snuff color" ; -lin snuff_colour_A = compoundA (mkA "snuff - colour"); -- from DictEng -lin snuff_colour_N = mkN "snuff - colour" ; -- from DictEng -lin snuff_coloured_A = compoundA (mkA "snuff - coloured"); -- from DictEng -lin snuffbox_N = mkN "snuffbox" "snuffboxes"; -- from DictEng -lin snuffer_N = mkN "snuffer" ; -lin snuffers_N = mkN "snuffers" ; -lin snuffle_N = mkN "snuffle" "snuffles"; -- from DictEng -lin snuffle_V = mkV "snuffle" "snuffles" "snuffled" "snuffled" "snuffling"; -- from DictEng -lin snuffle_V2 = mkV2 (mkV "snuffle") ; -lin snuffler_N = mkN "snuffler" ; -lin snug_A = mkA "snug" "snugger*"; -- from DictEng -lin snug_N = mkN "snug" "snugs"; -- from DictEng -lin snuggery_N = mkN "snuggery" "snuggeries"; -- from DictEng -lin snuggle_V = mkV "snuggle" "snuggles" "snuggled" "snuggled" "snuggling"; -- from DictEng -lin snuggle_V2 = mkV2 (mkV "snuggle" "snuggles" "snuggled" "snuggled" "snuggling"); -- from DictEng -lin snugly_Adv = mkAdv "snugly" ; -lin snugness_N = mkN "snugness" ; -- from DictEng -lin so_AdA = mkAdA "so"; -- from DictEng -lin so_Adv = mkAdv "so" ; -lin so_N = mkN "so" "si" {- FIXME: guessed plural form -}; -- from DictEng -lin so_Subj = mkSubj "so"; -- from DictEng -lin so_and_so_N = mkN "so - and - so" "so - and - sos"; -- from DictEng -lin so_called_A = compoundA (mkA "so - called"); -- from DictEng -lin so_far_Adv = mkAdv "so far" ; -lin so_so_A = compoundA (mkA "so - so"); -- from DictEng -lin so_so_Adv = mkAdv "so - so"; -- from DictEng -lin soak_N = mkN "soak" "soaks"; -- from DictEng -lin soak_V = mkV "soak" "soaks" "soaked" "soaked" "soaking"; -- from DictEng -lin soak_V2 = mkV2 (mkV "soak" "soaks" "soaked" "soaked" "soaking"); -- from DictEng -lin soaker_N = mkN "soaker" "soakers"; -- from DictEng -lin soaking_Adv = mkAdv "soaking" ; -lin soap_N = mkN "soap" "soaps"; -- from DictEng -lin soap_V2 = mkV2 (mkV "soap" "soaps" "soaped" "soaped" "soaping"); -- from DictEng -lin soap_bubble_N = mkN "soap - bubble" "soap - bubbles"; -- from DictEng -lin soap_opera_N = mkN "soap - opera" "soap - operas"; -- from DictEng -lin soapberry_N = mkN "soapberry" ; -lin soapbox_N = mkN "soapbox" "soapboxes"; -- from DictEng -lin soapfish_N = mkN "soapfish" ; -lin soapiness_N = mkN "soapiness" ; -lin soapstone_N = mkN "soapstone" ; -lin soapsuds_N = mkN "soapsuds" ; -lin soapweed_N = mkN "soapweed" ; -lin soapwort_N = mkN "soapwort" ; -lin soapy_A = mkA "soapy" "soapier"; -- from DictEng -lin soar_N = mkN "soar" ; -lin soar_V = mkV "soar" "soars" "soared" "soared" "soaring"; -- from DictEng -lin soar_V2 = mkV2 (mkV "soar" "soars" "soared" "soared" "soaring"); -- from DictEng -lin soaring_A = mkA "soaring" ; -lin sob_N = mkN "sob" "sobs"; -- from DictEng -lin sob_V = mkV "sob" "sobs" "sobbed" "sobbed" "sobbing"; -- from DictEng -lin sob_V2 = mkV2 (mkV "sob" "sobs" "sobbed" "sobbed" "sobbing"); -- from DictEng -lin sob_stuff_N = mkN "sob - stuff" ; -- from DictEng -lin sobbingly_Adv = mkAdv "sobbingly"; -- from DictEng -lin sober_A = compoundA (mkA "sober"); -- from DictEng -lin sober_V = mkV "sober" "sobers" "sobered" "sobered" "sobering"; -- from DictEng -lin sober_V2 = mkV2 (mkV "sober" "sobers" "sobered" "sobered" "sobering"); -- from DictEng -lin sober_sides_N = mkN "sober - sides" "IRREG"; -- from DictEng -lin sobering_A = mkA "sobering" ; -lin soberness_N = mkN "soberness" ; -lin sobersided_A = mkA "sobersided" ; -lin sobersides_N = mkN "sobersides" ; -lin sobralia_N = mkN "sobralia" ; -lin sobriety_N = mkN "sobriety" ; -- from DictEng -lin sobriquet_N = mkN "sobriquet" "sobriquets"; -- from DictEng -lin soc_N = mkN "soc" ; -- from DictEng -lin socage_N = mkN "socage" ; -lin soccer_N = mkN "soccer" ; -- from DictEng -lin sociability_N = mkN "sociability" ; -- from DictEng -lin sociable_A = compoundA (mkA "sociable"); -- from DictEng -lin sociable_N = mkN "sociable" ; -lin sociably_Adv = mkAdv "sociably" ; -lin social_A = compoundA (mkA "social"); -- from DictEng -lin social_N = mkN "social" "socials"; -- from DictEng -lin social_work_N = mkN "social - work" ; -- from DictEng -lin socialism_N = mkN "socialism" ; -- from DictEng -lin socialist_A = compoundA (mkA "socialist"); -- from DictEng -lin socialist_N = mkN "socialist" "socialists"; -- from DictEng -lin socialistic_A = mkA "socialistic" ; -lin socialite_N = mkN "socialite" "socialites"; -- from DictEng -lin sociality_N = mkN "sociality" ; -lin socialization_N = mkN "socialization" "socializations"; -- from DictEng -lin socialize_V2 = mkV2 (mkV "socialize" "socializes" "socialized" "socialized" "socializing"); -- from DictEng -lin socialized_A = mkA "socialized" ; -lin socializer_N = mkN "socializer" ; -lin socially_Adv = mkAdv "socially" ; -lin society_N = mkN "society" "societies"; -- from DictEng -lin sociobiologic_A = mkA "sociobiologic" ; -lin sociobiologically_Adv = mkAdv "sociobiologically" ; -lin sociobiologist_N = mkN "sociobiologist" ; -lin sociobiology_N = mkN "sociobiology" ; -lin sociocultural_A = mkA "sociocultural" ; -lin socioeconomic_A = mkA "socioeconomic" ; -lin socioeconomically_Adv = mkAdv "socioeconomically" ; -lin sociolinguist_N = mkN "sociolinguist" ; -lin sociolinguistic_A = mkA "sociolinguistic" ; -lin sociolinguistically_Adv = mkAdv "sociolinguistically" ; -lin sociolinguistics_N = mkN "sociolinguistics" ; -lin sociological_A = compoundA (mkA "sociological"); -- from DictEng -lin sociologically_Adv = mkAdv "sociologically" ; -lin sociologist_N = mkN "sociologist" "sociologists"; -- from DictEng -lin sociology_N = mkN "sociology" ; -- from DictEng -lin sociometry_N = mkN "sociometry" ; -lin sociopath_N = mkN "sociopath" ; -lin sociopathic_A = mkA "sociopathic" ; -lin sock_Adv = mkAdv "sock"; -- from DictEng -lin sock_N = mkN "sock" "socks"; -- from DictEng -lin sock_V2 = mkV2 (mkV "sock" "socks" "socked" "socked" "socking"); -- from DictEng -lin socket_N = mkN "socket" "sockets"; -- from DictEng -lin sockeye_N = mkN "sockeye" ; -lin socle_N = mkN "socle" ; -lin socratic_A = compoundA (mkA "socratic"); -- from DictEng -lin sod_N = mkN "sod" "sods"; -- from DictEng -lin sod_V = mkV "sod" "sods" "sodded" "sodded" "sodding"; -- from DictEng -lin soda_N = mkN "soda" ; -- from DictEng -lin soda_biscuit_N = mkN "soda - biscuit" "soda - biscuits"; -- from DictEng -lin soda_cracker_N = mkN "soda - cracker" "soda - crackers"; -- from DictEng -lin soda_fountain_N = mkN "soda - fountain" "soda - fountains"; -- from DictEng -lin soda_water_N = mkN "soda - water" "soda - waters"; -- from DictEng -lin sodalist_N = mkN "sodalist" ; -lin sodalite_N = mkN "sodalite" ; -lin sodden_A = compoundA (mkA "sodden"); -- from DictEng -lin sodding_A = compoundA (mkA "sodding"); -- from DictEng -lin sodium_N = mkN "sodium" ; -- from DictEng -lin sodoku_N = mkN "sodoku" ; -lin sodom_N = mkN "sodom" ; -lin sodomite_N = mkN "sodomite" "sodomites"; -- from DictEng -lin sodomy_N = mkN "sodomy" ; -- from DictEng -lin sofa_N = mkN "sofa" "sofas"; -- from DictEng -lin soffit_N = mkN "soffit" ; -lin soft_A = mkA "soft" "softer"; -- from DictEng -lin soft_boiled_A = compoundA (mkA "soft - boiled"); -- from DictEng -lin soft_finned_A = compoundA (mkA "soft finned") ; -lin soft_footed_A = compoundA (mkA "soft - footed"); -- from DictEng -lin soft_haired_A = compoundA (mkA "soft haired") ; -lin soft_nosed_A = compoundA (mkA "soft nosed") ; -lin soft_shoe_N = mkN "soft shoe" ; -lin soft_spoken_A = compoundA (mkA "soft - spoken"); -- from DictEng -lin soft_boiled_A = compoundA (mkA "soft - boiled"); -- from DictEng -lin soft_footed_A = compoundA (mkA "soft - footed"); -- from DictEng -lin soft_headed_A = compoundA (mkA "soft - headed"); -- from DictEng -lin soft_hearted_A = compoundA (mkA "soft - hearted"); -- from DictEng -lin soft_pedal_V = mkV "soft - pedal" "soft - pedals" "soft - pedalled" "soft - pedalled" "soft - pedalling"; -- from DictEng -lin soft_pedal_V2 = mkV2 (mkV "soft - pedal" "soft - pedals" "soft - pedalled" "soft - pedalled" "soft - pedalling"); -- from DictEng -lin soft_soap_V2 = mkV2 (mkV "soft - soap" "soft - soaps" "soft - soaped" "soft - soaped" "soft - soaping"); -- from DictEng -lin soft_solder_N = mkN "soft - solder" ; -- from DictEng -lin soft_solder_V2 = mkV2 (mkV "soft - solder" "soft - solders" "soft - soldered" "soft - soldered" "soft - soldering"); -- from DictEng -lin soft_spoken_A = compoundA (mkA "soft - spoken"); -- from DictEng -lin soft_witted_A = compoundA (mkA "soft - witted"); -- from DictEng -lin softball_N = mkN "softball" ; -lin soften_V = mkV "soften" "softens" "softened" "softened" "softening"; -- from DictEng -lin soften_V2 = mkV2 (mkV "soften" "softens" "softened" "softened" "softening"); -- from DictEng -lin softened_A = mkA "softened" ; -lin softener_N = mkN "softener" "softeners"; -- from DictEng -lin softening_N = mkN "softening" ; -lin softhearted_A = mkA "softhearted" ; -lin softheartedness_N = mkN "softheartedness" ; -lin softie_N = mkN "softie" "softies"; -- from DictEng -lin softish_A = compoundA (mkA "softish"); -- from DictEng -lin softland_V = mkV "softland" "softlands" "softlanded" "softlanded" "softlanding"; -- from DictEng -lin softly_Adv = mkAdv "softly" ; -lin softness_N = mkN "softness" ; -- from DictEng -lin software_N = mkN "software" ; -- from DictEng -lin softwood_N = mkN "softwood" "softwoods"; -- from DictEng -lin softy_N = mkN "softy" "softies"; -- from DictEng -lin sogginess_N = mkN "sogginess" ; -- from DictEng -lin soggy_A = mkA "soggy" "soggier"; -- from DictEng -lin soh_N = mkN "soh" "IRREG"; -- from DictEng -lin soigne_A = compoundA (mkA "soigné"); -- from DictEng -lin soignee_A = compoundA (mkA "soignee"); -- from DictEng -lin soil_N = mkN "soil" "soils"; -- from DictEng -lin soil_V = mkV "soil" "soils" "soiled" "soiled" "soiling"; -- from DictEng -lin soil_V2 = mkV2 (mkV "soil" "soils" "soiled" "soiled" "soiling"); -- from DictEng -lin soil_building_A = compoundA (mkA "soil building") ; -lin soil_pipe_N = mkN "soil - pipe" "soil - pipes"; -- from DictEng -lin soiling_N = mkN "soiling" ; -lin soiree_N = mkN "soirée" "soirées"; -- from DictEng -lin soixante_neuf_N = mkN "soixante neuf" ; -lin sojourn_N = mkN "sojourn" "sojourns"; -- from DictEng -lin sojourn_V = mkV "sojourn" "sojourns" "sojourned" "sojourned" "sojourning"; -- from DictEng -lin sojourner_N = mkN "sojourner" "sojourners"; -- from DictEng -lin sol_N = mkN "sol" ; -lin sol_fa_N = mkN "sol - fa" "sol - fae" {- FIXME: guessed plural form -}; -- from DictEng -lin solace_N = mkN "solace" "solaces"; -- from DictEng -lin solace_V2 = mkV2 (mkV "solace" "solaces" "solaced" "solaced" "solacing"); -- from DictEng -lin solan_N = mkN "solan" ; -lin solanaceous_A = mkA "solanaceous" ; -lin solar_A = compoundA (mkA "solar"); -- from DictEng -lin solar_plexus_N = mkN "solar plexus" "solar plexi" {- FIXME: guessed plural form -}; -- from DictEng -lin solarium_N = mkN "solarium" "solaria" {- FIXME: guessed plural form -}; -- from DictEng -lin solarization_N = mkN "solarization" ; -lin sold_A = mkA "sold" ; -lin sold_out_A = compoundA (mkA "sold out") ; -lin solder_N = mkN "solder" ; -- from DictEng -lin solder_V2 = mkV2 (mkV "solder" "solders" "soldered" "soldered" "soldering"); -- from DictEng -lin solderer_N = mkN "solderer" ; -lin soldering_iron_N = mkN "soldering - iron" "soldering - irons"; -- from DictEng -lin soldier_N = mkN "soldier" "soldiers"; -- from DictEng -lin soldier_V = mkV "soldier" "soldiers" "soldiered" "soldiered" "soldiering"; -- from DictEng -lin soldierfish_N = mkN "soldierfish" ; -lin soldiering_N = mkN "soldiering" ; -lin soldierly_A = mkA "soldierly" ; -lin soldiery_N = mkN "soldiery" "IRREG"; -- from DictEng -lin sole_A = compoundA (mkA "sole"); -- from DictEng -lin sole_N = mkN "sole" "soles"; -- from DictEng -lin sole_V2 = mkV2 (mkV "sole" "soles" "soled" "soled" "soling"); -- from DictEng -lin solecism_N = mkN "solecism" "solecisms"; -- from DictEng -lin soled_A = compoundA (mkA "soled"); -- from DictEng -lin soleless_A = mkA "soleless" ; -lin solemn_A = compoundA (mkA "solemn"); -- from DictEng -lin solemnity_N = mkN "solemnity" "solemnities"; -- from DictEng -lin solemnization_N = mkN "solemnization" ; -- from DictEng -lin solemnize_V2 = mkV2 (mkV "solemnize" "solemnizes" "solemnized" "solemnized" "solemnizing"); -- from DictEng -lin solemnly_Adv = mkAdv "solemnly" ; -lin solemnness_N = mkN "solemnness" ; -- from DictEng -lin solenogaster_N = mkN "solenogaster" ; -lin solenoid_N = mkN "solenoid" ; -lin soleus_N = mkN "soleus" ; -lin solfege_N = mkN "solfege" ; -lin solferino_N = mkN "solferino" ; -lin solicit_V = mkV "solicit" "solicits" "solicited" "solicited" "soliciting"; -- from DictEng -lin solicit_V2 = mkV2 (mkV "solicit" "solicits" "solicited" "solicited" "soliciting"); -- from DictEng -lin solicitation_N = mkN "solicitation" "solicitations"; -- from DictEng -lin solicitor_N = mkN "solicitor" "solicitors"; -- from DictEng -lin solicitor_general_N = mkN "solicitor - general" "solicitor - generals"; -- from DictEng -lin solicitorship_N = mkN "solicitorship" ; -lin solicitous_A = compoundA (mkA "solicitous"); -- from DictEng -lin solicitously_Adv = mkAdv "solicitously" ; -lin solicitude_N = mkN "solicitude" ; -- from DictEng -lin solid_A = compoundA (mkA "solid"); -- from DictEng -lin solid_N = mkN "solid" "solids"; -- from DictEng -lin solid_colored_A = compoundA (mkA "solid colored") ; -lin solid_hoofed_A = compoundA (mkA "solid hoofed") ; -lin solid_state_A = compoundA (mkA "solid - state"); -- from DictEng -lin solid_state_A = compoundA (mkA "solid - state"); -- from DictEng -lin solidarity_N = mkN "solidarity" ; -- from DictEng -lin solidification_N = mkN "solidification" "solidifications"; -- from DictEng -lin solidify_V = mkV "solidify" "solidifies" "solidified" "solidified" "solidifying"; -- from DictEng -lin solidify_V2 = mkV2 (mkV "solidify" "solidifies" "solidified" "solidified" "solidifying"); -- from DictEng -lin solidity_N = mkN "solidity" ; -- from DictEng -lin solidly_Adv = mkAdv "solidly" ; -lin solidness_N = mkN "solidness" ; -- from DictEng -lin solidus_N = mkN "solidus" ; -lin soliloquize_V = mkV "soliloquize" "soliloquizes" "soliloquized" "soliloquized" "soliloquizing"; -- from DictEng -lin soliloquy_N = mkN "soliloquy" "soliloquies"; -- from DictEng -lin solipsism_N = mkN "solipsism" ; -- from DictEng -lin solitaire_N = mkN "solitaire" "solitaires"; -- from DictEng -lin solitarily_Adv = mkAdv "solitarily" ; -lin solitary_A = compoundA (mkA "solitary"); -- from DictEng -lin soliton_N = mkN "soliton" ; -lin solitude_N = mkN "solitude" "solitudes"; -- from DictEng -lin solleret_N = mkN "solleret" ; -lin solmization_N = mkN "solmization" ; -lin solo_A = compoundA (mkA "solo"); -- from DictEng -lin solo_N = mkN "solo" "solos"; -- from DictEng -lin soloist_N = mkN "soloist" "soloists"; -- from DictEng -lin solstice_N = mkN "solstice" "solstices"; -- from DictEng -lin solubility_N = mkN "solubility" ; -- from DictEng -lin soluble_A = compoundA (mkA "soluble"); -- from DictEng -lin solute_N = mkN "solute" ; -lin solution_N = mkN "solution" "solutions"; -- from DictEng -lin solvability_N = mkN "solvability" ; -lin solvable_A = compoundA (mkA "solvable"); -- from DictEng -lin solvate_N = mkN "solvate" ; -lin solvation_N = mkN "solvation" ; -lin solve_V2 = mkV2 (mkV "solve" "solves" "solved" "solved" "solving"); -- from DictEng -lin solved_A = mkA "solved" ; -lin solvency_N = mkN "solvency" ; -- from DictEng -lin solvent_A = compoundA (mkA "solvent"); -- from DictEng -lin solvent_N = mkN "solvent" "solvents"; -- from DictEng -lin som_N = mkN "som" ; -lin soma_N = mkN "soma" ; -lin somali_A = compoundA (mkA "somali"); -- from DictEng -lin somali_N = mkN "somali" "somalis"; -- from DictEng -lin somalian_A = compoundA (mkA "somalian"); -- from DictEng -lin somalian_N = mkN "somalian" "somalians"; -- from DictEng -lin soman_N = mkN "soman" ; -lin somatic_A = compoundA (mkA "somatic"); -- from DictEng -lin somatogenic_A = mkA "somatogenic" ; -lin somatosense_N = mkN "somatosense" ; -lin somatosensory_A = mkA "somatosensory" ; -lin somatotropin_N = mkN "somatotropin" ; -lin somber_A = mkA "somber" ; -lin somberly_Adv = mkAdv "somberly" ; -lin sombre_A = compoundA (mkA "sombre"); -- from DictEng -lin sombreness_N = mkN "sombreness" ; -- from DictEng -lin sombrero_N = mkN "sombrero" "sombreros"; -- from DictEng -lin some_A = mkA "some" ; -lin some_Quant = mkQuant "some" "some"; -- from DictEng -lin somebody_NP = regNP "somebody" singular; -- from DictEng -lin someday_Adv = mkAdv "someday"; -- from DictEng -lin somehow_AdV = mkAdV "somehow"; -- from DictEng -lin somehow_Adv = mkAdv "somehow"; -- from DictEng -lin someone_NP = regNP "someone" singular; -- from DictEng -lin someplace_Adv = mkAdv "someplace"; -- from DictEng -lin somersault_N = mkN "somersault" "somersaults"; -- from DictEng -lin somersault_V = mkV "somersault" "somersaults" "somersaulted" "somersaulted" "somersaulting"; -- from DictEng -lin somersault_V2 = mkV2 (mkV "somersault") ; -lin somesthesia_N = mkN "somesthesia" ; -lin something_NP = regNP "something" singular ; -- from DictEng -lin sometime_Adv = mkAdv "sometime"; -- from DictEng -lin sometimes_Adv = mkAdv "sometimes"; -- from DictEng -lin someway_Adv = mkAdv "someway"; -- from DictEng -lin somewhat_Adv = mkAdv "somewhat"; -- from DictEng -lin somewhere_Adv = mkAdv "somewhere" ; -lin somewhere_N = mkN "somewhere" ; -lin sommelier_N = mkN "sommelier" ; -lin somnambulism_N = mkN "somnambulism" ; -- from DictEng -lin somnambulist_N = mkN "somnambulist" "somnambulists"; -- from DictEng -lin somniloquist_N = mkN "somniloquist" ; -lin somnolence_N = mkN "somnolence" ; -- from DictEng -lin somnolent_A = compoundA (mkA "somnolent"); -- from DictEng -lin son_N = mkN "son" "sons"; -- from DictEng -lin son_in_law_N = mkN "son - in - law" "sons - in - law"; -- from DictEng -lin son_in_law_N = mkN "son - in - law" "sons - in - law"; -- from DictEng -lin sonant_N = mkN "sonant" ; -lin sonar_N = mkN "sonar" "sonars"; -- from DictEng -lin sonata_N = mkN "sonata" "sonatas"; -- from DictEng -lin sonatina_N = mkN "sonatina" ; -lin sone_N = mkN "sone" ; -lin song_N = mkN "song" "songs"; -- from DictEng -lin songbird_N = mkN "songbird" "songbirds"; -- from DictEng -lin songbook_N = mkN "songbook" "songbooks"; -- from DictEng -lin songster_N = mkN "songster" "songsters"; -- from DictEng -lin songstress_N = mkN "songstress" "songstresses"; -- from DictEng -lin songwriter_N = mkN "songwriter" ; -lin sonic_A = compoundA (mkA "sonic"); -- from DictEng -lin sonnet_N = mkN "sonnet" "sonnets"; -- from DictEng -lin sonneteer_N = mkN "sonneteer" "sonneteers"; -- from DictEng -lin sonny_N = mkN "sonny" "sonnies"; -- from DictEng -lin sonogram_N = mkN "sonogram" ; -lin sonograph_N = mkN "sonograph" ; -lin sonography_N = mkN "sonography" ; -lin sonority_N = mkN "sonority" "sonorities"; -- from DictEng -lin sonorous_A = compoundA (mkA "sonorous"); -- from DictEng -lin sonorously_Adv = mkAdv "sonorously" ; -lin sonsy_A = compoundA (mkA "sonsy"); -- from DictEng -lin soon_Adv = mkAdv "soon"; -- from DictEng -lin sooner_Adv = mkAdv "sooner"; -- from DictEng -lin soonest_Adv = mkAdv "soonest"; -- from DictEng -lin soot_N = mkN "soot" ; -- from DictEng -lin soot_V2 = mkV2 (mkV "soot" "soots" "sooted" "sooted" "sooting"); -- from DictEng -lin soot_black_A = compoundA (mkA "soot black") ; -lin sooth_N = mkN "sooth" "sooths"; -- from DictEng -lin soothe_V2 = mkV2 (mkV "soothe" "soothes" "soothed" "soothed" "soothing"); -- from DictEng -lin soothing_A = mkA "soothing" ; -lin soothingly_Adv = mkAdv "soothingly"; -- from DictEng -lin soothsayer_N = mkN "soothsayer" "soothsayers"; -- from DictEng -lin sooty_A = mkA "sooty" "sootier"; -- from DictEng -lin sop_N = mkN "sop" "sops"; -- from DictEng -lin sop_V2 = mkV2 (mkV "sop" "sops" "sopped" "sopped" "sopping"); -- from DictEng -lin sophism_N = mkN "sophism" "sophisms"; -- from DictEng -lin sophist_N = mkN "sophist" "sophists"; -- from DictEng -lin sophistic_A = mkA "sophistic" ; -lin sophisticate_N = mkN "sophisticate" ; -lin sophisticated_A = compoundA (mkA "sophisticated"); -- from DictEng -lin sophistication_N = mkN "sophistication" ; -- from DictEng -lin sophistry_N = mkN "sophistry" "sophistries"; -- from DictEng -lin sophomore_A = mkA "sophomore" ; -lin sophomore_N = mkN "sophomore" "sophomores"; -- from DictEng -lin soporific_A = compoundA (mkA "soporific"); -- from DictEng -lin soporific_N = mkN "soporific" "soporifics"; -- from DictEng -lin sopping_A = compoundA (mkA "sopping"); -- from DictEng -lin sopping_Adv = mkAdv "sopping"; -- from DictEng -lin soppy_A = mkA "soppy" "soppier"; -- from DictEng -lin sopranino_A = mkA "sopranino" ; -lin soprano_A = mkA "soprano" ; -lin soprano_N = mkN "soprano" "sopranos"; -- from DictEng -lin sorb_N = mkN "sorb" ; -lin sorbate_N = mkN "sorbate" ; -lin sorbent_N = mkN "sorbent" ; -lin sorbet_N = mkN "sorbet" "sorbets"; -- from DictEng -lin sorcerer_N = mkN "sorcerer" "sorcerers"; -- from DictEng -lin sorceress_N = mkN "sorceress" "sorceresses"; -- from DictEng -lin sorcery_N = mkN "sorcery" "sorceries"; -- from DictEng -lin sordid_A = compoundA (mkA "sordid"); -- from DictEng -lin sordidly_Adv = mkAdv "sordidly" ; -lin sordidness_N = mkN "sordidness" ; -- from DictEng -lin sore_A = compoundA (mkA "sore"); -- from DictEng -lin sore_N = mkN "sore" "sores"; -- from DictEng -lin sore_eyed_A = compoundA (mkA "sore eyed") ; -lin sorehead_N = mkN "sorehead" ; -lin sorely_Adv = mkAdv "sorely" ; -lin soreness_N = mkN "soreness" ; -- from DictEng -lin sorghum_N = mkN "sorghum" ; -- from DictEng -lin sorgo_N = mkN "sorgo" ; -lin sorority_N = mkN "sorority" "sororities"; -- from DictEng -lin sorption_N = mkN "sorption" ; -lin sorrel_A = compoundA (mkA "sorrel"); -- from DictEng -lin sorrel_N = mkN "sorrel" "sorrels"; -- from DictEng -lin sorrow_N = mkN "sorrow" "sorrows"; -- from DictEng -lin sorrow_V = mkV "sorrow" "sorrows" "sorrowed" "sorrowed" "sorrowing"; -- from DictEng -lin sorrowful_A = compoundA (mkA "sorrowful"); -- from DictEng -lin sorrowfully_Adv = mkAdv "sorrowfully" ; -lin sorry_A = mkA "sorry" "sorrier"; -- from DictEng -lin sort_N = mkN "sort" "sorts"; -- from DictEng -lin sort_V = mkV "sort" "sorts" "sorted" "sorted" "sorting"; -- from DictEng -lin sort_V2 = mkV2 (mkV "sort" "sorts" "sorted" "sorted" "sorting"); -- from DictEng -lin sort_out_V2 = mkV2 (mkV "sort out") ; -lin sorted_A = mkA "sorted" ; -lin sorter_N = mkN "sorter" "sorters"; -- from DictEng -lin sortie_N = mkN "sortie" "sorties"; -- from DictEng -lin sorting_N = mkN "sorting" ; -lin sorus_N = mkN "sorus" ; -lin sos_N = mkN "sos" "soss" ; -- from DictEng -lin sot_N = mkN "sot" "sots"; -- from DictEng -lin soteriological_A = mkA "soteriological" ; -lin soteriology_N = mkN "soteriology" ; -lin sotho_A = compoundA (mkA "sotho"); -- from DictEng -lin sotho_N = mkN "sotho" "sothos"; -- from DictEng -lin sottish_A = compoundA (mkA "sottish"); -- from DictEng -lin sottishly_Adv = mkAdv "sottishly" ; -lin sottishness_N = mkN "sottishness" ; -- from DictEng -lin sotto_voce_Adv = mkAdv "sotto voce"; -- from DictEng -lin sou_N = mkN "sou" "sous"; -- from DictEng -lin sou'_east_Adv = mkAdv "sou'-east"; -- from DictEng -lin sou'_east_N = mkN "sou'-east" ; -- from DictEng -lin sou'_sou'_east_Adv = mkAdv "sou'-sou'-east"; -- from DictEng -lin sou'_sou'_east_N = mkN "sou'-sou'-east" ; -- from DictEng -lin sou'_sou'_west_Adv = mkAdv "sou'-sou'-west"; -- from DictEng -lin sou'_sou'_west_N = mkN "sou'-sou'-west" ; -- from DictEng -lin sou'_west_Adv = mkAdv "sou'-west"; -- from DictEng -lin sou'_west_N = mkN "sou'-west" ; -- from DictEng -lin sou'_wester_N = mkN "sou'-wester" "sou'-westers"; -- from DictEng -lin sou'wester_N = mkN "sou'wester" ; -lin souari_N = mkN "souari" ; -lin soubrette_N = mkN "soubrette" "soubrettes"; -- from DictEng -lin soubriquet_N = mkN "soubriquet" "soubriquets"; -- from DictEng -lin souchong_N = mkN "souchong" ; -lin souffle_N = mkN "soufflé" "soufflés"; -- from DictEng -lin souffle_like_A = compoundA (mkA "souffle like") ; -lin sough_V = mkV "sough" "soughs" "soughed" "soughed" "soughing"; -- from DictEng -lin sough_V2 = mkV2 (mkV "sough") ; -lin soughingly_Adv = mkAdv "soughingly" ; -lin sought_A = mkA "sought" ; -lin souk_N = mkN "souk" ; -lin soul_N = mkN "soul" "souls"; -- from DictEng -lin soul_destroying_A = compoundA (mkA "soul - destroying"); -- from DictEng -lin soul_searching_N = mkN "soul searching" ; -lin soul_destroying_A = compoundA (mkA "soul - destroying"); -- from DictEng -lin soul_stirring_A = compoundA (mkA "soul - stirring"); -- from DictEng -lin soulful_A = compoundA (mkA "soulful"); -- from DictEng -lin soulfully_Adv = mkAdv "soulfully" ; -lin soulless_A = compoundA (mkA "soulless"); -- from DictEng -lin soullessly_Adv = mkAdv "soullessly" ; -lin sound_A = compoundA (mkA "sound"); -- from DictEng -lin sound_Adv = mkAdv "sound"; -- from DictEng -lin sound_N = mkN "sound" "sounds"; -- from DictEng -lin sound_V = mkV "sound" "sounds" "sounded" "sounded" "sounding"; -- from DictEng -lin sound_V2 = mkV2 (mkV "sound" "sounds" "sounded" "sounded" "sounding"); -- from DictEng -lin sound_VA = mkVA (mkV "sound" "sounds" "sounded" "sounded" "sounding"); -- from DictEng -lin sound_VS = mkVS (mkV "sound" "sounds" "sounded" "sounded" "sounding"); -- from DictEng -lin sound_film_N = mkN "sound - film" "sound - films"; -- from DictEng -lin sound_recording_N = mkN "sound - recording" "sound - recordings"; -- from DictEng -lin sound_wave_N = mkN "sound - wave" "sound - waves"; -- from DictEng -lin soundbox_N = mkN "soundbox" "soundboxes"; -- from DictEng -lin sounder_N = mkN "sounder" ; -lin sounding_A = mkA "sounding" ; -lin sounding_N = mkN "sounding" ; -lin sounding_board_N = mkN "sounding - board" "sounding - boards"; -- from DictEng -lin soundless_A = compoundA (mkA "soundless"); -- from DictEng -lin soundly_Adv = mkAdv "soundly" ; -lin soundman_N = mkN "soundman" ; -lin soundness_N = mkN "soundness" ; -- from DictEng -lin soundproof_A = compoundA (mkA "soundproof"); -- from DictEng -lin soundproof_V2 = mkV2 (mkV "soundproof" "soundproofs" "soundproofed" "soundproofed" "soundproofing"); -- from DictEng -lin soundtrack_N = mkN "soundtrack" "soundtracks"; -- from DictEng -lin soup_N = mkN "soup" "soups"; -- from DictEng -lin soup_V2 = mkV2 (mkV "soup" "soups" "souped" "souped" "souping"); -- from DictEng -lin soup_strainer_N = mkN "soup strainer" ; -lin soup_kitchen_N = mkN "soup - kitchen" "soup - kitchens"; -- from DictEng -lin soupcon_N = mkN "soupçon" "soupçons"; -- from DictEng -lin soupspoon_N = mkN "soupspoon" ; -lin soupy_A = mkA "soupy" ; -lin sour_A = compoundA (mkA "sour"); -- from DictEng -lin sour_N = mkN "sour" ; -lin sour_V = mkV "sour" "sours" "soured" "soured" "souring"; -- from DictEng -lin sour_V2 = mkV2 (mkV "sour" "sours" "soured" "soured" "souring"); -- from DictEng -lin sourball_N = mkN "sourball" ; -lin source_N = mkN "source" "sources"; -- from DictEng -lin sourdine_N = mkN "sourdine" ; -lin sourdough_N = mkN "sourdough" ; -lin soured_A = mkA "soured" ; -lin souring_N = mkN "souring" ; -lin sourly_Adv = mkAdv "sourly" ; -lin sourness_N = mkN "sourness" ; -- from DictEng -lin sourpuss_N = mkN "sourpuss" ; -lin soursop_N = mkN "soursop" ; -lin souse_N = mkN "souse" ; -lin souse_V2 = mkV2 (mkV "souse" "souses" "soused" "soused" "sousing"); -- from DictEng -lin soused_A = compoundA (mkA "soused"); -- from DictEng -lin soutache_N = mkN "soutache" ; -lin soutane_N = mkN "soutane" "soutanes"; -- from DictEng -lin south_A = mkA "south"; -- from DictEng -lin south_Adv = mkAdv "south"; -- from DictEng -lin south_N = mkN "south" ; -- from DictEng -lin south_central_A = compoundA (mkA "south central") ; -lin south_polar_A = compoundA (mkA "south polar") ; -lin south_southeast_Adv = mkAdv "south - southeast"; -- from DictEng -lin south_southwest_Adv = mkAdv "south - southwest"; -- from DictEng -lin south_southeast_Adv = mkAdv "south - southeast"; -- from DictEng -lin south_southeast_N = mkN "south - southeast" ; -- from DictEng -lin south_southwest_Adv = mkAdv "south - southwest"; -- from DictEng -lin south_southwest_N = mkN "south - southwest" ; -- from DictEng -lin southbound_A = mkA "southbound" ; -lin southeast_A = mkA "southeast" ; -lin southeast_Adv = mkAdv "southeast"; -- from DictEng -lin southeast_N = mkN "southeast" ; -- from DictEng -lin southeaster_N = mkN "southeaster" "southeasters"; -- from DictEng -lin southeasterly_A = compoundA (mkA "southeasterly"); -- from DictEng -lin southeastern_A = compoundA (mkA "southeastern"); -- from DictEng -lin southeastward_A = mkA "southeastward" ; -lin southeastward_Adv = mkAdv "southeastward" ; -lin southerly_A = compoundA (mkA "southerly"); -- from DictEng -lin southerly_Adv = mkAdv "southerly"; -- from DictEng -lin southern_A = compoundA (mkA "southern"); -- from DictEng -lin southerner_N = mkN "southerner" "southerners"; -- from DictEng -lin southernism_N = mkN "southernism" ; -lin southernmost_A = compoundA (mkA "southernmost"); -- from DictEng -lin southernness_N = mkN "southernness" ; -lin southernwood_N = mkN "southernwood" ; -lin southland_N = mkN "southland" ; -lin southpaw_N = mkN "southpaw" "southpaws"; -- from DictEng -lin southward_Adv = mkAdv "southward"; -- from DictEng -lin southwards_Adv = mkAdv "southwards"; -- from DictEng -lin southwest_A = mkA "southwest" ; -lin southwest_Adv = mkAdv "southwest"; -- from DictEng -lin southwest_N = mkN "southwest" ; -- from DictEng -lin southwester_N = mkN "southwester" "southwesters"; -- from DictEng -lin southwesterly_A = compoundA (mkA "southwesterly"); -- from DictEng -lin southwestern_A = compoundA (mkA "southwestern"); -- from DictEng -lin southwestward_A = mkA "southwestward" ; -lin southwestward_Adv = mkAdv "southwestward" ; -lin souvenir_N = mkN "souvenir" "souvenirs"; -- from DictEng -lin souvlaki_N = mkN "souvlaki" ; -lin sovereign_A = compoundA (mkA "sovereign"); -- from DictEng -lin sovereign_N = mkN "sovereign" "sovereigns"; -- from DictEng -lin sovereignty_N = mkN "sovereignty" ; -- from DictEng -lin soviet_A = compoundA (mkA "soviet"); -- from DictEng -lin soviet_N = mkN "soviet" "soviets"; -- from DictEng -lin sovietize_V2 = mkV2 (mkV "sovietize" "sovietizes" "sovietized" "sovietized" "sovietizing"); -- from DictEng -lin sow_N = mkN "sow" "sows"; -- from DictEng -lin sow_V = mkV "sow" "sows" "sowed" "sowed" "sowing"; -- from DictEng -lin sow_V2 = mkV2 (mkV "sow" "sows" "sowed" "sowed" "sowing"); -- from DictEng -lin sowbane_N = mkN "sowbane" ; -lin sowbelly_N = mkN "sowbelly" ; -lin sowbread_N = mkN "sowbread" ; -lin sower_N = mkN "sower" "sowers"; -- from DictEng -lin soy_N = mkN "soy" ; -- from DictEng -lin soya_N = mkN "soya" ; -- from DictEng -lin sozzled_A = compoundA (mkA "sozzled"); -- from DictEng -lin spa_N = mkN "spa" "spas"; -- from DictEng -lin space_N = mkN "space" "spaces"; -- from DictEng -lin space_V2 = mkV2 (mkV "space" "spaces" "spaced" "spaced" "spacing"); -- from DictEng -lin space_time_N = mkN "space - time" ; -- from DictEng -lin space_bar_N = mkN "space - bar" "space - bars"; -- from DictEng -lin space_capsule_N = mkN "space - capsule" "space - capsules"; -- from DictEng -lin space_heater_N = mkN "space - heater" "space - heaters"; -- from DictEng -lin space_helmet_N = mkN "space - helmet" "space - helmets"; -- from DictEng -lin space_rocket_N = mkN "space - rocket" "space - rockets"; -- from DictEng -lin space_time_N = mkN "space - time" ; -- from DictEng -lin space_vehicle_N = mkN "space - vehicle" "space - vehicles"; -- from DictEng -lin spacecraft_N = mkN "spacecraft" "spacecraft"; -- from DictEng -lin spaced_A = mkA "spaced" ; -lin spaced_out_A = compoundA (mkA "spaced out") ; -lin spaceflight_N = mkN "spaceflight" ; -lin spaceship_N = mkN "spaceship" "spaceships"; -- from DictEng -lin spacesuit_N = mkN "spacesuit" "spacesuits"; -- from DictEng -lin spacewalker_N = mkN "spacewalker" ; -lin spaceward_Adv = mkAdv "spaceward" ; -lin spacing_N = mkN "spacing" "spacings"; -- from DictEng -lin spacious_A = compoundA (mkA "spacious"); -- from DictEng -lin spaciousness_N = mkN "spaciousness" ; -- from DictEng -lin spackle_N = mkN "spackle" ; -lin spade_N = mkN "spade" "spades"; -- from DictEng -lin spade_V2 = mkV2 (mkV "spade" "spades" "spaded" "spaded" "spading"); -- from DictEng -lin spade_shaped_A = compoundA (mkA "spade shaped") ; -lin spadefish_N = mkN "spadefish" ; -lin spadefoot_N = mkN "spadefoot" ; -lin spadeful_N = mkN "spadeful" "spadefuls"; -- from DictEng -lin spadework_N = mkN "spadework" ; -- from DictEng -lin spadix_N = mkN "spadix" ; -lin spaghetti_N = mkN "spaghetti" ; -- from DictEng -lin spaghetti_western_PN = mkPN "spaghetti Western" ; -lin spaghettini_N = mkN "spaghettini" ; -lin spall_N = mkN "spall" ; -lin spallation_N = mkN "spallation" ; -lin spam_N = mkN "spam" ; -- from DictEng -lin spammer_N = mkN "spammer" ; -lin span_N = mkN "span" "spans"; -- from DictEng -lin span_V2 = mkV2 (mkV "span" "spans" "spanned" "spanned" "spanning"); -- from DictEng -lin spandex_N = mkN "spandex" ; -lin spandrel_N = mkN "spandrel" ; -lin spangle_N = mkN "spangle" "spangles"; -- from DictEng -lin spangle_V2 = mkV2 (mkV "spangle" "spangles" "spangled" "spangled" "spangling"); -- from DictEng -lin spaniard_N = mkN "spaniard" "spaniards"; -- from DictEng -lin spaniel_N = mkN "spaniel" "spaniels"; -- from DictEng -lin spanish_A = compoundA (mkA "Spanish"); -- from DictEng -lin spanish_N = mkN "Spanish" ; -- from DictEng -lin spank_N = mkN "spank" ; -lin spank_V = mkV "spank" "spanks" "spanked" "spanked" "spanking"; -- from DictEng -lin spank_V2 = mkV2 (mkV "spank" "spanks" "spanked" "spanked" "spanking"); -- from DictEng -lin spanker_N = mkN "spanker" ; -lin spanking_A = compoundA (mkA "spanking"); -- from DictEng -lin spanking_N = mkN "spanking" "spankings"; -- from DictEng -lin spanner_N = mkN "spanner" "spanners"; -- from DictEng -lin spar_N = mkN "spar" "spars"; -- from DictEng -lin spar_V = mkV "spar" "spars" "sparred" "sparred" "sparring"; -- from DictEng -lin spare_A = compoundA (mkA "spare"); -- from DictEng -lin spare_N = mkN "spare" "spares"; -- from DictEng -lin spare_V = mkV "spare" "spares" "spared" "spared" "sparing"; -- from DictEng -lin spare_V2 = mkV2 (mkV "spare" "spares" "spared" "spared" "sparing"); -- from DictEng -lin spare_rib_N = mkN "spare - rib" "spare - ribs"; -- from DictEng -lin sparely_Adv = mkAdv "sparely" ; -lin spareness_N = mkN "spareness" ; -- from DictEng -lin sparer_N = mkN "sparer" ; -lin sparerib_N = mkN "sparerib" ; -lin spareribs_N = mkN "spareribs" ; -lin sparid_N = mkN "sparid" ; -lin sparing_A = compoundA (mkA "sparing"); -- from DictEng -lin spark_N = mkN "spark" "sparks"; -- from DictEng -lin spark_V = mkV "spark" "sparks" "sparked" "sparked" "sparking"; -- from DictEng -lin spark_V2 = mkV2 (mkV "spark" "sparks" "sparked" "sparked" "sparking"); -- from DictEng -lin spark_plug_N = mkN "spark - plug" "spark - plugs"; -- from DictEng -lin sparking_plug_N = mkN "sparking - plug" "sparking - plugs"; -- from DictEng -lin sparkle_N = mkN "sparkle" "sparkles"; -- from DictEng -lin sparkle_V = mkV "sparkle" "sparkles" "sparkled" "sparkled" "sparkling"; -- from DictEng -lin sparkler_N = mkN "sparkler" "sparklers"; -- from DictEng -lin sparkling_A = compoundA (mkA "sparkling"); -- from DictEng -lin sparling_N = mkN "sparling" ; -lin sparring_N = mkN "sparring" ; -lin sparring_match_N = mkN "sparring - match" "sparring - matches"; -- from DictEng -lin sparring_partner_N = mkN "sparring - partner" "sparring - partners"; -- from DictEng -lin sparrow_N = mkN "sparrow" "sparrows"; -- from DictEng -lin sparrow_sized_A = compoundA (mkA "sparrow sized") ; -lin sparse_A = mkA "sparse" "sparser"; -- from DictEng -lin sparsely_Adv = mkAdv "sparsely" ; -lin sparseness_N = mkN "sparseness" ; -- from DictEng -lin sparsity_N = mkN "sparsity" ; -- from DictEng -lin spartan_A = compoundA (mkA "spartan"); -- from DictEng -lin spartan_N = mkN "spartan" "spartans"; -- from DictEng -lin spasm_N = mkN "spasm" "spasms"; -- from DictEng -lin spasmodic_A = compoundA (mkA "spasmodic"); -- from DictEng -lin spasmodically_Adv = mkAdv "spasmodically"; -- from DictEng -lin spasmolysis_N = mkN "spasmolysis" ; -lin spastic_A = compoundA (mkA "spastic"); -- from DictEng -lin spastic_N = mkN "spastic" "spastics"; -- from DictEng -lin spasticity_N = mkN "spasticity" ; -lin spat_N = mkN "spat" "spats"; -- from DictEng -lin spat_V = mkV "spat" "spats" "spatted" "spatted" "spatting"; -- from DictEng -lin spat_V2 = mkV2 (mkV "spat" "spats" "spatted" "spatted" "spatting"); -- from DictEng -lin spatchcock_N = mkN "spatchcock" "spatchcocks"; -- from DictEng -lin spatchcock_V2 = mkV2 (mkV "spatchcock" "spatchcocks" "spatchcocked" "spatchcocked" "spatchcocking"); -- from DictEng -lin spate_N = mkN "spate" "spates"; -- from DictEng -lin spathe_N = mkN "spathe" ; -lin spathiphyllum_N = mkN "spathiphyllum" ; -lin spatial_A = compoundA (mkA "spatial"); -- from DictEng -lin spatially_Adv = mkAdv "spatially" ; -lin spatiotemporal_A = mkA "spatiotemporal" ; -lin spatter_N = mkN "spatter" "spatters"; -- from DictEng -lin spatter_V = mkV "spatter" "spatters" "spattered" "spattered" "spattering"; -- from DictEng -lin spatter_V2 = mkV2 (mkV "spatter" "spatters" "spattered" "spattered" "spattering"); -- from DictEng -lin spatterdock_N = mkN "spatterdock" ; -lin spatula_N = mkN "spatula" "spatulas"; -- from DictEng -lin spatulate_A = mkA "spatulate" ; -lin spavin_N = mkN "spavin" ; -- from DictEng -lin spavined_A = compoundA (mkA "spavined"); -- from DictEng -lin spawn_N = mkN "spawn" ; -- from DictEng -lin spawn_V = mkV "spawn" "spawns" "spawned" "spawned" "spawning"; -- from DictEng -lin spawn_V2 = mkV2 (mkV "spawn" "spawns" "spawned" "spawned" "spawning"); -- from DictEng -lin spawner_N = mkN "spawner" ; -lin spay_V2 = mkV2 (mkV "spay" "spays" "spayed" "spayed" "spaying"); -- from DictEng -lin spayed_A = mkA "spayed" ; -lin spaying_N = mkN "spaying" ; -lin speak_V = IrregEng.speak_V; -- from DictEng -lin speak_V2 = mkV2 (IrregEng.speak_V); -- from DictEng -lin speakable_A = mkA "speakable" ; -lin speakeasy_N = mkN "speakeasy" ; -lin speaker_N = mkN "speaker" "speakers"; -- from DictEng -lin speakerphone_N = mkN "speakerphone" ; -lin speakership_N = mkN "speakership" "speakerships"; -- from DictEng -lin speaking_A = mkA "speaking" ; -lin speaking_N = mkN "speaking" ; -lin speaking_trumpet_N = mkN "speaking - trumpet" "speaking - trumpets"; -- from DictEng -lin speaking_tube_N = mkN "speaking - tube" "speaking - tubes"; -- from DictEng -lin spear_N = mkN "spear" "spears"; -- from DictEng -lin spear_V2 = mkV2 (mkV "spear" "spears" "speared" "speared" "spearing"); -- from DictEng -lin spearfish_N = mkN "spearfish" ; -lin spearhead_N = mkN "spearhead" "spearheads"; -- from DictEng -lin spearhead_V2 = mkV2 (mkV "spearhead"); -- from DictEng -lin spearmint_N = mkN "spearmint" ; -- from DictEng -lin spec_N = mkN "spec" "specs"; -- from DictEng -lin special_A = compoundA (mkA "special"); -- from DictEng -lin special_N = mkN "special" "specials"; -- from DictEng -lin specialism_N = mkN "specialism" "specialisms"; -- from DictEng -lin specialist_N = mkN "specialist" "specialists"; -- from DictEng -lin specialistic_A = mkA "specialistic" ; -lin speciality_N = mkN "speciality" "specialities"; -- from DictEng -lin specialization_N = mkN "specialization" "specializations"; -- from DictEng -lin specialize_V = mkV "specialize" "specializes" "specialized" "specialized" "specializing"; -- from DictEng -lin specialize_V2 = mkV2 (mkV "specialize" "specializes" "specialized" "specialized" "specializing"); -- from DictEng -lin specialized_A = mkA "specialized" ; -lin specially_Adv = mkAdv "specially" ; -lin specialty_N = mkN "specialty" "specialties"; -- from DictEng -lin speciation_N = mkN "speciation" ; -lin specie_N = mkN "specie" ; -- from DictEng -lin species_N = mkN "species" "species"; -- from DictEng -lin specifiable_A = compoundA (mkA "specifiable"); -- from DictEng -lin specific_A = compoundA (mkA "specific"); -- from DictEng -lin specific_N = mkN "specific" "specifics"; -- from DictEng -lin specifically_Adv = mkAdv "specifically"; -- from DictEng -lin specification_N = mkN "specification" "specifications"; -- from DictEng -lin specificity_N = mkN "specificity" ; -- from DictEng -lin specified_A = mkA "specified" ; -lin specifier_N = mkN "specifier" ; -lin specify_V = mkV "specify"; -- from DictEng -lin specify_V2 = mkV2 (mkV "specify" "specifies" "specified" "specified" "specifying"); -- from DictEng -lin specify_VS = mkVS (mkV "specify"); -- from DictEng -lin specimen_N = mkN "specimen" "specimens"; -- from DictEng -lin specious_A = compoundA (mkA "specious"); -- from DictEng -lin speciously_Adv = mkAdv "speciously" ; -lin speciousness_N = mkN "speciousness" ; -- from DictEng -lin speck_N = mkN "speck" "specks"; -- from DictEng -lin specked_A = compoundA (mkA "specked"); -- from DictEng -lin speckle_N = mkN "speckle" "speckles"; -- from DictEng -lin speckled_A = compoundA (mkA "speckled"); -- from DictEng -lin speckless_A = compoundA (mkA "speckless"); -- from DictEng -lin spectacle_N = mkN "spectacle" "spectacles"; -- from DictEng -lin spectacled_A = compoundA (mkA "spectacled"); -- from DictEng -lin spectacles_N = mkN "spectacles" ; -lin spectacular_A = compoundA (mkA "spectacular"); -- from DictEng -lin spectacular_N = mkN "spectacular" "spectaculars"; -- from DictEng -lin spectacularly_Adv = mkAdv "spectacularly" ; -lin spectator_N = mkN "spectator" "spectators"; -- from DictEng -lin spectinomycin_N = mkN "spectinomycin" ; -lin spectral_A = compoundA (mkA "spectral"); -- from DictEng -lin spectre_N = mkN "spectre" "spectres"; -- from DictEng -lin spectrogram_N = mkN "spectrogram" ; -lin spectrograph_N = mkN "spectrograph" ; -lin spectrographic_A = mkA "spectrographic" ; -lin spectrographically_Adv = mkAdv "spectrographically" ; -lin spectrometric_A = mkA "spectrometric" ; -lin spectrophotometer_N = mkN "spectrophotometer" ; -lin spectroscope_N = mkN "spectroscope" "spectroscopes"; -- from DictEng -lin spectroscopic_A = compoundA (mkA "spectroscopic"); -- from DictEng -lin spectroscopy_N = mkN "spectroscopy" ; -lin spectrum_N = mkN "spectrum" "spectra" {- FIXME: guessed plural form -}; -- from DictEng -lin speculate_V = mkV "speculate" "speculates" "speculated" "speculated" "speculating"; -- from DictEng -lin speculate_VS = mkVS (mkV "speculate" "speculates" "speculated" "speculated" "speculating"); -- from DictEng -lin speculation_N = mkN "speculation" "speculations"; -- from DictEng -lin speculative_A = compoundA (mkA "speculative"); -- from DictEng -lin speculatively_Adv = mkAdv "speculatively" ; -lin speculativeness_N = mkN "speculativeness" ; -lin speculator_N = mkN "speculator" "speculators"; -- from DictEng -lin speculum_N = mkN "speculum" ; -lin speech_N = mkN "speech" "speeches"; -- from DictEng -lin speech_endowed_A = compoundA (mkA "speech endowed") ; -lin speech_day_N = mkN "speech - day" "speech - days"; -- from DictEng -lin speechify_V = mkV "speechify" "speechifies" "speechified" "speechified" "speechifying"; -- from DictEng -lin speechless_A = compoundA (mkA "speechless"); -- from DictEng -lin speechlessly_Adv = mkAdv "speechlessly" ; -lin speechlessness_N = mkN "speechlessness" ; -lin speechwriter_N = mkN "speechwriter" ; -lin speed_N = mkN "speed" "speeds"; -- from DictEng -lin speed_V = mkV "speed" "speeds" "speeded" "speeded" "speeding"; -- from DictEng -lin speed_V2 = mkV2 (mkV "speed" "speeds" "speeded" "speeded" "speeding"); -- from DictEng -lin speed_reading_N = mkN "speed reading" ; -lin speed_cop_N = mkN "speed - cop" "speed - cops"; -- from DictEng -lin speed_indicator_N = mkN "speed - indicator" "speed - indicators"; -- from DictEng -lin speed_limit_N = mkN "speed - limit" "speed - limits"; -- from DictEng -lin speed_up_N = mkN "speed - up" "speed - ups"; -- from DictEng -lin speedboat_N = mkN "speedboat" "speedboats"; -- from DictEng -lin speeder_N = mkN "speeder" ; -lin speedily_Adv = mkAdv "speedily"; -- from DictEng -lin speeding_N = mkN "speeding" ; -- from DictEng -lin speedometer_N = mkN "speedometer" "speedometers"; -- from DictEng -lin speedskater_N = mkN "speedskater" ; -lin speedway_N = mkN "speedway" "speedways"; -- from DictEng -lin speedwell_N = mkN "speedwell" "speedwells"; -- from DictEng -lin speedy_A = mkA "speedy" "speedier"; -- from DictEng -lin spelaeologist_N = mkN "spelaeologist" "spelaeologists"; -- from DictEng -lin spelaeology_N = mkN "spelaeology" ; -- from DictEng -lin speleologist_N = mkN "speleologist" "speleologists"; -- from DictEng -lin speleology_N = mkN "speleology" ; -- from DictEng -lin spell_N = mkN "spell" "spells"; -- from DictEng -lin spell_V = mkV "spell" "spells" "spelled" "spelled" "spelling"; -- from DictEng -lin spell_V2 = mkV2 (mkV "spell" "spells" "spelled" "spelled" "spelling"); -- from DictEng -lin spell_checker_N = mkN "spell checker" ; -lin spellbind_V2 = mkV2 (mkV "spellbind") ; -lin spellbinder_N = mkN "spellbinder" "spellbinders"; -- from DictEng -lin spellbound_A = compoundA (mkA "spellbound"); -- from DictEng -lin speller_N = mkN "speller" "spellers"; -- from DictEng -lin spelling_N = mkN "spelling" "spellings"; -- from DictEng -lin spelt_N = mkN "spelt" ; -- from DictEng -lin spelter_N = mkN "spelter" ; -lin spend_V = IrregEng.spend_V; -- from DictEng -lin spend_V2 = mkV2 (IrregEng.spend_V); -- from DictEng -lin spend_V2V = mkV2V (IrregEng.spend_V) noPrep to_Prep ; -- from DictEng -lin spend_VS = mkVS (IrregEng.spend_V); -- from DictEng -lin spender_N = mkN "spender" "spenders"; -- from DictEng -lin spending_N = mkN "spending" ; -lin spendthrift_N = mkN "spendthrift" "spendthrifts"; -- from DictEng -lin spent_A = compoundA (mkA "spent"); -- from DictEng -lin sperm_N = mkN "sperm" "sperms"; -- from DictEng -lin sperm_filled_A = compoundA (mkA "sperm filled") ; -lin sperm_whale_N = mkN "sperm - whale" "sperm - whales"; -- from DictEng -lin spermaceti_N = mkN "spermaceti" ; -- from DictEng -lin spermatid_N = mkN "spermatid" ; -lin spermatocele_N = mkN "spermatocele" ; -lin spermatocyte_N = mkN "spermatocyte" ; -lin spermatogenesis_N = mkN "spermatogenesis" ; -lin spermatophyte_N = mkN "spermatophyte" ; -lin spermatozoon_N = mkN "spermatozoon" "spermatozoa" {- FIXME: guessed plural form -}; -- from DictEng -lin spermicidal_A = mkA "spermicidal" ; -lin spermicide_N = mkN "spermicide" "spermicides"; -- from DictEng -lin spermous_A = mkA "spermous" ; -lin spew_V = mkV "spew" "spews" "spewed" "spewed" "spewing"; -- from DictEng -lin spew_V2 = mkV2 (mkV "spew" "spews" "spewed" "spewed" "spewing"); -- from DictEng -lin sphagnum_N = mkN "sphagnum" "sphagnums"; -- from DictEng -lin sphenion_N = mkN "sphenion" ; -lin sphere_N = mkN "sphere" "spheres"; -- from DictEng -lin spherical_A = compoundA (mkA "spherical"); -- from DictEng -lin spherically_Adv = mkAdv "spherically" ; -lin sphericity_N = mkN "sphericity" ; -lin spherocyte_N = mkN "spherocyte" ; -lin spheroid_N = mkN "spheroid" "spheroids"; -- from DictEng -lin spherometer_N = mkN "spherometer" ; -lin spherule_N = mkN "spherule" ; -lin sphincter_N = mkN "sphincter" ; -lin sphingine_A = mkA "sphingine" ; -lin sphinx_N = mkN "sphinx" "sphinxes"; -- from DictEng -lin sphygmomanometer_N = mkN "sphygmomanometer" ; -lin spic_N = mkN "spic" ; -lin spicate_A = mkA "spicate" ; -lin spiccato_N = mkN "spiccato" ; -lin spice_N = mkN "spice" "spices"; -- from DictEng -lin spice_V2 = mkV2 (mkV "spice" "spices" "spiced" "spiced" "spicing"); -- from DictEng -lin spice_scented_A = compoundA (mkA "spice scented") ; -lin spicebush_N = mkN "spicebush" ; -lin spicemill_N = mkN "spicemill" ; -lin spicily_Adv = mkAdv "spicily"; -- from DictEng -lin spiciness_N = mkN "spiciness" ; -- from DictEng -lin spick_A = compoundA (mkA "spick"); -- from DictEng -lin spicule_N = mkN "spicule" ; -lin spicy_A = mkA "spicy" "spicier"; -- from DictEng -lin spider_N = mkN "spider" "spiders"; -- from DictEng -lin spider_shaped_A = compoundA (mkA "spider shaped") ; -lin spiderflower_N = mkN "spiderflower" ; -lin spiderwort_N = mkN "spiderwort" ; -lin spidery_A = compoundA (mkA "spidery"); -- from DictEng -lin spiegeleisen_N = mkN "spiegeleisen" ; -lin spiel_N = mkN "spiel" "spiels"; -- from DictEng -lin spiel_V = mkV "spiel" "spiels" "spieled" "spieled" "spieling"; -- from DictEng -lin spiel_V2 = mkV2 (mkV "spiel" "spiels" "spieled" "spieled" "spieling"); -- from DictEng -lin spiff_N = mkN "spiff" ; -lin spiffing_A = mkA "spiffing" ; -lin spigot_N = mkN "spigot" "spigots"; -- from DictEng -lin spike_N = mkN "spike" "spikes"; -- from DictEng -lin spike_V2 = mkV2 (mkV "spike" "spikes" "spiked" "spiked" "spiking"); -- from DictEng -lin spiked_A = mkA "spiked" ; -lin spikelike_A = mkA "spikelike" ; -lin spikemoss_N = mkN "spikemoss" ; -lin spikenard_N = mkN "spikenard" ; -- from DictEng -lin spiky_A = mkA "spiky" "spikier"; -- from DictEng -lin spill_N = mkN "spill" "spills"; -- from DictEng -lin spill_V = mkV "spill" "spills" "spilled" "spilled" "spilling"; -- from DictEng -lin spill_V2 = mkV2 (mkV "spill" "spills" "spilled" "spilled" "spilling"); -- from DictEng -lin spillage_N = mkN "spillage" "spillages"; -- from DictEng -lin spillover_N = mkN "spillover" "spillovers"; -- from DictEng -lin spillway_N = mkN "spillway" "spillways"; -- from DictEng -lin spin_N = mkN "spin" "spins"; -- from DictEng -lin spin_V = IrregEng.spin_V; -- from DictEng -lin spin_V2 = mkV2 (IrregEng.spin_V); -- from DictEng -lin spin_drier_N = mkN "spin - drier" "spin - driers"; -- from DictEng -lin spin_dry_V2 = mkV2 (mkV "spin - dry" "spin - dries" "spin - dried" "spin - dried" "spin - drying"); -- from DictEng -lin spin_off_N = mkN "spin - off" "spin - offs"; -- from DictEng -lin spinach_N = mkN "spinach" ; -- from DictEng -lin spinal_A = compoundA (mkA "spinal"); -- from DictEng -lin spinally_Adv = mkAdv "spinally" ; -lin spindle_N = mkN "spindle" "spindles"; -- from DictEng -lin spindle_legged_A = compoundA (mkA "spindle - legged"); -- from DictEng -lin spindle_berry_N = mkN "spindle - berry" "spindle - berries"; -- from DictEng -lin spindle_legged_A = compoundA (mkA "spindle - legged"); -- from DictEng -lin spindle_shanked_A = compoundA (mkA "spindle - shanked"); -- from DictEng -lin spindle_shanks_N = mkN "spindle - shanks" "IRREG"; -- from DictEng -lin spindle_tree_N = mkN "spindle - tree" "spindle - trees"; -- from DictEng -lin spindlelegs_N = mkN "spindlelegs" ; -lin spindly_A = mkA "spindly" "spindlier"; -- from DictEng -lin spindrift_N = mkN "spindrift" ; -- from DictEng -lin spine_N = mkN "spine" "spines"; -- from DictEng -lin spine_tipped_A = compoundA (mkA "spine tipped") ; -lin spinel_N = mkN "spinel" ; -lin spineless_A = compoundA (mkA "spineless"); -- from DictEng -lin spinelessness_N = mkN "spinelessness" ; -lin spinet_N = mkN "spinet" "spinets"; -- from DictEng -lin spinnability_N = mkN "spinnability" ; -lin spinnable_A = mkA "spinnable" ; -lin spinnaker_N = mkN "spinnaker" "spinnakers"; -- from DictEng -lin spinnbarkeit_N = mkN "spinnbarkeit" ; -lin spinner_N = mkN "spinner" ; -lin spinney_N = mkN "spinney" "spinneys"; -- from DictEng -lin spinning_N = mkN "spinning" ; -lin spinning_wheel_N = mkN "spinning - wheel" "spinning - wheels"; -- from DictEng -lin spinose_A = mkA "spinose" ; -lin spinous_A = mkA "spinous" ; -lin spinster_N = mkN "spinster" "spinsters"; -- from DictEng -lin spinsterhood_N = mkN "spinsterhood" ; -- from DictEng -lin spiny_A = mkA "spiny" "spinier"; -- from DictEng -lin spiny_backed_A = compoundA (mkA "spiny backed") ; -lin spiny_edged_A = compoundA (mkA "spiny edged") ; -lin spiny_finned_A = compoundA (mkA "spiny finned") ; -lin spiny_leaved_A = compoundA (mkA "spiny leaved") ; -lin spiny_stemmed_A = compoundA (mkA "spiny stemmed") ; -lin spiracle_N = mkN "spiracle" ; -lin spiral_A = compoundA (mkA "spiral"); -- from DictEng -lin spiral_N = mkN "spiral" "spirals"; -- from DictEng -lin spiral_V = mkV "spiral" "spirals" "spiralled" "spiralled" "spiralling"; -- from DictEng -lin spiral_shelled_A = compoundA (mkA "spiral shelled") ; -lin spirally_Adv = mkAdv "spirally" ; -lin spire_N = mkN "spire" "spires"; -- from DictEng -lin spirea_N = mkN "spirea" ; -lin spirillum_N = mkN "spirillum" ; -lin spirit_N = mkN "spirit" "spirits"; -- from DictEng -lin spirit_V2 = mkV2 (mkV "spirit" "spirits" "spirited" "spirited" "spiriting"); -- from DictEng -lin spirit_lamp_N = mkN "spirit - lamp" "spirit - lamps"; -- from DictEng -lin spirit_level_N = mkN "spirit - level" "spirit - levels"; -- from DictEng -lin spirit_rapper_N = mkN "spirit - rapper" "spirit - rappers"; -- from DictEng -lin spirit_stove_N = mkN "spirit - stove" "spirit - stoves"; -- from DictEng -lin spirited_A = compoundA (mkA "spirited"); -- from DictEng -lin spiritedly_Adv = mkAdv "spiritedly" ; -lin spiritless_A = compoundA (mkA "spiritless"); -- from DictEng -lin spiritual_A = compoundA (mkA "spiritual"); -- from DictEng -lin spiritual_N = mkN "spiritual" "spirituals"; -- from DictEng -lin spiritualism_N = mkN "spiritualism" ; -- from DictEng -lin spiritualist_N = mkN "spiritualist" "spiritualists"; -- from DictEng -lin spiritualistic_A = compoundA (mkA "spiritualistic"); -- from DictEng -lin spirituality_N = mkN "spirituality" ; -- from DictEng -lin spiritualization_N = mkN "spiritualization" ; -- from DictEng -lin spiritualize_V2 = mkV2 (mkV "spiritualize" "spiritualizes" "spiritualized" "spiritualized" "spiritualizing"); -- from DictEng -lin spiritually_Adv = mkAdv "spiritually" ; -lin spiritualty_N = mkN "spiritualty" ; -lin spirituous_A = compoundA (mkA "spirituous"); -- from DictEng -lin spirochete_N = mkN "spirochete" ; -lin spirogram_N = mkN "spirogram" ; -lin spirograph_N = mkN "spirograph" ; -lin spirogyra_N = mkN "spirogyra" ; -lin spirometer_N = mkN "spirometer" ; -lin spirometry_N = mkN "spirometry" ; -lin spironolactone_N = mkN "spironolactone" ; -lin spirt_N = mkN "spirt" "spirts"; -- from DictEng -lin spirt_V = mkV "spirt" "spirts" "spirted" "spirted" "spirting"; -- from DictEng -lin spirula_N = mkN "spirula" ; -lin spit_N = mkN "spit" "spits"; -- from DictEng -lin spit_V = IrregEng.spit_V; -- from DictEng -lin spit_V2 = mkV2 (IrregEng.spit_V); -- from DictEng -lin spitball_N = mkN "spitball" ; -lin spite_N = mkN "spite" ; -- from DictEng -lin spite_V2 = mkV2 (mkV "spite" "spites" "spited" "spited" "spiting"); -- from DictEng -lin spiteful_A = compoundA (mkA "spiteful"); -- from DictEng -lin spitefully_Adv = mkAdv "spitefully" ; -lin spitefulness_N = mkN "spitefulness" ; -- from DictEng -lin spitfire_N = mkN "spitfire" "spitfires"; -- from DictEng -lin spitter_N = mkN "spitter" ; -lin spitting_N = mkN "spitting" ; -- from DictEng -lin spittle_N = mkN "spittle" ; -- from DictEng -lin spittoon_N = mkN "spittoon" "spittoons"; -- from DictEng -lin spitz_N = mkN "spitz" ; -lin spiv_N = mkN "spiv" "spivs"; -- from DictEng -lin splash_N = mkN "splash" "splashes"; -- from DictEng -lin splash_V = mkV "splash" "splashes" "splashed" "splashed" "splashing"; -- from DictEng -lin splash_V2 = mkV2 (mkV "splash" "splashes" "splashed" "splashed" "splashing"); -- from DictEng -lin splashboard_N = mkN "splashboard" ; -lin splashdown_N = mkN "splashdown" "splashdowns"; -- from DictEng -lin splashed_A = mkA "splashed" ; -lin splasher_N = mkN "splasher" ; -lin splashy_A = mkA "splashy" ; -lin splat_N = mkN "splat" ; -lin splay_A = compoundA (mkA "splay"); -- from DictEng -lin splay_N = mkN "splay" "splays"; -- from DictEng -lin splay_V = mkV "splay" "splays" "splayed" "splayed" "splaying"; -- from DictEng -lin splay_V2 = mkV2 (mkV "splay" "splays" "splayed" "splayed" "splaying"); -- from DictEng -lin splayfoot_N = mkN "splayfoot" "splayfeet" {- FIXME: guessed plural form -}; -- from DictEng -lin splayfooted_A = compoundA (mkA "splayfooted"); -- from DictEng -lin spleen_N = mkN "spleen" "spleens"; -- from DictEng -lin spleenwort_N = mkN "spleenwort" ; -lin splendid_A = compoundA (mkA "splendid"); -- from DictEng -lin splendiferous_A = compoundA (mkA "splendiferous"); -- from DictEng -lin splendour_N = mkN "splendour" "splendours"; -- from DictEng -lin splenectomy_N = mkN "splenectomy" ; -lin splenetic_A = compoundA (mkA "splenetic"); -- from DictEng -lin splenic_A = mkA "splenic" ; -lin splenitis_N = mkN "splenitis" ; -lin splenius_N = mkN "splenius" ; -lin splenomegaly_N = mkN "splenomegaly" ; -lin splice_N = mkN "splice" "splices"; -- from DictEng -lin splice_V2 = mkV2 (mkV "splice" "splices" "spliced" "spliced" "splicing"); -- from DictEng -lin splicer_N = mkN "splicer" "splicers"; -- from DictEng -lin spline_N = mkN "spline" ; -lin splint_N = mkN "splint" "splints"; -- from DictEng -lin splinter_N = mkN "splinter" "splinters"; -- from DictEng -lin splinter_V = mkV "splinter" "splinters" "splintered" "splintered" "splintering"; -- from DictEng -lin splinter_V2 = mkV2 (mkV "splinter" "splinters" "splintered" "splintered" "splintering"); -- from DictEng -lin splinter_proof_A = compoundA (mkA "splinter - proof"); -- from DictEng -lin splintery_A = compoundA (mkA "splintery"); -- from DictEng -lin split_A = mkA "split" ; -lin split_N = mkN "split" "splits"; -- from DictEng -lin split_V = IrregEng.split_V; -- from DictEng -lin split_V2 = mkV2 (IrregEng.split_V); -- from DictEng -lin split_pea_N = mkN "split pea" ; -lin splitsville_N = mkN "splitsville" ; -lin splitter_N = mkN "splitter" ; -lin splodge_N = mkN "splodge" "splodges"; -- from DictEng -lin sploosh_V = mkV "sploosh" ; -lin sploosh_V2 = mkV2 (mkV "sploosh") ; -lin splosh_V2 = mkV2 (mkV "splosh" "sploshes" "sploshed" "sploshed" "sploshing"); -- from DictEng -lin splotch_N = mkN "splotch" "splotches"; -- from DictEng -lin splurge_N = mkN "splurge" "splurges"; -- from DictEng -lin splurge_V = mkV "splurge" "splurges" "splurged" "splurged" "splurging"; -- from DictEng -lin splutter_N = mkN "splutter" ; -- from DictEng -lin splutter_V = mkV "splutter" "splutters" "spluttered" "spluttered" "spluttering"; -- from DictEng -lin splutter_V2 = mkV2 (mkV "splutter" "splutters" "spluttered" "spluttered" "spluttering"); -- from DictEng -lin spode_N = mkN "spode" ; -- from DictEng -lin spodumene_N = mkN "spodumene" ; -lin spoil_N = mkN "spoil" "spoils"; -- from DictEng -lin spoil_V = mkV "spoil" "spoils" "spoiled" "spoiled" "spoiling"; -- from DictEng -lin spoil_V2 = mkV2 (mkV "spoil" "spoils" "spoiled" "spoiled" "spoiling"); -- from DictEng -lin spoilage_N = mkN "spoilage" ; -lin spoiled_A = mkA "spoiled" ; -lin spoiler_N = mkN "spoiler" ; -lin spoilsport_N = mkN "spoilsport" "spoilsports"; -- from DictEng -lin spoke_N = mkN "spoke" "spokes"; -- from DictEng -lin spoken_A = mkA "spoken" ; -lin spokeshave_N = mkN "spokeshave" ; -lin spokesman_N = mkN "spokesman" "spokesmen" {- FIXME: guessed plural form -}; -- from DictEng -lin spokesperson_N = mkN "spokesperson" ; -lin spokeswoman_N = mkN "spokeswoman" ; -lin spoliation_N = mkN "spoliation" ; -- from DictEng -lin spondaic_A = compoundA (mkA "spondaic"); -- from DictEng -lin spondee_N = mkN "spondee" "spondees"; -- from DictEng -lin spondylarthritis_N = mkN "spondylarthritis" ; -lin spondylitis_N = mkN "spondylitis" ; -lin spondylolisthesis_N = mkN "spondylolisthesis" ; -lin sponge_N = mkN "sponge" "sponges"; -- from DictEng -lin sponge_V = mkV "sponge" "sponges" "sponged" "sponged" "sponging"; -- from DictEng -lin sponge_V2 = mkV2 (mkV "sponge" "sponges" "sponged" "sponged" "sponging"); -- from DictEng -lin sponge_cake_N = mkN "sponge - cake" "sponge - cakes"; -- from DictEng -lin spongefly_N = mkN "spongefly" ; -lin sponger_N = mkN "sponger" "spongers"; -- from DictEng -lin sponginess_N = mkN "sponginess" ; -- from DictEng -lin spongioblast_N = mkN "spongioblast" ; -lin spongy_A = mkA "spongy" "spongier"; -- from DictEng -lin sponsor_N = mkN "sponsor" "sponsors"; -- from DictEng -lin sponsor_V2 = mkV2 (mkV "sponsor" "sponsors" "sponsored" "sponsored" "sponsoring"); -- from DictEng -lin sponsorship_N = mkN "sponsorship" "sponsorships"; -- from DictEng -lin spontaneity_N = mkN "spontaneity" ; -- from DictEng -lin spontaneous_A = compoundA (mkA "spontaneous"); -- from DictEng -lin spontaneously_Adv = mkAdv "spontaneously" ; -lin spontaneousness_N = mkN "spontaneousness" ; -- from DictEng -lin spoof_N = mkN "spoof" "spoofs"; -- from DictEng -lin spoof_V2 = mkV2 (mkV "spoof" "spoofs" "spoofed" "spoofed" "spoofing"); -- from DictEng -lin spook_N = mkN "spook" "spooks"; -- from DictEng -lin spook_V2 = mkV2 (mkV "spook"); -- from DictEng -lin spooky_A = mkA "spooky" "spookier"; -- from DictEng -lin spool_N = mkN "spool" "spools"; -- from DictEng -lin spoon_N = mkN "spoon" "spoons"; -- from DictEng -lin spoon_V = mkV "spoon" "spoons" "spooned" "spooned" "spooning"; -- from DictEng -lin spoon_V2 = mkV2 (mkV "spoon" "spoons" "spooned" "spooned" "spooning"); -- from DictEng -lin spoon_shaped_A = compoundA (mkA "spoon shaped") ; -lin spoonbill_N = mkN "spoonbill" ; -lin spoonerism_N = mkN "spoonerism" "spoonerisms"; -- from DictEng -lin spoonfeed_V2 = mkV2 (mkV "spoon" IrregEng.feed_V); -- from DictEng -lin spoonfeeding_N = mkN "spoonfeeding" ; -- from DictEng -lin spoonful_N = mkN "spoonful" "spoonfuls"; -- from DictEng -lin spoor_N = mkN "spoor" "spoors"; -- from DictEng -lin sporadic_A = compoundA (mkA "sporadic"); -- from DictEng -lin sporadically_Adv = mkAdv "sporadically"; -- from DictEng -lin sporangiophore_N = mkN "sporangiophore" ; -lin sporangium_N = mkN "sporangium" ; -lin spore_N = mkN "spore" "spores"; -- from DictEng -lin spore_bearing_A = compoundA (mkA "spore bearing") ; -lin sporocarp_N = mkN "sporocarp" ; -lin sporogenous_A = mkA "sporogenous" ; -lin sporophore_N = mkN "sporophore" ; -lin sporophyll_N = mkN "sporophyll" ; -lin sporophyte_N = mkN "sporophyte" ; -lin sporotrichosis_N = mkN "sporotrichosis" ; -lin sporozoan_N = mkN "sporozoan" ; -lin sporozoite_N = mkN "sporozoite" ; -lin sporran_N = mkN "sporran" "sporrans"; -- from DictEng -lin sport_N = mkN "sport" "sports"; -- from DictEng -lin sport_V = mkV "sport" "sports" "sported" "sported" "sporting"; -- from DictEng -lin sport_V2 = mkV2 (mkV "sport" "sports" "sported" "sported" "sporting"); -- from DictEng -lin sporting_A = compoundA (mkA "sporting"); -- from DictEng -lin sportingly_Adv = mkAdv "sportingly" ; -lin sportive_A = compoundA (mkA "sportive"); -- from DictEng -lin sportively_Adv = mkAdv "sportively" ; -lin sportiveness_N = mkN "sportiveness" ; -- from DictEng -lin sports_car_N = mkN "sports - car" "sports - cars"; -- from DictEng -lin sports_coat_N = mkN "sports - coat" "sports - coats"; -- from DictEng -lin sports_editor_N = mkN "sports - editor" "sports - editors"; -- from DictEng -lin sports_jacket_N = mkN "sports - jacket" "sports - jackets"; -- from DictEng -lin sportscast_N = mkN "sportscast" ; -lin sportsman_N = mkN "sportsman" "sportsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin sportsmanlike_A = compoundA (mkA "sportsmanlike"); -- from DictEng -lin sportsmanship_N = mkN "sportsmanship" ; -- from DictEng -lin sportswear_N = mkN "sportswear" ; -lin sporty_A = mkA "sporty" ; -lin spot_N = mkN "spot" "spots"; -- from DictEng -lin spot_V = mkV "spot" "spots" "spotted" "spotted" "spotting"; -- from DictEng -lin spot_V2 = mkV2 (mkV "spot" "spots" "spotted" "spotted" "spotting"); -- from DictEng -lin spot_VS = mkVS (mkV "spot" "spots" "spotted" "spotted" "spotting"); -- from DictEng -lin spot_welder_N = mkN "spot welder" ; -lin spotless_A = compoundA (mkA "spotless"); -- from DictEng -lin spotlessly_Adv = mkAdv "spotlessly" ; -lin spotlessness_N = mkN "spotlessness" ; -lin spotlight_N = mkN "spotlight" "spotlights"; -- from DictEng -lin spotlight_V2 = mkV2 (mkV "spotlight" "spotlights" "spotlighted" "spotlighted" "spotlighting"); -- from DictEng -lin spotted_A = compoundA (mkA "spotted"); -- from DictEng -lin spotter_N = mkN "spotter" "spotters"; -- from DictEng -lin spotty_A = mkA "spotty" "spottier"; -- from DictEng -lin spousal_A = mkA "spousal" ; -lin spouse_N = mkN "spouse" "spouses"; -- from DictEng -lin spout_N = mkN "spout" "spouts"; -- from DictEng -lin spout_V = mkV "spout" "spouts" "spouted" "spouted" "spouting"; -- from DictEng -lin spout_V2 = mkV2 (mkV "spout" "spouts" "spouted" "spouted" "spouting"); -- from DictEng -lin spouter_N = mkN "spouter" ; -lin sprachgefuhl_N = mkN "sprachgefuhl" ; -lin sprag_N = mkN "sprag" ; -lin sprain_N = mkN "sprain" "sprains"; -- from DictEng -lin sprain_V2 = mkV2 (mkV "sprain" "sprains" "sprained" "sprained" "spraining"); -- from DictEng -lin sprat_N = mkN "sprat" "sprats"; -- from DictEng -lin sprawl_N = mkN "sprawl" "sprawls"; -- from DictEng -lin sprawl_V = mkV "sprawl" "sprawls" "sprawled" "sprawled" "sprawling"; -- from DictEng -lin sprawl_V2 = mkV2 (mkV "sprawl" "sprawls" "sprawled" "sprawled" "sprawling"); -- from DictEng -lin sprawler_N = mkN "sprawler" ; -lin sprawling_A = mkA "sprawling" ; -lin sprawly_A = mkA "sprawly" ; -lin spray_N = mkN "spray" "sprays"; -- from DictEng -lin spray_V2 = mkV2 (mkV "spray" "sprays" "sprayed" "sprayed" "spraying"); -- from DictEng -lin spray_dried_A = compoundA (mkA "spray dried") ; -lin spray_gun_N = mkN "spray - gun" "spray - guns"; -- from DictEng -lin sprayer_N = mkN "sprayer" "sprayers"; -- from DictEng -lin spraying_N = mkN "spraying" ; -lin spraypaint_V = mkV "spraypaint" ; -lin spraypaint_V2 = mkV2 (mkV "spraypaint") ; -lin spread_A = mkA "spread" ; -lin spread_N = mkN "spread" "spreads"; -- from DictEng -lin spread_V = IrregEng.spread_V; -- from DictEng -lin spread_V2 = mkV2 (IrregEng.spread_V); -- from DictEng -lin spread_V2V = mkV2V (IrregEng.spread_V) noPrep to_Prep ; -- from DictEng -lin spread_VS = mkVS (IrregEng.spread_V); -- from DictEng -lin spread_eagle_A = compoundA (mkA "spread eagle") ; -lin spread_over_N = mkN "spread - over" ; -- from DictEng -lin spreadeagle_N = mkN "spreadeagle" "spreadeagles"; -- from DictEng -lin spreadeagle_V2 = mkV2 (mkV "spreadeagle" "spreadeagles" "spreadeagled" "spreadeagled" "spreadeagling"); -- from DictEng -lin spreader_N = mkN "spreader" "spreaders"; -- from DictEng -lin spreadsheet_N = mkN "spreadsheet" ; -lin sprechgesang_N = mkN "sprechgesang" ; -lin spree_N = mkN "spree" "sprees"; -- from DictEng -lin sprig_N = mkN "sprig" "sprigs"; -- from DictEng -lin sprigged_A = compoundA (mkA "sprigged"); -- from DictEng -lin sprightliness_N = mkN "sprightliness" ; -- from DictEng -lin sprightly_A = mkA "sprightly" "sprightlier"; -- from DictEng -lin spring_N = mkN "spring" "springs"; -- from DictEng -lin spring_V = IrregEng.spring_V; -- from DictEng -lin spring_V2 = mkV2 (IrregEng.spring_V); -- from DictEng -lin spring_up_V = mkV "spring up" ; -lin spring_cleaning_N = mkN "spring - cleaning" ; -- from DictEng -lin spring_flowering_A = compoundA (mkA "spring flowering") ; -lin spring_loaded_A = compoundA (mkA "spring loaded") ; -lin spring_balance_N = mkN "spring - balance" "spring - balances"; -- from DictEng -lin spring_clean_N = mkN "spring - clean" "spring - cleans"; -- from DictEng -lin spring_clean_V2 = mkV2 (mkV "spring - clean" "spring - cleans" "spring - cleaned" "spring - cleaned" "spring - cleaning"); -- from DictEng -lin spring_cleaning_N = mkN "spring - cleaning" ; -- from DictEng -lin spring_gun_N = mkN "spring - gun" "spring - guns"; -- from DictEng -lin spring_mattress_N = mkN "spring - mattress" "spring - mattresses"; -- from DictEng -lin springboard_N = mkN "springboard" "springboards"; -- from DictEng -lin springbok_N = mkN "springbok" "springboks"; -- from DictEng -lin springer_N = mkN "springer" ; -lin springless_A = compoundA (mkA "springless"); -- from DictEng -lin springlike_A = compoundA (mkA "springlike"); -- from DictEng -lin springtide_N = mkN "springtide" "springtides"; -- from DictEng -lin springtime_N = mkN "springtime" "springtimes"; -- from DictEng -lin springy_A = mkA "springy" "springier"; -- from DictEng -lin sprinkle_N = mkN "sprinkle" ; -lin sprinkle_V2 = mkV2 (mkV "sprinkle" "sprinkles" "sprinkled" "sprinkled" "sprinkling"); -- from DictEng -lin sprinkler_N = mkN "sprinkler" "sprinklers"; -- from DictEng -lin sprinkling_N = mkN "sprinkling" "sprinklings"; -- from DictEng -lin sprint_N = mkN "sprint" "sprints"; -- from DictEng -lin sprint_V = mkV "sprint" "sprints" "sprinted" "sprinted" "sprinting"; -- from DictEng -lin sprinter_N = mkN "sprinter" "sprinters"; -- from DictEng -lin sprit_N = mkN "sprit" "sprits"; -- from DictEng -lin sprite_N = mkN "sprite" "sprites"; -- from DictEng -lin sprites_N = mkN "sprites" ; -lin spritsail_N = mkN "spritsail" "spritsails"; -- from DictEng -lin spritz_N = mkN "spritz" ; -lin spritzer_N = mkN "spritzer" ; -lin sprocket_N = mkN "sprocket" "sprockets"; -- from DictEng -lin sprocket_wheel_N = mkN "sprocket - wheel" "sprocket - wheels"; -- from DictEng -lin sprog_N = mkN "sprog" ; -lin sprout_N = mkN "sprout" "sprouts"; -- from DictEng -lin sprout_V = mkV "sprout" "sprouts" "sprouted" "sprouted" "sprouting"; -- from DictEng -lin sprout_V2 = mkV2 (mkV "sprout" "sprouts" "sprouted" "sprouted" "sprouting"); -- from DictEng -lin sprouted_A = mkA "sprouted" ; -lin spruce_A = compoundA (mkA "spruce"); -- from DictEng -lin spruce_N = mkN "spruce" "spruces"; -- from DictEng -lin spruce_V = mkV "spruce" "spruces" "spruced" "spruced" "sprucing"; -- from DictEng -lin spruce_V2 = mkV2 (mkV "spruce" "spruces" "spruced" "spruced" "sprucing"); -- from DictEng -lin spruceness_N = mkN "spruceness" ; -- from DictEng -lin sprue_N = mkN "sprue" ; -lin spry_A = mkA "spry" "spryer"; -- from DictEng -lin spud_N = mkN "spud" "spuds"; -- from DictEng -lin spue_V = mkV "spue" "spues" "spued" "spued" "spuing"; -- from DictEng -lin spue_V2 = mkV2 (mkV "spue" "spues" "spued" "spued" "spuing"); -- from DictEng -lin spume_N = mkN "spume" ; -- from DictEng -lin spunk_N = mkN "spunk" ; -- from DictEng -lin spunky_A = mkA "spunky" "spunkier"; -- from DictEng -lin spur_N = mkN "spur" "spurs"; -- from DictEng -lin spur_V = mkV "spur" "spurs" "spurred" "spurred" "spurring"; -- from DictEng -lin spur_V2 = mkV2 (mkV "spur" "spurs" "spurred" "spurred" "spurring"); -- from DictEng -lin spur_of_the_moment_A = compoundA (mkA "spur of the moment") ; -lin spurge_N = mkN "spurge" ; -lin spurious_A = compoundA (mkA "spurious"); -- from DictEng -lin spuriously_Adv = mkAdv "spuriously" ; -lin spuriousness_N = mkN "spuriousness" ; -- from DictEng -lin spurn_V2 = mkV2 (mkV "spurn" "spurns" "spurned" "spurned" "spurning"); -- from DictEng -lin spurner_N = mkN "spurner" ; -lin spurre_V2V = mkV2V (mkV "spurre") noPrep to_Prep ; -- from DictEng -lin spurt_N = mkN "spurt" "spurts"; -- from DictEng -lin spurt_V = mkV "spurt" "spurts" "spurted" "spurted" "spurting"; -- from DictEng -lin spurt_V2 = mkV2 (mkV "spurt") ; -lin sputnik_N = mkN "sputnik" "sputniks"; -- from DictEng -lin sputter_N = mkN "sputter" ; -lin sputter_V = mkV "sputter" "sputters" "sputtered" "sputtered" "sputtering"; -- from DictEng -lin sputter_V2 = mkV2 (mkV "sputter" "sputters" "sputtered" "sputtered" "sputtering"); -- from DictEng -lin sputum_N = mkN "sputum" ; -- from DictEng -lin spy_N = mkN "spy" "spies"; -- from DictEng -lin spy_V = mkV "spy" "spies" "spied" "spied" "spying"; -- from DictEng -lin spy_V2 = mkV2 (mkV "spy" "spies" "spied" "spied" "spying"); -- from DictEng -lin spy_hole_N = mkN "spy - hole" "spy - holes"; -- from DictEng -lin spyglass_N = mkN "spyglass" "spyglasses"; -- from DictEng -lin spying_N = mkN "spying" ; -lin spymaster_N = mkN "spymaster" ; -lin spyware_N = mkN "spyware" ; -lin squab_A = mkA "squab" ; -lin squab_N = mkN "squab" "squabs"; -- from DictEng -lin squabble_N = mkN "squabble" "squabbles"; -- from DictEng -lin squabble_V = mkV "squabble" "squabbles" "squabbled" "squabbled" "squabbling"; -- from DictEng -lin squabbler_N = mkN "squabbler" ; -lin squad_N = mkN "squad" "squads"; -- from DictEng -lin squadron_N = mkN "squadron" "squadrons"; -- from DictEng -lin squalid_A = compoundA (mkA "squalid"); -- from DictEng -lin squall_N = mkN "squall" "squalls"; -- from DictEng -lin squall_V = mkV "squall" "squalls" "squalled" "squalled" "squalling"; -- from DictEng -lin squall_V2 = mkV2 (mkV "squall") ; -lin squally_A = compoundA (mkA "squally"); -- from DictEng -lin squalor_N = mkN "squalor" ; -- from DictEng -lin squama_N = mkN "squama" ; -lin squamule_N = mkN "squamule" ; -lin squamulose_A = mkA "squamulose" ; -lin squander_V2 = mkV2 (mkV "squander" "squanders" "squandered" "squandered" "squandering"); -- from DictEng -lin squandered_A = mkA "squandered" ; -lin squandering_N = mkN "squandering" ; -lin squandermania_N = mkN "squandermania" ; -- from DictEng -lin square_A = compoundA (mkA "square"); -- from DictEng -lin square_Adv = mkAdv "square"; -- from DictEng -lin square_N = mkN "square" "squares"; -- from DictEng -lin square_V = mkV "square" "squares" "squared" "squared" "squaring"; -- from DictEng -lin square_V2 = mkV2 (mkV "square" "squares" "squared" "squared" "squaring"); -- from DictEng -lin square_bashing_N = mkN "square - bashing" ; -- from DictEng -lin square_built_A = compoundA (mkA "square - built"); -- from DictEng -lin square_jawed_A = compoundA (mkA "square jawed") ; -lin square_rigged_A = compoundA (mkA "square - rigged"); -- from DictEng -lin square_rigger_N = mkN "square rigger" ; -lin square_shaped_A = compoundA (mkA "square shaped") ; -lin square_tailed_A = compoundA (mkA "square tailed") ; -lin square_toed_A = compoundA (mkA "square - toed"); -- from DictEng -lin square_bashing_N = mkN "square - bashing" ; -- from DictEng -lin square_built_A = compoundA (mkA "square - built"); -- from DictEng -lin square_rigged_A = compoundA (mkA "square - rigged"); -- from DictEng -lin square_shouldered_A = compoundA (mkA "square - shouldered"); -- from DictEng -lin square_toed_A = compoundA (mkA "square - toed"); -- from DictEng -lin square_toes_N = mkN "square - toes" "IRREG"; -- from DictEng -lin squared_A = mkA "squared" ; -lin squarely_Adv = mkAdv "squarely" ; -lin squareness_N = mkN "squareness" ; -- from DictEng -lin squaretail_N = mkN "squaretail" ; -lin squarish_A = mkA "squarish" ; -lin squash_N = mkN "squash" "squash"; -- from DictEng -lin squash_V = mkV "squash" "squashes" "squashed" "squashed" "squashing"; -- from DictEng -lin squash_V2 = mkV2 (mkV "squash" "squashes" "squashed" "squashed" "squashing"); -- from DictEng -lin squashed_A = mkA "squashed" ; -lin squashy_A = mkA "squashy" "squashier"; -- from DictEng -lin squat_A = compoundA (mkA "squat"); -- from DictEng -lin squat_N = mkN "squat" ; -lin squat_V = mkV "squat" "squats" "squatted" "squatted" "squatting"; -- from DictEng -lin squat_down_V = mkV "squat down" ; -lin squatness_N = mkN "squatness" ; -lin squatter_N = mkN "squatter" "squatters"; -- from DictEng -lin squaw_N = mkN "squaw" "squaws"; -- from DictEng -lin squawbush_N = mkN "squawbush" ; -lin squawk_N = mkN "squawk" "squawks"; -- from DictEng -lin squawk_V = mkV "squawk" "squawks" "squawked" "squawked" "squawking"; -- from DictEng -lin squawk_V2 = mkV2 (mkV "squawk") ; -lin squawker_N = mkN "squawker" "squawkers"; -- from DictEng -lin squeak_N = mkN "squeak" "squeaks"; -- from DictEng -lin squeak_V = mkV "squeak" "squeaks" "squeaked" "squeaked" "squeaking"; -- from DictEng -lin squeak_V2 = mkV2 (mkV "squeak" "squeaks" "squeaked" "squeaked" "squeaking"); -- from DictEng -lin squeaker_N = mkN "squeaker" "squeakers"; -- from DictEng -lin squeaky_A = mkA "squeaky" "squeakier"; -- from DictEng -lin squeal_N = mkN "squeal" "squeals"; -- from DictEng -lin squeal_V = mkV "squeal" "squeals" "squealed" "squealed" "squealing"; -- from DictEng -lin squeal_V2 = mkV2 (mkV "squeal" "squeals" "squealed" "squealed" "squealing"); -- from DictEng -lin squealer_N = mkN "squealer" "squealers"; -- from DictEng -lin squeamish_A = compoundA (mkA "squeamish"); -- from DictEng -lin squeamishly_Adv = mkAdv "squeamishly" ; -lin squeamishness_N = mkN "squeamishness" ; -- from DictEng -lin squeegee_N = mkN "squeegee" "squeegees"; -- from DictEng -lin squeegee_V2 = mkV2 (mkV "squeegee" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin squeeze_N = mkN "squeeze" "squeezes"; -- from DictEng -lin squeeze_V = mkV "squeeze" "squeezes" "squeezed" "squeezed" "squeezing"; -- from DictEng -lin squeeze_V2 = mkV2 (mkV "squeeze" "squeezes" "squeezed" "squeezed" "squeezing"); -- from DictEng -lin squeezer_N = mkN "squeezer" "squeezers"; -- from DictEng -lin squelch_N = mkN "squelch" "squelches"; -- from DictEng -lin squelch_V = mkV "squelch" "squelches" "squelched" "squelched" "squelching"; -- from DictEng -lin squelch_V2 = mkV2 (mkV "squelch" "squelches" "squelched" "squelched" "squelching"); -- from DictEng -lin squib_N = mkN "squib" "squibs"; -- from DictEng -lin squid_N = mkN "squid" "squids"; -- from DictEng -lin squiffy_A = compoundA (mkA "squiffy"); -- from DictEng -lin squiggle_N = mkN "squiggle" "squiggles"; -- from DictEng -lin squiggly_A = mkA "squiggly" "squigglier"; -- from DictEng -lin squill_N = mkN "squill" ; -lin squilla_N = mkN "squilla" ; -lin squinch_N = mkN "squinch" ; -lin squinched_A = mkA "squinched" ; -lin squint_N = mkN "squint" "squints"; -- from DictEng -lin squint_V = mkV "squint" "squints" "squinted" "squinted" "squinting"; -- from DictEng -lin squint_eyed_A = compoundA (mkA "squint - eyed"); -- from DictEng -lin squint_eyed_A = compoundA (mkA "squint - eyed"); -- from DictEng -lin squinter_N = mkN "squinter" ; -lin squinty_A = mkA "squinty" ; -lin squire_N = mkN "squire" "squires"; -- from DictEng -lin squire_V2 = mkV2 (mkV "squire" "squires" "squired" "squired" "squiring"); -- from DictEng -lin squirearchy_N = mkN "squirearchy" "squirearchies"; -- from DictEng -lin squirm_N = mkN "squirm" "squirms"; -- from DictEng -lin squirm_V = mkV "squirm" "squirms" "squirmed" "squirmed" "squirming"; -- from DictEng -lin squirrel_N = mkN "squirrel" "squirrels"; -- from DictEng -lin squirrel_sized_A = compoundA (mkA "squirrel sized") ; -lin squirrelfish_N = mkN "squirrelfish" ; -lin squirt_N = mkN "squirt" "squirts"; -- from DictEng -lin squirt_V = mkV "squirt" "squirts" "squirted" "squirted" "squirting"; -- from DictEng -lin squirt_V2 = mkV2 (mkV "squirt" "squirts" "squirted" "squirted" "squirting"); -- from DictEng -lin squish_N = mkN "squish" ; -lin sri_lankan_A = compoundA (mkA "sri lankan"); -- from DictEng -lin sri_lankan_N = mkN "sri lankan" "sri lankans"; -- from DictEng -lin srn_N = mkN "srn" ; -- from DictEng -lin ss_N = mkN "ss" ; -- from DictEng -lin stab_N = mkN "stab" "stabs"; -- from DictEng -lin stab_V = mkV "stab" "stabs" "stabbed" "stabbed" "stabbing"; -- from DictEng -lin stab_V2 = mkV2 (mkV "stab" "stabs" "stabbed" "stabbed" "stabbing"); -- from DictEng -lin stabb_V2 = mkV2 (mkV "stabb") ; -lin stabber_N = mkN "stabber" "stabbers"; -- from DictEng -lin stabbing_A = mkA "stabbing" ; -lin stabile_A = mkA "stabile" ; -lin stabile_N = mkN "stabile" ; -lin stability_N = mkN "stability" ; -- from DictEng -lin stabilization_N = mkN "stabilization" "stabilizations"; -- from DictEng -lin stabilize_V = mkV "stabilize"; -- from DictEng -lin stabilize_V2 = mkV2 (mkV "stabilize" "stabilizes" "stabilized" "stabilized" "stabilizing"); -- from DictEng -lin stabilized_A = mkA "stabilized" ; -lin stabilizer_N = mkN "stabilizer" "stabilizers"; -- from DictEng -lin stabilizing_A = mkA "stabilizing" ; -lin stable_A = compoundA (mkA "stable"); -- from DictEng -lin stable_N = mkN "stable" "stables"; -- from DictEng -lin stable_V2 = mkV2 (mkV "stable" "stables" "stabled" "stabled" "stabling"); -- from DictEng -lin stable_companion_N = mkN "stable - companion" "stable - companions"; -- from DictEng -lin stableboy_N = mkN "stableboy" "stableboys"; -- from DictEng -lin stableman_N = mkN "stableman" "stablemen" {- FIXME: guessed plural form -}; -- from DictEng -lin stablemate_N = mkN "stablemate" "stablemates"; -- from DictEng -lin stabling_N = mkN "stabling" ; -- from DictEng -lin stably_Adv = mkAdv "stably" ; -lin staccato_A = compoundA (mkA "staccato"); -- from DictEng -lin staccato_Adv = mkAdv "staccato"; -- from DictEng -lin stachyose_N = mkN "stachyose" ; -lin stack_N = mkN "stack" "stacks"; -- from DictEng -lin stack_V2 = mkV2 (mkV "stack" "stacks" "stacked" "stacked" "stacking"); -- from DictEng -lin stacked_A = mkA "stacked" ; -lin stacker_N = mkN "stacker" ; -lin stacks_N = mkN "stacks" ; -lin stacte_N = mkN "stacte" ; -lin staddle_N = mkN "staddle" ; -lin stadium_N = mkN "stadium" "stadiums"; -- from DictEng -lin staff_N = mkN "staff" "staffs"; -- from DictEng -lin staff_V2 = mkV2 (mkV "staff" "staffs" "staffed" "staffed" "staffing"); -- from DictEng -lin staff_office_N = mkN "staff - office" "staff - offices"; -- from DictEng -lin stag_N = mkN "stag" "stags"; -- from DictEng -lin stag_party_N = mkN "stag - party" "stag - parties"; -- from DictEng -lin stage_N = mkN "stage" "stages"; -- from DictEng -lin stage_V = mkV "stage" "stages" "staged" "staged" "staging"; -- from DictEng -lin stage_V2 = mkV2 (mkV "stage" "stages" "staged" "staged" "staging"); -- from DictEng -lin stage_struck_A = compoundA (mkA "stage - struck"); -- from DictEng -lin stage_struck_A = compoundA (mkA "stage - struck"); -- from DictEng -lin stage_whisper_N = mkN "stage - whisper" "stage - whispers"; -- from DictEng -lin stagecoach_N = mkN "stagecoach" "stagecoaches"; -- from DictEng -lin stagecraft_N = mkN "stagecraft" "stagecrafts"; -- from DictEng -lin staged_A = mkA "staged" ; -lin stagehand_N = mkN "stagehand" ; -lin stager_N = mkN "stager" "stagers"; -- from DictEng -lin stagflation_N = mkN "stagflation" ; -- from DictEng -lin stagflationary_A = mkA "stagflationary" ; -lin stagger_N = mkN "stagger" "staggers"; -- from DictEng -lin stagger_V = mkV "stagger" "staggers" "staggered" "staggered" "staggering"; -- from DictEng -lin stagger_V2 = mkV2 (mkV "stagger" "staggers" "staggered" "staggered" "staggering"); -- from DictEng -lin staggerbush_N = mkN "staggerbush" ; -lin staggerer_N = mkN "staggerer" "staggerers"; -- from DictEng -lin staggeringly_Adv = mkAdv "staggeringly"; -- from DictEng -lin staggers_N = mkN "staggers" ; -lin staghound_N = mkN "staghound" ; -lin stagily_Adv = mkAdv "stagily" ; -lin staginess_N = mkN "staginess" ; -- from DictEng -lin staging_N = mkN "staging" "stagings"; -- from DictEng -lin stagnancy_N = mkN "stagnancy" ; -- from DictEng -lin stagnant_A = compoundA (mkA "stagnant"); -- from DictEng -lin stagnate_V = mkV "stagnate" "stagnates" "stagnated" "stagnated" "stagnating"; -- from DictEng -lin stagnation_N = mkN "stagnation" ; -- from DictEng -lin stagy_A = compoundA (mkA "stagy"); -- from DictEng -lin staid_A = compoundA (mkA "staid"); -- from DictEng -lin staidness_N = mkN "staidness" ; -- from DictEng -lin stain_N = mkN "stain" "stains"; -- from DictEng -lin stain_V = mkV "stain" "stains" "stained" "stained" "staining"; -- from DictEng -lin stain_V2 = mkV2 (mkV "stain" "stains" "stained" "stained" "staining"); -- from DictEng -lin stainability_N = mkN "stainability" ; -lin stainable_A = mkA "stainable" ; -lin stained_A = mkA "stained" ; -lin stainer_N = mkN "stainer" ; -lin staining_N = mkN "staining" ; -lin stainless_A = compoundA (mkA "stainless"); -- from DictEng -lin stair_N = mkN "stair" "stairs"; -- from DictEng -lin stair_carpet_N = mkN "stair - carpet" "stair - carpets"; -- from DictEng -lin stair_rod_N = mkN "stair - rod" "stair - rods"; -- from DictEng -lin stair_carpet_N = mkN "stair - carpet" "stair - carpets"; -- from DictEng -lin stair_rod_N = mkN "stair - rod" "stair - rods"; -- from DictEng -lin staircase_N = mkN "staircase" "staircases"; -- from DictEng -lin stairhead_N = mkN "stairhead" ; -lin stairs_N = mkN "stairs" ; -lin stairway_N = mkN "stairway" "stairways"; -- from DictEng -lin stairwell_N = mkN "stairwell" ; -lin stake_N = mkN "stake" "stakes"; -- from DictEng -lin stake_V2 = mkV2 (mkV "stake" "stakes" "staked" "staked" "staking"); -- from DictEng -lin stake_holder_N = mkN "stake - holder" "stake - holders"; -- from DictEng -lin stakeholder_N = mkN "stakeholder" ; -lin stakeout_N = mkN "stakeout" ; -lin stalactite_N = mkN "stalactite" "stalactites"; -- from DictEng -lin stalagmite_N = mkN "stalagmite" "stalagmites"; -- from DictEng -lin stale_A = mkA "stale" "staler"; -- from DictEng -lin stale_V = mkV "stale" "stales" "staled" "staled" "staling"; -- from DictEng -lin stalemate_N = mkN "stalemate" "stalemates"; -- from DictEng -lin stalemate_V2 = mkV2 (mkV "stalemate" "stalemates" "stalemated" "stalemated" "stalemating"); -- from DictEng -lin staleness_N = mkN "staleness" ; -- from DictEng -lin stalk_N = mkN "stalk" "stalks"; -- from DictEng -lin stalk_V = mkV "stalk" "stalks" "stalked" "stalked" "stalking"; -- from DictEng -lin stalk_V2 = mkV2 (mkV "stalk" "stalks" "stalked" "stalked" "stalking"); -- from DictEng -lin stalker_N = mkN "stalker" "stalkers"; -- from DictEng -lin stalking_horse_N = mkN "stalking - horse" "stalking - horses"; -- from DictEng -lin stalking_horse_N = mkN "stalking - horse" "stalking - horses"; -- from DictEng -lin stall_N = mkN "stall" "stalls"; -- from DictEng -lin stall_V = mkV "stall" "stalls" "stalled" "stalled" "stalling"; -- from DictEng -lin stall_V2 = mkV2 (mkV "stall" "stalls" "stalled" "stalled" "stalling"); -- from DictEng -lin stall_fed_A = compoundA (mkA "stall - fed"); -- from DictEng -lin stall_fed_A = compoundA (mkA "stall - fed"); -- from DictEng -lin stallion_N = mkN "stallion" "stallions"; -- from DictEng -lin stalwart_A = compoundA (mkA "stalwart"); -- from DictEng -lin stalwart_N = mkN "stalwart" "stalwarts"; -- from DictEng -lin stamen_N = mkN "stamen" "stamens"; -- from DictEng -lin stamina_N = mkN "stamina" ; -- from DictEng -lin stammel_N = mkN "stammel" ; -lin stammer_N = mkN "stammer" "stammers"; -- from DictEng -lin stammer_V = mkV "stammer" "stammers" "stammered" "stammered" "stammering"; -- from DictEng -lin stammer_V2 = mkV2 (mkV "stammer" "stammers" "stammered" "stammered" "stammering"); -- from DictEng -lin stammerer_N = mkN "stammerer" "stammerers"; -- from DictEng -lin stammeringly_Adv = mkAdv "stammeringly"; -- from DictEng -lin stamp_N = mkN "stamp" "stamps"; -- from DictEng -lin stamp_V = mkV "stamp" "stamps" "stamped" "stamped" "stamping"; -- from DictEng -lin stamp_V2 = mkV2 (mkV "stamp" "stamps" "stamped" "stamped" "stamping"); -- from DictEng -lin stamp_album_N = mkN "stamp - album" "stamp - albums"; -- from DictEng -lin stamp_collector_N = mkN "stamp - collector" "stamp - collectors"; -- from DictEng -lin stamp_dealer_N = mkN "stamp - dealer" "stamp - dealers"; -- from DictEng -lin stamp_down_V2 = mkV2 (mkV "stamp down") ; -lin stamp_duty_N = mkN "stamp - duty" "stamp - duties"; -- from DictEng -lin stampede_N = mkN "stampede" "stampedes"; -- from DictEng -lin stampede_V = mkV "stampede" "stampedes" "stampeded" "stampeded" "stampeding"; -- from DictEng -lin stampede_V2 = mkV2 (mkV "stampede" "stampedes" "stampeded" "stampeded" "stampeding"); -- from DictEng -lin stamper_N = mkN "stamper" ; -lin stamping_ground_N = mkN "stamping - ground" "stamping - grounds"; -- from DictEng -lin stance_N = mkN "stance" "stances"; -- from DictEng -lin stanch_V2 = mkV2 (mkV "stanch"); -- from DictEng -lin stanchion_N = mkN "stanchion" "stanchions"; -- from DictEng -lin stand_N = mkN "stand" "stands"; -- from DictEng -lin stand_V = IrregEng.stand_V; -- from DictEng -lin stand_V2 = mkV2 (IrregEng.stand_V); -- from DictEng -lin stand_VS = mkVS (IrregEng.stand_V); -- from DictEng -lin stand_VV = mkVV (IrregEng.stand_V); -- from DictEng -lin stand_alone_A = compoundA (mkA "stand alone") ; -lin stand_in_N = mkN "stand - in" "stand - ins"; -- from DictEng -lin stand_up_A = compoundA (mkA "stand - up"); -- from DictEng -lin stand_in_N = mkN "stand - in" "stand - ins"; -- from DictEng -lin stand_to_N = mkN "stand - to" "stand - ti" {- FIXME: guessed plural form -}; -- from DictEng -lin stand_up_A = compoundA (mkA "stand - up"); -- from DictEng -lin stand_up_V = mkV "stand up" ; -lin standard_A = compoundA (mkA "standard"); -- from DictEng -lin standard_N = mkN "standard" "standards"; -- from DictEng -lin standard_bearer_N = mkN "standard - bearer" "standard - bearers"; -- from DictEng -lin standard_bearer_N = mkN "standard - bearer" "standard - bearers"; -- from DictEng -lin standardization_N = mkN "standardization" "standardizations"; -- from DictEng -lin standardize_V2 = mkV2 (mkV "standardize" "standardizes" "standardized" "standardized" "standardizing"); -- from DictEng -lin standardized_A = mkA "standardized" ; -lin standardizer_N = mkN "standardizer" ; -lin standby_A = mkA "standby" ; -lin standby_N = mkN "standby" "standbys"; -- from DictEng -lin standdown_N = mkN "standdown" ; -lin standee_N = mkN "standee" ; -lin stander_N = mkN "stander" ; -lin standing_A = compoundA (mkA "standing"); -- from DictEng -lin standing_N = mkN "standing" ; -- from DictEng -lin standoffish_A = compoundA (mkA "standoffish"); -- from DictEng -lin standoffishly_Adv = mkAdv "standoffishly" ; -lin standoffishness_N = mkN "standoffishness" ; -- from DictEng -lin standpipe_N = mkN "standpipe" "standpipes"; -- from DictEng -lin standpoint_N = mkN "standpoint" "standpoints"; -- from DictEng -lin standstill_N = mkN "standstill" "IRREG"; -- from DictEng -lin stanhope_N = mkN "stanhope" ; -lin stanhopea_N = mkN "stanhopea" ; -lin stannic_A = mkA "stannic" ; -lin stannite_N = mkN "stannite" ; -lin stanza_N = mkN "stanza" "stanzas"; -- from DictEng -lin stapedectomy_N = mkN "stapedectomy" ; -lin stapelia_N = mkN "stapelia" ; -lin stapes_N = mkN "stapes" ; -lin staphylococcal_A = mkA "staphylococcal" ; -lin staphylococcal_enterotoxin_b_PN = mkPN "staphylococcal enterotoxin B" ; -lin staphylococcus_N = mkN "staphylococcus" ; -lin staple_A = mkA "staple" ; -lin staple_N = mkN "staple" "staples"; -- from DictEng -lin staple_V2 = mkV2 (mkV "staple" "staples" "stapled" "stapled" "stapling"); -- from DictEng -lin stapler_N = mkN "stapler" "staplers"; -- from DictEng -lin stapling_machine_N = mkN "stapling - machine" "stapling - machines"; -- from DictEng -lin star_N = mkN "star" "stars"; -- from DictEng -lin star_V = mkV "star" "stars" "starred" "starred" "starring"; -- from DictEng -lin star_V2 = mkV2 (mkV "star" "stars" "starred" "starred" "starring"); -- from DictEng -lin star_duckweed_N = mkN "star duckweed" ; -lin star_of_bethlehem_N = mkN "star of Bethlehem" ; -lin star_thistle_N = mkN "star thistle" ; -lin starboard_A = mkA "starboard" ; -lin starboard_N = mkN "starboard" "starboards"; -- from DictEng -lin starboard_V2 = mkV2 (mkV "starboard" "starboards" "starboarded" "starboarded" "starboarding"); -- from DictEng -lin starch_N = mkN "starch" ; -- from DictEng -lin starch_V2 = mkV2 (mkV "starch" "starches" "starched" "starched" "starching"); -- from DictEng -lin starches_N = mkN "starches" ; -lin starchless_A = mkA "starchless" ; -lin starchlike_A = mkA "starchlike" ; -lin starchy_A = mkA "starchy" "starchier"; -- from DictEng -lin stardom_N = mkN "stardom" ; -- from DictEng -lin stardust_N = mkN "stardust" ; -- from DictEng -lin stare_N = mkN "stare" "stares"; -- from DictEng -lin stare_V = mkV "stare" "stares" "stared" "stared" "staring"; -- from DictEng -lin stare_V2 = mkV2 (mkV "stare" "stares" "stared" "stared" "staring"); -- from DictEng -lin starer_N = mkN "starer" ; -lin starets_N = mkN "starets" ; -lin starfish_N = mkN "starfish" "starfish"; -- from DictEng -lin starflower_N = mkN "starflower" ; -lin stargazer_N = mkN "stargazer" "stargazers"; -- from DictEng -lin stargazing_N = mkN "stargazing" ; -lin staring_A = compoundA (mkA "staring"); -- from DictEng -lin staring_Adv = mkAdv "staring"; -- from DictEng -lin stark_A = compoundA (mkA "stark"); -- from DictEng -lin stark_Adv = mkAdv "stark"; -- from DictEng -lin starkers_A = compoundA (mkA "starkers"); -- from DictEng -lin starkly_Adv = mkAdv "starkly" ; -lin starkness_N = mkN "starkness" ; -lin starless_A = compoundA (mkA "starless"); -- from DictEng -lin starlet_N = mkN "starlet" "starlets"; -- from DictEng -lin starlight_N = mkN "starlight" ; -- from DictEng -lin starlike_A = mkA "starlike" ; -lin starling_N = mkN "starling" "starlings"; -- from DictEng -lin starlit_A = compoundA (mkA "starlit"); -- from DictEng -lin starry_A = mkA "starry" "starrier"; -- from DictEng -lin starry_eyed_A = compoundA (mkA "starry - eyed"); -- from DictEng -lin starry_eyed_A = compoundA (mkA "starry - eyed"); -- from DictEng -lin starship_N = mkN "starship" ; -lin start_N = mkN "start" "starts"; -- from DictEng -lin start_V = mkV "start" "starts" "started" "started" "starting"; -- from DictEng -lin start_V2 = mkV2 (mkV "start" "starts" "started" "started" "starting"); -- from DictEng -lin start_VS = mkVS (mkV "start" "starts" "started" "started" "starting"); -- from DictEng -lin start_VV = mkVV (mkV "start" "starts" "started" "started" "starting"); -- from DictEng -lin starter_N = mkN "starter" "starters"; -- from DictEng -lin starting_A = mkA "starting" ; -lin starting_gate_N = mkN "starting - gate" "starting - gates"; -- from DictEng -lin starting_point_N = mkN "starting - point" "starting - points"; -- from DictEng -lin starting_post_N = mkN "starting - post" "starting - posts"; -- from DictEng -lin startle_N = mkN "startle" ; -lin startle_V2 = mkV2 (mkV "startle" "startles" "startled" "startled" "startling"); -- from DictEng -lin startled_A = mkA "startled" ; -lin startling_A = mkA "startling" ; -lin startlingly_Adv = mkAdv "startlingly"; -- from DictEng -lin startup_N = mkN "startup" ; -lin starvation_N = mkN "starvation" ; -- from DictEng -lin starve_V = mkV "starve" "starves" "starved" "starved" "starving"; -- from DictEng -lin starve_V2 = mkV2 (mkV "starve" "starves" "starved" "starved" "starving"); -- from DictEng -lin starved_A = mkA "starved" ; -lin starveling_N = mkN "starveling" "starvelings"; -- from DictEng -lin stash_V2 = mkV2 (mkV "stash" "stashes" "stashed" "stashed" "stashing"); -- from DictEng -lin stasis_N = mkN "stasis" ; -lin statant_A = mkA "statant" ; -lin state_N = mkN "state" "states"; -- from DictEng -lin state_V2 = mkV2 (mkV "state" "states" "stated" "stated" "stating"); -- from DictEng -lin state_VS = mkVS (mkV "state"); -- from DictEng -lin state_of_the_art_A = compoundA (mkA "state of the art") ; -lin state_supported_A = compoundA (mkA "state supported") ; -lin statecraft_N = mkN "statecraft" ; -- from DictEng -lin stated_A = compoundA (mkA "stated"); -- from DictEng -lin statehouse_N = mkN "statehouse" "statehouses"; -- from DictEng -lin stateless_A = compoundA (mkA "stateless"); -- from DictEng -lin stateliness_N = mkN "stateliness" ; -- from DictEng -lin stately_A = mkA "stately" "statelier"; -- from DictEng -lin statement_N = mkN "statement" "statements"; -- from DictEng -lin stater_N = mkN "stater" ; -lin stateroom_N = mkN "stateroom" ; -lin statesman_N = mkN "statesman" "statesmen" {- FIXME: guessed plural form -}; -- from DictEng -lin statesmanlike_A = compoundA (mkA "statesmanlike"); -- from DictEng -lin statesmanship_N = mkN "statesmanship" ; -- from DictEng -lin stateswoman_N = mkN "stateswoman" ; -lin statewide_A = mkA "statewide" ; -lin static_A = compoundA (mkA "static"); -- from DictEng -lin static_N = mkN "static" ; -lin statically_Adv = mkAdv "statically"; -- from DictEng -lin statics_N = mkN "statics" "statics"; -- from DictEng -lin station_N = mkN "station" "stations"; -- from DictEng -lin station_V2 = mkV2 (mkV "station" "stations" "stationed" "stationed" "stationing"); -- from DictEng -lin station_waggon_N = mkN "station - waggon" "station - waggons"; -- from DictEng -lin stationariness_N = mkN "stationariness" ; -lin stationary_A = compoundA (mkA "stationary"); -- from DictEng -lin stationer_N = mkN "stationer" "stationers"; -- from DictEng -lin stationery_N = mkN "stationery" ; -- from DictEng -lin stationmaster_N = mkN "stationmaster" "stationmasters"; -- from DictEng -lin statistic_N = mkN "statistic" "statistics"; -- from DictEng -lin statistical_A = compoundA (mkA "statistical"); -- from DictEng -lin statistically_Adv = mkAdv "statistically" ; -lin statistician_N = mkN "statistician" "statisticians"; -- from DictEng -lin statistics_N = mkN "statistics" "statistics"; -- from DictEng -lin stative_A = mkA "stative" ; -lin stator_N = mkN "stator" ; -lin statuary_A = compoundA (mkA "statuary"); -- from DictEng -lin statuary_N = mkN "statuary" ; -- from DictEng -lin statue_N = mkN "statue" "statues"; -- from DictEng -lin statuesque_A = compoundA (mkA "statuesque"); -- from DictEng -lin statuette_N = mkN "statuette" "statuettes"; -- from DictEng -lin stature_N = mkN "stature" ; -- from DictEng -lin status_N = mkN "status" ; -- from DictEng -lin status_quo_N = mkN "status quo" "status qui" {- FIXME: guessed plural form -}; -- from DictEng -lin statute_N = mkN "statute" "statutes"; -- from DictEng -lin statute_book_N = mkN "statute - book" "statute - books"; -- from DictEng -lin statutorily_Adv = mkAdv "statutorily" ; -lin statutory_A = compoundA (mkA "statutory"); -- from DictEng -lin staunch_A = compoundA (mkA "staunch"); -- from DictEng -lin staunch_V2 = mkV2 (mkV "staunch" "staunches" "staunched" "staunched" "staunching"); -- from DictEng -lin staunchly_Adv = mkAdv "staunchly" ; -lin staunchness_N = mkN "staunchness" ; -- from DictEng -lin staurikosaur_N = mkN "staurikosaur" ; -lin stave_N = mkN "stave" "staves"; -- from DictEng -lin stave_V = mkV "stave" "staves" "staved" "staved" "staving"; -- from DictEng -lin stave_V2 = mkV2 (mkV "stave" "staves" "staved" "staved" "staving"); -- from DictEng -lin stay_N = mkN "stay" "stays"; -- from DictEng -lin stay_V = mkV "stay" "stays" "stayed" "stayed" "staying"; -- from DictEng -lin stay_V2 = mkV2 (mkV "stay" "stays" "stayed" "stayed" "staying"); -- from DictEng -lin stay_VA = mkVA (mkV "stay" "stays" "stayed" "stayed" "staying"); -- from DictEng -lin stay_VS = mkVS (mkV "stay" "stays" "stayed" "stayed" "staying"); -- from DictEng -lin stay_at_home_A = compoundA (mkA "stay at home") ; -lin stay_at_home_N = mkN "stay - at - home" "stay - at - homes"; -- from DictEng -lin stay_at_home_N = mkN "stay - at - home" "stay - at - homes"; -- from DictEng -lin stayer_N = mkN "stayer" "stayers"; -- from DictEng -lin staysail_N = mkN "staysail" ; -lin stead_N = mkN "stead" ; -- from DictEng -lin steadfast_A = compoundA (mkA "steadfast"); -- from DictEng -lin steadfastness_N = mkN "steadfastness" ; -- from DictEng -lin steadied_A = mkA "steadied" ; -lin steadily_Adv = mkAdv "steadily"; -- from DictEng -lin steadiness_N = mkN "steadiness" ; -- from DictEng -lin steady_A = mkA "steady" "steadier"; -- from DictEng -lin steady_Adv = mkAdv "steady"; -- from DictEng -lin steady_N = mkN "steady" "steadies"; -- from DictEng -lin steady_V = mkV "steady" "steadies" "steadied" "steadied" "steadying"; -- from DictEng -lin steady_V2 = mkV2 (mkV "steady" "steadies" "steadied" "steadied" "steadying"); -- from DictEng -lin steadying_A = mkA "steadying" ; -lin steak_N = mkN "steak" "steaks"; -- from DictEng -lin steakhouse_N = mkN "steakhouse" ; -lin steal_N = mkN "steal" ; -lin steal_V = IrregEng.steal_V; -- from DictEng -lin steal_V2 = mkV2 (IrregEng.steal_V); -- from DictEng -lin stealth_N = mkN "stealth" ; -- from DictEng -lin stealthily_Adv = mkAdv "stealthily"; -- from DictEng -lin stealthy_A = mkA "stealthy" "stealthier"; -- from DictEng -lin steam_N = mkN "steam" ; -- from DictEng -lin steam_V = mkV "steam" "steams" "steamed" "steamed" "steaming"; -- from DictEng -lin steam_V2 = mkV2 (mkV "steam" "steams" "steamed" "steamed" "steaming"); -- from DictEng -lin steam_powered_A = compoundA (mkA "steam powered") ; -lin steam_boiler_N = mkN "steam - boiler" "steam - boilers"; -- from DictEng -lin steam_coal_N = mkN "steam - coal" ; -- from DictEng -lin steam_engine_N = mkN "steam - engine" "steam - engines"; -- from DictEng -lin steam_heat_N = mkN "steam - heat" ; -- from DictEng -lin steam_heat_V2 = mkV2 (mkV "steam - heat" "steam - heats" "steam - heated" "steam - heated" "steam - heating"); -- from DictEng -lin steamboat_N = mkN "steamboat" "steamboats"; -- from DictEng -lin steamed_A = mkA "steamed" ; -lin steamer_N = mkN "steamer" "steamers"; -- from DictEng -lin steamfitter_N = mkN "steamfitter" ; -lin steaming_A = mkA "steaming" ; -lin steamroller_N = mkN "steamroller" "steamrollers"; -- from DictEng -lin steamroller_V2 = mkV2 (mkV "steamroller" "steamrollers" "steamrollered" "steamrollered" "steamrollering"); -- from DictEng -lin steamship_N = mkN "steamship" "steamships"; -- from DictEng -lin steamy_A = mkA "steamy" "steamier"; -- from DictEng -lin stearic_A = mkA "stearic" ; -lin stearin_N = mkN "stearin" ; -lin steatopygia_N = mkN "steatopygia" ; -lin steatorrhea_N = mkN "steatorrhea" ; -lin steed_N = mkN "steed" "steeds"; -- from DictEng -lin steel_N = mkN "steel" ; -- from DictEng -lin steel_V2 = mkV2 (mkV "steel" "steels" "steeled" "steeled" "steeling"); -- from DictEng -lin steel_clad_A = compoundA (mkA "steel - clad"); -- from DictEng -lin steel_plated_A = compoundA (mkA "steel - plated"); -- from DictEng -lin steelmaker_N = mkN "steelmaker" ; -lin steelworks_N = mkN "steelworks" "steelworks"; -- from DictEng -lin steely_A = mkA "steely" "steelier"; -- from DictEng -lin steelyard_N = mkN "steelyard" "steelyards"; -- from DictEng -lin steenbok_N = mkN "steenbok" "steenboks"; -- from DictEng -lin steep_A = mkA "steep" "steeper"; -- from DictEng -lin steep_N = mkN "steep" ; -lin steep_V = mkV "steep" "steeps" "steeped" "steeped" "steeping"; -- from DictEng -lin steep_V2 = mkV2 (mkV "steep" "steeps" "steeped" "steeped" "steeping"); -- from DictEng -lin steep_sided_A = compoundA (mkA "steep sided") ; -lin steepen_V = mkV "steepen" "steepens" "steepened" "steepened" "steepening"; -- from DictEng -lin steepen_V2 = mkV2 (mkV "steepen" "steepens" "steepened" "steepened" "steepening"); -- from DictEng -lin steeper_N = mkN "steeper" ; -lin steepish_A = compoundA (mkA "steepish"); -- from DictEng -lin steeple_N = mkN "steeple" "steeples"; -- from DictEng -lin steeplechase_N = mkN "steeplechase" "steeplechases"; -- from DictEng -lin steeplechaser_N = mkN "steeplechaser" "steeplechasers"; -- from DictEng -lin steeplejack_N = mkN "steeplejack" "steeplejacks"; -- from DictEng -lin steeply_Adv = mkAdv "steeply" ; -lin steepness_N = mkN "steepness" ; -- from DictEng -lin steer_N = mkN "steer" "steers"; -- from DictEng -lin steer_V = mkV "steer" "steers" "steered" "steered" "steering"; -- from DictEng -lin steer_V2 = mkV2 (mkV "steer" "steers" "steered" "steered" "steering"); -- from DictEng -lin steerable_A = mkA "steerable" ; -lin steerage_N = mkN "steerage" "steerages"; -- from DictEng -lin steerageway_N = mkN "steerageway" ; -- from DictEng -lin steering_N = mkN "steering" ; -lin steering_gear_N = mkN "steering - gear" ; -- from DictEng -lin steering_wheel_N = mkN "steering - wheel" "steering - wheels"; -- from DictEng -lin steersman_N = mkN "steersman" "steersmen" {- FIXME: guessed plural form -}; -- from DictEng -lin stegosaur_N = mkN "stegosaur" ; -lin stele_N = mkN "stele" "IRREG"; -- from DictEng -lin stelis_N = mkN "stelis" ; -lin stellar_A = compoundA (mkA "stellar"); -- from DictEng -lin stem_N = mkN "stem" "stems"; -- from DictEng -lin stem_V = mkV "stem" "stems" "stemmed" "stemmed" "stemming"; -- from DictEng -lin stem_V2 = mkV2 (mkV "stem" "stems" "stemmed" "stemmed" "stemming"); -- from DictEng -lin stem_winder_N = mkN "stem winder" ; -lin stemless_A = mkA "stemless" ; -lin stemma_N = mkN "stemma" ; -lin stemmatic_A = mkA "stemmatic" ; -lin stemmatology_N = mkN "stemmatology" ; -lin stemmed_A = compoundA (mkA "stemmed"); -- from DictEng -lin stemmer_N = mkN "stemmer" ; -lin stemmer_V2 = mkV2 (mkV "stemmer") ; -lin stench_N = mkN "stench" "stenches"; -- from DictEng -lin stencil_N = mkN "stencil" "stencils"; -- from DictEng -lin stencil_V = mkV "stencil" ; -lin stencil_V2 = mkV2 (mkV "stencil" "stencils" "stencilled" "stencilled" "stencilling"); -- from DictEng -lin stenograph_N = mkN "stenograph" ; -lin stenographer_N = mkN "stenographer" "stenographers"; -- from DictEng -lin stenographic_A = mkA "stenographic" ; -lin stenography_N = mkN "stenography" ; -- from DictEng -lin stenopterygius_N = mkN "stenopterygius" ; -lin stenosed_A = mkA "stenosed" ; -lin stenosis_N = mkN "stenosis" ; -lin stent_N = mkN "stent" ; -lin stentor_N = mkN "stentor" ; -lin stentorian_A = compoundA (mkA "stentorian"); -- from DictEng -lin step_N = mkN "step" "steps"; -- from DictEng -lin step_V = mkV "step" "steps" "stepped" "stepped" "stepping"; -- from DictEng -lin step_V2 = mkV2 (mkV "step" "steps" "stepped" "stepped" "stepping"); -- from DictEng -lin stepbrother_N = mkN "stepbrother" "stepbrothers"; -- from DictEng -lin stepchild_N = mkN "stepchild" "stepchildren" {- FIXME: guessed plural form -}; -- from DictEng -lin stepdaughter_N = mkN "stepdaughter" "stepdaughters"; -- from DictEng -lin stepfather_N = mkN "stepfather" "stepfathers"; -- from DictEng -lin stephanion_N = mkN "stephanion" ; -lin stephanotis_N = mkN "stephanotis" ; -lin stepladder_N = mkN "stepladder" "stepladders"; -- from DictEng -lin stepmother_N = mkN "stepmother" "stepmothers"; -- from DictEng -lin stepparent_N = mkN "stepparent" "stepparents"; -- from DictEng -lin steppe_N = mkN "steppe" "steppes"; -- from DictEng -lin stepper_N = mkN "stepper" ; -lin stepping_stone_N = mkN "stepping - stone" "stepping - stones"; -- from DictEng -lin steprelationship_N = mkN "steprelationship" ; -lin steps_N = mkN "steps" ; -lin stepsister_N = mkN "stepsister" "stepsisters"; -- from DictEng -lin stepson_N = mkN "stepson" "stepsons"; -- from DictEng -lin stepwise_Adv = mkAdv "stepwise" ; -lin steradian_N = mkN "steradian" ; -lin sterculia_N = mkN "sterculia" ; -lin stereo_N = mkN "stereo" "stereos"; -- from DictEng -lin stereophonic_A = compoundA (mkA "stereophonic"); -- from DictEng -lin stereoscope_N = mkN "stereoscope" "stereoscopes"; -- from DictEng -lin stereoscopic_A = compoundA (mkA "stereoscopic"); -- from DictEng -lin stereotype_N = mkN "stereotype" "stereotypes"; -- from DictEng -lin stereotype_V2 = mkV2 (mkV "stereotype" "stereotypes" "stereotyped" "stereotyped" "stereotyping"); -- from DictEng -lin stereotyped_A = mkA "stereotyped" ; -lin stereotypically_Adv = mkAdv "stereotypically" ; -lin sterile_A = compoundA (mkA "sterile"); -- from DictEng -lin sterility_N = mkN "sterility" ; -- from DictEng -lin sterilization_N = mkN "sterilization" ; -- from DictEng -lin sterilize_V = mkV "sterilize"; -- from DictEng -lin sterilize_V2 = mkV2 (mkV "sterilize" "sterilizes" "sterilized" "sterilized" "sterilizing"); -- from DictEng -lin sterilized_A = mkA "sterilized" ; -lin sterling_A = compoundA (mkA "sterling"); -- from DictEng -lin sterling_N = mkN "sterling" ; -- from DictEng -lin stern_A = mkA "stern" "sterner"; -- from DictEng -lin stern_N = mkN "stern" "sterns"; -- from DictEng -lin sternal_A = mkA "sternal" ; -lin sternly_Adv = mkAdv "sternly" ; -lin sternness_N = mkN "sternness" ; -- from DictEng -lin sternocleidomastoid_N = mkN "sternocleidomastoid" ; -lin sternpost_N = mkN "sternpost" ; -lin sternum_N = mkN "sternum" "sternums"; -- from DictEng -lin sternutator_N = mkN "sternutator" ; -lin sternutatory_A = mkA "sternutatory" ; -lin sternwheeler_N = mkN "sternwheeler" "sternwheelers"; -- from DictEng -lin steroid_N = mkN "steroid" ; -lin steroidal_A = mkA "steroidal" ; -lin sterol_N = mkN "sterol" ; -lin stertorous_A = compoundA (mkA "stertorous"); -- from DictEng -lin stertorously_Adv = mkAdv "stertorously" ; -lin stethoscope_N = mkN "stethoscope" "stethoscopes"; -- from DictEng -lin stetson_N = mkN "stetson" "stetsons"; -- from DictEng -lin stevedore_N = mkN "stevedore" "stevedores"; -- from DictEng -lin stevia_N = mkN "stevia" ; -lin stew_N = mkN "stew" "stews"; -- from DictEng -lin stew_V = mkV "stew" "stews" "stewed" "stewed" "stewing"; -- from DictEng -lin stew_V2 = mkV2 (mkV "stew" "stews" "stewed" "stewed" "stewing"); -- from DictEng -lin steward_N = mkN "steward" "stewards"; -- from DictEng -lin stewardess_N = mkN "stewardess" "stewardesses"; -- from DictEng -lin stewardship_N = mkN "stewardship" ; -- from DictEng -lin stewed_A = compoundA (mkA "stewed"); -- from DictEng -lin stewing_N = mkN "stewing" ; -lin sthene_N = mkN "sthene" ; -lin stibnite_N = mkN "stibnite" ; -lin stick_N = mkN "stick" "sticks"; -- from DictEng -lin stick_V = IrregEng.stick_V; -- from DictEng -lin stick_V2 = mkV2 (mkV "stick" "sticks" "sticked" "sticked" "sticking"); -- from DictEng -lin stick_on_A = compoundA (mkA "stick - on"); -- from DictEng -lin stick_in_the_mud_A = compoundA (mkA "stick - in - the - mud"); -- from DictEng -lin stick_in_the_mud_N = mkN "stick - in - the - mud" "IRREG"; -- from DictEng -lin stick_on_A = compoundA (mkA "stick - on"); -- from DictEng -lin stick_up_N = mkN "stick - up" "stick - ups"; -- from DictEng -lin stickball_N = mkN "stickball" ; -lin sticker_N = mkN "sticker" "stickers"; -- from DictEng -lin stickily_Adv = mkAdv "stickily"; -- from DictEng -lin stickiness_N = mkN "stickiness" ; -- from DictEng -lin sticking_plaster_N = mkN "sticking - plaster" "sticking - plasters"; -- from DictEng -lin stickleback_N = mkN "stickleback" ; -lin stickler_N = mkN "stickler" "sticklers"; -- from DictEng -lin stickpin_N = mkN "stickpin" ; -lin sticktight_N = mkN "sticktight" ; -lin stickweed_N = mkN "stickweed" ; -lin sticky_A = mkA "sticky" "stickier"; -- from DictEng -lin stiff_A = mkA "stiff" "stiffer"; -- from DictEng -lin stiff_Adv = mkAdv "stiff"; -- from DictEng -lin stiff_N = mkN "stiff" "stiffs"; -- from DictEng -lin stiff_backed_A = compoundA (mkA "stiff backed") ; -lin stiff_branched_A = compoundA (mkA "stiff branched") ; -lin stiff_haired_A = compoundA (mkA "stiff haired") ; -lin stiff_necked_A = compoundA (mkA "stiff - necked"); -- from DictEng -lin stiff_tailed_A = compoundA (mkA "stiff tailed") ; -lin stiff_necked_A = compoundA (mkA "stiff - necked"); -- from DictEng -lin stiffen_V = mkV "stiffen" "stiffens" "stiffened" "stiffened" "stiffening"; -- from DictEng -lin stiffen_V2 = mkV2 (mkV "stiffen" "stiffens" "stiffened" "stiffened" "stiffening"); -- from DictEng -lin stiffener_N = mkN "stiffener" "stiffeners"; -- from DictEng -lin stiffening_N = mkN "stiffening" "stiffenings"; -- from DictEng -lin stiffly_Adv = mkAdv "stiffly" ; -lin stiffness_N = mkN "stiffness" ; -- from DictEng -lin stifle_N = mkN "stifle" ; -lin stifle_V = mkV "stifle" "stifles" "stifled" "stifled" "stifling"; -- from DictEng -lin stifle_V2 = mkV2 (mkV "stifle" "stifles" "stifled" "stifled" "stifling"); -- from DictEng -lin stifler_N = mkN "stifler" ; -lin stigma_N = mkN "stigma" "stigmas"; -- from DictEng -lin stigmata_N = mkN "stigmata" ; -lin stigmatic_A = mkA "stigmatic" ; -lin stigmatic_N = mkN "stigmatic" ; -lin stigmatism_N = mkN "stigmatism" ; -lin stigmatization_N = mkN "stigmatization" ; -lin stigmatize_V2 = mkV2 (mkV "stigmatize" "stigmatizes" "stigmatized" "stigmatized" "stigmatizing"); -- from DictEng -lin stile_N = mkN "stile" "stiles"; -- from DictEng -lin stiletto_N = mkN "stiletto" "stilettos"; -- from DictEng -lin still_A = mkA "still" "stiller"; -- from DictEng -lin still_Adv = mkAdv "still"; -- from DictEng -lin still_N = mkN "still" "stills"; -- from DictEng -lin still_V2 = mkV2 (mkV "still" "stills" "stilled" "stilled" "stilling"); -- from DictEng -lin still_life_N = mkN "still - life" "still - lifes"; -- from DictEng -lin still_room_N = mkN "still - room" "still - rooms"; -- from DictEng -lin stillbirth_N = mkN "stillbirth" "stillbirths"; -- from DictEng -lin stillborn_A = compoundA (mkA "stillborn"); -- from DictEng -lin stillness_N = mkN "stillness" ; -- from DictEng -lin stillroom_N = mkN "stillroom" ; -lin stilly_A = compoundA (mkA "stilly"); -- from DictEng -lin stilt_N = mkN "stilt" "stilts"; -- from DictEng -lin stilted_A = compoundA (mkA "stilted"); -- from DictEng -lin stiltedly_Adv = mkAdv "stiltedly" ; -lin stilton_N = mkN "stilton" "stiltons"; -- from DictEng -lin stimulant_A = mkA "stimulant" ; -lin stimulant_N = mkN "stimulant" "stimulants"; -- from DictEng -lin stimulate_V2 = mkV2 (mkV "stimulate" "stimulates" "stimulated" "stimulated" "stimulating"); -- from DictEng -lin stimulated_A = mkA "stimulated" ; -lin stimulating_A = compoundA (mkA "stimulating"); -- from DictEng -lin stimulation_N = mkN "stimulation" "stimulations"; -- from DictEng -lin stimulative_A = mkA "stimulative" ; -lin stimulus_N = mkN "stimulus" "stimuli" {- FIXME: guessed plural form -}; -- from DictEng -lin sting_N = mkN "sting" "stings"; -- from DictEng -lin sting_V = IrregEng.sting_V; -- from DictEng -lin sting_V2 = mkV2 (IrregEng.sting_V); -- from DictEng -lin stinger_N = mkN "stinger" "stingers"; -- from DictEng -lin stingily_Adv = mkAdv "stingily"; -- from DictEng -lin stinginess_N = mkN "stinginess" ; -- from DictEng -lin stingless_A = compoundA (mkA "stingless"); -- from DictEng -lin stingray_N = mkN "stingray" "stingrays"; -- from DictEng -lin stingy_A = mkA "stingy" "stingier"; -- from DictEng -lin stink_N = mkN "stink" "stinks"; -- from DictEng -lin stink_V = IrregEng.stink_V; -- from DictEng -lin stink_V2 = mkV2 (IrregEng.stink_V); -- from DictEng -lin stinker_N = mkN "stinker" "stinkers"; -- from DictEng -lin stinkhorn_N = mkN "stinkhorn" ; -lin stint_N = mkN "stint" "stints"; -- from DictEng -lin stint_V = mkV "stint" "stints" "stinted" "stinted" "stinting"; -- from DictEng -lin stint_V2 = mkV2 (mkV "stint" "stints" "stinted" "stinted" "stinting"); -- from DictEng -lin stinter_N = mkN "stinter" ; -lin stipe_N = mkN "stipe" ; -lin stipend_N = mkN "stipend" "stipends"; -- from DictEng -lin stipendiary_A = compoundA (mkA "stipendiary"); -- from DictEng -lin stipendiary_N = mkN "stipendiary" "stipendiaries"; -- from DictEng -lin stipple_V2 = mkV2 (mkV "stipple" "stipples" "stippled" "stippled" "stippling"); -- from DictEng -lin stippler_N = mkN "stippler" ; -lin stipulate_V = mkV "stipulate" "stipulates" "stipulated" "stipulated" "stipulating"; -- from DictEng -lin stipulate_V2 = mkV2 (mkV "stipulate" "stipulates" "stipulated" "stipulated" "stipulating"); -- from DictEng -lin stipulate_VS = mkVS (mkV "stipulate" "stipulates" "stipulated" "stipulated" "stipulating"); -- from DictEng -lin stipulation_N = mkN "stipulation" "stipulations"; -- from DictEng -lin stipule_N = mkN "stipule" ; -lin stir_N = mkN "stir" "stirs"; -- from DictEng -lin stir_V = mkV "stir" "stirs" "stirred" "stirred" "stirring"; -- from DictEng -lin stir_V2 = mkV2 (mkV "stir" "stirs" "stirred" "stirred" "stirring"); -- from DictEng -lin stirk_N = mkN "stirk" ; -lin stirred_A = mkA "stirred" ; -lin stirrer_N = mkN "stirrer" ; -lin stirring_A = compoundA (mkA "stirring"); -- from DictEng -lin stirring_N = mkN "stirring" ; -lin stirringly_Adv = mkAdv "stirringly" ; -lin stirrup_N = mkN "stirrup" "stirrups"; -- from DictEng -lin stirrup_shaped_A = compoundA (mkA "stirrup shaped") ; -lin stirrup_cup_N = mkN "stirrup - cup" "stirrup - cups"; -- from DictEng -lin stitch_N = mkN "stitch" "stitches"; -- from DictEng -lin stitch_V = mkV "stitch" "stitches" "stitched" "stitched" "stitching"; -- from DictEng -lin stitch_V2 = mkV2 (mkV "stitch" "stitches" "stitched" "stitched" "stitching"); -- from DictEng -lin stitcher_N = mkN "stitcher" ; -lin stitchwort_N = mkN "stitchwort" ; -lin stoat_N = mkN "stoat" "stoats"; -- from DictEng -lin stob_N = mkN "stob" ; -lin stochastic_A = compoundA (mkA "stochastic"); -- from DictEng -lin stochastically_Adv = mkAdv "stochastically"; -- from DictEng -lin stock_A = mkA "stock" ; -lin stock_N = mkN "stock" "stocks"; -- from DictEng -lin stock_V2 = mkV2 (mkV "stock" "stocks" "stocked" "stocked" "stocking"); -- from DictEng -lin stock_in_trade_N = mkN "stock - in - trade" "stock - in - trades"; -- from DictEng -lin stock_cube_N = mkN "stock - cube" "stock - cubes"; -- from DictEng -lin stock_farmer_N = mkN "stock - farmer" "stock - farmers"; -- from DictEng -lin stock_in_trade_N = mkN "stock - in - trade" "stock - in - trades"; -- from DictEng -lin stock_list_N = mkN "stock - list" "stock - lists"; -- from DictEng -lin stock_still_Adv = mkAdv "stock - still"; -- from DictEng -lin stockade_N = mkN "stockade" "stockades"; -- from DictEng -lin stockade_V2 = mkV2 (mkV "stockade" "stockades" "stockaded" "stockaded" "stockading"); -- from DictEng -lin stockbreeder_N = mkN "stockbreeder" "stockbreeders"; -- from DictEng -lin stockbroker_N = mkN "stockbroker" "stockbrokers"; -- from DictEng -lin stockcar_N = mkN "stockcar" "stockcars"; -- from DictEng -lin stocked_A = mkA "stocked" ; -lin stocker_N = mkN "stocker" ; -lin stockfish_N = mkN "stockfish" "stockfish"; -- from DictEng -lin stockholder_N = mkN "stockholder" "stockholders"; -- from DictEng -lin stockholding_N = mkN "stockholding" "stockholdings"; -- from DictEng -lin stockily_Adv = mkAdv "stockily"; -- from DictEng -lin stockinet_N = mkN "stockinet" ; -lin stockinette_N = mkN "stockinette" ; -- from DictEng -lin stocking_N = mkN "stocking" "stockings"; -- from DictEng -lin stockinged_A = compoundA (mkA "stockinged"); -- from DictEng -lin stockist_N = mkN "stockist" "stockists"; -- from DictEng -lin stockjobber_N = mkN "stockjobber" "stockjobbers"; -- from DictEng -lin stockman_N = mkN "stockman" ; -lin stockpile_N = mkN "stockpile" "stockpiles"; -- from DictEng -lin stockpile_V2 = mkV2 (mkV "stockpile"); -- from DictEng -lin stockpiling_N = mkN "stockpiling" ; -- from DictEng -lin stockpot_N = mkN "stockpot" "stockpots"; -- from DictEng -lin stockroom_N = mkN "stockroom" "stockrooms"; -- from DictEng -lin stocks_N = mkN "stocks" ; -lin stocktake_N = mkN "stocktake" ; -lin stocktaker_N = mkN "stocktaker" ; -lin stocktaking_N = mkN "stocktaking" "stocktakings"; -- from DictEng -lin stocky_A = mkA "stocky" "stockier"; -- from DictEng -lin stockyard_N = mkN "stockyard" "stockyards"; -- from DictEng -lin stodge_N = mkN "stodge" ; -- from DictEng -lin stodginess_N = mkN "stodginess" ; -- from DictEng -lin stodgy_A = mkA "stodgy" "stodgier"; -- from DictEng -lin stoep_N = mkN "stoep" "stoeps"; -- from DictEng -lin stogy_N = mkN "stogy" ; -lin stoic_A = mkA "stoic" ; -lin stoic_N = mkN "stoic" "stoics"; -- from DictEng -lin stoical_A = compoundA (mkA "stoical"); -- from DictEng -lin stoically_Adv = mkAdv "stoically" ; -lin stoichiometric_A = mkA "stoichiometric" ; -lin stoichiometry_N = mkN "stoichiometry" ; -lin stoicism_N = mkN "stoicism" ; -- from DictEng -lin stoke_V = mkV "stoke" "stokes" "stoked" "stoked" "stoking"; -- from DictEng -lin stoke_V2 = mkV2 (mkV "stoke" "stokes" "stoked" "stoked" "stoking"); -- from DictEng -lin stokehold_N = mkN "stokehold" "stokeholds"; -- from DictEng -lin stokehole_N = mkN "stokehole" "stokeholes"; -- from DictEng -lin stoker_N = mkN "stoker" "stokers"; -- from DictEng -lin stole_N = mkN "stole" "stoles"; -- from DictEng -lin stolen_A = compoundA (mkA "stolen"); -- from DictEng -lin stolid_A = compoundA (mkA "stolid"); -- from DictEng -lin stolidity_N = mkN "stolidity" ; -- from DictEng -lin stolidly_Adv = mkAdv "stolidly" ; -lin stolidness_N = mkN "stolidness" ; -- from DictEng -lin stolon_N = mkN "stolon" ; -lin stoloniferous_A = mkA "stoloniferous" ; -lin stoma_N = mkN "stoma" ; -lin stomach_N = mkN "stomach" "stomachs"; -- from DictEng -lin stomach_V2 = mkV2 (mkV "stomach" "stomachs" "stomached" "stomached" "stomaching"); -- from DictEng -lin stomach_ache_N = mkN "stomach - ache" "stomach - aches"; -- from DictEng -lin stomach_pump_N = mkN "stomach - pump" "stomach - pumps"; -- from DictEng -lin stomachache_N = mkN "stomachache" ; -lin stomacher_N = mkN "stomacher" ; -lin stomatal_A = mkA "stomatal" ; -lin stomatitis_N = mkN "stomatitis" ; -lin stomatopod_N = mkN "stomatopod" ; -lin stomatous_A = mkA "stomatous" ; -lin stomp_N = mkN "stomp" "stomps"; -- from DictEng -lin stomp_V = mkV "stomp" "stomps" "stomped" "stomped" "stomping"; -- from DictEng -lin stomp_V2 = mkV2 (mkV "stomp" "stomps" "stomped" "stomped" "stomping"); -- from DictEng -lin stone_A = mkA "stone" ; -lin stone_N = mkN "stone" "stones"; -- from DictEng -lin stone_V2 = mkV2 (mkV "stone" "stones" "stoned" "stoned" "stoning"); -- from DictEng -lin stone_blind_A = compoundA (mkA "stone - blind"); -- from DictEng -lin stone_cold_A = compoundA (mkA "stone - cold"); -- from DictEng -lin stone_dead_A = compoundA (mkA "stone - dead"); -- from DictEng -lin stone_blind_A = compoundA (mkA "stone - blind"); -- from DictEng -lin stone_cold_A = compoundA (mkA "stone - cold"); -- from DictEng -lin stone_dead_A = compoundA (mkA "stone - dead"); -- from DictEng -lin stone_deaf_A = compoundA (mkA "stone - deaf"); -- from DictEng -lin stone_fruit_N = mkN "stone - fruit" "stone - fruits"; -- from DictEng -lin stone_pit_N = mkN "stone - pit" "stone - pits"; -- from DictEng -lin stone_sober_A = compoundA (mkA "stone - sober"); -- from DictEng -lin stonebreaker_N = mkN "stonebreaker" "stonebreakers"; -- from DictEng -lin stonechat_N = mkN "stonechat" ; -lin stonecress_N = mkN "stonecress" ; -lin stonecrop_N = mkN "stonecrop" ; -lin stonecutter_N = mkN "stonecutter" ; -lin stoned_A = compoundA (mkA "stoned"); -- from DictEng -lin stonefish_N = mkN "stonefish" ; -lin stonefly_N = mkN "stonefly" ; -lin stoneless_A = compoundA (mkA "stoneless"); -- from DictEng -lin stonemason_N = mkN "stonemason" "stonemasons"; -- from DictEng -lin stoner_N = mkN "stoner" ; -lin stonewall_V2 = mkV2 (mkV "stonewall" "stonewalls" "stonewalled" "stonewalled" "stonewalling"); -- from DictEng -lin stonewaller_N = mkN "stonewaller" "stonewallers"; -- from DictEng -lin stonewalling_N = mkN "stonewalling" ; -- from DictEng -lin stoneware_N = mkN "stoneware" ; -- from DictEng -lin stonework_N = mkN "stonework" ; -- from DictEng -lin stonewort_N = mkN "stonewort" ; -lin stonily_Adv = mkAdv "stonily"; -- from DictEng -lin stoning_N = mkN "stoning" ; -lin stony_A = mkA "stony" "stonier"; -- from DictEng -lin stony_broke_A = compoundA (mkA "stony - broke"); -- from DictEng -lin stood_V2V = mkV2V (mkV "stood") noPrep to_Prep ; -- from DictEng -lin stooge_N = mkN "stooge" "stooges"; -- from DictEng -lin stooge_V = mkV "stooge" "stooges" "stooged" "stooged" "stooging"; -- from DictEng -lin stool_N = mkN "stool" "stools"; -- from DictEng -lin stoop_N = mkN "stoop" "stoops"; -- from DictEng -lin stoop_V = mkV "stoop" "stoops" "stooped" "stooped" "stooping"; -- from DictEng -lin stoop_V2 = mkV2 (mkV "stoop" "stoops" "stooped" "stooped" "stooping"); -- from DictEng -lin stooper_N = mkN "stooper" ; -lin stop_N = mkN "stop" "stops"; -- from DictEng -lin stop_V = mkV "stop" "stops" "stopped" "stopped" "stopping"; -- from DictEng -lin stop_V2 = mkV2 (mkV "stop" "stops" "stopped" "stopped" "stopping"); -- from DictEng -lin stop_VV = ingVV (mkV "stop" "stops" "stopped" "stopped" "stopping"); -- from DictEng -lin stopcock_N = mkN "stopcock" "stopcocks"; -- from DictEng -lin stopgap_N = mkN "stopgap" "stopgaps"; -- from DictEng -lin stoplight_N = mkN "stoplight" ; -lin stopover_N = mkN "stopover" "stopovers"; -- from DictEng -lin stoppable_A = mkA "stoppable" ; -lin stoppage_N = mkN "stoppage" "stoppages"; -- from DictEng -lin stopped_A = mkA "stopped" ; -lin stopper_N = mkN "stopper" "stoppers"; -- from DictEng -lin stoppered_A = mkA "stoppered" ; -lin stopping_N = mkN "stopping" "stoppings"; -- from DictEng -lin stopwatch_N = mkN "stopwatch" "stopwatches"; -- from DictEng -lin storage_N = mkN "storage" ; -- from DictEng -lin storax_N = mkN "storax" ; -lin store_N = mkN "store" "stores"; -- from DictEng -lin store_V2 = mkV2 (mkV "store" "stores" "stored" "stored" "storing"); -- from DictEng -lin stored_program_A = compoundA (mkA "stored program") ; -lin storehouse_N = mkN "storehouse" "storehouses"; -- from DictEng -lin storeroom_N = mkN "storeroom" "storerooms"; -- from DictEng -lin storey_N = mkN "storey" "storeys"; -- from DictEng -lin storeyed_A = compoundA (mkA "storeyed"); -- from DictEng -lin storied_A = compoundA (mkA "storied"); -- from DictEng -lin stork_N = mkN "stork" "storks"; -- from DictEng -lin storksbill_N = mkN "storksbill" ; -lin storm_N = mkN "storm" "storms"; -- from DictEng -lin storm_V = mkV "storm" "storms" "stormed" "stormed" "storming"; -- from DictEng -lin storm_V2 = mkV2 (mkV "storm" "storms" "stormed" "stormed" "storming"); -- from DictEng -lin storm_beaten_A = compoundA (mkA "storm - beaten"); -- from DictEng -lin storm_beaten_A = compoundA (mkA "storm - beaten"); -- from DictEng -lin storm_bound_A = compoundA (mkA "storm - bound"); -- from DictEng -lin storm_centre_N = mkN "storm - centre" "storm - centres"; -- from DictEng -lin storm_cloud_N = mkN "storm - cloud" "storm - clouds"; -- from DictEng -lin storm_cone_N = mkN "storm - cone" "storm - cones"; -- from DictEng -lin storm_lantern_N = mkN "storm - lantern" "storm - lanterns"; -- from DictEng -lin storm_signal_N = mkN "storm - signal" "storm - signals"; -- from DictEng -lin storm_tossed_A = compoundA (mkA "storm - tossed"); -- from DictEng -lin storm_trooper_N = mkN "storm - trooper" "storm - troopers"; -- from DictEng -lin stormbound_A = mkA "stormbound" ; -lin stormily_Adv = mkAdv "stormily"; -- from DictEng -lin storminess_N = mkN "storminess" ; -lin stormproof_A = compoundA (mkA "stormproof"); -- from DictEng -lin stormy_A = mkA "stormy" "stormier"; -- from DictEng -lin story_N = mkN "story" "stories"; -- from DictEng -lin storybook_N = mkN "storybook" ; -lin storyline_N = mkN "storyline" ; -lin storyteller_N = mkN "storyteller" "storytellers"; -- from DictEng -lin stotinka_N = mkN "stotinka" ; -lin stoup_N = mkN "stoup" "stoups"; -- from DictEng -lin stout_A = mkA "stout" "stouter"; -- from DictEng -lin stout_N = mkN "stout" ; -- from DictEng -lin stout_billed_A = compoundA (mkA "stout billed") ; -lin stout_stemmed_A = compoundA (mkA "stout stemmed") ; -lin stouthearted_A = compoundA (mkA "stouthearted"); -- from DictEng -lin stoutheartedness_N = mkN "stoutheartedness" ; -lin stoutly_Adv = mkAdv "stoutly" ; -lin stoutness_N = mkN "stoutness" ; -- from DictEng -lin stove_N = mkN "stove" "stoves"; -- from DictEng -lin stovepipe_N = mkN "stovepipe" "stovepipes"; -- from DictEng -lin stovepiped_A = mkA "stovepiped" ; -lin stovepiping_N = mkN "stovepiping" ; -lin stover_N = mkN "stover" ; -lin stow_V2 = mkV2 (mkV "stow" "stows" "stowed" "stowed" "stowing"); -- from DictEng -lin stowage_N = mkN "stowage" ; -lin stowaway_N = mkN "stowaway" "stowaways"; -- from DictEng -lin strabismus_N = mkN "strabismus" ; -lin strabotomy_N = mkN "strabotomy" ; -lin straddle_N = mkN "straddle" ; -lin straddle_V = mkV "straddle" "straddles" "straddled" "straddled" "straddling"; -- from DictEng -lin straddle_V2 = mkV2 (mkV "straddle" "straddles" "straddled" "straddled" "straddling"); -- from DictEng -lin strafe_N = mkN "strafe" ; -lin strafe_V2 = mkV2 (mkV "strafe" "strafes" "strafed" "strafed" "strafing"); -- from DictEng -lin strafer_N = mkN "strafer" ; -lin straggle_N = mkN "straggle" ; -lin straggle_V = mkV "straggle" "straggles" "straggled" "straggled" "straggling"; -- from DictEng -lin straggler_N = mkN "straggler" "stragglers"; -- from DictEng -lin straggly_A = mkA "straggly" "stragglier"; -- from DictEng -lin straight_A = compoundA (mkA "straight"); -- from DictEng -lin straight_Adv = mkAdv "straight"; -- from DictEng -lin straight_N = mkN "straight" "straights"; -- from DictEng -lin straight_arm_N = mkN "straight arm" ; -lin straight_backed_A = compoundA (mkA "straight backed") ; -lin straight_billed_A = compoundA (mkA "straight billed") ; -lin straight_grained_A = compoundA (mkA "straight grained") ; -lin straight_legged_A = compoundA (mkA "straight legged") ; -lin straightarrow_A = mkA "straightarrow" ; -lin straightaway_N = mkN "straightaway" ; -lin straightedge_N = mkN "straightedge" ; -lin straighten_V = mkV "straighten" "straightens" "straightened" "straightened" "straightening"; -- from DictEng -lin straighten_V2 = mkV2 (mkV "straighten" "straightens" "straightened" "straightened" "straightening"); -- from DictEng -lin straightener_N = mkN "straightener" ; -lin straightforward_A = compoundA (mkA "straightforward"); -- from DictEng -lin straightness_N = mkN "straightness" ; -- from DictEng -lin straightway_Adv = mkAdv "straightway"; -- from DictEng -lin strain_N = mkN "strain" "strains"; -- from DictEng -lin strain_V = mkV "strain" "strains" "strained" "strained" "straining"; -- from DictEng -lin strain_V2 = mkV2 (mkV "strain" "strains" "strained" "strained" "straining"); -- from DictEng -lin strained_A = compoundA (mkA "strained"); -- from DictEng -lin strainer_N = mkN "strainer" "strainers"; -- from DictEng -lin strait_A = compoundA (mkA "strait"); -- from DictEng -lin strait_N = mkN "strait" "straits"; -- from DictEng -lin strait_laced_A = compoundA (mkA "strait - laced"); -- from DictEng -lin straiten_V2 = mkV2 (mkV "straiten" "straitens" "straitened" "straitened" "straitening"); -- from DictEng -lin straitjacket_N = mkN "straitjacket" "straitjackets"; -- from DictEng -lin strand_N = mkN "strand" "strands"; -- from DictEng -lin strand_V = mkV "strand" "strands" "stranded" "stranded" "stranding"; -- from DictEng -lin strand_V2 = mkV2 (mkV "strand" "strands" "stranded" "stranded" "stranding"); -- from DictEng -lin strange_A = mkA "strange" "stranger"; -- from DictEng -lin strangeness_N = mkN "strangeness" ; -- from DictEng -lin stranger_N = mkN "stranger" "strangers"; -- from DictEng -lin strangle_V2 = mkV2 (mkV "strangle" "strangles" "strangled" "strangled" "strangling"); -- from DictEng -lin stranglehold_N = mkN "stranglehold" "strangleholds"; -- from DictEng -lin strangler_N = mkN "strangler" ; -lin strangulation_N = mkN "strangulation" ; -- from DictEng -lin strap_N = mkN "strap" "straps"; -- from DictEng -lin strap_V2 = mkV2 (mkV "strap" "straps" "strapped" "strapped" "strapping"); -- from DictEng -lin straphanger_N = mkN "straphanger" "straphangers"; -- from DictEng -lin strapless_A = mkA "strapless" ; -lin strapless_N = mkN "strapless" ; -lin straplike_A = mkA "straplike" ; -lin strappado_N = mkN "strappado" ; -lin strapping_A = compoundA (mkA "strapping"); -- from DictEng -lin strapping_N = mkN "strapping" "IRREG"; -- from DictEng -lin stratagem_N = mkN "stratagem" "stratagems"; -- from DictEng -lin strategic_A = compoundA (mkA "strategic"); -- from DictEng -lin strategical_A = compoundA (mkA "strategical"); -- from DictEng -lin strategically_Adv = mkAdv "strategically" ; -lin strategics_N = mkN "strategics" "strategics"; -- from DictEng -lin strategist_N = mkN "strategist" "strategists"; -- from DictEng -lin strategy_N = mkN "strategy" "strategies"; -- from DictEng -lin stratification_N = mkN "stratification" "stratifications"; -- from DictEng -lin stratified_A = mkA "stratified" ; -lin stratify_V = mkV "stratify" "stratifies" "stratified" "stratified" "stratifying"; -- from DictEng -lin stratify_V2 = mkV2 (mkV "stratify" "stratifies" "stratified" "stratified" "stratifying"); -- from DictEng -lin stratigraphy_N = mkN "stratigraphy" ; -lin stratosphere_N = mkN "stratosphere" "stratospheres"; -- from DictEng -lin stratum_N = mkN "stratum" "strata" {- FIXME: guessed plural form -}; -- from DictEng -lin stratus_N = mkN "stratus" ; -lin straw_A = mkA "straw" ; -lin straw_N = mkN "straw" "straws"; -- from DictEng -lin straw_V2 = mkV2 (mkV "straw" "straws" "strawed" "strawed" "strawing"); -- from DictEng -lin straw_colored_A = compoundA (mkA "straw colored") ; -lin straw_coloured_A = compoundA (mkA "straw - coloured"); -- from DictEng -lin strawberry_N = mkN "strawberry" "strawberries"; -- from DictEng -lin strawboard_N = mkN "strawboard" ; -- from DictEng -lin strawflower_N = mkN "strawflower" ; -lin strawworm_N = mkN "strawworm" ; -lin stray_A = mkA "stray" ; -lin stray_N = mkN "stray" "strays"; -- from DictEng -lin stray_V = mkV "stray" "strays" "strayed" "strayed" "straying"; -- from DictEng -lin stray_V2 = mkV2 (mkV "stray") ; -lin straying_A = mkA "straying" ; -lin streak_N = mkN "streak" "streaks"; -- from DictEng -lin streak_V = mkV "streak" "streaks" "streaked" "streaked" "streaking"; -- from DictEng -lin streak_V2 = mkV2 (mkV "streak" "streaks" "streaked" "streaked" "streaking"); -- from DictEng -lin streaked_A = mkA "streaked" ; -lin streaker_N = mkN "streaker" ; -lin streaky_A = mkA "streaky" "streakier"; -- from DictEng -lin stream_N = mkN "stream" "streams"; -- from DictEng -lin stream_V = mkV "stream" "streams" "streamed" "streamed" "streaming"; -- from DictEng -lin stream_V2 = mkV2 (mkV "stream") ; -lin streambed_N = mkN "streambed" ; -lin streamer_N = mkN "streamer" "streamers"; -- from DictEng -lin streaming_A = mkA "streaming" ; -lin streamlet_N = mkN "streamlet" "streamlets"; -- from DictEng -lin streamline_V = mkV "streamline"; -- from DictEng -lin streamline_V2 = mkV2 (mkV "streamline" "streamlines" "streamlined" "streamlined" "streamlining"); -- from DictEng -lin streamlined_A = compoundA (mkA "streamlined"); -- from DictEng -lin streamliner_N = mkN "streamliner" ; -lin street_N = mkN "street" "streets"; -- from DictEng -lin street_girl_N = mkN "street - girl" "street - girls"; -- from DictEng -lin street_urchin_N = mkN "street - urchin" "street - urchins"; -- from DictEng -lin streetcar_N = mkN "streetcar" "streetcars"; -- from DictEng -lin streetlight_N = mkN "streetlight" ; -lin streetwalker_N = mkN "streetwalker" "streetwalkers"; -- from DictEng -lin streetwise_A = mkA "streetwise" ; -lin strength_N = mkN "strength" "strengths"; -- from DictEng -lin strengthen_V = mkV "strengthen" "strengthens" "strengthened" "strengthened" "strengthening"; -- from DictEng -lin strengthen_V2 = mkV2 (mkV "strengthen" "strengthens" "strengthened" "strengthened" "strengthening"); -- from DictEng -lin strengthener_N = mkN "strengthener" ; -lin strengthening_N = mkN "strengthening" ; -lin strenuous_A = compoundA (mkA "strenuous"); -- from DictEng -lin strenuously_Adv = mkAdv "strenuously" ; -lin strenuousness_N = mkN "strenuousness" ; -- from DictEng -lin streptobacillus_N = mkN "streptobacillus" ; -lin streptocarpus_N = mkN "streptocarpus" ; -lin streptococcal_A = mkA "streptococcal" ; -lin streptococcus_N = mkN "streptococcus" "streptococci" {- FIXME: guessed plural form -}; -- from DictEng -lin streptodornase_N = mkN "streptodornase" ; -lin streptokinase_N = mkN "streptokinase" ; -lin streptolysin_N = mkN "streptolysin" ; -lin streptomyces_N = mkN "streptomyces" ; -lin streptomycin_N = mkN "streptomycin" ; -- from DictEng -lin streptothricin_N = mkN "streptothricin" ; -lin stress_N = mkN "stress" "stresses"; -- from DictEng -lin stress_V2 = mkV2 (mkV "stress" "stresses" "stressed" "stressed" "stressing"); -- from DictEng -lin stress_VS = mkVS (mkV "stress"); -- from DictEng -lin stress_mark_N = mkN "stress - mark" "stress - marks"; -- from DictEng -lin stressed_A = mkA "stressed" ; -lin stressor_N = mkN "stressor" ; -lin stretch_A = mkA "stretch" ; -lin stretch_N = mkN "stretch" "stretches"; -- from DictEng -lin stretch_V = mkV "stretch" "stretches" "stretched" "stretched" "stretching"; -- from DictEng -lin stretch_V2 = mkV2 (mkV "stretch" "stretches" "stretched" "stretched" "stretching"); -- from DictEng -lin stretchable_A = mkA "stretchable" ; -lin stretched_A = mkA "stretched" ; -lin stretcher_N = mkN "stretcher" "stretchers"; -- from DictEng -lin stretcher_bearer_N = mkN "stretcher - bearer" "stretcher - bearers"; -- from DictEng -lin stretcher_bearer_N = mkN "stretcher - bearer" "stretcher - bearers"; -- from DictEng -lin stretcher_party_N = mkN "stretcher - party" "stretcher - parties"; -- from DictEng -lin stretching_N = mkN "stretching" ; -lin streusel_N = mkN "streusel" ; -lin strew_V2 = mkV2 (mkV "strew" "strews" "strewed" "strewed" "strewing"); -- from DictEng -lin stria_N = mkN "stria" ; -lin striate_A = mkA "striate" ; -lin striated_A = compoundA (mkA "striated"); -- from DictEng -lin stricken_A = compoundA (mkA "stricken"); -- from DictEng -lin strickle_N = mkN "strickle" ; -lin strict_A = mkA "strict" "stricter"; -- from DictEng -lin strictly_Adv = mkAdv "strictly" ; -lin strictness_N = mkN "strictness" ; -- from DictEng -lin stricture_N = mkN "stricture" "strictures"; -- from DictEng -lin stride_N = mkN "stride" "strides"; -- from DictEng -lin stride_V = IrregEng.stride_V; -- from DictEng -lin stride_V2 = mkV2 (IrregEng.stride_V); -- from DictEng -lin strident_A = compoundA (mkA "strident"); -- from DictEng -lin stridently_Adv = mkAdv "stridently" ; -lin strider_N = mkN "strider" ; -lin stridor_N = mkN "stridor" ; -lin stridulate_V = mkV "stridulate" "stridulates" "stridulated" "stridulated" "stridulating"; -- from DictEng -lin stridulation_N = mkN "stridulation" "stridulations"; -- from DictEng -lin strife_N = mkN "strife" ; -- from DictEng -lin strike_N = mkN "strike" "strikes"; -- from DictEng -lin strike_V = IrregEng.strike_V; -- from DictEng -lin strike_V2 = mkV2 (IrregEng.strike_V); -- from DictEng -lin strike_leader_N = mkN "strike - leader" "strike - leaders"; -- from DictEng -lin strike_pay_N = mkN "strike - pay" ; -- from DictEng -lin strikebound_A = compoundA (mkA "strikebound"); -- from DictEng -lin strikebreaker_N = mkN "strikebreaker" "strikebreakers"; -- from DictEng -lin strikebreaking_N = mkN "strikebreaking" ; -lin strikeout_N = mkN "strikeout" ; -lin striker_N = mkN "striker" "strikers"; -- from DictEng -lin striking_A = compoundA (mkA "striking"); -- from DictEng -lin strikingly_Adv = mkAdv "strikingly" ; -lin string_N = mkN "string" "strings"; -- from DictEng -lin string_V = IrregEng.string_V; -- from DictEng -lin string_V2 = mkV2 (IrregEng.string_V); -- from DictEng -lin stringency_N = mkN "stringency" "stringencies"; -- from DictEng -lin stringent_A = compoundA (mkA "stringent"); -- from DictEng -lin stringer_N = mkN "stringer" ; -lin stringy_A = mkA "stringy" "stringier"; -- from DictEng -lin stringybark_N = mkN "stringybark" ; -lin strip_N = mkN "strip" "strips"; -- from DictEng -lin strip_V = mkV "strip" "strips" "stripped" "stripped" "stripping"; -- from DictEng -lin strip_V2 = mkV2 (mkV "strip" "strips" "stripped" "stripped" "stripping"); -- from DictEng -lin strip_mined_A = compoundA (mkA "strip mined") ; -lin strip_lighting_N = mkN "strip - lighting" ; -- from DictEng -lin strip_poker_N = mkN "strip - poker" ; -- from DictEng -lin strip_show_N = mkN "strip - show" "strip - shows"; -- from DictEng -lin stripe_N = mkN "stripe" "stripes"; -- from DictEng -lin striped_A = compoundA (mkA "striped"); -- from DictEng -lin striper_N = mkN "striper" ; -lin striping_N = mkN "striping" ; -lin stripling_N = mkN "stripling" "striplings"; -- from DictEng -lin stripped_A = mkA "stripped" ; -lin stripper_N = mkN "stripper" "strippers"; -- from DictEng -lin striptease_N = mkN "striptease" ; -- from DictEng -lin stripy_A = mkA "stripy" "stripier"; -- from DictEng -lin strive_V = IrregEng.strive_V; -- from DictEng -lin strive_VV = mkVV (IrregEng.strive_V); -- from DictEng -lin striver_N = mkN "striver" "strivers"; -- from DictEng -lin striving_N = mkN "striving" ; -lin stroboscope_N = mkN "stroboscope" "stroboscopes"; -- from DictEng -lin stroke_N = mkN "stroke" "strokes"; -- from DictEng -lin stroke_V2 = mkV2 (mkV "stroke" "strokes" "stroked" "stroked" "stroking"); -- from DictEng -lin stroll_N = mkN "stroll" "strolls"; -- from DictEng -lin stroll_V = mkV "stroll" "strolls" "strolled" "strolled" "strolling"; -- from DictEng -lin stroll_V2 = mkV2 (mkV "stroll") ; -lin stroller_N = mkN "stroller" "strollers"; -- from DictEng -lin stroma_N = mkN "stroma" ; -lin strong_A = mkA "strong" "stronger"; -- from DictEng -lin strong_boned_A = compoundA (mkA "strong - boned"); -- from DictEng -lin strong_flavored_A = compoundA (mkA "strong flavored") ; -lin strong_minded_A = compoundA (mkA "strong - minded"); -- from DictEng -lin strong_smelling_A = compoundA (mkA "strong smelling") ; -lin strong_arm_A = compoundA (mkA "strong - arm"); -- from DictEng -lin strong_boned_A = compoundA (mkA "strong - boned"); -- from DictEng -lin strong_minded_A = compoundA (mkA "strong - minded"); -- from DictEng -lin strongbox_N = mkN "strongbox" "strongboxes"; -- from DictEng -lin stronghold_N = mkN "stronghold" "strongholds"; -- from DictEng -lin strongly_Adv = mkAdv "strongly" ; -lin strongman_N = mkN "strongman" ; -lin strongroom_N = mkN "strongroom" "strongrooms"; -- from DictEng -lin strontianite_N = mkN "strontianite" ; -lin strontium_N = mkN "strontium" ; -- from DictEng -lin strop_N = mkN "strop" "strops"; -- from DictEng -lin strop_V2 = mkV2 (mkV "strop" "strops" "stropped" "stropped" "stropping"); -- from DictEng -lin strophanthin_N = mkN "strophanthin" ; -lin strophanthus_N = mkN "strophanthus" ; -lin strophe_N = mkN "strophe" "strophes"; -- from DictEng -lin stroppy_A = compoundA (mkA "stroppy"); -- from DictEng -lin struck_A = compoundA (mkA "struck"); -- from DictEng -lin structural_A = compoundA (mkA "structural"); -- from DictEng -lin structuralism_N = mkN "structuralism" ; -lin structurally_Adv = mkAdv "structurally" ; -lin structure_N = mkN "structure" "structures"; -- from DictEng -lin structure_V2 = mkV2 (mkV "structure"); -- from DictEng -lin structured_A = compoundA (mkA "structured"); -- from DictEng -lin strudel_N = mkN "strudel" "strudels"; -- from DictEng -lin struggle_N = mkN "struggle" "struggles"; -- from DictEng -lin struggle_V = mkV "struggle" "struggles" "struggled" "struggled" "struggling"; -- from DictEng -lin struggle_VS = mkVS (mkV "struggle" "struggles" "struggled" "struggled" "struggling"); -- from DictEng -lin struggle_VV = mkVV (mkV "struggle" "struggles" "struggled" "struggled" "struggling"); -- from DictEng -lin struggler_N = mkN "struggler" ; -lin struggling_A = mkA "struggling" ; -lin strum_N = mkN "strum" "strums"; -- from DictEng -lin strum_V = mkV "strum" "strums" "strummed" "strummed" "strumming"; -- from DictEng -lin strum_V2 = mkV2 (mkV "strum" "strums" "strummed" "strummed" "strumming"); -- from DictEng -lin strumpet_N = mkN "strumpet" "strumpets"; -- from DictEng -lin strung_A = mkA "strung" ; -lin strut_N = mkN "strut" "struts"; -- from DictEng -lin strut_V = mkV "strut" "struts" "strutted" "strutted" "strutting"; -- from DictEng -lin strut_V2 = mkV2 (mkV "strut") ; -lin struthiomimus_N = mkN "struthiomimus" ; -lin strychnine_N = mkN "strychnine" ; -- from DictEng -lin stub_N = mkN "stub" "stubs"; -- from DictEng -lin stub_V2 = mkV2 (mkV "stub" "stubs" "stubbed" "stubbed" "stubbing"); -- from DictEng -lin stubble_N = mkN "stubble" ; -- from DictEng -lin stubbly_A = mkA "stubbly" "stubblier"; -- from DictEng -lin stubborn_A = compoundA (mkA "stubborn"); -- from DictEng -lin stubbornly_Adv = mkAdv "stubbornly" ; -lin stubbornness_N = mkN "stubbornness" ; -- from DictEng -lin stubby_A = mkA "stubby" "stubbier"; -- from DictEng -lin stucco_N = mkN "stucco" "stuccos"; -- from DictEng -lin stucco_V2 = mkV2 (mkV "stucco" "stuccos" "stuccoed" "stuccoed" "stuccoing"); -- from DictEng -lin stuck_A = mkA "stuck" ; -lin stuck_V2 = mkV2 (IrregEng.stick_V); -- from DictEng -lin stuck_up_A = compoundA (mkA "stuck - up"); -- from DictEng -lin stud_N = mkN "stud" "studs"; -- from DictEng -lin stud_V2 = mkV2 (mkV "stud" "studs" "studded" "studded" "studding"); -- from DictEng -lin stud_farm_N = mkN "stud - farm" "stud - farms"; -- from DictEng -lin stud_mare_N = mkN "stud - mare" "stud - mares"; -- from DictEng -lin studbook_N = mkN "studbook" "studbooks"; -- from DictEng -lin studded_A = mkA "studded" ; -lin student_N = mkN "student" "students"; -- from DictEng -lin studentship_N = mkN "studentship" ; -lin studied_A = compoundA (mkA "studied"); -- from DictEng -lin studio_N = mkN "studio" "studios"; -- from DictEng -lin studious_A = compoundA (mkA "studious"); -- from DictEng -lin studiously_Adv = mkAdv "studiously" ; -lin studiousness_N = mkN "studiousness" ; -- from DictEng -lin study_N = mkN "study" "studies"; -- from DictEng -lin study_V = mkV "study" "studies" "studied" "studied" "studying"; -- from DictEng -lin study_V2 = mkV2 (mkV "study" "studies" "studied" "studied" "studying"); -- from DictEng -lin stuff_N = mkN "stuff" "stuffs"; -- from DictEng -lin stuff_V2 = mkV2 (mkV "stuff" "stuffs" "stuffed" "stuffed" "stuffing"); -- from DictEng -lin stuffed_A = mkA "stuffed" ; -lin stuffer_N = mkN "stuffer" ; -lin stuffily_Adv = mkAdv "stuffily"; -- from DictEng -lin stuffiness_N = mkN "stuffiness" ; -- from DictEng -lin stuffing_N = mkN "stuffing" ; -- from DictEng -lin stuffy_A = mkA "stuffy" "stuffier"; -- from DictEng -lin stultification_N = mkN "stultification" "stultifications"; -- from DictEng -lin stultify_V2 = mkV2 (mkV "stultify" "stultifies" "stultified" "stultified" "stultifying"); -- from DictEng -lin stumble_N = mkN "stumble" "stumbles"; -- from DictEng -lin stumble_V = mkV "stumble" "stumbles" "stumbled" "stumbled" "stumbling"; -- from DictEng -lin stumble_V2 = mkV2 (mkV "stumble") ; -lin stumblebum_N = mkN "stumblebum" ; -lin stumbler_N = mkN "stumbler" ; -lin stumbling_block_N = mkN "stumbling - block" "stumbling - blocks"; -- from DictEng -lin stump_N = mkN "stump" "stumps"; -- from DictEng -lin stump_V = mkV "stump" "stumps" "stumped" "stumped" "stumping"; -- from DictEng -lin stump_V2 = mkV2 (mkV "stump" "stumps" "stumped" "stumped" "stumping"); -- from DictEng -lin stumper_N = mkN "stumper" "stumpers"; -- from DictEng -lin stumping_N = mkN "stumping" ; -lin stumpy_A = mkA "stumpy" "stumpier"; -- from DictEng -lin stun_V2 = mkV2 (mkV "stun" "stuns" "stunned" "stunned" "stunning"); -- from DictEng -lin stunne_V2V = mkV2V (mkV "stunne") noPrep to_Prep ; -- from DictEng -lin stunner_N = mkN "stunner" "stunners"; -- from DictEng -lin stunning_A = compoundA (mkA "stunning"); -- from DictEng -lin stunt_N = mkN "stunt" "stunts"; -- from DictEng -lin stunt_V2 = mkV2 (mkV "stunt" "stunts" "stunted" "stunted" "stunting"); -- from DictEng -lin stupa_N = mkN "stupa" ; -lin stupefaction_N = mkN "stupefaction" ; -- from DictEng -lin stupefy_V2 = mkV2 (mkV "stupefy" "stupefies" "stupefied" "stupefied" "stupefying"); -- from DictEng -lin stupefying_A = mkA "stupefying" ; -lin stupendous_A = compoundA (mkA "stupendous"); -- from DictEng -lin stupendously_Adv = mkAdv "stupendously" ; -lin stupid_A = compoundA (mkA "stupid"); -- from DictEng -lin stupid_N = mkN "stupid" "IRREG"; -- from DictEng -lin stupidity_N = mkN "stupidity" "stupidities"; -- from DictEng -lin stupidly_Adv = mkAdv "stupidly" ; -lin stupify_V2 = mkV2 (mkV "stupify" "stupifies" "stupified" "stupified" "stupifying"); -- from DictEng -lin stupifying_A = compoundA (mkA "stupifying"); -- from DictEng -lin stupor_N = mkN "stupor" "stupors"; -- from DictEng -lin sturdily_Adv = mkAdv "sturdily"; -- from DictEng -lin sturdiness_N = mkN "sturdiness" ; -- from DictEng -lin sturdy_A = mkA "sturdy" "sturdier"; -- from DictEng -lin sturgeon_N = mkN "sturgeon" "sturgeons"; -- from DictEng -lin stutter_N = mkN "stutter" "stutters"; -- from DictEng -lin stutter_V = mkV "stutter" "stutters" "stuttered" "stuttered" "stuttering"; -- from DictEng -lin stutter_V2 = mkV2 (mkV "stutter" "stutters" "stuttered" "stuttered" "stuttering"); -- from DictEng -lin stutterer_N = mkN "stutterer" "stutterers"; -- from DictEng -lin stutteringly_Adv = mkAdv "stutteringly"; -- from DictEng -lin sty_N = mkN "sty" "sties"; -- from DictEng -lin stye_N = mkN "stye" "styes"; -- from DictEng -lin stygian_A = compoundA (mkA "stygian"); -- from DictEng -lin style_N = mkN "style" "styles"; -- from DictEng -lin style_V2 = mkV2 (mkV "style" "styles" "styled" "styled" "styling"); -- from DictEng -lin styleless_A = mkA "styleless" ; -lin stylet_N = mkN "stylet" ; -lin stylish_A = compoundA (mkA "stylish"); -- from DictEng -lin stylishly_Adv = mkAdv "stylishly" ; -lin stylishness_N = mkN "stylishness" ; -- from DictEng -lin stylist_N = mkN "stylist" "stylists"; -- from DictEng -lin stylistic_A = compoundA (mkA "stylistic"); -- from DictEng -lin stylistically_Adv = mkAdv "stylistically"; -- from DictEng -lin stylite_N = mkN "stylite" ; -lin stylization_N = mkN "stylization" "stylizations"; -- from DictEng -lin stylize_V2 = mkV2 (mkV "stylize" "stylizes" "stylized" "stylized" "stylizing"); -- from DictEng -lin stylopodium_N = mkN "stylopodium" ; -lin stylus_N = mkN "stylus" "styluses"; -- from DictEng -lin stymie_N = mkN "stymie" "stymies"; -- from DictEng -lin stymie_V2 = mkV2 (mkV "stymie" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin stymy_V2 = mkV2 (mkV "stymy"); -- from DictEng -lin styptic_A = compoundA (mkA "styptic"); -- from DictEng -lin styptic_N = mkN "styptic" "styptics"; -- from DictEng -lin styracosaur_N = mkN "styracosaur" ; -lin styrax_N = mkN "styrax" ; -lin styrene_N = mkN "styrene" ; -lin suasion_N = mkN "suasion" ; -- from DictEng -lin suave_A = compoundA (mkA "suave"); -- from DictEng -lin suavely_Adv = mkAdv "suavely" ; -lin suavity_N = mkN "suavity" ; -- from DictEng -lin sub_N = mkN "sub" "subs"; -- from DictEng -lin sub_V = mkV "sub" "subs" "subbed" "subbed" "subbing"; -- from DictEng -lin sub_V2 = mkV2 (mkV "sub" "subs" "subbed" "subbed" "subbing"); -- from DictEng -lin sub_saharan_A = compoundA (mkA "sub Saharan") ; -lin sub_assembly_N = mkN "sub assembly" ; -lin sub_interval_N = mkN "sub interval" ; -lin sub_rosa_A = compoundA (mkA "sub rosa") ; -lin sub_test_N = mkN "sub test" ; -lin sub_judice_A = compoundA (mkA "sub judice"); -- from DictEng -lin sub_rosa_Adv = mkAdv "sub rosa"; -- from DictEng -lin sub_underwrite_V2 = mkV2 (mkV "sub - underwrite"); -- from DictEng -lin subacid_A = mkA "subacid" ; -lin subacute_A = mkA "subacute" ; -lin subaltern_N = mkN "subaltern" "subalterns"; -- from DictEng -lin subaqueous_A = mkA "subaqueous" ; -lin subarctic_A = mkA "subarctic" ; -lin subartesian_A = mkA "subartesian" ; -lin subatomic_A = compoundA (mkA "subatomic"); -- from DictEng -lin subbase_N = mkN "subbase" ; -lin subbing_N = mkN "subbing" ; -lin subclass_N = mkN "subclass" ; -lin subclavian_A = mkA "subclavian" ; -lin subclinical_A = mkA "subclinical" ; -lin subcommittee_N = mkN "subcommittee" "subcommittees"; -- from DictEng -lin subcompact_N = mkN "subcompact" ; -lin subconscious_A = compoundA (mkA "subconscious"); -- from DictEng -lin subconscious_N = mkN "subconscious" "subconscioi" {- FIXME: guessed plural form -}; -- from DictEng -lin subconsciously_Adv = mkAdv "subconsciously" ; -lin subconsciousness_N = mkN "subconsciousness" ; -- from DictEng -lin subcontinent_N = mkN "subcontinent" "subcontinents"; -- from DictEng -lin subcontract_N = mkN "subcontract" "subcontracts"; -- from DictEng -lin subcontract_V = mkV "subcontract" "subcontracts" "subcontracted" "subcontracted" "subcontracting"; -- from DictEng -lin subcontract_V2 = mkV2 (mkV "subcontract" "subcontracts" "subcontracted" "subcontracted" "subcontracting"); -- from DictEng -lin subcontractor_N = mkN "subcontractor" "subcontractors"; -- from DictEng -lin subcortical_A = mkA "subcortical" ; -lin subculture_N = mkN "subculture" ; -lin subcutaneous_A = compoundA (mkA "subcutaneous"); -- from DictEng -lin subcutaneously_Adv = mkAdv "subcutaneously" ; -lin subdeacon_N = mkN "subdeacon" ; -lin subdirectory_N = mkN "subdirectory" ; -lin subdivide_V = mkV "subdivide" "subdivides" "subdivided" "subdivided" "subdividing"; -- from DictEng -lin subdivide_V2 = mkV2 (mkV "subdivide" "subdivides" "subdivided" "subdivided" "subdividing"); -- from DictEng -lin subdivider_N = mkN "subdivider" ; -lin subdivision_N = mkN "subdivision" "subdivisions"; -- from DictEng -lin subdominant_N = mkN "subdominant" ; -lin subduable_A = mkA "subduable" ; -lin subduction_N = mkN "subduction" ; -lin subdue_V2 = mkV2 (mkV "subdue" "subdues" "subdued" "subdued" "subduing"); -- from DictEng -lin subdued_A = mkA "subdued" ; -lin subduer_N = mkN "subduer" ; -lin subdural_A = mkA "subdural" ; -lin subedit_V2 = mkV2 (mkV "subedit" "subedits" "subedited" "subedited" "subediting"); -- from DictEng -lin subeditor_N = mkN "subeditor" "subeditors"; -- from DictEng -lin subfamily_N = mkN "subfamily" ; -lin subfigure_N = mkN "subfigure" ; -lin subfusc_A = compoundA (mkA "subfusc"); -- from DictEng -lin subgenus_N = mkN "subgenus" ; -lin subgenus_azalea_PN = mkPN "subgenus Azalea" ; -lin subgenus_calliopsis_PN = mkPN "subgenus Calliopsis" ; -lin subgross_A = mkA "subgross" ; -lin subgroup_N = mkN "subgroup" "subgroups"; -- from DictEng -lin subheading_N = mkN "subheading" "subheadings"; -- from DictEng -lin subhuman_A = compoundA (mkA "subhuman"); -- from DictEng -lin subjacent_A = mkA "subjacent" ; -lin subject_A = mkA "subject" ; -lin subject_A2 = mkA2 (compoundA (mkA "subject")) to_Prep; -- from DictEng -lin subject_N = mkN "subject" "subjects"; -- from DictEng -lin subject_V2 = mkV2 (mkV "subject" "subjects" "subjected" "subjected" "subjecting"); -- from DictEng -lin subject_to_Prep = mkPrep "subject to"; -- from DictEng -lin subjection_N = mkN "subjection" ; -- from DictEng -lin subjective_A = compoundA (mkA "subjective"); -- from DictEng -lin subjectively_Adv = mkAdv "subjectively" ; -lin subjectivism_N = mkN "subjectivism" ; -lin subjectivist_N = mkN "subjectivist" ; -lin subjectivity_N = mkN "subjectivity" ; -- from DictEng -lin subjoin_V2 = mkV2 (mkV "subjoin" "subjoins" "subjoined" "subjoined" "subjoining"); -- from DictEng -lin subjugate_V2 = mkV2 (mkV "subjugate" "subjugates" "subjugated" "subjugated" "subjugating"); -- from DictEng -lin subjugated_A = mkA "subjugated" ; -lin subjugation_N = mkN "subjugation" "subjugations"; -- from DictEng -lin subjugator_N = mkN "subjugator" ; -lin subjunctive_A = compoundA (mkA "subjunctive"); -- from DictEng -lin subjunctive_N = mkN "subjunctive" "subjunctives"; -- from DictEng -lin subkingdom_N = mkN "subkingdom" ; -lin sublease_N = mkN "sublease" "subleases"; -- from DictEng -lin sublease_V = mkV "sublease" "subleases" "subleased" "subleased" "subleasing"; -- from DictEng -lin sublease_V2 = mkV2 (mkV "sublease" "subleases" "subleased" "subleased" "subleasing"); -- from DictEng -lin sublet_V = mkV "sub" IrregEng.let_V; -- from DictEng -lin sublet_V2 = mkV2 (mkV "sub" IrregEng.let_V); -- from DictEng -lin sublieutenant_N = mkN "sublieutenant" "sublieutenants"; -- from DictEng -lin sublimate_A = compoundA (mkA "sublimate"); -- from DictEng -lin sublimate_N = mkN "sublimate" "sublimates"; -- from DictEng -lin sublimate_V2 = mkV2 (mkV "sublimate" "sublimates" "sublimated" "sublimated" "sublimating"); -- from DictEng -lin sublimation_N = mkN "sublimation" "sublimations"; -- from DictEng -lin sublime_A = compoundA (mkA "sublime"); -- from DictEng -lin sublime_N = mkN "sublime" "IRREG"; -- from DictEng -lin sublimed_A = mkA "sublimed" ; -lin sublimely_Adv = mkAdv "sublimely" ; -lin subliminal_A = compoundA (mkA "subliminal"); -- from DictEng -lin sublimity_N = mkN "sublimity" ; -- from DictEng -lin sublingual_A = mkA "sublingual" ; -lin subliterary_A = mkA "subliterary" ; -lin sublittoral_A = mkA "sublittoral" ; -lin sublunar_A = mkA "sublunar" ; -lin subluxation_N = mkN "subluxation" ; -lin submarine_A = compoundA (mkA "submarine"); -- from DictEng -lin submarine_N = mkN "submarine" "submarines"; -- from DictEng -lin submariner_N = mkN "submariner" "submariners"; -- from DictEng -lin submediant_N = mkN "submediant" ; -lin submerge_V = mkV "submerge" "submerges" "submerged" "submerged" "submerging"; -- from DictEng -lin submerge_V2 = mkV2 (mkV "submerge" "submerges" "submerged" "submerged" "submerging"); -- from DictEng -lin submerged_A = compoundA (mkA "submerged"); -- from DictEng -lin submergence_N = mkN "submergence" ; -- from DictEng -lin submersible_A = compoundA (mkA "submersible"); -- from DictEng -lin submersible_N = mkN "submersible" ; -lin submersion_N = mkN "submersion" ; -- from DictEng -lin submission_N = mkN "submission" "submissions"; -- from DictEng -lin submissive_A = compoundA (mkA "submissive"); -- from DictEng -lin submissiveness_N = mkN "submissiveness" ; -- from DictEng -lin submit_V = mkV "submit" "submits" "submitted" "submitted" "submitting"; -- from DictEng -lin submit_V2 = mkV2 (mkV "submit" "submits" "submitted" "submitted" "submitting"); -- from DictEng -lin submitter_N = mkN "submitter" ; -lin submucosa_N = mkN "submucosa" ; -lin subnormal_A = compoundA (mkA "subnormal"); -- from DictEng -lin subnormal_N = mkN "subnormal" "subnormals"; -- from DictEng -lin subnormality_N = mkN "subnormality" ; -lin suboceanic_A = mkA "suboceanic" ; -lin suborbital_A = compoundA (mkA "suborbital"); -- from DictEng -lin suborder_N = mkN "suborder" ; -lin suborder_ceratosaura_PN = mkPN "suborder Ceratosaura" ; -lin suborder_pachycephalosaurus_PN = mkPN "suborder Pachycephalosaurus" ; -lin subordinate_A = compoundA (mkA "subordinate"); -- from DictEng -lin subordinate_N = mkN "subordinate" "subordinates"; -- from DictEng -lin subordinate_V2 = mkV2 (mkV "subordinate" "subordinates" "subordinated" "subordinated" "subordinating"); -- from DictEng -lin subordinateness_N = mkN "subordinateness" ; -lin subordinating_A = mkA "subordinating" ; -lin subordination_N = mkN "subordination" "subordinations"; -- from DictEng -lin subordinative_A = compoundA (mkA "subordinative"); -- from DictEng -lin suborn_V2 = mkV2 (mkV "suborn" "suborns" "suborned" "suborned" "suborning"); -- from DictEng -lin subornation_N = mkN "subornation" ; -- from DictEng -lin subpart_N = mkN "subpart" ; -lin subphylum_N = mkN "subphylum" ; -lin subpoena_N = mkN "subpoena" "subpoenas"; -- from DictEng -lin subpoena_V2 = mkV2 (mkV "subpoena" "subpoenas" "subpoenaed" "subpoenaed" "subpoenaing"); -- from DictEng -lin subpopulation_N = mkN "subpopulation" ; -lin subrogation_N = mkN "subrogation" ; -lin subscribe_V = mkV "subscribe" "subscribes" "subscribed" "subscribed" "subscribing"; -- from DictEng -lin subscribe_V2 = mkV2 (mkV "subscribe" "subscribes" "subscribed" "subscribed" "subscribing"); -- from DictEng -lin subscribed_A = mkA "subscribed" ; -lin subscriber_N = mkN "subscriber" "subscribers"; -- from DictEng -lin subscript_A = mkA "subscript" ; -lin subscript_N = mkN "subscript" "subscripts"; -- from DictEng -lin subscription_N = mkN "subscription" "subscriptions"; -- from DictEng -lin subsection_N = mkN "subsection" "subsections"; -- from DictEng -lin subsequent_A = compoundA (mkA "subsequent"); -- from DictEng -lin subsequently_Adv = mkAdv "subsequently" ; -lin subserve_V2 = mkV2 (mkV "subserve" "subserves" "subserved" "subserved" "subserving"); -- from DictEng -lin subservience_N = mkN "subservience" ; -- from DictEng -lin subservient_A = compoundA (mkA "subservient"); -- from DictEng -lin subset_N = mkN "subset" ; -lin subshrub_N = mkN "subshrub" ; -lin subside_V = mkV "subside" "subsides" "subsided" "subsided" "subsiding"; -- from DictEng -lin subsidence_N = mkN "subsidence" "subsidences"; -- from DictEng -lin subsidiary_A = compoundA (mkA "subsidiary"); -- from DictEng -lin subsidiary_N = mkN "subsidiary" "subsidiaries"; -- from DictEng -lin subsidization_N = mkN "subsidization" ; -- from DictEng -lin subsidize_V2 = mkV2 (mkV "subsidize" "subsidizes" "subsidized" "subsidized" "subsidizing"); -- from DictEng -lin subsidized_A = mkA "subsidized" ; -lin subsidizer_N = mkN "subsidizer" ; -lin subsidy_N = mkN "subsidy" "subsidies"; -- from DictEng -lin subsist_V = mkV "subsist" "subsists" "subsisted" "subsisted" "subsisting"; -- from DictEng -lin subsistence_N = mkN "subsistence" ; -- from DictEng -lin subsoil_N = mkN "subsoil" ; -- from DictEng -lin subsonic_A = compoundA (mkA "subsonic"); -- from DictEng -lin subspace_N = mkN "subspace" ; -lin subspecies_N = mkN "subspecies" ; -lin substance_N = mkN "substance" "substances"; -- from DictEng -lin substandard_A = compoundA (mkA "substandard"); -- from DictEng -lin substantial_A = compoundA (mkA "substantial"); -- from DictEng -lin substantiality_N = mkN "substantiality" ; -lin substantially_Adv = mkAdv "substantially" ; -lin substantiate_V2 = mkV2 (mkV "substantiate" "substantiates" "substantiated" "substantiated" "substantiating"); -- from DictEng -lin substantiation_N = mkN "substantiation" "substantiations"; -- from DictEng -lin substantival_A = compoundA (mkA "substantival"); -- from DictEng -lin substantive_A = compoundA (mkA "substantive"); -- from DictEng -lin substantive_N = mkN "substantive" "substantives"; -- from DictEng -lin substation_N = mkN "substation" "substations"; -- from DictEng -lin substitutable_A = mkA "substitutable" ; -lin substitute_N = mkN "substitute" "substitutes"; -- from DictEng -lin substitute_V = mkV "substitute" "substitutes" "substituted" "substituted" "substituting"; -- from DictEng -lin substitute_V2 = mkV2 (mkV "substitute" "substitutes" "substituted" "substituted" "substituting"); -- from DictEng -lin substitution_N = mkN "substitution" "substitutions"; -- from DictEng -lin substrate_N = mkN "substrate" "substrates"; -- from DictEng -lin substratum_N = mkN "substratum" "substrata" {- FIXME: guessed plural form -}; -- from DictEng -lin substring_N = mkN "substring" ; -lin substructure_N = mkN "substructure" "substructures"; -- from DictEng -lin subsume_V2 = mkV2 (mkV "subsume" "subsumes" "subsumed" "subsumed" "subsuming"); -- from DictEng -lin subsumption_N = mkN "subsumption" ; -lin subsurface_A = mkA "subsurface" ; -lin subsystem_N = mkN "subsystem" ; -lin subtend_V2 = mkV2 (mkV "subtend" "subtends" "subtended" "subtended" "subtending"); -- from DictEng -lin subterfuge_N = mkN "subterfuge" "subterfuges"; -- from DictEng -lin subterminal_A = mkA "subterminal" ; -lin subterranean_A = compoundA (mkA "subterranean"); -- from DictEng -lin subthalamus_N = mkN "subthalamus" ; -lin subtilin_N = mkN "subtilin" ; -lin subtitle_N = mkN "subtitle" "subtitles"; -- from DictEng -lin subtitle_VS = mkVS (mkV "subtitle"); -- from DictEng -lin subtle_A = mkA "subtle" "subtler"; -- from DictEng -lin subtlety_N = mkN "subtlety" "subtleties"; -- from DictEng -lin subtly_Adv = mkAdv "subtly"; -- from DictEng -lin subtonic_N = mkN "subtonic" ; -lin subtopia_N = mkN "subtopia" ; -- from DictEng -lin subtotal_N = mkN "subtotal" ; -lin subtract_V2 = mkV2 (mkV "subtract" "subtracts" "subtracted" "subtracted" "subtracting"); -- from DictEng -lin subtracter_N = mkN "subtracter" ; -lin subtraction_N = mkN "subtraction" "subtractions"; -- from DictEng -lin subtractive_A = mkA "subtractive" ; -lin subtrahend_N = mkN "subtrahend" ; -lin subtreasury_N = mkN "subtreasury" ; -lin subtropical_A = compoundA (mkA "subtropical"); -- from DictEng -lin subtropics_N = mkN "subtropics" ; -lin suburb_N = mkN "suburb" "suburbs"; -- from DictEng -lin suburban_A = compoundA (mkA "suburban"); -- from DictEng -lin suburbanite_N = mkN "suburbanite" ; -lin suburbanized_A = mkA "suburbanized" ; -lin suburbia_N = mkN "suburbia" ; -- from DictEng -lin subvention_N = mkN "subvention" "subventions"; -- from DictEng -lin subversion_N = mkN "subversion" ; -- from DictEng -lin subversive_A = compoundA (mkA "subversive"); -- from DictEng -lin subversive_N = mkN "subversive" "subversives"; -- from DictEng -lin subvert_V2 = mkV2 (mkV "subvert" "subverts" "subverted" "subverted" "subverting"); -- from DictEng -lin subvocalizer_N = mkN "subvocalizer" ; -lin subway_N = mkN "subway" "subways"; -- from DictEng -lin subwoofer_N = mkN "subwoofer" ; -lin succedaneum_N = mkN "succedaneum" ; -lin succeed_V = mkV "succeed" "succeeds" "succeeded" "succeeded" "succeeding"; -- from DictEng -lin succeed_V2 = mkV2 (mkV "succeed" "succeeds" "succeeded" "succeeded" "succeeding"); -- from DictEng -lin succeeding_A = mkA "succeeding" ; -lin success_N = mkN "success" "successes"; -- from DictEng -lin successful_A = compoundA (mkA "successful"); -- from DictEng -lin successfully_Adv = mkAdv "successfully" ; -lin succession_N = mkN "succession" "successions"; -- from DictEng -lin successive_A = compoundA (mkA "successive"); -- from DictEng -lin successively_Adv = mkAdv "successively" ; -lin successor_N = mkN "successor" "successors"; -- from DictEng -lin succinct_A = compoundA (mkA "succinct"); -- from DictEng -lin succinctly_Adv = mkAdv "succinctly" ; -lin succinctness_N = mkN "succinctness" ; -- from DictEng -lin succinic_A = mkA "succinic" ; -lin succinylcholine_N = mkN "succinylcholine" ; -lin succor_V2 = mkV2 (mkV "succor") ; -lin succorer_N = mkN "succorer" ; -lin succotash_N = mkN "succotash" ; -lin succour_N = mkN "succour" ; -- from DictEng -lin succour_V2 = mkV2 (mkV "succour" "succours" "succoured" "succoured" "succouring"); -- from DictEng -lin succubus_N = mkN "succubus" "succubuses"; -- from DictEng -lin succulence_N = mkN "succulence" ; -- from DictEng -lin succulent_A = compoundA (mkA "succulent"); -- from DictEng -lin succulent_N = mkN "succulent" "succulents"; -- from DictEng -lin succumb_V = mkV "succumb" "succumbs" "succumbed" "succumbed" "succumbing"; -- from DictEng -lin succussion_N = mkN "succussion" ; -lin such_A = mkA "such" ; -lin such_Adv = mkAdv "such" ; -lin such_Predet = ss "such"; -- from DictEng -lin such_as_Prep = mkPrep "such as"; -- from DictEng -lin suchlike_A = compoundA (mkA "suchlike"); -- from DictEng -lin suck_N = mkN "suck" "sucks"; -- from DictEng -lin suck_V = mkV "suck" "sucks" "sucked" "sucked" "sucking"; -- from DictEng -lin suck_V2 = mkV2 (mkV "suck" "sucks" "sucked" "sucked" "sucking"); -- from DictEng -lin sucker_N = mkN "sucker" "suckers"; -- from DictEng -lin sucking_N = mkN "sucking" ; -lin sucking_pig_N = mkN "sucking - pig" "sucking - pigs"; -- from DictEng -lin suckle_V2 = mkV2 (mkV "suckle" "suckles" "suckled" "suckled" "suckling"); -- from DictEng -lin suckling_N = mkN "suckling" "sucklings"; -- from DictEng -lin sucralfate_N = mkN "sucralfate" ; -lin sucre_N = mkN "sucre" ; -lin sucrose_N = mkN "sucrose" ; -lin suction_N = mkN "suction" ; -- from DictEng -lin suctorial_A = mkA "suctorial" ; -lin sudanese_A = compoundA (mkA "sudanese"); -- from DictEng -lin sudanese_N = mkN "sudanese" "sudanese"; -- from DictEng -lin sudatorium_N = mkN "sudatorium" ; -lin sudden_A = compoundA (mkA "sudden"); -- from DictEng -lin sudden_N = mkN "sudden" "IRREG"; -- from DictEng -lin suddenly_Adv = mkAdv "suddenly" ; -lin suddenness_N = mkN "suddenness" ; -- from DictEng -lin sudoku_N = mkN "sudoku" ; -lin sudorific_N = mkN "sudorific" ; -lin sudra_N = mkN "sudra" ; -lin suds_N = mkN "suds" ; -lin sue_V = mkV "sue" "sues" "sued" "sued" "suing"; -- from DictEng -lin sue_V2 = mkV2 (mkV "sue" "sues" "sued" "sued" "suing"); -- from DictEng -lin sue_V2V = mkV2V (mkV "sue" "sues" "sued" "sued" "suing") noPrep to_Prep ; -- from DictEng -lin suede_N = mkN "suede" ; -- from DictEng -lin suer_N = mkN "suer" ; -lin suet_N = mkN "suet" ; -- from DictEng -lin suety_A = compoundA (mkA "suety"); -- from DictEng -lin suffer_V = mkV "suffer" "suffers" "suffered" "suffered" "suffering"; -- from DictEng -lin suffer_V2 = mkV2 (mkV "suffer" "suffers" "suffered" "suffered" "suffering"); -- from DictEng -lin sufferable_A = compoundA (mkA "sufferable"); -- from DictEng -lin sufferance_N = mkN "sufferance" ; -- from DictEng -lin sufferer_N = mkN "sufferer" "sufferers"; -- from DictEng -lin suffering_A = mkA "suffering" ; -lin suffering_N = mkN "suffering" "sufferings"; -- from DictEng -lin suffice_V = mkV "suffice" "suffices" "sufficed" "sufficed" "sufficing"; -- from DictEng -lin suffice_V2 = mkV2 (mkV "suffice" "suffices" "sufficed" "sufficed" "sufficing"); -- from DictEng -lin suffice_V2V = mkV2V (mkV "suffice" "suffices" "sufficed" "sufficed" "sufficing") noPrep to_Prep ; -- from DictEng -lin sufficiency_N = mkN "sufficiency" ; -- from DictEng -lin sufficient_A = compoundA (mkA "sufficient"); -- from DictEng -lin sufficiently_Adv = mkAdv "sufficiently" ; -lin suffix_N = mkN "suffix" "suffixes"; -- from DictEng -lin suffixation_N = mkN "suffixation" ; -lin suffocate_V = mkV "suffocate" "suffocates" "suffocated" "suffocated" "suffocating"; -- from DictEng -lin suffocate_V2 = mkV2 (mkV "suffocate" "suffocates" "suffocated" "suffocated" "suffocating"); -- from DictEng -lin suffocation_N = mkN "suffocation" ; -- from DictEng -lin suffragan_N = mkN "suffragan" "suffragans"; -- from DictEng -lin suffrage_N = mkN "suffrage" "suffrages"; -- from DictEng -lin suffragette_N = mkN "suffragette" "suffragettes"; -- from DictEng -lin suffragism_N = mkN "suffragism" ; -lin suffragist_N = mkN "suffragist" ; -lin suffrutescent_A = mkA "suffrutescent" ; -lin suffuse_V2 = mkV2 (mkV "suffuse" "suffuses" "suffused" "suffused" "suffusing"); -- from DictEng -lin suffusion_N = mkN "suffusion" ; -- from DictEng -lin suffusive_A = mkA "suffusive" ; -lin sugar_N = mkN "sugar" "sugars"; -- from DictEng -lin sugar_V2 = mkV2 (mkV "sugar" "sugars" "sugared" "sugared" "sugaring"); -- from DictEng -lin sugar_bush_N = mkN "sugar bush" ; -lin sugar_beet_N = mkN "sugar - beet" "sugar - beet"; -- from DictEng -lin sugar_candy_N = mkN "sugar - candy" "sugar - candies"; -- from DictEng -lin sugar_cane_N = mkN "sugar - cane" ; -- from DictEng -lin sugar_coated_A = compoundA (mkA "sugar - coated"); -- from DictEng -lin sugar_daddy_N = mkN "sugar - daddy" "sugar - daddies"; -- from DictEng -lin sugar_loaf_N = mkN "sugar - loaf" ; -- from DictEng -lin sugar_refinery_N = mkN "sugar - refinery" "sugar - refineries"; -- from DictEng -lin sugarberry_N = mkN "sugarberry" ; -lin sugarcane_N = mkN "sugarcane" ; -lin sugared_A = mkA "sugared" ; -lin sugariness_N = mkN "sugariness" ; -lin sugarless_A = mkA "sugarless" ; -lin sugarloaf_N = mkN "sugarloaf" ; -lin sugarlump_N = mkN "sugarlump" "sugarlumps"; -- from DictEng -lin sugarplum_N = mkN "sugarplum" ; -lin sugary_A = mkA "sugary" "sugarier"; -- from DictEng -lin suggest_V = mkV "suggest"; -- from DictEng -lin suggest_V2 = mkV2 (mkV "suggest" "suggests" "suggested" "suggested" "suggesting"); -- from DictEng -lin suggest_VS = mkVS (mkV "suggest"); -- from DictEng -lin suggester_N = mkN "suggester" ; -lin suggestibility_N = mkN "suggestibility" ; -- from DictEng -lin suggestible_A = compoundA (mkA "suggestible"); -- from DictEng -lin suggestion_N = mkN "suggestion" "suggestions"; -- from DictEng -lin suggestive_A = compoundA (mkA "suggestive"); -- from DictEng -lin suggestively_Adv = mkAdv "suggestively" ; -lin sui_generis_A = compoundA (mkA "sui generis") ; -lin suicidal_A = compoundA (mkA "suicidal"); -- from DictEng -lin suicide_N = mkN "suicide" "suicides"; -- from DictEng -lin suit_N = mkN "suit" "suits"; -- from DictEng -lin suit_V = mkV "suit" "suits" "suited" "suited" "suiting"; -- from DictEng -lin suit_V2 = mkV2 (mkV "suit" "suits" "suited" "suited" "suiting"); -- from DictEng -lin suitability_N = mkN "suitability" ; -- from DictEng -lin suitable_A = compoundA (mkA "suitable"); -- from DictEng -lin suitableness_N = mkN "suitableness" ; -- from DictEng -lin suitcase_N = mkN "suitcase" "suitcases"; -- from DictEng -lin suite_N = mkN "suite" "suites"; -- from DictEng -lin suited_A = mkA "suited" ; -lin suiting_N = mkN "suiting" ; -- from DictEng -lin suitor_N = mkN "suitor" "suitors"; -- from DictEng -lin sukiyaki_N = mkN "sukiyaki" ; -lin suksdorfia_N = mkN "suksdorfia" ; -lin sulcate_A = mkA "sulcate" ; -lin sulcus_N = mkN "sulcus" ; -lin sulfacetamide_N = mkN "sulfacetamide" ; -lin sulfadiazine_N = mkN "sulfadiazine" ; -lin sulfamethazine_N = mkN "sulfamethazine" ; -lin sulfamethoxazole_N = mkN "sulfamethoxazole" ; -lin sulfanilamide_N = mkN "sulfanilamide" ; -lin sulfapyridine_N = mkN "sulfapyridine" ; -lin sulfate_N = mkN "sulfate" ; -lin sulfide_N = mkN "sulfide" ; -lin sulfisoxazole_N = mkN "sulfisoxazole" ; -lin sulfonate_N = mkN "sulfonate" ; -lin sulfonylurea_N = mkN "sulfonylurea" ; -lin sulfur_N = mkN "sulfur" ; -lin sulfur_yellow_A = compoundA (mkA "sulfur yellow") ; -lin sulfurous_A = mkA "sulfurous" ; -lin sulindac_N = mkN "sulindac" ; -lin sulk_N = mkN "sulk" "sulks"; -- from DictEng -lin sulk_V = mkV "sulk" "sulks" "sulked" "sulked" "sulking"; -- from DictEng -lin sulkily_Adv = mkAdv "sulkily"; -- from DictEng -lin sulkiness_N = mkN "sulkiness" ; -- from DictEng -lin sulky_A = mkA "sulky" "sulkier"; -- from DictEng -lin sulky_N = mkN "sulky" "sulkies"; -- from DictEng -lin sullen_A = compoundA (mkA "sullen"); -- from DictEng -lin sullenness_N = mkN "sullenness" ; -- from DictEng -lin sully_V2 = mkV2 (mkV "sully" "sullies" "sullied" "sullied" "sullying"); -- from DictEng -lin sulpha_N = mkN "sulpha" ; -- from DictEng -lin sulphate_N = mkN "sulphate" "sulphates"; -- from DictEng -lin sulphide_N = mkN "sulphide" "sulphides"; -- from DictEng -lin sulphur_N = mkN "sulphur" ; -- from DictEng -lin sulphuretted_A = compoundA (mkA "sulphuretted"); -- from DictEng -lin sulphuric_A = compoundA (mkA "sulphuric"); -- from DictEng -lin sulphurous_A = compoundA (mkA "sulphurous"); -- from DictEng -lin sultan_N = mkN "sultan" "sultans"; -- from DictEng -lin sultana_N = mkN "sultana" "sultanas"; -- from DictEng -lin sultanate_N = mkN "sultanate" "sultanates"; -- from DictEng -lin sultrily_Adv = mkAdv "sultrily"; -- from DictEng -lin sultriness_N = mkN "sultriness" ; -- from DictEng -lin sultry_A = mkA "sultry" "sultrier"; -- from DictEng -lin sum_N = mkN "sum" "sums"; -- from DictEng -lin sum_V = mkV "sum" "sums" "summed" "summed" "summing"; -- from DictEng -lin sum_V2 = mkV2 (mkV "sum" "sums" "summed" "summed" "summing"); -- from DictEng -lin sumac_N = mkN "sumac" ; -- from DictEng -lin sumach_N = mkN "sumach" ; -- from DictEng -lin sumatran_A = compoundA (mkA "sumatran"); -- from DictEng -lin sumatran_N = mkN "sumatran" "sumatrans"; -- from DictEng -lin summa_cum_laude_A = compoundA (mkA "summa cum laude") ; -lin summa_cum_laude_Adv = mkAdv "summa cum laude" ; -lin summarily_Adv = mkAdv "summarily" ; -lin summarization_N = mkN "summarization" ; -lin summarize_V2 = mkV2 (mkV "summarize" "summarizes" "summarized" "summarized" "summarizing"); -- from DictEng -lin summary_A = compoundA (mkA "summary"); -- from DictEng -lin summary_N = mkN "summary" "summaries"; -- from DictEng -lin summation_N = mkN "summation" "summations"; -- from DictEng -lin summational_A = mkA "summational" ; -lin summer_N = mkN "summer" "summers"; -- from DictEng -lin summer_V = mkV "summer" "summers" "summered" "summered" "summering"; -- from DictEng -lin summer_flowering_A = compoundA (mkA "summer flowering") ; -lin summercaters_N = mkN "summercaters" ; -lin summerhouse_N = mkN "summerhouse" "summerhouses"; -- from DictEng -lin summertime_N = mkN "summertime" "summertimes"; -- from DictEng -lin summery_A = mkA "summery" "summerier"; -- from DictEng -lin summing_up_N = mkN "summing - up" "summing - ups"; -- from DictEng -lin summit_N = mkN "summit" "summits"; -- from DictEng -lin summon_V2 = mkV2 (mkV "summon" "summons" "summoned" "summoned" "summoning"); -- from DictEng -lin summons_N = mkN "summons" "summonses"; -- from DictEng -lin summons_V2 = mkV2 (mkV "summons" "summonses" "summonsed" "summonsed" "summonsing"); -- from DictEng -lin sumo_N = mkN "sumo" ; -lin sump_N = mkN "sump" "sumps"; -- from DictEng -lin sumpsimus_N = mkN "sumpsimus" ; -lin sumpter_N = mkN "sumpter" "sumpters"; -- from DictEng -lin sumptuary_A = compoundA (mkA "sumptuary"); -- from DictEng -lin sumptuous_A = compoundA (mkA "sumptuous"); -- from DictEng -lin sumptuously_Adv = mkAdv "sumptuously" ; -lin sumptuousness_N = mkN "sumptuousness" ; -- from DictEng -lin sun_N = mkN "sun" "suns"; -- from DictEng -lin sun_V2 = mkV2 (mkV "sun" "suns" "sunned" "sunned" "sunning"); -- from DictEng -lin sun_drenched_A = compoundA (mkA "sun - drenched"); -- from DictEng -lin sun_dried_A = compoundA (mkA "sun - dried"); -- from DictEng -lin sun_loving_A = compoundA (mkA "sun loving") ; -lin sun_drenched_A = compoundA (mkA "sun - drenched"); -- from DictEng -lin sun_dried_A = compoundA (mkA "sun - dried"); -- from DictEng -lin sun_god_N = mkN "sun - god" "sun - gods"; -- from DictEng -lin sun_helmet_N = mkN "sun - helmet" "sun - helmets"; -- from DictEng -lin sun_lounge_N = mkN "sun - lounge" "sun - lounges"; -- from DictEng -lin sun_parlour_N = mkN "sun - parlour" "sun - parlours"; -- from DictEng -lin sun_porch_N = mkN "sun - porch" "sun - porches"; -- from DictEng -lin sun_up_N = mkN "sun - up" ; -- from DictEng -lin sun_visor_N = mkN "sun - visor" "sun - visors"; -- from DictEng -lin sun_worship_N = mkN "sun - worship" ; -- from DictEng -lin sunbaked_A = compoundA (mkA "sunbaked"); -- from DictEng -lin sunbathe_N = mkN "sunbathe" "IRREG"; -- from DictEng -lin sunbathe_V = mkV "sunbathe" "sunbathes" "sunbathed" "sunbathed" "sunbathing"; -- from DictEng -lin sunbathe_V2 = mkV2 (mkV "sunbathe") ; -lin sunbather_N = mkN "sunbather" ; -lin sunbeam_N = mkN "sunbeam" "sunbeams"; -- from DictEng -lin sunblind_N = mkN "sunblind" "sunblinds"; -- from DictEng -lin sunbonnet_N = mkN "sunbonnet" "sunbonnets"; -- from DictEng -lin sunburn_N = mkN "sunburn" "sunburns"; -- from DictEng -lin sunburned_A = compoundA (mkA "sunburned"); -- from DictEng -lin sunburnt_A = compoundA (mkA "sunburnt"); -- from DictEng -lin sunburst_N = mkN "sunburst" "sunbursts"; -- from DictEng -lin sundae_N = mkN "sundae" "sundaes"; -- from DictEng -lin sunday_N = mkN "Sunday" "Sundays"; -- from DictEng -lin sunder_N = mkN "sunder" ; -- from DictEng -lin sunder_V2 = mkV2 (mkV "sunder" "sunders" "sundered" "sundered" "sundering"); -- from DictEng -lin sundew_N = mkN "sundew" ; -lin sundial_N = mkN "sundial" "sundials"; -- from DictEng -lin sundown_N = mkN "sundown" ; -- from DictEng -lin sundowner_N = mkN "sundowner" "sundowners"; -- from DictEng -lin sundress_N = mkN "sundress" ; -lin sundries_N = mkN "sundries" ; -lin sundrops_N = mkN "sundrops" ; -lin sundry_A = compoundA (mkA "sundry"); -- from DictEng -lin sunfish_N = mkN "sunfish" "sunfish"; -- from DictEng -lin sunflower_N = mkN "sunflower" "sunflowers"; -- from DictEng -lin sunglass_N = mkN "sunglass" ; -lin sunglasses_N = mkN "sunglasses" ; -lin sunhat_N = mkN "sunhat" "sunhats"; -- from DictEng -lin sunlamp_N = mkN "sunlamp" "sunlamps"; -- from DictEng -lin sunless_A = compoundA (mkA "sunless"); -- from DictEng -lin sunlight_N = mkN "sunlight" ; -- from DictEng -lin sunlit_A = compoundA (mkA "sunlit"); -- from DictEng -lin sunnily_Adv = mkAdv "sunnily"; -- from DictEng -lin sunniness_N = mkN "sunniness" ; -lin sunny_A = mkA "sunny" "sunnier"; -- from DictEng -lin sunny_side_up_A = compoundA (mkA "sunny side up") ; -lin sunray_A = compoundA (mkA "sunray"); -- from DictEng -lin sunray_N = mkN "sunray" ; -lin sunrise_A = mkA "sunrise" ; -lin sunrise_N = mkN "sunrise" "sunrises"; -- from DictEng -lin sunroof_N = mkN "sunroof" "sunroofs"; -- from DictEng -lin sunscreen_N = mkN "sunscreen" ; -lin sunset_A = mkA "sunset" ; -lin sunset_N = mkN "sunset" "sunsets"; -- from DictEng -lin sunshade_N = mkN "sunshade" "sunshades"; -- from DictEng -lin sunshine_N = mkN "sunshine" ; -- from DictEng -lin sunshine_roof_N = mkN "sunshine - roof" "sunshine - roofs"; -- from DictEng -lin sunspot_N = mkN "sunspot" "sunspots"; -- from DictEng -lin sunstone_N = mkN "sunstone" ; -lin sunstroke_N = mkN "sunstroke" ; -- from DictEng -lin sunsuit_N = mkN "sunsuit" ; -lin suntan_N = mkN "suntan" "suntans"; -- from DictEng -lin suntrap_N = mkN "suntrap" "suntraps"; -- from DictEng -lin sup_N = mkN "sup" "sups"; -- from DictEng -lin sup_V = mkV "sup" "sups" "supped" "supped" "supping"; -- from DictEng -lin sup_V2 = mkV2 (mkV "sup" "sups" "supped" "supped" "supping"); -- from DictEng -lin super_A = compoundA (mkA "super"); -- from DictEng -lin super_N = mkN "super" "supers"; -- from DictEng -lin superabundance_N = mkN "superabundance" "IRREG"; -- from DictEng -lin superabundant_A = compoundA (mkA "superabundant"); -- from DictEng -lin superannuate_V2 = mkV2 (mkV "superannuate" "superannuates" "superannuated" "superannuated" "superannuating"); -- from DictEng -lin superannuated_A = compoundA (mkA "superannuated"); -- from DictEng -lin superannuation_N = mkN "superannuation" "superannuations"; -- from DictEng -lin superb_A = compoundA (mkA "superb"); -- from DictEng -lin superbug_N = mkN "superbug" ; -lin supercargo_N = mkN "supercargo" "supercargoes"; -- from DictEng -lin supercede_V2 = mkV2 (mkV "supercede"); -- from DictEng -lin supercharged_A = compoundA (mkA "supercharged"); -- from DictEng -lin supercharger_N = mkN "supercharger" "superchargers"; -- from DictEng -lin supercilious_A = compoundA (mkA "supercilious"); -- from DictEng -lin superciliousness_N = mkN "superciliousness" ; -- from DictEng -lin superclass_N = mkN "superclass" ; -lin superclass_myriapoda_PN = mkPN "superclass Myriapoda" ; -lin supercomputer_N = mkN "supercomputer" ; -lin superconductivity_N = mkN "superconductivity" ; -lin supercritical_A = mkA "supercritical" ; -lin superego_N = mkN "superego" ; -- from DictEng -lin supererogation_N = mkN "supererogation" ; -- from DictEng -lin superfamily_N = mkN "superfamily" ; -lin superfatted_A = compoundA (mkA "superfatted"); -- from DictEng -lin superfecta_N = mkN "superfecta" ; -lin superfecundation_N = mkN "superfecundation" ; -lin superfetation_N = mkN "superfetation" ; -lin superficial_A = compoundA (mkA "superficial"); -- from DictEng -lin superficiality_N = mkN "superficiality" "superficialities"; -- from DictEng -lin superficially_Adv = mkAdv "superficially" ; -lin superficies_N = mkN "superficies" "superficies"; -- from DictEng -lin superfine_A = compoundA (mkA "superfine"); -- from DictEng -lin superfluity_N = mkN "superfluity" "superfluities"; -- from DictEng -lin superfluous_A = compoundA (mkA "superfluous"); -- from DictEng -lin superfluously_Adv = mkAdv "superfluously" ; -lin supergiant_N = mkN "supergiant" ; -lin supergrass_N = mkN "supergrass" ; -lin superhighway_N = mkN "superhighway" ; -lin superhuman_A = compoundA (mkA "superhuman"); -- from DictEng -lin superimpose_V2 = mkV2 (mkV "superimpose" "superimposes" "superimposed" "superimposed" "superimposing"); -- from DictEng -lin superincumbent_A = mkA "superincumbent" ; -lin superinfection_N = mkN "superinfection" ; -lin superintend_V = mkV "superintend" "superintends" "superintended" "superintended" "superintending"; -- from DictEng -lin superintend_V2 = mkV2 (mkV "superintend" "superintends" "superintended" "superintended" "superintending"); -- from DictEng -lin superintendence_N = mkN "superintendence" ; -- from DictEng -lin superintendent_N = mkN "superintendent" "superintendents"; -- from DictEng -lin superior_A = compoundA (mkA "superior"); -- from DictEng -lin superior_N = mkN "superior" "superiors"; -- from DictEng -lin superiority_N = mkN "superiority" ; -- from DictEng -lin superjacent_A = mkA "superjacent" ; -lin superlative_A = compoundA (mkA "superlative"); -- from DictEng -lin superlative_N = mkN "superlative" "superlatives"; -- from DictEng -lin superlatively_Adv = mkAdv "superlatively" ; -lin superman_N = mkN "superman" "supermen" {- FIXME: guessed plural form -}; -- from DictEng -lin supermarket_N = mkN "supermarket" "supermarkets"; -- from DictEng -lin supermarketer_N = mkN "supermarketer" ; -lin supermodel_N = mkN "supermodel" ; -lin supermom_N = mkN "supermom" ; -lin supernal_A = compoundA (mkA "supernal"); -- from DictEng -lin supernatant_A = mkA "supernatant" ; -lin supernatant_N = mkN "supernatant" ; -lin supernatural_A = compoundA (mkA "supernatural"); -- from DictEng -lin supernatural_N = mkN "supernatural" ; -lin supernaturalism_N = mkN "supernaturalism" ; -lin supernaturalist_A = mkA "supernaturalist" ; -lin supernormal_A = compoundA (mkA "supernormal"); -- from DictEng -lin supernova_N = mkN "supernova" ; -lin supernumerary_N = mkN "supernumerary" "supernumeraries"; -- from DictEng -lin superorder_N = mkN "superorder" ; -lin superordinate_A = mkA "superordinate" ; -lin superoxide_N = mkN "superoxide" ; -lin superphylum_N = mkN "superphylum" ; -lin superposition_N = mkN "superposition" ; -lin supersaturated_A = mkA "supersaturated" ; -lin superscript_A = mkA "superscript" ; -lin superscript_N = mkN "superscript" ; -lin superscription_N = mkN "superscription" "superscriptions"; -- from DictEng -lin supersede_V2 = mkV2 (mkV "supersede" "supersedes" "superseded" "superseded" "superseding"); -- from DictEng -lin supersedure_N = mkN "supersedure" ; -lin supersession_N = mkN "supersession" ; -- from DictEng -lin supersonic_A = compoundA (mkA "supersonic"); -- from DictEng -lin superstition_N = mkN "superstition" "superstitions"; -- from DictEng -lin superstitious_A = compoundA (mkA "superstitious"); -- from DictEng -lin superstitiously_Adv = mkAdv "superstitiously" ; -lin superstrate_N = mkN "superstrate" ; -lin superstring_N = mkN "superstring" ; -lin superstructure_N = mkN "superstructure" "superstructures"; -- from DictEng -lin supersymmetry_N = mkN "supersymmetry" ; -lin supertanker_N = mkN "supertanker" ; -lin supertax_N = mkN "supertax" "supertaxes"; -- from DictEng -lin supertitle_N = mkN "supertitle" ; -lin supertonic_N = mkN "supertonic" ; -lin supertwister_N = mkN "supertwister" ; -lin supervene_V = mkV "supervene" "supervenes" "supervened" "supervened" "supervening"; -- from DictEng -lin supervention_N = mkN "supervention" ; -lin supervise_V = mkV "supervise" "supervises" "supervised" "supervised" "supervising"; -- from DictEng -lin supervise_V2 = mkV2 (mkV "supervise" "supervises" "supervised" "supervised" "supervising"); -- from DictEng -lin supervised_A = mkA "supervised" ; -lin supervision_N = mkN "supervision" "supervisions"; -- from DictEng -lin supervisor_N = mkN "supervisor" "supervisors"; -- from DictEng -lin supervisory_A = compoundA (mkA "supervisory"); -- from DictEng -lin supination_N = mkN "supination" ; -lin supinator_N = mkN "supinator" ; -lin supine_A = compoundA (mkA "supine"); -- from DictEng -lin supinely_Adv = mkAdv "supinely" ; -lin supper_N = mkN "supper" "suppers"; -- from DictEng -lin supperless_A = compoundA (mkA "supperless"); -- from DictEng -lin supping_N = mkN "supping" ; -lin supplant_V2 = mkV2 (mkV "supplant" "supplants" "supplanted" "supplanted" "supplanting"); -- from DictEng -lin supplanter_N = mkN "supplanter" "supplanters"; -- from DictEng -lin supplanting_N = mkN "supplanting" ; -lin supple_A = mkA "supple" "suppler"; -- from DictEng -lin supplejack_N = mkN "supplejack" ; -lin supplement_N = mkN "supplement" "supplements"; -- from DictEng -lin supplement_V2 = mkV2 (mkV "supplement" "supplements" "supplemented" "supplemented" "supplementing"); -- from DictEng -lin supplementary_A = compoundA (mkA "supplementary"); -- from DictEng -lin supplementation_N = mkN "supplementation" ; -lin suppleness_N = mkN "suppleness" ; -- from DictEng -lin suppliant_A = compoundA (mkA "suppliant"); -- from DictEng -lin suppliant_N = mkN "suppliant" "suppliants"; -- from DictEng -lin supplicant_N = mkN "supplicant" "supplicants"; -- from DictEng -lin supplicate_V = mkV "supplicate" "supplicates" "supplicated" "supplicated" "supplicating"; -- from DictEng -lin supplicate_V2 = mkV2 (mkV "supplicate" "supplicates" "supplicated" "supplicated" "supplicating"); -- from DictEng -lin supplicate_VS = mkVS (mkV "supplicate" ); -lin supplication_N = mkN "supplication" "supplications"; -- from DictEng -lin supplier_N = mkN "supplier" "suppliers"; -- from DictEng -lin supply_N = mkN "supply" "supplies"; -- from DictEng -lin supply_V2 = mkV2 (mkV "supply" "supplies" "supplied" "supplied" "supplying"); -- from DictEng -lin support_N = mkN "support" "supports"; -- from DictEng -lin support_V2 = mkV2 (mkV "support" "supports" "supported" "supported" "supporting"); -- from DictEng -lin supportable_A = compoundA (mkA "supportable"); -- from DictEng -lin supported_A = mkA "supported" ; -lin supporter_N = mkN "supporter" "supporters"; -- from DictEng -lin supportive_A = mkA "supportive" ; -lin suppose_V2 = mkV2 (mkV "suppose" "supposes" "supposed" "supposed" "supposing"); -- from DictEng -lin suppose_VS = mkVS (mkV "suppose" "supposes" "supposed" "supposed" "supposing"); -- from DictEng -lin suppose_VV = mkVV (mkV "suppose" "supposes" "supposed" "supposed" "supposing"); -- from DictEng -lin supposed_A = compoundA (mkA "supposed"); -- from DictEng -lin supposition_N = mkN "supposition" "suppositions"; -- from DictEng -lin suppository_N = mkN "suppository" "suppositories"; -- from DictEng -lin suppress_V2 = mkV2 (mkV "suppress" "suppresses" "suppressed" "suppressed" "suppressing"); -- from DictEng -lin suppressant_N = mkN "suppressant" ; -lin suppressed_A = mkA "suppressed" ; -lin suppression_N = mkN "suppression" "suppressions"; -- from DictEng -lin suppressive_A = compoundA (mkA "suppressive"); -- from DictEng -lin suppressor_N = mkN "suppressor" "suppressors"; -- from DictEng -lin suppurate_V = mkV "suppurate" "suppurates" "suppurated" "suppurated" "suppurating"; -- from DictEng -lin suppuration_N = mkN "suppuration" "suppurations"; -- from DictEng -lin suppurative_A = mkA "suppurative" ; -lin supra_Adv = mkAdv "supra"; -- from DictEng -lin suprainfection_N = mkN "suprainfection" ; -lin supranational_A = compoundA (mkA "supranational"); -- from DictEng -lin supraorbital_A = mkA "supraorbital" ; -lin suprasegmental_A = mkA "suprasegmental" ; -lin supremacism_N = mkN "supremacism" ; -lin supremacist_N = mkN "supremacist" ; -lin supremacy_N = mkN "supremacy" ; -- from DictEng -lin suprematism_N = mkN "suprematism" ; -lin suprematist_N = mkN "suprematist" ; -lin supreme_A = compoundA (mkA "supreme"); -- from DictEng -lin supremely_Adv = mkAdv "supremely" ; -lin supremo_N = mkN "supremo" ; -lin sura_N = mkN "sura" ; -lin surbase_N = mkN "surbase" ; -lin surcharge_N = mkN "surcharge" "surcharges"; -- from DictEng -lin surcharge_V2 = mkV2 (mkV "surcharge" "surcharges" "surcharged" "surcharged" "surcharging"); -- from DictEng -lin surcoat_N = mkN "surcoat" ; -lin surd_N = mkN "surd" "surds"; -- from DictEng -lin sure_A = mkA "sure" "surer"; -- from DictEng -lin sure_Adv = mkAdv "sure"; -- from DictEng -lin sure_fire_A = compoundA (mkA "sure fire") ; -lin sure_handed_A = compoundA (mkA "sure handed") ; -lin sure_as_shooting_A = compoundA (mkA "sure as shooting") ; -lin sure_enough_Adv = mkAdv "sure enough" ; -lin sure_footed_A = compoundA (mkA "sure - footed"); -- from DictEng -lin surefooted_A = mkA "surefooted" ; -lin surely_Adv = mkAdv "surely" ; -lin sureness_N = mkN "sureness" ; -- from DictEng -lin surety_N = mkN "surety" "sureties"; -- from DictEng -lin surf_N = mkN "surf" ; -- from DictEng -lin surface_A = mkA "surface" ; -lin surface_N = mkN "surface" "surfaces"; -- from DictEng -lin surface_V = mkV "surface" "surfaces" "surfaced" "surfaced" "surfacing"; -- from DictEng -lin surface_V2 = mkV2 (mkV "surface" "surfaces" "surfaced" "surfaced" "surfacing"); -- from DictEng -lin surface_V2V = mkV2V (mkV "surface" "surfaces" "surfaced" "surfaced" "surfacing") noPrep to_Prep ; -- from DictEng -lin surface_VS = mkVS (mkV "surface" "surfaces" "surfaced" "surfaced" "surfacing"); -- from DictEng -lin surface_active_A = compoundA (mkA "surface active") ; -lin surface_to_air_A = compoundA (mkA "surface - to - air"); -- from DictEng -lin surface_to_air_A = compoundA (mkA "surface - to - air"); -- from DictEng -lin surfacing_N = mkN "surfacing" ; -lin surfbird_N = mkN "surfbird" ; -lin surfboard_N = mkN "surfboard" "surfboards"; -- from DictEng -lin surfboat_N = mkN "surfboat" "surfboats"; -- from DictEng -lin surfeit_N = mkN "surfeit" "surfeits"; -- from DictEng -lin surfeit_V2 = mkV2 (mkV "surfeit" "surfeits" "surfeited" "surfeited" "surfeiting"); -- from DictEng -lin surfer_N = mkN "surfer" ; -lin surficial_A = mkA "surficial" ; -lin surfing_N = mkN "surfing" ; -- from DictEng -lin surfperch_N = mkN "surfperch" ; -lin surfriding_N = mkN "surfriding" ; -- from DictEng -lin surge_N = mkN "surge" "surges"; -- from DictEng -lin surge_V = mkV "surge" "surges" "surged" "surged" "surging"; -- from DictEng -lin surge_V2 = mkV2 (mkV "surge" "surges" "surged" "surged" "surging"); -- from DictEng -lin surgeon_N = mkN "surgeon" "surgeons"; -- from DictEng -lin surgeonfish_N = mkN "surgeonfish" ; -lin surgery_N = mkN "surgery" "surgeries"; -- from DictEng -lin surgical_A = compoundA (mkA "surgical"); -- from DictEng -lin surgically_Adv = mkAdv "surgically" ; -lin suricate_N = mkN "suricate" ; -lin surlily_Adv = mkAdv "surlily"; -- from DictEng -lin surliness_N = mkN "surliness" ; -- from DictEng -lin surly_A = mkA "surly" "surlier"; -- from DictEng -lin surmise_N = mkN "surmise" "surmises"; -- from DictEng -lin surmise_V = mkV "surmise" "surmises" "surmised" "surmised" "surmising"; -- from DictEng -lin surmise_V2 = mkV2 (mkV "surmise" "surmises" "surmised" "surmised" "surmising"); -- from DictEng -lin surmount_V2 = mkV2 (mkV "surmount" "surmounts" "surmounted" "surmounted" "surmounting"); -- from DictEng -lin surmountable_A = compoundA (mkA "surmountable"); -- from DictEng -lin surmounted_A = mkA "surmounted" ; -lin surname_N = mkN "surname" "surnames"; -- from DictEng -lin surpass_V2 = mkV2 (mkV "surpass" "surpasses" "surpassed" "surpassed" "surpassing"); -- from DictEng -lin surpassing_A = compoundA (mkA "surpassing"); -- from DictEng -lin surpassingly_Adv = mkAdv "surpassingly" ; -lin surplice_N = mkN "surplice" "surplices"; -- from DictEng -lin surpliced_A = compoundA (mkA "surpliced"); -- from DictEng -lin surplus_N = mkN "surplus" "surpluses"; -- from DictEng -lin surprise_N = mkN "surprise" "surprises"; -- from DictEng -lin surprise_V2 = mkV2 (mkV "surprise" "surprises" "surprised" "surprised" "surprising"); -- from DictEng -lin surprise_V2V = mkV2V (mkV "surprise") noPrep to_Prep ; -- from DictEng -lin surprised_A = compoundA (mkA "surprised"); -- from DictEng -lin surprisedly_Adv = mkAdv "surprisedly" ; -lin surpriser_N = mkN "surpriser" ; -lin surprising_A = compoundA (mkA "surprising"); -- from DictEng -lin surprisingly_Adv = mkAdv "surprisingly" ; -lin surrealism_N = mkN "surrealism" ; -- from DictEng -lin surrealist_N = mkN "surrealist" "surrealists"; -- from DictEng -lin surrealistic_A = compoundA (mkA "surrealistic"); -- from DictEng -lin surrebutter_N = mkN "surrebutter" ; -lin surrejoinder_N = mkN "surrejoinder" ; -lin surrender_N = mkN "surrender" "surrenders"; -- from DictEng -lin surrender_V = mkV "surrender" "surrenders" "surrendered" "surrendered" "surrendering"; -- from DictEng -lin surrender_V2 = mkV2 (mkV "surrender" "surrenders" "surrendered" "surrendered" "surrendering"); -- from DictEng -lin surrenderer_N = mkN "surrenderer" ; -lin surreptitious_A = compoundA (mkA "surreptitious"); -- from DictEng -lin surreptitiously_Adv = mkAdv "surreptitiously" ; -lin surrey_N = mkN "surrey" ; -lin surrogate_A = compoundA (mkA "surrogate"); -- from DictEng -lin surrogate_N = mkN "surrogate" "surrogates"; -- from DictEng -lin surround_N = mkN "surround" "surrounds"; -- from DictEng -lin surround_V2 = mkV2 (mkV "surround" "surrounds" "surrounded" "surrounded" "surrounding"); -- from DictEng -lin surrounded_A = mkA "surrounded" ; -lin surrounding_A = compoundA (mkA "surrounding"); -- from DictEng -lin surtax_N = mkN "surtax" "surtaxes"; -- from DictEng -lin surtax_V2 = mkV2 (mkV "surtax" "surtaxes" "surtaxed" "surtaxed" "surtaxing"); -- from DictEng -lin surtout_N = mkN "surtout" ; -lin surveillance_N = mkN "surveillance" ; -- from DictEng -lin survey_N = mkN "survey" "surveys"; -- from DictEng -lin survey_V2 = mkV2 (mkV "survey" "surveys" "surveyed" "surveyed" "surveying"); -- from DictEng -lin surveying_N = mkN "surveying" ; -- from DictEng -lin surveyor_N = mkN "surveyor" "surveyors"; -- from DictEng -lin survival_N = mkN "survival" "survivals"; -- from DictEng -lin survivalist_N = mkN "survivalist" ; -lin survive_V = mkV "survive" "survives" "survived" "survived" "surviving"; -- from DictEng -lin survive_V2 = mkV2 (mkV "survive" "survives" "survived" "survived" "surviving"); -- from DictEng -lin survive_VS = mkVS (mkV "survive" "survives" "survived" "survived" "surviving"); -- from DictEng -lin surviving_A = mkA "surviving" ; -lin survivor_N = mkN "survivor" "survivors"; -- from DictEng -lin susceptibility_N = mkN "susceptibility" "susceptibilities"; -- from DictEng -lin susceptible_A = compoundA (mkA "susceptible"); -- from DictEng -lin sushi_N = mkN "sushi" ; -lin suslik_N = mkN "suslik" ; -lin suspect_A = compoundA (mkA "suspect"); -- from DictEng -lin suspect_N = mkN "suspect" "suspects"; -- from DictEng -lin suspect_V2 = mkV2 (mkV "suspect" "suspects" "suspected" "suspected" "suspecting"); -- from DictEng -lin suspect_VS = mkVS (mkV "suspect"); -- from DictEng -lin suspected_A = mkA "suspected" ; -lin suspend_V = mkV "suspend"; -- from DictEng -lin suspend_V2 = mkV2 (mkV "suspend" "suspends" "suspended" "suspended" "suspending"); -- from DictEng -lin suspended_A = mkA "suspended" ; -lin suspender_N = mkN "suspender" "suspenders"; -- from DictEng -lin suspense_N = mkN "suspense" ; -- from DictEng -lin suspension_N = mkN "suspension" ; -- from DictEng -lin suspensive_A = mkA "suspensive" ; -lin suspensory_N = mkN "suspensory" ; -lin suspicion_N = mkN "suspicion" "suspicions"; -- from DictEng -lin suspicious_A = compoundA (mkA "suspicious"); -- from DictEng -lin suspiciously_Adv = mkAdv "suspiciously" ; -lin suss_V2 = mkV2 (mkV "suss" "susses" "sussed" "sussed" "sussing"); -- from DictEng -lin sustain_V2 = mkV2 (mkV "sustain" "sustains" "sustained" "sustained" "sustaining"); -- from DictEng -lin sustainability_N = mkN "sustainability" ; -lin sustainable_A = mkA "sustainable" ; -lin sustained_A = mkA "sustained" ; -lin sustenance_N = mkN "sustenance" ; -- from DictEng -lin sustentacular_A = mkA "sustentacular" ; -lin susurration_N = mkN "susurration" ; -lin sutler_N = mkN "sutler" ; -lin sutra_N = mkN "sutra" ; -lin suttee_N = mkN "suttee" "suttees"; -- from DictEng -lin suture_N = mkN "suture" "sutures"; -- from DictEng -lin suturing_N = mkN "suturing" ; -lin suzerain_N = mkN "suzerain" "suzerains"; -- from DictEng -lin suzerainty_N = mkN "suzerainty" "suzerainties"; -- from DictEng -lin svelte_A = compoundA (mkA "svelte"); -- from DictEng -lin svoboda_N = mkN "svoboda" ; -lin swab_N = mkN "swab" "swabs"; -- from DictEng -lin swab_V2 = mkV2 (mkV "swab" "swabs" "swabbed" "swabbed" "swabbing"); -- from DictEng -lin swabbing_N = mkN "swabbing" ; -lin swad_N = mkN "swad" ; -lin swaddle_V2 = mkV2 (mkV "swaddle" "swaddles" "swaddled" "swaddled" "swaddling"); -- from DictEng -lin swag_N = mkN "swag" ; -- from DictEng -lin swagger_A = compoundA (mkA "swagger"); -- from DictEng -lin swagger_N = mkN "swagger" "swaggers"; -- from DictEng -lin swagger_V = mkV "swagger" "swaggers" "swaggered" "swaggered" "swaggering"; -- from DictEng -lin swagger_V2 = mkV2 (mkV "swagger") ; -lin swaggerer_N = mkN "swaggerer" "swaggerers"; -- from DictEng -lin swaggering_A = mkA "swaggering" ; -lin swagman_N = mkN "swagman" ; -lin swahili_N = mkN "swahili" ; -- from DictEng -lin swain_N = mkN "swain" "swains"; -- from DictEng -lin swale_N = mkN "swale" ; -lin swallow_N = mkN "swallow" "swallows"; -- from DictEng -lin swallow_V = mkV "swallow" "swallows" "swallowed" "swallowed" "swallowing"; -- from DictEng -lin swallow_V2 = mkV2 (mkV "swallow" "swallows" "swallowed" "swallowed" "swallowing"); -- from DictEng -lin swallow_tailed_A = compoundA (mkA "swallow - tailed"); -- from DictEng -lin swallow_tailed_A = compoundA (mkA "swallow - tailed"); -- from DictEng -lin swami_N = mkN "swami" "swamis"; -- from DictEng -lin swamp_N = mkN "swamp" "swamps"; -- from DictEng -lin swamp_V2 = mkV2 (mkV "swamp" "swamps" "swamped" "swamped" "swamping"); -- from DictEng -lin swampy_A = mkA "swampy" "swampier"; -- from DictEng -lin swan_N = mkN "swan" "swans"; -- from DictEng -lin swan_V = mkV "swan" "swans" "swanned" "swanned" "swanning"; -- from DictEng -lin swan's_down_N = mkN "swan's - down" ; -- from DictEng -lin swan_song_N = mkN "swan - song" "swan - songs"; -- from DictEng -lin swank_A = mkA "swank" ; -lin swank_N = mkN "swank" "swanks"; -- from DictEng -lin swank_V = mkV "swank" "swanks" "swanked" "swanked" "swanking"; -- from DictEng -lin swanky_A = mkA "swanky" "swankier"; -- from DictEng -lin swap_N = mkN "swap" "swaps"; -- from DictEng -lin swap_V = mkV "swap" "swaps" "swapped" "swapped" "swapping"; -- from DictEng -lin swap_V2 = mkV2 (mkV "swap" "swaps" "swapped" "swapped" "swapping"); -- from DictEng -lin sward_N = mkN "sward" ; -- from DictEng -lin swarm_N = mkN "swarm" "swarms"; -- from DictEng -lin swarm_V = mkV "swarm" "swarms" "swarmed" "swarmed" "swarming"; -- from DictEng -lin swarm_V2 = mkV2 (mkV "swarm" "swarms" "swarmed" "swarmed" "swarming"); -- from DictEng -lin swarthy_A = compoundA (mkA "swarthy"); -- from DictEng -lin swash_N = mkN "swash" ; -lin swashbuckler_N = mkN "swashbuckler" "swashbucklers"; -- from DictEng -lin swashbuckling_A = compoundA (mkA "swashbuckling"); -- from DictEng -lin swashbuckling_N = mkN "swashbuckling" ; -- from DictEng -lin swastika_N = mkN "swastika" "swastikas"; -- from DictEng -lin swat_N = mkN "swat" "swats"; -- from DictEng -lin swat_V2 = mkV2 (mkV "swat" "swats" "swatted" "swatted" "swatting"); -- from DictEng -lin swatch_N = mkN "swatch" ; -lin swath_N = mkN "swath" "swaths"; -- from DictEng -lin swathe_N = mkN "swathe" "swathes"; -- from DictEng -lin swathe_V2 = mkV2 (mkV "swathe" "swathes" "swathed" "swathed" "swathing"); -- from DictEng -lin swathing_N = mkN "swathing" ; -lin swatter_N = mkN "swatter" ; -lin sway_N = mkN "sway" ; -- from DictEng -lin sway_V = mkV "sway" "sways" "swayed" "swayed" "swaying"; -- from DictEng -lin sway_V2 = mkV2 (mkV "sway" "sways" "swayed" "swayed" "swaying"); -- from DictEng -lin sway_VS = mkVS (mkV "sway" ); -lin swazi_A = compoundA (mkA "swazi"); -- from DictEng -lin swazi_N = mkN "swazi" "swazis"; -- from DictEng -lin swear_V = IrregEng.swear_V; -- from DictEng -lin swear_V2 = mkV2 (IrregEng.swear_V); -- from DictEng -lin swear_V2V = mkV2V (IrregEng.swear_V) noPrep to_Prep ; -- from DictEng -lin swear_VV = mkVV (IrregEng.swear_V) ; -- from DictEng -lin swearer_N = mkN "swearer" "swearers"; -- from DictEng -lin swearing_N = mkN "swearing" ; -- from DictEng -lin swearword_N = mkN "swearword" "swearwords"; -- from DictEng -lin sweat_N = mkN "sweat" "sweats"; -- from DictEng -lin sweat_V = mkV "sweat" "sweats" "sweated" "sweated" "sweating"; -- from DictEng -lin sweat_V2 = mkV2 (mkV "sweat" "sweats" "sweated" "sweated" "sweating"); -- from DictEng -lin sweatband_N = mkN "sweatband" "sweatbands"; -- from DictEng -lin sweatbox_N = mkN "sweatbox" ; -lin sweater_N = mkN "sweater" "sweaters"; -- from DictEng -lin sweatshirt_N = mkN "sweatshirt" ; -lin sweatshop_N = mkN "sweatshop" "sweatshops"; -- from DictEng -lin sweaty_A = mkA "sweaty" "sweatier"; -- from DictEng -lin swede_A = compoundA (mkA "Swede"); -- from DictEng -lin swede_N = mkN "Swede" "Swedes"; -- from DictEng -lin swedish_A = compoundA (mkA "Swedish"); -- from DictEng -lin swedish_N = mkN "Swedish" "Swedes"; -- from DictEng -lin sweep_N = mkN "sweep" "sweeps"; -- from DictEng -lin sweep_V = IrregEng.sweep_V; -- from DictEng -lin sweep_V2 = mkV2 (IrregEng.sweep_V); -- from DictEng -lin sweeper_N = mkN "sweeper" "sweepers"; -- from DictEng -lin sweeping_A = compoundA (mkA "sweeping"); -- from DictEng -lin sweeping_N = mkN "sweeping" "sweepings"; -- from DictEng -lin sweepingly_Adv = mkAdv "sweepingly" ; -lin sweepstakes_N = mkN "sweepstakes" ; -lin sweet_A = mkA "sweet" "sweeter"; -- from DictEng -lin sweet_N = mkN "sweet" "sweets"; -- from DictEng -lin sweet_breathed_A = compoundA (mkA "sweet breathed") ; -lin sweet_faced_A = compoundA (mkA "sweet faced") ; -lin sweet_talk_V2 = mkV2 (mkV "sweet talk") ; -lin sweet_william_PN = mkPN "sweet William" ; -lin sweet_scented_A = compoundA (mkA "sweet - scented"); -- from DictEng -lin sweetbread_N = mkN "sweetbread" "sweetbreads"; -- from DictEng -lin sweetbriar_N = mkN "sweetbriar" ; -- from DictEng -lin sweetbrier_N = mkN "sweetbrier" ; -- from DictEng -lin sweeten_V = mkV "sweeten" "sweetens" "sweetened" "sweetened" "sweetening"; -- from DictEng -lin sweeten_V2 = mkV2 (mkV "sweeten" "sweetens" "sweetened" "sweetened" "sweetening"); -- from DictEng -lin sweetening_N = mkN "sweetening" "sweetenings"; -- from DictEng -lin sweetheart_A = mkA "sweetheart" ; -lin sweetheart_N = mkN "sweetheart" "sweethearts"; -- from DictEng -lin sweetie_N = mkN "sweetie" "sweeties"; -- from DictEng -lin sweetish_A = compoundA (mkA "sweetish"); -- from DictEng -lin sweetleaf_N = mkN "sweetleaf" ; -lin sweetly_Adv = mkAdv "sweetly" ; -lin sweetmeat_N = mkN "sweetmeat" "sweetmeats"; -- from DictEng -lin sweetness_N = mkN "sweetness" ; -- from DictEng -lin sweetsop_N = mkN "sweetsop" ; -lin swell_A = compoundA (mkA "swell"); -- from DictEng -lin swell_N = mkN "swell" "swells"; -- from DictEng -lin swell_V = mkV "swell" "swells" "swelled" "swelled" "swelling"; -- from DictEng -lin swell_V2 = mkV2 (mkV "swell" "swells" "swelled" "swelled" "swelling"); -- from DictEng -lin swelling_N = mkN "swelling" "swellings"; -- from DictEng -lin swelter_V = mkV "swelter" "swelters" "sweltered" "sweltered" "sweltering"; -- from DictEng -lin sweltering_A = mkA "sweltering" ; -lin swept_A = mkA "swept" ; -lin sweptback_A = compoundA (mkA "sweptback"); -- from DictEng -lin sweptwing_A = mkA "sweptwing" ; -lin swerve_N = mkN "swerve" "swerves"; -- from DictEng -lin swerve_V = mkV "swerve" "swerves" "swerved" "swerved" "swerving"; -- from DictEng -lin swerve_V2 = mkV2 (mkV "swerve" "swerves" "swerved" "swerved" "swerving"); -- from DictEng -lin swift_A = mkA "swift" "swifter"; -- from DictEng -lin swift_N = mkN "swift" "swifts"; -- from DictEng -lin swift_footed_A = compoundA (mkA "swift footed") ; -lin swiftlet_N = mkN "swiftlet" ; -lin swiftly_Adv = mkAdv "swiftly" ; -lin swiftness_N = mkN "swiftness" ; -- from DictEng -lin swig_N = mkN "swig" "swigs"; -- from DictEng -lin swig_V = mkV "swig" "swigs" "swigged" "swigged" "swigging"; -- from DictEng -lin swig_V2 = mkV2 (mkV "swig" "swigs" "swigged" "swigged" "swigging"); -- from DictEng -lin swill_N = mkN "swill" "swills"; -- from DictEng -lin swill_V = mkV "swill" "swills" "swilled" "swilled" "swilling"; -- from DictEng -lin swill_V2 = mkV2 (mkV "swill" "swills" "swilled" "swilled" "swilling"); -- from DictEng -lin swim_N = mkN "swim" "swims"; -- from DictEng -lin swim_V = IrregEng.swim_V; -- from DictEng -lin swim_V2 = mkV2 (IrregEng.swim_V); -- from DictEng -lin swimmer_N = mkN "swimmer" "swimmers"; -- from DictEng -lin swimmeret_N = mkN "swimmeret" ; -lin swimming_N = mkN "swimming" ; -- from DictEng -lin swimming_bath_N = mkN "swimming - bath" "swimming - baths"; -- from DictEng -lin swimming_costume_N = mkN "swimming - costume" "swimming - costumes"; -- from DictEng -lin swimming_pool_N = mkN "swimming - pool" "swimming - pools"; -- from DictEng -lin swimmingly_Adv = mkAdv "swimmingly"; -- from DictEng -lin swimsuit_N = mkN "swimsuit" "swimsuits"; -- from DictEng -lin swindle_N = mkN "swindle" "swindles"; -- from DictEng -lin swindle_V = mkV "swindle" "swindles" "swindled" "swindled" "swindling"; -- from DictEng -lin swindle_V2 = mkV2 (mkV "swindle" "swindles" "swindled" "swindled" "swindling"); -- from DictEng -lin swindler_N = mkN "swindler" "swindlers"; -- from DictEng -lin swine_N = mkN "swine" "swine"; -- from DictEng -lin swineherd_N = mkN "swineherd" "swineherds"; -- from DictEng -lin swing_N = mkN "swing" "swings"; -- from DictEng -lin swing_V = IrregEng.swing_V; -- from DictEng -lin swing_V2 = mkV2 (IrregEng.swing_V); -- from DictEng -lin swinge_V2 = mkV2 (mkV "swinge" "swinges" "swinged" "swinged" "swinging"); -- from DictEng -lin swingeing_A = compoundA (mkA "swingeing"); -- from DictEng -lin swinger_N = mkN "swinger" ; -lin swinging_A = compoundA (mkA "swinging"); -- from DictEng -lin swinish_A = compoundA (mkA "swinish"); -- from DictEng -lin swipe_N = mkN "swipe" "swipes"; -- from DictEng -lin swipe_V2 = mkV2 (mkV "swipe" "swipes" "swiped" "swiped" "swiping"); -- from DictEng -lin swirl_N = mkN "swirl" "swirls"; -- from DictEng -lin swirl_V = mkV "swirl" "swirls" "swirled" "swirled" "swirling"; -- from DictEng -lin swirl_V2 = mkV2 (mkV "swirl" "swirls" "swirled" "swirled" "swirling"); -- from DictEng -lin swish_A = compoundA (mkA "swish"); -- from DictEng -lin swish_N = mkN "swish" "swishes"; -- from DictEng -lin swish_V = mkV "swish" "swishes" "swished" "swished" "swishing"; -- from DictEng -lin swish_V2 = mkV2 (mkV "swish" "swishes" "swished" "swished" "swishing"); -- from DictEng -lin swishy_A = mkA "swishy" ; -lin swiss_A = compoundA (mkA "swiss"); -- from DictEng -lin swiss_N = mkN "swiss" "swiss"; -- from DictEng -lin switch_N = mkN "switch" "switches"; -- from DictEng -lin switch_V = mkV "switch" "switches" "switched" "switched" "switching"; -- from DictEng -lin switch_V2 = mkV2 (mkV "switch" "switches" "switched" "switched" "switching"); -- from DictEng -lin switch_hitter_N = mkN "switch hitter" ; -lin switchblade_N = mkN "switchblade" ; -lin switchboard_N = mkN "switchboard" "switchboards"; -- from DictEng -lin switcher_N = mkN "switcher" ; -lin switcheroo_N = mkN "switcheroo" ; -lin switchman_N = mkN "switchman" "switchmen" {- FIXME: guessed plural form -}; -- from DictEng -lin swivel_N = mkN "swivel" "swivels"; -- from DictEng -lin swivel_V = mkV "swivel" "swivels" "swivelled" "swivelled" "swivelling"; -- from DictEng -lin swivel_V2 = mkV2 (mkV "swivel" "swivels" "swivelled" "swivelled" "swivelling"); -- from DictEng -lin swivet_N = mkN "swivet" ; -lin swiz_N = mkN "swiz" "IRREG"; -- from DictEng -lin swizzle_N = mkN "swizzle" "swizzles"; -- from DictEng -lin swizzle_stick_N = mkN "swizzle - stick" "swizzle - sticks"; -- from DictEng -lin swob_N = mkN "swob" "swobs"; -- from DictEng -lin swob_V2 = mkV2 (mkV "swob" "swobs" "swobbed" "swobbed" "swobbing"); -- from DictEng -lin swollen_headed_A = compoundA (mkA "swollen - headed"); -- from DictEng -lin swoon_N = mkN "swoon" "swoons"; -- from DictEng -lin swoon_V = mkV "swoon" "swoons" "swooned" "swooned" "swooning"; -- from DictEng -lin swoop_N = mkN "swoop" "swoops"; -- from DictEng -lin swoop_V = mkV "swoop" "swoops" "swooped" "swooped" "swooping"; -- from DictEng -lin swoop_V2 = mkV2 (mkV "swoop" "swoops" "swooped" "swooped" "swooping"); -- from DictEng -lin swoosh_N = mkN "swoosh" ; -lin swoosh_V = mkV "swoosh" ; -lin swoosh_V2 = mkV2 (mkV "swoosh") ; -lin swop_N = mkN "swop" "swops"; -- from DictEng -lin swop_V = mkV "swop" "swops" "swopped" "swopped" "swopping"; -- from DictEng -lin swop_V2 = mkV2 (mkV "swop" "swops" "swopped" "swopped" "swopping"); -- from DictEng -lin sword_N = mkN "sword" "swords"; -- from DictEng -lin sword_cut_N = mkN "sword - cut" "sword - cuts"; -- from DictEng -lin sword_cane_N = mkN "sword - cane" "sword - canes"; -- from DictEng -lin sword_cut_N = mkN "sword - cut" "sword - cuts"; -- from DictEng -lin sword_dance_N = mkN "sword - dance" "sword - dances"; -- from DictEng -lin sword_of_damocles_PN = mkPN "sword of Damocles" ; -lin swordfish_N = mkN "swordfish" "swordfish"; -- from DictEng -lin swordplay_N = mkN "swordplay" ; -- from DictEng -lin swordsman_N = mkN "swordsman" "swordsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin swordsmanship_N = mkN "swordsmanship" ; -- from DictEng -lin swordstick_N = mkN "swordstick" "swordsticks"; -- from DictEng -lin swordtail_N = mkN "swordtail" ; -lin sworn_A = mkA "sworn" ; -lin swot_N = mkN "swot" "swots"; -- from DictEng -lin swot_V = mkV "swot" "swots" "swotted" "swotted" "swotting"; -- from DictEng -lin swot_V2 = mkV2 (mkV "swot" "swots" "swotted" "swotted" "swotting"); -- from DictEng -lin sybarite_N = mkN "sybarite" "sybarites"; -- from DictEng -lin sybaritic_A = compoundA (mkA "sybaritic"); -- from DictEng -lin sycamore_N = mkN "sycamore" "sycamores"; -- from DictEng -lin syconium_N = mkN "syconium" ; -lin sycophancy_N = mkN "sycophancy" ; -- from DictEng -lin sycophant_N = mkN "sycophant" "sycophants"; -- from DictEng -lin sycophantic_A = compoundA (mkA "sycophantic"); -- from DictEng -lin syllabary_N = mkN "syllabary" "syllabaries"; -- from DictEng -lin syllabic_A = compoundA (mkA "syllabic"); -- from DictEng -lin syllabically_Adv = mkAdv "syllabically" ; -lin syllabicate_V2 = mkV2 (mkV "syllabicate" "syllabicates" "syllabicated" "syllabicated" "syllabicating"); -- from DictEng -lin syllabication_N = mkN "syllabication" ; -- from DictEng -lin syllabicity_N = mkN "syllabicity" ; -lin syllabification_N = mkN "syllabification" ; -- from DictEng -lin syllabify_V2 = mkV2 (mkV "syllabify" "syllabifies" "syllabified" "syllabified" "syllabifying"); -- from DictEng -lin syllabize_V2 = mkV2 (mkV "syllabize" "syllabizes" "syllabized" "syllabized" "syllabizing"); -- from DictEng -lin syllable_N = mkN "syllable" "syllables"; -- from DictEng -lin syllabled_A = compoundA (mkA "syllabled"); -- from DictEng -lin syllabub_N = mkN "syllabub" ; -lin syllabus_N = mkN "syllabus" "syllabuses"; -- from DictEng -lin syllepsis_N = mkN "syllepsis" ; -lin syllogism_N = mkN "syllogism" "syllogisms"; -- from DictEng -lin syllogist_N = mkN "syllogist" ; -lin syllogistic_A = compoundA (mkA "syllogistic"); -- from DictEng -lin sylph_N = mkN "sylph" "sylphs"; -- from DictEng -lin sylph_like_A = compoundA (mkA "sylph - like"); -- from DictEng -lin sylvan_A = compoundA (mkA "sylvan"); -- from DictEng -lin sylvan_N = mkN "sylvan" ; -lin sylvanite_N = mkN "sylvanite" ; -lin sylvite_N = mkN "sylvite" ; -lin symbiosis_N = mkN "symbiosis" ; -- from DictEng -lin symbiotic_A = mkA "symbiotic" ; -lin symbiotically_Adv = mkAdv "symbiotically" ; -lin symbol_N = mkN "symbol" "symbols"; -- from DictEng -lin symbolatry_N = mkN "symbolatry" ; -lin symbolic_A = compoundA (mkA "symbolic"); -- from DictEng -lin symbolical_A = compoundA (mkA "symbolical"); -- from DictEng -lin symbolically_Adv = mkAdv "symbolically" ; -lin symbolism_N = mkN "symbolism" "symbolisms"; -- from DictEng -lin symbolist_N = mkN "symbolist" ; -lin symbolization_N = mkN "symbolization" "symbolizations"; -- from DictEng -lin symbolize_V2 = mkV2 (mkV "symbolize" "symbolizes" "symbolized" "symbolized" "symbolizing"); -- from DictEng -lin symbolizing_N = mkN "symbolizing" ; -lin symbology_N = mkN "symbology" ; -lin symmetric_A = compoundA (mkA "symmetric"); -- from DictEng -lin symmetrical_A = compoundA (mkA "symmetrical"); -- from DictEng -lin symmetrically_Adv = mkAdv "symmetrically" ; -lin symmetry_N = mkN "symmetry" ; -- from DictEng -lin sympathectomy_N = mkN "sympathectomy" ; -lin sympathetic_A = compoundA (mkA "sympathetic"); -- from DictEng -lin sympathetically_Adv = mkAdv "sympathetically"; -- from DictEng -lin sympathize_V = mkV "sympathize" "sympathizes" "sympathized" "sympathized" "sympathizing"; -- from DictEng -lin sympathizer_N = mkN "sympathizer" "sympathizers"; -- from DictEng -lin sympathy_N = mkN "sympathy" "sympathies"; -- from DictEng -lin sympatric_A = mkA "sympatric" ; -lin sympatry_N = mkN "sympatry" ; -lin symphonic_A = compoundA (mkA "symphonic"); -- from DictEng -lin symphonist_N = mkN "symphonist" ; -lin symphony_N = mkN "symphony" "symphonies"; -- from DictEng -lin symphysion_N = mkN "symphysion" ; -lin symphysis_N = mkN "symphysis" ; -lin symploce_N = mkN "symploce" ; -lin symposiast_N = mkN "symposiast" ; -lin symposium_N = mkN "symposium" "symposiums"; -- from DictEng -lin symptom_N = mkN "symptom" "symptoms"; -- from DictEng -lin symptomatic_A = compoundA (mkA "symptomatic"); -- from DictEng -lin symptomatically_Adv = mkAdv "symptomatically"; -- from DictEng -lin symptomless_A = compoundA (mkA "symptomless"); -- from DictEng -lin synagogue_N = mkN "synagogue" "synagogues"; -- from DictEng -lin synapse_N = mkN "synapse" ; -lin synapsid_N = mkN "synapsid" ; -lin synapsis_N = mkN "synapsis" ; -lin synaptic_A = mkA "synaptic" ; -lin syncarpous_A = mkA "syncarpous" ; -lin syncategorem_N = mkN "syncategorem" ; -lin syncategorematic_A = mkA "syncategorematic" ; -lin synchrocyclotron_N = mkN "synchrocyclotron" ; -lin synchroflash_N = mkN "synchroflash" "IRREG"; -- from DictEng -lin synchromesh_N = mkN "synchromesh" ; -- from DictEng -lin synchronic_A = mkA "synchronic" ; -lin synchronism_N = mkN "synchronism" ; -lin synchronization_N = mkN "synchronization" "synchronizations"; -- from DictEng -lin synchronize_V = mkV "synchronize" "synchronizes" "synchronized" "synchronized" "synchronizing"; -- from DictEng -lin synchronize_V2 = mkV2 (mkV "synchronize" "synchronizes" "synchronized" "synchronized" "synchronizing"); -- from DictEng -lin synchronized_A = mkA "synchronized" ; -lin synchronous_A = compoundA (mkA "synchronous"); -- from DictEng -lin synchronously_Adv = mkAdv "synchronously" ; -lin synchrony_N = mkN "synchrony" ; -- from DictEng -lin synchroscope_N = mkN "synchroscope" ; -lin synchrotron_N = mkN "synchrotron" "synchrotrons"; -- from DictEng -lin synclinal_A = mkA "synclinal" ; -lin syncopate_V2 = mkV2 (mkV "syncopate" "syncopates" "syncopated" "syncopated" "syncopating"); -- from DictEng -lin syncopated_A = mkA "syncopated" ; -lin syncopation_N = mkN "syncopation" "syncopations"; -- from DictEng -lin syncopator_N = mkN "syncopator" ; -lin syncope_N = mkN "syncope" ; -- from DictEng -lin syncretic_A = mkA "syncretic" ; -lin syncretism_N = mkN "syncretism" ; -lin syncytium_N = mkN "syncytium" ; -lin syndactyly_N = mkN "syndactyly" ; -lin syndciate_V2 = mkV2 (mkV "syndciate"); -- from DictEng -lin syndetic_A = mkA "syndetic" ; -lin syndic_N = mkN "syndic" "syndics"; -- from DictEng -lin syndicalism_N = mkN "syndicalism" ; -- from DictEng -lin syndicalist_N = mkN "syndicalist" "syndicalists"; -- from DictEng -lin syndicate_N = mkN "syndicate" "syndicates"; -- from DictEng -lin syndicate_V2 = mkV2 (mkV "syndicate" "syndicates" "syndicated" "syndicated" "syndicating"); -- from DictEng -lin syndication_N = mkN "syndication" "syndications"; -- from DictEng -lin syndicator_N = mkN "syndicator" ; -lin syndrome_N = mkN "syndrome" "syndromes"; -- from DictEng -lin synecdoche_N = mkN "synecdoche" ; -lin synecdochic_A = mkA "synecdochic" ; -lin synechia_N = mkN "synechia" ; -lin syneresis_N = mkN "syneresis" ; -lin synergetic_A = mkA "synergetic" ; -lin synergism_N = mkN "synergism" ; -lin synergist_N = mkN "synergist" ; -lin synergistic_A = mkA "synergistic" ; -lin synergistically_Adv = mkAdv "synergistically" ; -lin synergy_N = mkN "synergy" ; -lin synesthesia_N = mkN "synesthesia" ; -lin synesthetic_A = mkA "synesthetic" ; -lin synizesis_N = mkN "synizesis" ; -lin synod_N = mkN "synod" "synods"; -- from DictEng -lin synoicous_A = mkA "synoicous" ; -lin synonym_N = mkN "synonym" "synonyms"; -- from DictEng -lin synonymist_N = mkN "synonymist" ; -lin synonymous_A = compoundA (mkA "synonymous"); -- from DictEng -lin synonymously_Adv = mkAdv "synonymously" ; -lin synonymy_N = mkN "synonymy" ; -lin synopsis_N = mkN "synopsis" "synopses" {- FIXME: guessed plural form -}; -- from DictEng -lin synoptic_A = compoundA (mkA "synoptic"); -- from DictEng -lin synoptically_Adv = mkAdv "synoptically"; -- from DictEng -lin synovia_N = mkN "synovia" ; -lin synovial_A = mkA "synovial" ; -lin synovitis_N = mkN "synovitis" ; -lin synsemantic_A = mkA "synsemantic" ; -lin synset_N = mkN "synset" ; -lin syntactic_A = compoundA (mkA "syntactic"); -- from DictEng -lin syntactically_Adv = mkAdv "syntactically"; -- from DictEng -lin syntagma_N = mkN "syntagma" ; -lin syntagmatic_A = mkA "syntagmatic" ; -lin syntax_N = mkN "syntax" ; -- from DictEng -lin synthesis_N = mkN "synthesis" "syntheses" {- FIXME: guessed plural form -}; -- from DictEng -lin synthesist_N = mkN "synthesist" ; -lin synthesize_V2 = mkV2 (mkV "synthesize" "synthesizes" "synthesized" "synthesized" "synthesizing"); -- from DictEng -lin synthesizer_N = mkN "synthesizer" ; -lin synthetic_A = compoundA (mkA "synthetic"); -- from DictEng -lin synthetic_N = mkN "synthetic" "synthetics"; -- from DictEng -lin synthetically_Adv = mkAdv "synthetically"; -- from DictEng -lin synthetism_N = mkN "synthetism" ; -lin syphilis_N = mkN "syphilis" ; -- from DictEng -lin syphilitic_A = compoundA (mkA "syphilitic"); -- from DictEng -lin syphilitic_N = mkN "syphilitic" "syphilitics"; -- from DictEng -lin syphon_N = mkN "syphon" "syphons"; -- from DictEng -lin syphon_V = mkV "syphon" "syphons" "syphoned" "syphoned" "syphoning"; -- from DictEng -lin syphon_V2 = mkV2 (mkV "syphon" "syphons" "syphoned" "syphoned" "syphoning"); -- from DictEng -lin syrian_A = compoundA (mkA "syrian"); -- from DictEng -lin syrian_N = mkN "syrian" "syrians"; -- from DictEng -lin syringa_N = mkN "syringa" "syringas"; -- from DictEng -lin syringe_N = mkN "syringe" "syringes"; -- from DictEng -lin syringe_V2 = mkV2 (mkV "syringe" "syringes" "syringed" "syringed" "syringing"); -- from DictEng -lin syrinx_N = mkN "syrinx" ; -lin syrup_N = mkN "syrup" "syrups"; -- from DictEng -lin syrupy_A = compoundA (mkA "syrupy"); -- from DictEng -lin system_N = mkN "system" "systems"; -- from DictEng -lin systematic_A = compoundA (mkA "systematic"); -- from DictEng -lin systematically_Adv = mkAdv "systematically"; -- from DictEng -lin systematics_N = mkN "systematics" ; -lin systematism_N = mkN "systematism" ; -lin systematization_N = mkN "systematization" ; -- from DictEng -lin systematize_V2 = mkV2 (mkV "systematize" "systematizes" "systematized" "systematized" "systematizing"); -- from DictEng -lin systemic_A = mkA "systemic" ; -lin systole_N = mkN "systole" ; -lin systolic_A = mkA "systolic" ; -lin syzygy_N = mkN "syzygy" ; -lin t_junction_N = mkN "t - junction" "t - junctions"; -- from DictEng -lin t_shirt_N = mkN "t - shirt" "t - shirts"; -- from DictEng -lin t_square_N = mkN "t - square" "t - squares"; -- from DictEng -lin tab_N = mkN "tab" "tabs"; -- from DictEng -lin tabard_N = mkN "tabard" "tabards"; -- from DictEng -lin tabasco_N = mkN "tabasco" ; -lin tabbouleh_N = mkN "tabbouleh" ; -lin tabby_A = compoundA (mkA "tabby"); -- from DictEng -lin tabby_N = mkN "tabby" "tabbies"; -- from DictEng -lin tabby_cat_N = mkN "tabby - cat" "tabby - cats"; -- from DictEng -lin tabernacle_N = mkN "tabernacle" "tabernacles"; -- from DictEng -lin tabes_N = mkN "tabes" ; -lin tabi_N = mkN "tabi" ; -lin tablature_N = mkN "tablature" ; -lin table_N = mkN "table" "tables"; -- from DictEng -lin table_V2 = mkV2 (mkV "table" "tables" "tabled" "tabled" "tabling"); -- from DictEng -lin table_d'hote_A = compoundA (mkA "table d'hôte"); -- from DictEng -lin table_d'hote_Adv = mkAdv "table d'hôte"; -- from DictEng -lin table_knife_N = mkN "table - knife" "table - knives"; -- from DictEng -lin table_lifting_N = mkN "table - lifting" ; -- from DictEng -lin table_linen_N = mkN "table - linen" ; -- from DictEng -lin table_rapping_N = mkN "table - rapping" ; -- from DictEng -lin table_talk_N = mkN "table - talk" ; -- from DictEng -lin table_turning_N = mkN "table - turning" ; -- from DictEng -lin tableau_N = mkN "tableau" "tableaux"; -- from DictEng -lin tableau_vivant_N = mkN "tableau vivant" "tableaux vivants"; -- from DictEng -lin tablecloth_N = mkN "tablecloth" "tablecloths"; -- from DictEng -lin tablefork_N = mkN "tablefork" ; -lin tableland_N = mkN "tableland" ; -lin tablemat_N = mkN "tablemat" "tablemats"; -- from DictEng -lin tablemate_N = mkN "tablemate" ; -lin tablespoon_N = mkN "tablespoon" "tablespoons"; -- from DictEng -lin tablespoonful_N = mkN "tablespoonful" "tablespoonfuls"; -- from DictEng -lin tablet_N = mkN "tablet" "tablets"; -- from DictEng -lin tabletop_N = mkN "tabletop" ; -lin tableware_N = mkN "tableware" ; -- from DictEng -lin tabloid_N = mkN "tabloid" "tabloids"; -- from DictEng -lin taboo_A = compoundA (mkA "taboo"); -- from DictEng -lin taboo_N = mkN "taboo" "taboos"; -- from DictEng -lin taboo_V2 = mkV2 (mkV "taboo" "taboos" "tabooed" "tabooed" "tabooing"); -- from DictEng -lin tabor_N = mkN "tabor" "tabors"; -- from DictEng -lin taboret_N = mkN "taboret" ; -lin tabular_A = compoundA (mkA "tabular"); -- from DictEng -lin tabulate_V2 = mkV2 (mkV "tabulate" "tabulates" "tabulated" "tabulated" "tabulating"); -- from DictEng -lin tabulation_N = mkN "tabulation" "tabulations"; -- from DictEng -lin tabulator_N = mkN "tabulator" "tabulators"; -- from DictEng -lin tabun_N = mkN "tabun" ; -lin tachistoscope_N = mkN "tachistoscope" ; -lin tachogram_N = mkN "tachogram" ; -lin tachograph_N = mkN "tachograph" "tachographs"; -- from DictEng -lin tachometer_N = mkN "tachometer" ; -lin tachycardia_N = mkN "tachycardia" ; -lin tachylite_N = mkN "tachylite" ; -lin tachymeter_N = mkN "tachymeter" ; -lin tacit_A = compoundA (mkA "tacit"); -- from DictEng -lin tacitly_Adv = mkAdv "tacitly" ; -lin taciturn_A = compoundA (mkA "taciturn"); -- from DictEng -lin taciturnity_N = mkN "taciturnity" ; -- from DictEng -lin tack_N = mkN "tack" "tacks"; -- from DictEng -lin tack_V = mkV "tack" "tacks" "tacked" "tacked" "tacking"; -- from DictEng -lin tack_V2 = mkV2 (mkV "tack" "tacks" "tacked" "tacked" "tacking"); -- from DictEng -lin tacker_N = mkN "tacker" ; -lin tackle_N = mkN "tackle" "tackles"; -- from DictEng -lin tackle_V = mkV "tackle" "tackles" "tackled" "tackled" "tackling"; -- from DictEng -lin tackle_V2 = mkV2 (mkV "tackle" "tackles" "tackled" "tackled" "tackling"); -- from DictEng -lin tackler_N = mkN "tackler" ; -lin tacky_A = mkA "tacky" "tackier"; -- from DictEng -lin taco_N = mkN "taco" ; -lin taconite_N = mkN "taconite" ; -lin tact_N = mkN "tact" ; -- from DictEng -lin tactful_A = compoundA (mkA "tactful"); -- from DictEng -lin tactfully_Adv = mkAdv "tactfully" ; -lin tactic_N = mkN "tactic" "tactics"; -- from DictEng -lin tactical_A = compoundA (mkA "tactical"); -- from DictEng -lin tactically_Adv = mkAdv "tactically" ; -lin tactician_N = mkN "tactician" "tacticians"; -- from DictEng -lin tactics_N = mkN "tactics" ; -lin tactile_A = compoundA (mkA "tactile"); -- from DictEng -lin tactless_A = compoundA (mkA "tactless"); -- from DictEng -lin tactlessly_Adv = mkAdv "tactlessly" ; -lin tactlessness_N = mkN "tactlessness" ; -- from DictEng -lin tactual_A = compoundA (mkA "tactual"); -- from DictEng -lin tactually_Adv = mkAdv "tactually" ; -lin tad_N = mkN "tad" ; -lin tadalafil_N = mkN "tadalafil" ; -lin tadpole_N = mkN "tadpole" "tadpoles"; -- from DictEng -lin tadpole_shaped_A = compoundA (mkA "tadpole shaped") ; -lin tael_N = mkN "tael" ; -lin taenia_N = mkN "taenia" ; -lin taffeta_N = mkN "taffeta" ; -- from DictEng -lin taffrail_N = mkN "taffrail" "taffrails"; -- from DictEng -lin taffy_N = mkN "taffy" "taffies"; -- from DictEng -lin tag_N = mkN "tag" "tags"; -- from DictEng -lin tag_V = mkV "tag" "tags" "tagged" "tagged" "tagging"; -- from DictEng -lin tag_V2 = mkV2 (mkV "tag" "tags" "tagged" "tagged" "tagging"); -- from DictEng -lin tag_VS = mkVS (mkV "tag" "tags" "tagged" "tagged" "tagging"); -- from DictEng -lin tagalong_N = mkN "tagalong" ; -lin tagasaste_N = mkN "tagasaste" ; -lin tagger_N = mkN "tagger" ; -lin tagliatelle_N = mkN "tagliatelle" ; -lin taguan_N = mkN "taguan" ; -lin tahini_N = mkN "tahini" ; -lin tahitian_A = compoundA (mkA "tahitian"); -- from DictEng -lin tahitian_N = mkN "tahitian" "tahitians"; -- from DictEng -lin tail_N = mkN "tail" "tails"; -- from DictEng -lin tail_V = mkV "tail" "tails" "tailed" "tailed" "tailing"; -- from DictEng -lin tail_V2 = mkV2 (mkV "tail" "tails" "tailed" "tailed" "tailing"); -- from DictEng -lin tail_shaped_A = compoundA (mkA "tail shaped") ; -lin tail_coat_N = mkN "tail - coat" "tail - coats"; -- from DictEng -lin tail_end_N = mkN "tail - end" "tail - ends"; -- from DictEng -lin tail_light_N = mkN "tail - light" "tail - lights"; -- from DictEng -lin tailback_N = mkN "tailback" ; -lin tailboard_N = mkN "tailboard" "tailboards"; -- from DictEng -lin tailed_A = compoundA (mkA "tailed"); -- from DictEng -lin tailgate_N = mkN "tailgate" "tailgates"; -- from DictEng -lin tailgater_N = mkN "tailgater" ; -lin tailless_A = compoundA (mkA "tailless"); -- from DictEng -lin taillight_N = mkN "taillight" ; -lin tailor_N = mkN "tailor" "tailors"; -- from DictEng -lin tailor_V2 = mkV2 (mkV "tailor" "tailors" "tailored" "tailored" "tailoring"); -- from DictEng -lin tailor_made_N = mkN "tailor made" ; -lin tailor_made_A = compoundA (mkA "tailor - made"); -- from DictEng -lin tailorbird_N = mkN "tailorbird" ; -lin tailored_A = mkA "tailored" ; -lin tailoring_N = mkN "tailoring" ; -lin tailpiece_N = mkN "tailpiece" "tailpieces"; -- from DictEng -lin tailpipe_N = mkN "tailpipe" ; -lin tailplane_N = mkN "tailplane" "tailplanes"; -- from DictEng -lin tailrace_N = mkN "tailrace" ; -lin tailspin_N = mkN "tailspin" "tailspins"; -- from DictEng -lin tailstock_N = mkN "tailstock" ; -lin tailwind_N = mkN "tailwind" ; -lin taint_N = mkN "taint" "taints"; -- from DictEng -lin taint_V = mkV "taint" "taints" "tainted" "tainted" "tainting"; -- from DictEng -lin taint_V2 = mkV2 (mkV "taint" "taints" "tainted" "tainted" "tainting"); -- from DictEng -lin taintless_A = compoundA (mkA "taintless"); -- from DictEng -lin taipan_N = mkN "taipan" ; -lin taiwanese_A = compoundA (mkA "taiwanese"); -- from DictEng -lin taiwanese_N = mkN "taiwanese" "taiwanese"; -- from DictEng -lin taka_N = mkN "taka" ; -lin take_N = mkN "take" "takes"; -- from DictEng -lin take_V = IrregEng.take_V; -- from DictEng -lin take_V2 = mkV2 (IrregEng.take_V); -- from DictEng -lin take_VA = mkVA (IrregEng.take_V); -- from DictEng -lin take_VS = mkVS (IrregEng.take_V); -- from DictEng -lin take_shape_V = mkV "take shape" ; -lin take_home_A = compoundA (mkA "take - home"); -- from DictEng -lin take_in_N = mkN "take in" ; -lin take_up_N = mkN "take - up" ; -- from DictEng -lin take_home_A = compoundA (mkA "take - home"); -- from DictEng -lin take_off_N = mkN "take - off" "take - offs"; -- from DictEng -lin take_on_V2 = mkV2 (mkV "take on") ; -lin take_over_V2 = mkV2 (mkV "take over") ; -lin take_up_N = mkN "take - up" ; -- from DictEng -lin takeaway_A = compoundA (mkA "takeaway"); -- from DictEng -lin takeaway_N = mkN "takeaway" ; -lin takedown_N = mkN "takedown" ; -lin taken_A = mkA "taken" ; -lin takeoff_N = mkN "takeoff" ; -lin takeout_A = mkA "takeout" ; -lin takeout_N = mkN "takeout" ; -lin takeover_N = mkN "takeover" "takeovers"; -- from DictEng -lin taker_N = mkN "taker" "takers"; -- from DictEng -lin takin_N = mkN "takin" ; -lin taking_A = compoundA (mkA "taking"); -- from DictEng -lin tala_N = mkN "tala" ; -lin talapoin_N = mkN "talapoin" ; -lin talaria_N = mkN "talaria" ; -lin talc_N = mkN "talc" ; -- from DictEng -lin talc_V2 = mkV2 (mkV "talc") ; -lin talcum_N = mkN "talcum" ; -- from DictEng -lin tale_N = mkN "tale" "tales"; -- from DictEng -lin tale_bearer_N = mkN "tale - bearer" "tale - bearers"; -- from DictEng -lin tale_teller_N = mkN "tale - teller" "tale - tellers"; -- from DictEng -lin talent_N = mkN "talent" "talents"; -- from DictEng -lin talented_A = compoundA (mkA "talented"); -- from DictEng -lin talentlessness_N = mkN "talentlessness" ; -lin talipot_N = mkN "talipot" ; -lin talisman_N = mkN "talisman" "talismans"; -- from DictEng -lin talismanic_A = mkA "talismanic" ; -lin talk_N = mkN "talk" "talks"; -- from DictEng -lin talk_V = mkV "talk" "talks" "talked" "talked" "talking"; -- from DictEng -lin talk_V2 = mkV2 (mkV "talk" "talks" "talked" "talked" "talking"); -- from DictEng -lin talk_VA = mkVA (mkV "talk" "talks" "talked" "talked" "talking"); -- from DictEng -lin talkative_A = compoundA (mkA "talkative"); -- from DictEng -lin talker_N = mkN "talker" "talkers"; -- from DictEng -lin talkie_N = mkN "talkie" "talkies"; -- from DictEng -lin talking_point_N = mkN "talking - point" "talking - points"; -- from DictEng -lin talking_to_N = mkN "talking - to" "talking - tos"; -- from DictEng -lin tall_A = mkA "tall" "taller"; -- from DictEng -lin tall_N = mkN "tall" ; -lin tallboy_N = mkN "tallboy" "tallboys"; -- from DictEng -lin tallgrass_N = mkN "tallgrass" ; -lin tallish_A = compoundA (mkA "tallish"); -- from DictEng -lin tallness_N = mkN "tallness" ; -lin tallow_N = mkN "tallow" ; -- from DictEng -lin tally_N = mkN "tally" "tallies"; -- from DictEng -lin tally_V = mkV "tally" "tallies" "tallied" "tallied" "tallying"; -- from DictEng -lin tally_V2 = mkV2 (mkV "tally" "tallies" "tallied" "tallied" "tallying"); -- from DictEng -lin tally_clerk_N = mkN "tally - clerk" "tally - clerks"; -- from DictEng -lin tally_up_V2 = mkV2 (mkV "tally up") ; -lin tallyman_N = mkN "tallyman" "tallymen" {- FIXME: guessed plural form -}; -- from DictEng -lin talmud_N = mkN "talmud" "talmuds"; -- from DictEng -lin talon_N = mkN "talon" "talons"; -- from DictEng -lin talus_N = mkN "talus" "taluses"; -- from DictEng -lin tam_N = mkN "tam" ; -lin tam_o'_shanter_N = mkN "tam - o'-shanter" "tam - o'-shanters"; -- from DictEng -lin tamable_A = compoundA (mkA "tamable"); -- from DictEng -lin tamale_N = mkN "tamale" "tamales"; -- from DictEng -lin tamandua_N = mkN "tamandua" ; -lin tamarau_N = mkN "tamarau" ; -lin tamarin_N = mkN "tamarin" ; -lin tamarind_N = mkN "tamarind" "tamarinds"; -- from DictEng -lin tamarisk_N = mkN "tamarisk" "tamarisks"; -- from DictEng -lin tambala_N = mkN "tambala" ; -lin tambour_N = mkN "tambour" "tambours"; -- from DictEng -lin tambourine_N = mkN "tambourine" "tambourines"; -- from DictEng -lin tame_A = mkA "tame" "tamer"; -- from DictEng -lin tame_V2 = mkV2 (mkV "tame" "tames" "tamed" "tamed" "taming"); -- from DictEng -lin tamed_A = mkA "tamed" ; -lin tamely_Adv = mkAdv "tamely" ; -lin tameness_N = mkN "tameness" ; -- from DictEng -lin tamer_N = mkN "tamer" "tamers"; -- from DictEng -lin tamil_A = compoundA (mkA "tamil"); -- from DictEng -lin tamil_N = mkN "tamil" "tamils"; -- from DictEng -lin tammany_N = mkN "tammany" "IRREG"; -- from DictEng -lin tammy_N = mkN "tammy" "tammies"; -- from DictEng -lin tamp_N = mkN "tamp" ; -lin tamp_V2 = mkV2 (mkV "tamp" "tamps" "tamped" "tamped" "tamping"); -- from DictEng -lin tamper_V = mkV "tamper" "tampers" "tampered" "tampered" "tampering"; -- from DictEng -lin tampion_N = mkN "tampion" ; -lin tampon_N = mkN "tampon" ; -lin tamponade_N = mkN "tamponade" ; -lin tan_A = compoundA (mkA "tan"); -- from DictEng -lin tan_N = mkN "tan" "tans"; -- from DictEng -lin tan_V = mkV "tan" "tans" "tanned" "tanned" "tanning"; -- from DictEng -lin tan_V2 = mkV2 (mkV "tan" "tans" "tanned" "tanned" "tanning"); -- from DictEng -lin tanager_N = mkN "tanager" ; -lin tanbark_N = mkN "tanbark" ; -lin tandem_Adv = mkAdv "tandem"; -- from DictEng -lin tandem_N = mkN "tandem" "tandems"; -- from DictEng -lin tandoor_N = mkN "tandoor" ; -lin tanekaha_N = mkN "tanekaha" ; -lin tang_N = mkN "tang" "tangs"; -- from DictEng -lin tanga_N = mkN "tanga" ; -lin tangelo_N = mkN "tangelo" ; -lin tangency_N = mkN "tangency" ; -lin tangent_N = mkN "tangent" "tangents"; -- from DictEng -lin tangential_A = mkA "tangential" ; -lin tangentially_Adv = mkAdv "tangentially" ; -lin tangerine_A = compoundA (mkA "tangerine"); -- from DictEng -lin tangerine_N = mkN "tangerine" "tangerines"; -- from DictEng -lin tangibility_N = mkN "tangibility" ; -- from DictEng -lin tangible_A = compoundA (mkA "tangible"); -- from DictEng -lin tangibly_Adv = mkAdv "tangibly" ; -lin tangle_N = mkN "tangle" "tangles"; -- from DictEng -lin tangle_V = mkV "tangle" "tangles" "tangled" "tangled" "tangling"; -- from DictEng -lin tangle_V2 = mkV2 (mkV "tangle" "tangles" "tangled" "tangled" "tangling"); -- from DictEng -lin tanglebush_N = mkN "tanglebush" ; -lin tangled_A = mkA "tangled" ; -lin tango_N = mkN "tango" "tangos"; -- from DictEng -lin tango_V = mkV "tango"; -- from DictEng -lin tangram_N = mkN "tangram" ; -lin tangy_A = mkA "tangy" "tangier"; -- from DictEng -lin tank_N = mkN "tank" "tanks"; -- from DictEng -lin tank_V = mkV "tank" "tanks" "tanked" "tanked" "tanking"; -- from DictEng -lin tank_car_N = mkN "tank - car" "tank - cars"; -- from DictEng -lin tanka_N = mkN "tanka" ; -lin tankage_N = mkN "tankage" ; -lin tankard_N = mkN "tankard" "tankards"; -- from DictEng -lin tanker_N = mkN "tanker" "tankers"; -- from DictEng -lin tanned_A = mkA "tanned" ; -lin tanner_N = mkN "tanner" "tanners"; -- from DictEng -lin tannery_N = mkN "tannery" "tanneries"; -- from DictEng -lin tannic_A = compoundA (mkA "tannic"); -- from DictEng -lin tannin_N = mkN "tannin" ; -- from DictEng -lin tanning_N = mkN "tanning" ; -lin tannish_A = mkA "tannish" ; -lin tannoy_N = mkN "tannoy" "tannoys"; -- from DictEng -lin tansy_N = mkN "tansy" "tansies"; -- from DictEng -lin tansy_scented_A = compoundA (mkA "tansy scented") ; -lin tantalite_N = mkN "tantalite" ; -lin tantalize_V2 = mkV2 (mkV "tantalize" "tantalizes" "tantalized" "tantalized" "tantalizing"); -- from DictEng -lin tantalizer_N = mkN "tantalizer" ; -lin tantalizing_A = mkA "tantalizing" ; -lin tantalizingly_Adv = mkAdv "tantalizingly" ; -lin tantalum_N = mkN "tantalum" ; -lin tantamount_A = compoundA (mkA "tantamount"); -- from DictEng -lin tantra_N = mkN "tantra" ; -lin tantrum_N = mkN "tantrum" "tantrums"; -- from DictEng -lin tanzanian_A = compoundA (mkA "tanzanian"); -- from DictEng -lin tanzanian_N = mkN "tanzanian" "tanzanians"; -- from DictEng -lin taoiseach_N = mkN "taoiseach" ; -lin tap_N = mkN "tap" "taps"; -- from DictEng -lin tap_V = mkV "tap" "taps" "tapped" "tapped" "tapping"; -- from DictEng -lin tap_V2 = mkV2 (mkV "tap" "taps" "tapped" "tapped" "tapping"); -- from DictEng -lin tap_dancing_N = mkN "tap - dancing" ; -- from DictEng -lin tapa_N = mkN "tapa" ; -lin tape_N = mkN "tape" "tapes"; -- from DictEng -lin tape_V = mkV "tape"; -- from DictEng -lin tape_V2 = mkV2 (mkV "tape" "tapes" "taped" "taped" "taping"); -- from DictEng -lin tape_measure_N = mkN "tape - measure" "tape - measures"; -- from DictEng -lin tape_recorder_N = mkN "tape - recorder" "tape - recorders"; -- from DictEng -lin taped_A = mkA "taped" ; -lin tapenade_N = mkN "tapenade" ; -lin taper_N = mkN "taper" "tapers"; -- from DictEng -lin taper_V = mkV "taper" "tapers" "tapered" "tapered" "tapering"; -- from DictEng -lin taper_V2 = mkV2 (mkV "taper" "tapers" "tapered" "tapered" "tapering"); -- from DictEng -lin tapered_A = mkA "tapered" ; -lin tapering_N = mkN "tapering" ; -lin tapestried_A = compoundA (mkA "tapestried"); -- from DictEng -lin tapestry_N = mkN "tapestry" "tapestries"; -- from DictEng -lin tapeworm_N = mkN "tapeworm" "tapeworms"; -- from DictEng -lin taphephobia_N = mkN "taphephobia" ; -lin tapioca_N = mkN "tapioca" ; -- from DictEng -lin tapir_N = mkN "tapir" "tapirs"; -- from DictEng -lin tapotement_N = mkN "tapotement" ; -lin tapped_A = mkA "tapped" ; -lin tapper_N = mkN "tapper" ; -lin tappet_N = mkN "tappet" ; -lin tapping_N = mkN "tapping" ; -lin taproom_N = mkN "taproom" "taprooms"; -- from DictEng -lin taproot_N = mkN "taproot" "taproots"; -- from DictEng -lin taps_N = mkN "taps" ; -lin tapster_N = mkN "tapster" "tapsters"; -- from DictEng -lin tar_N = mkN "tar" "tars"; -- from DictEng -lin tar_V2 = mkV2 (mkV "tar" "tars" "tarred" "tarred" "tarring"); -- from DictEng -lin tar_macadam_N = mkN "tar - macadam" ; -- from DictEng -lin taradiddle_N = mkN "taradiddle" "taradiddles"; -- from DictEng -lin tarantella_N = mkN "tarantella" "tarantellas"; -- from DictEng -lin tarantelle_N = mkN "tarantelle" "tarantelles"; -- from DictEng -lin tarantism_N = mkN "tarantism" ; -lin tarantula_N = mkN "tarantula" "tarantulas"; -- from DictEng -lin tarboosh_N = mkN "tarboosh" "tarbooshes"; -- from DictEng -lin tardigrade_N = mkN "tardigrade" ; -lin tardily_Adv = mkAdv "tardily"; -- from DictEng -lin tardiness_N = mkN "tardiness" ; -- from DictEng -lin tardive_A = mkA "tardive" ; -lin tardy_A = mkA "tardy" "tardier"; -- from DictEng -lin tare_N = mkN "tare" "tares"; -- from DictEng -lin target_N = mkN "target" "targets"; -- from DictEng -lin target_V2 = mkV2 (variants {mkV "target" "targets" "targeted" "targeted" "targeting"}) ; -- from DictEng -lin target_V2V = mkV2V (mkV "target") noPrep to_Prep ; -- from DictEng -lin target_VS = mkVS (mkV "target"); -- from DictEng -lin target_hunting_A = compoundA (mkA "target hunting") ; -lin tariff_N = mkN "tariff" "tariffs"; -- from DictEng -lin tarmac_N = mkN "tarmac" ; -- from DictEng -lin tarmac_V2 = mkV2 (mkV "tarmac" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin tarmacadam_N = mkN "tarmacadam" ; -lin tarn_N = mkN "tarn" "tarns"; -- from DictEng -lin tarnish_N = mkN "tarnish" ; -- from DictEng -lin tarnish_V = mkV "tarnish" "tarnishes" "tarnished" "tarnished" "tarnishing"; -- from DictEng -lin tarnish_V2 = mkV2 (mkV "tarnish" "tarnishes" "tarnished" "tarnished" "tarnishing"); -- from DictEng -lin taro_N = mkN "taro" "taros"; -- from DictEng -lin tarpan_N = mkN "tarpan" ; -lin tarpaulin_N = mkN "tarpaulin" "tarpaulins"; -- from DictEng -lin tarpon_N = mkN "tarpon" "tarpons"; -- from DictEng -lin tarradiddle_N = mkN "tarradiddle" "tarradiddles"; -- from DictEng -lin tarragon_N = mkN "tarragon" ; -- from DictEng -lin tarred_and_feathered_A = compoundA (mkA "tarred and feathered") ; -lin tarriance_N = mkN "tarriance" ; -lin tarry_A = compoundA (mkA "tarry"); -- from DictEng -lin tarry_V = mkV "tarry" "tarries" "tarried" "tarried" "tarrying"; -- from DictEng -lin tarsal_A = compoundA (mkA "tarsal"); -- from DictEng -lin tarsal_N = mkN "tarsal" "tarsals"; -- from DictEng -lin tarsier_N = mkN "tarsier" ; -lin tarsitis_N = mkN "tarsitis" ; -lin tarsus_N = mkN "tarsus" "tarsi" {- FIXME: guessed plural form -}; -- from DictEng -lin tart_A = compoundA (mkA "tart"); -- from DictEng -lin tart_N = mkN "tart" "tarts"; -- from DictEng -lin tart_V2 = mkV2 (mkV "tart" "tarts" "tarted" "tarted" "tarting"); -- from DictEng -lin tartan_N = mkN "tartan" "tartans"; -- from DictEng -lin tartar_N = mkN "tartar" "tartars"; -- from DictEng -lin tartaric_A = compoundA (mkA "tartaric"); -- from DictEng -lin tartlet_N = mkN "tartlet" ; -lin tartly_Adv = mkAdv "tartly" ; -lin tartness_N = mkN "tartness" ; -- from DictEng -lin tartrate_N = mkN "tartrate" ; -lin tarweed_N = mkN "tarweed" ; -lin tarwood_N = mkN "tarwood" ; -lin task_N = mkN "task" "tasks"; -- from DictEng -lin task_V2 = mkV2 (mkV "task" "tasks" "tasked" "tasked" "tasking"); -- from DictEng -lin task_force_N = mkN "task - force" "task - forces"; -- from DictEng -lin taskmaster_N = mkN "taskmaster" "taskmasters"; -- from DictEng -lin taskmistress_N = mkN "taskmistress" ; -lin tassel_N = mkN "tassel" "tassels"; -- from DictEng -lin tassel_V2 = mkV2 (mkV "tassel") ; -lin tassel_shaped_A = compoundA (mkA "tassel shaped") ; -lin tasseled_A = compoundA (mkA "tasseled"); -- from DictEng -lin tasselled_A = compoundA (mkA "tasselled"); -- from DictEng -lin tasset_N = mkN "tasset" ; -lin taste_N = mkN "taste" "tastes"; -- from DictEng -lin taste_V = mkV "taste" "tastes" "tasted" "tasted" "tasting"; -- from DictEng -lin taste_V2 = mkV2 (mkV "taste" "tastes" "tasted" "tasted" "tasting"); -- from DictEng -lin tastebud_N = mkN "tastebud" ; -lin tasteful_A = compoundA (mkA "tasteful"); -- from DictEng -lin tastefully_Adv = mkAdv "tastefully" ; -lin tastefulness_N = mkN "tastefulness" ; -lin tasteless_A = compoundA (mkA "tasteless"); -- from DictEng -lin tastelessly_Adv = mkAdv "tastelessly" ; -lin tastelessness_N = mkN "tastelessness" ; -lin taster_N = mkN "taster" "tasters"; -- from DictEng -lin tastily_Adv = mkAdv "tastily"; -- from DictEng -lin tasting_N = mkN "tasting" ; -lin tasty_A = mkA "tasty" "tastier"; -- from DictEng -lin tat_N = mkN "tat" ; -- from DictEng -lin tat_V = mkV "tat" "tats" "tatted" "tatted" "tatting"; -- from DictEng -lin tat_V2 = mkV2 (mkV "tat" "tats" "tatted" "tatted" "tatting"); -- from DictEng -lin tatouay_N = mkN "tatouay" ; -lin tatter_N = mkN "tatter" "tatters"; -- from DictEng -lin tatterdemalion_N = mkN "tatterdemalion" "tatterdemalions"; -- from DictEng -lin tattered_A = compoundA (mkA "tattered"); -- from DictEng -lin tattily_Adv = mkAdv "tattily"; -- from DictEng -lin tatting_N = mkN "tatting" ; -- from DictEng -lin tattle_N = mkN "tattle" ; -- from DictEng -lin tattle_V = mkV "tattle" "tattles" "tattled" "tattled" "tattling"; -- from DictEng -lin tattle_V2 = mkV2 (mkV "tattle" "tattles" "tattled" "tattled" "tattling"); -- from DictEng -lin tattler_N = mkN "tattler" "tattlers"; -- from DictEng -lin tattletale_N = mkN "tattletale" ; -lin tattoo_N = mkN "tattoo" "tattoos"; -- from DictEng -lin tattoo_V = mkV "tattoo" ; -lin tattoo_V2 = mkV2 (mkV "tattoo" "tattoos" "tattooed" "tattooed" "tattooing"); -- from DictEng -lin tatty_A = mkA "tatty" "tattier"; -- from DictEng -lin tau_N = mkN "tau" ; -lin taunt_N = mkN "taunt" "taunts"; -- from DictEng -lin taunt_V2 = mkV2 (mkV "taunt" "taunts" "taunted" "taunted" "taunting"); -- from DictEng -lin tauntingly_Adv = mkAdv "tauntingly"; -- from DictEng -lin tauon_N = mkN "tauon" ; -lin taupe_N = mkN "taupe" ; -lin taurine_A = mkA "taurine" ; -lin taurine_N = mkN "taurine" ; -lin taut_A = mkA "taut" "tauter"; -- from DictEng -lin tautly_Adv = mkAdv "tautly" ; -lin tautness_N = mkN "tautness" ; -- from DictEng -lin tautog_N = mkN "tautog" ; -lin tautological_A = compoundA (mkA "tautological"); -- from DictEng -lin tautology_N = mkN "tautology" "tautologies"; -- from DictEng -lin tavern_N = mkN "tavern" "taverns"; -- from DictEng -lin taw_N = mkN "taw" ; -lin tawdrily_Adv = mkAdv "tawdrily"; -- from DictEng -lin tawdriness_N = mkN "tawdriness" ; -- from DictEng -lin tawdry_A = mkA "tawdry" "tawdrier"; -- from DictEng -lin tawniness_N = mkN "tawniness" ; -lin tawny_A = compoundA (mkA "tawny"); -- from DictEng -lin tawny_colored_A = compoundA (mkA "tawny colored") ; -lin tawse_N = mkN "tawse" "tawses"; -- from DictEng -lin tax_N = mkN "tax" "taxes"; -- from DictEng -lin tax_V2 = mkV2 (mkV "tax" "taxes" "taxed" "taxed" "taxing"); -- from DictEng -lin tax_exempt_A = compoundA (mkA "tax exempt") ; -lin tax_increase_N = mkN "tax increase" ; -lin tax_collector_N = mkN "tax - collector" "tax - collectors"; -- from DictEng -lin tax_free_A = compoundA (mkA "tax - free"); -- from DictEng -lin taxability_N = mkN "taxability" ; -- from DictEng -lin taxable_A = compoundA (mkA "taxable"); -- from DictEng -lin taxation_N = mkN "taxation" ; -- from DictEng -lin taxer_N = mkN "taxer" ; -lin taxi_N = mkN "taxi" "taxis"; -- from DictEng -lin taxi_V = mkV "taxi" "taxis" "taxied" "taxied" "taxiing"; -- from DictEng -lin taxi_V2 = mkV2 (mkV "taxi" "taxis" "taxied" "taxied" "taxiing"); -- from DictEng -lin taxicab_N = mkN "taxicab" "taxicabs"; -- from DictEng -lin taxidermist_N = mkN "taxidermist" "taxidermists"; -- from DictEng -lin taxidermy_N = mkN "taxidermy" ; -- from DictEng -lin taxidriver_N = mkN "taxidriver" ; -lin taximeter_N = mkN "taximeter" "taximeters"; -- from DictEng -lin taxis_N = mkN "taxis" ; -lin taxiway_N = mkN "taxiway" ; -lin taxonomic_A = mkA "taxonomic" ; -lin taxonomically_Adv = mkAdv "taxonomically" ; -lin taxonomist_N = mkN "taxonomist" ; -lin taxonomy_N = mkN "taxonomy" "taxonomies"; -- from DictEng -lin taxpayer_N = mkN "taxpayer" "taxpayers"; -- from DictEng -lin taxpaying_A = mkA "taxpaying" ; -lin tayra_N = mkN "tayra" ; -lin tb_N = mkN "tb" ; -- from DictEng -lin te_deum_N = mkN "te deum" "te deums"; -- from DictEng -lin tea_N = mkN "tea" "teas"; -- from DictEng -lin tea_scented_A = compoundA (mkA "tea scented") ; -lin tea_strainer_N = mkN "tea - strainer" "tea - strainers"; -- from DictEng -lin tea_bag_N = mkN "tea - bag" "tea - bags"; -- from DictEng -lin tea_break_N = mkN "tea - break" "tea - breaks"; -- from DictEng -lin tea_caddy_N = mkN "tea - caddy" "tea - caddies"; -- from DictEng -lin tea_chest_N = mkN "tea - chest" "tea - chests"; -- from DictEng -lin tea_cloth_N = mkN "tea - cloth" "tea - cloths"; -- from DictEng -lin tea_cosy_N = mkN "tea - cosy" "tea - cosies"; -- from DictEng -lin tea_garden_N = mkN "tea - garden" "tea - gardens"; -- from DictEng -lin tea_kettle_N = mkN "tea - kettle" "tea - kettles"; -- from DictEng -lin tea_leaf_N = mkN "tea - leaf" "tea - leaves"; -- from DictEng -lin tea_party_N = mkN "tea - party" "tea - parties"; -- from DictEng -lin tea_service_N = mkN "tea - service" "tea - services"; -- from DictEng -lin tea_set_N = mkN "tea - set" "tea - sets"; -- from DictEng -lin tea_strainer_N = mkN "tea - strainer" "tea - strainers"; -- from DictEng -lin tea_table_N = mkN "tea - table" "tea - tables"; -- from DictEng -lin tea_time_N = mkN "tea - time" ; -- from DictEng -lin tea_towel_N = mkN "tea - towel" "tea - towels"; -- from DictEng -lin tea_tray_N = mkN "tea - tray" "tea - trays"; -- from DictEng -lin tea_trolley_N = mkN "tea - trolley" "tea - trolleys"; -- from DictEng -lin tea_urn_N = mkN "tea - urn" "tea - urns"; -- from DictEng -lin tea_wagon_N = mkN "tea - wagon" "tea - wagons"; -- from DictEng -lin teaberry_N = mkN "teaberry" ; -lin teacake_N = mkN "teacake" "teacakes"; -- from DictEng -lin teach_V = IrregEng.teach_V; -- from DictEng -lin teach_V2 = mkV2 (IrregEng.teach_V); -- from DictEng -lin teach_V2V = mkV2V (IrregEng.teach_V) noPrep to_Prep ; -- from DictEng -lin teach_VS = mkVS (IrregEng.teach_V); -- from DictEng -lin teach_in_N = mkN "teach - in" "teach - ins"; -- from DictEng -lin teach_in_N = mkN "teach - in" "teach - ins"; -- from DictEng -lin teachable_A = compoundA (mkA "teachable"); -- from DictEng -lin teacher_N = mkN "teacher" "teachers"; -- from DictEng -lin teachership_N = mkN "teachership" ; -lin teaching_N = mkN "teaching" "teachings"; -- from DictEng -lin teacup_N = mkN "teacup" "teacups"; -- from DictEng -lin teahouse_N = mkN "teahouse" "teahouses"; -- from DictEng -lin teak_N = mkN "teak" ; -- from DictEng -lin teakettle_N = mkN "teakettle" ; -lin teal_N = mkN "teal" "teal"; -- from DictEng -lin team_N = mkN "team" "teams"; -- from DictEng -lin team_V = mkV "team" "teams" "teamed" "teamed" "teaming"; -- from DictEng -lin team_up_V = mkV "team up" ; -lin teammate_N = mkN "teammate" ; -lin teamster_N = mkN "teamster" "teamsters"; -- from DictEng -lin teamwork_N = mkN "teamwork" ; -- from DictEng -lin teapot_N = mkN "teapot" "teapots"; -- from DictEng -lin tear_N = mkN "tear" "tears"; -- from DictEng -lin tear_V = IrregEng.tear_V; -- from DictEng -lin tear_V2 = mkV2 (IrregEng.tear_V); -- from DictEng -lin tear_drop_N = mkN "tear - drop" "tear - drops"; -- from DictEng -lin tear_gas_N = mkN "tear - gas" ; -- from DictEng -lin tearaway_A = compoundA (mkA "tearaway"); -- from DictEng -lin tearaway_N = mkN "tearaway" "tearaways"; -- from DictEng -lin teardrop_N = mkN "teardrop" ; -lin tearful_A = compoundA (mkA "tearful"); -- from DictEng -lin tearfully_Adv = mkAdv "tearfully" ; -lin tearing_A = compoundA (mkA "tearing"); -- from DictEng -lin tearing_N = mkN "tearing" ; -- from DictEng -lin tearjerker_N = mkN "tearjerker" ; -lin tearless_A = compoundA (mkA "tearless"); -- from DictEng -lin tearoom_N = mkN "tearoom" "tearooms"; -- from DictEng -lin teary_A = mkA "teary" ; -lin tease_N = mkN "tease" "teases"; -- from DictEng -lin tease_V2 = mkV2 (mkV "tease" "teases" "teased" "teased" "teasing"); -- from DictEng -lin teased_A = mkA "teased" ; -lin teasel_N = mkN "teasel" "teasels"; -- from DictEng -lin teaser_N = mkN "teaser" "teasers"; -- from DictEng -lin teashop_N = mkN "teashop" "teashops"; -- from DictEng -lin teasing_A = mkA "teasing" ; -lin teasing_N = mkN "teasing" ; -lin teasingly_Adv = mkAdv "teasingly"; -- from DictEng -lin teaspoon_N = mkN "teaspoon" "teaspoons"; -- from DictEng -lin teaspoonful_N = mkN "teaspoonful" "teaspoonfuls"; -- from DictEng -lin teat_N = mkN "teat" "teats"; -- from DictEng -lin teazel_N = mkN "teazel" "teazels"; -- from DictEng -lin teazle_N = mkN "teazle" "teazles"; -- from DictEng -lin tebibit_N = mkN "tebibit" ; -lin tec_N = mkN "tec" "tecs"; -- from DictEng -lin tech_N = mkN "tech" ; -- from DictEng -lin techie_N = mkN "techie" ; -lin technetium_N = mkN "technetium" ; -lin technical_A = compoundA (mkA "technical"); -- from DictEng -lin technical_N = mkN "technical" ; -lin technical_grade_A = compoundA (mkA "technical grade") ; -lin technicality_N = mkN "technicality" "technicalities"; -- from DictEng -lin technically_Adv = mkAdv "technically" ; -lin technician_N = mkN "technician" "technicians"; -- from DictEng -lin technicolor_N = mkN "technicolor" ; -- from DictEng -lin technique_N = mkN "technique" "techniques"; -- from DictEng -lin techno_N = mkN "techno" ; -lin technobabble_N = mkN "technobabble" ; -lin technocracy_N = mkN "technocracy" "technocracies"; -- from DictEng -lin technocrat_N = mkN "technocrat" "technocrats"; -- from DictEng -lin technological_A = compoundA (mkA "technological"); -- from DictEng -lin technologically_Adv = mkAdv "technologically" ; -lin technologist_N = mkN "technologist" "technologists"; -- from DictEng -lin technology_N = mkN "technology" "technologies"; -- from DictEng -lin technophile_N = mkN "technophile" ; -lin technophilia_N = mkN "technophilia" ; -lin technophilic_A = mkA "technophilic" ; -lin technophobe_N = mkN "technophobe" ; -lin technophobia_N = mkN "technophobia" ; -lin technophobic_A = mkA "technophobic" ; -lin techy_A = compoundA (mkA "techy"); -- from DictEng -lin tectonic_A = mkA "tectonic" ; -lin tectonics_N = mkN "tectonics" ; -lin ted_N = mkN "ted" "teds"; -- from DictEng -lin teddy_N = mkN "teddy" "teddies"; -- from DictEng -lin teddy_boy_N = mkN "teddy boy" "teddy boys"; -- from DictEng -lin tedious_A = compoundA (mkA "tedious"); -- from DictEng -lin tediousness_N = mkN "tediousness" ; -- from DictEng -lin tedium_N = mkN "tedium" ; -- from DictEng -lin tee_N = mkN "tee" "tees"; -- from DictEng -lin tee_V = mkV "tee" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin tee_V2 = mkV2 (mkV "tee" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin tee_shirt_N = mkN "tee - shirt" "tee - shirts"; -- from DictEng -lin teem_V = mkV "teem" "teems" "teemed" "teemed" "teeming"; -- from DictEng -lin teeming_A = mkA "teeming" ; -lin teenage_A = compoundA (mkA "teenage"); -- from DictEng -lin teenager_N = mkN "teenager" "teenagers"; -- from DictEng -lin teens_N = mkN "teens" ; -lin teeny_A = mkA "teeny" "teenier"; -- from DictEng -lin teeoff_N = mkN "teeoff" ; -lin teeter_V = mkV "teeter" "teeters" "teetered" "teetered" "teetering"; -- from DictEng -lin teethe_V = mkV "teethe" "teethes" "teethed" "teethed" "teething"; -- from DictEng -lin teething_N = mkN "teething" ; -lin teetotal_A = compoundA (mkA "teetotal"); -- from DictEng -lin teetotaler_N = mkN "teetotaler" ; -lin teetotaling_N = mkN "teetotaling" ; -lin teetotaller_N = mkN "teetotaller" "teetotallers"; -- from DictEng -lin teetotum_N = mkN "teetotum" "teetotums"; -- from DictEng -lin teff_N = mkN "teff" ; -lin teg_N = mkN "teg" "tegs"; -- from DictEng -lin tegular_A = mkA "tegular" ; -lin tegument_N = mkN "tegument" "teguments"; -- from DictEng -lin teju_N = mkN "teju" ; -lin tektite_N = mkN "tektite" ; -lin telecast_N = mkN "telecast" "telecasts"; -- from DictEng -lin telecast_V2 = mkV2 (mkV "tele" IrregEng.cast_V); -- from DictEng -lin telecaster_N = mkN "telecaster" ; -lin telecommunication_N = mkN "telecommunication" "telecommunications"; -- from DictEng -lin telecommuting_N = mkN "telecommuting" ; -lin teleconference_N = mkN "teleconference" ; -lin telefilm_N = mkN "telefilm" ; -lin telegnosis_N = mkN "telegnosis" ; -lin telegnostic_A = mkA "telegnostic" ; -lin telegram_N = mkN "telegram" "telegrams"; -- from DictEng -lin telegraph_N = mkN "telegraph" "telegraphs"; -- from DictEng -lin telegraph_V = mkV "telegraph" "telegraphs" "telegraphed" "telegraphed" "telegraphing"; -- from DictEng -lin telegraph_V2 = mkV2 (mkV "telegraph" "telegraphs" "telegraphed" "telegraphed" "telegraphing"); -- from DictEng -lin telegraph_line_N = mkN "telegraph - line" "telegraph - lines"; -- from DictEng -lin telegraph_pole_N = mkN "telegraph - pole" "telegraph - poles"; -- from DictEng -lin telegraph_post_N = mkN "telegraph - post" "telegraph - posts"; -- from DictEng -lin telegraph_wire_N = mkN "telegraph - wire" "telegraph - wires"; -- from DictEng -lin telegrapher_N = mkN "telegrapher" "telegraphers"; -- from DictEng -lin telegraphese_N = mkN "telegraphese" ; -- from DictEng -lin telegraphic_A = compoundA (mkA "telegraphic"); -- from DictEng -lin telegraphically_Adv = mkAdv "telegraphically"; -- from DictEng -lin telegraphist_N = mkN "telegraphist" "telegraphists"; -- from DictEng -lin telegraphy_N = mkN "telegraphy" ; -- from DictEng -lin telekinesis_N = mkN "telekinesis" ; -lin telemark_N = mkN "telemark" ; -lin telemarketing_N = mkN "telemarketing" ; -lin telemeter_N = mkN "telemeter" ; -lin telemetered_A = mkA "telemetered" ; -lin telemetry_N = mkN "telemetry" ; -- from DictEng -lin telencephalon_N = mkN "telencephalon" ; -lin teleological_A = compoundA (mkA "teleological"); -- from DictEng -lin teleologist_N = mkN "teleologist" "teleologists"; -- from DictEng -lin teleology_N = mkN "teleology" "teleologies"; -- from DictEng -lin telepathic_A = compoundA (mkA "telepathic"); -- from DictEng -lin telepathist_N = mkN "telepathist" "telepathists"; -- from DictEng -lin telepathy_N = mkN "telepathy" ; -- from DictEng -lin telephone_N = mkN "telephone" "telephones"; -- from DictEng -lin telephone_V = mkV "telephone" "telephones" "telephoned" "telephoned" "telephoning"; -- from DictEng -lin telephone_V2 = mkV2 (mkV "telephone" "telephones" "telephoned" "telephoned" "telephoning"); -- from DictEng -lin telephonic_A = compoundA (mkA "telephonic"); -- from DictEng -lin telephonist_N = mkN "telephonist" "telephonists"; -- from DictEng -lin telephony_N = mkN "telephony" ; -- from DictEng -lin telephoto_N = mkN "telephoto" ; -- from DictEng -lin telephotograph_N = mkN "telephotograph" "telephotographs"; -- from DictEng -lin telephotography_N = mkN "telephotography" ; -- from DictEng -lin teleportation_N = mkN "teleportation" ; -lin teleprinter_N = mkN "teleprinter" "teleprinters"; -- from DictEng -lin teleprompter_N = mkN "teleprompter" "teleprompters"; -- from DictEng -lin telerobotics_N = mkN "telerobotics" ; -lin telescope_N = mkN "telescope" "telescopes"; -- from DictEng -lin telescope_V = mkV "telescope" "telescopes" "telescoped" "telescoped" "telescoping"; -- from DictEng -lin telescope_V2 = mkV2 (mkV "telescope" "telescopes" "telescoped" "telescoped" "telescoping"); -- from DictEng -lin telescoped_A = mkA "telescoped" ; -lin telescopic_A = compoundA (mkA "telescopic"); -- from DictEng -lin telescopically_Adv = mkAdv "telescopically"; -- from DictEng -lin telescopy_N = mkN "telescopy" ; -lin telethermometer_N = mkN "telethermometer" ; -lin teletypewriter_N = mkN "teletypewriter" "teletypewriters"; -- from DictEng -lin televangelism_N = mkN "televangelism" ; -lin televangelist_N = mkN "televangelist" ; -lin televise_V2 = mkV2 (mkV "televise" "televises" "televised" "televised" "televising"); -- from DictEng -lin television_N = mkN "television" "televisions"; -- from DictEng -lin telex_N = mkN "telex" "telexes"; -- from DictEng -lin telex_V2 = mkV2 (mkV "telex") ; -lin telfer_N = mkN "telfer" "telfers"; -- from DictEng -lin teliospore_N = mkN "teliospore" ; -lin tell_V = IrregEng.tell_V; -- from DictEng -lin tell_V2 = mkV2 (IrregEng.tell_V); -- from DictEng -lin tell_V2V = mkV2V (IrregEng.tell_V) noPrep to_Prep; -- from DictEng -lin tell_VS = mkVS (IrregEng.tell_V); -- from DictEng -lin tell_VV = mkVV (IrregEng.tell_V); -- from DictEng -lin teller_N = mkN "teller" "tellers"; -- from DictEng -lin telling_A = compoundA (mkA "telling"); -- from DictEng -lin telling_N = mkN "telling" ; -lin tellingly_Adv = mkAdv "tellingly" ; -lin telltale_N = mkN "telltale" "telltales"; -- from DictEng -lin tellurian_A = mkA "tellurian" ; -lin tellurian_N = mkN "tellurian" ; -lin telluric_A = mkA "telluric" ; -lin telluride_N = mkN "telluride" ; -lin tellurium_N = mkN "tellurium" ; -lin telly_N = mkN "telly" "tellies"; -- from DictEng -lin telocentric_A = mkA "telocentric" ; -lin telomerase_N = mkN "telomerase" ; -lin telomere_N = mkN "telomere" ; -lin telophase_N = mkN "telophase" ; -lin telpher_N = mkN "telpher" "telphers"; -- from DictEng -lin telpherage_N = mkN "telpherage" ; -lin temazepam_N = mkN "temazepam" ; -lin temerity_N = mkN "temerity" ; -- from DictEng -lin temp_N = mkN "temp" "temps"; -- from DictEng -lin temper_N = mkN "temper" "tempers"; -- from DictEng -lin temper_V = mkV "temper" "tempers" "tempered" "tempered" "tempering"; -- from DictEng -lin temper_V2 = mkV2 (mkV "temper" "tempers" "tempered" "tempered" "tempering"); -- from DictEng -lin tempera_N = mkN "tempera" ; -- from DictEng -lin temperament_N = mkN "temperament" "temperaments"; -- from DictEng -lin temperamental_A = compoundA (mkA "temperamental"); -- from DictEng -lin temperamentally_Adv = mkAdv "temperamentally" ; -lin temperance_N = mkN "temperance" ; -- from DictEng -lin temperate_A = compoundA (mkA "temperate"); -- from DictEng -lin temperately_Adv = mkAdv "temperately" ; -lin temperateness_N = mkN "temperateness" ; -- from DictEng -lin temperature_N = mkN "temperature" "temperatures"; -- from DictEng -lin tempered_A = compoundA (mkA "tempered"); -- from DictEng -lin tempering_A = mkA "tempering" ; -lin tempest_N = mkN "tempest" "tempests"; -- from DictEng -lin tempest_swept_A = compoundA (mkA "tempest - swept"); -- from DictEng -lin tempest_tossed_A = compoundA (mkA "tempest - tossed"); -- from DictEng -lin tempestuous_A = compoundA (mkA "tempestuous"); -- from DictEng -lin tempestuousness_N = mkN "tempestuousness" ; -lin template_N = mkN "template" "templates"; -- from DictEng -lin temple_N = mkN "temple" "temples"; -- from DictEng -lin templet_N = mkN "templet" "templets"; -- from DictEng -lin tempo_N = mkN "tempo" "tempos"; -- from DictEng -lin temporal_A = compoundA (mkA "temporal"); -- from DictEng -lin temporality_N = mkN "temporality" ; -- from DictEng -lin temporally_Adv = mkAdv "temporally" ; -lin temporalty_N = mkN "temporalty" ; -- from DictEng -lin temporarily_Adv = mkAdv "temporarily" ; -lin temporariness_N = mkN "temporariness" ; -- from DictEng -lin temporary_A = compoundA (mkA "temporary"); -- from DictEng -lin temporize_V = mkV "temporize" "temporizes" "temporized" "temporized" "temporizing"; -- from DictEng -lin temporizer_N = mkN "temporizer" ; -lin tempt_V2 = mkV2 (mkV "tempt" "tempts" "tempted" "tempted" "tempting"); -- from DictEng -lin tempt_V2V = mkV2V (mkV "tempt") noPrep to_Prep ; -- from DictEng -lin temptable_A = mkA "temptable" ; -lin temptation_N = mkN "temptation" "temptations"; -- from DictEng -lin tempter_N = mkN "tempter" "tempters"; -- from DictEng -lin temptingly_Adv = mkAdv "temptingly"; -- from DictEng -lin temptress_N = mkN "temptress" "temptresses"; -- from DictEng -lin tempura_N = mkN "tempura" ; -lin ten_A = mkA "ten" ; -lin ten_N = mkN "ten" ; -lin ten_membered_A = compoundA (mkA "ten membered") ; -lin ten_sided_A = compoundA (mkA "ten sided") ; -lin ten_spot_N = mkN "ten spot" ; -lin ten_thousand_A = compoundA (mkA "ten thousand") ; -lin tenability_N = mkN "tenability" ; -- from DictEng -lin tenable_A = compoundA (mkA "tenable"); -- from DictEng -lin tenacious_A = compoundA (mkA "tenacious"); -- from DictEng -lin tenaciousness_N = mkN "tenaciousness" ; -- from DictEng -lin tenacity_N = mkN "tenacity" ; -- from DictEng -lin tenancy_N = mkN "tenancy" "tenancies"; -- from DictEng -lin tenant_N = mkN "tenant" "tenants"; -- from DictEng -lin tenant_V2 = mkV2 (mkV "tenant" "tenants" "tenanted" "tenanted" "tenanting"); -- from DictEng -lin tenantry_N = mkN "tenantry" "tenantries"; -- from DictEng -lin tench_N = mkN "tench" "tench"; -- from DictEng -lin tend_V = mkV "tend" "tends" "tended" "tended" "tending"; -- from DictEng -lin tend_V2 = mkV2 (mkV "tend" "tends" "tended" "tended" "tending"); -- from DictEng -lin tend_VV = mkVV (mkV "tend" "tends" "tended" "tended" "tending"); -- from DictEng -lin tendency_N = mkN "tendency" "tendencies"; -- from DictEng -lin tendentious_A = compoundA (mkA "tendentious"); -- from DictEng -lin tendentiously_Adv = mkAdv "tendentiously" ; -lin tendentiousness_N = mkN "tendentiousness" ; -- from DictEng -lin tender_A = mkA "tender" "tenderer"; -- from DictEng -lin tender_N = mkN "tender" "tenders"; -- from DictEng -lin tender_V = mkV "tender" "tenders" "tendered" "tendered" "tendering"; -- from DictEng -lin tender_V2 = mkV2 (mkV "tender" "tenders" "tendered" "tendered" "tendering"); -- from DictEng -lin tender_V2V = mkV2V (mkV "tender" "tenders" "tendered" "tendered" "tendering") noPrep to_Prep ; -- from DictEng -lin tenderfoot_N = mkN "tenderfoot" "tenderfoots"; -- from DictEng -lin tendergreen_N = mkN "tendergreen" ; -lin tenderhearted_A = compoundA (mkA "tenderhearted"); -- from DictEng -lin tenderization_N = mkN "tenderization" ; -lin tenderized_A = mkA "tenderized" ; -lin tenderizer_N = mkN "tenderizer" ; -lin tenderloin_N = mkN "tenderloin" ; -- from DictEng -lin tenderly_Adv = mkAdv "tenderly" ; -lin tenderness_N = mkN "tenderness" ; -- from DictEng -lin tendinitis_N = mkN "tendinitis" ; -lin tendinous_A = mkA "tendinous" ; -lin tendon_N = mkN "tendon" "tendons"; -- from DictEng -lin tendril_N = mkN "tendril" "tendrils"; -- from DictEng -lin tendril_climbing_A = compoundA (mkA "tendril climbing") ; -lin tenebrous_A = mkA "tenebrous" ; -lin tenement_N = mkN "tenement" "tenements"; -- from DictEng -lin tenement_house_N = mkN "tenement - house" "tenement - houses"; -- from DictEng -lin tenesmus_N = mkN "tenesmus" ; -lin tenet_N = mkN "tenet" "tenets"; -- from DictEng -lin tenfold_A = mkA "tenfold" ; -lin tenfold_Adv = mkAdv "tenfold"; -- from DictEng -lin tenge_N = mkN "tenge" ; -lin tenner_N = mkN "tenner" "tenners"; -- from DictEng -lin tennis_N = mkN "tennis" ; -- from DictEng -lin tennis_court_N = mkN "tennis - court" "tennis - courts"; -- from DictEng -lin tennis_elbow_N = mkN "tennis - elbow" ; -- from DictEng -lin tenon_N = mkN "tenon" "tenons"; -- from DictEng -lin tenor_A = mkA "tenor" ; -lin tenor_N = mkN "tenor" "tenors"; -- from DictEng -lin tenoroon_N = mkN "tenoroon" ; -lin tenosynovitis_N = mkN "tenosynovitis" ; -lin tenpence_N = mkN "tenpence" "tenpences"; -- from DictEng -lin tenpin_N = mkN "tenpin" "tenpins"; -- from DictEng -lin tenpins_N = mkN "tenpins" ; -lin tenrec_N = mkN "tenrec" ; -lin tense_A = mkA "tense" "tenser"; -- from DictEng -lin tense_N = mkN "tense" "tenses"; -- from DictEng -lin tense_V = mkV "tense" "tenses" "tensed" "tensed" "tensing"; -- from DictEng -lin tense_V2 = mkV2 (mkV "tense" "tenses" "tensed" "tensed" "tensing"); -- from DictEng -lin tensed_A = mkA "tensed" ; -lin tensely_Adv = mkAdv "tensely" ; -lin tenseness_N = mkN "tenseness" ; -- from DictEng -lin tensile_A = compoundA (mkA "tensile"); -- from DictEng -lin tensimeter_N = mkN "tensimeter" ; -lin tensiometer_N = mkN "tensiometer" ; -lin tension_N = mkN "tension" "tensions"; -- from DictEng -lin tensional_A = mkA "tensional" ; -lin tensionless_A = mkA "tensionless" ; -lin tensity_N = mkN "tensity" ; -- from DictEng -lin tensor_N = mkN "tensor" ; -lin tent_N = mkN "tent" "tents"; -- from DictEng -lin tent_fly_N = mkN "tent fly" ; -lin tent_peg_N = mkN "tent - peg" "tent - pegs"; -- from DictEng -lin tentacle_N = mkN "tentacle" "tentacles"; -- from DictEng -lin tentacled_A = mkA "tentacled" ; -lin tentacular_A = mkA "tentacular" ; -lin tentative_A = compoundA (mkA "tentative"); -- from DictEng -lin tentatively_Adv = mkAdv "tentatively" ; -lin tenter_N = mkN "tenter" ; -lin tenterhook_N = mkN "tenterhook" ; -lin tenth_A = compoundA (mkA "tenth"); -- from DictEng -lin tenth_N = mkN "tenth" "tenths"; -- from DictEng -lin tenthly_Adv = mkAdv "tenthly" ; -lin tentmaker_N = mkN "tentmaker" ; -lin tentorium_N = mkN "tentorium" ; -lin tenuity_N = mkN "tenuity" ; -- from DictEng -lin tenuous_A = compoundA (mkA "tenuous"); -- from DictEng -lin tenuously_Adv = mkAdv "tenuously" ; -lin tenure_N = mkN "tenure" "tenures"; -- from DictEng -lin tenured_A = mkA "tenured" ; -lin tepal_N = mkN "tepal" ; -lin tepee_N = mkN "tepee" "tepees"; -- from DictEng -lin tepid_A = compoundA (mkA "tepid"); -- from DictEng -lin tepidity_N = mkN "tepidity" ; -- from DictEng -lin tepidness_N = mkN "tepidness" ; -- from DictEng -lin tequila_N = mkN "tequila" ; -lin terabit_N = mkN "terabit" ; -lin terabyte_N = mkN "terabyte" ; -lin teraflop_N = mkN "teraflop" ; -lin terahertz_N = mkN "terahertz" ; -lin teratogen_N = mkN "teratogen" ; -lin teratogenesis_N = mkN "teratogenesis" ; -lin teratogenic_A = mkA "teratogenic" ; -lin teratology_N = mkN "teratology" ; -lin teratoma_N = mkN "teratoma" ; -lin terazosin_N = mkN "terazosin" ; -lin terbinafine_N = mkN "terbinafine" ; -lin terbium_N = mkN "terbium" ; -lin terce_N = mkN "terce" ; -lin tercentenary_N = mkN "tercentenary" "tercentenaries"; -- from DictEng -lin tercentennial_N = mkN "tercentennial" "tercentennials"; -- from DictEng -lin terebinth_N = mkN "terebinth" ; -lin teredo_N = mkN "teredo" ; -lin teres_N = mkN "teres" ; -lin terete_A = mkA "terete" ; -lin tergiversate_V = mkV "tergiversate" "tergiversates" "tergiversated" "tergiversated" "tergiversating"; -- from DictEng -lin tergiversation_N = mkN "tergiversation" ; -- from DictEng -lin teriyaki_N = mkN "teriyaki" ; -lin term_N = mkN "term" "terms"; -- from DictEng -lin term_V2 = mkV2 (mkV "term" "terms" "termed" "termed" "terming"); -- from DictEng -lin term_VS = mkVS (mkV "term"); -- from DictEng -lin termagant_N = mkN "termagant" "termagants"; -- from DictEng -lin termer_N = mkN "termer" ; -lin terminable_A = compoundA (mkA "terminable"); -- from DictEng -lin terminal_A = compoundA (mkA "terminal"); -- from DictEng -lin terminal_N = mkN "terminal" "terminals"; -- from DictEng -lin terminally_Adv = mkAdv "terminally" ; -lin terminate_V = mkV "terminate" "terminates" "terminated" "terminated" "terminating"; -- from DictEng -lin terminate_V2 = mkV2 (mkV "terminate" "terminates" "terminated" "terminated" "terminating"); -- from DictEng -lin terminated_A = mkA "terminated" ; -lin termination_N = mkN "termination" "terminations"; -- from DictEng -lin terminative_A = mkA "terminative" ; -lin terminological_A = compoundA (mkA "terminological"); -- from DictEng -lin terminology_N = mkN "terminology" "terminologies"; -- from DictEng -lin terminus_N = mkN "terminus" "terminuses"; -- from DictEng -lin termite_N = mkN "termite" "termites"; -- from DictEng -lin tern_N = mkN "tern" "terns"; -- from DictEng -lin ternary_A = mkA "ternary" ; -lin ternate_A = mkA "ternate" ; -lin terpene_N = mkN "terpene" ; -lin terpsichorean_A = compoundA (mkA "terpsichorean"); -- from DictEng -lin terra_cotta_N = mkN "terra - cotta" ; -- from DictEng -lin terra_firma_N = mkN "terra firma" ; -- from DictEng -lin terra_incognita_N = mkN "terra incognita" ; -- from DictEng -lin terrace_N = mkN "terrace" "terraces"; -- from DictEng -lin terrace_V2 = mkV2 (mkV "terrace" "terraces" "terraced" "terraced" "terracing"); -- from DictEng -lin terrain_N = mkN "terrain" ; -- from DictEng -lin terrapin_N = mkN "terrapin" "terrapins"; -- from DictEng -lin terrarium_N = mkN "terrarium" ; -lin terreplein_N = mkN "terreplein" ; -lin terrestrial_A = compoundA (mkA "terrestrial"); -- from DictEng -lin terrestrially_Adv = mkAdv "terrestrially" ; -lin terrible_A = compoundA (mkA "terrible"); -- from DictEng -lin terribly_Adv = mkAdv "terribly" ; -lin terrier_N = mkN "terrier" "terriers"; -- from DictEng -lin terrific_A = compoundA (mkA "terrific"); -- from DictEng -lin terrifically_Adv = mkAdv "terrifically"; -- from DictEng -lin terrify_V2 = mkV2 (mkV "terrify" "terrifies" "terrified" "terrified" "terrifying"); -- from DictEng -lin terrine_N = mkN "terrine" ; -lin territorial_A = compoundA (mkA "territorial"); -- from DictEng -lin territorial_N = mkN "territorial" "territorials"; -- from DictEng -lin territoriality_N = mkN "territoriality" ; -lin territorialization_N = mkN "territorialization" ; -lin territorially_Adv = mkAdv "territorially" ; -lin territory_N = mkN "territory" "territories"; -- from DictEng -lin terror_N = mkN "terror" "terrors"; -- from DictEng -lin terror_stricken_A = compoundA (mkA "terror - stricken"); -- from DictEng -lin terror_stricken_A = compoundA (mkA "terror - stricken"); -- from DictEng -lin terror_struck_A = compoundA (mkA "terror - struck"); -- from DictEng -lin terrorism_N = mkN "terrorism" ; -- from DictEng -lin terrorist_N = mkN "terrorist" "terrorists"; -- from DictEng -lin terrorization_N = mkN "terrorization" ; -lin terrorize_V2 = mkV2 (mkV "terrorize" "terrorizes" "terrorized" "terrorized" "terrorizing"); -- from DictEng -lin terry_N = mkN "terry" ; -lin terse_A = mkA "terse" "terser"; -- from DictEng -lin terseness_N = mkN "terseness" ; -- from DictEng -lin tertian_A = compoundA (mkA "tertian"); -- from DictEng -lin tertiary_A = compoundA (mkA "tertiary"); -- from DictEng -lin tertigravida_N = mkN "tertigravida" ; -lin terylene_N = mkN "terylene" ; -- from DictEng -lin tesla_N = mkN "tesla" ; -lin tessella_N = mkN "tessella" ; -lin tessellated_A = compoundA (mkA "tessellated"); -- from DictEng -lin tessellation_N = mkN "tessellation" ; -lin tessera_N = mkN "tessera" ; -lin tesseract_N = mkN "tesseract" ; -lin test_N = mkN "test" "tests"; -- from DictEng -lin test_V2 = mkV2 (mkV "test" "tests" "tested" "tested" "testing"); -- from DictEng -lin test_drive_N = mkN "test - drive" "test - drives"; -- from DictEng -lin test_drive_V2 = mkV2 (mkV "test-" IrregEng.drive_V); -- from DictEng -lin test_tube_N = mkN "test - tube" "test - tubes"; -- from DictEng -lin testa_N = mkN "testa" ; -lin testacean_N = mkN "testacean" ; -lin testaceous_A = mkA "testaceous" ; -lin testament_N = mkN "testament" "testaments"; -- from DictEng -lin testamentary_A = compoundA (mkA "testamentary"); -- from DictEng -lin testate_A = compoundA (mkA "testate"); -- from DictEng -lin testate_N = mkN "testate" "testates"; -- from DictEng -lin testator_N = mkN "testator" "testators"; -- from DictEng -lin testatrix_N = mkN "testatrix" "testatrixes"; -- from DictEng -lin testbed_N = mkN "testbed" "testbeds"; -- from DictEng -lin testcross_N = mkN "testcross" ; -lin tested_A = mkA "tested" ; -lin testee_N = mkN "testee" ; -lin tester_N = mkN "tester" ; -lin testicle_N = mkN "testicle" "testicles"; -- from DictEng -lin testicular_A = mkA "testicular" ; -lin testifier_N = mkN "testifier" ; -lin testify_V = mkV "testify" "testifies" "testified" "testified" "testifying"; -- from DictEng -lin testify_V2 = mkV2 (mkV "testify" "testifies" "testified" "testified" "testifying"); -- from DictEng -lin testify_VS = mkVS (mkV "testify" "testifies" "testified" "testified" "testifying"); -- from DictEng -lin testily_Adv = mkAdv "testily"; -- from DictEng -lin testimonial_A = mkA "testimonial" ; -lin testimonial_N = mkN "testimonial" "testimonials"; -- from DictEng -lin testimony_N = mkN "testimony" "testimonies"; -- from DictEng -lin testiness_N = mkN "testiness" ; -- from DictEng -lin testing_N = mkN "testing" ; -lin testis_N = mkN "testis" "testes" {- FIXME: guessed plural form -}; -- from DictEng -lin testosterone_N = mkN "testosterone" ; -lin testudo_N = mkN "testudo" ; -lin testy_A = mkA "testy" "testier"; -- from DictEng -lin tetanic_A = mkA "tetanic" ; -lin tetanus_N = mkN "tetanus" ; -- from DictEng -lin tetany_N = mkN "tetany" ; -lin tetartanopia_N = mkN "tetartanopia" ; -lin tetchily_Adv = mkAdv "tetchily"; -- from DictEng -lin tetchiness_N = mkN "tetchiness" ; -- from DictEng -lin tetchy_A = mkA "tetchy" "tetchier"; -- from DictEng -lin tete_a_tete_A = compoundA (mkA "tete a tete") ; -lin tete_a_tete_N = mkN "tête - à - tête" "tête - à - têtes"; -- from DictEng -lin tete_a_tete_Adv = mkAdv "tête - à - tête"; -- from DictEng -lin tete_a_tete_N = mkN "tête - à - tête" "tête - à - têtes"; -- from DictEng -lin teth_N = mkN "teth" ; -lin tether_N = mkN "tether" "tethers"; -- from DictEng -lin tether_V2 = mkV2 (mkV "tether" "tethers" "tethered" "tethered" "tethering"); -- from DictEng -lin tetherball_N = mkN "tetherball" ; -lin tethered_A = mkA "tethered" ; -lin tetra_N = mkN "tetra" ; -lin tetracaine_N = mkN "tetracaine" ; -lin tetrachlorethylene_N = mkN "tetrachlorethylene" ; -lin tetrachloride_N = mkN "tetrachloride" ; -lin tetracycline_N = mkN "tetracycline" ; -lin tetrafluoroethylene_N = mkN "tetrafluoroethylene" ; -lin tetragonal_A = mkA "tetragonal" ; -lin tetragram_N = mkN "tetragram" ; -lin tetrahalide_N = mkN "tetrahalide" ; -lin tetrahedron_N = mkN "tetrahedron" ; -lin tetrahydrocannabinol_N = mkN "tetrahydrocannabinol" ; -lin tetrahymena_N = mkN "tetrahymena" ; -lin tetralogy_N = mkN "tetralogy" ; -lin tetralogy_of_fallot_PN = mkPN "tetralogy of Fallot" ; -lin tetramerous_A = mkA "tetramerous" ; -lin tetrameter_N = mkN "tetrameter" ; -lin tetrametric_A = mkA "tetrametric" ; -lin tetrapod_N = mkN "tetrapod" ; -lin tetrasaccharide_N = mkN "tetrasaccharide" ; -lin tetraskelion_N = mkN "tetraskelion" ; -lin tetrasporangium_N = mkN "tetrasporangium" ; -lin tetraspore_N = mkN "tetraspore" ; -lin tetravalent_A = mkA "tetravalent" ; -lin tetri_N = mkN "tetri" ; -lin tetrode_N = mkN "tetrode" ; -lin tetrodotoxin_N = mkN "tetrodotoxin" ; -lin tetrose_N = mkN "tetrose" ; -lin tetroxide_N = mkN "tetroxide" ; -lin tetryl_N = mkN "tetryl" ; -lin teuton_N = mkN "teuton" "teutons"; -- from DictEng -lin teutonic_A = compoundA (mkA "teutonic"); -- from DictEng -lin texan_A = compoundA (mkA "texan"); -- from DictEng -lin texan_N = mkN "texan" "texans"; -- from DictEng -lin text_N = mkN "text" "texts"; -- from DictEng -lin text_matching_N = mkN "text matching" ; -lin textbook_N = mkN "textbook" "textbooks"; -- from DictEng -lin textile_A = compoundA (mkA "textile"); -- from DictEng -lin textile_N = mkN "textile" "textiles"; -- from DictEng -lin textual_A = compoundA (mkA "textual"); -- from DictEng -lin texture_N = mkN "texture" "textures"; -- from DictEng -lin textured_A = compoundA (mkA "textured"); -- from DictEng -lin thai_A = compoundA (mkA "thai"); -- from DictEng -lin thai_N = mkN "thai" "thais"; -- from DictEng -lin thalamocortical_A = mkA "thalamocortical" ; -lin thalamus_N = mkN "thalamus" ; -lin thalassemia_N = mkN "thalassemia" ; -lin thalassic_A = mkA "thalassic" ; -lin thalidomide_N = mkN "thalidomide" ; -- from DictEng -lin thallium_N = mkN "thallium" ; -lin thalloid_A = mkA "thalloid" ; -lin thallophyte_N = mkN "thallophyte" ; -lin thallophytic_A = mkA "thallophytic" ; -lin thallus_N = mkN "thallus" ; -lin thalweg_N = mkN "thalweg" ; -lin than_Prep = mkPrep "than"; -- from DictEng -lin thanatology_N = mkN "thanatology" ; -lin thanatophobia_N = mkN "thanatophobia" ; -lin thanatopsis_N = mkN "thanatopsis" ; -lin thane_N = mkN "thane" "thanes"; -- from DictEng -lin thaneship_N = mkN "thaneship" ; -lin thank_V2 = mkV2 (mkV "thank" "thanks" "thanked" "thanked" "thanking"); -- from DictEng -lin thank_offering_N = mkN "thank - offering" "thank - offerings"; -- from DictEng -lin thankful_A = compoundA (mkA "thankful"); -- from DictEng -lin thankfully_Adv = mkAdv "thankfully" ; -lin thankfulness_N = mkN "thankfulness" ; -- from DictEng -lin thankless_A = compoundA (mkA "thankless"); -- from DictEng -lin thanks_N = mkN "thanks" ; -lin thanksgiving_N = mkN "thanksgiving" "thanksgivings"; -- from DictEng -lin that_Prep = mkPrep "that"; -- from DictEng -lin that_Quant = mkQuant "that" "those" ; -- from DictEng -lin that_much_Adv = mkAdv "that much" ; -lin thatch_N = mkN "thatch" ; -- from DictEng -lin thatch_V2 = mkV2 (mkV "thatch" "thatches" "thatched" "thatched" "thatching"); -- from DictEng -lin thatcher_N = mkN "thatcher" "thatchers"; -- from DictEng -lin thaumatolatry_N = mkN "thaumatolatry" ; -lin thaw_N = mkN "thaw" "thaws"; -- from DictEng -lin thaw_V = mkV "thaw" "thaws" "thawed" "thawed" "thawing"; -- from DictEng -lin thaw_V2 = mkV2 (mkV "thaw" "thaws" "thawed" "thawed" "thawing"); -- from DictEng -lin thawed_A = mkA "thawed" ; -lin the_city_PN = mkPN "the City" ; -lin the_irish_famine_PN = mkPN "the Irish Famine" ; -lin theanthropism_N = mkN "theanthropism" ; -lin theater_N = mkN "theater" ; -lin theatre_N = mkN "theatre" "theatres"; -- from DictEng -lin theatregoer_N = mkN "theatregoer" "theatregoers"; -- from DictEng -lin theatrical_A = compoundA (mkA "theatrical"); -- from DictEng -lin theatrical_N = mkN "theatrical" "theatricals"; -- from DictEng -lin theatrically_Adv = mkAdv "theatrically" ; -lin thebe_N = mkN "thebe" ; -lin theca_N = mkN "theca" ; -lin thecodont_N = mkN "thecodont" ; -lin theft_N = mkN "theft" "thefts"; -- from DictEng -lin theism_N = mkN "theism" ; -- from DictEng -lin theist_A = mkA "theist" ; -lin theist_N = mkN "theist" "theists"; -- from DictEng -lin theistic_A = compoundA (mkA "theistic"); -- from DictEng -lin theistical_A = compoundA (mkA "theistical"); -- from DictEng -lin thelarche_N = mkN "thelarche" ; -lin thematic_A = compoundA (mkA "thematic"); -- from DictEng -lin thematically_Adv = mkAdv "thematically" ; -lin theme_N = mkN "theme" "themes"; -- from DictEng -lin then_A = mkA "then" ; -lin then_Adv = mkAdv "then"; -- from DictEng -lin then_N = mkN "then" ; -lin then_Prep = mkPrep "then"; -- from DictEng -lin thenal_A = mkA "thenal" ; -lin thenar_N = mkN "thenar" ; -lin thence_Adv = mkAdv "thence"; -- from DictEng -lin thenceforth_Adv = mkAdv "thenceforth"; -- from DictEng -lin thenceforward_Adv = mkAdv "thenceforward"; -- from DictEng -lin theocracy_N = mkN "theocracy" "theocracies"; -- from DictEng -lin theocratic_A = compoundA (mkA "theocratic"); -- from DictEng -lin theodicy_N = mkN "theodicy" ; -lin theodolite_N = mkN "theodolite" "theodolites"; -- from DictEng -lin theogony_N = mkN "theogony" ; -lin theologian_N = mkN "theologian" "theologians"; -- from DictEng -lin theological_A = compoundA (mkA "theological"); -- from DictEng -lin theologically_Adv = mkAdv "theologically" ; -lin theology_N = mkN "theology" "theologies"; -- from DictEng -lin theophany_N = mkN "theophany" ; -lin theophylline_N = mkN "theophylline" ; -lin theorem_N = mkN "theorem" "theorems"; -- from DictEng -lin theoretic_A = compoundA (mkA "theoretic"); -- from DictEng -lin theoretical_A = compoundA (mkA "theoretical"); -- from DictEng -lin theoretically_Adv = mkAdv "theoretically" ; -lin theoretician_N = mkN "theoretician" "theoreticians"; -- from DictEng -lin theorist_N = mkN "theorist" "theorists"; -- from DictEng -lin theorization_N = mkN "theorization" ; -lin theorize_V = mkV "theorize" "theorizes" "theorized" "theorized" "theorizing"; -- from DictEng -lin theorize_VS = mkVS (mkV "theorize" "theorizes" "theorized" "theorized" "theorizing"); -- from DictEng -lin theory_N = mkN "theory" "theories"; -- from DictEng -lin theory_based_A = compoundA (mkA "theory based") ; -lin theosophical_A = compoundA (mkA "theosophical"); -- from DictEng -lin theosophism_N = mkN "theosophism" ; -lin theosophist_N = mkN "theosophist" "theosophists"; -- from DictEng -lin theosophy_N = mkN "theosophy" ; -- from DictEng -lin theoterrorism_N = mkN "theoterrorism" ; -lin therapeutic_A = compoundA (mkA "therapeutic"); -- from DictEng -lin therapeutical_A = compoundA (mkA "therapeutical"); -- from DictEng -lin therapeutically_Adv = mkAdv "therapeutically" ; -lin therapeutics_N = mkN "therapeutics" "therapeutics"; -- from DictEng -lin therapist_N = mkN "therapist" "therapists"; -- from DictEng -lin therapsid_N = mkN "therapsid" ; -lin therapy_N = mkN "therapy" "therapies"; -- from DictEng -lin there_Adv = mkAdv "there"; -- from DictEng -lin there_N = mkN "there" ; -lin thereabout_Adv = mkAdv "thereabout"; -- from DictEng -lin thereabouts_Adv = mkAdv "thereabouts"; -- from DictEng -lin thereafter_Adv = mkAdv "thereafter"; -- from DictEng -lin thereby_Adv = mkAdv "thereby"; -- from DictEng -lin therefor_Adv = mkAdv "therefor" ; -lin therefore_Adv = mkAdv "therefore"; -- from DictEng -lin therefrom_Adv = mkAdv "therefrom"; -- from DictEng -lin therein_Adv = mkAdv "therein"; -- from DictEng -lin thereinafter_Adv = mkAdv "thereinafter"; -- from DictEng -lin theremin_N = mkN "theremin" ; -lin thereness_N = mkN "thereness" ; -lin thereof_Adv = mkAdv "thereof"; -- from DictEng -lin thereon_Adv = mkAdv "thereon"; -- from DictEng -lin thereto_Adv = mkAdv "thereto"; -- from DictEng -lin theretofore_Adv = mkAdv "theretofore" ; -lin thereunder_Adv = mkAdv "thereunder"; -- from DictEng -lin thereupon_Adv = mkAdv "thereupon"; -- from DictEng -lin therewith_Adv = mkAdv "therewith"; -- from DictEng -lin therewithal_Adv = mkAdv "therewithal"; -- from DictEng -lin therm_N = mkN "therm" "therms"; -- from DictEng -lin thermal_A = compoundA (mkA "thermal"); -- from DictEng -lin thermal_N = mkN "thermal" "thermals"; -- from DictEng -lin thermalgesia_N = mkN "thermalgesia" ; -lin thermally_Adv = mkAdv "thermally" ; -lin thermion_N = mkN "thermion" ; -lin thermionic_A = compoundA (mkA "thermionic"); -- from DictEng -lin thermionics_N = mkN "thermionics" ; -lin thermistor_N = mkN "thermistor" ; -lin thermoacidophile_N = mkN "thermoacidophile" ; -lin thermocautery_N = mkN "thermocautery" ; -lin thermochemistry_N = mkN "thermochemistry" ; -lin thermocoagulation_N = mkN "thermocoagulation" ; -lin thermocouple_N = mkN "thermocouple" ; -lin thermodynamic_A = mkA "thermodynamic" ; -lin thermodynamically_Adv = mkAdv "thermodynamically" ; -lin thermodynamics_N = mkN "thermodynamics" "thermodynamics"; -- from DictEng -lin thermoelectric_A = mkA "thermoelectric" ; -lin thermoelectricity_N = mkN "thermoelectricity" ; -lin thermogram_N = mkN "thermogram" ; -lin thermograph_N = mkN "thermograph" ; -lin thermography_N = mkN "thermography" ; -lin thermogravimetry_N = mkN "thermogravimetry" ; -lin thermohydrometer_N = mkN "thermohydrometer" ; -lin thermohydrometric_A = mkA "thermohydrometric" ; -lin thermojunction_N = mkN "thermojunction" ; -lin thermolabile_A = mkA "thermolabile" ; -lin thermometer_N = mkN "thermometer" "thermometers"; -- from DictEng -lin thermometric_A = mkA "thermometric" ; -lin thermometry_N = mkN "thermometry" ; -lin thermonuclear_A = compoundA (mkA "thermonuclear"); -- from DictEng -lin thermopile_N = mkN "thermopile" ; -lin thermoplastic_A = compoundA (mkA "thermoplastic"); -- from DictEng -lin thermoplastic_N = mkN "thermoplastic" "thermoplastics"; -- from DictEng -lin thermoreceptor_N = mkN "thermoreceptor" ; -lin thermos_N = mkN "thermos" "thermoses"; -- from DictEng -lin thermosetting_A = compoundA (mkA "thermosetting"); -- from DictEng -lin thermosphere_N = mkN "thermosphere" ; -lin thermostat_N = mkN "thermostat" "thermostats"; -- from DictEng -lin thermostatic_A = compoundA (mkA "thermostatic"); -- from DictEng -lin thermostatically_Adv = mkAdv "thermostatically"; -- from DictEng -lin thermostatics_N = mkN "thermostatics" ; -lin thermotherapy_N = mkN "thermotherapy" ; -lin thermotropism_N = mkN "thermotropism" ; -lin theropod_N = mkN "theropod" ; -lin thesaurus_N = mkN "thesaurus" "thesauruses"; -- from DictEng -lin thesis_N = mkN "thesis" "theses" {- FIXME: guessed plural form -}; -- from DictEng -lin thespian_A = compoundA (mkA "thespian"); -- from DictEng -lin thespian_N = mkN "thespian" "thespians"; -- from DictEng -lin theta_N = mkN "theta" ; -lin theurgy_N = mkN "theurgy" ; -lin they_Pron = mkPron "they" "them" "their" "theirs" plural P3 human ; -- from DictEng -lin thiabendazole_N = mkN "thiabendazole" ; -lin thiazide_N = mkN "thiazide" ; -lin thiazine_N = mkN "thiazine" ; -lin thick_A = mkA "thick" "thicker"; -- from DictEng -lin thick_Adv = mkAdv "thick"; -- from DictEng -lin thick_N = mkN "thick" ; -- from DictEng -lin thick_billed_A = compoundA (mkA "thick billed") ; -lin thick_bodied_A = compoundA (mkA "thick bodied") ; -lin thick_branched_A = compoundA (mkA "thick branched") ; -lin thick_haired_A = compoundA (mkA "thick haired") ; -lin thick_lipped_A = compoundA (mkA "thick lipped") ; -lin thick_skinned_A = compoundA (mkA "thick - skinned"); -- from DictEng -lin thick_stemmed_A = compoundA (mkA "thick stemmed") ; -lin thick_headed_A = compoundA (mkA "thick - headed"); -- from DictEng -lin thick_set_A = compoundA (mkA "thick - set"); -- from DictEng -lin thick_skinned_A = compoundA (mkA "thick - skinned"); -- from DictEng -lin thicken_V = mkV "thicken" "thickens" "thickened" "thickened" "thickening"; -- from DictEng -lin thicken_V2 = mkV2 (mkV "thicken" "thickens" "thickened" "thickened" "thickening"); -- from DictEng -lin thickened_A = mkA "thickened" ; -lin thickening_A = mkA "thickening" ; -lin thickening_N = mkN "thickening" ; -- from DictEng -lin thicket_N = mkN "thicket" "thickets"; -- from DictEng -lin thicket_forming_A = compoundA (mkA "thicket forming") ; -lin thickhead_N = mkN "thickhead" ; -lin thickly_Adv = mkAdv "thickly" ; -lin thickness_N = mkN "thickness" "thicknesses"; -- from DictEng -lin thickset_A = mkA "thickset" ; -lin thickspread_A = mkA "thickspread" ; -lin thief_N = mkN "thief" "thieves" {- FIXME: guessed plural form -}; -- from DictEng -lin thieve_V = mkV "thieve" "thieves" "thieved" "thieved" "thieving"; -- from DictEng -lin thieve_V2 = mkV2 (mkV "thieve" "thieves" "thieved" "thieved" "thieving"); -- from DictEng -lin thievery_N = mkN "thievery" ; -- from DictEng -lin thieving_A = mkA "thieving" ; -lin thievish_A = compoundA (mkA "thievish"); -- from DictEng -lin thievishly_Adv = mkAdv "thievishly" ; -lin thievishness_N = mkN "thievishness" ; -lin thigh_N = mkN "thigh" "thighs"; -- from DictEng -lin thighbone_N = mkN "thighbone" "thighbones"; -- from DictEng -lin thill_N = mkN "thill" ; -lin thimble_N = mkN "thimble" "thimbles"; -- from DictEng -lin thimble_shaped_A = compoundA (mkA "thimble shaped") ; -lin thimbleful_N = mkN "thimbleful" "thimblefuls"; -- from DictEng -lin thimbleweed_N = mkN "thimbleweed" ; -lin thimerosal_N = mkN "thimerosal" ; -lin thin_A = mkA "thin" "thinner*"; -- from DictEng -lin thin_Adv = mkAdv "thin"; -- from DictEng -lin thin_V = mkV "thin" "thins" "thinned" "thinned" "thinning"; -- from DictEng -lin thin_V2 = mkV2 (mkV "thin" "thins" "thinned" "thinned" "thinning"); -- from DictEng -lin thin_shelled_A = compoundA (mkA "thin shelled") ; -lin thin_skinned_A = compoundA (mkA "thin - skinned"); -- from DictEng -lin thine_A = compoundA (mkA "thine"); -- from DictEng -lin thing_N = mkN "thing" "things"; -- from DictEng -lin thingmabob_N = mkN "thingmabob" "thingmabobs"; -- from DictEng -lin thingmajig_N = mkN "thingmajig" "thingmajigs"; -- from DictEng -lin things_N = mkN "things" ; -lin thingumabob_N = mkN "thingumabob" "thingumabobs"; -- from DictEng -lin thingumajig_N = mkN "thingumajig" "thingumajigs"; -- from DictEng -lin thingummy_N = mkN "thingummy" "thingummies"; -- from DictEng -lin think_N = mkN "think" "thinks"; -- from DictEng -lin think_V = IrregEng.think_V; -- from DictEng -lin think_V2 = mkV2 (IrregEng.think_V); -- from DictEng -lin think_VA = mkVA (IrregEng.think_V); -- from DictEng -lin think_VS = mkVS (IrregEng.think_V); -- from DictEng -lin think_tank_N = mkN "think - tank" "think - tanks"; -- from DictEng -lin thinkable_A = compoundA (mkA "thinkable"); -- from DictEng -lin thinker_N = mkN "thinker" "thinkers"; -- from DictEng -lin thinking_A = compoundA (mkA "thinking"); -- from DictEng -lin thinking_N = mkN "thinking" ; -- from DictEng -lin thinly_Adv = mkAdv "thinly" ; -lin thinness_N = mkN "thinness" ; -- from DictEng -lin thiobacillus_N = mkN "thiobacillus" ; -lin thiobacteria_N = mkN "thiobacteria" ; -lin thiocyanate_N = mkN "thiocyanate" ; -lin thioguanine_N = mkN "thioguanine" ; -lin thiopental_N = mkN "thiopental" ; -lin thioridazine_N = mkN "thioridazine" ; -lin thiotepa_N = mkN "thiotepa" ; -lin thiothixene_N = mkN "thiothixene" ; -lin thiouracil_N = mkN "thiouracil" ; -lin third_A = mkA "third" ; -lin third_Adv = mkAdv "third" ; -lin third_N = mkN "third" ; -lin third_rate_A = compoundA (mkA "third - rate"); -- from DictEng -lin third_rater_N = mkN "third - rater" "third - raters"; -- from DictEng -lin third_rate_A = compoundA (mkA "third - rate"); -- from DictEng -lin third_rater_N = mkN "third - rater" "third - raters"; -- from DictEng -lin thirdhand_A = mkA "thirdhand" ; -lin thirdhand_Adv = mkAdv "thirdhand" ; -lin thirst_N = mkN "thirst" ; -- from DictEng -lin thirst_V2 = mkV2 (mkV "thirst" "thirsts" "thirsted" "thirsted" "thirsting"); -- from DictEng -lin thirstily_Adv = mkAdv "thirstily"; -- from DictEng -lin thirsty_A = mkA "thirsty" "thirstier"; -- from DictEng -lin thirteen_A = mkA "thirteen" ; -lin thirteen_N = mkN "thirteen" ; -lin thirteenth_A = mkA "thirteenth" ; -lin thirteenth_N = mkN "thirteenth" ; -lin thirties_N = mkN "thirties" ; -lin thirtieth_A = mkA "thirtieth" ; -lin thirtieth_N = mkN "thirtieth" ; -lin thirty_A = mkA "thirty" ; -lin thirty_N = mkN "thirty" ; -lin thirty_eight_A = compoundA (mkA "thirty eight") ; -lin thirty_eighth_A = compoundA (mkA "thirty eighth") ; -lin thirty_fifth_A = compoundA (mkA "thirty fifth") ; -lin thirty_first_A = compoundA (mkA "thirty first") ; -lin thirty_five_A = compoundA (mkA "thirty five") ; -lin thirty_four_A = compoundA (mkA "thirty four") ; -lin thirty_fourth_A = compoundA (mkA "thirty fourth") ; -lin thirty_nine_A = compoundA (mkA "thirty nine") ; -lin thirty_ninth_A = compoundA (mkA "thirty ninth") ; -lin thirty_one_A = compoundA (mkA "thirty one") ; -lin thirty_second_A = compoundA (mkA "thirty second") ; -lin thirty_seven_A = compoundA (mkA "thirty seven") ; -lin thirty_seventh_A = compoundA (mkA "thirty seventh") ; -lin thirty_six_A = compoundA (mkA "thirty six") ; -lin thirty_sixth_A = compoundA (mkA "thirty sixth") ; -lin thirty_third_A = compoundA (mkA "thirty third") ; -lin thirty_three_A = compoundA (mkA "thirty three") ; -lin thirty_two_A = compoundA (mkA "thirty two") ; -lin this_Quant = mkQuant "this" "these" ; -- from DictEng -lin thistle_N = mkN "thistle" "thistles"; -- from DictEng -lin thistledown_N = mkN "thistledown" ; -- from DictEng -lin thistlelike_A = mkA "thistlelike" ; -lin thither_Adv = mkAdv "thither"; -- from DictEng -lin tho'_Adv = mkAdv "tho'"; -- from DictEng -lin thole_N = mkN "thole" "tholes"; -- from DictEng -lin tholepin_N = mkN "tholepin" "tholepins"; -- from DictEng -lin thong_N = mkN "thong" "thongs"; -- from DictEng -lin thoracocentesis_N = mkN "thoracocentesis" ; -lin thoracotomy_N = mkN "thoracotomy" ; -lin thorax_N = mkN "thorax" "thoraxes"; -- from DictEng -lin thoriated_A = mkA "thoriated" ; -lin thorite_N = mkN "thorite" ; -lin thorium_N = mkN "thorium" ; -lin thorium_228_N = mkN "thorium 228" ; -lin thorn_N = mkN "thorn" "thorns"; -- from DictEng -lin thorn_tipped_A = compoundA (mkA "thorn tipped") ; -lin thornbill_N = mkN "thornbill" ; -lin thornless_A = mkA "thornless" ; -lin thorny_A = mkA "thorny" "thornier"; -- from DictEng -lin thorough_A = compoundA (mkA "thorough"); -- from DictEng -lin thoroughbred_A = compoundA (mkA "thoroughbred"); -- from DictEng -lin thoroughbred_N = mkN "thoroughbred" "thoroughbreds"; -- from DictEng -lin thoroughfare_N = mkN "thoroughfare" "thoroughfares"; -- from DictEng -lin thoroughgoing_A = compoundA (mkA "thoroughgoing"); -- from DictEng -lin thoroughly_Adv = mkAdv "thoroughly" ; -lin thoroughness_N = mkN "thoroughness" ; -- from DictEng -lin thortveitite_N = mkN "thortveitite" ; -lin though_Adv = mkAdv "though"; -- from DictEng -lin though_Prep = mkPrep "though"; -- from DictEng -lin thought_N = mkN "thought" "thoughts"; -- from DictEng -lin thought_reader_N = mkN "thought - reader" "thought - readers"; -- from DictEng -lin thoughtful_A = compoundA (mkA "thoughtful"); -- from DictEng -lin thoughtfully_Adv = mkAdv "thoughtfully" ; -lin thoughtfulness_N = mkN "thoughtfulness" ; -- from DictEng -lin thoughtless_A = compoundA (mkA "thoughtless"); -- from DictEng -lin thoughtlessly_Adv = mkAdv "thoughtlessly" ; -lin thoughtlessness_N = mkN "thoughtlessness" ; -- from DictEng -lin thousand_A = mkA "thousand" ; -lin thousand_N = mkN "thousand" ; -lin thousand_fold_Adv = mkAdv "thousand fold" ; -lin thousandfold_A = compoundA (mkA "thousandfold"); -- from DictEng -lin thousandfold_Adv = mkAdv "thousandfold"; -- from DictEng -lin thousandth_A = compoundA (mkA "thousandth"); -- from DictEng -lin thousandth_N = mkN "thousandth" "thousandths"; -- from DictEng -lin thraldom_N = mkN "thraldom" ; -- from DictEng -lin thrall_N = mkN "thrall" "thralls"; -- from DictEng -lin thrash_N = mkN "thrash" ; -lin thrash_V = mkV "thrash" "thrashes" "thrashed" "thrashed" "thrashing"; -- from DictEng -lin thrash_V2 = mkV2 (mkV "thrash" "thrashes" "thrashed" "thrashed" "thrashing"); -- from DictEng -lin thrasher_N = mkN "thrasher" ; -lin thrashing_N = mkN "thrashing" "thrashings"; -- from DictEng -lin thread_N = mkN "thread" "threads"; -- from DictEng -lin thread_V2 = mkV2 (mkV "thread" "threads" "threaded" "threaded" "threading"); -- from DictEng -lin threadbare_A = compoundA (mkA "threadbare"); -- from DictEng -lin threaded_A = mkA "threaded" ; -lin threadfin_N = mkN "threadfin" ; -lin threadfish_N = mkN "threadfish" ; -lin threadlike_A = compoundA (mkA "threadlike"); -- from DictEng -lin threat_N = mkN "threat" "threats"; -- from DictEng -lin threaten_V = mkV "threaten" "threatens" "threatened" "threatened" "threatening"; -- from DictEng -lin threaten_V2 = mkV2 (mkV "threaten" "threatens" "threatened" "threatened" "threatening"); -- from DictEng -lin threaten_VS = mkVS (mkV "threaten" "threatens" "threatened" "threatened" "threatening"); -- from DictEng -lin threaten_VV = mkVV (mkV "threaten" "threatens" "threatened" "threatened" "threatening"); -- from DictEng -lin threatened_A = mkA "threatened" ; -lin threateningly_Adv = mkAdv "threateningly"; -- from DictEng -lin three_A = mkA "three" ; -lin three_N = mkN "three" ; -lin three_d_N = mkN "three - d" ; -- from DictEng -lin three_cornered_A = compoundA (mkA "three - cornered"); -- from DictEng -lin three_decker_N = mkN "three - decker" "three - deckers"; -- from DictEng -lin three_dimensional_A = compoundA (mkA "three - dimensional"); -- from DictEng -lin three_dimensionality_N = mkN "three dimensionality" ; -lin three_figure_A = compoundA (mkA "three - figure"); -- from DictEng -lin three_fourths_N = mkN "three fourths" ; -lin three_hitter_N = mkN "three hitter" ; -lin three_hundredth_A = compoundA (mkA "three hundredth") ; -lin three_lane_A = compoundA (mkA "three - lane"); -- from DictEng -lin three_legged_A = compoundA (mkA "three - legged"); -- from DictEng -lin three_lipped_A = compoundA (mkA "three lipped") ; -lin three_lobed_A = compoundA (mkA "three lobed") ; -lin three_membered_A = compoundA (mkA "three membered") ; -lin three_needled_A = compoundA (mkA "three needled") ; -lin three_petaled_A = compoundA (mkA "three petaled") ; -lin three_piece_A = compoundA (mkA "three - piece"); -- from DictEng -lin three_ply_A = compoundA (mkA "three - ply"); -- from DictEng -lin three_pronged_A = compoundA (mkA "three pronged") ; -lin three_seeded_A = compoundA (mkA "three seeded") ; -lin three_wheel_A = compoundA (mkA "three wheel") ; -lin three_year_old_A = compoundA (mkA "three year old") ; -lin three_cornered_A = compoundA (mkA "three - cornered"); -- from DictEng -lin three_d_A = compoundA (mkA "three - d"); -- from DictEng -lin three_d_N = mkN "three - d" ; -- from DictEng -lin three_decker_N = mkN "three - decker" "three - deckers"; -- from DictEng -lin three_dimensional_A = compoundA (mkA "three - dimensional"); -- from DictEng -lin three_figure_A = compoundA (mkA "three - figure"); -- from DictEng -lin three_funnelled_A = compoundA (mkA "three - funnelled"); -- from DictEng -lin three_hundred_A = compoundA (mkA "three hundred") ; -lin three_lane_A = compoundA (mkA "three - lane"); -- from DictEng -lin three_legged_A = compoundA (mkA "three - legged"); -- from DictEng -lin three_piece_A = compoundA (mkA "three - piece"); -- from DictEng -lin three_ply_A = compoundA (mkA "three - ply"); -- from DictEng -lin three_quarter_A = compoundA (mkA "three - quarter"); -- from DictEng -lin three_quarter_N = mkN "three - quarter" "three - quarters"; -- from DictEng -lin three_score_A = compoundA (mkA "three - score"); -- from DictEng -lin three_score_N = mkN "three - score" ; -- from DictEng -lin three_storey_A = compoundA (mkA "three - storey"); -- from DictEng -lin three_storeyed_A = compoundA (mkA "three - storeyed"); -- from DictEng -lin three_wheeled_A = compoundA (mkA "three - wheeled"); -- from DictEng -lin threefold_A = compoundA (mkA "threefold"); -- from DictEng -lin threefold_Adv = mkAdv "threefold"; -- from DictEng -lin threepence_N = mkN "threepence" "threepences"; -- from DictEng -lin threepenny_A = compoundA (mkA "threepenny"); -- from DictEng -lin threescore_N = mkN "threescore" ; -lin threesome_N = mkN "threesome" "threesomes"; -- from DictEng -lin threnody_N = mkN "threnody" "threnodies"; -- from DictEng -lin threonine_N = mkN "threonine" ; -lin thresh_V = mkV "thresh" "threshes" "threshed" "threshed" "threshing"; -- from DictEng -lin thresh_V2 = mkV2 (mkV "thresh" "threshes" "threshed" "threshed" "threshing"); -- from DictEng -lin thresher_N = mkN "thresher" "threshers"; -- from DictEng -lin threshing_N = mkN "threshing" ; -lin threshing_floor_N = mkN "threshing - floor" "threshing - floors"; -- from DictEng -lin threshing_machine_N = mkN "threshing - machine" "threshing - machines"; -- from DictEng -lin threshold_N = mkN "threshold" "thresholds"; -- from DictEng -lin thrice_Adv = mkAdv "thrice"; -- from DictEng -lin thrift_N = mkN "thrift" ; -- from DictEng -lin thriftily_Adv = mkAdv "thriftily"; -- from DictEng -lin thriftless_A = compoundA (mkA "thriftless"); -- from DictEng -lin thriftlessly_Adv = mkAdv "thriftlessly" ; -lin thriftlessness_N = mkN "thriftlessness" ; -- from DictEng -lin thriftshop_N = mkN "thriftshop" ; -lin thrifty_A = mkA "thrifty" "thriftier"; -- from DictEng -lin thrill_N = mkN "thrill" "thrills"; -- from DictEng -lin thrill_V = mkV "thrill" "thrills" "thrilled" "thrilled" "thrilling"; -- from DictEng -lin thrill_V2 = mkV2 (mkV "thrill" "thrills" "thrilled" "thrilled" "thrilling"); -- from DictEng -lin thrilled_A = mkA "thrilled" ; -lin thriller_N = mkN "thriller" "thrillers"; -- from DictEng -lin thrillful_A = mkA "thrillful" ; -lin thrilling_A = mkA "thrilling" ; -lin thrips_N = mkN "thrips" ; -lin thrive_V = mkV "thrive" "thrives" "thrived" "thrived" "thriving"; -- from DictEng -lin throat_N = mkN "throat" "throats"; -- from DictEng -lin throated_A = compoundA (mkA "throated"); -- from DictEng -lin throatwort_N = mkN "throatwort" ; -lin throaty_A = mkA "throaty" "throatier"; -- from DictEng -lin throb_N = mkN "throb" "throbs"; -- from DictEng -lin throb_V = mkV "throb" "throbs" "throbbed" "throbbed" "throbbing"; -- from DictEng -lin throbbing_A = compoundA (mkA "throbbing"); -- from DictEng -lin throbbing_N = mkN "throbbing" ; -lin throe_N = mkN "throe" "throes"; -- from DictEng -lin throes_N = mkN "throes" ; -lin thrombasthenia_N = mkN "thrombasthenia" ; -lin thrombectomy_N = mkN "thrombectomy" ; -lin thrombin_N = mkN "thrombin" ; -lin thrombocytopenia_N = mkN "thrombocytopenia" ; -lin thrombocytosis_N = mkN "thrombocytosis" ; -lin thromboembolism_N = mkN "thromboembolism" ; -lin thrombolysis_N = mkN "thrombolysis" ; -lin thrombolytic_N = mkN "thrombolytic" ; -lin thrombophlebitis_N = mkN "thrombophlebitis" ; -lin thromboplastin_N = mkN "thromboplastin" ; -lin thrombosed_A = mkA "thrombosed" ; -lin thrombosis_N = mkN "thrombosis" ; -- from DictEng -lin thrombus_N = mkN "thrombus" ; -lin throne_N = mkN "throne" "thrones"; -- from DictEng -lin throng_N = mkN "throng" "throngs"; -- from DictEng -lin throng_V = mkV "throng" "throngs" "thronged" "thronged" "thronging"; -- from DictEng -lin throng_V2 = mkV2 (mkV "throng" "throngs" "thronged" "thronged" "thronging"); -- from DictEng -lin thronged_A = mkA "thronged" ; -lin throstle_N = mkN "throstle" "throstles"; -- from DictEng -lin throttle_N = mkN "throttle" "throttles"; -- from DictEng -lin throttle_V = mkV "throttle" "throttles" "throttled" "throttled" "throttling"; -- from DictEng -lin throttle_V2 = mkV2 (mkV "throttle" "throttles" "throttled" "throttled" "throttling"); -- from DictEng -lin throttle_valve_N = mkN "throttle - valve" "throttle - valves"; -- from DictEng -lin through_A = mkA "through" ; -lin through_Adv = mkAdv "through"; -- from DictEng -lin through_Prep = mkPrep "through"; -- from DictEng -lin throughout_Adv = mkAdv "throughout"; -- from DictEng -lin throughout_Prep = mkPrep "throughout"; -- from DictEng -lin throughput_N = mkN "throughput" "throughputs"; -- from DictEng -lin throughway_N = mkN "throughway" "throughways"; -- from DictEng -lin throw_N = mkN "throw" "throws"; -- from DictEng -lin throw_V = IrregEng.throw_V; -- from DictEng -lin throw_V2 = mkV2 (IrregEng.throw_V); -- from DictEng -lin throw_VS = mkVS (IrregEng.throw_V); -- from DictEng -lin throw_in_N = mkN "throw - in" "throw - ins"; -- from DictEng -lin throw_weight_N = mkN "throw weight" ; -lin throw_in_N = mkN "throw - in" "throw - ins"; -- from DictEng -lin throw_up_V = mkV "throw up" ; -lin throwaway_A = mkA "throwaway" ; -lin throwaway_N = mkN "throwaway" "throwaways"; -- from DictEng -lin throwback_N = mkN "throwback" "throwbacks"; -- from DictEng -lin thrower_N = mkN "thrower" ; -lin thrown_A = mkA "thrown" ; -lin throwster_N = mkN "throwster" ; -lin thrum_N = mkN "thrum" ; -lin thrum_V = mkV "thrum" "thrums" "thrummed" "thrummed" "thrumming"; -- from DictEng -lin thrum_V2 = mkV2 (mkV "thrum" "thrums" "thrummed" "thrummed" "thrumming"); -- from DictEng -lin thrush_N = mkN "thrush" "thrushes"; -- from DictEng -lin thrust_N = mkN "thrust" "thrusts"; -- from DictEng -lin thrust_V = IrregEng.thrust_V; -- from DictEng -lin thrust_V2 = mkV2 (IrregEng.thrust_V); -- from DictEng -lin thruster_N = mkN "thruster" "thrusters"; -- from DictEng -lin thud_N = mkN "thud" "thuds"; -- from DictEng -lin thud_V = mkV "thud" "thuds" "thudded" "thudded" "thudding"; -- from DictEng -lin thud_V2 = mkV2 (mkV "thud") ; -lin thug_N = mkN "thug" "thugs"; -- from DictEng -lin thuggee_N = mkN "thuggee" ; -lin thuggery_N = mkN "thuggery" ; -- from DictEng -lin thulium_N = mkN "thulium" ; -lin thumb_N = mkN "thumb" "thumbs"; -- from DictEng -lin thumb_V2 = mkV2 (mkV "thumb" "thumbs" "thumbed" "thumbed" "thumbing"); -- from DictEng -lin thumbed_A = mkA "thumbed" ; -lin thumbhole_N = mkN "thumbhole" ; -lin thumbnail_N = mkN "thumbnail" ; -lin thumbnut_N = mkN "thumbnut" "thumbnuts"; -- from DictEng -lin thumbprint_N = mkN "thumbprint" ; -lin thumbscrew_N = mkN "thumbscrew" "thumbscrews"; -- from DictEng -lin thumbstall_N = mkN "thumbstall" "thumbstalls"; -- from DictEng -lin thumbtack_N = mkN "thumbtack" "thumbtacks"; -- from DictEng -lin thumbtack_V2 = mkV2 (mkV "thumbtack") ; -lin thump_N = mkN "thump" "thumps"; -- from DictEng -lin thump_V = mkV "thump" "thumps" "thumped" "thumped" "thumping"; -- from DictEng -lin thump_V2 = mkV2 (mkV "thump" "thumps" "thumped" "thumped" "thumping"); -- from DictEng -lin thumping_A = compoundA (mkA "thumping"); -- from DictEng -lin thunder_N = mkN "thunder" "thunders"; -- from DictEng -lin thunder_V = mkV "thunder" "thunders" "thundered" "thundered" "thundering"; -- from DictEng -lin thunder_V2 = mkV2 (mkV "thunder" "thunders" "thundered" "thundered" "thundering"); -- from DictEng -lin thunderbird_N = mkN "thunderbird" ; -lin thunderbolt_N = mkN "thunderbolt" "thunderbolts"; -- from DictEng -lin thunderclap_N = mkN "thunderclap" "thunderclaps"; -- from DictEng -lin thunderer_N = mkN "thunderer" ; -lin thunderhead_N = mkN "thunderhead" ; -lin thundering_A = mkA "thundering" ; -lin thunderous_A = compoundA (mkA "thunderous"); -- from DictEng -lin thundershower_N = mkN "thundershower" ; -lin thunderstorm_N = mkN "thunderstorm" "thunderstorms"; -- from DictEng -lin thunderstruck_A = compoundA (mkA "thunderstruck"); -- from DictEng -lin thundery_A = compoundA (mkA "thundery"); -- from DictEng -lin thunk_N = mkN "thunk" ; -lin thunk_V = mkV "thunk" ; -lin thunk_V2 = mkV2 (mkV "thunk") ; -lin thurible_N = mkN "thurible" "thuribles"; -- from DictEng -lin thurifer_N = mkN "thurifer" ; -lin thursday_N = mkN "Thursday" "Thursdays"; -- from DictEng -lin thus_Adv = mkAdv "thus"; -- from DictEng -lin thwack_N = mkN "thwack" "thwacks"; -- from DictEng -lin thwack_V2 = mkV2 (mkV "thwack" "thwacks" "thwacked" "thwacked" "thwacking"); -- from DictEng -lin thwart_N = mkN "thwart" "thwarts"; -- from DictEng -lin thwart_V2 = mkV2 (mkV "thwart" "thwarts" "thwarted" "thwarted" "thwarting"); -- from DictEng -lin thy_A = compoundA (mkA "thy"); -- from DictEng -lin thylacine_N = mkN "thylacine" ; -lin thyme_N = mkN "thyme" ; -- from DictEng -lin thymine_N = mkN "thymine" ; -lin thymol_N = mkN "thymol" ; -lin thymosin_N = mkN "thymosin" ; -lin thyroglobulin_N = mkN "thyroglobulin" ; -lin thyroid_A = mkA "thyroid" ; -lin thyroid_N = mkN "thyroid" "thyroids"; -- from DictEng -lin thyroidectomy_N = mkN "thyroidectomy" ; -lin thyroiditis_N = mkN "thyroiditis" ; -lin thyronine_N = mkN "thyronine" ; -lin thyroprotein_N = mkN "thyroprotein" ; -lin thyrotoxic_A = mkA "thyrotoxic" ; -lin thyrotropin_N = mkN "thyrotropin" ; -lin thyroxine_N = mkN "thyroxine" ; -lin thyrse_N = mkN "thyrse" ; -lin thyrsopteris_N = mkN "thyrsopteris" ; -lin thysanopter_N = mkN "thysanopter" ; -lin ti_N = mkN "ti" "IRREG"; -- from DictEng -lin tiara_N = mkN "tiara" "tiaras"; -- from DictEng -lin tibetan_A = compoundA (mkA "tibetan"); -- from DictEng -lin tibetan_N = mkN "tibetan" "tibetans"; -- from DictEng -lin tibia_N = mkN "tibia" "tibiae" {- FIXME: guessed plural form -}; -- from DictEng -lin tibial_A = mkA "tibial" ; -lin tibialis_N = mkN "tibialis" ; -lin tic_N = mkN "tic" "tics"; -- from DictEng -lin tick_N = mkN "tick" "ticks"; -- from DictEng -lin tick_V = mkV "tick" "ticks" "ticked" "ticked" "ticking"; -- from DictEng -lin tick_V2 = mkV2 (mkV "tick" "ticks" "ticked" "ticked" "ticking"); -- from DictEng -lin tick_tock_N = mkN "tick - tock" "tick - tocks"; -- from DictEng -lin ticker_N = mkN "ticker" "tickers"; -- from DictEng -lin ticker_tape_N = mkN "ticker - tape" ; -- from DictEng -lin ticket_N = mkN "ticket" "tickets"; -- from DictEng -lin ticket_V2 = mkV2 (mkV "ticket" "tickets" "ticketed" "ticketed" "ticketing"); -- from DictEng -lin ticket_of_leave_N = mkN "ticket of leave" ; -lin ticket_collector_N = mkN "ticket - collector" "ticket - collectors"; -- from DictEng -lin ticking_N = mkN "ticking" ; -- from DictEng -lin tickle_N = mkN "tickle" ; -lin tickle_V = mkV "tickle" "tickles" "tickled" "tickled" "tickling"; -- from DictEng -lin tickle_V2 = mkV2 (mkV "tickle" "tickles" "tickled" "tickled" "tickling"); -- from DictEng -lin tickler_N = mkN "tickler" "ticklers"; -- from DictEng -lin tickling_A = mkA "tickling" ; -lin ticklish_A = compoundA (mkA "ticklish"); -- from DictEng -lin ticktack_N = mkN "ticktack" ; -lin ticktacktoe_N = mkN "ticktacktoe" ; -lin ticktock_N = mkN "ticktock" ; -lin tidal_A = compoundA (mkA "tidal"); -- from DictEng -lin tidbit_N = mkN "tidbit" "tidbits"; -- from DictEng -lin tiddler_N = mkN "tiddler" "tiddlers"; -- from DictEng -lin tiddley_A = compoundA (mkA "tiddley"); -- from DictEng -lin tiddlywinks_N = mkN "tiddlywinks" "tiddlywinks"; -- from DictEng -lin tide_N = mkN "tide" "tides"; -- from DictEng -lin tide_V2 = mkV2 (mkV "tide" "tides" "tided" "tided" "tiding"); -- from DictEng -lin tideland_N = mkN "tideland" ; -lin tidemark_N = mkN "tidemark" "tidemarks"; -- from DictEng -lin tidewater_N = mkN "tidewater" ; -lin tideway_N = mkN "tideway" "tideways"; -- from DictEng -lin tidily_Adv = mkAdv "tidily"; -- from DictEng -lin tidiness_N = mkN "tidiness" ; -- from DictEng -lin tidy_A = mkA "tidy" "tidier"; -- from DictEng -lin tidy_N = mkN "tidy" "tidies"; -- from DictEng -lin tidy_V = mkV "tidy" "tidies" "tidied" "tidied" "tidying"; -- from DictEng -lin tidy_V2 = mkV2 (mkV "tidy" "tidies" "tidied" "tidied" "tidying"); -- from DictEng -lin tidytips_N = mkN "tidytips" ; -lin tie_N = mkN "tie" "ties"; -- from DictEng -lin tie_V = mkV "tie" "ties" "tied" "tied" (variants {"tying"; "tieing"}); -- from DictEng -lin tie_V2 = mkV2 (mkV "tie" "ties" "tied" "tied" (variants {"tying"; "tieing"})); -- from DictEng -lin tie_on_A = compoundA (mkA "tie - on"); -- from DictEng -lin tie_on_A = compoundA (mkA "tie - on"); -- from DictEng -lin tie_up_N = mkN "tie - up" "tie - ups"; -- from DictEng -lin tiebreaker_N = mkN "tiebreaker" ; -lin tied_A = mkA "tied" ; -lin tied_up_A = compoundA (mkA "tied up") ; -lin tier_N = mkN "tier" "tiers"; -- from DictEng -lin tiercel_N = mkN "tiercel" ; -lin tiered_A = mkA "tiered" ; -lin tiff_N = mkN "tiff" "tiffs"; -- from DictEng -lin tiger_N = mkN "tiger" "tigers"; -- from DictEng -lin tiger_striped_A = compoundA (mkA "tiger striped") ; -lin tiger_lily_N = mkN "tiger - lily" "tiger - lilies"; -- from DictEng -lin tigerish_A = compoundA (mkA "tigerish"); -- from DictEng -lin tight_A = mkA "tight" "tighter"; -- from DictEng -lin tight_Adv = mkAdv "tight"; -- from DictEng -lin tight_fitting_A = compoundA (mkA "tight fitting") ; -lin tight_knit_A = compoundA (mkA "tight knit") ; -lin tight_laced_A = compoundA (mkA "tight - laced"); -- from DictEng -lin tight_lipped_A = compoundA (mkA "tight - lipped"); -- from DictEng -lin tight_wad_N = mkN "tight - wad" "tight - wads"; -- from DictEng -lin tighten_V = mkV "tighten" "tightens" "tightened" "tightened" "tightening"; -- from DictEng -lin tighten_V2 = mkV2 (mkV "tighten" "tightens" "tightened" "tightened" "tightening"); -- from DictEng -lin tightening_N = mkN "tightening" ; -lin tightly_Adv = mkAdv "tightly" ; -lin tightness_N = mkN "tightness" ; -- from DictEng -lin tightrope_N = mkN "tightrope" "tightropes"; -- from DictEng -lin tights_N = mkN "tights" ; -lin tiglon_N = mkN "tiglon" ; -lin tigress_N = mkN "tigress" "tigresses"; -- from DictEng -lin tike_N = mkN "tike" "tikes"; -- from DictEng -lin til_Prep = mkPrep "'til"; -- from DictEng -lin tilde_N = mkN "tilde" "tildes"; -- from DictEng -lin tile_N = mkN "tile" "tiles"; -- from DictEng -lin tile_V2 = mkV2 (mkV "tile" "tiles" "tiled" "tiled" "tiling"); -- from DictEng -lin tiled_A = mkA "tiled" ; -lin tilefish_N = mkN "tilefish" ; -lin tiler_N = mkN "tiler" ; -lin tiling_N = mkN "tiling" ; -lin till_N = mkN "till" "tills"; -- from DictEng -lin till_Prep = mkPrep "till"; -- from DictEng -lin till_V2 = mkV2 (mkV "till" "tills" "tilled" "tilled" "tilling"); -- from DictEng -lin tillage_N = mkN "tillage" ; -- from DictEng -lin tilled_A = mkA "tilled" ; -lin tiller_N = mkN "tiller" "tillers"; -- from DictEng -lin tilling_N = mkN "tilling" ; -lin tilt_N = mkN "tilt" "tilts"; -- from DictEng -lin tilt_V = mkV "tilt" "tilts" "tilted" "tilted" "tilting"; -- from DictEng -lin tilt_V2 = mkV2 (mkV "tilt" "tilts" "tilted" "tilted" "tilting"); -- from DictEng -lin tilter_N = mkN "tilter" ; -lin tilth_N = mkN "tilth" "tilths"; -- from DictEng -lin tiltyard_N = mkN "tiltyard" "tiltyards"; -- from DictEng -lin timbale_N = mkN "timbale" ; -lin timber_N = mkN "timber" "timbers"; -- from DictEng -lin timber_framed_A = compoundA (mkA "timber framed") ; -lin timbered_A = compoundA (mkA "timbered"); -- from DictEng -lin timberman_N = mkN "timberman" ; -lin timbre_N = mkN "timbre" "timbres"; -- from DictEng -lin timbrel_N = mkN "timbrel" "timbrels"; -- from DictEng -lin time_N = mkN "time" "times"; -- from DictEng -lin time_V2 = mkV2 (mkV "time" "times" "timed" "timed" "timing"); -- from DictEng -lin time_ball_N = mkN "time - ball" "time - balls"; -- from DictEng -lin time_consuming_A = compoundA (mkA "time consuming") ; -lin time_fuse_N = mkN "time - fuse" "time - fuses"; -- from DictEng -lin time_honored_A = compoundA (mkA "time honored") ; -lin time_out_N = mkN "time out" ; -lin time_release_A = compoundA (mkA "time release") ; -lin time_switch_N = mkN "time - switch" "time - switches"; -- from DictEng -lin time_ball_N = mkN "time - ball" "time - balls"; -- from DictEng -lin time_bomb_N = mkN "time - bomb" "time - bombs"; -- from DictEng -lin time_expired_A = compoundA (mkA "time - expired"); -- from DictEng -lin time_exposure_N = mkN "time - exposure" "time - exposures"; -- from DictEng -lin time_fuse_N = mkN "time - fuse" "time - fuses"; -- from DictEng -lin time_honoured_A = compoundA (mkA "time - honoured"); -- from DictEng -lin time_lag_N = mkN "time - lag" "time - lags"; -- from DictEng -lin time_limit_N = mkN "time - limit" "time - limits"; -- from DictEng -lin time_sheet_N = mkN "time - sheet" "time - sheets"; -- from DictEng -lin time_signal_N = mkN "time - signal" "time - signals"; -- from DictEng -lin time_switch_N = mkN "time - switch" "time - switches"; -- from DictEng -lin timecard_N = mkN "timecard" "timecards"; -- from DictEng -lin timed_A = mkA "timed" ; -lin timekeeper_N = mkN "timekeeper" "timekeepers"; -- from DictEng -lin timekeeping_N = mkN "timekeeping" ; -- from DictEng -lin timeless_A = compoundA (mkA "timeless"); -- from DictEng -lin timeline_N = mkN "timeline" ; -lin timeliness_N = mkN "timeliness" ; -- from DictEng -lin timely_A = mkA "timely"; -- from DictEng -lin timepiece_N = mkN "timepiece" "timepieces"; -- from DictEng -lin timer_N = mkN "timer" ; -lin times_N = mkN "times" ; -lin timesaving_A = compoundA (mkA "timesaving"); -- from DictEng -lin timeserver_N = mkN "timeserver" "timeservers"; -- from DictEng -lin timeserving_A = compoundA (mkA "timeserving"); -- from DictEng -lin timetable_N = mkN "timetable" "timetables"; -- from DictEng -lin timework_N = mkN "timework" ; -- from DictEng -lin timid_A = compoundA (mkA "timid"); -- from DictEng -lin timid_N = mkN "timid" ; -lin timidity_N = mkN "timidity" ; -- from DictEng -lin timidness_N = mkN "timidness" ; -- from DictEng -lin timing_N = mkN "timing" "timings"; -- from DictEng -lin timolol_N = mkN "timolol" ; -lin timorous_A = compoundA (mkA "timorous"); -- from DictEng -lin timorously_Adv = mkAdv "timorously" ; -lin timothy_N = mkN "timothy" ; -- from DictEng -lin timpanist_N = mkN "timpanist" "timpanists"; -- from DictEng -lin timucu_N = mkN "timucu" ; -lin tin_N = mkN "tin" "tins"; -- from DictEng -lin tin_V2 = mkV2 (mkV "tin" "tins" "tinned" "tinned" "tinning"); -- from DictEng -lin tin_opener_N = mkN "tin - opener" "tin - openers"; -- from DictEng -lin tin_pan_alley_N = mkN "tin pan alley" "tin pan alleys"; -- from DictEng -lin tin_plate_N = mkN "tin - plate" ; -- from DictEng -lin tinamou_N = mkN "tinamou" ; -lin tincture_N = mkN "tincture" "tinctures"; -- from DictEng -lin tincture_V2 = mkV2 (mkV "tincture" "tinctures" "tinctured" "tinctured" "tincturing"); -- from DictEng -lin tinder_N = mkN "tinder" ; -- from DictEng -lin tinderbox_N = mkN "tinderbox" "tinderboxes"; -- from DictEng -lin tine_N = mkN "tine" "tines"; -- from DictEng -lin tinea_N = mkN "tinea" ; -lin tined_A = compoundA (mkA "tined"); -- from DictEng -lin tineid_N = mkN "tineid" ; -lin tineoid_N = mkN "tineoid" ; -lin tinfoil_N = mkN "tinfoil" ; -- from DictEng -lin ting_N = mkN "ting" "tings"; -- from DictEng -lin ting_V = mkV "ting" "tings" "tinged" "tinged" "tinging"; -- from DictEng -lin ting_V2 = mkV2 (mkV "ting" "tings" "tinged" "tinged" "tinging"); -- from DictEng -lin tinge_N = mkN "tinge" "tinges"; -- from DictEng -lin tinge_V2 = mkV2 (mkV "tinge" "tinges" "tinged" "tinged" "tinging"); -- from DictEng -lin tingle_N = mkN "tingle" "tingles"; -- from DictEng -lin tingle_V = mkV "tingle" "tingles" "tingled" "tingled" "tingling"; -- from DictEng -lin tinker_N = mkN "tinker" "tinkers"; -- from DictEng -lin tinker_V = mkV "tinker" "tinkers" "tinkered" "tinkered" "tinkering"; -- from DictEng -lin tinkerer_N = mkN "tinkerer" ; -lin tinkle_N = mkN "tinkle" "IRREG"; -- from DictEng -lin tinkle_V = mkV "tinkle" "tinkles" "tinkled" "tinkled" "tinkling"; -- from DictEng -lin tinkle_V2 = mkV2 (mkV "tinkle" "tinkles" "tinkled" "tinkled" "tinkling"); -- from DictEng -lin tinkling_A = mkA "tinkling" ; -lin tinning_N = mkN "tinning" ; -lin tinnitus_N = mkN "tinnitus" ; -lin tinny_A = mkA "tinny" "tinnier"; -- from DictEng -lin tinpot_A = mkA "tinpot" ; -lin tinsel_N = mkN "tinsel" ; -- from DictEng -lin tinsel_V2 = mkV2 (mkV "tinsel" "tinsels" "tinselled" "tinselled" "tinselling"); -- from DictEng -lin tinselly_A = compoundA (mkA "tinselly"); -- from DictEng -lin tinsmith_N = mkN "tinsmith" "tinsmiths"; -- from DictEng -lin tint_N = mkN "tint" "tints"; -- from DictEng -lin tint_V2 = mkV2 (mkV "tint" "tints" "tinted" "tinted" "tinting"); -- from DictEng -lin tintack_N = mkN "tintack" "tintacks"; -- from DictEng -lin tinter_N = mkN "tinter" ; -lin tinting_N = mkN "tinting" ; -lin tintinnabulation_N = mkN "tintinnabulation" ; -- from DictEng -lin tinware_N = mkN "tinware" ; -lin tiny_A = mkA "tiny" "tinier"; -- from DictEng -lin tip_N = mkN "tip" "tips"; -- from DictEng -lin tip_V = mkV "tip" "tips" "tipped" "tipped" "tipping"; -- from DictEng -lin tip_V2 = mkV2 (mkV "tip" "tips" "tipped" "tipped" "tipping"); -- from DictEng -lin tip_off_N = mkN "tip - off" "tip - offs"; -- from DictEng -lin tip_top_Adv = mkAdv "tip - top"; -- from DictEng -lin tip_up_A = compoundA (mkA "tip - up"); -- from DictEng -lin tip_and_run_A = compoundA (mkA "tip - and - run"); -- from DictEng -lin tip_off_N = mkN "tip - off" "tip - offs"; -- from DictEng -lin tip_top_A = compoundA (mkA "tip - top"); -- from DictEng -lin tip_top_Adv = mkAdv "tip - top"; -- from DictEng -lin tip_up_A = compoundA (mkA "tip - up"); -- from DictEng -lin tipped_A = mkA "tipped" ; -lin tipper_N = mkN "tipper" ; -lin tippet_N = mkN "tippet" "tippets"; -- from DictEng -lin tipple_N = mkN "tipple" ; -- from DictEng -lin tipple_V = mkV "tipple" "tipples" "tippled" "tippled" "tippling"; -- from DictEng -lin tipple_V2 = mkV2 (mkV "tipple" "tipples" "tippled" "tippled" "tippling"); -- from DictEng -lin tippler_N = mkN "tippler" "tipplers"; -- from DictEng -lin tipstaff_N = mkN "tipstaff" "tipstaffs"; -- from DictEng -lin tipster_N = mkN "tipster" "tipsters"; -- from DictEng -lin tipsy_A = compoundA (mkA "tipsy"); -- from DictEng -lin tiptoe_A = mkA "tiptoe" ; -lin tiptoe_Adv = mkAdv "tiptoe"; -- from DictEng -lin tiptoe_N = mkN "tiptoe" ; -lin tiptoe_V = mkV "tiptoe" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin tiptoe_V2 = mkV2 (mkV "tiptoe") ; -lin tiptop_N = mkN "tiptop" ; -lin tipu_N = mkN "tipu" ; -lin tirade_N = mkN "tirade" "tirades"; -- from DictEng -lin tiramisu_N = mkN "tiramisu" ; -lin tire_N = mkN "tire" "tires"; -- from DictEng -lin tire_V = mkV "tire" "tires" "tired" "tired" "tiring"; -- from DictEng -lin tire_V2 = mkV2 (mkV "tire" "tires" "tired" "tired" "tiring"); -- from DictEng -lin tired_A = compoundA (mkA "tired"); -- from DictEng -lin tiredly_Adv = mkAdv "tiredly" ; -lin tiredness_N = mkN "tiredness" ; -- from DictEng -lin tireless_A = compoundA (mkA "tireless"); -- from DictEng -lin tiresome_A = compoundA (mkA "tiresome"); -- from DictEng -lin tiring_Adv = mkAdv "tiring"; -- from DictEng -lin tiro_N = mkN "tiro" "tiros"; -- from DictEng -lin tisane_N = mkN "tisane" ; -lin tisk_V2 = mkV2 (mkV "tisk") ; -lin tissue_N = mkN "tissue" "tissues"; -- from DictEng -lin tit_N = mkN "tit" "tits"; -- from DictEng -lin titan_N = mkN "titan" "titans"; -- from DictEng -lin titanic_A = compoundA (mkA "titanic"); -- from DictEng -lin titanium_N = mkN "titanium" ; -lin titanosaur_N = mkN "titanosaur" ; -lin titbit_N = mkN "titbit" "titbits"; -- from DictEng -lin titer_N = mkN "titer" ; -lin titfer_N = mkN "titfer" ; -lin tithe_N = mkN "tithe" "tithes"; -- from DictEng -lin tithe_barn_N = mkN "tithe - barn" "tithe - barns"; -- from DictEng -lin tither_N = mkN "tither" ; -lin titi_N = mkN "titi" ; -lin titillate_V2 = mkV2 (mkV "titillate" "titillates" "titillated" "titillated" "titillating"); -- from DictEng -lin titillating_A = mkA "titillating" ; -lin titillation_N = mkN "titillation" "titillations"; -- from DictEng -lin titivate_V = mkV "titivate" "titivates" "titivated" "titivated" "titivating"; -- from DictEng -lin titivate_V2 = mkV2 (mkV "titivate" "titivates" "titivated" "titivated" "titivating"); -- from DictEng -lin titivation_N = mkN "titivation" ; -lin titlark_N = mkN "titlark" "titlarks"; -- from DictEng -lin title_N = mkN "title" "titles"; -- from DictEng -lin title_VS = mkVS (mkV "title"); -- from DictEng -lin title_deed_N = mkN "title - deed" "title - deeds"; -- from DictEng -lin title_page_N = mkN "title - page" "title - pages"; -- from DictEng -lin title_role_N = mkN "title - role" "title - roles"; -- from DictEng -lin titled_A = compoundA (mkA "titled"); -- from DictEng -lin titmouse_N = mkN "titmouse" "titmice" {- FIXME: guessed plural form -}; -- from DictEng -lin titration_N = mkN "titration" ; -lin titrator_N = mkN "titrator" ; -lin titter_N = mkN "titter" ; -lin titter_V = mkV "titter" "titters" "tittered" "tittered" "tittering"; -- from DictEng -lin titter_V2 = mkV2 (mkV "titter") ; -lin titterer_N = mkN "titterer" ; -lin tittivate_V = mkV "tittivate" "tittivates" "tittivated" "tittivated" "tittivating"; -- from DictEng -lin tittivate_V2 = mkV2 (mkV "tittivate" "tittivates" "tittivated" "tittivated" "tittivating"); -- from DictEng -lin tittle_N = mkN "tittle" "IRREG"; -- from DictEng -lin tittle_tattle_N = mkN "tittle - tattle" ; -- from DictEng -lin tittle_tattle_V = mkV "tittle - tattle" "tittle - tattles" "tittle - tattled" "tittle - tattled" "tittle - tattling"; -- from DictEng -lin titular_A = compoundA (mkA "titular"); -- from DictEng -lin tiyin_N = mkN "tiyin" ; -lin tizzy_N = mkN "tizzy" "tizzies"; -- from DictEng -lin tnt_N = mkN "tnt" ; -- from DictEng -lin to_Adv = mkAdv "to"; -- from DictEng -lin to_Prep = mkPrep "to"; -- from DictEng -lin to_a_t_Adv = mkAdv "to a T" ; -lin to_a_man_Adv = mkAdv "to a man" ; -lin to_advantage_Adv = mkAdv "to advantage" ; -lin to_be_sure_Adv = mkAdv "to be sure" ; -lin to_do_N = mkN "to - do" "to - dos"; -- from DictEng -lin to_order_Adv = mkAdv "to order" ; -lin to_that_effect_Adv = mkAdv "to that effect" ; -lin to_the_hilt_Adv = mkAdv "to the hilt" ; -lin toad_N = mkN "toad" "toads"; -- from DictEng -lin toad_in_the_hole_N = mkN "toad - in - the - hole" "IRREG"; -- from DictEng -lin toad_in_the_hole_N = mkN "toad - in - the - hole" "IRREG"; -- from DictEng -lin toadfish_N = mkN "toadfish" ; -lin toadflax_N = mkN "toadflax" ; -lin toadstool_N = mkN "toadstool" "toadstools"; -- from DictEng -lin toady_N = mkN "toady" "toadies"; -- from DictEng -lin toady_V = mkV "toady" "toadies" "toadied" "toadied" "toadying"; -- from DictEng -lin toast_N = mkN "toast" "toasts"; -- from DictEng -lin toast_V = mkV "toast" "toasts" "toasted" "toasted" "toasting"; -- from DictEng -lin toast_V2 = mkV2 (mkV "toast" "toasts" "toasted" "toasted" "toasting"); -- from DictEng -lin toasted_A = mkA "toasted" ; -lin toaster_N = mkN "toaster" "toasters"; -- from DictEng -lin toasting_N = mkN "toasting" ; -lin toasting_fork_N = mkN "toasting - fork" "toasting - forks"; -- from DictEng -lin toastmaster_N = mkN "toastmaster" "toastmasters"; -- from DictEng -lin toastrack_N = mkN "toastrack" "toastracks"; -- from DictEng -lin tobacco_N = mkN "tobacco" "tobaccos"; -- from DictEng -lin tobacconist_N = mkN "tobacconist" "tobacconists"; -- from DictEng -lin tobagonian_A = compoundA (mkA "tobagonian"); -- from DictEng -lin tobagonian_N = mkN "tobagonian" "tobagonians"; -- from DictEng -lin toboggan_N = mkN "toboggan" "toboggans"; -- from DictEng -lin toboggan_V = mkV "toboggan" "toboggans" "tobogganed" "tobogganed" "tobogganing"; -- from DictEng -lin tobogganing_N = mkN "tobogganing" ; -lin tobogganist_N = mkN "tobogganist" ; -lin tobramycin_N = mkN "tobramycin" ; -lin toby_N = mkN "toby" ; -lin toby_jug_N = mkN "toby - jug" "toby - jugs"; -- from DictEng -lin tocainide_N = mkN "tocainide" ; -lin toccata_N = mkN "toccata" "toccatas"; -- from DictEng -lin tocsin_N = mkN "tocsin" "tocsins"; -- from DictEng -lin tod_A = mkA "tod" ; -lin tod_N = mkN "tod" ; -lin today_Adv = mkAdv "today"; -- from DictEng -lin today_N = mkN "today" ; -- from DictEng -lin toddle_V = mkV "toddle" "toddles" "toddled" "toddled" "toddling"; -- from DictEng -lin toddle_V2 = mkV2 (mkV "toddle") ; -lin toddler_N = mkN "toddler" "toddlers"; -- from DictEng -lin toddy_N = mkN "toddy" "toddies"; -- from DictEng -lin tody_N = mkN "tody" ; -lin toe_N = mkN "toe" "toes"; -- from DictEng -lin toe_V2 = mkV2 (mkV "toe" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin toe_in_N = mkN "toe in" ; -lin toe_to_toe_Adv = mkAdv "toe to toe" ; -lin toea_N = mkN "toea" ; -lin toecap_N = mkN "toecap" "toecaps"; -- from DictEng -lin toed_A = mkA "toed" ; -lin toehold_N = mkN "toehold" "toeholds"; -- from DictEng -lin toeless_A = mkA "toeless" ; -lin toenail_N = mkN "toenail" "toenails"; -- from DictEng -lin toetoe_N = mkN "toetoe" ; -lin toff_N = mkN "toff" "toffs"; -- from DictEng -lin toffee_N = mkN "toffee" "toffees"; -- from DictEng -lin toffee_nosed_A = compoundA (mkA "toffee nosed") ; -lin tog_V2 = mkV2 (mkV "tog" "togs" "togged" "togged" "togging"); -- from DictEng -lin toga_N = mkN "toga" "togas"; -- from DictEng -lin together_A = mkA "together" ; -lin together_Adv = mkAdv "together"; -- from DictEng -lin togetherness_N = mkN "togetherness" ; -- from DictEng -lin togged_A = mkA "togged" ; -lin toggle_N = mkN "toggle" "toggles"; -- from DictEng -lin togolese_A = compoundA (mkA "togolese"); -- from DictEng -lin togolese_N = mkN "togolese" "togolese"; -- from DictEng -lin togs_N = mkN "togs" ; -lin toil_N = mkN "toil" "toils"; -- from DictEng -lin toil_V = mkV "toil" "toils" "toiled" "toiled" "toiling"; -- from DictEng -lin toil_V2 = mkV2 (mkV "toil") ; -lin toil_V2V = mkV2V (mkV "toil" "toils" "toiled" "toiled" "toiling") noPrep to_Prep ; -- from DictEng -lin toil_VV = mkVV (mkV "toil" "toils" "toiled" "toiled" "toiling") ; -- from DictEng -lin toiler_N = mkN "toiler" "toilers"; -- from DictEng -lin toilet_N = mkN "toilet" "toilets"; -- from DictEng -lin toilet_paper_N = mkN "toilet - paper" "toilet - papers"; -- from DictEng -lin toilet_powder_N = mkN "toilet - powder" ; -- from DictEng -lin toilet_roll_N = mkN "toilet - roll" "toilet - rolls"; -- from DictEng -lin toilet_table_N = mkN "toilet - table" "toilet - tables"; -- from DictEng -lin toiletry_N = mkN "toiletry" ; -lin toilsome_A = compoundA (mkA "toilsome"); -- from DictEng -lin tokamak_N = mkN "tokamak" ; -lin tokay_N = mkN "tokay" ; -- from DictEng -lin toke_N = mkN "toke" ; -lin token_N = mkN "token" "tokens"; -- from DictEng -lin tolazamide_N = mkN "tolazamide" ; -lin tolazoline_N = mkN "tolazoline" ; -lin tolbutamide_N = mkN "tolbutamide" ; -lin tole_N = mkN "tole" ; -lin tolerable_A = compoundA (mkA "tolerable"); -- from DictEng -lin tolerance_N = mkN "tolerance" "tolerances"; -- from DictEng -lin tolerant_A = compoundA (mkA "tolerant"); -- from DictEng -lin tolerantly_Adv = mkAdv "tolerantly" ; -lin tolerate_V2 = mkV2 (mkV "tolerate" "tolerates" "tolerated" "tolerated" "tolerating"); -- from DictEng -lin toleration_N = mkN "toleration" ; -- from DictEng -lin toll_N = mkN "toll" "tolls"; -- from DictEng -lin toll_V = mkV "toll" "tolls" "tolled" "tolled" "tolling"; -- from DictEng -lin toll_V2 = mkV2 (mkV "toll" "tolls" "tolled" "tolled" "tolling"); -- from DictEng -lin toll_free_A = compoundA (mkA "toll free") ; -lin tollbar_N = mkN "tollbar" "tollbars"; -- from DictEng -lin tollbooth_N = mkN "tollbooth" "tollbooths"; -- from DictEng -lin toller_N = mkN "toller" ; -lin tollgate_N = mkN "tollgate" "tollgates"; -- from DictEng -lin tollhouse_N = mkN "tollhouse" "tollhouses"; -- from DictEng -lin tollkeeper_N = mkN "tollkeeper" ; -lin tolu_N = mkN "tolu" ; -lin toluene_N = mkN "toluene" ; -lin tom_N = mkN "tom" ; -lin tomahawk_N = mkN "tomahawk" "tomahawks"; -- from DictEng -lin tomahawk_V2 = mkV2 (mkV "tomahawk" "tomahawks" "tomahawked" "tomahawked" "tomahawking"); -- from DictEng -lin tomalley_N = mkN "tomalley" ; -lin tomatillo_N = mkN "tomatillo" ; -lin tomato_N = mkN "tomato" "tomatoes"; -- from DictEng -lin tomb_N = mkN "tomb" "tombs"; -- from DictEng -lin tombac_N = mkN "tombac" ; -lin tombola_N = mkN "tombola" "tombolas"; -- from DictEng -lin tomboy_N = mkN "tomboy" "tomboys"; -- from DictEng -lin tombstone_N = mkN "tombstone" "tombstones"; -- from DictEng -lin tomcat_N = mkN "tomcat" "tomcats"; -- from DictEng -lin tome_N = mkN "tome" "tomes"; -- from DictEng -lin tomentose_A = mkA "tomentose" ; -lin tomentum_N = mkN "tomentum" ; -lin tomfool_N = mkN "tomfool" "tomfools"; -- from DictEng -lin tomfoolery_N = mkN "tomfoolery" "tomfooleries"; -- from DictEng -lin tommy_gun_N = mkN "tommy - gun" "tommy - guns"; -- from DictEng -lin tommy_rot_N = mkN "tommy - rot" ; -- from DictEng -lin tomograph_N = mkN "tomograph" ; -lin tomorrow_Adv = mkAdv "tomorrow"; -- from DictEng -lin tomorrow_N = mkN "tomorrow" "tomorrows"; -- from DictEng -lin tomtate_N = mkN "tomtate" ; -lin tomtit_N = mkN "tomtit" "tomtits"; -- from DictEng -lin tomtom_N = mkN "tomtom" "tomtoms"; -- from DictEng -lin ton_N = mkN "ton" "tons"; -- from DictEng -lin ton_V = mkV "ton" "tons" "tonned" "tonned" "tonning"; -- from DictEng -lin tonal_A = compoundA (mkA "tonal"); -- from DictEng -lin tonality_N = mkN "tonality" "tonalities"; -- from DictEng -lin tone_N = mkN "tone" "tones"; -- from DictEng -lin tone_V = mkV "tone" "tones" "toned" "toned" "toning"; -- from DictEng -lin tone_V2 = mkV2 (mkV "tone" "tones" "toned" "toned" "toning"); -- from DictEng -lin tone_deaf_A = compoundA (mkA "tone - deaf"); -- from DictEng -lin tone_deaf_A = compoundA (mkA "tone - deaf"); -- from DictEng -lin tone_poem_N = mkN "tone - poem" "tone - poems"; -- from DictEng -lin toned_A = compoundA (mkA "toned"); -- from DictEng -lin toneless_A = compoundA (mkA "toneless"); -- from DictEng -lin tonelessly_Adv = mkAdv "tonelessly" ; -lin toner_N = mkN "toner" ; -lin tongan_A = compoundA (mkA "tongan"); -- from DictEng -lin tongan_N = mkN "tongan" "tongans"; -- from DictEng -lin tongs_N = mkN "tongs" ; -lin tongue_N = mkN "tongue" "tongues"; -- from DictEng -lin tongue_in_cheek_A = compoundA (mkA "tongue - in - cheek"); -- from DictEng -lin tongue_in_cheek_Adv = mkAdv "tongue - in - cheek"; -- from DictEng -lin tongue_tied_A = compoundA (mkA "tongue - tied"); -- from DictEng -lin tongue_twister_N = mkN "tongue - twister" "tongue - twisters"; -- from DictEng -lin tongued_A = compoundA (mkA "tongued"); -- from DictEng -lin tonguefish_N = mkN "tonguefish" ; -lin tongueflower_N = mkN "tongueflower" ; -lin tongueless_A = mkA "tongueless" ; -lin tonguelike_A = mkA "tonguelike" ; -lin tonic_A = compoundA (mkA "tonic"); -- from DictEng -lin tonic_N = mkN "tonic" "tonics"; -- from DictEng -lin tonic_sol_fa_N = mkN "tonic sol - fa" ; -- from DictEng -lin tonicity_N = mkN "tonicity" ; -lin tonight_Adv = mkAdv "tonight"; -- from DictEng -lin tonight_N = mkN "tonight" ; -- from DictEng -lin tonnage_N = mkN "tonnage" "tonnages"; -- from DictEng -lin tonne_N = mkN "tonne" "tonnes"; -- from DictEng -lin tonometer_N = mkN "tonometer" ; -lin tonometry_N = mkN "tonometry" ; -lin tons_N = mkN "tons" ; -lin tonsil_N = mkN "tonsil" "tonsils"; -- from DictEng -lin tonsillectomy_N = mkN "tonsillectomy" ; -lin tonsillitis_N = mkN "tonsillitis" ; -- from DictEng -lin tonsorial_A = compoundA (mkA "tonsorial"); -- from DictEng -lin tonsure_N = mkN "tonsure" "tonsures"; -- from DictEng -lin tonsure_V2 = mkV2 (mkV "tonsure" "tonsures" "tonsured" "tonsured" "tonsuring"); -- from DictEng -lin tonsured_A = mkA "tonsured" ; -lin tontine_N = mkN "tontine" "tontines"; -- from DictEng -lin too_Adv = mkAdv "too"; -- from DictEng -lin tool_N = mkN "tool" "tools"; -- from DictEng -lin tool_V2 = mkV2 (mkV "tool" "tools" "tooled" "tooled" "tooling"); -- from DictEng -lin toolbox_N = mkN "toolbox" ; -lin toolmaker_N = mkN "toolmaker" ; -lin toolshed_N = mkN "toolshed" ; -lin toot_N = mkN "toot" "toots"; -- from DictEng -lin toot_V = mkV "toot" "toots" "tooted" "tooted" "tooting"; -- from DictEng -lin toot_V2 = mkV2 (mkV "toot" "toots" "tooted" "tooted" "tooting"); -- from DictEng -lin tooth_N = mkN "tooth" "teeth"; -- from DictEng -lin tooth_and_nail_Adv = mkAdv "tooth and nail" ; -lin toothache_N = mkN "toothache" ; -- from DictEng -lin toothbrush_N = mkN "toothbrush" "toothbrushes"; -- from DictEng -lin toothed_A = compoundA (mkA "toothed"); -- from DictEng -lin toothless_A = compoundA (mkA "toothless"); -- from DictEng -lin toothlike_A = mkA "toothlike" ; -lin toothpaste_N = mkN "toothpaste" "toothpastes"; -- from DictEng -lin toothpick_N = mkN "toothpick" "toothpicks"; -- from DictEng -lin toothpowder_N = mkN "toothpowder" ; -- from DictEng -lin toothsome_A = compoundA (mkA "toothsome"); -- from DictEng -lin toothy_A = mkA "toothy" ; -lin tootle_N = mkN "tootle" "tootles"; -- from DictEng -lin tootle_V = mkV "tootle" "tootles" "tootled" "tootled" "tootling"; -- from DictEng -lin tootle_V2 = mkV2 (mkV "tootle") ; -lin top_A = mkA "top" ; -lin top_N = mkN "top" "tops"; -- from DictEng -lin top_V2 = mkV2 (mkV "top" "tops" "topped" "topped" "topping"); -- from DictEng -lin top_down_A = compoundA (mkA "top down") ; -lin top_flight_A = compoundA (mkA "top - flight"); -- from DictEng -lin top_heavy_A = compoundA (mkA "top - heavy"); -- from DictEng -lin top_secret_A = compoundA (mkA "top secret") ; -lin top_up_N = mkN "top up" ; -lin top_boot_N = mkN "top - boot" "top - boots"; -- from DictEng -lin top_dress_V2 = mkV2 (mkV "top - dress" "top - dresses" "top - dressed" "top - dressed" "top - dressing"); -- from DictEng -lin top_dressing_N = mkN "top - dressing" "top - dressings"; -- from DictEng -lin top_flight_A = compoundA (mkA "top - flight"); -- from DictEng -lin top_heavy_A = compoundA (mkA "top - heavy"); -- from DictEng -lin top_hole_A = compoundA (mkA "top - hole"); -- from DictEng -lin top_ranking_A = compoundA (mkA "top - ranking"); -- from DictEng -lin topaz_N = mkN "topaz" "topazes"; -- from DictEng -lin topcoat_N = mkN "topcoat" "topcoats"; -- from DictEng -lin tope_V = mkV "tope" "topes" "toped" "toped" "toping"; -- from DictEng -lin tope_V2 = mkV2 (mkV "tope" "topes" "toped" "toped" "toping"); -- from DictEng -lin toper_N = mkN "toper" "topers"; -- from DictEng -lin topgallant_A = compoundA (mkA "topgallant"); -- from DictEng -lin topgallant_N = mkN "topgallant" "topgallants"; -- from DictEng -lin tophus_N = mkN "tophus" ; -lin topi_N = mkN "topi" "topis"; -- from DictEng -lin topiary_N = mkN "topiary" ; -- from DictEng -lin topic_N = mkN "topic" "topics"; -- from DictEng -lin topical_A = compoundA (mkA "topical"); -- from DictEng -lin topicality_N = mkN "topicality" ; -lin topicalization_N = mkN "topicalization" ; -lin topknot_N = mkN "topknot" "topknots"; -- from DictEng -lin topless_A = compoundA (mkA "topless"); -- from DictEng -lin topmast_N = mkN "topmast" "topmasts"; -- from DictEng -lin topminnow_N = mkN "topminnow" ; -lin topmost_A = compoundA (mkA "topmost"); -- from DictEng -lin topnotch_A = compoundA (mkA "topnotch"); -- from DictEng -lin topognosia_N = mkN "topognosia" ; -lin topographical_A = compoundA (mkA "topographical"); -- from DictEng -lin topographically_Adv = mkAdv "topographically" ; -lin topography_N = mkN "topography" ; -- from DictEng -lin topolatry_N = mkN "topolatry" ; -lin topological_A = mkA "topological" ; -lin topologically_Adv = mkAdv "topologically" ; -lin topology_N = mkN "topology" ; -lin toponymy_N = mkN "toponymy" ; -lin topos_N = mkN "topos" ; -lin topped_A = mkA "topped" ; -lin topper_N = mkN "topper" "toppers"; -- from DictEng -lin topping_A = compoundA (mkA "topping"); -- from DictEng -lin topping_N = mkN "topping" ; -lin topple_V = mkV "topple" "topples" "toppled" "toppled" "toppling"; -- from DictEng -lin topple_V2 = mkV2 (mkV "topple" "topples" "toppled" "toppled" "toppling"); -- from DictEng -lin topsail_N = mkN "topsail" "topsails"; -- from DictEng -lin topside_N = mkN "topside" ; -lin topsoil_N = mkN "topsoil" ; -lin topspin_N = mkN "topspin" ; -lin topsy_turvy_A = compoundA (mkA "topsy - turvy"); -- from DictEng -lin topsy_turvy_Adv = mkAdv "topsy - turvy"; -- from DictEng -lin topsy_turvydom_N = mkN "topsy - turvydom" "topsy - turvydoms"; -- from DictEng -lin toque_N = mkN "toque" "toques"; -- from DictEng -lin tor_N = mkN "tor" "tors"; -- from DictEng -lin torch_N = mkN "torch" "torches"; -- from DictEng -lin torch_V2 = mkV2 (mkV "torch"); -- from DictEng -lin torch_race_N = mkN "torch - race" "torch - races"; -- from DictEng -lin torch_singer_N = mkN "torch - singer" "torch - singers"; -- from DictEng -lin torchbearer_N = mkN "torchbearer" ; -lin torchlight_N = mkN "torchlight" ; -- from DictEng -lin toreador_N = mkN "toreador" "toreadors"; -- from DictEng -lin torero_N = mkN "torero" ; -lin torment_N = mkN "torment" "torments"; -- from DictEng -lin torment_V2 = mkV2 (mkV "torment" "torments" "tormented" "tormented" "tormenting"); -- from DictEng -lin tormenter_N = mkN "tormenter" ; -lin tormentor_N = mkN "tormentor" "tormentors"; -- from DictEng -lin torn_A = mkA "torn" ; -lin tornado_N = mkN "tornado" "tornadoes"; -- from DictEng -lin toroid_N = mkN "toroid" ; -lin toroidal_A = mkA "toroidal" ; -lin torpedo_N = mkN "torpedo" "torpedoes"; -- from DictEng -lin torpedo_V2 = mkV2 (mkV "torpedo" "torpedos" "torpedoed" "torpedoed" "torpedoing"); -- from DictEng -lin torpedo_boat_N = mkN "torpedo - boat" "torpedo - boats"; -- from DictEng -lin torpedo_tube_N = mkN "torpedo - tube" "torpedo - tubes"; -- from DictEng -lin torpid_A = compoundA (mkA "torpid"); -- from DictEng -lin torpidity_N = mkN "torpidity" ; -- from DictEng -lin torpidness_N = mkN "torpidness" ; -- from DictEng -lin torpor_N = mkN "torpor" "torpors"; -- from DictEng -lin torque_N = mkN "torque" "torques"; -- from DictEng -lin torr_N = mkN "torr" ; -lin torrent_N = mkN "torrent" "torrents"; -- from DictEng -lin torrential_A = compoundA (mkA "torrential"); -- from DictEng -lin torrid_A = compoundA (mkA "torrid"); -- from DictEng -lin torridity_N = mkN "torridity" ; -- from DictEng -lin torsion_N = mkN "torsion" ; -- from DictEng -lin torso_N = mkN "torso" "torsos"; -- from DictEng -lin tort_N = mkN "tort" "torts"; -- from DictEng -lin tort_feasor_N = mkN "tort feasor" ; -lin torte_N = mkN "torte" ; -lin tortellini_N = mkN "tortellini" ; -lin torticollis_N = mkN "torticollis" ; -lin tortilla_N = mkN "tortilla" "tortillas"; -- from DictEng -lin tortious_A = mkA "tortious" ; -lin tortoise_N = mkN "tortoise" "tortoises"; -- from DictEng -lin tortoiseshell_N = mkN "tortoiseshell" ; -- from DictEng -lin tortricid_N = mkN "tortricid" ; -lin tortuosity_N = mkN "tortuosity" ; -lin tortuous_A = compoundA (mkA "tortuous"); -- from DictEng -lin tortuously_Adv = mkAdv "tortuously" ; -lin torture_N = mkN "torture" "tortures"; -- from DictEng -lin torture_V2 = mkV2 (mkV "torture" "tortures" "tortured" "tortured" "torturing"); -- from DictEng -lin torturer_N = mkN "torturer" "torturers"; -- from DictEng -lin torulose_A = mkA "torulose" ; -lin torus_N = mkN "torus" ; -lin tory_N = mkN "tory" "tories"; -- from DictEng -lin tosh_N = mkN "tosh" "toshes"; -- from DictEng -lin toss_N = mkN "toss" "tosses"; -- from DictEng -lin toss_V = mkV "toss" "tosses" "tossed" "tossed" "tossing"; -- from DictEng -lin toss_V2 = mkV2 (mkV "toss" "tosses" "tossed" "tossed" "tossing"); -- from DictEng -lin toss_up_N = mkN "toss - up" "toss - ups"; -- from DictEng -lin tosser_N = mkN "tosser" ; -lin tossup_N = mkN "tossup" ; -lin tostada_N = mkN "tostada" ; -lin tot_N = mkN "tot" "tots"; -- from DictEng -lin tot_V = mkV "tot" "tots" "totted" "totted" "totting"; -- from DictEng -lin tot_V2 = mkV2 (mkV "tot" "tots" "totted" "totted" "totting"); -- from DictEng -lin total_A = compoundA (mkA "total"); -- from DictEng -lin total_N = mkN "total" "totals"; -- from DictEng -lin total_V = variants {mkV "total" "totals" "totaled" "totaled" "totaling"}; -- US -- from DictEng -lin total_V2 = mkV2 (variants {mkV "total" "totals" "totaled" "totaled" "totaling"}); -- US -- from DictEng -lin totaled_A = mkA "totaled" ; -lin totalitarian_A = compoundA (mkA "totalitarian"); -- from DictEng -lin totalitarian_N = mkN "totalitarian" ; -lin totalitarianism_N = mkN "totalitarianism" ; -- from DictEng -lin totality_N = mkN "totality" ; -- from DictEng -lin totalizator_N = mkN "totalizator" "totalizators"; -- from DictEng -lin totara_N = mkN "totara" ; -lin tote_N = mkN "tote" "totes"; -- from DictEng -lin tote_V2 = mkV2 (mkV "tote" "totes" "toted" "toted" "toting"); -- from DictEng -lin totem_N = mkN "totem" "totems"; -- from DictEng -lin totem_pole_N = mkN "totem - pole" "totem - poles"; -- from DictEng -lin totemic_A = mkA "totemic" ; -lin totemism_N = mkN "totemism" ; -lin totemist_N = mkN "totemist" ; -lin totipotency_N = mkN "totipotency" ; -lin totipotent_A = mkA "totipotent" ; -lin totter_V = mkV "totter" "totters" "tottered" "tottered" "tottering"; -- from DictEng -lin totter_V2 = mkV2 (mkV "totter") ; -lin tottering_A = mkA "tottering" ; -lin tottery_A = compoundA (mkA "tottery"); -- from DictEng -lin toucan_N = mkN "toucan" "toucans"; -- from DictEng -lin toucanet_N = mkN "toucanet" ; -lin touch_N = mkN "touch" "touches"; -- from DictEng -lin touch_V = mkV "touch" "touches" "touched" "touched" "touching"; -- from DictEng -lin touch_V2 = mkV2 (mkV "touch" "touches" "touched" "touched" "touching"); -- from DictEng -lin touch_typist_N = mkN "touch typist" ; -lin touch_and_go_A = compoundA (mkA "touch - and - go"); -- from DictEng -lin touch_type_V = mkV "touch - type" "touch - types" "touch - typed" "touch - typed" "touch - typing"; -- from DictEng -lin touchable_A = compoundA (mkA "touchable"); -- from DictEng -lin touchback_N = mkN "touchback" ; -lin touchdown_N = mkN "touchdown" "touchdowns"; -- from DictEng -lin touched_A = compoundA (mkA "touched"); -- from DictEng -lin toucher_N = mkN "toucher" ; -lin touchily_Adv = mkAdv "touchily"; -- from DictEng -lin touchiness_N = mkN "touchiness" ; -- from DictEng -lin touching_A = compoundA (mkA "touching"); -- from DictEng -lin touchline_N = mkN "touchline" "touchlines"; -- from DictEng -lin touchstone_N = mkN "touchstone" "touchstones"; -- from DictEng -lin touchy_A = mkA "touchy" "touchier"; -- from DictEng -lin touchy_feely_A = compoundA (mkA "touchy feely") ; -lin tough_A = mkA "tough" "tougher"; -- from DictEng -lin tough_N = mkN "tough" "toughs"; -- from DictEng -lin tough_minded_A = compoundA (mkA "tough minded") ; -lin tough_skinned_A = compoundA (mkA "tough skinned") ; -lin toughen_V = mkV "toughen" "toughens" "toughened" "toughened" "toughening"; -- from DictEng -lin toughen_V2 = mkV2 (mkV "toughen" "toughens" "toughened" "toughened" "toughening"); -- from DictEng -lin toughie_N = mkN "toughie" "toughies"; -- from DictEng -lin toughly_Adv = mkAdv "toughly" ; -lin toughness_N = mkN "toughness" ; -- from DictEng -lin toupee_N = mkN "toupee" "toupees"; -- from DictEng -lin toupeed_A = mkA "toupeed" ; -lin tour_N = mkN "tour" "tours"; -- from DictEng -lin tour_V = mkV "tour" "tours" "toured" "toured" "touring"; -- from DictEng -lin tour_V2 = mkV2 (mkV "tour" "tours" "toured" "toured" "touring"); -- from DictEng -lin tour_de_force_N = mkN "tour de force" "IRREG"; -- from DictEng -lin touraco_N = mkN "touraco" ; -lin touring_A = compoundA (mkA "touring"); -- from DictEng -lin touring_N = mkN "touring" ; -- from DictEng -lin tourism_N = mkN "tourism" ; -- from DictEng -lin tourist_N = mkN "tourist" "tourists"; -- from DictEng -lin touristed_A = mkA "touristed" ; -lin tourmaline_N = mkN "tourmaline" ; -lin tournament_N = mkN "tournament" "tournaments"; -- from DictEng -lin tournedos_N = mkN "tournedos" ; -lin tourney_N = mkN "tourney" "tourneys"; -- from DictEng -lin tourniquet_N = mkN "tourniquet" "tourniquets"; -- from DictEng -lin tourtiere_N = mkN "tourtiere" ; -lin tousle_V2 = mkV2 (mkV "tousle" "tousles" "tousled" "tousled" "tousling"); -- from DictEng -lin tout_N = mkN "tout" "touts"; -- from DictEng -lin tout_V = mkV "tout" "touts" "touted" "touted" "touting"; -- from DictEng -lin tout_V2 = mkV2 (mkV "tout" "touts" "touted" "touted" "touting"); -- from DictEng -lin tout_ensemble_Adv = mkAdv "tout ensemble"; -- from DictEng -lin tout_ensemble_N = mkN "tout ensemble" "IRREG"; -- from DictEng -lin tovarich_N = mkN "tovarich" ; -lin tow_N = mkN "tow" "tows"; -- from DictEng -lin tow_V2 = mkV2 (mkV "tow" "tows" "towed" "towed" "towing"); -- from DictEng -lin toward_Prep = mkPrep "toward"; -- from DictEng -lin towards_Prep = mkPrep "towards"; -- from DictEng -lin towel_N = mkN "towel" "towels"; -- from DictEng -lin towel_V = mkV "towel" ; -lin towel_V2 = mkV2 (mkV "towel" "towels" "towelled" "towelled" "towelling"); -- from DictEng -lin towel_horse_N = mkN "towel - horse" "towel - horses"; -- from DictEng -lin towel_rack_N = mkN "towel - rack" "towel - racks"; -- from DictEng -lin towel_rail_N = mkN "towel - rail" "towel - rails"; -- from DictEng -lin toweling_N = mkN "toweling" ; -lin towelling_N = mkN "towelling" ; -- from DictEng -lin tower_N = mkN "tower" "towers"; -- from DictEng -lin tower_V = mkV "tower" "towers" "towered" "towered" "towering"; -- from DictEng -lin tower_block_N = mkN "tower - block" "tower - blocks"; -- from DictEng -lin towering_A = compoundA (mkA "towering"); -- from DictEng -lin towhead_N = mkN "towhead" ; -lin towhee_N = mkN "towhee" ; -lin towing_line_N = mkN "towing - line" "towing - lines"; -- from DictEng -lin towing_path_N = mkN "towing - path" "towing - paths"; -- from DictEng -lin towing_rope_N = mkN "towing - rope" "towing - ropes"; -- from DictEng -lin towline_N = mkN "towline" "towlines"; -- from DictEng -lin town_N = mkN "town" "towns"; -- from DictEng -lin town_crier_N = mkN "town - crier" "town - criers"; -- from DictEng -lin town_gas_N = mkN "town - gas" ; -- from DictEng -lin townee_N = mkN "townee" "townees"; -- from DictEng -lin townie_N = mkN "townie" ; -lin township_N = mkN "township" "townships"; -- from DictEng -lin townsman_N = mkN "townsman" "townsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin towpath_N = mkN "towpath" "towpaths"; -- from DictEng -lin towrope_N = mkN "towrope" "towropes"; -- from DictEng -lin toxaemia_N = mkN "toxaemia" ; -- from DictEng -lin toxemia_N = mkN "toxemia" ; -lin toxic_A = compoundA (mkA "toxic"); -- from DictEng -lin toxicity_N = mkN "toxicity" ; -- from DictEng -lin toxicognath_N = mkN "toxicognath" ; -lin toxicological_A = mkA "toxicological" ; -lin toxicologist_N = mkN "toxicologist" "toxicologists"; -- from DictEng -lin toxicology_N = mkN "toxicology" ; -- from DictEng -lin toxin_N = mkN "toxin" "toxins"; -- from DictEng -lin toxoplasmosis_N = mkN "toxoplasmosis" ; -lin toy_N = mkN "toy" "toys"; -- from DictEng -lin toy_V = mkV "toy" "toys" "toyed" "toyed" "toying"; -- from DictEng -lin toy_manchester_PN = mkPN "toy Manchester" ; -lin toyon_N = mkN "toyon" ; -lin toyshop_N = mkN "toyshop" "toyshops"; -- from DictEng -lin tra_la_N = mkN "tra la" ; -lin trabeated_A = mkA "trabeated" ; -lin trabecula_N = mkN "trabecula" ; -lin trabecular_A = mkA "trabecular" ; -lin trace_N = mkN "trace" "traces"; -- from DictEng -lin trace_V = mkV "trace" "traces" "traced" "traced" "tracing"; -- from DictEng -lin trace_V2 = mkV2 (mkV "trace" "traces" "traced" "traced" "tracing"); -- from DictEng -lin traceable_A = compoundA (mkA "traceable"); -- from DictEng -lin tracer_N = mkN "tracer" "tracers"; -- from DictEng -lin tracery_N = mkN "tracery" "traceries"; -- from DictEng -lin trachea_N = mkN "trachea" "tracheae" {- FIXME: guessed plural form -}; -- from DictEng -lin tracheal_A = mkA "tracheal" ; -lin tracheid_N = mkN "tracheid" ; -lin tracheitis_N = mkN "tracheitis" ; -lin tracheobronchitis_N = mkN "tracheobronchitis" ; -lin tracheostomy_N = mkN "tracheostomy" ; -lin trachodon_N = mkN "trachodon" ; -lin trachoma_N = mkN "trachoma" ; -- from DictEng -lin tracing_N = mkN "tracing" "tracings"; -- from DictEng -lin tracing_paper_N = mkN "tracing - paper" ; -- from DictEng -lin track_N = mkN "track" "tracks"; -- from DictEng -lin track_V = mkV "track"; -- from DictEng -lin track_V2 = mkV2 (mkV "track" "tracks" "tracked" "tracked" "tracking"); -- from DictEng -lin trackball_N = mkN "trackball" ; -lin tracked_A = compoundA (mkA "tracked"); -- from DictEng -lin tracker_N = mkN "tracker" "trackers"; -- from DictEng -lin trackless_A = compoundA (mkA "trackless"); -- from DictEng -lin tract_N = mkN "tract" "tracts"; -- from DictEng -lin tractability_N = mkN "tractability" "tractabilities"; -- from DictEng -lin tractable_A = compoundA (mkA "tractable"); -- from DictEng -lin traction_N = mkN "traction" ; -- from DictEng -lin traction_engine_N = mkN "traction - engine" "traction - engines"; -- from DictEng -lin tractive_A = mkA "tractive" ; -lin tractor_N = mkN "tractor" "tractors"; -- from DictEng -lin trad_N = mkN "trad" ; -- from DictEng -lin trade_N = mkN "trade" "trades"; -- from DictEng -lin trade_V = mkV "trade" "trades" "traded" "traded" "trading"; -- from DictEng -lin trade_V2 = mkV2 (mkV "trade" "trades" "traded" "traded" "trading"); -- from DictEng -lin trade_in_N = mkN "trade - in" "trade - ins"; -- from DictEng -lin trade_last_N = mkN "trade last" ; -lin trade_in_N = mkN "trade - in" "trade - ins"; -- from DictEng -lin trade_union_N = mkN "trade - union" "trade - unions"; -- from DictEng -lin trade_unionism_N = mkN "trade - unionism" ; -- from DictEng -lin trade_unionist_N = mkN "trade - unionist" "trade - unionists"; -- from DictEng -lin trade_wind_N = mkN "trade - wind" "trade - winds"; -- from DictEng -lin tradecraft_N = mkN "tradecraft" ; -lin trademark_N = mkN "trademark" "trademarks"; -- from DictEng -lin trademark_V2 = mkV2 (mkV "trademark") ; -lin trademarked_A = mkA "trademarked" ; -lin tradeoff_N = mkN "tradeoff" ; -lin trader_N = mkN "trader" "traders"; -- from DictEng -lin trades_union_N = mkN "trades - union" "trades - unions"; -- from DictEng -lin tradesman_N = mkN "tradesman" "tradesmen" {- FIXME: guessed plural form -}; -- from DictEng -lin tradespeople_N = mkN "tradespeople" ; -lin trading_N = mkN "trading" ; -lin tradition_N = mkN "tradition" "traditions"; -- from DictEng -lin traditional_A = compoundA (mkA "traditional"); -- from DictEng -lin traditionalism_N = mkN "traditionalism" ; -- from DictEng -lin traditionalist_N = mkN "traditionalist" "traditionalists"; -- from DictEng -lin traditionalistic_A = mkA "traditionalistic" ; -lin traditionally_Adv = mkAdv "traditionally" ; -lin traduce_V2 = mkV2 (mkV "traduce" "traduces" "traduced" "traduced" "traducing"); -- from DictEng -lin traducer_N = mkN "traducer" "traducers"; -- from DictEng -lin traffic_N = mkN "traffic" ; -- from DictEng -lin traffic_V = mkV "traffic" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin trafficator_N = mkN "trafficator" "trafficators"; -- from DictEng -lin trafficker_N = mkN "trafficker" "traffickers"; -- from DictEng -lin tragacanth_N = mkN "tragacanth" ; -lin tragedian_N = mkN "tragedian" "tragedians"; -- from DictEng -lin tragedienne_N = mkN "tragedienne" "tragediennes"; -- from DictEng -lin tragedy_N = mkN "tragedy" "tragedies"; -- from DictEng -lin tragic_A = compoundA (mkA "tragic"); -- from DictEng -lin tragically_Adv = mkAdv "tragically"; -- from DictEng -lin tragicomedy_N = mkN "tragicomedy" "tragicomedies"; -- from DictEng -lin tragicomic_A = compoundA (mkA "tragicomic"); -- from DictEng -lin tragopan_N = mkN "tragopan" ; -lin tragus_N = mkN "tragus" ; -lin trail_N = mkN "trail" "trails"; -- from DictEng -lin trail_V = mkV "trail" "trails" "trailed" "trailed" "trailing"; -- from DictEng -lin trail_V2 = mkV2 (mkV "trail" "trails" "trailed" "trailed" "trailing"); -- from DictEng -lin trailblazer_N = mkN "trailblazer" ; -lin trailer_N = mkN "trailer" "trailers"; -- from DictEng -lin trailing_N = mkN "trailing" ; -lin train_N = mkN "train" "trains"; -- from DictEng -lin train_V = mkV "train" "trains" "trained" "trained" "training"; -- from DictEng -lin train_V2 = mkV2 (mkV "train" "trains" "trained" "trained" "training"); -- from DictEng -lin train_V2V = mkV2V (mkV "train" "trains" "trained" "trained" "training") noPrep to_Prep ; -- from DictEng -lin trainband_N = mkN "trainband" ; -lin trainbandsman_N = mkN "trainbandsman" ; -lin trainbearer_N = mkN "trainbearer" "trainbearers"; -- from DictEng -lin trained_A = mkA "trained" ; -lin trainee_N = mkN "trainee" "trainees"; -- from DictEng -lin traineeship_N = mkN "traineeship" ; -lin trainer_N = mkN "trainer" "trainers"; -- from DictEng -lin training_N = mkN "training" ; -- from DictEng -lin training_college_N = mkN "training - college" "training - colleges"; -- from DictEng -lin training_ship_N = mkN "training - ship" "training - ships"; -- from DictEng -lin trainload_N = mkN "trainload" "trainloads"; -- from DictEng -lin trainman_N = mkN "trainman" "trainmen" {- FIXME: guessed plural form -}; -- from DictEng -lin traipse_V = mkV "traipse" "traipses" "traipsed" "traipsed" "traipsing"; -- from DictEng -lin traipse_V2 = mkV2 (mkV "traipse") ; -lin trait_N = mkN "trait" "traits"; -- from DictEng -lin traitor_N = mkN "traitor" "traitors"; -- from DictEng -lin traitorous_A = compoundA (mkA "traitorous"); -- from DictEng -lin traitress_N = mkN "traitress" "traitresses"; -- from DictEng -lin trajectory_N = mkN "trajectory" "trajectories"; -- from DictEng -lin tram_N = mkN "tram" "trams"; -- from DictEng -lin tram_V2 = mkV2 (mkV "tram") ; -lin tram_car_N = mkN "tram - car" "tram - cars"; -- from DictEng -lin tramcar_N = mkN "tramcar" ; -lin tramline_N = mkN "tramline" "tramlines"; -- from DictEng -lin trammel_N = mkN "trammel" ; -lin trammel_V2 = mkV2 (mkV "trammel" "trammels" "trammelled" "trammelled" "trammelling"); -- from DictEng -lin tramontane_A = mkA "tramontane" ; -lin tramontane_N = mkN "tramontane" ; -lin tramp_N = mkN "tramp" "tramps"; -- from DictEng -lin tramp_V = mkV "tramp" "tramps" "tramped" "tramped" "tramping"; -- from DictEng -lin tramp_V2 = mkV2 (mkV "tramp" "tramps" "tramped" "tramped" "tramping"); -- from DictEng -lin tramp_steamer_N = mkN "tramp - steamer" "tramp - steamers"; -- from DictEng -lin trample_N = mkN "trample" "tramples"; -- from DictEng -lin trample_V = mkV "trample" "tramples" "trampled" "trampled" "trampling"; -- from DictEng -lin trample_V2 = mkV2 (mkV "trample" "tramples" "trampled" "trampled" "trampling"); -- from DictEng -lin trampler_N = mkN "trampler" ; -lin trampoline_N = mkN "trampoline" "trampolines"; -- from DictEng -lin tramway_N = mkN "tramway" "tramways"; -- from DictEng -lin trance_N = mkN "trance" "trances"; -- from DictEng -lin trancelike_A = mkA "trancelike" ; -lin tranche_N = mkN "tranche" ; -lin trandolapril_N = mkN "trandolapril" ; -lin tranquil_A = compoundA (mkA "tranquil"); -- from DictEng -lin tranquility_N = mkN "tranquility" ; -- from DictEng -lin tranquilize_V2 = mkV2 (mkV "tranquilize" "tranquilizes" "tranquilized" "tranquilized" "tranquilizing"); -- from DictEng -lin tranquilizer_N = mkN "tranquilizer" ; -lin tranquillity_N = mkN "tranquillity" ; -- from DictEng -lin tranquillize_V2 = mkV2 (mkV "tranquillize" "tranquillizes" "tranquillized" "tranquillized" "tranquillizing"); -- from DictEng -lin tranquillizer_N = mkN "tranquillizer" "tranquillizers"; -- from DictEng -lin tranquilly_Adv = mkAdv "tranquilly" ; -lin transact_V2 = mkV2 (mkV "transact" "transacts" "transacted" "transacted" "transacting"); -- from DictEng -lin transactinide_A = mkA "transactinide" ; -lin transactinide_N = mkN "transactinide" ; -lin transaction_N = mkN "transaction" "transactions"; -- from DictEng -lin transactor_N = mkN "transactor" ; -lin transalpine_A = compoundA (mkA "transalpine"); -- from DictEng -lin transalpine_N = mkN "transalpine" "transalpines"; -- from DictEng -lin transaminase_N = mkN "transaminase" ; -lin transamination_N = mkN "transamination" ; -lin transatlantic_A = compoundA (mkA "transatlantic"); -- from DictEng -lin transcend_V2 = mkV2 (mkV "transcend" "transcends" "transcended" "transcended" "transcending"); -- from DictEng -lin transcendence_N = mkN "transcendence" ; -- from DictEng -lin transcendency_N = mkN "transcendency" ; -- from DictEng -lin transcendent_A = compoundA (mkA "transcendent"); -- from DictEng -lin transcendental_A = compoundA (mkA "transcendental"); -- from DictEng -lin transcendentalism_N = mkN "transcendentalism" ; -- from DictEng -lin transcendentalist_N = mkN "transcendentalist" "transcendentalists"; -- from DictEng -lin transcendentally_Adv = mkAdv "transcendentally" ; -lin transcontinental_A = compoundA (mkA "transcontinental"); -- from DictEng -lin transcribe_V2 = mkV2 (mkV "transcribe" "transcribes" "transcribed" "transcribed" "transcribing"); -- from DictEng -lin transcriber_N = mkN "transcriber" ; -lin transcript_N = mkN "transcript" "transcripts"; -- from DictEng -lin transcriptase_N = mkN "transcriptase" ; -lin transcription_N = mkN "transcription" "transcriptions"; -- from DictEng -lin transcultural_A = mkA "transcultural" ; -lin transdermal_A = mkA "transdermal" ; -lin transducer_N = mkN "transducer" ; -lin transduction_N = mkN "transduction" ; -lin transept_N = mkN "transept" "transepts"; -- from DictEng -lin transeunt_A = mkA "transeunt" ; -lin transfer_N = mkN "transfer" "transfers"; -- from DictEng -lin transfer_V = mkV "transfer" "transfers" "transferred" "transferred" "transferring"; -- from DictEng -lin transfer_V2 = mkV2 (mkV "transfer" "transfers" "transferred" "transferred" "transferring"); -- from DictEng -lin transfer_rna_PN = mkPN "transfer RNA" ; -lin transferability_N = mkN "transferability" ; -- from DictEng -lin transferable_A = compoundA (mkA "transferable"); -- from DictEng -lin transferase_N = mkN "transferase" ; -lin transferee_N = mkN "transferee" ; -lin transference_N = mkN "transference" "transferences"; -- from DictEng -lin transferer_N = mkN "transferer" ; -lin transferor_N = mkN "transferor" ; -lin transferrin_N = mkN "transferrin" ; -lin transfiguration_N = mkN "transfiguration" "transfigurations"; -- from DictEng -lin transfigure_V2 = mkV2 (mkV "transfigure" "transfigures" "transfigured" "transfigured" "transfiguring"); -- from DictEng -lin transfix_V2 = mkV2 (mkV "transfix" "transfixes" "transfixed" "transfixed" "transfixing"); -- from DictEng -lin transform_V = mkV "transform" ; -lin transform_V2 = mkV2 (mkV "transform" "transforms" "transformed" "transformed" "transforming"); -- from DictEng -lin transformable_A = compoundA (mkA "transformable"); -- from DictEng -lin transformation_N = mkN "transformation" "transformations"; -- from DictEng -lin transformed_A = mkA "transformed" ; -lin transformer_N = mkN "transformer" "transformers"; -- from DictEng -lin transfuse_V2 = mkV2 (mkV "transfuse" "transfuses" "transfused" "transfused" "transfusing"); -- from DictEng -lin transfusion_N = mkN "transfusion" "transfusions"; -- from DictEng -lin transgender_A = mkA "transgender" ; -lin transgene_N = mkN "transgene" ; -lin transgress_V = mkV "transgress" "transgresses" "transgressed" "transgressed" "transgressing"; -- from DictEng -lin transgress_V2 = mkV2 (mkV "transgress" "transgresses" "transgressed" "transgressed" "transgressing"); -- from DictEng -lin transgression_N = mkN "transgression" "transgressions"; -- from DictEng -lin transgressor_N = mkN "transgressor" "transgressors"; -- from DictEng -lin transience_N = mkN "transience" ; -- from DictEng -lin transiency_N = mkN "transiency" ; -- from DictEng -lin transient_A = compoundA (mkA "transient"); -- from DictEng -lin transient_N = mkN "transient" "transients"; -- from DictEng -lin transiently_Adv = mkAdv "transiently" ; -lin transistor_N = mkN "transistor" "transistors"; -- from DictEng -lin transistorized_A = compoundA (mkA "transistorized"); -- from DictEng -lin transit_N = mkN "transit" ; -- from DictEng -lin transition_N = mkN "transition" "transitions"; -- from DictEng -lin transitional_A = compoundA (mkA "transitional"); -- from DictEng -lin transitionally_Adv = mkAdv "transitionally" ; -lin transitive_A = compoundA (mkA "transitive"); -- from DictEng -lin transitively_Adv = mkAdv "transitively" ; -lin transitivity_N = mkN "transitivity" ; -lin transitorily_Adv = mkAdv "transitorily" ; -lin transitory_A = compoundA (mkA "transitory"); -- from DictEng -lin translatable_A = compoundA (mkA "translatable"); -- from DictEng -lin translate_V = mkV "translate"; -- from DictEng -lin translate_V2 = mkV2 (mkV "translate" "translates" "translated" "translated" "translating"); -- from DictEng -lin translation_N = mkN "translation" "translations"; -- from DictEng -lin translational_A = mkA "translational" ; -lin translator_N = mkN "translator" "translators"; -- from DictEng -lin transliterate_V2 = mkV2 (mkV "transliterate" "transliterates" "transliterated" "transliterated" "transliterating"); -- from DictEng -lin transliteration_N = mkN "transliteration" "transliterations"; -- from DictEng -lin translocation_N = mkN "translocation" ; -lin translucence_N = mkN "translucence" ; -- from DictEng -lin translucency_N = mkN "translucency" ; -- from DictEng -lin translucent_A = compoundA (mkA "translucent"); -- from DictEng -lin translunar_A = mkA "translunar" ; -lin transmigrante_N = mkN "transmigrante" ; -lin transmigration_N = mkN "transmigration" ; -- from DictEng -lin transmission_N = mkN "transmission" "transmissions"; -- from DictEng -lin transmit_V2 = mkV2 (mkV "transmit" "transmits" "transmitted" "transmitted" "transmitting"); -- from DictEng -lin transmittance_N = mkN "transmittance" ; -lin transmitter_N = mkN "transmitter" "transmitters"; -- from DictEng -lin transmogrification_N = mkN "transmogrification" "transmogrifications"; -- from DictEng -lin transmogrify_V2 = mkV2 (mkV "transmogrify" "transmogrifies" "transmogrified" "transmogrified" "transmogrifying"); -- from DictEng -lin transmundane_A = mkA "transmundane" ; -lin transmutable_A = compoundA (mkA "transmutable"); -- from DictEng -lin transmutation_N = mkN "transmutation" "transmutations"; -- from DictEng -lin transmute_V = mkV "transmute" ; -lin transmute_V2 = mkV2 (mkV "transmute" "transmutes" "transmuted" "transmuted" "transmuting"); -- from DictEng -lin transoceanic_A = compoundA (mkA "transoceanic"); -- from DictEng -lin transom_N = mkN "transom" "transoms"; -- from DictEng -lin transom_window_N = mkN "transom - window" "transom - windows"; -- from DictEng -lin transparence_N = mkN "transparence" ; -- from DictEng -lin transparency_N = mkN "transparency" "transparencies"; -- from DictEng -lin transparent_A = compoundA (mkA "transparent"); -- from DictEng -lin transparently_Adv = mkAdv "transparently" ; -lin transpiration_N = mkN "transpiration" ; -- from DictEng -lin transpire_V = mkV "transpire" "transpires" "transpired" "transpired" "transpiring"; -- from DictEng -lin transpire_V2 = mkV2 (mkV "transpire" "transpires" "transpired" "transpired" "transpiring"); -- from DictEng -lin transpiring_A = mkA "transpiring" ; -lin transplacental_A = mkA "transplacental" ; -lin transplant_N = mkN "transplant" "transplants"; -- from DictEng -lin transplant_V = mkV "transplant" "transplants" "transplanted" "transplanted" "transplanting"; -- from DictEng -lin transplant_V2 = mkV2 (mkV "transplant" "transplants" "transplanted" "transplanted" "transplanting"); -- from DictEng -lin transplantable_A = mkA "transplantable" ; -lin transplantation_N = mkN "transplantation" "transplantations"; -- from DictEng -lin transplanter_N = mkN "transplanter" ; -lin transpolar_A = compoundA (mkA "transpolar"); -- from DictEng -lin transponder_N = mkN "transponder" ; -lin transport_N = mkN "transport" "transports"; -- from DictEng -lin transport_V2 = mkV2 (mkV "transport" "transports" "transported" "transported" "transporting"); -- from DictEng -lin transportable_A = compoundA (mkA "transportable"); -- from DictEng -lin transportation_N = mkN "transportation" ; -- from DictEng -lin transporter_N = mkN "transporter" "transporters"; -- from DictEng -lin transposable_A = mkA "transposable" ; -lin transpose_N = mkN "transpose" ; -lin transpose_V2 = mkV2 (mkV "transpose" "transposes" "transposed" "transposed" "transposing"); -- from DictEng -lin transposition_N = mkN "transposition" "transpositions"; -- from DictEng -lin transposon_N = mkN "transposon" ; -lin transsexual_A = mkA "transsexual" ; -lin transsexual_N = mkN "transsexual" "transsexuals"; -- from DictEng -lin transsexualism_N = mkN "transsexualism" ; -lin transship_V2 = mkV2 (mkV "transship" "transships" "transshipped" "transshipped" "transshipping"); -- from DictEng -lin transshipment_N = mkN "transshipment" "transshipments"; -- from DictEng -lin transubstantiation_N = mkN "transubstantiation" ; -- from DictEng -lin transudate_N = mkN "transudate" ; -lin transuranic_A = mkA "transuranic" ; -lin transverse_A = compoundA (mkA "transverse"); -- from DictEng -lin transversely_Adv = mkAdv "transversely" ; -lin transvestic_A = mkA "transvestic" ; -lin transvestism_N = mkN "transvestism" ; -- from DictEng -lin transvestite_N = mkN "transvestite" "transvestites"; -- from DictEng -lin tranylcypromine_N = mkN "tranylcypromine" ; -lin trap_N = mkN "trap" "traps"; -- from DictEng -lin trap_V = mkV "trap"; -- from DictEng -lin trap_V2 = mkV2 (mkV "trap" "traps" "trapped" "trapped" "trapping"); -- from DictEng -lin trap_door_N = mkN "trap - door" "trap - doors"; -- from DictEng -lin trap_shooting_N = mkN "trap - shooting" ; -- from DictEng -lin trapeze_N = mkN "trapeze" "trapezes"; -- from DictEng -lin trapezium_N = mkN "trapezium" "trapeziums"; -- from DictEng -lin trapezius_N = mkN "trapezius" ; -lin trapezohedron_N = mkN "trapezohedron" ; -lin trapezoid_N = mkN "trapezoid" "trapezoids"; -- from DictEng -lin trapezoidal_A = mkA "trapezoidal" ; -lin trapper_N = mkN "trapper" "trappers"; -- from DictEng -lin trappist_N = mkN "trappist" "trappists"; -- from DictEng -lin trapshooter_N = mkN "trapshooter" ; -lin trash_N = mkN "trash" ; -- from DictEng -lin trash_V2 = mkV2 (mkV "trash"); -- from DictEng -lin trashy_A = mkA "trashy" "trashier"; -- from DictEng -lin trauma_N = mkN "trauma" "traumas"; -- from DictEng -lin traumatic_A = compoundA (mkA "traumatic"); -- from DictEng -lin traumatology_N = mkN "traumatology" ; -lin traumatophobia_N = mkN "traumatophobia" ; -lin travail_N = mkN "travail" "travails"; -- from DictEng -lin trave_N = mkN "trave" ; -lin travel_N = mkN "travel" "travels"; -- from DictEng -lin travel_V = mkV "travel" "travels" "traveled" "traveled" "traveling"; -- from DictEng -lin travel_V2 = mkV2 (mkV "travel" "travels" "traveled" "traveled" "traveling"); -- from DictEng -lin travel_soiled_A = compoundA (mkA "travel - soiled"); -- from DictEng -lin travel_worn_A = compoundA (mkA "travel - worn"); -- from DictEng -lin travel_soiled_A = compoundA (mkA "travel - soiled"); -- from DictEng -lin travel_stained_A = compoundA (mkA "travel - stained"); -- from DictEng -lin travel_worn_A = compoundA (mkA "travel - worn"); -- from DictEng -lin traveled_A = compoundA (mkA "traveled"); -- from DictEng -lin traveler_N = mkN "traveler" ; -lin travelled_A = compoundA (mkA "travelled"); -- from DictEng -lin traveller_N = mkN "traveller" "travellers"; -- from DictEng -lin travelling_N = mkN "travelling" ; -- from DictEng -lin travelogue_N = mkN "travelogue" "travelogues"; -- from DictEng -lin traversable_A = mkA "traversable" ; -lin traversal_N = mkN "traversal" ; -lin traverse_N = mkN "traverse" "traverses"; -- from DictEng -lin traverse_V2 = mkV2 (mkV "traverse" "traverses" "traversed" "traversed" "traversing"); -- from DictEng -lin traverser_N = mkN "traverser" ; -lin travesty_N = mkN "travesty" "travesties"; -- from DictEng -lin travesty_V2 = mkV2 (mkV "travesty" "travesties" "travestied" "travestied" "travestying"); -- from DictEng -lin trawl_N = mkN "trawl" "trawls"; -- from DictEng -lin trawl_V = mkV "trawl" "trawls" "trawled" "trawled" "trawling"; -- from DictEng -lin trawl_V2 = mkV2 (mkV "trawl" "trawls" "trawled" "trawled" "trawling"); -- from DictEng -lin trawl_net_N = mkN "trawl - net" "trawl - nets"; -- from DictEng -lin trawler_N = mkN "trawler" "trawlers"; -- from DictEng -lin tray_N = mkN "tray" "trays"; -- from DictEng -lin tray_cloth_N = mkN "tray - cloth" "tray - cloths"; -- from DictEng -lin trazodone_N = mkN "trazodone" ; -lin treacherous_A = compoundA (mkA "treacherous"); -- from DictEng -lin treachery_N = mkN "treachery" "treacheries"; -- from DictEng -lin treacle_N = mkN "treacle" ; -- from DictEng -lin treacly_A = compoundA (mkA "treacly"); -- from DictEng -lin tread_N = mkN "tread" "treads"; -- from DictEng -lin tread_V = IrregEng.tread_V; -- from DictEng -lin tread_V2 = mkV2 (IrregEng.tread_V); -- from DictEng -lin treadle_N = mkN "treadle" "treadles"; -- from DictEng -lin treadle_V = mkV "treadle" "treadles" "treadled" "treadled" "treadling"; -- from DictEng -lin treadmill_N = mkN "treadmill" "treadmills"; -- from DictEng -lin treas_N = mkN "treas" ; -- from DictEng -lin treason_N = mkN "treason" ; -- from DictEng -lin treasonable_A = compoundA (mkA "treasonable"); -- from DictEng -lin treasonous_A = compoundA (mkA "treasonous"); -- from DictEng -lin treasure_N = mkN "treasure" "treasures"; -- from DictEng -lin treasure_V2 = mkV2 (mkV "treasure" "treasures" "treasured" "treasured" "treasuring"); -- from DictEng -lin treasure_house_N = mkN "treasure - house" "treasure - houses"; -- from DictEng -lin treasure_trove_N = mkN "treasure - trove" ; -- from DictEng -lin treasurer_N = mkN "treasurer" "treasurers"; -- from DictEng -lin treasurership_N = mkN "treasurership" ; -lin treasury_N = mkN "treasury" "treasuries"; -- from DictEng -lin treat_N = mkN "treat" "treats"; -- from DictEng -lin treat_V = mkV "treat" "treats" "treated" "treated" "treating"; -- from DictEng -lin treat_V2 = mkV2 (mkV "treat" "treats" "treated" "treated" "treating"); -- from DictEng -lin treated_A = mkA "treated" ; -lin treatise_N = mkN "treatise" "treatises"; -- from DictEng -lin treatment_N = mkN "treatment" "treatments"; -- from DictEng -lin treaty_N = mkN "treaty" "treaties"; -- from DictEng -lin treble_A = compoundA (mkA "treble"); -- from DictEng -lin treble_N = mkN "treble" "trebles"; -- from DictEng -lin treble_V = mkV "treble" "trebles" "trebled" "trebled" "trebling"; -- from DictEng -lin treble_V2 = mkV2 (mkV "treble" "trebles" "trebled" "trebled" "trebling"); -- from DictEng -lin tree_N = mkN "tree" "trees"; -- from DictEng -lin tree_V2 = mkV2 (mkV "tree" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin tree_fern_N = mkN "tree - fern" "tree - ferns"; -- from DictEng -lin treehopper_N = mkN "treehopper" ; -lin treeless_A = compoundA (mkA "treeless"); -- from DictEng -lin treelet_N = mkN "treelet" ; -lin treenail_N = mkN "treenail" ; -lin trefoil_N = mkN "trefoil" "trefoils"; -- from DictEng -lin trek_N = mkN "trek" "treks"; -- from DictEng -lin trek_V = mkV "trek" "treks" "trekked" "trekked" "trekking"; -- from DictEng -lin trek_V2 = mkV2 (mkV "trek") ; -lin trekker_N = mkN "trekker" ; -lin trellis_N = mkN "trellis" "trellises"; -- from DictEng -lin trellis_V2 = mkV2 (mkV "trellis" "trellises" "trellised" "trellised" "trellising"); -- from DictEng -lin tremble_N = mkN "tremble" "trembles"; -- from DictEng -lin tremble_V = mkV "tremble" "trembles" "trembled" "trembled" "trembling"; -- from DictEng -lin trembles_N = mkN "trembles" ; -lin tremendous_A = compoundA (mkA "tremendous"); -- from DictEng -lin tremolite_N = mkN "tremolite" ; -lin tremolo_N = mkN "tremolo" "tremolos"; -- from DictEng -lin tremor_N = mkN "tremor" "tremors"; -- from DictEng -lin tremulous_A = compoundA (mkA "tremulous"); -- from DictEng -lin tremulously_Adv = mkAdv "tremulously" ; -lin trench_N = mkN "trench" "trenches"; -- from DictEng -lin trench_V2 = mkV2 (mkV "trench" "trenches" "trenched" "trenched" "trenching"); -- from DictEng -lin trenchancy_N = mkN "trenchancy" ; -- from DictEng -lin trenchant_A = compoundA (mkA "trenchant"); -- from DictEng -lin trenchantly_Adv = mkAdv "trenchantly" ; -lin trencher_N = mkN "trencher" "trenchers"; -- from DictEng -lin trencherman_N = mkN "trencherman" "trenchermen" {- FIXME: guessed plural form -}; -- from DictEng -lin trend_N = mkN "trend" "trends"; -- from DictEng -lin trend_V = mkV "trend" "trends" "trended" "trended" "trending"; -- from DictEng -lin trend_setter_N = mkN "trend - setter" "trend - setters"; -- from DictEng -lin trend_setter_N = mkN "trend - setter" "trend - setters"; -- from DictEng -lin trend_setting_N = mkN "trend - setting" ; -- from DictEng -lin trendsetting_A = mkA "trendsetting" ; -lin trendy_A = mkA "trendy" "trendier"; -- from DictEng -lin trepan_N = mkN "trepan" ; -lin trepan_V2 = mkV2 (mkV "trepan" "trepans" "trepanned" "trepanned" "trepanning"); -- from DictEng -lin trepang_N = mkN "trepang" ; -lin trephination_N = mkN "trephination" ; -lin trephine_N = mkN "trephine" "trephines"; -- from DictEng -lin trephine_V2 = mkV2 (mkV "trephine" "trephines" "trephined" "trephined" "trephining"); -- from DictEng -lin trepidation_N = mkN "trepidation" ; -- from DictEng -lin treponema_N = mkN "treponema" ; -lin trespass_N = mkN "trespass" "trespasses"; -- from DictEng -lin trespass_V = mkV "trespass" "trespasses" "trespassed" "trespassed" "trespassing"; -- from DictEng -lin trespasser_N = mkN "trespasser" "trespassers"; -- from DictEng -lin tress_N = mkN "tress" "tresses"; -- from DictEng -lin trestle_N = mkN "trestle" "trestles"; -- from DictEng -lin trestle_bridge_N = mkN "trestle - bridge" "trestle - bridges"; -- from DictEng -lin trestle_table_N = mkN "trestle - table" "trestle - tables"; -- from DictEng -lin trestlework_N = mkN "trestlework" ; -lin trews_N = mkN "trews" ; -lin trey_N = mkN "trey" ; -lin tri_chad_N = mkN "tri chad" ; -lin tri_iodothyronine_N = mkN "tri iodothyronine" ; -lin triad_N = mkN "triad" "triads"; -- from DictEng -lin triage_N = mkN "triage" ; -lin trial_N = mkN "trial" "trials"; -- from DictEng -lin trial_and_error_A = compoundA (mkA "trial and error") ; -lin triamcinolone_N = mkN "triamcinolone" ; -lin triangle_N = mkN "triangle" "triangles"; -- from DictEng -lin triangular_A = compoundA (mkA "triangular"); -- from DictEng -lin triangularity_N = mkN "triangularity" ; -lin triangulate_A = mkA "triangulate" ; -lin triangulation_N = mkN "triangulation" ; -lin triazine_N = mkN "triazine" ; -lin triazolam_N = mkN "triazolam" ; -lin tribadism_N = mkN "tribadism" ; -lin tribadistic_A = mkA "tribadistic" ; -lin tribal_A = compoundA (mkA "tribal"); -- from DictEng -lin tribalism_N = mkN "tribalism" ; -- from DictEng -lin tribalization_N = mkN "tribalization" ; -lin tribe_N = mkN "tribe" "tribes"; -- from DictEng -lin tribesman_N = mkN "tribesman" "tribesmen" {- FIXME: guessed plural form -}; -- from DictEng -lin tribologist_N = mkN "tribologist" ; -lin tribology_N = mkN "tribology" ; -lin tribromoethanol_N = mkN "tribromoethanol" ; -lin tribulation_N = mkN "tribulation" "tribulations"; -- from DictEng -lin tribunal_N = mkN "tribunal" "tribunals"; -- from DictEng -lin tribune_N = mkN "tribune" "tribunes"; -- from DictEng -lin tribuneship_N = mkN "tribuneship" ; -lin tributary_A = compoundA (mkA "tributary"); -- from DictEng -lin tributary_N = mkN "tributary" "tributaries"; -- from DictEng -lin tribute_N = mkN "tribute" "tributes"; -- from DictEng -lin tributyrin_N = mkN "tributyrin" ; -lin trice_N = mkN "trice" "trices"; -- from DictEng -lin trice_V2 = mkV2 (mkV "trice" "trices" "triced" "triced" "tricing"); -- from DictEng -lin tricentenary_A = mkA "tricentenary" ; -lin triceps_N = mkN "triceps" ; -lin triceratops_N = mkN "triceratops" ; -lin trichina_N = mkN "trichina" ; -lin trichinosis_N = mkN "trichinosis" ; -lin trichion_N = mkN "trichion" ; -lin trichloride_N = mkN "trichloride" ; -lin trichlormethiazide_N = mkN "trichlormethiazide" ; -lin trichloroethylene_N = mkN "trichloroethylene" ; -lin trichodesmium_N = mkN "trichodesmium" ; -lin trichomonad_N = mkN "trichomonad" ; -lin trichomoniasis_N = mkN "trichomoniasis" ; -lin trichotillomania_N = mkN "trichotillomania" ; -lin trichotomy_N = mkN "trichotomy" ; -lin trichroism_N = mkN "trichroism" ; -lin trichromatic_A = mkA "trichromatic" ; -lin trichuriasis_N = mkN "trichuriasis" ; -lin trick_N = mkN "trick" "tricks"; -- from DictEng -lin trick_V2 = mkV2 (mkV "trick" "tricks" "tricked" "tricked" "tricking"); -- from DictEng -lin tricked_out_A = compoundA (mkA "tricked out") ; -lin trickery_N = mkN "trickery" ; -- from DictEng -lin trickiness_N = mkN "trickiness" ; -- from DictEng -lin trickle_N = mkN "trickle" "trickles"; -- from DictEng -lin trickle_V = mkV "trickle" "trickles" "trickled" "trickled" "trickling"; -- from DictEng -lin trickle_V2 = mkV2 (mkV "trickle" "trickles" "trickled" "trickled" "trickling"); -- from DictEng -lin trickster_N = mkN "trickster" "tricksters"; -- from DictEng -lin tricksy_A = compoundA (mkA "tricksy"); -- from DictEng -lin tricky_A = mkA "tricky" "trickier"; -- from DictEng -lin triclinic_A = mkA "triclinic" ; -lin triclinium_N = mkN "triclinium" ; -lin tricolor_N = mkN "tricolor" ; -lin tricolour_N = mkN "tricolour" "tricolours"; -- from DictEng -lin tricorn_N = mkN "tricorn" ; -lin tricot_N = mkN "tricot" ; -lin tricuspid_A = mkA "tricuspid" ; -lin tricycle_N = mkN "tricycle" "tricycles"; -- from DictEng -lin tricyclic_N = mkN "tricyclic" ; -lin trident_N = mkN "trident" "tridents"; -- from DictEng -lin tridymite_N = mkN "tridymite" ; -lin tried_A = compoundA (mkA "tried"); -- from DictEng -lin triennial_A = compoundA (mkA "triennial"); -- from DictEng -lin triennial_N = mkN "triennial" "triennials"; -- from DictEng -lin trier_N = mkN "trier" "triers"; -- from DictEng -lin trifid_A = mkA "trifid" ; -lin trifle_N = mkN "trifle" "trifles"; -- from DictEng -lin trifle_V = mkV "trifle" "trifles" "trifled" "trifled" "trifling"; -- from DictEng -lin trifle_V2 = mkV2 (mkV "trifle" "trifles" "trifled" "trifled" "trifling"); -- from DictEng -lin trifler_N = mkN "trifler" "triflers"; -- from DictEng -lin trifling_A = compoundA (mkA "trifling"); -- from DictEng -lin trifoliate_A = mkA "trifoliate" ; -lin trifurcation_N = mkN "trifurcation" ; -lin trigeminal_N = mkN "trigeminal" ; -lin trigger_N = mkN "trigger" "triggers"; -- from DictEng -lin trigger_V2 = mkV2 (mkV "trigger" "triggers" "triggered" "triggered" "triggering"); -- from DictEng -lin trigger_happy_A = compoundA (mkA "trigger - happy"); -- from DictEng -lin trigger_happy_A = compoundA (mkA "trigger - happy"); -- from DictEng -lin triggerfish_N = mkN "triggerfish" ; -lin triglyceride_N = mkN "triglyceride" ; -lin trigon_N = mkN "trigon" ; -lin trigonometric_A = mkA "trigonometric" ; -lin trigonometrician_N = mkN "trigonometrician" ; -lin trigonometry_N = mkN "trigonometry" ; -- from DictEng -lin trigram_N = mkN "trigram" ; -lin trihydroxy_A = mkA "trihydroxy" ; -lin triiodothyronine_N = mkN "triiodothyronine" ; -lin trilateral_A = compoundA (mkA "trilateral"); -- from DictEng -lin trilby_N = mkN "trilby" "trilbies"; -- from DictEng -lin trilingual_A = mkA "trilingual" ; -lin trill_N = mkN "trill" "trills"; -- from DictEng -lin trill_V = mkV "trill" "trills" "trilled" "trilled" "trilling"; -- from DictEng -lin trill_V2 = mkV2 (mkV "trill" "trills" "trilled" "trilled" "trilling"); -- from DictEng -lin trillion_A = compoundA (mkA "trillion"); -- from DictEng -lin trillion_N = mkN "trillion" "trillions"; -- from DictEng -lin trillionth_A = compoundA (mkA "trillionth"); -- from DictEng -lin trillionth_N = mkN "trillionth" "trillionths"; -- from DictEng -lin trillium_N = mkN "trillium" ; -lin trilobate_A = mkA "trilobate" ; -lin trilobite_N = mkN "trilobite" ; -lin trilogy_N = mkN "trilogy" "trilogies"; -- from DictEng -lin trim_A = mkA "trim" "trimmer*"; -- from DictEng -lin trim_N = mkN "trim" ; -- from DictEng -lin trim_V = mkV "trim" "trims" "trimmed" "trimmed" "trimming"; -- from DictEng -lin trim_V2 = mkV2 (mkV "trim" "trims" "trimmed" "trimmed" "trimming"); -- from DictEng -lin trimaran_N = mkN "trimaran" "trimarans"; -- from DictEng -lin trimer_N = mkN "trimer" ; -lin trimester_N = mkN "trimester" ; -lin trimipramine_N = mkN "trimipramine" ; -lin trimly_Adv = mkAdv "trimly" ; -lin trimmed_A = mkA "trimmed" ; -lin trimmer_N = mkN "trimmer" "trimmers"; -- from DictEng -lin trimming_N = mkN "trimming" "trimmings"; -- from DictEng -lin trimotored_A = mkA "trimotored" ; -lin trinidadian_A = compoundA (mkA "trinidadian"); -- from DictEng -lin trinidadian_N = mkN "trinidadian" "trinidadians"; -- from DictEng -lin trinitrotoluene_N = mkN "trinitrotoluene" ; -- from DictEng -lin trinity_N = mkN "trinity" "trinities"; -- from DictEng -lin trinket_N = mkN "trinket" "trinkets"; -- from DictEng -lin trinketry_N = mkN "trinketry" ; -lin trinucleate_A = mkA "trinucleate" ; -lin trio_N = mkN "trio" "trios"; -- from DictEng -lin triode_N = mkN "triode" ; -lin triolein_N = mkN "triolein" ; -lin triose_N = mkN "triose" ; -lin trioxide_N = mkN "trioxide" ; -lin trip_N = mkN "trip" "trips"; -- from DictEng -lin trip_V = mkV "trip" "trips" "tripped" "tripped" "tripping"; -- from DictEng -lin trip_V2 = mkV2 (mkV "trip" "trips" "tripped" "tripped" "tripping"); -- from DictEng -lin tripalmitin_N = mkN "tripalmitin" ; -lin tripartite_A = compoundA (mkA "tripartite"); -- from DictEng -lin tripe_N = mkN "tripe" ; -- from DictEng -lin triphammer_N = mkN "triphammer" ; -lin triphosphopyridine_N = mkN "triphosphopyridine" ; -lin tripinnate_A = mkA "tripinnate" ; -lin tripinnatifid_A = mkA "tripinnatifid" ; -lin triple_A = compoundA (mkA "triple"); -- from DictEng -lin triple_N = mkN "triple" ; -lin triple_V = mkV "triple" "triples" "tripled" "tripled" "tripling"; -- from DictEng -lin triple_V2 = mkV2 (mkV "triple" "triples" "tripled" "tripled" "tripling"); -- from DictEng -lin triple_crown_A = compoundA (mkA "triple crown") ; -lin triple_spacing_N = mkN "triple spacing" ; -lin triplet_N = mkN "triplet" "triplets"; -- from DictEng -lin tripletail_N = mkN "tripletail" ; -lin triplex_A = compoundA (mkA "triplex"); -- from DictEng -lin triplicate_A = compoundA (mkA "triplicate"); -- from DictEng -lin triplicate_N = mkN "triplicate" "triplicates"; -- from DictEng -lin triplicate_V2 = mkV2 (mkV "triplicate" "triplicates" "triplicated" "triplicated" "triplicating"); -- from DictEng -lin triplicity_N = mkN "triplicity" ; -lin tripling_N = mkN "tripling" ; -lin triploid_A = mkA "triploid" ; -lin tripod_N = mkN "tripod" "tripods"; -- from DictEng -lin tripos_N = mkN "tripos" "triposes"; -- from DictEng -lin tripper_N = mkN "tripper" "trippers"; -- from DictEng -lin tripping_A = compoundA (mkA "tripping"); -- from DictEng -lin triptych_N = mkN "triptych" "triptychs"; -- from DictEng -lin triquetral_N = mkN "triquetral" ; -lin trireme_N = mkN "trireme" "triremes"; -- from DictEng -lin trisaccharide_N = mkN "trisaccharide" ; -lin trisect_V2 = mkV2 (mkV "trisect" "trisects" "trisected" "trisected" "trisecting"); -- from DictEng -lin triskaidekaphobia_N = mkN "triskaidekaphobia" ; -lin triskaidekaphobic_A = mkA "triskaidekaphobic" ; -lin triskelion_N = mkN "triskelion" ; -lin trismus_N = mkN "trismus" ; -lin trisomy_N = mkN "trisomy" ; -lin tristearin_N = mkN "tristearin" ; -lin trisyllable_N = mkN "trisyllable" ; -lin tritanopia_N = mkN "tritanopia" ; -lin tritanopic_A = mkA "tritanopic" ; -lin trite_A = compoundA (mkA "trite"); -- from DictEng -lin tritely_Adv = mkAdv "tritely" ; -lin triteness_N = mkN "triteness" ; -- from DictEng -lin tritheism_N = mkN "tritheism" ; -lin tritheist_N = mkN "tritheist" ; -lin tritium_N = mkN "tritium" ; -lin triton_N = mkN "triton" ; -lin triumph_N = mkN "triumph" "triumphs"; -- from DictEng -lin triumph_V = mkV "triumph" "triumphs" "triumphed" "triumphed" "triumphing"; -- from DictEng -lin triumphal_A = compoundA (mkA "triumphal"); -- from DictEng -lin triumphant_A = compoundA (mkA "triumphant"); -- from DictEng -lin triumphantly_Adv = mkAdv "triumphantly" ; -lin triumvir_N = mkN "triumvir" "triumvirs"; -- from DictEng -lin triumvirate_N = mkN "triumvirate" "triumvirates"; -- from DictEng -lin triune_A = compoundA (mkA "triune"); -- from DictEng -lin trivalent_A = mkA "trivalent" ; -lin trivet_N = mkN "trivet" "trivets"; -- from DictEng -lin trivial_A = compoundA (mkA "trivial"); -- from DictEng -lin triviality_N = mkN "triviality" "trivialities"; -- from DictEng -lin trivialize_V2 = mkV2 (mkV "trivialize" "trivializes" "trivialized" "trivialized" "trivializing"); -- from DictEng -lin trivially_Adv = mkAdv "trivially" ; -lin trivium_N = mkN "trivium" ; -lin trochaic_A = compoundA (mkA "trochaic"); -- from DictEng -lin trochanter_N = mkN "trochanter" ; -lin trochee_N = mkN "trochee" "trochees"; -- from DictEng -lin trochlear_N = mkN "trochlear" ; -lin troglodyte_N = mkN "troglodyte" "troglodytes"; -- from DictEng -lin trogon_N = mkN "trogon" ; -lin troika_N = mkN "troika" "troikas"; -- from DictEng -lin trojan_A = compoundA (mkA "trojan"); -- from DictEng -lin trojan_N = mkN "trojan" "trojans"; -- from DictEng -lin troll_N = mkN "troll" "trolls"; -- from DictEng -lin troll_V = mkV "troll" "trolls" "trolled" "trolled" "trolling"; -- from DictEng -lin troll_V2 = mkV2 (mkV "troll" "trolls" "trolled" "trolled" "trolling"); -- from DictEng -lin trolley_N = mkN "trolley" "trolleys"; -- from DictEng -lin trolley_V2 = mkV2 (mkV "trolley") ; -lin trolley_car_N = mkN "trolley - car" "trolley - cars"; -- from DictEng -lin trolleybus_N = mkN "trolleybus" ; -lin trollop_N = mkN "trollop" "trollops"; -- from DictEng -lin trombiculiasis_N = mkN "trombiculiasis" ; -lin trombiculid_N = mkN "trombiculid" ; -lin trombidiid_N = mkN "trombidiid" ; -lin trombone_N = mkN "trombone" "trombones"; -- from DictEng -lin trombonist_N = mkN "trombonist" "trombonists"; -- from DictEng -lin trompillo_N = mkN "trompillo" ; -lin troop_N = mkN "troop" "troops"; -- from DictEng -lin troop_V = mkV "troop" "troops" "trooped" "trooped" "trooping"; -- from DictEng -lin troop_V2 = mkV2 (mkV "troop" "troops" "trooped" "trooped" "trooping"); -- from DictEng -lin troop_carrier_N = mkN "troop - carrier" "troop - carriers"; -- from DictEng -lin trooper_N = mkN "trooper" "troopers"; -- from DictEng -lin troopship_N = mkN "troopship" "troopships"; -- from DictEng -lin trope_N = mkN "trope" "tropes"; -- from DictEng -lin trophic_A = mkA "trophic" ; -lin trophobiosis_N = mkN "trophobiosis" ; -lin trophoblast_N = mkN "trophoblast" ; -lin trophoblastic_A = mkA "trophoblastic" ; -lin trophotropic_A = mkA "trophotropic" ; -lin trophotropism_N = mkN "trophotropism" ; -lin trophozoite_N = mkN "trophozoite" ; -lin trophy_N = mkN "trophy" "trophies"; -- from DictEng -lin tropic_N = mkN "tropic" "tropics"; -- from DictEng -lin tropical_A = compoundA (mkA "tropical"); -- from DictEng -lin tropically_Adv = mkAdv "tropically" ; -lin tropism_N = mkN "tropism" ; -lin troponym_N = mkN "troponym" ; -lin troponymy_N = mkN "troponymy" ; -lin tropopause_N = mkN "tropopause" ; -lin troposphere_N = mkN "troposphere" ; -lin trot_N = mkN "trot" "trots"; -- from DictEng -lin trot_V = mkV "trot" "trots" "trotted" "trotted" "trotting"; -- from DictEng -lin trot_V2 = mkV2 (mkV "trot" "trots" "trotted" "trotted" "trotting"); -- from DictEng -lin troth_N = mkN "troth" ; -- from DictEng -lin trotter_N = mkN "trotter" "trotters"; -- from DictEng -lin trou_de_loup_N = mkN "trou de loup" ; -lin troubadour_N = mkN "troubadour" "troubadours"; -- from DictEng -lin trouble_N = mkN "trouble" "troubles"; -- from DictEng -lin trouble_V = mkV "trouble" "troubles" "troubled" "troubled" "troubling"; -- from DictEng -lin trouble_V2 = mkV2 (mkV "trouble" "troubles" "troubled" "troubled" "troubling"); -- from DictEng -lin trouble_free_A = compoundA (mkA "trouble free") ; -lin troubled_A = mkA "troubled" ; -lin troublemaker_N = mkN "troublemaker" "troublemakers"; -- from DictEng -lin troubleshooter_N = mkN "troubleshooter" "troubleshooters"; -- from DictEng -lin troublesome_A = compoundA (mkA "troublesome"); -- from DictEng -lin troublesomeness_N = mkN "troublesomeness" ; -lin troublous_A = compoundA (mkA "troublous"); -- from DictEng -lin trough_N = mkN "trough" "troughs"; -- from DictEng -lin trough_V = mkV "trough"; -- from DictEng -lin trounce_V2 = mkV2 (mkV "trounce" "trounces" "trounced" "trounced" "trouncing"); -- from DictEng -lin trouncing_N = mkN "trouncing" "trouncings"; -- from DictEng -lin troupe_N = mkN "troupe" "troupes"; -- from DictEng -lin trouper_N = mkN "trouper" "troupers"; -- from DictEng -lin trouser_N = mkN "trouser" "trousers"; -- from DictEng -lin trousseau_N = mkN "trousseau" "trousseaus"; -- from DictEng -lin trout_N = mkN "trout" "trout"; -- from DictEng -lin trove_N = mkN "trove" "troves"; -- from DictEng -lin trowel_N = mkN "trowel" "trowels"; -- from DictEng -lin troy_N = mkN "troy" ; -- from DictEng -lin truancy_N = mkN "truancy" "truancies"; -- from DictEng -lin truant_A = mkA "truant" ; -lin truant_N = mkN "truant" "truants"; -- from DictEng -lin truce_N = mkN "truce" "truces"; -- from DictEng -lin truck_N = mkN "truck" "trucks"; -- from DictEng -lin truckage_N = mkN "truckage" ; -lin truckle_N = mkN "truckle" "truckles"; -- from DictEng -lin truckle_V = mkV "truckle" "truckles" "truckled" "truckled" "truckling"; -- from DictEng -lin truckle_bed_N = mkN "truckle - bed" "truckle - beds"; -- from DictEng -lin truckling_N = mkN "truckling" ; -lin truculence_N = mkN "truculence" ; -- from DictEng -lin truculency_N = mkN "truculency" ; -- from DictEng -lin truculent_A = compoundA (mkA "truculent"); -- from DictEng -lin truculently_Adv = mkAdv "truculently" ; -lin trudge_N = mkN "trudge" "trudges"; -- from DictEng -lin trudge_V = mkV "trudge" "trudges" "trudged" "trudged" "trudging"; -- from DictEng -lin trudge_V2 = mkV2 (mkV "trudge") ; -lin trudger_N = mkN "trudger" ; -lin true_A = mkA "true" "truer"; -- from DictEng -lin true_Adv = mkAdv "true"; -- from DictEng -lin true_N = mkN "true" "trues"; -- from DictEng -lin true_V2 = mkV2 (mkV "true" "trues" "trued" "trued" "truing"); -- from DictEng -lin true_blue_A = compoundA (mkA "true - blue"); -- from DictEng -lin true_false_A = compoundA (mkA "true false") ; -lin true_to_life_A = compoundA (mkA "true to life") ; -lin true_blue_A = compoundA (mkA "true - blue"); -- from DictEng -lin true_blue_N = mkN "true - blue" "true - blues"; -- from DictEng -lin true_hearted_A = compoundA (mkA "true - hearted"); -- from DictEng -lin true_to_A = compoundA (mkA "true to") ; -lin truelove_N = mkN "truelove" "trueloves"; -- from DictEng -lin trueness_N = mkN "trueness" ; -lin truffle_N = mkN "truffle" "truffles"; -- from DictEng -lin truism_N = mkN "truism" "truisms"; -- from DictEng -lin truly_Adv = mkAdv "truly"; -- from DictEng -lin trump_N = mkN "trump" "trumps"; -- from DictEng -lin trump_V = mkV "trump" "trumps" "trumped" "trumped" "trumping"; -- from DictEng -lin trump_V2 = mkV2 (mkV "trump" "trumps" "trumped" "trumped" "trumping"); -- from DictEng -lin trumped_up_A = compoundA (mkA "trumped up") ; -lin trumpery_A = compoundA (mkA "trumpery"); -- from DictEng -lin trumpet_N = mkN "trumpet" "trumpets"; -- from DictEng -lin trumpet_V = mkV "trumpet" "trumpets" "trumpeted" "trumpeted" "trumpeting"; -- from DictEng -lin trumpet_V2 = mkV2 (mkV "trumpet" "trumpets" "trumpeted" "trumpeted" "trumpeting"); -- from DictEng -lin trumpet_like_A = compoundA (mkA "trumpet like") ; -lin trumpet_shaped_A = compoundA (mkA "trumpet shaped") ; -lin trumpeter_N = mkN "trumpeter" "trumpeters"; -- from DictEng -lin trumpetfish_N = mkN "trumpetfish" ; -lin trumpetwood_N = mkN "trumpetwood" ; -lin truncate_A = mkA "truncate" ; -lin truncate_V2 = mkV2 (mkV "truncate" "truncates" "truncated" "truncated" "truncating"); -- from DictEng -lin truncation_N = mkN "truncation" ; -lin truncheon_N = mkN "truncheon" "truncheons"; -- from DictEng -lin truncheon_V2 = mkV2 (mkV "truncheon") ; -lin trundle_N = mkN "trundle" ; -lin trundle_V = mkV "trundle" "trundles" "trundled" "trundled" "trundling"; -- from DictEng -lin trundle_V2 = mkV2 (mkV "trundle" "trundles" "trundled" "trundled" "trundling"); -- from DictEng -lin trunk_N = mkN "trunk" "trunks"; -- from DictEng -lin trunk_call_N = mkN "trunk - call" "trunk - calls"; -- from DictEng -lin trunk_line_N = mkN "trunk - line" "trunk - lines"; -- from DictEng -lin trunk_road_N = mkN "trunk - road" "trunk - roads"; -- from DictEng -lin trunking_N = mkN "trunking" ; -- from DictEng -lin truss_N = mkN "truss" "trusses"; -- from DictEng -lin truss_V2 = mkV2 (mkV "truss" "trusses" "trussed" "trussed" "trussing"); -- from DictEng -lin trussed_A = mkA "trussed" ; -lin trust_N = mkN "trust" "trusts"; -- from DictEng -lin trust_V = mkV "trust" "trusts" "trusted" "trusted" "trusting"; -- from DictEng -lin trust_V2 = mkV2 (mkV "trust" "trusts" "trusted" "trusted" "trusting"); -- from DictEng -lin trust_V2V = mkV2V (mkV "trust" "trusts" "trusted" "trusted" "trusting") noPrep to_Prep ; -- from DictEng -lin trust_VS = mkVS (mkV "trust" "trusts" "trusted" "trusted" "trusting"); -- from DictEng -lin trustbuster_N = mkN "trustbuster" ; -lin trustee_N = mkN "trustee" "trustees"; -- from DictEng -lin trusteeship_N = mkN "trusteeship" "trusteeships"; -- from DictEng -lin trustful_A = compoundA (mkA "trustful"); -- from DictEng -lin trustfully_Adv = mkAdv "trustfully" ; -lin trusting_A = compoundA (mkA "trusting"); -- from DictEng -lin trustworthiness_N = mkN "trustworthiness" ; -- from DictEng -lin trustworthy_A = compoundA (mkA "trustworthy"); -- from DictEng -lin trusty_A = mkA "trusty" "trustier"; -- from DictEng -lin trusty_N = mkN "trusty" ; -lin truth_N = mkN "truth" "truths"; -- from DictEng -lin truthful_A = compoundA (mkA "truthful"); -- from DictEng -lin truthfully_Adv = mkAdv "truthfully" ; -lin truthfulness_N = mkN "truthfulness" ; -- from DictEng -lin try_N = mkN "try" "tries"; -- from DictEng -lin try_V = mkV "try" "tries" "tried" "tried" "trying"; -- from DictEng -lin try_V2 = mkV2 (mkV "try" "tries" "tried" "tried" "trying"); -- from DictEng -lin try_VS = mkVS (mkV "try" "tries" "tried" "tried" "trying"); -- from DictEng -lin try_VV = mkVV (mkV "try" "tries" "tried" "tried" "trying"); -- from DictEng -lin try_on_N = mkN "try - on" "try - ons"; -- from DictEng -lin try_out_N = mkN "try - out" "try - outs"; -- from DictEng -lin trying_A = compoundA (mkA "trying"); -- from DictEng -lin trypsin_N = mkN "trypsin" ; -lin trypsinogen_N = mkN "trypsinogen" ; -lin tryptophan_N = mkN "tryptophan" ; -lin tryst_N = mkN "tryst" "trysts"; -- from DictEng -lin tsar_N = mkN "tsar" "tsars"; -- from DictEng -lin tsarina_N = mkN "tsarina" "tsarinas"; -- from DictEng -lin tsetse_N = mkN "tsetse" "tsetses"; -- from DictEng -lin tsetse_fly_N = mkN "tsetse - fly" "tsetse - flies"; -- from DictEng -lin tsoris_N = mkN "tsoris" ; -lin tsunami_N = mkN "tsunami" ; -lin tsuris_N = mkN "tsuris" ; -lin tswana_A = compoundA (mkA "tswana"); -- from DictEng -lin tswana_N = mkN "tswana" "tswanas"; -- from DictEng -lin tuatara_N = mkN "tuatara" ; -lin tub_N = mkN "tub" "tubs"; -- from DictEng -lin tub_thumper_N = mkN "tub - thumper" "tub - thumpers"; -- from DictEng -lin tub_thumper_N = mkN "tub - thumper" "tub - thumpers"; -- from DictEng -lin tuba_N = mkN "tuba" "tubas"; -- from DictEng -lin tubal_A = mkA "tubal" ; -lin tubby_A = mkA "tubby" "tubbier"; -- from DictEng -lin tube_N = mkN "tube" "tubes"; -- from DictEng -lin tube_nosed_A = compoundA (mkA "tube nosed") ; -lin tube_well_N = mkN "tube - well" "tube - wells"; -- from DictEng -lin tubed_A = mkA "tubed" ; -lin tubeless_A = compoundA (mkA "tubeless"); -- from DictEng -lin tubeless_N = mkN "tubeless" ; -lin tuber_N = mkN "tuber" "tubers"; -- from DictEng -lin tubercle_N = mkN "tubercle" ; -lin tubercular_A = compoundA (mkA "tubercular"); -- from DictEng -lin tuberculate_A = mkA "tuberculate" ; -lin tuberculin_N = mkN "tuberculin" ; -lin tuberculoid_A = mkA "tuberculoid" ; -lin tuberculosis_N = mkN "tuberculosis" ; -- from DictEng -lin tuberculous_A = compoundA (mkA "tuberculous"); -- from DictEng -lin tuberose_N = mkN "tuberose" ; -lin tuberosity_N = mkN "tuberosity" ; -lin tuberous_A = mkA "tuberous" ; -lin tubful_N = mkN "tubful" "tubfuls"; -- from DictEng -lin tubing_N = mkN "tubing" ; -- from DictEng -lin tubocurarine_N = mkN "tubocurarine" ; -lin tubular_A = compoundA (mkA "tubular"); -- from DictEng -lin tubule_N = mkN "tubule" ; -lin tuc_N = mkN "tuc" ; -- from DictEng -lin tuck_N = mkN "tuck" "tucks"; -- from DictEng -lin tuck_V = mkV "tuck" "tucks" "tucked" "tucked" "tucking"; -- from DictEng -lin tuck_V2 = mkV2 (mkV "tuck" "tucks" "tucked" "tucked" "tucking"); -- from DictEng -lin tuck_in_N = mkN "tuck - in" "tuck - ins"; -- from DictEng -lin tuck_shop_N = mkN "tuck - shop" "tuck - shops"; -- from DictEng -lin tucked_A = mkA "tucked" ; -lin tucker_N = mkN "tucker" "tuckers"; -- from DictEng -lin tucker_bag_N = mkN "tucker bag" ; -lin tudung_N = mkN "tudung" ; -lin tuesday_N = mkN "Tuesday" "Tuesdays"; -- from DictEng -lin tufa_N = mkN "tufa" ; -lin tuff_N = mkN "tuff" ; -lin tuft_N = mkN "tuft" "tufts"; -- from DictEng -lin tufted_A = compoundA (mkA "tufted"); -- from DictEng -lin tug_N = mkN "tug" "tugs"; -- from DictEng -lin tug_V = mkV "tug" "tugs" "tugged" "tugged" "tugging"; -- from DictEng -lin tug_V2 = mkV2 (mkV "tug" "tugs" "tugged" "tugged" "tugging"); -- from DictEng -lin tug_of_war_N = mkN "tug of war" ; -lin tugboat_N = mkN "tugboat" "tugboats"; -- from DictEng -lin tugrik_N = mkN "tugrik" ; -lin tuille_N = mkN "tuille" ; -lin tuition_N = mkN "tuition" ; -- from DictEng -lin tularemia_N = mkN "tularemia" ; -lin tulip_N = mkN "tulip" "tulips"; -- from DictEng -lin tulipwood_N = mkN "tulipwood" ; -lin tulle_N = mkN "tulle" ; -- from DictEng -lin tumble_N = mkN "tumble" "tumbles"; -- from DictEng -lin tumble_V = mkV "tumble" "tumbles" "tumbled" "tumbled" "tumbling"; -- from DictEng -lin tumble_V2 = mkV2 (mkV "tumble" "tumbles" "tumbled" "tumbled" "tumbling"); -- from DictEng -lin tumble_dryer_N = mkN "tumble dryer" ; -lin tumble_down_A = compoundA (mkA "tumble - down"); -- from DictEng -lin tumblebug_N = mkN "tumblebug" ; -lin tumbler_N = mkN "tumbler" "tumblers"; -- from DictEng -lin tumbleweed_N = mkN "tumbleweed" ; -- from DictEng -lin tumbrel_N = mkN "tumbrel" "tumbrels"; -- from DictEng -lin tumbril_N = mkN "tumbril" "tumbrils"; -- from DictEng -lin tumefaction_N = mkN "tumefaction" ; -lin tumescence_N = mkN "tumescence" "tumescences"; -- from DictEng -lin tumescent_A = compoundA (mkA "tumescent"); -- from DictEng -lin tumid_A = compoundA (mkA "tumid"); -- from DictEng -lin tumidity_N = mkN "tumidity" ; -- from DictEng -lin tummy_N = mkN "tummy" "tummies"; -- from DictEng -lin tumor_N = mkN "tumor" ; -lin tumour_N = mkN "tumour" "tumours"; -- from DictEng -lin tumult_N = mkN "tumult" "tumults"; -- from DictEng -lin tumultuous_A = compoundA (mkA "tumultuous"); -- from DictEng -lin tumultuously_Adv = mkAdv "tumultuously" ; -lin tumulus_N = mkN "tumulus" "tumuli" {- FIXME: guessed plural form -}; -- from DictEng -lin tun_N = mkN "tun" "tuns"; -- from DictEng -lin tuna_N = mkN "tuna" "tuna"; -- from DictEng -lin tunaburger_N = mkN "tunaburger" ; -lin tundra_N = mkN "tundra" "tundras"; -- from DictEng -lin tune_N = mkN "tune" "tunes"; -- from DictEng -lin tune_V = mkV "tune" "tunes" "tuned" "tuned" "tuning"; -- from DictEng -lin tune_V2 = mkV2 (mkV "tune" "tunes" "tuned" "tuned" "tuning"); -- from DictEng -lin tune_up_N = mkN "tune up" ; -lin tuneful_A = compoundA (mkA "tuneful"); -- from DictEng -lin tunefulness_N = mkN "tunefulness" ; -- from DictEng -lin tuneless_A = mkA "tuneless" ; -lin tunelessly_Adv = mkAdv "tunelessly" ; -lin tuner_N = mkN "tuner" "tuners"; -- from DictEng -lin tung_oil_N = mkN "tung - oil" ; -- from DictEng -lin tungstate_N = mkN "tungstate" ; -lin tungsten_N = mkN "tungsten" ; -- from DictEng -lin tunic_N = mkN "tunic" "tunics"; -- from DictEng -lin tunicate_N = mkN "tunicate" ; -lin tuning_N = mkN "tuning" ; -lin tuning_fork_N = mkN "tuning - fork" "tuning - forks"; -- from DictEng -lin tunisian_A = compoundA (mkA "tunisian"); -- from DictEng -lin tunisian_N = mkN "tunisian" "tunisians"; -- from DictEng -lin tunnel_N = mkN "tunnel" "tunnels"; -- from DictEng -lin tunnel_V = mkV "tunnel" "tunnels" "tunnelled" "tunnelled" "tunnelling"; -- from DictEng -lin tunnel_V2 = mkV2 (mkV "tunnel" "tunnels" "tunnelled" "tunnelled" "tunnelling"); -- from DictEng -lin tunny_N = mkN "tunny" "tunny"; -- from DictEng -lin tup_N = mkN "tup" "tups"; -- from DictEng -lin tupelo_N = mkN "tupelo" ; -lin tupik_N = mkN "tupik" ; -lin tuppence_N = mkN "tuppence" "tuppences"; -- from DictEng -lin tuppenny_A = compoundA (mkA "tuppenny"); -- from DictEng -lin turban_N = mkN "turban" "turbans"; -- from DictEng -lin turbaned_A = compoundA (mkA "turbaned"); -- from DictEng -lin turbid_A = compoundA (mkA "turbid"); -- from DictEng -lin turbidity_N = mkN "turbidity" ; -- from DictEng -lin turbidness_N = mkN "turbidness" ; -- from DictEng -lin turbinate_A = mkA "turbinate" ; -lin turbine_N = mkN "turbine" "turbines"; -- from DictEng -lin turbogenerator_N = mkN "turbogenerator" ; -lin turbojet_N = mkN "turbojet" "turbojets"; -- from DictEng -lin turboprop_N = mkN "turboprop" "turboprops"; -- from DictEng -lin turbot_N = mkN "turbot" "turbot"; -- from DictEng -lin turbulence_N = mkN "turbulence" "turbulences"; -- from DictEng -lin turbulent_A = compoundA (mkA "turbulent"); -- from DictEng -lin turbulently_Adv = mkAdv "turbulently" ; -lin turd_N = mkN "turd" "turds"; -- from DictEng -lin tureen_N = mkN "tureen" "tureens"; -- from DictEng -lin turf_N = mkN "turf" "turfs"; -- from DictEng -lin turf_V2 = mkV2 (mkV "turf" "turfs" "turfed" "turfed" "turfing"); -- from DictEng -lin turgid_A = compoundA (mkA "turgid"); -- from DictEng -lin turgidity_N = mkN "turgidity" ; -- from DictEng -lin turgidly_Adv = mkAdv "turgidly" ; -lin turgor_N = mkN "turgor" ; -lin turk_N = mkN "turk" "turks"; -- from DictEng -lin turkey_N = mkN "turkey" "turkeys"; -- from DictEng -lin turkey_sized_A = compoundA (mkA "turkey sized") ; -lin turkish_A = compoundA (mkA "Turkish"); -- from DictEng -lin turkish_N = mkN "Turkish" ; -- from DictEng -lin turmeric_N = mkN "turmeric" ; -- from DictEng -lin turmoil_N = mkN "turmoil" "turmoils"; -- from DictEng -lin turn_N = mkN "turn" "turns"; -- from DictEng -lin turn_V = mkV "turn" "turns" "turned" "turned" "turning"; -- from DictEng -lin turn_V2 = mkV2 (mkV "turn" "turns" "turned" "turned" "turning"); -- from DictEng -lin turn_VA = mkVA (mkV "turn" "turns" "turned" "turned" "turning"); -- from DictEng -lin turn_VS = mkVS (mkV "turn" "turns" "turned" "turned" "turning"); -- from DictEng -lin turn_on_N = mkN "turn - on" "turn - ons"; -- from DictEng -lin turn_off_N = mkN "turn - off" "turn - offs"; -- from DictEng -lin turn_on_N = mkN "turn - on" "turn - ons"; -- from DictEng -lin turn_out_N = mkN "turn - out" "turn - outs"; -- from DictEng -lin turn_round_N = mkN "turn - round" "turn - rounds"; -- from DictEng -lin turn_up_N = mkN "turn - up" "turn - ups"; -- from DictEng -lin turnaround_N = mkN "turnaround" ; -lin turnbuckle_N = mkN "turnbuckle" ; -lin turncoat_N = mkN "turncoat" "turncoats"; -- from DictEng -lin turncock_N = mkN "turncock" "turncocks"; -- from DictEng -lin turned_A = mkA "turned" ; -lin turned_out_A = compoundA (mkA "turned out") ; -lin turner_N = mkN "turner" "turners"; -- from DictEng -lin turnery_N = mkN "turnery" ; -lin turning_N = mkN "turning" "turnings"; -- from DictEng -lin turning_point_N = mkN "turning - point" "turning - points"; -- from DictEng -lin turnip_N = mkN "turnip" "turnips"; -- from DictEng -lin turnip_shaped_A = compoundA (mkA "turnip shaped") ; -lin turnkey_N = mkN "turnkey" "turnkeys"; -- from DictEng -lin turnoff_N = mkN "turnoff" ; -lin turnout_N = mkN "turnout" ; -lin turnover_N = mkN "turnover" "turnovers"; -- from DictEng -lin turnpike_N = mkN "turnpike" "turnpikes"; -- from DictEng -lin turnspit_N = mkN "turnspit" "turnspits"; -- from DictEng -lin turnstile_N = mkN "turnstile" "turnstiles"; -- from DictEng -lin turnstone_N = mkN "turnstone" ; -lin turntable_N = mkN "turntable" "turntables"; -- from DictEng -lin turnverein_N = mkN "turnverein" ; -lin turpentine_N = mkN "turpentine" ; -- from DictEng -lin turpitude_N = mkN "turpitude" ; -- from DictEng -lin turps_N = mkN "turps" ; -- from DictEng -lin turquoise_N = mkN "turquoise" "turquoises"; -- from DictEng -lin turreae_N = mkN "turreae" ; -lin turret_N = mkN "turret" "turrets"; -- from DictEng -lin turtle_N = mkN "turtle" "turtles"; -- from DictEng -lin turtledove_N = mkN "turtledove" "turtledoves"; -- from DictEng -lin turtleneck_A = compoundA (mkA "turtleneck"); -- from DictEng -lin turtleneck_N = mkN "turtleneck" ; -lin turtlenecked_A = compoundA (mkA "turtlenecked"); -- from DictEng -lin turtler_N = mkN "turtler" ; -lin tushery_N = mkN "tushery" ; -lin tusk_N = mkN "tusk" "tusks"; -- from DictEng -lin tusked_A = mkA "tusked" ; -lin tusker_N = mkN "tusker" ; -lin tussah_N = mkN "tussah" ; -lin tussle_N = mkN "tussle" "tussles"; -- from DictEng -lin tussle_V = mkV "tussle" "tussles" "tussled" "tussled" "tussling"; -- from DictEng -lin tussock_N = mkN "tussock" "tussocks"; -- from DictEng -lin tut_V2 = mkV2 (mkV "tut" "tuts" "tutted" "tutted" "tutting"); -- from DictEng -lin tutee_N = mkN "tutee" ; -lin tutelage_N = mkN "tutelage" ; -- from DictEng -lin tutelary_A = compoundA (mkA "tutelary"); -- from DictEng -lin tutor_N = mkN "tutor" "tutors"; -- from DictEng -lin tutor_V2 = mkV2 (mkV "tutor" "tutors" "tutored" "tutored" "tutoring"); -- from DictEng -lin tutorial_A = compoundA (mkA "tutorial"); -- from DictEng -lin tutorial_N = mkN "tutorial" "tutorials"; -- from DictEng -lin tutorially_Adv = mkAdv "tutorially" ; -lin tutorship_N = mkN "tutorship" "tutorships"; -- from DictEng -lin tutti_frutti_N = mkN "tutti - frutti" "tutti - fruttis"; -- from DictEng -lin tutti_frutti_N = mkN "tutti - frutti" "tutti - fruttis"; -- from DictEng -lin tutu_N = mkN "tutu" "tutus"; -- from DictEng -lin tuxedo_N = mkN "tuxedo" "tuxedos"; -- from DictEng -lin tuxedoed_A = mkA "tuxedoed" ; -lin tv_N = mkN "TV" "TVs" ; -- from DictEng -lin twaddle_N = mkN "twaddle" ; -- from DictEng -lin twaddle_V = mkV "twaddle" "twaddles" "twaddled" "twaddled" "twaddling"; -- from DictEng -lin twaddler_N = mkN "twaddler" ; -lin twain_N = mkN "twain" "twains"; -- from DictEng -lin twang_N = mkN "twang" "twangs"; -- from DictEng -lin twang_V = mkV "twang" "twangs" "twanged" "twanged" "twanging"; -- from DictEng -lin twang_V2 = mkV2 (mkV "twang" "twangs" "twanged" "twanged" "twanging"); -- from DictEng -lin twayblade_N = mkN "twayblade" ; -lin tweak_N = mkN "tweak" "tweaks"; -- from DictEng -lin tweak_V2 = mkV2 (mkV "tweak" "tweaks" "tweaked" "tweaked" "tweaking"); -- from DictEng -lin twee_A = compoundA (mkA "twee"); -- from DictEng -lin tweed_N = mkN "tweed" "tweeds"; -- from DictEng -lin tweediness_N = mkN "tweediness" ; -lin tweedy_A = mkA "tweedy" ; -lin tween_Adv = mkAdv "'tween"; -- from DictEng -lin tween_decks_Adv = mkAdv "'tween - decks"; -- from DictEng -lin tweet_N = mkN "tweet" "tweets"; -- from DictEng -lin tweet_V = mkV "tweet" "tweets" "tweeted" "tweeted" "tweeting"; -- from DictEng -lin tweeter_N = mkN "tweeter" "tweeters"; -- from DictEng -lin twelfth_A = mkA "twelfth" ; -lin twelfth_N = mkN "twelfth" ; -lin twelfth_night_N = mkN "twelfth - night" "twelfth - nights"; -- from DictEng -lin twelve_A = mkA "twelve" ; -lin twelve_N = mkN "twelve" ; -lin twelve_sided_A = compoundA (mkA "twelve sided") ; -lin twelvemonth_N = mkN "twelvemonth" "twelvemonths"; -- from DictEng -lin twenties_N = mkN "twenties" ; -lin twentieth_A = mkA "twentieth" ; -lin twentieth_N = mkN "twentieth" ; -lin twenty_A = mkA "twenty" ; -lin twenty_N = mkN "twenty" ; -lin twenty_eight_A = compoundA (mkA "twenty eight") ; -lin twenty_eight_N = mkN "twenty eight" ; -lin twenty_eighth_A = compoundA (mkA "twenty eighth") ; -lin twenty_fifth_A = compoundA (mkA "twenty fifth") ; -lin twenty_first_A = compoundA (mkA "twenty first") ; -lin twenty_five_A = compoundA (mkA "twenty five") ; -lin twenty_five_N = mkN "twenty five" ; -lin twenty_four_A = compoundA (mkA "twenty four") ; -lin twenty_four_N = mkN "twenty four" ; -lin twenty_fourth_A = compoundA (mkA "twenty fourth") ; -lin twenty_nine_A = compoundA (mkA "twenty nine") ; -lin twenty_nine_N = mkN "twenty nine" ; -lin twenty_ninth_A = compoundA (mkA "twenty ninth") ; -lin twenty_one_A = compoundA (mkA "twenty one") ; -lin twenty_one_N = mkN "twenty one" ; -lin twenty_second_A = compoundA (mkA "twenty second") ; -lin twenty_seven_A = compoundA (mkA "twenty seven") ; -lin twenty_seven_N = mkN "twenty seven" ; -lin twenty_seventh_A = compoundA (mkA "twenty seventh") ; -lin twenty_six_A = compoundA (mkA "twenty six") ; -lin twenty_six_N = mkN "twenty six" ; -lin twenty_sixth_A = compoundA (mkA "twenty sixth") ; -lin twenty_third_A = compoundA (mkA "twenty third") ; -lin twenty_three_A = compoundA (mkA "twenty three") ; -lin twenty_three_N = mkN "twenty three" ; -lin twenty_twenty_N = mkN "twenty twenty" ; -lin twenty_two_A = compoundA (mkA "twenty two") ; -lin twenty_two_N = mkN "twenty two" ; -lin twerp_N = mkN "twerp" "twerps"; -- from DictEng -lin twice_Adv = mkAdv "twice"; -- from DictEng -lin twiddle_N = mkN "twiddle" "twiddles"; -- from DictEng -lin twiddle_V = mkV "twiddle" "twiddles" "twiddled" "twiddled" "twiddling"; -- from DictEng -lin twiddle_V2 = mkV2 (mkV "twiddle" "twiddles" "twiddled" "twiddled" "twiddling"); -- from DictEng -lin twiddler_N = mkN "twiddler" ; -lin twiddly_A = compoundA (mkA "twiddly"); -- from DictEng -lin twig_N = mkN "twig" "twigs"; -- from DictEng -lin twig_V = mkV "twig" "twigs" "twigged" "twigged" "twigging"; -- from DictEng -lin twig_V2 = mkV2 (mkV "twig" "twigs" "twigged" "twigged" "twigging"); -- from DictEng -lin twiggy_A = mkA "twiggy" "twiggier"; -- from DictEng -lin twilight_N = mkN "twilight" ; -- from DictEng -lin twilit_A = compoundA (mkA "twilit"); -- from DictEng -lin twill_N = mkN "twill" ; -- from DictEng -lin twilled_A = compoundA (mkA "twilled"); -- from DictEng -lin twin_N = mkN "twin" "twins"; -- from DictEng -lin twin_V2 = mkV2 (mkV "twin" "twins" "twinned" "twinned" "twinning"); -- from DictEng -lin twin_bedded_A = compoundA (mkA "twin bedded") ; -lin twinberry_N = mkN "twinberry" ; -lin twine_N = mkN "twine" ; -- from DictEng -lin twine_V = mkV "twine" "twines" "twined" "twined" "twining"; -- from DictEng -lin twine_V2 = mkV2 (mkV "twine" "twines" "twined" "twined" "twining"); -- from DictEng -lin twiner_N = mkN "twiner" ; -lin twinflower_N = mkN "twinflower" ; -lin twinge_N = mkN "twinge" "twinges"; -- from DictEng -lin twinjet_N = mkN "twinjet" ; -lin twinkle_N = mkN "twinkle" ; -- from DictEng -lin twinkle_V = mkV "twinkle" "twinkles" "twinkled" "twinkled" "twinkling"; -- from DictEng -lin twinkler_N = mkN "twinkler" ; -lin twinkling_A = mkA "twinkling" ; -lin twinkling_N = mkN "twinkling" "IRREG"; -- from DictEng -lin twinned_A = compoundA (mkA "twinned"); -- from DictEng -lin twins_N = mkN "twins" ; -lin twirl_N = mkN "twirl" "twirls"; -- from DictEng -lin twirl_V = mkV "twirl" "twirls" "twirled" "twirled" "twirling"; -- from DictEng -lin twirl_V2 = mkV2 (mkV "twirl" "twirls" "twirled" "twirled" "twirling"); -- from DictEng -lin twirlingly_Adv = mkAdv "twirlingly" ; -lin twist_N = mkN "twist" "twists"; -- from DictEng -lin twist_V = mkV "twist" "twists" "twisted" "twisted" "twisting"; -- from DictEng -lin twist_V2 = mkV2 (mkV "twist" "twists" "twisted" "twisted" "twisting"); -- from DictEng -lin twister_N = mkN "twister" "twisters"; -- from DictEng -lin twisty_A = mkA "twisty" "twistier"; -- from DictEng -lin twit_N = mkN "twit" "twits"; -- from DictEng -lin twit_V2 = mkV2 (mkV "twit" "twits" "twitted" "twitted" "twitting"); -- from DictEng -lin twitch_N = mkN "twitch" "twitches"; -- from DictEng -lin twitch_V = mkV "twitch" "twitches" "twitched" "twitched" "twitching"; -- from DictEng -lin twitch_V2 = mkV2 (mkV "twitch" "twitches" "twitched" "twitched" "twitching"); -- from DictEng -lin twitter_N = mkN "twitter" "twitters"; -- from DictEng -lin twitter_V = mkV "twitter" "twitters" "twittered" "twittered" "twittering"; -- from DictEng -lin twitter_V2 = mkV2 (mkV "twitter") ; -lin twitterer_N = mkN "twitterer" ; -lin twixt_Prep = mkPrep "twixt"; -- from DictEng -lin two_A = mkA "two" ; -lin two_N = mkN "two" ; -lin two_by_four_N = mkN "two by four" ; -lin two_dimensional_A = compoundA (mkA "two dimensional") ; -lin two_dimensionality_N = mkN "two dimensionality" ; -lin two_eared_A = compoundA (mkA "two eared") ; -lin two_handed_A = compoundA (mkA "two - handed"); -- from DictEng -lin two_hitter_N = mkN "two hitter" ; -lin two_humped_A = compoundA (mkA "two humped") ; -lin two_hundredth_A = compoundA (mkA "two hundredth") ; -lin two_lane_A = compoundA (mkA "two lane") ; -lin two_leaved_A = compoundA (mkA "two leaved") ; -lin two_lobed_A = compoundA (mkA "two lobed") ; -lin two_needled_A = compoundA (mkA "two needled") ; -lin two_piece_A = compoundA (mkA "two piece") ; -lin two_piece_N = mkN "two - piece" "IRREG"; -- from DictEng -lin two_ply_A = compoundA (mkA "two - ply"); -- from DictEng -lin two_pronged_A = compoundA (mkA "two pronged") ; -lin two_step_N = mkN "two - step" "two - steps"; -- from DictEng -lin two_thirds_N = mkN "two thirds" ; -lin two_timer_N = mkN "two timer" ; -lin two_toed_A = compoundA (mkA "two toed") ; -lin two_way_A = compoundA (mkA "two - way"); -- from DictEng -lin two_wheel_A = compoundA (mkA "two wheel") ; -lin two_year_old_A = compoundA (mkA "two year old") ; -lin two_a_penny_A = compoundA (mkA "two - a - penny"); -- from DictEng -lin two_edged_A = compoundA (mkA "two - edged"); -- from DictEng -lin two_faced_A = compoundA (mkA "two - faced"); -- from DictEng -lin two_funnelled_A = compoundA (mkA "two - funnelled"); -- from DictEng -lin two_handed_A = compoundA (mkA "two - handed"); -- from DictEng -lin two_hundred_A = compoundA (mkA "two hundred") ; -lin two_piece_N = mkN "two - piece" "IRREG"; -- from DictEng -lin two_ply_A = compoundA (mkA "two - ply"); -- from DictEng -lin two_seater_N = mkN "two - seater" "two - seaters"; -- from DictEng -lin two_step_N = mkN "two - step" "two - steps"; -- from DictEng -lin two_timing_A = compoundA (mkA "two - timing"); -- from DictEng -lin two_way_A = compoundA (mkA "two - way"); -- from DictEng -lin twofer_N = mkN "twofer" ; -lin twofold_A = compoundA (mkA "twofold"); -- from DictEng -lin twofold_Adv = mkAdv "twofold"; -- from DictEng -lin twopence_N = mkN "twopence" "twopences"; -- from DictEng -lin twopenny_A = compoundA (mkA "twopenny"); -- from DictEng -lin twopenny_halfpenny_A = compoundA (mkA "twopenny - halfpenny"); -- from DictEng -lin tycoon_N = mkN "tycoon" "tycoons"; -- from DictEng -lin tying_N = mkN "tying" ; -lin tyiyn_N = mkN "tyiyn" ; -lin tyke_N = mkN "tyke" "tykes"; -- from DictEng -lin tympanic_A = mkA "tympanic" ; -lin tympanist_N = mkN "tympanist" ; -lin tympanites_N = mkN "tympanites" ; -lin tympanitic_A = mkA "tympanitic" ; -lin tympanitis_N = mkN "tympanitis" ; -lin tympanoplasty_N = mkN "tympanoplasty" ; -lin tympanum_N = mkN "tympanum" "tympanums"; -- from DictEng -lin type_N = mkN "type" "types"; -- from DictEng -lin type_V = mkV "type" "types" "typed" "typed" "typing"; -- from DictEng -lin type_V2 = mkV2 (mkV "type" "types" "typed" "typed" "typing"); -- from DictEng -lin type_ii_diabetes_PN = mkPN "type II diabetes" ; -lin type_i_diabetes_PN = mkPN "type I diabetes" ; -lin typecast_V2 = mkV2 (mkV "type" IrregEng.cast_V); -- from DictEng -lin typeface_N = mkN "typeface" "typefaces"; -- from DictEng -lin typescript_N = mkN "typescript" "typescripts"; -- from DictEng -lin typesetter_N = mkN "typesetter" "typesetters"; -- from DictEng -lin typewriter_N = mkN "typewriter" "typewriters"; -- from DictEng -lin typewritten_A = compoundA (mkA "typewritten"); -- from DictEng -lin typhoid_N = mkN "typhoid" ; -- from DictEng -lin typhoon_N = mkN "typhoon" "typhoons"; -- from DictEng -lin typhus_N = mkN "typhus" ; -- from DictEng -lin typical_A = compoundA (mkA "typical"); -- from DictEng -lin typicality_N = mkN "typicality" ; -lin typically_Adv = mkAdv "typically" ; -lin typification_N = mkN "typification" ; -lin typify_V2 = mkV2 (mkV "typify" "typifies" "typified" "typified" "typifying"); -- from DictEng -lin typing_N = mkN "typing" ; -lin typist_N = mkN "typist" "typists"; -- from DictEng -lin typographer_N = mkN "typographer" "typographers"; -- from DictEng -lin typographic_A = compoundA (mkA "typographic"); -- from DictEng -lin typographically_Adv = mkAdv "typographically"; -- from DictEng -lin typography_N = mkN "typography" ; -- from DictEng -lin typology_N = mkN "typology" ; -lin tyramine_N = mkN "tyramine" ; -lin tyrannical_A = compoundA (mkA "tyrannical"); -- from DictEng -lin tyrannicide_N = mkN "tyrannicide" ; -lin tyrannid_N = mkN "tyrannid" ; -lin tyrannize_V = mkV "tyrannize" "tyrannizes" "tyrannized" "tyrannized" "tyrannizing"; -- from DictEng -lin tyrannize_V2 = mkV2 (mkV "tyrannize" "tyrannizes" "tyrannized" "tyrannized" "tyrannizing"); -- from DictEng -lin tyrannosaur_N = mkN "tyrannosaur" ; -lin tyrannous_A = compoundA (mkA "tyrannous"); -- from DictEng -lin tyranny_N = mkN "tyranny" "tyrannies"; -- from DictEng -lin tyrant_N = mkN "tyrant" "tyrants"; -- from DictEng -lin tyre_N = mkN "tyre" "tyres"; -- from DictEng -lin tyro_N = mkN "tyro" "tyros"; -- from DictEng -lin tyrocidine_N = mkN "tyrocidine" ; -lin tyrolean_N = mkN "tyrolean" ; -lin tyrosine_N = mkN "tyrosine" ; -lin tyrosinemia_N = mkN "tyrosinemia" ; -lin tyrothricin_N = mkN "tyrothricin" ; -lin tzar_N = mkN "tzar" "tzars"; -- from DictEng -lin tzarina_N = mkN "tzarina" "tzarinas"; -- from DictEng -lin u_A = mkA "u" ; -lin u_turn_N = mkN "u - turn" "u - turns"; -- from DictEng -lin u_boat_N = mkN "u - boat" "u - boats"; -- from DictEng -lin u_turn_N = mkN "u - turn" "u - turns"; -- from DictEng -lin uakari_N = mkN "uakari" ; -lin ubiety_N = mkN "ubiety" ; -lin ubiquinone_N = mkN "ubiquinone" ; -lin ubiquitous_A = compoundA (mkA "ubiquitous"); -- from DictEng -lin ubiquity_N = mkN "ubiquity" ; -- from DictEng -lin udder_N = mkN "udder" "udders"; -- from DictEng -lin ufo_N = mkN "UFO" "UFO's" ; -- from DictEng -lin ugandan_A = compoundA (mkA "ugandan"); -- from DictEng -lin ugandan_N = mkN "ugandan" "ugandans"; -- from DictEng -lin uglify_V2 = mkV2 (mkV "uglify" "uglifies" "uglified" "uglified" "uglifying"); -- from DictEng -lin ugliness_N = mkN "ugliness" ; -- from DictEng -lin ugly_A = mkA "ugly" "uglier"; -- from DictEng -lin ukase_N = mkN "ukase" "ukases"; -- from DictEng -lin uke_N = mkN "uke" ; -lin ukulele_N = mkN "ukulele" "ukuleles"; -- from DictEng -lin ulalgia_N = mkN "ulalgia" ; -lin ulatrophia_N = mkN "ulatrophia" ; -lin ulcer_N = mkN "ulcer" "ulcers"; -- from DictEng -lin ulcerate_V = mkV "ulcerate" "ulcerates" "ulcerated" "ulcerated" "ulcerating"; -- from DictEng -lin ulcerate_V2 = mkV2 (mkV "ulcerate" "ulcerates" "ulcerated" "ulcerated" "ulcerating"); -- from DictEng -lin ulceration_N = mkN "ulceration" "ulcerations"; -- from DictEng -lin ulcerative_A = mkA "ulcerative" ; -lin ulcerous_A = compoundA (mkA "ulcerous"); -- from DictEng -lin ulema_N = mkN "ulema" ; -lin ulemorrhagia_N = mkN "ulemorrhagia" ; -lin ulitis_N = mkN "ulitis" ; -lin ullage_N = mkN "ullage" ; -lin ulna_N = mkN "ulna" "ulnae" {- FIXME: guessed plural form -}; -- from DictEng -lin ulnar_A = mkA "ulnar" ; -lin ulster_N = mkN "ulster" "ulsters"; -- from DictEng -lin ulterior_A = compoundA (mkA "ulterior"); -- from DictEng -lin ulteriority_N = mkN "ulteriority" ; -lin ulteriorly_Adv = mkAdv "ulteriorly" ; -lin ultima_N = mkN "ultima" ; -lin ultimacy_N = mkN "ultimacy" ; -lin ultimate_A = compoundA (mkA "ultimate"); -- from DictEng -lin ultimate_N = mkN "ultimate" ; -lin ultimately_Adv = mkAdv "ultimately" ; -lin ultimatum_N = mkN "ultimatum" "ultimatums"; -- from DictEng -lin ultimo_A = compoundA (mkA "ultimo"); -- from DictEng -lin ultra_vires_A = compoundA (mkA "ultra vires"); -- from DictEng -lin ultra_vires_Adv = mkAdv "ultra vires"; -- from DictEng -lin ultracentrifugation_N = mkN "ultracentrifugation" ; -lin ultracentrifuge_N = mkN "ultracentrifuge" ; -lin ultraconservative_A = mkA "ultraconservative" ; -lin ultramarine_A = compoundA (mkA "ultramarine"); -- from DictEng -lin ultramarine_N = mkN "ultramarine" "ultramarines"; -- from DictEng -lin ultramicroscope_N = mkN "ultramicroscope" ; -lin ultramicroscopic_A = mkA "ultramicroscopic" ; -lin ultramodern_A = mkA "ultramodern" ; -lin ultramontane_A = compoundA (mkA "ultramontane"); -- from DictEng -lin ultramontane_N = mkN "ultramontane" ; -lin ultramontanism_N = mkN "ultramontanism" ; -lin ultrasonic_A = compoundA (mkA "ultrasonic"); -- from DictEng -lin ultrasonically_Adv = mkAdv "ultrasonically" ; -lin ultrasound_N = mkN "ultrasound" ; -lin ultraviolet_A = compoundA (mkA "ultraviolet"); -- from DictEng -lin ultraviolet_N = mkN "ultraviolet" ; -lin ululate_V = mkV "ululate" "ululates" "ululated" "ululated" "ululating"; -- from DictEng -lin ululate_V2 = mkV2 (mkV "ululate") ; -lin ululation_N = mkN "ululation" "ululations"; -- from DictEng -lin umbel_N = mkN "umbel" ; -lin umbellate_A = mkA "umbellate" ; -lin umbellifer_N = mkN "umbellifer" ; -lin umbelliferous_A = mkA "umbelliferous" ; -lin umbelliform_A = mkA "umbelliform" ; -lin umber_A = compoundA (mkA "umber"); -- from DictEng -lin umber_N = mkN "umber" "umbers"; -- from DictEng -lin umbilical_A = compoundA (mkA "umbilical"); -- from DictEng -lin umbilicate_A = mkA "umbilicate" ; -lin umbo_N = mkN "umbo" ; -lin umbra_N = mkN "umbra" ; -lin umbrage_N = mkN "umbrage" ; -- from DictEng -lin umbrella_A = mkA "umbrella" ; -lin umbrella_N = mkN "umbrella" "umbrellas"; -- from DictEng -lin umbrella_shaped_A = compoundA (mkA "umbrella shaped") ; -lin umbrellalike_A = mkA "umbrellalike" ; -lin umbrellawort_N = mkN "umbrellawort" ; -lin umlaut_N = mkN "umlaut" "umlauts"; -- from DictEng -lin umpirage_N = mkN "umpirage" ; -lin umpire_N = mkN "umpire" "umpires"; -- from DictEng -lin umpire_V = mkV "umpire" "umpires" "umpired" "umpired" "umpiring"; -- from DictEng -lin umpire_V2 = mkV2 (mkV "umpire" "umpires" "umpired" "umpired" "umpiring"); -- from DictEng -lin umpteen_A = compoundA (mkA "umpteen"); -- from DictEng -lin umpteenth_A = compoundA (mkA "umpteenth"); -- from DictEng -lin un_N = mkN "un" ; -- from DictEng -lin un_american_A = compoundA (mkA "un American") ; -lin un_come_at_able_A = compoundA (mkA "un - come - at - able"); -- from DictEng -lin un_come_at_able_A = compoundA (mkA "un - come - at - able"); -- from DictEng -lin un_get_at_able_A = compoundA (mkA "un - get - at - able"); -- from DictEng -lin unabashed_A = compoundA (mkA "unabashed"); -- from DictEng -lin unabashedly_Adv = mkAdv "unabashedly" ; -lin unabated_A = compoundA (mkA "unabated"); -- from DictEng -lin unable_A = compoundA (mkA "unable"); -- from DictEng -lin unabridged_A = compoundA (mkA "unabridged"); -- from DictEng -lin unabused_A = mkA "unabused" ; -lin unaccented_A = mkA "unaccented" ; -lin unacceptability_N = mkN "unacceptability" ; -lin unacceptable_A = compoundA (mkA "unacceptable"); -- from DictEng -lin unacceptably_Adv = mkAdv "unacceptably" ; -lin unaccommodating_A = compoundA (mkA "unaccommodating"); -- from DictEng -lin unaccompanied_A = compoundA (mkA "unaccompanied"); -- from DictEng -lin unaccountable_A = compoundA (mkA "unaccountable"); -- from DictEng -lin unaccountably_Adv = mkAdv "unaccountably" ; -lin unaccounted_A = compoundA (mkA "unaccounted"); -- from DictEng -lin unaccredited_A = mkA "unaccredited" ; -lin unaccustomed_A = compoundA (mkA "unaccustomed"); -- from DictEng -lin unachievable_A = mkA "unachievable" ; -lin unacknowledged_A = compoundA (mkA "unacknowledged"); -- from DictEng -lin unacquainted_A = compoundA (mkA "unacquainted"); -- from DictEng -lin unacquisitive_A = mkA "unacquisitive" ; -lin unactable_A = mkA "unactable" ; -lin unadaptability_N = mkN "unadaptability" ; -lin unadaptable_A = mkA "unadaptable" ; -lin unadapted_A = mkA "unadapted" ; -lin unaddicted_A = mkA "unaddicted" ; -lin unaddressed_A = mkA "unaddressed" ; -lin unadjustable_A = mkA "unadjustable" ; -lin unadjusted_A = mkA "unadjusted" ; -lin unadoptable_A = mkA "unadoptable" ; -lin unadorned_A = compoundA (mkA "unadorned"); -- from DictEng -lin unadulterated_A = compoundA (mkA "unadulterated"); -- from DictEng -lin unadventurous_A = compoundA (mkA "unadventurous"); -- from DictEng -lin unadvised_A = compoundA (mkA "unadvised"); -- from DictEng -lin unadvisedly_Adv = mkAdv "unadvisedly" ; -lin unaerated_A = mkA "unaerated" ; -lin unaffected_A = compoundA (mkA "unaffected"); -- from DictEng -lin unaffectedness_N = mkN "unaffectedness" ; -lin unaffecting_A = mkA "unaffecting" ; -lin unaffiliated_A = mkA "unaffiliated" ; -lin unaffixed_A = mkA "unaffixed" ; -lin unafraid_A = compoundA (mkA "unafraid"); -- from DictEng -lin unaged_A = mkA "unaged" ; -lin unaggressive_A = mkA "unaggressive" ; -lin unagitated_A = mkA "unagitated" ; -lin unaided_A = compoundA (mkA "unaided"); -- from DictEng -lin unairworthy_A = mkA "unairworthy" ; -lin unalarming_A = mkA "unalarming" ; -lin unalert_A = mkA "unalert" ; -lin unalienable_A = compoundA (mkA "unalienable"); -- from DictEng -lin unaligned_A = compoundA (mkA "unaligned"); -- from DictEng -lin unalike_A = mkA "unalike" ; -lin unalloyed_A = compoundA (mkA "unalloyed"); -- from DictEng -lin unalterability_N = mkN "unalterability" ; -lin unalterable_A = compoundA (mkA "unalterable"); -- from DictEng -lin unalterably_Adv = mkAdv "unalterably" ; -lin unaltered_A = compoundA (mkA "unaltered"); -- from DictEng -lin unambiguity_N = mkN "unambiguity" ; -lin unambiguous_A = compoundA (mkA "unambiguous"); -- from DictEng -lin unambiguously_Adv = mkAdv "unambiguously" ; -lin unambitious_A = mkA "unambitious" ; -lin unambitiously_Adv = mkAdv "unambitiously" ; -lin unamended_A = compoundA (mkA "unamended"); -- from DictEng -lin unanalyzable_A = mkA "unanalyzable" ; -lin unanalyzed_A = mkA "unanalyzed" ; -lin unangry_A = mkA "unangry" ; -lin unanimated_A = mkA "unanimated" ; -lin unanimity_N = mkN "unanimity" ; -- from DictEng -lin unanimous_A = compoundA (mkA "unanimous"); -- from DictEng -lin unanimously_Adv = mkAdv "unanimously" ; -lin unannounced_A = compoundA (mkA "unannounced"); -- from DictEng -lin unanswerable_A = compoundA (mkA "unanswerable"); -- from DictEng -lin unanswered_A = compoundA (mkA "unanswered"); -- from DictEng -lin unanticipated_A = compoundA (mkA "unanticipated"); -- from DictEng -lin unapologetic_A = mkA "unapologetic" ; -lin unappareled_A = mkA "unappareled" ; -lin unapparent_A = mkA "unapparent" ; -lin unappealable_A = mkA "unappealable" ; -lin unappealing_A = compoundA (mkA "unappealing"); -- from DictEng -lin unappealingly_Adv = mkAdv "unappealingly" ; -lin unappendaged_A = mkA "unappendaged" ; -lin unappetizing_A = compoundA (mkA "unappetizing"); -- from DictEng -lin unappetizingness_N = mkN "unappetizingness" ; -lin unappreciated_A = compoundA (mkA "unappreciated"); -- from DictEng -lin unappreciative_A = compoundA (mkA "unappreciative"); -- from DictEng -lin unapprehensive_A = mkA "unapprehensive" ; -lin unapproachability_N = mkN "unapproachability" ; -lin unapproachable_A = compoundA (mkA "unapproachable"); -- from DictEng -lin unarguable_A = compoundA (mkA "unarguable"); -- from DictEng -lin unarguably_Adv = mkAdv "unarguably" ; -lin unargumentative_A = mkA "unargumentative" ; -lin unarmed_A = compoundA (mkA "unarmed"); -- from DictEng -lin unarmored_A = mkA "unarmored" ; -lin unarticulated_A = compoundA (mkA "unarticulated"); -- from DictEng -lin unary_A = mkA "unary" ; -lin unascertainable_A = mkA "unascertainable" ; -lin unashamed_A = compoundA (mkA "unashamed"); -- from DictEng -lin unashamedly_Adv = mkAdv "unashamedly" ; -lin unasked_A = compoundA (mkA "unasked"); -- from DictEng -lin unassailable_A = compoundA (mkA "unassailable"); -- from DictEng -lin unassertive_A = mkA "unassertive" ; -lin unassertively_Adv = mkAdv "unassertively" ; -lin unassertiveness_N = mkN "unassertiveness" ; -lin unassigned_A = mkA "unassigned" ; -lin unassisted_A = compoundA (mkA "unassisted"); -- from DictEng -lin unassuming_A = compoundA (mkA "unassuming"); -- from DictEng -lin unassumingly_Adv = mkAdv "unassumingly" ; -lin unassured_A = mkA "unassured" ; -lin unasterisked_A = mkA "unasterisked" ; -lin unattached_A = compoundA (mkA "unattached"); -- from DictEng -lin unattainable_A = compoundA (mkA "unattainable"); -- from DictEng -lin unattainableness_N = mkN "unattainableness" ; -lin unattainably_Adv = mkAdv "unattainably" ; -lin unattended_A = compoundA (mkA "unattended"); -- from DictEng -lin unattractive_A = compoundA (mkA "unattractive"); -- from DictEng -lin unattractively_Adv = mkAdv "unattractively" ; -lin unattractiveness_N = mkN "unattractiveness" ; -lin unattributable_A = mkA "unattributable" ; -lin unauthorized_A = compoundA (mkA "unauthorized"); -- from DictEng -lin unavailable_A = compoundA (mkA "unavailable"); -- from DictEng -lin unavailing_A = compoundA (mkA "unavailing"); -- from DictEng -lin unavenged_A = mkA "unavenged" ; -lin unavoidable_A = compoundA (mkA "unavoidable"); -- from DictEng -lin unavowed_A = mkA "unavowed" ; -lin unawakened_A = compoundA (mkA "unawakened"); -- from DictEng -lin unaware_A = compoundA (mkA "unaware"); -- from DictEng -lin unawares_Adv = mkAdv "unawares"; -- from DictEng -lin unawed_A = mkA "unawed" ; -lin unbacked_A = compoundA (mkA "unbacked"); -- from DictEng -lin unbaffled_A = mkA "unbaffled" ; -lin unbalance_V2 = mkV2 (mkV "unbalance" "unbalances" "unbalanced" "unbalanced" "unbalancing"); -- from DictEng -lin unbalanced_A = compoundA (mkA "unbalanced"); -- from DictEng -lin unbalconied_A = mkA "unbalconied" ; -lin unbanded_A = mkA "unbanded" ; -lin unbaptized_A = mkA "unbaptized" ; -lin unbar_V2 = mkV2 (mkV "unbar" "unbars" "unbarred" "unbarred" "unbarring"); -- from DictEng -lin unbarred_A = mkA "unbarred" ; -lin unbarreled_A = mkA "unbarreled" ; -lin unbearable_A = compoundA (mkA "unbearable"); -- from DictEng -lin unbearably_Adv = mkAdv "unbearably" ; -lin unbeatable_A = compoundA (mkA "unbeatable"); -- from DictEng -lin unbeaten_A = compoundA (mkA "unbeaten"); -- from DictEng -lin unbecoming_A = compoundA (mkA "unbecoming"); -- from DictEng -lin unbecomingness_N = mkN "unbecomingness" ; -lin unbefitting_A = mkA "unbefitting" ; -lin unbeholden_A = mkA "unbeholden" ; -lin unbeknown_A = compoundA (mkA "unbeknown"); -- from DictEng -lin unbeknown_Adv = mkAdv "unbeknown"; -- from DictEng -lin unbeknownst_A = compoundA (mkA "unbeknownst"); -- from DictEng -lin unbeknownst_Adv = mkAdv "unbeknownst"; -- from DictEng -lin unbelief_N = mkN "unbelief" ; -- from DictEng -lin unbelievable_A = compoundA (mkA "unbelievable"); -- from DictEng -lin unbelievably_Adv = mkAdv "unbelievably" ; -lin unbeliever_N = mkN "unbeliever" "unbelievers"; -- from DictEng -lin unbelieving_A = compoundA (mkA "unbelieving"); -- from DictEng -lin unbeloved_A = compoundA (mkA "unbeloved"); -- from DictEng -lin unbelted_A = mkA "unbelted" ; -lin unbend_V = mkV "unbend" "unbends" "unbended" "unbended" "unbending"; -- from DictEng -lin unbend_V2 = mkV2 (mkV "unbend" "unbends" "unbended" "unbended" "unbending"); -- from DictEng -lin unbending_A = compoundA (mkA "unbending"); -- from DictEng -lin unbeneficed_A = mkA "unbeneficed" ; -lin unbent_A = mkA "unbent" ; -lin unbiased_A = compoundA (mkA "unbiased"); -- from DictEng -lin unbiassed_A = compoundA (mkA "unbiassed"); -- from DictEng -lin unbidden_A = compoundA (mkA "unbidden"); -- from DictEng -lin unbigoted_A = mkA "unbigoted" ; -lin unbind_V2 = mkV2 (mkV "un" IrregEng.bind_V); -- from DictEng -lin unbitter_A = mkA "unbitter" ; -lin unbleached_A = mkA "unbleached" ; -lin unblemished_A = mkA "unblemished" ; -lin unblended_A = mkA "unblended" ; -lin unblessed_A = mkA "unblessed" ; -lin unblinking_A = mkA "unblinking" ; -lin unblinkingly_Adv = mkAdv "unblinkingly" ; -lin unblock_V2 = mkV2 (mkV "unblock" "unblocks" "unblocked" "unblocked" "unblocking"); -- from DictEng -lin unblushing_A = compoundA (mkA "unblushing"); -- from DictEng -lin unblushingly_Adv = mkAdv "unblushingly" ; -lin unbodied_A = mkA "unbodied" ; -lin unbolt_V = mkV "unbolt" "unbolts" "unbolted" "unbolted" "unbolting"; -- from DictEng -lin unbolt_V2 = mkV2 (mkV "unbolt" "unbolts" "unbolted" "unbolted" "unbolting"); -- from DictEng -lin unbooked_A = mkA "unbooked" ; -lin unbordered_A = mkA "unbordered" ; -lin unborn_A = compoundA (mkA "unborn"); -- from DictEng -lin unbosom_V2 = mkV2 (mkV "unbosom" "unbosoms" "unbosomed" "unbosomed" "unbosoming"); -- from DictEng -lin unbound_A = mkA "unbound" ; -lin unbounded_A = compoundA (mkA "unbounded"); -- from DictEng -lin unbowed_A = compoundA (mkA "unbowed"); -- from DictEng -lin unbraced_A = mkA "unbraced" ; -lin unbrainwashed_A = mkA "unbrainwashed" ; -lin unbranched_A = mkA "unbranched" ; -lin unbranded_A = mkA "unbranded" ; -lin unbreakable_A = compoundA (mkA "unbreakable"); -- from DictEng -lin unbreakableness_N = mkN "unbreakableness" ; -lin unbridgeable_A = mkA "unbridgeable" ; -lin unbridled_A = compoundA (mkA "unbridled"); -- from DictEng -lin unbroken_A = compoundA (mkA "unbroken"); -- from DictEng -lin unbrushed_A = mkA "unbrushed" ; -lin unbuckle_V2 = mkV2 (mkV "unbuckle" "unbuckles" "unbuckled" "unbuckled" "unbuckling"); -- from DictEng -lin unburden_V2 = mkV2 (mkV "unburden" "unburdens" "unburdened" "unburdened" "unburdening"); -- from DictEng -lin unburdened_A = mkA "unburdened" ; -lin unburied_A = compoundA (mkA "unburied"); -- from DictEng -lin unburnished_A = mkA "unburnished" ; -lin unbutton_V2 = mkV2 (mkV "unbutton" "unbuttons" "unbuttoned" "unbuttoned" "unbuttoning"); -- from DictEng -lin unbuttoned_A = compoundA (mkA "unbuttoned"); -- from DictEng -lin uncalled_for_A = compoundA (mkA "uncalled - for"); -- from DictEng -lin uncalled_for_A = compoundA (mkA "uncalled - for"); -- from DictEng -lin uncamphorated_A = mkA "uncamphorated" ; -lin uncannily_Adv = mkAdv "uncannily" ; -lin uncanny_A = compoundA (mkA "uncanny"); -- from DictEng -lin uncapped_A = mkA "uncapped" ; -lin uncared_for_A = compoundA (mkA "uncared - for"); -- from DictEng -lin uncared_for_A = compoundA (mkA "uncared - for"); -- from DictEng -lin uncarpeted_A = compoundA (mkA "uncarpeted"); -- from DictEng -lin uncarved_A = mkA "uncarved" ; -lin uncastrated_A = mkA "uncastrated" ; -lin uncategorized_A = mkA "uncategorized" ; -lin uncaulked_A = mkA "uncaulked" ; -lin unceasing_A = compoundA (mkA "unceasing"); -- from DictEng -lin uncensored_A = compoundA (mkA "uncensored"); -- from DictEng -lin unceremonious_A = compoundA (mkA "unceremonious"); -- from DictEng -lin unceremoniously_Adv = mkAdv "unceremoniously" ; -lin unceremoniousness_N = mkN "unceremoniousness" ; -- from DictEng -lin uncertain_A = compoundA (mkA "uncertain"); -- from DictEng -lin uncertainly_Adv = mkAdv "uncertainly" ; -lin uncertainty_N = mkN "uncertainty" "uncertainties"; -- from DictEng -lin uncertified_A = mkA "uncertified" ; -lin unchain_V2 = mkV2 (mkV "unchain" "unchains" "unchained" "unchained" "unchaining"); -- from DictEng -lin unchained_A = mkA "unchained" ; -lin unchallengeable_A = compoundA (mkA "unchallengeable"); -- from DictEng -lin unchallenged_A = compoundA (mkA "unchallenged"); -- from DictEng -lin unchangeable_A = mkA "unchangeable" ; -lin unchanged_A = compoundA (mkA "unchanged"); -- from DictEng -lin unchanging_A = compoundA (mkA "unchanging"); -- from DictEng -lin uncharacteristic_A = compoundA (mkA "uncharacteristic"); -- from DictEng -lin uncharacteristically_Adv = mkAdv "uncharacteristically"; -- from DictEng -lin uncharged_A = mkA "uncharged" ; -lin uncharitable_A = compoundA (mkA "uncharitable"); -- from DictEng -lin uncharted_A = compoundA (mkA "uncharted"); -- from DictEng -lin unchartered_A = mkA "unchartered" ; -lin unchaste_A = mkA "unchaste" ; -lin uncheckable_A = mkA "uncheckable" ; -lin unchecked_A = compoundA (mkA "unchecked"); -- from DictEng -lin uncheerfulness_N = mkN "uncheerfulness" ; -lin unchivalrously_Adv = mkAdv "unchivalrously"; -- from DictEng -lin unchristian_A = compoundA (mkA "unchristian"); -- from DictEng -lin unchristianly_A = mkA "unchristianly" ; -lin uncial_A = mkA "uncial" ; -lin uncial_N = mkN "uncial" ; -lin uncivil_A = compoundA (mkA "uncivil"); -- from DictEng -lin uncivilized_A = compoundA (mkA "uncivilized"); -- from DictEng -lin uncivilly_Adv = mkAdv "uncivilly" ; -lin unclaimed_A = compoundA (mkA "unclaimed"); -- from DictEng -lin unclamp_V2 = mkV2 (mkV "unclamp") ; -lin unclasp_V2 = mkV2 (mkV "unclasp") ; -lin unclassifiable_A = mkA "unclassifiable" ; -lin unclassified_A = compoundA (mkA "unclassified"); -- from DictEng -lin uncle_N = mkN "uncle" "uncles"; -- from DictEng -lin unclean_A = compoundA (mkA "unclean"); -- from DictEng -lin uncleanliness_N = mkN "uncleanliness" ; -lin uncleanly_A = mkA "uncleanly" ; -lin unclear_A = compoundA (mkA "unclear"); -- from DictEng -lin uncleared_A = mkA "uncleared" ; -lin unclearly_Adv = mkAdv "unclearly" ; -lin unclearness_N = mkN "unclearness" ; -lin unclip_V2 = mkV2 (mkV "unclip") ; -lin unclipped_A = mkA "unclipped" ; -lin unclogged_A = mkA "unclogged" ; -lin unclothed_A = mkA "unclothed" ; -lin unclouded_A = compoundA (mkA "unclouded"); -- from DictEng -lin uncluttered_A = compoundA (mkA "uncluttered"); -- from DictEng -lin unco_A = compoundA (mkA "unco"); -- from DictEng -lin unco_Adv = mkAdv "unco"; -- from DictEng -lin unco_operative_A = compoundA (mkA "unco - operative"); -- from DictEng -lin unco_ordinated_A = compoundA (mkA "unco - ordinated"); -- from DictEng -lin uncoated_A = mkA "uncoated" ; -lin uncoerced_A = mkA "uncoerced" ; -lin uncoil_V = mkV "uncoil" ; -lin uncoil_V2 = mkV2 (mkV "uncoil") ; -lin uncoiled_A = mkA "uncoiled" ; -lin uncollected_A = mkA "uncollected" ; -lin uncolored_A = mkA "uncolored" ; -lin uncoloured_A = compoundA (mkA "uncoloured"); -- from DictEng -lin uncombable_A = mkA "uncombable" ; -lin uncombed_A = mkA "uncombed" ; -lin uncombined_A = mkA "uncombined" ; -lin uncomfortable_A = compoundA (mkA "uncomfortable"); -- from DictEng -lin uncomfortably_Adv = mkAdv "uncomfortably" ; -lin uncommercial_A = mkA "uncommercial" ; -lin uncommercialized_A = compoundA (mkA "uncommercialized"); -- from DictEng -lin uncommitted_A = compoundA (mkA "uncommitted"); -- from DictEng -lin uncommon_A = compoundA (mkA "uncommon"); -- from DictEng -lin uncommonly_Adv = mkAdv "uncommonly" ; -lin uncommonness_N = mkN "uncommonness" ; -lin uncommunicative_A = compoundA (mkA "uncommunicative"); -- from DictEng -lin uncommunicativeness_N = mkN "uncommunicativeness" ; -lin uncompartmented_A = mkA "uncompartmented" ; -lin uncompassionate_A = mkA "uncompassionate" ; -lin uncompensated_A = mkA "uncompensated" ; -lin uncompetitive_A = compoundA (mkA "uncompetitive"); -- from DictEng -lin uncomplaining_A = compoundA (mkA "uncomplaining"); -- from DictEng -lin uncomplainingly_Adv = mkAdv "uncomplainingly" ; -lin uncompleted_A = compoundA (mkA "uncompleted"); -- from DictEng -lin uncomplicated_A = compoundA (mkA "uncomplicated"); -- from DictEng -lin uncomplimentary_A = compoundA (mkA "uncomplimentary"); -- from DictEng -lin uncompounded_A = mkA "uncompounded" ; -lin uncomprehended_A = mkA "uncomprehended" ; -lin uncomprehending_A = compoundA (mkA "uncomprehending"); -- from DictEng -lin uncompromising_A = compoundA (mkA "uncompromising"); -- from DictEng -lin uncompromisingly_Adv = mkAdv "uncompromisingly" ; -lin unconcealed_A = compoundA (mkA "unconcealed"); -- from DictEng -lin unconcern_N = mkN "unconcern" ; -- from DictEng -lin unconcerned_A = compoundA (mkA "unconcerned"); -- from DictEng -lin unconcernedly_Adv = mkAdv "unconcernedly" ; -lin unconditional_A = compoundA (mkA "unconditional"); -- from DictEng -lin unconditionally_Adv = mkAdv "unconditionally" ; -lin unconditioned_A = compoundA (mkA "unconditioned"); -- from DictEng -lin unconfessed_A = mkA "unconfessed" ; -lin unconfessed_N = mkN "unconfessed" ; -lin unconfined_A = compoundA (mkA "unconfined"); -- from DictEng -lin unconfirmed_A = compoundA (mkA "unconfirmed"); -- from DictEng -lin unconformable_A = compoundA (mkA "unconformable"); -- from DictEng -lin uncongenial_A = compoundA (mkA "uncongenial"); -- from DictEng -lin uncongeniality_N = mkN "uncongeniality" ; -lin unconnected_A = compoundA (mkA "unconnected"); -- from DictEng -lin unconnectedness_N = mkN "unconnectedness" ; -lin unconquerable_A = mkA "unconquerable" ; -lin unconquered_A = compoundA (mkA "unconquered"); -- from DictEng -lin unconscientious_A = mkA "unconscientious" ; -lin unconscientiousness_N = mkN "unconscientiousness" ; -lin unconscionable_A = compoundA (mkA "unconscionable"); -- from DictEng -lin unconscious_A = compoundA (mkA "unconscious"); -- from DictEng -lin unconscious_N = mkN "unconscious" "unconsciouses"; -- from DictEng -lin unconsciously_Adv = mkAdv "unconsciously" ; -lin unconsciousness_N = mkN "unconsciousness" ; -- from DictEng -lin unconsidered_A = compoundA (mkA "unconsidered"); -- from DictEng -lin unconsolidated_A = mkA "unconsolidated" ; -lin unconstipated_A = mkA "unconstipated" ; -lin unconstitutional_A = compoundA (mkA "unconstitutional"); -- from DictEng -lin unconstitutionally_Adv = mkAdv "unconstitutionally" ; -lin unconstrained_A = compoundA (mkA "unconstrained"); -- from DictEng -lin unconstricted_A = mkA "unconstricted" ; -lin unconstructive_A = compoundA (mkA "unconstructive"); -- from DictEng -lin unconsumed_A = mkA "unconsumed" ; -lin unconsummated_A = compoundA (mkA "unconsummated"); -- from DictEng -lin uncontaminated_A = compoundA (mkA "uncontaminated"); -- from DictEng -lin uncontested_A = mkA "uncontested" ; -lin uncontrollable_A = compoundA (mkA "uncontrollable"); -- from DictEng -lin uncontrollably_Adv = mkAdv "uncontrollably" ; -lin uncontrolled_A = compoundA (mkA "uncontrolled"); -- from DictEng -lin uncontroversial_A = compoundA (mkA "uncontroversial"); -- from DictEng -lin uncontroversially_Adv = mkAdv "uncontroversially" ; -lin unconventional_A = compoundA (mkA "unconventional"); -- from DictEng -lin unconventionality_N = mkN "unconventionality" ; -- from DictEng -lin unconventionally_Adv = mkAdv "unconventionally" ; -lin unconverted_A = compoundA (mkA "unconverted"); -- from DictEng -lin unconvinced_A = compoundA (mkA "unconvinced"); -- from DictEng -lin unconvincing_A = compoundA (mkA "unconvincing"); -- from DictEng -lin unconvincingly_Adv = mkAdv "unconvincingly" ; -lin uncooked_A = compoundA (mkA "uncooked"); -- from DictEng -lin uncool_A = mkA "uncool" ; -lin uncooperative_A = mkA "uncooperative" ; -lin uncoordinated_A = mkA "uncoordinated" ; -lin uncordial_A = mkA "uncordial" ; -lin uncork_V2 = mkV2 (mkV "uncork" "uncorks" "uncorked" "uncorked" "uncorking"); -- from DictEng -lin uncorrected_A = compoundA (mkA "uncorrected"); -- from DictEng -lin uncorrelated_A = compoundA (mkA "uncorrelated"); -- from DictEng -lin uncorroborated_A = compoundA (mkA "uncorroborated"); -- from DictEng -lin uncorrupted_A = mkA "uncorrupted" ; -lin uncouple_V2 = mkV2 (mkV "uncouple" "uncouples" "uncoupled" "uncoupled" "uncoupling"); -- from DictEng -lin uncoupled_A = mkA "uncoupled" ; -lin uncousinly_A = mkA "uncousinly" ; -lin uncouth_A = compoundA (mkA "uncouth"); -- from DictEng -lin uncouthly_Adv = mkAdv "uncouthly" ; -lin uncouthness_N = mkN "uncouthness" ; -- from DictEng -lin uncover_V2 = mkV2 (mkV "uncover" "uncovers" "uncovered" "uncovered" "uncovering"); -- from DictEng -lin uncrannied_A = mkA "uncrannied" ; -lin uncreative_A = mkA "uncreative" ; -lin uncreativeness_N = mkN "uncreativeness" ; -lin uncritical_A = compoundA (mkA "uncritical"); -- from DictEng -lin uncritically_Adv = mkAdv "uncritically" ; -lin uncropped_A = mkA "uncropped" ; -lin uncross_V2 = mkV2 (mkV "uncross" "uncrosses" "uncrossed" "uncrossed" "uncrossing"); -- from DictEng -lin uncrossed_A = compoundA (mkA "uncrossed"); -- from DictEng -lin uncrowded_A = mkA "uncrowded" ; -lin uncrowned_A = compoundA (mkA "uncrowned"); -- from DictEng -lin uncrystallized_A = mkA "uncrystallized" ; -lin unction_N = mkN "unction" ; -- from DictEng -lin unctuous_A = compoundA (mkA "unctuous"); -- from DictEng -lin unctuously_Adv = mkAdv "unctuously" ; -lin uncultivable_A = mkA "uncultivable" ; -lin uncultivated_A = compoundA (mkA "uncultivated"); -- from DictEng -lin uncultured_A = compoundA (mkA "uncultured"); -- from DictEng -lin uncured_A = mkA "uncured" ; -lin uncurl_V = mkV "uncurl" "uncurls" "uncurled" "uncurled" "uncurling"; -- from DictEng -lin uncurl_V2 = mkV2 (mkV "uncurl" "uncurls" "uncurled" "uncurled" "uncurling"); -- from DictEng -lin uncurled_A = mkA "uncurled" ; -lin uncurved_A = mkA "uncurved" ; -lin uncus_N = mkN "uncus" ; -lin uncut_A = compoundA (mkA "uncut"); -- from DictEng -lin undamaged_A = compoundA (mkA "undamaged"); -- from DictEng -lin undatable_A = mkA "undatable" ; -lin undated_A = compoundA (mkA "undated"); -- from DictEng -lin undaunted_A = compoundA (mkA "undaunted"); -- from DictEng -lin undecagon_N = mkN "undecagon" ; -lin undeceive_V2 = mkV2 (mkV "undeceive" "undeceives" "undeceived" "undeceived" "undeceiving"); -- from DictEng -lin undecided_A = compoundA (mkA "undecided"); -- from DictEng -lin undeciphered_A = mkA "undeciphered" ; -lin undeclared_A = compoundA (mkA "undeclared"); -- from DictEng -lin undedicated_A = mkA "undedicated" ; -lin undefeated_A = compoundA (mkA "undefeated"); -- from DictEng -lin undefended_A = compoundA (mkA "undefended"); -- from DictEng -lin undeferential_A = compoundA (mkA "undeferential"); -- from DictEng -lin undefinable_A = compoundA (mkA "undefinable"); -- from DictEng -lin undefined_A = compoundA (mkA "undefined"); -- from DictEng -lin undelineated_A = mkA "undelineated" ; -lin undemanding_A = compoundA (mkA "undemanding"); -- from DictEng -lin undemocratic_A = compoundA (mkA "undemocratic"); -- from DictEng -lin undemocratically_Adv = mkAdv "undemocratically"; -- from DictEng -lin undemonstrative_A = compoundA (mkA "undemonstrative"); -- from DictEng -lin undeniable_A = compoundA (mkA "undeniable"); -- from DictEng -lin undeniably_Adv = mkAdv "undeniably" ; -lin undenominational_A = compoundA (mkA "undenominational"); -- from DictEng -lin undependability_N = mkN "undependability" ; -lin undependable_A = mkA "undependable" ; -lin undepicted_A = mkA "undepicted" ; -lin under_A = mkA "under" ; -lin under_Adv = mkAdv "under"; -- from DictEng -lin under_Prep = mkPrep "under"; -- from DictEng -lin under_the_counter_A = compoundA (mkA "under - the - counter"); -- from DictEng -lin under_arms_Adv = mkAdv "under arms" ; -lin under_attack_A = compoundA (mkA "under attack") ; -lin under_the_circumstances_Adv = mkAdv "under the circumstances" ; -lin under_the_counter_A = compoundA (mkA "under - the - counter"); -- from DictEng -lin under_way_Adv = mkAdv "under way" ; -lin under_wraps_A = compoundA (mkA "under wraps") ; -lin underachievement_N = mkN "underachievement" ; -lin underachiever_N = mkN "underachiever" ; -lin underact_V = mkV "underact" "underacts" "underacted" "underacted" "underacting"; -- from DictEng -lin underact_V2 = mkV2 (mkV "underact" "underacts" "underacted" "underacted" "underacting"); -- from DictEng -lin underage_A = mkA "underage" ; -lin underarm_A = compoundA (mkA "underarm"); -- from DictEng -lin underarm_Adv = mkAdv "underarm"; -- from DictEng -lin underbelly_N = mkN "underbelly" "underbellies"; -- from DictEng -lin underbid_V2 = mkV2 (mkV "under" IrregEng.bid_V); -- from DictEng -lin underboss_N = mkN "underboss" ; -lin underbred_A = compoundA (mkA "underbred"); -- from DictEng -lin underbrush_N = mkN "underbrush" ; -- from DictEng -lin undercarriage_N = mkN "undercarriage" "undercarriages"; -- from DictEng -lin undercharge_N = mkN "undercharge" "undercharges"; -- from DictEng -lin undercharge_V2 = mkV2 (mkV "undercharge" "undercharges" "undercharged" "undercharged" "undercharging"); -- from DictEng -lin underclass_A = mkA "underclass" ; -lin underclothing_N = mkN "underclothing" ; -- from DictEng -lin undercoat_N = mkN "undercoat" "undercoats"; -- from DictEng -lin undercoated_A = mkA "undercoated" ; -lin undercover_A = compoundA (mkA "undercover"); -- from DictEng -lin undercurrent_N = mkN "undercurrent" "undercurrents"; -- from DictEng -lin undercut_N = mkN "undercut" ; -- from DictEng -lin undercut_V2 = mkV2 (mkV "under" IrregEng.cut_V); -- from DictEng -lin underdeveloped_A = compoundA (mkA "underdeveloped"); -- from DictEng -lin underdevelopment_N = mkN "underdevelopment" ; -- from DictEng -lin underdog_N = mkN "underdog" "underdogs"; -- from DictEng -lin underdone_A = compoundA (mkA "underdone"); -- from DictEng -lin underdressed_A = mkA "underdressed" ; -lin undereducated_A = mkA "undereducated" ; -lin underemployed_A = compoundA (mkA "underemployed"); -- from DictEng -lin underestimate_N = mkN "underestimate" "underestimates"; -- from DictEng -lin underestimate_V2 = mkV2 (mkV "underestimate" "underestimates" "underestimated" "underestimated" "underestimating"); -- from DictEng -lin underestimation_N = mkN "underestimation" "underestimations"; -- from DictEng -lin underevaluation_N = mkN "underevaluation" ; -lin underexpose_V2 = mkV2 (mkV "underexpose" "underexposes" "underexposed" "underexposed" "underexposing"); -- from DictEng -lin underexposure_N = mkN "underexposure" "underexposures"; -- from DictEng -lin underfed_A = compoundA (mkA "underfed"); -- from DictEng -lin underfelt_N = mkN "underfelt" ; -- from DictEng -lin underfloor_A = compoundA (mkA "underfloor"); -- from DictEng -lin underfoot_Adv = mkAdv "underfoot"; -- from DictEng -lin underfund_V2 = mkV2 (mkV "underfund"); -- from DictEng -lin undergarment_N = mkN "undergarment" "undergarments"; -- from DictEng -lin undergo_V2 = mkV2 (mkV "under" IrregEng.go_V); -- from DictEng -lin undergraduate_N = mkN "undergraduate" "undergraduates"; -- from DictEng -lin underground_A = compoundA (mkA "underground"); -- from DictEng -lin underground_Adv = mkAdv "underground"; -- from DictEng -lin underground_N = mkN "underground" "undergrounds"; -- from DictEng -lin undergrowth_N = mkN "undergrowth" ; -- from DictEng -lin underhand_A = compoundA (mkA "underhand"); -- from DictEng -lin underhand_Adv = mkAdv "underhand"; -- from DictEng -lin underhanded_A = compoundA (mkA "underhanded"); -- from DictEng -lin underhandedly_Adv = mkAdv "underhandedly" ; -lin underhung_A = compoundA (mkA "underhung"); -- from DictEng -lin underivative_A = mkA "underivative" ; -lin underived_A = mkA "underived" ; -lin underlay_N = mkN "underlay" ; -- from DictEng -lin underlie_V2 = mkV2 (mkV "under" IrregEng.lie_V); -- from DictEng -lin underline_N = mkN "underline" "underlines"; -- from DictEng -lin underline_V2 = mkV2 (mkV "underline" "underlines" "underlined" "underlined" "underlining"); -- from DictEng -lin underling_N = mkN "underling" "underlings"; -- from DictEng -lin underlip_N = mkN "underlip" ; -lin underlying_A = mkA "underlying" ; -lin undermanned_A = compoundA (mkA "undermanned"); -- from DictEng -lin undermentioned_A = compoundA (mkA "undermentioned"); -- from DictEng -lin undermine_V2 = mkV2 (mkV "undermine" "undermines" "undermined" "undermined" "undermining"); -- from DictEng -lin underneath_Adv = mkAdv "underneath"; -- from DictEng -lin underneath_Prep = mkPrep "underneath"; -- from DictEng -lin undernourished_A = compoundA (mkA "undernourished"); -- from DictEng -lin undernourishment_N = mkN "undernourishment" ; -- from DictEng -lin underpants_N = mkN "underpants" ; -lin underpart_N = mkN "underpart" ; -lin underpass_N = mkN "underpass" "underpasses"; -- from DictEng -lin underpay_V2 = mkV2 (mkV "under" IrregEng.pay_V); -- from DictEng -lin underpayment_N = mkN "underpayment" "underpayments"; -- from DictEng -lin underperform_V2 = mkV2 (mkV "underperform"); -- from DictEng -lin underperformer_N = mkN "underperformer" ; -lin underpin_V2 = mkV2 (mkV "underpin" "underpins" "underpinned" "underpinned" "underpinning"); -- from DictEng -lin underpopulated_A = compoundA (mkA "underpopulated"); -- from DictEng -lin underprivileged_A = compoundA (mkA "underprivileged"); -- from DictEng -lin underproduction_N = mkN "underproduction" ; -- from DictEng -lin underquote_V2 = mkV2 (mkV "underquote" "underquotes" "underquoted" "underquoted" "underquoting"); -- from DictEng -lin underrate_V2 = mkV2 (mkV "underrate" "underrates" "underrated" "underrated" "underrating"); -- from DictEng -lin underscore_N = mkN "underscore" ; -lin underscore_V2 = mkV2 (mkV "underscore" "underscores" "underscored" "underscored" "underscoring"); -- from DictEng -lin undersea_A = compoundA (mkA "undersea"); -- from DictEng -lin underseal_N = mkN "underseal" ; -- from DictEng -lin undersealed_A = compoundA (mkA "undersealed"); -- from DictEng -lin undersecretary_N = mkN "undersecretary" "undersecretaries"; -- from DictEng -lin undersell_V2 = mkV2 (mkV "under" IrregEng.sell_V); -- from DictEng -lin underseller_N = mkN "underseller" ; -lin undersexed_A = compoundA (mkA "undersexed"); -- from DictEng -lin undershoot_V2 = mkV2 (mkV "under" IrregEng.shoot_V); -- from DictEng -lin undershrub_N = mkN "undershrub" ; -lin underside_N = mkN "underside" "undersides"; -- from DictEng -lin undersign_V2 = mkV2 (mkV "undersign" "undersigns" "undersigned" "undersigned" "undersigning"); -- from DictEng -lin undersize_A = mkA "undersize" ; -lin undersized_A = compoundA (mkA "undersized"); -- from DictEng -lin underskirt_N = mkN "underskirt" "underskirts"; -- from DictEng -lin underslung_A = compoundA (mkA "underslung"); -- from DictEng -lin underspend_V = mkV "under" IrregEng.spend_V; -- from DictEng -lin underspend_V2 = mkV2 (mkV "under" IrregEng.spend_V); -- from DictEng -lin underspent_A = compoundA (mkA "underspent"); -- from DictEng -lin understaffed_A = compoundA (mkA "understaffed"); -- from DictEng -lin understand_V = IrregEng.understand_V; -- from DictEng -lin understand_V2 = mkV2 (IrregEng.understand_V); -- from DictEng -lin understand_V2V = mkV2V (IrregEng.understand_V) noPrep to_Prep ; -- from DictEng -lin understand_VS = mkVS (IrregEng.understand_V); -- from DictEng -lin understandable_A = compoundA (mkA "understandable"); -- from DictEng -lin understanding_A = compoundA (mkA "understanding"); -- from DictEng -lin understanding_N = mkN "understanding" "understandings"; -- from DictEng -lin understandingly_Adv = mkAdv "understandingly" ; -lin understate_V2 = mkV2 (mkV "understate" "understates" "understated" "understated" "understating"); -- from DictEng -lin understated_A = mkA "understated" ; -lin understatement_N = mkN "understatement" "understatements"; -- from DictEng -lin understock_V2 = mkV2 (mkV "understock" "understocks" "understocked" "understocked" "understocking"); -- from DictEng -lin understood_A = mkA "understood" ; -lin understudy_N = mkN "understudy" "understudies"; -- from DictEng -lin understudy_V2 = mkV2 (mkV "understudy" "understudies" "understudied" "understudied" "understudying"); -- from DictEng -lin undersurface_N = mkN "undersurface" "undersurfaces"; -- from DictEng -lin undertake_V2 = mkV2 (mkV "under" IrregEng.take_V); -- from DictEng -lin undertaker_N = mkN "undertaker" "undertakers"; -- from DictEng -lin undertaking_N = mkN "undertaking" "undertakings"; -- from DictEng -lin undertide_N = mkN "undertide" ; -lin undertone_N = mkN "undertone" "undertones"; -- from DictEng -lin undertow_N = mkN "undertow" "undertows"; -- from DictEng -lin undervaluation_N = mkN "undervaluation" "undervaluations"; -- from DictEng -lin undervalue_V2 = mkV2 (mkV "undervalue" "undervalues" "undervalued" "undervalued" "undervaluing"); -- from DictEng -lin underwater_A = compoundA (mkA "underwater"); -- from DictEng -lin underwear_N = mkN "underwear" ; -- from DictEng -lin underweight_A = compoundA (mkA "underweight"); -- from DictEng -lin underwhelm_V2 = mkV2 (mkV "underwhelm"); -- from DictEng -lin underwing_N = mkN "underwing" ; -lin underworld_N = mkN "underworld" "underworlds"; -- from DictEng -lin underwrite_V = mkV "underwrite"; -- from DictEng -lin underwrite_V2 = mkV2 (mkV "under" IrregEng.write_V); -- from DictEng -lin underwriter_N = mkN "underwriter" "underwriters"; -- from DictEng -lin undescended_A = mkA "undescended" ; -lin undescriptive_A = mkA "undescriptive" ; -lin undeserved_A = compoundA (mkA "undeserved"); -- from DictEng -lin undeservedly_Adv = mkAdv "undeservedly" ; -lin undeserving_A = compoundA (mkA "undeserving"); -- from DictEng -lin undesigned_A = compoundA (mkA "undesigned"); -- from DictEng -lin undesirability_N = mkN "undesirability" ; -lin undesirable_A = compoundA (mkA "undesirable"); -- from DictEng -lin undesirable_N = mkN "undesirable" "undesirables"; -- from DictEng -lin undesirably_Adv = mkAdv "undesirably" ; -lin undesired_A = mkA "undesired" ; -lin undesirous_A = mkA "undesirous" ; -lin undestroyable_A = mkA "undestroyable" ; -lin undetectable_A = mkA "undetectable" ; -lin undetected_A = compoundA (mkA "undetected"); -- from DictEng -lin undetermined_A = compoundA (mkA "undetermined"); -- from DictEng -lin undeterred_A = compoundA (mkA "undeterred"); -- from DictEng -lin undeveloped_A = compoundA (mkA "undeveloped"); -- from DictEng -lin undeviating_A = mkA "undeviating" ; -lin undiagnosable_A = mkA "undiagnosable" ; -lin undiagnosed_A = compoundA (mkA "undiagnosed"); -- from DictEng -lin undies_N = mkN "undies" ; -lin undifferentiated_A = compoundA (mkA "undifferentiated"); -- from DictEng -lin undigested_A = compoundA (mkA "undigested"); -- from DictEng -lin undignified_A = compoundA (mkA "undignified"); -- from DictEng -lin undiluted_A = compoundA (mkA "undiluted"); -- from DictEng -lin undiminished_A = compoundA (mkA "undiminished"); -- from DictEng -lin undimmed_A = compoundA (mkA "undimmed"); -- from DictEng -lin undine_N = mkN "undine" ; -lin undiplomatic_A = compoundA (mkA "undiplomatic"); -- from DictEng -lin undiplomatically_Adv = mkAdv "undiplomatically"; -- from DictEng -lin undiscerning_A = mkA "undiscerning" ; -lin undischarged_A = compoundA (mkA "undischarged"); -- from DictEng -lin undisciplined_A = compoundA (mkA "undisciplined"); -- from DictEng -lin undisclosed_A = compoundA (mkA "undisclosed"); -- from DictEng -lin undiscovered_A = compoundA (mkA "undiscovered"); -- from DictEng -lin undiscriminating_A = compoundA (mkA "undiscriminating"); -- from DictEng -lin undisguised_A = compoundA (mkA "undisguised"); -- from DictEng -lin undismayed_A = compoundA (mkA "undismayed"); -- from DictEng -lin undisputed_A = compoundA (mkA "undisputed"); -- from DictEng -lin undissolved_A = compoundA (mkA "undissolved"); -- from DictEng -lin undistinguishable_A = compoundA (mkA "undistinguishable"); -- from DictEng -lin undistinguished_A = compoundA (mkA "undistinguished"); -- from DictEng -lin undistorted_A = mkA "undistorted" ; -lin undistributed_A = compoundA (mkA "undistributed"); -- from DictEng -lin undisturbed_A = compoundA (mkA "undisturbed"); -- from DictEng -lin undiversified_A = mkA "undiversified" ; -lin undividable_A = mkA "undividable" ; -lin undivided_A = compoundA (mkA "undivided"); -- from DictEng -lin undo_V2 = mkV2 (mkV "un" IrregEng.do_V); -- from DictEng -lin undock_V = mkV "undock" "undocks" "undocked" "undocked" "undocking"; -- from DictEng -lin undock_V2 = mkV2 (mkV "undock" "undocks" "undocked" "undocked" "undocking"); -- from DictEng -lin undocumented_A = compoundA (mkA "undocumented"); -- from DictEng -lin undoer_N = mkN "undoer" ; -lin undogmatic_A = compoundA (mkA "undogmatic"); -- from DictEng -lin undoing_N = mkN "undoing" "undoings"; -- from DictEng -lin undomestic_A = mkA "undomestic" ; -lin undomesticated_A = compoundA (mkA "undomesticated"); -- from DictEng -lin undone_A = compoundA (mkA "undone"); -- from DictEng -lin undoubted_A = compoundA (mkA "undoubted"); -- from DictEng -lin undoubtedly_Adv = mkAdv "undoubtedly" ; -lin undrained_A = mkA "undrained" ; -lin undramatic_A = compoundA (mkA "undramatic"); -- from DictEng -lin undramatically_Adv = mkAdv "undramatically"; -- from DictEng -lin undraped_A = mkA "undraped" ; -lin undrawn_A = mkA "undrawn" ; -lin undreamed_A = compoundA (mkA "undreamed"); -- from DictEng -lin undreamed_of_A = compoundA (mkA "undreamed - of"); -- from DictEng -lin undreamt_A = compoundA (mkA "undreamt"); -- from DictEng -lin undress_N = mkN "undress" ; -- from DictEng -lin undress_V = mkV "undress" "undresses" "undressed" "undressed" "undressing"; -- from DictEng -lin undress_V2 = mkV2 (mkV "undress" "undresses" "undressed" "undressed" "undressing"); -- from DictEng -lin undressed_A = mkA "undressed" ; -lin undried_A = mkA "undried" ; -lin undrinkable_A = compoundA (mkA "undrinkable"); -- from DictEng -lin undue_A = compoundA (mkA "undue"); -- from DictEng -lin undulate_A = mkA "undulate" ; -lin undulate_V = mkV "undulate" "undulates" "undulated" "undulated" "undulating"; -- from DictEng -lin undulation_N = mkN "undulation" "undulations"; -- from DictEng -lin undulatory_A = mkA "undulatory" ; -lin unduly_Adv = mkAdv "unduly"; -- from DictEng -lin undutifulness_N = mkN "undutifulness" ; -lin undying_A = compoundA (mkA "undying"); -- from DictEng -lin undynamic_A = mkA "undynamic" ; -lin uneager_A = mkA "uneager" ; -lin unearned_A = compoundA (mkA "unearned"); -- from DictEng -lin unearth_V2 = mkV2 (mkV "unearth" "unearths" "unearthed" "unearthed" "unearthing"); -- from DictEng -lin unearthly_A = compoundA (mkA "unearthly"); -- from DictEng -lin unease_N = mkN "unease" ; -- from DictEng -lin uneasiness_N = mkN "uneasiness" ; -- from DictEng -lin uneasy_A = compoundA (mkA "uneasy"); -- from DictEng -lin uneatable_A = compoundA (mkA "uneatable"); -- from DictEng -lin uneaten_A = compoundA (mkA "uneaten"); -- from DictEng -lin uneconomic_A = compoundA (mkA "uneconomic"); -- from DictEng -lin uneconomical_A = compoundA (mkA "uneconomical"); -- from DictEng -lin unedifying_A = compoundA (mkA "unedifying"); -- from DictEng -lin unedited_A = compoundA (mkA "unedited"); -- from DictEng -lin uneducated_A = compoundA (mkA "uneducated"); -- from DictEng -lin uneffective_A = compoundA (mkA "uneffective"); -- from DictEng -lin unelaborated_A = compoundA (mkA "unelaborated"); -- from DictEng -lin unemotional_A = compoundA (mkA "unemotional"); -- from DictEng -lin unemotionality_N = mkN "unemotionality" ; -lin unemotionally_Adv = mkAdv "unemotionally" ; -lin unemphatic_A = mkA "unemphatic" ; -lin unemployable_A = compoundA (mkA "unemployable"); -- from DictEng -lin unemployed_A = compoundA (mkA "unemployed"); -- from DictEng -lin unemployment_N = mkN "unemployment" ; -- from DictEng -lin unenclosed_A = mkA "unenclosed" ; -lin unencouraging_A = mkA "unencouraging" ; -lin unencumbered_A = mkA "unencumbered" ; -lin unended_A = mkA "unended" ; -lin unending_A = compoundA (mkA "unending"); -- from DictEng -lin unendowed_A = mkA "unendowed" ; -lin unendurable_A = compoundA (mkA "unendurable"); -- from DictEng -lin unenforceable_A = mkA "unenforceable" ; -lin unenforced_A = mkA "unenforced" ; -lin unengaged_A = mkA "unengaged" ; -lin unenlightened_A = compoundA (mkA "unenlightened"); -- from DictEng -lin unenlightening_A = mkA "unenlightening" ; -lin unenlightenment_N = mkN "unenlightenment" ; -lin unenlivened_A = mkA "unenlivened" ; -lin unenterprising_A = compoundA (mkA "unenterprising"); -- from DictEng -lin unenthusiastic_A = compoundA (mkA "unenthusiastic"); -- from DictEng -lin unenthusiastically_Adv = mkAdv "unenthusiastically"; -- from DictEng -lin unentitled_A = mkA "unentitled" ; -lin unenviable_A = compoundA (mkA "unenviable"); -- from DictEng -lin unequal_A = compoundA (mkA "unequal"); -- from DictEng -lin unequalized_A = mkA "unequalized" ; -lin unequalled_A = compoundA (mkA "unequalled"); -- from DictEng -lin unequipped_A = compoundA (mkA "unequipped"); -- from DictEng -lin unequivocal_A = compoundA (mkA "unequivocal"); -- from DictEng -lin unerect_A = mkA "unerect" ; -lin unerring_A = compoundA (mkA "unerring"); -- from DictEng -lin unerringly_Adv = mkAdv "unerringly" ; -lin unestablished_A = mkA "unestablished" ; -lin unethical_A = compoundA (mkA "unethical"); -- from DictEng -lin unethically_Adv = mkAdv "unethically" ; -lin uneven_A = compoundA (mkA "uneven"); -- from DictEng -lin unevenly_Adv = mkAdv "unevenly" ; -lin unevenness_N = mkN "unevenness" ; -lin uneventful_A = compoundA (mkA "uneventful"); -- from DictEng -lin uneventfully_Adv = mkAdv "uneventfully" ; -lin unexacting_A = mkA "unexacting" ; -lin unexampled_A = compoundA (mkA "unexampled"); -- from DictEng -lin unexceeded_A = compoundA (mkA "unexceeded"); -- from DictEng -lin unexcelled_A = mkA "unexcelled" ; -lin unexceptionable_A = compoundA (mkA "unexceptionable"); -- from DictEng -lin unexceptional_A = compoundA (mkA "unexceptional"); -- from DictEng -lin unexchangeability_N = mkN "unexchangeability" ; -lin unexchangeable_A = mkA "unexchangeable" ; -lin unexcitable_A = mkA "unexcitable" ; -lin unexcited_A = mkA "unexcited" ; -lin unexciting_A = compoundA (mkA "unexciting"); -- from DictEng -lin unexcitingly_Adv = mkAdv "unexcitingly" ; -lin unexclusive_A = mkA "unexclusive" ; -lin unexcused_A = mkA "unexcused" ; -lin unexhausted_A = mkA "unexhausted" ; -lin unexpansive_A = mkA "unexpansive" ; -lin unexpected_A = compoundA (mkA "unexpected"); -- from DictEng -lin unexpectedly_Adv = mkAdv "unexpectedly" ; -lin unexpectedness_N = mkN "unexpectedness" ; -- from DictEng -lin unexpendable_A = mkA "unexpendable" ; -lin unexpired_A = compoundA (mkA "unexpired"); -- from DictEng -lin unexplained_A = compoundA (mkA "unexplained"); -- from DictEng -lin unexploited_A = mkA "unexploited" ; -lin unexplored_A = compoundA (mkA "unexplored"); -- from DictEng -lin unexportable_A = mkA "unexportable" ; -lin unexposed_A = compoundA (mkA "unexposed"); -- from DictEng -lin unexpressed_A = compoundA (mkA "unexpressed"); -- from DictEng -lin unexpurgated_A = compoundA (mkA "unexpurgated"); -- from DictEng -lin unextended_A = mkA "unextended" ; -lin unfaceted_A = mkA "unfaceted" ; -lin unfailing_A = compoundA (mkA "unfailing"); -- from DictEng -lin unfailingly_Adv = mkAdv "unfailingly" ; -lin unfair_A = compoundA (mkA "unfair"); -- from DictEng -lin unfairly_Adv = mkAdv "unfairly" ; -lin unfairness_N = mkN "unfairness" ; -- from DictEng -lin unfaithful_A = compoundA (mkA "unfaithful"); -- from DictEng -lin unfaithfully_Adv = mkAdv "unfaithfully" ; -lin unfaithfulness_N = mkN "unfaithfulness" ; -- from DictEng -lin unfaltering_A = compoundA (mkA "unfaltering"); -- from DictEng -lin unfamiliar_A = compoundA (mkA "unfamiliar"); -- from DictEng -lin unfamiliarity_N = mkN "unfamiliarity" ; -- from DictEng -lin unfashionable_A = compoundA (mkA "unfashionable"); -- from DictEng -lin unfashionably_Adv = mkAdv "unfashionably" ; -lin unfasten_V = mkV "unfasten" "unfastens" "unfastened" "unfastened" "unfastening"; -- from DictEng -lin unfasten_V2 = mkV2 (mkV "unfasten" "unfastens" "unfastened" "unfastened" "unfastening"); -- from DictEng -lin unfastened_A = mkA "unfastened" ; -lin unfastidious_A = mkA "unfastidious" ; -lin unfathomable_A = compoundA (mkA "unfathomable"); -- from DictEng -lin unfathomed_A = compoundA (mkA "unfathomed"); -- from DictEng -lin unfattened_A = mkA "unfattened" ; -lin unfavorable_A = mkA "unfavorable" ; -lin unfavorableness_N = mkN "unfavorableness" ; -lin unfavorably_Adv = mkAdv "unfavorably" ; -lin unfavourable_A = compoundA (mkA "unfavourable"); -- from DictEng -lin unfaze_V2 = mkV2 (mkV "unfaze"); -- from DictEng -lin unfeathered_A = mkA "unfeathered" ; -lin unfed_A = compoundA (mkA "unfed"); -- from DictEng -lin unfeeling_A = compoundA (mkA "unfeeling"); -- from DictEng -lin unfeelingly_Adv = mkAdv "unfeelingly" ; -lin unfeelingness_N = mkN "unfeelingness" ; -lin unfeigned_A = compoundA (mkA "unfeigned"); -- from DictEng -lin unfeminine_A = mkA "unfeminine" ; -lin unfenced_A = mkA "unfenced" ; -lin unfermented_A = compoundA (mkA "unfermented"); -- from DictEng -lin unfertilized_A = compoundA (mkA "unfertilized"); -- from DictEng -lin unfettered_A = compoundA (mkA "unfettered"); -- from DictEng -lin unfilled_A = mkA "unfilled" ; -lin unfilmed_A = mkA "unfilmed" ; -lin unfinished_A = compoundA (mkA "unfinished"); -- from DictEng -lin unfirm_A = mkA "unfirm" ; -lin unfit_A = compoundA (mkA "unfit"); -- from DictEng -lin unfit_V2 = mkV2 (mkV "unfit" "unfits" "unfitted" "unfitted" "unfitting"); -- from DictEng -lin unfitness_N = mkN "unfitness" ; -lin unfix_V2 = mkV2 (mkV "unfix") ; -lin unfixed_A = mkA "unfixed" ; -lin unflagging_A = compoundA (mkA "unflagging"); -- from DictEng -lin unflappable_A = compoundA (mkA "unflappable"); -- from DictEng -lin unflattering_A = mkA "unflattering" ; -lin unflavored_A = mkA "unflavored" ; -lin unfledged_A = compoundA (mkA "unfledged"); -- from DictEng -lin unflinching_A = compoundA (mkA "unflinching"); -- from DictEng -lin unflurried_A = compoundA (mkA "unflurried"); -- from DictEng -lin unfocused_A = mkA "unfocused" ; -lin unfold_V = mkV "unfold" "unfolds" "unfolded" "unfolded" "unfolding"; -- from DictEng -lin unfold_V2 = mkV2 (mkV "unfold" "unfolds" "unfolded" "unfolded" "unfolding"); -- from DictEng -lin unfolding_N = mkN "unfolding" ; -lin unforbearing_A = mkA "unforbearing" ; -lin unforced_A = mkA "unforced" ; -lin unforeseeable_A = compoundA (mkA "unforeseeable"); -- from DictEng -lin unforeseen_A = compoundA (mkA "unforeseen"); -- from DictEng -lin unforested_A = mkA "unforested" ; -lin unforethoughtful_A = mkA "unforethoughtful" ; -lin unforfeitable_A = mkA "unforfeitable" ; -lin unforgettable_A = compoundA (mkA "unforgettable"); -- from DictEng -lin unforgivable_A = compoundA (mkA "unforgivable"); -- from DictEng -lin unforgiving_A = compoundA (mkA "unforgiving"); -- from DictEng -lin unforgivingly_Adv = mkAdv "unforgivingly" ; -lin unformed_A = compoundA (mkA "unformed"); -- from DictEng -lin unforthcoming_A = compoundA (mkA "unforthcoming"); -- from DictEng -lin unfortunate_A = compoundA (mkA "unfortunate"); -- from DictEng -lin unfortunate_N = mkN "unfortunate" "unfortunates"; -- from DictEng -lin unfortunately_Adv = mkAdv "unfortunately" ; -lin unfounded_A = compoundA (mkA "unfounded"); -- from DictEng -lin unframed_A = compoundA (mkA "unframed"); -- from DictEng -lin unfree_A = mkA "unfree" ; -lin unfrequented_A = compoundA (mkA "unfrequented"); -- from DictEng -lin unfretted_A = mkA "unfretted" ; -lin unfriendliness_N = mkN "unfriendliness" ; -- from DictEng -lin unfriendly_A = compoundA (mkA "unfriendly"); -- from DictEng -lin unfrightened_A = mkA "unfrightened" ; -lin unfrock_V2 = mkV2 (mkV "unfrock" "unfrocks" "unfrocked" "unfrocked" "unfrocking"); -- from DictEng -lin unfrosted_A = mkA "unfrosted" ; -lin unfrozen_A = mkA "unfrozen" ; -lin unfruitful_A = compoundA (mkA "unfruitful"); -- from DictEng -lin unfueled_A = mkA "unfueled" ; -lin unfulfilled_A = compoundA (mkA "unfulfilled"); -- from DictEng -lin unfunctional_A = mkA "unfunctional" ; -lin unfunded_A = mkA "unfunded" ; -lin unfunny_A = mkA "unfunny" ; -lin unfurl_V = mkV "unfurl" "unfurls" "unfurled" "unfurled" "unfurling"; -- from DictEng -lin unfurl_V2 = mkV2 (mkV "unfurl" "unfurls" "unfurled" "unfurled" "unfurling"); -- from DictEng -lin unfurnished_A = compoundA (mkA "unfurnished"); -- from DictEng -lin unfurrowed_A = mkA "unfurrowed" ; -lin ungainly_A = compoundA (mkA "ungainly"); -- from DictEng -lin ungeared_A = mkA "ungeared" ; -lin ungenerous_A = compoundA (mkA "ungenerous"); -- from DictEng -lin ungentle_A = compoundA (mkA "ungentle"); -- from DictEng -lin ungentlemanly_A = compoundA (mkA "ungentlemanly"); -- from DictEng -lin unglazed_A = compoundA (mkA "unglazed"); -- from DictEng -lin unglue_V2 = mkV2 (mkV "unglue") ; -lin ungodliness_N = mkN "ungodliness" ; -lin ungodly_A = compoundA (mkA "ungodly"); -- from DictEng -lin ungovernable_A = compoundA (mkA "ungovernable"); -- from DictEng -lin ungraceful_A = compoundA (mkA "ungraceful"); -- from DictEng -lin ungracious_A = compoundA (mkA "ungracious"); -- from DictEng -lin ungraciously_Adv = mkAdv "ungraciously" ; -lin ungraciousness_N = mkN "ungraciousness" ; -lin ungraded_A = mkA "ungraded" ; -lin ungrammatical_A = compoundA (mkA "ungrammatical"); -- from DictEng -lin ungrammatically_Adv = mkAdv "ungrammatically" ; -lin ungrasped_A = mkA "ungrasped" ; -lin ungrateful_A = compoundA (mkA "ungrateful"); -- from DictEng -lin ungratefully_Adv = mkAdv "ungratefully" ; -lin ungratefulness_N = mkN "ungratefulness" ; -- from DictEng -lin ungregarious_A = mkA "ungregarious" ; -lin ungroomed_A = mkA "ungroomed" ; -lin ungrudging_A = compoundA (mkA "ungrudging"); -- from DictEng -lin ungrudgingly_Adv = mkAdv "ungrudgingly" ; -lin ungual_A = mkA "ungual" ; -lin unguaranteed_A = mkA "unguaranteed" ; -lin unguarded_A = compoundA (mkA "unguarded"); -- from DictEng -lin unguent_N = mkN "unguent" "unguents"; -- from DictEng -lin unguiculate_A = mkA "unguiculate" ; -lin unguiculate_N = mkN "unguiculate" ; -lin unguided_A = mkA "unguided" ; -lin ungulate_A = mkA "ungulate" ; -lin ungulate_N = mkN "ungulate" ; -lin ungummed_A = mkA "ungummed" ; -lin ungusseted_A = mkA "ungusseted" ; -lin unhallowed_A = compoundA (mkA "unhallowed"); -- from DictEng -lin unhampered_A = compoundA (mkA "unhampered"); -- from DictEng -lin unhand_V2 = mkV2 (mkV "unhand" "unhands" "unhanded" "unhanded" "unhanding"); -- from DictEng -lin unhappily_Adv = mkAdv "unhappily"; -- from DictEng -lin unhappiness_N = mkN "unhappiness" ; -- from DictEng -lin unhappy_A = mkA "unhappy" "unhappier"; -- from DictEng -lin unharmed_A = compoundA (mkA "unharmed"); -- from DictEng -lin unhatched_A = mkA "unhatched" ; -lin unheaded_A = mkA "unheaded" ; -lin unhealed_A = compoundA (mkA "unhealed"); -- from DictEng -lin unhealthful_A = mkA "unhealthful" ; -lin unhealthfulness_N = mkN "unhealthfulness" ; -lin unhealthy_A = compoundA (mkA "unhealthy"); -- from DictEng -lin unheard_A = compoundA (mkA "unheard"); -- from DictEng -lin unheard_of_A = compoundA (mkA "unheard - of"); -- from DictEng -lin unheard_of_A = compoundA (mkA "unheard - of"); -- from DictEng -lin unhearing_A = compoundA (mkA "unhearing"); -- from DictEng -lin unheated_A = compoundA (mkA "unheated"); -- from DictEng -lin unheeded_A = compoundA (mkA "unheeded"); -- from DictEng -lin unhelpful_A = compoundA (mkA "unhelpful"); -- from DictEng -lin unhelpfully_Adv = mkAdv "unhelpfully" ; -lin unhelpfulness_N = mkN "unhelpfulness" ; -lin unheralded_A = compoundA (mkA "unheralded"); -- from DictEng -lin unhesitating_A = compoundA (mkA "unhesitating"); -- from DictEng -lin unhesitatingly_Adv = mkAdv "unhesitatingly" ; -lin unhewn_A = mkA "unhewn" ; -lin unhindered_A = compoundA (mkA "unhindered"); -- from DictEng -lin unhinge_V2 = mkV2 (mkV "unhinge" "unhinges" "unhinged" "unhinged" "unhinging"); -- from DictEng -lin unhitch_V = mkV "unhitch" "unhitches" "unhitched" "unhitched" "unhitching"; -- from DictEng -lin unhitch_V2 = mkV2 (mkV "unhitch" "unhitches" "unhitched" "unhitched" "unhitching"); -- from DictEng -lin unholiness_N = mkN "unholiness" ; -lin unholy_A = compoundA (mkA "unholy"); -- from DictEng -lin unhomogenized_A = mkA "unhomogenized" ; -lin unhook_V2 = mkV2 (mkV "unhook" "unhooks" "unhooked" "unhooked" "unhooking"); -- from DictEng -lin unhoped_A = mkA "unhoped" ; -lin unhoped_for_A = compoundA (mkA "unhoped - for"); -- from DictEng -lin unhorse_V2 = mkV2 (mkV "unhorse" "unhorses" "unhorsed" "unhorsed" "unhorsing"); -- from DictEng -lin unhurried_A = compoundA (mkA "unhurried"); -- from DictEng -lin unhurriedly_Adv = mkAdv "unhurriedly" ; -lin unhurt_A = compoundA (mkA "unhurt"); -- from DictEng -lin unhygienic_A = compoundA (mkA "unhygienic"); -- from DictEng -lin unhygienically_Adv = mkAdv "unhygienically"; -- from DictEng -lin unicameral_A = mkA "unicameral" ; -lin unicellular_A = mkA "unicellular" ; -lin unicorn_N = mkN "unicorn" "unicorns"; -- from DictEng -lin unicuspid_A = mkA "unicuspid" ; -lin unicycle_N = mkN "unicycle" ; -lin unicyclist_N = mkN "unicyclist" ; -lin unidentifiable_A = compoundA (mkA "unidentifiable"); -- from DictEng -lin unidentified_A = compoundA (mkA "unidentified"); -- from DictEng -lin unidimensional_A = mkA "unidimensional" ; -lin unidirectional_A = mkA "unidirectional" ; -lin unifacial_A = mkA "unifacial" ; -lin unification_N = mkN "unification" ; -- from DictEng -lin unifilar_A = mkA "unifilar" ; -lin unifoliate_A = mkA "unifoliate" ; -lin uniform_A = compoundA (mkA "uniform"); -- from DictEng -lin uniform_N = mkN "uniform" "uniforms"; -- from DictEng -lin uniformed_A = compoundA (mkA "uniformed"); -- from DictEng -lin uniformity_N = mkN "uniformity" ; -- from DictEng -lin uniformly_Adv = mkAdv "uniformly" ; -lin unify_V2 = mkV2 (mkV "unify" "unifies" "unified" "unified" "unifying"); -- from DictEng -lin unilateral_A = compoundA (mkA "unilateral"); -- from DictEng -lin unilateralism_N = mkN "unilateralism" ; -- from DictEng -lin unilateralist_A = compoundA (mkA "unilateralist"); -- from DictEng -lin unilateralist_N = mkN "unilateralist" "unilateralists"; -- from DictEng -lin unilaterally_Adv = mkAdv "unilaterally" ; -lin unimaginable_A = compoundA (mkA "unimaginable"); -- from DictEng -lin unimaginably_Adv = mkAdv "unimaginably" ; -lin unimaginative_A = compoundA (mkA "unimaginative"); -- from DictEng -lin unimaginatively_Adv = mkAdv "unimaginatively" ; -lin unimodal_A = mkA "unimodal" ; -lin unimpaired_A = compoundA (mkA "unimpaired"); -- from DictEng -lin unimpassioned_A = mkA "unimpassioned" ; -lin unimpeachable_A = compoundA (mkA "unimpeachable"); -- from DictEng -lin unimpeded_A = compoundA (mkA "unimpeded"); -- from DictEng -lin unimportance_N = mkN "unimportance" ; -lin unimportant_A = compoundA (mkA "unimportant"); -- from DictEng -lin unimposing_A = mkA "unimposing" ; -lin unimpressed_A = compoundA (mkA "unimpressed"); -- from DictEng -lin unimpressionable_A = mkA "unimpressionable" ; -lin unimpressive_A = compoundA (mkA "unimpressive"); -- from DictEng -lin unimpressively_Adv = mkAdv "unimpressively" ; -lin unimproved_A = mkA "unimproved" ; -lin unincorporated_A = mkA "unincorporated" ; -lin unindustrialized_A = mkA "unindustrialized" ; -lin uninebriated_A = mkA "uninebriated" ; -lin uninfected_A = mkA "uninfected" ; -lin uninflected_A = mkA "uninflected" ; -lin uninfluenced_A = compoundA (mkA "uninfluenced"); -- from DictEng -lin uninfluential_A = mkA "uninfluential" ; -lin uninformative_A = compoundA (mkA "uninformative"); -- from DictEng -lin uninformatively_Adv = mkAdv "uninformatively" ; -lin uninformed_A = compoundA (mkA "uninformed"); -- from DictEng -lin uninhabitable_A = compoundA (mkA "uninhabitable"); -- from DictEng -lin uninhabited_A = compoundA (mkA "uninhabited"); -- from DictEng -lin uninhibited_A = compoundA (mkA "uninhibited"); -- from DictEng -lin uninitiate_A = mkA "uninitiate" ; -lin uninitiate_N = mkN "uninitiate" ; -lin uninitiated_A = compoundA (mkA "uninitiated"); -- from DictEng -lin uninjectable_A = mkA "uninjectable" ; -lin uninjured_A = compoundA (mkA "uninjured"); -- from DictEng -lin uninominal_A = mkA "uninominal" ; -lin uninquiring_A = mkA "uninquiring" ; -lin uninspired_A = compoundA (mkA "uninspired"); -- from DictEng -lin uninspiring_A = compoundA (mkA "uninspiring"); -- from DictEng -lin uninstructed_A = mkA "uninstructed" ; -lin uninstructive_A = mkA "uninstructive" ; -lin uninsurability_N = mkN "uninsurability" ; -lin uninsurable_A = mkA "uninsurable" ; -lin uninsured_A = compoundA (mkA "uninsured"); -- from DictEng -lin unintelligent_A = compoundA (mkA "unintelligent"); -- from DictEng -lin unintelligently_Adv = mkAdv "unintelligently" ; -lin unintelligibility_N = mkN "unintelligibility" ; -lin unintelligible_A = compoundA (mkA "unintelligible"); -- from DictEng -lin unintelligibly_Adv = mkAdv "unintelligibly" ; -lin unintended_A = compoundA (mkA "unintended"); -- from DictEng -lin unintentional_A = compoundA (mkA "unintentional"); -- from DictEng -lin unintentionally_Adv = mkAdv "unintentionally" ; -lin uninterested_A = compoundA (mkA "uninterested"); -- from DictEng -lin uninteresting_A = compoundA (mkA "uninteresting"); -- from DictEng -lin uninterestingly_Adv = mkAdv "uninterestingly" ; -lin uninterestingness_N = mkN "uninterestingness" ; -lin uninterrupted_A = compoundA (mkA "uninterrupted"); -- from DictEng -lin uninterruptedly_Adv = mkAdv "uninterruptedly" ; -lin unintrusive_A = mkA "unintrusive" ; -lin uninucleate_A = mkA "uninucleate" ; -lin uninvited_A = compoundA (mkA "uninvited"); -- from DictEng -lin uninvitedly_Adv = mkAdv "uninvitedly" ; -lin uninviting_A = compoundA (mkA "uninviting"); -- from DictEng -lin uninvolved_A = mkA "uninvolved" ; -lin union_A = mkA "union" ; -lin union_N = mkN "union" "unions"; -- from DictEng -lin unionism_N = mkN "unionism" ; -lin unionist_N = mkN "unionist" "unionists"; -- from DictEng -lin unionization_N = mkN "unionization" ; -lin uniovular_A = mkA "uniovular" ; -lin uniparous_A = mkA "uniparous" ; -lin unipolar_A = mkA "unipolar" ; -lin unique_A = compoundA (mkA "unique"); -- from DictEng -lin uniquely_Adv = mkAdv "uniquely" ; -lin uniqueness_N = mkN "uniqueness" ; -- from DictEng -lin unironed_A = mkA "unironed" ; -lin unisex_A = compoundA (mkA "unisex"); -- from DictEng -lin unisexual_A = mkA "unisexual" ; -lin unison_N = mkN "unison" ; -- from DictEng -lin unit_N = mkN "unit" "units"; -- from DictEng -lin unit_V2V = mkV2V (mkV "unit") noPrep to_Prep ; -- from DictEng -lin unitarian_A = compoundA (mkA "unitarian"); -- from DictEng -lin unitarian_N = mkN "unitarian" "unitarians"; -- from DictEng -lin unitarianism_N = mkN "unitarianism" ; -- from DictEng -lin unitary_A = compoundA (mkA "unitary"); -- from DictEng -lin unite_V = mkV "unite" "unites" "united" "united" "uniting"; -- from DictEng -lin unite_V2 = mkV2 (mkV "unite" "unites" "united" "united" "uniting"); -- from DictEng -lin united_A = compoundA (mkA "united"); -- from DictEng -lin unitization_N = mkN "unitization" ; -lin unity_N = mkN "unity" "unities"; -- from DictEng -lin univalent_A = mkA "univalent" ; -lin univalve_A = mkA "univalve" ; -lin universal_A = compoundA (mkA "universal"); -- from DictEng -lin universal_N = mkN "universal" ; -lin universalism_N = mkN "universalism" ; -lin universalistic_A = mkA "universalistic" ; -lin universality_N = mkN "universality" ; -- from DictEng -lin universally_Adv = mkAdv "universally" ; -lin universe_N = mkN "universe" "universes"; -- from DictEng -lin university_N = mkN "university" "universities"; -- from DictEng -lin unjointed_A = mkA "unjointed" ; -lin unjust_A = compoundA (mkA "unjust"); -- from DictEng -lin unjustifiable_A = compoundA (mkA "unjustifiable"); -- from DictEng -lin unjustifiably_Adv = mkAdv "unjustifiably" ; -lin unjustified_A = compoundA (mkA "unjustified"); -- from DictEng -lin unjustly_Adv = mkAdv "unjustly" ; -lin unkempt_A = compoundA (mkA "unkempt"); -- from DictEng -lin unkind_A = compoundA (mkA "unkind"); -- from DictEng -lin unkindled_A = mkA "unkindled" ; -lin unkindly_A = mkA "unkindly" ; -lin unkindly_Adv = mkAdv "unkindly" ; -lin unkindness_N = mkN "unkindness" ; -lin unkissed_A = compoundA (mkA "unkissed"); -- from DictEng -lin unknowable_A = compoundA (mkA "unknowable"); -- from DictEng -lin unknowing_A = compoundA (mkA "unknowing"); -- from DictEng -lin unknowingness_N = mkN "unknowingness" ; -lin unknown_A = compoundA (mkA "unknown"); -- from DictEng -lin unknown_N = mkN "unknown" "unknowns"; -- from DictEng -lin unlabeled_A = mkA "unlabeled" ; -lin unlabelled_A = compoundA (mkA "unlabelled"); -- from DictEng -lin unlace_V2 = mkV2 (mkV "unlace") ; -lin unlaced_A = mkA "unlaced" ; -lin unladylike_A = compoundA (mkA "unladylike"); -- from DictEng -lin unlamented_A = compoundA (mkA "unlamented"); -- from DictEng -lin unlatch_V2 = mkV2 (mkV "unlatch") ; -lin unlatched_A = compoundA (mkA "unlatched"); -- from DictEng -lin unlaureled_A = mkA "unlaureled" ; -lin unlawful_A = compoundA (mkA "unlawful"); -- from DictEng -lin unlawfully_Adv = mkAdv "unlawfully" ; -lin unlawfulness_N = mkN "unlawfulness" ; -lin unleaded_A = mkA "unleaded" ; -lin unlearn_V2 = mkV2 (mkV "unlearn" "unlearns" "unlearned" "unlearned" "unlearning"); -- from DictEng -lin unlearned_A = mkA "unlearned" ; -lin unleash_V2 = mkV2 (mkV "unleash" "unleashes" "unleashed" "unleashed" "unleashing"); -- from DictEng -lin unleavened_A = compoundA (mkA "unleavened"); -- from DictEng -lin unless_Prep = mkPrep "unless"; -- from DictEng -lin unlettered_A = compoundA (mkA "unlettered"); -- from DictEng -lin unlicensed_A = compoundA (mkA "unlicensed"); -- from DictEng -lin unlighted_A = compoundA (mkA "unlighted"); -- from DictEng -lin unlikable_A = compoundA (mkA "unlikable"); -- from DictEng -lin unlike_A = compoundA (mkA "unlike"); -- from DictEng -lin unlike_Prep = mkPrep "unlike"; -- from DictEng -lin unlikelihood_N = mkN "unlikelihood" ; -lin unlikely_A = compoundA (mkA "unlikely"); -- from DictEng -lin unlikeness_N = mkN "unlikeness" ; -lin unlimited_A = compoundA (mkA "unlimited"); -- from DictEng -lin unlined_A = compoundA (mkA "unlined"); -- from DictEng -lin unlisted_A = compoundA (mkA "unlisted"); -- from DictEng -lin unlit_A = compoundA (mkA "unlit"); -- from DictEng -lin unliterary_A = compoundA (mkA "unliterary"); -- from DictEng -lin unlivable_A = mkA "unlivable" ; -lin unliveried_A = mkA "unliveried" ; -lin unload_V = mkV "unload" "unloads" "unloaded" "unloaded" "unloading"; -- from DictEng -lin unload_V2 = mkV2 (mkV "unload" "unloads" "unloaded" "unloaded" "unloading"); -- from DictEng -lin unloaded_A = mkA "unloaded" ; -lin unloading_N = mkN "unloading" ; -lin unlobed_A = mkA "unlobed" ; -lin unlocated_A = compoundA (mkA "unlocated"); -- from DictEng -lin unlock_V = mkV "unlock" "unlocks" "unlocked" "unlocked" "unlocking"; -- from DictEng -lin unlock_V2 = mkV2 (mkV "unlock" "unlocks" "unlocked" "unlocked" "unlocking"); -- from DictEng -lin unlooked_for_A = compoundA (mkA "unlooked - for"); -- from DictEng -lin unloose_V2 = mkV2 (mkV "unloose" "unlooses" "unloosed" "unloosed" "unloosing"); -- from DictEng -lin unlovable_A = compoundA (mkA "unlovable"); -- from DictEng -lin unloved_A = compoundA (mkA "unloved"); -- from DictEng -lin unlovely_A = compoundA (mkA "unlovely"); -- from DictEng -lin unloving_A = mkA "unloving" ; -lin unlubricated_A = mkA "unlubricated" ; -lin unlucky_A = compoundA (mkA "unlucky"); -- from DictEng -lin unmade_A = compoundA (mkA "unmade"); -- from DictEng -lin unmake_V2 = mkV2 (mkV "unmake") ; -lin unmalicious_A = mkA "unmalicious" ; -lin unmalleability_N = mkN "unmalleability" ; -lin unmalleable_A = mkA "unmalleable" ; -lin unmalted_A = mkA "unmalted" ; -lin unman_V2 = mkV2 (mkV "unman" "unmans" "unmanned" "unmanned" "unmanning"); -- from DictEng -lin unmanageable_A = compoundA (mkA "unmanageable"); -- from DictEng -lin unmanageably_Adv = mkAdv "unmanageably" ; -lin unmanfully_Adv = mkAdv "unmanfully" ; -lin unmanly_A = compoundA (mkA "unmanly"); -- from DictEng -lin unmanned_A = compoundA (mkA "unmanned"); -- from DictEng -lin unmannered_A = compoundA (mkA "unmannered"); -- from DictEng -lin unmannerly_A = compoundA (mkA "unmannerly"); -- from DictEng -lin unmarked_A = compoundA (mkA "unmarked"); -- from DictEng -lin unmarketable_A = mkA "unmarketable" ; -lin unmarried_A = compoundA (mkA "unmarried"); -- from DictEng -lin unmask_V = mkV "unmask" "unmasks" "unmasked" "unmasked" "unmasking"; -- from DictEng -lin unmask_V2 = mkV2 (mkV "unmask" "unmasks" "unmasked" "unmasked" "unmasking"); -- from DictEng -lin unmatchable_A = compoundA (mkA "unmatchable"); -- from DictEng -lin unmatched_A = compoundA (mkA "unmatched"); -- from DictEng -lin unmated_A = mkA "unmated" ; -lin unmeasured_A = mkA "unmeasured" ; -lin unmechanical_A = mkA "unmechanical" ; -lin unmechanized_A = compoundA (mkA "unmechanized"); -- from DictEng -lin unmedicinal_A = mkA "unmedicinal" ; -lin unmelodious_A = mkA "unmelodious" ; -lin unmelodiously_Adv = mkAdv "unmelodiously" ; -lin unmelted_A = mkA "unmelted" ; -lin unmemorable_A = compoundA (mkA "unmemorable"); -- from DictEng -lin unmemorably_Adv = mkAdv "unmemorably" ; -lin unmentionable_A = compoundA (mkA "unmentionable"); -- from DictEng -lin unmercenary_A = mkA "unmercenary" ; -lin unmerciful_A = compoundA (mkA "unmerciful"); -- from DictEng -lin unmerited_A = compoundA (mkA "unmerited"); -- from DictEng -lin unmeritorious_A = mkA "unmeritorious" ; -lin unmethodical_A = mkA "unmethodical" ; -lin unmilitary_A = mkA "unmilitary" ; -lin unmindful_A = compoundA (mkA "unmindful"); -- from DictEng -lin unmindfully_Adv = mkAdv "unmindfully" ; -lin unmindfulness_N = mkN "unmindfulness" ; -lin unmined_A = mkA "unmined" ; -lin unmingled_A = compoundA (mkA "unmingled"); -- from DictEng -lin unmistakable_A = compoundA (mkA "unmistakable"); -- from DictEng -lin unmistakably_Adv = mkAdv "unmistakably" ; -lin unmitigable_A = mkA "unmitigable" ; -lin unmitigated_A = compoundA (mkA "unmitigated"); -- from DictEng -lin unmixed_A = compoundA (mkA "unmixed"); -- from DictEng -lin unmoderated_A = mkA "unmoderated" ; -lin unmodernized_A = compoundA (mkA "unmodernized"); -- from DictEng -lin unmodifiable_A = mkA "unmodifiable" ; -lin unmodified_A = compoundA (mkA "unmodified"); -- from DictEng -lin unmodulated_A = mkA "unmodulated" ; -lin unmolested_A = compoundA (mkA "unmolested"); -- from DictEng -lin unmotivated_A = mkA "unmotivated" ; -lin unmotorized_A = mkA "unmotorized" ; -lin unmourned_A = compoundA (mkA "unmourned"); -- from DictEng -lin unmovable_A = compoundA (mkA "unmovable"); -- from DictEng -lin unmoved_A = compoundA (mkA "unmoved"); -- from DictEng -lin unmoving_A = compoundA (mkA "unmoving"); -- from DictEng -lin unmown_A = mkA "unmown" ; -lin unmusical_A = compoundA (mkA "unmusical"); -- from DictEng -lin unmusically_Adv = mkAdv "unmusically" ; -lin unmyelinated_A = mkA "unmyelinated" ; -lin unnamed_A = compoundA (mkA "unnamed"); -- from DictEng -lin unnatural_A = compoundA (mkA "unnatural"); -- from DictEng -lin unnaturalized_A = mkA "unnaturalized" ; -lin unnaturally_Adv = mkAdv "unnaturally" ; -lin unnaturalness_N = mkN "unnaturalness" ; -lin unnavigable_A = mkA "unnavigable" ; -lin unnecessarily_Adv = mkAdv "unnecessarily" ; -lin unnecessary_A = compoundA (mkA "unnecessary"); -- from DictEng -lin unneighborliness_N = mkN "unneighborliness" ; -lin unneighborly_A = mkA "unneighborly" ; -lin unnerve_V2 = mkV2 (mkV "unnerve" "unnerves" "unnerved" "unnerved" "unnerving"); -- from DictEng -lin unnerved_A = mkA "unnerved" ; -lin unneurotic_A = mkA "unneurotic" ; -lin unnotched_A = mkA "unnotched" ; -lin unnoticeable_A = compoundA (mkA "unnoticeable"); -- from DictEng -lin unnoticeableness_N = mkN "unnoticeableness" ; -lin unnoticed_A = compoundA (mkA "unnoticed"); -- from DictEng -lin unnourished_A = mkA "unnourished" ; -lin unnumbered_A = compoundA (mkA "unnumbered"); -- from DictEng -lin unobjectionable_A = compoundA (mkA "unobjectionable"); -- from DictEng -lin unobjective_A = mkA "unobjective" ; -lin unobligated_A = mkA "unobligated" ; -lin unobservable_A = mkA "unobservable" ; -lin unobservant_A = compoundA (mkA "unobservant"); -- from DictEng -lin unobserved_A = compoundA (mkA "unobserved"); -- from DictEng -lin unobstructed_A = mkA "unobstructed" ; -lin unobtainable_A = compoundA (mkA "unobtainable"); -- from DictEng -lin unobtrusive_A = compoundA (mkA "unobtrusive"); -- from DictEng -lin unobtrusively_Adv = mkAdv "unobtrusively" ; -lin unobtrusiveness_N = mkN "unobtrusiveness" ; -lin unobvious_A = compoundA (mkA "unobvious"); -- from DictEng -lin unoccupied_A = compoundA (mkA "unoccupied"); -- from DictEng -lin unoffending_A = mkA "unoffending" ; -lin unofficial_A = compoundA (mkA "unofficial"); -- from DictEng -lin unofficially_Adv = mkAdv "unofficially" ; -lin unoiled_A = mkA "unoiled" ; -lin unopen_A = compoundA (mkA "unopen"); -- from DictEng -lin unopened_A = compoundA (mkA "unopened"); -- from DictEng -lin unopposable_A = mkA "unopposable" ; -lin unopposed_A = compoundA (mkA "unopposed"); -- from DictEng -lin unorganized_A = mkA "unorganized" ; -lin unoriented_A = mkA "unoriented" ; -lin unoriginal_A = compoundA (mkA "unoriginal"); -- from DictEng -lin unoriginality_N = mkN "unoriginality" ; -lin unoriginally_Adv = mkAdv "unoriginally" ; -lin unorthodox_A = compoundA (mkA "unorthodox"); -- from DictEng -lin unorthodoxy_N = mkN "unorthodoxy" ; -lin unostentatious_A = mkA "unostentatious" ; -lin unowned_A = mkA "unowned" ; -lin unpack_V = mkV "unpack" "unpacks" "unpacked" "unpacked" "unpacking"; -- from DictEng -lin unpack_V2 = mkV2 (mkV "unpack" "unpacks" "unpacked" "unpacked" "unpacking"); -- from DictEng -lin unpackaged_A = mkA "unpackaged" ; -lin unpaid_A = compoundA (mkA "unpaid"); -- from DictEng -lin unpaintable_A = mkA "unpaintable" ; -lin unpainted_A = compoundA (mkA "unpainted"); -- from DictEng -lin unpalatability_N = mkN "unpalatability" ; -lin unpalatable_A = compoundA (mkA "unpalatable"); -- from DictEng -lin unpalatably_Adv = mkAdv "unpalatably" ; -lin unparallel_A = mkA "unparallel" ; -lin unparalleled_A = compoundA (mkA "unparalleled"); -- from DictEng -lin unpardonable_A = compoundA (mkA "unpardonable"); -- from DictEng -lin unparented_A = mkA "unparented" ; -lin unparliamentary_A = compoundA (mkA "unparliamentary"); -- from DictEng -lin unpartitioned_A = mkA "unpartitioned" ; -lin unpasteurized_A = mkA "unpasteurized" ; -lin unpatented_A = mkA "unpatented" ; -lin unpatriotic_A = compoundA (mkA "unpatriotic"); -- from DictEng -lin unpatriotically_Adv = mkAdv "unpatriotically"; -- from DictEng -lin unpatronized_A = mkA "unpatronized" ; -lin unpaved_A = compoundA (mkA "unpaved"); -- from DictEng -lin unpeaceable_A = mkA "unpeaceable" ; -lin unpeaceful_A = mkA "unpeaceful" ; -lin unpeg_V2 = mkV2 (mkV "unpeg") ; -lin unpeopled_A = mkA "unpeopled" ; -lin unperceived_A = mkA "unperceived" ; -lin unperceptive_A = mkA "unperceptive" ; -lin unperceptiveness_N = mkN "unperceptiveness" ; -lin unperformed_A = mkA "unperformed" ; -lin unpermed_A = mkA "unpermed" ; -lin unpermissive_A = mkA "unpermissive" ; -lin unpermissiveness_N = mkN "unpermissiveness" ; -lin unperplexed_A = mkA "unperplexed" ; -lin unpersuadable_A = mkA "unpersuadable" ; -lin unpersuaded_A = compoundA (mkA "unpersuaded"); -- from DictEng -lin unpersuasive_A = mkA "unpersuasive" ; -lin unpersuasiveness_N = mkN "unpersuasiveness" ; -lin unperturbed_A = compoundA (mkA "unperturbed"); -- from DictEng -lin unpick_V = mkV "unpick" "unpicks" "unpicked" "unpicked" "unpicking"; -- from DictEng -lin unpick_V2 = mkV2 (mkV "unpick" "unpicks" "unpicked" "unpicked" "unpicking"); -- from DictEng -lin unpierced_A = mkA "unpierced" ; -lin unpigmented_A = mkA "unpigmented" ; -lin unpillared_A = mkA "unpillared" ; -lin unpin_V2 = mkV2 (mkV "unpin") ; -lin unplaced_A = compoundA (mkA "unplaced"); -- from DictEng -lin unplanned_A = compoundA (mkA "unplanned"); -- from DictEng -lin unplanted_A = mkA "unplanted" ; -lin unplayable_A = compoundA (mkA "unplayable"); -- from DictEng -lin unplayful_A = mkA "unplayful" ; -lin unpleasant_A = compoundA (mkA "unpleasant"); -- from DictEng -lin unpleasantly_Adv = mkAdv "unpleasantly" ; -lin unpleasantness_N = mkN "unpleasantness" "unpleasantnesses"; -- from DictEng -lin unpleasingness_N = mkN "unpleasingness" ; -lin unplowed_A = mkA "unplowed" ; -lin unplug_V = mkV "unplug" "unplugs" "unplugged" "unplugged" "unplugging"; -- from DictEng -lin unplug_V2 = mkV2 (mkV "unplug" "unplugs" "unplugged" "unplugged" "unplugging"); -- from DictEng -lin unplumbed_A = compoundA (mkA "unplumbed"); -- from DictEng -lin unpointedness_N = mkN "unpointedness" ; -lin unpolished_A = mkA "unpolished" ; -lin unpolluted_A = compoundA (mkA "unpolluted"); -- from DictEng -lin unpompous_A = compoundA (mkA "unpompous"); -- from DictEng -lin unpopular_A = compoundA (mkA "unpopular"); -- from DictEng -lin unpopularity_N = mkN "unpopularity" ; -- from DictEng -lin unportable_A = mkA "unportable" ; -lin unposed_A = mkA "unposed" ; -lin unpotted_A = mkA "unpotted" ; -lin unpowered_A = mkA "unpowered" ; -lin unpracticed_A = mkA "unpracticed" ; -lin unpractised_A = compoundA (mkA "unpractised"); -- from DictEng -lin unprecedented_A = compoundA (mkA "unprecedented"); -- from DictEng -lin unprecedentedly_Adv = mkAdv "unprecedentedly" ; -lin unpredictability_N = mkN "unpredictability" ; -- from DictEng -lin unpredictable_A = compoundA (mkA "unpredictable"); -- from DictEng -lin unpredicted_A = compoundA (mkA "unpredicted"); -- from DictEng -lin unpredictive_A = mkA "unpredictive" ; -lin unprejudiced_A = compoundA (mkA "unprejudiced"); -- from DictEng -lin unpremeditated_A = compoundA (mkA "unpremeditated"); -- from DictEng -lin unprepared_A = compoundA (mkA "unprepared"); -- from DictEng -lin unprepossessing_A = compoundA (mkA "unprepossessing"); -- from DictEng -lin unpresidential_A = mkA "unpresidential" ; -lin unpressed_A = mkA "unpressed" ; -lin unpretentious_A = compoundA (mkA "unpretentious"); -- from DictEng -lin unpretentiously_Adv = mkAdv "unpretentiously" ; -lin unpretentiousness_N = mkN "unpretentiousness" ; -lin unpreventable_A = mkA "unpreventable" ; -lin unpriestly_A = mkA "unpriestly" ; -lin unprincipled_A = compoundA (mkA "unprincipled"); -- from DictEng -lin unprintable_A = compoundA (mkA "unprintable"); -- from DictEng -lin unprocessed_A = mkA "unprocessed" ; -lin unproductive_A = compoundA (mkA "unproductive"); -- from DictEng -lin unproductively_Adv = mkAdv "unproductively" ; -lin unproductiveness_N = mkN "unproductiveness" ; -lin unprofessional_A = compoundA (mkA "unprofessional"); -- from DictEng -lin unprofitable_A = compoundA (mkA "unprofitable"); -- from DictEng -lin unprofitableness_N = mkN "unprofitableness" ; -lin unpromising_A = compoundA (mkA "unpromising"); -- from DictEng -lin unprompted_A = compoundA (mkA "unprompted"); -- from DictEng -lin unpronounceable_A = compoundA (mkA "unpronounceable"); -- from DictEng -lin unprophetic_A = mkA "unprophetic" ; -lin unpropitious_A = compoundA (mkA "unpropitious"); -- from DictEng -lin unprotected_A = compoundA (mkA "unprotected"); -- from DictEng -lin unprotective_A = mkA "unprotective" ; -lin unprovable_A = mkA "unprovable" ; -lin unproved_A = compoundA (mkA "unproved"); -- from DictEng -lin unproven_A = compoundA (mkA "unproven"); -- from DictEng -lin unprovided_A = compoundA (mkA "unprovided"); -- from DictEng -lin unprovided_for_A = compoundA (mkA "unprovided for") ; -lin unprovocative_A = mkA "unprovocative" ; -lin unprovoked_A = compoundA (mkA "unprovoked"); -- from DictEng -lin unpublishable_A = mkA "unpublishable" ; -lin unpublished_A = compoundA (mkA "unpublished"); -- from DictEng -lin unpunctual_A = mkA "unpunctual" ; -lin unpunished_A = compoundA (mkA "unpunished"); -- from DictEng -lin unpurified_A = mkA "unpurified" ; -lin unputdownable_A = compoundA (mkA "unputdownable"); -- from DictEng -lin unqualified_A = compoundA (mkA "unqualified"); -- from DictEng -lin unqualifiedly_Adv = mkAdv "unqualifiedly" ; -lin unquestionable_A = compoundA (mkA "unquestionable"); -- from DictEng -lin unquestionably_Adv = mkAdv "unquestionably" ; -lin unquestioned_A = compoundA (mkA "unquestioned"); -- from DictEng -lin unquestioning_A = compoundA (mkA "unquestioning"); -- from DictEng -lin unquestioningly_Adv = mkAdv "unquestioningly" ; -lin unquiet_A = compoundA (mkA "unquiet"); -- from DictEng -lin unquietly_Adv = mkAdv "unquietly" ; -lin unquotable_A = compoundA (mkA "unquotable"); -- from DictEng -lin unquote_Adv = mkAdv "unquote"; -- from DictEng -lin unratable_A = mkA "unratable" ; -lin unratified_A = mkA "unratified" ; -lin unravel_V = mkV "unravel" "unravels" "unravelled" "unravelled" "unravelling"; -- from DictEng -lin unravel_V2 = mkV2 (mkV "unravel" "unravels" "unravelled" "unravelled" "unravelling"); -- from DictEng -lin unreached_A = compoundA (mkA "unreached"); -- from DictEng -lin unreactive_A = mkA "unreactive" ; -lin unread_A = compoundA (mkA "unread"); -- from DictEng -lin unreadable_A = compoundA (mkA "unreadable"); -- from DictEng -lin unready_A = compoundA (mkA "unready"); -- from DictEng -lin unreal_A = compoundA (mkA "unreal"); -- from DictEng -lin unrealistic_A = compoundA (mkA "unrealistic"); -- from DictEng -lin unrealistically_Adv = mkAdv "unrealistically"; -- from DictEng -lin unreality_N = mkN "unreality" ; -- from DictEng -lin unrealized_A = compoundA (mkA "unrealized"); -- from DictEng -lin unreasonable_A = compoundA (mkA "unreasonable"); -- from DictEng -lin unreasonably_Adv = mkAdv "unreasonably" ; -lin unreasoning_A = compoundA (mkA "unreasoning"); -- from DictEng -lin unreassuring_A = mkA "unreassuring" ; -lin unreceptive_A = compoundA (mkA "unreceptive"); -- from DictEng -lin unreciprocated_A = compoundA (mkA "unreciprocated"); -- from DictEng -lin unrecognizable_A = compoundA (mkA "unrecognizable"); -- from DictEng -lin unrecognizably_Adv = mkAdv "unrecognizably" ; -lin unrecognized_A = compoundA (mkA "unrecognized"); -- from DictEng -lin unreconciled_A = compoundA (mkA "unreconciled"); -- from DictEng -lin unreconstructed_A = mkA "unreconstructed" ; -lin unrecorded_A = compoundA (mkA "unrecorded"); -- from DictEng -lin unrecoverable_A = mkA "unrecoverable" ; -lin unredeemable_A = compoundA (mkA "unredeemable"); -- from DictEng -lin unreduced_A = mkA "unreduced" ; -lin unrefined_A = compoundA (mkA "unrefined"); -- from DictEng -lin unreflected_A = mkA "unreflected" ; -lin unreflective_A = compoundA (mkA "unreflective"); -- from DictEng -lin unreformable_A = mkA "unreformable" ; -lin unreformed_A = mkA "unreformed" ; -lin unrefreshed_A = mkA "unrefreshed" ; -lin unregenerate_A = compoundA (mkA "unregenerate"); -- from DictEng -lin unregistered_A = compoundA (mkA "unregistered"); -- from DictEng -lin unregretful_A = mkA "unregretful" ; -lin unregulated_A = mkA "unregulated" ; -lin unrehearsed_A = compoundA (mkA "unrehearsed"); -- from DictEng -lin unrelated_A = compoundA (mkA "unrelated"); -- from DictEng -lin unrelatedness_N = mkN "unrelatedness" ; -lin unrelaxed_A = compoundA (mkA "unrelaxed"); -- from DictEng -lin unreleased_A = mkA "unreleased" ; -lin unrelenting_A = compoundA (mkA "unrelenting"); -- from DictEng -lin unreliable_A = compoundA (mkA "unreliable"); -- from DictEng -lin unrelieved_A = compoundA (mkA "unrelieved"); -- from DictEng -lin unremarkable_A = compoundA (mkA "unremarkable"); -- from DictEng -lin unremedied_A = mkA "unremedied" ; -lin unremitting_A = compoundA (mkA "unremitting"); -- from DictEng -lin unremunerative_A = mkA "unremunerative" ; -lin unrenewable_A = mkA "unrenewable" ; -lin unrentable_A = mkA "unrentable" ; -lin unrepaired_A = mkA "unrepaired" ; -lin unrepeatable_A = compoundA (mkA "unrepeatable"); -- from DictEng -lin unrepentant_A = compoundA (mkA "unrepentant"); -- from DictEng -lin unreportable_A = mkA "unreportable" ; -lin unreported_A = mkA "unreported" ; -lin unrepresentative_A = compoundA (mkA "unrepresentative"); -- from DictEng -lin unrepressed_A = mkA "unrepressed" ; -lin unreproducible_A = mkA "unreproducible" ; -lin unrequested_A = compoundA (mkA "unrequested"); -- from DictEng -lin unrequited_A = compoundA (mkA "unrequited"); -- from DictEng -lin unresentful_A = mkA "unresentful" ; -lin unreserved_A = compoundA (mkA "unreserved"); -- from DictEng -lin unreservedly_Adv = mkAdv "unreservedly" ; -lin unresisting_A = compoundA (mkA "unresisting"); -- from DictEng -lin unresolvable_A = mkA "unresolvable" ; -lin unresolved_A = compoundA (mkA "unresolved"); -- from DictEng -lin unrespectability_N = mkN "unrespectability" ; -lin unrespectable_A = mkA "unrespectable" ; -lin unresponsive_A = mkA "unresponsive" ; -lin unresponsiveness_N = mkN "unresponsiveness" ; -lin unrest_N = mkN "unrest" ; -- from DictEng -lin unrestrained_A = compoundA (mkA "unrestrained"); -- from DictEng -lin unrestrainedly_Adv = mkAdv "unrestrainedly" ; -lin unrestraint_N = mkN "unrestraint" ; -lin unrestricted_A = compoundA (mkA "unrestricted"); -- from DictEng -lin unrestrictive_A = mkA "unrestrictive" ; -lin unretentive_A = mkA "unretentive" ; -lin unreverberant_A = mkA "unreverberant" ; -lin unrevised_A = compoundA (mkA "unrevised"); -- from DictEng -lin unrevived_A = mkA "unrevived" ; -lin unrewarded_A = compoundA (mkA "unrewarded"); -- from DictEng -lin unrewarding_A = compoundA (mkA "unrewarding"); -- from DictEng -lin unrhetorical_A = mkA "unrhetorical" ; -lin unrhymed_A = mkA "unrhymed" ; -lin unrhythmical_A = compoundA (mkA "unrhythmical"); -- from DictEng -lin unrifled_A = mkA "unrifled" ; -lin unrigged_A = mkA "unrigged" ; -lin unrighteous_A = compoundA (mkA "unrighteous"); -- from DictEng -lin unrighteously_Adv = mkAdv "unrighteously" ; -lin unrighteousness_N = mkN "unrighteousness" ; -lin unripe_A = compoundA (mkA "unripe"); -- from DictEng -lin unripened_A = compoundA (mkA "unripened"); -- from DictEng -lin unrivalled_A = compoundA (mkA "unrivalled"); -- from DictEng -lin unroll_V = mkV "unroll" "unrolls" "unrolled" "unrolled" "unrolling"; -- from DictEng -lin unroll_V2 = mkV2 (mkV "unroll" "unrolls" "unrolled" "unrolled" "unrolling"); -- from DictEng -lin unromantic_A = compoundA (mkA "unromantic"); -- from DictEng -lin unromantically_Adv = mkAdv "unromantically"; -- from DictEng -lin unroofed_A = mkA "unroofed" ; -lin unrouged_A = mkA "unrouged" ; -lin unruffled_A = compoundA (mkA "unruffled"); -- from DictEng -lin unruliness_N = mkN "unruliness" ; -lin unruly_A = mkA "unruly" "unrulier"; -- from DictEng -lin unsaddle_V2 = mkV2 (mkV "unsaddle" "unsaddles" "unsaddled" "unsaddled" "unsaddling"); -- from DictEng -lin unsaddled_A = compoundA (mkA "unsaddled"); -- from DictEng -lin unsafe_A = compoundA (mkA "unsafe"); -- from DictEng -lin unsaid_A = compoundA (mkA "unsaid"); -- from DictEng -lin unsalable_A = mkA "unsalable" ; -lin unsaleable_A = compoundA (mkA "unsaleable"); -- from DictEng -lin unsalted_A = compoundA (mkA "unsalted"); -- from DictEng -lin unsanctioned_A = mkA "unsanctioned" ; -lin unsanitariness_N = mkN "unsanitariness" ; -lin unsanitary_A = mkA "unsanitary" ; -lin unsaponified_A = mkA "unsaponified" ; -lin unsarcastic_A = mkA "unsarcastic" ; -lin unsated_A = mkA "unsated" ; -lin unsatisfactorily_Adv = mkAdv "unsatisfactorily" ; -lin unsatisfactoriness_N = mkN "unsatisfactoriness" ; -lin unsatisfactory_A = compoundA (mkA "unsatisfactory"); -- from DictEng -lin unsatisfiable_A = mkA "unsatisfiable" ; -lin unsatisfied_A = compoundA (mkA "unsatisfied"); -- from DictEng -lin unsatisfying_A = compoundA (mkA "unsatisfying"); -- from DictEng -lin unsaturated_A = compoundA (mkA "unsaturated"); -- from DictEng -lin unsavory_A = mkA "unsavory" ; -lin unsavoury_A = compoundA (mkA "unsavoury"); -- from DictEng -lin unsay_V2 = mkV2 (mkV "un" IrregEng.say_V); -- from DictEng -lin unscalable_A = mkA "unscalable" ; -lin unscathed_A = compoundA (mkA "unscathed"); -- from DictEng -lin unscheduled_A = compoundA (mkA "unscheduled"); -- from DictEng -lin unscholarly_A = mkA "unscholarly" ; -lin unschooled_A = mkA "unschooled" ; -lin unscientific_A = compoundA (mkA "unscientific"); -- from DictEng -lin unscientifically_Adv = mkAdv "unscientifically"; -- from DictEng -lin unscramble_V2 = mkV2 (mkV "unscramble" "unscrambles" "unscrambled" "unscrambled" "unscrambling"); -- from DictEng -lin unscrew_V = mkV "unscrew" "unscrews" "unscrewed" "unscrewed" "unscrewing"; -- from DictEng -lin unscrew_V2 = mkV2 (mkV "unscrew" "unscrews" "unscrewed" "unscrewed" "unscrewing"); -- from DictEng -lin unscripted_A = compoundA (mkA "unscripted"); -- from DictEng -lin unscrupulous_A = compoundA (mkA "unscrupulous"); -- from DictEng -lin unscrupulously_Adv = mkAdv "unscrupulously" ; -lin unscrupulousness_N = mkN "unscrupulousness" ; -lin unseal_V2 = mkV2 (mkV "unseal") ; -lin unsealed_A = compoundA (mkA "unsealed"); -- from DictEng -lin unseamanlike_A = mkA "unseamanlike" ; -lin unseamed_A = mkA "unseamed" ; -lin unseasonable_A = compoundA (mkA "unseasonable"); -- from DictEng -lin unseasonableness_N = mkN "unseasonableness" ; -lin unseasonably_Adv = mkAdv "unseasonably" ; -lin unseasoned_A = compoundA (mkA "unseasoned"); -- from DictEng -lin unseat_V2 = mkV2 (mkV "unseat" "unseats" "unseated" "unseated" "unseating"); -- from DictEng -lin unseaworthy_A = compoundA (mkA "unseaworthy"); -- from DictEng -lin unsecured_A = compoundA (mkA "unsecured"); -- from DictEng -lin unseductive_A = mkA "unseductive" ; -lin unseeded_A = compoundA (mkA "unseeded"); -- from DictEng -lin unseeing_A = compoundA (mkA "unseeing"); -- from DictEng -lin unseemliness_N = mkN "unseemliness" ; -lin unseemly_A = compoundA (mkA "unseemly"); -- from DictEng -lin unseen_A = compoundA (mkA "unseen"); -- from DictEng -lin unseen_N = mkN "unseen" "unseens"; -- from DictEng -lin unseeyn_A = mkA "unseeyn" ; -lin unsegmented_A = mkA "unsegmented" ; -lin unselected_A = compoundA (mkA "unselected"); -- from DictEng -lin unselective_A = compoundA (mkA "unselective"); -- from DictEng -lin unselfconscious_A = compoundA (mkA "unselfconscious"); -- from DictEng -lin unselfconsciously_Adv = mkAdv "unselfconsciously" ; -lin unselfconsciousness_N = mkN "unselfconsciousness" ; -lin unselfish_A = compoundA (mkA "unselfish"); -- from DictEng -lin unselfishly_Adv = mkAdv "unselfishly" ; -lin unselfishness_N = mkN "unselfishness" ; -- from DictEng -lin unsensational_A = mkA "unsensational" ; -lin unsent_A = mkA "unsent" ; -lin unsentimentally_Adv = mkAdv "unsentimentally" ; -lin unserviceable_A = mkA "unserviceable" ; -lin unservile_A = mkA "unservile" ; -lin unsettle_V2 = mkV2 (mkV "unsettle" "unsettles" "unsettled" "unsettled" "unsettling"); -- from DictEng -lin unsettled_A = mkA "unsettled" ; -lin unsex_V2 = mkV2 (mkV "unsex" "unsexes" "unsexed" "unsexed" "unsexing"); -- from DictEng -lin unsexed_A = compoundA (mkA "unsexed"); -- from DictEng -lin unsexy_A = mkA "unsexy" ; -lin unshackle_V2 = mkV2 (mkV "unshackle") ; -lin unshaded_A = mkA "unshaded" ; -lin unshadowed_A = mkA "unshadowed" ; -lin unshakable_A = compoundA (mkA "unshakable"); -- from DictEng -lin unshaped_A = mkA "unshaped" ; -lin unshapely_A = mkA "unshapely" ; -lin unshared_A = mkA "unshared" ; -lin unsharpened_A = mkA "unsharpened" ; -lin unshaved_A = compoundA (mkA "unshaved"); -- from DictEng -lin unshaven_A = compoundA (mkA "unshaven"); -- from DictEng -lin unsheared_A = mkA "unsheared" ; -lin unsheathe_V2 = mkV2 (mkV "unsheathe" "unsheathes" "unsheathed" "unsheathed" "unsheathing"); -- from DictEng -lin unsheathed_A = mkA "unsheathed" ; -lin unshelled_A = mkA "unshelled" ; -lin unshielded_A = compoundA (mkA "unshielded"); -- from DictEng -lin unshockable_A = mkA "unshockable" ; -lin unshod_A = mkA "unshod" ; -lin unshrinkable_A = compoundA (mkA "unshrinkable"); -- from DictEng -lin unshrinking_A = compoundA (mkA "unshrinking"); -- from DictEng -lin unshuttered_A = compoundA (mkA "unshuttered"); -- from DictEng -lin unsighted_A = compoundA (mkA "unsighted"); -- from DictEng -lin unsightliness_N = mkN "unsightliness" ; -- from DictEng -lin unsightly_A = compoundA (mkA "unsightly"); -- from DictEng -lin unsigned_A = compoundA (mkA "unsigned"); -- from DictEng -lin unsilenced_A = compoundA (mkA "unsilenced"); -- from DictEng -lin unsinkable_A = compoundA (mkA "unsinkable"); -- from DictEng -lin unsized_A = mkA "unsized" ; -lin unskilled_A = compoundA (mkA "unskilled"); -- from DictEng -lin unskillfulness_N = mkN "unskillfulness" ; -lin unsleeping_A = mkA "unsleeping" ; -lin unsmiling_A = compoundA (mkA "unsmiling"); -- from DictEng -lin unsmilingly_Adv = mkAdv "unsmilingly" ; -lin unsmoothed_A = mkA "unsmoothed" ; -lin unsnarling_N = mkN "unsnarling" ; -lin unsociability_N = mkN "unsociability" ; -lin unsociable_A = compoundA (mkA "unsociable"); -- from DictEng -lin unsociably_Adv = mkAdv "unsociably" ; -lin unsocial_A = compoundA (mkA "unsocial"); -- from DictEng -lin unsoiled_A = mkA "unsoiled" ; -lin unsold_A = compoundA (mkA "unsold"); -- from DictEng -lin unsoldierly_A = mkA "unsoldierly" ; -lin unsolicited_A = compoundA (mkA "unsolicited"); -- from DictEng -lin unsolvability_N = mkN "unsolvability" ; -lin unsolved_A = compoundA (mkA "unsolved"); -- from DictEng -lin unsophisticated_A = compoundA (mkA "unsophisticated"); -- from DictEng -lin unsorted_A = mkA "unsorted" ; -lin unsound_A = compoundA (mkA "unsound"); -- from DictEng -lin unsoundable_A = mkA "unsoundable" ; -lin unsoundness_N = mkN "unsoundness" ; -lin unsoured_A = mkA "unsoured" ; -lin unspaced_A = mkA "unspaced" ; -lin unsparing_A = compoundA (mkA "unsparing"); -- from DictEng -lin unspeakable_A = compoundA (mkA "unspeakable"); -- from DictEng -lin unspecialized_A = compoundA (mkA "unspecialized"); -- from DictEng -lin unspecific_A = compoundA (mkA "unspecific"); -- from DictEng -lin unspecifically_Adv = mkAdv "unspecifically"; -- from DictEng -lin unspecified_A = compoundA (mkA "unspecified"); -- from DictEng -lin unspectacular_A = compoundA (mkA "unspectacular"); -- from DictEng -lin unspent_A = mkA "unspent" ; -lin unspoiled_A = compoundA (mkA "unspoiled"); -- from DictEng -lin unspoilt_A = compoundA (mkA "unspoilt"); -- from DictEng -lin unspoken_A = compoundA (mkA "unspoken"); -- from DictEng -lin unsporting_A = compoundA (mkA "unsporting"); -- from DictEng -lin unsportingly_Adv = mkAdv "unsportingly" ; -lin unsportsmanlike_A = compoundA (mkA "unsportsmanlike"); -- from DictEng -lin unspotted_A = compoundA (mkA "unspotted"); -- from DictEng -lin unstable_A = compoundA (mkA "unstable"); -- from DictEng -lin unstaged_A = mkA "unstaged" ; -lin unstained_A = mkA "unstained" ; -lin unstaple_V2 = mkV2 (mkV "unstaple") ; -lin unstartling_A = compoundA (mkA "unstartling"); -- from DictEng -lin unstated_A = compoundA (mkA "unstated"); -- from DictEng -lin unstatesmanlike_A = compoundA (mkA "unstatesmanlike"); -- from DictEng -lin unsteadily_Adv = mkAdv "unsteadily" ; -lin unsteadiness_N = mkN "unsteadiness" ; -lin unsteady_A = compoundA (mkA "unsteady"); -- from DictEng -lin unsterilized_A = mkA "unsterilized" ; -lin unstilted_A = mkA "unstilted" ; -lin unstimulating_A = mkA "unstimulating" ; -lin unstintingly_Adv = mkAdv "unstintingly" ; -lin unstirred_A = mkA "unstirred" ; -lin unstitch_V2 = mkV2 (mkV "unstitch") ; -lin unstoppable_A = compoundA (mkA "unstoppable"); -- from DictEng -lin unstoppered_A = mkA "unstoppered" ; -lin unstrained_A = compoundA (mkA "unstrained"); -- from DictEng -lin unstratified_A = mkA "unstratified" ; -lin unstressed_A = compoundA (mkA "unstressed"); -- from DictEng -lin unstructured_A = compoundA (mkA "unstructured"); -- from DictEng -lin unstrung_A = compoundA (mkA "unstrung"); -- from DictEng -lin unstuck_A = compoundA (mkA "unstuck"); -- from DictEng -lin unstudied_A = compoundA (mkA "unstudied"); -- from DictEng -lin unstudious_A = mkA "unstudious" ; -lin unsubdued_A = mkA "unsubdued" ; -lin unsubtle_A = compoundA (mkA "unsubtle"); -- from DictEng -lin unsuccessful_A = compoundA (mkA "unsuccessful"); -- from DictEng -lin unsuccessfully_Adv = mkAdv "unsuccessfully" ; -lin unsugared_A = mkA "unsugared" ; -lin unsuitability_N = mkN "unsuitability" ; -- from DictEng -lin unsuitable_A = compoundA (mkA "unsuitable"); -- from DictEng -lin unsuited_A = compoundA (mkA "unsuited"); -- from DictEng -lin unsullied_A = compoundA (mkA "unsullied"); -- from DictEng -lin unsung_A = compoundA (mkA "unsung"); -- from DictEng -lin unsupervised_A = compoundA (mkA "unsupervised"); -- from DictEng -lin unsupportable_A = mkA "unsupportable" ; -lin unsupported_A = compoundA (mkA "unsupported"); -- from DictEng -lin unsupportive_A = mkA "unsupportive" ; -lin unsuppressed_A = mkA "unsuppressed" ; -lin unsure_A = compoundA (mkA "unsure"); -- from DictEng -lin unsurmountable_A = mkA "unsurmountable" ; -lin unsurpassable_A = mkA "unsurpassable" ; -lin unsurpassed_A = compoundA (mkA "unsurpassed"); -- from DictEng -lin unsurprised_A = mkA "unsurprised" ; -lin unsurprising_A = mkA "unsurprising" ; -lin unsusceptibility_N = mkN "unsusceptibility" ; -lin unsusceptible_A = mkA "unsusceptible" ; -lin unsuspected_A = compoundA (mkA "unsuspected"); -- from DictEng -lin unsuspecting_A = compoundA (mkA "unsuspecting"); -- from DictEng -lin unsuspectingly_Adv = mkAdv "unsuspectingly" ; -lin unsuspicious_A = compoundA (mkA "unsuspicious"); -- from DictEng -lin unswayed_A = compoundA (mkA "unswayed"); -- from DictEng -lin unsweet_A = mkA "unsweet" ; -lin unsweetened_A = compoundA (mkA "unsweetened"); -- from DictEng -lin unswept_A = compoundA (mkA "unswept"); -- from DictEng -lin unswerving_A = compoundA (mkA "unswerving"); -- from DictEng -lin unswervingly_Adv = mkAdv "unswervingly" ; -lin unsworn_A = mkA "unsworn" ; -lin unsyllabic_A = compoundA (mkA "unsyllabic"); -- from DictEng -lin unsyllabled_A = mkA "unsyllabled" ; -lin unsymmetric_A = mkA "unsymmetric" ; -lin unsympathetic_A = compoundA (mkA "unsympathetic"); -- from DictEng -lin unsympathetically_Adv = mkAdv "unsympathetically"; -- from DictEng -lin unsympathizing_A = mkA "unsympathizing" ; -lin unsystematic_A = compoundA (mkA "unsystematic"); -- from DictEng -lin unsystematically_Adv = mkAdv "unsystematically"; -- from DictEng -lin untainted_A = compoundA (mkA "untainted"); -- from DictEng -lin untalented_A = mkA "untalented" ; -lin untamed_A = compoundA (mkA "untamed"); -- from DictEng -lin untangled_A = mkA "untangled" ; -lin untanned_A = mkA "untanned" ; -lin untapped_A = compoundA (mkA "untapped"); -- from DictEng -lin untarnished_A = compoundA (mkA "untarnished"); -- from DictEng -lin untaxed_A = compoundA (mkA "untaxed"); -- from DictEng -lin untempered_A = mkA "untempered" ; -lin untenable_A = compoundA (mkA "untenable"); -- from DictEng -lin untenanted_A = compoundA (mkA "untenanted"); -- from DictEng -lin untended_A = compoundA (mkA "untended"); -- from DictEng -lin untested_A = compoundA (mkA "untested"); -- from DictEng -lin untethered_A = compoundA (mkA "untethered"); -- from DictEng -lin unthawed_A = mkA "unthawed" ; -lin untheatrical_A = mkA "untheatrical" ; -lin unthematic_A = mkA "unthematic" ; -lin unthinkable_A = compoundA (mkA "unthinkable"); -- from DictEng -lin unthinking_A = compoundA (mkA "unthinking"); -- from DictEng -lin unthought_of_A = compoundA (mkA "unthought - of"); -- from DictEng -lin unthoughtfulness_N = mkN "unthoughtfulness" ; -lin untidily_Adv = mkAdv "untidily"; -- from DictEng -lin untidiness_N = mkN "untidiness" ; -- from DictEng -lin untidy_A = mkA "untidy" "untidier"; -- from DictEng -lin untie_V = mkV "untie" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin untie_V2 = mkV2 (mkV "untie" "IRREG" "IRREG" "IRREG" "IRREG"); -- from DictEng -lin untied_A = mkA "untied" ; -lin until_Prep = mkPrep "until"; -- from DictEng -lin untilled_A = mkA "untilled" ; -lin untimbered_A = mkA "untimbered" ; -lin untimely_A = compoundA (mkA "untimely"); -- from DictEng -lin untipped_A = mkA "untipped" ; -lin untired_A = mkA "untired" ; -lin untiring_A = compoundA (mkA "untiring"); -- from DictEng -lin untitled_A = compoundA (mkA "untitled"); -- from DictEng -lin untoasted_A = mkA "untoasted" ; -lin untold_A = compoundA (mkA "untold"); -- from DictEng -lin untouchable_A = compoundA (mkA "untouchable"); -- from DictEng -lin untouchable_N = mkN "untouchable" "untouchables"; -- from DictEng -lin untouched_A = compoundA (mkA "untouched"); -- from DictEng -lin untoward_A = compoundA (mkA "untoward"); -- from DictEng -lin untraceable_A = mkA "untraceable" ; -lin untrained_A = compoundA (mkA "untrained"); -- from DictEng -lin untrammeled_A = mkA "untrammeled" ; -lin untrammelled_A = compoundA (mkA "untrammelled"); -- from DictEng -lin untranslatable_A = compoundA (mkA "untranslatable"); -- from DictEng -lin untraveled_A = mkA "untraveled" ; -lin untraversable_A = mkA "untraversable" ; -lin untraversed_A = mkA "untraversed" ; -lin untreated_A = compoundA (mkA "untreated"); -- from DictEng -lin untried_A = compoundA (mkA "untried"); -- from DictEng -lin untrimmed_A = mkA "untrimmed" ; -lin untroubled_A = compoundA (mkA "untroubled"); -- from DictEng -lin untrue_A = compoundA (mkA "untrue"); -- from DictEng -lin untruly_Adv = mkAdv "untruly"; -- from DictEng -lin untrustworthiness_N = mkN "untrustworthiness" ; -lin untrustworthy_A = compoundA (mkA "untrustworthy"); -- from DictEng -lin untruth_N = mkN "untruth" "untruths"; -- from DictEng -lin untruthful_A = compoundA (mkA "untruthful"); -- from DictEng -lin untruthfulness_N = mkN "untruthfulness" ; -lin untucked_A = compoundA (mkA "untucked"); -- from DictEng -lin untufted_A = mkA "untufted" ; -lin unturned_A = compoundA (mkA "unturned"); -- from DictEng -lin untutored_A = compoundA (mkA "untutored"); -- from DictEng -lin untwisted_A = compoundA (mkA "untwisted"); -- from DictEng -lin untying_N = mkN "untying" ; -lin untypical_A = compoundA (mkA "untypical"); -- from DictEng -lin ununbium_N = mkN "ununbium" ; -lin ununderstood_A = mkA "ununderstood" ; -lin ununhexium_N = mkN "ununhexium" ; -lin ununpentium_N = mkN "ununpentium" ; -lin ununquadium_N = mkN "ununquadium" ; -lin ununtrium_N = mkN "ununtrium" ; -lin unused_A = compoundA (mkA "unused"); -- from DictEng -lin unusual_A = compoundA (mkA "unusual"); -- from DictEng -lin unusually_Adv = mkAdv "unusually" ; -lin unusualness_N = mkN "unusualness" ; -lin unutterable_A = compoundA (mkA "unutterable"); -- from DictEng -lin unvaccinated_A = mkA "unvaccinated" ; -lin unvaried_A = compoundA (mkA "unvaried"); -- from DictEng -lin unvariedness_N = mkN "unvariedness" ; -lin unvarnished_A = compoundA (mkA "unvarnished"); -- from DictEng -lin unvarying_A = compoundA (mkA "unvarying"); -- from DictEng -lin unveil_V = mkV "unveil" "unveils" "unveiled" "unveiled" "unveiling"; -- from DictEng -lin unveil_V2 = mkV2 (mkV "unveil" "unveils" "unveiled" "unveiled" "unveiling"); -- from DictEng -lin unveiled_A = mkA "unveiled" ; -lin unveiling_N = mkN "unveiling" ; -lin unvented_A = mkA "unvented" ; -lin unventilated_A = mkA "unventilated" ; -lin unverified_A = compoundA (mkA "unverified"); -- from DictEng -lin unversed_A = compoundA (mkA "unversed"); -- from DictEng -lin unvigilant_A = compoundA (mkA "unvigilant"); -- from DictEng -lin unvindictive_A = mkA "unvindictive" ; -lin unvitrified_A = mkA "unvitrified" ; -lin unvoiced_A = compoundA (mkA "unvoiced"); -- from DictEng -lin unvulcanized_A = mkA "unvulcanized" ; -lin unwanted_A = compoundA (mkA "unwanted"); -- from DictEng -lin unwarily_Adv = mkAdv "unwarily" ; -lin unwariness_N = mkN "unwariness" ; -lin unwarrantably_Adv = mkAdv "unwarrantably"; -- from DictEng -lin unwarranted_A = compoundA (mkA "unwarranted"); -- from DictEng -lin unwary_A = compoundA (mkA "unwary"); -- from DictEng -lin unwashed_A = compoundA (mkA "unwashed"); -- from DictEng -lin unwavering_A = compoundA (mkA "unwavering"); -- from DictEng -lin unwaxed_A = mkA "unwaxed" ; -lin unweaned_A = compoundA (mkA "unweaned"); -- from DictEng -lin unwearable_A = mkA "unwearable" ; -lin unwearied_A = compoundA (mkA "unwearied"); -- from DictEng -lin unweathered_A = mkA "unweathered" ; -lin unwebbed_A = mkA "unwebbed" ; -lin unwed_A = compoundA (mkA "unwed"); -- from DictEng -lin unwelcome_A = compoundA (mkA "unwelcome"); -- from DictEng -lin unwell_A = compoundA (mkA "unwell"); -- from DictEng -lin unwholesome_A = compoundA (mkA "unwholesome"); -- from DictEng -lin unwholesomeness_N = mkN "unwholesomeness" ; -lin unwieldiness_N = mkN "unwieldiness" ; -- from DictEng -lin unwieldy_A = compoundA (mkA "unwieldy"); -- from DictEng -lin unwilled_A = mkA "unwilled" ; -lin unwilling_A = compoundA (mkA "unwilling"); -- from DictEng -lin unwillingly_Adv = mkAdv "unwillingly" ; -lin unwillingness_N = mkN "unwillingness" ; -- from DictEng -lin unwind_V = mkV "un" IrregEng.wind_V; -- from DictEng -lin unwind_V2 = mkV2 (mkV "un" IrregEng.wind_V); -- from DictEng -lin unwise_A = compoundA (mkA "unwise"); -- from DictEng -lin unwitnessed_A = compoundA (mkA "unwitnessed"); -- from DictEng -lin unwitting_A = compoundA (mkA "unwitting"); -- from DictEng -lin unwittingly_Adv = mkAdv "unwittingly" ; -lin unwomanly_A = mkA "unwomanly" ; -lin unwonted_A = compoundA (mkA "unwonted"); -- from DictEng -lin unwontedly_Adv = mkAdv "unwontedly" ; -lin unwooded_A = mkA "unwooded" ; -lin unworkable_A = compoundA (mkA "unworkable"); -- from DictEng -lin unworkmanlike_A = compoundA (mkA "unworkmanlike"); -- from DictEng -lin unworldly_A = compoundA (mkA "unworldly"); -- from DictEng -lin unworn_A = compoundA (mkA "unworn"); -- from DictEng -lin unworried_A = compoundA (mkA "unworried"); -- from DictEng -lin unworthily_Adv = mkAdv "unworthily" ; -lin unworthiness_N = mkN "unworthiness" ; -- from DictEng -lin unworthy_A = compoundA (mkA "unworthy"); -- from DictEng -lin unwounded_A = mkA "unwounded" ; -lin unwoven_A = mkA "unwoven" ; -lin unwrap_V = mkV "unwrap" "unwraps" "unwrapped" "unwrapped" "unwrapping"; -- from DictEng -lin unwrap_V2 = mkV2 (mkV "unwrap" "unwraps" "unwrapped" "unwrapped" "unwrapping"); -- from DictEng -lin unwrapped_A = mkA "unwrapped" ; -lin unwrinkled_A = mkA "unwrinkled" ; -lin unwritten_A = compoundA (mkA "unwritten"); -- from DictEng -lin unyielding_A = compoundA (mkA "unyielding"); -- from DictEng -lin unzip_V2 = mkV2 (mkV "unzip" "unzips" "unzipped" "unzipped" "unzipping"); -- from DictEng -lin up_A = mkA "up" ; -lin up_Adv = mkAdv "up"; -- from DictEng -lin up_Prep = mkPrep "up"; -- from DictEng -lin up_V = mkV "up" "ups" "upped" "upped" "upping"; -- from DictEng -lin up_V2 = mkV2 (mkV "up" "ups" "upped" "upped" "upping"); -- from DictEng -lin up_bow_N = mkN "up bow" ; -lin up_country_Adv = mkAdv "up country" ; -lin up_tick_N = mkN "up tick" ; -lin up_to_date_A = compoundA (mkA "up - to - date"); -- from DictEng -lin up_to_the_minute_A = compoundA (mkA "up - to - the - minute"); -- from DictEng -lin up_and_coming_A = compoundA (mkA "up - and - coming"); -- from DictEng -lin up_and_down_Adv = mkAdv "up and down" ; -lin up_beat_N = mkN "up - beat" "up - beats"; -- from DictEng -lin up_here_Adv = mkAdv "up here" ; -lin up_in_the_air_A = compoundA (mkA "up in the air") ; -lin up_market_A = compoundA (mkA "up - market"); -- from DictEng -lin up_to_A = compoundA (mkA "up to") ; -lin up_to_date_A = compoundA (mkA "up - to - date"); -- from DictEng -lin up_to_now_Adv = mkAdv "up to now" ; -lin up_to_the_minute_A = compoundA (mkA "up - to - the - minute"); -- from DictEng -lin upbeat_N = mkN "upbeat" ; -lin upbound_A = mkA "upbound" ; -lin upbraid_V2 = mkV2 (mkV "upbraid" "upbraids" "upbraided" "upbraided" "upbraiding"); -- from DictEng -lin upbraider_N = mkN "upbraider" ; -lin upbraiding_N = mkN "upbraiding" "upbraidings"; -- from DictEng -lin upbringing_N = mkN "upbringing" ; -- from DictEng -lin upcast_N = mkN "upcast" ; -lin upcountry_A = compoundA (mkA "upcountry"); -- from DictEng -lin upcountry_Adv = mkAdv "upcountry"; -- from DictEng -lin upcurved_A = mkA "upcurved" ; -lin update_N = mkN "update" ; -lin update_V2 = mkV2 (mkV "update" "updates" "updated" "updated" "updating"); -- from DictEng -lin updating_N = mkN "updating" ; -lin updraft_N = mkN "updraft" ; -lin upended_A = mkA "upended" ; -lin upfield_A = mkA "upfield" ; -lin upfront_A = mkA "upfront" ; -lin upgrade_N = mkN "upgrade" "upgrades"; -- from DictEng -lin upgrade_V2 = mkV2 (mkV "upgrade" "upgrades" "upgraded" "upgraded" "upgrading"); -- from DictEng -lin upheaval_N = mkN "upheaval" "upheavals"; -- from DictEng -lin uphill_A = compoundA (mkA "uphill"); -- from DictEng -lin uphill_Adv = mkAdv "uphill"; -- from DictEng -lin uphill_N = mkN "uphill" ; -lin uphold_V2 = mkV2 (IrregEng.uphold_V); -- from DictEng -lin upholder_N = mkN "upholder" ; -lin upholster_V2 = mkV2 (mkV "upholster" "upholsters" "upholstered" "upholstered" "upholstering"); -- from DictEng -lin upholsterer_N = mkN "upholsterer" "upholsterers"; -- from DictEng -lin upholstery_N = mkN "upholstery" ; -- from DictEng -lin upkeep_N = mkN "upkeep" ; -- from DictEng -lin upland_A = mkA "upland" ; -lin upland_N = mkN "upland" "uplands"; -- from DictEng -lin uplift_N = mkN "uplift" ; -- from DictEng -lin uplift_V2 = mkV2 (mkV "uplift" "uplifts" "uplifted" "uplifted" "uplifting"); -- from DictEng -lin uplifted_A = mkA "uplifted" ; -lin uplifting_N = mkN "uplifting" ; -lin uplink_N = mkN "uplink" ; -lin upmarket_A = mkA "upmarket" ; -lin upmost_A = compoundA (mkA "upmost"); -- from DictEng -lin upon_Prep = mkPrep "upon"; -- from DictEng -lin upper_A = compoundA (mkA "upper"); -- from DictEng -lin upper_N = mkN "upper" "uppers"; -- from DictEng -lin upper_class_A = compoundA (mkA "upper class") ; -lin upper_lower_class_A = compoundA (mkA "upper lower class") ; -lin upper_middle_class_A = compoundA (mkA "upper middle class") ; -lin uppercase_A = mkA "uppercase" ; -lin uppercut_N = mkN "uppercut" "uppercuts"; -- from DictEng -lin uppermost_A = compoundA (mkA "uppermost"); -- from DictEng -lin uppermost_Adv = mkAdv "uppermost"; -- from DictEng -lin uppish_A = compoundA (mkA "uppish"); -- from DictEng -lin uppishness_N = mkN "uppishness" ; -- from DictEng -lin uppity_A = compoundA (mkA "uppity"); -- from DictEng -lin uppityness_N = mkN "uppityness" ; -lin upraised_A = mkA "upraised" ; -lin upright_A = compoundA (mkA "upright"); -- from DictEng -lin upright_N = mkN "upright" "uprights"; -- from DictEng -lin uprightly_Adv = mkAdv "uprightly" ; -lin uprightness_N = mkN "uprightness" ; -- from DictEng -lin uprising_N = mkN "uprising" "uprisings"; -- from DictEng -lin upriver_Adv = mkAdv "upriver" ; -lin uproar_N = mkN "uproar" "uproars"; -- from DictEng -lin uproarious_A = compoundA (mkA "uproarious"); -- from DictEng -lin uproot_V2 = mkV2 (mkV "uproot" "uproots" "uprooted" "uprooted" "uprooting"); -- from DictEng -lin upscale_A = mkA "upscale" ; -lin upset_A = mkA "upset" ; -lin upset_N = mkN "upset" "upsets"; -- from DictEng -lin upset_V = IrregEng.upset_V; -- from DictEng -lin upset_V2 = mkV2 (IrregEng.upset_V); -- from DictEng -lin upsetter_N = mkN "upsetter" ; -lin upshot_N = mkN "upshot" "upshots"; -- from DictEng -lin upside_down_Adv = mkAdv "upside - down"; -- from DictEng -lin upsilon_N = mkN "upsilon" ; -lin upstage_A = compoundA (mkA "upstage"); -- from DictEng -lin upstage_Adv = mkAdv "upstage"; -- from DictEng -lin upstage_N = mkN "upstage" ; -lin upstage_V2 = mkV2 (mkV "upstage" "upstages" "upstaged" "upstaged" "upstaging"); -- from DictEng -lin upstager_N = mkN "upstager" ; -lin upstairs_A = compoundA (mkA "upstairs"); -- from DictEng -lin upstairs_Adv = mkAdv "upstairs"; -- from DictEng -lin upstairs_N = mkN "upstairs" ; -lin upstanding_A = compoundA (mkA "upstanding"); -- from DictEng -lin upstart_A = compoundA (mkA "upstart"); -- from DictEng -lin upstart_N = mkN "upstart" "upstarts"; -- from DictEng -lin upstate_Adv = mkAdv "upstate" ; -lin upstream_A = mkA "upstream" ; -lin upstream_Adv = mkAdv "upstream"; -- from DictEng -lin upstroke_N = mkN "upstroke" ; -lin upsurge_N = mkN "upsurge" "upsurges"; -- from DictEng -lin uptake_N = mkN "uptake" "uptakes"; -- from DictEng -lin uptick_N = mkN "uptick" ; -lin uptight_A = compoundA (mkA "uptight"); -- from DictEng -lin uptime_N = mkN "uptime" ; -lin uptown_A = compoundA (mkA "uptown"); -- from DictEng -lin uptown_Adv = mkAdv "uptown"; -- from DictEng -lin uptown_N = mkN "uptown" ; -lin upturn_N = mkN "upturn" "upturns"; -- from DictEng -lin upturned_A = compoundA (mkA "upturned"); -- from DictEng -lin upward_A = compoundA (mkA "upward"); -- from DictEng -lin upward_Adv = mkAdv "upward"; -- from DictEng -lin upwards_Adv = mkAdv "upwards"; -- from DictEng -lin upwind_A = mkA "upwind" ; -lin upwind_Adv = mkAdv "upwind" ; -lin uracil_N = mkN "uracil" ; -lin uraninite_N = mkN "uraninite" ; -lin uranium_N = mkN "uranium" ; -- from DictEng -lin uranoplasty_N = mkN "uranoplasty" ; -lin uranyl_N = mkN "uranyl" ; -lin urate_N = mkN "urate" ; -lin uratemia_N = mkN "uratemia" ; -lin uraturia_N = mkN "uraturia" ; -lin urban_A = compoundA (mkA "urban"); -- from DictEng -lin urbane_A = compoundA (mkA "urbane"); -- from DictEng -lin urbanely_Adv = mkAdv "urbanely" ; -lin urbanity_N = mkN "urbanity" ; -- from DictEng -lin urbanization_N = mkN "urbanization" ; -- from DictEng -lin urbanize_V2 = mkV2 (mkV "urbanize" "urbanizes" "urbanized" "urbanized" "urbanizing"); -- from DictEng -lin urbanized_A = mkA "urbanized" ; -lin urceolate_A = mkA "urceolate" ; -lin urceole_N = mkN "urceole" ; -lin urchin_N = mkN "urchin" "urchins"; -- from DictEng -lin urdu_A = compoundA (mkA "urdu"); -- from DictEng -lin urdu_N = mkN "urdu" ; -- from DictEng -lin urea_N = mkN "urea" ; -lin urease_N = mkN "urease" ; -lin uremia_N = mkN "uremia" ; -lin ureter_N = mkN "ureter" ; -lin ureteritis_N = mkN "ureteritis" ; -lin ureterocele_N = mkN "ureterocele" ; -lin ureterostenosis_N = mkN "ureterostenosis" ; -lin urethane_N = mkN "urethane" ; -lin urethra_N = mkN "urethra" ; -lin urethral_A = mkA "urethral" ; -lin urethritis_N = mkN "urethritis" ; -lin urethrocele_N = mkN "urethrocele" ; -lin urge_N = mkN "urge" "urges"; -- from DictEng -lin urge_V2 = mkV2 (mkV "urge" "urges" "urged" "urged" "urging"); -- from DictEng -lin urge_V2V = mkV2V (mkV "urge") noPrep to_Prep ; -- from DictEng -lin urge_VS = mkVS (mkV "urge"); -- from DictEng -lin urgency_N = mkN "urgency" ; -- from DictEng -lin urgent_A = compoundA (mkA "urgent"); -- from DictEng -lin urgently_Adv = mkAdv "urgently" ; -lin urging_N = mkN "urging" "urgings"; -- from DictEng -lin urial_N = mkN "urial" ; -lin uric_A = compoundA (mkA "uric"); -- from DictEng -lin uricaciduria_N = mkN "uricaciduria" ; -lin uricosuric_A = mkA "uricosuric" ; -lin urinal_N = mkN "urinal" "urinals"; -- from DictEng -lin urinalysis_N = mkN "urinalysis" ; -lin urinary_A = compoundA (mkA "urinary"); -- from DictEng -lin urinate_V = mkV "urinate" "urinates" "urinated" "urinated" "urinating"; -- from DictEng -lin urine_N = mkN "urine" ; -- from DictEng -lin urn_N = mkN "urn" "urns"; -- from DictEng -lin urn_shaped_A = compoundA (mkA "urn shaped") ; -lin urobilin_N = mkN "urobilin" ; -lin urobilinogen_N = mkN "urobilinogen" ; -lin urocele_N = mkN "urocele" ; -lin urochesia_N = mkN "urochesia" ; -lin urochord_N = mkN "urochord" ; -lin urodele_N = mkN "urodele" ; -lin urodynia_N = mkN "urodynia" ; -lin urogenital_A = mkA "urogenital" ; -lin urolith_N = mkN "urolith" ; -lin urologist_N = mkN "urologist" ; -lin urology_N = mkN "urology" ; -lin uropathy_N = mkN "uropathy" ; -lin uropygium_N = mkN "uropygium" ; -lin ursine_A = mkA "ursine" ; -lin ursinia_N = mkN "ursinia" ; -lin urtication_N = mkN "urtication" ; -lin uruguayan_A = compoundA (mkA "uruguayan"); -- from DictEng -lin uruguayan_N = mkN "uruguayan" "uruguayans"; -- from DictEng -lin usable_A = compoundA (mkA "usable"); -- from DictEng -lin usaf_N = mkN "usaf" ; -- from DictEng -lin usage_N = mkN "usage" "usages"; -- from DictEng -lin usance_N = mkN "usance" ; -lin use_N = mkN "use" "uses"; -- from DictEng -lin use_V = mkV "use"; -- from DictEng -lin use_V2 = mkV2 (mkV "use" "uses" "used" "used" "using"); -- from DictEng -lin use_VV = mkVV (mkV "use"); -- from DictEng -lin useable_A = mkA "useable" ; -lin used_A = compoundA (mkA "used"); -- from DictEng -lin used_car_N = mkN "used car" ; -lin used_to_A = compoundA (mkA "used to") ; -lin useful_A = compoundA (mkA "useful"); -- from DictEng -lin usefully_Adv = mkAdv "usefully" ; -lin usefulness_N = mkN "usefulness" ; -- from DictEng -lin useless_A = compoundA (mkA "useless"); -- from DictEng -lin uselessly_Adv = mkAdv "uselessly" ; -lin uselessness_N = mkN "uselessness" ; -- from DictEng -lin user_N = mkN "user" "users"; -- from DictEng -lin user_friendly_A = compoundA (mkA "user friendly") ; -lin usher_N = mkN "usher" "ushers"; -- from DictEng -lin usher_V2 = mkV2 (mkV "usher" "ushers" "ushered" "ushered" "ushering"); -- from DictEng -lin usherette_N = mkN "usherette" "usherettes"; -- from DictEng -lin usn_N = mkN "usn" ; -- from DictEng -lin uss_N = mkN "uss" ; -- from DictEng -lin ussr_N = mkN "ussr" ; -- from DictEng -lin usual_A = compoundA (mkA "usual"); -- from DictEng -lin usualness_N = mkN "usualness" ; -lin usufruct_N = mkN "usufruct" ; -lin usufructuary_A = mkA "usufructuary" ; -lin usufructuary_N = mkN "usufructuary" ; -lin usurer_N = mkN "usurer" "usurers"; -- from DictEng -lin usurious_A = compoundA (mkA "usurious"); -- from DictEng -lin usurp_V2 = mkV2 (mkV "usurp" "usurps" "usurped" "usurped" "usurping"); -- from DictEng -lin usurpation_N = mkN "usurpation" "usurpations"; -- from DictEng -lin usurper_N = mkN "usurper" "usurpers"; -- from DictEng -lin usury_N = mkN "usury" ; -- from DictEng -lin utahraptor_N = mkN "utahraptor" ; -lin utensil_N = mkN "utensil" "utensils"; -- from DictEng -lin uterine_A = compoundA (mkA "uterine"); -- from DictEng -lin uterus_N = mkN "uterus" "uteruses"; -- from DictEng -lin utilitarian_A = compoundA (mkA "utilitarian"); -- from DictEng -lin utilitarian_N = mkN "utilitarian" "utilitarians"; -- from DictEng -lin utilitarianism_N = mkN "utilitarianism" ; -- from DictEng -lin utility_A = mkA "utility" ; -lin utility_N = mkN "utility" "utilities"; -- from DictEng -lin utilizable_A = compoundA (mkA "utilizable"); -- from DictEng -lin utilization_N = mkN "utilization" ; -- from DictEng -lin utilize_V2 = mkV2 (mkV "utilize" "utilizes" "utilized" "utilized" "utilizing"); -- from DictEng -lin utilized_A = mkA "utilized" ; -lin utilizer_N = mkN "utilizer" ; -lin utmost_A = compoundA (mkA "utmost"); -- from DictEng -lin utmost_N = mkN "utmost" "utmosts"; -- from DictEng -lin utopia_N = mkN "utopia" "utopias"; -- from DictEng -lin utopian_A = compoundA (mkA "utopian"); -- from DictEng -lin utricle_N = mkN "utricle" ; -lin utter_A = compoundA (mkA "utter"); -- from DictEng -lin utter_V2 = mkV2 (mkV "utter" "utters" "uttered" "uttered" "uttering"); -- from DictEng -lin utterance_N = mkN "utterance" "utterances"; -- from DictEng -lin utterer_N = mkN "utterer" ; -lin uttermost_A = compoundA (mkA "uttermost"); -- from DictEng -lin uttermost_N = mkN "uttermost" "uttermosts"; -- from DictEng -lin uvea_N = mkN "uvea" ; -lin uveal_A = mkA "uveal" ; -lin uveitis_N = mkN "uveitis" ; -lin uvula_N = mkN "uvula" "uvulas"; -- from DictEng -lin uvular_A = compoundA (mkA "uvular"); -- from DictEng -lin uvulitis_N = mkN "uvulitis" ; -lin uxor_N = mkN "uxor" ; -lin uxoricide_N = mkN "uxoricide" ; -lin uxorious_A = compoundA (mkA "uxorious"); -- from DictEng -lin uxoriously_Adv = mkAdv "uxoriously" ; -lin uxoriousness_N = mkN "uxoriousness" ; -- from DictEng -lin v_shaped_A = compoundA (mkA "v shaped") ; -lin v_and_a_N = mkN "v and a" ; -- from DictEng -lin vac_N = mkN "vac" "vacs"; -- from DictEng -lin vacancy_N = mkN "vacancy" "vacancies"; -- from DictEng -lin vacant_A = compoundA (mkA "vacant"); -- from DictEng -lin vacantly_Adv = mkAdv "vacantly" ; -lin vacate_V = mkV "vacate" ; -lin vacate_V2 = mkV2 (mkV "vacate" "vacates" "vacated" "vacated" "vacating"); -- from DictEng -lin vacation_N = mkN "vacation" "vacations"; -- from DictEng -lin vacation_V = mkV "vacation" "vacations" "vacationed" "vacationed" "vacationing"; -- from DictEng -lin vacationer_N = mkN "vacationer" ; -lin vacationing_N = mkN "vacationing" ; -lin vacationist_N = mkN "vacationist" "vacationists"; -- from DictEng -lin vaccinate_V2 = mkV2 (mkV "vaccinate" "vaccinates" "vaccinated" "vaccinated" "vaccinating"); -- from DictEng -lin vaccination_N = mkN "vaccination" "vaccinations"; -- from DictEng -lin vaccine_N = mkN "vaccine" "vaccines"; -- from DictEng -lin vaccinee_N = mkN "vaccinee" ; -lin vaccinia_N = mkN "vaccinia" ; -lin vacillant_A = mkA "vacillant" ; -lin vacillate_V = mkV "vacillate" "vacillates" "vacillated" "vacillated" "vacillating"; -- from DictEng -lin vacillation_N = mkN "vacillation" "vacillations"; -- from DictEng -lin vacuity_N = mkN "vacuity" "vacuities"; -- from DictEng -lin vacuolate_A = mkA "vacuolate" ; -lin vacuole_N = mkN "vacuole" ; -lin vacuolization_N = mkN "vacuolization" ; -lin vacuous_A = compoundA (mkA "vacuous"); -- from DictEng -lin vacuously_Adv = mkAdv "vacuously" ; -lin vacuousness_N = mkN "vacuousness" ; -lin vacuum_N = mkN "vacuum" "vacuums"; -- from DictEng -lin vacuum_V2 = mkV2 (mkV "vacuum"); -- from DictEng -lin vade_mecum_N = mkN "vade - mecum" "vade - mecums"; -- from DictEng -lin vagabond_A = compoundA (mkA "vagabond"); -- from DictEng -lin vagabond_N = mkN "vagabond" "vagabonds"; -- from DictEng -lin vagal_A = mkA "vagal" ; -lin vagary_N = mkN "vagary" "vagaries"; -- from DictEng -lin vagile_A = mkA "vagile" ; -lin vagina_N = mkN "vagina" "vaginas"; -- from DictEng -lin vaginal_A = compoundA (mkA "vaginal"); -- from DictEng -lin vaginismus_N = mkN "vaginismus" ; -lin vaginitis_N = mkN "vaginitis" ; -lin vagrancy_N = mkN "vagrancy" ; -- from DictEng -lin vagrant_A = compoundA (mkA "vagrant"); -- from DictEng -lin vagrant_N = mkN "vagrant" "vagrants"; -- from DictEng -lin vague_A = mkA "vague" "vaguer"; -- from DictEng -lin vaguely_Adv = mkAdv "vaguely" ; -lin vagueness_N = mkN "vagueness" ; -- from DictEng -lin vagus_N = mkN "vagus" ; -lin vain_A = mkA "vain" "vainer"; -- from DictEng -lin vainglorious_A = compoundA (mkA "vainglorious"); -- from DictEng -lin vainglory_N = mkN "vainglory" ; -- from DictEng -lin vainly_Adv = mkAdv "vainly" ; -lin vaisya_N = mkN "vaisya" ; -lin valance_N = mkN "valance" "valances"; -- from DictEng -lin valdecoxib_N = mkN "valdecoxib" ; -lin vale_N = mkN "vale" "vales"; -- from DictEng -lin valediction_N = mkN "valediction" "valedictions"; -- from DictEng -lin valedictorian_N = mkN "valedictorian" ; -lin valedictory_A = compoundA (mkA "valedictory"); -- from DictEng -lin valence_N = mkN "valence" "valences"; -- from DictEng -lin valency_N = mkN "valency" "valencies"; -- from DictEng -lin valent_A = mkA "valent" ; -lin valentine_N = mkN "valentine" "valentines"; -- from DictEng -lin valerian_N = mkN "valerian" ; -- from DictEng -lin valet_N = mkN "valet" "valets"; -- from DictEng -lin valet_V2 = mkV2 (mkV "valet" "valets" "valeted" "valeted" "valeting"); -- from DictEng -lin valetudinarian_A = compoundA (mkA "valetudinarian"); -- from DictEng -lin valetudinarian_N = mkN "valetudinarian" "valetudinarians"; -- from DictEng -lin valgus_N = mkN "valgus" ; -lin valiant_A = compoundA (mkA "valiant"); -- from DictEng -lin valiantly_Adv = mkAdv "valiantly" ; -lin valid_A = compoundA (mkA "valid"); -- from DictEng -lin validate_V2 = mkV2 (mkV "validate" "validates" "validated" "validated" "validating"); -- from DictEng -lin validated_A = mkA "validated" ; -lin validation_N = mkN "validation" ; -lin validity_N = mkN "validity" ; -- from DictEng -lin validly_Adv = mkAdv "validly" ; -lin valine_N = mkN "valine" ; -lin valise_N = mkN "valise" "valises"; -- from DictEng -lin valley_N = mkN "valley" "valleys"; -- from DictEng -lin valorous_A = compoundA (mkA "valorous"); -- from DictEng -lin valour_N = mkN "valour" ; -- from DictEng -lin valsartan_N = mkN "valsartan" ; -lin valuable_A = compoundA (mkA "valuable"); -- from DictEng -lin valuable_N = mkN "valuable" "valuables"; -- from DictEng -lin valuation_N = mkN "valuation" "valuations"; -- from DictEng -lin value_N = mkN "value" "values"; -- from DictEng -lin value_V = mkV "value"; -- from DictEng -lin value_V2 = mkV2 (mkV "value" "values" "valued" "valued" "valuing"); -- from DictEng -lin value_added_A = compoundA (mkA "value - added"); -- from DictEng -lin valued_A = mkA "valued" ; -lin valueless_A = compoundA (mkA "valueless"); -- from DictEng -lin valuelessness_N = mkN "valuelessness" ; -lin valuer_N = mkN "valuer" "valuers"; -- from DictEng -lin values_N = mkN "values" ; -lin valve_N = mkN "valve" "valves"; -- from DictEng -lin valved_A = mkA "valved" ; -lin valvotomy_N = mkN "valvotomy" ; -lin valvular_A = compoundA (mkA "valvular"); -- from DictEng -lin valvule_N = mkN "valvule" ; -lin valvulitis_N = mkN "valvulitis" ; -lin vambrace_N = mkN "vambrace" ; -lin vamoose_V = mkV "vamoose" "vamooses" "vamoosed" "vamoosed" "vamoosing"; -- from DictEng -lin vamp_N = mkN "vamp" "vamps"; -- from DictEng -lin vamp_V = mkV "vamp" "vamps" "vamped" "vamped" "vamping"; -- from DictEng -lin vamp_V2 = mkV2 (mkV "vamp" "vamps" "vamped" "vamped" "vamping"); -- from DictEng -lin vampire_N = mkN "vampire" "vampires"; -- from DictEng -lin vampirism_N = mkN "vampirism" ; -lin van_N = mkN "van" "vans"; -- from DictEng -lin van_gogh_PN = mkPN "van Gogh" ; -lin van_de_velde_PN = mkPN "van de Velde" ; -lin van_der_waal's_forces_PN = mkPN "van der Waal's forces" ; -lin van_der_waals_PN = mkPN "van der Waals" ; -lin vanadate_N = mkN "vanadate" ; -lin vanadinite_N = mkN "vanadinite" ; -lin vanadium_N = mkN "vanadium" ; -lin vancomycin_N = mkN "vancomycin" ; -lin vanda_N = mkN "vanda" ; -lin vandal_N = mkN "vandal" "vandals"; -- from DictEng -lin vandalism_N = mkN "vandalism" ; -- from DictEng -lin vane_N = mkN "vane" "vanes"; -- from DictEng -lin vanguard_N = mkN "vanguard" "vanguards"; -- from DictEng -lin vanilla_A = mkA "vanilla" ; -lin vanilla_N = mkN "vanilla" "vanillas"; -- from DictEng -lin vanilla_scented_A = compoundA (mkA "vanilla scented") ; -lin vanillin_N = mkN "vanillin" ; -lin vanish_V = mkV "vanish" "vanishes" "vanished" "vanished" "vanishing"; -- from DictEng -lin vanished_A = mkA "vanished" ; -lin vanisher_N = mkN "vanisher" ; -lin vanishing_N = mkN "vanishing" ; -lin vanishingly_Adv = mkAdv "vanishingly" ; -lin vanity_N = mkN "vanity" "vanities"; -- from DictEng -lin vanquish_V2 = mkV2 (mkV "vanquish" "vanquishes" "vanquished" "vanquished" "vanquishing"); -- from DictEng -lin vantage_N = mkN "vantage" "vantages"; -- from DictEng -lin vantage_point_N = mkN "vantage - point" "vantage - points"; -- from DictEng -lin vapid_A = compoundA (mkA "vapid"); -- from DictEng -lin vapidity_N = mkN "vapidity" ; -- from DictEng -lin vapidly_Adv = mkAdv "vapidly" ; -lin vapidness_N = mkN "vapidness" ; -- from DictEng -lin vapor_N = mkN "vapor" ; -lin vaporific_A = mkA "vaporific" ; -lin vaporization_N = mkN "vaporization" "vaporizations"; -- from DictEng -lin vaporize_V = mkV "vaporize" "vaporizes" "vaporized" "vaporized" "vaporizing"; -- from DictEng -lin vaporize_V2 = mkV2 (mkV "vaporize" "vaporizes" "vaporized" "vaporized" "vaporizing"); -- from DictEng -lin vaporizer_N = mkN "vaporizer" ; -lin vaporous_A = compoundA (mkA "vaporous"); -- from DictEng -lin vapour_N = mkN "vapour" "vapours"; -- from DictEng -lin vapour_bath_N = mkN "vapour - bath" "vapour - baths"; -- from DictEng -lin vaquero_N = mkN "vaquero" ; -lin vaquita_N = mkN "vaquita" ; -lin vara_N = mkN "vara" ; -lin vardenafil_N = mkN "vardenafil" ; -lin variability_N = mkN "variability" ; -- from DictEng -lin variable_A = compoundA (mkA "variable"); -- from DictEng -lin variable_N = mkN "variable" "variables"; -- from DictEng -lin variableness_N = mkN "variableness" ; -- from DictEng -lin variably_Adv = mkAdv "variably" ; -lin variance_N = mkN "variance" "variances"; -- from DictEng -lin variant_A = compoundA (mkA "variant"); -- from DictEng -lin variant_N = mkN "variant" "variants"; -- from DictEng -lin variation_N = mkN "variation" "variations"; -- from DictEng -lin varicelliform_A = mkA "varicelliform" ; -lin varicocele_N = mkN "varicocele" ; -lin varicolored_A = mkA "varicolored" ; -lin varicoloured_A = compoundA (mkA "varicoloured"); -- from DictEng -lin varicose_A = compoundA (mkA "varicose"); -- from DictEng -lin varicosis_N = mkN "varicosis" ; -lin varicosity_N = mkN "varicosity" ; -lin varied_A = compoundA (mkA "varied"); -- from DictEng -lin varied_lorikeet_PN = mkPN "varied Lorikeet" ; -lin variedness_N = mkN "variedness" ; -lin variegated_A = compoundA (mkA "variegated"); -- from DictEng -lin variegation_N = mkN "variegation" "variegations"; -- from DictEng -lin varietal_N = mkN "varietal" ; -lin variety_N = mkN "variety" "varieties"; -- from DictEng -lin variform_A = compoundA (mkA "variform"); -- from DictEng -lin variolar_A = mkA "variolar" ; -lin variolation_N = mkN "variolation" ; -lin variometer_N = mkN "variometer" ; -lin variorum_A = compoundA (mkA "variorum"); -- from DictEng -lin variorum_N = mkN "variorum" ; -lin various_A = compoundA (mkA "various"); -- from DictEng -lin variously_Adv = mkAdv "variously" ; -lin varix_N = mkN "varix" ; -lin varlet_N = mkN "varlet" "varlets"; -- from DictEng -lin varmint_N = mkN "varmint" ; -lin varna_N = mkN "varna" ; -lin varnish_N = mkN "varnish" "varnishes"; -- from DictEng -lin varnish_V2 = mkV2 (mkV "varnish" "varnishes" "varnished" "varnished" "varnishing"); -- from DictEng -lin varnisher_N = mkN "varnisher" ; -lin varsity_N = mkN "varsity" "varsities"; -- from DictEng -lin varus_N = mkN "varus" ; -lin vary_V = mkV "vary" "varies" "varied" "varied" "varying"; -- from DictEng -lin vary_V2 = mkV2 (mkV "vary" "varies" "varied" "varied" "varying"); -- from DictEng -lin varying_A = mkA "varying" ; -lin vascular_A = compoundA (mkA "vascular"); -- from DictEng -lin vascularity_N = mkN "vascularity" ; -lin vascularization_N = mkN "vascularization" ; -lin vasculitis_N = mkN "vasculitis" ; -lin vase_N = mkN "vase" "vases"; -- from DictEng -lin vase_shaped_A = compoundA (mkA "vase shaped") ; -lin vasectomy_N = mkN "vasectomy" "vasectomies"; -- from DictEng -lin vaseline_N = mkN "vaseline" ; -- from DictEng -lin vasoconstriction_N = mkN "vasoconstriction" ; -lin vasoconstrictor_N = mkN "vasoconstrictor" ; -lin vasodilation_N = mkN "vasodilation" ; -lin vasodilator_N = mkN "vasodilator" ; -lin vasomotor_A = mkA "vasomotor" ; -lin vasopressin_N = mkN "vasopressin" ; -lin vasopressor_N = mkN "vasopressor" ; -lin vasotomy_N = mkN "vasotomy" ; -lin vasovasostomy_N = mkN "vasovasostomy" ; -lin vasovesiculitis_N = mkN "vasovesiculitis" ; -lin vassal_N = mkN "vassal" "vassals"; -- from DictEng -lin vassalage_N = mkN "vassalage" ; -- from DictEng -lin vast_A = compoundA (mkA "vast"); -- from DictEng -lin vastly_Adv = mkAdv "vastly" ; -lin vastness_N = mkN "vastness" ; -- from DictEng -lin vat_N = mkN "vat" ; -- from DictEng -lin vatican_N = mkN "vatican" "vaticans"; -- from DictEng -lin vaudeville_N = mkN "vaudeville" ; -- from DictEng -lin vaudevillian_N = mkN "vaudevillian" ; -lin vault_N = mkN "vault" "vaults"; -- from DictEng -lin vault_V = mkV "vault" "vaults" "vaulted" "vaulted" "vaulting"; -- from DictEng -lin vault_V2 = mkV2 (mkV "vault" "vaults" "vaulted" "vaulted" "vaulting"); -- from DictEng -lin vaulted_A = compoundA (mkA "vaulted"); -- from DictEng -lin vaulter_N = mkN "vaulter" "vaulters"; -- from DictEng -lin vaulting_N = mkN "vaulting" ; -lin vaulting_horse_N = mkN "vaulting - horse" "vaulting - horses"; -- from DictEng -lin vaunt_N = mkN "vaunt" "vaunts"; -- from DictEng -lin vaunt_V = mkV "vaunt" "vaunts" "vaunted" "vaunted" "vaunting"; -- from DictEng -lin vaunt_V2 = mkV2 (mkV "vaunt" "vaunts" "vaunted" "vaunted" "vaunting"); -- from DictEng -lin vaunter_N = mkN "vaunter" "vaunters"; -- from DictEng -lin vauntingly_Adv = mkAdv "vauntingly"; -- from DictEng -lin vc_N = mkN "vc" ; -- from DictEng -lin vd_N = mkN "vd" ; -- from DictEng -lin veal_N = mkN "veal" ; -- from DictEng -lin vector_N = mkN "vector" "vectors"; -- from DictEng -lin vedalia_N = mkN "vedalia" ; -lin veer_V = mkV "veer" "veers" "veered" "veered" "veering"; -- from DictEng -lin veery_N = mkN "veery" ; -lin vegan_N = mkN "vegan" ; -lin vegetable_A = compoundA (mkA "vegetable"); -- from DictEng -lin vegetable_N = mkN "vegetable" "vegetables"; -- from DictEng -lin vegetal_A = mkA "vegetal" ; -lin vegetarian_N = mkN "vegetarian" "vegetarians"; -- from DictEng -lin vegetarianism_N = mkN "vegetarianism" ; -lin vegetate_V = mkV "vegetate" "vegetates" "vegetated" "vegetated" "vegetating"; -- from DictEng -lin vegetation_N = mkN "vegetation" ; -- from DictEng -lin vegetative_A = mkA "vegetative" ; -lin vehemence_N = mkN "vehemence" ; -- from DictEng -lin vehement_A = compoundA (mkA "vehement"); -- from DictEng -lin vehemently_Adv = mkAdv "vehemently" ; -lin vehicle_N = mkN "vehicle" "vehicles"; -- from DictEng -lin vehicular_A = compoundA (mkA "vehicular"); -- from DictEng -lin veil_N = mkN "veil" "veils"; -- from DictEng -lin veil_V2 = mkV2 (mkV "veil" "veils" "veiled" "veiled" "veiling"); -- from DictEng -lin veiled_A = mkA "veiled" ; -lin veiling_N = mkN "veiling" ; -- from DictEng -lin vein_N = mkN "vein" "veins"; -- from DictEng -lin vein_V2 = mkV2 (mkV "vein") ; -lin veinal_A = mkA "veinal" ; -lin veined_A = compoundA (mkA "veined"); -- from DictEng -lin velar_A = mkA "velar" ; -lin velar_N = mkN "velar" ; -lin veld_N = mkN "veld" ; -- from DictEng -lin velleity_N = mkN "velleity" ; -lin vellum_N = mkN "vellum" ; -- from DictEng -lin velocipede_N = mkN "velocipede" "velocipedes"; -- from DictEng -lin velociraptor_N = mkN "velociraptor" ; -lin velocity_N = mkN "velocity" "velocities"; -- from DictEng -lin velodrome_N = mkN "velodrome" ; -lin velour_N = mkN "velour" ; -- from DictEng -lin veloute_N = mkN "veloute" ; -lin velvet_A = mkA "velvet" ; -lin velvet_N = mkN "velvet" ; -- from DictEng -lin velveteen_N = mkN "velveteen" ; -- from DictEng -lin velvetleaf_N = mkN "velvetleaf" ; -lin velvety_A = compoundA (mkA "velvety"); -- from DictEng -lin velvety_furred_A = compoundA (mkA "velvety furred") ; -lin velvety_plumaged_A = compoundA (mkA "velvety plumaged") ; -lin velvety_skinned_A = compoundA (mkA "velvety skinned") ; -lin venal_A = compoundA (mkA "venal"); -- from DictEng -lin venality_N = mkN "venality" ; -- from DictEng -lin venation_N = mkN "venation" ; -lin vend_V2 = mkV2 (mkV "vend" "vends" "vended" "vended" "vending"); -- from DictEng -lin vendee_N = mkN "vendee" "vendees"; -- from DictEng -lin vender_N = mkN "vender" "venders"; -- from DictEng -lin vendetta_N = mkN "vendetta" "vendettas"; -- from DictEng -lin vending_N = mkN "vending" ; -lin vendor_N = mkN "vendor" "vendors"; -- from DictEng -lin veneer_N = mkN "veneer" "veneers"; -- from DictEng -lin veneer_V2 = mkV2 (mkV "veneer" "veneers" "veneered" "veneered" "veneering"); -- from DictEng -lin veneering_N = mkN "veneering" ; -lin venerability_N = mkN "venerability" ; -lin venerable_A = compoundA (mkA "venerable"); -- from DictEng -lin venerate_V2 = mkV2 (mkV "venerate" "venerates" "venerated" "venerated" "venerating"); -- from DictEng -lin veneration_N = mkN "veneration" "venerations"; -- from DictEng -lin venerator_N = mkN "venerator" ; -lin venereal_A = compoundA (mkA "venereal"); -- from DictEng -lin venesection_N = mkN "venesection" ; -lin venetian_A = compoundA (mkA "venetian"); -- from DictEng -lin venezuelan_A = compoundA (mkA "venezuelan"); -- from DictEng -lin venezuelan_N = mkN "venezuelan" "venezuelans"; -- from DictEng -lin vengeance_N = mkN "vengeance" ; -- from DictEng -lin vengeful_A = compoundA (mkA "vengeful"); -- from DictEng -lin venial_A = compoundA (mkA "venial"); -- from DictEng -lin venipuncture_N = mkN "venipuncture" ; -lin venison_N = mkN "venison" ; -- from DictEng -lin venogram_N = mkN "venogram" ; -lin venography_N = mkN "venography" ; -lin venom_N = mkN "venom" ; -- from DictEng -lin venomed_A = compoundA (mkA "venomed"); -- from DictEng -lin venomous_A = compoundA (mkA "venomous"); -- from DictEng -lin venous_A = compoundA (mkA "venous"); -- from DictEng -lin vent_N = mkN "vent" "vents"; -- from DictEng -lin vent_V2 = mkV2 (mkV "vent" "vents" "vented" "vented" "venting"); -- from DictEng -lin vent_hole_N = mkN "vent - hole" "vent - holes"; -- from DictEng -lin vented_A = mkA "vented" ; -lin venter_N = mkN "venter" ; -lin ventilate_V2 = mkV2 (mkV "ventilate" "ventilates" "ventilated" "ventilated" "ventilating"); -- from DictEng -lin ventilated_A = mkA "ventilated" ; -lin ventilation_N = mkN "ventilation" ; -- from DictEng -lin ventilator_N = mkN "ventilator" "ventilators"; -- from DictEng -lin ventilatory_A = mkA "ventilatory" ; -lin ventral_A = compoundA (mkA "ventral"); -- from DictEng -lin ventrally_Adv = mkAdv "ventrally" ; -lin ventricle_N = mkN "ventricle" "ventricles"; -- from DictEng -lin ventricose_A = mkA "ventricose" ; -lin ventricular_A = compoundA (mkA "ventricular"); -- from DictEng -lin ventriloquism_N = mkN "ventriloquism" ; -- from DictEng -lin ventriloquist_N = mkN "ventriloquist" "ventriloquists"; -- from DictEng -lin venture_N = mkN "venture" "ventures"; -- from DictEng -lin venture_V = mkV "venture" "ventures" "ventured" "ventured" "venturing"; -- from DictEng -lin venture_V2 = mkV2 (mkV "venture" "ventures" "ventured" "ventured" "venturing"); -- from DictEng -lin venture_VS = mkVS (mkV "venture" "ventures" "ventured" "ventured" "venturing"); -- from DictEng -lin venturer_N = mkN "venturer" ; -lin venturesome_A = compoundA (mkA "venturesome"); -- from DictEng -lin venturi_N = mkN "venturi" ; -lin venturous_A = compoundA (mkA "venturous"); -- from DictEng -lin venue_N = mkN "venue" "venues"; -- from DictEng -lin venule_N = mkN "venule" ; -lin veracious_A = compoundA (mkA "veracious"); -- from DictEng -lin veracity_N = mkN "veracity" ; -- from DictEng -lin veranda_N = mkN "veranda" "verandas"; -- from DictEng -lin verandah_N = mkN "verandah" "verandahs"; -- from DictEng -lin verapamil_N = mkN "verapamil" ; -lin verb_N = mkN "verb" "verbs"; -- from DictEng -lin verbal_A = compoundA (mkA "verbal"); -- from DictEng -lin verbalization_N = mkN "verbalization" ; -lin verbalize_V2 = mkV2 (mkV "verbalize" "verbalizes" "verbalized" "verbalized" "verbalizing"); -- from DictEng -lin verbally_Adv = mkAdv "verbally" ; -lin verbatim_A = compoundA (mkA "verbatim"); -- from DictEng -lin verbatim_Adv = mkAdv "verbatim"; -- from DictEng -lin verbena_N = mkN "verbena" "verbenas"; -- from DictEng -lin verbiage_N = mkN "verbiage" ; -- from DictEng -lin verbolatry_N = mkN "verbolatry" ; -lin verbose_A = compoundA (mkA "verbose"); -- from DictEng -lin verbosely_Adv = mkAdv "verbosely" ; -lin verboseness_N = mkN "verboseness" ; -- from DictEng -lin verbosity_N = mkN "verbosity" ; -- from DictEng -lin verdancy_N = mkN "verdancy" ; -- from DictEng -lin verdant_A = compoundA (mkA "verdant"); -- from DictEng -lin verdict_N = mkN "verdict" "verdicts"; -- from DictEng -lin verdigris_N = mkN "verdigris" ; -- from DictEng -lin verdin_N = mkN "verdin" ; -lin verdure_N = mkN "verdure" ; -- from DictEng -lin verey_A = compoundA (mkA "verey"); -- from DictEng -lin verge_N = mkN "verge" "verges"; -- from DictEng -lin verge_V = mkV "verge" "verges" "verged" "verged" "verging"; -- from DictEng -lin verger_N = mkN "verger" "vergers"; -- from DictEng -lin veridical_A = mkA "veridical" ; -lin verifiable_A = compoundA (mkA "verifiable"); -- from DictEng -lin verification_N = mkN "verification" "verifications"; -- from DictEng -lin verified_A = mkA "verified" ; -lin verify_V2 = mkV2 (mkV "verify" "verifies" "verified" "verified" "verifying"); -- from DictEng -lin verily_Adv = mkAdv "verily" ; -lin verisimilar_A = mkA "verisimilar" ; -lin verisimilitude_N = mkN "verisimilitude" "verisimilitudes"; -- from DictEng -lin veritable_A = compoundA (mkA "veritable"); -- from DictEng -lin verity_N = mkN "verity" "verities"; -- from DictEng -lin vermicelli_N = mkN "vermicelli" ; -- from DictEng -lin vermicide_N = mkN "vermicide" ; -lin vermicular_A = mkA "vermicular" ; -lin vermiculate_A = mkA "vermiculate" ; -lin vermiculation_N = mkN "vermiculation" ; -lin vermiculite_N = mkN "vermiculite" ; -lin vermiform_A = compoundA (mkA "vermiform"); -- from DictEng -lin vermifuge_N = mkN "vermifuge" ; -lin vermilion_A = compoundA (mkA "vermilion"); -- from DictEng -lin vermilion_N = mkN "vermilion" "vermilions"; -- from DictEng -lin vermin_N = mkN "vermin" ; -- from DictEng -lin verminous_A = compoundA (mkA "verminous"); -- from DictEng -lin vermis_N = mkN "vermis" ; -lin vermouth_N = mkN "vermouth" "vermouths"; -- from DictEng -lin vernacular_A = compoundA (mkA "vernacular"); -- from DictEng -lin vernacular_N = mkN "vernacular" "vernaculars"; -- from DictEng -lin vernal_A = compoundA (mkA "vernal"); -- from DictEng -lin vernation_N = mkN "vernation" ; -lin vernix_N = mkN "vernix" ; -lin veronica_N = mkN "veronica" "veronicas"; -- from DictEng -lin verruca_N = mkN "verruca" "verrucas"; -- from DictEng -lin verrucose_A = mkA "verrucose" ; -lin versatile_A = compoundA (mkA "versatile"); -- from DictEng -lin versatility_N = mkN "versatility" ; -- from DictEng -lin verse_N = mkN "verse" "verses"; -- from DictEng -lin versed_A = compoundA (mkA "versed"); -- from DictEng -lin versicle_N = mkN "versicle" ; -lin versification_N = mkN "versification" ; -- from DictEng -lin versifier_N = mkN "versifier" "versifiers"; -- from DictEng -lin versify_V = mkV "versify" "versifies" "versified" "versified" "versifying"; -- from DictEng -lin versify_V2 = mkV2 (mkV "versify" "versifies" "versified" "versified" "versifying"); -- from DictEng -lin version_N = mkN "version" "versions"; -- from DictEng -lin verso_N = mkN "verso" "versos"; -- from DictEng -lin verst_N = mkN "verst" ; -lin versus_Prep = mkPrep "versus"; -- from DictEng -lin vertebra_N = mkN "vertebra" "vertebrae" {- FIXME: guessed plural form -}; -- from DictEng -lin vertebral_A = mkA "vertebral" ; -lin vertebrate_A = compoundA (mkA "vertebrate"); -- from DictEng -lin vertebrate_N = mkN "vertebrate" "vertebrates"; -- from DictEng -lin vertex_N = mkN "vertex" "vertices" {- FIXME: guessed plural form -}; -- from DictEng -lin vertical_A = compoundA (mkA "vertical"); -- from DictEng -lin vertical_N = mkN "vertical" "verticals"; -- from DictEng -lin verticality_N = mkN "verticality" ; -lin vertically_Adv = mkAdv "vertically" ; -lin verticil_N = mkN "verticil" ; -lin verticillate_A = mkA "verticillate" ; -lin verticilliosis_N = mkN "verticilliosis" ; -lin verticillium_N = mkN "verticillium" ; -lin vertiginous_A = compoundA (mkA "vertiginous"); -- from DictEng -lin vertigo_N = mkN "vertigo" ; -- from DictEng -lin verve_N = mkN "verve" ; -- from DictEng -lin vervet_N = mkN "vervet" ; -lin very_A = mkA "very" ; -lin very_AdA = mkAdA "very" ; -- from DictEng -lin very_Adv = mkAdv "very" ; -lin very_well_Adv = mkAdv "very well" ; -lin vesical_A = mkA "vesical" ; -lin vesicant_N = mkN "vesicant" ; -lin vesicatory_A = mkA "vesicatory" ; -lin vesicle_N = mkN "vesicle" "vesicles"; -- from DictEng -lin vesicular_A = compoundA (mkA "vesicular"); -- from DictEng -lin vesiculation_N = mkN "vesiculation" ; -lin vesiculitis_N = mkN "vesiculitis" ; -lin vesiculovirus_N = mkN "vesiculovirus" ; -lin vesper_N = mkN "vesper" ; -lin vespers_N = mkN "vespers" ; -lin vespid_N = mkN "vespid" ; -lin vessel_N = mkN "vessel" "vessels"; -- from DictEng -lin vest_N = mkN "vest" "vests"; -- from DictEng -lin vest_V = mkV "vest" "vests" "vested" "vested" "vesting"; -- from DictEng -lin vest_V2 = mkV2 (mkV "vest" "vests" "vested" "vested" "vesting"); -- from DictEng -lin vestal_A = compoundA (mkA "vestal"); -- from DictEng -lin vestal_N = mkN "vestal" "vestals"; -- from DictEng -lin vested_A = mkA "vested" ; -lin vestiary_A = mkA "vestiary" ; -lin vestibular_A = mkA "vestibular" ; -lin vestibule_N = mkN "vestibule" "vestibules"; -- from DictEng -lin vestige_N = mkN "vestige" "vestiges"; -- from DictEng -lin vestigial_A = compoundA (mkA "vestigial"); -- from DictEng -lin vestiture_N = mkN "vestiture" ; -lin vestment_N = mkN "vestment" "vestments"; -- from DictEng -lin vestmental_A = mkA "vestmental" ; -lin vestmented_A = mkA "vestmented" ; -lin vestry_N = mkN "vestry" "vestries"; -- from DictEng -lin vestryman_N = mkN "vestryman" "vestrymen" {- FIXME: guessed plural form -}; -- from DictEng -lin vestrywoman_N = mkN "vestrywoman" ; -lin vesture_N = mkN "vesture" "vestures"; -- from DictEng -lin vesture_V2 = mkV2 (mkV "vesture" "vestures" "vestured" "vestured" "vesturing"); -- from DictEng -lin vesuvianite_N = mkN "vesuvianite" ; -lin vet_N = mkN "vet" "vets"; -- from DictEng -lin vet_V2 = mkV2 (mkV "vet" "vets" "vetted" "vetted" "vetting"); -- from DictEng -lin vetch_N = mkN "vetch" "vetches"; -- from DictEng -lin vetchling_N = mkN "vetchling" ; -lin veteran_N = mkN "veteran" "veterans"; -- from DictEng -lin veterinarian_N = mkN "veterinarian" ; -lin veterinary_A = compoundA (mkA "veterinary"); -- from DictEng -lin veto_N = mkN "veto" "vetoes"; -- from DictEng -lin veto_V = mkV "veto"; -- from DictEng -lin veto_V2 = mkV2 (mkV "veto" "vetos" "vetoed" "vetoed" "vetoing"); -- from DictEng -lin vex_V2 = mkV2 (mkV "vex" "vexes" "vexed" "vexed" "vexing"); -- from DictEng -lin vex_V2V = mkV2V (mkV "vex") noPrep to_Prep ; -- from DictEng -lin vexation_N = mkN "vexation" "vexations"; -- from DictEng -lin vexatious_A = compoundA (mkA "vexatious"); -- from DictEng -lin vexatiously_Adv = mkAdv "vexatiously" ; -lin vexed_A = mkA "vexed" ; -lin via_Prep = mkPrep "via"; -- from DictEng -lin via_media_N = mkN "via media" "via mediae" {- FIXME: guessed plural form -}; -- from DictEng -lin viability_N = mkN "viability" ; -- from DictEng -lin viable_A = compoundA (mkA "viable"); -- from DictEng -lin viaduct_N = mkN "viaduct" "viaducts"; -- from DictEng -lin vial_N = mkN "vial" "vials"; -- from DictEng -lin viand_N = mkN "viand" ; -lin viatical_A = mkA "viatical" ; -lin viatication_N = mkN "viatication" ; -lin vibist_N = mkN "vibist" ; -lin vibrant_A = compoundA (mkA "vibrant"); -- from DictEng -lin vibraphone_N = mkN "vibraphone" "vibraphones"; -- from DictEng -lin vibrate_V = mkV "vibrate" "vibrates" "vibrated" "vibrated" "vibrating"; -- from DictEng -lin vibrate_V2 = mkV2 (mkV "vibrate" "vibrates" "vibrated" "vibrated" "vibrating"); -- from DictEng -lin vibration_N = mkN "vibration" "vibrations"; -- from DictEng -lin vibrational_A = mkA "vibrational" ; -lin vibrato_N = mkN "vibrato" "vibratos"; -- from DictEng -lin vibrator_N = mkN "vibrator" "vibrators"; -- from DictEng -lin vibratory_A = mkA "vibratory" ; -lin vibrio_N = mkN "vibrio" ; -lin vibrionic_A = mkA "vibrionic" ; -lin vicar_N = mkN "vicar" "vicars"; -- from DictEng -lin vicar_general_N = mkN "vicar general" ; -lin vicarage_N = mkN "vicarage" "vicarages"; -- from DictEng -lin vicarial_A = mkA "vicarial" ; -lin vicariate_N = mkN "vicariate" ; -lin vicarious_A = compoundA (mkA "vicarious"); -- from DictEng -lin vicariously_Adv = mkAdv "vicariously" ; -lin vice_N = mkN "vice" "vices"; -- from DictEng -lin vice_presidency_N = mkN "vice presidency" ; -lin vice_presidential_A = compoundA (mkA "vice presidential") ; -lin vice_regent_N = mkN "vice regent" ; -lin vice_versa_Adv = mkAdv "vice versa"; -- from DictEng -lin vicegerent_N = mkN "vicegerent" ; -lin vicenary_A = mkA "vicenary" ; -lin vicennial_A = mkA "vicennial" ; -lin viceregal_A = compoundA (mkA "viceregal"); -- from DictEng -lin vicereine_N = mkN "vicereine" "vicereines"; -- from DictEng -lin viceroy_N = mkN "viceroy" "viceroys"; -- from DictEng -lin viceroyalty_N = mkN "viceroyalty" ; -lin viceroyship_N = mkN "viceroyship" ; -lin vichyssoise_N = mkN "vichyssoise" ; -lin vicinal_A = mkA "vicinal" ; -lin vicinity_N = mkN "vicinity" "vicinities"; -- from DictEng -lin vicious_A = compoundA (mkA "vicious"); -- from DictEng -lin viciously_Adv = mkAdv "viciously" ; -lin viciousness_N = mkN "viciousness" ; -- from DictEng -lin vicissitude_N = mkN "vicissitude" "vicissitudes"; -- from DictEng -lin victim_N = mkN "victim" "victims"; -- from DictEng -lin victimization_N = mkN "victimization" "victimizations"; -- from DictEng -lin victimize_V2 = mkV2 (mkV "victimize" "victimizes" "victimized" "victimized" "victimizing"); -- from DictEng -lin victimizer_N = mkN "victimizer" ; -lin victor_N = mkN "victor" "victors"; -- from DictEng -lin victoria_N = mkN "victoria" "victorias"; -- from DictEng -lin victorian_A = compoundA (mkA "victorian"); -- from DictEng -lin victorian_N = mkN "victorian" "victorians"; -- from DictEng -lin victoriana_N = mkN "victoriana" ; -- from DictEng -lin victorious_A = compoundA (mkA "victorious"); -- from DictEng -lin victoriously_Adv = mkAdv "victoriously" ; -lin victory_N = mkN "victory" "victories"; -- from DictEng -lin victual_N = mkN "victual" "victuals"; -- from DictEng -lin victual_V = mkV "victual" "victuals" "victualled" "victualled" "victualling"; -- from DictEng -lin victual_V2 = mkV2 (mkV "victual" "victuals" "victualled" "victualled" "victualling"); -- from DictEng -lin victualer_N = mkN "victualer" ; -lin victualler_N = mkN "victualler" "victuallers"; -- from DictEng -lin vicuna_N = mkN "vicuña" "vicuñas"; -- from DictEng -lin videlicet_Adv = mkAdv "videlicet"; -- from DictEng -lin video_N = mkN "video" "videos"; -- from DictEng -lin videocassette_N = mkN "videocassette" ; -lin videodisk_N = mkN "videodisk" ; -lin videotape_N = mkN "videotape" "videotapes"; -- from DictEng -lin videotape_V2 = mkV2 (mkV "videotape" "videotapes" "videotaped" "videotaped" "videotaping"); -- from DictEng -lin vie_V = mkV "vie" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin vietnamese_A = compoundA (mkA "Vietnamese"); -- from DictEng -lin vietnamese_N = mkN "Vietnamese" "Vietnamese"; -- from DictEng -lin view_N = mkN "view" "views"; -- from DictEng -lin view_V2 = mkV2 (mkV "view" "views" "viewed" "viewed" "viewing"); -- from DictEng -lin viewable_A = mkA "viewable" ; -lin viewer_N = mkN "viewer" "viewers"; -- from DictEng -lin viewfinder_N = mkN "viewfinder" "viewfinders"; -- from DictEng -lin viewgraph_N = mkN "viewgraph" ; -lin viewless_A = compoundA (mkA "viewless"); -- from DictEng -lin viewpoint_N = mkN "viewpoint" "viewpoints"; -- from DictEng -lin vigesimal_A = mkA "vigesimal" ; -lin vigil_N = mkN "vigil" "vigils"; -- from DictEng -lin vigilance_N = mkN "vigilance" ; -- from DictEng -lin vigilant_A = compoundA (mkA "vigilant"); -- from DictEng -lin vigilante_N = mkN "vigilante" "vigilantes"; -- from DictEng -lin vigilantism_N = mkN "vigilantism" ; -lin vigilantly_Adv = mkAdv "vigilantly" ; -lin vignette_N = mkN "vignette" "vignettes"; -- from DictEng -lin vigor_N = mkN "vigor" ; -lin vigorous_A = compoundA (mkA "vigorous"); -- from DictEng -lin vigorously_Adv = mkAdv "vigorously" ; -lin vigour_N = mkN "vigour" ; -- from DictEng -lin viking_N = mkN "viking" "vikings"; -- from DictEng -lin vile_A = mkA "vile" "viler"; -- from DictEng -lin vilely_Adv = mkAdv "vilely" ; -lin vileness_N = mkN "vileness" ; -- from DictEng -lin vilification_N = mkN "vilification" "vilifications"; -- from DictEng -lin vilify_V2 = mkV2 (mkV "vilify" "vilifies" "vilified" "vilified" "vilifying"); -- from DictEng -lin villa_N = mkN "villa" "villas"; -- from DictEng -lin village_N = mkN "village" "villages"; -- from DictEng -lin villager_N = mkN "villager" "villagers"; -- from DictEng -lin villain_N = mkN "villain" "villains"; -- from DictEng -lin villainess_N = mkN "villainess" "villainesss"; -- from DictEng -lin villainous_A = compoundA (mkA "villainous"); -- from DictEng -lin villainy_N = mkN "villainy" "villainies"; -- from DictEng -lin villein_N = mkN "villein" "villeins"; -- from DictEng -lin villeinage_N = mkN "villeinage" ; -- from DictEng -lin villus_N = mkN "villus" ; -lin vim_N = mkN "vim" ; -- from DictEng -lin vinaceous_A = mkA "vinaceous" ; -lin vinaigrette_N = mkN "vinaigrette" ; -- from DictEng -lin vinblastine_N = mkN "vinblastine" ; -lin vincristine_N = mkN "vincristine" ; -lin vindicate_V2 = mkV2 (mkV "vindicate" "vindicates" "vindicated" "vindicated" "vindicating"); -- from DictEng -lin vindication_N = mkN "vindication" "vindications"; -- from DictEng -lin vindictive_A = compoundA (mkA "vindictive"); -- from DictEng -lin vindictiveness_N = mkN "vindictiveness" ; -- from DictEng -lin vine_N = mkN "vine" "vines"; -- from DictEng -lin vinegar_N = mkN "vinegar" "vinegars"; -- from DictEng -lin vinegariness_N = mkN "vinegariness" ; -lin vinegarroon_N = mkN "vinegarroon" ; -lin vinegary_A = compoundA (mkA "vinegary"); -- from DictEng -lin vinery_N = mkN "vinery" "vineries"; -- from DictEng -lin vineyard_N = mkN "vineyard" "vineyards"; -- from DictEng -lin vinifera_N = mkN "vinifera" ; -lin vinification_N = mkN "vinification" ; -lin vino_N = mkN "vino" "vinoes"; -- from DictEng -lin vinous_A = compoundA (mkA "vinous"); -- from DictEng -lin vintage_N = mkN "vintage" "vintages"; -- from DictEng -lin vintager_N = mkN "vintager" ; -lin vintner_N = mkN "vintner" "vintners"; -- from DictEng -lin vinyl_N = mkN "vinyl" "vinyls"; -- from DictEng -lin viol_N = mkN "viol" "viols"; -- from DictEng -lin viola_N = mkN "viola" "violas"; -- from DictEng -lin violable_A = mkA "violable" ; -lin violate_V2 = mkV2 (mkV "violate" "violates" "violated" "violated" "violating"); -- from DictEng -lin violation_N = mkN "violation" "violations"; -- from DictEng -lin violator_N = mkN "violator" ; -lin violence_N = mkN "violence" ; -- from DictEng -lin violent_A = compoundA (mkA "violent"); -- from DictEng -lin violently_Adv = mkAdv "violently" ; -lin violet_N = mkN "violet" "violets"; -- from DictEng -lin violet_black_A = compoundA (mkA "violet black") ; -lin violet_colored_A = compoundA (mkA "violet colored") ; -lin violet_purple_A = compoundA (mkA "violet purple") ; -lin violet_scented_A = compoundA (mkA "violet scented") ; -lin violet_streaked_A = compoundA (mkA "violet streaked") ; -lin violet_tinged_A = compoundA (mkA "violet tinged") ; -lin violin_N = mkN "violin" "violins"; -- from DictEng -lin violinist_N = mkN "violinist" "violinists"; -- from DictEng -lin violist_N = mkN "violist" ; -lin viomycin_N = mkN "viomycin" ; -lin vip_N = mkN "vip" "vips" ; -- from DictEng -lin viper_N = mkN "viper" "vipers"; -- from DictEng -lin virago_N = mkN "virago" "viragos"; -- from DictEng -lin viral_A = mkA "viral" ; -lin viremia_N = mkN "viremia" ; -lin vireo_N = mkN "vireo" ; -lin virga_N = mkN "virga" ; -lin virgin_A = compoundA (mkA "virgin"); -- from DictEng -lin virgin_N = mkN "virgin" "virgins"; -- from DictEng -lin virginal_A = compoundA (mkA "virginal"); -- from DictEng -lin virginal_N = mkN "virginal" "virginals"; -- from DictEng -lin virginia_N = mkN "virginia" ; -- from DictEng -lin virginity_N = mkN "virginity" ; -- from DictEng -lin virgule_N = mkN "virgule" "virgules"; -- from DictEng -lin viricidal_A = mkA "viricidal" ; -lin viricide_N = mkN "viricide" ; -lin virile_A = compoundA (mkA "virile"); -- from DictEng -lin virilism_N = mkN "virilism" ; -lin virility_N = mkN "virility" ; -- from DictEng -lin virino_N = mkN "virino" ; -lin virion_N = mkN "virion" ; -lin viroid_N = mkN "viroid" ; -lin virological_A = mkA "virological" ; -lin virologist_N = mkN "virologist" ; -lin virology_N = mkN "virology" ; -- from DictEng -lin virtu_N = mkN "virtu" ; -- from DictEng -lin virtual_A = compoundA (mkA "virtual"); -- from DictEng -lin virtually_Adv = mkAdv "virtually" ; -lin virtue_N = mkN "virtue" "virtues"; -- from DictEng -lin virtuosity_N = mkN "virtuosity" ; -- from DictEng -lin virtuoso_N = mkN "virtuoso" "virtuosos"; -- from DictEng -lin virtuous_A = compoundA (mkA "virtuous"); -- from DictEng -lin virulence_N = mkN "virulence" ; -- from DictEng -lin virulent_A = compoundA (mkA "virulent"); -- from DictEng -lin virulently_Adv = mkAdv "virulently" ; -lin virus_N = mkN "virus" "viruses"; -- from DictEng -lin vis_a_vis_Adv = mkAdv "vis - à - vis"; -- from DictEng -lin vis_a_vis_Adv = mkAdv "vis - à - vis"; -- from DictEng -lin visa_N = mkN "visa" "visas"; -- from DictEng -lin visa_V2 = mkV2 (mkV "visa" "visas" "visaed" "visaed" "visaing"); -- from DictEng -lin visage_N = mkN "visage" "visages"; -- from DictEng -lin visaged_A = compoundA (mkA "visaged"); -- from DictEng -lin viscacha_N = mkN "viscacha" ; -lin viscera_N = mkN "viscera" ; -lin visceral_A = compoundA (mkA "visceral"); -- from DictEng -lin viscerally_Adv = mkAdv "viscerally" ; -lin viscid_A = compoundA (mkA "viscid"); -- from DictEng -lin viscoelastic_A = mkA "viscoelastic" ; -lin viscometer_N = mkN "viscometer" ; -lin viscometric_A = mkA "viscometric" ; -lin viscometry_N = mkN "viscometry" ; -lin viscosity_N = mkN "viscosity" ; -- from DictEng -lin viscount_N = mkN "viscount" "viscounts"; -- from DictEng -lin viscountcy_N = mkN "viscountcy" "viscountcies"; -- from DictEng -lin viscountess_N = mkN "viscountess" "viscountesses"; -- from DictEng -lin viscounty_N = mkN "viscounty" ; -lin viscous_A = compoundA (mkA "viscous"); -- from DictEng -lin vise_N = mkN "vise" ; -lin viselike_A = mkA "viselike" ; -lin visibility_N = mkN "visibility" ; -- from DictEng -lin visible_A = compoundA (mkA "visible"); -- from DictEng -lin visibly_Adv = mkAdv "visibly" ; -lin vision_N = mkN "vision" "visions"; -- from DictEng -lin visionary_A = compoundA (mkA "visionary"); -- from DictEng -lin visionary_N = mkN "visionary" "visionaries"; -- from DictEng -lin visit_N = mkN "visit" "visits"; -- from DictEng -lin visit_V = mkV "visit" "visits" "visited" "visited" "visiting"; -- from DictEng -lin visit_V2 = mkV2 (mkV "visit" "visits" "visited" "visited" "visiting"); -- from DictEng -lin visitant_N = mkN "visitant" "visitants"; -- from DictEng -lin visitation_N = mkN "visitation" "visitations"; -- from DictEng -lin visiting_N = mkN "visiting" ; -- from DictEng -lin visitor_N = mkN "visitor" "visitors"; -- from DictEng -lin visor_N = mkN "visor" "visors"; -- from DictEng -lin visored_A = mkA "visored" ; -lin vista_N = mkN "vista" "vistas"; -- from DictEng -lin visual_A = compoundA (mkA "visual"); -- from DictEng -lin visualization_N = mkN "visualization" "visualizations"; -- from DictEng -lin visualize_V2 = mkV2 (mkV "visualize" "visualizes" "visualized" "visualized" "visualizing"); -- from DictEng -lin visualizer_N = mkN "visualizer" ; -lin visually_Adv = mkAdv "visually" ; -lin vital_A = compoundA (mkA "vital"); -- from DictEng -lin vitalism_N = mkN "vitalism" ; -- from DictEng -lin vitalist_N = mkN "vitalist" "vitalists"; -- from DictEng -lin vitality_N = mkN "vitality" ; -- from DictEng -lin vitalization_N = mkN "vitalization" ; -lin vitalize_V2 = mkV2 (mkV "vitalize" "vitalizes" "vitalized" "vitalized" "vitalizing"); -- from DictEng -lin vitally_Adv = mkAdv "vitally" ; -lin vitalness_N = mkN "vitalness" ; -lin vitamin_N = mkN "vitamin" "vitamins"; -- from DictEng -lin vitamin_a_PN = mkPN "vitamin A" ; -lin vitamin_a1_PN = mkPN "vitamin A1" ; -lin vitamin_a2_PN = mkPN "vitamin A2" ; -lin vitamin_b1_PN = mkPN "vitamin B1" ; -lin vitamin_b12_PN = mkPN "vitamin B12" ; -lin vitamin_b2_PN = mkPN "vitamin B2" ; -lin vitamin_b6_PN = mkPN "vitamin B6" ; -lin vitamin_bc_PN = mkPN "vitamin Bc" ; -lin vitamin_c_PN = mkPN "vitamin C" ; -lin vitamin_d_PN = mkPN "vitamin D" ; -lin vitamin_e_PN = mkPN "vitamin E" ; -lin vitamin_k_PN = mkPN "vitamin K" ; -lin vitamin_k1_PN = mkPN "vitamin K1" ; -lin vitamin_k3_PN = mkPN "vitamin K3" ; -lin vitamin_p_PN = mkPN "vitamin P" ; -lin vitiate_V2 = mkV2 (mkV "vitiate" "vitiates" "vitiated" "vitiated" "vitiating"); -- from DictEng -lin vitiation_N = mkN "vitiation" ; -lin viticulture_N = mkN "viticulture" ; -lin viticulturist_N = mkN "viticulturist" ; -lin vitiliginous_A = mkA "vitiliginous" ; -lin vitiligo_N = mkN "vitiligo" ; -lin vitrectomy_N = mkN "vitrectomy" ; -lin vitreous_A = compoundA (mkA "vitreous"); -- from DictEng -lin vitrification_N = mkN "vitrification" ; -lin vitrify_V = mkV "vitrify" "vitrifies" "vitrified" "vitrified" "vitrifying"; -- from DictEng -lin vitrify_V2 = mkV2 (mkV "vitrify" "vitrifies" "vitrified" "vitrified" "vitrifying"); -- from DictEng -lin vitriol_N = mkN "vitriol" ; -- from DictEng -lin vitriolic_A = compoundA (mkA "vitriolic"); -- from DictEng -lin vituperate_V2 = mkV2 (mkV "vituperate" "vituperates" "vituperated" "vituperated" "vituperating"); -- from DictEng -lin vituperation_N = mkN "vituperation" ; -- from DictEng -lin vituperative_A = compoundA (mkA "vituperative"); -- from DictEng -lin viva_N = mkN "viva" "vivas"; -- from DictEng -lin viva_voce_A = compoundA (mkA "viva voce"); -- from DictEng -lin viva_voce_A = compoundA (mkA "viva voce"); -- from DictEng -lin viva_voce_Adv = mkAdv "viva voce"; -- from DictEng -lin viva_voce_N = mkN "viva voce" "viva voces"; -- from DictEng -lin vivace_A = mkA "vivace" ; -lin vivace_Adv = mkAdv "vivace"; -- from DictEng -lin vivacious_A = compoundA (mkA "vivacious"); -- from DictEng -lin vivaciously_Adv = mkAdv "vivaciously" ; -lin vivacity_N = mkN "vivacity" ; -- from DictEng -lin vivarium_N = mkN "vivarium" ; -lin viverrine_N = mkN "viverrine" ; -lin vivid_A = compoundA (mkA "vivid"); -- from DictEng -lin vividly_Adv = mkAdv "vividly" ; -lin vividness_N = mkN "vividness" ; -- from DictEng -lin vivification_N = mkN "vivification" ; -lin viviparous_A = compoundA (mkA "viviparous"); -- from DictEng -lin vivisect_V2 = mkV2 (mkV "vivisect" "vivisects" "vivisected" "vivisected" "vivisecting"); -- from DictEng -lin vivisection_N = mkN "vivisection" "vivisections"; -- from DictEng -lin vivisectionist_N = mkN "vivisectionist" "vivisectionists"; -- from DictEng -lin vixen_N = mkN "vixen" "vixens"; -- from DictEng -lin vixenish_A = compoundA (mkA "vixenish"); -- from DictEng -lin vizier_N = mkN "vizier" "viziers"; -- from DictEng -lin viziership_N = mkN "viziership" ; -lin vizsla_N = mkN "vizsla" ; -lin vocable_N = mkN "vocable" ; -lin vocabulary_N = mkN "vocabulary" "vocabularies"; -- from DictEng -lin vocal_A = compoundA (mkA "vocal"); -- from DictEng -lin vocalic_A = mkA "vocalic" ; -lin vocalist_N = mkN "vocalist" "vocalists"; -- from DictEng -lin vocalize_V2 = mkV2 (mkV "vocalize" "vocalizes" "vocalized" "vocalized" "vocalizing"); -- from DictEng -lin vocally_Adv = mkAdv "vocally" ; -lin vocation_N = mkN "vocation" "vocations"; -- from DictEng -lin vocational_A = compoundA (mkA "vocational"); -- from DictEng -lin vocationally_Adv = mkAdv "vocationally" ; -lin vocative_A = compoundA (mkA "vocative"); -- from DictEng -lin vocative_N = mkN "vocative" "vocatives"; -- from DictEng -lin vociferate_V = mkV "vociferate" "vociferates" "vociferated" "vociferated" "vociferating"; -- from DictEng -lin vociferate_V2 = mkV2 (mkV "vociferate" "vociferates" "vociferated" "vociferated" "vociferating"); -- from DictEng -lin vociferation_N = mkN "vociferation" ; -- from DictEng -lin vociferator_N = mkN "vociferator" ; -lin vociferous_A = compoundA (mkA "vociferous"); -- from DictEng -lin vociferously_Adv = mkAdv "vociferously" ; -lin vodka_N = mkN "vodka" "vodkas"; -- from DictEng -lin vogue_N = mkN "vogue" "vogues"; -- from DictEng -lin voice_N = mkN "voice" "voices"; -- from DictEng -lin voice_V2 = mkV2 (mkV "voice" "voices" "voiced" "voiced" "voicing"); -- from DictEng -lin voiced_A = compoundA (mkA "voiced"); -- from DictEng -lin voiceless_A = compoundA (mkA "voiceless"); -- from DictEng -lin voicelessness_N = mkN "voicelessness" ; -lin voiceprint_N = mkN "voiceprint" ; -lin voicer_N = mkN "voicer" ; -lin voicing_N = mkN "voicing" ; -lin void_A = compoundA (mkA "void"); -- from DictEng -lin void_N = mkN "void" "voids"; -- from DictEng -lin void_V2 = mkV2 (mkV "void" "voids" "voided" "voided" "voiding"); -- from DictEng -lin voider_N = mkN "voider" ; -lin voile_N = mkN "voile" ; -- from DictEng -lin vol_N = mkN "vol" "vols" ; -- from DictEng -lin vol_au_vent_N = mkN "vol au vent" ; -lin volant_A = mkA "volant" ; -lin volatile_A = compoundA (mkA "volatile"); -- from DictEng -lin volatile_N = mkN "volatile" ; -lin volatility_N = mkN "volatility" "volatilities"; -- from DictEng -lin volcanic_A = compoundA (mkA "volcanic"); -- from DictEng -lin volcanically_Adv = mkAdv "volcanically" ; -lin volcanism_N = mkN "volcanism" ; -lin volcano_N = mkN "volcano" "volcanos"; -- from DictEng -lin volcanology_N = mkN "volcanology" ; -lin vole_N = mkN "vole" "voles"; -- from DictEng -lin volition_N = mkN "volition" ; -- from DictEng -lin volitional_A = compoundA (mkA "volitional"); -- from DictEng -lin volley_N = mkN "volley" "volleys"; -- from DictEng -lin volley_V = mkV "volley" "volleys" "volleyed" "volleyed" "volleying"; -- from DictEng -lin volley_V2 = mkV2 (mkV "volley" "volleys" "volleyed" "volleyed" "volleying"); -- from DictEng -lin volleyball_N = mkN "volleyball" "volleyballs"; -- from DictEng -lin volt_N = mkN "volt" "volts"; -- from DictEng -lin volt_ampere_N = mkN "volt ampere" ; -lin voltage_N = mkN "voltage" "voltages"; -- from DictEng -lin voltaic_A = mkA "voltaic" ; -lin volte_face_N = mkN "volte - face" "IRREG"; -- from DictEng -lin voltmeter_N = mkN "voltmeter" ; -lin volubility_N = mkN "volubility" ; -- from DictEng -lin voluble_A = compoundA (mkA "voluble"); -- from DictEng -lin volume_N = mkN "volume" "volumes"; -- from DictEng -lin volumed_A = mkA "volumed" ; -lin volumeter_N = mkN "volumeter" ; -lin volumetric_A = mkA "volumetric" ; -lin volumetrically_Adv = mkAdv "volumetrically" ; -lin voluminous_A = compoundA (mkA "voluminous"); -- from DictEng -lin voluntarily_Adv = mkAdv "voluntarily" ; -lin voluntary_A = compoundA (mkA "voluntary"); -- from DictEng -lin voluntary_N = mkN "voluntary" "voluntaries"; -- from DictEng -lin volunteer_N = mkN "volunteer" "volunteers"; -- from DictEng -lin volunteer_V = mkV "volunteer" "volunteers" "volunteered" "volunteered" "volunteering"; -- from DictEng -lin volunteer_V2 = mkV2 (mkV "volunteer" "volunteers" "volunteered" "volunteered" "volunteering"); -- from DictEng -lin volunteer_V2V = mkV2V (mkV "volunteer" "volunteers" "volunteered" "volunteered" "volunteering") noPrep to_Prep ; -- from DictEng -lin volunteer_VS = mkVS (mkV "volunteer" "volunteers" "volunteered" "volunteered" "volunteering"); -- from DictEng -lin voluptuary_N = mkN "voluptuary" "voluptuaries"; -- from DictEng -lin voluptuous_A = compoundA (mkA "voluptuous"); -- from DictEng -lin voluptuously_Adv = mkAdv "voluptuously" ; -lin voluptuousness_N = mkN "voluptuousness" ; -- from DictEng -lin volute_N = mkN "volute" "volutes"; -- from DictEng -lin voluted_A = compoundA (mkA "voluted"); -- from DictEng -lin volution_N = mkN "volution" ; -lin volva_N = mkN "volva" ; -lin volvulus_N = mkN "volvulus" ; -lin vomer_N = mkN "vomer" ; -lin vomit_N = mkN "vomit" ; -- from DictEng -lin vomit_V = mkV "vomit" "vomits" "vomited" "vomited" "vomiting"; -- from DictEng -lin vomit_V2 = mkV2 (mkV "vomit" "vomits" "vomited" "vomited" "vomiting"); -- from DictEng -lin vomiter_N = mkN "vomiter" ; -lin vomitory_N = mkN "vomitory" ; -lin von_neumann_PN = mkPN "von Neumann" ; -lin von_neumann_machine_PN = mkPN "von Neumann machine" ; -lin von_sternberg_PN = mkPN "von Sternberg" ; -lin von_willebrand's_disease_PN = mkPN "von Willebrand's disease" ; -lin voodoo_N = mkN "voodoo" ; -- from DictEng -lin voodooism_N = mkN "voodooism" ; -- from DictEng -lin voracious_A = compoundA (mkA "voracious"); -- from DictEng -lin voraciously_Adv = mkAdv "voraciously" ; -lin voracity_N = mkN "voracity" ; -- from DictEng -lin vortex_N = mkN "vortex" "vortexes"; -- from DictEng -lin vorticella_N = mkN "vorticella" ; -lin votary_N = mkN "votary" "votaries"; -- from DictEng -lin vote_N = mkN "vote" "votes"; -- from DictEng -lin vote_V = mkV "vote" "votes" "voted" "voted" "voting"; -- from DictEng -lin vote_V2 = mkV2 (mkV "vote" "votes" "voted" "voted" "voting"); -- from DictEng -lin vote_VS = mkVS (mkV "vote" "votes" "voted" "voted" "voting"); -- from DictEng -lin vote_VV = mkVV (mkV "vote" "votes" "voted" "voted" "voting"); -- from DictEng -lin voteless_A = compoundA (mkA "voteless"); -- from DictEng -lin voter_N = mkN "voter" "voters"; -- from DictEng -lin votive_A = compoundA (mkA "votive"); -- from DictEng -lin vouch_V = mkV "vouch" "vouches" "vouched" "vouched" "vouching"; -- from DictEng -lin vouchee_N = mkN "vouchee" ; -lin voucher_N = mkN "voucher" "vouchers"; -- from DictEng -lin vouchsafe_V2 = mkV2 (mkV "vouchsafe" "vouchsafes" "vouchsafed" "vouchsafed" "vouchsafing"); -- from DictEng -lin vouge_N = mkN "vouge" ; -lin voussoir_N = mkN "voussoir" ; -lin vow_N = mkN "vow" "vows"; -- from DictEng -lin vow_V2 = mkV2 (mkV "vow" "vows" "vowed" "vowed" "vowing"); -- from DictEng -lin vow_VS = mkVS (mkV "vow"); -- from DictEng -lin vow_VV = mkVV (mkV "vow"); -- from DictEng -lin vowel_N = mkN "vowel" "vowels"; -- from DictEng -lin vowellike_A = mkA "vowellike" ; -lin vower_N = mkN "vower" ; -lin vox_N = mkN "vox" "IRREG"; -- from DictEng -lin vox_populi_N = mkN "vox populi" "IRREG"; -- from DictEng -lin voyage_N = mkN "voyage" "voyages"; -- from DictEng -lin voyage_V = mkV "voyage" "voyages" "voyaged" "voyaged" "voyaging"; -- from DictEng -lin voyage_V2 = mkV2 (mkV "voyage") ; -lin voyager_N = mkN "voyager" "voyagers"; -- from DictEng -lin voyeur_N = mkN "voyeur" "voyeurs"; -- from DictEng -lin voyeurism_N = mkN "voyeurism" ; -- from DictEng -lin voyeuristic_A = compoundA (mkA "voyeuristic"); -- from DictEng -lin voyeuristically_Adv = mkAdv "voyeuristically"; -- from DictEng -lin vp_N = mkN "vp" ; -- from DictEng -lin vroom_N = mkN "vroom" ; -lin vroom_V = mkV "vroom" ; -lin vroom_V2 = mkV2 (mkV "vroom") ; -lin vs_Prep = mkPrep "vs."; -- from DictEng -lin vulcanite_N = mkN "vulcanite" ; -- from DictEng -lin vulcanization_N = mkN "vulcanization" "vulcanizations"; -- from DictEng -lin vulcanize_V2 = mkV2 (mkV "vulcanize" "vulcanizes" "vulcanized" "vulcanized" "vulcanizing"); -- from DictEng -lin vulcanizer_N = mkN "vulcanizer" ; -lin vulgar_A = compoundA (mkA "vulgar"); -- from DictEng -lin vulgarian_N = mkN "vulgarian" "vulgarians"; -- from DictEng -lin vulgarism_N = mkN "vulgarism" "vulgarisms"; -- from DictEng -lin vulgarity_N = mkN "vulgarity" "vulgarities"; -- from DictEng -lin vulgarization_N = mkN "vulgarization" ; -- from DictEng -lin vulgarize_V2 = mkV2 (mkV "vulgarize" "vulgarizes" "vulgarized" "vulgarized" "vulgarizing"); -- from DictEng -lin vulgarizer_N = mkN "vulgarizer" ; -lin vulgate_N = mkN "vulgate" "vulgates"; -- from DictEng -lin vulnerability_N = mkN "vulnerability" "vulnerabilities"; -- from DictEng -lin vulnerable_A = compoundA (mkA "vulnerable"); -- from DictEng -lin vulnerably_Adv = mkAdv "vulnerably" ; -lin vulpine_A = compoundA (mkA "vulpine"); -- from DictEng -lin vulture_N = mkN "vulture" "vultures"; -- from DictEng -lin vulva_N = mkN "vulva" "vulvas"; -- from DictEng -lin vulvar_A = mkA "vulvar" ; -lin vulvectomy_N = mkN "vulvectomy" ; -lin vulvitis_N = mkN "vulvitis" ; -lin vulvovaginitis_N = mkN "vulvovaginitis" ; -lin wad_N = mkN "wad" "wads"; -- from DictEng -lin wad_V2 = mkV2 (mkV "wad" "wads" "wadded" "wadded" "wadding"); -- from DictEng -lin wad_VS = mkVS (mkV "wad"); -- from DictEng -lin wadding_N = mkN "wadding" ; -- from DictEng -lin waddle_N = mkN "waddle" "IRREG"; -- from DictEng -lin waddle_V = mkV "waddle" "waddles" "waddled" "waddled" "waddling"; -- from DictEng -lin waddle_V2 = mkV2 (mkV "waddle") ; -lin waddler_N = mkN "waddler" ; -lin wade_V = mkV "wade" "wades" "waded" "waded" "wading"; -- from DictEng -lin wade_V2 = mkV2 (mkV "wade" "wades" "waded" "waded" "wading"); -- from DictEng -lin wader_N = mkN "wader" "waders"; -- from DictEng -lin waders_N = mkN "waders" ; -lin wadi_N = mkN "wadi" "wadis"; -- from DictEng -lin wading_N = mkN "wading" ; -lin wafer_N = mkN "wafer" "wafers"; -- from DictEng -lin wafer_like_A = compoundA (mkA "wafer like") ; -lin wafer_thin_A = compoundA (mkA "wafer thin") ; -lin wafer_thin_Adv = mkAdv "wafer thin" ; -lin waffle_N = mkN "waffle" "waffles"; -- from DictEng -lin waffle_V = mkV "waffle" "waffles" "waffled" "waffled" "waffling"; -- from DictEng -lin waffle_V2 = mkV2 (mkV "waffle" "waffles" "waffled" "waffled" "waffling"); -- from DictEng -lin waffler_N = mkN "waffler" ; -lin waft_N = mkN "waft" "wafts"; -- from DictEng -lin waft_V = mkV "waft" ; -lin waft_V2 = mkV2 (mkV "waft" "wafts" "wafted" "wafted" "wafting"); -- from DictEng -lin wag_N = mkN "wag" "wags"; -- from DictEng -lin wag_V = mkV "wag" "wags" "wagged" "wagged" "wagging"; -- from DictEng -lin wag_V2 = mkV2 (mkV "wag" "wags" "wagged" "wagged" "wagging"); -- from DictEng -lin wage_N = mkN "wage" "wages"; -- from DictEng -lin wage_V2 = mkV2 (mkV "wage" "wages" "waged" "waged" "waging"); -- from DictEng -lin wage_earning_A = compoundA (mkA "wage earning") ; -lin wage_claim_N = mkN "wage - claim" "wage - claims"; -- from DictEng -lin wage_earner_N = mkN "wage - earner" "wage - earners"; -- from DictEng -lin wage_freeze_N = mkN "wage - freeze" "wage - freezes"; -- from DictEng -lin wager_N = mkN "wager" "wagers"; -- from DictEng -lin wager_V = mkV "wager" "wagers" "wagered" "wagered" "wagering"; -- from DictEng -lin wager_V2 = mkV2 (mkV "wager" "wagers" "wagered" "wagered" "wagering"); -- from DictEng -lin wages_N = mkN "wages" ; -lin waggery_N = mkN "waggery" "waggeries"; -- from DictEng -lin waggish_A = compoundA (mkA "waggish"); -- from DictEng -lin waggishly_Adv = mkAdv "waggishly" ; -lin waggishness_N = mkN "waggishness" ; -- from DictEng -lin waggle_V = mkV "waggle" "waggles" "waggled" "waggled" "waggling"; -- from DictEng -lin waggle_V2 = mkV2 (mkV "waggle" "waggles" "waggled" "waggled" "waggling"); -- from DictEng -lin waggon_N = mkN "waggon" "waggons"; -- from DictEng -lin waggoner_N = mkN "waggoner" "waggoners"; -- from DictEng -lin wagon_N = mkN "wagon" ; -lin wagon_lit_N = mkN "wagon - lit" "IRREG"; -- from DictEng -lin wagoner_N = mkN "wagoner" ; -lin wagonwright_N = mkN "wagonwright" ; -lin wagtail_N = mkN "wagtail" "wagtails"; -- from DictEng -lin wahoo_N = mkN "wahoo" ; -lin waif_N = mkN "waif" "waifs"; -- from DictEng -lin wail_N = mkN "wail" "wails"; -- from DictEng -lin wail_V = mkV "wail" "wails" "wailed" "wailed" "wailing"; -- from DictEng -lin wail_V2 = mkV2 (mkV "wail" "wails" "wailed" "wailed" "wailing"); -- from DictEng -lin wailer_N = mkN "wailer" ; -lin wailing_N = mkN "wailing" ; -lin wain_N = mkN "wain" "wains"; -- from DictEng -lin wainscot_N = mkN "wainscot" "wainscots"; -- from DictEng -lin wainscoted_A = compoundA (mkA "wainscoted"); -- from DictEng -lin wainscoting_N = mkN "wainscoting" ; -lin waist_N = mkN "waist" "waists"; -- from DictEng -lin waist_deep_Adv = mkAdv "waist - deep"; -- from DictEng -lin waist_length_A = compoundA (mkA "waist length") ; -lin waist_deep_A = compoundA (mkA "waist - deep"); -- from DictEng -lin waist_deep_Adv = mkAdv "waist - deep"; -- from DictEng -lin waist_high_A = compoundA (mkA "waist - high"); -- from DictEng -lin waist_high_Adv = mkAdv "waist - high"; -- from DictEng -lin waistband_N = mkN "waistband" "waistbands"; -- from DictEng -lin waistcoat_N = mkN "waistcoat" "waistcoats"; -- from DictEng -lin waistline_N = mkN "waistline" "waistlines"; -- from DictEng -lin wait_N = mkN "wait" "waits"; -- from DictEng -lin wait_V = mkV "wait" "waits" "waited" "waited" "waiting"; -- from DictEng -lin wait_V2 = mkV2 (mkV "wait" "waits" "waited" "waited" "waiting"); -- from DictEng -lin wait_VV = mkVV (mkV "wait" "waits" "waited" "waited" "waiting"); -- from DictEng -lin waiter_N = mkN "waiter" "waiters"; -- from DictEng -lin waiting_A = mkA "waiting" ; -lin waiting_list_N = mkN "waiting - list" "waiting - lists"; -- from DictEng -lin waiting_room_N = mkN "waiting - room" "waiting - rooms"; -- from DictEng -lin waitress_N = mkN "waitress" "waitresses"; -- from DictEng -lin waive_V2 = mkV2 (mkV "waive" "waives" "waived" "waived" "waiving"); -- from DictEng -lin waiver_N = mkN "waiver" "waivers"; -- from DictEng -lin waiver_V = mkV "waiver"; -- from DictEng -lin wake_N = mkN "wake" "wakes"; -- from DictEng -lin wake_V = mkV "wake" "wakes" "waked" "waked" "waking"; -- from DictEng -lin wake_V2 = mkV2 (mkV "wake" "wakes" "waked" "waked" "waking"); -- from DictEng -lin wakeful_A = compoundA (mkA "wakeful"); -- from DictEng -lin wakefulness_N = mkN "wakefulness" ; -- from DictEng -lin waken_V = mkV "waken" "wakens" "wakened" "wakened" "wakening"; -- from DictEng -lin waken_V2 = mkV2 (mkV "waken" "wakens" "wakened" "wakened" "wakening"); -- from DictEng -lin waker_N = mkN "waker" ; -lin waking_A = compoundA (mkA "waking"); -- from DictEng -lin waking_N = mkN "waking" ; -lin wale_N = mkN "wale" "wales"; -- from DictEng -lin walk_N = mkN "walk" "walks"; -- from DictEng -lin walk_V = mkV "walk" "walks" "walked" "walked" "walking"; -- from DictEng -lin walk_V2 = mkV2 (mkV "walk" "walks" "walked" "walked" "walking"); -- from DictEng -lin walk_in_A = compoundA (mkA "walk in") ; -lin walk_in_N = mkN "walk in" ; -lin walk_on_N = mkN "walk on" ; -lin walk_through_N = mkN "walk through" ; -lin walk_to_A = compoundA (mkA "walk to") ; -lin walk_up_A = compoundA (mkA "walk up") ; -lin walk_up_N = mkN "walk up" ; -lin walk_through_V = mkV "walk through" ; -lin walk_through_V2 = mkV2 (mkV "walk through") ; -lin walkabout_N = mkN "walkabout" "walkabouts"; -- from DictEng -lin walkaway_N = mkN "walkaway" "walkaways"; -- from DictEng -lin walker_N = mkN "walker" "walkers"; -- from DictEng -lin walkie_talkie_N = mkN "walkie - talkie" "walkie - talkies"; -- from DictEng -lin walkie_talkie_N = mkN "walkie - talkie" "walkie - talkies"; -- from DictEng -lin walking_N = mkN "walking" ; -- from DictEng -lin walkout_N = mkN "walkout" "walkouts"; -- from DictEng -lin walkover_N = mkN "walkover" "walkovers"; -- from DictEng -lin wall_N = mkN "wall" "walls"; -- from DictEng -lin wall_V2 = mkV2 (mkV "wall" "walls" "walled" "walled" "walling"); -- from DictEng -lin wall_eyed_A = compoundA (mkA "wall - eyed"); -- from DictEng -lin wall_painting_N = mkN "wall - painting" "wall - paintings"; -- from DictEng -lin wallaby_N = mkN "wallaby" "wallabies"; -- from DictEng -lin wallah_N = mkN "wallah" "wallahs"; -- from DictEng -lin wallboard_N = mkN "wallboard" ; -lin wallet_N = mkN "wallet" "wallets"; -- from DictEng -lin walleye_N = mkN "walleye" ; -lin walleyed_A = mkA "walleyed" ; -lin wallflower_N = mkN "wallflower" "wallflowers"; -- from DictEng -lin wallop_N = mkN "wallop" "wallops"; -- from DictEng -lin wallop_V2 = mkV2 (mkV "wallop" "wallops" "walloped" "walloped" "walloping"); -- from DictEng -lin walloper_N = mkN "walloper" ; -lin walloping_A = compoundA (mkA "walloping"); -- from DictEng -lin wallow_N = mkN "wallow" "wallows"; -- from DictEng -lin wallow_V = mkV "wallow" "wallows" "wallowed" "wallowed" "wallowing"; -- from DictEng -lin wallpaper_N = mkN "wallpaper" ; -- from DictEng -lin wallpaperer_N = mkN "wallpaperer" ; -lin wally_N = mkN "wally" ; -lin walnut_N = mkN "walnut" "walnuts"; -- from DictEng -lin walrus_N = mkN "walrus" "walruses"; -- from DictEng -lin waltz_N = mkN "waltz" "waltzes"; -- from DictEng -lin waltz_V = mkV "waltz" "waltzes" "waltzed" "waltzed" "waltzing"; -- from DictEng -lin waltz_V2 = mkV2 (mkV "waltz" "waltzes" "waltzed" "waltzed" "waltzing"); -- from DictEng -lin waltzer_N = mkN "waltzer" ; -lin wampum_N = mkN "wampum" ; -- from DictEng -lin wan_A = mkA "wan" "wanner*"; -- from DictEng -lin wand_N = mkN "wand" "wands"; -- from DictEng -lin wander_V = mkV "wander" "wanders" "wandered" "wandered" "wandering"; -- from DictEng -lin wander_V2 = mkV2 (mkV "wander" "wanders" "wandered" "wandered" "wandering"); -- from DictEng -lin wanderer_N = mkN "wanderer" "wanderers"; -- from DictEng -lin wandering_N = mkN "wandering" ; -lin wanderlust_N = mkN "wanderlust" ; -- from DictEng -lin wandflower_N = mkN "wandflower" ; -lin wane_N = mkN "wane" "wanes"; -- from DictEng -lin wane_V = mkV "wane" "wanes" "waned" "waned" "waning"; -- from DictEng -lin wangle_N = mkN "wangle" "wangles"; -- from DictEng -lin wangle_V2 = mkV2 (mkV "wangle" "wangles" "wangled" "wangled" "wangling"); -- from DictEng -lin waning_A = mkA "waning" ; -lin waning_N = mkN "waning" ; -lin wank_N = mkN "wank" "wanks"; -- from DictEng -lin wank_V = mkV "wank" "wanks" "wanked" "wanked" "wanking"; -- from DictEng -lin wanly_Adv = mkAdv "wanly" ; -lin wanness_N = mkN "wanness" ; -- from DictEng -lin want_N = mkN "want"; -- from DictEng -lin want_V = mkV "want"; -- from DictEng -lin want_V2 = mkV2 (mkV "want"); -- from DictEng -lin want_V2V = mkV2V (mkV "want") noPrep to_Prep ; -- from DictEng -lin want_VS = mkVS (mkV "want"); -- from DictEng -lin want_VV = mkVV (mkV "want"); -- from DictEng -lin want_ad_N = mkN "want - ad" "want - ads"; -- from DictEng -lin wanted_A = mkA "wanted" ; -lin wanter_N = mkN "wanter" ; -lin wanton_A = compoundA (mkA "wanton"); -- from DictEng -lin wanton_N = mkN "wanton" "wantons"; -- from DictEng -lin wanton_V = mkV "wanton" "wantons" "wantoned" "wantoned" "wantoning"; -- from DictEng -lin wantonly_Adv = mkAdv "wantonly" ; -lin wantonness_N = mkN "wantonness" ; -- from DictEng -lin wapiti_N = mkN "wapiti" ; -lin war_N = mkN "war" "wars"; -- from DictEng -lin war_V = mkV "war" "wars" "warred" "warred" "warring"; -- from DictEng -lin war_torn_A = compoundA (mkA "war - torn"); -- from DictEng -lin war_baby_N = mkN "war - baby" "war - babies"; -- from DictEng -lin war_bride_N = mkN "war - bride" "war - brides"; -- from DictEng -lin war_cloud_N = mkN "war - cloud" "war - clouds"; -- from DictEng -lin war_cry_N = mkN "war - cry" "war - cries"; -- from DictEng -lin war_dance_N = mkN "war - dance" "war - dances"; -- from DictEng -lin war_god_N = mkN "war - god" "war - gods"; -- from DictEng -lin war_torn_A = compoundA (mkA "war - torn"); -- from DictEng -lin war_widow_N = mkN "war - widow" "war - widows"; -- from DictEng -lin waratah_N = mkN "waratah" ; -lin warble_N = mkN "warble" "warbles"; -- from DictEng -lin warble_V = mkV "warble" "warbles" "warbled" "warbled" "warbling"; -- from DictEng -lin warble_V2 = mkV2 (mkV "warble" "warbles" "warbled" "warbled" "warbling"); -- from DictEng -lin warbler_N = mkN "warbler" "warblers"; -- from DictEng -lin ward_N = mkN "ward" "wards"; -- from DictEng -lin ward_V2 = mkV2 (mkV "ward" "wards" "warded" "warded" "warding"); -- from DictEng -lin warden_N = mkN "warden" "wardens"; -- from DictEng -lin wardenship_N = mkN "wardenship" ; -lin warder_N = mkN "warder" "warders"; -- from DictEng -lin wardership_N = mkN "wardership" ; -lin wardress_N = mkN "wardress" "wardresses"; -- from DictEng -lin wardrobe_N = mkN "wardrobe" "wardrobes"; -- from DictEng -lin wardroom_N = mkN "wardroom" "wardrooms"; -- from DictEng -lin ware_N = mkN "ware" "wares"; -- from DictEng -lin ware_V2 = mkV2 (mkV "ware" "wares" "wared" "wared" "waring"); -- from DictEng -lin warehouse_N = mkN "warehouse" "warehouses"; -- from DictEng -lin warehouser_N = mkN "warehouser" ; -lin warehousing_N = mkN "warehousing" ; -- from DictEng -lin warfare_N = mkN "warfare" ; -- from DictEng -lin warfarin_N = mkN "warfarin" ; -lin warhead_N = mkN "warhead" "warheads"; -- from DictEng -lin warhorse_N = mkN "warhorse" "warhorses"; -- from DictEng -lin warily_Adv = mkAdv "warily"; -- from DictEng -lin wariness_N = mkN "wariness" ; -- from DictEng -lin warlike_A = compoundA (mkA "warlike"); -- from DictEng -lin warlock_N = mkN "warlock" ; -lin warlord_N = mkN "warlord" "warlords"; -- from DictEng -lin warm_A = mkA "warm" "warmer"; -- from DictEng -lin warm_V = mkV "warm" "warms" "warmed" "warmed" "warming"; -- from DictEng -lin warm_V2 = mkV2 (mkV "warm" "warms" "warmed" "warmed" "warming"); -- from DictEng -lin warm_blooded_A = compoundA (mkA "warm - blooded"); -- from DictEng -lin warm_toned_A = compoundA (mkA "warm toned") ; -lin warm_up_N = mkN "warm up" ; -lin warm_blooded_A = compoundA (mkA "warm - blooded"); -- from DictEng -lin warm_hearted_A = compoundA (mkA "warm - hearted"); -- from DictEng -lin warmed_A = mkA "warmed" ; -lin warmer_N = mkN "warmer" "warmers"; -- from DictEng -lin warmhearted_A = mkA "warmhearted" ; -lin warmheartedness_N = mkN "warmheartedness" ; -lin warming_A = mkA "warming" ; -lin warming_pan_N = mkN "warming - pan" "warming - pans"; -- from DictEng -lin warmly_Adv = mkAdv "warmly" ; -lin warmonger_N = mkN "warmonger" "warmongers"; -- from DictEng -lin warmongering_N = mkN "warmongering" ; -lin warmth_N = mkN "warmth" ; -- from DictEng -lin warn_V = mkV "warn"; -- from DictEng -lin warn_V2 = mkV2 (mkV "warn" "warns" "warned" "warned" "warning"); -- from DictEng -lin warn_VS = mkVS (mkV "warn"); -- from DictEng -lin warner_N = mkN "warner" ; -lin warning_A = compoundA (mkA "warning"); -- from DictEng -lin warning_N = mkN "warning" "warnings"; -- from DictEng -lin warp_N = mkN "warp" "warps"; -- from DictEng -lin warp_V = mkV "warp" "warps" "warped" "warped" "warping"; -- from DictEng -lin warp_V2 = mkV2 (mkV "warp" "warps" "warped" "warped" "warping"); -- from DictEng -lin warpaint_N = mkN "warpaint" ; -- from DictEng -lin warpath_N = mkN "warpath" "warpaths"; -- from DictEng -lin warped_A = mkA "warped" ; -lin warplane_N = mkN "warplane" ; -lin warrant_N = mkN "warrant" "warrants"; -- from DictEng -lin warrant_V2 = mkV2 (mkV "warrant" "warrants" "warranted" "warranted" "warranting"); -- from DictEng -lin warrant_VS = mkVS (mkV "warrant"); -- from DictEng -lin warrantee_N = mkN "warrantee" "warrantees"; -- from DictEng -lin warrantor_N = mkN "warrantor" "warrantors"; -- from DictEng -lin warranty_N = mkN "warranty" "warranties"; -- from DictEng -lin warren_N = mkN "warren" "warrens"; -- from DictEng -lin warrener_N = mkN "warrener" ; -lin warrigal_N = mkN "warrigal" ; -lin warrior_N = mkN "warrior" "warriors"; -- from DictEng -lin warship_N = mkN "warship" "warships"; -- from DictEng -lin wart_N = mkN "wart" "warts"; -- from DictEng -lin warthog_N = mkN "warthog" "warthogs"; -- from DictEng -lin wartime_N = mkN "wartime" ; -- from DictEng -lin wary_A = mkA "wary" "warier"; -- from DictEng -lin wasabi_N = mkN "wasabi" ; -lin wash_N = mkN "wash" "washes"; -- from DictEng -lin wash_V = mkV "wash" "washes" "washed" "washed" "washing"; -- from DictEng -lin wash_V2 = mkV2 (mkV "wash" "washes" "washed" "washed" "washing"); -- from DictEng -lin wash_and_wear_A = compoundA (mkA "wash and wear") ; -lin wash_and_wear_N = mkN "wash and wear" ; -lin wash_drawing_N = mkN "wash - drawing" "wash - drawings"; -- from DictEng -lin wash_hand_basin_N = mkN "wash - hand - basin" "wash - hand - basins"; -- from DictEng -lin wash_hand_stand_N = mkN "wash - hand - stand" "wash - hand - stands"; -- from DictEng -lin wash_house_N = mkN "wash - house" "wash - houses"; -- from DictEng -lin wash_leather_N = mkN "wash - leather" "wash - leathers"; -- from DictEng -lin washable_A = compoundA (mkA "washable"); -- from DictEng -lin washbasin_N = mkN "washbasin" "washbasins"; -- from DictEng -lin washboard_N = mkN "washboard" "washboards"; -- from DictEng -lin washbowl_N = mkN "washbowl" "washbowls"; -- from DictEng -lin washcloth_N = mkN "washcloth" "washcloths"; -- from DictEng -lin washday_N = mkN "washday" "washdays"; -- from DictEng -lin washed_A = mkA "washed" ; -lin washer_N = mkN "washer" "washers"; -- from DictEng -lin washerman_N = mkN "washerman" ; -lin washerwoman_N = mkN "washerwoman" "washerwomen" {- FIXME: guessed plural form -}; -- from DictEng -lin washhouse_N = mkN "washhouse" ; -lin washing_N = mkN "washing" ; -- from DictEng -lin washing_up_N = mkN "washing - up" "washing - ups"; -- from DictEng -lin washing_day_N = mkN "washing - day" "washing - days"; -- from DictEng -lin washing_machine_N = mkN "washing - machine" "washing - machines"; -- from DictEng -lin washing_up_N = mkN "washing - up" "washing - ups"; -- from DictEng -lin washout_N = mkN "washout" "washouts"; -- from DictEng -lin washroom_N = mkN "washroom" "washrooms"; -- from DictEng -lin washstand_N = mkN "washstand" "washstands"; -- from DictEng -lin washtub_N = mkN "washtub" "washtubs"; -- from DictEng -lin washup_N = mkN "washup" ; -lin washwoman_N = mkN "washwoman" ; -lin washy_A = compoundA (mkA "washy"); -- from DictEng -lin wasp_N = mkN "wasp" "wasps"; -- from DictEng -lin wasp_waisted_A = compoundA (mkA "wasp - waisted"); -- from DictEng -lin waspish_A = compoundA (mkA "waspish"); -- from DictEng -lin wassail_N = mkN "wassail" "wassails"; -- from DictEng -lin wassailer_N = mkN "wassailer" ; -lin wastage_N = mkN "wastage" ; -- from DictEng -lin waste_A = compoundA (mkA "waste"); -- from DictEng -lin waste_N = mkN "waste" "wastes"; -- from DictEng -lin waste_V = mkV "waste" "wastes" "wasted" "wasted" "wasting"; -- from DictEng -lin waste_V2 = mkV2 (mkV "waste" "wastes" "wasted" "wasted" "wasting"); -- from DictEng -lin waste_paper_basket_N = mkN "waste - paper - basket" "waste - paper - baskets"; -- from DictEng -lin waste_pipe_N = mkN "waste - pipe" "waste - pipes"; -- from DictEng -lin wastebasket_N = mkN "wastebasket" "wastebaskets"; -- from DictEng -lin wastebin_N = mkN "wastebin" "wastebins"; -- from DictEng -lin wasteful_A = compoundA (mkA "wasteful"); -- from DictEng -lin wastefully_Adv = mkAdv "wastefully" ; -lin wasteland_N = mkN "wasteland" "wastelands"; -- from DictEng -lin waster_N = mkN "waster" "wasters"; -- from DictEng -lin wastrel_N = mkN "wastrel" "wastrels"; -- from DictEng -lin watch_N = mkN "watch" "watches"; -- from DictEng -lin watch_V = mkV "watch" "watches" "watched" "watched" "watching"; -- from DictEng -lin watch_V2 = mkV2 (mkV "watch" "watches" "watched" "watched" "watching"); -- from DictEng -lin watch_V2V = mkV2V (mkV "watch" "watches" "watched" "watched" "watching") noPrep to_Prep ; -- from DictEng -lin watch_VS = mkVS (mkV "watch" "watches" "watched" "watched" "watching"); -- from DictEng -lin watch_chain_N = mkN "watch - chain" "watch - chains"; -- from DictEng -lin watch_glass_N = mkN "watch - glass" "watch - glasses"; -- from DictEng -lin watch_guard_N = mkN "watch - guard" "watch - guards"; -- from DictEng -lin watch_key_N = mkN "watch - key" "watch - keys"; -- from DictEng -lin watchband_N = mkN "watchband" ; -lin watchdog_N = mkN "watchdog" "watchdogs"; -- from DictEng -lin watcher_N = mkN "watcher" "watchers"; -- from DictEng -lin watchful_A = compoundA (mkA "watchful"); -- from DictEng -lin watchfulness_N = mkN "watchfulness" ; -- from DictEng -lin watchmaker_N = mkN "watchmaker" "watchmakers"; -- from DictEng -lin watchman_N = mkN "watchman" "watchmen" {- FIXME: guessed plural form -}; -- from DictEng -lin watchtower_N = mkN "watchtower" "watchtowers"; -- from DictEng -lin watchword_N = mkN "watchword" "watchwords"; -- from DictEng -lin water_N = mkN "water" "waters"; -- from DictEng -lin water_V = mkV "water" "waters" "watered" "watered" "watering"; -- from DictEng -lin water_V2 = mkV2 (mkV "water" "waters" "watered" "watered" "watering"); -- from DictEng -lin water_cooled_A = compoundA (mkA "water cooled") ; -lin water_insoluble_A = compoundA (mkA "water insoluble") ; -lin water_loving_A = compoundA (mkA "water loving") ; -lin water_mint_N = mkN "water mint" ; -lin water_rate_N = mkN "water - rate" "water - rates"; -- from DictEng -lin water_repellent_A = compoundA (mkA "water repellent") ; -lin water_shield_N = mkN "water shield" ; -lin water_skiing_N = mkN "water - skiing" ; -- from DictEng -lin water_soluble_A = compoundA (mkA "water soluble") ; -lin water_washed_A = compoundA (mkA "water washed") ; -lin water_biscuit_N = mkN "water - biscuit" "water - biscuits"; -- from DictEng -lin water_blister_N = mkN "water - blister" "water - blisters"; -- from DictEng -lin water_bottle_N = mkN "water - bottle" "water - bottles"; -- from DictEng -lin water_buffalo_N = mkN "water - buffalo" "water - buffalos"; -- from DictEng -lin water_butt_N = mkN "water - butt" "water - butts"; -- from DictEng -lin water_cart_N = mkN "water - cart" "water - carts"; -- from DictEng -lin water_closet_N = mkN "water - closet" "water - closets"; -- from DictEng -lin water_finder_N = mkN "water - finder" "water - finders"; -- from DictEng -lin water_glass_N = mkN "water - glass" ; -- from DictEng -lin water_hole_N = mkN "water - hole" "water - holes"; -- from DictEng -lin water_ice_N = mkN "water - ice" "water - ices"; -- from DictEng -lin water_jacket_N = mkN "water - jacket" "water - jackets"; -- from DictEng -lin water_level_N = mkN "water - level" "water - levels"; -- from DictEng -lin water_lily_N = mkN "water - lily" "water - lilies"; -- from DictEng -lin water_line_N = mkN "water - line" "water - lines"; -- from DictEng -lin water_main_N = mkN "water - main" "water - mains"; -- from DictEng -lin water_nymph_N = mkN "water - nymph" "water - nymphs"; -- from DictEng -lin water_polo_N = mkN "water - polo" ; -- from DictEng -lin water_power_N = mkN "water - power" ; -- from DictEng -lin water_rat_N = mkN "water - rat" "water - rats"; -- from DictEng -lin water_rate_N = mkN "water - rate" "water - rates"; -- from DictEng -lin water_skiing_N = mkN "water - skiing" ; -- from DictEng -lin water_skin_N = mkN "water - skin" "water - skins"; -- from DictEng -lin water_softener_N = mkN "water - softener" "water - softeners"; -- from DictEng -lin water_spaniel_N = mkN "water - spaniel" "water - spaniels"; -- from DictEng -lin water_supply_N = mkN "water - supply" "water - supplies"; -- from DictEng -lin water_tower_N = mkN "water - tower" "water - towers"; -- from DictEng -lin water_vole_N = mkN "water - vole" "water - voles"; -- from DictEng -lin water_waggon_N = mkN "water - waggon" "water - waggons"; -- from DictEng -lin water_wagon_N = mkN "water - wagon" "water - wagons"; -- from DictEng -lin water_wheel_N = mkN "water - wheel" "water - wheels"; -- from DictEng -lin water_worn_A = compoundA (mkA "water - worn"); -- from DictEng -lin waterbird_N = mkN "waterbird" "waterbirds"; -- from DictEng -lin waterborne_A = compoundA (mkA "waterborne"); -- from DictEng -lin waterbuck_N = mkN "waterbuck" ; -lin watercannon_N = mkN "watercannon" "watercannons"; -- from DictEng -lin waterchute_N = mkN "waterchute" "waterchutes"; -- from DictEng -lin watercolor_N = mkN "watercolor" ; -lin watercolorist_N = mkN "watercolorist" ; -lin watercolour_N = mkN "watercolour" "watercolours"; -- from DictEng -lin watercolourist_N = mkN "watercolourist" "watercolourists"; -- from DictEng -lin watercourse_N = mkN "watercourse" "watercourses"; -- from DictEng -lin watercraft_N = mkN "watercraft" ; -lin watercress_N = mkN "watercress" ; -- from DictEng -lin waterdog_N = mkN "waterdog" ; -lin waterer_N = mkN "waterer" ; -lin waterfall_N = mkN "waterfall" "waterfalls"; -- from DictEng -lin waterfowl_N = mkN "waterfowl" "waterfowls"; -- from DictEng -lin waterfront_N = mkN "waterfront" "waterfronts"; -- from DictEng -lin waterhen_N = mkN "waterhen" "waterhens"; -- from DictEng -lin waterhyacinth_N = mkN "waterhyacinth" "waterhyacinths"; -- from DictEng -lin wateriness_N = mkN "wateriness" ; -lin watering_N = mkN "watering" ; -lin watering_can_N = mkN "watering - can" "watering - cans"; -- from DictEng -lin watering_cart_N = mkN "watering - cart" "watering - carts"; -- from DictEng -lin waterleaf_N = mkN "waterleaf" ; -lin waterless_A = compoundA (mkA "waterless"); -- from DictEng -lin waterline_N = mkN "waterline" ; -lin waterlogged_A = compoundA (mkA "waterlogged"); -- from DictEng -lin waterloo_N = mkN "waterloo" ; -lin waterman_N = mkN "waterman" "watermen" {- FIXME: guessed plural form -}; -- from DictEng -lin watermark_N = mkN "watermark" "watermarks"; -- from DictEng -lin watermeal_N = mkN "watermeal" ; -lin watermelon_N = mkN "watermelon" "watermelons"; -- from DictEng -lin watermill_N = mkN "watermill" "watermills"; -- from DictEng -lin waterpower_N = mkN "waterpower" ; -lin waterproof_A = compoundA (mkA "waterproof"); -- from DictEng -lin waterproof_N = mkN "waterproof" "waterproofs"; -- from DictEng -lin waterproof_V2 = mkV2 (mkV "waterproof" "waterproofs" "waterproofed" "waterproofed" "waterproofing"); -- from DictEng -lin waterproofing_N = mkN "waterproofing" ; -lin watershed_N = mkN "watershed" "watersheds"; -- from DictEng -lin waterside_N = mkN "waterside" "watersides"; -- from DictEng -lin waterskin_N = mkN "waterskin" ; -lin waterspout_N = mkN "waterspout" "waterspouts"; -- from DictEng -lin watertable_N = mkN "watertable" "watertables"; -- from DictEng -lin watertight_A = compoundA (mkA "watertight"); -- from DictEng -lin waterway_N = mkN "waterway" "waterways"; -- from DictEng -lin waterweed_N = mkN "waterweed" ; -lin waterwheel_N = mkN "waterwheel" ; -lin waterworks_N = mkN "waterworks" "waterworks"; -- from DictEng -lin waterworn_A = mkA "waterworn" ; -lin watery_A = mkA "watery" "waterier"; -- from DictEng -lin watt_N = mkN "watt" "watts"; -- from DictEng -lin watt_hour_N = mkN "watt hour" ; -lin wattage_N = mkN "wattage" "wattages"; -- from DictEng -lin wattle_N = mkN "wattle" "wattles"; -- from DictEng -lin wattmeter_N = mkN "wattmeter" ; -lin wave_N = mkN "wave" "waves"; -- from DictEng -lin wave_V = mkV "wave" "waves" "waved" "waved" "waving"; -- from DictEng -lin wave_V2 = mkV2 (mkV "wave" "waves" "waved" "waved" "waving"); -- from DictEng -lin waveguide_N = mkN "waveguide" ; -lin wavelength_N = mkN "wavelength" "wavelengths"; -- from DictEng -lin waver_N = mkN "waver" ; -lin waver_V = mkV "waver" "wavers" "wavered" "wavered" "wavering"; -- from DictEng -lin waverer_N = mkN "waverer" "waverers"; -- from DictEng -lin waviness_N = mkN "waviness" ; -lin wavy_A = mkA "wavy" "wavier"; -- from DictEng -lin waw_N = mkN "waw" ; -lin wax_N = mkN "wax" "waxes"; -- from DictEng -lin wax_V = mkV "wax" "waxes" "waxed" "waxed" "waxing"; -- from DictEng -lin wax_V2 = mkV2 (mkV "wax" "waxes" "waxed" "waxed" "waxing"); -- from DictEng -lin wax_chandler_N = mkN "wax - chandler" "wax - chandlers"; -- from DictEng -lin wax_chandler_N = mkN "wax - chandler" "wax - chandlers"; -- from DictEng -lin wax_paper_N = mkN "wax - paper" "wax - papers"; -- from DictEng -lin waxed_A = mkA "waxed" ; -lin waxen_A = compoundA (mkA "waxen"); -- from DictEng -lin waxflower_N = mkN "waxflower" ; -lin waxiness_N = mkN "waxiness" ; -lin waxing_A = mkA "waxing" ; -lin waxing_N = mkN "waxing" ; -lin waxmallow_N = mkN "waxmallow" ; -lin waxwing_N = mkN "waxwing" ; -lin waxwork_N = mkN "waxwork" "waxworks"; -- from DictEng -lin waxy_A = mkA "waxy" "waxier"; -- from DictEng -lin waxycap_N = mkN "waxycap" ; -lin way_Adv = mkAdv "way"; -- from DictEng -lin way_N = mkN "way" "ways"; -- from DictEng -lin way_out_A = compoundA (mkA "way - out"); -- from DictEng -lin waybill_N = mkN "waybill" "waybills"; -- from DictEng -lin wayfarer_N = mkN "wayfarer" "wayfarers"; -- from DictEng -lin wayfaring_A = compoundA (mkA "wayfaring"); -- from DictEng -lin wayfaring_N = mkN "wayfaring" ; -lin waylay_V2 = mkV2 (mkV "way" IrregEng.lay_V); -- from DictEng -lin ways_N = mkN "ways" ; -lin wayside_N = mkN "wayside" "waysides"; -- from DictEng -lin wayward_A = compoundA (mkA "wayward"); -- from DictEng -lin wc_N = mkN "WC" "WCs" ; -- from DictEng -lin we_Pron = mkPron "we" "us" "our" "ours" plural P1 human ; -- from DictEng -lin weak_A = mkA "weak" "weaker"; -- from DictEng -lin weak_kneed_A = compoundA (mkA "weak - kneed"); -- from DictEng -lin weak_stemmed_A = compoundA (mkA "weak stemmed") ; -lin weak_kneed_A = compoundA (mkA "weak - kneed"); -- from DictEng -lin weaken_V = mkV "weaken" "weakens" "weakened" "weakened" "weakening"; -- from DictEng -lin weaken_V2 = mkV2 (mkV "weaken" "weakens" "weakened" "weakened" "weakening"); -- from DictEng -lin weakened_A = mkA "weakened" ; -lin weakener_N = mkN "weakener" ; -lin weakening_A = mkA "weakening" ; -lin weakening_N = mkN "weakening" ; -lin weakfish_N = mkN "weakfish" ; -lin weakling_N = mkN "weakling" "weaklings"; -- from DictEng -lin weakly_A = mkA "weakly" "weaklier"; -- from DictEng -lin weakly_Adv = mkAdv "weakly" ; -lin weakness_N = mkN "weakness" "weaknesses"; -- from DictEng -lin weal_N = mkN "weal" "weals"; -- from DictEng -lin weald_N = mkN "weald" "wealds"; -- from DictEng -lin wealth_N = mkN "wealth" ; -- from DictEng -lin wealthily_Adv = mkAdv "wealthily"; -- from DictEng -lin wealthy_A = mkA "wealthy" "wealthier"; -- from DictEng -lin wean_V2 = mkV2 (mkV "wean" "weans" "weaned" "weaned" "weaning"); -- from DictEng -lin weaned_A = mkA "weaned" ; -lin weaning_N = mkN "weaning" ; -lin weapon_N = mkN "weapon" "weapons"; -- from DictEng -lin weaponless_A = compoundA (mkA "weaponless"); -- from DictEng -lin weaponry_N = mkN "weaponry" ; -lin weapons_grade_A = compoundA (mkA "weapons grade") ; -lin wear_N = mkN "wear" ; -- from DictEng -lin wear_V = IrregEng.wear_V; -- from DictEng -lin wear_V2 = mkV2 (IrregEng.wear_V); -- from DictEng -lin wearable_A = compoundA (mkA "wearable"); -- from DictEng -lin wearer_N = mkN "wearer" "wearers"; -- from DictEng -lin wearily_Adv = mkAdv "wearily"; -- from DictEng -lin weariness_N = mkN "weariness" ; -- from DictEng -lin wearing_A = compoundA (mkA "wearing"); -- from DictEng -lin wearisome_A = compoundA (mkA "wearisome"); -- from DictEng -lin weary_A = mkA "weary" "wearier"; -- from DictEng -lin weary_V = mkV "weary" "wearies" "wearied" "wearied" "wearying"; -- from DictEng -lin weary_V2 = mkV2 (mkV "weary" "wearies" "wearied" "wearied" "wearying"); -- from DictEng -lin weasel_N = mkN "weasel" "weasels"; -- from DictEng -lin weasel_out_V2 = mkV2 (mkV "weasel out") ; -lin weather_N = mkN "weather" "weathers"; -- from DictEng -lin weather_V = mkV "weather" "weathers" "weathered" "weathered" "weathering"; -- from DictEng -lin weather_V2 = mkV2 (mkV "weather" "weathers" "weathered" "weathered" "weathering"); -- from DictEng -lin weather_beaten_A = compoundA (mkA "weather - beaten"); -- from DictEng -lin weather_bound_A = compoundA (mkA "weather - bound"); -- from DictEng -lin weather_stripped_A = compoundA (mkA "weather stripped") ; -lin weather_beaten_A = compoundA (mkA "weather - beaten"); -- from DictEng -lin weather_bound_A = compoundA (mkA "weather - bound"); -- from DictEng -lin weather_bureau_N = mkN "weather - bureau" "weather - bureaus"; -- from DictEng -lin weather_chart_N = mkN "weather - chart" "weather - charts"; -- from DictEng -lin weather_glass_N = mkN "weather - glass" "weather - glasses"; -- from DictEng -lin weather_map_N = mkN "weather - map" "weather - maps"; -- from DictEng -lin weather_ship_N = mkN "weather - ship" "weather - ships"; -- from DictEng -lin weather_station_N = mkN "weather - station" "weather - stations"; -- from DictEng -lin weather_vane_N = mkN "weather - vane" "weather - vanes"; -- from DictEng -lin weatherboarding_N = mkN "weatherboarding" ; -- from DictEng -lin weathercock_N = mkN "weathercock" "weathercocks"; -- from DictEng -lin weatherglass_N = mkN "weatherglass" ; -lin weatherliness_N = mkN "weatherliness" ; -lin weatherly_A = mkA "weatherly" ; -lin weatherman_N = mkN "weatherman" "weathermen" {- FIXME: guessed plural form -}; -- from DictEng -lin weatherproof_A = compoundA (mkA "weatherproof"); -- from DictEng -lin weathervane_N = mkN "weathervane" ; -lin weave_N = mkN "weave" "weaves"; -- from DictEng -lin weave_V = IrregEng.weave_V; -- from DictEng -lin weave_V2 = mkV2 (IrregEng.weave_V); -- from DictEng -lin weaver_N = mkN "weaver" "weavers"; -- from DictEng -lin weaverbird_N = mkN "weaverbird" "weaverbirds"; -- from DictEng -lin weaving_N = mkN "weaving" ; -lin web_N = mkN "web" "webs"; -- from DictEng -lin web_footed_A = compoundA (mkA "web - footed"); -- from DictEng -lin web_footed_A = compoundA (mkA "web - footed"); -- from DictEng -lin web_toed_A = compoundA (mkA "web - toed"); -- from DictEng -lin webbed_A = compoundA (mkA "webbed"); -- from DictEng -lin webbing_N = mkN "webbing" ; -- from DictEng -lin webcam_N = mkN "webcam" ; -lin weber_N = mkN "weber" ; -lin webfoot_N = mkN "webfoot" ; -lin webmaster_N = mkN "webmaster" ; -lin webworm_N = mkN "webworm" ; -lin wed_A = mkA "wed" ; -lin wed_V = mkV "wed" "weds" "wedded" "wedded" "wedding"; -- from DictEng -lin wed_V2 = mkV2 (mkV "wed" "weds" "wedded" "wedded" "wedding"); -- from DictEng -lin wedding_N = mkN "wedding" "weddings"; -- from DictEng -lin wedding_cake_N = mkN "wedding - cake" "wedding - cakes"; -- from DictEng -lin wedding_ring_N = mkN "wedding - ring" "wedding - rings"; -- from DictEng -lin wedge_N = mkN "wedge" "wedges"; -- from DictEng -lin wedge_V = mkV "wedge" "wedges" "wedged" "wedged" "wedging"; -- from DictEng -lin wedge_V2 = mkV2 (mkV "wedge" "wedges" "wedged" "wedged" "wedging"); -- from DictEng -lin wedge_shaped_A = compoundA (mkA "wedge shaped") ; -lin wedgie_N = mkN "wedgie" ; -lin wedlock_N = mkN "wedlock" ; -- from DictEng -lin wednesday_N = mkN "Wednesday" "Wednesdays"; -- from DictEng -lin wee_A = compoundA (mkA "wee"); -- from DictEng -lin wee_N = mkN "wee" "wees"; -- from DictEng -lin wee_V = mkV "wee" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin wee_wee_N = mkN "wee - wee" "wee - wees"; -- from DictEng -lin weed_N = mkN "weed" "weeds"; -- from DictEng -lin weed_V = mkV "weed" "weeds" "weeded" "weeded" "weeding"; -- from DictEng -lin weed_V2 = mkV2 (mkV "weed" "weeds" "weeded" "weeded" "weeding"); -- from DictEng -lin weeder_N = mkN "weeder" ; -lin weedkiller_N = mkN "weedkiller" "weedkillers"; -- from DictEng -lin weedless_A = mkA "weedless" ; -lin weeds_N = mkN "weeds" ; -lin weedy_A = mkA "weedy" "weedier"; -- from DictEng -lin week_N = mkN "week" "weeks"; -- from DictEng -lin week_after_week_Adv = mkAdv "week after week" ; -lin week_by_week_Adv = mkAdv "week by week" ; -lin week_from_monday_PN = mkPN "week from Monday" ; -lin weekday_N = mkN "weekday" "weekdays"; -- from DictEng -lin weekend_N = mkN "weekend" "weekends"; -- from DictEng -lin weekend_V = mkV "weekend" "weekends" "weekended" "weekended" "weekending"; -- from DictEng -lin weekender_N = mkN "weekender" "weekenders"; -- from DictEng -lin weeklong_A = mkA "weeklong" ; -lin weekly_A = compoundA (mkA "weekly"); -- from DictEng -lin weekly_Adv = mkAdv "weekly"; -- from DictEng -lin weekly_N = mkN "weekly" "weeklies"; -- from DictEng -lin weeknight_N = mkN "weeknight" ; -lin weeny_A = mkA "weeny" "weenier"; -- from DictEng -lin weep_V = IrregEng.weep_V; -- from DictEng -lin weep_V2 = mkV2 (IrregEng.weep_V); -- from DictEng -lin weeper_N = mkN "weeper" ; -lin weepiness_N = mkN "weepiness" ; -lin weeping_A = compoundA (mkA "weeping"); -- from DictEng -lin weepy_A = mkA "weepy" ; -lin weevil_N = mkN "weevil" "weevils"; -- from DictEng -lin weft_N = mkN "weft" "wefts"; -- from DictEng -lin weigela_N = mkN "weigela" ; -lin weigh_V = mkV "weigh" "weighs" "weighed" "weighed" "weighing"; -- from DictEng -lin weigh_V2 = mkV2 (mkV "weigh" "weighs" "weighed" "weighed" "weighing"); -- from DictEng -lin weighbridge_N = mkN "weighbridge" "weighbridges"; -- from DictEng -lin weigher_N = mkN "weigher" ; -lin weighing_machine_N = mkN "weighing - machine" "weighing - machines"; -- from DictEng -lin weight_N = mkN "weight" "weights"; -- from DictEng -lin weight_V2 = mkV2 (mkV "weight" "weights" "weighted" "weighted" "weighting"); -- from DictEng -lin weighted_A = mkA "weighted" ; -lin weightily_Adv = mkAdv "weightily"; -- from DictEng -lin weightiness_N = mkN "weightiness" ; -- from DictEng -lin weightless_A = compoundA (mkA "weightless"); -- from DictEng -lin weightlessness_N = mkN "weightlessness" ; -- from DictEng -lin weightlift_N = mkN "weightlift" ; -lin weightlifter_N = mkN "weightlifter" ; -lin weightlifting_N = mkN "weightlifting" ; -- from DictEng -lin weighty_A = mkA "weighty" "weightier"; -- from DictEng -lin weir_N = mkN "weir" "weirs"; -- from DictEng -lin weird_A = mkA "weird" "weirder"; -- from DictEng -lin weirdie_N = mkN "weirdie" "weirdies"; -- from DictEng -lin weirdly_Adv = mkAdv "weirdly" ; -lin weirdness_N = mkN "weirdness" ; -- from DictEng -lin weka_N = mkN "weka" ; -lin welcher_N = mkN "welcher" ; -lin welcome_A = compoundA (mkA "welcome"); -- from DictEng -lin welcome_N = mkN "welcome" "welcomes"; -- from DictEng -lin welcome_V2 = mkV2 (mkV "welcome" "welcomes" "welcomed" "welcomed" "welcoming"); -- from DictEng -lin welcoming_A = mkA "welcoming" ; -lin weld_N = mkN "weld" "welds"; -- from DictEng -lin weld_V = mkV "weld" "welds" "welded" "welded" "welding"; -- from DictEng -lin weld_V2 = mkV2 (mkV "weld" "welds" "welded" "welded" "welding"); -- from DictEng -lin welder_N = mkN "welder" "welders"; -- from DictEng -lin welding_N = mkN "welding" ; -lin weldment_N = mkN "weldment" ; -lin welfare_N = mkN "welfare" ; -- from DictEng -lin welfarist_A = mkA "welfarist" ; -lin welkin_N = mkN "welkin" "IRREG"; -- from DictEng -lin well_A = compoundA (mkA "well"); -- from DictEng -lin well_Adv = mkAdv "well"; -- from DictEng -lin well_N = mkN "well" "wells"; -- from DictEng -lin well_V = mkV "well" "wells" "welled" "welled" "welling"; -- from DictEng -lin well_adjusted_A = compoundA (mkA "well - adjusted"); -- from DictEng -lin well_advised_A = compoundA (mkA "well - advised"); -- from DictEng -lin well_appointed_A = compoundA (mkA "well - appointed"); -- from DictEng -lin well_balanced_A = compoundA (mkA "well - balanced"); -- from DictEng -lin well_behaved_A = compoundA (mkA "well - behaved"); -- from DictEng -lin well_bound_A = compoundA (mkA "well bound") ; -lin well_branched_A = compoundA (mkA "well branched") ; -lin well_bred_A = compoundA (mkA "well - bred"); -- from DictEng -lin well_conducted_A = compoundA (mkA "well - conducted"); -- from DictEng -lin well_connected_A = compoundA (mkA "well - connected"); -- from DictEng -lin well_defined_A = compoundA (mkA "well defined") ; -lin well_done_A = compoundA (mkA "well done") ; -lin well_fed_A = compoundA (mkA "well fed") ; -lin well_groomed_A = compoundA (mkA "well - groomed"); -- from DictEng -lin well_intentioned_A = compoundA (mkA "well - intentioned"); -- from DictEng -lin well_knit_A = compoundA (mkA "well - knit"); -- from DictEng -lin well_known_A = compoundA (mkA "well - known"); -- from DictEng -lin well_lined_A = compoundA (mkA "well - lined"); -- from DictEng -lin well_made_A = compoundA (mkA "well made") ; -lin well_marked_A = compoundA (mkA "well - marked"); -- from DictEng -lin well_meaning_A = compoundA (mkA "well - meaning"); -- from DictEng -lin well_mined_A = compoundA (mkA "well mined") ; -lin well_off_A = compoundA (mkA "well off") ; -lin well_ordered_A = compoundA (mkA "well ordered") ; -lin well_preserved_A = compoundA (mkA "well preserved") ; -lin well_proportioned_A = compoundA (mkA "well proportioned") ; -lin well_qualified_A = compoundA (mkA "well qualified") ; -lin well_read_A = compoundA (mkA "well - read"); -- from DictEng -lin well_spoken_A = compoundA (mkA "well - spoken"); -- from DictEng -lin well_turned_A = compoundA (mkA "well - turned"); -- from DictEng -lin well_wishing_A = compoundA (mkA "well wishing") ; -lin well_wishing_N = mkN "well wishing" ; -lin well_worn_A = compoundA (mkA "well - worn"); -- from DictEng -lin well_adjusted_A = compoundA (mkA "well - adjusted"); -- from DictEng -lin well_advised_A = compoundA (mkA "well - advised"); -- from DictEng -lin well_appointed_A = compoundA (mkA "well - appointed"); -- from DictEng -lin well_balanced_A = compoundA (mkA "well - balanced"); -- from DictEng -lin well_behaved_A = compoundA (mkA "well - behaved"); -- from DictEng -lin well_being_N = mkN "well - being" ; -- from DictEng -lin well_born_A = compoundA (mkA "well - born"); -- from DictEng -lin well_bred_A = compoundA (mkA "well - bred"); -- from DictEng -lin well_conducted_A = compoundA (mkA "well - conducted"); -- from DictEng -lin well_connected_A = compoundA (mkA "well - connected"); -- from DictEng -lin well_disposed_A = compoundA (mkA "well - disposed"); -- from DictEng -lin well_doer_N = mkN "well - doer" "well - doers"; -- from DictEng -lin well_doing_N = mkN "well - doing" ; -- from DictEng -lin well_favoured_A = compoundA (mkA "well - favoured"); -- from DictEng -lin well_found_A = compoundA (mkA "well - found"); -- from DictEng -lin well_founded_A = compoundA (mkA "well - founded"); -- from DictEng -lin well_groomed_A = compoundA (mkA "well - groomed"); -- from DictEng -lin well_grounded_A = compoundA (mkA "well - grounded"); -- from DictEng -lin well_heeled_A = compoundA (mkA "well - heeled"); -- from DictEng -lin well_informed_A = compoundA (mkA "well - informed"); -- from DictEng -lin well_intentioned_A = compoundA (mkA "well - intentioned"); -- from DictEng -lin well_knit_A = compoundA (mkA "well - knit"); -- from DictEng -lin well_known_A = compoundA (mkA "well - known"); -- from DictEng -lin well_lined_A = compoundA (mkA "well - lined"); -- from DictEng -lin well_marked_A = compoundA (mkA "well - marked"); -- from DictEng -lin well_meaning_A = compoundA (mkA "well - meaning"); -- from DictEng -lin well_meant_A = compoundA (mkA "well - meant"); -- from DictEng -lin well_nigh_Adv = mkAdv "well - nigh"; -- from DictEng -lin well_read_A = compoundA (mkA "well - read"); -- from DictEng -lin well_rounded_A = compoundA (mkA "well - rounded"); -- from DictEng -lin well_set_A = compoundA (mkA "well - set"); -- from DictEng -lin well_shaven_A = compoundA (mkA "well - shaven"); -- from DictEng -lin well_spoken_A = compoundA (mkA "well - spoken"); -- from DictEng -lin well_thought_out_A = compoundA (mkA "well thought out") ; -lin well_timed_A = compoundA (mkA "well - timed"); -- from DictEng -lin well_to_do_A = compoundA (mkA "well - to - do"); -- from DictEng -lin well_tried_A = compoundA (mkA "well - tried"); -- from DictEng -lin well_turned_A = compoundA (mkA "well - turned"); -- from DictEng -lin well_water_N = mkN "well - water" ; -- from DictEng -lin well_wisher_N = mkN "well - wisher" "well - wishers"; -- from DictEng -lin well_worn_A = compoundA (mkA "well - worn"); -- from DictEng -lin wellbeing_N = mkN "wellbeing" ; -lin wellborn_A = mkA "wellborn" ; -lin wellerism_N = mkN "wellerism" ; -lin wellhead_N = mkN "wellhead" "wellheads"; -- from DictEng -lin wellington_N = mkN "wellington" "wellingtons"; -- from DictEng -lin welsh_A = compoundA (mkA "welsh"); -- from DictEng -lin welsh_N = mkN "welsh" ; -- from DictEng -lin welsh_V = mkV "welsh" "welshes" "welshed" "welshed" "welshing"; -- from DictEng -lin welsher_N = mkN "welsher" "welshers"; -- from DictEng -lin welshman_N = mkN "welshman" "welshmen" {- FIXME: guessed plural form -}; -- from DictEng -lin welt_N = mkN "welt" "welts"; -- from DictEng -lin welter_A = compoundA (mkA "welter"); -- from DictEng -lin welter_N = mkN "welter" "IRREG"; -- from DictEng -lin welter_V = mkV "welter" "welters" "weltered" "weltered" "weltering"; -- from DictEng -lin welterweight_N = mkN "welterweight" "welterweights"; -- from DictEng -lin welwitschia_N = mkN "welwitschia" ; -lin wen_N = mkN "wen" "wens"; -- from DictEng -lin wench_N = mkN "wench" "wenches"; -- from DictEng -lin wench_V = mkV "wench" "wenches" "wenched" "wenched" "wenching"; -- from DictEng -lin wencher_N = mkN "wencher" ; -lin wend_V2 = mkV2 (mkV "wend" "wends" "wended" "wended" "wending"); -- from DictEng -lin werewolf_N = mkN "werewolf" "werewolves" {- FIXME: guessed plural form -}; -- from DictEng -lin wesleyan_A = compoundA (mkA "wesleyan"); -- from DictEng -lin wesleyan_N = mkN "wesleyan" "wesleyans"; -- from DictEng -lin west_A = mkA "west"; -- from DictEng -lin west_Adv = mkAdv "west"; -- from DictEng -lin west_N = mkN "west" ; -- from DictEng -lin west_central_A = compoundA (mkA "west central") ; -lin west_country_A = compoundA (mkA "west - country"); -- from DictEng -lin west_end_A = compoundA (mkA "west - end"); -- from DictEng -lin westbound_A = mkA "westbound" ; -lin westerly_A = compoundA (mkA "westerly"); -- from DictEng -lin westerly_Adv = mkAdv "westerly"; -- from DictEng -lin western_A = compoundA (mkA "western"); -- from DictEng -lin western_N = mkN "western" "westerns"; -- from DictEng -lin westerner_N = mkN "westerner" "westerners"; -- from DictEng -lin westernization_N = mkN "westernization" ; -- from DictEng -lin westernize_V2 = mkV2 (mkV "westernize" "westernizes" "westernized" "westernized" "westernizing"); -- from DictEng -lin westernmost_A = compoundA (mkA "westernmost"); -- from DictEng -lin westside_A = mkA "westside" ; -lin westward_A = compoundA (mkA "westward"); -- from DictEng -lin westward_Adv = mkAdv "westward"; -- from DictEng -lin westwards_Adv = mkAdv "westwards"; -- from DictEng -lin wet_A = mkA "wet" "wetter*"; -- from DictEng -lin wet_N = mkN "wet" ; -- from DictEng -lin wet_V2 = mkV2 (mkV "wet" "wets" "wetted" "wetted" "wetting"); -- from DictEng -lin wet_nurse_N = mkN "wet - nurse" "wet - nurses"; -- from DictEng -lin wether_N = mkN "wether" "wethers"; -- from DictEng -lin wetland_N = mkN "wetland" ; -lin wetness_N = mkN "wetness" ; -lin wetter_N = mkN "wetter" ; -lin wetting_N = mkN "wetting" "wettings"; -- from DictEng -lin whack_N = mkN "whack" "whacks"; -- from DictEng -lin whack_V2 = mkV2 (mkV "whack" "whacks" "whacked" "whacked" "whacking"); -- from DictEng -lin whacked_A = compoundA (mkA "whacked"); -- from DictEng -lin whacker_N = mkN "whacker" "whackers"; -- from DictEng -lin whacking_A = compoundA (mkA "whacking"); -- from DictEng -lin whacking_Adv = mkAdv "whacking"; -- from DictEng -lin whacking_N = mkN "whacking" "whackings"; -- from DictEng -lin whale_N = mkN "whale" "whales"; -- from DictEng -lin whale_V = mkV "whale" "whales" "whaled" "whaled" "whaling"; -- from DictEng -lin whaleboat_N = mkN "whaleboat" ; -lin whalebone_N = mkN "whalebone" ; -- from DictEng -lin whaler_N = mkN "whaler" "whalers"; -- from DictEng -lin whaling_gun_N = mkN "whaling - gun" "whaling - guns"; -- from DictEng -lin whammy_N = mkN "whammy" ; -lin whang_Adv = mkAdv "whang"; -- from DictEng -lin whang_N = mkN "whang" "whangs"; -- from DictEng -lin whang_V2 = mkV2 (mkV "whang" "whangs" "whanged" "whanged" "whanging"); -- from DictEng -lin wharf_N = mkN "wharf" "wharfs"; -- from DictEng -lin wharfage_N = mkN "wharfage" ; -- from DictEng -lin what_A = compoundA (mkA "what"); -- from DictEng -lin what_for_N = mkN "what - for" ; -- from DictEng -lin whate'er_A = compoundA (mkA "whate'er"); -- from DictEng -lin whatever_A = compoundA (mkA "whatever"); -- from DictEng -lin whatnot_N = mkN "whatnot" ; -- from DictEng -lin whatsoe'er_A = compoundA (mkA "whatsoe'er"); -- from DictEng -lin whatsoever_A = compoundA (mkA "whatsoever"); -- from DictEng -lin wheat_N = mkN "wheat" ; -- from DictEng -lin wheatear_N = mkN "wheatear" ; -lin wheaten_A = compoundA (mkA "wheaten"); -- from DictEng -lin wheatfield_N = mkN "wheatfield" ; -lin wheatflake_N = mkN "wheatflake" ; -lin wheatgrass_N = mkN "wheatgrass" ; -lin wheatworm_N = mkN "wheatworm" ; -lin wheedle_V2 = mkV2 (mkV "wheedle" "wheedles" "wheedled" "wheedled" "wheedling"); -- from DictEng -lin wheedler_N = mkN "wheedler" ; -lin wheel_N = mkN "wheel" "wheels"; -- from DictEng -lin wheel_V = mkV "wheel" "wheels" "wheeled" "wheeled" "wheeling"; -- from DictEng -lin wheel_V2 = mkV2 (mkV "wheel" "wheels" "wheeled" "wheeled" "wheeling"); -- from DictEng -lin wheel_like_A = compoundA (mkA "wheel like") ; -lin wheelbarrow_N = mkN "wheelbarrow" "wheelbarrows"; -- from DictEng -lin wheelbase_N = mkN "wheelbase" "wheelbases"; -- from DictEng -lin wheelchair_N = mkN "wheelchair" "wheelchairs"; -- from DictEng -lin wheeled_A = mkA "wheeled" ; -lin wheeler_N = mkN "wheeler" ; -lin wheelhouse_N = mkN "wheelhouse" "IRREG"; -- from DictEng -lin wheeling_N = mkN "wheeling" ; -lin wheelless_A = mkA "wheelless" ; -lin wheelwork_N = mkN "wheelwork" ; -lin wheelwright_N = mkN "wheelwright" "wheelwrights"; -- from DictEng -lin wheeze_N = mkN "wheeze" "wheezes"; -- from DictEng -lin wheeze_V = mkV "wheeze" "wheezes" "wheezed" "wheezed" "wheezing"; -- from DictEng -lin wheeze_V2 = mkV2 (mkV "wheeze" "wheezes" "wheezed" "wheezed" "wheezing"); -- from DictEng -lin wheezily_Adv = mkAdv "wheezily"; -- from DictEng -lin wheeziness_N = mkN "wheeziness" ; -- from DictEng -lin wheezy_A = mkA "wheezy" "wheezier"; -- from DictEng -lin whelk_N = mkN "whelk" "whelks"; -- from DictEng -lin whelk_V = mkV "whelk" ; -lin whelp_N = mkN "whelp" "whelps"; -- from DictEng -lin whelp_V = mkV "whelp" "whelps" "whelped" "whelped" "whelping"; -- from DictEng -lin when_Adv = mkAdv "when"; -- from DictEng -lin when_Subj = mkSubj "when"; -- from DictEng -lin whence_Adv = mkAdv "whence"; -- from DictEng -lin whencesoever_A = compoundA (mkA "whencesoever"); -- from DictEng -lin whenever_Adv = mkAdv "whenever"; -- from DictEng -lin where_Adv = mkAdv "where"; -- from DictEng -lin whereabouts_Adv = mkAdv "whereabouts"; -- from DictEng -lin whereabouts_N = mkN "whereabouts" ; -lin whereas_Prep = mkPrep "whereas"; -- from DictEng -lin whereat_Adv = mkAdv "whereat"; -- from DictEng -lin whereby_Adv = mkAdv "whereby"; -- from DictEng -lin wherefore_Adv = mkAdv "wherefore"; -- from DictEng -lin wherein_Adv = mkAdv "wherein"; -- from DictEng -lin whereof_Adv = mkAdv "whereof"; -- from DictEng -lin whereon_Adv = mkAdv "whereon"; -- from DictEng -lin wheresoever_Adv = mkAdv "wheresoever"; -- from DictEng -lin whereto_Adv = mkAdv "whereto"; -- from DictEng -lin whereunto_Adv = mkAdv "whereunto"; -- from DictEng -lin whereupon_Adv = mkAdv "whereupon"; -- from DictEng -lin wherever_Adv = mkAdv "wherever"; -- from DictEng -lin wherewith_Adv = mkAdv "wherewith"; -- from DictEng -lin wherewithal_Adv = mkAdv "wherewithal"; -- from DictEng -lin wherewithal_N = mkN "wherewithal" ; -- from DictEng -lin wherry_N = mkN "wherry" "wherries"; -- from DictEng -lin whet_V2 = mkV2 (mkV "whet" "whets" "whetted" "whetted" "whetting"); -- from DictEng -lin whether_Prep = mkPrep "whether"; -- from DictEng -lin whetstone_N = mkN "whetstone" "whetstones"; -- from DictEng -lin whey_N = mkN "whey" ; -- from DictEng -lin which_A = compoundA (mkA "which"); -- from DictEng -lin whichever_A = compoundA (mkA "whichever"); -- from DictEng -lin whichsoever_A = compoundA (mkA "whichsoever"); -- from DictEng -lin whiff_N = mkN "whiff" "whiffs"; -- from DictEng -lin whiffer_N = mkN "whiffer" ; -lin whiffletree_N = mkN "whiffletree" ; -lin whig_N = mkN "whig" "whigs"; -- from DictEng -lin while_N = mkN "while" "whiles"; -- from DictEng -lin while_Subj = mkSubj "while"; -- from DictEng -lin while_V2 = mkV2 (mkV "while" "whiles" "whiled" "whiled" "whiling"); -- from DictEng -lin whilst_Subj = mkSubj "whilst"; -- from DictEng -lin whim_N = mkN "whim" "whims"; -- from DictEng -lin whimper_N = mkN "whimper" "whimpers"; -- from DictEng -lin whimper_V = mkV "whimper" "whimpers" "whimpered" "whimpered" "whimpering"; -- from DictEng -lin whimper_V2 = mkV2 (mkV "whimper" "whimpers" "whimpered" "whimpered" "whimpering"); -- from DictEng -lin whimsey_N = mkN "whimsey" "whimseys"; -- from DictEng -lin whimsical_A = compoundA (mkA "whimsical"); -- from DictEng -lin whimsicality_N = mkN "whimsicality" "whimsicalities"; -- from DictEng -lin whimsy_N = mkN "whimsy" "whimsies"; -- from DictEng -lin whin_N = mkN "whin" ; -- from DictEng -lin whinchat_N = mkN "whinchat" ; -lin whine_N = mkN "whine" "whines"; -- from DictEng -lin whine_V = mkV "whine" "whines" "whined" "whined" "whining"; -- from DictEng -lin whine_V2 = mkV2 (mkV "whine" "whines" "whined" "whined" "whining"); -- from DictEng -lin whiner_N = mkN "whiner" "whiners"; -- from DictEng -lin whinny_N = mkN "whinny" "whinnies"; -- from DictEng -lin whinny_V = mkV "whinny" "whinnies" "whinnied" "whinnied" "whinnying"; -- from DictEng -lin whinstone_N = mkN "whinstone" ; -lin whip_N = mkN "whip" "whips"; -- from DictEng -lin whip_V = mkV "whip" "whips" "whipped" "whipped" "whipping"; -- from DictEng -lin whip_V2 = mkV2 (mkV "whip" "whips" "whipped" "whipped" "whipping"); -- from DictEng -lin whip_round_N = mkN "whip - round" "whip - rounds"; -- from DictEng -lin whip_scorpion_N = mkN "whip scorpion" ; -lin whip_snake_N = mkN "whip snake" ; -lin whip_round_N = mkN "whip - round" "whip - rounds"; -- from DictEng -lin whipcord_N = mkN "whipcord" ; -- from DictEng -lin whiplash_N = mkN "whiplash" ; -lin whipper_in_N = mkN "whipper - in" "IRREG"; -- from DictEng -lin whipper_in_N = mkN "whipper - in" "IRREG"; -- from DictEng -lin whippersnapper_N = mkN "whippersnapper" "whippersnappers"; -- from DictEng -lin whippet_N = mkN "whippet" "whippets"; -- from DictEng -lin whipping_N = mkN "whipping" "whippings"; -- from DictEng -lin whipping_boy_N = mkN "whipping - boy" "whipping - boys"; -- from DictEng -lin whipping_post_N = mkN "whipping - post" "whipping - posts"; -- from DictEng -lin whipping_top_N = mkN "whipping - top" "whipping - tops"; -- from DictEng -lin whippoorwill_N = mkN "whippoorwill" "whippoorwills"; -- from DictEng -lin whippy_A = mkA "whippy" "whippier"; -- from DictEng -lin whipsaw_V2 = mkV2 (mkV "whipsaw"); -- from DictEng -lin whipstitch_N = mkN "whipstitch" ; -lin whiptail_N = mkN "whiptail" ; -lin whir_N = mkN "whir" "IRREG"; -- from DictEng -lin whir_V = mkV "whir" "whirs" "whirred" "whirred" "whirring"; -- from DictEng -lin whir_V2 = mkV2 (mkV "whir") ; -lin whirl_N = mkN "whirl" "IRREG"; -- from DictEng -lin whirl_V = mkV "whirl" "whirls" "whirled" "whirled" "whirling"; -- from DictEng -lin whirl_V2 = mkV2 (mkV "whirl" "whirls" "whirled" "whirled" "whirling"); -- from DictEng -lin whirler_N = mkN "whirler" ; -lin whirligig_N = mkN "whirligig" "whirligigs"; -- from DictEng -lin whirlpool_N = mkN "whirlpool" "whirlpools"; -- from DictEng -lin whirlwind_N = mkN "whirlwind" "whirlwinds"; -- from DictEng -lin whirr_N = mkN "whirr" "IRREG"; -- from DictEng -lin whirr_V = mkV "whirr" "whirrs" "whirred" "whirred" "whirring"; -- from DictEng -lin whirring_A = mkA "whirring" ; -lin whish_V = mkV "whish" ; -lin whish_V2 = mkV2 (mkV "whish") ; -lin whisk_N = mkN "whisk" "whisks"; -- from DictEng -lin whisk_V = mkV "whisk" "whisks" "whisked" "whisked" "whisking"; -- from DictEng -lin whisk_V2 = mkV2 (mkV "whisk" "whisks" "whisked" "whisked" "whisking"); -- from DictEng -lin whisker_N = mkN "whisker" "whiskers"; -- from DictEng -lin whiskered_A = compoundA (mkA "whiskered"); -- from DictEng -lin whiskey_N = mkN "whiskey" "whiskeys"; -- from DictEng -lin whisky_N = mkN "whisky" "whiskies"; -- from DictEng -lin whisper_N = mkN "whisper" "whispers"; -- from DictEng -lin whisper_V = mkV "whisper" "whispers" "whispered" "whispered" "whispering"; -- from DictEng -lin whisper_V2 = mkV2 (mkV "whisper" "whispers" "whispered" "whispered" "whispering"); -- from DictEng -lin whispered_A = mkA "whispered" ; -lin whisperer_N = mkN "whisperer" "whisperers"; -- from DictEng -lin whispering_N = mkN "whispering" "whisperings"; -- from DictEng -lin whispering_gallery_N = mkN "whispering - gallery" "whispering - galleries"; -- from DictEng -lin whist_N = mkN "whist" ; -- from DictEng -lin whist_drive_N = mkN "whist - drive" "whist - drives"; -- from DictEng -lin whistle_N = mkN "whistle" "whistles"; -- from DictEng -lin whistle_V = mkV "whistle" "whistles" "whistled" "whistled" "whistling"; -- from DictEng -lin whistle_V2 = mkV2 (mkV "whistle" "whistles" "whistled" "whistled" "whistling"); -- from DictEng -lin whistle_stop_N = mkN "whistle - stop" "whistle - stops"; -- from DictEng -lin whistler_N = mkN "whistler" ; -lin whistling_N = mkN "whistling" ; -lin whit_N = mkN "whit" "whits"; -- from DictEng -lin white_A = mkA "white" "whiter"; -- from DictEng -lin white_N = mkN "white" "whites"; -- from DictEng -lin white_blotched_A = compoundA (mkA "white blotched") ; -lin white_bread_A = compoundA (mkA "white bread") ; -lin white_collar_A = compoundA (mkA "white - collar"); -- from DictEng -lin white_edged_A = compoundA (mkA "white edged") ; -lin white_flowered_A = compoundA (mkA "white flowered") ; -lin white_hot_A = compoundA (mkA "white - hot"); -- from DictEng -lin white_lipped_A = compoundA (mkA "white - lipped"); -- from DictEng -lin white_pink_A = compoundA (mkA "white pink") ; -lin white_ribbed_A = compoundA (mkA "white ribbed") ; -lin white_seeded_A = compoundA (mkA "white seeded") ; -lin white_shoe_A = compoundA (mkA "white shoe") ; -lin white_streaked_A = compoundA (mkA "white streaked") ; -lin white_tie_A = compoundA (mkA "white tie") ; -lin white_collar_A = compoundA (mkA "white - collar"); -- from DictEng -lin white_hot_A = compoundA (mkA "white - hot"); -- from DictEng -lin white_lipped_A = compoundA (mkA "white - lipped"); -- from DictEng -lin white_livered_A = compoundA (mkA "white - livered"); -- from DictEng -lin whitebait_N = mkN "whitebait" ; -- from DictEng -lin whitecap_N = mkN "whitecap" ; -lin whitecup_N = mkN "whitecup" ; -lin whiteface_N = mkN "whiteface" ; -lin whitefish_N = mkN "whitefish" ; -lin whitefly_N = mkN "whitefly" ; -lin whitehead_N = mkN "whitehead" ; -lin whitelash_N = mkN "whitelash" ; -lin whiten_V = mkV "whiten" "whitens" "whitened" "whitened" "whitening"; -- from DictEng -lin whiten_V2 = mkV2 (mkV "whiten" "whitens" "whitened" "whitened" "whitening"); -- from DictEng -lin whiteness_N = mkN "whiteness" ; -- from DictEng -lin whitening_N = mkN "whitening" ; -- from DictEng -lin whiteout_N = mkN "whiteout" ; -lin whitethorn_N = mkN "whitethorn" "whitethorns"; -- from DictEng -lin whitewash_N = mkN "whitewash" ; -- from DictEng -lin whitewash_V2 = mkV2 (mkV "whitewash" "whitewashes" "whitewashed" "whitewashed" "whitewashing"); -- from DictEng -lin whitewashed_A = mkA "whitewashed" ; -lin whitey_N = mkN "whitey" ; -lin whither_Adv = mkAdv "whither"; -- from DictEng -lin whithersoever_Adv = mkAdv "whithersoever"; -- from DictEng -lin whiting_N = mkN "whiting" "whiting"; -- from DictEng -lin whitish_A = compoundA (mkA "whitish"); -- from DictEng -lin whitlow_N = mkN "whitlow" "whitlows"; -- from DictEng -lin whitlowwort_N = mkN "whitlowwort" ; -lin whitsun_N = mkN "whitsun" "whitsuns"; -- from DictEng -lin whitsuntide_N = mkN "whitsuntide" "whitsuntides"; -- from DictEng -lin whittle_V = mkV "whittle" "whittles" "whittled" "whittled" "whittling"; -- from DictEng -lin whittle_V2 = mkV2 (mkV "whittle" "whittles" "whittled" "whittled" "whittling"); -- from DictEng -lin whittler_N = mkN "whittler" ; -lin whiz_N = mkN "whiz" ; -- from DictEng -lin whiz_V = mkV "whiz" "IRREG" "IRREG" "IRREG" "IRREG"; -- from DictEng -lin whiz_V2 = mkV2 (mkV "whiz") ; -lin whizbang_N = mkN "whizbang" ; -lin whizz_kid_N = mkN "whizz - kid" "whizz - kids"; -- from DictEng -lin who_N = mkN "who" ; -- from DictEng -lin whodunit_N = mkN "whodunit" "whodunits"; -- from DictEng -lin whole_A = compoundA (mkA "whole"); -- from DictEng -lin whole_N = mkN "whole" "wholes"; -- from DictEng -lin whole_wheat_N = mkN "whole - wheat" ; -- from DictEng -lin wholehearted_A = compoundA (mkA "wholehearted"); -- from DictEng -lin wholeheartedly_Adv = mkAdv "wholeheartedly" ; -lin wholeheartedness_N = mkN "wholeheartedness" ; -- from DictEng -lin wholemeal_N = mkN "wholemeal" ; -- from DictEng -lin wholeness_N = mkN "wholeness" ; -lin wholesale_A = compoundA (mkA "wholesale"); -- from DictEng -lin wholesale_Adv = mkAdv "wholesale"; -- from DictEng -lin wholesale_N = mkN "wholesale" ; -- from DictEng -lin wholesale_V2 = mkV2 (mkV "wholesale"); -- from DictEng -lin wholesaler_N = mkN "wholesaler" "wholesalers"; -- from DictEng -lin wholesome_A = compoundA (mkA "wholesome"); -- from DictEng -lin wholesomely_Adv = mkAdv "wholesomely" ; -lin wholesomeness_N = mkN "wholesomeness" ; -lin wholly_Adv = mkAdv "wholly"; -- from DictEng -lin whoop_N = mkN "whoop" "whoops"; -- from DictEng -lin whoop_V = mkV "whoop" "whoops" "whooped" "whooped" "whooping"; -- from DictEng -lin whoop_V2 = mkV2 (mkV "whoop" "whoops" "whooped" "whooped" "whooping"); -- from DictEng -lin whoopee_N = mkN "whoopee" "whoopees"; -- from DictEng -lin whooper_N = mkN "whooper" ; -lin whooping_cough_N = mkN "whooping - cough" ; -- from DictEng -lin whoosh_V = mkV "whoosh" ; -lin whoosh_V2 = mkV2 (mkV "whoosh") ; -lin whop_V2 = mkV2 (mkV "whop" "whops" "whopped" "whopped" "whopping"); -- from DictEng -lin whopper_N = mkN "whopper" "whoppers"; -- from DictEng -lin whopping_A = compoundA (mkA "whopping"); -- from DictEng -lin whopping_Adv = mkAdv "whopping"; -- from DictEng -lin whore_N = mkN "whore" "whores"; -- from DictEng -lin whorehouse_N = mkN "whorehouse" ; -lin whoremaster_N = mkN "whoremaster" ; -lin whoremonger_N = mkN "whoremonger" "whoremongers"; -- from DictEng -lin whorl_N = mkN "whorl" "whorls"; -- from DictEng -lin whorled_A = compoundA (mkA "whorled"); -- from DictEng -lin whump_V = mkV "whump" ; -lin whump_V2 = mkV2 (mkV "whump") ; -lin why_Adv = mkAdv "why"; -- from DictEng -lin why_N = mkN "why" "whys"; -- from DictEng -lin whydah_N = mkN "whydah" ; -lin wi_N = mkN "wi" ; -- from DictEng -lin wick_N = mkN "wick" "wicks"; -- from DictEng -lin wicked_A = compoundA (mkA "wicked"); -- from DictEng -lin wickedly_Adv = mkAdv "wickedly" ; -lin wickedness_N = mkN "wickedness" ; -- from DictEng -lin wicker_N = mkN "wicker" ; -- from DictEng -lin wickerwork_N = mkN "wickerwork" ; -- from DictEng -lin wicket_N = mkN "wicket" "wickets"; -- from DictEng -lin wicket_keeper_N = mkN "wicket - keeper" "wicket - keepers"; -- from DictEng -lin wicket_door_N = mkN "wicket - door" "wicket - doors"; -- from DictEng -lin wicket_gate_N = mkN "wicket - gate" "wicket - gates"; -- from DictEng -lin wicket_keeper_N = mkN "wicket - keeper" "wicket - keepers"; -- from DictEng -lin wickiup_N = mkN "wickiup" ; -lin wide_A = mkA "wide" "wider"; -- from DictEng -lin wide_Adv = mkAdv "wide"; -- from DictEng -lin wide_eyed_A = compoundA (mkA "wide eyed") ; -lin wide_open_A = compoundA (mkA "wide open") ; -lin wide_ranging_A = compoundA (mkA "wide ranging") ; -lin wide_screen_A = compoundA (mkA "wide screen") ; -lin wide_awake_A = compoundA (mkA "wide - awake"); -- from DictEng -lin widely_Adv = mkAdv "widely" ; -lin widen_V = mkV "widen" "widens" "widened" "widened" "widening"; -- from DictEng -lin widen_V2 = mkV2 (mkV "widen" "widens" "widened" "widened" "widening"); -- from DictEng -lin wideness_N = mkN "wideness" ; -lin widening_N = mkN "widening" ; -lin widespread_A = compoundA (mkA "widespread"); -- from DictEng -lin widgeon_N = mkN "widgeon" "widgeons"; -- from DictEng -lin widow_N = mkN "widow" "widows"; -- from DictEng -lin widow_V2 = mkV2 (mkV "widow") ; -lin widowed_A = compoundA (mkA "widowed"); -- from DictEng -lin widower_N = mkN "widower" "widowers"; -- from DictEng -lin widowhood_N = mkN "widowhood" ; -- from DictEng -lin width_N = mkN "width" "widths"; -- from DictEng -lin wield_V2 = mkV2 (mkV "wield" "wields" "wielded" "wielded" "wielding"); -- from DictEng -lin wieldy_A = mkA "wieldy" ; -lin wiesenboden_N = mkN "wiesenboden" ; -lin wife_N = mkN "wife" "wives" {- FIXME: guessed plural form -}; -- from DictEng -lin wifelike_A = compoundA (mkA "wifelike"); -- from DictEng -lin wifely_A = mkA "wifely" "wifelier"; -- from DictEng -lin wig_N = mkN "wig" "wigs"; -- from DictEng -lin wigged_A = compoundA (mkA "wigged"); -- from DictEng -lin wigging_N = mkN "wigging" "wiggings"; -- from DictEng -lin wiggle_N = mkN "wiggle" "wiggles"; -- from DictEng -lin wiggle_V = mkV "wiggle" "wiggles" "wiggled" "wiggled" "wiggling"; -- from DictEng -lin wiggle_V2 = mkV2 (mkV "wiggle" "wiggles" "wiggled" "wiggled" "wiggling"); -- from DictEng -lin wiggler_N = mkN "wiggler" ; -lin wiggliness_N = mkN "wiggliness" ; -lin wiggly_A = mkA "wiggly" ; -lin wight_N = mkN "wight" "wights"; -- from DictEng -lin wigless_A = mkA "wigless" ; -lin wigmaker_N = mkN "wigmaker" ; -lin wigwam_N = mkN "wigwam" "wigwams"; -- from DictEng -lin wild_A = mkA "wild" "wilder"; -- from DictEng -lin wild_Adv = mkAdv "wild"; -- from DictEng -lin wild_N = mkN "wild" ; -lin wild_eyed_A = compoundA (mkA "wild eyed") ; -lin wild_china_tree_PN = mkPN "wild China tree" ; -lin wildcat_A = compoundA (mkA "wildcat"); -- from DictEng -lin wildcat_N = mkN "wildcat" ; -lin wildcatter_N = mkN "wildcatter" ; -lin wildebeest_N = mkN "wildebeest" "wildebeests"; -- from DictEng -lin wilderness_N = mkN "wilderness" "wildernesses"; -- from DictEng -lin wildfire_N = mkN "wildfire" ; -- from DictEng -lin wildflower_N = mkN "wildflower" ; -lin wildfowl_N = mkN "wildfowl" ; -lin wilding_N = mkN "wilding" ; -lin wildlife_N = mkN "wildlife" ; -lin wildly_Adv = mkAdv "wildly" ; -lin wildness_N = mkN "wildness" ; -- from DictEng -lin wile_N = mkN "wile" "wiles"; -- from DictEng -lin wilful_A = compoundA (mkA "wilful"); -- from DictEng -lin wilfulness_N = mkN "wilfulness" ; -- from DictEng -lin will_N = mkN "will" "wills"; -- from DictEng -lin will_V = mkV "will" "wills" "willed" "willed" "willing"; -- from DictEng -lin will_V2 = mkV2 (mkV "will" "wills" "willed" "willed" "willing"); -- from DictEng -lin will_o'_the_wisp_N = mkN "will - o'-the - wisp" "will - o'-the - wisps"; -- from DictEng -lin will_o'_the_wisp_N = mkN "will - o'-the - wisp" "will - o'-the - wisps"; -- from DictEng -lin willed_A = compoundA (mkA "willed"); -- from DictEng -lin willet_N = mkN "willet" ; -lin willful_A = compoundA (mkA "willful"); -- from DictEng -lin willfully_Adv = mkAdv "willfully" ; -lin willies_N = mkN "willies" ; -lin willing_A = compoundA (mkA "willing"); -- from DictEng -lin willing_and_able_A = compoundA (mkA "willing and able") ; -lin willingly_Adv = mkAdv "willingly" ; -lin willingness_N = mkN "willingness" ; -- from DictEng -lin willow_N = mkN "willow" "willows"; -- from DictEng -lin willow_pattern_N = mkN "willow - pattern" ; -- from DictEng -lin willow_tree_N = mkN "willow - tree" "willow - trees"; -- from DictEng -lin willowherb_N = mkN "willowherb" ; -lin willowware_N = mkN "willowware" ; -lin willowy_A = compoundA (mkA "willowy"); -- from DictEng -lin willpower_N = mkN "willpower" ; -- from DictEng -lin willy_nilly_Adv = mkAdv "willy - nilly"; -- from DictEng -lin willy_nilly_Adv = mkAdv "willy - nilly"; -- from DictEng -lin wilt_N = mkN "wilt" ; -lin wilt_V = mkV "wilt" "wilts" "wilted" "wilted" "wilting"; -- from DictEng -lin wilt_V2 = mkV2 (mkV "wilt" "wilts" "wilted" "wilted" "wilting"); -- from DictEng -lin wilton_N = mkN "wilton" "wiltons"; -- from DictEng -lin wily_A = mkA "wily" "wilier"; -- from DictEng -lin wimp_N = mkN "wimp" ; -lin wimpish_A = mkA "wimpish" ; -lin wimple_N = mkN "wimple" "wimples"; -- from DictEng -lin win_N = mkN "win" "wins"; -- from DictEng -lin win_V = IrregEng.win_V; -- from DictEng -lin win_V2 = mkV2 (IrregEng.win_V); -- from DictEng -lin wince_N = mkN "wince" "winces"; -- from DictEng -lin wince_V = mkV "wince" ; -lin wince_V2 = mkV2 (mkV "wince" "winces" "winced" "winced" "wincing"); -- from DictEng -lin wincey_N = mkN "wincey" ; -lin winceyette_N = mkN "winceyette" ; -- from DictEng -lin winch_N = mkN "winch" "winches"; -- from DictEng -lin winch_V2 = mkV2 (mkV "winch" "winches" "winched" "winched" "winching"); -- from DictEng -lin wind_N = mkN "wind" "winds"; -- from DictEng -lin wind_V = IrregEng.wind_V; -- from DictEng -lin wind_V2 = mkV2 (mkV "wind" "winds" "winded" "winded" "winding"); -- from DictEng -lin wind_gauge_N = mkN "wind - gauge" "wind - gauges"; -- from DictEng -lin wind_tunnel_N = mkN "wind - tunnel" "wind - tunnels"; -- from DictEng -lin windage_N = mkN "windage" ; -lin windbag_N = mkN "windbag" "windbags"; -- from DictEng -lin windblown_A = compoundA (mkA "windblown"); -- from DictEng -lin windbreak_N = mkN "windbreak" "windbreaks"; -- from DictEng -lin windbreaker_N = mkN "windbreaker" "windbreakers"; -- from DictEng -lin windburn_N = mkN "windburn" ; -lin windburned_A = mkA "windburned" ; -lin windcheater_N = mkN "windcheater" "windcheaters"; -- from DictEng -lin winder_N = mkN "winder" ; -lin windfall_N = mkN "windfall" "windfalls"; -- from DictEng -lin windflower_N = mkN "windflower" "windflowers"; -- from DictEng -lin windily_Adv = mkAdv "windily"; -- from DictEng -lin windiness_N = mkN "windiness" ; -- from DictEng -lin winding_sheet_N = mkN "winding - sheet" "winding - sheets"; -- from DictEng -lin windjammer_N = mkN "windjammer" "windjammers"; -- from DictEng -lin windlass_N = mkN "windlass" "windlasses"; -- from DictEng -lin windless_A = compoundA (mkA "windless"); -- from DictEng -lin windmill_N = mkN "windmill" "windmills"; -- from DictEng -lin window_N = mkN "window" "windows"; -- from DictEng -lin window_washing_N = mkN "window washing" ; -lin window_box_N = mkN "window - box" "window - boxes"; -- from DictEng -lin window_dressing_N = mkN "window - dressing" ; -- from DictEng -lin windowpane_N = mkN "windowpane" "windowpanes"; -- from DictEng -lin windowsill_N = mkN "windowsill" "windowsills"; -- from DictEng -lin windpipe_N = mkN "windpipe" "windpipes"; -- from DictEng -lin windscreen_N = mkN "windscreen" "windscreens"; -- from DictEng -lin windscreen_wiper_N = mkN "windscreen - wiper" "windscreen - wipers"; -- from DictEng -lin windshield_N = mkN "windshield" "windshields"; -- from DictEng -lin windsock_N = mkN "windsock" "windsocks"; -- from DictEng -lin windstorm_N = mkN "windstorm" ; -lin windswept_A = compoundA (mkA "windswept"); -- from DictEng -lin windup_A = mkA "windup" ; -lin windward_A = compoundA (mkA "windward"); -- from DictEng -lin windward_Adv = mkAdv "windward" ; -lin windward_N = mkN "windward" ; -- from DictEng -lin windy_A = mkA "windy" "windier"; -- from DictEng -lin wine_N = mkN "wine" "wines"; -- from DictEng -lin wine_V2 = mkV2 (mkV "wine" "wines" "wined" "wined" "wining"); -- from DictEng -lin wine_red_A = compoundA (mkA "wine red") ; -lin wineberry_N = mkN "wineberry" ; -lin wineglass_N = mkN "wineglass" "wineglasses"; -- from DictEng -lin winemaking_N = mkN "winemaking" ; -lin winepress_N = mkN "winepress" "winepresses"; -- from DictEng -lin winery_N = mkN "winery" ; -lin wineskin_N = mkN "wineskin" "wineskins"; -- from DictEng -lin wing_N = mkN "wing" "wings"; -- from DictEng -lin wing_V = mkV "wing" "wings" "winged" "winged" "winging"; -- from DictEng -lin wing_V2 = mkV2 (mkV "wing" "wings" "winged" "winged" "winging"); -- from DictEng -lin wing_commander_N = mkN "wing - commander" "wing - commanders"; -- from DictEng -lin wing_nut_N = mkN "wing - nut" "wing - nuts"; -- from DictEng -lin wing_screw_N = mkN "wing - screw" "wing - screws"; -- from DictEng -lin wingback_N = mkN "wingback" ; -lin winged_A = compoundA (mkA "winged"); -- from DictEng -lin winger_N = mkN "winger" "wingers"; -- from DictEng -lin wingless_A = compoundA (mkA "wingless"); -- from DictEng -lin winglike_A = mkA "winglike" ; -lin wingman_N = mkN "wingman" ; -lin wings_N = mkN "wings" ; -lin wingspan_N = mkN "wingspan" "wingspans"; -- from DictEng -lin wingspread_N = mkN "wingspread" "wingspreads"; -- from DictEng -lin wingstem_N = mkN "wingstem" ; -lin wink_N = mkN "wink" "winks"; -- from DictEng -lin wink_V = mkV "wink" "winks" "winked" "winked" "winking"; -- from DictEng -lin wink_V2 = mkV2 (mkV "wink" "winks" "winked" "winked" "winking"); -- from DictEng -lin winker_N = mkN "winker" ; -lin winkle_N = mkN "winkle" "winkles"; -- from DictEng -lin winkle_V2 = mkV2 (mkV "winkle" "winkles" "winkled" "winkled" "winkling"); -- from DictEng -lin winless_A = mkA "winless" ; -lin winner_N = mkN "winner" "winners"; -- from DictEng -lin winning_N = mkN "winning" ; -lin winning_post_N = mkN "winning - post" "winning - posts"; -- from DictEng -lin winnings_N = mkN "winnings" ; -lin winnow_N = mkN "winnow" ; -lin winnow_V2 = mkV2 (mkV "winnow" "winnows" "winnowed" "winnowed" "winnowing"); -- from DictEng -lin winsome_A = compoundA (mkA "winsome"); -- from DictEng -lin winsomely_Adv = mkAdv "winsomely" ; -lin winsomeness_N = mkN "winsomeness" ; -- from DictEng -lin winter_N = mkN "winter" "winters"; -- from DictEng -lin winter_V = mkV "winter" "winters" "wintered" "wintered" "wintering"; -- from DictEng -lin winter_blooming_A = compoundA (mkA "winter blooming") ; -lin wintergreen_N = mkN "wintergreen" ; -lin wintery_A = mkA "wintery" "winterier"; -- from DictEng -lin wintry_A = mkA "wintry" "wintrier"; -- from DictEng -lin winy_A = mkA "winy" ; -lin wipe_N = mkN "wipe" "wipes"; -- from DictEng -lin wipe_V = mkV "wipe" "wipes" "wiped" "wiped" "wiping"; -- from DictEng -lin wipe_V2 = mkV2 (mkV "wipe" "wipes" "wiped" "wiped" "wiping"); -- from DictEng -lin wipeout_N = mkN "wipeout" ; -lin wiper_N = mkN "wiper" "wipers"; -- from DictEng -lin wire_N = mkN "wire" "wires"; -- from DictEng -lin wire_V = mkV "wire" "wires" "wired" "wired" "wiring"; -- from DictEng -lin wire_V2 = mkV2 (mkV "wire" "wires" "wired" "wired" "wiring"); -- from DictEng -lin wire_haired_A = compoundA (mkA "wire - haired"); -- from DictEng -lin wire_puller_N = mkN "wire puller" ; -lin wire_haired_A = compoundA (mkA "wire - haired"); -- from DictEng -lin wired_A = mkA "wired" ; -lin wirehair_N = mkN "wirehair" ; -lin wireless_A = compoundA (mkA "wireless"); -- from DictEng -lin wireless_N = mkN "wireless" "wirelesses"; -- from DictEng -lin wireless_V2 = mkV2 (mkV "wireless") ; -lin wireman_N = mkN "wireman" ; -lin wirepuller_N = mkN "wirepuller" "wirepullers"; -- from DictEng -lin wirer_N = mkN "wirer" ; -lin wiretap_N = mkN "wiretap" ; -lin wirework_N = mkN "wirework" ; -lin wireworm_N = mkN "wireworm" "wireworms"; -- from DictEng -lin wiriness_N = mkN "wiriness" ; -lin wiring_N = mkN "wiring" ; -- from DictEng -lin wiry_A = mkA "wiry" "wirier"; -- from DictEng -lin wiry_stemmed_A = compoundA (mkA "wiry stemmed") ; -lin wisdom_N = mkN "wisdom" ; -- from DictEng -lin wisdom_tooth_N = mkN "wisdom - tooth" "wisdom - teeth"; -- from DictEng -lin wise_A = mkA "wise" "wiser"; -- from DictEng -lin wise_N = mkN "wise" "IRREG"; -- from DictEng -lin wiseacre_N = mkN "wiseacre" "wiseacres"; -- from DictEng -lin wisecrack_N = mkN "wisecrack" "wisecracks"; -- from DictEng -lin wisecrack_V = mkV "wisecrack" "wisecracks" "wisecracked" "wisecracked" "wisecracking"; -- from DictEng -lin wisely_Adv = mkAdv "wisely" ; -lin wisent_N = mkN "wisent" ; -lin wish_N = mkN "wish" "wishes"; -- from DictEng -lin wish_V = mkV "wish" "wishes" "wished" "wished" "wishing"; -- from DictEng -lin wish_V2 = mkV2 (mkV "wish" "wishes" "wished" "wished" "wishing"); -- from DictEng -lin wish_V2V = mkV2V (mkV "wish" "wishes" "wished" "wished" "wishing") noPrep to_Prep ; -- from DictEng -lin wish_VS = mkVS (mkV "wish" "wishes" "wished" "wished" "wishing"); -- from DictEng -lin wish_VV = mkVV (mkV "wish" "wishes" "wished" "wished" "wishing"); -- from DictEng -lin wish_wash_N = mkN "wish wash" ; -lin wishbone_N = mkN "wishbone" "wishbones"; -- from DictEng -lin wishful_A = compoundA (mkA "wishful"); -- from DictEng -lin wishfully_Adv = mkAdv "wishfully" ; -lin wishfulness_N = mkN "wishfulness" ; -lin wishing_cap_N = mkN "wishing - cap" "wishing - caps"; -- from DictEng -lin wishy_washy_A = compoundA (mkA "wishy - washy"); -- from DictEng -lin wisp_N = mkN "wisp" "wisps"; -- from DictEng -lin wisplike_A = mkA "wisplike" ; -lin wispy_A = mkA "wispy" "wispier"; -- from DictEng -lin wisteria_N = mkN "wisteria" "wisterias"; -- from DictEng -lin wistful_A = compoundA (mkA "wistful"); -- from DictEng -lin wistfully_Adv = mkAdv "wistfully" ; -lin wistfulness_N = mkN "wistfulness" ; -lin wit_N = mkN "wit" "wits"; -- from DictEng -lin witch_N = mkN "witch" "witches"; -- from DictEng -lin witch_hunt_N = mkN "witch - hunt" "witch - hunts"; -- from DictEng -lin witch_hunter_N = mkN "witch hunter" ; -lin witch_doctor_N = mkN "witch - doctor" "witch - doctors"; -- from DictEng -lin witch_elm_N = mkN "witch - elm" "witch - elms"; -- from DictEng -lin witch_hazel_N = mkN "witch - hazel" "witch - hazels"; -- from DictEng -lin witch_hunt_N = mkN "witch - hunt" "witch - hunts"; -- from DictEng -lin witchcraft_N = mkN "witchcraft" ; -- from DictEng -lin witchery_N = mkN "witchery" ; -- from DictEng -lin witchgrass_N = mkN "witchgrass" ; -lin witching_A = compoundA (mkA "witching"); -- from DictEng -lin witching_N = mkN "witching" ; -lin witchlike_A = mkA "witchlike" ; -lin with_Prep = mkPrep "with"; -- from DictEng -lin withal_Adv = mkAdv "withal"; -- from DictEng -lin withdraw_V = mkV "with" IrregEng.draw_V; -- from DictEng -lin withdraw_V2 = mkV2 (mkV "with" IrregEng.draw_V); -- from DictEng -lin withdrawal_N = mkN "withdrawal" "withdrawals"; -- from DictEng -lin withdrawer_N = mkN "withdrawer" ; -lin withe_N = mkN "withe" "withes"; -- from DictEng -lin wither_V = mkV "wither" "withers" "withered" "withered" "withering"; -- from DictEng -lin wither_V2 = mkV2 (mkV "wither" "withers" "withered" "withered" "withering"); -- from DictEng -lin witheringly_Adv = mkAdv "witheringly"; -- from DictEng -lin withers_N = mkN "withers" ; -lin withhold_V2 = mkV2 (IrregEng.withhold_V); -- from DictEng -lin withholder_N = mkN "withholder" ; -lin withholding_N = mkN "withholding" ; -lin within_Prep = mkPrep "within"; -- from DictEng -lin without_Prep = mkPrep "without"; -- from DictEng -lin without_a_stitch_A = compoundA (mkA "without a stitch") ; -lin withstand_V2 = mkV2 (IrregEng.withstand_V); -- from DictEng -lin withstander_N = mkN "withstander" ; -lin withy_N = mkN "withy" "withies"; -- from DictEng -lin witless_A = compoundA (mkA "witless"); -- from DictEng -lin witness_N = mkN "witness" "witnesses"; -- from DictEng -lin witness_V = mkV "witness" "witnesses" "witnessed" "witnessed" "witnessing"; -- from DictEng -lin witness_V2 = mkV2 (mkV "witness" "witnesses" "witnessed" "witnessed" "witnessing"); -- from DictEng -lin witness_box_N = mkN "witness - box" "witness - boxes"; -- from DictEng -lin witness_stand_N = mkN "witness - stand" "witness - stands"; -- from DictEng -lin wits_N = mkN "wits" ; -lin witticism_N = mkN "witticism" "witticisms"; -- from DictEng -lin wittily_Adv = mkAdv "wittily"; -- from DictEng -lin witting_A = mkA "witting" ; -lin wittingly_Adv = mkAdv "wittingly"; -- from DictEng -lin wittol_N = mkN "wittol" ; -lin witty_A = mkA "witty" "wittier"; -- from DictEng -lin wive_V = mkV "wive" "wives" "wived" "wived" "wiving"; -- from DictEng -lin wive_V2 = mkV2 (mkV "wive" "wives" "wived" "wived" "wiving"); -- from DictEng -lin wizard_A = compoundA (mkA "wizard"); -- from DictEng -lin wizard_N = mkN "wizard" "wizards"; -- from DictEng -lin wizardry_N = mkN "wizardry" ; -- from DictEng -lin wizened_A = compoundA (mkA "wizened"); -- from DictEng -lin wk_N = mkN "wk" "wk"; -- from DictEng -lin woad_N = mkN "woad" ; -- from DictEng -lin wobble_N = mkN "wobble" ; -lin wobble_V = mkV "wobble" "wobbles" "wobbled" "wobbled" "wobbling"; -- from DictEng -lin wobble_V2 = mkV2 (mkV "wobble" "wobbles" "wobbled" "wobbled" "wobbling"); -- from DictEng -lin wobbler_N = mkN "wobbler" "wobblers"; -- from DictEng -lin wobbling_A = mkA "wobbling" ; -lin wobbly_A = mkA "wobbly" "wobblier"; -- from DictEng -lin woe_N = mkN "woe" "woes"; -- from DictEng -lin woebegone_A = compoundA (mkA "woebegone"); -- from DictEng -lin woeful_A = compoundA (mkA "woeful"); -- from DictEng -lin wog_N = mkN "wog" ; -lin wok_N = mkN "wok" ; -lin wold_N = mkN "wold" "wolds"; -- from DictEng -lin wolf_N = mkN "wolf" "wolves" {- FIXME: guessed plural form -}; -- from DictEng -lin wolf_V2 = mkV2 (mkV "wolf" "wolfs" "wolfed" "wolfed" "wolfing"); -- from DictEng -lin wolf's_bane_N = mkN "wolf's - bane" ; -- from DictEng -lin wolf_sized_A = compoundA (mkA "wolf sized") ; -lin wolf_cub_N = mkN "wolf - cub" "wolf - cubs"; -- from DictEng -lin wolffish_N = mkN "wolffish" ; -lin wolfhound_N = mkN "wolfhound" "wolfhounds"; -- from DictEng -lin wolfish_A = compoundA (mkA "wolfish"); -- from DictEng -lin wolfishly_Adv = mkAdv "wolfishly" ; -lin wolflike_A = mkA "wolflike" ; -lin wolfram_N = mkN "wolfram" ; -- from DictEng -lin wolframite_N = mkN "wolframite" ; -lin wolfsbane_N = mkN "wolfsbane" ; -lin wollastonite_N = mkN "wollastonite" ; -lin wolverine_N = mkN "wolverine" ; -lin woman_N = mkN "woman" "women" {- FIXME: guessed plural form -}; -- from DictEng -lin womanhood_N = mkN "womanhood" ; -- from DictEng -lin womanish_A = compoundA (mkA "womanish"); -- from DictEng -lin womanize_V = mkV "womanize" "womanizes" "womanized" "womanized" "womanizing"; -- from DictEng -lin womanizer_N = mkN "womanizer" "womanizers"; -- from DictEng -lin womankind_N = mkN "womankind" ; -- from DictEng -lin womanlike_A = compoundA (mkA "womanlike"); -- from DictEng -lin womanliness_N = mkN "womanliness" ; -lin womanly_A = mkA "womanly" "womanlier"; -- from DictEng -lin womb_N = mkN "womb" "wombs"; -- from DictEng -lin wombat_N = mkN "wombat" "wombats"; -- from DictEng -lin won_A = mkA "won" ; -lin wonder_N = mkN "wonder" "wonders"; -- from DictEng -lin wonder_V = mkV "wonder" "wonders" "wondered" "wondered" "wondering"; -- from DictEng -lin wonder_V2 = mkV2 (mkV "wonder" "wonders" "wondered" "wondered" "wondering"); -- from DictEng -lin wonder_VS = mkVS (mkV "wonder" "wonders" "wondered" "wondered" "wondering"); -- from DictEng -lin wonder_struck_A = compoundA (mkA "wonder - struck"); -- from DictEng -lin wonder_struck_A = compoundA (mkA "wonder - struck"); -- from DictEng -lin wonderer_N = mkN "wonderer" ; -lin wonderful_A = compoundA (mkA "wonderful"); -- from DictEng -lin wonderfully_Adv = mkAdv "wonderfully" ; -lin wonderingly_Adv = mkAdv "wonderingly"; -- from DictEng -lin wonderland_N = mkN "wonderland" "wonderlands"; -- from DictEng -lin wonderment_N = mkN "wonderment" ; -- from DictEng -lin wonderworking_A = mkA "wonderworking" ; -lin wondrous_A = compoundA (mkA "wondrous"); -- from DictEng -lin wondrous_Adv = mkAdv "wondrous"; -- from DictEng -lin wonky_A = compoundA (mkA "wonky"); -- from DictEng -lin wont_A = compoundA (mkA "wont"); -- from DictEng -lin wont_N = mkN "wont" ; -- from DictEng -lin wonted_A = compoundA (mkA "wonted"); -- from DictEng -lin woo_V2 = mkV2 (mkV "woo" "woos" "wooed" "wooed" "wooing"); -- from DictEng -lin wood_N = mkN "wood" "woods"; -- from DictEng -lin wood_fired_A = compoundA (mkA "wood fired") ; -lin wood_frog_N = mkN "wood frog" ; -lin wood_block_N = mkN "wood - block" "wood - blocks"; -- from DictEng -lin wood_pulp_N = mkN "wood - pulp" ; -- from DictEng -lin woodbine_N = mkN "woodbine" "woodbines"; -- from DictEng -lin woodborer_N = mkN "woodborer" ; -lin woodcarver_N = mkN "woodcarver" ; -lin woodcarving_N = mkN "woodcarving" ; -lin woodcock_N = mkN "woodcock" "woodcocks"; -- from DictEng -lin woodcraft_N = mkN "woodcraft" "woodcrafts"; -- from DictEng -lin woodcut_N = mkN "woodcut" "woodcuts"; -- from DictEng -lin woodcutter_N = mkN "woodcutter" "woodcutters"; -- from DictEng -lin wooded_A = compoundA (mkA "wooded"); -- from DictEng -lin wooden_A = compoundA (mkA "wooden"); -- from DictEng -lin woodenheaded_A = compoundA (mkA "woodenheaded"); -- from DictEng -lin woodenness_N = mkN "woodenness" ; -lin woodenware_N = mkN "woodenware" ; -lin woodhewer_N = mkN "woodhewer" ; -lin woodiness_N = mkN "woodiness" ; -lin woodland_N = mkN "woodland" "woodlands"; -- from DictEng -lin woodlouse_N = mkN "woodlouse" "woodlice" {- FIXME: guessed plural form -}; -- from DictEng -lin woodman_N = mkN "woodman" "woodmen" {- FIXME: guessed plural form -}; -- from DictEng -lin woodpecker_N = mkN "woodpecker" "woodpeckers"; -- from DictEng -lin woodpile_N = mkN "woodpile" "woodpiles"; -- from DictEng -lin woodruff_N = mkN "woodruff" ; -lin woodscrew_N = mkN "woodscrew" ; -lin woodshed_N = mkN "woodshed" "woodsheds"; -- from DictEng -lin woodsia_N = mkN "woodsia" ; -lin woodsman_N = mkN "woodsman" "woodsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin woodsy_A = mkA "woodsy" ; -lin woodwaxen_N = mkN "woodwaxen" ; -lin woodwind_N = mkN "woodwind" ; -- from DictEng -lin woodwork_N = mkN "woodwork" ; -- from DictEng -lin woodworker_N = mkN "woodworker" ; -lin woodworm_N = mkN "woodworm" ; -- from DictEng -lin woody_A = mkA "woody" "woodier"; -- from DictEng -lin woody_stemmed_A = compoundA (mkA "woody stemmed") ; -lin wooer_N = mkN "wooer" "wooers"; -- from DictEng -lin woof_N = mkN "woof" "woofs"; -- from DictEng -lin woof_V = mkV "woof" ; -lin woofer_N = mkN "woofer" "woofers"; -- from DictEng -lin wool_N = mkN "wool" "wools"; -- from DictEng -lin woolen_A = compoundA (mkA "woolen"); -- from DictEng -lin woolgathering_A = compoundA (mkA "woolgathering"); -- from DictEng -lin woolgathering_N = mkN "woolgathering" ; -- from DictEng -lin woollen_A = compoundA (mkA "woollen"); -- from DictEng -lin woolly_A = mkA "woolly" "woollier"; -- from DictEng -lin woolly_stemmed_A = compoundA (mkA "woolly stemmed") ; -lin wooly_A = mkA "wooly" "woolier"; -- from DictEng -lin wooly_N = mkN "wooly" "woolies"; -- from DictEng -lin wop_N = mkN "wop" ; -lin word_N = mkN "word" "words"; -- from DictEng -lin word_V2 = mkV2 (mkV "word" "words" "worded" "worded" "wording"); -- from DictEng -lin word_painter_N = mkN "word - painter" "word - painters"; -- from DictEng -lin word_division_N = mkN "word - division" ; -- from DictEng -lin word_painter_N = mkN "word - painter" "word - painters"; -- from DictEng -lin word_perfect_A = compoundA (mkA "word - perfect"); -- from DictEng -lin word_picture_N = mkN "word - picture" "word - pictures"; -- from DictEng -lin word_splitting_N = mkN "word - splitting" ; -- from DictEng -lin wordbook_N = mkN "wordbook" "wordbooks"; -- from DictEng -lin wordily_Adv = mkAdv "wordily"; -- from DictEng -lin wordiness_N = mkN "wordiness" ; -- from DictEng -lin wording_N = mkN "wording" "IRREG"; -- from DictEng -lin wordless_A = compoundA (mkA "wordless"); -- from DictEng -lin wordmonger_N = mkN "wordmonger" ; -lin wordnet_N = mkN "wordnet" ; -lin words_N = mkN "words" ; -lin wordsmith_N = mkN "wordsmith" ; -lin wordy_A = mkA "wordy" "wordier"; -- from DictEng -lin work_N = mkN "work" "works"; -- from DictEng -lin work_V = mkV "work" "works" "worked" "worked" "working"; -- from DictEng -lin work_V2 = mkV2 (mkV "work" "works" "worked" "worked" "working"); -- from DictEng -lin work_VV = mkVV (mkV "work" "works" "worked" "worked" "working"); -- from DictEng -lin work_clothing_N = mkN "work clothing" ; -lin work_in_N = mkN "work - in" "work - ins"; -- from DictEng -lin work_shirt_N = mkN "work shirt" ; -lin work_in_N = mkN "work - in" "work - ins"; -- from DictEng -lin work_out_N = mkN "work - out" "work - outs"; -- from DictEng -lin work_study_N = mkN "work - study" "work - studies"; -- from DictEng -lin workable_A = compoundA (mkA "workable"); -- from DictEng -lin workaday_A = compoundA (mkA "workaday"); -- from DictEng -lin workaholic_N = mkN "workaholic" ; -lin workaholism_N = mkN "workaholism" ; -lin workbag_N = mkN "workbag" "workbags"; -- from DictEng -lin workbasket_N = mkN "workbasket" "workbaskets"; -- from DictEng -lin workbench_N = mkN "workbench" "workbenches"; -- from DictEng -lin workboard_N = mkN "workboard" ; -lin workbook_N = mkN "workbook" "workbooks"; -- from DictEng -lin workbox_N = mkN "workbox" "workboxes"; -- from DictEng -lin workday_N = mkN "workday" "workdays"; -- from DictEng -lin worker_N = mkN "worker" "workers"; -- from DictEng -lin workhorse_N = mkN "workhorse" ; -lin workhouse_N = mkN "workhouse" "IRREG"; -- from DictEng -lin working_A = compoundA (mkA "working"); -- from DictEng -lin working_N = mkN "working" "workings"; -- from DictEng -lin working_class_A = compoundA (mkA "working - class"); -- from DictEng -lin working_out_N = mkN "working - out" ; -- from DictEng -lin workload_N = mkN "workload" ; -lin workman_N = mkN "workman" "workmen" {- FIXME: guessed plural form -}; -- from DictEng -lin workmanlike_A = compoundA (mkA "workmanlike"); -- from DictEng -lin workmanship_N = mkN "workmanship" ; -- from DictEng -lin workmate_N = mkN "workmate" "workmates"; -- from DictEng -lin workpiece_N = mkN "workpiece" ; -lin workplace_N = mkN "workplace" ; -lin workroom_N = mkN "workroom" "workrooms"; -- from DictEng -lin works_N = mkN "works" ; -lin worksheet_N = mkN "worksheet" ; -lin workshop_N = mkN "workshop" "workshops"; -- from DictEng -lin workshy_A = compoundA (mkA "workshy"); -- from DictEng -lin workspace_N = mkN "workspace" ; -lin workstation_N = mkN "workstation" ; -lin worktable_N = mkN "worktable" "worktables"; -- from DictEng -lin workwear_N = mkN "workwear" ; -lin workweek_N = mkN "workweek" ; -lin world_N = mkN "world" "worlds"; -- from DictEng -lin world_weariness_N = mkN "world weariness" ; -lin world_weary_A = compoundA (mkA "world - weary"); -- from DictEng -lin worldliness_N = mkN "worldliness" ; -- from DictEng -lin worldling_N = mkN "worldling" ; -lin worldly_A = mkA "worldly" "worldlier"; -- from DictEng -lin worldly_wise_A = compoundA (mkA "worldly wise") ; -lin worldwide_A = compoundA (mkA "worldwide"); -- from DictEng -lin worm_N = mkN "worm" "worms"; -- from DictEng -lin worm_V2 = mkV2 (mkV "worm" "worms" "wormed" "wormed" "worming"); -- from DictEng -lin worm_eaten_A = compoundA (mkA "worm - eaten"); -- from DictEng -lin worm_gear_N = mkN "worm - gear" "worm - gears"; -- from DictEng -lin wormcast_N = mkN "wormcast" "wormcasts"; -- from DictEng -lin wormhole_N = mkN "wormhole" "wormholes"; -- from DictEng -lin wormwood_N = mkN "wormwood" ; -- from DictEng -lin wormy_A = mkA "wormy" "wormier"; -- from DictEng -lin worn_A = mkA "worn" ; -lin worried_A = compoundA (mkA "worried"); -- from DictEng -lin worriedly_Adv = mkAdv "worriedly" ; -lin worrier_N = mkN "worrier" ; -lin worrisome_A = compoundA (mkA "worrisome"); -- from DictEng -lin worry_N = mkN "worry" "worries"; -- from DictEng -lin worry_V = mkV "worry" "worries" "worried" "worried" "worrying"; -- from DictEng -lin worry_V2 = mkV2 (mkV "worry" "worries" "worried" "worried" "worrying"); -- from DictEng -lin worry_VS = mkVS (mkV "worry" "worries" "worried" "worried" "worrying"); -- from DictEng -lin worrying_A = compoundA (mkA "worrying"); -- from DictEng -lin worrying_N = mkN "worrying" ; -lin worryingly_Adv = mkAdv "worryingly" ; -lin worse_A = mkA "worse" ; -lin worse_Adv = mkAdv "worse"; -- from DictEng -lin worse_N = mkN "worse" ; -- from DictEng -lin worsen_V = mkV "worsen" "worsens" "worsened" "worsened" "worsening"; -- from DictEng -lin worsen_V2 = mkV2 (mkV "worsen" "worsens" "worsened" "worsened" "worsening"); -- from DictEng -lin worsened_A = mkA "worsened" ; -lin worsening_A = mkA "worsening" ; -lin worsening_N = mkN "worsening" ; -lin worship_N = mkN "worship" ; -- from DictEng -lin worship_V = mkV "worship" "worships" "worshipped" "worshipped" "worshipping"; -- from DictEng -lin worship_V2 = mkV2 (mkV "worship" "worships" "worshipped" "worshipped" "worshipping"); -- from DictEng -lin worshiper_N = mkN "worshiper" ; -lin worshipful_A = compoundA (mkA "worshipful"); -- from DictEng -lin worshipper_N = mkN "worshipper" "worshippers"; -- from DictEng -lin worst_A = mkA "worst" ; -lin worst_Adv = mkAdv "worst"; -- from DictEng -lin worst_N = mkN "worst" ; -- from DictEng -lin worst_V2 = mkV2 (mkV "worst" "worsts" "worsted" "worsted" "worsting"); -- from DictEng -lin worsted_N = mkN "worsted" ; -- from DictEng -lin wort_N = mkN "wort" ; -lin worth_A = compoundA (mkA "worth"); -- from DictEng -lin worth_N = mkN "worth" ; -- from DictEng -lin worth_Prep = mkPrep "worth"; -- from DictEng -lin worthily_Adv = mkAdv "worthily"; -- from DictEng -lin worthiness_N = mkN "worthiness" ; -- from DictEng -lin worthless_A = compoundA (mkA "worthless"); -- from DictEng -lin worthlessly_Adv = mkAdv "worthlessly" ; -lin worthlessness_N = mkN "worthlessness" ; -- from DictEng -lin worthwhile_A = compoundA (mkA "worthwhile"); -- from DictEng -lin worthwhileness_N = mkN "worthwhileness" ; -lin worthy_A = mkA "worthy" "worthier"; -- from DictEng -lin worthy_N = mkN "worthy" "worthies"; -- from DictEng -lin would_be_A = compoundA (mkA "would - be"); -- from DictEng -lin wound_A = mkA "wound" ; -lin wound_N = mkN "wound" "wounds"; -- from DictEng -lin wound_V2 = mkV2 (mkV "wound" "wounds" "wounded" "wounded" "wounding"); -- from DictEng -lin wounded_N = mkN "wounded" ; -lin woven_A = mkA "woven" ; -lin wow_N = mkN "wow" "wows"; -- from DictEng -lin wow_V2 = mkV2 (mkV "wow") ; -lin wpb_N = mkN "wpb" ; -- from DictEng -lin wpm_N = mkN "wpm" "wpm"; -- from DictEng -lin wrac_N = mkN "wrac" ; -- from DictEng -lin wrack_N = mkN "wrack" ; -- from DictEng -lin wrack_V2 = mkV2 (mkV "wrack"); -- from DictEng -lin wraf_N = mkN "wraf" ; -- from DictEng -lin wraith_N = mkN "wraith" "wraiths"; -- from DictEng -lin wrangle_N = mkN "wrangle" "wrangles"; -- from DictEng -lin wrangle_V = mkV "wrangle" "wrangles" "wrangled" "wrangled" "wrangling"; -- from DictEng -lin wrangler_N = mkN "wrangler" ; -lin wrap_N = mkN "wrap" "wraps"; -- from DictEng -lin wrap_V = mkV "wrap" "wraps" "wrapped" "wrapped" "wrapping"; -- from DictEng -lin wrap_V2 = mkV2 (mkV "wrap" "wraps" "wrapped" "wrapped" "wrapping"); -- from DictEng -lin wraparound_N = mkN "wraparound" ; -lin wrapped_A = mkA "wrapped" ; -lin wrapper_N = mkN "wrapper" "wrappers"; -- from DictEng -lin wrapping_N = mkN "wrapping" "wrappings"; -- from DictEng -lin wrasse_N = mkN "wrasse" ; -lin wrath_N = mkN "wrath" ; -- from DictEng -lin wrathful_A = compoundA (mkA "wrathful"); -- from DictEng -lin wrathfully_Adv = mkAdv "wrathfully" ; -lin wreak_V2 = mkV2 (mkV "wreak" "wreaks" "wreaked" "wreaked" "wreaking"); -- from DictEng -lin wreath_N = mkN "wreath" "wreaths"; -- from DictEng -lin wreathe_V = mkV "wreathe" "wreathes" "wreathed" "wreathed" "wreathing"; -- from DictEng -lin wreathe_V2 = mkV2 (mkV "wreathe" "wreathes" "wreathed" "wreathed" "wreathing"); -- from DictEng -lin wreck_N = mkN "wreck" "wrecks"; -- from DictEng -lin wreck_V2 = mkV2 (mkV "wreck" "wrecks" "wrecked" "wrecked" "wrecking"); -- from DictEng -lin wreckage_N = mkN "wreckage" ; -- from DictEng -lin wrecked_A = mkA "wrecked" ; -lin wrecker_N = mkN "wrecker" "wreckers"; -- from DictEng -lin wren_N = mkN "wren" "wrens"; -- from DictEng -lin wren_tit_N = mkN "wren tit" ; -lin wrench_N = mkN "wrench" "wrenches"; -- from DictEng -lin wrench_V2 = mkV2 (mkV "wrench" "wrenches" "wrenched" "wrenched" "wrenching"); -- from DictEng -lin wrest_V2 = mkV2 (mkV "wrest" "wrests" "wrested" "wrested" "wresting"); -- from DictEng -lin wrester_N = mkN "wrester" ; -lin wrestle_N = mkN "wrestle" "wrestles"; -- from DictEng -lin wrestle_V = mkV "wrestle" "wrestles" "wrestled" "wrestled" "wrestling"; -- from DictEng -lin wrestle_V2 = mkV2 (mkV "wrestle" "wrestles" "wrestled" "wrestled" "wrestling"); -- from DictEng -lin wrestler_N = mkN "wrestler" "wrestlers"; -- from DictEng -lin wrestling_N = mkN "wrestling" ; -lin wretch_N = mkN "wretch" "wretches"; -- from DictEng -lin wretched_A = compoundA (mkA "wretched"); -- from DictEng -lin wretchedly_Adv = mkAdv "wretchedly" ; -lin wretchedness_N = mkN "wretchedness" ; -- from DictEng -lin wrick_N = mkN "wrick" "wricks"; -- from DictEng -lin wrick_V2 = mkV2 (mkV "wrick" "wricks" "wricked" "wricked" "wricking"); -- from DictEng -lin wriggle_N = mkN "wriggle" "wriggles"; -- from DictEng -lin wriggle_V = mkV "wriggle" "wriggles" "wriggled" "wriggled" "wriggling"; -- from DictEng -lin wriggle_V2 = mkV2 (mkV "wriggle" "wriggles" "wriggled" "wriggled" "wriggling"); -- from DictEng -lin wriggler_N = mkN "wriggler" "wrigglers"; -- from DictEng -lin wright_N = mkN "wright" "wrights"; -- from DictEng -lin wring_N = mkN "wring" "wrings"; -- from DictEng -lin wring_V2 = mkV2 (IrregEng.wring_V); -- from DictEng -lin wringer_N = mkN "wringer" "wringers"; -- from DictEng -lin wrinkle_N = mkN "wrinkle" "wrinkles"; -- from DictEng -lin wrinkle_V = mkV "wrinkle" "wrinkles" "wrinkled" "wrinkled" "wrinkling"; -- from DictEng -lin wrinkle_V2 = mkV2 (mkV "wrinkle" "wrinkles" "wrinkled" "wrinkled" "wrinkling"); -- from DictEng -lin wrinkled_A = mkA "wrinkled" ; -lin wrinkly_A = mkA "wrinkly" "wrinklier"; -- from DictEng -lin wrist_N = mkN "wrist" "wrists"; -- from DictEng -lin wristband_N = mkN "wristband" "wristbands"; -- from DictEng -lin wristlet_N = mkN "wristlet" "wristlets"; -- from DictEng -lin wristwatch_N = mkN "wristwatch" "wristwatches"; -- from DictEng -lin writ_N = mkN "writ" "writs"; -- from DictEng -lin writ_large_A = compoundA (mkA "writ large"); -- from DictEng -lin write_V = IrregEng.write_V; -- from DictEng -lin write_V2 = mkV2 (IrregEng.write_V); -- from DictEng -lin write_VS = mkVS (IrregEng.write_V); -- from DictEng -lin write_VV = mkVV (IrregEng.write_V); -- from DictEng -lin write_in_N = mkN "write in" ; -lin write_off_N = mkN "write - off" "write - offs"; -- from DictEng -lin write_off_N = mkN "write - off" "write - offs"; -- from DictEng -lin write_up_N = mkN "write - up" "write - ups"; -- from DictEng -lin writer_N = mkN "writer" "writers"; -- from DictEng -lin writhe_V = mkV "writhe" "writhes" "writhed" "writhed" "writhing"; -- from DictEng -lin writing_N = mkN "writing" "writings"; -- from DictEng -lin writing_desk_N = mkN "writing - desk" "writing - desks"; -- from DictEng -lin writing_ink_N = mkN "writing - ink" "writing - inks"; -- from DictEng -lin writing_paper_N = mkN "writing - paper" ; -- from DictEng -lin written_A = mkA "written" ; -lin wrns_N = mkN "wrns" ; -- from DictEng -lin wrong_A = compoundA (mkA "wrong"); -- from DictEng -lin wrong_Adv = mkAdv "wrong"; -- from DictEng -lin wrong_N = mkN "wrong" "wrongs"; -- from DictEng -lin wrong_V2 = mkV2 (mkV "wrong" "wrongs" "wronged" "wronged" "wronging"); -- from DictEng -lin wrong_side_out_A = compoundA (mkA "wrong side out") ; -lin wrong_headed_A = compoundA (mkA "wrong - headed"); -- from DictEng -lin wrongdoer_N = mkN "wrongdoer" "wrongdoers"; -- from DictEng -lin wrongdoing_N = mkN "wrongdoing" "wrongdoings"; -- from DictEng -lin wrongful_A = compoundA (mkA "wrongful"); -- from DictEng -lin wrongfully_Adv = mkAdv "wrongfully" ; -lin wrongheaded_A = mkA "wrongheaded" ; -lin wrongheadedly_Adv = mkAdv "wrongheadedly" ; -lin wrongly_Adv = mkAdv "wrongly" ; -lin wrongness_N = mkN "wrongness" ; -lin wroth_A = compoundA (mkA "wroth"); -- from DictEng -lin wry_A = mkA "wry" "wrier"; -- from DictEng -lin wryly_Adv = mkAdv "wryly" ; -lin wrymouth_N = mkN "wrymouth" ; -lin wryneck_N = mkN "wryneck" ; -lin wt_N = mkN "wt" ; -- from DictEng -lin wulfenite_N = mkN "wulfenite" ; -lin wurtzite_N = mkN "wurtzite" ; -lin wyvern_N = mkN "wyvern" ; -lin x_axis_N = mkN "x axis" ; -lin x_ray_N = mkN "x - ray" "x - rays"; -- from DictEng -lin x_ray_V2 = mkV2 (mkV "x - ray" "x - rays" "x - rayed" "x - rayed" "x - raying"); -- from DictEng -lin xanthate_N = mkN "xanthate" ; -lin xanthelasma_N = mkN "xanthelasma" ; -lin xanthine_N = mkN "xanthine" ; -lin xanthoma_N = mkN "xanthoma" ; -lin xanthomatosis_N = mkN "xanthomatosis" ; -lin xanthomonad_N = mkN "xanthomonad" ; -lin xanthophyll_N = mkN "xanthophyll" ; -lin xanthopsia_N = mkN "xanthopsia" ; -lin xanthosis_N = mkN "xanthosis" ; -lin xenogeneic_A = mkA "xenogeneic" ; -lin xenolith_N = mkN "xenolith" ; -lin xenon_N = mkN "xenon" ; -lin xenophobia_N = mkN "xenophobia" ; -- from DictEng -lin xenophobic_A = mkA "xenophobic" ; -lin xenotime_N = mkN "xenotime" ; -lin xenotransplant_N = mkN "xenotransplant" ; -lin xeranthemum_N = mkN "xeranthemum" ; -lin xeric_A = mkA "xeric" ; -lin xeroderma_N = mkN "xeroderma" ; -lin xerographic_A = mkA "xerographic" ; -lin xerography_N = mkN "xerography" ; -lin xerophthalmia_N = mkN "xerophthalmia" ; -lin xerophytic_A = mkA "xerophytic" ; -lin xeroradiography_N = mkN "xeroradiography" ; -lin xerostomia_N = mkN "xerostomia" ; -lin xerox_N = mkN "xerox" "xeroxes"; -- from DictEng -lin xerox_V2 = mkV2 (mkV "xerox" "xeroxes" "xeroxed" "xeroxed" "xeroxing"); -- from DictEng -lin xi_N = mkN "xi" ; -lin xmas_N = mkN "xmas" "xmases"; -- from DictEng -lin xylem_N = mkN "xylem" ; -lin xylene_N = mkN "xylene" ; -lin xylophone_N = mkN "xylophone" "xylophones"; -- from DictEng -lin xylophonist_N = mkN "xylophonist" ; -lin xylosma_N = mkN "xylosma" ; -lin y_axis_N = mkN "y axis" ; -lin yacca_N = mkN "yacca" ; -lin yacht_N = mkN "yacht" "yachts"; -- from DictEng -lin yacht_V = mkV "yacht" "yachts" "yachted" "yachted" "yachting"; -- from DictEng -lin yacht_V2 = mkV2 (mkV "yacht") ; -lin yacht_club_N = mkN "yacht - club" "yacht - clubs"; -- from DictEng -lin yachting_N = mkN "yachting" ; -- from DictEng -lin yachtsman_N = mkN "yachtsman" "yachtsmen" {- FIXME: guessed plural form -}; -- from DictEng -lin yagi_N = mkN "yagi" ; -lin yahoo_N = mkN "yahoo" "yahoos"; -- from DictEng -lin yak_N = mkN "yak" "yaks"; -- from DictEng -lin yak_V = mkV "yak" ; -lin yakuza_N = mkN "yakuza" ; -lin yam_N = mkN "yam" "yams"; -- from DictEng -lin yammer_V = mkV "yammer" "yammers" "yammered" "yammered" "yammering"; -- from DictEng -lin yammer_V2 = mkV2 (mkV "yammer") ; -lin yang_N = mkN "yang" ; -lin yank_N = mkN "yank" "yanks"; -- from DictEng -lin yank_V2 = mkV2 (mkV "yank" "yanks" "yanked" "yanked" "yanking"); -- from DictEng -lin yankee_N = mkN "yankee" "yankees"; -- from DictEng -lin yanker_N = mkN "yanker" ; -lin yap_N = mkN "yap" "yaps"; -- from DictEng -lin yap_V = mkV "yap" "yaps" "yapped" "yapped" "yapping"; -- from DictEng -lin yap_V2 = mkV2 (mkV "yap") ; -lin yard_N = mkN "yard" "yards"; -- from DictEng -lin yard_measure_N = mkN "yard - measure" "yard - measures"; -- from DictEng -lin yardage_N = mkN "yardage" ; -lin yardarm_N = mkN "yardarm" "yardarms"; -- from DictEng -lin yarder_N = mkN "yarder" ; -lin yardgrass_N = mkN "yardgrass" ; -lin yardie_N = mkN "yardie" ; -lin yardman_N = mkN "yardman" ; -lin yardmaster_N = mkN "yardmaster" ; -lin yardstick_N = mkN "yardstick" "yardsticks"; -- from DictEng -lin yarmulke_N = mkN "yarmulke" ; -lin yarn_N = mkN "yarn" "yarns"; -- from DictEng -lin yarn_V = mkV "yarn" "yarns" "yarned" "yarned" "yarning"; -- from DictEng -lin yarn_spinning_A = compoundA (mkA "yarn spinning") ; -lin yarrow_N = mkN "yarrow" ; -- from DictEng -lin yashmak_N = mkN "yashmak" "yashmaks"; -- from DictEng -lin yataghan_N = mkN "yataghan" ; -lin yautia_N = mkN "yautia" ; -lin yaw_N = mkN "yaw" "yaws"; -- from DictEng -lin yaw_V = mkV "yaw" "yaws" "yawed" "yawed" "yawing"; -- from DictEng -lin yawl_N = mkN "yawl" "yawls"; -- from DictEng -lin yawn_N = mkN "yawn" "yawns"; -- from DictEng -lin yawn_V = mkV "yawn" "yawns" "yawned" "yawned" "yawning"; -- from DictEng -lin yawn_V2 = mkV2 (mkV "yawn") ; -lin yawner_N = mkN "yawner" ; -lin yawning_A = mkA "yawning" ; -lin yaws_N = mkN "yaws" ; -lin yea_Adv = mkAdv "yea"; -- from DictEng -lin yea_N = mkN "yea" "yeas"; -- from DictEng -lin yeah_Adv = mkAdv "yeah"; -- from DictEng -lin year_N = mkN "year" "years"; -- from DictEng -lin year_end_A = compoundA (mkA "year end") ; -lin year_end_N = mkN "year end" ; -lin year_round_A = compoundA (mkA "year round") ; -lin yearbook_N = mkN "yearbook" "yearbooks"; -- from DictEng -lin yearling_N = mkN "yearling" "yearlings"; -- from DictEng -lin yearlong_A = compoundA (mkA "yearlong"); -- from DictEng -lin yearly_A = compoundA (mkA "yearly"); -- from DictEng -lin yearly_Adv = mkAdv "yearly"; -- from DictEng -lin yearn_V = mkV "yearn" "yearns" "yearned" "yearned" "yearning"; -- from DictEng -lin yearning_N = mkN "yearning" "yearnings"; -- from DictEng -lin yearningly_Adv = mkAdv "yearningly"; -- from DictEng -lin yeast_N = mkN "yeast" ; -- from DictEng -lin yeasty_A = mkA "yeasty" "yeastier"; -- from DictEng -lin yell_N = mkN "yell" "yells"; -- from DictEng -lin yell_V = mkV "yell" "yells" "yelled" "yelled" "yelling"; -- from DictEng -lin yell_V2 = mkV2 (mkV "yell" "yells" "yelled" "yelled" "yelling"); -- from DictEng -lin yelling_N = mkN "yelling" ; -lin yellow_A = mkA "yellow" "yellower"; -- from DictEng -lin yellow_N = mkN "yellow" "yellows"; -- from DictEng -lin yellow_V = mkV "yellow" "yellows" "yellowed" "yellowed" "yellowing"; -- from DictEng -lin yellow_V2 = mkV2 (mkV "yellow" "yellows" "yellowed" "yellowed" "yellowing"); -- from DictEng -lin yellow_banded_A = compoundA (mkA "yellow banded") ; -lin yellow_beige_A = compoundA (mkA "yellow beige") ; -lin yellow_green_A = compoundA (mkA "yellow green") ; -lin yellow_grey_A = compoundA (mkA "yellow grey") ; -lin yellow_marked_A = compoundA (mkA "yellow marked") ; -lin yellow_orange_A = compoundA (mkA "yellow orange") ; -lin yellow_spotted_A = compoundA (mkA "yellow spotted") ; -lin yellow_striped_A = compoundA (mkA "yellow striped") ; -lin yellow_tinged_A = compoundA (mkA "yellow tinged") ; -lin yellow_tipped_A = compoundA (mkA "yellow tipped") ; -lin yellow_white_A = compoundA (mkA "yellow white") ; -lin yellow_bellied_A = compoundA (mkA "yellow - bellied"); -- from DictEng -lin yellow_flag_N = mkN "yellow - flag" "yellow - flags"; -- from DictEng -lin yellowcake_N = mkN "yellowcake" ; -lin yellowfin_N = mkN "yellowfin" ; -lin yellowhammer_N = mkN "yellowhammer" ; -lin yellowish_A = compoundA (mkA "yellowish"); -- from DictEng -lin yellowlegs_N = mkN "yellowlegs" ; -lin yellowness_N = mkN "yellowness" ; -- from DictEng -lin yellowtail_N = mkN "yellowtail" ; -lin yellowthroat_N = mkN "yellowthroat" ; -lin yellowwood_N = mkN "yellowwood" ; -lin yelp_V = mkV "yelp" "yelps" "yelped" "yelped" "yelping"; -- from DictEng -lin yelp_V2 = mkV2 (mkV "yelp") ; -lin yemeni_A = compoundA (mkA "yemeni"); -- from DictEng -lin yemeni_N = mkN "yemeni" "yemenis"; -- from DictEng -lin yen_N = mkN "yen" "yen"; -- from DictEng -lin yen_V = mkV "yen" "yens" "yenned" "yenned" "yenning"; -- from DictEng -lin yen_V2 = mkV2 (mkV "yen") ; -lin yenta_N = mkN "yenta" ; -lin yeoman_N = mkN "yeoman" "yeomen" {- FIXME: guessed plural form -}; -- from DictEng -lin yeomanry_N = mkN "yeomanry" "yeomanries"; -- from DictEng -lin yes_N = mkN "yes" "yeses"; -- from DictEng -lin yeshiva_N = mkN "yeshiva" ; -lin yesterday_Adv = mkAdv "yesterday"; -- from DictEng -lin yesterday_N = mkN "yesterday" "yesterdays"; -- from DictEng -lin yet_Adv = mkAdv "yet"; -- from DictEng -lin yeti_N = mkN "yeti" "yetis"; -- from DictEng -lin yew_N = mkN "yew" "yews"; -- from DictEng -lin yew_tree_N = mkN "yew - tree" "yew - trees"; -- from DictEng -lin yha_N = mkN "yha" ; -- from DictEng -lin yiddish_N = mkN "yiddish" ; -- from DictEng -lin yield_N = mkN "yield" "yields"; -- from DictEng -lin yield_V = mkV "yield" "yields" "yielded" "yielded" "yielding"; -- from DictEng -lin yield_V2 = mkV2 (mkV "yield" "yields" "yielded" "yielded" "yielding"); -- from DictEng -lin yield_VA = mkVA (mkV "yield" "yields" "yielded" "yielded" "yielding"); -- from DictEng -lin yielding_A = compoundA (mkA "yielding"); -- from DictEng -lin yin_N = mkN "yin" ; -lin yip_N = mkN "yip" ; -lin yip_V = mkV "yip" ; -lin yips_N = mkN "yips" ; -lin ylem_N = mkN "ylem" ; -lin ymca_N = mkN "ymca" ; -- from DictEng -lin yo_yo_N = mkN "yo - yo" "yo - yos"; -- from DictEng -lin yo_yo_N = mkN "yo - yo" "yo - yos"; -- from DictEng -lin yob_N = mkN "yob" "yobs"; -- from DictEng -lin yobibit_N = mkN "yobibit" ; -lin yobo_N = mkN "yobo" "yobos"; -- from DictEng -lin yodel_N = mkN "yodel" "yodels"; -- from DictEng -lin yodel_V = mkV "yodel" "yodels" "yodelled" "yodelled" "yodelling"; -- from DictEng -lin yodel_V2 = mkV2 (mkV "yodel" "yodels" "yodelled" "yodelled" "yodelling"); -- from DictEng -lin yodeling_N = mkN "yodeling" ; -lin yodeller_N = mkN "yodeller" "yodellers"; -- from DictEng -lin yodh_N = mkN "yodh" ; -lin yoga_N = mkN "yoga" ; -- from DictEng -lin yoghourt_N = mkN "yoghourt" "yoghourts"; -- from DictEng -lin yoghurt_N = mkN "yoghurt" "yoghurts"; -- from DictEng -lin yogi_N = mkN "yogi" "yogis"; -- from DictEng -lin yogistic_A = mkA "yogistic" ; -lin yogurt_N = mkN "yogurt" "yogurts"; -- from DictEng -lin yoke_N = mkN "yoke" "yokes"; -- from DictEng -lin yoke_V = mkV "yoke" "yokes" "yoked" "yoked" "yoking"; -- from DictEng -lin yoke_V2 = mkV2 (mkV "yoke" "yokes" "yoked" "yoked" "yoking"); -- from DictEng -lin yokel_N = mkN "yokel" "yokels"; -- from DictEng -lin yokel_like_A = compoundA (mkA "yokel like") ; -lin yolk_N = mkN "yolk" "yolks"; -- from DictEng -lin yon_A = compoundA (mkA "yon"); -- from DictEng -lin yon_Adv = mkAdv "yon"; -- from DictEng -lin yonder_A = compoundA (mkA "yonder"); -- from DictEng -lin yonder_Adv = mkAdv "yonder"; -- from DictEng -lin yore_N = mkN "yore" ; -- from DictEng -lin yottabit_N = mkN "yottabit" ; -lin yottabyte_N = mkN "yottabyte" ; -lin youPl_Pron = mkPron "you" "you" "your" "yours" plural P2 human ; -- from DictEng -lin youSg_Pron = mkPron "you" "you" "your" "yours" singular P2 human ; -- from DictEng -lin young_A = mkA "young" "younger"; -- from DictEng -lin young_N = mkN "young" ; -- from DictEng -lin young_begetting_A = compoundA (mkA "young begetting") ; -lin younger_A = mkA "younger" ; -lin youngish_A = compoundA (mkA "youngish"); -- from DictEng -lin youngness_N = mkN "youngness" ; -lin youngster_N = mkN "youngster" "youngsters"; -- from DictEng -lin youth_N = mkN "youth" "youths"; -- from DictEng -lin youthful_A = compoundA (mkA "youthful"); -- from DictEng -lin youthfully_Adv = mkAdv "youthfully" ; -lin youthfulness_N = mkN "youthfulness" ; -- from DictEng -lin yowl_V = mkV "yowl" "yowls" "yowled" "yowled" "yowling"; -- from DictEng -lin yr_N = mkN "yr" ; -- from DictEng -lin ytterbium_N = mkN "ytterbium" ; -lin yttrium_N = mkN "yttrium" ; -lin yuan_N = mkN "yuan" ; -lin yucca_N = mkN "yucca" ; -lin yugoslav_A = compoundA (mkA "yugoslav"); -- from DictEng -lin yugoslav_N = mkN "yugoslav" "yugoslavs"; -- from DictEng -lin yugoslavian_A = compoundA (mkA "yugoslavian"); -- from DictEng -lin yugoslavian_N = mkN "yugoslavian" "yugoslavians"; -- from DictEng -lin yule_N = mkN "yule" ; -- from DictEng -lin yule_log_N = mkN "yule - log" "yule - logs"; -- from DictEng -lin yuletide_N = mkN "yuletide" "yuletides"; -- from DictEng -lin yuppie_N = mkN "yuppie" ; -lin yurt_N = mkN "yurt" ; -lin ywca_N = mkN "ywca" ; -- from DictEng -lin z_axis_N = mkN "z axis" ; -lin zabaglione_N = mkN "zabaglione" ; -lin zaire_N = mkN "zaire" ; -lin zairean_A = compoundA (mkA "zairean"); -- from DictEng -lin zairean_N = mkN "zairean" "zaireans"; -- from DictEng -lin zakat_N = mkN "zakat" ; -lin zambian_A = compoundA (mkA "zambian"); -- from DictEng -lin zambian_N = mkN "zambian" "zambians"; -- from DictEng -lin zamia_N = mkN "zamia" ; -lin zany_A = mkA "zany" "zanier"; -- from DictEng -lin zany_N = mkN "zany" "zanies"; -- from DictEng -lin zap_N = mkN "zap" ; -lin zap_V2 = mkV2 (mkV "zap" "zaps" "zapped" "zapped" "zapping"); -- from DictEng -lin zapper_N = mkN "zapper" ; -lin zarf_N = mkN "zarf" ; -lin zayin_N = mkN "zayin" ; -lin zeal_N = mkN "zeal" ; -- from DictEng -lin zealander_A = compoundA (mkA "zealander"); -- from DictEng -lin zealander_N = mkN "zealander" "zealanders"; -- from DictEng -lin zealot_N = mkN "zealot" "zealots"; -- from DictEng -lin zealotry_N = mkN "zealotry" ; -- from DictEng -lin zealous_A = compoundA (mkA "zealous"); -- from DictEng -lin zealously_Adv = mkAdv "zealously" ; -lin zeaxanthin_N = mkN "zeaxanthin" ; -lin zebibit_N = mkN "zebibit" ; -lin zebra_N = mkN "zebra" "zebras"; -- from DictEng -lin zebrawood_N = mkN "zebrawood" ; -lin zebu_N = mkN "zebu" "zebus"; -- from DictEng -lin zee_N = mkN "zee" "zees"; -- from DictEng -lin zen_N = mkN "zen" ; -- from DictEng -lin zenith_N = mkN "zenith" "zeniths"; -- from DictEng -lin zenithal_A = compoundA (mkA "zenithal"); -- from DictEng -lin zeolite_N = mkN "zeolite" ; -lin zephyr_N = mkN "zephyr" "zephyrs"; -- from DictEng -lin zeppelin_N = mkN "zeppelin" "zeppelins"; -- from DictEng -lin zero_A = mkA "zero" ; -lin zero_N = mkN "zero" "zeros"; -- from DictEng -lin zero_V = mkV "zero" "zeros" "zeroed" "zeroed" "zeroing"; -- from DictEng -lin zeroth_A = mkA "zeroth" ; -lin zest_N = mkN "zest" ; -- from DictEng -lin zest_V2 = mkV2 (mkV "zest") ; -lin zestful_A = compoundA (mkA "zestful"); -- from DictEng -lin zestfully_Adv = mkAdv "zestfully" ; -lin zeta_N = mkN "zeta" ; -lin zettabit_N = mkN "zettabit" ; -lin zettabyte_N = mkN "zettabyte" ; -lin zeugma_N = mkN "zeugma" ; -lin zidovudine_N = mkN "zidovudine" ; -lin ziggurat_N = mkN "ziggurat" ; -lin zigzag_A = mkA "zigzag" ; -lin zigzag_Adv = mkAdv "zigzag"; -- from DictEng -lin zigzag_N = mkN "zigzag" "zigzags"; -- from DictEng -lin zigzag_V = mkV "zigzag" "zigzags" "zigzagged" "zigzagged" "zigzagging"; -- from DictEng -lin zigzag_V2 = mkV2 (mkV "zigzag") ; -lin zill_N = mkN "zill" ; -lin zillion_A = mkA "zillion" ; -lin zimbabwean_A = compoundA (mkA "zimbabwean"); -- from DictEng -lin zimbabwean_N = mkN "zimbabwean" "zimbabweans"; -- from DictEng -lin zinc_N = mkN "zinc" ; -- from DictEng -lin zinfandel_N = mkN "zinfandel" ; -lin zing_N = mkN "zing" ; -- from DictEng -lin zing_V = mkV "zing" ; -lin zing_V2 = mkV2 (mkV "zing") ; -lin zinger_N = mkN "zinger" ; -lin zinkenite_N = mkN "zinkenite" ; -lin zinnia_N = mkN "zinnia" "zinnias"; -- from DictEng -lin zinnwaldite_N = mkN "zinnwaldite" ; -lin zion_N = mkN "zion" "zions"; -- from DictEng -lin zionism_N = mkN "zionism" ; -- from DictEng -lin zionist_A = compoundA (mkA "zionist"); -- from DictEng -lin zionist_N = mkN "zionist" "zionists"; -- from DictEng -lin zip_N = mkN "zip" "zips"; -- from DictEng -lin zip_V2 = mkV2 (mkV "zip" "zips" "zipped" "zipped" "zipping"); -- from DictEng -lin zip_code_N = mkN "zip code" "zip codes"; -- from DictEng -lin zip_fastener_N = mkN "zip - fastener" "zip - fasteners"; -- from DictEng -lin zipper_N = mkN "zipper" "zippers"; -- from DictEng -lin zircon_N = mkN "zircon" ; -lin zirconium_N = mkN "zirconium" ; -lin zither_N = mkN "zither" "zithers"; -- from DictEng -lin ziti_N = mkN "ziti" ; -lin zizz_N = mkN "zizz" ; -lin zloty_N = mkN "zloty" "zlotys"; -- from DictEng -lin zoanthropy_N = mkN "zoanthropy" ; -lin zodiac_N = mkN "zodiac" "zodiacs"; -- from DictEng -lin zodiacal_A = mkA "zodiacal" ; -lin zoic_A = mkA "zoic" ; -lin zombi_N = mkN "zombi" ; -lin zombie_N = mkN "zombie" "zombies"; -- from DictEng -lin zonal_A = compoundA (mkA "zonal"); -- from DictEng -lin zone_N = mkN "zone" "zones"; -- from DictEng -lin zone_V2 = mkV2 (mkV "zone" "zones" "zoned" "zoned" "zoning"); -- from DictEng -lin zoning_N = mkN "zoning" ; -- from DictEng -lin zonule_N = mkN "zonule" ; -lin zoo_N = mkN "zoo" "zoos"; -- from DictEng -lin zooid_N = mkN "zooid" ; -lin zoolatry_N = mkN "zoolatry" ; -lin zoological_A = compoundA (mkA "zoological"); -- from DictEng -lin zoologist_N = mkN "zoologist" "zoologists"; -- from DictEng -lin zoology_N = mkN "zoology" ; -- from DictEng -lin zoom_N = mkN "zoom" ; -- from DictEng -lin zoom_V = mkV "zoom" "zooms" "zoomed" "zoomed" "zooming"; -- from DictEng -lin zoom_V2 = mkV2 (mkV "zoom") ; -lin zoomastigote_N = mkN "zoomastigote" ; -lin zoomorphism_N = mkN "zoomorphism" ; -lin zoonosis_N = mkN "zoonosis" ; -lin zoonotic_A = mkA "zoonotic" ; -lin zoophilia_N = mkN "zoophilia" ; -lin zoophobia_N = mkN "zoophobia" ; -lin zoophyte_N = mkN "zoophyte" "zoophytes"; -- from DictEng -lin zooplankton_N = mkN "zooplankton" ; -lin zoopsia_N = mkN "zoopsia" ; -lin zoospore_N = mkN "zoospore" ; -lin zoot_suit_N = mkN "zoot suit" "zoot suits"; -- from DictEng -lin zoril_N = mkN "zoril" ; -lin zoysia_N = mkN "zoysia" ; -lin zucchini_N = mkN "zucchini" "zucchini"; -- from DictEng -lin zwieback_N = mkN "zwieback" ; -lin zydeco_N = mkN "zydeco" ; -lin zygodactyl_A = mkA "zygodactyl" ; -lin zygoma_N = mkN "zygoma" ; -lin zygomatic_A = mkA "zygomatic" ; -lin zygomorphic_A = mkA "zygomorphic" ; -lin zygospore_N = mkN "zygospore" ; -lin zygote_N = mkN "zygote" ; -lin zygotene_N = mkN "zygotene" ; -lin zygotic_A = mkA "zygotic" ; -lin zymase_N = mkN "zymase" ; -lin zymoid_A = mkA "zymoid" ; -lin zymology_N = mkN "zymology" ; -lin zymosis_N = mkN "zymosis" ; -lin zymotic_A = mkA "zymotic" ; -} diff --git a/src/english/WNDictEngAbs.gf b/src/english/WNDictEngAbs.gf deleted file mode 100644 index 8b2637b62..000000000 --- a/src/english/WNDictEngAbs.gf +++ /dev/null @@ -1,86626 +0,0 @@ -abstract WNDictEngAbs = Cat ** { - -fun a_PN : PN; -fun a'man_PN : PN; -fun ab_PN : PN; -fun abo_antibodies_PN : PN; -fun abo_blood_group_system_PN : PN; -fun ace_inhibitor_PN : PN; -fun ad_Adv : Adv; -fun ada_scid_PN : PN; -fun aids_PN : PN; -fun algol_PN : PN; -fun and_circuit_PN : PN; -fun apc_PN : PN; -fun asap_Adv : Adv; -fun ascii_character_PN : PN; -fun ascii_character_set_PN : PN; -fun ascii_text_file_PN : PN; -fun asl_PN : PN; -fun awol_PN : PN; -fun a_battery_PN : PN; -fun a_horizon_PN : PN; -fun a_level_PN : PN; -fun a_line_PN : PN; -fun a_list_PN : PN; -fun a_scan_ultrasonography_PN : PN; -fun a_team_PN : PN; -fun aachen_PN : PN; -fun aalborg_PN : PN; -fun aalst_PN : PN; -fun aalto_PN : PN; -fun aare_PN : PN; -fun aarhus_PN : PN; -fun aaron_PN : PN; -fun abadan_PN : PN; -fun abbe_condenser_PN : PN; -fun abe_PN : PN; -fun abecedarian_PN : PN; -fun abel_PN : PN; -fun abelard_PN : PN; -fun abelian_group_PN : PN; -fun abelmoschus_PN : PN; -fun abercarn_PN : PN; -fun aberdare_PN : PN; -fun aberdeen_PN : PN; -fun aberdeen_angus_PN : PN; -fun aberdonian_A : A; -fun abergavenny_PN : PN; -fun abergele_PN : PN; -fun abertillery_PN : PN; -fun aberystwyth_PN : PN; -fun abidjan_PN : PN; -fun abies_PN : PN; -fun abilene_PN : PN; -fun abingdon_PN : PN; -fun abkhaz_A : A; -fun abkhaz_PN : PN; -fun abkhazian_PN : PN; -fun abnaki_A : A; -fun abnaki_PN : PN; -fun abney_level_PN : PN; -fun aboriginal_A : A; -fun aborigine_PN : PN; -fun abraham_PN : PN; -fun abraham's_bosom_PN : PN; -fun abramis_PN : PN; -fun abrocoma_PN : PN; -fun abronia_PN : PN; -fun abruzzi_PN : PN; -fun abstract_expressionism_PN : PN; -fun abu_dhabi_PN : PN; -fun abu_hafs_al_masri_brigades_PN : PN; -fun abu_sayyaf_PN : PN; -fun abudefduf_PN : PN; -fun abuja_PN : PN; -fun abukir_PN : PN; -fun abutilon_PN : PN; -fun abydos_PN : PN; -fun abyssinian_PN : PN; -fun abyssinian_banana_PN : PN; -fun academy_award_PN : PN; -fun academy_of_motion_picture_arts_and_sciences_PN : PN; -fun academy_of_television_arts_and_sciences_PN : PN; -fun acadia_PN : PN; -fun acadia_national_park_PN : PN; -fun acadian_PN : PN; -fun acalypha_PN : PN; -fun acanthaceae_PN : PN; -fun acanthisitta_PN : PN; -fun acanthocephala_PN : PN; -fun acanthocereus_PN : PN; -fun acanthocybium_PN : PN; -fun acanthophis_PN : PN; -fun acanthopterygii_PN : PN; -fun acanthoscelides_PN : PN; -fun acanthuridae_PN : PN; -fun acanthurus_PN : PN; -fun acapulco_PN : PN; -fun acapulco_gold_PN : PN; -fun acaridae_PN : PN; -fun acarina_PN : PN; -fun accipiter_PN : PN; -fun accipitridae_PN : PN; -fun accipitriformes_PN : PN; -fun accra_PN : PN; -fun accrington_PN : PN; -fun acer_PN : PN; -fun aceraceae_PN : PN; -fun achaea_PN : PN; -fun achaean_A : A; -fun achaean_PN : PN; -fun acheron_PN : PN; -fun acheronian_A : A; -fun acherontia_PN : PN; -fun acheson_PN : PN; -fun acheson_process_PN : PN; -fun acheta_PN : PN; -fun achilles_PN : PN; -fun achilles'_heel_PN : PN; -fun achilles_tendon_PN : PN; -fun achoerodus_PN : PN; -fun achomawi_PN : PN; -fun achras_PN : PN; -fun acinonyx_PN : PN; -fun acinos_PN : PN; -fun acipenser_PN : PN; -fun acipenseridae_PN : PN; -fun acnidosporidia_PN : PN; -fun acocanthera_PN : PN; -fun aconcagua_PN : PN; -fun aconitum_PN : PN; -fun acoraceae_PN : PN; -fun acorus_PN : PN; -fun acrasiomycetes_PN : PN; -fun acre_PN : PN; -fun acrididae_PN : PN; -fun acridotheres_PN : PN; -fun acris_PN : PN; -fun acrobates_PN : PN; -fun acrocarpus_PN : PN; -fun acrocephalus_PN : PN; -fun acroclinium_PN : PN; -fun acrocomia_PN : PN; -fun acropora_PN : PN; -fun acrostichum_PN : PN; -fun actaea_PN : PN; -fun actias_PN : PN; -fun actifed_PN : PN; -fun actinia_PN : PN; -fun actiniaria_PN : PN; -fun actinidia_PN : PN; -fun actinidiaceae_PN : PN; -fun actiniopteris_PN : PN; -fun actinomeris_PN : PN; -fun actinomycetaceae_PN : PN; -fun actinomycetales_PN : PN; -fun actinomyxidia_PN : PN; -fun actinopoda_PN : PN; -fun actitis_PN : PN; -fun actium_PN : PN; -fun acts_of_the_apostles_PN : PN; -fun ad_PN : PN; -fun ada_PN : PN; -fun adad_PN : PN; -fun adalia_PN : PN; -fun adam_PN : PN; -fun adam's_peak_PN : PN; -fun adam's_needle_PN : PN; -fun adams_PN : PN; -fun adana_PN : PN; -fun adansonia_PN : PN; -fun adapa_PN : PN; -fun adapid_PN : PN; -fun adar_PN : PN; -fun addis_ababa_PN : PN; -fun addison's_disease_PN : PN; -fun additions_to_esther_PN : PN; -fun adelaide_PN : PN; -fun adelges_PN : PN; -fun adelgidae_PN : PN; -fun adelie_PN : PN; -fun adelie_land_PN : PN; -fun aden_PN : PN; -fun adenanthera_PN : PN; -fun adenauer_PN : PN; -fun adenium_PN : PN; -fun adenota_PN : PN; -fun adi_granth_PN : PN; -fun adiantaceae_PN : PN; -fun adiantum_PN : PN; -fun adige_PN : PN; -fun adirondacks_PN : PN; -fun aditi_PN : PN; -fun aditya_PN : PN; -fun adlumia_PN : PN; -fun admiralty_island_PN : PN; -fun admiralty_islands_PN : PN; -fun admiralty_range_PN : PN; -fun admission_day_PN : PN; -fun adonic_A : A; -fun adonic_PN : PN; -fun adonis_PN : PN; -fun adrian_PN : PN; -fun adriatic_PN : PN; -fun advanced_research_and_development_activity_PN : PN; -fun advent_PN : PN; -fun advent_sunday_PN : PN; -fun adventism_PN : PN; -fun adventist_PN : PN; -fun adzhar_PN : PN; -fun aedes_PN : PN; -fun aegates_isles_PN : PN; -fun aegean_A : A; -fun aegean_PN : PN; -fun aegean_civilization_PN : PN; -fun aegean_island_PN : PN; -fun aegiceras_PN : PN; -fun aegilops_PN : PN; -fun aegina_PN : PN; -fun aegisthus_PN : PN; -fun aegospotami_PN : PN; -fun aegypiidae_PN : PN; -fun aegypius_PN : PN; -fun aegyptopithecus_PN : PN; -fun aeneas_PN : PN; -fun aeneid_PN : PN; -fun aeolian_A : A; -fun aeolian_PN : PN; -fun aeolic_PN : PN; -fun aeolis_PN : PN; -fun aeolus_PN : PN; -fun aeonium_PN : PN; -fun aepyceros_PN : PN; -fun aepyornidae_PN : PN; -fun aepyorniformes_PN : PN; -fun aerobacter_PN : PN; -fun aerobacter_aerogenes_PN : PN; -fun aertex_PN : PN; -fun aeschylean_A : A; -fun aeschylus_PN : PN; -fun aesculapius_PN : PN; -fun aesculus_PN : PN; -fun aesir_PN : PN; -fun aesop_PN : PN; -fun aesop's_fables_PN : PN; -fun aether_PN : PN; -fun aethionema_PN : PN; -fun aethusa_PN : PN; -fun aetobatus_PN : PN; -fun affirmed_PN : PN; -fun afghan_PN : PN; -fun afghan_hound_PN : PN; -fun afghan_monetary_unit_PN : PN; -fun afghani_A : A; -fun afghanistan_PN : PN; -fun aframomum_PN : PN; -fun africa_PN : PN; -fun african_A : A; -fun african_PN : PN; -fun african_american_A : A; -fun african_american_PN : PN; -fun african_american_vernacular_english_PN : PN; -fun african_bowstring_hemp_PN : PN; -fun african_chameleon_PN : PN; -fun african_clawed_frog_PN : PN; -fun african_coral_snake_PN : PN; -fun african_country_PN : PN; -fun african_crocodile_PN : PN; -fun african_daisy_PN : PN; -fun african_elephant_PN : PN; -fun african_grey_PN : PN; -fun african_hemp_PN : PN; -fun african_holly_PN : PN; -fun african_hunting_dog_PN : PN; -fun african_lily_PN : PN; -fun african_mahogany_PN : PN; -fun african_marigold_PN : PN; -fun african_monitor_PN : PN; -fun african_oil_palm_PN : PN; -fun african_scented_mahogany_PN : PN; -fun african_violet_PN : PN; -fun african_walnut_PN : PN; -fun african_wild_ass_PN : PN; -fun africander_PN : PN; -fun africanized_bee_PN : PN; -fun afrikaans_A : A; -fun afrikaans_PN : PN; -fun afrikaner_PN : PN; -fun afro_PN : PN; -fun afro_asian_A : A; -fun afro_wig_PN : PN; -fun afroasiatic_PN : PN; -fun afrocarpus_PN : PN; -fun aga_PN : PN; -fun agalinis_PN : PN; -fun agamemnon_PN : PN; -fun agamidae_PN : PN; -fun agapornis_PN : PN; -fun agaricaceae_PN : PN; -fun agaricales_PN : PN; -fun agaricus_PN : PN; -fun agassiz_PN : PN; -fun agastache_PN : PN; -fun agatha_PN : PN; -fun agathis_PN : PN; -fun agavaceae_PN : PN; -fun agave_tequilana_PN : PN; -fun agdestis_PN : PN; -fun agdistis_PN : PN; -fun agee_PN : PN; -fun agelaius_PN : PN; -fun agent_orange_PN : PN; -fun ageratina_PN : PN; -fun aggie_PN : PN; -fun aghan_PN : PN; -fun agincourt_PN : PN; -fun agkistrodon_PN : PN; -fun aglaia_PN : PN; -fun aglaomorpha_PN : PN; -fun aglaonema_PN : PN; -fun agnatha_PN : PN; -fun agnes_PN : PN; -fun agni_PN : PN; -fun agnus_dei_PN : PN; -fun agonidae_PN : PN; -fun agonus_PN : PN; -fun agra_PN : PN; -fun agricola_PN : PN; -fun agrigento_PN : PN; -fun agriocharis_PN : PN; -fun agrippa_PN : PN; -fun agrippina_PN : PN; -fun agrobacterium_PN : PN; -fun agrobacterium_tumefaciens_PN : PN; -fun agropyron_PN : PN; -fun agrostemma_PN : PN; -fun agrostis_PN : PN; -fun ahab_PN : PN; -fun ahmedabad_PN : PN; -fun ahriman_PN : PN; -fun ahuehuete_PN : PN; -fun ahura_PN : PN; -fun aiken_PN : PN; -fun ailey_PN : PN; -fun ailuropoda_PN : PN; -fun ailuropodidae_PN : PN; -fun ailurus_PN : PN; -fun air_combat_command_PN : PN; -fun air_corps_PN : PN; -fun air_force_intelligence_surveillance_and_reconnaissance_PN : PN; -fun air_force_research_laboratory_PN : PN; -fun air_force_space_command_PN : PN; -fun air_medal_PN : PN; -fun air_national_guard_PN : PN; -fun airdrie_PN : PN; -fun aire_PN : PN; -fun aireborough_PN : PN; -fun airedale_PN : PN; -fun aix_PN : PN; -fun aizoaceae_PN : PN; -fun ajaia_PN : PN; -fun ajax_PN : PN; -fun ajuga_PN : PN; -fun akan_PN : PN; -fun akeridae_PN : PN; -fun akhbari_PN : PN; -fun akhenaton_PN : PN; -fun akkadian_PN : PN; -fun akron_PN : PN; -fun aksa_martyrs_brigades_PN : PN; -fun akwa'ala_PN : PN; -fun al_PN : PN; -fun al_aqabah_PN : PN; -fun al_ladhiqiyah_PN : PN; -fun al_nathir_PN : PN; -fun al_hakim_PN : PN; -fun alabama_PN : PN; -fun alabaman_PN : PN; -fun aladdin_PN : PN; -fun aladdin's_lamp_PN : PN; -fun alamo_PN : PN; -fun alan_PN : PN; -fun aland_islands_PN : PN; -fun alar_PN : PN; -fun alaric_PN : PN; -fun alaska_PN : PN; -fun alaska_native_PN : PN; -fun alaska_peninsula_PN : PN; -fun alaska_range_PN : PN; -fun alaska_standard_time_PN : PN; -fun alaska_fur_seal_PN : PN; -fun alaska_king_crab_PN : PN; -fun alaska_rein_orchid_PN : PN; -fun alaskan_A : A; -fun alaskan_PN : PN; -fun alaskan_brown_bear_PN : PN; -fun alaskan_pipeline_PN : PN; -fun alauda_PN : PN; -fun alaudidae_PN : PN; -fun albania_PN : PN; -fun albanian_A : A; -fun albanian_PN : PN; -fun albanian_monetary_unit_PN : PN; -fun albany_PN : PN; -fun albatrellus_PN : PN; -fun albatrellus_dispansus_PN : PN; -fun albatrellus_ovinus_PN : PN; -fun albee_PN : PN; -fun albers_PN : PN; -fun albert_PN : PN; -fun alberta_PN : PN; -fun alberti_PN : PN; -fun albigenses_PN : PN; -fun albigensian_A : A; -fun albigensianism_PN : PN; -fun albion_PN : PN; -fun albright's_disease_PN : PN; -fun albuginaceae_PN : PN; -fun albugo_PN : PN; -fun albula_PN : PN; -fun albulidae_PN : PN; -fun albuquerque_PN : PN; -fun alca_PN : PN; -fun alcaeus_PN : PN; -fun alcaic_PN : PN; -fun alcea_PN : PN; -fun alcedinidae_PN : PN; -fun alcedo_PN : PN; -fun alcelaphus_PN : PN; -fun alces_PN : PN; -fun alcibiades_PN : PN; -fun alcidae_PN : PN; -fun alcoholics_anonymous_PN : PN; -fun alcott_PN : PN; -fun alcyonacea_PN : PN; -fun alcyonaria_PN : PN; -fun alcyone_PN : PN; -fun aldebaran_PN : PN; -fun aldershot_PN : PN; -fun aldrovanda_PN : PN; -fun alectis_PN : PN; -fun alecto_PN : PN; -fun alectoria_PN : PN; -fun alectoris_PN : PN; -fun alectura_PN : PN; -fun alepisaurus_PN : PN; -fun aleppo_PN : PN; -fun alessandria_PN : PN; -fun aletris_PN : PN; -fun aleuria_aurantia_PN : PN; -fun aleurites_PN : PN; -fun aleut_PN : PN; -fun aleutian_A : A; -fun aleutian_islands_PN : PN; -fun alex_PN : PN; -fun alex_boncayao_brigade_PN : PN; -fun alexander_PN : PN; -fun alexander_archipelago_PN : PN; -fun alexander_i_PN : PN; -fun alexander_ii_PN : PN; -fun alexander_iii_PN : PN; -fun alexander_vi_PN : PN; -fun alexandra_PN : PN; -fun alexandria_PN : PN; -fun alexandria_senna_PN : PN; -fun alexandrian_A : A; -fun alexandrian_PN : PN; -fun alexandrian_laurel_PN : PN; -fun alexandrine_PN : PN; -fun aleyrodes_PN : PN; -fun aleyrodidae_PN : PN; -fun alf_PN : PN; -fun alfred_PN : PN; -fun alfreton_PN : PN; -fun alger_PN : PN; -fun algeria_PN : PN; -fun algerian_A : A; -fun algerian_PN : PN; -fun algerian_centime_PN : PN; -fun algerian_dinar_PN : PN; -fun algerian_monetary_unit_PN : PN; -fun algeripithecus_PN : PN; -fun algeripithecus_minutus_PN : PN; -fun algiers_PN : PN; -fun algonkian_PN : PN; -fun algonquian_A : A; -fun algonquian_PN : PN; -fun algren_PN : PN; -fun alhambra_PN : PN; -fun alhazen_PN : PN; -fun ali_PN : PN; -fun ali_baba_PN : PN; -fun alicante_PN : PN; -fun alice_PN : PN; -fun alisma_PN : PN; -fun alismataceae_PN : PN; -fun alismatidae_PN : PN; -fun alison_PN : PN; -fun alka_seltzer_PN : PN; -fun all_saints'_day_PN : PN; -fun all_souls'_day_PN : PN; -fun allah_PN : PN; -fun allahabad_PN : PN; -fun allan_PN : PN; -fun alleghenies_PN : PN; -fun allegheny_PN : PN; -fun allegheny_chinkapin_PN : PN; -fun allegheny_plum_PN : PN; -fun allegheny_spurge_PN : PN; -fun allen_PN : PN; -fun allen_screw_PN : PN; -fun allen_wrench_PN : PN; -fun allentown_PN : PN; -fun allhallowtide_PN : PN; -fun alliaceae_PN : PN; -fun alliaria_PN : PN; -fun allied_command_atlantic_PN : PN; -fun allied_command_europe_PN : PN; -fun allies_PN : PN; -fun alligatoridae_PN : PN; -fun allionia_PN : PN; -fun allium_PN : PN; -fun alloa_PN : PN; -fun alma_ata_PN : PN; -fun almaty_PN : PN; -fun almeria_PN : PN; -fun almoravid_PN : PN; -fun alnico_PN : PN; -fun alnus_PN : PN; -fun alnwick_PN : PN; -fun aloeaceae_PN : PN; -fun alonso_PN : PN; -fun alopecurus_PN : PN; -fun alopex_PN : PN; -fun alopiidae_PN : PN; -fun alopius_PN : PN; -fun alosa_PN : PN; -fun alouatta_PN : PN; -fun alpena_PN : PN; -fun alpha_centauri_PN : PN; -fun alpha_crucis_PN : PN; -fun alpine_A : A; -fun alpine_anemone_PN : PN; -fun alpine_besseya_PN : PN; -fun alpine_celery_pine_PN : PN; -fun alpine_enchanter's_nightshade_PN : PN; -fun alpine_fir_PN : PN; -fun alpine_glacier_PN : PN; -fun alpine_lady_fern_PN : PN; -fun alpine_mouse_ear_PN : PN; -fun alpine_woodsia_PN : PN; -fun alpinia_PN : PN; -fun alpinism_PN : PN; -fun alps_PN : PN; -fun alsace_PN : PN; -fun alsatian_A : A; -fun alsatian_PN : PN; -fun alsobia_PN : PN; -fun alsophila_PN : PN; -fun alsophila_pometaria_PN : PN; -fun alstonia_PN : PN; -fun alstroemeriaceae_PN : PN; -fun altai_mountains_PN : PN; -fun altaic_A : A; -fun altaic_PN : PN; -fun altair_PN : PN; -fun alternanthera_PN : PN; -fun alton_PN : PN; -fun altoona_PN : PN; -fun altrincham_PN : PN; -fun alvechurch_PN : PN; -fun alyssum_PN : PN; -fun alytes_PN : PN; -fun alzheimer's_disease_PN : PN; -fun amaethon_PN : PN; -fun amanda_PN : PN; -fun amanita_PN : PN; -fun amaranthaceae_PN : PN; -fun amaranthus_PN : PN; -fun amarillo_PN : PN; -fun amaryllidaceae_PN : PN; -fun amaterasu_PN : PN; -fun amati_PN : PN; -fun amauropelta_PN : PN; -fun amazon_PN : PN; -fun amazon_ant_PN : PN; -fun amazona_PN : PN; -fun amberboa_PN : PN; -fun ambloplites_PN : PN; -fun amblyrhynchus_PN : PN; -fun ambrose_PN : PN; -fun ambrosiaceae_PN : PN; -fun ambrosian_A : A; -fun ambystoma_PN : PN; -fun ambystomatidae_PN : PN; -fun ameiuridae_PN : PN; -fun ameiurus_PN : PN; -fun amelanchier_PN : PN; -fun amen_PN : PN; -fun amen_ra_PN : PN; -fun amentiferae_PN : PN; -fun america_PN : PN; -fun american_A : A; -fun american_PN : PN; -fun american_baptist_convention_PN : PN; -fun american_civil_war_PN : PN; -fun american_dream_PN : PN; -fun american_english_PN : PN; -fun american_falls_PN : PN; -fun american_federation_of_labor_PN : PN; -fun american_federation_of_labor_and_congress_of_industrial_organizations_PN : PN; -fun american_indian_day_PN : PN; -fun american_labor_party_PN : PN; -fun american_legion_PN : PN; -fun american_party_PN : PN; -fun american_revolution_PN : PN; -fun american_revolutionary_leader_PN : PN; -fun american_samoa_PN : PN; -fun american_staffordshire_terrier_PN : PN; -fun american_standard_code_for_information_interchange_PN : PN; -fun american_standard_version_PN : PN; -fun american_stock_exchange_PN : PN; -fun american_agave_PN : PN; -fun american_alligator_PN : PN; -fun american_angelica_tree_PN : PN; -fun american_arborvitae_PN : PN; -fun american_badger_PN : PN; -fun american_barberry_PN : PN; -fun american_basswood_PN : PN; -fun american_beech_PN : PN; -fun american_bison_PN : PN; -fun american_bittern_PN : PN; -fun american_black_bear_PN : PN; -fun american_bog_asphodel_PN : PN; -fun american_bugbane_PN : PN; -fun american_chameleon_PN : PN; -fun american_chestnut_PN : PN; -fun american_cockroach_PN : PN; -fun american_coot_PN : PN; -fun american_copper_PN : PN; -fun american_crab_apple_PN : PN; -fun american_cranberry_PN : PN; -fun american_crayfish_PN : PN; -fun american_crow_PN : PN; -fun american_dewberry_PN : PN; -fun american_dog_violet_PN : PN; -fun american_egret_PN : PN; -fun american_elder_PN : PN; -fun american_elm_PN : PN; -fun american_feverfew_PN : PN; -fun american_flag_PN : PN; -fun american_fly_honeysuckle_PN : PN; -fun american_flying_squirrel_PN : PN; -fun american_football_PN : PN; -fun american_foxhound_PN : PN; -fun american_frogbit_PN : PN; -fun american_gallinule_PN : PN; -fun american_germander_PN : PN; -fun american_ginseng_PN : PN; -fun american_green_toad_PN : PN; -fun american_hackberry_PN : PN; -fun american_harvest_mouse_PN : PN; -fun american_hazel_PN : PN; -fun american_holly_PN : PN; -fun american_hop_PN : PN; -fun american_hornbeam_PN : PN; -fun american_lady_crab_PN : PN; -fun american_larch_PN : PN; -fun american_lobster_PN : PN; -fun american_magpie_PN : PN; -fun american_maidenhair_fern_PN : PN; -fun american_marten_PN : PN; -fun american_mastodon_PN : PN; -fun american_merganser_PN : PN; -fun american_mink_PN : PN; -fun american_mistletoe_PN : PN; -fun american_mountain_ash_PN : PN; -fun american_oil_palm_PN : PN; -fun american_organ_PN : PN; -fun american_parasol_PN : PN; -fun american_pasqueflower_PN : PN; -fun american_persimmon_PN : PN; -fun american_plaice_PN : PN; -fun american_plan_PN : PN; -fun american_quaking_aspen_PN : PN; -fun american_raspberry_PN : PN; -fun american_rattlebox_PN : PN; -fun american_red_elder_PN : PN; -fun american_red_plum_PN : PN; -fun american_red_squirrel_PN : PN; -fun american_redstart_PN : PN; -fun american_rock_brake_PN : PN; -fun american_saddle_horse_PN : PN; -fun american_shrew_mole_PN : PN; -fun american_smelt_PN : PN; -fun american_smokewood_PN : PN; -fun american_smooth_dogfish_PN : PN; -fun american_spikenard_PN : PN; -fun american_star_grass_PN : PN; -fun american_state_PN : PN; -fun american_sycamore_PN : PN; -fun american_toad_PN : PN; -fun american_turkey_oak_PN : PN; -fun american_twinflower_PN : PN; -fun american_water_ouzel_PN : PN; -fun american_water_shrew_PN : PN; -fun american_water_spaniel_PN : PN; -fun american_watercress_PN : PN; -fun american_white_birch_PN : PN; -fun american_white_oak_PN : PN; -fun american_white_pine_PN : PN; -fun american_widgeon_PN : PN; -fun american_wistaria_PN : PN; -fun american_woodcock_PN : PN; -fun american_wormseed_PN : PN; -fun americana_PN : PN; -fun americanism_PN : PN; -fun americanization_PN : PN; -fun amerind_PN : PN; -fun amerindian_PN : PN; -fun amesbury_PN : PN; -fun amhara_PN : PN; -fun amharic_A : A; -fun amharic_PN : PN; -fun amia_PN : PN; -fun amianthum_PN : PN; -fun amiens_PN : PN; -fun amiidae_PN : PN; -fun amish_PN : PN; -fun amish_sect_PN : PN; -fun amman_PN : PN; -fun ammanford_PN : PN; -fun ammodytes_PN : PN; -fun ammodytidae_PN : PN; -fun ammotragus_PN : PN; -fun amniota_PN : PN; -fun amoebida_PN : PN; -fun amontillado_PN : PN; -fun amos_PN : PN; -fun amphibolips_PN : PN; -fun amphicarpaea_PN : PN; -fun amphineura_PN : PN; -fun amphioxidae_PN : PN; -fun amphipoda_PN : PN; -fun amphiprion_PN : PN; -fun amphisbaena_PN : PN; -fun amphisbaenidae_PN : PN; -fun amphiumidae_PN : PN; -fun amsinckia_PN : PN; -fun amsler_grid_PN : PN; -fun amsonia_PN : PN; -fun amsterdam_PN : PN; -fun amundsen_PN : PN; -fun amur_PN : PN; -fun amur_privet_PN : PN; -fun amy_PN : PN; -fun amygdalaceae_PN : PN; -fun amygdalus_PN : PN; -fun ana_PN : PN; -fun anabantidae_PN : PN; -fun anabaptism_PN : PN; -fun anabaptist_PN : PN; -fun anabaptist_denomination_PN : PN; -fun anabas_PN : PN; -fun anabrus_PN : PN; -fun anacanthini_PN : PN; -fun anacardiaceae_PN : PN; -fun anacardium_PN : PN; -fun anacyclus_PN : PN; -fun anadenanthera_PN : PN; -fun anadenanthera_colubrina_PN : PN; -fun anagallis_PN : PN; -fun anagasta_PN : PN; -fun anagyris_PN : PN; -fun anaheim_PN : PN; -fun ananas_PN : PN; -fun ananias_PN : PN; -fun anaphalis_PN : PN; -fun anapsida_PN : PN; -fun anarhichadidae_PN : PN; -fun anarhichas_PN : PN; -fun anas_PN : PN; -fun anasa_PN : PN; -fun anasazi_PN : PN; -fun anaspida_PN : PN; -fun anastatica_PN : PN; -fun anastomus_PN : PN; -fun anatidae_PN : PN; -fun anatolian_PN : PN; -fun anaxagoras_PN : PN; -fun anaximander_PN : PN; -fun anaximenes_PN : PN; -fun anchorage_PN : PN; -fun ancient_greek_PN : PN; -fun ancohuma_PN : PN; -fun ancona_PN : PN; -fun ancylidae_PN : PN; -fun ancylostomatidae_PN : PN; -fun ancylus_PN : PN; -fun andalusia_PN : PN; -fun andalusian_A : A; -fun andaman_sea_PN : PN; -fun andean_A : A; -fun andean_condor_PN : PN; -fun andersen_PN : PN; -fun anderson_PN : PN; -fun andes_PN : PN; -fun andhra_pradesh_PN : PN; -fun andira_PN : PN; -fun andorra_PN : PN; -fun andorran_A : A; -fun andorran_PN : PN; -fun andover_PN : PN; -fun andreaea_PN : PN; -fun andreaeales_PN : PN; -fun andrenidae_PN : PN; -fun andrew_PN : PN; -fun andrews_PN : PN; -fun andricus_PN : PN; -fun andromeda_PN : PN; -fun andromeda_galaxy_PN : PN; -fun andropogon_PN : PN; -fun andvari_PN : PN; -fun andy_PN : PN; -fun aneides_PN : PN; -fun anemia_PN : PN; -fun anemonella_PN : PN; -fun anemopsis_PN : PN; -fun anethum_PN : PN; -fun angara_PN : PN; -fun angas_PN : PN; -fun angel_PN : PN; -fun angela_PN : PN; -fun angelus_PN : PN; -fun angers_PN : PN; -fun angevin_PN : PN; -fun angie_PN : PN; -fun angiospermae_PN : PN; -fun angle_PN : PN; -fun anglesey_PN : PN; -fun anglia_PN : PN; -fun anglian_PN : PN; -fun anglican_A : A; -fun anglican_PN : PN; -fun anglican_catholic_PN : PN; -fun anglican_church_PN : PN; -fun anglicanism_PN : PN; -fun anglicism_PN : PN; -fun anglicization_PN : PN; -fun anglo_american_PN : PN; -fun anglo_catholicism_PN : PN; -fun anglo_french_PN : PN; -fun anglo_indian_A : A; -fun anglo_indian_PN : PN; -fun anglo_jewish_A : A; -fun anglo_saxon_A : A; -fun anglo_saxon_PN : PN; -fun anglo_saxon_deity_PN : PN; -fun anglo_catholic_A : A; -fun anglomania_PN : PN; -fun anglophilia_PN : PN; -fun anglophilic_A : A; -fun anglophobia_PN : PN; -fun anglophobic_A : A; -fun angola_PN : PN; -fun angolan_A : A; -fun angolan_PN : PN; -fun angolan_monetary_unit_PN : PN; -fun angolese_PN : PN; -fun angora_PN : PN; -fun angostura_bridge_PN : PN; -fun anguidae_PN : PN; -fun anguilla_PN : PN; -fun anguillan_A : A; -fun anguillan_PN : PN; -fun anguillidae_PN : PN; -fun anguilliformes_PN : PN; -fun anguillula_PN : PN; -fun anguis_PN : PN; -fun angus_PN : PN; -fun angus_og_PN : PN; -fun anhima_PN : PN; -fun anhimidae_PN : PN; -fun anhingidae_PN : PN; -fun anigozanthus_PN : PN; -fun animalia_PN : PN; -fun anisoptera_PN : PN; -fun anisotremus_PN : PN; -fun anita_PN : PN; -fun anjou_PN : PN; -fun ankara_PN : PN; -fun ann_PN : PN; -fun ann_arbor_PN : PN; -fun annaba_PN : PN; -fun annabel_PN : PN; -fun annan_PN : PN; -fun annapolis_PN : PN; -fun annapurna_PN : PN; -fun anne_PN : PN; -fun annelida_PN : PN; -fun annfield_PN : PN; -fun annfield_plain_PN : PN; -fun annie_PN : PN; -fun anniellidae_PN : PN; -fun annona_PN : PN; -fun annonaceae_PN : PN; -fun annunciation_PN : PN; -fun annwfn_PN : PN; -fun anobiidae_PN : PN; -fun anodonta_PN : PN; -fun anoectochilus_PN : PN; -fun anogramma_PN : PN; -fun anolis_PN : PN; -fun anomala_PN : PN; -fun anomalopidae_PN : PN; -fun anomia_PN : PN; -fun anomiidae_PN : PN; -fun anon_PN : PN; -fun anopheles_PN : PN; -fun anoplura_PN : PN; -fun anostraca_PN : PN; -fun anouilh_PN : PN; -fun ansar_al_islam_PN : PN; -fun anselm_PN : PN; -fun anser_PN : PN; -fun anseres_PN : PN; -fun anseriformes_PN : PN; -fun anserinae_PN : PN; -fun anshan_PN : PN; -fun anshar_PN : PN; -fun antalya_PN : PN; -fun antananarivo_PN : PN; -fun antarctic_PN : PN; -fun antarctic_circle_PN : PN; -fun antarctic_ocean_PN : PN; -fun antarctic_peninsula_PN : PN; -fun antarctica_PN : PN; -fun antares_PN : PN; -fun antedon_PN : PN; -fun antedonidae_PN : PN; -fun antennaria_PN : PN; -fun antennariidae_PN : PN; -fun anthea_PN : PN; -fun anthemis_PN : PN; -fun antheraea_PN : PN; -fun anthericum_PN : PN; -fun antheropeas_PN : PN; -fun anthidium_PN : PN; -fun anthoceropsida_PN : PN; -fun anthoceros_PN : PN; -fun anthocerotaceae_PN : PN; -fun anthocerotales_PN : PN; -fun anthonomus_PN : PN; -fun anthony_PN : PN; -fun anthozoa_PN : PN; -fun anthriscus_PN : PN; -fun anthropoidea_PN : PN; -fun anthus_PN : PN; -fun anthyllis_PN : PN; -fun anti_masonic_party_PN : PN; -fun antichrist_PN : PN; -fun antido_PN : PN; -fun antidorcas_PN : PN; -fun antigone_PN : PN; -fun antigonia_PN : PN; -fun antigonus_PN : PN; -fun antigua_PN : PN; -fun antigua_and_barbuda_PN : PN; -fun antiguan_A : A; -fun antiguan_PN : PN; -fun antilles_PN : PN; -fun antilocapra_PN : PN; -fun antilocapridae_PN : PN; -fun antilope_PN : PN; -fun antioch_PN : PN; -fun antirrhinum_PN : PN; -fun antlia_PN : PN; -fun antofagasta_PN : PN; -fun antonine_wall_PN : PN; -fun antoninus_PN : PN; -fun antonius_pius_PN : PN; -fun antony_PN : PN; -fun antrim_PN : PN; -fun antrozous_PN : PN; -fun antum_PN : PN; -fun antwerp_PN : PN; -fun antwerpen_PN : PN; -fun anu_PN : PN; -fun anubis_PN : PN; -fun anunnaki_PN : PN; -fun anzac_PN : PN; -fun anzio_PN : PN; -fun aotus_PN : PN; -fun apache_PN : PN; -fun apalachicola_PN : PN; -fun apalachicola_rosemary_PN : PN; -fun apatura_PN : PN; -fun apeldoorn_PN : PN; -fun apennines_PN : PN; -fun apgar_score_PN : PN; -fun aphasmidia_PN : PN; -fun aphididae_PN : PN; -fun aphidoidea_PN : PN; -fun aphis_PN : PN; -fun aphriza_PN : PN; -fun aphrodite_PN : PN; -fun aphrophora_PN : PN; -fun aphyllanthaceae_PN : PN; -fun aphyllanthes_PN : PN; -fun aphyllophorales_PN : PN; -fun apia_PN : PN; -fun apidae_PN : PN; -fun apios_PN : PN; -fun apis_PN : PN; -fun apium_PN : PN; -fun aplectrum_PN : PN; -fun aplodontia_PN : PN; -fun aplodontiidae_PN : PN; -fun aplysia_PN : PN; -fun aplysiidae_PN : PN; -fun apocrypha_PN : PN; -fun apocryphal_A : A; -fun apocynaceae_PN : PN; -fun apocynum_PN : PN; -fun apodemus_PN : PN; -fun apodidae_PN : PN; -fun apodiformes_PN : PN; -fun apogon_PN : PN; -fun apogonidae_PN : PN; -fun apoidea_PN : PN; -fun apollinaire_PN : PN; -fun apollo_PN : PN; -fun apollo_asteroid_PN : PN; -fun apollo_program_PN : PN; -fun aporocactus_PN : PN; -fun apostle_PN : PN; -fun appalachia_PN : PN; -fun appalachian_A : A; -fun appalachian_PN : PN; -fun appalachians_PN : PN; -fun appaloosa_PN : PN; -fun appenzeller_PN : PN; -fun appian_way_PN : PN; -fun appleton_PN : PN; -fun appleton_layer_PN : PN; -fun approx_PN : PN; -fun apr_PN : PN; -fun april_PN : PN; -fun april_fools'_PN : PN; -fun april_fool_PN : PN; -fun apsu_PN : PN; -fun aptenodytes_PN : PN; -fun apterygidae_PN : PN; -fun apterygiformes_PN : PN; -fun apus_PN : PN; -fun aquarius_PN : PN; -fun aquifoliaceae_PN : PN; -fun aquila_PN : PN; -fun aquinas_PN : PN; -fun aquitaine_PN : PN; -fun ara_PN : PN; -fun arab_PN : PN; -fun arab_israeli_war_PN : PN; -fun arab_league_PN : PN; -fun arabian_A : A; -fun arabian_PN : PN; -fun arabian_desert_PN : PN; -fun arabian_nights'_entertainment_PN : PN; -fun arabian_peninsula_PN : PN; -fun arabian_sea_PN : PN; -fun arabian_camel_PN : PN; -fun arabian_coffee_PN : PN; -fun arabian_jasmine_PN : PN; -fun arabic_A : A; -fun arabic_PN : PN; -fun arabic_alphabet_PN : PN; -fun arabic_numeral_PN : PN; -fun arabidopsis_PN : PN; -fun arabidopsis_lyrata_PN : PN; -fun arabidopsis_thaliana_PN : PN; -fun arabis_PN : PN; -fun arabist_PN : PN; -fun araceae_PN : PN; -fun arachis_PN : PN; -fun arachnida_PN : PN; -fun arafat_PN : PN; -fun arafura_sea_PN : PN; -fun aragon_PN : PN; -fun araguaia_PN : PN; -fun arales_PN : PN; -fun araliaceae_PN : PN; -fun aram_PN : PN; -fun aramaic_A : A; -fun aramaic_PN : PN; -fun aramean_A : A; -fun aramean_PN : PN; -fun aramus_PN : PN; -fun aran_islands_PN : PN; -fun aranea_PN : PN; -fun araneae_PN : PN; -fun aranyaka_PN : PN; -fun arapaho_PN : PN; -fun ararat_PN : PN; -fun aras_PN : PN; -fun arauca_PN : PN; -fun araucariaceae_PN : PN; -fun araujia_PN : PN; -fun arawak_PN : PN; -fun arawakan_A : A; -fun arawn_PN : PN; -fun arbor_day_PN : PN; -fun arbroath_PN : PN; -fun arca_PN : PN; -fun arcadia_PN : PN; -fun arcadian_PN : PN; -fun arcadic_PN : PN; -fun arcellidae_PN : PN; -fun arceuthobium_PN : PN; -fun archaeornithes_PN : PN; -fun archean_PN : PN; -fun arches_national_park_PN : PN; -fun archiannelida_PN : PN; -fun archidiskidon_PN : PN; -fun archilochus_PN : PN; -fun archilochus_colubris_PN : PN; -fun archimedes_PN : PN; -fun archimedes'_principle_PN : PN; -fun archosargus_PN : PN; -fun archosauria_PN : PN; -fun arcidae_PN : PN; -fun arctic_PN : PN; -fun arctic_archipelago_PN : PN; -fun arctic_circle_PN : PN; -fun arctic_ocean_PN : PN; -fun arctic_char_PN : PN; -fun arctic_fox_PN : PN; -fun arctic_ground_squirrel_PN : PN; -fun arctictis_PN : PN; -fun arctiidae_PN : PN; -fun arctium_PN : PN; -fun arctocebus_PN : PN; -fun arctocephalus_PN : PN; -fun arctonyx_PN : PN; -fun arctostaphylos_PN : PN; -fun arctotis_PN : PN; -fun arcturus_PN : PN; -fun ardea_PN : PN; -fun ardeidae_PN : PN; -fun ardennes_PN : PN; -fun ardisia_PN : PN; -fun ardrossan_PN : PN; -fun arecidae_PN : PN; -fun arenaria_PN : PN; -fun arenaviridae_PN : PN; -fun arendt_PN : PN; -fun arenga_PN : PN; -fun areopagite_PN : PN; -fun areopagus_PN : PN; -fun arequipa_PN : PN; -fun ares_PN : PN; -fun argasidae_PN : PN; -fun argentina_PN : PN; -fun argentine_A : A; -fun argentine_PN : PN; -fun argentine_hemorrhagic_fever_PN : PN; -fun argentine_monetary_unit_PN : PN; -fun argentinian_PN : PN; -fun argentinidae_PN : PN; -fun argiope_PN : PN; -fun argiopidae_PN : PN; -fun argive_A : A; -fun argive_PN : PN; -fun argo_PN : PN; -fun argonaut_PN : PN; -fun argonauta_PN : PN; -fun argonautidae_PN : PN; -fun argos_PN : PN; -fun argun_PN : PN; -fun argus_PN : PN; -fun argusianus_PN : PN; -fun argynnis_PN : PN; -fun argyranthemum_PN : PN; -fun argyreia_PN : PN; -fun argyrotaenia_PN : PN; -fun argyroxiphium_PN : PN; -fun arhat_PN : PN; -fun arhus_PN : PN; -fun ariadne_PN : PN; -fun ariana_PN : PN; -fun arianism_PN : PN; -fun arianrhod_PN : PN; -fun aries_PN : PN; -fun ariidae_PN : PN; -fun arikara_PN : PN; -fun arilus_PN : PN; -fun ariocarpus_PN : PN; -fun ariomma_PN : PN; -fun arisaema_PN : PN; -fun arisarum_PN : PN; -fun aristarchus_PN : PN; -fun aristarchus_of_samos_PN : PN; -fun aristolochia_PN : PN; -fun aristolochiaceae_PN : PN; -fun aristolochiales_PN : PN; -fun aristophanes_PN : PN; -fun aristotelia_PN : PN; -fun aristotelian_A : A; -fun aristotelian_PN : PN; -fun aristotelian_logic_PN : PN; -fun aristotelianism_PN : PN; -fun aristotle_PN : PN; -fun arius_PN : PN; -fun arizona_PN : PN; -fun arizona_ash_PN : PN; -fun arizona_cypress_PN : PN; -fun arizona_sycamore_PN : PN; -fun arizona_white_oak_PN : PN; -fun arizonan_PN : PN; -fun arjuna_PN : PN; -fun ark_PN : PN; -fun arkansan_PN : PN; -fun arkansas_PN : PN; -fun arkansas_kingbird_PN : PN; -fun arlington_PN : PN; -fun armadale_PN : PN; -fun armadillidiidae_PN : PN; -fun armadillidium_PN : PN; -fun armageddon_PN : PN; -fun armagh_PN : PN; -fun armagnac_PN : PN; -fun armata_corsa_PN : PN; -fun armed_forces_day_PN : PN; -fun armed_islamic_group_PN : PN; -fun armenia_PN : PN; -fun armenian_A : A; -fun armenian_PN : PN; -fun armenian_church_PN : PN; -fun armenian_secret_army_for_the_liberation_of_armenia_PN : PN; -fun armenian_monetary_unit_PN : PN; -fun armeria_PN : PN; -fun armillaria_PN : PN; -fun armillaria_caligata_PN : PN; -fun armillaria_ponderosa_PN : PN; -fun armillaria_zelleri_PN : PN; -fun armillariella_PN : PN; -fun arminian_A : A; -fun arminian_PN : PN; -fun arminian_baptist_PN : PN; -fun arminian_church_PN : PN; -fun arminianism_PN : PN; -fun arminius_PN : PN; -fun armoracia_PN : PN; -fun armstrong_PN : PN; -fun army_high_performance_computing_research_center_PN : PN; -fun army_intelligence_PN : PN; -fun army_national_guard_PN : PN; -fun army_for_the_liberation_of_rwanda_PN : PN; -fun arnhem_PN : PN; -fun arnica_montana_PN : PN; -fun arno_PN : PN; -fun arnold_PN : PN; -fun arnold_chiari_deformity_PN : PN; -fun arnold_of_brescia_PN : PN; -fun arnoseris_PN : PN; -fun arp_PN : PN; -fun arr_PN : PN; -fun arrhenatherum_PN : PN; -fun arrhenius_PN : PN; -fun art_PN : PN; -fun artamidae_PN : PN; -fun artamus_PN : PN; -fun artaxerxes_i_PN : PN; -fun artaxerxes_ii_PN : PN; -fun artemia_PN : PN; -fun artemis_PN : PN; -fun artemision_at_ephesus_PN : PN; -fun arthropoda_PN : PN; -fun arthropteris_PN : PN; -fun arthur_PN : PN; -fun arthurian_A : A; -fun arthurian_legend_PN : PN; -fun articles_of_confederation_PN : PN; -fun artie_PN : PN; -fun artiodactyla_PN : PN; -fun artocarpus_PN : PN; -fun artois_PN : PN; -fun aruba_PN : PN; -fun arulo_PN : PN; -fun arundinaria_PN : PN; -fun arundo_PN : PN; -fun aruru_PN : PN; -fun arvicola_PN : PN; -fun aryan_PN : PN; -fun asahikawa_PN : PN; -fun asama_PN : PN; -fun asanga_PN : PN; -fun asap_PN : PN; -fun asarh_PN : PN; -fun asarum_PN : PN; -fun asbat_al_ansar_PN : PN; -fun ascaphidae_PN : PN; -fun ascaphus_PN : PN; -fun ascaridae_PN : PN; -fun ascaridia_PN : PN; -fun ascaris_PN : PN; -fun ascension_PN : PN; -fun asch_PN : PN; -fun ascidiaceae_PN : PN; -fun asclepiadaceae_PN : PN; -fun asclepias_PN : PN; -fun ascomycetes_PN : PN; -fun ascomycota_PN : PN; -fun ascophyllum_PN : PN; -fun ascot_PN : PN; -fun asgard_PN : PN; -fun ash_can_PN : PN; -fun ash_wednesday_PN : PN; -fun ashbourne_PN : PN; -fun ashby_PN : PN; -fun ashby_de_la_zouch_PN : PN; -fun ashby_woulds_PN : PN; -fun ashcan_school_PN : PN; -fun ashe_PN : PN; -fun asheville_PN : PN; -fun ashford_PN : PN; -fun ashington_PN : PN; -fun ashkenazi_PN : PN; -fun ashkhabad_PN : PN; -fun ashton_PN : PN; -fun ashton_in_makerfield_PN : PN; -fun ashton_under_lyne_PN : PN; -fun ashur_PN : PN; -fun ashurbanipal_PN : PN; -fun asia_PN : PN; -fun asia_minor_PN : PN; -fun asian_A : A; -fun asian_PN : PN; -fun asian_american_PN : PN; -fun asian_russia_PN : PN; -fun asian_black_grouse_PN : PN; -fun asian_coral_snake_PN : PN; -fun asian_country_PN : PN; -fun asian_crocodile_PN : PN; -fun asian_horseshoe_crab_PN : PN; -fun asian_influenza_PN : PN; -fun asian_longhorned_beetle_PN : PN; -fun asian_tiger_mosquito_PN : PN; -fun asian_wild_ox_PN : PN; -fun asiatic_black_bear_PN : PN; -fun asiatic_flying_squirrel_PN : PN; -fun asiatic_shrew_mole_PN : PN; -fun asiatic_sweetleaf_PN : PN; -fun asilidae_PN : PN; -fun asimina_PN : PN; -fun asimov_PN : PN; -fun asin_PN : PN; -fun asio_PN : PN; -fun ask_jeeves_PN : PN; -fun askern_PN : PN; -fun asmara_PN : PN; -fun aspalathus_PN : PN; -fun asparagaceae_PN : PN; -fun asperger's_syndrome_PN : PN; -fun aspergillaceae_PN : PN; -fun aspergillus_PN : PN; -fun aspergillus_fumigatus_PN : PN; -fun asperula_PN : PN; -fun asphodelaceae_PN : PN; -fun asphodeline_PN : PN; -fun asphodelus_PN : PN; -fun aspidelaps_PN : PN; -fun aspidiotus_PN : PN; -fun aspidophoroides_PN : PN; -fun aspleniaceae_PN : PN; -fun asplenium_PN : PN; -fun aspull_PN : PN; -fun assam_PN : PN; -fun assamese_A : A; -fun assamese_PN : PN; -fun assault_PN : PN; -fun assemblies_of_god_PN : PN; -fun associate_in_applied_science_PN : PN; -fun associate_in_arts_PN : PN; -fun associate_in_nursing_PN : PN; -fun association_for_the_advancement_of_retired_persons_PN : PN; -fun association_of_southeast_asian_nations_PN : PN; -fun assumption_PN : PN; -fun assur_PN : PN; -fun assyria_PN : PN; -fun assyrian_PN : PN; -fun assyrian_akkadian_PN : PN; -fun assyrian_neo_aramaic_PN : PN; -fun assyriology_PN : PN; -fun astacidae_PN : PN; -fun astacus_PN : PN; -fun astaire_PN : PN; -fun astana_PN : PN; -fun astarte_PN : PN; -fun asteridae_PN : PN; -fun asteroidea_PN : PN; -fun aston_PN : PN; -fun astor_PN : PN; -fun astragalus_PN : PN; -fun astrakhan_PN : PN; -fun astreus_PN : PN; -fun astreus_hygrometricus_PN : PN; -fun astreus_pteridis_PN : PN; -fun astroloma_PN : PN; -fun astronium_PN : PN; -fun astronomical_unit_PN : PN; -fun astrophyton_PN : PN; -fun astrophyton_muricatum_PN : PN; -fun astropogon_PN : PN; -fun asuncion_PN : PN; -fun asura_PN : PN; -fun asvins_PN : PN; -fun aswan_PN : PN; -fun aswan_high_dam_PN : PN; -fun atacama_desert_PN : PN; -fun atacama_trench_PN : PN; -fun atakapa_PN : PN; -fun ataturk_PN : PN; -fun ate_PN : PN; -fun ateles_PN : PN; -fun aten_PN : PN; -fun athanasian_creed_PN : PN; -fun athanasianism_PN : PN; -fun athanasius_PN : PN; -fun athapaskan_PN : PN; -fun atharva_veda_PN : PN; -fun athelstan_PN : PN; -fun athena_PN : PN; -fun athene_PN : PN; -fun athenian_A : A; -fun athenian_PN : PN; -fun athens_PN : PN; -fun atherinidae_PN : PN; -fun atherinopsis_PN : PN; -fun atherstone_PN : PN; -fun atherurus_PN : PN; -fun athiorhodaceae_PN : PN; -fun athlone_PN : PN; -fun athos_PN : PN; -fun athrotaxis_PN : PN; -fun athyrium_PN : PN; -fun atlanta_PN : PN; -fun atlantic_A : A; -fun atlantic_PN : PN; -fun atlantic_city_PN : PN; -fun atlantic_coast_PN : PN; -fun atlantic_time_PN : PN; -fun atlantic_bottlenose_dolphin_PN : PN; -fun atlantic_cod_PN : PN; -fun atlantic_croaker_PN : PN; -fun atlantic_halibut_PN : PN; -fun atlantic_herring_PN : PN; -fun atlantic_manta_PN : PN; -fun atlantic_puffin_PN : PN; -fun atlantic_ridley_PN : PN; -fun atlantic_sailfish_PN : PN; -fun atlantic_salmon_PN : PN; -fun atlantic_sea_bream_PN : PN; -fun atlantic_spiny_dogfish_PN : PN; -fun atlantic_tripletail_PN : PN; -fun atlantic_walrus_PN : PN; -fun atlantis_PN : PN; -fun atlas_PN : PN; -fun atlas_mountains_PN : PN; -fun atlas_cedar_PN : PN; -fun atomic_energy_commission_PN : PN; -fun atreus_PN : PN; -fun atrichornis_PN : PN; -fun atrichornithidae_PN : PN; -fun atriplex_PN : PN; -fun atropa_PN : PN; -fun atropidae_PN : PN; -fun atropos_PN : PN; -fun atsugewi_PN : PN; -fun attalea_PN : PN; -fun attic_A : A; -fun attic_PN : PN; -fun attica_PN : PN; -fun atticus_PN : PN; -fun attila_PN : PN; -fun attlee_PN : PN; -fun attorney_general_PN : PN; -fun auchincloss_PN : PN; -fun auckland_PN : PN; -fun aucuba_PN : PN; -fun auden_PN : PN; -fun audenesque_A : A; -fun audley_PN : PN; -fun audrey_PN : PN; -fun audubon_PN : PN; -fun audubon's_caracara_PN : PN; -fun audubon's_warbler_PN : PN; -fun aug_PN : PN; -fun augean_A : A; -fun augean_stables_PN : PN; -fun augeas_PN : PN; -fun augsburg_PN : PN; -fun augsburg_confession_PN : PN; -fun august_PN : PN; -fun augusta_PN : PN; -fun augustan_A : A; -fun augustine_PN : PN; -fun augustinian_PN : PN; -fun augustinian_canons_PN : PN; -fun augustinian_hermits_PN : PN; -fun augustinian_order_PN : PN; -fun augustus_PN : PN; -fun aulacorhyncus_PN : PN; -fun aulostomidae_PN : PN; -fun aulostomus_PN : PN; -fun aum_shinrikyo_PN : PN; -fun aureolaria_PN : PN; -fun auricularia_PN : PN; -fun auriculariaceae_PN : PN; -fun auriculariales_PN : PN; -fun auriga_PN : PN; -fun auriparus_PN : PN; -fun aurora_PN : PN; -fun auschwitz_PN : PN; -fun austen_PN : PN; -fun austerlitz_PN : PN; -fun austin_PN : PN; -fun austin_friar_PN : PN; -fun austin_friars_PN : PN; -fun australasia_PN : PN; -fun australasian_A : A; -fun australia_PN : PN; -fun australian_A : A; -fun australian_PN : PN; -fun australian_alps_PN : PN; -fun australian_desert_PN : PN; -fun australian_labor_party_PN : PN; -fun australian_arowana_PN : PN; -fun australian_blacksnake_PN : PN; -fun australian_bonytongue_PN : PN; -fun australian_cockroach_PN : PN; -fun australian_coral_snake_PN : PN; -fun australian_dollar_PN : PN; -fun australian_grass_tree_PN : PN; -fun australian_hare's_foot_PN : PN; -fun australian_heath_PN : PN; -fun australian_lungfish_PN : PN; -fun australian_magpie_PN : PN; -fun australian_nettle_PN : PN; -fun australian_pea_PN : PN; -fun australian_pine_PN : PN; -fun australian_pitcher_plant_PN : PN; -fun australian_reed_grass_PN : PN; -fun australian_sea_lion_PN : PN; -fun australian_state_PN : PN; -fun australian_sumac_PN : PN; -fun australian_terrier_PN : PN; -fun australian_turtledove_PN : PN; -fun australopithecus_afarensis_PN : PN; -fun australopithecus_africanus_PN : PN; -fun australopithecus_boisei_PN : PN; -fun australopithecus_robustus_PN : PN; -fun austria_PN : PN; -fun austria_hungary_PN : PN; -fun austrian_A : A; -fun austrian_PN : PN; -fun austrian_monetary_unit_PN : PN; -fun austro_asiatic_PN : PN; -fun austrocedrus_PN : PN; -fun austronesia_PN : PN; -fun austronesian_A : A; -fun austronesian_PN : PN; -fun austrotaxus_PN : PN; -fun authorized_version_PN : PN; -fun automeris_PN : PN; -fun auvergne_PN : PN; -fun avahi_PN : PN; -fun avalokitesvara_PN : PN; -fun ave_PN : PN; -fun ave_maria_PN : PN; -fun aveley_PN : PN; -fun avena_PN : PN; -fun averrhoa_PN : PN; -fun averroes_PN : PN; -fun aves_PN : PN; -fun avesta_PN : PN; -fun avestan_A : A; -fun avestan_PN : PN; -fun avicenna_PN : PN; -fun avicennia_PN : PN; -fun avicenniaceae_PN : PN; -fun avignon_PN : PN; -fun avogadro_PN : PN; -fun avogadro's_law_PN : PN; -fun avogadro's_number_PN : PN; -fun avon_PN : PN; -fun axis_PN : PN; -fun aycliffe_PN : PN; -fun aylesbury_PN : PN; -fun aylesford_PN : PN; -fun ayr_PN : PN; -fun ayrshire_PN : PN; -fun aythya_PN : PN; -fun ayurveda_PN : PN; -fun az_zarqa_PN : PN; -fun azadirachta_PN : PN; -fun azerbaijan_PN : PN; -fun azerbaijani_A : A; -fun azerbaijani_PN : PN; -fun azerbaijani_monetary_unit_PN : PN; -fun azeri_PN : PN; -fun azolla_PN : PN; -fun azollaceae_PN : PN; -fun azores_PN : PN; -fun aztec_PN : PN; -fun aztecan_PN : PN; -fun b_PN : PN; -fun basic_PN : PN; -fun bb_PN : PN; -fun bb_gun_PN : PN; -fun bc_Adv : Adv; -fun bce_Adv : Adv; -fun bvd_PN : PN; -fun b_52_PN : PN; -fun b_battery_PN : PN; -fun b_cell_PN : PN; -fun b_complex_vitamin_PN : PN; -fun b_flat_clarinet_PN : PN; -fun b_girl_PN : PN; -fun b_horizon_PN : PN; -fun b_scan_ultrasonography_PN : PN; -fun baader_meinhof_gang_PN : PN; -fun baal_PN : PN; -fun babar_PN : PN; -fun babbitt_metal_PN : PN; -fun babesiidae_PN : PN; -fun babinski_PN : PN; -fun babs_PN : PN; -fun babylon_PN : PN; -fun babylonia_PN : PN; -fun babylonian_A : A; -fun babylonian_PN : PN; -fun babylonian_captivity_PN : PN; -fun babyrousa_PN : PN; -fun baccharis_PN : PN; -fun bacchus_PN : PN; -fun bach_PN : PN; -fun bachelor_of_arts_PN : PN; -fun bachelor_of_arts_in_library_science_PN : PN; -fun bachelor_of_arts_in_nursing_PN : PN; -fun bachelor_of_divinity_PN : PN; -fun bachelor_of_laws_PN : PN; -fun bachelor_of_literature_PN : PN; -fun bachelor_of_medicine_PN : PN; -fun bachelor_of_music_PN : PN; -fun bachelor_of_naval_science_PN : PN; -fun bachelor_of_science_PN : PN; -fun bachelor_of_science_in_architecture_PN : PN; -fun bachelor_of_science_in_engineering_PN : PN; -fun bachelor_of_theology_PN : PN; -fun bacillaceae_PN : PN; -fun bacillariophyceae_PN : PN; -fun bacillus_anthracis_PN : PN; -fun bacillus_subtilis_PN : PN; -fun backworth_PN : PN; -fun bacon_PN : PN; -fun bacteroidaceae_PN : PN; -fun bacteroides_PN : PN; -fun bactrian_camel_PN : PN; -fun bacup_PN : PN; -fun bad_lands_PN : PN; -fun badaga_PN : PN; -fun badajoz_PN : PN; -fun badalona_PN : PN; -fun bade_PN : PN; -fun badlands_national_park_PN : PN; -fun baedeker_PN : PN; -fun baffin_bay_PN : PN; -fun baffin_island_PN : PN; -fun baghdad_PN : PN; -fun bahai_A : A; -fun bahai_PN : PN; -fun bahaism_PN : PN; -fun bahamas_PN : PN; -fun bahamian_A : A; -fun bahamian_PN : PN; -fun bahamian_dollar_PN : PN; -fun bahia_blanca_PN : PN; -fun bahia_grass_PN : PN; -fun bahrain_PN : PN; -fun bahrain_dinar_PN : PN; -fun bahraini_A : A; -fun bahraini_PN : PN; -fun bahrainian_monetary_unit_PN : PN; -fun bai_PN : PN; -fun baikal_PN : PN; -fun bailey_PN : PN; -fun bailey_bridge_PN : PN; -fun baiomys_PN : PN; -fun bairava_PN : PN; -fun bairdiella_PN : PN; -fun baisakh_PN : PN; -fun bakelite_PN : PN; -fun bakersfield_PN : PN; -fun bakke_decision_PN : PN; -fun baku_PN : PN; -fun bakunin_PN : PN; -fun balaena_PN : PN; -fun balaeniceps_PN : PN; -fun balaenicipitidae_PN : PN; -fun balaenidae_PN : PN; -fun balaenoptera_PN : PN; -fun balaenopteridae_PN : PN; -fun balanchine_PN : PN; -fun balanidae_PN : PN; -fun balanus_PN : PN; -fun balarama_PN : PN; -fun balaton_PN : PN; -fun balboa_PN : PN; -fun balder_PN : PN; -fun baldock_PN : PN; -fun baldwin_PN : PN; -fun balearic_islands_PN : PN; -fun balenciaga_PN : PN; -fun balfour_PN : PN; -fun bali_PN : PN; -fun balinese_PN : PN; -fun balistes_PN : PN; -fun balistidae_PN : PN; -fun balkan_PN : PN; -fun balkan_peninsula_PN : PN; -fun balkan_wars_PN : PN; -fun balkan_country_PN : PN; -fun balkans_PN : PN; -fun ball_PN : PN; -fun ballistic_missile_defense_organization_PN : PN; -fun ballota_PN : PN; -fun balmoral_PN : PN; -fun balmoral_castle_PN : PN; -fun balochi_PN : PN; -fun balsaminaceae_PN : PN; -fun balsamorhiza_PN : PN; -fun balthazar_PN : PN; -fun baltic_A : A; -fun baltic_PN : PN; -fun baltic_finnic_PN : PN; -fun baltic_state_PN : PN; -fun baltimore_PN : PN; -fun baltimore_oriole_PN : PN; -fun balto_slavic_PN : PN; -fun balzac_PN : PN; -fun balzacian_A : A; -fun bam_PN : PN; -fun bamako_PN : PN; -fun bambusa_PN : PN; -fun bambuseae_PN : PN; -fun banbury_PN : PN; -fun band_aid_PN : PN; -fun bandung_PN : PN; -fun banff_PN : PN; -fun bangalore_PN : PN; -fun bangiaceae_PN : PN; -fun bangkok_PN : PN; -fun bangladesh_PN : PN; -fun bangladeshi_A : A; -fun bangladeshi_PN : PN; -fun bangladeshi_monetary_unit_PN : PN; -fun bangor_PN : PN; -fun bangui_PN : PN; -fun banjul_PN : PN; -fun bank_of_england_PN : PN; -fun bank_of_japan_PN : PN; -fun bankhead_PN : PN; -fun bankia_PN : PN; -fun banks_PN : PN; -fun bannister_PN : PN; -fun bannockburn_PN : PN; -fun banti's_disease_PN : PN; -fun banting_PN : PN; -fun bantoid_A : A; -fun bantry_PN : PN; -fun bantu_A : A; -fun bantu_PN : PN; -fun bantu_speaking_A : A; -fun baphia_PN : PN; -fun baptisia_PN : PN; -fun baptist_PN : PN; -fun baptist_church_PN : PN; -fun baptist_denomination_PN : PN; -fun baptistic_A : A; -fun baptistic_doctrine_PN : PN; -fun baracaldo_PN : PN; -fun baraka_PN : PN; -fun barany_PN : PN; -fun barbadian_A : A; -fun barbadian_PN : PN; -fun barbados_PN : PN; -fun barbados_dollar_PN : PN; -fun barbados_gooseberry_PN : PN; -fun barbara_PN : PN; -fun barbarea_PN : PN; -fun barbarossa_PN : PN; -fun barbary_PN : PN; -fun barbary_coast_PN : PN; -fun barbary_ape_PN : PN; -fun barber_PN : PN; -fun barberton_daisy_PN : PN; -fun barbuda_PN : PN; -fun barcelona_PN : PN; -fun bardeen_PN : PN; -fun barents_sea_PN : PN; -fun bargoed_PN : PN; -fun bari_PN : PN; -fun barking_PN : PN; -fun barkley_PN : PN; -fun barnaby's_thistle_PN : PN; -fun barnard_castle_PN : PN; -fun barnet_PN : PN; -fun barnoldswick_PN : PN; -fun barnsley_PN : PN; -fun barnstaple_PN : PN; -fun barnum_PN : PN; -fun baroque_PN : PN; -fun barranquilla_PN : PN; -fun barrhead_PN : PN; -fun barrie_PN : PN; -fun barrow's_goldeneye_PN : PN; -fun barrow_in_furness_PN : PN; -fun barry_PN : PN; -fun barrymore_PN : PN; -fun barstow_PN : PN; -fun bart_PN : PN; -fun barth_PN : PN; -fun barthelme_PN : PN; -fun bartholdi_PN : PN; -fun bartholin_PN : PN; -fun bartholin's_gland_PN : PN; -fun bartholomew_PN : PN; -fun bartle_frere_PN : PN; -fun bartlesville_PN : PN; -fun bartlett_PN : PN; -fun bartok_PN : PN; -fun barton_upon_humber_PN : PN; -fun bartram_juneberry_PN : PN; -fun bartramia_PN : PN; -fun baruch_PN : PN; -fun baryshnikov_PN : PN; -fun basel_PN : PN; -fun basic_english_PN : PN; -fun basidiomycetes_PN : PN; -fun basidiomycota_PN : PN; -fun basil_PN : PN; -fun basildon_PN : PN; -fun basilicata_PN : PN; -fun basiliscus_PN : PN; -fun basingstoke_PN : PN; -fun basket_maker_PN : PN; -fun basotho_PN : PN; -fun basque_PN : PN; -fun basque_homeland_and_freedom_PN : PN; -fun basra_PN : PN; -fun bassariscidae_PN : PN; -fun bassariscus_PN : PN; -fun basse_normandie_PN : PN; -fun basseterre_PN : PN; -fun bassia_PN : PN; -fun bast_PN : PN; -fun bastille_PN : PN; -fun bastille_day_PN : PN; -fun bata_PN : PN; -fun bataan_PN : PN; -fun bath_PN : PN; -fun bathgate_PN : PN; -fun bathsheba_PN : PN; -fun bathyergidae_PN : PN; -fun bathyergus_PN : PN; -fun batidaceae_PN : PN; -fun batis_PN : PN; -fun batley_PN : PN; -fun batna_PN : PN; -fun baton_rouge_PN : PN; -fun baton_rouge_bridge_PN : PN; -fun batrachoididae_PN : PN; -fun batrachoseps_PN : PN; -fun battle_of_britain_PN : PN; -fun battle_of_kerbala_PN : PN; -fun battle_of_puebla_PN : PN; -fun battle_of_wake_PN : PN; -fun battle_of_the_ardennes_bulge_PN : PN; -fun battle_of_the_marne_PN : PN; -fun battle_of_the_spanish_armada_PN : PN; -fun baudelaire_PN : PN; -fun bauhaus_PN : PN; -fun bauhinia_PN : PN; -fun baum_PN : PN; -fun bavaria_PN : PN; -fun bavarian_A : A; -fun bavarian_PN : PN; -fun bavarian_blue_PN : PN; -fun bavarian_cream_PN : PN; -fun bay_stater_PN : PN; -fun bay_of_bengal_PN : PN; -fun bay_of_biscay_PN : PN; -fun bay_of_fundy_PN : PN; -fun bay_of_naples_PN : PN; -fun bayard_PN : PN; -fun bayes_PN : PN; -fun bayes'_postulate_PN : PN; -fun bayes'_theorem_PN : PN; -fun bayesian_A : A; -fun bayonne_PN : PN; -fun bayonne_bridge_PN : PN; -fun bayrut_PN : PN; -fun bbc_PN : PN; -fun beacon_hill_PN : PN; -fun beaconsfield_PN : PN; -fun beadle_PN : PN; -fun bearsden_PN : PN; -fun beatitude_PN : PN; -fun beatles_PN : PN; -fun beatrice_PN : PN; -fun beaufort_sea_PN : PN; -fun beaufort_scale_PN : PN; -fun beaujolais_PN : PN; -fun beaumaris_PN : PN; -fun beaumont_PN : PN; -fun beaumontia_PN : PN; -fun beauvoir_PN : PN; -fun beaverbrook_PN : PN; -fun bebington_PN : PN; -fun beccles_PN : PN; -fun bechtel_crab_PN : PN; -fun becker_muscular_dystrophy_PN : PN; -fun becket_PN : PN; -fun beckett_PN : PN; -fun beckley_PN : PN; -fun beckman_thermometer_PN : PN; -fun becquerel_PN : PN; -fun beddau_PN : PN; -fun bede_PN : PN; -fun bedford_PN : PN; -fun bedford_cord_PN : PN; -fun bedfordshire_PN : PN; -fun bedlam_PN : PN; -fun bedlington_PN : PN; -fun bedlington_terrier_PN : PN; -fun bedouin_PN : PN; -fun bedwas_PN : PN; -fun beecher_PN : PN; -fun beerbohm_PN : PN; -fun beethoven_PN : PN; -fun beethovenian_A : A; -fun begin_PN : PN; -fun begoniaceae_PN : PN; -fun beguine_PN : PN; -fun behrens_PN : PN; -fun beijing_PN : PN; -fun beira_PN : PN; -fun beirut_PN : PN; -fun beith_PN : PN; -fun bel_PN : PN; -fun bel_and_the_dragon_PN : PN; -fun belamcanda_PN : PN; -fun belarus_PN : PN; -fun belarusian_A : A; -fun belarusian_PN : PN; -fun belarusian_monetary_unit_PN : PN; -fun belem_PN : PN; -fun belemnitidae_PN : PN; -fun belemnoidea_PN : PN; -fun belfast_PN : PN; -fun belgian_A : A; -fun belgian_PN : PN; -fun belgian_endive_PN : PN; -fun belgian_franc_PN : PN; -fun belgian_hare_PN : PN; -fun belgian_sheepdog_PN : PN; -fun belgian_waffle_PN : PN; -fun belgium_PN : PN; -fun belgrade_PN : PN; -fun belinda_PN : PN; -fun belisarius_PN : PN; -fun belize_PN : PN; -fun belize_dollar_PN : PN; -fun bell_PN : PN; -fun bella_PN : PN; -fun bellarmine_PN : PN; -fun belle_PN : PN; -fun belle_isle_cress_PN : PN; -fun bellerophon_PN : PN; -fun bellingham_PN : PN; -fun bellini_PN : PN; -fun bellis_PN : PN; -fun belloc_PN : PN; -fun bellow_PN : PN; -fun bellshill_PN : PN; -fun belmont_park_PN : PN; -fun belmont_stakes_PN : PN; -fun belo_horizonte_PN : PN; -fun belonidae_PN : PN; -fun belostomatidae_PN : PN; -fun belper_PN : PN; -fun belsen_PN : PN; -fun belshazzar_PN : PN; -fun bemidji_PN : PN; -fun bemisia_PN : PN; -fun ben_PN : PN; -fun ben_gurion_PN : PN; -fun ben_sira_PN : PN; -fun bench_PN : PN; -fun benchley_PN : PN; -fun bend_PN : PN; -fun benday_process_PN : PN; -fun benedict_PN : PN; -fun benedict_xiv_PN : PN; -fun benedict_xv_PN : PN; -fun benedictine_A : A; -fun benedictine_PN : PN; -fun benedictine_order_PN : PN; -fun benelux_PN : PN; -fun benet_PN : PN; -fun benford's_law_PN : PN; -fun bengal_PN : PN; -fun bengal_light_PN : PN; -fun bengal_tiger_PN : PN; -fun bengali_A : A; -fun bengali_PN : PN; -fun benghazi_PN : PN; -fun benin_PN : PN; -fun benin_franc_PN : PN; -fun beninese_A : A; -fun beninese_PN : PN; -fun benjamin_PN : PN; -fun benjamin_franklin_bridge_PN : PN; -fun bennett_PN : PN; -fun bennettitaceae_PN : PN; -fun bennettitales_PN : PN; -fun bennettitis_PN : PN; -fun bennington_PN : PN; -fun benny_PN : PN; -fun bentham_PN : PN; -fun benton_PN : PN; -fun benzedrine_PN : PN; -fun benzoin_PN : PN; -fun beograd_PN : PN; -fun beowulf_PN : PN; -fun berber_PN : PN; -fun berberidaceae_PN : PN; -fun berberis_PN : PN; -fun berbers_PN : PN; -fun bercy_PN : PN; -fun berg_PN : PN; -fun bergamo_PN : PN; -fun bergen_PN : PN; -fun bergman_PN : PN; -fun bergson_PN : PN; -fun beria_PN : PN; -fun bering_PN : PN; -fun bering_sea_PN : PN; -fun bering_strait_PN : PN; -fun bering_time_PN : PN; -fun berith_PN : PN; -fun berkeley_PN : PN; -fun berkhamsted_PN : PN; -fun berkshire_PN : PN; -fun berkshires_PN : PN; -fun berlage_PN : PN; -fun berlin_PN : PN; -fun berlin_airlift_PN : PN; -fun berlin_doughnut_PN : PN; -fun berliner_PN : PN; -fun berlioz_PN : PN; -fun bermuda_PN : PN; -fun bermuda_triangle_PN : PN; -fun bermuda_buttercup_PN : PN; -fun bermuda_cedar_PN : PN; -fun bermuda_chub_PN : PN; -fun bermuda_dollar_PN : PN; -fun bermuda_grass_PN : PN; -fun bermuda_maidenhair_PN : PN; -fun bermuda_onion_PN : PN; -fun bermuda_plan_PN : PN; -fun bermuda_rig_PN : PN; -fun bermuda_shorts_PN : PN; -fun bermudan_A : A; -fun bermudan_PN : PN; -fun bern_PN : PN; -fun bernard_PN : PN; -fun bernese_mountain_dog_PN : PN; -fun bernhardt_PN : PN; -fun bernie_PN : PN; -fun bernini_PN : PN; -fun bernoulli_PN : PN; -fun bernoulli's_law_PN : PN; -fun bernstein_PN : PN; -fun berra_PN : PN; -fun berry_PN : PN; -fun bert_PN : PN; -fun berteroa_PN : PN; -fun bertha_PN : PN; -fun bertholletia_PN : PN; -fun bertie_PN : PN; -fun bertillon_PN : PN; -fun bertillon_system_PN : PN; -fun bertolucci_PN : PN; -fun berwick_upon_tweed_PN : PN; -fun berycomorphi_PN : PN; -fun beryl_PN : PN; -fun berzelius_PN : PN; -fun bess_PN : PN; -fun bessel_PN : PN; -fun bessemer_PN : PN; -fun bessemer_converter_PN : PN; -fun bessemer_process_PN : PN; -fun bessera_PN : PN; -fun besseya_PN : PN; -fun bessie_PN : PN; -fun best_PN : PN; -fun beta_PN : PN; -fun beta_centauri_PN : PN; -fun beta_crucis_PN : PN; -fun betelgeuse_PN : PN; -fun bethe_PN : PN; -fun bethlehem_PN : PN; -fun bethune_PN : PN; -fun betsy_PN : PN; -fun bettongia_PN : PN; -fun betty_PN : PN; -fun betula_PN : PN; -fun betulaceae_PN : PN; -fun beveridge_PN : PN; -fun beverley_PN : PN; -fun beverly_hills_PN : PN; -fun bevin_PN : PN; -fun bewdley_PN : PN; -fun bewick's_swan_PN : PN; -fun bexhill_PN : PN; -fun bexley_PN : PN; -fun bhadon_PN : PN; -fun bhaga_PN : PN; -fun bhagavad_gita_PN : PN; -fun bhumi_devi_PN : PN; -fun bhutan_PN : PN; -fun bhutanese_A : A; -fun bhutanese_PN : PN; -fun bhutanese_monetary_unit_PN : PN; -fun bibb_lettuce_PN : PN; -fun bible_PN : PN; -fun bible_belt_PN : PN; -fun biblical_aramaic_PN : PN; -fun bibos_PN : PN; -fun bicester_PN : PN; -fun biddulph_PN : PN; -fun bideford_PN : PN; -fun bidens_PN : PN; -fun biedermeier_A : A; -fun bielefeld_PN : PN; -fun bierce_PN : PN; -fun big_ben_PN : PN; -fun big_bend_PN : PN; -fun big_bend_national_park_PN : PN; -fun big_blue_PN : PN; -fun big_brother_PN : PN; -fun big_dipper_PN : PN; -fun big_sioux_river_PN : PN; -fun big_sur_PN : PN; -fun bigfoot_PN : PN; -fun biggleswade_PN : PN; -fun bighorn_PN : PN; -fun bight_of_benin_PN : PN; -fun bignonia_PN : PN; -fun bignoniaceae_PN : PN; -fun bihar_PN : PN; -fun bihari_PN : PN; -fun bikini_PN : PN; -fun bilbao_PN : PN; -fun bill_PN : PN; -fun bill_of_rights_PN : PN; -fun billericay_PN : PN; -fun billings_PN : PN; -fun billington_PN : PN; -fun billy_PN : PN; -fun biloxi_PN : PN; -fun binet_PN : PN; -fun binet_simon_scale_PN : PN; -fun binghamton_PN : PN; -fun bingley_PN : PN; -fun bioko_PN : PN; -fun birkenhead_PN : PN; -fun birmingham_PN : PN; -fun birstall_PN : PN; -fun birtley_PN : PN; -fun biscayne_bay_PN : PN; -fun biscayne_national_park_PN : PN; -fun biscutella_PN : PN; -fun bishkek_PN : PN; -fun bishop's_cleeve_PN : PN; -fun bishop's_stortford_PN : PN; -fun bishop_auckland_PN : PN; -fun bishopbriggs_PN : PN; -fun bismarck_PN : PN; -fun bismarck_archipelago_PN : PN; -fun bismarck_sea_PN : PN; -fun bismarckian_A : A; -fun bissau_PN : PN; -fun bithynia_PN : PN; -fun bitis_PN : PN; -fun bittacidae_PN : PN; -fun biu_mandara_PN : PN; -fun bivalvia_PN : PN; -fun bizet_PN : PN; -fun blaberus_PN : PN; -fun black_PN : PN; -fun black_african_PN : PN; -fun black_death_PN : PN; -fun black_forest_PN : PN; -fun black_hand_PN : PN; -fun black_hawk_PN : PN; -fun black_hills_PN : PN; -fun black_hole_of_calcutta_PN : PN; -fun black_muslim_PN : PN; -fun black_panther_PN : PN; -fun black_panthers_PN : PN; -fun black_rock_desert_PN : PN; -fun black_sea_PN : PN; -fun black_september_movement_PN : PN; -fun black_and_tan_PN : PN; -fun black_man_PN : PN; -fun black_race_PN : PN; -fun black_woman_PN : PN; -fun blackburn_PN : PN; -fun blackfoot_PN : PN; -fun blackhall_PN : PN; -fun blackpool_PN : PN; -fun blacksburg_PN : PN; -fun blackshirt_PN : PN; -fun blackwall_hitch_PN : PN; -fun blackwood_PN : PN; -fun blaenau_ffestiniog_PN : PN; -fun blaenavon_PN : PN; -fun blaengwrach_PN : PN; -fun blaia_zimondal_PN : PN; -fun blaina_PN : PN; -fun blair_PN : PN; -fun blairgowrie_PN : PN; -fun blake_PN : PN; -fun blandfordia_PN : PN; -fun blantyre_PN : PN; -fun blarina_PN : PN; -fun blarney_stone_PN : PN; -fun blastocladia_PN : PN; -fun blastocladiales_PN : PN; -fun blastodiaceae_PN : PN; -fun blastomyces_PN : PN; -fun blatta_PN : PN; -fun blattella_PN : PN; -fun blattidae_PN : PN; -fun blattodea_PN : PN; -fun bldg_PN : PN; -fun bldgs_PN : PN; -fun blechnaceae_PN : PN; -fun blechnum_PN : PN; -fun blenheim_PN : PN; -fun blenheim_spaniel_PN : PN; -fun blenniidae_PN : PN; -fun blennioidea_PN : PN; -fun blennius_PN : PN; -fun blephilia_PN : PN; -fun bleriot_PN : PN; -fun blessed_A : A; -fun bletchley_PN : PN; -fun bletilla_PN : PN; -fun bletilla_striata_PN : PN; -fun blida_PN : PN; -fun blidworth_PN : PN; -fun bligh_PN : PN; -fun blighia_PN : PN; -fun blighty_PN : PN; -fun blissus_PN : PN; -fun blitzstein_PN : PN; -fun bloch_PN : PN; -fun bloemfontein_PN : PN; -fun blok_PN : PN; -fun bloody_mary_PN : PN; -fun bloomeria_PN : PN; -fun bloomfield_PN : PN; -fun bloomington_PN : PN; -fun bloomsbury_PN : PN; -fun bloomsbury_group_PN : PN; -fun blucher_PN : PN; -fun blue_mountain_tea_PN : PN; -fun blue_nile_PN : PN; -fun blue_ridge_mountains_PN : PN; -fun bluebeard_PN : PN; -fun bluegrass_PN : PN; -fun blyth_PN : PN; -fun bo'ness_PN : PN; -fun bo_hai_PN : PN; -fun boann_PN : PN; -fun bob_PN : PN; -fun bobby_PN : PN; -fun boccaccio_PN : PN; -fun bochum_PN : PN; -fun bodhisattva_PN : PN; -fun bodmin_PN : PN; -fun bodo_garo_PN : PN; -fun bodoni_PN : PN; -fun boehme_PN : PN; -fun boehmenism_PN : PN; -fun boehmeria_PN : PN; -fun boell_PN : PN; -fun boeotia_PN : PN; -fun boeotian_A : A; -fun boer_war_PN : PN; -fun boethius_PN : PN; -fun bofors_gun_PN : PN; -fun bogart_PN : PN; -fun bogartian_A : A; -fun bognor_PN : PN; -fun bognor_regis_PN : PN; -fun bogota_PN : PN; -fun bohemia_PN : PN; -fun bohemian_A : A; -fun bohemian_PN : PN; -fun bohemian_waxwing_PN : PN; -fun bohr_PN : PN; -fun bohr_theory_PN : PN; -fun boidae_PN : PN; -fun boise_PN : PN; -fun bokmal_PN : PN; -fun bolbitis_PN : PN; -fun boldon_PN : PN; -fun bole_PN : PN; -fun boletaceae_PN : PN; -fun boletellus_PN : PN; -fun boletellus_russellii_PN : PN; -fun boletus_PN : PN; -fun boletus_chrysenteron_PN : PN; -fun boletus_edulis_PN : PN; -fun boletus_luridus_PN : PN; -fun boletus_mirabilis_PN : PN; -fun boletus_pallidus_PN : PN; -fun boletus_pulcherrimus_PN : PN; -fun boletus_pulverulentus_PN : PN; -fun boletus_roxanae_PN : PN; -fun boletus_subvelutipes_PN : PN; -fun boletus_variipes_PN : PN; -fun boletus_zelleri_PN : PN; -fun boleyn_PN : PN; -fun bolivar_PN : PN; -fun bolivia_PN : PN; -fun bolivian_A : A; -fun bolivian_PN : PN; -fun bolivian_monetary_unit_PN : PN; -fun bollington_PN : PN; -fun bollywood_PN : PN; -fun bologna_PN : PN; -fun bolshevik_A : A; -fun bolshevik_PN : PN; -fun bolshevism_PN : PN; -fun bolsover_PN : PN; -fun bolton_PN : PN; -fun bolton_le_sands_PN : PN; -fun boltonia_PN : PN; -fun boltzmann_PN : PN; -fun boltzmann's_constant_PN : PN; -fun bolzano_PN : PN; -fun bomarea_PN : PN; -fun bombacaceae_PN : PN; -fun bombax_PN : PN; -fun bombay_PN : PN; -fun bombina_PN : PN; -fun bombus_PN : PN; -fun bombycidae_PN : PN; -fun bombycilla_PN : PN; -fun bombycillidae_PN : PN; -fun bombyliidae_PN : PN; -fun bombyx_PN : PN; -fun bonaire_PN : PN; -fun bonasa_PN : PN; -fun bond_PN : PN; -fun bonete_PN : PN; -fun bonfire_night_PN : PN; -fun bonhoeffer_PN : PN; -fun boniface_PN : PN; -fun boniface_viii_PN : PN; -fun bonn_PN : PN; -fun bonney_PN : PN; -fun bonnybridge_PN : PN; -fun bonnyrigg_PN : PN; -fun bontemps_PN : PN; -fun book_of_common_prayer_PN : PN; -fun book_of_mormon_PN : PN; -fun boole_PN : PN; -fun boolean_A : A; -fun boolean_logic_PN : PN; -fun boone_PN : PN; -fun bootes_PN : PN; -fun booth_PN : PN; -fun bootle_PN : PN; -fun boott's_goldenrod_PN : PN; -fun boraginaceae_PN : PN; -fun borago_PN : PN; -fun borassus_PN : PN; -fun bordeaux_PN : PN; -fun bordeaux_mixture_PN : PN; -fun border_collie_PN : PN; -fun border_terrier_PN : PN; -fun borders_PN : PN; -fun bordon_PN : PN; -fun boreas_PN : PN; -fun borges_PN : PN; -fun borgia_PN : PN; -fun boris_PN : PN; -fun born_PN : PN; -fun bornean_PN : PN; -fun borneo_PN : PN; -fun borodin_PN : PN; -fun borodino_PN : PN; -fun borrelia_burgdorferi_PN : PN; -fun bos_PN : PN; -fun bosch_PN : PN; -fun bose_PN : PN; -fun bose_einstein_statistics_PN : PN; -fun boselaphus_PN : PN; -fun boskop_man_PN : PN; -fun bosnia_PN : PN; -fun bosnia_and_herzegovina_PN : PN; -fun bosnian_A : A; -fun bosporus_PN : PN; -fun bosporus_bridge_PN : PN; -fun boston_PN : PN; -fun boston_harbor_PN : PN; -fun boston_tea_party_PN : PN; -fun boston_baked_beans_PN : PN; -fun boston_bull_PN : PN; -fun boston_cream_pie_PN : PN; -fun boston_fern_PN : PN; -fun boston_ivy_PN : PN; -fun boston_lettuce_PN : PN; -fun boston_rocker_PN : PN; -fun bostonian_PN : PN; -fun boswell_PN : PN; -fun boswellia_PN : PN; -fun boswellia_carteri_PN : PN; -fun bosworth_field_PN : PN; -fun botaurus_PN : PN; -fun bothidae_PN : PN; -fun bothrops_PN : PN; -fun botrychium_PN : PN; -fun botswana_PN : PN; -fun botswana_monetary_unit_PN : PN; -fun botswanan_A : A; -fun botticelli_PN : PN; -fun bottrop_PN : PN; -fun bougainville_PN : PN; -fun bougainville_trench_PN : PN; -fun boulder_PN : PN; -fun boulez_PN : PN; -fun bounty_PN : PN; -fun bourbon_PN : PN; -fun bourgogne_PN : PN; -fun bourne_PN : PN; -fun bournemouth_PN : PN; -fun bourse_PN : PN; -fun bouteloua_PN : PN; -fun bouvet_island_PN : PN; -fun bouvier_des_flandres_PN : PN; -fun bouvines_PN : PN; -fun bouyei_PN : PN; -fun bovidae_PN : PN; -fun bovinae_PN : PN; -fun bovini_PN : PN; -fun bowburn_PN : PN; -fun bowditch_PN : PN; -fun bowdler_PN : PN; -fun bowdlerism_PN : PN; -fun bowery_PN : PN; -fun bowie_PN : PN; -fun bowie_knife_PN : PN; -fun bowiea_PN : PN; -fun bowling_green_PN : PN; -fun bowman's_capsule_PN : PN; -fun boxer_PN : PN; -fun boxing_day_PN : PN; -fun boy_scout_PN : PN; -fun boy_scouts_PN : PN; -fun boy_scouts_of_america_PN : PN; -fun boykinia_PN : PN; -fun boyle_PN : PN; -fun boyle's_law_PN : PN; -fun boyne_PN : PN; -fun bozeman_PN : PN; -fun brabancon_griffon_PN : PN; -fun brachinus_PN : PN; -fun brachiopoda_PN : PN; -fun brachychiton_PN : PN; -fun brachycome_PN : PN; -fun brachystegia_PN : PN; -fun brachyura_PN : PN; -fun bracknell_PN : PN; -fun bradbury_PN : PN; -fun bradford_PN : PN; -fun bradford_on_avon_PN : PN; -fun bradley_PN : PN; -fun bradley's_spleenwort_PN : PN; -fun bradley_method_of_childbirth_PN : PN; -fun bradstreet_PN : PN; -fun brady_PN : PN; -fun bradypodidae_PN : PN; -fun bradypus_PN : PN; -fun braga_PN : PN; -fun bragg_PN : PN; -fun bragi_PN : PN; -fun brahe_PN : PN; -fun brahma_PN : PN; -fun brahman_PN : PN; -fun brahmana_PN : PN; -fun brahmanism_PN : PN; -fun brahmaputra_PN : PN; -fun brahmi_PN : PN; -fun brahms_PN : PN; -fun brahui_PN : PN; -fun braille_PN : PN; -fun braintree_PN : PN; -fun brama_PN : PN; -fun bramante_PN : PN; -fun bramidae_PN : PN; -fun bramley's_seedling_PN : PN; -fun branchiobdella_PN : PN; -fun branchiobdellidae_PN : PN; -fun branchiopoda_PN : PN; -fun branchiostegidae_PN : PN; -fun branchiura_PN : PN; -fun brancusi_PN : PN; -fun brandenburg_PN : PN; -fun branderburgh_PN : PN; -fun brandt_PN : PN; -fun branta_PN : PN; -fun braque_PN : PN; -fun brasenia_PN : PN; -fun brasilia_PN : PN; -fun brasov_PN : PN; -fun brassia_PN : PN; -fun brassica_PN : PN; -fun bratislava_PN : PN; -fun brattleboro_PN : PN; -fun braun_PN : PN; -fun braun's_holly_fern_PN : PN; -fun braunschweig_PN : PN; -fun braunton_PN : PN; -fun braxton_hicks_contraction_PN : PN; -fun brazil_PN : PN; -fun brazilian_A : A; -fun brazilian_PN : PN; -fun brazilian_guava_PN : PN; -fun brazilian_monetary_unit_PN : PN; -fun brazilian_pepper_tree_PN : PN; -fun brazilian_rosewood_PN : PN; -fun brazilian_trumpeter_PN : PN; -fun brazos_PN : PN; -fun brazzaville_PN : PN; -fun breaston_PN : PN; -fun brecht_PN : PN; -fun brecknock_PN : PN; -fun breda_PN : PN; -fun breed's_hill_PN : PN; -fun breedsall_PN : PN; -fun bremen_PN : PN; -fun bremerhaven_PN : PN; -fun bren_PN : PN; -fun brenda_PN : PN; -fun brenner_pass_PN : PN; -fun brent_PN : PN; -fun brentwood_PN : PN; -fun brer_rabbit_PN : PN; -fun brescia_PN : PN; -fun brest_PN : PN; -fun bretagne_PN : PN; -fun breton_PN : PN; -fun breuer_PN : PN; -fun brevoortia_PN : PN; -fun brezhnev_PN : PN; -fun brian_PN : PN; -fun brickellia_PN : PN; -fun bricket_wood_PN : PN; -fun bridgend_PN : PN; -fun bridgeport_PN : PN; -fun bridges_PN : PN; -fun bridget_PN : PN; -fun bridgetown_PN : PN; -fun bridgnorth_PN : PN; -fun bridgwater_PN : PN; -fun bridlington_PN : PN; -fun bridport_PN : PN; -fun brie_PN : PN; -fun brig_PN : PN; -fun brighouse_PN : PN; -fun brightlingsea_PN : PN; -fun brighton_PN : PN; -fun brigit_PN : PN; -fun brihaspati_PN : PN; -fun brindisi_PN : PN; -fun brinell_number_PN : PN; -fun brinton_PN : PN; -fun brioschi_PN : PN; -fun brisbane_PN : PN; -fun bristol_PN : PN; -fun bristol_channel_PN : PN; -fun britain_PN : PN; -fun britannia_metal_PN : PN; -fun britannic_A : A; -fun british_A : A; -fun british_PN : PN; -fun british_cabinet_PN : PN; -fun british_columbia_PN : PN; -fun british_commonwealth_PN : PN; -fun british_crown_PN : PN; -fun british_east_africa_PN : PN; -fun british_empire_PN : PN; -fun british_imperial_system_PN : PN; -fun british_isles_PN : PN; -fun british_labour_party_PN : PN; -fun british_parliament_PN : PN; -fun british_virgin_islands_PN : PN; -fun british_west_africa_PN : PN; -fun british_west_indies_PN : PN; -fun british_capacity_unit_PN : PN; -fun british_empiricism_PN : PN; -fun british_monetary_unit_PN : PN; -fun british_pound_PN : PN; -fun british_shilling_PN : PN; -fun british_thermal_unit_PN : PN; -fun britisher_PN : PN; -fun briton_A : A; -fun briton_PN : PN; -fun brittany_spaniel_PN : PN; -fun britten_PN : PN; -fun brix_scale_PN : PN; -fun brixham_PN : PN; -fun brno_PN : PN; -fun broadway_PN : PN; -fun brobdingnag_PN : PN; -fun brobdingnagian_A : A; -fun broca_PN : PN; -fun broca's_area_PN : PN; -fun brockhouse_PN : PN; -fun brodmann's_area_PN : PN; -fun broglie_PN : PN; -fun bromelia_PN : PN; -fun bromeliaceae_PN : PN; -fun bromley_PN : PN; -fun bromo_seltzer_PN : PN; -fun bromsgrove_PN : PN; -fun bromus_PN : PN; -fun bronte_PN : PN; -fun bronte_sisters_PN : PN; -fun bronx_PN : PN; -fun bronx_whitestone_bridge_PN : PN; -fun bronze_age_PN : PN; -fun bronze_star_medal_PN : PN; -fun brooke_PN : PN; -fun brooklyn_PN : PN; -fun brooklyn_bridge_PN : PN; -fun brooks_PN : PN; -fun bros_PN : PN; -fun brosmius_PN : PN; -fun brother_PN : PN; -fun brotulidae_PN : PN; -fun broughton_PN : PN; -fun broussonetia_PN : PN; -fun brown_PN : PN; -fun brown_swiss_PN : PN; -fun brown_university_PN : PN; -fun browne_PN : PN; -fun brownian_movement_PN : PN; -fun brownie_PN : PN; -fun browning_PN : PN; -fun browning_automatic_rifle_PN : PN; -fun browning_machine_gun_PN : PN; -fun brownshirt_PN : PN; -fun brownsville_PN : PN; -fun broxburn_PN : PN; -fun bruce_PN : PN; -fun brucella_PN : PN; -fun bruch_PN : PN; -fun bruchidae_PN : PN; -fun bruchus_PN : PN; -fun bruckenthalia_PN : PN; -fun bruckner_PN : PN; -fun brueghel_PN : PN; -fun bruges_PN : PN; -fun brugmansia_PN : PN; -fun brule_PN : PN; -fun brumaire_PN : PN; -fun brummagem_A : A; -fun brummell_PN : PN; -fun brummie_PN : PN; -fun brunanburh_PN : PN; -fun brunei_PN : PN; -fun brunei_dollar_PN : PN; -fun bruneian_A : A; -fun bruneian_PN : PN; -fun brunelleschi_PN : PN; -fun brunfelsia_PN : PN; -fun brunhild_PN : PN; -fun bruno_PN : PN; -fun brunswick_PN : PN; -fun brunswick_stew_PN : PN; -fun brussels_PN : PN; -fun brussels_carpet_PN : PN; -fun brussels_lace_PN : PN; -fun brutus_PN : PN; -fun bruxelles_PN : PN; -fun brya_PN : PN; -fun bryaceae_PN : PN; -fun bryales_PN : PN; -fun bryan_PN : PN; -fun bryce_canyon_national_park_PN : PN; -fun bryophyta_PN : PN; -fun bryopsida_PN : PN; -fun bryozoa_PN : PN; -fun brythonic_PN : PN; -fun bryum_PN : PN; -fun bst_PN : PN; -fun bt_PN : PN; -fun bubalus_PN : PN; -fun buber_PN : PN; -fun bubo_PN : PN; -fun bubulcus_PN : PN; -fun bucarest_PN : PN; -fun buccinidae_PN : PN; -fun bucconidae_PN : PN; -fun bucephala_PN : PN; -fun buceros_PN : PN; -fun bucerotidae_PN : PN; -fun buchanan_PN : PN; -fun bucharest_PN : PN; -fun buchenwald_PN : PN; -fun buchloe_PN : PN; -fun buchner_PN : PN; -fun buck_PN : PN; -fun buckhaven_PN : PN; -fun buckie_PN : PN; -fun buckingham_PN : PN; -fun buckingham_palace_PN : PN; -fun buckinghamshire_PN : PN; -fun buckley_PN : PN; -fun bucksburn_PN : PN; -fun budapest_PN : PN; -fun buddha_PN : PN; -fun buddhism_PN : PN; -fun buddhist_A : A; -fun buddhist_PN : PN; -fun budge_PN : PN; -fun budorcas_PN : PN; -fun buena_vista_PN : PN; -fun buenos_aires_PN : PN; -fun buffalo_PN : PN; -fun bufonidae_PN : PN; -fun buganda_PN : PN; -fun bujumbura_PN : PN; -fun bukharin_PN : PN; -fun bulawayo_PN : PN; -fun bulgaria_PN : PN; -fun bulgarian_A : A; -fun bulgarian_PN : PN; -fun bulgarian_monetary_unit_PN : PN; -fun bulkington_PN : PN; -fun bull_run_PN : PN; -fun bullfinch_PN : PN; -fun bullock's_oriole_PN : PN; -fun bulnesia_PN : PN; -fun bultmann_PN : PN; -fun bumelia_PN : PN; -fun bunche_PN : PN; -fun bundesbank_PN : PN; -fun bungarus_PN : PN; -fun bunker_buster_PN : PN; -fun bunker_hill_PN : PN; -fun bunsen_PN : PN; -fun bunuel_PN : PN; -fun bunyan_PN : PN; -fun bunyaviridae_PN : PN; -fun buphthalmum_PN : PN; -fun bura_PN : PN; -fun burbage_PN : PN; -fun burbank_PN : PN; -fun burberry_PN : PN; -fun bureau_of_alcohol_tobacco_and_firearms_PN : PN; -fun bureau_of_customs_PN : PN; -fun bureau_of_diplomatic_security_PN : PN; -fun bureau_of_engraving_and_printing_PN : PN; -fun bureau_of_intelligence_and_research_PN : PN; -fun bureau_of_justice_assistance_PN : PN; -fun bureau_of_justice_statistics_PN : PN; -fun bureau_of_the_census_PN : PN; -fun burger_PN : PN; -fun burgess_PN : PN; -fun burgos_PN : PN; -fun burgoyne_PN : PN; -fun burgundy_PN : PN; -fun burhinidae_PN : PN; -fun burhinus_PN : PN; -fun burk_PN : PN; -fun burke_PN : PN; -fun burkina_faso_PN : PN; -fun burkina_faso_franc_PN : PN; -fun burley_PN : PN; -fun burlington_PN : PN; -fun burma_PN : PN; -fun burma_padauk_PN : PN; -fun burmannia_PN : PN; -fun burmanniaceae_PN : PN; -fun burmeisteria_PN : PN; -fun burmese_A : A; -fun burmese_PN : PN; -fun burmese_cat_PN : PN; -fun burnett_PN : PN; -fun burnham_PN : PN; -fun burnham_on_sea_PN : PN; -fun burnley_PN : PN; -fun burns_PN : PN; -fun burnside_PN : PN; -fun burntisland_PN : PN; -fun burntwood_PN : PN; -fun burr_PN : PN; -fun burroughs_PN : PN; -fun burry_port_PN : PN; -fun bursa_PN : PN; -fun burscough_PN : PN; -fun bursera_PN : PN; -fun burseraceae_PN : PN; -fun burt_PN : PN; -fun burton_PN : PN; -fun burton_upon_trent_PN : PN; -fun burundi_A : A; -fun burundi_PN : PN; -fun burundi_franc_PN : PN; -fun burundian_PN : PN; -fun bury_PN : PN; -fun bury_st__edmunds_PN : PN; -fun bush_PN : PN; -fun bush_administration_PN : PN; -fun bushido_PN : PN; -fun bushman_PN : PN; -fun bushnell_PN : PN; -fun butea_PN : PN; -fun buteo_PN : PN; -fun butler_PN : PN; -fun butte_PN : PN; -fun butterfield_PN : PN; -fun buxaceae_PN : PN; -fun buxton_PN : PN; -fun buxus_PN : PN; -fun buzzards_bay_PN : PN; -fun byblos_PN : PN; -fun bydgoszcz_PN : PN; -fun byelorussian_PN : PN; -fun byrd_PN : PN; -fun byron_PN : PN; -fun byzantine_A : A; -fun byzantine_PN : PN; -fun byzantine_empire_PN : PN; -fun byzantine_architecture_PN : PN; -fun byzantium_PN : PN; -fun c_PN : PN; -fun cd_r_PN : PN; -fun cd_rom_PN : PN; -fun cd_rom_drive_PN : PN; -fun cd_drive_PN : PN; -fun cd_player_PN : PN; -fun ce_Adv : Adv; -fun cn_tower_PN : PN; -fun cobol_PN : PN; -fun cpu_board_PN : PN; -fun c_o_d__Adv : Adv; -fun c_battery_PN : PN; -fun c_clamp_PN : PN; -fun c_clef_PN : PN; -fun c_compiler_PN : PN; -fun c_horizon_PN : PN; -fun c_in_c_PN : PN; -fun c_major_PN : PN; -fun c_program_PN : PN; -fun c_ration_PN : PN; -fun c_reactive_protein_PN : PN; -fun cabalist_PN : PN; -fun cabell_PN : PN; -fun cabernet_PN : PN; -fun cabernet_sauvignon_grape_PN : PN; -fun cabomba_PN : PN; -fun cabombaceae_PN : PN; -fun cabot_PN : PN; -fun cacajao_PN : PN; -fun cacalia_PN : PN; -fun cachi_PN : PN; -fun cacicus_PN : PN; -fun cactaceae_PN : PN; -fun caddo_PN : PN; -fun cadiz_PN : PN; -fun cadmus_PN : PN; -fun cadra_PN : PN; -fun caeciliidae_PN : PN; -fun caelum_PN : PN; -fun caen_PN : PN; -fun caenolestes_PN : PN; -fun caenolestidae_PN : PN; -fun caerleon_PN : PN; -fun caernarfon_PN : PN; -fun caerphilly_PN : PN; -fun caesalpinia_PN : PN; -fun caesalpiniaceae_PN : PN; -fun caesalpinioideae_PN : PN; -fun caesar_PN : PN; -fun caesar_salad_PN : PN; -fun caesarea_PN : PN; -fun caesarian_A : A; -fun cage_PN : PN; -fun cagliari_PN : PN; -fun cagliostro_PN : PN; -fun cagney_PN : PN; -fun cahita_PN : PN; -fun cain_PN : PN; -fun cairene_PN : PN; -fun cairina_PN : PN; -fun cairo_PN : PN; -fun cajanus_PN : PN; -fun cajun_PN : PN; -fun cakchiquel_PN : PN; -fun cakile_PN : PN; -fun calabria_PN : PN; -fun caladium_bicolor_PN : PN; -fun calais_PN : PN; -fun calamagrostis_PN : PN; -fun calamintha_PN : PN; -fun calamus_PN : PN; -fun calandrinia_PN : PN; -fun calcutta_PN : PN; -fun calcuttan_A : A; -fun calder_PN : PN; -fun calderon_PN : PN; -fun caldicot_PN : PN; -fun caldwell_PN : PN; -fun caledonia_PN : PN; -fun caledonian_canal_PN : PN; -fun calgary_PN : PN; -fun cali_PN : PN; -fun cali_cartel_PN : PN; -fun calidris_PN : PN; -fun california_PN : PN; -fun california_personality_inventory_PN : PN; -fun california_black_oak_PN : PN; -fun california_black_walnut_PN : PN; -fun california_bluebell_PN : PN; -fun california_box_elder_PN : PN; -fun california_condor_PN : PN; -fun california_four_o'clock_PN : PN; -fun california_fuchsia_PN : PN; -fun california_lady's_slipper_PN : PN; -fun california_laurel_PN : PN; -fun california_newt_PN : PN; -fun california_nutmeg_PN : PN; -fun california_pitcher_plant_PN : PN; -fun california_poppy_PN : PN; -fun california_privet_PN : PN; -fun california_quail_PN : PN; -fun california_redwood_PN : PN; -fun california_sagebrush_PN : PN; -fun california_sea_lion_PN : PN; -fun california_single_leaf_pinyon_PN : PN; -fun california_sycamore_PN : PN; -fun california_whipsnake_PN : PN; -fun california_white_oak_PN : PN; -fun california_wine_PN : PN; -fun californian_A : A; -fun californian_PN : PN; -fun caligula_PN : PN; -fun caliphate_PN : PN; -fun calixtus_ii_PN : PN; -fun calixtus_iii_PN : PN; -fun call_PN : PN; -fun calla_PN : PN; -fun callas_PN : PN; -fun callicebus_PN : PN; -fun callimorpha_PN : PN; -fun callinectes_PN : PN; -fun callionymidae_PN : PN; -fun calliope_PN : PN; -fun calliophis_PN : PN; -fun calliphora_PN : PN; -fun calliphoridae_PN : PN; -fun callirhoe_PN : PN; -fun callisaurus_PN : PN; -fun callistephus_PN : PN; -fun callisto_PN : PN; -fun callithricidae_PN : PN; -fun callithrix_PN : PN; -fun callitrichaceae_PN : PN; -fun callitriche_PN : PN; -fun callitris_PN : PN; -fun callorhinus_PN : PN; -fun calluna_PN : PN; -fun calne_PN : PN; -fun calocarpum_PN : PN; -fun calocedrus_PN : PN; -fun calochortus_PN : PN; -fun caloocan_PN : PN; -fun caloosahatchee_PN : PN; -fun caloosahatchee_canal_PN : PN; -fun calophyllum_PN : PN; -fun calopogon_PN : PN; -fun calor_PN : PN; -fun calorie_PN : PN; -fun caloscypha_fulgens_PN : PN; -fun calostoma_cinnabarina_PN : PN; -fun calostoma_lutescens_PN : PN; -fun calostoma_ravenelii_PN : PN; -fun calostomataceae_PN : PN; -fun caltha_PN : PN; -fun calvados_PN : PN; -fun calvary_PN : PN; -fun calvary_clover_PN : PN; -fun calvary_cross_PN : PN; -fun calvatia_PN : PN; -fun calverton_PN : PN; -fun calvin_PN : PN; -fun calvinism_PN : PN; -fun calvinist_A : A; -fun calvinist_PN : PN; -fun calvinistic_baptist_PN : PN; -fun calvino_PN : PN; -fun calycanthaceae_PN : PN; -fun calycanthus_PN : PN; -fun calycophyllum_PN : PN; -fun calymmatobacterium_PN : PN; -fun calymmatobacterium_granulomatis_PN : PN; -fun calypso_PN : PN; -fun calystegia_PN : PN; -fun cam_PN : PN; -fun camassia_PN : PN; -fun cambarus_PN : PN; -fun cambodia_PN : PN; -fun cambodian_A : A; -fun cambodian_PN : PN; -fun cambodian_monetary_unit_PN : PN; -fun cambourne_PN : PN; -fun cambrian_PN : PN; -fun cambrian_mountains_PN : PN; -fun cambridge_PN : PN; -fun cambridge_university_PN : PN; -fun cambridgeshire_PN : PN; -fun cambuslang_PN : PN; -fun camden_PN : PN; -fun camelidae_PN : PN; -fun camelina_PN : PN; -fun camelot_PN : PN; -fun camelus_PN : PN; -fun camembert_PN : PN; -fun cameroon_PN : PN; -fun cameroon_franc_PN : PN; -fun cameroonian_A : A; -fun cameroonian_PN : PN; -fun camlan_PN : PN; -fun camorra_PN : PN; -fun camp_david_PN : PN; -fun campania_PN : PN; -fun campanulaceae_PN : PN; -fun campanulales_PN : PN; -fun campbell_PN : PN; -fun campbeltown_PN : PN; -fun campeche_PN : PN; -fun campephilus_PN : PN; -fun campfire_girl_PN : PN; -fun camponotus_PN : PN; -fun camptosorus_PN : PN; -fun campyloneurum_PN : PN; -fun campylorhynchus_PN : PN; -fun camus_PN : PN; -fun canaanite_PN : PN; -fun canaanitic_PN : PN; -fun canachites_PN : PN; -fun canada_PN : PN; -fun canada_anemone_PN : PN; -fun canada_balsam_PN : PN; -fun canada_garlic_PN : PN; -fun canada_ginger_PN : PN; -fun canada_jay_PN : PN; -fun canada_lily_PN : PN; -fun canada_lynx_PN : PN; -fun canada_plum_PN : PN; -fun canada_porcupine_PN : PN; -fun canada_thistle_PN : PN; -fun canada_violet_PN : PN; -fun canada_wild_rye_PN : PN; -fun canadian_A : A; -fun canadian_PN : PN; -fun canadian_falls_PN : PN; -fun canadian_french_PN : PN; -fun canadian_security_intelligence_service_PN : PN; -fun canadian_aspen_PN : PN; -fun canadian_bacon_PN : PN; -fun canadian_dollar_PN : PN; -fun canadian_pondweed_PN : PN; -fun canadian_province_PN : PN; -fun canandaigua_lake_PN : PN; -fun cananga_PN : PN; -fun canary_island_hare's_foot_fern_PN : PN; -fun canary_islands_PN : PN; -fun canary_wine_PN : PN; -fun canavalia_PN : PN; -fun canberra_PN : PN; -fun cancer_PN : PN; -fun cancridae_PN : PN; -fun cancun_PN : PN; -fun candida_albicans_PN : PN; -fun candlemas_PN : PN; -fun canellaceae_PN : PN; -fun canetti_PN : PN; -fun canidae_PN : PN; -fun canis_PN : PN; -fun canis_major_PN : PN; -fun canis_minor_PN : PN; -fun cannabidaceae_PN : PN; -fun cannaceae_PN : PN; -fun cannae_PN : PN; -fun cannes_PN : PN; -fun cannock_PN : PN; -fun canopus_PN : PN; -fun cantab_PN : PN; -fun cantabrian_mountains_PN : PN; -fun cantabrigian_PN : PN; -fun canterbury_PN : PN; -fun canterbury_tales_PN : PN; -fun canterbury_bell_PN : PN; -fun cantharellus_PN : PN; -fun canticle_of_simeon_PN : PN; -fun canton_PN : PN; -fun canton_crepe_PN : PN; -fun canuck_PN : PN; -fun canute_PN : PN; -fun canvey_PN : PN; -fun canvey_island_PN : PN; -fun canyonlands_national_park_PN : PN; -fun cape_ann_PN : PN; -fun cape_breton_island_PN : PN; -fun cape_canaveral_PN : PN; -fun cape_cod_PN : PN; -fun cape_cod_bay_PN : PN; -fun cape_cod_canal_PN : PN; -fun cape_fear_PN : PN; -fun cape_fear_river_PN : PN; -fun cape_flattery_PN : PN; -fun cape_froward_PN : PN; -fun cape_girardeau_PN : PN; -fun cape_hatteras_PN : PN; -fun cape_horn_PN : PN; -fun cape_may_PN : PN; -fun cape_may_warbler_PN : PN; -fun cape_passero_PN : PN; -fun cape_province_PN : PN; -fun cape_sable_PN : PN; -fun cape_town_PN : PN; -fun cape_trafalgar_PN : PN; -fun cape_verde_PN : PN; -fun cape_verde_islands_PN : PN; -fun cape_verde_escudo_PN : PN; -fun cape_verde_monetary_unit_PN : PN; -fun cape_york_PN : PN; -fun cape_york_peninsula_PN : PN; -fun cape_buffalo_PN : PN; -fun cape_lobster_PN : PN; -fun cape_of_good_hope_PN : PN; -fun cape_primrose_PN : PN; -fun cape_tulip_PN : PN; -fun capek_PN : PN; -fun capella_PN : PN; -fun capet_PN : PN; -fun capetian_A : A; -fun capetian_PN : PN; -fun capetian_dynasty_PN : PN; -fun capital_PN : PN; -fun capitol_PN : PN; -fun capitol_hill_PN : PN; -fun capitol_reef_national_park_PN : PN; -fun capitonidae_PN : PN; -fun capone_PN : PN; -fun caporetto_PN : PN; -fun cappadocia_PN : PN; -fun cappadocian_A : A; -fun capparidaceae_PN : PN; -fun capparis_PN : PN; -fun capra_PN : PN; -fun caprella_PN : PN; -fun capreolus_PN : PN; -fun capri_PN : PN; -fun capricorn_PN : PN; -fun capricornis_PN : PN; -fun capricornus_PN : PN; -fun caprifoliaceae_PN : PN; -fun caprimulgidae_PN : PN; -fun caprimulgiformes_PN : PN; -fun caprimulgus_PN : PN; -fun caproidae_PN : PN; -fun capromyidae_PN : PN; -fun capros_PN : PN; -fun capsella_PN : PN; -fun capt_PN : PN; -fun carabidae_PN : PN; -fun caracas_PN : PN; -fun carangidae_PN : PN; -fun caranx_PN : PN; -fun carapidae_PN : PN; -fun carassius_PN : PN; -fun caravaggio_PN : PN; -fun carboloy_PN : PN; -fun carbondale_PN : PN; -fun carboniferous_PN : PN; -fun carcharhinidae_PN : PN; -fun carcharhinus_PN : PN; -fun carcharias_PN : PN; -fun carchariidae_PN : PN; -fun carcharodon_PN : PN; -fun cardamine_PN : PN; -fun cardenden_PN : PN; -fun cardiff_PN : PN; -fun cardigan_PN : PN; -fun cardiidae_PN : PN; -fun cardiospermum_PN : PN; -fun cardium_PN : PN; -fun carducci_PN : PN; -fun carduelinae_PN : PN; -fun carduelis_PN : PN; -fun carduus_PN : PN; -fun caretta_PN : PN; -fun carew_PN : PN; -fun carex_PN : PN; -fun cariama_PN : PN; -fun cariamidae_PN : PN; -fun carib_PN : PN; -fun caribbean_PN : PN; -fun caribbean_island_PN : PN; -fun carica_PN : PN; -fun caricaceae_PN : PN; -fun carina_PN : PN; -fun carioca_PN : PN; -fun carl_PN : PN; -fun carl_xvi_gustav_PN : PN; -fun carlina_PN : PN; -fun carlisle_PN : PN; -fun carlow_PN : PN; -fun carlsbad_PN : PN; -fun carlsbad_caverns_PN : PN; -fun carlsbad_caverns_national_park_PN : PN; -fun carluke_PN : PN; -fun carlyle_PN : PN; -fun carmarthen_PN : PN; -fun carmelite_A : A; -fun carmelite_PN : PN; -fun carmelite_order_PN : PN; -fun carmichael_PN : PN; -fun carnegie_PN : PN; -fun carnegie_mellon_university_PN : PN; -fun carnegiea_PN : PN; -fun carnforth_PN : PN; -fun carniolan_bee_PN : PN; -fun carnivora_PN : PN; -fun carnosaura_PN : PN; -fun carnot_PN : PN; -fun carnot_cycle_PN : PN; -fun carnoustie_PN : PN; -fun carol_PN : PN; -fun carole_PN : PN; -fun carolina_PN : PN; -fun carolina_allspice_PN : PN; -fun carolina_buckthorn_PN : PN; -fun carolina_chickadee_PN : PN; -fun carolina_hemlock_PN : PN; -fun carolina_lupine_PN : PN; -fun carolina_moonseed_PN : PN; -fun carolina_parakeet_PN : PN; -fun carolina_spring_beauty_PN : PN; -fun carolina_wren_PN : PN; -fun caroline_A : A; -fun caroline_PN : PN; -fun caroline_islands_PN : PN; -fun carolingian_A : A; -fun carolingian_PN : PN; -fun carolingian_dynasty_PN : PN; -fun carolinian_PN : PN; -fun carolyn_PN : PN; -fun carothers_PN : PN; -fun carpathians_PN : PN; -fun carphophis_PN : PN; -fun carpinaceae_PN : PN; -fun carpinus_PN : PN; -fun carpobrotus_PN : PN; -fun carpocapsa_PN : PN; -fun carpodacus_PN : PN; -fun carrel_PN : PN; -fun carrere_PN : PN; -fun carrie_PN : PN; -fun carroll_PN : PN; -fun carron_PN : PN; -fun carson_PN : PN; -fun carson_city_PN : PN; -fun cartagena_PN : PN; -fun cartagena_bark_PN : PN; -fun carter_PN : PN; -fun carter_administration_PN : PN; -fun cartesian_A : A; -fun cartesian_PN : PN; -fun cartesian_coordinate_PN : PN; -fun cartesian_coordinate_system_PN : PN; -fun cartesian_plane_PN : PN; -fun carthage_PN : PN; -fun carthaginian_A : A; -fun carthaginian_PN : PN; -fun carthamus_PN : PN; -fun carthusian_A : A; -fun carthusian_PN : PN; -fun carthusian_order_PN : PN; -fun cartier_PN : PN; -fun cartwright_PN : PN; -fun carum_PN : PN; -fun caruso_PN : PN; -fun carver_PN : PN; -fun carya_PN : PN; -fun caryocar_PN : PN; -fun caryocaraceae_PN : PN; -fun caryophyllaceae_PN : PN; -fun caryophyllales_PN : PN; -fun caryophyllidae_PN : PN; -fun caryota_PN : PN; -fun casablanca_PN : PN; -fun casals_PN : PN; -fun casanova_PN : PN; -fun cascades_PN : PN; -fun cash_PN : PN; -fun cashmere_goat_PN : PN; -fun casmerodius_PN : PN; -fun caspar_PN : PN; -fun casper_PN : PN; -fun caspian_PN : PN; -fun cassandra_PN : PN; -fun cassegrainian_telescope_PN : PN; -fun cassin's_kingbird_PN : PN; -fun cassiope_PN : PN; -fun cassiopeia_PN : PN; -fun cassirer_PN : PN; -fun cassius_PN : PN; -fun castanea_PN : PN; -fun castanopsis_PN : PN; -fun castanospermum_PN : PN; -fun castile_PN : PN; -fun castilian_PN : PN; -fun castilleja_PN : PN; -fun castillian_PN : PN; -fun castleford_PN : PN; -fun castor_PN : PN; -fun castoridae_PN : PN; -fun castoroides_PN : PN; -fun castries_PN : PN; -fun castro_PN : PN; -fun castroism_PN : PN; -fun casualty_care_research_center_PN : PN; -fun casuaridae_PN : PN; -fun casuariiformes_PN : PN; -fun casuarinaceae_PN : PN; -fun casuarinales_PN : PN; -fun casuarius_PN : PN; -fun catacala_PN : PN; -fun catalan_A : A; -fun catalan_PN : PN; -fun catalina_cherry_PN : PN; -fun catalonia_PN : PN; -fun catalpa_bignioides_PN : PN; -fun catalpa_speciosa_PN : PN; -fun catania_PN : PN; -fun cataract_canyon_PN : PN; -fun catasetum_PN : PN; -fun catawba_PN : PN; -fun caterpillar_PN : PN; -fun cath_PN : PN; -fun catha_PN : PN; -fun catha_edulis_PN : PN; -fun catharacta_PN : PN; -fun catharanthus_PN : PN; -fun cathartes_PN : PN; -fun cathartidae_PN : PN; -fun cathaya_PN : PN; -fun cather_PN : PN; -fun catherine_PN : PN; -fun catherine_i_PN : PN; -fun catherine_ii_PN : PN; -fun catherine_de_medicis_PN : PN; -fun catherine_of_aragon_PN : PN; -fun catholic_A : A; -fun catholic_PN : PN; -fun catholic_church_PN : PN; -fun catholic_school_PN : PN; -fun catholicism_PN : PN; -fun catholicos_PN : PN; -fun cathy_PN : PN; -fun catoptrophorus_PN : PN; -fun catostomidae_PN : PN; -fun catostomus_PN : PN; -fun catskills_PN : PN; -fun cattell_PN : PN; -fun catullus_PN : PN; -fun caucasia_PN : PN; -fun caucasian_A : A; -fun caucasian_PN : PN; -fun caucasian_walnut_PN : PN; -fun caucasus_PN : PN; -fun caudine_forks_PN : PN; -fun caulophyllum_PN : PN; -fun cavalier_PN : PN; -fun cavan_PN : PN; -fun cavell_PN : PN; -fun cavendish_PN : PN; -fun cavia_PN : PN; -fun caviidae_PN : PN; -fun caxton_PN : PN; -fun cayman_islands_PN : PN; -fun cayman_islands_dollar_PN : PN; -fun cayuga_PN : PN; -fun cayuga_lake_PN : PN; -fun cdr_PN : PN; -fun cdre_PN : PN; -fun cebidae_PN : PN; -fun cebu_PN : PN; -fun cebuan_PN : PN; -fun cebuella_PN : PN; -fun cebus_PN : PN; -fun cecidomyidae_PN : PN; -fun cecil_PN : PN; -fun cecilia_PN : PN; -fun cecily_PN : PN; -fun cecropia_PN : PN; -fun cecropiaceae_PN : PN; -fun cedar_rapids_PN : PN; -fun cedrela_PN : PN; -fun cedric_PN : PN; -fun cedrus_PN : PN; -fun cefn_mawr_PN : PN; -fun ceiba_PN : PN; -fun celastraceae_PN : PN; -fun celastrus_PN : PN; -fun celebes_PN : PN; -fun celestial_city_PN : PN; -fun celia_PN : PN; -fun cellini_PN : PN; -fun celosia_PN : PN; -fun celsius_PN : PN; -fun celsius_scale_PN : PN; -fun celt_PN : PN; -fun celtic_A : A; -fun celtic_PN : PN; -fun celtic_cross_PN : PN; -fun celtic_deity_PN : PN; -fun celtis_PN : PN; -fun cenchrus_PN : PN; -fun cenozoic_A : A; -fun cenozoic_PN : PN; -fun centaurea_PN : PN; -fun centaurium_PN : PN; -fun centaurus_PN : PN; -fun center_for_disease_control_and_prevention_PN : PN; -fun centigrade_thermometer_PN : PN; -fun central_african_republic_PN : PN; -fun central_african_republic_franc_PN : PN; -fun central_america_PN : PN; -fun central_american_A : A; -fun central_american_PN : PN; -fun central_american_country_PN : PN; -fun central_american_strap_fern_PN : PN; -fun central_dravidian_PN : PN; -fun central_intelligence_agency_PN : PN; -fun central_intelligence_machinery_PN : PN; -fun central_park_PN : PN; -fun central_powers_PN : PN; -fun central_time_PN : PN; -fun centranthus_PN : PN; -fun centrarchidae_PN : PN; -fun centre_PN : PN; -fun centriscidae_PN : PN; -fun centrocercus_PN : PN; -fun centrolobium_PN : PN; -fun centropomidae_PN : PN; -fun centropomus_PN : PN; -fun centropristis_PN : PN; -fun centropus_PN : PN; -fun centrosema_PN : PN; -fun centrospermae_PN : PN; -fun centunculus_PN : PN; -fun cephalanthera_PN : PN; -fun cephalobidae_PN : PN; -fun cephalochordata_PN : PN; -fun cephalopoda_PN : PN; -fun cephalopterus_PN : PN; -fun cephalotaceae_PN : PN; -fun cephalotaxaceae_PN : PN; -fun cephalotaxus_PN : PN; -fun cephalotus_PN : PN; -fun cepheus_PN : PN; -fun cepphus_PN : PN; -fun cerambycidae_PN : PN; -fun cerapteryx_PN : PN; -fun cerastium_PN : PN; -fun ceratitis_PN : PN; -fun ceratodontidae_PN : PN; -fun ceratonia_PN : PN; -fun ceratopetalum_PN : PN; -fun ceratophyllaceae_PN : PN; -fun ceratophyllum_PN : PN; -fun ceratopogon_PN : PN; -fun ceratopogonidae_PN : PN; -fun ceratopsia_PN : PN; -fun ceratopsidae_PN : PN; -fun ceratopteris_PN : PN; -fun ceratostomataceae_PN : PN; -fun ceratostomella_PN : PN; -fun ceratotherium_PN : PN; -fun cerberus_PN : PN; -fun cercidiphyllaceae_PN : PN; -fun cercidiphyllum_PN : PN; -fun cercidium_PN : PN; -fun cercis_PN : PN; -fun cercocebus_PN : PN; -fun cercopidae_PN : PN; -fun cercopithecidae_PN : PN; -fun cercopithecus_PN : PN; -fun cercospora_PN : PN; -fun cercosporella_PN : PN; -fun ceres_PN : PN; -fun cereus_PN : PN; -fun ceroxylon_PN : PN; -fun certhia_PN : PN; -fun certhiidae_PN : PN; -fun cervantes_PN : PN; -fun cervidae_PN : PN; -fun cervus_PN : PN; -fun ceryle_PN : PN; -fun cestida_PN : PN; -fun cestidae_PN : PN; -fun cestoda_PN : PN; -fun cestrum_PN : PN; -fun cestum_PN : PN; -fun cetacea_PN : PN; -fun ceterach_PN : PN; -fun cetonia_PN : PN; -fun cetoniidae_PN : PN; -fun cetorhinidae_PN : PN; -fun cetorhinus_PN : PN; -fun cetraria_PN : PN; -fun cetus_PN : PN; -fun ceylon_PN : PN; -fun ceylon_bowstring_hemp_PN : PN; -fun ceylonite_PN : PN; -fun cezanne_PN : PN; -fun cf_PN : PN; -fun chabad_PN : PN; -fun chablis_PN : PN; -fun chad_PN : PN; -fun chadian_A : A; -fun chadian_PN : PN; -fun chadian_franc_PN : PN; -fun chaenomeles_PN : PN; -fun chaenopsis_PN : PN; -fun chaeronea_PN : PN; -fun chaetodipterus_PN : PN; -fun chaetodontidae_PN : PN; -fun chaetognatha_PN : PN; -fun chagall_PN : PN; -fun chagatai_PN : PN; -fun chain_PN : PN; -fun chait_PN : PN; -fun chalcedon_PN : PN; -fun chalcididae_PN : PN; -fun chalcis_PN : PN; -fun chalcostigma_PN : PN; -fun chaldea_PN : PN; -fun chaldean_A : A; -fun chaldean_PN : PN; -fun chalfont_PN : PN; -fun chalfont_st_giles_PN : PN; -fun chalfont_st_peter_PN : PN; -fun chalons_PN : PN; -fun chamaea_PN : PN; -fun chamaecrista_PN : PN; -fun chamaecyparis_PN : PN; -fun chamaecytisus_PN : PN; -fun chamaedaphne_PN : PN; -fun chamaeleo_PN : PN; -fun chamaeleon_PN : PN; -fun chamaeleontidae_PN : PN; -fun chamaemelum_PN : PN; -fun chamberlain_PN : PN; -fun chambers_PN : PN; -fun champagne_PN : PN; -fun champaign_PN : PN; -fun champlain_PN : PN; -fun champollion_PN : PN; -fun champs_elysees_PN : PN; -fun chancellor_of_the_exchequer_PN : PN; -fun chancellorsville_PN : PN; -fun chandi_PN : PN; -fun chandler_PN : PN; -fun chang_jiang_PN : PN; -fun chang_kuo_PN : PN; -fun changchun_PN : PN; -fun changsha_PN : PN; -fun changtzu_PN : PN; -fun channel_island_PN : PN; -fun channel_islands_national_park_PN : PN; -fun channidae_PN : PN; -fun chao_phraya_PN : PN; -fun chaos_PN : PN; -fun chapel_hill_PN : PN; -fun chaplin_PN : PN; -fun chapman_PN : PN; -fun chapultepec_PN : PN; -fun chara_PN : PN; -fun characeae_PN : PN; -fun characidae_PN : PN; -fun characinidae_PN : PN; -fun charadrii_PN : PN; -fun charadriidae_PN : PN; -fun charadriiformes_PN : PN; -fun charadrius_PN : PN; -fun charales_PN : PN; -fun charcot_PN : PN; -fun charcot_marie_tooth_disease_PN : PN; -fun chard_PN : PN; -fun chardonnay_PN : PN; -fun chari_nile_PN : PN; -fun charina_PN : PN; -fun charlemagne_PN : PN; -fun charleroi_PN : PN; -fun charles_PN : PN; -fun charleston_PN : PN; -fun charlestown_PN : PN; -fun charlestown_navy_yard_PN : PN; -fun charlie_PN : PN; -fun charlotte_PN : PN; -fun charlottetown_PN : PN; -fun charolais_PN : PN; -fun charon_PN : PN; -fun charophyceae_PN : PN; -fun charronia_PN : PN; -fun chartism_PN : PN; -fun chartist_PN : PN; -fun chartres_PN : PN; -fun chartres_cathedral_PN : PN; -fun chartreuse_PN : PN; -fun charybdis_PN : PN; -fun chas_PN : PN; -fun chase_PN : PN; -fun chateaubriand_PN : PN; -fun chateura_PN : PN; -fun chatham_PN : PN; -fun chattahoochee_PN : PN; -fun chattanooga_PN : PN; -fun chaucer_PN : PN; -fun chauna_PN : PN; -fun chavez_PN : PN; -fun cheadle_PN : PN; -fun chechen_A : A; -fun chechen_PN : PN; -fun chechnya_PN : PN; -fun cheddar_PN : PN; -fun cheever_PN : PN; -fun cheilanthes_PN : PN; -fun cheiranthus_PN : PN; -fun chekhov_PN : PN; -fun chelicerata_PN : PN; -fun chelidonium_PN : PN; -fun chelifer_PN : PN; -fun chelmsford_PN : PN; -fun chelone_PN : PN; -fun chelonethida_PN : PN; -fun chelonia_PN : PN; -fun cheloniidae_PN : PN; -fun chelsea_PN : PN; -fun cheltenham_PN : PN; -fun chelyabinsk_PN : PN; -fun chelydra_PN : PN; -fun chelydridae_PN : PN; -fun chemakuan_PN : PN; -fun chemakum_PN : PN; -fun chemical_weapons_convention_PN : PN; -fun chemnitz_PN : PN; -fun chen_PN : PN; -fun chengchow_PN : PN; -fun chengtu_PN : PN; -fun chenin_blanc_PN : PN; -fun chennai_PN : PN; -fun chenopodiaceae_PN : PN; -fun chenopodium_PN : PN; -fun cheops_PN : PN; -fun chepstow_PN : PN; -fun cherbourg_PN : PN; -fun cheremis_PN : PN; -fun cherepovets_PN : PN; -fun chernobyl_PN : PN; -fun cherokee_PN : PN; -fun cherokee_rose_PN : PN; -fun cherubini_PN : PN; -fun chesapeake_bay_PN : PN; -fun chesapeake_bay_retriever_PN : PN; -fun chesham_PN : PN; -fun cheshire_PN : PN; -fun cheshire_cat_PN : PN; -fun cheshire_cheese_PN : PN; -fun chester_PN : PN; -fun chester_le_street_PN : PN; -fun chesterfield_PN : PN; -fun chesterton_PN : PN; -fun chevalier_PN : PN; -fun cheviot_PN : PN; -fun cheviots_PN : PN; -fun chewa_PN : PN; -fun cheyenne_PN : PN; -fun chimwini_PN : PN; -fun chiacoan_peccary_PN : PN; -fun chian_A : A; -fun chian_turpentine_PN : PN; -fun chiang_kai_shek_PN : PN; -fun chianti_PN : PN; -fun chicago_PN : PN; -fun chicano_PN : PN; -fun chichester_PN : PN; -fun chichewa_PN : PN; -fun chickamauga_PN : PN; -fun chickasaw_PN : PN; -fun chicken_little_PN : PN; -fun chief_constable_PN : PN; -fun chief_secretary_PN : PN; -fun chihuahua_PN : PN; -fun chihuahuan_desert_PN : PN; -fun chihuahuan_spotted_whiptail_PN : PN; -fun chile_PN : PN; -fun chile_bonito_PN : PN; -fun chilean_A : A; -fun chilean_PN : PN; -fun chilean_cedar_PN : PN; -fun chilean_firebush_PN : PN; -fun chilean_jasmine_PN : PN; -fun chilean_monetary_unit_PN : PN; -fun chilean_nut_PN : PN; -fun chilean_peso_PN : PN; -fun chilean_rimu_PN : PN; -fun chiloe_PN : PN; -fun chilomastix_PN : PN; -fun chilomeniscus_PN : PN; -fun chilomycterus_PN : PN; -fun chilopoda_PN : PN; -fun chilopsis_PN : PN; -fun chimaeridae_PN : PN; -fun chimakum_PN : PN; -fun chimaphila_PN : PN; -fun chimariko_PN : PN; -fun chimborazo_PN : PN; -fun chimera_PN : PN; -fun chimonanthus_PN : PN; -fun china_PN : PN; -fun china_aster_PN : PN; -fun china_rose_PN : PN; -fun china_tree_PN : PN; -fun chinaman_PN : PN; -fun chinchillidae_PN : PN; -fun chinchow_PN : PN; -fun chinese_A : A; -fun chinese_PN : PN; -fun chinese_revolution_PN : PN; -fun chinese_wall_PN : PN; -fun chinese_alligator_PN : PN; -fun chinese_angelica_PN : PN; -fun chinese_anise_PN : PN; -fun chinese_brown_sauce_PN : PN; -fun chinese_cabbage_PN : PN; -fun chinese_checkers_PN : PN; -fun chinese_chestnut_PN : PN; -fun chinese_cork_oak_PN : PN; -fun chinese_deity_PN : PN; -fun chinese_elm_PN : PN; -fun chinese_evergreen_PN : PN; -fun chinese_forget_me_not_PN : PN; -fun chinese_goose_PN : PN; -fun chinese_gooseberry_PN : PN; -fun chinese_holly_PN : PN; -fun chinese_lantern_PN : PN; -fun chinese_lantern_plant_PN : PN; -fun chinese_monetary_unit_PN : PN; -fun chinese_mustard_PN : PN; -fun chinese_paddlefish_PN : PN; -fun chinese_parasol_tree_PN : PN; -fun chinese_pea_tree_PN : PN; -fun chinese_primrose_PN : PN; -fun chinese_privet_PN : PN; -fun chinese_puzzle_PN : PN; -fun chinese_restaurant_syndrome_PN : PN; -fun chinese_rhubarb_PN : PN; -fun chinese_wistaria_PN : PN; -fun chino_japanese_war_PN : PN; -fun chinook_PN : PN; -fun chinook_jargon_PN : PN; -fun chinookan_PN : PN; -fun chiococca_PN : PN; -fun chionanthus_PN : PN; -fun chios_PN : PN; -fun chipewyan_PN : PN; -fun chippendale_A : A; -fun chippendale_PN : PN; -fun chippenham_PN : PN; -fun chiricahua_apache_PN : PN; -fun chirico_PN : PN; -fun chiron_PN : PN; -fun chironomidae_PN : PN; -fun chironomus_PN : PN; -fun chiroptera_PN : PN; -fun chisholm_trail_PN : PN; -fun chishona_PN : PN; -fun chittagong_PN : PN; -fun chiwere_PN : PN; -fun chlamydera_PN : PN; -fun chlamydia_psittaci_PN : PN; -fun chlamydia_trachomatis_PN : PN; -fun chlamydiaceae_PN : PN; -fun chlamydomonadaceae_PN : PN; -fun chlamydomonas_PN : PN; -fun chlamydosaurus_PN : PN; -fun chlamyphorus_PN : PN; -fun chloe_PN : PN; -fun chloranthaceae_PN : PN; -fun chloranthus_PN : PN; -fun chloris_PN : PN; -fun chlorococcales_PN : PN; -fun chlorococcum_PN : PN; -fun chlorophis_PN : PN; -fun chlorophoneus_PN : PN; -fun chlorophthalmidae_PN : PN; -fun chlorophyceae_PN : PN; -fun chlorophyllum_molybdites_PN : PN; -fun chlorophyta_PN : PN; -fun chloroxylon_PN : PN; -fun chlorura_PN : PN; -fun choctaw_PN : PN; -fun choeronycteris_PN : PN; -fun choloepus_PN : PN; -fun chomsky_PN : PN; -fun chondrichthyes_PN : PN; -fun chondrus_PN : PN; -fun chongqing_PN : PN; -fun chopin_PN : PN; -fun chopwell_PN : PN; -fun chordata_PN : PN; -fun chordeiles_PN : PN; -fun chordospartium_PN : PN; -fun choriotis_PN : PN; -fun chorizagrotis_PN : PN; -fun chorizema_PN : PN; -fun chorley_PN : PN; -fun chosen_PN : PN; -fun chris_PN : PN; -fun chrissie_PN : PN; -fun chrissy_PN : PN; -fun christ_PN : PN; -fun christ's_thorn_PN : PN; -fun christchurch_PN : PN; -fun christendom_PN : PN; -fun christian_A : A; -fun christian_PN : PN; -fun christian_church_PN : PN; -fun christian_science_PN : PN; -fun christian_scientist_PN : PN; -fun christian_era_PN : PN; -fun christian_holy_day_PN : PN; -fun christian_liturgy_PN : PN; -fun christian_name_PN : PN; -fun christian_theology_PN : PN; -fun christianity_PN : PN; -fun christianization_PN : PN; -fun christie_PN : PN; -fun christina_PN : PN; -fun christine_PN : PN; -fun christmas_PN : PN; -fun christmas_eve_PN : PN; -fun christmas_begonia_PN : PN; -fun christmas_bells_PN : PN; -fun christmas_box_PN : PN; -fun christmas_bush_PN : PN; -fun christmas_cactus_PN : PN; -fun christmas_cake_PN : PN; -fun christmas_card_PN : PN; -fun christmas_factor_PN : PN; -fun christmas_fern_PN : PN; -fun christmas_present_PN : PN; -fun christmas_rose_PN : PN; -fun christmas_stocking_PN : PN; -fun christmas_tree_PN : PN; -fun christmasberry_PN : PN; -fun christological_A : A; -fun christology_PN : PN; -fun christopher_PN : PN; -fun chronoperates_PN : PN; -fun chronoperates_paradoxus_PN : PN; -fun chrysaora_PN : PN; -fun chrysaora_quinquecirrha_PN : PN; -fun chrysemys_PN : PN; -fun chrysobalanus_PN : PN; -fun chrysochloridae_PN : PN; -fun chrysochloris_PN : PN; -fun chrysolepis_PN : PN; -fun chrysolophus_PN : PN; -fun chrysomelidae_PN : PN; -fun chrysophrys_PN : PN; -fun chrysophyceae_PN : PN; -fun chrysophyllum_PN : PN; -fun chrysophyta_PN : PN; -fun chrysopidae_PN : PN; -fun chrysopsis_PN : PN; -fun chrysosplenium_PN : PN; -fun chrysothamnus_PN : PN; -fun chuang_tzu_PN : PN; -fun chukaku_ha_PN : PN; -fun chukchi_PN : PN; -fun chukchi_peninsula_PN : PN; -fun chukchi_sea_PN : PN; -fun chula_vista_PN : PN; -fun chungking_PN : PN; -fun church_father_PN : PN; -fun church_of_ireland_PN : PN; -fun church_of_jesus_christ_of_latter_day_saints_PN : PN; -fun church_of_the_brethren_PN : PN; -fun churchill_PN : PN; -fun churchill_downs_PN : PN; -fun churchillian_A : A; -fun chuvash_PN : PN; -fun chytridiaceae_PN : PN; -fun chytridiales_PN : PN; -fun chytridiomycetes_PN : PN; -fun ciardi_PN : PN; -fun cibotium_PN : PN; -fun cicadellidae_PN : PN; -fun cicadidae_PN : PN; -fun cicer_PN : PN; -fun cicero_PN : PN; -fun cichlidae_PN : PN; -fun cichorium_PN : PN; -fun cicindelidae_PN : PN; -fun ciconia_PN : PN; -fun ciconiidae_PN : PN; -fun ciconiiformes_PN : PN; -fun cicuta_PN : PN; -fun cif_PN : PN; -fun ciliata_PN : PN; -fun cimabue_PN : PN; -fun cimarron_PN : PN; -fun cimex_PN : PN; -fun cimicidae_PN : PN; -fun cimicifuga_PN : PN; -fun cimmerian_A : A; -fun cincinnati_PN : PN; -fun cincinnatus_PN : PN; -fun cinclidae_PN : PN; -fun cinclus_PN : PN; -fun cinco_de_mayo_PN : PN; -fun cinderella_PN : PN; -fun cinderford_PN : PN; -fun cinnamomum_PN : PN; -fun circaea_PN : PN; -fun circaea_lutetiana_PN : PN; -fun circaetus_PN : PN; -fun circassian_PN : PN; -fun circe_PN : PN; -fun circinus_PN : PN; -fun circumcision_PN : PN; -fun circus_PN : PN; -fun cirencester_PN : PN; -fun cirripedia_PN : PN; -fun cirsium_PN : PN; -fun cistaceae_PN : PN; -fun cistothorus_PN : PN; -fun cistus_PN : PN; -fun citation_PN : PN; -fun citellus_PN : PN; -fun citharichthys_PN : PN; -fun citizenship_day_PN : PN; -fun citlaltepetl_PN : PN; -fun citroncirus_PN : PN; -fun citrullus_PN : PN; -fun city_of_london_PN : PN; -fun ciudad_bolivar_PN : PN; -fun ciudad_juarez_PN : PN; -fun ciudad_victoria_PN : PN; -fun civil_list_PN : PN; -fun civil_rights_movement_PN : PN; -fun civvy_street_PN : PN; -fun clackmannon_PN : PN; -fun clacton_PN : PN; -fun cladonia_PN : PN; -fun cladoniaceae_PN : PN; -fun cladorhyncus_PN : PN; -fun cladrastis_PN : PN; -fun clamatores_PN : PN; -fun clangula_PN : PN; -fun clare_PN : PN; -fun clark_PN : PN; -fun clark's_nutcracker_PN : PN; -fun clark_cell_PN : PN; -fun clarksburg_PN : PN; -fun clarkston_PN : PN; -fun clarrie_PN : PN; -fun clathraceae_PN : PN; -fun clathrus_PN : PN; -fun claud_PN : PN; -fun claude_PN : PN; -fun claudius_PN : PN; -fun clausewitz_PN : PN; -fun clavariaceae_PN : PN; -fun claviceps_PN : PN; -fun clavicipitaceae_PN : PN; -fun clay_PN : PN; -fun clay_cross_PN : PN; -fun claytonia_PN : PN; -fun cleanthes_PN : PN; -fun cleator_moor_PN : PN; -fun cleethorpes_PN : PN; -fun cleistes_PN : PN; -fun clem_PN : PN; -fun clemenceau_PN : PN; -fun clemens_PN : PN; -fun clement_PN : PN; -fun clement_iii_PN : PN; -fun clement_vii_PN : PN; -fun clement_xi_PN : PN; -fun clement_xiv_PN : PN; -fun cleopatra_PN : PN; -fun cleridae_PN : PN; -fun clermont_ferrand_PN : PN; -fun clethra_PN : PN; -fun clethraceae_PN : PN; -fun clethrionomys_PN : PN; -fun clevedon_PN : PN; -fun cleveland_PN : PN; -fun clichy_PN : PN; -fun cliff_PN : PN; -fun clifford_PN : PN; -fun clifford_trust_PN : PN; -fun cliftonia_PN : PN; -fun clinch_river_PN : PN; -fun cline_PN : PN; -fun clinidae_PN : PN; -fun clinopodium_PN : PN; -fun clinton_PN : PN; -fun clinton_administration_PN : PN; -fun clio_PN : PN; -fun clitheroe_PN : PN; -fun clitocybe_PN : PN; -fun clitocybe_clavipes_PN : PN; -fun clitocybe_dealbata_PN : PN; -fun clitocybe_inornata_PN : PN; -fun clitocybe_irina_PN : PN; -fun clitocybe_robusta_PN : PN; -fun clitocybe_subconnexa_PN : PN; -fun clitoria_PN : PN; -fun clive_PN : PN; -fun clorox_PN : PN; -fun clotho_PN : PN; -fun clovis_PN : PN; -fun clovis_culture_PN : PN; -fun clowne_PN : PN; -fun clupea_PN : PN; -fun clupeidae_PN : PN; -fun clwyd_PN : PN; -fun clydach_PN : PN; -fun clyde_PN : PN; -fun clydebank_PN : PN; -fun clydesdale_PN : PN; -fun clydesdale_terrier_PN : PN; -fun clytemnestra_PN : PN; -fun cnemidophorus_PN : PN; -fun cnicus_PN : PN; -fun cnidaria_PN : PN; -fun cnidoscolus_PN : PN; -fun cnidosporidia_PN : PN; -fun coahuila_PN : PN; -fun coalville_PN : PN; -fun coast_range_PN : PN; -fun coatbridge_PN : PN; -fun coats_land_PN : PN; -fun cobham_PN : PN; -fun cobitidae_PN : PN; -fun coca_PN : PN; -fun coca_cola_PN : PN; -fun coccidae_PN : PN; -fun coccidia_PN : PN; -fun coccinellidae_PN : PN; -fun coccoidea_PN : PN; -fun coccothraustes_PN : PN; -fun cocculus_PN : PN; -fun coccyzus_PN : PN; -fun cochimi_PN : PN; -fun cochise_PN : PN; -fun cochlearia_PN : PN; -fun cochlearius_PN : PN; -fun cochran_PN : PN; -fun cockaigne_PN : PN; -fun cockcroft_PN : PN; -fun cockcroft_and_walton_accelerator_PN : PN; -fun cockermouth_PN : PN; -fun cockney_A : A; -fun cockney_PN : PN; -fun cocopa_PN : PN; -fun cocos_PN : PN; -fun cocteau_PN : PN; -fun cocus_PN : PN; -fun cocytus_PN : PN; -fun cod_PN : PN; -fun codariocalyx_PN : PN; -fun codiaeum_PN : PN; -fun codsall_PN : PN; -fun cody_PN : PN; -fun coeloglossum_PN : PN; -fun coereba_PN : PN; -fun coerebidae_PN : PN; -fun coeur_d'alene_PN : PN; -fun coeur_d'alene_lake_PN : PN; -fun coffea_PN : PN; -fun coffey_still_PN : PN; -fun cognac_PN : PN; -fun cohan_PN : PN; -fun cohn_PN : PN; -fun coigue_PN : PN; -fun coimbatore_PN : PN; -fun col_PN : PN; -fun cola_PN : PN; -fun colaptes_PN : PN; -fun colbert_PN : PN; -fun colchester_PN : PN; -fun colchicaceae_PN : PN; -fun colchicum_PN : PN; -fun colchis_PN : PN; -fun cold_war_PN : PN; -fun coleonyx_PN : PN; -fun coleoptera_PN : PN; -fun coleridge_PN : PN; -fun coleridgian_A : A; -fun coleshill_PN : PN; -fun colette_PN : PN; -fun colima_PN : PN; -fun colin_PN : PN; -fun colinus_PN : PN; -fun coll_PN : PN; -fun collembola_PN : PN; -fun collins_PN : PN; -fun collinsia_PN : PN; -fun collinsonia_PN : PN; -fun collocalia_PN : PN; -fun colne_PN : PN; -fun colocasia_PN : PN; -fun cologne_PN : PN; -fun colombia_PN : PN; -fun colombian_A : A; -fun colombian_PN : PN; -fun colombian_monetary_unit_PN : PN; -fun colombian_peso_PN : PN; -fun colombo_PN : PN; -fun colon_PN : PN; -fun colonel_blimp_PN : PN; -fun colony_PN : PN; -fun coloradan_PN : PN; -fun colorado_PN : PN; -fun colorado_desert_PN : PN; -fun colorado_plateau_PN : PN; -fun colorado_river_hemp_PN : PN; -fun colorado_springs_PN : PN; -fun colorado_potato_beetle_PN : PN; -fun colorado_spruce_PN : PN; -fun colossae_PN : PN; -fun colosseum_PN : PN; -fun colossian_PN : PN; -fun colossus_of_rhodes_PN : PN; -fun colt_PN : PN; -fun coluber_PN : PN; -fun colubridae_PN : PN; -fun colubrina_PN : PN; -fun columba_PN : PN; -fun columbia_PN : PN; -fun columbia_university_PN : PN; -fun columbia_tiger_lily_PN : PN; -fun columbian_A : A; -fun columbidae_PN : PN; -fun columbiformes_PN : PN; -fun columbus_PN : PN; -fun columbus_day_PN : PN; -fun colutea_PN : PN; -fun colwyn_bay_PN : PN; -fun coma_berenices_PN : PN; -fun comanche_PN : PN; -fun comandra_PN : PN; -fun comatula_PN : PN; -fun comatulidae_PN : PN; -fun combined_dna_index_system_PN : PN; -fun combretaceae_PN : PN; -fun comenius_PN : PN; -fun commelinaceae_PN : PN; -fun commelinidae_PN : PN; -fun commiphora_PN : PN; -fun commission_on_human_rights_PN : PN; -fun commission_on_narcotic_drugs_PN : PN; -fun commission_on_the_status_of_women_PN : PN; -fun committee_for_state_security_PN : PN; -fun commodore_john_barry_bridge_PN : PN; -fun commonwealth_day_PN : PN; -fun commonwealth_of_independent_states_PN : PN; -fun communications_security_establishment_PN : PN; -fun communion_PN : PN; -fun communism_peak_PN : PN; -fun communist_PN : PN; -fun communist_manifesto_PN : PN; -fun communist_party_PN : PN; -fun comoro_islands_PN : PN; -fun comoros_PN : PN; -fun compositae_PN : PN; -fun composite_order_PN : PN; -fun compton_PN : PN; -fun comptonia_PN : PN; -fun comptroller_general_PN : PN; -fun comptroller_of_the_currency_PN : PN; -fun comrade_PN : PN; -fun comstock_PN : PN; -fun comstock_mealybug_PN : PN; -fun comstockery_PN : PN; -fun comte_PN : PN; -fun comtism_PN : PN; -fun conakry_PN : PN; -fun conan_doyle_PN : PN; -fun concepcion_PN : PN; -fun concord_PN : PN; -fun concord_grape_PN : PN; -fun condorcet_PN : PN; -fun condylura_PN : PN; -fun conepatus_PN : PN; -fun coney_island_PN : PN; -fun confederacy_PN : PN; -fun confederate_A : A; -fun confederate_PN : PN; -fun confederate_army_PN : PN; -fun confederate_soldier_PN : PN; -fun confucian_A : A; -fun confucian_PN : PN; -fun confucianism_PN : PN; -fun confucius_PN : PN; -fun congleton_PN : PN; -fun congo_PN : PN; -fun congo_franc_PN : PN; -fun congolese_A : A; -fun congolese_PN : PN; -fun congregational_A : A; -fun congregational_christian_church_PN : PN; -fun congregational_church_PN : PN; -fun congregationalism_PN : PN; -fun congregationalist_PN : PN; -fun congress_PN : PN; -fun congress_of_industrial_organizations_PN : PN; -fun congress_of_racial_equality_PN : PN; -fun congressional_record_PN : PN; -fun congreve_PN : PN; -fun congridae_PN : PN; -fun coniferales_PN : PN; -fun coniferopsida_PN : PN; -fun conilurus_PN : PN; -fun coniogramme_PN : PN; -fun conium_PN : PN; -fun conn's_syndrome_PN : PN; -fun connah's_quay_PN : PN; -fun connaraceae_PN : PN; -fun connarus_PN : PN; -fun connarus_guianensis_PN : PN; -fun connaught_PN : PN; -fun connecticut_PN : PN; -fun connecticuter_PN : PN; -fun connemara_heath_PN : PN; -fun connie_PN : PN; -fun connochaetes_PN : PN; -fun connolly_PN : PN; -fun connors_PN : PN; -fun conocarpus_PN : PN; -fun conoclinium_PN : PN; -fun conodonta_PN : PN; -fun conopodium_PN : PN; -fun conospermum_PN : PN; -fun conoy_PN : PN; -fun conrad_PN : PN; -fun conradina_PN : PN; -fun cons_PN : PN; -fun conservative_PN : PN; -fun conservative_jew_PN : PN; -fun conservative_judaism_PN : PN; -fun conservative_party_PN : PN; -fun consett_PN : PN; -fun consolida_PN : PN; -fun constable_PN : PN; -fun constance_PN : PN; -fun constantina_PN : PN; -fun constantine_PN : PN; -fun constantinople_PN : PN; -fun constitution_PN : PN; -fun constitutional_convention_PN : PN; -fun constitutional_union_party_PN : PN; -fun cont_PN : PN; -fun continent_PN : PN; -fun continental_A : A; -fun continental_army_PN : PN; -fun continental_congress_PN : PN; -fun continuity_irish_republican_army_PN : PN; -fun contopus_PN : PN; -fun contra_PN : PN; -fun contras_PN : PN; -fun conuropsis_PN : PN; -fun convallaria_PN : PN; -fun convallariaceae_PN : PN; -fun converso_PN : PN; -fun convolvulaceae_PN : PN; -fun conwy_PN : PN; -fun conyza_PN : PN; -fun cook_PN : PN; -fun cook_strait_PN : PN; -fun cooke_PN : PN; -fun cookham_PN : PN; -fun cooley's_anemia_PN : PN; -fun coolidge_PN : PN; -fun cooper_PN : PN; -fun cooper's_hawk_PN : PN; -fun cooper_union_PN : PN; -fun cooperstown_PN : PN; -fun coosa_PN : PN; -fun copehan_PN : PN; -fun copenhagen_PN : PN; -fun copepoda_PN : PN; -fun copernican_A : A; -fun copernican_system_PN : PN; -fun copernicia_PN : PN; -fun copernicus_PN : PN; -fun copland_PN : PN; -fun copley_PN : PN; -fun coppola_PN : PN; -fun coppull_PN : PN; -fun coprinaceae_PN : PN; -fun coprinus_PN : PN; -fun copt_PN : PN; -fun coptic_A : A; -fun coptic_PN : PN; -fun coptic_church_PN : PN; -fun coptis_PN : PN; -fun coracias_PN : PN; -fun coraciidae_PN : PN; -fun coraciiformes_PN : PN; -fun coragyps_PN : PN; -fun coral_sea_PN : PN; -fun corallorhiza_PN : PN; -fun corbett_PN : PN; -fun corby_PN : PN; -fun corchorus_PN : PN; -fun cordaitaceae_PN : PN; -fun cordaitales_PN : PN; -fun cordaites_PN : PN; -fun corday_PN : PN; -fun cordia_PN : PN; -fun cordoba_PN : PN; -fun cordylidae_PN : PN; -fun cordyline_PN : PN; -fun cordylus_PN : PN; -fun coregonidae_PN : PN; -fun coregonus_PN : PN; -fun coreidae_PN : PN; -fun corelli_PN : PN; -fun coriandrum_PN : PN; -fun corinth_PN : PN; -fun corinthian_PN : PN; -fun corinthian_order_PN : PN; -fun coriolis_effect_PN : PN; -fun coriolis_force_PN : PN; -fun corixa_PN : PN; -fun corixidae_PN : PN; -fun cork_PN : PN; -fun corn_belt_PN : PN; -fun cornaceae_PN : PN; -fun corneille_PN : PN; -fun cornell_PN : PN; -fun cornell_university_PN : PN; -fun cornish_A : A; -fun cornish_PN : PN; -fun cornish_heath_PN : PN; -fun cornish_pasty_PN : PN; -fun cornishman_PN : PN; -fun cornishwoman_PN : PN; -fun cornus_PN : PN; -fun cornwall_PN : PN; -fun cornwallis_PN : PN; -fun corokia_PN : PN; -fun corona_borealis_PN : PN; -fun coropuna_PN : PN; -fun corot_PN : PN; -fun corp_PN : PN; -fun corpus_christi_PN : PN; -fun correggio_PN : PN; -fun corse_PN : PN; -fun corsham_PN : PN; -fun corsican_A : A; -fun cortaderia_PN : PN; -fun cortes_PN : PN; -fun corticium_PN : PN; -fun cortinariaceae_PN : PN; -fun cortinarius_PN : PN; -fun cortinarius_armillatus_PN : PN; -fun cortinarius_atkinsonianus_PN : PN; -fun cortinarius_corrugatus_PN : PN; -fun cortinarius_gentilis_PN : PN; -fun cortinarius_mutabilis_PN : PN; -fun cortinarius_semisanguineus_PN : PN; -fun cortinarius_subfoetidus_PN : PN; -fun cortinarius_violaceus_PN : PN; -fun cortland_PN : PN; -fun corunna_PN : PN; -fun corvidae_PN : PN; -fun corvus_PN : PN; -fun coryanthes_PN : PN; -fun corydalidae_PN : PN; -fun corydalis_PN : PN; -fun corydalus_PN : PN; -fun corylaceae_PN : PN; -fun corylopsis_PN : PN; -fun corylus_PN : PN; -fun corynebacteriaceae_PN : PN; -fun corynebacterium_diphtheriae_PN : PN; -fun corypha_PN : PN; -fun coryphaena_equisetis_PN : PN; -fun coryphaena_hippurus_PN : PN; -fun coryphaenidae_PN : PN; -fun cosenza_PN : PN; -fun cosimo_de_medici_PN : PN; -fun cosmocampus_PN : PN; -fun cossack_PN : PN; -fun costa_rica_PN : PN; -fun costa_rican_A : A; -fun costa_rican_PN : PN; -fun costa_rican_monetary_unit_PN : PN; -fun costanoan_PN : PN; -fun cotacachi_PN : PN; -fun cotes_de_provence_PN : PN; -fun cotingidae_PN : PN; -fun cotinus_PN : PN; -fun cotoneaster_dammeri_PN : PN; -fun cotoneaster_horizontalis_PN : PN; -fun cotonou_PN : PN; -fun cotopaxi_PN : PN; -fun cotswold_PN : PN; -fun cotswolds_PN : PN; -fun cottidae_PN : PN; -fun cottus_PN : PN; -fun cotula_PN : PN; -fun coturnix_PN : PN; -fun coue_PN : PN; -fun coulomb_PN : PN; -fun coulomb's_law_PN : PN; -fun coumarouna_PN : PN; -fun council_bluffs_PN : PN; -fun council_of_basel_ferrara_florence_PN : PN; -fun council_of_economic_advisors_PN : PN; -fun council_of_trent_PN : PN; -fun council_on_environmental_policy_PN : PN; -fun counsel_to_the_crown_PN : PN; -fun count_fleet_PN : PN; -fun counter_reformation_PN : PN; -fun counterterrorist_center_PN : PN; -fun couperin_PN : PN; -fun courbet_PN : PN; -fun court_PN : PN; -fun court_of_saint_james's_PN : PN; -fun courtelle_PN : PN; -fun cousteau_PN : PN; -fun coventry_PN : PN; -fun coward_PN : PN; -fun cowdenbeath_PN : PN; -fun cowes_PN : PN; -fun cowpens_PN : PN; -fun cowper_PN : PN; -fun cowper's_gland_PN : PN; -fun cox's_orange_pippin_PN : PN; -fun cox_2_inhibitor_PN : PN; -fun cp_PN : PN; -fun cpl_PN : PN; -fun crab_nebula_PN : PN; -fun cracidae_PN : PN; -fun cracow_PN : PN; -fun cracticidae_PN : PN; -fun cracticus_PN : PN; -fun craigie_PN : PN; -fun crambe_PN : PN; -fun cramlington_PN : PN; -fun crane_PN : PN; -fun crangon_PN : PN; -fun crangonidae_PN : PN; -fun craspedia_PN : PN; -fun crassostrea_PN : PN; -fun crassula_PN : PN; -fun crassulaceae_PN : PN; -fun crataegus_PN : PN; -fun crater_PN : PN; -fun crater_lake_national_park_PN : PN; -fun crateva_PN : PN; -fun crawford_PN : PN; -fun crawley_PN : PN; -fun crax_PN : PN; -fun crazy_glue_PN : PN; -fun crazy_horse_PN : PN; -fun creation_PN : PN; -fun crecy_PN : PN; -fun cree_PN : PN; -fun creek_PN : PN; -fun creek_confederacy_PN : PN; -fun cremona_PN : PN; -fun creole_A : A; -fun creole_PN : PN; -fun creon_PN : PN; -fun crepis_PN : PN; -fun cres_PN : PN; -fun crescentia_PN : PN; -fun creswell_PN : PN; -fun cretaceous_A : A; -fun cretaceous_PN : PN; -fun cretan_PN : PN; -fun crete_PN : PN; -fun creutzfeldt_jakob_disease_PN : PN; -fun crewe_PN : PN; -fun crex_PN : PN; -fun cricetidae_PN : PN; -fun cricetus_PN : PN; -fun crichton_PN : PN; -fun crick_PN : PN; -fun crieff_PN : PN; -fun crimea_PN : PN; -fun crimea_congo_hemorrhagic_fever_PN : PN; -fun crimean_war_PN : PN; -fun criminal_intelligence_services_of_canada_PN : PN; -fun criminal_investigation_command_PN : PN; -fun crinoidea_PN : PN; -fun crispin_PN : PN; -fun crius_PN : PN; -fun cro_magnon_PN : PN; -fun croatia_PN : PN; -fun croatian_A : A; -fun croatian_PN : PN; -fun crocethia_PN : PN; -fun crock_pot_PN : PN; -fun crockett_PN : PN; -fun crocodylia_PN : PN; -fun crocodylidae_PN : PN; -fun crocodylus_PN : PN; -fun crocuta_PN : PN; -fun croesus_PN : PN; -fun crohn_PN : PN; -fun croix_de_guerre_PN : PN; -fun cromer_PN : PN; -fun cromwell_PN : PN; -fun cromwellian_A : A; -fun cronartium_PN : PN; -fun cronus_PN : PN; -fun cronyn_PN : PN; -fun crook_PN : PN; -fun crookes_PN : PN; -fun crookes_radiometer_PN : PN; -fun crookes_tube_PN : PN; -fun crosby_PN : PN; -fun cross_PN : PN; -fun cross_florida_waterway_PN : PN; -fun crossopterygii_PN : PN; -fun crotalidae_PN : PN; -fun crotalus_PN : PN; -fun crotaphytus_PN : PN; -fun crotophaga_PN : PN; -fun crouse_PN : PN; -fun crow_PN : PN; -fun crowborough_PN : PN; -fun crown_PN : PN; -fun crown_colony_PN : PN; -fun crown_land_PN : PN; -fun crowthorne_PN : PN; -fun croydon_PN : PN; -fun cruciferae_PN : PN; -fun crucifixion_PN : PN; -fun crusade_PN : PN; -fun crusader_PN : PN; -fun crustacea_PN : PN; -fun cryptacanthodes_PN : PN; -fun cryptobranchidae_PN : PN; -fun cryptobranchus_PN : PN; -fun cryptocercidae_PN : PN; -fun cryptocercus_PN : PN; -fun cryptogamia_PN : PN; -fun cryptogramma_PN : PN; -fun cryptogrammataceae_PN : PN; -fun cryptomeria_PN : PN; -fun cryptophyceae_PN : PN; -fun cryptophyta_PN : PN; -fun cryptoprocta_PN : PN; -fun cryptotermes_PN : PN; -fun cryptotis_PN : PN; -fun ctenizidae_PN : PN; -fun ctenocephalides_PN : PN; -fun ctenocephalus_PN : PN; -fun ctenophora_PN : PN; -fun cub_scout_PN : PN; -fun cuba_PN : PN; -fun cuban_A : A; -fun cuban_PN : PN; -fun cuban_revolution_PN : PN; -fun cuban_bast_PN : PN; -fun cuban_heel_PN : PN; -fun cuban_monetary_unit_PN : PN; -fun cuban_peso_PN : PN; -fun cuculidae_PN : PN; -fun cuculiformes_PN : PN; -fun cuculus_PN : PN; -fun cucumis_PN : PN; -fun cucurbita_PN : PN; -fun cucurbitaceae_PN : PN; -fun cudworth_PN : PN; -fun cuffley_PN : PN; -fun culbertson_PN : PN; -fun culcheth_PN : PN; -fun culcita_PN : PN; -fun culebra_PN : PN; -fun culex_PN : PN; -fun culex_quinquefasciatus_PN : PN; -fun culiacan_PN : PN; -fun culicidae_PN : PN; -fun cultural_revolution_PN : PN; -fun culver's_root_PN : PN; -fun cumana_PN : PN; -fun cumberland_PN : PN; -fun cumberland_gap_PN : PN; -fun cumberland_mountains_PN : PN; -fun cumbernauld_PN : PN; -fun cumbria_PN : PN; -fun cuminum_PN : PN; -fun cumnock_PN : PN; -fun cunaxa_PN : PN; -fun cuniculus_PN : PN; -fun cunningham_PN : PN; -fun cunoniaceae_PN : PN; -fun cuon_PN : PN; -fun cupar_PN : PN; -fun cupid_PN : PN; -fun cupid's_bow_PN : PN; -fun cupressaceae_PN : PN; -fun cupressus_PN : PN; -fun cuquenan_PN : PN; -fun curacao_PN : PN; -fun curculionidae_PN : PN; -fun curcuma_PN : PN; -fun curia_PN : PN; -fun curie_PN : PN; -fun curie_temperature_PN : PN; -fun curitiba_PN : PN; -fun curl_PN : PN; -fun currie_PN : PN; -fun currier_PN : PN; -fun cursorius_PN : PN; -fun curtis_PN : PN; -fun curtisia_PN : PN; -fun curtiss_PN : PN; -fun cuscuta_PN : PN; -fun cushing_PN : PN; -fun cushing's_disease_PN : PN; -fun cushing's_syndrome_PN : PN; -fun cushitic_PN : PN; -fun custer_PN : PN; -fun cuterebra_PN : PN; -fun cuterebridae_PN : PN; -fun cuvier_PN : PN; -fun cuzco_PN : PN; -fun cwmbran_PN : PN; -fun cyamopsis_PN : PN; -fun cyamus_PN : PN; -fun cyanocitta_PN : PN; -fun cyanophyta_PN : PN; -fun cyathea_PN : PN; -fun cyatheaceae_PN : PN; -fun cybele_PN : PN; -fun cycadaceae_PN : PN; -fun cycadales_PN : PN; -fun cycadofilicales_PN : PN; -fun cycadopsida_PN : PN; -fun cycas_PN : PN; -fun cyclades_PN : PN; -fun cycladic_civilization_PN : PN; -fun cycliophora_PN : PN; -fun cycloloma_PN : PN; -fun cyclopes_PN : PN; -fun cyclophorus_PN : PN; -fun cyclops_PN : PN; -fun cyclopteridae_PN : PN; -fun cyclopterus_PN : PN; -fun cyclosorus_PN : PN; -fun cyclosporeae_PN : PN; -fun cyclostomata_PN : PN; -fun cycnoches_PN : PN; -fun cydippida_PN : PN; -fun cydonia_PN : PN; -fun cygnus_PN : PN; -fun cymatiidae_PN : PN; -fun cynara_PN : PN; -fun cynewulf_PN : PN; -fun cynic_PN : PN; -fun cynipidae_PN : PN; -fun cynips_PN : PN; -fun cynocephalidae_PN : PN; -fun cynocephalus_PN : PN; -fun cynocephalus_variegatus_PN : PN; -fun cynodon_PN : PN; -fun cynodontia_PN : PN; -fun cynoglossidae_PN : PN; -fun cynoglossum_PN : PN; -fun cynomys_PN : PN; -fun cynopterus_PN : PN; -fun cynopterus_sphinx_PN : PN; -fun cynoscephalae_PN : PN; -fun cynoscion_PN : PN; -fun cynthia_PN : PN; -fun cyperaceae_PN : PN; -fun cyperus_PN : PN; -fun cyphomandra_PN : PN; -fun cypraea_PN : PN; -fun cypraeidae_PN : PN; -fun cyprian_A : A; -fun cyprinidae_PN : PN; -fun cypriniformes_PN : PN; -fun cyprinodontidae_PN : PN; -fun cyprinus_PN : PN; -fun cypriot_PN : PN; -fun cypriot_monetary_unit_PN : PN; -fun cypriot_pound_PN : PN; -fun cypripedium_PN : PN; -fun cyprus_PN : PN; -fun cyrano_de_bergerac_PN : PN; -fun cyril_PN : PN; -fun cyrilliaceae_PN : PN; -fun cyrillic_A : A; -fun cyrillic_alphabet_PN : PN; -fun cyrtomium_PN : PN; -fun cyrus_PN : PN; -fun cyrus_ii_PN : PN; -fun cystophora_PN : PN; -fun cystopteris_PN : PN; -fun cytisus_PN : PN; -fun czech_A : A; -fun czech_PN : PN; -fun czech_republic_PN : PN; -fun czech_monetary_unit_PN : PN; -fun czechoslovakia_PN : PN; -fun czechoslovakian_PN : PN; -fun czerny_PN : PN; -fun czestochowa_PN : PN; -fun d_PN : PN; -fun d'oyly_carte_PN : PN; -fun dink_PN : PN; -fun dip_switch_PN : PN; -fun dna_fingerprint_PN : PN; -fun dna_polymerase_PN : PN; -fun dos_PN : PN; -fun dpt_vaccine_PN : PN; -fun dphil_PN : PN; -fun d_day_PN : PN; -fun d_day_PN : PN; -fun d_layer_PN : PN; -fun daba_PN : PN; -fun daboecia_PN : PN; -fun dacca_PN : PN; -fun dacelo_PN : PN; -fun dachau_PN : PN; -fun dacron_PN : PN; -fun dacrycarpus_PN : PN; -fun dacrydium_PN : PN; -fun dacrymyces_PN : PN; -fun dacrymycetaceae_PN : PN; -fun dactylis_PN : PN; -fun dactyloctenium_PN : PN; -fun dactylopiidae_PN : PN; -fun dactylopius_PN : PN; -fun dactylopteridae_PN : PN; -fun dactylopterus_PN : PN; -fun dactylorhiza_PN : PN; -fun dactyloscopidae_PN : PN; -fun daedalus_PN : PN; -fun dagan_PN : PN; -fun dagda_PN : PN; -fun dagestani_PN : PN; -fun dagon_PN : PN; -fun daguerre_PN : PN; -fun dail_eireann_PN : PN; -fun daimler_PN : PN; -fun daisy_PN : PN; -fun dakar_PN : PN; -fun dakota_PN : PN; -fun dalai_lama_PN : PN; -fun dalbergia_PN : PN; -fun dalea_PN : PN; -fun dali_PN : PN; -fun dalian_PN : PN; -fun dalkeith_PN : PN; -fun dall_sheep_PN : PN; -fun dallas_PN : PN; -fun dalmatia_PN : PN; -fun dalmatian_A : A; -fun dalmatian_PN : PN; -fun dalmatian_iris_PN : PN; -fun dalmatian_laburnum_PN : PN; -fun dalry_PN : PN; -fun dalton_PN : PN; -fun dalton's_law_PN : PN; -fun dama_PN : PN; -fun damaliscus_PN : PN; -fun damaraland_mole_rat_PN : PN; -fun damascene_PN : PN; -fun damascus_PN : PN; -fun damascus_steel_PN : PN; -fun damkina_PN : PN; -fun damocles_PN : PN; -fun damon_PN : PN; -fun damon_and_pythias_PN : PN; -fun dan_PN : PN; -fun danaea_PN : PN; -fun danaidae_PN : PN; -fun danaus_PN : PN; -fun dandie_dinmont_PN : PN; -fun dane_PN : PN; -fun dangla_PN : PN; -fun daniel_PN : PN; -fun danish_A : A; -fun danish_PN : PN; -fun danish_blue_PN : PN; -fun danish_krone_PN : PN; -fun danish_monetary_unit_PN : PN; -fun danny_PN : PN; -fun dante_PN : PN; -fun dantean_A : A; -fun danton_PN : PN; -fun danu_PN : PN; -fun danube_PN : PN; -fun daphne_PN : PN; -fun dar_al_islam_PN : PN; -fun dar_al_harb_PN : PN; -fun dar_es_salaam_PN : PN; -fun darby_PN : PN; -fun dard_PN : PN; -fun dardanelles_PN : PN; -fun dardanus_PN : PN; -fun darenth_PN : PN; -fun darfield_PN : PN; -fun darfur_PN : PN; -fun dari_PN : PN; -fun darius_i_PN : PN; -fun darius_iii_PN : PN; -fun darjeeling_PN : PN; -fun darling_PN : PN; -fun darlington_PN : PN; -fun darlingtonia_PN : PN; -fun darmera_PN : PN; -fun darmstadt_PN : PN; -fun darrow_PN : PN; -fun darsana_PN : PN; -fun dartford_PN : PN; -fun dartmouth_PN : PN; -fun dartmouth_college_PN : PN; -fun darwen_PN : PN; -fun darwin_PN : PN; -fun darwin_tulip_PN : PN; -fun darwinian_A : A; -fun darwinian_PN : PN; -fun darwinism_PN : PN; -fun das_kapital_PN : PN; -fun dasht_e_kavir_PN : PN; -fun dasht_e_lut_PN : PN; -fun dasyatidae_PN : PN; -fun dasyatis_PN : PN; -fun dasypodidae_PN : PN; -fun dasyprocta_PN : PN; -fun dasyproctidae_PN : PN; -fun dasypus_PN : PN; -fun dasyuridae_PN : PN; -fun dasyurus_PN : PN; -fun datura_PN : PN; -fun daubentonia_PN : PN; -fun daubentoniidae_PN : PN; -fun daucus_PN : PN; -fun daugavpils_PN : PN; -fun daumier_PN : PN; -fun davalliaceae_PN : PN; -fun dave_PN : PN; -fun davenport_PN : PN; -fun daventry_PN : PN; -fun davey_PN : PN; -fun david_PN : PN; -fun davidson's_penstemon_PN : PN; -fun daviesia_PN : PN; -fun davis_PN : PN; -fun davis_cup_PN : PN; -fun davy_PN : PN; -fun davys_PN : PN; -fun dawes_PN : PN; -fun dawley_PN : PN; -fun dawlish_PN : PN; -fun dawn_PN : PN; -fun dawson_PN : PN; -fun day_PN : PN; -fun dayan_PN : PN; -fun dayton_PN : PN; -fun daytona_beach_PN : PN; -fun demille_PN : PN; -fun de_bakey_PN : PN; -fun de_forest_PN : PN; -fun de_niro_PN : PN; -fun de_quincey_PN : PN; -fun de_sica_PN : PN; -fun dead_sea_PN : PN; -fun dead_sea_scrolls_PN : PN; -fun deal_PN : PN; -fun dean_PN : PN; -fun death_PN : PN; -fun death_valley_PN : PN; -fun debbie_PN : PN; -fun debby_PN : PN; -fun deborah_PN : PN; -fun debs_PN : PN; -fun debussy_PN : PN; -fun dec_PN : PN; -fun decalogue_PN : PN; -fun decapoda_PN : PN; -fun decapterus_PN : PN; -fun decatur_PN : PN; -fun december_PN : PN; -fun decius_PN : PN; -fun declaration_of_independence_PN : PN; -fun decumaria_PN : PN; -fun deep_south_PN : PN; -fun deere_PN : PN; -fun defender_of_the_faith_PN : PN; -fun defense_advanced_research_projects_agency_PN : PN; -fun defense_information_systems_agency_PN : PN; -fun defense_intelligence_agency_PN : PN; -fun defense_logistics_agency_PN : PN; -fun defense_reutilization_and_marketing_service_PN : PN; -fun defense_technical_information_center_PN : PN; -fun defoe_PN : PN; -fun degas_PN : PN; -fun deimos_PN : PN; -fun deirdre_PN : PN; -fun dekker_PN : PN; -fun del_rio_PN : PN; -fun delacroix_PN : PN; -fun delairea_PN : PN; -fun delaware_PN : PN; -fun delaware_bay_PN : PN; -fun delaware_memorial_bridge_PN : PN; -fun delawarean_PN : PN; -fun delbruck_PN : PN; -fun delhi_PN : PN; -fun delibes_PN : PN; -fun delichon_PN : PN; -fun delicious_PN : PN; -fun delilah_PN : PN; -fun delius_PN : PN; -fun delmonico_steak_PN : PN; -fun delonix_PN : PN; -fun delorme_PN : PN; -fun delphi_PN : PN; -fun delphic_A : A; -fun delphinapterus_PN : PN; -fun delphinidae_PN : PN; -fun delphinus_PN : PN; -fun dematiaceae_PN : PN; -fun demavend_PN : PN; -fun demerara_PN : PN; -fun demeter_PN : PN; -fun demetrius_PN : PN; -fun democrat_PN : PN; -fun democratic_A : A; -fun democratic_front_for_the_liberation_of_palestine_PN : PN; -fun democratic_party_PN : PN; -fun democratic_republican_party_PN : PN; -fun democritus_PN : PN; -fun demogorgon_PN : PN; -fun demosthenes_PN : PN; -fun demosthenic_A : A; -fun demotic_A : A; -fun demotic_PN : PN; -fun dempsey_PN : PN; -fun demulen_PN : PN; -fun denain_PN : PN; -fun denali_fault_PN : PN; -fun denali_national_park_PN : PN; -fun denbigh_PN : PN; -fun dendranthema_PN : PN; -fun dendroaspis_PN : PN; -fun dendrocalamus_PN : PN; -fun dendrocolaptes_PN : PN; -fun dendrocolaptidae_PN : PN; -fun dendroctonus_PN : PN; -fun dendroica_PN : PN; -fun dendrolagus_PN : PN; -fun dendromecon_PN : PN; -fun deneb_PN : PN; -fun denebola_PN : PN; -fun deng_xiaoping_PN : PN; -fun denis_PN : PN; -fun denise_PN : PN; -fun denisonia_PN : PN; -fun denmark_PN : PN; -fun dennis_PN : PN; -fun dennstaedtia_PN : PN; -fun dennstaedtiaceae_PN : PN; -fun denny_PN : PN; -fun dentaria_PN : PN; -fun denver_PN : PN; -fun dep_PN : PN; -fun depardieu_PN : PN; -fun deparia_PN : PN; -fun department_of_agriculture_PN : PN; -fun department_of_commerce_PN : PN; -fun department_of_commerce_and_labor_PN : PN; -fun department_of_defense_PN : PN; -fun department_of_defense_laboratory_system_PN : PN; -fun department_of_education_PN : PN; -fun department_of_energy_PN : PN; -fun department_of_energy_intelligence_PN : PN; -fun department_of_health_education_and_welfare_PN : PN; -fun department_of_health_and_human_services_PN : PN; -fun department_of_homeland_security_PN : PN; -fun department_of_housing_and_urban_development_PN : PN; -fun department_of_justice_PN : PN; -fun department_of_justice_canada_PN : PN; -fun department_of_labor_PN : PN; -fun department_of_state_PN : PN; -fun department_of_transportation_PN : PN; -fun department_of_veterans_affairs_PN : PN; -fun department_of_the_interior_PN : PN; -fun department_of_the_treasury_PN : PN; -fun depression_PN : PN; -fun dept_PN : PN; -fun derain_PN : PN; -fun derby_PN : PN; -fun derbyshire_PN : PN; -fun dereham_PN : PN; -fun derek_PN : PN; -fun dermacentor_PN : PN; -fun dermaptera_PN : PN; -fun dermatobia_PN : PN; -fun dermestidae_PN : PN; -fun dermochelyidae_PN : PN; -fun dermochelys_PN : PN; -fun dermoptera_PN : PN; -fun derrida_PN : PN; -fun des_PN : PN; -fun des_moines_PN : PN; -fun descartes_PN : PN; -fun descurainia_PN : PN; -fun desmanthus_PN : PN; -fun desmidiaceae_PN : PN; -fun desmidium_PN : PN; -fun desmodium_PN : PN; -fun desmodontidae_PN : PN; -fun desmodus_PN : PN; -fun desmodus_rotundus_PN : PN; -fun desmograthus_PN : PN; -fun desmond_PN : PN; -fun dessau_PN : PN; -fun detroit_PN : PN; -fun detroit_river_PN : PN; -fun deuteromycetes_PN : PN; -fun deuteromycota_PN : PN; -fun deuteronomy_PN : PN; -fun devanagari_PN : PN; -fun devi_PN : PN; -fun devizes_PN : PN; -fun devon_PN : PN; -fun devonian_PN : PN; -fun dewar_PN : PN; -fun dewar_flask_PN : PN; -fun dewey_PN : PN; -fun dewey_decimal_classification_PN : PN; -fun deweyan_A : A; -fun dewsbury_PN : PN; -fun dg_PN : PN; -fun dhahran_PN : PN; -fun dhaka_PN : PN; -fun dharma_PN : PN; -fun dhaulagiri_PN : PN; -fun dhegiha_PN : PN; -fun dhu'l_hijja_PN : PN; -fun dhu'l_qa'dah_PN : PN; -fun di_PN : PN; -fun dimaggio_PN : PN; -fun diacalpa_PN : PN; -fun diadophis_PN : PN; -fun diaghilev_PN : PN; -fun dialeurodes_PN : PN; -fun diana_PN : PN; -fun diane_de_poitiers_PN : PN; -fun dianthus_PN : PN; -fun diapensiaceae_PN : PN; -fun diapensiales_PN : PN; -fun diapsida_PN : PN; -fun dias_PN : PN; -fun diaspididae_PN : PN; -fun diaspora_PN : PN; -fun dibranchiata_PN : PN; -fun dicamptodontidae_PN : PN; -fun dicentra_PN : PN; -fun diceros_PN : PN; -fun dick_PN : PN; -fun dick_test_PN : PN; -fun dickens_PN : PN; -fun dickensian_A : A; -fun dickinson_PN : PN; -fun dicksonia_PN : PN; -fun dicksoniaceae_PN : PN; -fun dicky_PN : PN; -fun dicotyledones_PN : PN; -fun dicranaceae_PN : PN; -fun dicranales_PN : PN; -fun dicranopteris_PN : PN; -fun dicranum_PN : PN; -fun dicrostonyx_PN : PN; -fun dictamnus_PN : PN; -fun dictaphone_PN : PN; -fun dictyophera_PN : PN; -fun dictyoptera_PN : PN; -fun dicynodontia_PN : PN; -fun didcot_PN : PN; -fun didelphidae_PN : PN; -fun didelphis_PN : PN; -fun diderot_PN : PN; -fun didion_PN : PN; -fun dido_PN : PN; -fun dieffenbachia_PN : PN; -fun diegueno_PN : PN; -fun dien_bien_phu_PN : PN; -fun diervilla_PN : PN; -fun dies_irae_PN : PN; -fun diesel_PN : PN; -fun dietrich_PN : PN; -fun digitaria_PN : PN; -fun dijon_PN : PN; -fun dilleniaceae_PN : PN; -fun dilleniidae_PN : PN; -fun dimash_PN : PN; -fun dimetapp_PN : PN; -fun dimocarpus_PN : PN; -fun dimorphotheca_PN : PN; -fun dinesen_PN : PN; -fun dingle_PN : PN; -fun dinka_PN : PN; -fun dinnington_PN : PN; -fun dinocerata_PN : PN; -fun dinoflagellata_PN : PN; -fun dinornis_PN : PN; -fun dinornithidae_PN : PN; -fun dinornithiformes_PN : PN; -fun diocletian_PN : PN; -fun diodon_PN : PN; -fun diodontidae_PN : PN; -fun diogenes_PN : PN; -fun diomedeidae_PN : PN; -fun dionaea_PN : PN; -fun dionysia_PN : PN; -fun dionysian_A : A; -fun dionysius_PN : PN; -fun dionysus_PN : PN; -fun diophantus_PN : PN; -fun dior_PN : PN; -fun dioscorea_PN : PN; -fun dioscoreaceae_PN : PN; -fun diospyros_PN : PN; -fun diphylla_PN : PN; -fun diplopoda_PN : PN; -fun diplopterygium_PN : PN; -fun diplotaxis_PN : PN; -fun dipnoi_PN : PN; -fun dipodidae_PN : PN; -fun dipodomys_PN : PN; -fun dipogon_PN : PN; -fun dipsacaceae_PN : PN; -fun dipsacus_PN : PN; -fun dipsosaurus_PN : PN; -fun diptera_PN : PN; -fun dipterocarpaceae_PN : PN; -fun dipteronia_PN : PN; -fun dipus_PN : PN; -fun dipylon_A : A; -fun dipylon_gate_PN : PN; -fun dirac_PN : PN; -fun dirca_PN : PN; -fun director_of_central_intelligence_PN : PN; -fun directorate_for_inter_services_intelligence_PN : PN; -fun dis_PN : PN; -fun discina_macrospora_PN : PN; -fun disciotis_venosa_PN : PN; -fun discocephali_PN : PN; -fun discoglossidae_PN : PN; -fun discomycetes_PN : PN; -fun disney_PN : PN; -fun disneyland_PN : PN; -fun disraeli_PN : PN; -fun distinguished_conduct_medal_PN : PN; -fun distinguished_flying_cross_PN : PN; -fun distinguished_service_cross_PN : PN; -fun distinguished_service_medal_PN : PN; -fun distinguished_service_order_PN : PN; -fun district_of_columbia_PN : PN; -fun dives_PN : PN; -fun divine_comedy_PN : PN; -fun divine_office_PN : PN; -fun dix_PN : PN; -fun dixie_cup_PN : PN; -fun djanet_PN : PN; -fun djibouti_PN : PN; -fun djibouti_franc_PN : PN; -fun djiboutian_A : A; -fun djiboutian_PN : PN; -fun dneprodzerzhinsk_PN : PN; -fun dnepropetrovsk_PN : PN; -fun dnieper_PN : PN; -fun dnipropetrovsk_PN : PN; -fun doberman_PN : PN; -fun dobrich_PN : PN; -fun docetism_PN : PN; -fun doctor_of_arts_PN : PN; -fun doctor_of_dental_medicine_PN : PN; -fun doctor_of_dental_surgery_PN : PN; -fun doctor_of_divinity_PN : PN; -fun doctor_of_education_PN : PN; -fun doctor_of_fine_arts_PN : PN; -fun doctor_of_humane_letters_PN : PN; -fun doctor_of_humanities_PN : PN; -fun doctor_of_laws_PN : PN; -fun doctor_of_medicine_PN : PN; -fun doctor_of_music_PN : PN; -fun doctor_of_musical_arts_PN : PN; -fun doctor_of_optometry_PN : PN; -fun doctor_of_osteopathy_PN : PN; -fun doctor_of_philosophy_PN : PN; -fun doctor_of_public_health_PN : PN; -fun doctor_of_sacred_theology_PN : PN; -fun doctor_of_science_PN : PN; -fun doctor_of_theology_PN : PN; -fun doctor_of_the_church_PN : PN; -fun doctorow_PN : PN; -fun dodecanese_PN : PN; -fun dodge_city_PN : PN; -fun dodoma_PN : PN; -fun dodonaea_PN : PN; -fun doha_PN : PN; -fun dolby_PN : PN; -fun dolichonyx_PN : PN; -fun dolichos_PN : PN; -fun dolichotis_PN : PN; -fun doliolidae_PN : PN; -fun dolly_PN : PN; -fun dolomite_alps_PN : PN; -fun dom_pedro_PN : PN; -fun domesday_PN : PN; -fun domesday_book_PN : PN; -fun domingo_PN : PN; -fun dominic_PN : PN; -fun dominica_PN : PN; -fun dominican_A : A; -fun dominican_PN : PN; -fun dominican_republic_PN : PN; -fun dominican_dollar_PN : PN; -fun dominican_monetary_unit_PN : PN; -fun dominican_order_PN : PN; -fun dominican_peso_PN : PN; -fun dominion_PN : PN; -fun dominion_day_PN : PN; -fun dominique_PN : PN; -fun domino_PN : PN; -fun domitian_PN : PN; -fun don_PN : PN; -fun don_juan_PN : PN; -fun don_quixote_PN : PN; -fun dona_PN : PN; -fun donald_PN : PN; -fun donald_duck_PN : PN; -fun donar_PN : PN; -fun donatello_PN : PN; -fun donatism_PN : PN; -fun donatist_A : A; -fun donatist_PN : PN; -fun donatus_PN : PN; -fun doncaster_PN : PN; -fun donegal_PN : PN; -fun donets_basin_PN : PN; -fun donetsk_PN : PN; -fun donizetti_PN : PN; -fun donkin_PN : PN; -fun donne_PN : PN; -fun donnean_A : A; -fun donner_pass_PN : PN; -fun doolittle_PN : PN; -fun doomsday_PN : PN; -fun doppler_PN : PN; -fun doppler_effect_PN : PN; -fun doppler_radar_PN : PN; -fun dora_PN : PN; -fun dorado_PN : PN; -fun dorchester_PN : PN; -fun dordrecht_PN : PN; -fun doreen_PN : PN; -fun dorian_A : A; -fun dorian_PN : PN; -fun doric_PN : PN; -fun doric_order_PN : PN; -fun doris_PN : PN; -fun dorking_PN : PN; -fun dormition_PN : PN; -fun doronicum_PN : PN; -fun dorotheanthus_PN : PN; -fun dorothy_PN : PN; -fun dorset_PN : PN; -fun dortmund_PN : PN; -fun dorylinae_PN : PN; -fun doryopteris_PN : PN; -fun dos_passos_PN : PN; -fun dostoevskian_A : A; -fun dostoyevsky_PN : PN; -fun douai_PN : PN; -fun douala_PN : PN; -fun douay_bible_PN : PN; -fun doug_PN : PN; -fun douglas_PN : PN; -fun douglass_PN : PN; -fun dover_PN : PN; -fun dover's_powder_PN : PN; -fun dovyalis_PN : PN; -fun dow_jones_PN : PN; -fun dowding_PN : PN; -fun dowland_PN : PN; -fun down_PN : PN; -fun downing_PN : PN; -fun downing_street_PN : PN; -fun dr_PN : PN; -fun dracenaceae_PN : PN; -fun draco_PN : PN; -fun dracocephalum_PN : PN; -fun draconian_A : A; -fun dracula_PN : PN; -fun dracunculidae_PN : PN; -fun dracunculus_PN : PN; -fun dragunov_PN : PN; -fun drake_PN : PN; -fun drambuie_PN : PN; -fun dravidian_PN : PN; -fun drayton_PN : PN; -fun dreiser_PN : PN; -fun dreissena_PN : PN; -fun drepanididae_PN : PN; -fun drepanis_PN : PN; -fun dresden_PN : PN; -fun drew_PN : PN; -fun dreyfus_PN : PN; -fun driffield_PN : PN; -fun drimys_PN : PN; -fun drixoral_PN : PN; -fun drogheda_PN : PN; -fun droitwich_PN : PN; -fun dromaeosauridae_PN : PN; -fun dromaius_PN : PN; -fun dronfield_PN : PN; -fun drosera_PN : PN; -fun droseraceae_PN : PN; -fun drosophilidae_PN : PN; -fun drosophyllum_PN : PN; -fun drosophyllum_lusitanicum_PN : PN; -fun drug_enforcement_administration_PN : PN; -fun druid_PN : PN; -fun druze_PN : PN; -fun dryadella_PN : PN; -fun dryas_PN : PN; -fun dryden_PN : PN; -fun drymarchon_PN : PN; -fun drymoglossum_PN : PN; -fun drynaria_PN : PN; -fun dryopithecus_PN : PN; -fun dryopteridaceae_PN : PN; -fun dryopteris_PN : PN; -fun du_barry_PN : PN; -fun du_bois_PN : PN; -fun dubai_PN : PN; -fun dublin_PN : PN; -fun dubliner_PN : PN; -fun dubonnet_PN : PN; -fun dubrovnik_PN : PN; -fun dubuque_PN : PN; -fun duchamp_PN : PN; -fun duchenne's_muscular_dystrophy_PN : PN; -fun dudley_PN : PN; -fun dufy_PN : PN; -fun dugongidae_PN : PN; -fun duisburg_PN : PN; -fun dukas_PN : PN; -fun duke_university_PN : PN; -fun dukinfield_PN : PN; -fun dulles_PN : PN; -fun duluth_PN : PN; -fun duma_PN : PN; -fun dumas_PN : PN; -fun dumbarton_PN : PN; -fun dumetella_PN : PN; -fun dumfries_PN : PN; -fun dumpster_PN : PN; -fun dumpy_level_PN : PN; -fun dumuzi_PN : PN; -fun dun_laoghaire_PN : PN; -fun duncan_PN : PN; -fun dundalk_PN : PN; -fun dundee_PN : PN; -fun dunfermline_PN : PN; -fun dungeness_crab_PN : PN; -fun dunker_PN : PN; -fun dunkirk_PN : PN; -fun dunoon_PN : PN; -fun duns_scotus_PN : PN; -fun dunstable_PN : PN; -fun dupl_PN : PN; -fun duplicidentata_PN : PN; -fun duralumin_PN : PN; -fun durango_PN : PN; -fun durant_PN : PN; -fun durante_PN : PN; -fun durban_PN : PN; -fun durer_PN : PN; -fun durga_PN : PN; -fun durham_PN : PN; -fun durio_PN : PN; -fun durkheim_PN : PN; -fun durrell_PN : PN; -fun durres_PN : PN; -fun durrington_PN : PN; -fun dursley_PN : PN; -fun duse_PN : PN; -fun dushanbe_PN : PN; -fun dusicyon_PN : PN; -fun dusseldorf_PN : PN; -fun dutch_A : A; -fun dutch_PN : PN; -fun dutch_courage_PN : PN; -fun dutch_door_PN : PN; -fun dutch_elm_PN : PN; -fun dutch_elm_beetle_PN : PN; -fun dutch_elm_disease_PN : PN; -fun dutch_elm_fungus_PN : PN; -fun dutch_iris_PN : PN; -fun dutch_monetary_unit_PN : PN; -fun dutch_oven_PN : PN; -fun dutch_processed_cocoa_PN : PN; -fun dutch_treat_PN : PN; -fun dutch_uncle_PN : PN; -fun dutchman's_breeches_PN : PN; -fun dutchman's_pipe_PN : PN; -fun duvalier_PN : PN; -fun dvorak_PN : PN; -fun dyaus_PN : PN; -fun dyfed_PN : PN; -fun dyirbal_PN : PN; -fun dylan_PN : PN; -fun dysdercus_PN : PN; -fun dytiscidae_PN : PN; -fun e_PN : PN; -fun ebitda_PN : PN; -fun ent_man_PN : PN; -fun ea_PN : PN; -fun eacles_PN : PN; -fun eagle_scout_PN : PN; -fun eaglescliffe_PN : PN; -fun ealing_PN : PN; -fun eames_PN : PN; -fun eames_chair_PN : PN; -fun earhart_PN : PN; -fun earl_marshal_PN : PN; -fun earl_shilton_PN : PN; -fun earth_PN : PN; -fun earth_received_time_PN : PN; -fun easington_PN : PN; -fun east_PN : PN; -fun east_africa_PN : PN; -fun east_african_A : A; -fun east_anglia_PN : PN; -fun east_chadic_PN : PN; -fun east_china_sea_PN : PN; -fun east_coast_PN : PN; -fun east_german_A : A; -fun east_german_PN : PN; -fun east_germanic_PN : PN; -fun east_germany_PN : PN; -fun east_india_company_PN : PN; -fun east_india_kino_PN : PN; -fun east_indian_A : A; -fun east_indian_PN : PN; -fun east_malaysia_PN : PN; -fun east_midland_PN : PN; -fun east_river_PN : PN; -fun east_saint_louis_PN : PN; -fun east_sussex_PN : PN; -fun east_timor_PN : PN; -fun east_turkistan_islamic_movement_PN : PN; -fun east_dereham_PN : PN; -fun east_grinstead_PN : PN; -fun east_kilbride_PN : PN; -fun east_retford_PN : PN; -fun east_sider_PN : PN; -fun eastbourne_PN : PN; -fun easter_PN : PN; -fun easter_sunday_PN : PN; -fun easter_bunny_PN : PN; -fun easter_cactus_PN : PN; -fun easter_card_PN : PN; -fun easter_daisy_PN : PN; -fun easter_egg_PN : PN; -fun easter_lily_PN : PN; -fun eastern_catholicism_PN : PN; -fun eastern_church_PN : PN; -fun eastern_time_PN : PN; -fun eastern_cottonwood_PN : PN; -fun eastern_hop_hornbeam_PN : PN; -fun eastern_silvery_aster_PN : PN; -fun eastertide_PN : PN; -fun eastleigh_PN : PN; -fun eastman_PN : PN; -fun eau_claire_PN : PN; -fun ebbw_vale_PN : PN; -fun ebenaceae_PN : PN; -fun ebenales_PN : PN; -fun ebionite_A : A; -fun ebola_hemorrhagic_fever_PN : PN; -fun ebola_virus_PN : PN; -fun ebro_PN : PN; -fun eburophyton_PN : PN; -fun ecballium_PN : PN; -fun eccles_PN : PN; -fun eccles_cake_PN : PN; -fun ecclesiastes_PN : PN; -fun echeneididae_PN : PN; -fun echeneis_PN : PN; -fun echidnophaga_PN : PN; -fun echinacea_PN : PN; -fun echinocereus_PN : PN; -fun echinochloa_PN : PN; -fun echinodermata_PN : PN; -fun echinoidea_PN : PN; -fun echinops_PN : PN; -fun echium_PN : PN; -fun echo_PN : PN; -fun eck_PN : PN; -fun eckhart_PN : PN; -fun economic_commission_for_africa_PN : PN; -fun economic_commission_for_asia_and_the_far_east_PN : PN; -fun economic_commission_for_europe_PN : PN; -fun economic_commission_for_latin_america_PN : PN; -fun economic_and_social_council_PN : PN; -fun economic_and_social_council_commission_PN : PN; -fun ectopistes_PN : PN; -fun ectoprocta_PN : PN; -fun ecuador_PN : PN; -fun ecuadoran_monetary_unit_PN : PN; -fun ecuadorian_A : A; -fun ecuadorian_PN : PN; -fun ed_PN : PN; -fun edam_PN : PN; -fun edaphosauridae_PN : PN; -fun edda_PN : PN; -fun eddie_PN : PN; -fun eddington_PN : PN; -fun eddy_PN : PN; -fun eden_PN : PN; -fun edenbridge_PN : PN; -fun edentata_PN : PN; -fun ederle_PN : PN; -fun edgar_PN : PN; -fun edinburgh_PN : PN; -fun edirne_PN : PN; -fun edison_PN : PN; -fun edith_PN : PN; -fun edmonton_PN : PN; -fun edmontonia_PN : PN; -fun edmund_PN : PN; -fun edmund_i_PN : PN; -fun edmund_ii_PN : PN; -fun edo_PN : PN; -fun edward_PN : PN; -fun edward_the_confessor_PN : PN; -fun edward_the_elder_PN : PN; -fun edward_the_martyr_PN : PN; -fun edwardian_A : A; -fun edwardian_PN : PN; -fun edwards_PN : PN; -fun edwin_PN : PN; -fun edwy_PN : PN; -fun eelam_PN : PN; -fun eg_PN : PN; -fun egadi_islands_PN : PN; -fun egbert_PN : PN; -fun egeria_PN : PN; -fun eglevsky_PN : PN; -fun egremont_PN : PN; -fun egretta_PN : PN; -fun egypt_PN : PN; -fun egyptian_A : A; -fun egyptian_PN : PN; -fun egyptian_empire_PN : PN; -fun egyptian_cat_PN : PN; -fun egyptian_cotton_PN : PN; -fun egyptian_deity_PN : PN; -fun egyptian_grass_PN : PN; -fun egyptian_henbane_PN : PN; -fun egyptian_monetary_unit_PN : PN; -fun egyptian_pound_PN : PN; -fun egyptian_vulture_PN : PN; -fun egyptologist_PN : PN; -fun egyptology_PN : PN; -fun ehadhamen_PN : PN; -fun ehrenberg_PN : PN; -fun ehrlich_PN : PN; -fun eiche_PN : PN; -fun eichhornia_PN : PN; -fun eichmann_PN : PN; -fun eiffel_PN : PN; -fun eiffel_tower_PN : PN; -fun eigen_PN : PN; -fun eighteenth_amendment_PN : PN; -fun eijkman_PN : PN; -fun eileen_PN : PN; -fun eimeriidae_PN : PN; -fun eindhoven_PN : PN; -fun einstein_PN : PN; -fun einsteinian_A : A; -fun einthoven_PN : PN; -fun eira_PN : PN; -fun eisenhower_PN : PN; -fun eisenstaedt_PN : PN; -fun eisenstein_PN : PN; -fun ekman_PN : PN; -fun el_aaium_PN : PN; -fun el_alamein_PN : PN; -fun el_cid_PN : PN; -fun el_dorado_PN : PN; -fun el_greco_PN : PN; -fun el_libertador_PN : PN; -fun el_misti_PN : PN; -fun el_muerto_PN : PN; -fun el_nino_PN : PN; -fun el_nino_southern_oscillation_PN : PN; -fun el_paso_PN : PN; -fun el_salvador_PN : PN; -fun el_salvadoran_monetary_unit_PN : PN; -fun elaeagnaceae_PN : PN; -fun elaeagnus_PN : PN; -fun elaeis_PN : PN; -fun elaeocarpaceae_PN : PN; -fun elaeocarpus_PN : PN; -fun elagatis_PN : PN; -fun elaine_PN : PN; -fun elam_PN : PN; -fun elamite_PN : PN; -fun elamitic_PN : PN; -fun elanoides_PN : PN; -fun elanus_PN : PN; -fun elaphe_PN : PN; -fun elaphurus_PN : PN; -fun elapidae_PN : PN; -fun elasmobranchii_PN : PN; -fun elastoplast_PN : PN; -fun elateridae_PN : PN; -fun elbe_PN : PN; -fun elderslie_PN : PN; -fun eleanor_PN : PN; -fun eleanor_of_aquitaine_PN : PN; -fun elector_PN : PN; -fun electra_PN : PN; -fun electra_complex_PN : PN; -fun electrophoridae_PN : PN; -fun electrophorus_PN : PN; -fun eleocharis_PN : PN; -fun eleotridae_PN : PN; -fun elephantidae_PN : PN; -fun elephantopus_PN : PN; -fun elephas_PN : PN; -fun elettaria_PN : PN; -fun eleusine_PN : PN; -fun eleutherodactylus_PN : PN; -fun elgar_PN : PN; -fun elgin_PN : PN; -fun elgin_marbles_PN : PN; -fun elijah_PN : PN; -fun eliomys_PN : PN; -fun eliot_PN : PN; -fun eliza_PN : PN; -fun elizabeth_PN : PN; -fun elizabeth_river_PN : PN; -fun elizabethan_A : A; -fun elizabethan_PN : PN; -fun elizabethan_age_PN : PN; -fun elland_PN : PN; -fun ellen_PN : PN; -fun ellesmere_PN : PN; -fun ellesmere_port_PN : PN; -fun elli_PN : PN; -fun ellie_PN : PN; -fun ellington_PN : PN; -fun elliott's_goldenrod_PN : PN; -fun ellis_island_PN : PN; -fun ellison_PN : PN; -fun elloughton_PN : PN; -fun ellsworth_PN : PN; -fun elmont_PN : PN; -fun elodea_PN : PN; -fun elopidae_PN : PN; -fun elops_PN : PN; -fun elsie_PN : PN; -fun elstree_PN : PN; -fun elul_PN : PN; -fun ely_PN : PN; -fun elymus_PN : PN; -fun elysium_PN : PN; -fun ember_day_PN : PN; -fun emberiza_PN : PN; -fun emberizidae_PN : PN; -fun embioptera_PN : PN; -fun embiotocidae_PN : PN; -fun embothrium_PN : PN; -fun emergency_alert_system_PN : PN; -fun emerson_PN : PN; -fun emetrol_PN : PN; -fun emile_PN : PN; -fun emilia_PN : PN; -fun emilia_romagna_PN : PN; -fun emily_PN : PN; -fun emma_PN : PN; -fun emmanthe_PN : PN; -fun emmenthal_PN : PN; -fun emmy_PN : PN; -fun empedocles_PN : PN; -fun empetraceae_PN : PN; -fun empetrum_PN : PN; -fun empire_PN : PN; -fun empire_state_building_PN : PN; -fun emsworth_PN : PN; -fun emydidae_PN : PN; -fun enc_PN : PN; -fun encelia_PN : PN; -fun enceliopsis_PN : PN; -fun encyclia_PN : PN; -fun endamoeba_PN : PN; -fun endamoeba_histolytica_PN : PN; -fun endamoebidae_PN : PN; -fun endecott_PN : PN; -fun enderby_land_PN : PN; -fun endomycetales_PN : PN; -fun enesco_PN : PN; -fun enets_PN : PN; -fun enfield_PN : PN; -fun engelmann_spruce_PN : PN; -fun engels_PN : PN; -fun england_PN : PN; -fun english_A : A; -fun english_PN : PN; -fun english_channel_PN : PN; -fun english_civil_war_PN : PN; -fun english_revolution_PN : PN; -fun english_department_PN : PN; -fun english_elm_PN : PN; -fun english_foxhound_PN : PN; -fun english_hawthorn_PN : PN; -fun english_horn_PN : PN; -fun english_iris_PN : PN; -fun english_lady_crab_PN : PN; -fun english_lavender_PN : PN; -fun english_muffin_PN : PN; -fun english_person_PN : PN; -fun english_plantain_PN : PN; -fun english_primrose_PN : PN; -fun english_saddle_PN : PN; -fun english_setter_PN : PN; -fun english_sole_PN : PN; -fun english_sparrow_PN : PN; -fun english_speaking_A : A; -fun english_springer_PN : PN; -fun english_teacher_PN : PN; -fun english_toy_spaniel_PN : PN; -fun english_walnut_PN : PN; -fun englishman_PN : PN; -fun englishwoman_PN : PN; -fun engraulidae_PN : PN; -fun engraulis_PN : PN; -fun enhydra_PN : PN; -fun enid_PN : PN; -fun eniwetok_PN : PN; -fun enki_PN : PN; -fun enkidu_PN : PN; -fun enlightenment_PN : PN; -fun enlil_PN : PN; -fun enoch_PN : PN; -fun enovid_PN : PN; -fun enschede_PN : PN; -fun ensete_PN : PN; -fun ensis_PN : PN; -fun entandrophragma_PN : PN; -fun entebbe_PN : PN; -fun entelea_PN : PN; -fun enterobacteriaceae_PN : PN; -fun enterobius_PN : PN; -fun enterolobium_PN : PN; -fun entlebucher_PN : PN; -fun entoloma_PN : PN; -fun entoloma_aprile_PN : PN; -fun entoloma_lividum_PN : PN; -fun entolomataceae_PN : PN; -fun entomophthora_PN : PN; -fun entomophthoraceae_PN : PN; -fun entomophthorales_PN : PN; -fun entomostraca_PN : PN; -fun entoprocta_PN : PN; -fun environmental_protection_agency_PN : PN; -fun eocene_PN : PN; -fun eolithic_age_PN : PN; -fun eos_PN : PN; -fun epacridaceae_PN : PN; -fun ephedraceae_PN : PN; -fun ephemeridae_PN : PN; -fun ephemeroptera_PN : PN; -fun ephesian_A : A; -fun ephesian_PN : PN; -fun ephestia_PN : PN; -fun ephesus_PN : PN; -fun ephippidae_PN : PN; -fun ephippiorhynchus_PN : PN; -fun epictetus_PN : PN; -fun epicurean_A : A; -fun epicurus_PN : PN; -fun epidendrum_PN : PN; -fun epigaea_PN : PN; -fun epilachna_PN : PN; -fun epilobium_PN : PN; -fun epimedium_PN : PN; -fun epimetheus_PN : PN; -fun epinephelus_PN : PN; -fun epipactis_PN : PN; -fun epipactis_helleborine_PN : PN; -fun epiphany_PN : PN; -fun epipremnum_PN : PN; -fun epirus_PN : PN; -fun episcopal_A : A; -fun episcopal_church_PN : PN; -fun episcopalian_PN : PN; -fun episcopalianism_PN : PN; -fun epistle_PN : PN; -fun epistle_of_james_PN : PN; -fun epistle_of_jude_PN : PN; -fun epistle_of_paul_the_apostle_to_philemon_PN : PN; -fun epistle_of_paul_the_apostle_to_titus_PN : PN; -fun epistle_of_paul_the_apostle_to_the_colossians_PN : PN; -fun epistle_of_paul_the_apostle_to_the_ephesians_PN : PN; -fun epistle_of_paul_the_apostle_to_the_galatians_PN : PN; -fun epistle_of_paul_the_apostle_to_the_philippians_PN : PN; -fun epistle_of_paul_the_apostle_to_the_romans_PN : PN; -fun epistle_to_the_hebrews_PN : PN; -fun epona_PN : PN; -fun epping_PN : PN; -fun epsilon_aurigae_PN : PN; -fun epsom_PN : PN; -fun epsom_salts_PN : PN; -fun epstein_PN : PN; -fun epstein_barr_virus_PN : PN; -fun eptesicus_PN : PN; -fun equatorial_guinea_PN : PN; -fun equetus_PN : PN; -fun equidae_PN : PN; -fun equisetaceae_PN : PN; -fun equisetales_PN : PN; -fun equisetum_PN : PN; -fun equus_PN : PN; -fun eragrostis_PN : PN; -fun eranthis_PN : PN; -fun erasmian_A : A; -fun erasmus_PN : PN; -fun erastianism_PN : PN; -fun erato_PN : PN; -fun eratosthenes_PN : PN; -fun erb's_palsy_PN : PN; -fun ercilla_PN : PN; -fun erebus_PN : PN; -fun ereshkigal_PN : PN; -fun erethizon_PN : PN; -fun erethizontidae_PN : PN; -fun eretmochelys_PN : PN; -fun erewhon_PN : PN; -fun erfurt_PN : PN; -fun erianthus_PN : PN; -fun eric_PN : PN; -fun erica_PN : PN; -fun ericaceae_PN : PN; -fun ericales_PN : PN; -fun eridanus_PN : PN; -fun erie_PN : PN; -fun erie_canal_PN : PN; -fun erigeron_PN : PN; -fun erignathus_PN : PN; -fun erin_PN : PN; -fun erinaceidae_PN : PN; -fun erinaceus_PN : PN; -fun eriobotrya_PN : PN; -fun eriocaulaceae_PN : PN; -fun eriocaulon_PN : PN; -fun eriodictyon_PN : PN; -fun eriophorum_PN : PN; -fun eriophyllum_PN : PN; -fun eriosoma_PN : PN; -fun eris_PN : PN; -fun erithacus_PN : PN; -fun eritrea_PN : PN; -fun eritrean_A : A; -fun eritrean_PN : PN; -fun erlang_PN : PN; -fun erlangen_PN : PN; -fun erlenmeyer_PN : PN; -fun erlenmeyer_flask_PN : PN; -fun ernest_PN : PN; -fun ernie_PN : PN; -fun ernst_PN : PN; -fun erodium_PN : PN; -fun erolia_PN : PN; -fun eros_PN : PN; -fun eruca_PN : PN; -fun erving_PN : PN; -fun eryngium_PN : PN; -fun erysimum_PN : PN; -fun erysiphaceae_PN : PN; -fun erysiphales_PN : PN; -fun erysiphe_PN : PN; -fun erythrocebus_PN : PN; -fun erythronium_PN : PN; -fun erythroxylaceae_PN : PN; -fun erythroxylon_PN : PN; -fun erythroxylon_coca_PN : PN; -fun erythroxylon_truxiuense_PN : PN; -fun esaki_PN : PN; -fun esau_PN : PN; -fun escherichia_coli_PN : PN; -fun eschrichtiidae_PN : PN; -fun eschrichtius_PN : PN; -fun eschscholtzia_PN : PN; -fun esfahan_PN : PN; -fun eskimo_PN : PN; -fun eskimo_aleut_PN : PN; -fun eskimo_curlew_PN : PN; -fun eskimo_dog_PN : PN; -fun esocidae_PN : PN; -fun esox_PN : PN; -fun espagnole_PN : PN; -fun esperantido_PN : PN; -fun esperanto_PN : PN; -fun espoo_PN : PN; -fun esq_PN : PN; -fun esquire_PN : PN; -fun esselen_PN : PN; -fun essen_PN : PN; -fun essene_A : A; -fun essene_PN : PN; -fun essex_PN : PN; -fun estates_general_PN : PN; -fun esther_PN : PN; -fun estonia_PN : PN; -fun estonian_A : A; -fun estonian_PN : PN; -fun estonian_monetary_unit_PN : PN; -fun estrilda_PN : PN; -fun et_al_PN : PN; -fun et_seq_PN : PN; -fun etc_PN : PN; -fun ethel_PN : PN; -fun ethelbert_PN : PN; -fun ethelred_PN : PN; -fun ethiopia_PN : PN; -fun ethiopian_A : A; -fun ethiopian_PN : PN; -fun ethiopian_monetary_unit_PN : PN; -fun etna_PN : PN; -fun eton_college_PN : PN; -fun eton_collar_PN : PN; -fun eton_jacket_PN : PN; -fun etonian_PN : PN; -fun etropus_PN : PN; -fun etruria_PN : PN; -fun etruscan_PN : PN; -fun euarctos_PN : PN; -fun euascomycetes_PN : PN; -fun eubacteriales_PN : PN; -fun eubryales_PN : PN; -fun eucarya_PN : PN; -fun eucharistic_A : A; -fun eucinostomus_PN : PN; -fun euclid_PN : PN; -fun euclid's_axiom_PN : PN; -fun euclid's_fifth_axiom_PN : PN; -fun euclid's_first_axiom_PN : PN; -fun euclid's_fourth_axiom_PN : PN; -fun euclid's_second_axiom_PN : PN; -fun euclid's_third_axiom_PN : PN; -fun euclidean_space_PN : PN; -fun euderma_PN : PN; -fun eudyptes_PN : PN; -fun eugene_PN : PN; -fun eugenia_PN : PN; -fun euglenaceae_PN : PN; -fun euglenophyceae_PN : PN; -fun euglenophyta_PN : PN; -fun euler_PN : PN; -fun eumeces_PN : PN; -fun eumenes_PN : PN; -fun eumetopias_PN : PN; -fun eumops_PN : PN; -fun eumycetes_PN : PN; -fun eumycota_PN : PN; -fun eunectes_PN : PN; -fun eunice_PN : PN; -fun euonymus_PN : PN; -fun euopean_hoopoe_PN : PN; -fun eupatorium_PN : PN; -fun euphagus_PN : PN; -fun euphausia_pacifica_PN : PN; -fun euphausiacea_PN : PN; -fun euphorbia_PN : PN; -fun euphorbiaceae_PN : PN; -fun euphractus_PN : PN; -fun euphrates_PN : PN; -fun euphrosyne_PN : PN; -fun euplectella_PN : PN; -fun euproctis_PN : PN; -fun eurafrican_A : A; -fun eurafrican_PN : PN; -fun eurasia_PN : PN; -fun eurasian_A : A; -fun eurasian_PN : PN; -fun eurasian_badger_PN : PN; -fun eurasian_green_toad_PN : PN; -fun eurasian_hamster_PN : PN; -fun eurasian_kingfisher_PN : PN; -fun eurasian_otter_PN : PN; -fun eurasian_woodcock_PN : PN; -fun eureka_PN : PN; -fun euripides_PN : PN; -fun eurobabble_PN : PN; -fun eurocentric_A : A; -fun eurocentrism_PN : PN; -fun eurocurrency_PN : PN; -fun eurodollar_PN : PN; -fun euronithopoda_PN : PN; -fun europa_PN : PN; -fun europan_PN : PN; -fun europe_PN : PN; -fun european_A : A; -fun european_PN : PN; -fun european_central_bank_PN : PN; -fun european_russia_PN : PN; -fun european_union_PN : PN; -fun european_ash_PN : PN; -fun european_beggar_ticks_PN : PN; -fun european_bittern_PN : PN; -fun european_black_grouse_PN : PN; -fun european_bog_asphodel_PN : PN; -fun european_bream_PN : PN; -fun european_catfish_PN : PN; -fun european_chestnut_PN : PN; -fun european_country_PN : PN; -fun european_cranberry_PN : PN; -fun european_creeper_PN : PN; -fun european_cuckoo_PN : PN; -fun european_curlew_PN : PN; -fun european_dewberry_PN : PN; -fun european_dogtooth_PN : PN; -fun european_fire_salamander_PN : PN; -fun european_flatfish_PN : PN; -fun european_fly_honeysuckle_PN : PN; -fun european_gallinule_PN : PN; -fun european_goatsucker_PN : PN; -fun european_hackberry_PN : PN; -fun european_hare_PN : PN; -fun european_hornbeam_PN : PN; -fun european_house_cricket_PN : PN; -fun european_ladies'_tresses_PN : PN; -fun european_larch_PN : PN; -fun european_lemming_PN : PN; -fun european_lobster_PN : PN; -fun european_magpie_PN : PN; -fun european_nuthatch_PN : PN; -fun european_parsley_fern_PN : PN; -fun european_pasqueflower_PN : PN; -fun european_perch_PN : PN; -fun european_plan_PN : PN; -fun european_rabbit_PN : PN; -fun european_red_elder_PN : PN; -fun european_roller_PN : PN; -fun european_sandpiper_PN : PN; -fun european_sanicle_PN : PN; -fun european_sea_bream_PN : PN; -fun european_shrike_PN : PN; -fun european_silver_fir_PN : PN; -fun european_smelt_PN : PN; -fun european_sole_PN : PN; -fun european_spider_crab_PN : PN; -fun european_swift_PN : PN; -fun european_toad_PN : PN; -fun european_tortoise_PN : PN; -fun european_turkey_oak_PN : PN; -fun european_water_ouzel_PN : PN; -fun european_water_shrew_PN : PN; -fun european_white_lily_PN : PN; -fun european_wildcat_PN : PN; -fun european_wolf_spider_PN : PN; -fun european_wood_mouse_PN : PN; -fun european_woolly_thistle_PN : PN; -fun europeanization_PN : PN; -fun europol_PN : PN; -fun eurotiales_PN : PN; -fun eurotium_PN : PN; -fun eurovision_PN : PN; -fun euryale_PN : PN; -fun euryalida_PN : PN; -fun eurydice_PN : PN; -fun eurylaimi_PN : PN; -fun eurylaimidae_PN : PN; -fun eurypterida_PN : PN; -fun eusebius_PN : PN; -fun eustachian_tube_PN : PN; -fun eustachio_PN : PN; -fun eustoma_PN : PN; -fun eutamias_PN : PN; -fun euterpe_PN : PN; -fun eutheria_PN : PN; -fun euthynnus_PN : PN; -fun eva_PN : PN; -fun evangelical_united_brethren_church_PN : PN; -fun evangelical_and_reformed_church_PN : PN; -fun evangelist_PN : PN; -fun evans_PN : PN; -fun evansville_PN : PN; -fun eve_PN : PN; -fun evelyn_PN : PN; -fun evening_prayer_PN : PN; -fun evenki_PN : PN; -fun everest_PN : PN; -fun everglades_PN : PN; -fun everglades_national_park_PN : PN; -fun evernia_PN : PN; -fun evers_PN : PN; -fun evert_PN : PN; -fun evesham_PN : PN; -fun ewe_PN : PN; -fun ewell_PN : PN; -fun ewing's_sarcoma_PN : PN; -fun exacum_PN : PN; -fun exaeretodon_PN : PN; -fun excalibur_PN : PN; -fun excellency_PN : PN; -fun excl_PN : PN; -fun exeter_PN : PN; -fun exmoor_PN : PN; -fun exmouth_PN : PN; -fun exocet_PN : PN; -fun exocoetidae_PN : PN; -fun exocycloida_PN : PN; -fun exodus_PN : PN; -fun exopterygota_PN : PN; -fun eyck_PN : PN; -fun eyeish_PN : PN; -fun eyre_PN : PN; -fun eyre_peninsula_PN : PN; -fun eysenck_PN : PN; -fun eysenck_personality_inventory_PN : PN; -fun ezekiel_PN : PN; -fun ezra_PN : PN; -fun f_PN : PN; -fun faq_PN : PN; -fun fica_PN : PN; -fun fortran_PN : PN; -fun fortran_program_PN : PN; -fun faberge_PN : PN; -fun fabian_A : A; -fun fabian_PN : PN; -fun fabian_society_PN : PN; -fun fabiana_PN : PN; -fun fabianism_PN : PN; -fun fafnir_PN : PN; -fun fagaceae_PN : PN; -fun fagales_PN : PN; -fun fagin_PN : PN; -fun fagopyrum_PN : PN; -fun fagus_PN : PN; -fun fahd_PN : PN; -fun fahrenheit_A : A; -fun fahrenheit_PN : PN; -fun fahrenheit_scale_PN : PN; -fun fahrenheit_thermometer_PN : PN; -fun fairbanks_PN : PN; -fun faisal_PN : PN; -fun faisalabad_PN : PN; -fun falange_PN : PN; -fun falcatifolium_PN : PN; -fun falco_PN : PN; -fun falconidae_PN : PN; -fun falconiformes_PN : PN; -fun falkirk_PN : PN; -fun falkland_islands_PN : PN; -fun fall_PN : PN; -fun fall_of_man_PN : PN; -fun falla_PN : PN; -fun fallopian_tube_PN : PN; -fun fallopius_PN : PN; -fun fallot_PN : PN; -fun falmouth_PN : PN; -fun falstaff_PN : PN; -fun falstaffian_A : A; -fun fanconi's_anemia_PN : PN; -fun fang_PN : PN; -fun fanny_PN : PN; -fun fanny_adams_PN : PN; -fun far_east_PN : PN; -fun faraday_PN : PN; -fun fargo_PN : PN; -fun farley_maidenhair_PN : PN; -fun farm_credit_system_PN : PN; -fun farmer_PN : PN; -fun farmer_labor_party_PN : PN; -fun farmington_PN : PN; -fun farnham_PN : PN; -fun farnworth_PN : PN; -fun faroe_islands_PN : PN; -fun faroese_PN : PN; -fun farouk_i_PN : PN; -fun farragut_PN : PN; -fun farrell_PN : PN; -fun farsi_PN : PN; -fun fasciola_PN : PN; -fun fasciolidae_PN : PN; -fun fasciolopsis_PN : PN; -fun fasciolopsis_buski_PN : PN; -fun fast_of_esther_PN : PN; -fun fast_of_gedaliah_PN : PN; -fun fast_of_tammuz_PN : PN; -fun fast_of_tevet_PN : PN; -fun fast_of_the_firstborn_PN : PN; -fun fatah_revolutionary_council_PN : PN; -fun fatah_tanzim_PN : PN; -fun father_PN : PN; -fun father's_day_PN : PN; -fun father_brown_PN : PN; -fun fatiha_PN : PN; -fun fatima_PN : PN; -fun fauldhouse_PN : PN; -fun faulkner_PN : PN; -fun fauntleroy_PN : PN; -fun faunus_PN : PN; -fun faust_PN : PN; -fun faustian_A : A; -fun fauve_PN : PN; -fun faversham_PN : PN; -fun fawkes_PN : PN; -fun fawley_PN : PN; -fun fayetteville_PN : PN; -fun fbi_PN : PN; -fun featherstone_PN : PN; -fun feb_PN : PN; -fun february_PN : PN; -fun fechner_PN : PN; -fun fechner's_law_PN : PN; -fun fedayeen_saddam_PN : PN; -fun federal_PN : PN; -fun federal_aviation_agency_PN : PN; -fun federal_bureau_of_investigation_PN : PN; -fun federal_bureau_of_prisons_PN : PN; -fun federal_communications_commission_PN : PN; -fun federal_deposit_insurance_corporation_PN : PN; -fun federal_emergency_management_agency_PN : PN; -fun federal_home_loan_bank_system_PN : PN; -fun federal_home_loan_mortgage_corporation_PN : PN; -fun federal_housing_administration_PN : PN; -fun federal_judiciary_PN : PN; -fun federal_law_enforcement_training_center_PN : PN; -fun federal_national_mortgage_association_PN : PN; -fun federal_protective_service_PN : PN; -fun federal_reserve_bank_PN : PN; -fun federal_reserve_board_PN : PN; -fun federal_reserve_system_PN : PN; -fun federal_security_bureau_PN : PN; -fun federal_trade_commission_PN : PN; -fun federalist_PN : PN; -fun federalist_party_PN : PN; -fun fehling's_solution_PN : PN; -fun feifer_PN : PN; -fun felicia_PN : PN; -fun felicity_PN : PN; -fun felidae_PN : PN; -fun felis_PN : PN; -fun felix_PN : PN; -fun felixstowe_PN : PN; -fun fellini_PN : PN; -fun fem_PN : PN; -fun fennic_PN : PN; -fun fenrir_PN : PN; -fun fentanyl_PN : PN; -fun fenusa_PN : PN; -fun feosol_PN : PN; -fun ferber_PN : PN; -fun ferdinand_PN : PN; -fun ferdinand_i_PN : PN; -fun ferdinand_ii_PN : PN; -fun ferdinand_iii_PN : PN; -fun ferdinand_and_isabella_PN : PN; -fun fergon_PN : PN; -fun fermanagh_PN : PN; -fun fermat_PN : PN; -fun fermi_PN : PN; -fun fermi_dirac_statistics_PN : PN; -fun ferocactus_PN : PN; -fun ferrara_PN : PN; -fun ferris_wheel_PN : PN; -fun ferryhill_PN : PN; -fun fertile_crescent_PN : PN; -fun festuca_PN : PN; -fun feynman_PN : PN; -fun fez_PN : PN; -fun fibonacci_number_PN : PN; -fun fibonacci_sequence_PN : PN; -fun ficus_PN : PN; -fun fiedler_PN : PN; -fun fielding_PN : PN; -fun fields_PN : PN; -fun fife_PN : PN; -fun fifth_amendment_PN : PN; -fun fifth_avenue_PN : PN; -fun fifth_crusade_PN : PN; -fun fifth_lateran_council_PN : PN; -fun fiji_PN : PN; -fun fiji_islands_PN : PN; -fun fiji_dollar_PN : PN; -fun fijian_A : A; -fun fijian_PN : PN; -fun filariidae_PN : PN; -fun filicales_PN : PN; -fun filicopsida_PN : PN; -fun filipino_A : A; -fun filipino_PN : PN; -fun fillmore_PN : PN; -fun filoviridae_PN : PN; -fun financial_crimes_enforcement_network_PN : PN; -fun financial_management_service_PN : PN; -fun fingal's_cave_PN : PN; -fun finger_lakes_PN : PN; -fun finland_PN : PN; -fun finn_PN : PN; -fun finnbogadottir_PN : PN; -fun finnish_A : A; -fun finnish_PN : PN; -fun finnish_monetary_unit_PN : PN; -fun finno_ugric_PN : PN; -fun finno_ugric_speaking_A : A; -fun fiona_PN : PN; -fun firenze_PN : PN; -fun firmiana_PN : PN; -fun first_amendment_PN : PN; -fun first_crusade_PN : PN; -fun first_epistle_of_john_PN : PN; -fun first_epistle_of_paul_the_apostle_to_timothy_PN : PN; -fun first_epistle_of_paul_the_apostle_to_the_corinthians_PN : PN; -fun first_epistle_of_paul_the_apostle_to_the_thessalonians_PN : PN; -fun first_epistle_of_peter_PN : PN; -fun first_lateran_council_PN : PN; -fun first_vatican_council_PN : PN; -fun first_of_october_antifascist_resistance_group_PN : PN; -fun firth_PN : PN; -fun firth_of_clyde_PN : PN; -fun firth_of_forth_PN : PN; -fun fischer_PN : PN; -fun fischer's_slime_mushroom_PN : PN; -fun fissipedia_PN : PN; -fun fissurella_PN : PN; -fun fissurellidae_PN : PN; -fun fistularia_PN : PN; -fun fistulariidae_PN : PN; -fun fistulina_PN : PN; -fun fistulinaceae_PN : PN; -fun fitzgerald_PN : PN; -fun flacourtia_PN : PN; -fun flacourtiaceae_PN : PN; -fun flag_day_PN : PN; -fun flagstaff_PN : PN; -fun flaminian_way_PN : PN; -fun flaminius_PN : PN; -fun flammulina_PN : PN; -fun flanders_PN : PN; -fun flaubert_PN : PN; -fun flavian_dynasty_PN : PN; -fun flaviviridae_PN : PN; -fun fleet_PN : PN; -fun fleet_street_PN : PN; -fun fleetwood_PN : PN; -fun fleming_PN : PN; -fun flemish_A : A; -fun flemish_PN : PN; -fun flemish_speaking_A : A; -fun fletcher_PN : PN; -fun flinders_PN : PN; -fun flindersia_PN : PN; -fun flint_PN : PN; -fun flodden_PN : PN; -fun flora_PN : PN; -fun floreal_PN : PN; -fun florence_PN : PN; -fun florence_fennel_PN : PN; -fun florentine_A : A; -fun florentine_PN : PN; -fun florentine_iris_PN : PN; -fun florey_PN : PN; -fun florida_PN : PN; -fun florida_gallinule_PN : PN; -fun florida_pompano_PN : PN; -fun florida_smoothhound_PN : PN; -fun florida_strap_fern_PN : PN; -fun florida_yew_PN : PN; -fun floridian_PN : PN; -fun florio_PN : PN; -fun florrie_PN : PN; -fun flory_PN : PN; -fun flying_dutchman_PN : PN; -fun foeniculum_PN : PN; -fun foggia_PN : PN; -fun foggy_bottom_PN : PN; -fun folkestone_PN : PN; -fun folsom_culture_PN : PN; -fun fomes_PN : PN; -fun fomor_PN : PN; -fun fonda_PN : PN; -fun fontanne_PN : PN; -fun fontenoy_PN : PN; -fun fonteyn_PN : PN; -fun foochow_PN : PN; -fun food_and_agriculture_organization_PN : PN; -fun food_and_drug_administration_PN : PN; -fun foraminifera_PN : PN; -fun forbidden_city_PN : PN; -fun force_17_PN : PN; -fun forces_of_umar_al_mukhtar_PN : PN; -fun ford_PN : PN; -fun fordhooks_PN : PN; -fun foreign_intelligence_service_PN : PN; -fun foreign_intelligence_surveillance_act_PN : PN; -fun foreign_intelligence_surveillance_court_PN : PN; -fun foreign_office_PN : PN; -fun foreign_service_PN : PN; -fun forester_PN : PN; -fun forfar_PN : PN; -fun forficula_PN : PN; -fun forficulidae_PN : PN; -fun forli_PN : PN; -fun formby_PN : PN; -fun formica_PN : PN; -fun formica_fusca_PN : PN; -fun formicariidae_PN : PN; -fun formicarius_PN : PN; -fun formicidae_PN : PN; -fun formosa_PN : PN; -fun formosan_PN : PN; -fun fornax_PN : PN; -fun forseti_PN : PN; -fun fort_lauderdale_PN : PN; -fun fort_meade_PN : PN; -fun fort_myers_PN : PN; -fun fort_smith_PN : PN; -fun fort_ticonderoga_PN : PN; -fun fort_wayne_PN : PN; -fun fort_worth_PN : PN; -fun fort_william_PN : PN; -fun fortaleza_PN : PN; -fun forth_PN : PN; -fun fortran_compiler_PN : PN; -fun fortuna_PN : PN; -fun fortunella_PN : PN; -fun fosbury_PN : PN; -fun fosbury_flop_PN : PN; -fun fossa_PN : PN; -fun foster_PN : PN; -fun foucault_PN : PN; -fun foucault_pendulum_PN : PN; -fun founding_father_PN : PN; -fun fountain_of_youth_PN : PN; -fun fouquieria_PN : PN; -fun fouquieriaceae_PN : PN; -fun four_horsemen_PN : PN; -fun four_hundred_PN : PN; -fun fourier_PN : PN; -fun fourier_analysis_PN : PN; -fun fourier_series_PN : PN; -fun fourteenth_amendment_PN : PN; -fun fourth_crusade_PN : PN; -fun fourth_lateran_council_PN : PN; -fun fowey_PN : PN; -fun fowler_PN : PN; -fun fox_PN : PN; -fun fox_river_PN : PN; -fun fr_PN : PN; -fun fragaria_PN : PN; -fun fragonard_PN : PN; -fun frampton_cotterell_PN : PN; -fun fran_PN : PN; -fun france_PN : PN; -fun frances_PN : PN; -fun franche_comte_PN : PN; -fun francis_PN : PN; -fun francis_ferdinand_PN : PN; -fun francis_ii_PN : PN; -fun francis_joseph_PN : PN; -fun francis_of_assisi_PN : PN; -fun francis_turbine_PN : PN; -fun franciscan_A : A; -fun franciscan_PN : PN; -fun franciscan_order_PN : PN; -fun francisella_PN : PN; -fun francisella_tularensis_PN : PN; -fun franck_PN : PN; -fun franco_PN : PN; -fun franco_american_PN : PN; -fun franco_prussian_war_PN : PN; -fun francoa_PN : PN; -fun francophile_PN : PN; -fun francophobe_PN : PN; -fun frank_PN : PN; -fun frankenstein_PN : PN; -fun frankfort_PN : PN; -fun frankfurt_PN : PN; -fun frankfurt_on_the_main_PN : PN; -fun frankie_PN : PN; -fun frankish_A : A; -fun franklin_PN : PN; -fun frankliniella_PN : PN; -fun fraser_fir_PN : PN; -fun frasera_PN : PN; -fun fraserburgh_PN : PN; -fun fratercula_PN : PN; -fun frau_PN : PN; -fun fraulein_PN : PN; -fun fraxinus_PN : PN; -fun frazer_PN : PN; -fun freckleton_PN : PN; -fun fred_PN : PN; -fun freda_PN : PN; -fun freddie_PN : PN; -fun freddy_PN : PN; -fun frederick_PN : PN; -fun frederick_i_PN : PN; -fun frederick_ii_PN : PN; -fun frederick_william_PN : PN; -fun frederick_william_i_PN : PN; -fun frederick_william_ii_PN : PN; -fun frederick_william_iii_PN : PN; -fun frederick_william_iv_PN : PN; -fun fredericksburg_PN : PN; -fun fredericton_PN : PN; -fun frederiksberg_PN : PN; -fun free_french_PN : PN; -fun free_soil_party_PN : PN; -fun free_state_PN : PN; -fun free_world_PN : PN; -fun freemason_PN : PN; -fun freemasonry_PN : PN; -fun freetown_PN : PN; -fun fregata_PN : PN; -fun fregatidae_PN : PN; -fun freiburg_PN : PN; -fun fremont_PN : PN; -fun fremontodendron_PN : PN; -fun french_A : A; -fun french_PN : PN; -fun french_academy_PN : PN; -fun french_canadian_PN : PN; -fun french_foreign_legion_PN : PN; -fun french_foreign_office_PN : PN; -fun french_indochina_PN : PN; -fun french_polynesia_PN : PN; -fun french_revolution_PN : PN; -fun french_riviera_PN : PN; -fun french_west_indies_PN : PN; -fun french_and_indian_war_PN : PN; -fun french_blue_PN : PN; -fun french_bread_PN : PN; -fun french_bulldog_PN : PN; -fun french_chalk_PN : PN; -fun french_door_PN : PN; -fun french_dressing_PN : PN; -fun french_franc_PN : PN; -fun french_fritter_PN : PN; -fun french_heel_PN : PN; -fun french_honeysuckle_PN : PN; -fun french_horn_PN : PN; -fun french_knot_PN : PN; -fun french_lavender_PN : PN; -fun french_leave_PN : PN; -fun french_lesson_PN : PN; -fun french_loaf_PN : PN; -fun french_marigold_PN : PN; -fun french_omelet_PN : PN; -fun french_pastry_PN : PN; -fun french_polish_PN : PN; -fun french_region_PN : PN; -fun french_roof_PN : PN; -fun french_sorrel_PN : PN; -fun french_speaking_A : A; -fun french_teacher_PN : PN; -fun french_toast_PN : PN; -fun french_window_PN : PN; -fun frenchman_PN : PN; -fun freon_PN : PN; -fun freshwater_PN : PN; -fun fresnel_PN : PN; -fun fresnel_lens_PN : PN; -fun fresno_PN : PN; -fun freud_PN : PN; -fun freudian_A : A; -fun freudian_PN : PN; -fun freudian_psychology_PN : PN; -fun freudian_slip_PN : PN; -fun frey_PN : PN; -fun freya_PN : PN; -fun fri_PN : PN; -fun frick_PN : PN; -fun friday_PN : PN; -fun friedan_PN : PN; -fun friedman_PN : PN; -fun friedman_test_PN : PN; -fun friedreich's_ataxia_PN : PN; -fun friend_PN : PN; -fun friesian_PN : PN; -fun friesland_PN : PN; -fun frigg_PN : PN; -fun frigid_zone_PN : PN; -fun frimaire_PN : PN; -fun fringilla_PN : PN; -fun fringillidae_PN : PN; -fun frinton_PN : PN; -fun frisbee_PN : PN; -fun frisch_PN : PN; -fun frisia_PN : PN; -fun frisian_A : A; -fun frisian_PN : PN; -fun frisian_islands_PN : PN; -fun fritillaria_PN : PN; -fun friuli_venezia_giulia_PN : PN; -fun friulian_PN : PN; -fun frobisher_PN : PN; -fun frodsham_PN : PN; -fun froebel_PN : PN; -fun froelichia_PN : PN; -fun frome_PN : PN; -fun frost_PN : PN; -fun frost's_bolete_PN : PN; -fun frostian_A : A; -fun fructidor_PN : PN; -fun fry_PN : PN; -fun frye_PN : PN; -fun ft_PN : PN; -fun fucaceae_PN : PN; -fun fucales_PN : PN; -fun fuchs_PN : PN; -fun fuego_PN : PN; -fun fuentes_PN : PN; -fun fugard_PN : PN; -fun fuji_PN : PN; -fun fukuoka_PN : PN; -fun fula_PN : PN; -fun fulani_PN : PN; -fun fulbright_PN : PN; -fun fulgoridae_PN : PN; -fun fulica_PN : PN; -fun fuller_PN : PN; -fun fulmarus_PN : PN; -fun fulton_PN : PN; -fun fumaria_PN : PN; -fun fumariaceae_PN : PN; -fun funafuti_PN : PN; -fun fundulus_PN : PN; -fun fungi_PN : PN; -fun fungia_PN : PN; -fun funk_PN : PN; -fun furnariidae_PN : PN; -fun furnarius_PN : PN; -fun furnivall_PN : PN; -fun furth_PN : PN; -fun fury_PN : PN; -fun fuscoboletinus_PN : PN; -fun fuscoboletinus_paluster_PN : PN; -fun fuscoboletinus_serotinus_PN : PN; -fun fushun_PN : PN; -fun fwd_PN : PN; -fun g_PN : PN; -fun gigo_PN : PN; -fun gi_series_PN : PN; -fun g_man_PN : PN; -fun g_string_PN : PN; -fun gable_PN : PN; -fun gabon_PN : PN; -fun gabon_franc_PN : PN; -fun gabonese_A : A; -fun gabonese_PN : PN; -fun gabor_PN : PN; -fun gaboriau_PN : PN; -fun gaborone_PN : PN; -fun gabriel_PN : PN; -fun gadaba_PN : PN; -fun gadidae_PN : PN; -fun gadiformes_PN : PN; -fun gadsden_PN : PN; -fun gadus_PN : PN; -fun gaea_PN : PN; -fun gael_PN : PN; -fun gaelic_PN : PN; -fun gaelic_speaking_A : A; -fun gafsa_PN : PN; -fun gagarin_PN : PN; -fun gainesville_PN : PN; -fun gainsborough_PN : PN; -fun galahad_PN : PN; -fun galan_PN : PN; -fun galapagos_islands_PN : PN; -fun galashiels_PN : PN; -fun galatea_PN : PN; -fun galatia_PN : PN; -fun galatian_PN : PN; -fun galbraith_PN : PN; -fun galbulidae_PN : PN; -fun galega_PN : PN; -fun galen_PN : PN; -fun galeocerdo_PN : PN; -fun galeopsis_PN : PN; -fun galeorhinus_PN : PN; -fun galeras_PN : PN; -fun galicia_PN : PN; -fun galician_PN : PN; -fun galiella_rufa_PN : PN; -fun galilean_A : A; -fun galilean_PN : PN; -fun galilean_satellite_PN : PN; -fun galilean_telescope_PN : PN; -fun galilee_PN : PN; -fun galileo_PN : PN; -fun galium_PN : PN; -fun gallant_fox_PN : PN; -fun gallaudet_PN : PN; -fun galleria_PN : PN; -fun galliano_PN : PN; -fun gallic_A : A; -fun gallican_A : A; -fun gallicanism_PN : PN; -fun gallicism_PN : PN; -fun galliformes_PN : PN; -fun gallinago_PN : PN; -fun gallinula_PN : PN; -fun gallirallus_PN : PN; -fun galloway_PN : PN; -fun gallup_PN : PN; -fun gallus_PN : PN; -fun galois_PN : PN; -fun galois_theory_PN : PN; -fun galsworthy_PN : PN; -fun galton_PN : PN; -fun galvani_PN : PN; -fun galveston_PN : PN; -fun galveston_bay_PN : PN; -fun galveston_island_PN : PN; -fun galway_PN : PN; -fun galway_bay_PN : PN; -fun galwegian_A : A; -fun gambelia_PN : PN; -fun gambia_PN : PN; -fun gambian_A : A; -fun gambian_PN : PN; -fun gambian_monetary_unit_PN : PN; -fun gambier_islands_PN : PN; -fun gambusia_PN : PN; -fun gamow_PN : PN; -fun gan_jiang_PN : PN; -fun gandhi_PN : PN; -fun gandhian_A : A; -fun ganesh_PN : PN; -fun ganges_PN : PN; -fun ganoidei_PN : PN; -fun gansu_PN : PN; -fun ganymede_PN : PN; -fun garand_rifle_PN : PN; -fun garbo_PN : PN; -fun garcia_lorca_PN : PN; -fun garcinia_PN : PN; -fun gardiner_PN : PN; -fun gardner_PN : PN; -fun gareth_PN : PN; -fun garfield_PN : PN; -fun garforth_PN : PN; -fun gargantua_PN : PN; -fun garibaldi_PN : PN; -fun garland_PN : PN; -fun garnier_PN : PN; -fun garonne_PN : PN; -fun garrick_PN : PN; -fun garrison_PN : PN; -fun garrowhill_PN : PN; -fun garrulinae_PN : PN; -fun garrulus_PN : PN; -fun garuda_PN : PN; -fun gary_PN : PN; -fun gascogne_PN : PN; -fun gasherbrum_PN : PN; -fun gaskell_PN : PN; -fun gasteromycetes_PN : PN; -fun gasterophilidae_PN : PN; -fun gasterophilus_PN : PN; -fun gasterosteidae_PN : PN; -fun gasterosteus_PN : PN; -fun gastroboletus_PN : PN; -fun gastroboletus_scabrosus_PN : PN; -fun gastroboletus_turbinatus_PN : PN; -fun gastrocybe_PN : PN; -fun gastrocybe_lateritia_PN : PN; -fun gastrophryne_PN : PN; -fun gastropoda_PN : PN; -fun gates_PN : PN; -fun gates_of_the_arctic_national_park_PN : PN; -fun gateshead_PN : PN; -fun gathic_PN : PN; -fun gatling_PN : PN; -fun gatling_gun_PN : PN; -fun gaucher's_disease_PN : PN; -fun gaudi_PN : PN; -fun gauguin_PN : PN; -fun gauguinesque_A : A; -fun gaul_PN : PN; -fun gaultheria_PN : PN; -fun gauri_PN : PN; -fun gauss_PN : PN; -fun gaussian_A : A; -fun gavia_PN : PN; -fun gavialidae_PN : PN; -fun gavialis_PN : PN; -fun gavidae_PN : PN; -fun gaviiformes_PN : PN; -fun gavin_PN : PN; -fun gawain_PN : PN; -fun gay_lussac_PN : PN; -fun gay_lussac's_law_PN : PN; -fun gaylussacia_PN : PN; -fun gaza_strip_PN : PN; -fun gazella_PN : PN; -fun gazella_subgutturosa_PN : PN; -fun gb_PN : PN; -fun gdansk_PN : PN; -fun gdn_PN : PN; -fun gdns_PN : PN; -fun geastraceae_PN : PN; -fun geastrum_PN : PN; -fun geastrum_coronatum_PN : PN; -fun geb_PN : PN; -fun geglossaceae_PN : PN; -fun gehenna_PN : PN; -fun gehrig_PN : PN; -fun geiger_PN : PN; -fun geiger_counter_PN : PN; -fun geiger_tube_PN : PN; -fun geisel_PN : PN; -fun gekkonidae_PN : PN; -fun gelechia_PN : PN; -fun gelechia_gossypiella_PN : PN; -fun gelechiidae_PN : PN; -fun gell_mann_PN : PN; -fun gelligaer_PN : PN; -fun gelsemium_PN : PN; -fun gelsenkirchen_PN : PN; -fun gemara_PN : PN; -fun gemini_PN : PN; -fun gemini_program_PN : PN; -fun gempylidae_PN : PN; -fun gempylus_PN : PN; -fun gen_PN : PN; -fun gene_PN : PN; -fun general_agreement_on_tariffs_and_trade_PN : PN; -fun general_assembly_PN : PN; -fun general_certificate_of_secondary_education_PN : PN; -fun general_services_administration_PN : PN; -fun genesis_PN : PN; -fun genet_PN : PN; -fun genetta_PN : PN; -fun geneva_PN : PN; -fun geneva_convention_PN : PN; -fun geneva_gown_PN : PN; -fun genevan_PN : PN; -fun genghis_khan_PN : PN; -fun genista_PN : PN; -fun genoa_PN : PN; -fun genoese_A : A; -fun genoese_PN : PN; -fun genova_PN : PN; -fun genseric_PN : PN; -fun gent_PN : PN; -fun gentiana_PN : PN; -fun gentianaceae_PN : PN; -fun gentianales_PN : PN; -fun gentianella_PN : PN; -fun gentianopsid_procera_PN : PN; -fun gentianopsis_PN : PN; -fun gentianopsis_crinita_PN : PN; -fun gentianopsis_detonsa_PN : PN; -fun gentianopsis_thermalis_PN : PN; -fun genyonemus_PN : PN; -fun geochelone_PN : PN; -fun geococcyx_PN : PN; -fun geoff_PN : PN; -fun geoffrey_PN : PN; -fun geoffrey_of_monmouth_PN : PN; -fun geoffroea_PN : PN; -fun geogia_holly_PN : PN; -fun geoglossaceae_PN : PN; -fun geoglossum_PN : PN; -fun geometridae_PN : PN; -fun geomyidae_PN : PN; -fun geomys_PN : PN; -fun geophilidae_PN : PN; -fun geophilomorpha_PN : PN; -fun geophilus_PN : PN; -fun geordie_PN : PN; -fun george_PN : PN; -fun george_town_PN : PN; -fun george_washington_bridge_PN : PN; -fun georgetown_PN : PN; -fun georgia_PN : PN; -fun georgian_A : A; -fun georgian_PN : PN; -fun georgian_monetary_unit_PN : PN; -fun georgie_PN : PN; -fun geothlypis_PN : PN; -fun geraint_PN : PN; -fun gerald_PN : PN; -fun geraldine_PN : PN; -fun geraniaceae_PN : PN; -fun geraniales_PN : PN; -fun gerard_PN : PN; -fun gerbera_PN : PN; -fun gerbillinae_PN : PN; -fun gerbillus_PN : PN; -fun gerea_PN : PN; -fun german_A : A; -fun german_PN : PN; -fun german_american_A : A; -fun german_american_PN : PN; -fun german_cockroach_PN : PN; -fun german_iris_PN : PN; -fun german_ivy_PN : PN; -fun german_lesson_PN : PN; -fun german_measles_PN : PN; -fun german_millet_PN : PN; -fun german_monetary_unit_PN : PN; -fun german_shepherd_PN : PN; -fun german_short_haired_pointer_PN : PN; -fun german_speaking_A : A; -fun germanic_A : A; -fun germanic_PN : PN; -fun germanism_PN : PN; -fun germanist_PN : PN; -fun germany_PN : PN; -fun germinal_PN : PN; -fun geronimo_PN : PN; -fun gerreidae_PN : PN; -fun gerres_PN : PN; -fun gerrhonotus_PN : PN; -fun gerrididae_PN : PN; -fun gerris_PN : PN; -fun gerry_PN : PN; -fun gershwin_PN : PN; -fun gertie_PN : PN; -fun gertrude_PN : PN; -fun geryon_PN : PN; -fun gesell_PN : PN; -fun gesner_PN : PN; -fun gesneriaceae_PN : PN; -fun gestalt_law_of_organization_PN : PN; -fun gestalt_psychology_PN : PN; -fun gestapo_PN : PN; -fun gettysburg_PN : PN; -fun gettysburg_address_PN : PN; -fun geum_PN : PN; -fun ghana_PN : PN; -fun ghanaian_A : A; -fun ghanian_PN : PN; -fun ghanian_monetary_unit_PN : PN; -fun ghedda_wax_PN : PN; -fun gheg_PN : PN; -fun ghent_PN : PN; -fun ghq_PN : PN; -fun giacometti_PN : PN; -fun gibbon_PN : PN; -fun gibbs_PN : PN; -fun gibraltar_PN : PN; -fun gibraltarian_A : A; -fun gibraltarian_PN : PN; -fun gibran_PN : PN; -fun gibson_PN : PN; -fun gibson_desert_PN : PN; -fun gibson_girl_PN : PN; -fun gidar_PN : PN; -fun gide_PN : PN; -fun gielgud_PN : PN; -fun giffnock_PN : PN; -fun gigartinaceae_PN : PN; -fun gikuyu_PN : PN; -fun gila_PN : PN; -fun gila_desert_PN : PN; -fun gila_monster_PN : PN; -fun gilbert_PN : PN; -fun gilbert_islands_PN : PN; -fun gilbert_and_ellice_islands_PN : PN; -fun gilbert_and_sullivan_PN : PN; -fun gilbertian_A : A; -fun giles_PN : PN; -fun gilfach_goch_PN : PN; -fun gilgamesh_PN : PN; -fun gilgamish_PN : PN; -fun gill_PN : PN; -fun gillespie_PN : PN; -fun gillette_PN : PN; -fun gillian_PN : PN; -fun gillingham_PN : PN; -fun gilman_PN : PN; -fun gilmer_PN : PN; -fun gina_PN : PN; -fun ginglymostoma_PN : PN; -fun ginkgoaceae_PN : PN; -fun ginkgoales_PN : PN; -fun ginkgopsida_PN : PN; -fun ginsberg_PN : PN; -fun giotto_PN : PN; -fun giraffa_PN : PN; -fun giraffidae_PN : PN; -fun girard_PN : PN; -fun giraudoux_PN : PN; -fun giriama_PN : PN; -fun girl_scout_PN : PN; -fun girl_scouts_PN : PN; -fun gironde_PN : PN; -fun girondism_PN : PN; -fun girondist_PN : PN; -fun girru_PN : PN; -fun girvan_PN : PN; -fun gish_PN : PN; -fun giza_PN : PN; -fun gjellerup_PN : PN; -fun gladstone_PN : PN; -fun gladys_PN : PN; -fun glamorgan_PN : PN; -fun glareola_PN : PN; -fun glareolidae_PN : PN; -fun glaser_PN : PN; -fun glasgow_PN : PN; -fun glastonbury_PN : PN; -fun glaswegian_A : A; -fun glaswegian_PN : PN; -fun glauber's_salt_PN : PN; -fun glaucium_PN : PN; -fun glaucomys_PN : PN; -fun glaux_PN : PN; -fun glechoma_PN : PN; -fun gleditsia_PN : PN; -fun gleichenia_PN : PN; -fun gleicheniaceae_PN : PN; -fun glen_PN : PN; -fun glen_canyon_dam_PN : PN; -fun glendower_PN : PN; -fun glengarry_PN : PN; -fun glenn_PN : PN; -fun glenrothes_PN : PN; -fun glinka_PN : PN; -fun gliridae_PN : PN; -fun glis_PN : PN; -fun global_positioning_system_PN : PN; -fun globicephala_PN : PN; -fun globigerinidae_PN : PN; -fun gloria_PN : PN; -fun glossinidae_PN : PN; -fun glossodia_PN : PN; -fun glossop_PN : PN; -fun glossopsitta_PN : PN; -fun gloucester_PN : PN; -fun gloucestershire_PN : PN; -fun gluck_PN : PN; -fun glusburn_PN : PN; -fun glyceria_PN : PN; -fun glycine_PN : PN; -fun glycyrrhiza_PN : PN; -fun gmt_PN : PN; -fun gnaphalium_PN : PN; -fun gnathostomata_PN : PN; -fun gnetaceae_PN : PN; -fun gnetales_PN : PN; -fun gnetopsida_PN : PN; -fun gnostic_PN : PN; -fun gnosticism_PN : PN; -fun go_fish_PN : PN; -fun goa_PN : PN; -fun gobi_PN : PN; -fun gobiesocidae_PN : PN; -fun gobiesox_PN : PN; -fun gobiidae_PN : PN; -fun gobio_PN : PN; -fun god_PN : PN; -fun god's_will_PN : PN; -fun god's_wisdom_PN : PN; -fun god_knows_how_Adv : Adv; -fun godalming_PN : PN; -fun godard_PN : PN; -fun goddard_PN : PN; -fun godel_PN : PN; -fun godfrey_PN : PN; -fun godhead_PN : PN; -fun godiva_PN : PN; -fun godmanchester_PN : PN; -fun godspeed_PN : PN; -fun godunov_PN : PN; -fun goebbels_PN : PN; -fun goethals_PN : PN; -fun goethe_PN : PN; -fun goethean_A : A; -fun goffs_oak_PN : PN; -fun gog_and_magog_PN : PN; -fun gogol_PN : PN; -fun golan_heights_PN : PN; -fun golbourne_PN : PN; -fun golconda_PN : PN; -fun goldberg_PN : PN; -fun golden_age_PN : PN; -fun golden_delicious_PN : PN; -fun golden_fleece_PN : PN; -fun golden_gate_PN : PN; -fun golden_gate_bridge_PN : PN; -fun golden_horde_PN : PN; -fun golden_rule_PN : PN; -fun goldie's_fern_PN : PN; -fun golding_PN : PN; -fun goldman_PN : PN; -fun goldmark_PN : PN; -fun goldoni_PN : PN; -fun goldsboro_PN : PN; -fun goldsmith_PN : PN; -fun goldwyn_PN : PN; -fun golgi_PN : PN; -fun golgi's_cell_PN : PN; -fun golgi_body_PN : PN; -fun goliath_PN : PN; -fun goma_PN : PN; -fun gombrowicz_PN : PN; -fun gomorrah_PN : PN; -fun gompers_PN : PN; -fun gomphotheriidae_PN : PN; -fun gomphotherium_PN : PN; -fun gomphrena_PN : PN; -fun goncourt_PN : PN; -fun gond_PN : PN; -fun gondi_PN : PN; -fun gondwanaland_PN : PN; -fun gongora_PN : PN; -fun gongorism_PN : PN; -fun gongorist_PN : PN; -fun goniopteris_PN : PN; -fun gonne_PN : PN; -fun gonorhynchidae_PN : PN; -fun gonorhynchus_PN : PN; -fun good_friday_PN : PN; -fun goodall_PN : PN; -fun goodenia_PN : PN; -fun goodeniaceae_PN : PN; -fun goodman_PN : PN; -fun goodyear_PN : PN; -fun goodyera_PN : PN; -fun goofy_PN : PN; -fun google_PN : PN; -fun goole_PN : PN; -fun gopherus_PN : PN; -fun gorbachev_PN : PN; -fun gordian_A : A; -fun gordian_knot_PN : PN; -fun gordimer_PN : PN; -fun gordius_PN : PN; -fun gordon_PN : PN; -fun gordon_setter_PN : PN; -fun gore_PN : PN; -fun gorgas_PN : PN; -fun gorgon_PN : PN; -fun gorgonacea_PN : PN; -fun gorgonocephalus_PN : PN; -fun goring_PN : PN; -fun gorky_PN : PN; -fun gorseinon_PN : PN; -fun gosainthan_PN : PN; -fun gospel_PN : PN; -fun gosport_PN : PN; -fun gossypium_PN : PN; -fun gota_canal_PN : PN; -fun goteborg_PN : PN; -fun goth_PN : PN; -fun gothenburg_PN : PN; -fun gothic_A : A; -fun gothic_PN : PN; -fun gothic_arch_PN : PN; -fun gothic_romance_PN : PN; -fun gothic_romancer_PN : PN; -fun gotterdammerung_PN : PN; -fun gottingen_PN : PN; -fun gouda_PN : PN; -fun goudy_PN : PN; -fun gould_PN : PN; -fun gounod_PN : PN; -fun gourock_PN : PN; -fun gov_PN : PN; -fun governador_valadares_PN : PN; -fun government_accounting_office_PN : PN; -fun goya_PN : PN; -fun graafian_follicle_PN : PN; -fun grace_PN : PN; -fun gracilariidae_PN : PN; -fun gracula_PN : PN; -fun graf_PN : PN; -fun graham_PN : PN; -fun grahame_PN : PN; -fun grainger_PN : PN; -fun gram_PN : PN; -fun gram's_method_PN : PN; -fun gram's_solution_PN : PN; -fun gram_negative_A : A; -fun gram_positive_A : A; -fun graminales_PN : PN; -fun gramineae_PN : PN; -fun grammatophyllum_PN : PN; -fun grampian_PN : PN; -fun gran_santiago_PN : PN; -fun granada_PN : PN; -fun grand_canal_PN : PN; -fun grand_canyon_PN : PN; -fun grand_canyon_national_park_PN : PN; -fun grand_guignol_PN : PN; -fun grand_inquisitor_PN : PN; -fun grand_island_PN : PN; -fun grand_marnier_PN : PN; -fun grand_national_PN : PN; -fun grand_prix_PN : PN; -fun grand_rapids_PN : PN; -fun grand_river_PN : PN; -fun grand_teton_PN : PN; -fun grand_teton_national_park_PN : PN; -fun grangemouth_PN : PN; -fun granicus_PN : PN; -fun granny_smith_PN : PN; -fun grant_PN : PN; -fun grantham_PN : PN; -fun granville_barker_PN : PN; -fun grappelli_PN : PN; -fun graptophyllum_PN : PN; -fun grass_PN : PN; -fun gravenhage_PN : PN; -fun graves_PN : PN; -fun graves'_disease_PN : PN; -fun gravesend_PN : PN; -fun gray_PN : PN; -fun graz_PN : PN; -fun great_attractor_PN : PN; -fun great_australian_bight_PN : PN; -fun great_barrier_reef_PN : PN; -fun great_bear_PN : PN; -fun great_britain_PN : PN; -fun great_dane_PN : PN; -fun great_depression_PN : PN; -fun great_divide_PN : PN; -fun great_dividing_range_PN : PN; -fun great_falls_PN : PN; -fun great_lakes_PN : PN; -fun great_plains_PN : PN; -fun great_pyrenees_PN : PN; -fun great_rift_valley_PN : PN; -fun great_russian_PN : PN; -fun great_salt_lake_PN : PN; -fun great_sandy_desert_PN : PN; -fun great_schism_PN : PN; -fun great_seal_of_the_united_states_PN : PN; -fun great_slave_lake_PN : PN; -fun great_smoky_mountains_PN : PN; -fun great_smoky_mountains_national_park_PN : PN; -fun great_victoria_desert_PN : PN; -fun great_harwood_PN : PN; -fun great_malvern_PN : PN; -fun great_shelford_PN : PN; -fun great_yarmouth_PN : PN; -fun greater_antilles_PN : PN; -fun greater_new_orleans_bridge_PN : PN; -fun greater_sunda_islands_PN : PN; -fun greater_swiss_mountain_dog_PN : PN; -fun grecian_PN : PN; -fun greco_roman_deity_PN : PN; -fun greco_roman_wrestling_PN : PN; -fun greece_PN : PN; -fun greek_A : A; -fun greek_PN : PN; -fun greek_catholic_PN : PN; -fun greek_orthodox_church_PN : PN; -fun greek_alphabet_PN : PN; -fun greek_architecture_PN : PN; -fun greek_cross_PN : PN; -fun greek_deity_PN : PN; -fun greek_fire_PN : PN; -fun greek_mode_PN : PN; -fun greek_monetary_unit_PN : PN; -fun greek_mythology_PN : PN; -fun greek_partridge_PN : PN; -fun greek_valerian_PN : PN; -fun greeley_PN : PN; -fun green_PN : PN; -fun green_bay_PN : PN; -fun green_beret_PN : PN; -fun green_line_PN : PN; -fun green_mountains_PN : PN; -fun green_party_PN : PN; -fun greenback_party_PN : PN; -fun greenberg_PN : PN; -fun greene_PN : PN; -fun greenland_PN : PN; -fun greenland_sea_PN : PN; -fun greenock_PN : PN; -fun greenpeace_PN : PN; -fun greensboro_PN : PN; -fun greenville_PN : PN; -fun greenwich_PN : PN; -fun greenwich_mean_time_PN : PN; -fun greenwich_meridian_PN : PN; -fun greenwich_village_PN : PN; -fun greg_PN : PN; -fun gregarinida_PN : PN; -fun gregorian_A : A; -fun gregorian_calendar_PN : PN; -fun gregorian_calendar_month_PN : PN; -fun gregory_PN : PN; -fun grenada_PN : PN; -fun grenada_dollar_PN : PN; -fun grenadian_A : A; -fun grenadian_PN : PN; -fun grenoble_PN : PN; -fun gresham_PN : PN; -fun gresham's_law_PN : PN; -fun gretzky_PN : PN; -fun grewia_PN : PN; -fun grey_PN : PN; -fun grias_PN : PN; -fun grieg_PN : PN; -fun griffith_PN : PN; -fun grim_reaper_PN : PN; -fun grimes'_golden_PN : PN; -fun grimethorpe_PN : PN; -fun grimm_PN : PN; -fun grimm's_law_PN : PN; -fun grimsby_PN : PN; -fun grindelia_PN : PN; -fun grindelia_robusta_PN : PN; -fun grinstead_PN : PN; -fun gris_PN : PN; -fun griselinia_PN : PN; -fun groenlandia_PN : PN; -fun gromyko_PN : PN; -fun groningen_PN : PN; -fun gropius_PN : PN; -fun grossulariaceae_PN : PN; -fun grotius_PN : PN; -fun groundhog_day_PN : PN; -fun groves_PN : PN; -fun grozny_PN : PN; -fun grub_street_PN : PN; -fun gruidae_PN : PN; -fun gruiformes_PN : PN; -fun grus_PN : PN; -fun gruyere_PN : PN; -fun gryllidae_PN : PN; -fun guadalajara_PN : PN; -fun guadalcanal_PN : PN; -fun guadalupe_island_PN : PN; -fun guadalupe_mountains_PN : PN; -fun guadalupe_mountains_national_park_PN : PN; -fun guadalupe_cypress_PN : PN; -fun guadeloupe_PN : PN; -fun guaiacum_PN : PN; -fun guallatiri_PN : PN; -fun guam_PN : PN; -fun guangdong_PN : PN; -fun guangzhou_PN : PN; -fun guantanamo_PN : PN; -fun guantanamo_bay_PN : PN; -fun guarani_PN : PN; -fun guarneri_PN : PN; -fun guarnerius_PN : PN; -fun guatemala_PN : PN; -fun guatemala_city_PN : PN; -fun guatemalan_A : A; -fun guatemalan_PN : PN; -fun guatemalan_monetary_unit_PN : PN; -fun guayaquil_PN : PN; -fun guernsey_PN : PN; -fun guest_PN : PN; -fun guevara_PN : PN; -fun guevina_PN : PN; -fun guggenheim_PN : PN; -fun guiana_PN : PN; -fun guiana_highlands_PN : PN; -fun guildford_PN : PN; -fun guillain_barre_syndrome_PN : PN; -fun guinea_PN : PN; -fun guinea_bissau_PN : PN; -fun guinea_bissau_monetary_unit_PN : PN; -fun guinea_bissau_peso_PN : PN; -fun guinea_pepper_PN : PN; -fun guinea_worm_PN : PN; -fun guinea_worm_disease_PN : PN; -fun guinean_A : A; -fun guinean_PN : PN; -fun guinean_franc_PN : PN; -fun guinean_monetary_unit_PN : PN; -fun guinevere_PN : PN; -fun guinness_PN : PN; -fun guisborough_PN : PN; -fun gujarat_PN : PN; -fun gujarati_PN : PN; -fun gula_PN : PN; -fun gulf_coast_PN : PN; -fun gulf_states_PN : PN; -fun gulf_war_syndrome_PN : PN; -fun gulf_of_aden_PN : PN; -fun gulf_of_alaska_PN : PN; -fun gulf_of_antalya_PN : PN; -fun gulf_of_aqaba_PN : PN; -fun gulf_of_bothnia_PN : PN; -fun gulf_of_california_PN : PN; -fun gulf_of_campeche_PN : PN; -fun gulf_of_carpentaria_PN : PN; -fun gulf_of_corinth_PN : PN; -fun gulf_of_finland_PN : PN; -fun gulf_of_guinea_PN : PN; -fun gulf_of_martaban_PN : PN; -fun gulf_of_mexico_PN : PN; -fun gulf_of_ob_PN : PN; -fun gulf_of_oman_PN : PN; -fun gulf_of_riga_PN : PN; -fun gulf_of_saint_lawrence_PN : PN; -fun gulf_of_sidra_PN : PN; -fun gulf_of_suez_PN : PN; -fun gulf_of_tehuantepec_PN : PN; -fun gulf_of_thailand_PN : PN; -fun gulf_of_venice_PN : PN; -fun gulf_stream_PN : PN; -fun gulliver_PN : PN; -fun gulo_PN : PN; -fun gulu_PN : PN; -fun gunpowder_plot_PN : PN; -fun gunter's_chain_PN : PN; -fun gur_PN : PN; -fun gurkha_PN : PN; -fun guru_PN : PN; -fun gustavus_PN : PN; -fun gutenberg_PN : PN; -fun guthrie_PN : PN; -fun gutierrezia_PN : PN; -fun guttiferae_PN : PN; -fun guttiferales_PN : PN; -fun guy_PN : PN; -fun guy's_PN : PN; -fun guy_fawkes_day_PN : PN; -fun guyana_PN : PN; -fun guyana_dollar_PN : PN; -fun guyanese_A : A; -fun guyanese_PN : PN; -fun gwen_PN : PN; -fun gwendoline_PN : PN; -fun gwent_PN : PN; -fun gwersyllt_PN : PN; -fun gwydion_PN : PN; -fun gwyn_PN : PN; -fun gwynedd_PN : PN; -fun gwynn_PN : PN; -fun gymnadenia_PN : PN; -fun gymnadeniopsis_PN : PN; -fun gymnelis_PN : PN; -fun gymnocalycium_PN : PN; -fun gymnocarpium_PN : PN; -fun gymnocladus_PN : PN; -fun gymnogyps_PN : PN; -fun gymnophiona_PN : PN; -fun gymnopilus_PN : PN; -fun gymnopilus_spectabilis_PN : PN; -fun gymnopilus_validipes_PN : PN; -fun gymnopilus_ventricosus_PN : PN; -fun gymnorhina_PN : PN; -fun gymnospermae_PN : PN; -fun gymnosporangium_PN : PN; -fun gymnura_PN : PN; -fun gynura_PN : PN; -fun gypaetus_PN : PN; -fun gyps_PN : PN; -fun gypsophila_PN : PN; -fun gypsy_PN : PN; -fun gyrinidae_PN : PN; -fun gyromitra_californica_PN : PN; -fun gyromitra_esculenta_PN : PN; -fun gyromitra_fastigiata_PN : PN; -fun gyromitra_gigas_PN : PN; -fun gyromitra_infula_PN : PN; -fun gyromitra_sphaerospora_PN : PN; -fun h_PN : PN; -fun hazmat_PN : PN; -fun hdl_cholesterol_PN : PN; -fun hiv_PN : PN; -fun hmg_coa_reductase_PN : PN; -fun h_shaped_A : A; -fun haarlem_PN : PN; -fun haastia_PN : PN; -fun habakkuk_PN : PN; -fun habenaria_PN : PN; -fun haber_PN : PN; -fun haber_process_PN : PN; -fun habsburg_PN : PN; -fun hachiman_PN : PN; -fun hackelia_PN : PN; -fun hackney_PN : PN; -fun had_crime_PN : PN; -fun haddington_PN : PN; -fun hadean_A : A; -fun hadean_PN : PN; -fun hades_PN : PN; -fun hadith_PN : PN; -fun hadrian_PN : PN; -fun hadrian's_wall_PN : PN; -fun hadrosauridae_PN : PN; -fun haeckel_PN : PN; -fun haemanthus_PN : PN; -fun haematobia_PN : PN; -fun haematopodidae_PN : PN; -fun haematopus_PN : PN; -fun haematoxylum_PN : PN; -fun haemodoraceae_PN : PN; -fun haemodorum_PN : PN; -fun haemopis_PN : PN; -fun haemoproteidae_PN : PN; -fun haemoproteus_PN : PN; -fun haemosporidia_PN : PN; -fun haemulidae_PN : PN; -fun haemulon_PN : PN; -fun haftorah_PN : PN; -fun haganah_PN : PN; -fun hageman_factor_PN : PN; -fun hagen_PN : PN; -fun hagerstown_PN : PN; -fun haggadah_PN : PN; -fun haggai_PN : PN; -fun haggard_PN : PN; -fun hagia_sophia_PN : PN; -fun hagiographa_PN : PN; -fun hagley_PN : PN; -fun hahn_PN : PN; -fun haida_PN : PN; -fun haile_selassie_PN : PN; -fun hailsham_PN : PN; -fun haiphong_PN : PN; -fun haiti_PN : PN; -fun haitian_A : A; -fun haitian_PN : PN; -fun haitian_creole_PN : PN; -fun haitian_centime_PN : PN; -fun haitian_monetary_unit_PN : PN; -fun hakea_PN : PN; -fun hakham_PN : PN; -fun hakka_PN : PN; -fun hal_PN : PN; -fun halab_PN : PN; -fun halakah_PN : PN; -fun halchidhoma_PN : PN; -fun halcyon_PN : PN; -fun haldane_PN : PN; -fun haldea_PN : PN; -fun hale_PN : PN; -fun haleakala_national_park_PN : PN; -fun halenia_PN : PN; -fun halesia_PN : PN; -fun halesowen_PN : PN; -fun halevy_PN : PN; -fun haley_PN : PN; -fun haliaeetus_PN : PN; -fun halicarnassus_PN : PN; -fun halicoeres_PN : PN; -fun halictidae_PN : PN; -fun halifax_PN : PN; -fun halimodendron_PN : PN; -fun haliotidae_PN : PN; -fun haliotis_PN : PN; -fun hall_PN : PN; -fun hall's_honeysuckle_PN : PN; -fun hall_of_fame_PN : PN; -fun halle_PN : PN; -fun hallel_PN : PN; -fun halley_PN : PN; -fun hallowe'en_PN : PN; -fun halloween_PN : PN; -fun halocarpus_PN : PN; -fun haloragidaceae_PN : PN; -fun hals_PN : PN; -fun halstead_PN : PN; -fun ham_PN : PN; -fun hamamelidaceae_PN : PN; -fun hamamelidae_PN : PN; -fun hamamelidanthum_PN : PN; -fun hamamelidoxylon_PN : PN; -fun hamamelis_PN : PN; -fun hamamelites_PN : PN; -fun haman_PN : PN; -fun hamas_PN : PN; -fun hamburg_PN : PN; -fun hamburg_parsley_PN : PN; -fun hameln_PN : PN; -fun hamhung_PN : PN; -fun hamilton_PN : PN; -fun haminoea_PN : PN; -fun hamitic_PN : PN; -fun hamlet_PN : PN; -fun hammarskjold_PN : PN; -fun hammersmith_PN : PN; -fun hammerstein_PN : PN; -fun hammett_PN : PN; -fun hammurabi_PN : PN; -fun hampreston_PN : PN; -fun hampshire_PN : PN; -fun hampton_PN : PN; -fun hampton_roads_PN : PN; -fun hamsun_PN : PN; -fun han_PN : PN; -fun hancock_PN : PN; -fun hand_schuller_christian_disease_PN : PN; -fun handel_PN : PN; -fun handelian_A : A; -fun handies_peak_PN : PN; -fun handy_PN : PN; -fun hangchon_PN : PN; -fun hanging_gardens_of_babylon_PN : PN; -fun hangzhou_PN : PN; -fun hangzhou_bay_PN : PN; -fun hani_PN : PN; -fun hanks_PN : PN; -fun hannibal_PN : PN; -fun hannover_PN : PN; -fun hanoi_PN : PN; -fun hanover_PN : PN; -fun hanoverian_A : A; -fun hanoverian_PN : PN; -fun hansard_PN : PN; -fun hanseatic_league_PN : PN; -fun hanukkah_PN : PN; -fun hanuman_PN : PN; -fun haplopappus_PN : PN; -fun haplosporidia_PN : PN; -fun harare_PN : PN; -fun harbin_PN : PN; -fun hardenbergia_PN : PN; -fun harding_PN : PN; -fun hardy_PN : PN; -fun hare_krishna_PN : PN; -fun haredi_PN : PN; -fun hargeisa_PN : PN; -fun hargreaves_PN : PN; -fun haringey_PN : PN; -fun harkat_ul_jihad_e_islami_PN : PN; -fun harkat_ul_mujahidin_PN : PN; -fun harlem_PN : PN; -fun harlem_renaissance_PN : PN; -fun harlem_river_PN : PN; -fun harley_street_PN : PN; -fun harlow_PN : PN; -fun harmsworth_PN : PN; -fun harold_PN : PN; -fun harold_i_PN : PN; -fun harold_ii_PN : PN; -fun harpenden_PN : PN; -fun harpers_ferry_PN : PN; -fun harpia_PN : PN; -fun harpy_PN : PN; -fun harriet_PN : PN; -fun harriman_PN : PN; -fun harris_PN : PN; -fun harris_tweed_PN : PN; -fun harrisburg_PN : PN; -fun harrisia_PN : PN; -fun harrison_PN : PN; -fun harrod_PN : PN; -fun harrogate_PN : PN; -fun harrow_PN : PN; -fun harry_PN : PN; -fun hart_PN : PN; -fun harte_PN : PN; -fun hartford_PN : PN; -fun hartlepool_PN : PN; -fun hartley_PN : PN; -fun harvard_PN : PN; -fun harvard_university_PN : PN; -fun harvey_PN : PN; -fun harvey_wallbanger_PN : PN; -fun harwich_PN : PN; -fun harwood_PN : PN; -fun harworth_PN : PN; -fun hasdrubal_PN : PN; -fun hasek_PN : PN; -fun hashimoto's_disease_PN : PN; -fun hasid_PN : PN; -fun hasidic_A : A; -fun hasidim_PN : PN; -fun hasidism_PN : PN; -fun haslemere_PN : PN; -fun haslingden_PN : PN; -fun hassam_PN : PN; -fun hassel_PN : PN; -fun hastinapura_PN : PN; -fun hastings_PN : PN; -fun hatfield_PN : PN; -fun hathaway_PN : PN; -fun hatiora_PN : PN; -fun hatteras_island_PN : PN; -fun hattiesburg_PN : PN; -fun hausa_PN : PN; -fun haute_normandie_PN : PN; -fun havana_PN : PN; -fun havasupai_PN : PN; -fun havel_PN : PN; -fun haverfordwest_PN : PN; -fun haverhill_PN : PN; -fun haverhill_fever_PN : PN; -fun havering_PN : PN; -fun haversian_canal_PN : PN; -fun hawaii_PN : PN; -fun hawaii_time_PN : PN; -fun hawaii_volcanoes_national_park_PN : PN; -fun hawaiian_A : A; -fun hawaiian_PN : PN; -fun hawaiian_islands_PN : PN; -fun hawaiian_guitar_PN : PN; -fun hawick_PN : PN; -fun hawke's_bay_PN : PN; -fun hawking_PN : PN; -fun hawkins_PN : PN; -fun haworth_PN : PN; -fun hawthorne_PN : PN; -fun haydn_PN : PN; -fun hayek_PN : PN; -fun hayes_PN : PN; -fun hayling_PN : PN; -fun hays_PN : PN; -fun haywards_heath_PN : PN; -fun haywood_PN : PN; -fun hazardia_PN : PN; -fun hazel_PN : PN; -fun hazlitt_PN : PN; -fun heanor_PN : PN; -fun hearst_PN : PN; -fun heather_PN : PN; -fun heaven_PN : PN; -fun heaviside_PN : PN; -fun heaviside_layer_PN : PN; -fun hebbel_PN : PN; -fun hebden_royal_PN : PN; -fun hebe_PN : PN; -fun hebei_PN : PN; -fun hebraic_A : A; -fun hebraist_PN : PN; -fun hebrew_PN : PN; -fun hebrew_alphabet_PN : PN; -fun hebrew_lesson_PN : PN; -fun hebrews_PN : PN; -fun hebridean_A : A; -fun hebrides_PN : PN; -fun hecate_PN : PN; -fun hecht_PN : PN; -fun hector_PN : PN; -fun hedeoma_PN : PN; -fun hedera_PN : PN; -fun hedge_end_PN : PN; -fun hedysarum_PN : PN; -fun hefa_PN : PN; -fun hegel_PN : PN; -fun hegelian_A : A; -fun hegelian_PN : PN; -fun hegira_PN : PN; -fun heidegger_PN : PN; -fun heidelberg_man_PN : PN; -fun heidelburg_PN : PN; -fun heimdall_PN : PN; -fun heimlich_maneuver_PN : PN; -fun heinlein_PN : PN; -fun heinz_PN : PN; -fun heisenberg_PN : PN; -fun hejaz_PN : PN; -fun hel_PN : PN; -fun helen_PN : PN; -fun helena_PN : PN; -fun helenium_PN : PN; -fun helensburgh_PN : PN; -fun heliamphora_PN : PN; -fun helichrysum_PN : PN; -fun helicidae_PN : PN; -fun helicteres_PN : PN; -fun heliobacter_PN : PN; -fun heliobacter_pylori_PN : PN; -fun helios_PN : PN; -fun heliothis_PN : PN; -fun heliozoa_PN : PN; -fun helipterum_PN : PN; -fun helix_PN : PN; -fun helix_hortensis_PN : PN; -fun hell_PN : PN; -fun hell's_kitchen_PN : PN; -fun helladic_civilization_PN : PN; -fun helleborus_PN : PN; -fun hellenic_A : A; -fun hellenism_PN : PN; -fun heller_PN : PN; -fun hellman_PN : PN; -fun helmholtz_PN : PN; -fun helminthostachys_PN : PN; -fun heloderma_PN : PN; -fun helodermatidae_PN : PN; -fun heloise_PN : PN; -fun helotiaceae_PN : PN; -fun helotiales_PN : PN; -fun helotium_PN : PN; -fun helsinki_PN : PN; -fun helston_PN : PN; -fun helvella_acetabulum_PN : PN; -fun helvella_crispa_PN : PN; -fun helvella_sulcata_PN : PN; -fun helvellaceae_PN : PN; -fun helwingia_PN : PN; -fun helxine_PN : PN; -fun hemachatus_PN : PN; -fun hemel_hempstead_PN : PN; -fun hemerobiidae_PN : PN; -fun hemerocallidaceae_PN : PN; -fun hemerocallis_PN : PN; -fun hemiascomycetes_PN : PN; -fun hemigalus_PN : PN; -fun hemigrammus_PN : PN; -fun heming_PN : PN; -fun hemingway_PN : PN; -fun hemingwayesque_A : A; -fun hemiprocnidae_PN : PN; -fun hemiptera_PN : PN; -fun hemipteronatus_PN : PN; -fun hemiramphidae_PN : PN; -fun hemitripterus_PN : PN; -fun hemsworth_PN : PN; -fun hendrix_PN : PN; -fun henley_on_thames_PN : PN; -fun henry_PN : PN; -fun henry's_law_PN : PN; -fun henry_i_PN : PN; -fun henry_ii_PN : PN; -fun henry_iii_PN : PN; -fun henry_iv_PN : PN; -fun henry_v_PN : PN; -fun henry_vi_PN : PN; -fun henry_vii_PN : PN; -fun henry_viii_PN : PN; -fun henson_PN : PN; -fun hepaticopsida_PN : PN; -fun hepburn_PN : PN; -fun hephaestus_PN : PN; -fun hepworth_PN : PN; -fun hera_PN : PN; -fun heracleum_PN : PN; -fun heraclitus_PN : PN; -fun herat_PN : PN; -fun herb_PN : PN; -fun herbart_PN : PN; -fun herbert_PN : PN; -fun herculaneum_PN : PN; -fun hercules_PN : PN; -fun hercules'_club_PN : PN; -fun herder_PN : PN; -fun hereford_PN : PN; -fun herero_PN : PN; -fun heritiera_PN : PN; -fun herman_PN : PN; -fun hermannia_PN : PN; -fun hermaphroditus_PN : PN; -fun hermes_PN : PN; -fun hermissenda_PN : PN; -fun hermissenda_crassicornis_PN : PN; -fun hermosillo_PN : PN; -fun hernaria_PN : PN; -fun herne_PN : PN; -fun herne_bay_PN : PN; -fun hero_PN : PN; -fun herod_PN : PN; -fun herodotus_PN : PN; -fun herpestes_PN : PN; -fun herr_PN : PN; -fun herrick_PN : PN; -fun herschel_PN : PN; -fun herschelian_telescope_PN : PN; -fun hershey_PN : PN; -fun hershey_bar_PN : PN; -fun hertford_PN : PN; -fun hertfordshire_PN : PN; -fun hertz_PN : PN; -fun hertzian_A : A; -fun hertzian_wave_PN : PN; -fun herzberg_PN : PN; -fun heshvan_PN : PN; -fun hesiod_PN : PN; -fun hesperides_PN : PN; -fun hesperiphona_PN : PN; -fun hesperis_PN : PN; -fun hess_PN : PN; -fun hesse_PN : PN; -fun hessian_boot_PN : PN; -fun hessian_fly_PN : PN; -fun hestia_PN : PN; -fun heteranthera_PN : PN; -fun heterobasidiomycetes_PN : PN; -fun heterocephalus_PN : PN; -fun heterodon_PN : PN; -fun heterokontophyta_PN : PN; -fun heteromeles_PN : PN; -fun heteromyidae_PN : PN; -fun heteroptera_PN : PN; -fun heteroscelus_PN : PN; -fun heterosomata_PN : PN; -fun heterostraci_PN : PN; -fun heterotheca_PN : PN; -fun heterotrichales_PN : PN; -fun hetton_PN : PN; -fun heuchera_PN : PN; -fun hevea_PN : PN; -fun hevesy_PN : PN; -fun hexagrammidae_PN : PN; -fun hexagrammos_PN : PN; -fun hexalectris_PN : PN; -fun hexamita_PN : PN; -fun hexanchidae_PN : PN; -fun hexanchus_PN : PN; -fun hexham_PN : PN; -fun heyerdahl_PN : PN; -fun heyrovsky_PN : PN; -fun heyse_PN : PN; -fun heysham_PN : PN; -fun heyward_PN : PN; -fun heywood_PN : PN; -fun hezekiah_PN : PN; -fun hiawatha_PN : PN; -fun hibbertia_PN : PN; -fun hibbing_PN : PN; -fun hickock_PN : PN; -fun hidatsa_PN : PN; -fun hieracium_PN : PN; -fun higginson_PN : PN; -fun high_church_PN : PN; -fun high_commission_PN : PN; -fun high_holy_day_PN : PN; -fun high_mass_PN : PN; -fun high_renaissance_PN : PN; -fun high_spen_PN : PN; -fun high_wycombe_PN : PN; -fun higher_national_diploma_PN : PN; -fun highland_PN : PN; -fun highlander_PN : PN; -fun highlands_PN : PN; -fun highness_PN : PN; -fun highway_code_PN : PN; -fun higi_PN : PN; -fun hilary_PN : PN; -fun hilbert_PN : PN; -fun hilbert_space_PN : PN; -fun hilda_PN : PN; -fun hill_PN : PN; -fun hillary_PN : PN; -fun hillel_PN : PN; -fun hillingdon_PN : PN; -fun hilo_PN : PN; -fun himalaya_honeysuckle_PN : PN; -fun himalayan_A : A; -fun himalayan_lilac_PN : PN; -fun himalayan_rhubarb_PN : PN; -fun himalayas_PN : PN; -fun himalayish_PN : PN; -fun himantoglossum_PN : PN; -fun himantopus_PN : PN; -fun himmler_PN : PN; -fun hinault_PN : PN; -fun hinayana_PN : PN; -fun hinayanism_PN : PN; -fun hinayanist_PN : PN; -fun hinckley_PN : PN; -fun hindemith_PN : PN; -fun hindenburg_PN : PN; -fun hindi_PN : PN; -fun hindu_A : A; -fun hindu_PN : PN; -fun hindu_kush_PN : PN; -fun hindu_calendar_PN : PN; -fun hindu_calendar_month_PN : PN; -fun hindu_deity_PN : PN; -fun hinduism_PN : PN; -fun hindustan_PN : PN; -fun hindustani_A : A; -fun hindustani_PN : PN; -fun hipparchus_PN : PN; -fun hippo_PN : PN; -fun hippobosca_PN : PN; -fun hippoboscidae_PN : PN; -fun hippocampus_PN : PN; -fun hippocastanaceae_PN : PN; -fun hippocrates_PN : PN; -fun hippocratic_A : A; -fun hippocratic_oath_PN : PN; -fun hippocrepis_PN : PN; -fun hippodamia_PN : PN; -fun hippodamia_convergens_PN : PN; -fun hippoglossoides_PN : PN; -fun hippoglossus_PN : PN; -fun hippopotamidae_PN : PN; -fun hipposideridae_PN : PN; -fun hipposideros_PN : PN; -fun hippotragus_PN : PN; -fun hipsurus_PN : PN; -fun hirohito_PN : PN; -fun hiroshima_PN : PN; -fun hirschfeld_PN : PN; -fun hirschsprung_PN : PN; -fun hirschsprung's_disease_PN : PN; -fun hirudinea_PN : PN; -fun hirudinidae_PN : PN; -fun hirudo_PN : PN; -fun hirundinidae_PN : PN; -fun hirundo_PN : PN; -fun hispanic_A : A; -fun hispaniola_PN : PN; -fun hispaniolan_A : A; -fun hitchcock_PN : PN; -fun hitchin_PN : PN; -fun hitchings_PN : PN; -fun hitchiti_PN : PN; -fun hitler_PN : PN; -fun hitlerian_A : A; -fun hittite_A : A; -fun hittite_PN : PN; -fun hizb_ut_tahrir_PN : PN; -fun hizballah_PN : PN; -fun hm_PN : PN; -fun hmong_A : A; -fun hmong_PN : PN; -fun hmso_PN : PN; -fun ho_chi_minh_PN : PN; -fun ho_chi_minh_city_PN : PN; -fun hoagland_PN : PN; -fun hobart_PN : PN; -fun hobbes_PN : PN; -fun hobbs_PN : PN; -fun hobson_PN : PN; -fun hobson's_choice_PN : PN; -fun hockley_PN : PN; -fun hoddesdon_PN : PN; -fun hodeida_PN : PN; -fun hodgkin_PN : PN; -fun hodgkin's_disease_PN : PN; -fun hoenir_PN : PN; -fun hofei_PN : PN; -fun hoffa_PN : PN; -fun hoffman_PN : PN; -fun hoffmann_PN : PN; -fun hoffmannsthal_PN : PN; -fun hogan_PN : PN; -fun hogarth_PN : PN; -fun hogg_PN : PN; -fun hogmanay_PN : PN; -fun hohenlinden_PN : PN; -fun hohenzollern_PN : PN; -fun hohenzollern_empire_PN : PN; -fun hoheria_PN : PN; -fun hohhot_PN : PN; -fun hokan_PN : PN; -fun hokkaido_PN : PN; -fun hokusai_PN : PN; -fun holarrhena_PN : PN; -fun holbein_PN : PN; -fun holbrookia_PN : PN; -fun holcus_PN : PN; -fun holland_PN : PN; -fun hollerith_PN : PN; -fun holly_PN : PN; -fun hollywood_A : A; -fun hollywood_PN : PN; -fun holmes_PN : PN; -fun holmfirth_PN : PN; -fun holocaust_PN : PN; -fun holocene_PN : PN; -fun holocentridae_PN : PN; -fun holocentrus_PN : PN; -fun holocentrus_ascensionis_PN : PN; -fun holocephali_PN : PN; -fun holofernes_PN : PN; -fun holothuria_PN : PN; -fun holothuridae_PN : PN; -fun holothuroidea_PN : PN; -fun holy_eucharist_PN : PN; -fun holy_ghost_PN : PN; -fun holy_innocents'_day_PN : PN; -fun holy_order_PN : PN; -fun holy_roller_PN : PN; -fun holy_roman_emperor_PN : PN; -fun holy_roman_empire_PN : PN; -fun holy_saturday_PN : PN; -fun holy_see_PN : PN; -fun holy_sepulcher_PN : PN; -fun holy_week_PN : PN; -fun holy_year_PN : PN; -fun holyhead_PN : PN; -fun homaridae_PN : PN; -fun homarus_PN : PN; -fun home_counties_PN : PN; -fun home_loan_bank_PN : PN; -fun home_office_PN : PN; -fun home_secretary_PN : PN; -fun homer_PN : PN; -fun homeric_A : A; -fun hominidae_PN : PN; -fun hominoidea_PN : PN; -fun homo_erectus_PN : PN; -fun homo_habilis_PN : PN; -fun homo_sapiens_PN : PN; -fun homo_sapiens_sapiens_PN : PN; -fun homo_soloensis_PN : PN; -fun homobasidiomycetes_PN : PN; -fun homogyne_PN : PN; -fun homona_PN : PN; -fun homoptera_PN : PN; -fun homyel_PN : PN; -fun hon_PN : PN; -fun honduran_A : A; -fun honduran_PN : PN; -fun honduran_monetary_unit_PN : PN; -fun honduras_PN : PN; -fun honduras_mahogany_PN : PN; -fun honduras_rosewood_PN : PN; -fun honegger_PN : PN; -fun hong_kong_PN : PN; -fun hong_kong_dollar_PN : PN; -fun honiara_PN : PN; -fun honiton_PN : PN; -fun honolulu_PN : PN; -fun honshu_PN : PN; -fun hoo_PN : PN; -fun hook_of_holland_PN : PN; -fun hooke_PN : PN; -fun hooke's_law_PN : PN; -fun hooker_PN : PN; -fun hooker's_green_PN : PN; -fun hooker's_onion_PN : PN; -fun hooker's_orchid_PN : PN; -fun hooray_henry_PN : PN; -fun hoover_PN : PN; -fun hoover_dam_PN : PN; -fun hope_PN : PN; -fun hopi_PN : PN; -fun hopkins_PN : PN; -fun hopkinson_PN : PN; -fun horace_PN : PN; -fun horatian_ode_PN : PN; -fun horatio_hornblower_PN : PN; -fun hordeum_PN : PN; -fun horley_PN : PN; -fun horne_PN : PN; -fun horneophyton_PN : PN; -fun horner's_syndrome_PN : PN; -fun horney_PN : PN; -fun hornsea_PN : PN; -fun horowitz_PN : PN; -fun horsham_PN : PN; -fun horsley_PN : PN; -fun horta_PN : PN; -fun horus_PN : PN; -fun horwich_PN : PN; -fun hosea_PN : PN; -fun hosp_PN : PN; -fun host_PN : PN; -fun hosta_PN : PN; -fun hostaceae_PN : PN; -fun hot_springs_PN : PN; -fun hot_springs_national_park_PN : PN; -fun hotei_PN : PN; -fun hoth_PN : PN; -fun hottentot_bread_PN : PN; -fun hottentot_fig_PN : PN; -fun hottonia_PN : PN; -fun houdini_PN : PN; -fun houghton_PN : PN; -fun hounslow_PN : PN; -fun housatonic_PN : PN; -fun house_of_burgesses_PN : PN; -fun house_of_commons_PN : PN; -fun house_of_lords_PN : PN; -fun houses_of_parliament_PN : PN; -fun housman_PN : PN; -fun houston_PN : PN; -fun houttuynia_PN : PN; -fun houyhnhnm_PN : PN; -fun houyhnhnms_PN : PN; -fun hove_PN : PN; -fun howard_PN : PN; -fun howe_PN : PN; -fun howells_PN : PN; -fun hoylake_PN : PN; -fun hoyland_nether_PN : PN; -fun hoyle_PN : PN; -fun hq_PN : PN; -fun hrh_PN : PN; -fun huainaputina_PN : PN; -fun huambo_PN : PN; -fun huang_he_PN : PN; -fun huascaran_PN : PN; -fun huayna_capac_PN : PN; -fun hubbard_PN : PN; -fun hubble_PN : PN; -fun hubble's_constant_PN : PN; -fun hubble's_law_PN : PN; -fun hubel_PN : PN; -fun hubert_PN : PN; -fun huckleberry_finn_PN : PN; -fun hucknall_PN : PN; -fun huddersfield_PN : PN; -fun hudson_PN : PN; -fun hudson_bay_PN : PN; -fun hudson_river_school_PN : PN; -fun hudson_bay_collared_lemming_PN : PN; -fun hudsonia_PN : PN; -fun hudsonian_godwit_PN : PN; -fun huggins_PN : PN; -fun hugh_PN : PN; -fun hughes_PN : PN; -fun hughie_PN : PN; -fun hugo_PN : PN; -fun hugoesque_A : A; -fun hugueninia_PN : PN; -fun huguenot_PN : PN; -fun huhehot_PN : PN; -fun hull_PN : PN; -fun hulsea_PN : PN; -fun human_genome_project_PN : PN; -fun humber_PN : PN; -fun humber_bridge_PN : PN; -fun humberside_PN : PN; -fun humberston_PN : PN; -fun humboldt_PN : PN; -fun hume_PN : PN; -fun humperdinck_PN : PN; -fun humphrey_PN : PN; -fun humpty_dumpty_PN : PN; -fun humulus_PN : PN; -fun humvee_PN : PN; -fun hun_PN : PN; -fun hunan_PN : PN; -fun hundred_years'_war_PN : PN; -fun hungarian_A : A; -fun hungarian_PN : PN; -fun hungarian_lilac_PN : PN; -fun hungarian_monetary_unit_PN : PN; -fun hungarian_partridge_PN : PN; -fun hungarian_sauce_PN : PN; -fun hungary_PN : PN; -fun hunkpapa_PN : PN; -fun hunnemannia_PN : PN; -fun hunt_PN : PN; -fun huntingdon_PN : PN; -fun huntingdon_elm_PN : PN; -fun huntington_PN : PN; -fun huntington's_chorea_PN : PN; -fun huntsville_PN : PN; -fun hupa_PN : PN; -fun hurler's_syndrome_PN : PN; -fun hurok_PN : PN; -fun hurstpierpoint_PN : PN; -fun huss_PN : PN; -fun hussein_PN : PN; -fun husserl_PN : PN; -fun hussite_PN : PN; -fun huston_PN : PN; -fun hutchins_PN : PN; -fun hutchinson_PN : PN; -fun hutton_PN : PN; -fun hutu_PN : PN; -fun huxley_PN : PN; -fun huxleyan_A : A; -fun huygens_PN : PN; -fun hwainan_PN : PN; -fun hyacinthaceae_PN : PN; -fun hyacinthoides_PN : PN; -fun hyades_PN : PN; -fun hyaenidae_PN : PN; -fun hyalophora_PN : PN; -fun hyalosperma_PN : PN; -fun hyalospongiae_PN : PN; -fun hybanthus_PN : PN; -fun hyde_PN : PN; -fun hyderabad_PN : PN; -fun hydnaceae_PN : PN; -fun hydnocarpus_PN : PN; -fun hydnocarpus_laurifolia_PN : PN; -fun hydnoraceae_PN : PN; -fun hydnum_PN : PN; -fun hydra_PN : PN; -fun hydrangeaceae_PN : PN; -fun hydrastis_PN : PN; -fun hydrobates_PN : PN; -fun hydrobatidae_PN : PN; -fun hydrocharis_PN : PN; -fun hydrocharitaceae_PN : PN; -fun hydrochoeridae_PN : PN; -fun hydrochoerus_PN : PN; -fun hydrodamalis_PN : PN; -fun hydromantes_PN : PN; -fun hydromyinae_PN : PN; -fun hydromys_PN : PN; -fun hydrophidae_PN : PN; -fun hydrophyllaceae_PN : PN; -fun hydrophyllum_PN : PN; -fun hydrozoa_PN : PN; -fun hydrus_PN : PN; -fun hyemoschus_PN : PN; -fun hygeia_PN : PN; -fun hygrocybe_PN : PN; -fun hygrocybe_acutoconica_PN : PN; -fun hygrophoraceae_PN : PN; -fun hygrophorus_PN : PN; -fun hygrophorus_borealis_PN : PN; -fun hygrophorus_caeruleus_PN : PN; -fun hygrophorus_inocybiformis_PN : PN; -fun hygrophorus_kauffmanii_PN : PN; -fun hygrophorus_marzuolus_PN : PN; -fun hygrophorus_purpurascens_PN : PN; -fun hygrophorus_russula_PN : PN; -fun hygrophorus_sordidus_PN : PN; -fun hygrophorus_tennesseensis_PN : PN; -fun hygrophorus_turundus_PN : PN; -fun hygrotrama_PN : PN; -fun hygrotrama_foetens_PN : PN; -fun hyla_PN : PN; -fun hylactophryne_PN : PN; -fun hylidae_PN : PN; -fun hylobates_PN : PN; -fun hylobatidae_PN : PN; -fun hylocereus_PN : PN; -fun hylocichla_PN : PN; -fun hylophylax_PN : PN; -fun hymen_PN : PN; -fun hymenaea_PN : PN; -fun hymenanthera_PN : PN; -fun hymenogastrales_PN : PN; -fun hymenomycetes_PN : PN; -fun hymenophyllaceae_PN : PN; -fun hymenophyllum_PN : PN; -fun hymenoptera_PN : PN; -fun hynerpeton_PN : PN; -fun hynerpeton_bassetti_PN : PN; -fun hyoscyamus_PN : PN; -fun hypatia_PN : PN; -fun hypentelium_PN : PN; -fun hyperborean_PN : PN; -fun hypericaceae_PN : PN; -fun hypericum_PN : PN; -fun hyperion_PN : PN; -fun hypermastigina_PN : PN; -fun hyperoglyphe_PN : PN; -fun hyperoodon_PN : PN; -fun hyphantria_PN : PN; -fun hyphantria_cunea_PN : PN; -fun hypnos_PN : PN; -fun hypochaeris_PN : PN; -fun hypocreaceae_PN : PN; -fun hypocreales_PN : PN; -fun hypoderma_PN : PN; -fun hypopachus_PN : PN; -fun hypopitys_PN : PN; -fun hypoxidaceae_PN : PN; -fun hypoxis_PN : PN; -fun hypsiglena_PN : PN; -fun hypsiprymnodon_PN : PN; -fun hyracoidea_PN : PN; -fun hyracotherium_PN : PN; -fun hyssopus_PN : PN; -fun hystricidae_PN : PN; -fun hystricomorpha_PN : PN; -fun hythe_PN : PN; -fun i_PN : PN; -fun id_PN : PN; -fun ii_chronicles_PN : PN; -fun ii_esdras_PN : PN; -fun ii_kings_PN : PN; -fun ii_maccabees_PN : PN; -fun ii_samuel_PN : PN; -fun ijssel_PN : PN; -fun ijsselmeer_PN : PN; -fun iou_PN : PN; -fun i_chronicles_PN : PN; -fun i_esdra_PN : PN; -fun i_kings_PN : PN; -fun i_maccabees_PN : PN; -fun i_samuel_PN : PN; -fun i_beam_PN : PN; -fun iago_PN : PN; -fun ian_PN : PN; -fun iapetus_PN : PN; -fun ibadan_PN : PN; -fun iberia_PN : PN; -fun iberian_A : A; -fun iberian_PN : PN; -fun iberian_peninsula_PN : PN; -fun iberis_PN : PN; -fun ibero_mesornis_PN : PN; -fun ibert_PN : PN; -fun ibid_PN : PN; -fun ibizan_hound_PN : PN; -fun ibsen_PN : PN; -fun ibsenian_A : A; -fun icarus_PN : PN; -fun iceland_PN : PN; -fun iceland_moss_PN : PN; -fun iceland_poppy_PN : PN; -fun iceland_spar_PN : PN; -fun icelander_PN : PN; -fun icelandic_A : A; -fun icelandic_PN : PN; -fun icelandic_krona_PN : PN; -fun icelandic_monetary_unit_PN : PN; -fun icelandic_speaking_A : A; -fun ichneumonidae_PN : PN; -fun ichthyosauria_PN : PN; -fun ichthyosauridae_PN : PN; -fun ichyostega_PN : PN; -fun ictalurus_PN : PN; -fun icteria_PN : PN; -fun icteridae_PN : PN; -fun icterus_PN : PN; -fun ictiobus_PN : PN; -fun ictodosauria_PN : PN; -fun ictonyx_PN : PN; -fun id_al_adha_PN : PN; -fun id_al_fitr_PN : PN; -fun ida_PN : PN; -fun idaho_PN : PN; -fun idaho_falls_PN : PN; -fun idahoan_PN : PN; -fun idem_PN : PN; -fun identikit_PN : PN; -fun idiom_neutral_PN : PN; -fun iditarod_PN : PN; -fun iditarod_trail_PN : PN; -fun ido_PN : PN; -fun idun_PN : PN; -fun ie_PN : PN; -fun igbo_PN : PN; -fun igigi_PN : PN; -fun iglesias_PN : PN; -fun ignatius_PN : PN; -fun ignatius_of_loyola_PN : PN; -fun iguanidae_PN : PN; -fun iguanodontidae_PN : PN; -fun iguazu_PN : PN; -fun ile_st_louis_PN : PN; -fun ile_de_france_PN : PN; -fun ilex_PN : PN; -fun ilfracombe_PN : PN; -fun iliad_PN : PN; -fun iliamna_PN : PN; -fun ilkeston_PN : PN; -fun ilkley_PN : PN; -fun illampu_PN : PN; -fun illecebrum_PN : PN; -fun illicium_PN : PN; -fun illimani_PN : PN; -fun illinois_PN : PN; -fun illinois_river_PN : PN; -fun illinoisan_PN : PN; -fun illyria_PN : PN; -fun illyrian_PN : PN; -fun immaculate_conception_PN : PN; -fun immigration_and_naturalization_service_PN : PN; -fun immingham_PN : PN; -fun impressionism_PN : PN; -fun inachis_PN : PN; -fun inanna_PN : PN; -fun inauguration_day_PN : PN; -fun inc_PN : PN; -fun inca_PN : PN; -fun incan_A : A; -fun incarnation_PN : PN; -fun inchon_PN : PN; -fun incl_PN : PN; -fun inconel_PN : PN; -fun independence_PN : PN; -fun independence_day_PN : PN; -fun independence_hall_PN : PN; -fun india_PN : PN; -fun india_ink_PN : PN; -fun india_rubber_tree_PN : PN; -fun indiaman_PN : PN; -fun indian_A : A; -fun indian_PN : PN; -fun indian_mutiny_PN : PN; -fun indian_ocean_PN : PN; -fun indian_agent_PN : PN; -fun indian_beech_PN : PN; -fun indian_blackwood_PN : PN; -fun indian_buffalo_PN : PN; -fun indian_button_fern_PN : PN; -fun indian_chief_PN : PN; -fun indian_club_PN : PN; -fun indian_cobra_PN : PN; -fun indian_coral_tree_PN : PN; -fun indian_crocus_PN : PN; -fun indian_elephant_PN : PN; -fun indian_giver_PN : PN; -fun indian_hemp_PN : PN; -fun indian_lettuce_PN : PN; -fun indian_madder_PN : PN; -fun indian_mallow_PN : PN; -fun indian_monetary_unit_PN : PN; -fun indian_mongoose_PN : PN; -fun indian_paintbrush_PN : PN; -fun indian_pipe_PN : PN; -fun indian_plantain_PN : PN; -fun indian_poke_PN : PN; -fun indian_python_PN : PN; -fun indian_race_PN : PN; -fun indian_rat_snake_PN : PN; -fun indian_rattlebox_PN : PN; -fun indian_red_PN : PN; -fun indian_reservation_PN : PN; -fun indian_rhinoceros_PN : PN; -fun indian_rhododendron_PN : PN; -fun indian_rupee_PN : PN; -fun indian_summer_PN : PN; -fun indian_tobacco_PN : PN; -fun indian_trail_PN : PN; -fun indiana_PN : PN; -fun indianan_PN : PN; -fun indianapolis_PN : PN; -fun indic_PN : PN; -fun indicatoridae_PN : PN; -fun indies_PN : PN; -fun indigirka_PN : PN; -fun indigofera_PN : PN; -fun indo_european_A : A; -fun indo_european_PN : PN; -fun indo_iranian_PN : PN; -fun indochina_PN : PN; -fun indonesia_PN : PN; -fun indonesian_A : A; -fun indonesian_PN : PN; -fun indonesian_borneo_PN : PN; -fun indonesian_monetary_unit_PN : PN; -fun indore_PN : PN; -fun indra_PN : PN; -fun indriidae_PN : PN; -fun indus_PN : PN; -fun indus_civilization_PN : PN; -fun industrial_revolution_PN : PN; -fun industrial_workers_of_the_world_PN : PN; -fun infusoria_PN : PN; -fun ingatestone_PN : PN; -fun inge_PN : PN; -fun ingres_PN : PN; -fun ingrian_PN : PN; -fun ingrid_PN : PN; -fun inland_passage_PN : PN; -fun inland_revenue_PN : PN; -fun inland_sea_PN : PN; -fun inner_hebrides_PN : PN; -fun inner_light_PN : PN; -fun inner_mongolia_PN : PN; -fun innocent_iii_PN : PN; -fun innocent_viii_PN : PN; -fun innocent_xi_PN : PN; -fun innocent_xii_PN : PN; -fun innsbruck_PN : PN; -fun inquisition_PN : PN; -fun inquisitor_PN : PN; -fun insecta_PN : PN; -fun insectivora_PN : PN; -fun insessores_PN : PN; -fun inspector_maigret_PN : PN; -fun inst_PN : PN; -fun intelligence_community_PN : PN; -fun intelnet_PN : PN; -fun interlaken_PN : PN; -fun interlingua_PN : PN; -fun internal_revenue_service_PN : PN; -fun international_PN : PN; -fun international_atomic_energy_agency_PN : PN; -fun international_bank_for_reconstruction_and_development_PN : PN; -fun international_civil_aviation_organization_PN : PN; -fun international_court_of_justice_PN : PN; -fun international_development_association_PN : PN; -fun international_finance_corporation_PN : PN; -fun international_grandmaster_PN : PN; -fun international_islamic_front_for_jihad_against_jews_and_crusaders_PN : PN; -fun international_labor_organization_PN : PN; -fun international_maritime_organization_PN : PN; -fun international_monetary_fund_PN : PN; -fun international_relations_and_security_network_PN : PN; -fun international_wanted_notice_PN : PN; -fun internationale_PN : PN; -fun internet_explorer_PN : PN; -fun interpol_PN : PN; -fun interstate_commerce_commission_PN : PN; -fun invar_PN : PN; -fun inverkeithing_PN : PN; -fun inverness_PN : PN; -fun inverurie_PN : PN; -fun io_PN : PN; -fun ionesco_PN : PN; -fun ionia_PN : PN; -fun ionian_A : A; -fun ionian_PN : PN; -fun ionian_sea_PN : PN; -fun ionic_A : A; -fun ionic_order_PN : PN; -fun iowa_PN : PN; -fun iowa_crab_PN : PN; -fun iowan_PN : PN; -fun iphigenia_PN : PN; -fun ipomoea_PN : PN; -fun ipsus_PN : PN; -fun ipswich_PN : PN; -fun iran_PN : PN; -fun iran_iraq_war_PN : PN; -fun irani_PN : PN; -fun iranian_A : A; -fun iranian_PN : PN; -fun iranian_dinar_PN : PN; -fun iranian_monetary_unit_PN : PN; -fun iranian_rial_PN : PN; -fun iraq_PN : PN; -fun iraqi_A : A; -fun iraqi_PN : PN; -fun iraqi_intelligence_service_PN : PN; -fun iraqi_kurdistan_PN : PN; -fun iraqi_national_congress_PN : PN; -fun iraqi_dinar_PN : PN; -fun iraqi_monetary_unit_PN : PN; -fun ireland_PN : PN; -fun irena_PN : PN; -fun irenaeus_PN : PN; -fun irene_PN : PN; -fun irenidae_PN : PN; -fun iresine_PN : PN; -fun iridaceae_PN : PN; -fun iridoprocne_PN : PN; -fun iris_PN : PN; -fun irish_A : A; -fun irish_PN : PN; -fun irish_national_liberation_army_PN : PN; -fun irish_republican_army_PN : PN; -fun irish_sea_PN : PN; -fun irish_coffee_PN : PN; -fun irish_monetary_unit_PN : PN; -fun irish_moss_PN : PN; -fun irish_person_PN : PN; -fun irish_pound_PN : PN; -fun irish_setter_PN : PN; -fun irish_soda_bread_PN : PN; -fun irish_stew_PN : PN; -fun irish_terrier_PN : PN; -fun irish_water_spaniel_PN : PN; -fun irish_wolfhound_PN : PN; -fun irishman_PN : PN; -fun irishwoman_PN : PN; -fun iron_age_PN : PN; -fun iroquoian_PN : PN; -fun iroquois_PN : PN; -fun iroquois_league_PN : PN; -fun irrawaddy_PN : PN; -fun irthlingborough_PN : PN; -fun irtish_PN : PN; -fun irula_PN : PN; -fun irvine_PN : PN; -fun irving_PN : PN; -fun irvingia_PN : PN; -fun isaac_PN : PN; -fun isabel_PN : PN; -fun isabella_PN : PN; -fun isaiah_PN : PN; -fun isatis_PN : PN; -fun ischia_PN : PN; -fun ischigualastia_PN : PN; -fun isere_PN : PN; -fun iseult_PN : PN; -fun isfahan_PN : PN; -fun isherwood_PN : PN; -fun ishmael_PN : PN; -fun ishtar_PN : PN; -fun isis_PN : PN; -fun islam_PN : PN; -fun islamabad_PN : PN; -fun islamic_army_of_aden_PN : PN; -fun islamic_great_eastern_raiders_front_PN : PN; -fun islamic_group_of_uzbekistan_PN : PN; -fun islamic_calendar_PN : PN; -fun islamic_calendar_month_PN : PN; -fun islamism_PN : PN; -fun islamist_PN : PN; -fun islamophobia_PN : PN; -fun islay_PN : PN; -fun isle_royal_national_park_PN : PN; -fun isle_of_skye_PN : PN; -fun islington_PN : PN; -fun ismaili_A : A; -fun ismaili_PN : PN; -fun ismailism_PN : PN; -fun isobel_PN : PN; -fun isocrates_PN : PN; -fun isoetaceae_PN : PN; -fun isoetales_PN : PN; -fun isoetes_PN : PN; -fun isopoda_PN : PN; -fun isoptera_PN : PN; -fun isopyrum_PN : PN; -fun isospondyli_PN : PN; -fun israel_PN : PN; -fun israeli_A : A; -fun israeli_PN : PN; -fun israeli_defense_force_PN : PN; -fun israeli_monetary_unit_PN : PN; -fun israelite_PN : PN; -fun issachar_PN : PN; -fun issus_PN : PN; -fun istanbul_PN : PN; -fun isthmian_games_PN : PN; -fun isthmus_of_corinth_PN : PN; -fun isthmus_of_kra_PN : PN; -fun isthmus_of_panama_PN : PN; -fun isthmus_of_suez_PN : PN; -fun isthmus_of_tehuantepec_PN : PN; -fun istiophoridae_PN : PN; -fun istiophorus_PN : PN; -fun isuridae_PN : PN; -fun isurus_PN : PN; -fun italian_A : A; -fun italian_PN : PN; -fun italian_peninsula_PN : PN; -fun italian_renaissance_PN : PN; -fun italian_bee_PN : PN; -fun italian_bread_PN : PN; -fun italian_cypress_PN : PN; -fun italian_dressing_PN : PN; -fun italian_greyhound_PN : PN; -fun italian_honeysuckle_PN : PN; -fun italian_monetary_unit_PN : PN; -fun italian_parsley_PN : PN; -fun italian_region_PN : PN; -fun italian_ryegrass_PN : PN; -fun italian_speaking_A : A; -fun italic_A : A; -fun italic_PN : PN; -fun italy_PN : PN; -fun ithaca_PN : PN; -fun ivan_PN : PN; -fun ivan_iii_PN : PN; -fun ivan_iv_PN : PN; -fun ivanov_PN : PN; -fun iver_PN : PN; -fun ives_PN : PN; -fun ivor_PN : PN; -fun ivory_coast_PN : PN; -fun ivory_coast_franc_PN : PN; -fun ivry_PN : PN; -fun ivy_PN : PN; -fun ivy_league_PN : PN; -fun ivy_leaguer_PN : PN; -fun iwo_PN : PN; -fun iwo_jima_PN : PN; -fun ixia_PN : PN; -fun ixobrychus_PN : PN; -fun ixodes_PN : PN; -fun ixodes_dammini_PN : PN; -fun ixodes_dentatus_PN : PN; -fun ixodes_neotomae_PN : PN; -fun ixodes_pacificus_PN : PN; -fun ixodes_persulcatus_PN : PN; -fun ixodes_scapularis_PN : PN; -fun ixodes_spinipalpis_PN : PN; -fun ixodidae_PN : PN; -fun iyar_PN : PN; -fun izanagi_PN : PN; -fun izanami_PN : PN; -fun izmir_PN : PN; -fun j_PN : PN; -fun j_particle_PN : PN; -fun jabalpur_PN : PN; -fun jack_PN : PN; -fun jack_frost_PN : PN; -fun jack_of_all_trades_PN : PN; -fun jack_the_ripper_PN : PN; -fun jackie_PN : PN; -fun jackson_PN : PN; -fun jacksonia_PN : PN; -fun jacksonian_A : A; -fun jacksonian_PN : PN; -fun jacksonian_epilepsy_PN : PN; -fun jacksonville_PN : PN; -fun jacob_PN : PN; -fun jacob's_ladder_PN : PN; -fun jacob's_rod_PN : PN; -fun jacobean_A : A; -fun jacobean_PN : PN; -fun jacobean_lily_PN : PN; -fun jacobi_PN : PN; -fun jacobin_PN : PN; -fun jacobinic_A : A; -fun jacobinism_PN : PN; -fun jacobite_PN : PN; -fun jacobs_PN : PN; -fun jacquard_PN : PN; -fun jacquard_loom_PN : PN; -fun jacqueline_PN : PN; -fun jacquemier's_sign_PN : PN; -fun jacquinia_PN : PN; -fun jaculus_PN : PN; -fun jaculus_jaculus_PN : PN; -fun jaffa_PN : PN; -fun jaffa_orange_PN : PN; -fun jaffar_PN : PN; -fun jafnea_semitosta_PN : PN; -fun jagannath_PN : PN; -fun jagger_PN : PN; -fun jain_A : A; -fun jainism_PN : PN; -fun jainist_PN : PN; -fun jaipur_PN : PN; -fun jaish_i_mohammed_PN : PN; -fun jakarta_PN : PN; -fun jake_PN : PN; -fun jakobson_PN : PN; -fun jalalabad_PN : PN; -fun jamaat_ul_fuqra_PN : PN; -fun jamaica_PN : PN; -fun jamaica_dogwood_PN : PN; -fun jamaica_honeysuckle_PN : PN; -fun jamaica_quassia_PN : PN; -fun jamaica_rum_PN : PN; -fun jamaican_A : A; -fun jamaican_PN : PN; -fun jamaican_cherry_PN : PN; -fun jamaican_dollar_PN : PN; -fun jambos_PN : PN; -fun james_PN : PN; -fun james_bay_PN : PN; -fun jamesian_A : A; -fun jamesonia_PN : PN; -fun jamestown_PN : PN; -fun jamison_PN : PN; -fun jan_PN : PN; -fun jane_PN : PN; -fun jane_doe_PN : PN; -fun janet_PN : PN; -fun janice_PN : PN; -fun janie_PN : PN; -fun janissary_PN : PN; -fun jansen_PN : PN; -fun jansenism_PN : PN; -fun jansenist_PN : PN; -fun january_PN : PN; -fun janus_PN : PN; -fun janus_faced_A : A; -fun jap_PN : PN; -fun japan_PN : PN; -fun japan_trench_PN : PN; -fun japan_allspice_PN : PN; -fun japan_current_PN : PN; -fun japan_wax_PN : PN; -fun japanese_A : A; -fun japanese_PN : PN; -fun japanese_red_army_PN : PN; -fun japanese_angelica_tree_PN : PN; -fun japanese_apricot_PN : PN; -fun japanese_banana_PN : PN; -fun japanese_barberry_PN : PN; -fun japanese_beech_PN : PN; -fun japanese_beetle_PN : PN; -fun japanese_bittersweet_PN : PN; -fun japanese_black_pine_PN : PN; -fun japanese_brome_PN : PN; -fun japanese_cedar_PN : PN; -fun japanese_chestnut_PN : PN; -fun japanese_crab_PN : PN; -fun japanese_deer_PN : PN; -fun japanese_deity_PN : PN; -fun japanese_flowering_cherry_PN : PN; -fun japanese_honeysuckle_PN : PN; -fun japanese_hop_PN : PN; -fun japanese_iris_PN : PN; -fun japanese_lilac_PN : PN; -fun japanese_linden_PN : PN; -fun japanese_maple_PN : PN; -fun japanese_millet_PN : PN; -fun japanese_monetary_unit_PN : PN; -fun japanese_morning_glory_PN : PN; -fun japanese_oak_PN : PN; -fun japanese_oyster_PN : PN; -fun japanese_pagoda_tree_PN : PN; -fun japanese_persimmon_PN : PN; -fun japanese_pink_PN : PN; -fun japanese_plum_PN : PN; -fun japanese_poinsettia_PN : PN; -fun japanese_privet_PN : PN; -fun japanese_quince_PN : PN; -fun japanese_red_pine_PN : PN; -fun japanese_snowbell_PN : PN; -fun japanese_spaniel_PN : PN; -fun japanese_speaking_A : A; -fun japanese_spurge_PN : PN; -fun japanese_stranglehold_PN : PN; -fun japanese_tree_lilac_PN : PN; -fun japanese_umbrella_pine_PN : PN; -fun japanese_wistaria_PN : PN; -fun japanese_yew_PN : PN; -fun japheth_PN : PN; -fun jarrell_PN : PN; -fun jarrow_PN : PN; -fun jarvik_heart_PN : PN; -fun jasminum_PN : PN; -fun jason_PN : PN; -fun jaspers_PN : PN; -fun jassidae_PN : PN; -fun jat_PN : PN; -fun jatropha_PN : PN; -fun java_PN : PN; -fun java_man_PN : PN; -fun java_sparrow_PN : PN; -fun javanese_A : A; -fun javanese_PN : PN; -fun javanthropus_PN : PN; -fun javelle_water_PN : PN; -fun jaws_of_life_PN : PN; -fun jay_PN : PN; -fun jayshullah_PN : PN; -fun jazz_age_PN : PN; -fun jc_PN : PN; -fun jean_PN : PN; -fun jeanie_PN : PN; -fun jeanne_d'arc_PN : PN; -fun jebel_musa_PN : PN; -fun jedburgh_PN : PN; -fun jeddah_PN : PN; -fun jeff_PN : PN; -fun jeffers_PN : PN; -fun jefferson_PN : PN; -fun jefferson_city_PN : PN; -fun jefferson_davis'_birthday_PN : PN; -fun jeffersonian_A : A; -fun jeffersonian_PN : PN; -fun jeffrey_PN : PN; -fun jeffrey_pine_PN : PN; -fun jehovah_PN : PN; -fun jehovah's_witness_PN : PN; -fun jehovah's_witnesses_PN : PN; -fun jekyll_and_hyde_PN : PN; -fun jemaah_islamiyah_PN : PN; -fun jena_PN : PN; -fun jenner_PN : PN; -fun jennifer_PN : PN; -fun jenny_PN : PN; -fun jensen_PN : PN; -fun jeremiah_PN : PN; -fun jeremy_PN : PN; -fun jerez_PN : PN; -fun jericho_PN : PN; -fun jeroboam_PN : PN; -fun jerome_PN : PN; -fun jerry_PN : PN; -fun jersey_PN : PN; -fun jersey_city_PN : PN; -fun jersey_elm_PN : PN; -fun jersey_knapweed_PN : PN; -fun jerusalem_PN : PN; -fun jerusalem_warriors_PN : PN; -fun jerusalem_artichoke_PN : PN; -fun jerusalem_cherry_PN : PN; -fun jerusalem_cross_PN : PN; -fun jerusalem_oak_PN : PN; -fun jerusalem_sage_PN : PN; -fun jerusalem_thorn_PN : PN; -fun jespersen_PN : PN; -fun jess_PN : PN; -fun jessica_PN : PN; -fun jessie_PN : PN; -fun jesuit_PN : PN; -fun jesuitical_A : A; -fun jesuitism_PN : PN; -fun jesus_PN : PN; -fun jeth_PN : PN; -fun jevons_PN : PN; -fun jew_PN : PN; -fun jew's_ear_PN : PN; -fun jewbush_PN : PN; -fun jewess_PN : PN; -fun jewish_A : A; -fun jewish_calendar_PN : PN; -fun jewish_calendar_month_PN : PN; -fun jewish_holy_day_PN : PN; -fun jewish_rye_bread_PN : PN; -fun jewison_PN : PN; -fun jewry_PN : PN; -fun jezebel_PN : PN; -fun jihadist_PN : PN; -fun jill_PN : PN; -fun jim_PN : PN; -fun jimenez_PN : PN; -fun jimenez_de_cisneros_PN : PN; -fun jimmy_PN : PN; -fun jinghpo_PN : PN; -fun jinja_PN : PN; -fun jinnah_PN : PN; -fun jirga_PN : PN; -fun jnr_PN : PN; -fun jo_PN : PN; -fun joachim_PN : PN; -fun joan_PN : PN; -fun joanie_PN : PN; -fun joann_PN : PN; -fun joanna_PN : PN; -fun joanne_PN : PN; -fun joao_pessoa_PN : PN; -fun job_PN : PN; -fun job's_comforter_PN : PN; -fun job's_tears_PN : PN; -fun jocasta_PN : PN; -fun jocelyn_PN : PN; -fun joe_PN : PN; -fun joe_pye_weed_PN : PN; -fun joel_PN : PN; -fun joey_PN : PN; -fun joffre_PN : PN; -fun joffrey_PN : PN; -fun johannesburg_PN : PN; -fun john_PN : PN; -fun john_chrysostom_PN : PN; -fun john_doe_PN : PN; -fun john_dory_PN : PN; -fun john_henry_PN : PN; -fun john_paul_i_PN : PN; -fun john_paul_ii_PN : PN; -fun john_xxiii_PN : PN; -fun john_of_gaunt_PN : PN; -fun john_the_baptist_PN : PN; -fun johnny_PN : PN; -fun johns_PN : PN; -fun johns_hopkins_PN : PN; -fun johnson_PN : PN; -fun johnson_city_PN : PN; -fun johnson_grass_PN : PN; -fun johnston_PN : PN; -fun johnstone_PN : PN; -fun joint_chiefs_of_staff_PN : PN; -fun joint_direct_attack_munition_PN : PN; -fun joliot_PN : PN; -fun joliot_curie_PN : PN; -fun jolliet_PN : PN; -fun jolson_PN : PN; -fun jonah_PN : PN; -fun jonah_crab_PN : PN; -fun jonathan_PN : PN; -fun jones_PN : PN; -fun jones'_penstemon_PN : PN; -fun jonesboro_PN : PN; -fun jong_PN : PN; -fun jonson_PN : PN; -fun joplin_PN : PN; -fun jordan_PN : PN; -fun jordan_almond_PN : PN; -fun jordanella_PN : PN; -fun jordanian_A : A; -fun jordanian_PN : PN; -fun jordanian_dinar_PN : PN; -fun jordanian_monetary_unit_PN : PN; -fun joseph_PN : PN; -fun josephine_PN : PN; -fun josephus_PN : PN; -fun josh_PN : PN; -fun joshua_PN : PN; -fun joshua_tree_PN : PN; -fun jotun_PN : PN; -fun joule_PN : PN; -fun jove_PN : PN; -fun jovian_A : A; -fun jovian_planet_PN : PN; -fun jowett_PN : PN; -fun joy_PN : PN; -fun joyce_PN : PN; -fun juan_carlos_PN : PN; -fun judah_PN : PN; -fun judaic_A : A; -fun judaica_PN : PN; -fun judaism_PN : PN; -fun judas_PN : PN; -fun judas_maccabaeus_PN : PN; -fun judas_tree_PN : PN; -fun jude_PN : PN; -fun judea_PN : PN; -fun judeo_christian_A : A; -fun judeo_spanish_PN : PN; -fun judges_PN : PN; -fun judgment_day_PN : PN; -fun judith_PN : PN; -fun judy_PN : PN; -fun juggernaut_PN : PN; -fun juglandaceae_PN : PN; -fun juglandales_PN : PN; -fun juglans_PN : PN; -fun jul_PN : PN; -fun julia_PN : PN; -fun julian_A : A; -fun julian_PN : PN; -fun julian_calendar_PN : PN; -fun julie_PN : PN; -fun juliet_PN : PN; -fun july_PN : PN; -fun jumada_i_PN : PN; -fun jumada_ii_PN : PN; -fun jun_PN : PN; -fun juncaceae_PN : PN; -fun juncus_PN : PN; -fun jund_ul_islam_PN : PN; -fun june_PN : PN; -fun june_beetle_PN : PN; -fun juneau_PN : PN; -fun juneberry_PN : PN; -fun jung_PN : PN; -fun jungermanniaceae_PN : PN; -fun jungermanniales_PN : PN; -fun jungian_A : A; -fun jungian_PN : PN; -fun jungian_psychology_PN : PN; -fun junin_virus_PN : PN; -fun junior_PN : PN; -fun juniperus_PN : PN; -fun junker_PN : PN; -fun junkers_PN : PN; -fun juno_PN : PN; -fun junoesque_A : A; -fun jupiter_PN : PN; -fun jupiter's_beard_PN : PN; -fun jupiter_fidius_PN : PN; -fun jupiter_fulgur_PN : PN; -fun jupiter_optimus_maximus_PN : PN; -fun jupiter_pluvius_PN : PN; -fun jupiter_tonans_PN : PN; -fun jurassic_A : A; -fun jurassic_PN : PN; -fun jussieu_PN : PN; -fun justin_PN : PN; -fun justinian_PN : PN; -fun jute_PN : PN; -fun jutland_PN : PN; -fun juvenal_PN : PN; -fun jynx_PN : PN; -fun k_PN : PN; -fun k2_PN : PN; -fun k_ration_PN : PN; -fun ka_PN : PN; -fun kaaba_PN : PN; -fun kabbalah_PN : PN; -fun kabbalism_PN : PN; -fun kabul_PN : PN; -fun kachaturian_PN : PN; -fun kachin_PN : PN; -fun kadai_PN : PN; -fun kafir_PN : PN; -fun kafiri_PN : PN; -fun kafka_PN : PN; -fun kahane_chai_PN : PN; -fun kahlua_PN : PN; -fun kahn_PN : PN; -fun kahoolawe_PN : PN; -fun kaiser_PN : PN; -fun kakatoe_PN : PN; -fun kakemono_PN : PN; -fun kalahari_PN : PN; -fun kalamazoo_PN : PN; -fun kalapooia_PN : PN; -fun kalapooian_PN : PN; -fun kalashnikov_PN : PN; -fun kalashnikov_culture_PN : PN; -fun kalgan_PN : PN; -fun kali_PN : PN; -fun kalinin_PN : PN; -fun kalki_PN : PN; -fun kallman's_syndrome_PN : PN; -fun kalon_tripa_PN : PN; -fun kalotermes_PN : PN; -fun kalotermitidae_PN : PN; -fun kaluga_PN : PN; -fun kam_sui_PN : PN; -fun kama_PN : PN; -fun kamarupan_PN : PN; -fun kamasutra_PN : PN; -fun kamba_PN : PN; -fun kamchatka_peninsula_PN : PN; -fun kamchatkan_sea_eagle_PN : PN; -fun kamehameha_i_PN : PN; -fun kamet_PN : PN; -fun kami_PN : PN; -fun kamia_PN : PN; -fun kammon_strait_bridge_PN : PN; -fun kampala_PN : PN; -fun kampuchea_PN : PN; -fun kananga_PN : PN; -fun kanara_PN : PN; -fun kanarese_PN : PN; -fun kanawha_PN : PN; -fun kanchenjunga_PN : PN; -fun kandahar_PN : PN; -fun kandinsky_PN : PN; -fun kandy_PN : PN; -fun kannada_PN : PN; -fun kannada_speaking_A : A; -fun kanpur_PN : PN; -fun kansa_PN : PN; -fun kansan_PN : PN; -fun kansas_PN : PN; -fun kansas_city_PN : PN; -fun kant_PN : PN; -fun kantian_A : A; -fun kaohsiung_PN : PN; -fun kaopectate_PN : PN; -fun kaplan_group_PN : PN; -fun kaposi's_sarcoma_PN : PN; -fun kara_kum_PN : PN; -fun kara_sea_PN : PN; -fun karachi_PN : PN; -fun karaganda_PN : PN; -fun karaites_PN : PN; -fun karakalpak_PN : PN; -fun karakoram_PN : PN; -fun karelia_PN : PN; -fun karelian_PN : PN; -fun karelian_isthmus_PN : PN; -fun karen_PN : PN; -fun karlfeldt_PN : PN; -fun karloff_PN : PN; -fun karlsruhe_PN : PN; -fun karnataka_PN : PN; -fun karok_PN : PN; -fun karpov_PN : PN; -fun karsavina_PN : PN; -fun kartik_PN : PN; -fun kartikeya_PN : PN; -fun kasai_PN : PN; -fun kashag_PN : PN; -fun kashmir_PN : PN; -fun kashmiri_A : A; -fun kashmiri_PN : PN; -fun kasparov_PN : PN; -fun kassel_PN : PN; -fun kassite_PN : PN; -fun kastler_PN : PN; -fun kate_PN : PN; -fun kath_PN : PN; -fun katharevusa_PN : PN; -fun katherine_PN : PN; -fun kathmandu_PN : PN; -fun kathy_PN : PN; -fun katie_PN : PN; -fun katmai_national_park_PN : PN; -fun katowice_PN : PN; -fun katsina_PN : PN; -fun katsuwonidae_PN : PN; -fun katsuwonus_PN : PN; -fun kattegatt_PN : PN; -fun kauai_PN : PN; -fun kaufman_PN : PN; -fun kaunas_PN : PN; -fun kaunda_PN : PN; -fun kawasaki_disease_PN : PN; -fun kay_PN : PN; -fun kayser_fleischer_ring_PN : PN; -fun kazak_PN : PN; -fun kazakhstan_PN : PN; -fun kazakhstani_A : A; -fun kazakhstani_PN : PN; -fun kazakhstani_monetary_unit_PN : PN; -fun kazan_PN : PN; -fun kean_PN : PN; -fun keaton_PN : PN; -fun keats_PN : PN; -fun keble_PN : PN; -fun kegel_exercises_PN : PN; -fun keighley_PN : PN; -fun keith_PN : PN; -fun kekchi_PN : PN; -fun kekule_PN : PN; -fun keller_PN : PN; -fun kellogg_PN : PN; -fun kelly_PN : PN; -fun kelso_PN : PN; -fun kelty_PN : PN; -fun kelvin_PN : PN; -fun kelvin_scale_PN : PN; -fun kemsing_PN : PN; -fun ken_PN : PN; -fun kenai_fjords_national_park_PN : PN; -fun kendal_PN : PN; -fun kendal_green_PN : PN; -fun kendall_PN : PN; -fun kendall_partial_rank_correlation_PN : PN; -fun kendall_test_PN : PN; -fun kendrew_PN : PN; -fun kenilworth_PN : PN; -fun kennan_PN : PN; -fun kennedia_PN : PN; -fun kennedy_PN : PN; -fun kennelly_PN : PN; -fun kennesaw_mountain_PN : PN; -fun kenneth_PN : PN; -fun kennewick_PN : PN; -fun kenny_PN : PN; -fun kensington_PN : PN; -fun kent_PN : PN; -fun kentish_PN : PN; -fun kentuckian_PN : PN; -fun kentucky_PN : PN; -fun kentucky_derby_PN : PN; -fun kentucky_black_bass_PN : PN; -fun kentucky_bluegrass_PN : PN; -fun kentucky_coffee_tree_PN : PN; -fun kentucky_wonder_PN : PN; -fun kentucky_yellowwood_PN : PN; -fun kenya_PN : PN; -fun kenyan_A : A; -fun kenyan_PN : PN; -fun kenyan_monetary_unit_PN : PN; -fun kenyan_shilling_PN : PN; -fun kenyapithecus_PN : PN; -fun kenyata_PN : PN; -fun keogh_plan_PN : PN; -fun keokuk_PN : PN; -fun kepler_PN : PN; -fun kepler's_first_law_PN : PN; -fun kepler's_law_PN : PN; -fun kepler's_second_law_PN : PN; -fun kepler's_third_law_PN : PN; -fun kera_PN : PN; -fun kerbala_PN : PN; -fun kerensky_PN : PN; -fun kern_PN : PN; -fun kernig's_sign_PN : PN; -fun kerouac_PN : PN; -fun kerr_cell_PN : PN; -fun kerry_PN : PN; -fun kerry_blue_terrier_PN : PN; -fun kesey_PN : PN; -fun kettering_PN : PN; -fun keuka_lake_PN : PN; -fun kevin_PN : PN; -fun key_PN : PN; -fun key_west_PN : PN; -fun keynes_PN : PN; -fun keynesian_A : A; -fun keynesian_PN : PN; -fun keynesianism_PN : PN; -fun keynsham_PN : PN; -fun keyworth_PN : PN; -fun khabarovsk_PN : PN; -fun khachaturian_PN : PN; -fun khalkha_PN : PN; -fun khalsa_PN : PN; -fun khama_PN : PN; -fun khamti_PN : PN; -fun khanty_PN : PN; -fun kharkov_PN : PN; -fun khartoum_PN : PN; -fun khaya_PN : PN; -fun khedive_PN : PN; -fun khepera_PN : PN; -fun khmer_PN : PN; -fun khmer_rouge_PN : PN; -fun khoikhoin_PN : PN; -fun khoisan_PN : PN; -fun khomeini_PN : PN; -fun khowar_PN : PN; -fun khrushchev_PN : PN; -fun khuen_PN : PN; -fun khyber_pass_PN : PN; -fun ki_PN : PN; -fun kichaga_PN : PN; -fun kichai_PN : PN; -fun kickapoo_PN : PN; -fun kidd_PN : PN; -fun kidderminster_PN : PN; -fun kidlington_PN : PN; -fun kidsgrove_PN : PN; -fun kierkegaard_PN : PN; -fun kieslowski_PN : PN; -fun kiev_PN : PN; -fun kigali_PN : PN; -fun kiggelaria_PN : PN; -fun kilbirnie_PN : PN; -fun kildare_PN : PN; -fun kilimanjaro_PN : PN; -fun kiliwa_PN : PN; -fun kilkenny_PN : PN; -fun killarney_PN : PN; -fun killarney_fern_PN : PN; -fun kilmarnock_PN : PN; -fun kilroy_PN : PN; -fun kilsyth_PN : PN; -fun kilwinning_PN : PN; -fun kimberley_PN : PN; -fun kinetoscope_PN : PN; -fun king_PN : PN; -fun king's_counsel_PN : PN; -fun king's_english_PN : PN; -fun king's_lynn_PN : PN; -fun king_charles_spaniel_PN : PN; -fun king_william_pine_PN : PN; -fun king_of_england_PN : PN; -fun king_of_france_PN : PN; -fun king_of_the_germans_PN : PN; -fun kingdom_of_god_PN : PN; -fun kings_canyon_national_park_PN : PN; -fun kingsbury_PN : PN; -fun kingsteignton_PN : PN; -fun kingston_PN : PN; -fun kingston_upon_hull_PN : PN; -fun kingston_upon_thames_PN : PN; -fun kingstown_PN : PN; -fun kinosternidae_PN : PN; -fun kinosternon_PN : PN; -fun kinsey_PN : PN; -fun kinshasa_PN : PN; -fun kinyarwanda_PN : PN; -fun kiowa_PN : PN; -fun kipling_PN : PN; -fun kiplingesque_A : A; -fun kipp's_apparatus_PN : PN; -fun kippax_PN : PN; -fun kirchhoff_PN : PN; -fun kirchhoff's_laws_PN : PN; -fun kirchner_PN : PN; -fun kirghiz_PN : PN; -fun kiribati_PN : PN; -fun kiribati_dollar_PN : PN; -fun kirin_PN : PN; -fun kirkby_PN : PN; -fun kirkby_in_ashfield_PN : PN; -fun kirkcaldy_PN : PN; -fun kirkham_PN : PN; -fun kirkia_PN : PN; -fun kirkintilloch_PN : PN; -fun kirkuk_PN : PN; -fun kirkwall_PN : PN; -fun kishar_PN : PN; -fun kishinev_PN : PN; -fun kislev_PN : PN; -fun kissimmee_PN : PN; -fun kissinger_PN : PN; -fun kisumu_PN : PN; -fun kiswahili_PN : PN; -fun kitakyushu_PN : PN; -fun kitchener_PN : PN; -fun kitty_PN : PN; -fun kitty_litter_PN : PN; -fun kivu_PN : PN; -fun klaipeda_PN : PN; -fun klamath_PN : PN; -fun klamath_falls_PN : PN; -fun klansman_PN : PN; -fun klaproth_PN : PN; -fun klee_PN : PN; -fun kleenex_PN : PN; -fun klein_PN : PN; -fun klein_bottle_PN : PN; -fun kleist_PN : PN; -fun klimt_PN : PN; -fun kline_PN : PN; -fun klinefelter_PN : PN; -fun klinefelter's_syndrome_PN : PN; -fun klondike_PN : PN; -fun klopstock_PN : PN; -fun klyuchevskaya_PN : PN; -fun knaresborough_PN : PN; -fun knesset_PN : PN; -fun knight_templar_PN : PN; -fun knight_of_the_round_table_PN : PN; -fun knightia_PN : PN; -fun knossos_PN : PN; -fun knottingley_PN : PN; -fun knowlton's_cactus_PN : PN; -fun knox_PN : PN; -fun knoxville_PN : PN; -fun knutsford_PN : PN; -fun koasati_PN : PN; -fun kobe_PN : PN; -fun koblenz_PN : PN; -fun kobuk_valley_national_park_PN : PN; -fun kobus_PN : PN; -fun koch_PN : PN; -fun kodiak_PN : PN; -fun koestler_PN : PN; -fun kogia_PN : PN; -fun koine_PN : PN; -fun kokka_A : A; -fun kokka_shinto_PN : PN; -fun kol_nidre_PN : PN; -fun kola_peninsula_PN : PN; -fun kolam_PN : PN; -fun kolami_PN : PN; -fun kolkata_PN : PN; -fun kolkwitzia_PN : PN; -fun koln_PN : PN; -fun kolonia_PN : PN; -fun komi_PN : PN; -fun komodo_dragon_PN : PN; -fun kongo_PN : PN; -fun konoe_PN : PN; -fun konqueror_PN : PN; -fun koopmans_PN : PN; -fun koplik's_spots_PN : PN; -fun koran_PN : PN; -fun koranic_A : A; -fun korbut_PN : PN; -fun korchnoi_PN : PN; -fun korda_PN : PN; -fun kordofan_PN : PN; -fun kordofanian_PN : PN; -fun korea_PN : PN; -fun korea_bay_PN : PN; -fun korean_A : A; -fun korean_PN : PN; -fun korean_strait_PN : PN; -fun korean_war_PN : PN; -fun korean_lawn_grass_PN : PN; -fun korean_lespedeza_PN : PN; -fun korzybski_PN : PN; -fun kosciusko_PN : PN; -fun kosovo_PN : PN; -fun kosteletzya_PN : PN; -fun kota_PN : PN; -fun kotoko_PN : PN; -fun koussevitzky_PN : PN; -fun krafft_ebing_PN : PN; -fun krakatau_PN : PN; -fun krakow_PN : PN; -fun krasner_PN : PN; -fun krasnoyarsk_PN : PN; -fun kraut_PN : PN; -fun krebs_PN : PN; -fun krebs_cycle_PN : PN; -fun krefeld_PN : PN; -fun kreisler_PN : PN; -fun kremlin_PN : PN; -fun krishna_PN : PN; -fun krishnaism_PN : PN; -fun krivoi_rog_PN : PN; -fun kroeber_PN : PN; -fun kronecker_PN : PN; -fun kronecker_delta_PN : PN; -fun kropotkin_PN : PN; -fun kroto_PN : PN; -fun kruger_PN : PN; -fun krupp_PN : PN; -fun krypterophaneron_PN : PN; -fun kshatriya_PN : PN; -fun ku_klux_klan_PN : PN; -fun kuala_lumpur_PN : PN; -fun kublai_khan_PN : PN; -fun kubrick_PN : PN; -fun kuchean_PN : PN; -fun kuhn_PN : PN; -fun kui_PN : PN; -fun kuiper_PN : PN; -fun kuiper_belt_PN : PN; -fun kuiper_belt_object_PN : PN; -fun kuki_PN : PN; -fun kulanapan_PN : PN; -fun kumasi_PN : PN; -fun kundt's_tube_PN : PN; -fun kunlun_PN : PN; -fun kunming_PN : PN; -fun kuomintang_PN : PN; -fun kupffer's_cell_PN : PN; -fun kura_PN : PN; -fun kurd_PN : PN; -fun kurdish_A : A; -fun kurdish_PN : PN; -fun kurdistan_PN : PN; -fun kurdistan_workers_party_PN : PN; -fun kurosawa_PN : PN; -fun kursk_PN : PN; -fun kurux_PN : PN; -fun kusan_PN : PN; -fun kutuzov_PN : PN; -fun kuvi_PN : PN; -fun kuwait_PN : PN; -fun kuwait_city_PN : PN; -fun kuwaiti_A : A; -fun kuwaiti_PN : PN; -fun kuwaiti_dinar_PN : PN; -fun kuwaiti_dirham_PN : PN; -fun kuwaiti_monetary_unit_PN : PN; -fun kuybyshev_PN : PN; -fun kuznets_PN : PN; -fun kwa_PN : PN; -fun kwajalein_PN : PN; -fun kwakiutl_PN : PN; -fun kwan_yin_PN : PN; -fun kwangju_PN : PN; -fun kwannon_PN : PN; -fun kwanzaa_PN : PN; -fun kweiyang_PN : PN; -fun kwell_PN : PN; -fun kyd_PN : PN; -fun kyoto_PN : PN; -fun kyphosidae_PN : PN; -fun kyphosus_PN : PN; -fun kyrgyzstan_PN : PN; -fun kyrgyzstani_A : A; -fun kyrgyzstani_monetary_unit_PN : PN; -fun kyushu_PN : PN; -fun kyyiv_PN : PN; -fun kyzyl_kum_PN : PN; -fun l_PN : PN; -fun l'enfant_PN : PN; -fun ldl_cholesterol_PN : PN; -fun lisp_PN : PN; -fun lisp_compiler_PN : PN; -fun lisp_program_PN : PN; -fun llud_PN : PN; -fun lp_PN : PN; -fun l_dopa_PN : PN; -fun l_plate_PN : PN; -fun l_shaped_A : A; -fun la_PN : PN; -fun lasalle_PN : PN; -fun la_crosse_PN : PN; -fun la_fontaine_PN : PN; -fun la_paz_PN : PN; -fun la_rochefoucauld_PN : PN; -fun la_spezia_PN : PN; -fun la_tour_PN : PN; -fun la_habana_PN : PN; -fun la_plata_PN : PN; -fun lab_PN : PN; -fun laban_PN : PN; -fun labanotation_PN : PN; -fun labiatae_PN : PN; -fun lablab_PN : PN; -fun labor_day_PN : PN; -fun labourite_PN : PN; -fun labrador_PN : PN; -fun labrador_sea_PN : PN; -fun labrador_ungava_peninsula_PN : PN; -fun labrador_retriever_PN : PN; -fun labrador_tea_PN : PN; -fun labridae_PN : PN; -fun labrouste_PN : PN; -fun laburnum_PN : PN; -fun labyrinth_of_minos_PN : PN; -fun labyrinthodontia_PN : PN; -fun laccopetalum_PN : PN; -fun lacerta_PN : PN; -fun lacertidae_PN : PN; -fun lachaise_PN : PN; -fun lachesis_PN : PN; -fun lachnolaimus_PN : PN; -fun laconia_PN : PN; -fun laconian_PN : PN; -fun lactarius_PN : PN; -fun lactobacillaceae_PN : PN; -fun lactophrys_PN : PN; -fun lactuca_PN : PN; -fun ladin_PN : PN; -fun lady_PN : PN; -fun ladyship_PN : PN; -fun laertes_PN : PN; -fun lafayette_PN : PN; -fun laffer_PN : PN; -fun laffer_curve_PN : PN; -fun laffite_PN : PN; -fun lag_b'omer_PN : PN; -fun lagarostrobus_PN : PN; -fun lagenaria_PN : PN; -fun lagenophera_PN : PN; -fun lagerstroemia_PN : PN; -fun lagidium_PN : PN; -fun lagodon_PN : PN; -fun lagomorpha_PN : PN; -fun lagopus_PN : PN; -fun lagorchestes_PN : PN; -fun lagos_PN : PN; -fun lagostomus_PN : PN; -fun lagothrix_PN : PN; -fun laguncularia_PN : PN; -fun lahore_PN : PN; -fun lahu_PN : PN; -fun laius_PN : PN; -fun lake_albert_PN : PN; -fun lake_aral_PN : PN; -fun lake_chad_PN : PN; -fun lake_champlain_PN : PN; -fun lake_chelan_PN : PN; -fun lake_clark_national_park_PN : PN; -fun lake_district_PN : PN; -fun lake_edward_PN : PN; -fun lake_erie_PN : PN; -fun lake_geneva_PN : PN; -fun lake_huron_PN : PN; -fun lake_ilmen_PN : PN; -fun lake_ladoga_PN : PN; -fun lake_mead_PN : PN; -fun lake_michigan_PN : PN; -fun lake_nasser_PN : PN; -fun lake_nyasa_PN : PN; -fun lake_onega_PN : PN; -fun lake_ontario_PN : PN; -fun lake_powell_PN : PN; -fun lake_st__clair_PN : PN; -fun lake_superior_PN : PN; -fun lake_tahoe_PN : PN; -fun lake_tana_PN : PN; -fun lake_tanganyika_PN : PN; -fun lake_trasimenus_PN : PN; -fun lake_urmia_PN : PN; -fun lake_vanern_PN : PN; -fun lake_victoria_PN : PN; -fun lake_volta_PN : PN; -fun lakeland_terrier_PN : PN; -fun lakenheath_PN : PN; -fun lakshmi_PN : PN; -fun lallans_PN : PN; -fun lama_PN : PN; -fun lamaism_PN : PN; -fun lamaist_PN : PN; -fun lamarck_PN : PN; -fun lamarckian_A : A; -fun lamarckian_PN : PN; -fun lamarckism_PN : PN; -fun lamaze_method_of_childbirth_PN : PN; -fun lamb_PN : PN; -fun lambert_PN : PN; -fun lambert_eaton_syndrome_PN : PN; -fun lambertia_PN : PN; -fun lambeth_PN : PN; -fun lambis_PN : PN; -fun lamellicornia_PN : PN; -fun lamentations_PN : PN; -fun laminaria_PN : PN; -fun laminariaceae_PN : PN; -fun laminariales_PN : PN; -fun lamium_PN : PN; -fun lammas_PN : PN; -fun lammastide_PN : PN; -fun lamna_PN : PN; -fun lamnidae_PN : PN; -fun lampridae_PN : PN; -fun lampris_PN : PN; -fun lampropeltis_PN : PN; -fun lampyridae_PN : PN; -fun lanai_PN : PN; -fun lanark_PN : PN; -fun lancashire_PN : PN; -fun lancaster_PN : PN; -fun lancastrian_A : A; -fun lancastrian_PN : PN; -fun lancelot_PN : PN; -fun lanchow_PN : PN; -fun lancing_PN : PN; -fun land_PN : PN; -fun landau_PN : PN; -fun lander_PN : PN; -fun landowska_PN : PN; -fun landsteiner_PN : PN; -fun lane's_prince_albert_PN : PN; -fun laney_PN : PN; -fun lange_PN : PN; -fun langley_PN : PN; -fun langmuir_PN : PN; -fun langside_PN : PN; -fun langtry_PN : PN; -fun langue_d'oc_PN : PN; -fun langue_d'oil_PN : PN; -fun languedoc_roussillon_PN : PN; -fun laniidae_PN : PN; -fun lanius_PN : PN; -fun lansing_PN : PN; -fun lanthanotidae_PN : PN; -fun lanthanotus_PN : PN; -fun lanthanotus_borneensis_PN : PN; -fun lanzhou_PN : PN; -fun lao_A : A; -fun lao_PN : PN; -fun lao_tzu_PN : PN; -fun laocoon_PN : PN; -fun laos_PN : PN; -fun laotian_A : A; -fun laotian_monetary_unit_PN : PN; -fun laplace_PN : PN; -fun laportea_PN : PN; -fun lapp_PN : PN; -fun lappic_PN : PN; -fun lappland_PN : PN; -fun laptev_sea_PN : PN; -fun laputa_PN : PN; -fun laputan_A : A; -fun laramie_PN : PN; -fun lardizabala_PN : PN; -fun lardizabalaceae_PN : PN; -fun lardner_PN : PN; -fun laredo_PN : PN; -fun large_magellanic_cloud_PN : PN; -fun largs_PN : PN; -fun lari_PN : PN; -fun laricariidae_PN : PN; -fun laridae_PN : PN; -fun larix_PN : PN; -fun larkhall_PN : PN; -fun larne_PN : PN; -fun larousse_PN : PN; -fun larrea_PN : PN; -fun larry_PN : PN; -fun larus_PN : PN; -fun larvacea_PN : PN; -fun las_cruces_PN : PN; -fun las_vegas_PN : PN; -fun las_palmas_PN : PN; -fun lascar_PN : PN; -fun lascaux_PN : PN; -fun lashkar_e_jhangvi_PN : PN; -fun lashkar_e_omar_PN : PN; -fun lashkar_e_taiba_PN : PN; -fun lasiocampa_PN : PN; -fun lasiocampidae_PN : PN; -fun lasiurus_PN : PN; -fun laskar_jihad_PN : PN; -fun lassa_fever_PN : PN; -fun lassa_virus_PN : PN; -fun lassen_volcanic_national_park_PN : PN; -fun lasso_PN : PN; -fun last_supper_PN : PN; -fun lastex_PN : PN; -fun lasthenia_PN : PN; -fun lastreopsis_PN : PN; -fun late_greek_PN : PN; -fun late_latin_PN : PN; -fun lateran_PN : PN; -fun lateran_council_PN : PN; -fun lateran_palace_PN : PN; -fun lateran_treaty_PN : PN; -fun lates_PN : PN; -fun lathyrus_PN : PN; -fun latimeria_PN : PN; -fun latimeridae_PN : PN; -fun latin_A : A; -fun latin_PN : PN; -fun latin_america_PN : PN; -fun latin_american_A : A; -fun latin_american_PN : PN; -fun latin_cross_PN : PN; -fun latin_square_PN : PN; -fun latinae_PN : PN; -fun latinesce_PN : PN; -fun latinism_PN : PN; -fun latinist_PN : PN; -fun latino_PN : PN; -fun latino_sine_flexione_PN : PN; -fun latium_PN : PN; -fun latrobe_PN : PN; -fun latrodectus_PN : PN; -fun latter_day_saint_PN : PN; -fun latvia_PN : PN; -fun latvian_A : A; -fun latvian_PN : PN; -fun latvian_monetary_unit_PN : PN; -fun lauder_PN : PN; -fun laudo_PN : PN; -fun laughton_PN : PN; -fun laura_PN : PN; -fun lauraceae_PN : PN; -fun laurasia_PN : PN; -fun laurel_PN : PN; -fun laurel_and_hardy_PN : PN; -fun laurence_PN : PN; -fun laurens_PN : PN; -fun laurentian_plateau_PN : PN; -fun laurus_PN : PN; -fun lausanne_PN : PN; -fun lautaro_youth_movement_PN : PN; -fun lavandula_PN : PN; -fun lavatera_PN : PN; -fun laver_PN : PN; -fun lavoisier_PN : PN; -fun lawrence_PN : PN; -fun lawton_PN : PN; -fun layia_PN : PN; -fun lazarus_PN : PN; -fun lbw_PN : PN; -fun le_chatelier's_principle_PN : PN; -fun le_corbusier_PN : PN; -fun le_duc_tho_PN : PN; -fun le_gallienne_PN : PN; -fun le_havre_PN : PN; -fun le_notre_PN : PN; -fun le_mans_PN : PN; -fun leacock_PN : PN; -fun league_of_nations_PN : PN; -fun leakey_PN : PN; -fun leamington_spa_PN : PN; -fun leander_PN : PN; -fun leaning_tower_PN : PN; -fun lear_PN : PN; -fun leary_PN : PN; -fun leatherhead_PN : PN; -fun lebanese_A : A; -fun lebanese_PN : PN; -fun lebanese_monetary_unit_PN : PN; -fun lebanese_pound_PN : PN; -fun lebanon_PN : PN; -fun lebistes_PN : PN; -fun leboyer_method_of_childbirth_PN : PN; -fun lecanoraceae_PN : PN; -fun leccinum_PN : PN; -fun leccinum_fibrillosum_PN : PN; -fun lechanorales_PN : PN; -fun leclanche_cell_PN : PN; -fun lecythidaceae_PN : PN; -fun leda_PN : PN; -fun ledbetter_PN : PN; -fun ledum_PN : PN; -fun lee_PN : PN; -fun leeds_PN : PN; -fun leek_PN : PN; -fun leeward_islands_PN : PN; -fun left_bank_PN : PN; -fun leger_PN : PN; -fun legionella_pneumophilia_PN : PN; -fun legionnaire_PN : PN; -fun legionnaires'_disease_PN : PN; -fun lego_PN : PN; -fun leguminosae_PN : PN; -fun lehar_PN : PN; -fun lehigh_river_PN : PN; -fun leibniz_PN : PN; -fun leibnizian_A : A; -fun leicester_PN : PN; -fun leicestershire_PN : PN; -fun leichtlin's_camas_PN : PN; -fun leiden_PN : PN; -fun leiden_jar_PN : PN; -fun leigh_PN : PN; -fun leighton_linslade_PN : PN; -fun leinster_PN : PN; -fun leiopelma_PN : PN; -fun leiopelmatidae_PN : PN; -fun leiophyllum_PN : PN; -fun leipzig_PN : PN; -fun leishmania_PN : PN; -fun leitneria_PN : PN; -fun leitneriaceae_PN : PN; -fun leitrim_PN : PN; -fun leix_PN : PN; -fun lemaireocereus_PN : PN; -fun lemaitre_PN : PN; -fun lemmon_PN : PN; -fun lemmus_PN : PN; -fun lemna_PN : PN; -fun lemnaceae_PN : PN; -fun lemnos_PN : PN; -fun lemuridae_PN : PN; -fun lemuroidea_PN : PN; -fun len_PN : PN; -fun lena_PN : PN; -fun lenard_PN : PN; -fun lendl_PN : PN; -fun lenin_PN : PN; -fun leningrad_PN : PN; -fun leninism_PN : PN; -fun lennoaceae_PN : PN; -fun lennon_PN : PN; -fun lenny_PN : PN; -fun lens_PN : PN; -fun lent_PN : PN; -fun lente_insulin_PN : PN; -fun lentibulariaceae_PN : PN; -fun lentinus_PN : PN; -fun leo_PN : PN; -fun leo_i_PN : PN; -fun leo_iii_PN : PN; -fun leo_ix_PN : PN; -fun leo_x_PN : PN; -fun leo_xiii_PN : PN; -fun leominster_PN : PN; -fun leon_PN : PN; -fun leonard_PN : PN; -fun leonardesque_A : A; -fun leonardo_PN : PN; -fun leonberg_PN : PN; -fun leonidas_PN : PN; -fun leonotis_PN : PN; -fun leontief_PN : PN; -fun leontocebus_PN : PN; -fun leontodon_PN : PN; -fun leontopodium_PN : PN; -fun leonurus_PN : PN; -fun leotia_lubrica_PN : PN; -fun lepadidae_PN : PN; -fun lepanto_PN : PN; -fun lepas_PN : PN; -fun lepechinia_PN : PN; -fun lepidium_PN : PN; -fun lepidobotryaceae_PN : PN; -fun lepidochelys_PN : PN; -fun lepidocybium_PN : PN; -fun lepidodendraceae_PN : PN; -fun lepidodendrales_PN : PN; -fun lepidoptera_PN : PN; -fun lepidosauria_PN : PN; -fun lepidothamnus_PN : PN; -fun lepiota_clypeolaria_PN : PN; -fun lepiota_naucina_PN : PN; -fun lepiota_rhacodes_PN : PN; -fun lepiota_rubrotincta_PN : PN; -fun lepiotaceae_PN : PN; -fun lepisma_PN : PN; -fun lepismatidae_PN : PN; -fun lepisosteidae_PN : PN; -fun lepisosteus_PN : PN; -fun lepomis_PN : PN; -fun leporidae_PN : PN; -fun leptarrhena_PN : PN; -fun leptinotarsa_PN : PN; -fun leptodactylidae_PN : PN; -fun leptodactylus_PN : PN; -fun leptoglossus_PN : PN; -fun leptopteris_PN : PN; -fun leptoptilus_PN : PN; -fun leptotyphlopidae_PN : PN; -fun leptotyphlops_PN : PN; -fun lepus_PN : PN; -fun lermontov_PN : PN; -fun lerner_PN : PN; -fun lerwick_PN : PN; -fun les_PN : PN; -fun lesbian_PN : PN; -fun lesbos_PN : PN; -fun lesley_PN : PN; -fun leslie_PN : PN; -fun lesotho_PN : PN; -fun lesotho_monetary_unit_PN : PN; -fun lesquerella_PN : PN; -fun lesseps_PN : PN; -fun lesser_antilles_PN : PN; -fun lesser_sunda_islands_PN : PN; -fun lessing_PN : PN; -fun letchworth_PN : PN; -fun lethe_PN : PN; -fun leto_PN : PN; -fun letter_of_jeremiah_PN : PN; -fun leucadendron_PN : PN; -fun leucaena_PN : PN; -fun leucanthemum_PN : PN; -fun leuciscus_PN : PN; -fun leucogenes_PN : PN; -fun leuctra_PN : PN; -fun leuwenhoek_PN : PN; -fun levant_PN : PN; -fun levant_cotton_PN : PN; -fun levantine_A : A; -fun levantine_PN : PN; -fun leven_PN : PN; -fun leverkusen_PN : PN; -fun levi's_PN : PN; -fun levi_strauss_PN : PN; -fun levisticum_PN : PN; -fun levite_PN : PN; -fun levitical_A : A; -fun leviticus_PN : PN; -fun lewes_PN : PN; -fun lewis_PN : PN; -fun lewis_and_clark_expedition_PN : PN; -fun lewisham_PN : PN; -fun lewisia_PN : PN; -fun lewiston_PN : PN; -fun lexington_PN : PN; -fun leycesteria_PN : PN; -fun leydig_cell_PN : PN; -fun leyland_PN : PN; -fun leymus_PN : PN; -fun leyte_PN : PN; -fun lhasa_PN : PN; -fun lhotse_PN : PN; -fun li_po_PN : PN; -fun liao_PN : PN; -fun liaodong_peninsula_PN : PN; -fun liatris_PN : PN; -fun lib_PN : PN; -fun libby_PN : PN; -fun liberal_democrat_party_PN : PN; -fun liberal_party_PN : PN; -fun liberation_tigers_of_tamil_eelam_PN : PN; -fun liberia_PN : PN; -fun liberian_A : A; -fun liberian_PN : PN; -fun liberian_coffee_PN : PN; -fun liberian_dollar_PN : PN; -fun liberty_bell_PN : PN; -fun liberty_island_PN : PN; -fun liberty_party_PN : PN; -fun liberty_ship_PN : PN; -fun libocedrus_PN : PN; -fun libra_PN : PN; -fun libreville_PN : PN; -fun libya_PN : PN; -fun libyan_A : A; -fun libyan_PN : PN; -fun libyan_desert_PN : PN; -fun libyan_islamic_fighting_group_PN : PN; -fun libyan_dinar_PN : PN; -fun libyan_dirham_PN : PN; -fun libyan_monetary_unit_PN : PN; -fun lichanura_PN : PN; -fun lichenales_PN : PN; -fun lichenes_PN : PN; -fun lichfield_PN : PN; -fun lichtenstein_PN : PN; -fun lidocaine_PN : PN; -fun lie_PN : PN; -fun liebig_condenser_PN : PN; -fun liechtenstein_PN : PN; -fun liechtensteiner_A : A; -fun liechtensteiner_PN : PN; -fun liederkranz_PN : PN; -fun liege_PN : PN; -fun liepaja_PN : PN; -fun life_saver_PN : PN; -fun ligularia_PN : PN; -fun liguria_PN : PN; -fun ligurian_sea_PN : PN; -fun ligustrum_PN : PN; -fun ligustrum_obtusifolium_PN : PN; -fun liliaceae_PN : PN; -fun liliales_PN : PN; -fun lilian_PN : PN; -fun liliidae_PN : PN; -fun lilith_PN : PN; -fun lilium_PN : PN; -fun liliuokalani_PN : PN; -fun lille_PN : PN; -fun lillie_PN : PN; -fun lilliput_PN : PN; -fun lilliputian_A : A; -fun lilliputian_PN : PN; -fun lilo_PN : PN; -fun lilongwe_PN : PN; -fun lily_PN : PN; -fun lima_PN : PN; -fun limacidae_PN : PN; -fun limanda_PN : PN; -fun limax_PN : PN; -fun limburger_PN : PN; -fun limeira_PN : PN; -fun limenitis_PN : PN; -fun limerick_PN : PN; -fun limicolae_PN : PN; -fun limnobium_PN : PN; -fun limnocryptes_PN : PN; -fun limnodromus_PN : PN; -fun limoges_PN : PN; -fun limonium_PN : PN; -fun limosa_PN : PN; -fun limousin_PN : PN; -fun limpopo_PN : PN; -fun limulidae_PN : PN; -fun limulus_PN : PN; -fun lin_PN : PN; -fun linaceae_PN : PN; -fun linanthus_PN : PN; -fun linaria_PN : PN; -fun lincoln_PN : PN; -fun lincoln's_birthday_PN : PN; -fun lincoln_memorial_PN : PN; -fun lincolnesque_A : A; -fun lincolnshire_PN : PN; -fun lind_PN : PN; -fun linda_PN : PN; -fun lindbergh_PN : PN; -fun lindera_PN : PN; -fun lindesnes_PN : PN; -fun lindheimera_PN : PN; -fun lindsay_PN : PN; -fun line_of_control_PN : PN; -fun linear_a_PN : PN; -fun linear_b_PN : PN; -fun ling_pao_PN : PN; -fun lingualumina_PN : PN; -fun lingvo_kosmopolita_PN : PN; -fun link_trainer_PN : PN; -fun linlithgow_PN : PN; -fun linnaea_PN : PN; -fun linnaean_A : A; -fun linnaeus_PN : PN; -fun linotype_PN : PN; -fun linum_PN : PN; -fun linux_PN : PN; -fun linwood_PN : PN; -fun linz_PN : PN; -fun liomys_PN : PN; -fun lionel_PN : PN; -fun lions_club_PN : PN; -fun liopelma_hamiltoni_PN : PN; -fun liparididae_PN : PN; -fun liparis_PN : PN; -fun lipchitz_PN : PN; -fun lipmann_PN : PN; -fun liposcelis_PN : PN; -fun lipotyphla_PN : PN; -fun lippi_PN : PN; -fun lippizan_PN : PN; -fun lippmann_PN : PN; -fun lipscomb_PN : PN; -fun lir_PN : PN; -fun liriodendron_PN : PN; -fun liriope_PN : PN; -fun lisa_PN : PN; -fun lisbon_PN : PN; -fun liskeard_PN : PN; -fun lister_PN : PN; -fun listera_PN : PN; -fun listeria_monocytogenes_PN : PN; -fun liston_PN : PN; -fun lisu_PN : PN; -fun liszt_PN : PN; -fun litany_PN : PN; -fun lithocarpus_PN : PN; -fun lithodidae_PN : PN; -fun lithophragma_PN : PN; -fun lithospermum_PN : PN; -fun lithuania_PN : PN; -fun lithuanian_A : A; -fun lithuanian_PN : PN; -fun lithuanian_monetary_unit_PN : PN; -fun litocranius_PN : PN; -fun little_bear_PN : PN; -fun little_bighorn_PN : PN; -fun little_dipper_PN : PN; -fun little_john_PN : PN; -fun little_missouri_PN : PN; -fun little_office_PN : PN; -fun little_red_riding_hood_PN : PN; -fun little_rock_PN : PN; -fun little_sioux_river_PN : PN; -fun little_wabash_PN : PN; -fun littlehampton_PN : PN; -fun littorina_PN : PN; -fun littorinidae_PN : PN; -fun littre_PN : PN; -fun livermore_PN : PN; -fun liverpool_PN : PN; -fun liverpudlian_A : A; -fun liverpudlian_PN : PN; -fun livingston_PN : PN; -fun livingstone_PN : PN; -fun livistona_PN : PN; -fun livonia_PN : PN; -fun livonian_PN : PN; -fun livonian_speaking_A : A; -fun livorno_PN : PN; -fun livy_PN : PN; -fun liz_PN : PN; -fun liza_PN : PN; -fun lizzy_PN : PN; -fun ljubljana_PN : PN; -fun llandudno_PN : PN; -fun llanelli_PN : PN; -fun llangollen_PN : PN; -fun llano_estacado_PN : PN; -fun llantrisant_PN : PN; -fun llantwit_major_PN : PN; -fun llew_llaw_gyffes_PN : PN; -fun lloyd_PN : PN; -fun lloyd's_PN : PN; -fun lloyd_webber_PN : PN; -fun llullaillaco_PN : PN; -fun llyr_PN : PN; -fun lo_ovral_PN : PN; -fun loafer_PN : PN; -fun loanhead_PN : PN; -fun loasaceae_PN : PN; -fun lobachevsky_PN : PN; -fun lobata_PN : PN; -fun lobeliaceae_PN : PN; -fun lobipes_PN : PN; -fun lobito_PN : PN; -fun lobotes_PN : PN; -fun lobotidae_PN : PN; -fun lobularia_PN : PN; -fun loc_cit_PN : PN; -fun loch_achray_PN : PN; -fun loch_linnhe_PN : PN; -fun loch_ness_PN : PN; -fun loch_ness_monster_PN : PN; -fun lochaber_ax_PN : PN; -fun lochgelly_PN : PN; -fun locke_PN : PN; -fun locusta_PN : PN; -fun lodge_PN : PN; -fun lodz_PN : PN; -fun loeb_PN : PN; -fun loestrin_PN : PN; -fun loewe_PN : PN; -fun loewi_PN : PN; -fun lofortyx_PN : PN; -fun lofoten_PN : PN; -fun loftus_PN : PN; -fun logan_PN : PN; -fun logania_PN : PN; -fun loganiaceae_PN : PN; -fun logrono_PN : PN; -fun loire_PN : PN; -fun loire_valley_PN : PN; -fun lois_PN : PN; -fun loiseleuria_PN : PN; -fun loki_PN : PN; -fun lolita_PN : PN; -fun lolium_PN : PN; -fun lolo_PN : PN; -fun lolo_burmese_PN : PN; -fun loloish_PN : PN; -fun lomariopsidaceae_PN : PN; -fun lombard_PN : PN; -fun lombard_street_PN : PN; -fun lombardy_PN : PN; -fun lombardy_poplar_PN : PN; -fun lome_PN : PN; -fun lomogramma_PN : PN; -fun lomotil_PN : PN; -fun lonas_PN : PN; -fun lonchocarpus_PN : PN; -fun london_PN : PN; -fun london_plane_PN : PN; -fun londonderry_PN : PN; -fun londoner_PN : PN; -fun long_beach_PN : PN; -fun long_island_PN : PN; -fun long_island_sound_PN : PN; -fun long_eaton_PN : PN; -fun longfellow_PN : PN; -fun longridge_PN : PN; -fun longton_PN : PN; -fun lonicera_PN : PN; -fun loos_PN : PN; -fun lophiidae_PN : PN; -fun lophius_PN : PN; -fun lophodytes_PN : PN; -fun lopholatilus_PN : PN; -fun lophophora_PN : PN; -fun lophophorus_PN : PN; -fun lophosoria_PN : PN; -fun lophosoriaceae_PN : PN; -fun loranthaceae_PN : PN; -fun loranthus_PN : PN; -fun lord_PN : PN; -fun lord's_prayer_PN : PN; -fun lord's_resistance_army_PN : PN; -fun lord_chancellor_PN : PN; -fun lord_privy_seal_PN : PN; -fun lord_of_misrule_PN : PN; -fun lordship_PN : PN; -fun lorelei_PN : PN; -fun loren_PN : PN; -fun lorentz_PN : PN; -fun lorentz_force_PN : PN; -fun lorenz_PN : PN; -fun lorenzo_de'medici_PN : PN; -fun lorenzo_dressing_PN : PN; -fun loricata_PN : PN; -fun loriinae_PN : PN; -fun lorisidae_PN : PN; -fun lorna_PN : PN; -fun lorraine_PN : PN; -fun lorraine_cross_PN : PN; -fun lorre_PN : PN; -fun los_alamos_PN : PN; -fun los_angeles_PN : PN; -fun lossiemouth_PN : PN; -fun lost_tribes_PN : PN; -fun lot_PN : PN; -fun lot's_wife_PN : PN; -fun lota_PN : PN; -fun lothario_PN : PN; -fun lothian_PN : PN; -fun lothian_region_PN : PN; -fun lotus_PN : PN; -fun loughborough_PN : PN; -fun louis_PN : PN; -fun louis_i_PN : PN; -fun louis_ii_PN : PN; -fun louis_iii_PN : PN; -fun louis_iv_PN : PN; -fun louis_ix_PN : PN; -fun louis_v_PN : PN; -fun louis_vi_PN : PN; -fun louis_vii_PN : PN; -fun louis_viii_PN : PN; -fun louis_x_PN : PN; -fun louis_xi_PN : PN; -fun louis_xii_PN : PN; -fun louis_xiii_PN : PN; -fun louis_xiv_PN : PN; -fun louis_xv_PN : PN; -fun louis_xvi_PN : PN; -fun louise_PN : PN; -fun louisiana_PN : PN; -fun louisiana_purchase_PN : PN; -fun louisianan_PN : PN; -fun louisville_PN : PN; -fun louth_PN : PN; -fun louvre_PN : PN; -fun lovelace_PN : PN; -fun lovell_PN : PN; -fun lovoa_PN : PN; -fun low_PN : PN; -fun low_countries_PN : PN; -fun low_german_PN : PN; -fun low_latin_PN : PN; -fun low_mass_PN : PN; -fun low_sunday_PN : PN; -fun lowell_PN : PN; -fun lower_california_PN : PN; -fun lower_egypt_PN : PN; -fun lower_paleolithic_PN : PN; -fun lower_peninsula_PN : PN; -fun lower_saxony_PN : PN; -fun lowestoft_PN : PN; -fun lowlander_PN : PN; -fun lowlands_PN : PN; -fun lowry_PN : PN; -fun loxia_PN : PN; -fun loxodonta_PN : PN; -fun loxoma_PN : PN; -fun loxomataceae_PN : PN; -fun loxostege_PN : PN; -fun loxostege_similalis_PN : PN; -fun loya_jirga_PN : PN; -fun loyalist_volunteer_force_PN : PN; -fun loyang_PN : PN; -fun lozier_PN : PN; -fun lt_PN : PN; -fun ltd_PN : PN; -fun luganda_PN : PN; -fun luanda_PN : PN; -fun luba_PN : PN; -fun lubavitch_PN : PN; -fun lubavitcher_PN : PN; -fun lubbock_PN : PN; -fun lubeck_PN : PN; -fun lubitsch_PN : PN; -fun lublin_PN : PN; -fun lubumbashi_PN : PN; -fun lucanidae_PN : PN; -fun lucas_PN : PN; -fun luce_PN : PN; -fun lucilia_PN : PN; -fun lucite_PN : PN; -fun lucknow_PN : PN; -fun lucretius_PN : PN; -fun lucullus_PN : PN; -fun luculus_PN : PN; -fun lucy_PN : PN; -fun luda_PN : PN; -fun luddite_PN : PN; -fun ludi_saeculares_PN : PN; -fun ludian_PN : PN; -fun ludlow_PN : PN; -fun ludwigshafen_PN : PN; -fun lufengpithecus_PN : PN; -fun lufkin_PN : PN; -fun luftwaffe_PN : PN; -fun lug_PN : PN; -fun luger_PN : PN; -fun lugosi_PN : PN; -fun luke_PN : PN; -fun lule_burgas_PN : PN; -fun lully_PN : PN; -fun lumpenus_PN : PN; -fun luna_PN : PN; -fun lunaria_PN : PN; -fun lund_PN : PN; -fun lunda_PN : PN; -fun lunt_PN : PN; -fun luo_PN : PN; -fun luoyang_PN : PN; -fun lupinus_PN : PN; -fun lupus_PN : PN; -fun lusaka_PN : PN; -fun luscinia_PN : PN; -fun lushun_PN : PN; -fun lusitania_PN : PN; -fun lusitanian_A : A; -fun luta_PN : PN; -fun luther_PN : PN; -fun lutheran_A : A; -fun lutheran_PN : PN; -fun lutheran_church_PN : PN; -fun lutheranism_PN : PN; -fun lutjanidae_PN : PN; -fun lutjanus_PN : PN; -fun luton_PN : PN; -fun lutra_PN : PN; -fun lutrinae_PN : PN; -fun lutyens_PN : PN; -fun lutzen_PN : PN; -fun luvaridae_PN : PN; -fun luvarus_PN : PN; -fun luwian_PN : PN; -fun luxembourg_PN : PN; -fun luxembourg_ville_PN : PN; -fun luxembourg_franc_PN : PN; -fun luxembourgian_A : A; -fun luxemburg_PN : PN; -fun luxemburger_A : A; -fun luxemburger_PN : PN; -fun luxor_PN : PN; -fun luyia_PN : PN; -fun luzon_PN : PN; -fun lvov_PN : PN; -fun lyallpur_PN : PN; -fun lycaena_PN : PN; -fun lycaenidae_PN : PN; -fun lycaeon_PN : PN; -fun lycia_PN : PN; -fun lycian_PN : PN; -fun lycium_PN : PN; -fun lycoperdaceae_PN : PN; -fun lycoperdales_PN : PN; -fun lycoperdon_PN : PN; -fun lycopersicon_PN : PN; -fun lycophyta_PN : PN; -fun lycopodiaceae_PN : PN; -fun lycopodiales_PN : PN; -fun lycopodineae_PN : PN; -fun lycopodium_PN : PN; -fun lycopsida_PN : PN; -fun lycopus_PN : PN; -fun lycosa_PN : PN; -fun lycosidae_PN : PN; -fun lydia_PN : PN; -fun lydian_PN : PN; -fun lydney_PN : PN; -fun lygaeidae_PN : PN; -fun lyginopteris_PN : PN; -fun lygodium_PN : PN; -fun lygus_PN : PN; -fun lyly_PN : PN; -fun lymantria_PN : PN; -fun lymantriidae_PN : PN; -fun lyme_disease_PN : PN; -fun lymington_PN : PN; -fun lymm_PN : PN; -fun lynchburg_PN : PN; -fun lynn_PN : PN; -fun lynne_PN : PN; -fun lyon_PN : PN; -fun lyonia_PN : PN; -fun lyonnais_PN : PN; -fun lyonnaise_sauce_PN : PN; -fun lyons_PN : PN; -fun lyra_PN : PN; -fun lyrurus_PN : PN; -fun lysander_PN : PN; -fun lysenko_PN : PN; -fun lysichiton_PN : PN; -fun lysiloma_PN : PN; -fun lysimachia_PN : PN; -fun lysimachus_PN : PN; -fun lysippus_PN : PN; -fun lysol_PN : PN; -fun lytham_PN : PN; -fun lytham_st_annes_PN : PN; -fun lythraceae_PN : PN; -fun lythrum_PN : PN; -fun lytton_PN : PN; -fun m_PN : PN; -fun m1_PN : PN; -fun m2_PN : PN; -fun m3_PN : PN; -fun manpad_PN : PN; -fun medline_PN : PN; -fun mips_PN : PN; -fun mot_PN : PN; -fun mpeg_PN : PN; -fun ms_dos_PN : PN; -fun m_theory_PN : PN; -fun maalox_PN : PN; -fun maastricht_PN : PN; -fun mabel_PN : PN; -fun macarthur_PN : PN; -fun macdowell_PN : PN; -fun macgregor_PN : PN; -fun macleish_PN : PN; -fun macaca_PN : PN; -fun macadamia_integrifolia_PN : PN; -fun macao_PN : PN; -fun macao_monetary_unit_PN : PN; -fun macaulay_PN : PN; -fun macbeth_PN : PN; -fun macclesfield_PN : PN; -fun mace_PN : PN; -fun macedon_PN : PN; -fun macedonia_PN : PN; -fun macedonian_A : A; -fun macedonian_PN : PN; -fun macedonian_war_PN : PN; -fun mach_PN : PN; -fun mach_number_PN : PN; -fun machaeranthera_PN : PN; -fun machiavelli_PN : PN; -fun machiavellian_A : A; -fun machiavellian_PN : PN; -fun machiavellianism_PN : PN; -fun machilidae_PN : PN; -fun machu_picchu_PN : PN; -fun machupo_virus_PN : PN; -fun mackem_PN : PN; -fun mackenzie_PN : PN; -fun mackinac_bridge_PN : PN; -fun macleaya_PN : PN; -fun macleod_PN : PN; -fun maclura_PN : PN; -fun macon_PN : PN; -fun macoun_PN : PN; -fun macowanites_PN : PN; -fun macowanites_americanus_PN : PN; -fun macrocephalon_PN : PN; -fun macrocheira_PN : PN; -fun macroclemys_PN : PN; -fun macrodactylus_PN : PN; -fun macronectes_PN : PN; -fun macropodidae_PN : PN; -fun macropus_PN : PN; -fun macrorhamphosidae_PN : PN; -fun macrothelypteris_PN : PN; -fun macrotis_PN : PN; -fun macrotyloma_PN : PN; -fun macrouridae_PN : PN; -fun macrozoarces_PN : PN; -fun madagascan_A : A; -fun madagascan_PN : PN; -fun madagascar_PN : PN; -fun madagascar_cat_PN : PN; -fun madagascar_franc_PN : PN; -fun madagascar_jasmine_PN : PN; -fun maddy_PN : PN; -fun madeira_PN : PN; -fun madeira_islands_PN : PN; -fun madeira_cake_PN : PN; -fun madeleine_PN : PN; -fun madge_PN : PN; -fun madia_PN : PN; -fun madison_PN : PN; -fun madonna_PN : PN; -fun madonna_lily_PN : PN; -fun madoqua_PN : PN; -fun madras_PN : PN; -fun madreporaria_PN : PN; -fun madrid_PN : PN; -fun madurai_PN : PN; -fun mae_west_PN : PN; -fun maeandra_PN : PN; -fun maecenas_PN : PN; -fun maesteg_PN : PN; -fun maeterlinck_PN : PN; -fun mafia_PN : PN; -fun magadhan_PN : PN; -fun magdalena_PN : PN; -fun magdeburg_PN : PN; -fun magellan_PN : PN; -fun magellanic_cloud_PN : PN; -fun magenta_PN : PN; -fun maggie_PN : PN; -fun magh_PN : PN; -fun maghreb_PN : PN; -fun maghull_PN : PN; -fun magicicada_PN : PN; -fun maginot_PN : PN; -fun maginot_line_PN : PN; -fun magna_carta_PN : PN; -fun magnificat_PN : PN; -fun magnoliaceae_PN : PN; -fun magnoliidae_PN : PN; -fun magritte_PN : PN; -fun mah_jongg_PN : PN; -fun mahabharata_PN : PN; -fun mahan_PN : PN; -fun maharashtra_PN : PN; -fun mahayana_PN : PN; -fun mahayanism_PN : PN; -fun mahayanist_PN : PN; -fun mahdi_PN : PN; -fun mahdism_PN : PN; -fun mahdist_PN : PN; -fun mahler_PN : PN; -fun mahonia_PN : PN; -fun maianthemum_PN : PN; -fun maidenhead_PN : PN; -fun maidstone_PN : PN; -fun maidu_PN : PN; -fun maiduguri_PN : PN; -fun mailer_PN : PN; -fun maillol_PN : PN; -fun maimonides_PN : PN; -fun main_street_PN : PN; -fun maine_PN : PN; -fun mainer_PN : PN; -fun maintenon_PN : PN; -fun mainz_PN : PN; -fun maitland_PN : PN; -fun maitreya_PN : PN; -fun maj_PN : PN; -fun maja_PN : PN; -fun majidae_PN : PN; -fun major_PN : PN; -fun majorana_PN : PN; -fun majorca_PN : PN; -fun makaira_PN : PN; -fun makalu_PN : PN; -fun makarios_iii_PN : PN; -fun maksutov_telescope_PN : PN; -fun maktab_al_khidmat_PN : PN; -fun malabo_PN : PN; -fun malacanthidae_PN : PN; -fun malachi_PN : PN; -fun malaclemys_PN : PN; -fun malaconotinae_PN : PN; -fun malacopterygii_PN : PN; -fun malacosoma_PN : PN; -fun malacostraca_PN : PN; -fun malacothamnus_PN : PN; -fun malaga_PN : PN; -fun malamud_PN : PN; -fun malathion_PN : PN; -fun malawi_PN : PN; -fun malawi_kwacha_PN : PN; -fun malawian_A : A; -fun malawian_PN : PN; -fun malawian_monetary_unit_PN : PN; -fun malaxis_PN : PN; -fun malay_A : A; -fun malay_PN : PN; -fun malay_archipelago_PN : PN; -fun malay_peninsula_PN : PN; -fun malaya_PN : PN; -fun malayalam_PN : PN; -fun malayan_tapir_PN : PN; -fun malayo_polynesian_A : A; -fun malayo_polynesian_PN : PN; -fun malaysia_PN : PN; -fun malaysian_A : A; -fun malaysian_PN : PN; -fun malaysian_monetary_unit_PN : PN; -fun malcolm_PN : PN; -fun malcolm_x_PN : PN; -fun malcolm_stock_PN : PN; -fun malcolmia_PN : PN; -fun maldives_PN : PN; -fun maldivian_PN : PN; -fun maldon_PN : PN; -fun male_PN : PN; -fun malebranche_PN : PN; -fun malecite_PN : PN; -fun malevich_PN : PN; -fun mali_PN : PN; -fun mali_franc_PN : PN; -fun malian_A : A; -fun malian_PN : PN; -fun malinowski_PN : PN; -fun mallarme_PN : PN; -fun mallon_PN : PN; -fun mallophaga_PN : PN; -fun mallotus_PN : PN; -fun mallow_PN : PN; -fun malmo_PN : PN; -fun malone_PN : PN; -fun malopterurus_PN : PN; -fun malory_PN : PN; -fun malosma_PN : PN; -fun malpighi_PN : PN; -fun malpighia_PN : PN; -fun malpighiaceae_PN : PN; -fun malraux_PN : PN; -fun malta_PN : PN; -fun maltby_PN : PN; -fun maltese_A : A; -fun maltese_PN : PN; -fun maltese_cross_PN : PN; -fun maltese_dog_PN : PN; -fun maltese_monetary_unit_PN : PN; -fun malthus_PN : PN; -fun malthusian_A : A; -fun malthusian_PN : PN; -fun malthusianism_PN : PN; -fun malto_PN : PN; -fun malus_PN : PN; -fun malva_PN : PN; -fun malvaceae_PN : PN; -fun malvales_PN : PN; -fun malvastrum_PN : PN; -fun malvaviscus_PN : PN; -fun malvern_PN : PN; -fun mam_PN : PN; -fun mama_PN : PN; -fun mamet_PN : PN; -fun mamie_PN : PN; -fun mammalia_PN : PN; -fun mammea_PN : PN; -fun mammon_PN : PN; -fun mammoth_cave_national_park_PN : PN; -fun mammut_PN : PN; -fun mammuthus_PN : PN; -fun mammutidae_PN : PN; -fun man_PN : PN; -fun managua_PN : PN; -fun manama_PN : PN; -fun manannan_PN : PN; -fun manawydan_PN : PN; -fun manchester_PN : PN; -fun manchester_terrier_PN : PN; -fun manchu_PN : PN; -fun manchuria_PN : PN; -fun manchurian_A : A; -fun mancunian_A : A; -fun mancunian_PN : PN; -fun manda_PN : PN; -fun mandaean_A : A; -fun mandaean_PN : PN; -fun mandaeanism_PN : PN; -fun mandalay_PN : PN; -fun mandara_PN : PN; -fun mandarin_PN : PN; -fun mande_PN : PN; -fun mandela_PN : PN; -fun mandelbrot_PN : PN; -fun mandelbrot_set_PN : PN; -fun mandelstam_PN : PN; -fun mandevilla_PN : PN; -fun mandragora_PN : PN; -fun mandrillus_PN : PN; -fun manduca_PN : PN; -fun manduca_quinquemaculata_PN : PN; -fun manduca_sexta_PN : PN; -fun mandy_PN : PN; -fun manes_PN : PN; -fun manet_PN : PN; -fun mangifera_PN : PN; -fun manhattan_PN : PN; -fun manhattan_island_PN : PN; -fun manhattan_project_PN : PN; -fun manhattan_clam_chowder_PN : PN; -fun manichaean_A : A; -fun manichaean_PN : PN; -fun manichaeism_PN : PN; -fun manidae_PN : PN; -fun manihot_PN : PN; -fun manila_PN : PN; -fun manila_bay_PN : PN; -fun manila_grass_PN : PN; -fun manila_hemp_PN : PN; -fun manilkara_PN : PN; -fun manipur_PN : PN; -fun maniraptora_PN : PN; -fun manis_PN : PN; -fun manitoba_PN : PN; -fun mankato_PN : PN; -fun mann_PN : PN; -fun mannheim_PN : PN; -fun mansart_PN : PN; -fun mansfield_PN : PN; -fun mansi_PN : PN; -fun manson_PN : PN; -fun mantegna_PN : PN; -fun mantell_PN : PN; -fun manteodea_PN : PN; -fun mantidae_PN : PN; -fun mantinea_PN : PN; -fun mantispidae_PN : PN; -fun mantle_PN : PN; -fun mantophasmatodea_PN : PN; -fun mantoux_test_PN : PN; -fun manuel_rodriquez_patriotic_front_PN : PN; -fun manx_A : A; -fun manx_PN : PN; -fun manx_shearwater_PN : PN; -fun manzanilla_PN : PN; -fun manzoni_PN : PN; -fun mao_PN : PN; -fun mao_jacket_PN : PN; -fun maoism_PN : PN; -fun maoist_A : A; -fun maoist_PN : PN; -fun maori_PN : PN; -fun mapquest_PN : PN; -fun maputo_PN : PN; -fun maquis_PN : PN; -fun mar_PN : PN; -fun mara_PN : PN; -fun maracaibo_PN : PN; -fun maracay_PN : PN; -fun maraco_PN : PN; -fun marantaceae_PN : PN; -fun marasmius_PN : PN; -fun marat_PN : PN; -fun maratha_PN : PN; -fun marathi_PN : PN; -fun marathon_PN : PN; -fun marattia_PN : PN; -fun marattiaceae_PN : PN; -fun marattiales_PN : PN; -fun marburg_disease_PN : PN; -fun marburg_virus_PN : PN; -fun marceau_PN : PN; -fun march_PN : PN; -fun marchantia_PN : PN; -fun marchantiaceae_PN : PN; -fun marchantiales_PN : PN; -fun marche_PN : PN; -fun marciano_PN : PN; -fun marcionism_PN : PN; -fun marco_polo_sheep_PN : PN; -fun marconi_PN : PN; -fun marcuse_PN : PN; -fun mardi_gras_PN : PN; -fun marduk_PN : PN; -fun marengo_PN : PN; -fun marfan's_syndrome_PN : PN; -fun margaret_PN : PN; -fun margate_PN : PN; -fun marge_PN : PN; -fun margery_PN : PN; -fun margie_PN : PN; -fun marginocephalia_PN : PN; -fun maria_PN : PN; -fun marian_A : A; -fun marian_PN : PN; -fun mariana_islands_PN : PN; -fun maricopa_PN : PN; -fun marie_PN : PN; -fun marie_antoinette_PN : PN; -fun mariehamn_PN : PN; -fun marilyn_PN : PN; -fun marine_PN : PN; -fun marine_corps_intelligence_activity_PN : PN; -fun marineland_PN : PN; -fun marines_PN : PN; -fun marini_PN : PN; -fun marion_PN : PN; -fun mariposan_PN : PN; -fun maritime_provinces_PN : PN; -fun marjorie_PN : PN; -fun mark_PN : PN; -fun markaz_ud_dawa_wal_irshad_PN : PN; -fun market_drayton_PN : PN; -fun market_harborough_PN : PN; -fun markov_PN : PN; -fun markov_chain_PN : PN; -fun markov_process_PN : PN; -fun markova_PN : PN; -fun markovian_A : A; -fun marks_PN : PN; -fun marlborough_PN : PN; -fun marlene_PN : PN; -fun marley_PN : PN; -fun marlow_PN : PN; -fun marlowe_PN : PN; -fun marmara_PN : PN; -fun marmota_PN : PN; -fun marple_PN : PN; -fun marquand_PN : PN; -fun marquesas_islands_PN : PN; -fun marquette_PN : PN; -fun marquis_PN : PN; -fun marrakesh_PN : PN; -fun marrano_PN : PN; -fun marrubium_PN : PN; -fun mars_PN : PN; -fun marsala_PN : PN; -fun marseillaise_PN : PN; -fun marseille_PN : PN; -fun marseilles_PN : PN; -fun marseilles_fever_PN : PN; -fun marsh_PN : PN; -fun marshall_PN : PN; -fun marshall_islands_PN : PN; -fun marshall_plan_PN : PN; -fun marsilea_PN : PN; -fun marsileaceae_PN : PN; -fun marske_PN : PN; -fun marstan_PN : PN; -fun marston_moor_PN : PN; -fun marsupialia_PN : PN; -fun martes_PN : PN; -fun martha_PN : PN; -fun martha's_vineyard_PN : PN; -fun marti_PN : PN; -fun martial_PN : PN; -fun martian_A : A; -fun martian_PN : PN; -fun martin_PN : PN; -fun martin_luther_king_jr's_birthday_PN : PN; -fun martin_v_PN : PN; -fun martinique_PN : PN; -fun martinmas_PN : PN; -fun martyniaceae_PN : PN; -fun marut_PN : PN; -fun marvell_PN : PN; -fun marx_PN : PN; -fun marx_brothers_PN : PN; -fun marxism_PN : PN; -fun marxist_A : A; -fun marxist_PN : PN; -fun marxist_leninist_A : A; -fun mary_PN : PN; -fun mary_i_PN : PN; -fun mary_ii_PN : PN; -fun mary_magdalene_PN : PN; -fun mary_queen_of_scots_PN : PN; -fun maryland_PN : PN; -fun maryland_chicken_PN : PN; -fun maryland_golden_aster_PN : PN; -fun marylander_PN : PN; -fun maryport_PN : PN; -fun masa_PN : PN; -fun masai_PN : PN; -fun masc_PN : PN; -fun masefield_PN : PN; -fun maseru_PN : PN; -fun mashhad_PN : PN; -fun mashi_PN : PN; -fun mashriq_PN : PN; -fun mason_PN : PN; -fun mason_city_PN : PN; -fun mason_dixon_line_PN : PN; -fun mason_dixon_PN : PN; -fun mason_jar_PN : PN; -fun masonic_A : A; -fun masonite_PN : PN; -fun masorah_PN : PN; -fun masorete_PN : PN; -fun masoretic_A : A; -fun masoud_PN : PN; -fun mass_PN : PN; -fun mass_card_PN : PN; -fun massachuset_PN : PN; -fun massachusetts_PN : PN; -fun massachusetts_bay_PN : PN; -fun massachusetts_institute_of_technology_PN : PN; -fun massachusetts_fern_PN : PN; -fun massasoit_PN : PN; -fun massawa_PN : PN; -fun massenet_PN : PN; -fun massif_central_PN : PN; -fun massine_PN : PN; -fun master_in_business_PN : PN; -fun master_in_public_affairs_PN : PN; -fun master_of_architecture_PN : PN; -fun master_of_arts_PN : PN; -fun master_of_arts_in_library_science_PN : PN; -fun master_of_arts_in_teaching_PN : PN; -fun master_of_divinity_PN : PN; -fun master_of_education_PN : PN; -fun master_of_fine_arts_PN : PN; -fun master_of_laws_PN : PN; -fun master_of_library_science_PN : PN; -fun master_of_literature_PN : PN; -fun master_of_science_PN : PN; -fun master_of_science_in_engineering_PN : PN; -fun master_of_theology_PN : PN; -fun masters_PN : PN; -fun masticophis_PN : PN; -fun mastigomycota_PN : PN; -fun mastigophora_PN : PN; -fun mastigoproctus_PN : PN; -fun mastotermes_PN : PN; -fun mastotermes_darwiniensis_PN : PN; -fun mastotermes_electrodominicus_PN : PN; -fun mastotermes_electromexicus_PN : PN; -fun mastotermitidae_PN : PN; -fun mata_hari_PN : PN; -fun matakam_PN : PN; -fun matamoros_PN : PN; -fun mathias_PN : PN; -fun matisse_PN : PN; -fun matlock_PN : PN; -fun matricaria_PN : PN; -fun matt_PN : PN; -fun matterhorn_PN : PN; -fun matteuccia_PN : PN; -fun matthew_PN : PN; -fun matthew_walker_PN : PN; -fun matthiola_PN : PN; -fun mattole_PN : PN; -fun maud_PN : PN; -fun maudie_PN : PN; -fun maugham_PN : PN; -fun maui_PN : PN; -fun mauldin_PN : PN; -fun mauna_kea_PN : PN; -fun mauna_loa_PN : PN; -fun maundy_PN : PN; -fun maundy_thursday_PN : PN; -fun maundy_money_PN : PN; -fun maupassant_PN : PN; -fun maureen_PN : PN; -fun mauriac_PN : PN; -fun maurice_PN : PN; -fun mauritania_PN : PN; -fun mauritanian_A : A; -fun mauritanian_PN : PN; -fun mauritanian_monetary_unit_PN : PN; -fun mauritian_PN : PN; -fun mauritian_monetary_unit_PN : PN; -fun mauritian_rupee_PN : PN; -fun mauritius_PN : PN; -fun maurois_PN : PN; -fun mauser_PN : PN; -fun mausoleum_at_halicarnasus_PN : PN; -fun mavis_PN : PN; -fun max_PN : PN; -fun maxim_PN : PN; -fun maxim_gun_PN : PN; -fun maximian_PN : PN; -fun maximilian's_sunflower_PN : PN; -fun maxine_PN : PN; -fun maxostoma_PN : PN; -fun maxwell_PN : PN; -fun maxwell's_demon_PN : PN; -fun maxwell's_equations_PN : PN; -fun maxwell_boltzmann_distribution_law_PN : PN; -fun maxzide_PN : PN; -fun may_PN : PN; -fun may_day_PN : PN; -fun may_apple_PN : PN; -fun may_queen_PN : PN; -fun may_wine_PN : PN; -fun maya_PN : PN; -fun mayaca_PN : PN; -fun mayacaceae_PN : PN; -fun mayakovski_PN : PN; -fun mayan_PN : PN; -fun mayas_PN : PN; -fun mayday_PN : PN; -fun mayenne_PN : PN; -fun mayer_PN : PN; -fun mayetiola_PN : PN; -fun mayfair_PN : PN; -fun mayfield_PN : PN; -fun mayflower_PN : PN; -fun mayo_PN : PN; -fun mays_PN : PN; -fun mazama_PN : PN; -fun mazar_i_sharif_PN : PN; -fun mazatlan_PN : PN; -fun mazzini_PN : PN; -fun mbabane_PN : PN; -fun mbeya_PN : PN; -fun mbundu_PN : PN; -fun mcalester_PN : PN; -fun mcallen_PN : PN; -fun mcardle's_disease_PN : PN; -fun mcburney's_point_PN : PN; -fun mccarthy_PN : PN; -fun mccarthyism_PN : PN; -fun mccartney_PN : PN; -fun mccauley_PN : PN; -fun mccormick_PN : PN; -fun mccullers_PN : PN; -fun mcgraw_PN : PN; -fun mcguffey_PN : PN; -fun mcguffey_eclectic_readers_PN : PN; -fun mcguffin_PN : PN; -fun mcintosh_PN : PN; -fun mckim_PN : PN; -fun mckinley_PN : PN; -fun mcluhan_PN : PN; -fun mcmaster_PN : PN; -fun mcpherson_PN : PN; -fun mead_PN : PN; -fun mead's_milkweed_PN : PN; -fun meade_PN : PN; -fun meany_PN : PN; -fun meath_PN : PN; -fun mecca_PN : PN; -fun meccano_PN : PN; -fun meckel's_diverticulum_PN : PN; -fun meconopsis_PN : PN; -fun mecoptera_PN : PN; -fun medaille_militaire_PN : PN; -fun medal_of_honor_PN : PN; -fun medan_PN : PN; -fun medawar_PN : PN; -fun medea_PN : PN; -fun medellin_PN : PN; -fun medellin_cartel_PN : PN; -fun medford_PN : PN; -fun medicago_PN : PN; -fun medicaid_PN : PN; -fun medicaid_funds_PN : PN; -fun medical_literature_analysis_and_retrieval_system_PN : PN; -fun medicare_PN : PN; -fun medici_PN : PN; -fun medieval_greek_PN : PN; -fun medieval_latin_PN : PN; -fun medina_PN : PN; -fun medinilla_PN : PN; -fun medinilla_magnifica_PN : PN; -fun mediterranean_A : A; -fun mediterranean_PN : PN; -fun mediterranean_flour_moth_PN : PN; -fun mediterranean_fruit_fly_PN : PN; -fun mediterranean_snapdragon_PN : PN; -fun mediterranean_water_shrew_PN : PN; -fun medoc_PN : PN; -fun medusa_PN : PN; -fun meg_PN : PN; -fun megachile_PN : PN; -fun megachilidae_PN : PN; -fun megachiroptera_PN : PN; -fun megaderma_PN : PN; -fun megadermatidae_PN : PN; -fun megaera_PN : PN; -fun megalobatrachus_PN : PN; -fun megalonychidae_PN : PN; -fun megaloptera_PN : PN; -fun megalosauridae_PN : PN; -fun megapodiidae_PN : PN; -fun megapodius_PN : PN; -fun megaptera_PN : PN; -fun megatheriidae_PN : PN; -fun megatherium_PN : PN; -fun megillah_PN : PN; -fun meibomian_gland_PN : PN; -fun meiji_tenno_PN : PN; -fun meir_PN : PN; -fun meissner_PN : PN; -fun meitner_PN : PN; -fun mekong_PN : PN; -fun melampodium_PN : PN; -fun melampsora_PN : PN; -fun melampsoraceae_PN : PN; -fun melanchthon_PN : PN; -fun melanerpes_PN : PN; -fun melanesia_PN : PN; -fun melanesian_A : A; -fun melanitta_PN : PN; -fun melanogrammus_PN : PN; -fun melanoplus_PN : PN; -fun melanotis_PN : PN; -fun melanthiaceae_PN : PN; -fun melastoma_PN : PN; -fun melastomataceae_PN : PN; -fun melba_PN : PN; -fun melba_toast_PN : PN; -fun melbourne_PN : PN; -fun melchior_PN : PN; -fun melcombe_PN : PN; -fun melcombe_regis_PN : PN; -fun meleagrididae_PN : PN; -fun meleagris_PN : PN; -fun meles_PN : PN; -fun melia_PN : PN; -fun meliaceae_PN : PN; -fun melicoccus_PN : PN; -fun melicytus_PN : PN; -fun melinae_PN : PN; -fun meliphagidae_PN : PN; -fun melissa_PN : PN; -fun melkite_PN : PN; -fun melksham_PN : PN; -fun mellivora_PN : PN; -fun mellon_PN : PN; -fun melocactus_PN : PN; -fun melogale_PN : PN; -fun meloidae_PN : PN; -fun melolontha_PN : PN; -fun melolonthidae_PN : PN; -fun melophagus_PN : PN; -fun melopsittacus_PN : PN; -fun melospiza_PN : PN; -fun melpomene_PN : PN; -fun meltham_PN : PN; -fun melton_mowbray_PN : PN; -fun melursus_PN : PN; -fun melville_PN : PN; -fun membracidae_PN : PN; -fun memorial_day_PN : PN; -fun memphis_PN : PN; -fun menai_strait_PN : PN; -fun menander_PN : PN; -fun mencken_PN : PN; -fun mendel_PN : PN; -fun mendel's_law_PN : PN; -fun mendeleyev_PN : PN; -fun mendelian_A : A; -fun mendelian_PN : PN; -fun mendelism_PN : PN; -fun mendelsohn_PN : PN; -fun mendelssohn_PN : PN; -fun mendenhall_glacier_PN : PN; -fun menelaus_PN : PN; -fun meniere_PN : PN; -fun meniere's_disease_PN : PN; -fun menippe_PN : PN; -fun meniscium_PN : PN; -fun menispermaceae_PN : PN; -fun menispermum_PN : PN; -fun menninger_PN : PN; -fun mennonite_PN : PN; -fun mennonite_church_PN : PN; -fun mennonitism_PN : PN; -fun menomini_PN : PN; -fun menopon_PN : PN; -fun menorah_PN : PN; -fun menotti_PN : PN; -fun menotyphla_PN : PN; -fun mensa_PN : PN; -fun menshevik_PN : PN; -fun mentha_PN : PN; -fun menticirrhus_PN : PN; -fun mentzelia_PN : PN; -fun menuhin_PN : PN; -fun menura_PN : PN; -fun menurae_PN : PN; -fun menuridae_PN : PN; -fun menyanthaceae_PN : PN; -fun menyanthes_PN : PN; -fun menziesia_PN : PN; -fun meopham_PN : PN; -fun mephistopheles_PN : PN; -fun mephitinae_PN : PN; -fun mephitis_PN : PN; -fun mercalli_scale_PN : PN; -fun mercator_PN : PN; -fun mercator_projection_PN : PN; -fun mercedario_PN : PN; -fun mercenaria_PN : PN; -fun mercer_PN : PN; -fun merckx_PN : PN; -fun mercouri_PN : PN; -fun mercurial_A : A; -fun mercurialis_PN : PN; -fun mercury_PN : PN; -fun mercury_program_PN : PN; -fun meredith_PN : PN; -fun mergenthaler_PN : PN; -fun merginae_PN : PN; -fun mergus_PN : PN; -fun merida_PN : PN; -fun meridian_PN : PN; -fun meriones_PN : PN; -fun merlangus_PN : PN; -fun merlin_PN : PN; -fun merlot_PN : PN; -fun merluccius_PN : PN; -fun merman_PN : PN; -fun meropidae_PN : PN; -fun merops_PN : PN; -fun merostomata_PN : PN; -fun merovingian_A : A; -fun merovingian_PN : PN; -fun merrimac_PN : PN; -fun merrimack_PN : PN; -fun mertensia_PN : PN; -fun merthyr_tydfil_PN : PN; -fun merton_PN : PN; -fun meryta_PN : PN; -fun mesa_PN : PN; -fun mesa_verde_national_park_PN : PN; -fun mesabi_range_PN : PN; -fun mesasamkranti_PN : PN; -fun mesembryanthemum_PN : PN; -fun mesmer_PN : PN; -fun mesoamerica_PN : PN; -fun mesoamerican_A : A; -fun mesoamerican_PN : PN; -fun mesocricetus_PN : PN; -fun mesolithic_age_PN : PN; -fun mesopotamia_PN : PN; -fun mesozoic_A : A; -fun mesozoic_PN : PN; -fun mespilus_PN : PN; -fun messiah_PN : PN; -fun messidor_PN : PN; -fun messina_PN : PN; -fun mesua_PN : PN; -fun met_PN : PN; -fun metatheria_PN : PN; -fun metaurus_river_PN : PN; -fun metazoa_PN : PN; -fun metchnikoff_PN : PN; -fun methodism_PN : PN; -fun methodist_A : A; -fun methodist_PN : PN; -fun methodist_church_PN : PN; -fun methodist_denomination_PN : PN; -fun methuselah_PN : PN; -fun metis_PN : PN; -fun metroxylon_PN : PN; -fun metternich_PN : PN; -fun metz_PN : PN; -fun meuniere_butter_PN : PN; -fun meuse_PN : PN; -fun mexicali_PN : PN; -fun mexican_A : A; -fun mexican_PN : PN; -fun mexican_american_PN : PN; -fun mexican_revolution_PN : PN; -fun mexican_spanish_PN : PN; -fun mexican_war_PN : PN; -fun mexican_bean_beetle_PN : PN; -fun mexican_cypress_PN : PN; -fun mexican_hairless_PN : PN; -fun mexican_hat_PN : PN; -fun mexican_hyssop_PN : PN; -fun mexican_juniper_PN : PN; -fun mexican_mint_PN : PN; -fun mexican_monetary_unit_PN : PN; -fun mexican_peso_PN : PN; -fun mexican_pocket_mouse_PN : PN; -fun mexican_poppy_PN : PN; -fun mexican_standoff_PN : PN; -fun mexican_sunflower_PN : PN; -fun mexico_PN : PN; -fun mexico_city_PN : PN; -fun meyerbeer_PN : PN; -fun meyerhof_PN : PN; -fun mgr_PN : PN; -fun mi5_PN : PN; -fun mi6_PN : PN; -fun miami_PN : PN; -fun miami_beach_PN : PN; -fun micah_PN : PN; -fun micawber_PN : PN; -fun michael_PN : PN; -fun michaelmas_PN : PN; -fun michaelmas_daisy_PN : PN; -fun michaelmastide_PN : PN; -fun michelangelesque_A : A; -fun michelangelo_PN : PN; -fun michelle_PN : PN; -fun michelson_PN : PN; -fun michelson_morley_experiment_PN : PN; -fun michener_PN : PN; -fun michigan_PN : PN; -fun michigan_lily_PN : PN; -fun michigander_PN : PN; -fun mick_PN : PN; -fun mickey_PN : PN; -fun mickey_finn_PN : PN; -fun mickey_mouse_PN : PN; -fun micmac_PN : PN; -fun microcentrum_PN : PN; -fun microchiroptera_PN : PN; -fun micrococcaceae_PN : PN; -fun micrococcus_PN : PN; -fun microdesmidae_PN : PN; -fun microdipodops_PN : PN; -fun microgramma_PN : PN; -fun microhylidae_PN : PN; -fun micromeria_PN : PN; -fun micromyx_PN : PN; -fun micronesia_PN : PN; -fun micronor_PN : PN; -fun micropogonias_PN : PN; -fun micropterus_PN : PN; -fun microscopium_PN : PN; -fun microsorium_PN : PN; -fun microsporum_PN : PN; -fun microstomus_PN : PN; -fun microstrobos_PN : PN; -fun microtaggant_PN : PN; -fun microtus_PN : PN; -fun micruroides_PN : PN; -fun micrurus_PN : PN; -fun mid_atlantic_ridge_PN : PN; -fun mid_atlantic_states_PN : PN; -fun midas_PN : PN; -fun midas_touch_PN : PN; -fun middle_ages_PN : PN; -fun middle_east_PN : PN; -fun middle_eastern_A : A; -fun middle_english_PN : PN; -fun middle_high_german_PN : PN; -fun middle_irish_PN : PN; -fun middle_low_german_PN : PN; -fun middle_paleolithic_PN : PN; -fun middlesex_PN : PN; -fun middleton_PN : PN; -fun middlewich_PN : PN; -fun midgard_PN : PN; -fun midi_PN : PN; -fun midi_pyrenees_PN : PN; -fun midland_PN : PN; -fun midlands_PN : PN; -fun midrash_PN : PN; -fun midsummer_day_PN : PN; -fun midsummer_eve_PN : PN; -fun midway_PN : PN; -fun midway_islands_PN : PN; -fun midwest_PN : PN; -fun mies_van_der_rohe_PN : PN; -fun mighty_mouse_PN : PN; -fun mikania_PN : PN; -fun mike_PN : PN; -fun mikir_meithei_PN : PN; -fun milady_PN : PN; -fun milan_PN : PN; -fun milanese_A : A; -fun milanese_PN : PN; -fun milano_PN : PN; -fun mildenhall_PN : PN; -fun mildred_PN : PN; -fun miles_PN : PN; -fun milford_PN : PN; -fun milford_haven_PN : PN; -fun milhaud_PN : PN; -fun militant_tendency_PN : PN; -fun milk_PN : PN; -fun milky_way_PN : PN; -fun mill_PN : PN; -fun millais_PN : PN; -fun millay_PN : PN; -fun miller_PN : PN; -fun millet_PN : PN; -fun millicent_PN : PN; -fun millie_PN : PN; -fun millikan_PN : PN; -fun millom_PN : PN; -fun mills_PN : PN; -fun milly_PN : PN; -fun milne_PN : PN; -fun milngavie_PN : PN; -fun milnrow_PN : PN; -fun miltiades_PN : PN; -fun milton_PN : PN; -fun milton_keynes_PN : PN; -fun miltonia_PN : PN; -fun milvus_PN : PN; -fun milwaukee_PN : PN; -fun mimamsa_PN : PN; -fun mimidae_PN : PN; -fun mimir_PN : PN; -fun mimosaceae_PN : PN; -fun mimosoideae_PN : PN; -fun mimus_PN : PN; -fun min_PN : PN; -fun minamata_bay_PN : PN; -fun minamata_disease_PN : PN; -fun minato_ohashi_bridge_PN : PN; -fun mindanao_PN : PN; -fun minden_PN : PN; -fun mindoro_PN : PN; -fun minehead_PN : PN; -fun minerva_PN : PN; -fun ming_PN : PN; -fun miniconju_PN : PN; -fun minkowski_PN : PN; -fun minneapolis_PN : PN; -fun minnesota_PN : PN; -fun minnesota_multiphasic_personality_inventory_PN : PN; -fun minnesotan_PN : PN; -fun minnie_mouse_PN : PN; -fun minoan_A : A; -fun minoan_PN : PN; -fun minoan_civilization_PN : PN; -fun minos_PN : PN; -fun minotaur_PN : PN; -fun minsk_PN : PN; -fun minster_in_sheppey_PN : PN; -fun minuartia_PN : PN; -fun minuit_PN : PN; -fun minuteman_PN : PN; -fun miocene_PN : PN; -fun mirabeau_PN : PN; -fun mirabilis_PN : PN; -fun miranda_PN : PN; -fun miranda_rule_PN : PN; -fun miri_PN : PN; -fun miriam_PN : PN; -fun miridae_PN : PN; -fun miro_PN : PN; -fun mirounga_PN : PN; -fun misc_PN : PN; -fun mishna_PN : PN; -fun mishnaic_A : A; -fun miss_PN : PN; -fun mississippi_PN : PN; -fun mississippian_PN : PN; -fun missoula_PN : PN; -fun missouri_PN : PN; -fun missouri_compromise_PN : PN; -fun missouri_goldenrod_PN : PN; -fun missouri_primrose_PN : PN; -fun missourian_PN : PN; -fun mister_PN : PN; -fun mitchell_PN : PN; -fun mitchella_PN : PN; -fun mitchum_PN : PN; -fun mitella_PN : PN; -fun mitford_PN : PN; -fun mithraism_PN : PN; -fun mithraist_PN : PN; -fun mithras_PN : PN; -fun mithridates_PN : PN; -fun mitra_PN : PN; -fun mitrula_elegans_PN : PN; -fun mitterrand_PN : PN; -fun miwok_PN : PN; -fun mlle_PN : PN; -fun mme_PN : PN; -fun mnemosyne_PN : PN; -fun mniaceae_PN : PN; -fun mnium_PN : PN; -fun mo_PN : PN; -fun mobile_PN : PN; -fun mobile_bay_PN : PN; -fun mobius_PN : PN; -fun mobius_strip_PN : PN; -fun mobula_PN : PN; -fun mobulidae_PN : PN; -fun model_t_PN : PN; -fun modena_PN : PN; -fun modern_A : A; -fun modern_english_PN : PN; -fun modern_greek_PN : PN; -fun modern_hebrew_PN : PN; -fun modicon_PN : PN; -fun modigliani_PN : PN; -fun moehringia_PN : PN; -fun moeller's_glossitis_PN : PN; -fun mogadishu_PN : PN; -fun mogul_PN : PN; -fun mogul_empire_PN : PN; -fun mohammed_PN : PN; -fun mohammed_ali_PN : PN; -fun mohammedan_PN : PN; -fun mohave_PN : PN; -fun mohawk_PN : PN; -fun mohawk_river_PN : PN; -fun mohican_PN : PN; -fun mohorovicic_PN : PN; -fun mohorovicic_discontinuity_PN : PN; -fun mohria_PN : PN; -fun mohs_scale_PN : PN; -fun moira_PN : PN; -fun moirai_PN : PN; -fun mojave_PN : PN; -fun mojave_aster_PN : PN; -fun mojave_rattlesnake_PN : PN; -fun mokulu_PN : PN; -fun mold_PN : PN; -fun moldova_PN : PN; -fun moldovan_A : A; -fun moldovan_monetary_unit_PN : PN; -fun molidae_PN : PN; -fun moliere_PN : PN; -fun moline_PN : PN; -fun molise_PN : PN; -fun mollienesia_PN : PN; -fun molluga_PN : PN; -fun mollusca_PN : PN; -fun molly_PN : PN; -fun molly_miller_PN : PN; -fun molnar_PN : PN; -fun moloch_PN : PN; -fun molokai_PN : PN; -fun molossidae_PN : PN; -fun molothrus_PN : PN; -fun molotov_PN : PN; -fun molotov_cocktail_PN : PN; -fun moluccas_PN : PN; -fun molucella_PN : PN; -fun molva_PN : PN; -fun mombasa_PN : PN; -fun mommsen_PN : PN; -fun momordica_PN : PN; -fun momotidae_PN : PN; -fun momotus_PN : PN; -fun momus_PN : PN; -fun mon_PN : PN; -fun mon_khmer_PN : PN; -fun monacan_A : A; -fun monaco_PN : PN; -fun monaco_ville_PN : PN; -fun monaghan_PN : PN; -fun monardella_PN : PN; -fun monario_PN : PN; -fun monchengladbach_PN : PN; -fun monday_PN : PN; -fun mondrian_PN : PN; -fun monegasque_PN : PN; -fun monel_metal_PN : PN; -fun monera_PN : PN; -fun moneses_PN : PN; -fun monet_PN : PN; -fun mongol_A : A; -fun mongol_PN : PN; -fun mongolia_PN : PN; -fun mongolian_A : A; -fun mongolian_PN : PN; -fun mongolian_monetary_unit_PN : PN; -fun mongoloid_PN : PN; -fun monica_PN : PN; -fun monifieth_PN : PN; -fun moniliaceae_PN : PN; -fun moniliales_PN : PN; -fun monitor_PN : PN; -fun monk_PN : PN; -fun monmouth_PN : PN; -fun monmouth_court_house_PN : PN; -fun monnet_PN : PN; -fun monocanthidae_PN : PN; -fun monocanthus_PN : PN; -fun monochamus_PN : PN; -fun monocotyledones_PN : PN; -fun monod_PN : PN; -fun monodon_PN : PN; -fun monodontidae_PN : PN; -fun monomorium_PN : PN; -fun monongahela_PN : PN; -fun mononychus_olecranus_PN : PN; -fun monophysite_A : A; -fun monophysite_PN : PN; -fun monophysitism_PN : PN; -fun monopoly_PN : PN; -fun monothelitism_PN : PN; -fun monotremata_PN : PN; -fun monotropa_PN : PN; -fun monotropaceae_PN : PN; -fun monroe_PN : PN; -fun monroe_doctrine_PN : PN; -fun monrovia_PN : PN; -fun monsieur_PN : PN; -fun monsignor_PN : PN; -fun mont_blanc_PN : PN; -fun montagu_PN : PN; -fun montagu's_harrier_PN : PN; -fun montaigne_PN : PN; -fun montana_PN : PN; -fun montanan_PN : PN; -fun monte_carlo_PN : PN; -fun montego_bay_PN : PN; -fun montenegro_PN : PN; -fun monterey_PN : PN; -fun monterey_bay_PN : PN; -fun monterey_cypress_PN : PN; -fun monterey_pine_PN : PN; -fun monterrey_PN : PN; -fun montespan_PN : PN; -fun montesquieu_PN : PN; -fun montessori_PN : PN; -fun monteverdi_PN : PN; -fun montevideo_PN : PN; -fun montez_PN : PN; -fun montezuma_PN : PN; -fun montezuma's_revenge_PN : PN; -fun montezuma_ii_PN : PN; -fun montezuma_cypress_PN : PN; -fun montfort_PN : PN; -fun montgolfier_PN : PN; -fun montgomery_PN : PN; -fun montgomery's_tubercle_PN : PN; -fun montia_PN : PN; -fun montmartre_PN : PN; -fun montpelier_PN : PN; -fun montrachet_PN : PN; -fun montreal_PN : PN; -fun montrose_PN : PN; -fun montserrat_PN : PN; -fun montserratian_A : A; -fun montserratian_PN : PN; -fun monza_PN : PN; -fun moody_PN : PN; -fun moon_PN : PN; -fun moonie_PN : PN; -fun moor_PN : PN; -fun moore_PN : PN; -fun moorish_A : A; -fun moorish_PN : PN; -fun moorish_arch_PN : PN; -fun moquelumnan_PN : PN; -fun moraceae_PN : PN; -fun moranzanist_patriotic_front_PN : PN; -fun moravia_PN : PN; -fun moravian_A : A; -fun moray_firth_PN : PN; -fun morchella_PN : PN; -fun morchella_crassipes_PN : PN; -fun morchella_semilibera_PN : PN; -fun morchellaceae_PN : PN; -fun mordva_PN : PN; -fun more_PN : PN; -fun moreau_river_PN : PN; -fun morecambe_PN : PN; -fun moreton_bay_PN : PN; -fun moreton_bay_chestnut_PN : PN; -fun moreton_bay_tulipwood_PN : PN; -fun morgan_PN : PN; -fun morgan_city_PN : PN; -fun morgan_le_fay_PN : PN; -fun morgantown_PN : PN; -fun morlett's_crocodile_PN : PN; -fun morley_PN : PN; -fun mormon_A : A; -fun mormon_PN : PN; -fun mormonism_PN : PN; -fun mornay_sauce_PN : PN; -fun moro_PN : PN; -fun moro_islamic_liberation_front_PN : PN; -fun moroccan_A : A; -fun moroccan_PN : PN; -fun moroccan_dirham_PN : PN; -fun moroccan_monetary_unit_PN : PN; -fun morocco_PN : PN; -fun moron_PN : PN; -fun morone_PN : PN; -fun morpeth_PN : PN; -fun morpheus_PN : PN; -fun morrigan_PN : PN; -fun morris_PN : PN; -fun morris_chair_PN : PN; -fun morrison_PN : PN; -fun morristown_PN : PN; -fun morrow's_honeysuckle_PN : PN; -fun mors_PN : PN; -fun morse_PN : PN; -fun mortimer_PN : PN; -fun morton_PN : PN; -fun morus_PN : PN; -fun mosaic_A : A; -fun mosaic_PN : PN; -fun mosaic_law_PN : PN; -fun mosan_PN : PN; -fun mosander_PN : PN; -fun moschus_PN : PN; -fun moscow_PN : PN; -fun moselle_PN : PN; -fun moses_PN : PN; -fun mossad_PN : PN; -fun mossbauer_PN : PN; -fun mossley_PN : PN; -fun mosul_PN : PN; -fun motacilla_PN : PN; -fun motacillidae_PN : PN; -fun mother's_day_PN : PN; -fun mother_carey's_chicken_PN : PN; -fun mother_goose_PN : PN; -fun mother_hubbard_PN : PN; -fun motherwell_PN : PN; -fun mott_PN : PN; -fun moulmein_PN : PN; -fun mound_builder_PN : PN; -fun mount_bartle_frere_PN : PN; -fun mount_carmel_PN : PN; -fun mount_elbert_PN : PN; -fun mount_ranier_national_park_PN : PN; -fun mount_saint_helens_PN : PN; -fun mount_vernon_PN : PN; -fun mountain_time_PN : PN; -fun mountain_ash_PN : PN; -fun mountie_PN : PN; -fun moynihan_PN : PN; -fun mozambican_A : A; -fun mozambican_PN : PN; -fun mozambique_PN : PN; -fun mozambique_channel_PN : PN; -fun mozambique_monetary_unit_PN : PN; -fun mozart_PN : PN; -fun mozartian_A : A; -fun mr_PN : PN; -fun mr__moto_PN : PN; -fun mrs_PN : PN; -fun ms_PN : PN; -fun mt_PN : PN; -fun mubarak_PN : PN; -fun mucoraceae_PN : PN; -fun mucorales_PN : PN; -fun muenster_PN : PN; -fun mugil_PN : PN; -fun mugilidae_PN : PN; -fun mugiloidea_PN : PN; -fun mugwump_PN : PN; -fun muhammad_PN : PN; -fun muhammadan_A : A; -fun muharram_PN : PN; -fun muhlenbergia_PN : PN; -fun muir_PN : PN; -fun mujahedeen_khalq_PN : PN; -fun mujahedeen_kompak_PN : PN; -fun mujahidin_e_khalq_organization_PN : PN; -fun mukalla_PN : PN; -fun mukden_PN : PN; -fun mulheim_PN : PN; -fun mulhouse_PN : PN; -fun mull_PN : PN; -fun mullah_PN : PN; -fun mullah_omar_PN : PN; -fun muller_PN : PN; -fun mullidae_PN : PN; -fun mulloidichthys_PN : PN; -fun mullus_PN : PN; -fun multan_PN : PN; -fun mumbai_PN : PN; -fun munch_PN : PN; -fun munchausen's_syndrome_PN : PN; -fun munchhausen_PN : PN; -fun muncie_PN : PN; -fun munda_PN : PN; -fun munich_PN : PN; -fun munich_beer_PN : PN; -fun munro_PN : PN; -fun munster_PN : PN; -fun muntiacus_PN : PN; -fun muntingia_PN : PN; -fun muraenidae_PN : PN; -fun murdoch_PN : PN; -fun muridae_PN : PN; -fun muriel_PN : PN; -fun murillo_PN : PN; -fun murmansk_PN : PN; -fun muroidea_PN : PN; -fun murphy's_law_PN : PN; -fun murphy_bed_PN : PN; -fun murray_PN : PN; -fun murrow_PN : PN; -fun murrumbidgee_PN : PN; -fun murton_PN : PN; -fun mus_PN : PN; -fun musa_PN : PN; -fun musaceae_PN : PN; -fun musales_PN : PN; -fun musca_PN : PN; -fun muscadet_PN : PN; -fun muscardinus_PN : PN; -fun muscari_PN : PN; -fun muscat_PN : PN; -fun muscicapa_PN : PN; -fun muscicapidae_PN : PN; -fun muscidae_PN : PN; -fun muscivora_PN : PN; -fun muscoidea_PN : PN; -fun muscovite_A : A; -fun muscovite_PN : PN; -fun muscovy_PN : PN; -fun muse_PN : PN; -fun musgu_PN : PN; -fun musial_PN : PN; -fun muskhogean_PN : PN; -fun muskogee_PN : PN; -fun muslim_A : A; -fun muslim_PN : PN; -fun muslimah_PN : PN; -fun musophaga_PN : PN; -fun musophagidae_PN : PN; -fun musselburgh_PN : PN; -fun musset_PN : PN; -fun mussolini_PN : PN; -fun mussorgsky_PN : PN; -fun mustela_PN : PN; -fun mustelidae_PN : PN; -fun mustelus_PN : PN; -fun mutawa'een_PN : PN; -fun mutillidae_PN : PN; -fun mutinus_PN : PN; -fun muybridge_PN : PN; -fun muztag_PN : PN; -fun mwanza_PN : PN; -fun mwera_PN : PN; -fun mya_PN : PN; -fun myaceae_PN : PN; -fun myacidae_PN : PN; -fun myadestes_PN : PN; -fun myanmar_PN : PN; -fun myanmar_monetary_unit_PN : PN; -fun mycelia_sterilia_PN : PN; -fun mycenae_PN : PN; -fun mycenaean_A : A; -fun mycenaean_civilization_PN : PN; -fun mycenaen_PN : PN; -fun mycetophilidae_PN : PN; -fun mycobacteriaceae_PN : PN; -fun mycoplasmataceae_PN : PN; -fun mycoplasmatales_PN : PN; -fun mycrosporidia_PN : PN; -fun mycteria_PN : PN; -fun mycteroperca_PN : PN; -fun myctophidae_PN : PN; -fun mylanta_PN : PN; -fun mylar_PN : PN; -fun myliobatidae_PN : PN; -fun mylodontidae_PN : PN; -fun myocastor_PN : PN; -fun myomorpha_PN : PN; -fun myopus_PN : PN; -fun myosotis_PN : PN; -fun myotis_PN : PN; -fun myra_PN : PN; -fun myrciaria_PN : PN; -fun myrdal_PN : PN; -fun myrica_PN : PN; -fun myricaceae_PN : PN; -fun myricales_PN : PN; -fun myricaria_PN : PN; -fun myriophyllum_PN : PN; -fun myristica_PN : PN; -fun myristicaceae_PN : PN; -fun myrmecia_PN : PN; -fun myrmecobius_PN : PN; -fun myrmecophaga_PN : PN; -fun myrmecophagidae_PN : PN; -fun myrmeleon_PN : PN; -fun myrmeleontidae_PN : PN; -fun myrmidon_PN : PN; -fun myroxylon_PN : PN; -fun myrrhis_PN : PN; -fun myrsinaceae_PN : PN; -fun myrsine_PN : PN; -fun myrtaceae_PN : PN; -fun myrtales_PN : PN; -fun myrtillocactus_PN : PN; -fun myrtus_PN : PN; -fun mysidacea_PN : PN; -fun mysidae_PN : PN; -fun mysis_PN : PN; -fun mysore_PN : PN; -fun mysore_thorn_PN : PN; -fun mysticeti_PN : PN; -fun mytilidae_PN : PN; -fun mytilus_PN : PN; -fun myxine_PN : PN; -fun myxine_glutinosa_PN : PN; -fun myxinidae_PN : PN; -fun myxiniformes_PN : PN; -fun myxinikela_PN : PN; -fun myxinikela_siroka_PN : PN; -fun myxocephalus_PN : PN; -fun myxomycetes_PN : PN; -fun myxomycota_PN : PN; -fun myxophyceae_PN : PN; -fun myxosporidia_PN : PN; -fun n_PN : PN; -fun n'djamena_PN : PN; -fun nada_daiquiri_PN : PN; -fun nand_circuit_PN : PN; -fun nimby_PN : PN; -fun noc_PN : PN; -fun na_dene_PN : PN; -fun nabalus_PN : PN; -fun nablus_PN : PN; -fun nabokov_PN : PN; -fun nabu_PN : PN; -fun nacimiento_PN : PN; -fun naegele's_rule_PN : PN; -fun naemorhedus_PN : PN; -fun nag_hammadi_PN : PN; -fun naga_PN : PN; -fun nagano_PN : PN; -fun nagasaki_PN : PN; -fun nageia_PN : PN; -fun nagoya_PN : PN; -fun nagpur_PN : PN; -fun naha_city_PN : PN; -fun nahuatl_PN : PN; -fun nahum_PN : PN; -fun naiadaceae_PN : PN; -fun naiadales_PN : PN; -fun naias_PN : PN; -fun naiki_PN : PN; -fun nailsea_PN : PN; -fun nairn_PN : PN; -fun nairobi_PN : PN; -fun naismith_PN : PN; -fun naja_PN : PN; -fun nakuru_PN : PN; -fun nalchik_PN : PN; -fun namib_desert_PN : PN; -fun namibia_PN : PN; -fun namibian_A : A; -fun namibian_PN : PN; -fun nammu_PN : PN; -fun namoi_PN : PN; -fun nampa_PN : PN; -fun namtar_PN : PN; -fun namur_PN : PN; -fun nan_PN : PN; -fun nan_ling_PN : PN; -fun nanaimo_PN : PN; -fun nanak_PN : PN; -fun nancere_PN : PN; -fun nanchang_PN : PN; -fun nancy_PN : PN; -fun nanda_devi_PN : PN; -fun nanga_parbat_PN : PN; -fun nanjing_PN : PN; -fun nanking_PN : PN; -fun nanna_PN : PN; -fun nanning_PN : PN; -fun nansen_PN : PN; -fun nantes_PN : PN; -fun nanticoke_PN : PN; -fun nantua_PN : PN; -fun nantucket_PN : PN; -fun nantwich_PN : PN; -fun naomi_PN : PN; -fun napaea_PN : PN; -fun napier_PN : PN; -fun napier's_bones_PN : PN; -fun naples_PN : PN; -fun napoleon_PN : PN; -fun napoleon_iii_PN : PN; -fun napoleonic_A : A; -fun napoleonic_wars_PN : PN; -fun napoli_PN : PN; -fun narborough_PN : PN; -fun narcissus_PN : PN; -fun nares_deep_PN : PN; -fun narragansett_bay_PN : PN; -fun narthecium_PN : PN; -fun nasa_PN : PN; -fun nasalis_PN : PN; -fun naseby_PN : PN; -fun nash_PN : PN; -fun nash_equilibrium_PN : PN; -fun nashville_PN : PN; -fun nassau_PN : PN; -fun nasser_PN : PN; -fun nast_PN : PN; -fun nasturtium_PN : PN; -fun nasua_PN : PN; -fun nat_PN : PN; -fun natal_PN : PN; -fun natalie_PN : PN; -fun natantia_PN : PN; -fun natchez_PN : PN; -fun nathaniel_PN : PN; -fun naticidae_PN : PN; -fun nation_PN : PN; -fun nation_of_islam_PN : PN; -fun national_academy_of_sciences_PN : PN; -fun national_aeronautics_and_space_administration_PN : PN; -fun national_archives_and_records_administration_PN : PN; -fun national_association_of_realtors_PN : PN; -fun national_association_of_securities_dealers_automated_quotations_PN : PN; -fun national_baseball_hall_of_fame_PN : PN; -fun national_climatic_data_center_PN : PN; -fun national_geospatial_intelligence_agency_PN : PN; -fun national_guard_PN : PN; -fun national_guard_bureau_PN : PN; -fun national_institute_of_justice_PN : PN; -fun national_institute_of_standards_and_technology_PN : PN; -fun national_institutes_of_health_PN : PN; -fun national_labor_relations_board_PN : PN; -fun national_liberation_army_PN : PN; -fun national_liberation_front_of_corsica_PN : PN; -fun national_library_of_medicine_PN : PN; -fun national_oceanic_and_atmospheric_administration_PN : PN; -fun national_park_service_PN : PN; -fun national_reconnaissance_office_PN : PN; -fun national_rifle_association_PN : PN; -fun national_science_foundation_PN : PN; -fun national_security_agency_PN : PN; -fun national_security_council_PN : PN; -fun national_socialist_german_workers'_party_PN : PN; -fun national_technical_information_service_PN : PN; -fun national_trust_PN : PN; -fun national_weather_service_PN : PN; -fun native_hawaiian_PN : PN; -fun nato_PN : PN; -fun natrix_PN : PN; -fun natta_PN : PN; -fun nauclea_PN : PN; -fun naucrates_PN : PN; -fun nauru_PN : PN; -fun nauruan_A : A; -fun nauruan_PN : PN; -fun nautilidae_PN : PN; -fun navaho_PN : PN; -fun naval_air_warfare_center_weapons_division_PN : PN; -fun naval_research_laboratory_PN : PN; -fun naval_special_warfare_PN : PN; -fun naval_surface_warfare_center_PN : PN; -fun naval_underwater_warfare_center_PN : PN; -fun navarino_PN : PN; -fun navratilova_PN : PN; -fun navy_cross_PN : PN; -fun navy_department_PN : PN; -fun navy_seal_PN : PN; -fun nazarene_A : A; -fun nazarene_PN : PN; -fun nazareth_PN : PN; -fun nazi_A : A; -fun nazi_PN : PN; -fun nazification_PN : PN; -fun nazimova_PN : PN; -fun nazism_PN : PN; -fun nb_PN : PN; -fun ndebele_PN : PN; -fun neandertal_man_PN : PN; -fun neanderthal_A : A; -fun neapolitan_A : A; -fun neapolitan_PN : PN; -fun neapolitan_ice_cream_PN : PN; -fun neath_PN : PN; -fun nebraska_PN : PN; -fun nebraskan_PN : PN; -fun nebuchadnezzar_PN : PN; -fun neckar_PN : PN; -fun necturus_PN : PN; -fun ned_PN : PN; -fun neddy_PN : PN; -fun neel_PN : PN; -fun nefertiti_PN : PN; -fun nefud_PN : PN; -fun negaprion_PN : PN; -fun negev_PN : PN; -fun negress_PN : PN; -fun negritude_PN : PN; -fun nehemiah_PN : PN; -fun nehru_PN : PN; -fun neil_PN : PN; -fun nejd_PN : PN; -fun nell_PN : PN; -fun nelly_PN : PN; -fun nelson_PN : PN; -fun nelumbo_PN : PN; -fun nelumbonaceae_PN : PN; -fun nematocera_PN : PN; -fun nematoda_PN : PN; -fun nemea_PN : PN; -fun nemean_games_PN : PN; -fun nemean_lion_PN : PN; -fun nemertea_PN : PN; -fun nemesis_PN : PN; -fun nenets_PN : PN; -fun neo_lamarckism_PN : PN; -fun neo_latin_PN : PN; -fun neoceratodus_PN : PN; -fun neofiber_PN : PN; -fun neohygrophorus_PN : PN; -fun neohygrophorus_angelesianus_PN : PN; -fun neolentinus_PN : PN; -fun neolentinus_ponderosus_PN : PN; -fun neolithic_age_PN : PN; -fun neomys_PN : PN; -fun neophron_PN : PN; -fun neoplatonism_PN : PN; -fun neoplatonist_PN : PN; -fun neopolitan_PN : PN; -fun neosho_PN : PN; -fun neosporin_PN : PN; -fun neotoma_PN : PN; -fun nepa_PN : PN; -fun nepal_PN : PN; -fun nepal_trumpet_flower_PN : PN; -fun nepalese_A : A; -fun nepalese_PN : PN; -fun nepalese_monetary_unit_PN : PN; -fun nepalese_rupee_PN : PN; -fun nepali_PN : PN; -fun nepenthaceae_PN : PN; -fun nepenthes_PN : PN; -fun nepeta_PN : PN; -fun nephelium_PN : PN; -fun nephrolepis_PN : PN; -fun nephrops_PN : PN; -fun nephropsidae_PN : PN; -fun nephthys_PN : PN; -fun nephthytis_afzelii_PN : PN; -fun nepidae_PN : PN; -fun neptune_PN : PN; -fun nereid_PN : PN; -fun nereus_PN : PN; -fun nergal_PN : PN; -fun neritidae_PN : PN; -fun nerium_PN : PN; -fun nernst_PN : PN; -fun nero_PN : PN; -fun nerodia_PN : PN; -fun nerthus_PN : PN; -fun neruda_PN : PN; -fun nerva_PN : PN; -fun nervi_PN : PN; -fun nesokia_PN : PN; -fun nesselrode_PN : PN; -fun neston_PN : PN; -fun nestor_PN : PN; -fun nestorian_A : A; -fun nestorian_PN : PN; -fun nestorian_church_PN : PN; -fun nestorianism_PN : PN; -fun nestorius_PN : PN; -fun netherlander_PN : PN; -fun netherlands_PN : PN; -fun netherlands_antilles_PN : PN; -fun netley_PN : PN; -fun netscape_PN : PN; -fun neuroptera_PN : PN; -fun neurospora_PN : PN; -fun neurotrichus_PN : PN; -fun neuss_PN : PN; -fun neva_PN : PN; -fun nevada_PN : PN; -fun nevadan_PN : PN; -fun nevelson_PN : PN; -fun never_never_PN : PN; -fun neville_PN : PN; -fun nevis_PN : PN; -fun new_A : A; -fun new_amsterdam_PN : PN; -fun new_britain_PN : PN; -fun new_brunswick_PN : PN; -fun new_caledonia_PN : PN; -fun new_caledonian_A : A; -fun new_caledonian_yew_PN : PN; -fun new_deal_PN : PN; -fun new_dealer_PN : PN; -fun new_delhi_PN : PN; -fun new_england_PN : PN; -fun new_england_aster_PN : PN; -fun new_england_clam_chowder_PN : PN; -fun new_englander_PN : PN; -fun new_english_bible_PN : PN; -fun new_forest_PN : PN; -fun new_guinea_PN : PN; -fun new_hampshire_PN : PN; -fun new_hampshirite_PN : PN; -fun new_haven_PN : PN; -fun new_ireland_PN : PN; -fun new_jersey_PN : PN; -fun new_jerseyan_PN : PN; -fun new_london_PN : PN; -fun new_look_PN : PN; -fun new_mexican_PN : PN; -fun new_mexico_PN : PN; -fun new_netherland_PN : PN; -fun new_orleans_PN : PN; -fun new_people's_army_PN : PN; -fun new_river_PN : PN; -fun new_river_gorge_bridge_PN : PN; -fun new_siberian_islands_PN : PN; -fun new_south_wales_PN : PN; -fun new_testament_PN : PN; -fun new_wave_PN : PN; -fun new_waver_PN : PN; -fun new_world_beaver_PN : PN; -fun new_world_blackbird_PN : PN; -fun new_world_chat_PN : PN; -fun new_world_flycatcher_PN : PN; -fun new_world_goldfinch_PN : PN; -fun new_world_jay_PN : PN; -fun new_world_least_weasel_PN : PN; -fun new_world_monkey_PN : PN; -fun new_world_mouse_PN : PN; -fun new_world_opah_PN : PN; -fun new_world_oriole_PN : PN; -fun new_world_porcupine_PN : PN; -fun new_world_sparrow_PN : PN; -fun new_world_tapir_PN : PN; -fun new_world_vulture_PN : PN; -fun new_world_warbler_PN : PN; -fun new_year_PN : PN; -fun new_year's_day_PN : PN; -fun new_year's_eve_PN : PN; -fun new_york_PN : PN; -fun new_york_bay_PN : PN; -fun new_york_state_barge_canal_PN : PN; -fun new_york_stock_exchange_PN : PN; -fun new_york_fern_PN : PN; -fun new_yorker_PN : PN; -fun new_zealand_PN : PN; -fun new_zealand_beech_PN : PN; -fun new_zealand_cotton_PN : PN; -fun new_zealand_daisybush_PN : PN; -fun new_zealand_dollar_PN : PN; -fun new_zealand_spinach_PN : PN; -fun new_zealand_wren_PN : PN; -fun new_zealander_A : A; -fun new_zealander_PN : PN; -fun new_cumnock_PN : PN; -fun new_mills_PN : PN; -fun new_tredegar_PN : PN; -fun new_windsor_PN : PN; -fun newari_PN : PN; -fun newark_PN : PN; -fun newarthill_PN : PN; -fun newbiggin_PN : PN; -fun newburg_sauce_PN : PN; -fun newburgh_PN : PN; -fun newbury_PN : PN; -fun newcastle_PN : PN; -fun newcastle_disease_PN : PN; -fun newcastle_under_lyme_PN : PN; -fun newcastle_upon_tyne_PN : PN; -fun newcomb_PN : PN; -fun newfoundland_PN : PN; -fun newfoundland_and_labrador_PN : PN; -fun newfoundland_dwarf_birch_PN : PN; -fun newgate_PN : PN; -fun newham_PN : PN; -fun newhaven_PN : PN; -fun newmains_PN : PN; -fun newman_PN : PN; -fun newmarket_PN : PN; -fun newport_PN : PN; -fun newport_news_PN : PN; -fun newport_pagnell_PN : PN; -fun newquay_PN : PN; -fun newry_PN : PN; -fun newton_PN : PN; -fun newton's_law_of_motion_PN : PN; -fun newton_abbot_PN : PN; -fun newton_aycliffe_PN : PN; -fun newton_le_willows_PN : PN; -fun newton_mearns_PN : PN; -fun newtonian_A : A; -fun newtonian_PN : PN; -fun newtonian_telescope_PN : PN; -fun newtown_PN : PN; -fun newtown_wonder_PN : PN; -fun ney_PN : PN; -fun nez_perce_PN : PN; -fun nganasan_PN : PN; -fun nguni_PN : PN; -fun ni_hard_PN : PN; -fun ni_resist_PN : PN; -fun niagara_PN : PN; -fun niagara_falls_PN : PN; -fun niamey_PN : PN; -fun nibelung_PN : PN; -fun nibelungenlied_PN : PN; -fun nicaea_PN : PN; -fun nicaean_A : A; -fun nicandra_PN : PN; -fun nicaragua_PN : PN; -fun nicaraguan_A : A; -fun nicaraguan_PN : PN; -fun nicaraguan_monetary_unit_PN : PN; -fun nice_PN : PN; -fun nicene_creed_PN : PN; -fun nicholas_PN : PN; -fun nicholas_i_PN : PN; -fun nicholas_ii_PN : PN; -fun nicholas_v_PN : PN; -fun nichrome_PN : PN; -fun nick_PN : PN; -fun nicklaus_PN : PN; -fun nicol_prism_PN : PN; -fun nicola_PN : PN; -fun nicole_PN : PN; -fun nicolson_PN : PN; -fun nicosia_PN : PN; -fun nicotiana_PN : PN; -fun nidularia_PN : PN; -fun nidulariaceae_PN : PN; -fun nidulariales_PN : PN; -fun niebuhr_PN : PN; -fun nielsen_PN : PN; -fun niemann_pick_disease_PN : PN; -fun nietzsche_PN : PN; -fun nigel_PN : PN; -fun niger_PN : PN; -fun niger_congo_PN : PN; -fun niger_kordofanian_PN : PN; -fun niger_franc_PN : PN; -fun nigeria_PN : PN; -fun nigerian_A : A; -fun nigerian_PN : PN; -fun nigerian_monetary_unit_PN : PN; -fun nigerien_PN : PN; -fun nightingale_PN : PN; -fun nigroporus_PN : PN; -fun nigroporus_vinosus_PN : PN; -fun nihau_PN : PN; -fun nijinsky_PN : PN; -fun nijmegen_PN : PN; -fun nike_PN : PN; -fun nile_PN : PN; -fun nilgiri_hills_PN : PN; -fun nilo_saharan_PN : PN; -fun nilotic_A : A; -fun nilotic_PN : PN; -fun nilsson_PN : PN; -fun nimitz_PN : PN; -fun nimravus_PN : PN; -fun nimrod_PN : PN; -fun nina_PN : PN; -fun nineteenth_amendment_PN : PN; -fun nineveh_PN : PN; -fun ningal_PN : PN; -fun ningirsu_PN : PN; -fun ningishzida_PN : PN; -fun ninigi_PN : PN; -fun ninkhursag_PN : PN; -fun nintu_PN : PN; -fun ninurta_PN : PN; -fun niobe_PN : PN; -fun niobrara_PN : PN; -fun nipa_PN : PN; -fun nisan_PN : PN; -fun nisei_PN : PN; -fun nissen_PN : PN; -fun nissen_hut_PN : PN; -fun nitella_PN : PN; -fun nitrobacter_PN : PN; -fun nitrobacteriaceae_PN : PN; -fun nitrosomonas_PN : PN; -fun nitrospan_PN : PN; -fun nivose_PN : PN; -fun nixon_PN : PN; -fun nizhnyi_novgorod_PN : PN; -fun njord_PN : PN; -fun noachian_A : A; -fun noah_PN : PN; -fun noah's_flood_PN : PN; -fun nob_hill_PN : PN; -fun nobel_PN : PN; -fun nobel_prize_PN : PN; -fun nobelist_PN : PN; -fun noctua_PN : PN; -fun noctuidae_PN : PN; -fun noel_PN : PN; -fun noether_PN : PN; -fun nogales_PN : PN; -fun noguchi_PN : PN; -fun nolina_PN : PN; -fun nome_PN : PN; -fun nomia_melanderi_PN : PN; -fun nonconformist_PN : PN; -fun nonproliferation_center_PN : PN; -fun noonan's_syndrome_PN : PN; -fun nootka_PN : PN; -fun nopalea_PN : PN; -fun nor_q_d_PN : PN; -fun nora_PN : PN; -fun nord_pas_de_calais_PN : PN; -fun nordic_A : A; -fun norfolk_PN : PN; -fun norfolk_island_PN : PN; -fun norfolk_jacket_PN : PN; -fun norfolk_terrier_PN : PN; -fun norinyl_PN : PN; -fun norlestrin_PN : PN; -fun norma_PN : PN; -fun norman_A : A; -fun norman_PN : PN; -fun norman_conquest_PN : PN; -fun norman_french_PN : PN; -fun norman_architecture_PN : PN; -fun normandie_PN : PN; -fun normanton_PN : PN; -fun normantown_PN : PN; -fun norn_PN : PN; -fun norris_PN : PN; -fun norrish_PN : PN; -fun norse_deity_PN : PN; -fun norse_mythology_PN : PN; -fun north_PN : PN; -fun north_africa_PN : PN; -fun north_african_A : A; -fun north_america_PN : PN; -fun north_american_A : A; -fun north_american_PN : PN; -fun north_american_free_trade_agreement_PN : PN; -fun north_american_country_PN : PN; -fun north_atlantic_PN : PN; -fun north_atlantic_council_PN : PN; -fun north_atlantic_treaty_PN : PN; -fun north_atlantic_treaty_organization_PN : PN; -fun north_carolina_PN : PN; -fun north_carolinian_PN : PN; -fun north_cascades_national_park_PN : PN; -fun north_channel_PN : PN; -fun north_dakota_PN : PN; -fun north_dakotan_PN : PN; -fun north_dravidian_PN : PN; -fun north_equatorial_current_PN : PN; -fun north_island_PN : PN; -fun north_korea_PN : PN; -fun north_korean_A : A; -fun north_korean_PN : PN; -fun north_korean_monetary_unit_PN : PN; -fun north_korean_won_PN : PN; -fun north_pacific_PN : PN; -fun north_peak_PN : PN; -fun north_platte_PN : PN; -fun north_pole_PN : PN; -fun north_sea_PN : PN; -fun north_temperate_zone_PN : PN; -fun north_vietnam_PN : PN; -fun north_vietnamese_A : A; -fun north_yorkshire_PN : PN; -fun north_walsham_PN : PN; -fun northallerton_PN : PN; -fun northam_PN : PN; -fun northampton_PN : PN; -fun northamptonshire_PN : PN; -fun northeast_PN : PN; -fun northern_PN : PN; -fun northern_alliance_PN : PN; -fun northern_baptist_PN : PN; -fun northern_cross_PN : PN; -fun northern_ireland_PN : PN; -fun northern_marianas_PN : PN; -fun northern_spy_PN : PN; -fun northern_territory_PN : PN; -fun northern_bedstraw_PN : PN; -fun northern_dewberry_PN : PN; -fun northerner_PN : PN; -fun northrop_PN : PN; -fun northumberland_PN : PN; -fun northumbria_PN : PN; -fun northwest_PN : PN; -fun northwest_passage_PN : PN; -fun northwest_territories_PN : PN; -fun northwich_PN : PN; -fun norton_PN : PN; -fun noruz_PN : PN; -fun norway_PN : PN; -fun norway_lobster_PN : PN; -fun norway_maple_PN : PN; -fun norway_spruce_PN : PN; -fun norwegian_A : A; -fun norwegian_PN : PN; -fun norwegian_sea_PN : PN; -fun norwegian_elkhound_PN : PN; -fun norwegian_krone_PN : PN; -fun norwegian_lobster_PN : PN; -fun norwegian_monetary_unit_PN : PN; -fun norwich_PN : PN; -fun norwich_terrier_PN : PN; -fun nostocaceae_PN : PN; -fun nostradamus_PN : PN; -fun notechis_PN : PN; -fun notemigonus_PN : PN; -fun nothofagus_PN : PN; -fun nothosauria_PN : PN; -fun notomys_PN : PN; -fun notonecta_PN : PN; -fun notonectidae_PN : PN; -fun notophthalmus_PN : PN; -fun notoryctidae_PN : PN; -fun notoryctus_PN : PN; -fun notostraca_PN : PN; -fun notropis_PN : PN; -fun nottingham_PN : PN; -fun nottinghamshire_PN : PN; -fun nouakchott_PN : PN; -fun nov_PN : PN; -fun nov_esperanto_PN : PN; -fun nov_latin_PN : PN; -fun nova_scotia_PN : PN; -fun nova_scotia_lox_PN : PN; -fun nova_scotian_PN : PN; -fun novara_PN : PN; -fun novaya_zemlya_PN : PN; -fun november_PN : PN; -fun november_5_PN : PN; -fun novgorod_PN : PN; -fun novial_PN : PN; -fun novokuznetsk_PN : PN; -fun novosibirsk_PN : PN; -fun nox_PN : PN; -fun noyes_PN : PN; -fun nr_PN : PN; -fun nubia_PN : PN; -fun nubian_PN : PN; -fun nubian_desert_PN : PN; -fun nucifraga_PN : PN; -fun nuclear_regulatory_commission_PN : PN; -fun nuda_PN : PN; -fun nudibranchia_PN : PN; -fun nuffield_PN : PN; -fun nullarbor_plain_PN : PN; -fun numbers_PN : PN; -fun numenius_PN : PN; -fun numida_PN : PN; -fun numidia_PN : PN; -fun numidian_A : A; -fun numidian_PN : PN; -fun numididae_PN : PN; -fun nummulitidae_PN : PN; -fun nunavut_PN : PN; -fun nuneaton_PN : PN; -fun nung_PN : PN; -fun nuphar_PN : PN; -fun nuptse_PN : PN; -fun nuremberg_PN : PN; -fun nurenburg_PN : PN; -fun nureyev_PN : PN; -fun nusku_PN : PN; -fun nut_PN : PN; -fun nuttall_oak_PN : PN; -fun nuytsia_PN : PN; -fun nyala_PN : PN; -fun nyamuragira_PN : PN; -fun nyamwezi_PN : PN; -fun nyctaginaceae_PN : PN; -fun nyctaginia_PN : PN; -fun nyctanassa_PN : PN; -fun nyctereutes_PN : PN; -fun nycticebus_PN : PN; -fun nycticorax_PN : PN; -fun nyctimene_PN : PN; -fun nyiragongo_PN : PN; -fun nymphaea_PN : PN; -fun nymphaeaceae_PN : PN; -fun nymphalidae_PN : PN; -fun nymphalis_PN : PN; -fun nymphicus_PN : PN; -fun nynorsk_PN : PN; -fun nyquist_frequency_PN : PN; -fun nyquist_rate_PN : PN; -fun nyssa_PN : PN; -fun nyssaceae_PN : PN; -fun nyx_PN : PN; -fun o_PN : PN; -fun o'brien_PN : PN; -fun o'casey_PN : PN; -fun o'connor_PN : PN; -fun o'flaherty_PN : PN; -fun o'hara_PN : PN; -fun o'keeffe_PN : PN; -fun o'neill_PN : PN; -fun o'toole_PN : PN; -fun or_circuit_PN : PN; -fun o_k__PN : PN; -fun o_ring_PN : PN; -fun oahu_PN : PN; -fun oak_leaf_cluster_PN : PN; -fun oakengates_PN : PN; -fun oakland_PN : PN; -fun oakley_PN : PN; -fun oates_PN : PN; -fun oaxaca_PN : PN; -fun ob_PN : PN; -fun obadiah_PN : PN; -fun oban_PN : PN; -fun oberhausen_PN : PN; -fun oberson_PN : PN; -fun oblation_PN : PN; -fun occam_PN : PN; -fun occam's_razor_PN : PN; -fun occident_PN : PN; -fun occidental_PN : PN; -fun occidentalism_PN : PN; -fun occupational_safety_and_health_administration_PN : PN; -fun oceania_PN : PN; -fun oceanic_PN : PN; -fun oceanid_PN : PN; -fun oceanites_PN : PN; -fun oceanus_PN : PN; -fun ochna_PN : PN; -fun ochnaceae_PN : PN; -fun ochoa_PN : PN; -fun ochotona_PN : PN; -fun ochotonidae_PN : PN; -fun ochroma_PN : PN; -fun ochs_PN : PN; -fun ocimum_PN : PN; -fun ockbrook_PN : PN; -fun ockendon_PN : PN; -fun oct_PN : PN; -fun octans_PN : PN; -fun october_PN : PN; -fun octopoda_PN : PN; -fun octopodidae_PN : PN; -fun ocyurus_PN : PN; -fun oder_PN : PN; -fun odessa_PN : PN; -fun odets_PN : PN; -fun odin_PN : PN; -fun odoacer_PN : PN; -fun odobenidae_PN : PN; -fun odobenus_PN : PN; -fun odocoileus_PN : PN; -fun odonata_PN : PN; -fun odontoceti_PN : PN; -fun odontophorus_PN : PN; -fun odysseus_PN : PN; -fun odyssey_PN : PN; -fun oecanthus_PN : PN; -fun oedipus_PN : PN; -fun oedipus_complex_PN : PN; -fun oedogoniaceae_PN : PN; -fun oedogoniales_PN : PN; -fun oedogonium_PN : PN; -fun oenanthe_PN : PN; -fun oenothera_PN : PN; -fun oersted_PN : PN; -fun oestridae_PN : PN; -fun oestrus_PN : PN; -fun offaly_PN : PN; -fun offenbach_PN : PN; -fun offertory_PN : PN; -fun office_of_inspector_general_PN : PN; -fun office_of_intelligence_support_PN : PN; -fun office_of_management_and_budget_PN : PN; -fun office_of_naval_intelligence_PN : PN; -fun office_of_the_dead_PN : PN; -fun ofo_PN : PN; -fun ogcocephalidae_PN : PN; -fun ogden_PN : PN; -fun oglala_PN : PN; -fun ogmore_valley_PN : PN; -fun ohio_PN : PN; -fun ohio_state_university_PN : PN; -fun ohio_buckeye_PN : PN; -fun ohio_goldenrod_PN : PN; -fun ohioan_PN : PN; -fun ohm_PN : PN; -fun ohm's_law_PN : PN; -fun oireachtas_PN : PN; -fun ojibwa_PN : PN; -fun ojos_del_salado_PN : PN; -fun okapia_PN : PN; -fun okeechobee_PN : PN; -fun okefenokee_swamp_PN : PN; -fun oken_PN : PN; -fun okinawa_PN : PN; -fun oklahoma_PN : PN; -fun oklahoma_city_PN : PN; -fun oklahoman_PN : PN; -fun oktoberfest_PN : PN; -fun olaf_ii_PN : PN; -fun old_A : A; -fun old_bailey_PN : PN; -fun old_catholic_PN : PN; -fun old_catholic_church_PN : PN; -fun old_church_slavonic_PN : PN; -fun old_english_PN : PN; -fun old_english_sheepdog_PN : PN; -fun old_faithful_PN : PN; -fun old_french_PN : PN; -fun old_frisian_PN : PN; -fun old_high_german_PN : PN; -fun old_icelandic_PN : PN; -fun old_irish_PN : PN; -fun old_italian_PN : PN; -fun old_latin_PN : PN; -fun old_norse_PN : PN; -fun old_prussian_PN : PN; -fun old_saxon_PN : PN; -fun old_south_PN : PN; -fun old_testament_PN : PN; -fun old_world_PN : PN; -fun old_world_beaver_PN : PN; -fun old_world_buffalo_PN : PN; -fun old_world_chat_PN : PN; -fun old_world_coot_PN : PN; -fun old_world_crayfish_PN : PN; -fun old_world_flycatcher_PN : PN; -fun old_world_hop_hornbeam_PN : PN; -fun old_world_jay_PN : PN; -fun old_world_least_weasel_PN : PN; -fun old_world_monkey_PN : PN; -fun old_world_oriole_PN : PN; -fun old_world_porcupine_PN : PN; -fun old_world_quail_PN : PN; -fun old_world_scops_owl_PN : PN; -fun old_world_vulture_PN : PN; -fun old_world_warbler_PN : PN; -fun old_world_yew_PN : PN; -fun old_windsor_PN : PN; -fun old_world_white_pelican_PN : PN; -fun oldenburg_PN : PN; -fun oldfield_PN : PN; -fun oldham_PN : PN; -fun oldland_PN : PN; -fun olduvai_gorge_PN : PN; -fun olea_PN : PN; -fun oleaceae_PN : PN; -fun oleales_PN : PN; -fun oleandra_PN : PN; -fun oleandraceae_PN : PN; -fun olearia_PN : PN; -fun olfersia_PN : PN; -fun oligocene_PN : PN; -fun oligochaeta_PN : PN; -fun oligoplites_PN : PN; -fun oligoporus_PN : PN; -fun oligoporus_leucospongia_PN : PN; -fun olive_PN : PN; -fun oliver_PN : PN; -fun olivia_PN : PN; -fun olivier_PN : PN; -fun ollari_PN : PN; -fun ollerton_PN : PN; -fun ollie_PN : PN; -fun olmec_PN : PN; -fun olmsted_PN : PN; -fun olympia_PN : PN; -fun olympiad_PN : PN; -fun olympian_A : A; -fun olympian_PN : PN; -fun olympian_games_PN : PN; -fun olympian_zeus_PN : PN; -fun olympic_A : A; -fun olympic_games_PN : PN; -fun olympic_national_park_PN : PN; -fun olympics_PN : PN; -fun olympus_PN : PN; -fun omaha_PN : PN; -fun oman_PN : PN; -fun omani_A : A; -fun omani_PN : PN; -fun omani_monetary_unit_PN : PN; -fun omar_khayyam_PN : PN; -fun omdurman_PN : PN; -fun omega_centauri_PN : PN; -fun omiya_PN : PN; -fun omomyid_PN : PN; -fun omotic_PN : PN; -fun omphalotus_PN : PN; -fun omsk_PN : PN; -fun onagraceae_PN : PN; -fun oncorhynchus_PN : PN; -fun ondaatje_PN : PN; -fun ondatra_PN : PN; -fun oneida_PN : PN; -fun ongar_PN : PN; -fun oniscidae_PN : PN; -fun oniscus_PN : PN; -fun ono_PN : PN; -fun onobrychis_PN : PN; -fun onoclea_PN : PN; -fun onondaga_PN : PN; -fun ononis_PN : PN; -fun onopordum_PN : PN; -fun onosmodium_PN : PN; -fun onsager_PN : PN; -fun ontario_PN : PN; -fun onychium_PN : PN; -fun onychogalea_PN : PN; -fun onychomys_PN : PN; -fun onychophora_PN : PN; -fun oomycetes_PN : PN; -fun oort_PN : PN; -fun oort_cloud_PN : PN; -fun op_PN : PN; -fun op_cit_PN : PN; -fun opec_PN : PN; -fun opel_PN : PN; -fun open_university_PN : PN; -fun opera_PN : PN; -fun operation_desert_storm_PN : PN; -fun opheodrys_PN : PN; -fun ophidiidae_PN : PN; -fun ophiodon_PN : PN; -fun ophiodontidae_PN : PN; -fun ophioglossaceae_PN : PN; -fun ophioglossales_PN : PN; -fun ophioglossum_PN : PN; -fun ophiophagus_PN : PN; -fun ophisaurus_PN : PN; -fun ophiuchus_PN : PN; -fun ophiurida_PN : PN; -fun ophiuroidea_PN : PN; -fun ophrys_PN : PN; -fun opisthobranchia_PN : PN; -fun opisthocomidae_PN : PN; -fun opisthocomus_PN : PN; -fun opisthognathidae_PN : PN; -fun opp_PN : PN; -fun oppenheimer_PN : PN; -fun opposition_PN : PN; -fun ops_PN : PN; -fun optez_PN : PN; -fun opuntia_PN : PN; -fun opuntiales_PN : PN; -fun oran_PN : PN; -fun orange_PN : PN; -fun orange_group_PN : PN; -fun orange_order_PN : PN; -fun orangeman_PN : PN; -fun orbignya_PN : PN; -fun orbison_PN : PN; -fun orchestia_PN : PN; -fun orchestiidae_PN : PN; -fun orchidaceae_PN : PN; -fun orchidales_PN : PN; -fun orcinus_PN : PN; -fun orczy_PN : PN; -fun ord_kangaroo_rat_PN : PN; -fun order_of_the_purple_heart_PN : PN; -fun ordnance_survey_PN : PN; -fun ordovician_PN : PN; -fun oread_PN : PN; -fun oreamnos_PN : PN; -fun orectolobidae_PN : PN; -fun orectolobus_PN : PN; -fun oregon_PN : PN; -fun oregon_ash_PN : PN; -fun oregon_cedar_PN : PN; -fun oregon_crab_apple_PN : PN; -fun oregon_grape_PN : PN; -fun oregon_maple_PN : PN; -fun oregon_white_oak_PN : PN; -fun oregonian_PN : PN; -fun oreopteris_PN : PN; -fun oreortyx_PN : PN; -fun orestes_PN : PN; -fun orff_PN : PN; -fun organization_for_the_prohibition_of_chemical_weapons_PN : PN; -fun organization_of_american_states_PN : PN; -fun organization_of_petroleum_exporting_countries_PN : PN; -fun oriental_PN : PN; -fun oriental_arborvitae_PN : PN; -fun oriental_beetle_PN : PN; -fun oriental_scops_owl_PN : PN; -fun orientalism_PN : PN; -fun origen_PN : PN; -fun orinoco_PN : PN; -fun oriolidae_PN : PN; -fun oriolus_PN : PN; -fun orion_PN : PN; -fun orissa_PN : PN; -fun orites_PN : PN; -fun oriya_PN : PN; -fun orizaba_PN : PN; -fun orkney_PN : PN; -fun orkney_islands_PN : PN; -fun orlando_PN : PN; -fun orleanais_PN : PN; -fun orleanism_PN : PN; -fun orleanist_PN : PN; -fun orleans_PN : PN; -fun orlon_PN : PN; -fun orly_PN : PN; -fun ormandy_PN : PN; -fun ormazd_PN : PN; -fun ormosia_PN : PN; -fun ormskirk_PN : PN; -fun ornithischia_PN : PN; -fun ornithogalum_PN : PN; -fun ornithomimida_PN : PN; -fun ornithorhynchidae_PN : PN; -fun ornithorhynchus_PN : PN; -fun orobanchaceae_PN : PN; -fun orono_PN : PN; -fun orontium_PN : PN; -fun orozco_PN : PN; -fun orpheus_PN : PN; -fun orphic_A : A; -fun orpington_PN : PN; -fun orr_PN : PN; -fun ortalis_PN : PN; -fun ortega_PN : PN; -fun ortega_y_gasset_PN : PN; -fun orthilia_PN : PN; -fun orthodox_A : A; -fun orthodox_church_PN : PN; -fun orthodox_jew_PN : PN; -fun orthodox_judaism_PN : PN; -fun orthopristis_PN : PN; -fun orthoptera_PN : PN; -fun orthotomus_PN : PN; -fun orwell_PN : PN; -fun orwellian_A : A; -fun orycteropodidae_PN : PN; -fun orycteropus_PN : PN; -fun oryctolagus_PN : PN; -fun oryza_PN : PN; -fun oryzomys_PN : PN; -fun oryzopsis_PN : PN; -fun osage_PN : PN; -fun osaka_PN : PN; -fun osaka_bay_PN : PN; -fun osasco_PN : PN; -fun osborne_PN : PN; -fun oscan_PN : PN; -fun oscan_speaking_A : A; -fun oscar_PN : PN; -fun oscillatoriaceae_PN : PN; -fun oscines_PN : PN; -fun osco_umbrian_PN : PN; -fun osiris_PN : PN; -fun oslo_PN : PN; -fun osman_i_PN : PN; -fun osmanthus_PN : PN; -fun osmeridae_PN : PN; -fun osmerus_PN : PN; -fun osmundaceae_PN : PN; -fun osnabruck_PN : PN; -fun ossete_PN : PN; -fun ossett_PN : PN; -fun ostariophysi_PN : PN; -fun osteichthyes_PN : PN; -fun osteoglossidae_PN : PN; -fun osteoglossiformes_PN : PN; -fun osteostraci_PN : PN; -fun ostraciidae_PN : PN; -fun ostracoda_PN : PN; -fun ostracodermi_PN : PN; -fun ostrava_PN : PN; -fun ostrea_PN : PN; -fun ostreidae_PN : PN; -fun ostrogoth_PN : PN; -fun ostrya_PN : PN; -fun ostryopsis_PN : PN; -fun ostwald_PN : PN; -fun ostyak_PN : PN; -fun oswald_PN : PN; -fun oswestry_PN : PN; -fun otago_PN : PN; -fun otaheite_arrowroot_PN : PN; -fun otaria_PN : PN; -fun otariidae_PN : PN; -fun othello_PN : PN; -fun otides_PN : PN; -fun otididae_PN : PN; -fun otis_PN : PN; -fun otley_PN : PN; -fun oto_PN : PN; -fun ottawa_PN : PN; -fun otto_i_PN : PN; -fun ottoman_A : A; -fun ottoman_PN : PN; -fun ottoman_empire_PN : PN; -fun ottumwa_PN : PN; -fun otus_PN : PN; -fun ouachita_PN : PN; -fun ouija_PN : PN; -fun oujda_PN : PN; -fun our_lord's_candle_PN : PN; -fun ouranopithecus_PN : PN; -fun ouranos_PN : PN; -fun ouse_PN : PN; -fun outaouais_PN : PN; -fun outer_hebrides_PN : PN; -fun oval_office_PN : PN; -fun ovalipes_PN : PN; -fun oven_stuffer_PN : PN; -fun ovibos_PN : PN; -fun ovid_PN : PN; -fun oviedo_PN : PN; -fun ovis_PN : PN; -fun ovocon_PN : PN; -fun ovral_PN : PN; -fun ovrette_PN : PN; -fun ovulen_PN : PN; -fun owen_PN : PN; -fun owens_PN : PN; -fun owensboro_PN : PN; -fun oxalidaceae_PN : PN; -fun oxandra_PN : PN; -fun oxbridge_PN : PN; -fun oxford_PN : PN; -fun oxford_english_PN : PN; -fun oxford_english_dictionary_PN : PN; -fun oxford_university_PN : PN; -fun oxford_movement_PN : PN; -fun oxfordshire_PN : PN; -fun oxon_PN : PN; -fun oxonian_A : A; -fun oxonian_PN : PN; -fun oxted_PN : PN; -fun oxybelis_PN : PN; -fun oxydendrum_PN : PN; -fun oxylebius_PN : PN; -fun oxytropis_PN : PN; -fun oxyura_PN : PN; -fun oxyuranus_PN : PN; -fun oxyuridae_PN : PN; -fun ozark_chinkapin_PN : PN; -fun ozarks_PN : PN; -fun ozawa_PN : PN; -fun ozonium_PN : PN; -fun ozothamnus_PN : PN; -fun ozzie_PN : PN; -fun p_PN : PN; -fun paye_PN : PN; -fun pc_board_PN : PN; -fun pku_test_PN : PN; -fun psa_blood_test_PN : PN; -fun pt_boat_PN : PN; -fun pablum_PN : PN; -fun pachycephala_PN : PN; -fun pachyrhizus_PN : PN; -fun pacific_A : A; -fun pacific_PN : PN; -fun pacific_coast_PN : PN; -fun pacific_northwest_PN : PN; -fun pacific_time_PN : PN; -fun pacific_bottlenose_dolphin_PN : PN; -fun pacific_cod_PN : PN; -fun pacific_giant_salamander_PN : PN; -fun pacific_halibut_PN : PN; -fun pacific_herring_PN : PN; -fun pacific_newt_PN : PN; -fun pacific_ridley_PN : PN; -fun pacific_sardine_PN : PN; -fun pacific_spiny_dogfish_PN : PN; -fun pacific_sturgeon_PN : PN; -fun pacific_tree_toad_PN : PN; -fun pacific_tripletail_PN : PN; -fun pacific_walrus_PN : PN; -fun pacific_yew_PN : PN; -fun pacinian_corpuscle_PN : PN; -fun packera_PN : PN; -fun padda_PN : PN; -fun paddy_PN : PN; -fun paderewski_PN : PN; -fun padova_PN : PN; -fun padua_PN : PN; -fun paducah_PN : PN; -fun paeonia_PN : PN; -fun paeoniaceae_PN : PN; -fun paganini_PN : PN; -fun page_PN : PN; -fun pagellus_PN : PN; -fun paget_PN : PN; -fun paget's_disease_PN : PN; -fun pago_pago_PN : PN; -fun pagophila_PN : PN; -fun pagophilus_PN : PN; -fun pagrus_PN : PN; -fun paguridae_PN : PN; -fun pagurus_PN : PN; -fun pahlavi_PN : PN; -fun paige_PN : PN; -fun paine_PN : PN; -fun painted_desert_PN : PN; -fun paisley_PN : PN; -fun paiute_PN : PN; -fun paiwanic_PN : PN; -fun pakistan_PN : PN; -fun pakistani_A : A; -fun pakistani_PN : PN; -fun pakistani_monetary_unit_PN : PN; -fun pakistani_rupee_PN : PN; -fun palaemon_PN : PN; -fun palaemonidae_PN : PN; -fun palaic_PN : PN; -fun palaquium_PN : PN; -fun palatinate_PN : PN; -fun palatine_PN : PN; -fun palau_PN : PN; -fun paleacrita_PN : PN; -fun paleacrita_vernata_PN : PN; -fun palembang_PN : PN; -fun paleo_american_PN : PN; -fun paleo_american_culture_PN : PN; -fun paleocene_PN : PN; -fun paleolithic_age_PN : PN; -fun paleozoic_A : A; -fun paleozoic_PN : PN; -fun palermo_PN : PN; -fun palestine_PN : PN; -fun palestine_islamic_jihad_PN : PN; -fun palestine_liberation_front_PN : PN; -fun palestine_liberation_organization_PN : PN; -fun palestine_national_authority_PN : PN; -fun palestinian_A : A; -fun palestinian_PN : PN; -fun palestinian_hizballah_PN : PN; -fun palestrina_PN : PN; -fun palgrave_PN : PN; -fun pali_PN : PN; -fun palinuridae_PN : PN; -fun palinurus_PN : PN; -fun paliurus_PN : PN; -fun pall_mall_PN : PN; -fun palladian_A : A; -fun palladio_PN : PN; -fun pallas_PN : PN; -fun palm_beach_PN : PN; -fun palm_sunday_PN : PN; -fun palmae_PN : PN; -fun palmales_PN : PN; -fun palmer_PN : PN; -fun palo_alto_PN : PN; -fun pam_PN : PN; -fun pamela_PN : PN; -fun pamir_mountains_PN : PN; -fun pamlico_PN : PN; -fun pamplona_PN : PN; -fun pan_PN : PN; -fun pan_american_day_PN : PN; -fun pan_american_union_PN : PN; -fun panacea_PN : PN; -fun panama_PN : PN; -fun panama_canal_PN : PN; -fun panama_canal_zone_PN : PN; -fun panama_city_PN : PN; -fun panama_redwood_PN : PN; -fun panama_redwood_tree_PN : PN; -fun panama_tree_PN : PN; -fun panamanian_A : A; -fun panamanian_PN : PN; -fun panamanian_monetary_unit_PN : PN; -fun panax_PN : PN; -fun panchen_lama_PN : PN; -fun pandanaceae_PN : PN; -fun pandanales_PN : PN; -fun pandion_PN : PN; -fun pandionidae_PN : PN; -fun pandora_PN : PN; -fun pandora's_box_PN : PN; -fun pangaea_PN : PN; -fun pangloss_PN : PN; -fun panhellenic_A : A; -fun panicum_PN : PN; -fun panini_PN : PN; -fun panipat_PN : PN; -fun panofsky_PN : PN; -fun panonychus_PN : PN; -fun panorpidae_PN : PN; -fun pantaloon_PN : PN; -fun panthera_PN : PN; -fun pantotheria_PN : PN; -fun paotow_PN : PN; -fun pap_test_PN : PN; -fun papal_states_PN : PN; -fun papaver_PN : PN; -fun papaveraceae_PN : PN; -fun papeete_PN : PN; -fun paphiopedilum_PN : PN; -fun papilionaceae_PN : PN; -fun papilionoideae_PN : PN; -fun papio_PN : PN; -fun paprilus_PN : PN; -fun papua_PN : PN; -fun papua_new_guinea_PN : PN; -fun papuan_A : A; -fun papuan_PN : PN; -fun papuan_monetary_unit_PN : PN; -fun para_PN : PN; -fun para_rubber_PN : PN; -fun para_rubber_tree_PN : PN; -fun paracelsus_PN : PN; -fun paracheirodon_PN : PN; -fun paradisaeidae_PN : PN; -fun paradise_PN : PN; -fun paradoxurus_PN : PN; -fun paraguay_PN : PN; -fun paraguayan_A : A; -fun paraguayan_PN : PN; -fun paraguayan_monetary_unit_PN : PN; -fun paralichthys_PN : PN; -fun paralipomenon_PN : PN; -fun paralithodes_PN : PN; -fun parallel_lives_PN : PN; -fun paramaribo_PN : PN; -fun parana_PN : PN; -fun paranthias_PN : PN; -fun paranthropus_PN : PN; -fun parascalops_PN : PN; -fun parashurama_PN : PN; -fun parasitaxus_PN : PN; -fun parathelypteris_PN : PN; -fun parazoa_PN : PN; -fun parcae_PN : PN; -fun parcheesi_PN : PN; -fun pareto_PN : PN; -fun paridae_PN : PN; -fun parietales_PN : PN; -fun parietaria_PN : PN; -fun paris_PN : PN; -fun paris_university_PN : PN; -fun paris_green_PN : PN; -fun parisian_A : A; -fun parisian_PN : PN; -fun parisienne_PN : PN; -fun parjanya_PN : PN; -fun parji_PN : PN; -fun park_PN : PN; -fun park_avenue_PN : PN; -fun parker_PN : PN; -fun parker_house_roll_PN : PN; -fun parkeriaceae_PN : PN; -fun parkersburg_PN : PN; -fun parkia_PN : PN; -fun parkia_javanica_PN : PN; -fun parkinson_PN : PN; -fun parkinson's_law_PN : PN; -fun parkinsonia_PN : PN; -fun parks_PN : PN; -fun parliamentarian_PN : PN; -fun parma_PN : PN; -fun parmelia_PN : PN; -fun parmeliaceae_PN : PN; -fun parmenides_PN : PN; -fun parmesan_PN : PN; -fun parnaiba_PN : PN; -fun parnassus_PN : PN; -fun parnell_PN : PN; -fun parochetus_PN : PN; -fun paronychia_PN : PN; -fun parophrys_PN : PN; -fun parr_PN : PN; -fun parrish_PN : PN; -fun parrotia_PN : PN; -fun parrotiopsis_PN : PN; -fun parry's_penstemon_PN : PN; -fun parry's_pinyon_PN : PN; -fun parry_manzanita_PN : PN; -fun parsee_PN : PN; -fun parsiism_PN : PN; -fun parsons_PN : PN; -fun parsons_table_PN : PN; -fun parthenium_PN : PN; -fun parthenocissus_PN : PN; -fun parthenon_PN : PN; -fun parthia_PN : PN; -fun parthian_A : A; -fun parthian_PN : PN; -fun parula_PN : PN; -fun parulidae_PN : PN; -fun parus_PN : PN; -fun parvati_PN : PN; -fun pasadena_PN : PN; -fun pascal_PN : PN; -fun pascal's_law_PN : PN; -fun pascal_compiler_PN : PN; -fun pasch_PN : PN; -fun pashto_PN : PN; -fun pasigraphy_PN : PN; -fun pasiphae_PN : PN; -fun passamaquody_PN : PN; -fun passer_PN : PN; -fun passeridae_PN : PN; -fun passeriformes_PN : PN; -fun passerina_PN : PN; -fun passero_PN : PN; -fun passiflora_PN : PN; -fun passifloraceae_PN : PN; -fun passion_PN : PN; -fun passion_sunday_PN : PN; -fun passion_play_PN : PN; -fun passover_PN : PN; -fun pasternak_PN : PN; -fun pasteur_PN : PN; -fun pasteurian_A : A; -fun pastinaca_PN : PN; -fun pastor_PN : PN; -fun pat_PN : PN; -fun patagonia_PN : PN; -fun patagonian_desert_PN : PN; -fun patella_PN : PN; -fun patellidae_PN : PN; -fun patent_and_trademark_office_database_PN : PN; -fun paternoster_PN : PN; -fun paterson_PN : PN; -fun pathan_PN : PN; -fun patience_PN : PN; -fun paton_PN : PN; -fun patrai_PN : PN; -fun patras_PN : PN; -fun patricia_PN : PN; -fun patrick_PN : PN; -fun patriot's_day_PN : PN; -fun patroclus_PN : PN; -fun patty_PN : PN; -fun patwin_PN : PN; -fun paul_PN : PN; -fun paul_iii_PN : PN; -fun paul_vi_PN : PN; -fun paula_PN : PN; -fun pauli_PN : PN; -fun pauli_exclusion_principle_PN : PN; -fun pauline_A : A; -fun pauline_PN : PN; -fun pauling_PN : PN; -fun paulo_afonso_PN : PN; -fun pauropoda_PN : PN; -fun pavarotti_PN : PN; -fun pavlov_PN : PN; -fun pavlova_PN : PN; -fun pavlovian_A : A; -fun pavo_PN : PN; -fun pawnee_PN : PN; -fun pax_romana_PN : PN; -fun paxton_PN : PN; -fun payena_PN : PN; -fun payne's_grey_PN : PN; -fun pays_de_la_loire_PN : PN; -fun pc_PN : PN; -fun peabody_PN : PN; -fun peace_corps_PN : PN; -fun peace_of_westphalia_PN : PN; -fun peacehaven_PN : PN; -fun pearl_PN : PN; -fun pearl_harbor_PN : PN; -fun pearl_river_PN : PN; -fun pearmain_PN : PN; -fun peary_PN : PN; -fun peasant's_revolt_PN : PN; -fun pecos_PN : PN; -fun pectinibranchia_PN : PN; -fun pectinidae_PN : PN; -fun pedaliaceae_PN : PN; -fun pediculati_PN : PN; -fun pediculidae_PN : PN; -fun pediculus_PN : PN; -fun pedilanthus_PN : PN; -fun pediocactus_PN : PN; -fun pedioecetes_PN : PN; -fun pedionomus_PN : PN; -fun pedipalpi_PN : PN; -fun pee_dee_PN : PN; -fun peebles_PN : PN; -fun peel_PN : PN; -fun peg_PN : PN; -fun pegasus_PN : PN; -fun peggy_PN : PN; -fun pei_PN : PN; -fun peirce_PN : PN; -fun pekinese_PN : PN; -fun peking_PN : PN; -fun peking_man_PN : PN; -fun pelagianism_PN : PN; -fun pelagius_PN : PN; -fun pelargonium_PN : PN; -fun pelecanidae_PN : PN; -fun pelecaniformes_PN : PN; -fun pelecanoididae_PN : PN; -fun pelecanus_PN : PN; -fun peleus_PN : PN; -fun pelham_PN : PN; -fun pellaea_PN : PN; -fun pellicularia_PN : PN; -fun pelobatidae_PN : PN; -fun peloponnese_PN : PN; -fun peloponnesian_A : A; -fun peloponnesian_war_PN : PN; -fun peltandra_PN : PN; -fun pelton_PN : PN; -fun pelycosauria_PN : PN; -fun pembroke_PN : PN; -fun pempheridae_PN : PN; -fun penarth_PN : PN; -fun pendlebury_PN : PN; -fun peneidae_PN : PN; -fun penelope_PN : PN; -fun peneus_PN : PN; -fun pengo_PN : PN; -fun penicillium_PN : PN; -fun penicuik_PN : PN; -fun penki_PN : PN; -fun penn_PN : PN; -fun pennatula_PN : PN; -fun pennatulidae_PN : PN; -fun pennines_PN : PN; -fun pennisetum_PN : PN; -fun pennsylvania_PN : PN; -fun pennsylvania_dutch_PN : PN; -fun pennsylvanian_PN : PN; -fun penny_PN : PN; -fun penobscot_PN : PN; -fun penobscot_bay_PN : PN; -fun penrhyn_PN : PN; -fun penrith_PN : PN; -fun penryn_PN : PN; -fun pensacola_PN : PN; -fun penstemon_PN : PN; -fun pentagon_PN : PN; -fun pentagon_gang_PN : PN; -fun pentastomida_PN : PN; -fun pentecost_PN : PN; -fun pentecostal_PN : PN; -fun pentecostal_religion_PN : PN; -fun penutian_PN : PN; -fun penzance_PN : PN; -fun people's_party_PN : PN; -fun people_against_gangsterism_and_drugs_PN : PN; -fun peoria_PN : PN; -fun pepin_PN : PN; -fun pepsi_PN : PN; -fun pepto_bismal_PN : PN; -fun pepys_PN : PN; -fun peramelidae_PN : PN; -fun perca_PN : PN; -fun percheron_PN : PN; -fun percidae_PN : PN; -fun perciformes_PN : PN; -fun percina_PN : PN; -fun percoidea_PN : PN; -fun percophidae_PN : PN; -fun percy_PN : PN; -fun perdicidae_PN : PN; -fun perdix_PN : PN; -fun perejil_PN : PN; -fun pereskia_PN : PN; -fun pergamum_PN : PN; -fun pericallis_PN : PN; -fun pericles_PN : PN; -fun peridiniidae_PN : PN; -fun peridinium_PN : PN; -fun perilla_PN : PN; -fun periophthalmus_PN : PN; -fun peripatidae_PN : PN; -fun peripatopsidae_PN : PN; -fun peripatopsis_PN : PN; -fun periplaneta_PN : PN; -fun periploca_PN : PN; -fun perisoreus_PN : PN; -fun perissodactyla_PN : PN; -fun peristediinae_PN : PN; -fun peristedion_PN : PN; -fun perm_PN : PN; -fun permalloy_PN : PN; -fun permian_PN : PN; -fun permic_PN : PN; -fun pernis_PN : PN; -fun pernod_PN : PN; -fun perodicticus_PN : PN; -fun perognathus_PN : PN; -fun peromyscus_PN : PN; -fun peron_PN : PN; -fun peronospora_PN : PN; -fun peronosporaceae_PN : PN; -fun peronosporales_PN : PN; -fun perry_PN : PN; -fun perry_mason_PN : PN; -fun persea_PN : PN; -fun persephone_PN : PN; -fun persepolis_PN : PN; -fun perseus_PN : PN; -fun pershing_PN : PN; -fun pershore_PN : PN; -fun persia_PN : PN; -fun persian_PN : PN; -fun persian_gulf_PN : PN; -fun persian_gulf_war_PN : PN; -fun persian_cat_PN : PN; -fun persian_deity_PN : PN; -fun persian_iris_PN : PN; -fun persian_lamb_PN : PN; -fun persian_lilac_PN : PN; -fun persian_melon_PN : PN; -fun persian_violet_PN : PN; -fun persoonia_PN : PN; -fun perth_PN : PN; -fun pertusaria_PN : PN; -fun pertusariaceae_PN : PN; -fun peru_PN : PN; -fun perugia_PN : PN; -fun perutz_PN : PN; -fun peruvian_A : A; -fun peruvian_PN : PN; -fun peruvian_balsam_PN : PN; -fun peruvian_cotton_PN : PN; -fun peruvian_current_PN : PN; -fun peruvian_lily_PN : PN; -fun peruvian_monetary_unit_PN : PN; -fun pescara_PN : PN; -fun pesh_merga_PN : PN; -fun peshawar_PN : PN; -fun petasites_PN : PN; -fun petaurista_PN : PN; -fun petauristidae_PN : PN; -fun petaurus_PN : PN; -fun pete_PN : PN; -fun peter_PN : PN; -fun peter_i_PN : PN; -fun peter_pan_PN : PN; -fun peter_pan_collar_PN : PN; -fun peterborough_PN : PN; -fun peterhead_PN : PN; -fun peterlee_PN : PN; -fun petersburg_PN : PN; -fun petersfield_PN : PN; -fun petrarch_PN : PN; -fun petrarchan_sonnet_PN : PN; -fun petri_dish_PN : PN; -fun petrified_forest_national_park_PN : PN; -fun petrocoptis_PN : PN; -fun petrogale_PN : PN; -fun petromyzon_PN : PN; -fun petromyzoniformes_PN : PN; -fun petromyzontidae_PN : PN; -fun petronas_towers_PN : PN; -fun petronius_PN : PN; -fun petroselinum_PN : PN; -fun petteria_PN : PN; -fun peyer's_patch_PN : PN; -fun peziza_PN : PN; -fun peziza_domicilina_PN : PN; -fun pezizaceae_PN : PN; -fun pezizales_PN : PN; -fun pezophaps_PN : PN; -fun ph_d__PN : PN; -fun phacochoerus_PN : PN; -fun phaeophyceae_PN : PN; -fun phaeophyta_PN : PN; -fun phaethon_PN : PN; -fun phaethontidae_PN : PN; -fun phagun_PN : PN; -fun phalacrocoracidae_PN : PN; -fun phalacrocorax_PN : PN; -fun phalaenopsis_PN : PN; -fun phalaenoptilus_PN : PN; -fun phalangeridae_PN : PN; -fun phalangida_PN : PN; -fun phalangiidae_PN : PN; -fun phalangium_PN : PN; -fun phalaris_PN : PN; -fun phalaropidae_PN : PN; -fun phalaropus_PN : PN; -fun phallaceae_PN : PN; -fun phallales_PN : PN; -fun phallus_PN : PN; -fun phallus_ravenelii_PN : PN; -fun phanerogamae_PN : PN; -fun phanerozoic_PN : PN; -fun pharaoh_PN : PN; -fun pharaonic_A : A; -fun pharisee_PN : PN; -fun pharomacrus_PN : PN; -fun pharsalus_PN : PN; -fun phascogale_PN : PN; -fun phascolarctos_PN : PN; -fun phaseolus_PN : PN; -fun phasianidae_PN : PN; -fun phasianus_PN : PN; -fun phasmida_PN : PN; -fun phasmidae_PN : PN; -fun phasmidia_PN : PN; -fun phegopteris_PN : PN; -fun phellodendron_PN : PN; -fun phidias_PN : PN; -fun phil_PN : PN; -fun philadelphaceae_PN : PN; -fun philadelphia_PN : PN; -fun philadelphia_fleabane_PN : PN; -fun philaenus_PN : PN; -fun philemon_PN : PN; -fun philip_PN : PN; -fun philip_ii_PN : PN; -fun philip_v_PN : PN; -fun philip_vi_PN : PN; -fun philippa_PN : PN; -fun philippi_PN : PN; -fun philippian_PN : PN; -fun philippine_PN : PN; -fun philippine_sea_PN : PN; -fun philippine_mahogany_PN : PN; -fun philippine_monetary_unit_PN : PN; -fun philippine_peso_PN : PN; -fun philippines_PN : PN; -fun philistia_PN : PN; -fun philistine_A : A; -fun philistine_PN : PN; -fun phillips_screw_PN : PN; -fun phillips_screwdriver_PN : PN; -fun phillyrea_PN : PN; -fun philohela_PN : PN; -fun philomachus_PN : PN; -fun philophylla_PN : PN; -fun phintias_PN : PN; -fun phlebodium_PN : PN; -fun phlebotomus_PN : PN; -fun phleum_PN : PN; -fun phnom_penh_PN : PN; -fun phobos_PN : PN; -fun phoca_PN : PN; -fun phocidae_PN : PN; -fun phocoena_PN : PN; -fun phoebe_PN : PN; -fun phoenicia_PN : PN; -fun phoenician_A : A; -fun phoenician_PN : PN; -fun phoenicopteridae_PN : PN; -fun phoeniculidae_PN : PN; -fun phoeniculus_PN : PN; -fun phoenicurus_PN : PN; -fun phoenix_PN : PN; -fun pholadidae_PN : PN; -fun pholas_PN : PN; -fun pholidae_PN : PN; -fun pholidota_PN : PN; -fun pholiota_PN : PN; -fun pholiota_astragalina_PN : PN; -fun pholiota_aurea_PN : PN; -fun pholiota_destruens_PN : PN; -fun pholiota_flammans_PN : PN; -fun pholiota_flavida_PN : PN; -fun pholiota_squarrosa_PN : PN; -fun pholiota_squarrosa_adiposa_PN : PN; -fun pholiota_squarrosoides_PN : PN; -fun pholis_PN : PN; -fun pholistoma_PN : PN; -fun phoradendron_PN : PN; -fun phoronida_PN : PN; -fun photinia_PN : PN; -fun photius_PN : PN; -fun photoblepharon_PN : PN; -fun photostat_PN : PN; -fun phoxinus_PN : PN; -fun phragmipedium_PN : PN; -fun phragmites_PN : PN; -fun phrygia_PN : PN; -fun phrygian_PN : PN; -fun phrygian_deity_PN : PN; -fun phrynosoma_PN : PN; -fun phthiriidae_PN : PN; -fun phthirius_PN : PN; -fun phthorimaea_PN : PN; -fun phycomycetes_PN : PN; -fun phyllidae_PN : PN; -fun phyllis_PN : PN; -fun phyllitis_PN : PN; -fun phyllium_PN : PN; -fun phyllocladaceae_PN : PN; -fun phyllocladus_PN : PN; -fun phyllodoce_PN : PN; -fun phylloporus_PN : PN; -fun phylloporus_boletinoides_PN : PN; -fun phyllorhynchus_PN : PN; -fun phylloscopus_PN : PN; -fun phyllostachys_PN : PN; -fun phyllostomidae_PN : PN; -fun phyllostomus_PN : PN; -fun phyllostomus_hastatus_PN : PN; -fun phylloxera_PN : PN; -fun phylloxeridae_PN : PN; -fun physalia_PN : PN; -fun physalis_PN : PN; -fun physaria_PN : PN; -fun physeter_PN : PN; -fun physeteridae_PN : PN; -fun physidae_PN : PN; -fun physostigma_PN : PN; -fun phytolacca_PN : PN; -fun phytolaccaceae_PN : PN; -fun phytomastigina_PN : PN; -fun phytophthora_PN : PN; -fun phytophthora_citrophthora_PN : PN; -fun phytophthora_infestans_PN : PN; -fun piacenza_PN : PN; -fun piaf_PN : PN; -fun piaget_PN : PN; -fun piagetian_A : A; -fun pica_PN : PN; -fun picardie_PN : PN; -fun picariae_PN : PN; -fun picasso_PN : PN; -fun picea_PN : PN; -fun picidae_PN : PN; -fun piciformes_PN : PN; -fun pick's_disease_PN : PN; -fun pickeringia_PN : PN; -fun pickett_PN : PN; -fun pickford_PN : PN; -fun picoides_PN : PN; -fun picrasma_PN : PN; -fun picris_PN : PN; -fun pictor_PN : PN; -fun picumnus_PN : PN; -fun picus_PN : PN; -fun pied_piper_PN : PN; -fun piedmont_PN : PN; -fun piedmont_glacier_PN : PN; -fun pierce_PN : PN; -fun pieridae_PN : PN; -fun pieris_PN : PN; -fun pierre_PN : PN; -fun pierre_laporte_bridge_PN : PN; -fun pierrot_PN : PN; -fun pietism_PN : PN; -fun pike's_peak_PN : PN; -fun pilate_PN : PN; -fun pilea_PN : PN; -fun pilgrim_PN : PN; -fun pilgrim's_progress_PN : PN; -fun pill_PN : PN; -fun pillars_of_hercules_PN : PN; -fun pilosella_PN : PN; -fun pilsen_PN : PN; -fun pilsner_PN : PN; -fun piltdown_man_PN : PN; -fun pilularia_PN : PN; -fun pima_PN : PN; -fun pimenta_PN : PN; -fun pimlico_PN : PN; -fun pimpinella_PN : PN; -fun pinaceae_PN : PN; -fun pinatubo_PN : PN; -fun pinckneya_PN : PN; -fun pinctada_PN : PN; -fun pincus_PN : PN; -fun pindar_PN : PN; -fun pindaric_ode_PN : PN; -fun pine_bluff_PN : PN; -fun pineus_PN : PN; -fun ping_PN : PN; -fun pinguicula_PN : PN; -fun pinguinus_PN : PN; -fun pinicola_PN : PN; -fun pinnipedia_PN : PN; -fun pinnotheres_PN : PN; -fun pinnotheridae_PN : PN; -fun pinopsida_PN : PN; -fun pinot_PN : PN; -fun pinot_blanc_PN : PN; -fun pinot_noir_PN : PN; -fun pinsk_PN : PN; -fun pinter_PN : PN; -fun pinus_PN : PN; -fun pipa_PN : PN; -fun piper_PN : PN; -fun piperaceae_PN : PN; -fun piperales_PN : PN; -fun pipidae_PN : PN; -fun pipile_PN : PN; -fun pipilo_PN : PN; -fun pipistrellus_PN : PN; -fun pippin_PN : PN; -fun pipra_PN : PN; -fun pipridae_PN : PN; -fun piptadenia_PN : PN; -fun pipturus_PN : PN; -fun pipturus_albidus_PN : PN; -fun piqueria_PN : PN; -fun piraeus_PN : PN; -fun pirandello_PN : PN; -fun piranga_PN : PN; -fun pisa_PN : PN; -fun pisces_PN : PN; -fun piscidia_PN : PN; -fun pisonia_PN : PN; -fun pissis_PN : PN; -fun pistacia_PN : PN; -fun piston_PN : PN; -fun pisum_PN : PN; -fun pithecanthropus_PN : PN; -fun pithecellobium_PN : PN; -fun pithecia_PN : PN; -fun pitman_PN : PN; -fun pitot_PN : PN; -fun pitot_static_tube_PN : PN; -fun pitot_tube_PN : PN; -fun pitt_PN : PN; -fun pittidae_PN : PN; -fun pittsburgh_PN : PN; -fun pittsfield_PN : PN; -fun pituophis_PN : PN; -fun pitymys_PN : PN; -fun pityrogramma_PN : PN; -fun pius_ii_PN : PN; -fun pius_ix_PN : PN; -fun pius_v_PN : PN; -fun pius_vi_PN : PN; -fun pius_vii_PN : PN; -fun pius_x_PN : PN; -fun pius_xi_PN : PN; -fun pius_xii_PN : PN; -fun pizarro_PN : PN; -fun placodermi_PN : PN; -fun placuna_PN : PN; -fun plagianthus_PN : PN; -fun plains_indian_PN : PN; -fun planck_PN : PN; -fun planck's_constant_PN : PN; -fun planck's_law_PN : PN; -fun planck's_radiation_law_PN : PN; -fun planera_PN : PN; -fun plano_PN : PN; -fun planococcus_PN : PN; -fun plantae_PN : PN; -fun plantagenet_PN : PN; -fun plantaginaceae_PN : PN; -fun plantaginales_PN : PN; -fun plantago_PN : PN; -fun plantation_PN : PN; -fun plasmodiidae_PN : PN; -fun plasmodiophora_PN : PN; -fun plasmodiophoraceae_PN : PN; -fun plassey_PN : PN; -fun plasticine_PN : PN; -fun plataea_PN : PN; -fun platalea_PN : PN; -fun plataleidae_PN : PN; -fun platanaceae_PN : PN; -fun platanistidae_PN : PN; -fun platanthera_PN : PN; -fun platanus_PN : PN; -fun plath_PN : PN; -fun platichthys_PN : PN; -fun plato_PN : PN; -fun plato's_academy_PN : PN; -fun platonic_A : A; -fun platonism_PN : PN; -fun platonist_PN : PN; -fun platonistic_A : A; -fun platt_national_park_PN : PN; -fun platte_PN : PN; -fun platte_river_penstemon_PN : PN; -fun platycephalidae_PN : PN; -fun platycerium_PN : PN; -fun platyctenea_PN : PN; -fun platyhelminthes_PN : PN; -fun platylobium_PN : PN; -fun platymiscium_PN : PN; -fun platypoecilus_PN : PN; -fun platyrrhini_PN : PN; -fun platystemon_PN : PN; -fun plautus_PN : PN; -fun plc_PN : PN; -fun plecoptera_PN : PN; -fun plecotus_PN : PN; -fun plectania_PN : PN; -fun plectognathi_PN : PN; -fun plectomycetes_PN : PN; -fun plectophera_PN : PN; -fun plectorrhiza_PN : PN; -fun plectrophenax_PN : PN; -fun pleiades_PN : PN; -fun pleione_PN : PN; -fun pleiospilos_PN : PN; -fun pleistocene_PN : PN; -fun plesianthropus_PN : PN; -fun plesiosauria_PN : PN; -fun plethodon_PN : PN; -fun plethodontidae_PN : PN; -fun pleurobrachia_PN : PN; -fun pleurobrachiidae_PN : PN; -fun pleuronectes_PN : PN; -fun pleuronectidae_PN : PN; -fun pleurosorus_PN : PN; -fun pleurotus_PN : PN; -fun plevna_PN : PN; -fun plexiglas_PN : PN; -fun plicatoperipatus_PN : PN; -fun plicatoperipatus_jamaicensis_PN : PN; -fun plinian_eruption_PN : PN; -fun pliny_PN : PN; -fun pliocene_PN : PN; -fun ploceidae_PN : PN; -fun ploceus_PN : PN; -fun plotinus_PN : PN; -fun plott_hound_PN : PN; -fun plovdiv_PN : PN; -fun plumbaginaceae_PN : PN; -fun plumbaginales_PN : PN; -fun plumeria_PN : PN; -fun plutarch_PN : PN; -fun pluteaceae_PN : PN; -fun pluteus_PN : PN; -fun pluteus_aurantiorugosus_PN : PN; -fun pluteus_magnus_PN : PN; -fun pluto_PN : PN; -fun pluvialis_PN : PN; -fun pluvianus_PN : PN; -fun pluviose_PN : PN; -fun plymouth_PN : PN; -fun plymouth_colony_PN : PN; -fun plymouth_rock_PN : PN; -fun po_PN : PN; -fun poa_PN : PN; -fun pobeda_peak_PN : PN; -fun pocahontas_PN : PN; -fun pocatello_PN : PN; -fun podalyria_PN : PN; -fun podargidae_PN : PN; -fun podargus_PN : PN; -fun podaxaceae_PN : PN; -fun podiceps_PN : PN; -fun podicipedidae_PN : PN; -fun podicipitiformes_PN : PN; -fun podilymbus_PN : PN; -fun podocarpaceae_PN : PN; -fun podocarpus_PN : PN; -fun podophyllum_PN : PN; -fun poe_PN : PN; -fun poeciliidae_PN : PN; -fun poecilocapsus_PN : PN; -fun poecilogale_PN : PN; -fun poephila_PN : PN; -fun pogonophora_PN : PN; -fun pogostemon_PN : PN; -fun poinciana_PN : PN; -fun poisson_distribution_PN : PN; -fun poitier_PN : PN; -fun poitiers_PN : PN; -fun poitou_charentes_PN : PN; -fun pokomo_PN : PN; -fun poland_PN : PN; -fun polanisia_PN : PN; -fun polaris_PN : PN; -fun polaroid_PN : PN; -fun polaroid_camera_PN : PN; -fun pole_PN : PN; -fun polemoniaceae_PN : PN; -fun polemoniales_PN : PN; -fun polianthes_PN : PN; -fun polioptila_PN : PN; -fun polish_A : A; -fun polish_PN : PN; -fun polish_monetary_unit_PN : PN; -fun polistes_PN : PN; -fun polistes_annularis_PN : PN; -fun polk_PN : PN; -fun pollachius_PN : PN; -fun pollack_PN : PN; -fun pollock_PN : PN; -fun pollux_PN : PN; -fun polly_PN : PN; -fun polo_PN : PN; -fun polyangiaceae_PN : PN; -fun polyangium_PN : PN; -fun polyborus_PN : PN; -fun polybotrya_PN : PN; -fun polycarp_PN : PN; -fun polychaeta_PN : PN; -fun polycirrus_PN : PN; -fun polydactylus_PN : PN; -fun polyergus_PN : PN; -fun polygala_PN : PN; -fun polygalaceae_PN : PN; -fun polygonaceae_PN : PN; -fun polygonales_PN : PN; -fun polygonatum_PN : PN; -fun polygonia_PN : PN; -fun polygonum_PN : PN; -fun polyhymnia_PN : PN; -fun polymastigina_PN : PN; -fun polynemidae_PN : PN; -fun polynesia_PN : PN; -fun polynesian_A : A; -fun polynesian_PN : PN; -fun polynesian_tattler_PN : PN; -fun polyodon_PN : PN; -fun polyodontidae_PN : PN; -fun polypedates_PN : PN; -fun polypedatidae_PN : PN; -fun polyplacophora_PN : PN; -fun polypodiaceae_PN : PN; -fun polypodium_PN : PN; -fun polyporaceae_PN : PN; -fun polyporus_PN : PN; -fun polyporus_squamosus_PN : PN; -fun polyporus_tenuiculus_PN : PN; -fun polyprion_PN : PN; -fun polystichum_PN : PN; -fun pomacanthus_PN : PN; -fun pomacentridae_PN : PN; -fun pomacentrus_PN : PN; -fun pomaderris_PN : PN; -fun pomatomidae_PN : PN; -fun pomatomus_PN : PN; -fun pomeranian_PN : PN; -fun pomo_PN : PN; -fun pomolobus_PN : PN; -fun pomoxis_PN : PN; -fun pompadour_PN : PN; -fun pompeii_PN : PN; -fun pompey_PN : PN; -fun ponca_PN : PN; -fun ponce_de_leon_PN : PN; -fun poncirus_PN : PN; -fun pongamia_PN : PN; -fun pongidae_PN : PN; -fun pongo_PN : PN; -fun pons_PN : PN; -fun ponselle_PN : PN; -fun pont_llan_fraith_PN : PN; -fun pontardawe_PN : PN; -fun pontardulais_PN : PN; -fun ponte_25_de_abril_PN : PN; -fun pontederia_PN : PN; -fun pontederiaceae_PN : PN; -fun pontefract_PN : PN; -fun pontiac_PN : PN; -fun pontus_PN : PN; -fun pontycymmer_PN : PN; -fun pontypool_PN : PN; -fun pooecetes_PN : PN; -fun poole_PN : PN; -fun poona_PN : PN; -fun pop_art_PN : PN; -fun pope_PN : PN; -fun popillia_PN : PN; -fun poplar_bluff_PN : PN; -fun popper_PN : PN; -fun popular_front_for_the_liberation_of_palestine_PN : PN; -fun popular_front_for_the_liberation_of_palestine_general_command_PN : PN; -fun popular_struggle_front_PN : PN; -fun population_commission_PN : PN; -fun populus_PN : PN; -fun porcellio_PN : PN; -fun porcellionidae_PN : PN; -fun porifera_PN : PN; -fun poronotus_PN : PN; -fun porphyra_PN : PN; -fun porphyrio_PN : PN; -fun porphyrula_PN : PN; -fun port_arthur_PN : PN; -fun port_jackson_fig_PN : PN; -fun port_jackson_heath_PN : PN; -fun port_jackson_pine_PN : PN; -fun port_louis_PN : PN; -fun port_moresby_PN : PN; -fun port_orford_cedar_PN : PN; -fun port_sudan_PN : PN; -fun port_vila_PN : PN; -fun port_au_prince_PN : PN; -fun port_glasgow_PN : PN; -fun port_of_spain_PN : PN; -fun port_talbot_PN : PN; -fun porte_PN : PN; -fun porter_PN : PN; -fun porthcawl_PN : PN; -fun porthmadog_PN : PN; -fun portishead_PN : PN; -fun portland_PN : PN; -fun porto_PN : PN; -fun porto_novo_PN : PN; -fun porto_alegre_PN : PN; -fun portsmouth_PN : PN; -fun portugal_PN : PN; -fun portuguese_A : A; -fun portuguese_PN : PN; -fun portuguese_escudo_PN : PN; -fun portuguese_man_of_war_PN : PN; -fun portuguese_monetary_unit_PN : PN; -fun portulacaceae_PN : PN; -fun portunidae_PN : PN; -fun portunus_PN : PN; -fun porzana_PN : PN; -fun poseidon_PN : PN; -fun post_PN : PN; -fun post_it_PN : PN; -fun post_office_box_PN : PN; -fun postal_rate_commission_PN : PN; -fun postimpressionist_PN : PN; -fun postum_PN : PN; -fun potamogalidae_PN : PN; -fun potamogeton_PN : PN; -fun potamogetonaceae_PN : PN; -fun potamophis_PN : PN; -fun potawatomi_PN : PN; -fun potemkin_PN : PN; -fun potemkin_village_PN : PN; -fun potentilla_PN : PN; -fun poterium_PN : PN; -fun potomac_PN : PN; -fun potoroinae_PN : PN; -fun potorous_PN : PN; -fun potos_PN : PN; -fun potsdam_PN : PN; -fun potsdam_conference_PN : PN; -fun pott's_disease_PN : PN; -fun potters_bar_PN : PN; -fun poulenc_PN : PN; -fun pound_PN : PN; -fun poussin_PN : PN; -fun pouteria_PN : PN; -fun powell_PN : PN; -fun powhatan_PN : PN; -fun powys_PN : PN; -fun poyang_PN : PN; -fun poynton_PN : PN; -fun poznan_PN : PN; -fun praetorian_A : A; -fun praetorian_guard_PN : PN; -fun prague_PN : PN; -fun praia_PN : PN; -fun prairial_PN : PN; -fun prajapati_PN : PN; -fun prakrit_PN : PN; -fun prakritic_A : A; -fun prato_PN : PN; -fun praunus_PN : PN; -fun praxiteles_PN : PN; -fun prayer_of_azariah_and_song_of_the_three_children_PN : PN; -fun pre_raphaelite_A : A; -fun pre_raphaelite_PN : PN; -fun preakness_PN : PN; -fun precambrian_PN : PN; -fun premium_bond_PN : PN; -fun prenanthes_PN : PN; -fun presbyterian_PN : PN; -fun presbyterian_church_PN : PN; -fun presbyterianism_PN : PN; -fun presbytes_PN : PN; -fun prescot_PN : PN; -fun prescott_PN : PN; -fun president_of_the_united_states_PN : PN; -fun presidential_directive_PN : PN; -fun presidents'_day_PN : PN; -fun presley_PN : PN; -fun prestatyn_PN : PN; -fun preston_PN : PN; -fun prestonpans_PN : PN; -fun prestwich_PN : PN; -fun prestwick_PN : PN; -fun pretender_PN : PN; -fun pretoria_PN : PN; -fun priacanthidae_PN : PN; -fun priacanthus_PN : PN; -fun priam_PN : PN; -fun priapus_PN : PN; -fun price_PN : PN; -fun priestley_PN : PN; -fun prima_PN : PN; -fun primates_PN : PN; -fun primaxin_PN : PN; -fun prime_minister_PN : PN; -fun primulaceae_PN : PN; -fun primulales_PN : PN; -fun primus_stove_PN : PN; -fun prince_albert_PN : PN; -fun prince_albert_yew_PN : PN; -fun prince_edward_island_PN : PN; -fun prince_of_wales_PN : PN; -fun prince_of_wales'_heath_PN : PN; -fun princes_risborough_PN : PN; -fun princeton_PN : PN; -fun princeton_university_PN : PN; -fun principe_PN : PN; -fun prinia_PN : PN; -fun priodontes_PN : PN; -fun prionace_PN : PN; -fun prionotus_PN : PN; -fun priscilla_PN : PN; -fun pristidae_PN : PN; -fun pristis_PN : PN; -fun pritzelago_PN : PN; -fun prix_goncourt_PN : PN; -fun prix_de_rome_PN : PN; -fun proboscidea_PN : PN; -fun procavia_PN : PN; -fun procaviidae_PN : PN; -fun procellaria_PN : PN; -fun procellariidae_PN : PN; -fun procellariiformes_PN : PN; -fun prociphilus_PN : PN; -fun procnias_PN : PN; -fun procrustean_A : A; -fun procrustes_PN : PN; -fun procyon_PN : PN; -fun procyonidae_PN : PN; -fun prof_PN : PN; -fun progne_PN : PN; -fun progressive_party_PN : PN; -fun prohibition_party_PN : PN; -fun prokhorov_PN : PN; -fun prokofiev_PN : PN; -fun prolog_PN : PN; -fun prometheus_PN : PN; -fun promised_land_PN : PN; -fun prophets_PN : PN; -fun prosauropoda_PN : PN; -fun proserpina_PN : PN; -fun prosimii_PN : PN; -fun prosopis_PN : PN; -fun prosopium_PN : PN; -fun proteaceae_PN : PN; -fun proteales_PN : PN; -fun proteidae_PN : PN; -fun proteles_PN : PN; -fun proterochampsa_PN : PN; -fun proterozoic_PN : PN; -fun protestant_A : A; -fun protestant_PN : PN; -fun protestant_church_PN : PN; -fun protestant_denomination_PN : PN; -fun protestantism_PN : PN; -fun proteus_PN : PN; -fun protista_PN : PN; -fun protium_PN : PN; -fun protium_guianense_PN : PN; -fun protium_heptaphyllum_PN : PN; -fun proto_indo_european_PN : PN; -fun proto_norse_PN : PN; -fun protoctista_PN : PN; -fun prototheria_PN : PN; -fun protozoa_PN : PN; -fun protropin_PN : PN; -fun protura_PN : PN; -fun proudhon_PN : PN; -fun proust_PN : PN; -fun proustian_A : A; -fun provencal_PN : PN; -fun provence_PN : PN; -fun proverbs_PN : PN; -fun providence_PN : PN; -fun provo_PN : PN; -fun proxima_PN : PN; -fun pru_PN : PN; -fun prudence_PN : PN; -fun prudhoe_PN : PN; -fun prudhoe_bay_PN : PN; -fun prumnopitys_PN : PN; -fun prunella_PN : PN; -fun prunellidae_PN : PN; -fun prunus_PN : PN; -fun prussia_PN : PN; -fun prussian_A : A; -fun prussian_PN : PN; -fun prussian_blue_PN : PN; -fun przewalski's_horse_PN : PN; -fun psalm_PN : PN; -fun psalms_PN : PN; -fun psalter_PN : PN; -fun psaltriparus_PN : PN; -fun psenes_PN : PN; -fun psephurus_PN : PN; -fun psetta_PN : PN; -fun psettichthys_PN : PN; -fun pseudacris_PN : PN; -fun pseudaletia_PN : PN; -fun pseudechis_PN : PN; -fun pseudemys_PN : PN; -fun pseudepigrapha_PN : PN; -fun pseudobombax_PN : PN; -fun pseudococcidae_PN : PN; -fun pseudococcus_PN : PN; -fun pseudocolus_PN : PN; -fun pseudolarix_PN : PN; -fun pseudomonadales_PN : PN; -fun pseudomonas_PN : PN; -fun pseudomonas_pyocanea_PN : PN; -fun pseudomonodaceae_PN : PN; -fun pseudopleuronectes_PN : PN; -fun pseudoryx_PN : PN; -fun pseudotaxus_PN : PN; -fun pseudotsuga_PN : PN; -fun pseudowintera_PN : PN; -fun psidium_PN : PN; -fun psilophytaceae_PN : PN; -fun psilophytales_PN : PN; -fun psilopsida_PN : PN; -fun psilotaceae_PN : PN; -fun psilotales_PN : PN; -fun psilotum_PN : PN; -fun psithyrus_PN : PN; -fun psittacidae_PN : PN; -fun psittaciformes_PN : PN; -fun psittacula_PN : PN; -fun psittacus_PN : PN; -fun psocidae_PN : PN; -fun psocoptera_PN : PN; -fun psophia_PN : PN; -fun psophiidae_PN : PN; -fun psophocarpus_PN : PN; -fun psoralea_PN : PN; -fun psyche_PN : PN; -fun psychodidae_PN : PN; -fun psychopsis_PN : PN; -fun psychopsis_krameriana_PN : PN; -fun psychopsis_papilio_PN : PN; -fun psychotria_PN : PN; -fun psyllidae_PN : PN; -fun ptah_PN : PN; -fun pte_PN : PN; -fun pteridaceae_PN : PN; -fun pteridium_PN : PN; -fun pteridophyta_PN : PN; -fun pteridospermae_PN : PN; -fun pteridospermopsida_PN : PN; -fun pteriidae_PN : PN; -fun pteris_PN : PN; -fun pteris_cretica_PN : PN; -fun pternohyla_PN : PN; -fun pterocarpus_PN : PN; -fun pterocarya_PN : PN; -fun pterocles_PN : PN; -fun pteroclididae_PN : PN; -fun pterocnemia_PN : PN; -fun pterodactylidae_PN : PN; -fun pterodactylus_PN : PN; -fun pterois_PN : PN; -fun pteropsida_PN : PN; -fun pteropus_PN : PN; -fun pteropus_capestratus_PN : PN; -fun pteropus_hypomelanus_PN : PN; -fun pterosauria_PN : PN; -fun pterospermum_PN : PN; -fun pterostylis_PN : PN; -fun ptilocercus_PN : PN; -fun ptilocrinus_PN : PN; -fun ptilonorhynchidae_PN : PN; -fun ptilonorhynchus_PN : PN; -fun ptloris_PN : PN; -fun pto_PN : PN; -fun ptolemaic_A : A; -fun ptolemaic_system_PN : PN; -fun ptolemy_PN : PN; -fun ptolemy_i_PN : PN; -fun ptolemy_ii_PN : PN; -fun pty_PN : PN; -fun ptyas_PN : PN; -fun ptychozoon_PN : PN; -fun puccini_PN : PN; -fun puccinia_PN : PN; -fun pucciniaceae_PN : PN; -fun puck_PN : PN; -fun pudsey_PN : PN; -fun puebla_PN : PN; -fun pueblo_PN : PN; -fun pueraria_PN : PN; -fun puerto_rican_PN : PN; -fun puerto_rico_PN : PN; -fun puffinus_PN : PN; -fun puget_sound_PN : PN; -fun pugin_PN : PN; -fun puglia_PN : PN; -fun pujunan_PN : PN; -fun puka_inti_PN : PN; -fun pulex_PN : PN; -fun pulex_irritans_PN : PN; -fun pulicaria_PN : PN; -fun pulicidae_PN : PN; -fun pulitzer_PN : PN; -fun pullman_PN : PN; -fun pulmonata_PN : PN; -fun pulsatilla_PN : PN; -fun punic_PN : PN; -fun punic_war_PN : PN; -fun punica_PN : PN; -fun punicaceae_PN : PN; -fun punjab_PN : PN; -fun punjabi_PN : PN; -fun punta_arenas_PN : PN; -fun puppis_PN : PN; -fun purace_PN : PN; -fun purana_PN : PN; -fun puranic_A : A; -fun purcell_PN : PN; -fun purim_PN : PN; -fun puritan_PN : PN; -fun puritanism_PN : PN; -fun purkinje_PN : PN; -fun purkinje_cell_PN : PN; -fun purkinje_fiber_PN : PN; -fun purkinje_network_PN : PN; -fun purus_PN : PN; -fun pus_PN : PN; -fun pusan_PN : PN; -fun pusey_PN : PN; -fun pushan_PN : PN; -fun pushkin_PN : PN; -fun putin_PN : PN; -fun putrajaya_PN : PN; -fun pwllheli_PN : PN; -fun pycnanthemum_PN : PN; -fun pycnogonida_PN : PN; -fun pydna_PN : PN; -fun pygmalion_PN : PN; -fun pygmy_PN : PN; -fun pygopodidae_PN : PN; -fun pygopus_PN : PN; -fun pygoscelis_PN : PN; -fun pyle_PN : PN; -fun pylodictus_PN : PN; -fun pynchon_PN : PN; -fun pyongyang_PN : PN; -fun pyracantha_PN : PN; -fun pyralidae_PN : PN; -fun pyralis_PN : PN; -fun pyramid_PN : PN; -fun pyrausta_PN : PN; -fun pyrenees_PN : PN; -fun pyrenees_daisy_PN : PN; -fun pyrenomycetes_PN : PN; -fun pyrethrum_PN : PN; -fun pyrex_PN : PN; -fun pyrocephalus_PN : PN; -fun pyrolaceae_PN : PN; -fun pyrophorus_PN : PN; -fun pyrrhic_victory_PN : PN; -fun pyrrhocoridae_PN : PN; -fun pyrrhula_PN : PN; -fun pyrrhus_PN : PN; -fun pyrrophyta_PN : PN; -fun pyrrosia_PN : PN; -fun pyrularia_PN : PN; -fun pyrus_PN : PN; -fun pythagoras_PN : PN; -fun pythagorean_A : A; -fun pythia_PN : PN; -fun pythiaceae_PN : PN; -fun pythian_games_PN : PN; -fun pythius_PN : PN; -fun python_PN : PN; -fun pythonidae_PN : PN; -fun pythoninae_PN : PN; -fun pyxidanthera_PN : PN; -fun pyxis_PN : PN; -fun q_PN : PN; -fun qwerty_keyboard_PN : PN; -fun q_fever_PN : PN; -fun qaddafi_PN : PN; -fun qassam_brigades_PN : PN; -fun qatar_PN : PN; -fun qatari_A : A; -fun qatari_PN : PN; -fun qatari_dirham_PN : PN; -fun qatari_monetary_unit_PN : PN; -fun qatari_riyal_PN : PN; -fun qed_PN : PN; -fun qiang_PN : PN; -fun qibla_PN : PN; -fun qin_PN : PN; -fun qin_shi_huang_ti_PN : PN; -fun qing_PN : PN; -fun quadragesima_PN : PN; -fun quai_d'orsay_PN : PN; -fun quaker_gun_PN : PN; -fun quakerism_PN : PN; -fun quaoar_PN : PN; -fun quapaw_PN : PN; -fun quaternary_PN : PN; -fun quebec_PN : PN; -fun quebec_bridge_PN : PN; -fun quebecois_A : A; -fun quebecois_PN : PN; -fun quechua_PN : PN; -fun quechuan_A : A; -fun queckenstedt's_test_PN : PN; -fun queen's_counsel_PN : PN; -fun queen's_crape_myrtle_PN : PN; -fun queen_charlotte_sound_PN : PN; -fun queen_maud_land_PN : PN; -fun queen_of_england_PN : PN; -fun queenborough_in_sheppey_PN : PN; -fun queens_PN : PN; -fun queensboro_bridge_PN : PN; -fun queensbury_PN : PN; -fun queensferry_PN : PN; -fun queensland_PN : PN; -fun queensland_bottletree_PN : PN; -fun queensland_grass_cloth_plant_PN : PN; -fun queensland_hemp_PN : PN; -fun queensland_nut_PN : PN; -fun quentin_PN : PN; -fun quercus_PN : PN; -fun quetzalcoatl_PN : PN; -fun quezon_city_PN : PN; -fun quiche_PN : PN; -fun quincy_PN : PN; -fun quine_PN : PN; -fun quinquagesima_PN : PN; -fun quintana_roo_PN : PN; -fun quiscalus_PN : PN; -fun quito_PN : PN; -fun qum_PN : PN; -fun quoratean_PN : PN; -fun qv_PN : PN; -fun r_PN : PN; -fun ram_disk_PN : PN; -fun rem_PN : PN; -fun r_2_PN : PN; -fun ra_PN : PN; -fun rabat_PN : PN; -fun rabbi_PN : PN; -fun rabelais_PN : PN; -fun rabelaisian_A : A; -fun rabi_i_PN : PN; -fun rabi_ii_PN : PN; -fun rachel_PN : PN; -fun rachmaninoff_PN : PN; -fun rachycentridae_PN : PN; -fun rachycentron_PN : PN; -fun racine_PN : PN; -fun rada_PN : PN; -fun radcliffe_PN : PN; -fun radcliffe_on_trent_PN : PN; -fun radhakrishnan_PN : PN; -fun radiigera_PN : PN; -fun radiigera_fuscogleba_PN : PN; -fun radiolaria_PN : PN; -fun radlett_PN : PN; -fun radstock_PN : PN; -fun radyera_PN : PN; -fun raffia_PN : PN; -fun raffles_PN : PN; -fun rafflesiaceae_PN : PN; -fun rahu_PN : PN; -fun rain_in_the_face_PN : PN; -fun rainford_PN : PN; -fun raja_PN : PN; -fun rajab_PN : PN; -fun rajidae_PN : PN; -fun rajiformes_PN : PN; -fun rajput_PN : PN; -fun rakaposhi_PN : PN; -fun raleigh_PN : PN; -fun rallidae_PN : PN; -fun ralph_PN : PN; -fun rama_PN : PN; -fun ramachandra_PN : PN; -fun ramadan_PN : PN; -fun ramalina_PN : PN; -fun ramanavami_PN : PN; -fun ramayana_PN : PN; -fun rambouillet_PN : PN; -fun rameau_PN : PN; -fun rameses_PN : PN; -fun rameses_ii_PN : PN; -fun ramman_PN : PN; -fun ramon_y_cajal_PN : PN; -fun ramphastidae_PN : PN; -fun ramphomicron_PN : PN; -fun ramsay_hunt_syndrome_PN : PN; -fun ramsbottom_PN : PN; -fun ramsgate_PN : PN; -fun rana_PN : PN; -fun ranales_PN : PN; -fun ranatra_PN : PN; -fun rand_PN : PN; -fun randolph_PN : PN; -fun rangifer_PN : PN; -fun rangoon_PN : PN; -fun ranidae_PN : PN; -fun ranier_PN : PN; -fun rankin_PN : PN; -fun rankine_PN : PN; -fun rankine_scale_PN : PN; -fun ranunculaceae_PN : PN; -fun ranunculus_PN : PN; -fun ranvier's_nodes_PN : PN; -fun raoulia_PN : PN; -fun rapateaceae_PN : PN; -fun raphael_PN : PN; -fun raphanus_PN : PN; -fun raphicerus_PN : PN; -fun raphidae_PN : PN; -fun raphidiidae_PN : PN; -fun raphus_PN : PN; -fun rapid_city_PN : PN; -fun rappahannock_PN : PN; -fun raptores_PN : PN; -fun rasht_PN : PN; -fun rashtriya_swayamsevak_sangh_PN : PN; -fun rask_PN : PN; -fun raskolnikov_PN : PN; -fun rasmussen_PN : PN; -fun rasputin_PN : PN; -fun rastafari_PN : PN; -fun rastafarian_A : A; -fun rastafarian_PN : PN; -fun rastafarianism_PN : PN; -fun ratibida_PN : PN; -fun ratitae_PN : PN; -fun rattigan_PN : PN; -fun rattus_PN : PN; -fun ravel_PN : PN; -fun ravenna_PN : PN; -fun ravenna_grass_PN : PN; -fun rawalpindi_PN : PN; -fun rawtenstall_PN : PN; -fun ray_PN : PN; -fun rayleigh_PN : PN; -fun rayleigh_disk_PN : PN; -fun raymond_PN : PN; -fun rc_PN : PN; -fun rd_PN : PN; -fun read_method_of_childbirth_PN : PN; -fun reading_PN : PN; -fun reagan_PN : PN; -fun reagan_administration_PN : PN; -fun real_estate_investment_trust_PN : PN; -fun real_ira_PN : PN; -fun realtor_PN : PN; -fun reaumur_PN : PN; -fun reaumur_scale_PN : PN; -fun reaumur_thermometer_PN : PN; -fun rebecca_PN : PN; -fun rebel_PN : PN; -fun rec_PN : PN; -fun recd_PN : PN; -fun received_pronunciation_PN : PN; -fun recife_PN : PN; -fun recklinghausen_PN : PN; -fun reconstruction_PN : PN; -fun recurvirostra_PN : PN; -fun recurvirostridae_PN : PN; -fun red_PN : PN; -fun red_army_faction_PN : PN; -fun red_brigades_PN : PN; -fun red_cloud_PN : PN; -fun red_cross_PN : PN; -fun red_delicious_PN : PN; -fun red_guard_PN : PN; -fun red_hand_defenders_PN : PN; -fun red_sea_PN : PN; -fun red_tai_PN : PN; -fun redbridge_PN : PN; -fun redding_PN : PN; -fun redditch_PN : PN; -fun redford_PN : PN; -fun rediffusion_PN : PN; -fun redonda_PN : PN; -fun redruth_PN : PN; -fun redskin_PN : PN; -fun reduviidae_PN : PN; -fun redwood_national_park_PN : PN; -fun reed_PN : PN; -fun reform_jew_PN : PN; -fun reform_judaism_PN : PN; -fun reformation_PN : PN; -fun reg_PN : PN; -fun regalecidae_PN : PN; -fun regency_PN : PN; -fun regensburg_PN : PN; -fun reggane_PN : PN; -fun regina_PN : PN; -fun reginald_PN : PN; -fun regius_professor_PN : PN; -fun reglaecus_PN : PN; -fun regulus_PN : PN; -fun rehnquist_PN : PN; -fun reich_PN : PN; -fun reichstein_PN : PN; -fun reid_PN : PN; -fun reigate_PN : PN; -fun reign_of_terror_PN : PN; -fun reiter_PN : PN; -fun reiter's_syndrome_PN : PN; -fun reithrodontomys_PN : PN; -fun religious_society_of_friends_PN : PN; -fun rembrandt_PN : PN; -fun rembrandtesque_A : A; -fun remembrance_day_PN : PN; -fun remilegia_PN : PN; -fun remscheid_PN : PN; -fun remus_PN : PN; -fun renaissance_PN : PN; -fun renaissance_man_PN : PN; -fun renfrew_PN : PN; -fun rennes_PN : PN; -fun reno_PN : PN; -fun renoir_PN : PN; -fun reoviridae_PN : PN; -fun reptantia_PN : PN; -fun reptilia_PN : PN; -fun republican_PN : PN; -fun republican_guard_PN : PN; -fun republican_party_PN : PN; -fun requiem_PN : PN; -fun resedaceae_PN : PN; -fun reserve_officers_training_corps_PN : PN; -fun respighi_PN : PN; -fun restoration_PN : PN; -fun resurrection_PN : PN; -fun ret_PN : PN; -fun retama_PN : PN; -fun retd_PN : PN; -fun retford_PN : PN; -fun reticulitermes_PN : PN; -fun reticulitermes_flanipes_PN : PN; -fun reticulitermes_lucifugus_PN : PN; -fun reticulum_PN : PN; -fun retrophyllum_PN : PN; -fun reuben_PN : PN; -fun rev_PN : PN; -fun revd_PN : PN; -fun revelation_PN : PN; -fun revere_PN : PN; -fun reverend_PN : PN; -fun revised_standard_version_PN : PN; -fun revised_version_PN : PN; -fun revolutionary_armed_forces_of_colombia_PN : PN; -fun revolutionary_organization_17_november_PN : PN; -fun revolutionary_people's_liberation_party_PN : PN; -fun revolutionary_people's_struggle_PN : PN; -fun revolutionary_proletarian_nucleus_PN : PN; -fun revolutionary_united_front_PN : PN; -fun revolutionary_calendar_PN : PN; -fun revolutionary_calendar_month_PN : PN; -fun rex_PN : PN; -fun reye's_syndrome_PN : PN; -fun reykjavik_PN : PN; -fun reynard_PN : PN; -fun reynolds_PN : PN; -fun rh_antibody_PN : PN; -fun rh_incompatibility_PN : PN; -fun rh_negative_blood_type_PN : PN; -fun rh_positive_blood_type_PN : PN; -fun rhabdoviridae_PN : PN; -fun rhadamanthus_PN : PN; -fun rhaeto_romance_PN : PN; -fun rhagoletis_PN : PN; -fun rhamnaceae_PN : PN; -fun rhamnales_PN : PN; -fun rhamnus_PN : PN; -fun rhapis_PN : PN; -fun rhea_PN : PN; -fun rhea_silvia_PN : PN; -fun rheidae_PN : PN; -fun rheiformes_PN : PN; -fun rheims_PN : PN; -fun rhenish_A : A; -fun rheum_PN : PN; -fun rhexia_PN : PN; -fun rheydt_PN : PN; -fun rhincodon_PN : PN; -fun rhincodontidae_PN : PN; -fun rhine_PN : PN; -fun rhine_wine_PN : PN; -fun rhineland_PN : PN; -fun rhinobatidae_PN : PN; -fun rhinocerotidae_PN : PN; -fun rhinolophidae_PN : PN; -fun rhinonicteris_PN : PN; -fun rhinoptera_PN : PN; -fun rhinotermitidae_PN : PN; -fun rhipsalis_PN : PN; -fun rhizobiaceae_PN : PN; -fun rhizobium_PN : PN; -fun rhizophora_PN : PN; -fun rhizophoraceae_PN : PN; -fun rhizopoda_PN : PN; -fun rhizopogon_PN : PN; -fun rhizopogon_idahoensis_PN : PN; -fun rhizopogonaceae_PN : PN; -fun rhode_PN : PN; -fun rhode_island_PN : PN; -fun rhode_island_red_PN : PN; -fun rhode_islander_PN : PN; -fun rhodes_PN : PN; -fun rhodes_grass_PN : PN; -fun rhodes_scholar_PN : PN; -fun rhodesian_A : A; -fun rhodesian_man_PN : PN; -fun rhodesian_ridgeback_PN : PN; -fun rhodope_mountains_PN : PN; -fun rhodophyceae_PN : PN; -fun rhodophyta_PN : PN; -fun rhodosphaera_PN : PN; -fun rhodymenia_PN : PN; -fun rhodymeniaceae_PN : PN; -fun rhoeadales_PN : PN; -fun rhondda_PN : PN; -fun rhone_PN : PN; -fun rhone_alpes_PN : PN; -fun rhone_wine_PN : PN; -fun rhosllanerchrugog_PN : PN; -fun rhus_PN : PN; -fun rhus_dermatitis_PN : PN; -fun rhyacotriton_PN : PN; -fun rhyl_PN : PN; -fun rhymney_PN : PN; -fun rhynchocephalia_PN : PN; -fun rhynchoelaps_PN : PN; -fun rhyncostylis_PN : PN; -fun rhynia_PN : PN; -fun rhyniaceae_PN : PN; -fun ribes_PN : PN; -fun ribhus_PN : PN; -fun ricardo_PN : PN; -fun rice_PN : PN; -fun richard_PN : PN; -fun richard_i_PN : PN; -fun richard_ii_PN : PN; -fun richard_iii_PN : PN; -fun richard_roe_PN : PN; -fun richards_PN : PN; -fun richardson_PN : PN; -fun richardson's_geranium_PN : PN; -fun richea_PN : PN; -fun richelieu_PN : PN; -fun richler_PN : PN; -fun richmond_PN : PN; -fun richmond_upon_thames_PN : PN; -fun richmondena_PN : PN; -fun richter_scale_PN : PN; -fun ricinus_PN : PN; -fun rick_PN : PN; -fun rickenbacker_PN : PN; -fun rickettsiaceae_PN : PN; -fun rickettsiales_PN : PN; -fun rickmansworth_PN : PN; -fun rickover_PN : PN; -fun ricky_PN : PN; -fun riemann_PN : PN; -fun riemannian_A : A; -fun riesling_PN : PN; -fun riesman_PN : PN; -fun riff_PN : PN; -fun rift_valley_fever_PN : PN; -fun rig_veda_PN : PN; -fun riga_PN : PN; -fun rigel_PN : PN; -fun right_bank_PN : PN; -fun rijeka_PN : PN; -fun riksmal_PN : PN; -fun riley_PN : PN; -fun rilke_PN : PN; -fun rimbaud_PN : PN; -fun rimini_PN : PN; -fun rimsky_korsakov_PN : PN; -fun ringer's_solution_PN : PN; -fun ringling_PN : PN; -fun ringwood_PN : PN; -fun rio_grande_PN : PN; -fun rio_de_janeiro_PN : PN; -fun rio_de_la_plata_PN : PN; -fun rioja_PN : PN; -fun riot_act_PN : PN; -fun rip_PN : PN; -fun rip_van_winkle_PN : PN; -fun riparia_PN : PN; -fun ripley_PN : PN; -fun ripon_PN : PN; -fun risborough_PN : PN; -fun risca_PN : PN; -fun rishton_PN : PN; -fun riss_glaciation_PN : PN; -fun rissa_PN : PN; -fun rita_PN : PN; -fun rittenhouse_PN : PN; -fun ritz_PN : PN; -fun rivera_PN : PN; -fun riverside_PN : PN; -fun riviera_PN : PN; -fun rivina_PN : PN; -fun riyadh_PN : PN; -fun ro_PN : PN; -fun roanoke_PN : PN; -fun rob_PN : PN; -fun rob_roy_PN : PN; -fun robbins_PN : PN; -fun robert_PN : PN; -fun robert's_rules_of_order_PN : PN; -fun robert_e_lee's_birthday_PN : PN; -fun roberts_PN : PN; -fun robertson_PN : PN; -fun robeson_PN : PN; -fun robespierre_PN : PN; -fun robin_PN : PN; -fun robin_hood_PN : PN; -fun robinia_PN : PN; -fun robinson_PN : PN; -fun robinson_crusoe_PN : PN; -fun robitussin_PN : PN; -fun roccellaceae_PN : PN; -fun roccus_PN : PN; -fun rochambeau_PN : PN; -fun rochdale_PN : PN; -fun rochelle_salt_PN : PN; -fun rochester_PN : PN; -fun rochon_prism_PN : PN; -fun rock_PN : PN; -fun rock_cornish_PN : PN; -fun rock_cornish_hen_PN : PN; -fun rock_island_PN : PN; -fun rock_springs_PN : PN; -fun rockefeller_PN : PN; -fun rockford_PN : PN; -fun rockies_PN : PN; -fun rockingham_PN : PN; -fun rockwell_PN : PN; -fun rocky_mountain_national_park_PN : PN; -fun rocky_mountain_bee_plant_PN : PN; -fun rocky_mountain_dogbane_PN : PN; -fun rocky_mountain_jay_PN : PN; -fun rocky_mountain_spotted_fever_PN : PN; -fun rocky_mountain_whitefish_PN : PN; -fun rocky_mountain_pinon_PN : PN; -fun rocroi_PN : PN; -fun rod_PN : PN; -fun rodentia_PN : PN; -fun rodgers_PN : PN; -fun rodin_PN : PN; -fun rodney_PN : PN; -fun rodolia_PN : PN; -fun roebling_PN : PN; -fun roentgen_PN : PN; -fun rogation_day_PN : PN; -fun roger_PN : PN; -fun rogers_PN : PN; -fun roget_PN : PN; -fun rolaids_PN : PN; -fun rollerblade_PN : PN; -fun rollo_PN : PN; -fun rolodex_PN : PN; -fun romaic_PN : PN; -fun roman_A : A; -fun roman_PN : PN; -fun roman_catholic_PN : PN; -fun roman_emperor_PN : PN; -fun roman_empire_PN : PN; -fun roman_inquisition_PN : PN; -fun roman_legion_PN : PN; -fun roman_republic_PN : PN; -fun roman_alphabet_PN : PN; -fun roman_arch_PN : PN; -fun roman_architecture_PN : PN; -fun roman_building_PN : PN; -fun roman_calendar_PN : PN; -fun roman_candle_PN : PN; -fun roman_deity_PN : PN; -fun roman_hyacinth_PN : PN; -fun roman_law_PN : PN; -fun roman_mythology_PN : PN; -fun roman_nettle_PN : PN; -fun roman_nose_PN : PN; -fun roman_numeral_PN : PN; -fun roman_pace_PN : PN; -fun roman_times_PN : PN; -fun roman_wormwood_PN : PN; -fun romanal_PN : PN; -fun romance_A : A; -fun romance_PN : PN; -fun romanesque_PN : PN; -fun romania_PN : PN; -fun romanian_A : A; -fun romanian_PN : PN; -fun romanian_monetary_unit_PN : PN; -fun romanism_PN : PN; -fun romanov_PN : PN; -fun romansh_A : A; -fun romansh_PN : PN; -fun romanticism_PN : PN; -fun romany_A : A; -fun romany_PN : PN; -fun romberg_PN : PN; -fun rome_PN : PN; -fun rome_beauty_PN : PN; -fun romeo_PN : PN; -fun rommel_PN : PN; -fun romneya_PN : PN; -fun romsey_PN : PN; -fun romulus_PN : PN; -fun ron_PN : PN; -fun ronald_PN : PN; -fun ronnie_PN : PN; -fun roosevelt_PN : PN; -fun rooseveltian_A : A; -fun roquefort_PN : PN; -fun roridulaceae_PN : PN; -fun rorippa_PN : PN; -fun rorschach_PN : PN; -fun rosa_PN : PN; -fun rosaceae_PN : PN; -fun rosales_PN : PN; -fun rosalie_PN : PN; -fun rosalind_PN : PN; -fun rosamund_PN : PN; -fun rosario_PN : PN; -fun roscommon_PN : PN; -fun rose_PN : PN; -fun roseau_PN : PN; -fun rosellinia_PN : PN; -fun rosemary_PN : PN; -fun rosetta_stone_PN : PN; -fun rosh_hashanah_PN : PN; -fun rosh_hodesh_PN : PN; -fun rosicrucian_A : A; -fun rosicrucian_PN : PN; -fun rosicrucianism_PN : PN; -fun rosidae_PN : PN; -fun rosie_PN : PN; -fun roslyn_PN : PN; -fun rosmarinus_PN : PN; -fun ross_PN : PN; -fun ross_sea_PN : PN; -fun ross_on_wye_PN : PN; -fun rossbach_PN : PN; -fun rossetti_PN : PN; -fun rossington_PN : PN; -fun rossini_PN : PN; -fun rosslare_PN : PN; -fun rostand_PN : PN; -fun rostock_PN : PN; -fun rostov_PN : PN; -fun rostov_na_donu_PN : PN; -fun roswell_PN : PN; -fun rota_PN : PN; -fun rotarian_PN : PN; -fun rotary_club_PN : PN; -fun roth_PN : PN; -fun rotherham_PN : PN; -fun rothesay_PN : PN; -fun rothko_PN : PN; -fun rothschild_PN : PN; -fun rothwell_PN : PN; -fun rotifera_PN : PN; -fun rotterdam_PN : PN; -fun rottweiler_PN : PN; -fun roubaix_PN : PN; -fun rouen_PN : PN; -fun rough_rider_PN : PN; -fun round_table_PN : PN; -fun roundhead_PN : PN; -fun rous_PN : PN; -fun rousseau_PN : PN; -fun rousseauan_A : A; -fun rowlands_gill_PN : PN; -fun roy_PN : PN; -fun royal_academy_PN : PN; -fun royal_air_force_PN : PN; -fun royal_canadian_mounted_police_PN : PN; -fun royal_national_eisteddfod_PN : PN; -fun royal_society_PN : PN; -fun royston_PN : PN; -fun roystonea_PN : PN; -fun rsvp_PN : PN; -fun rt_hon_PN : PN; -fun rub_al_khali_PN : PN; -fun rubens_PN : PN; -fun rubia_PN : PN; -fun rubiaceae_PN : PN; -fun rubiales_PN : PN; -fun rubicon_PN : PN; -fun rubin_test_PN : PN; -fun rubinstein_PN : PN; -fun rubus_PN : PN; -fun rudbeckia_PN : PN; -fun ruddington_PN : PN; -fun rudolf_PN : PN; -fun rudra_PN : PN; -fun rudy_PN : PN; -fun rufous_rubber_cup_PN : PN; -fun rugby_PN : PN; -fun rugeley_PN : PN; -fun ruhr_PN : PN; -fun rumex_PN : PN; -fun ruminantia_PN : PN; -fun rumohra_PN : PN; -fun rumpelstiltskin_PN : PN; -fun runcorn_PN : PN; -fun rundstedt_PN : PN; -fun runyon_PN : PN; -fun rupert_PN : PN; -fun rupicapra_PN : PN; -fun rupicola_PN : PN; -fun ruptiliocarpon_PN : PN; -fun ruritania_PN : PN; -fun ruritanian_A : A; -fun ruritanian_PN : PN; -fun rus_PN : PN; -fun ruscaceae_PN : PN; -fun ruscus_PN : PN; -fun rush_PN : PN; -fun rushdie_PN : PN; -fun rushmore_PN : PN; -fun ruskin_PN : PN; -fun russell_PN : PN; -fun russell's_body_PN : PN; -fun russia_PN : PN; -fun russia_leather_PN : PN; -fun russian_A : A; -fun russian_PN : PN; -fun russian_orthodox_church_PN : PN; -fun russian_revolution_PN : PN; -fun russian_river_PN : PN; -fun russian_agency_PN : PN; -fun russian_almond_PN : PN; -fun russian_bank_PN : PN; -fun russian_dandelion_PN : PN; -fun russian_dressing_PN : PN; -fun russian_monetary_unit_PN : PN; -fun russian_olive_PN : PN; -fun russian_roulette_PN : PN; -fun russian_speaking_A : A; -fun russian_thistle_PN : PN; -fun russo_japanese_war_PN : PN; -fun russula_PN : PN; -fun russulaceae_PN : PN; -fun rustbelt_PN : PN; -fun ruta_PN : PN; -fun rutaceae_PN : PN; -fun ruth_PN : PN; -fun rutherford_PN : PN; -fun rutherford_atom_PN : PN; -fun rutherglen_PN : PN; -fun rutilus_PN : PN; -fun rutland_PN : PN; -fun rutledge_PN : PN; -fun rwanda_PN : PN; -fun rwanda_franc_PN : PN; -fun rwandan_A : A; -fun rwandan_PN : PN; -fun rydberg's_penstemon_PN : PN; -fun ryde_PN : PN; -fun ryehill_PN : PN; -fun rynchopidae_PN : PN; -fun rynchops_PN : PN; -fun rypticus_PN : PN; -fun ryukyu_islands_PN : PN; -fun ryukyuan_PN : PN; -fun s_PN : PN; -fun sa_PN : PN; -fun salt_i_PN : PN; -fun salt_ii_PN : PN; -fun sos_PN : PN; -fun stp_PN : PN; -fun swat_team_PN : PN; -fun s_shape_PN : PN; -fun s_wrench_PN : PN; -fun saale_PN : PN; -fun saale_glaciation_PN : PN; -fun saarbrucken_PN : PN; -fun saarinen_PN : PN; -fun saba_PN : PN; -fun sabadeli_PN : PN; -fun sabah_PN : PN; -fun sabahan_A : A; -fun sabahan_PN : PN; -fun sabal_PN : PN; -fun sabaoth_PN : PN; -fun sabbatarian_A : A; -fun sabbatarian_PN : PN; -fun sabbath_PN : PN; -fun sabellian_PN : PN; -fun sabin_PN : PN; -fun sabin_vaccine_PN : PN; -fun sabine_A : A; -fun sabine_PN : PN; -fun sabinea_PN : PN; -fun sacagawea_PN : PN; -fun saccharomyces_PN : PN; -fun saccharomycetaceae_PN : PN; -fun saccharum_PN : PN; -fun sacco_PN : PN; -fun sacramento_PN : PN; -fun sacramento_mountains_PN : PN; -fun sacramento_river_PN : PN; -fun sacred_college_PN : PN; -fun sadat_PN : PN; -fun sadducean_A : A; -fun sadducee_PN : PN; -fun sade_PN : PN; -fun sadleria_PN : PN; -fun saek_PN : PN; -fun safar_PN : PN; -fun saffron_walden_PN : PN; -fun sagina_PN : PN; -fun saginaw_PN : PN; -fun sagitta_PN : PN; -fun sagittaria_PN : PN; -fun sagittariidae_PN : PN; -fun sagittarius_PN : PN; -fun sahara_PN : PN; -fun saharan_A : A; -fun saharan_PN : PN; -fun saigon_PN : PN; -fun saigon_cinnamon_PN : PN; -fun saimiri_PN : PN; -fun saint_agnes's_eve_PN : PN; -fun saint_anthony's_fire_PN : PN; -fun saint_bernard_PN : PN; -fun saint_bernard's_lily_PN : PN; -fun saint_christopher_PN : PN; -fun saint_cloud_PN : PN; -fun saint_emilion_PN : PN; -fun saint_eustatius_PN : PN; -fun saint_francis_PN : PN; -fun saint_john_PN : PN; -fun saint_john's_PN : PN; -fun saint_johns_PN : PN; -fun saint_joseph_PN : PN; -fun saint_kitts_and_nevis_PN : PN; -fun saint_lawrence_PN : PN; -fun saint_lawrence_seaway_PN : PN; -fun saint_louis_PN : PN; -fun saint_lucia_PN : PN; -fun saint_martin_PN : PN; -fun saint_mihiel_PN : PN; -fun saint_paul_PN : PN; -fun saint_saens_PN : PN; -fun saint_vincent_PN : PN; -fun saint_vincent_and_the_grenadines_PN : PN; -fun saintpaulia_PN : PN; -fun saints_peter_and_paul_PN : PN; -fun saipan_PN : PN; -fun sajama_PN : PN; -fun sakharov_PN : PN; -fun saladin_PN : PN; -fun salafism_PN : PN; -fun salafist_group_PN : PN; -fun salamanca_PN : PN; -fun salamandra_PN : PN; -fun salamandridae_PN : PN; -fun sale_PN : PN; -fun salem_PN : PN; -fun salerno_PN : PN; -fun salford_PN : PN; -fun salian_frank_PN : PN; -fun salic_law_PN : PN; -fun salicaceae_PN : PN; -fun salicales_PN : PN; -fun salicornia_PN : PN; -fun salientia_PN : PN; -fun salina_PN : PN; -fun salinger_PN : PN; -fun salisbury_PN : PN; -fun salisbury_steak_PN : PN; -fun salish_PN : PN; -fun salix_PN : PN; -fun salk_PN : PN; -fun salk_vaccine_PN : PN; -fun sally_PN : PN; -fun sally_lunn_PN : PN; -fun salmacis_PN : PN; -fun salmo_PN : PN; -fun salmon_PN : PN; -fun salmonella_enteritidis_PN : PN; -fun salmonella_typhimurium_PN : PN; -fun salmonidae_PN : PN; -fun salome_PN : PN; -fun salomon_PN : PN; -fun salpichroa_PN : PN; -fun salpidae_PN : PN; -fun salpinctes_PN : PN; -fun salsola_PN : PN; -fun salt_PN : PN; -fun salt_lake_city_PN : PN; -fun saltash_PN : PN; -fun saltburn_PN : PN; -fun saltcoats_PN : PN; -fun salton_sea_PN : PN; -fun saluki_PN : PN; -fun salvador_PN : PN; -fun salvadora_PN : PN; -fun salvadoraceae_PN : PN; -fun salvadoran_A : A; -fun salvadoran_PN : PN; -fun salvation_army_PN : PN; -fun salvelinus_PN : PN; -fun salvinia_PN : PN; -fun salviniaceae_PN : PN; -fun salyut_PN : PN; -fun salzburg_PN : PN; -fun sam_PN : PN; -fun sam_browne_belt_PN : PN; -fun sama_veda_PN : PN; -fun samantha_PN : PN; -fun samaria_PN : PN; -fun samaritan_PN : PN; -fun samarkand_PN : PN; -fun sambre_PN : PN; -fun sambucus_PN : PN; -fun samhita_PN : PN; -fun samia_PN : PN; -fun sammy_PN : PN; -fun samnite_PN : PN; -fun samoa_PN : PN; -fun samoan_A : A; -fun samoan_PN : PN; -fun samolus_PN : PN; -fun samoyed_PN : PN; -fun samoyedic_PN : PN; -fun samoyedic_speaking_A : A; -fun samson_PN : PN; -fun samuel_PN : PN; -fun san_andreas_fault_PN : PN; -fun san_angelo_PN : PN; -fun san_antonio_PN : PN; -fun san_bernardino_PN : PN; -fun san_carlos_apache_PN : PN; -fun san_diego_PN : PN; -fun san_diego_bay_PN : PN; -fun san_fernando_valley_PN : PN; -fun san_francisco_PN : PN; -fun san_francisco_bay_PN : PN; -fun san_joaquin_river_PN : PN; -fun san_joaquin_valley_PN : PN; -fun san_jose_PN : PN; -fun san_jose_scale_PN : PN; -fun san_juan_PN : PN; -fun san_juan_hill_PN : PN; -fun san_juan_mountains_PN : PN; -fun san_luis_potosi_PN : PN; -fun san_marinese_A : A; -fun san_marinese_PN : PN; -fun san_marino_PN : PN; -fun san_mateo_PN : PN; -fun san_pablo_PN : PN; -fun san_pedro_sula_PN : PN; -fun san_salvador_PN : PN; -fun san_sebastian_PN : PN; -fun sana_PN : PN; -fun sanchez_PN : PN; -fun sand_PN : PN; -fun sandbach_PN : PN; -fun sandburg_PN : PN; -fun sandown_PN : PN; -fun sandra_PN : PN; -fun sandy_PN : PN; -fun sangay_PN : PN; -fun sanger_PN : PN; -fun sango_PN : PN; -fun sanguinaria_PN : PN; -fun sanhedrin_PN : PN; -fun sanicula_PN : PN; -fun sanskrit_PN : PN; -fun sanskrit_literature_PN : PN; -fun santa_ana_PN : PN; -fun santa_anna_PN : PN; -fun santa_barbara_PN : PN; -fun santa_catalina_PN : PN; -fun santa_clara_PN : PN; -fun santa_claus_PN : PN; -fun santa_cruz_PN : PN; -fun santa_cruz_cypress_PN : PN; -fun santa_fe_PN : PN; -fun santa_fe_trail_PN : PN; -fun santa_gertrudis_PN : PN; -fun santa_lucia_fir_PN : PN; -fun santa_maria_del_tule_PN : PN; -fun santalaceae_PN : PN; -fun santalales_PN : PN; -fun santalum_PN : PN; -fun santander_PN : PN; -fun santee_PN : PN; -fun santiago_PN : PN; -fun santiago_de_cuba_PN : PN; -fun santiago_de_los_caballeros_PN : PN; -fun santo_domingo_PN : PN; -fun santolina_PN : PN; -fun santos_PN : PN; -fun sanvitalia_PN : PN; -fun sao_bernardo_do_campo_PN : PN; -fun sao_francisco_PN : PN; -fun sao_goncalo_PN : PN; -fun sao_joao_de_meriti_PN : PN; -fun sao_jose_dos_campos_PN : PN; -fun sao_louis_PN : PN; -fun sao_paulo_PN : PN; -fun sao_thome_e_principe_monetary_unit_PN : PN; -fun sao_tiago_island_PN : PN; -fun sao_tome_PN : PN; -fun sao_tome_and_principe_PN : PN; -fun sao_paolo_PN : PN; -fun saone_PN : PN; -fun sapindaceae_PN : PN; -fun sapindales_PN : PN; -fun sapindus_PN : PN; -fun sapir_PN : PN; -fun saponaria_PN : PN; -fun sapotaceae_PN : PN; -fun sapphic_A : A; -fun sappho_PN : PN; -fun sapporo_PN : PN; -fun saprolegnia_PN : PN; -fun saprolegniales_PN : PN; -fun saqqara_PN : PN; -fun sara_PN : PN; -fun saracen_PN : PN; -fun sarah_PN : PN; -fun sarajevo_PN : PN; -fun sarasota_PN : PN; -fun sarasvati_PN : PN; -fun saratoga_PN : PN; -fun saratoga_springs_PN : PN; -fun saratoga_spittlebug_PN : PN; -fun saratov_PN : PN; -fun sarawak_PN : PN; -fun sarawakian_A : A; -fun sarawakian_PN : PN; -fun sarazen_PN : PN; -fun sarcobatus_PN : PN; -fun sarcocephalus_PN : PN; -fun sarcochilus_PN : PN; -fun sarcocystis_PN : PN; -fun sarcodes_PN : PN; -fun sarcodina_PN : PN; -fun sarcophaga_PN : PN; -fun sarcophilus_PN : PN; -fun sarcoptes_PN : PN; -fun sarcoptidae_PN : PN; -fun sarcorhamphus_PN : PN; -fun sarcoscypha_coccinea_PN : PN; -fun sarcoscyphaceae_PN : PN; -fun sarcosomataceae_PN : PN; -fun sarcosporidia_PN : PN; -fun sarcostemma_PN : PN; -fun sarda_PN : PN; -fun sardina_PN : PN; -fun sardinia_PN : PN; -fun sardinian_A : A; -fun sardinian_PN : PN; -fun sardinops_PN : PN; -fun sardis_PN : PN; -fun sargasso_sea_PN : PN; -fun sargent_PN : PN; -fun sarisbury_PN : PN; -fun sarnoff_PN : PN; -fun saronic_gulf_PN : PN; -fun saroyan_PN : PN; -fun sarpanitu_PN : PN; -fun sarpedon_PN : PN; -fun sarracenia_PN : PN; -fun sarraceniaceae_PN : PN; -fun sarraceniales_PN : PN; -fun sartre_PN : PN; -fun saskatchewan_PN : PN; -fun saskatoon_PN : PN; -fun sassari_PN : PN; -fun sassenach_PN : PN; -fun sat_PN : PN; -fun satan_PN : PN; -fun satanic_A : A; -fun satanist_PN : PN; -fun satie_PN : PN; -fun saturday_PN : PN; -fun saturday_night_special_PN : PN; -fun satureja_PN : PN; -fun saturn_PN : PN; -fun saturnalia_PN : PN; -fun saturnia_PN : PN; -fun saturniidae_PN : PN; -fun satyagraha_PN : PN; -fun satyridae_PN : PN; -fun sauchie_PN : PN; -fun saudi_PN : PN; -fun saudi_arabia_PN : PN; -fun saudi_arabian_A : A; -fun saudi_arabian_monetary_unit_PN : PN; -fun saudi_arabian_riyal_PN : PN; -fun sauk_PN : PN; -fun saul_PN : PN; -fun sault_sainte_marie_PN : PN; -fun sauria_PN : PN; -fun saurischia_PN : PN; -fun sauromalus_PN : PN; -fun sauropoda_PN : PN; -fun sauropodomorpha_PN : PN; -fun sauropterygia_PN : PN; -fun saurosuchus_PN : PN; -fun saururaceae_PN : PN; -fun saururus_PN : PN; -fun saussurea_PN : PN; -fun sauterne_PN : PN; -fun sauvignon_blanc_PN : PN; -fun sauvignon_grape_PN : PN; -fun savannah_PN : PN; -fun savara_PN : PN; -fun savitar_PN : PN; -fun savonarola_PN : PN; -fun savoy_PN : PN; -fun savoyard_PN : PN; -fun sawan_PN : PN; -fun sawbridgeworth_PN : PN; -fun sax_PN : PN; -fun saxe_PN : PN; -fun saxe_coburg_gotha_PN : PN; -fun saxe_gothea_PN : PN; -fun saxicola_PN : PN; -fun saxifraga_PN : PN; -fun saxifragaceae_PN : PN; -fun saxo_grammaticus_PN : PN; -fun saxon_A : A; -fun saxon_PN : PN; -fun saxony_PN : PN; -fun sayan_mountains_PN : PN; -fun sayda_PN : PN; -fun sayeret_matkal_PN : PN; -fun sayers_PN : PN; -fun sayornis_PN : PN; -fun sazerac_PN : PN; -fun scandentia_PN : PN; -fun scandinavia_PN : PN; -fun scandinavian_A : A; -fun scandinavian_PN : PN; -fun scandinavian_country_PN : PN; -fun scandinavian_lox_PN : PN; -fun scaphiopus_PN : PN; -fun scaphopoda_PN : PN; -fun scaphosepalum_PN : PN; -fun scarabaeidae_PN : PN; -fun scaramouch_PN : PN; -fun scarborough_PN : PN; -fun scardinius_PN : PN; -fun scaridae_PN : PN; -fun scartella_PN : PN; -fun sceliphron_PN : PN; -fun sceloglaux_PN : PN; -fun sceloporus_PN : PN; -fun schadenfreude_PN : PN; -fun schaffneria_PN : PN; -fun schaffneria_nigripes_PN : PN; -fun scheele_PN : PN; -fun schefflera_PN : PN; -fun scheldt_PN : PN; -fun schenectady_PN : PN; -fun scheuchzeriaceae_PN : PN; -fun schiaparelli_PN : PN; -fun schick_test_PN : PN; -fun schiller_PN : PN; -fun schinus_PN : PN; -fun schistosoma_PN : PN; -fun schistosomatidae_PN : PN; -fun schizachyrium_PN : PN; -fun schizaea_PN : PN; -fun schizaeaceae_PN : PN; -fun schizomycetes_PN : PN; -fun schizophragma_PN : PN; -fun schizophyta_PN : PN; -fun schizopoda_PN : PN; -fun schizosaccharomyces_PN : PN; -fun schizosaccharomycetaceae_PN : PN; -fun schleiden_PN : PN; -fun schlesinger_PN : PN; -fun schliemann_PN : PN; -fun schlumbergera_PN : PN; -fun schmidt_PN : PN; -fun schmidt_telescope_PN : PN; -fun schnabel_PN : PN; -fun scholastic_PN : PN; -fun scholasticism_PN : PN; -fun schomburgkia_PN : PN; -fun schonbein_PN : PN; -fun schonberg_PN : PN; -fun schoolcraft_PN : PN; -fun schoolman_PN : PN; -fun schopenhauer_PN : PN; -fun schreiber's_aster_PN : PN; -fun schrodinger_PN : PN; -fun schrodinger_equation_PN : PN; -fun schubert_PN : PN; -fun schulz_PN : PN; -fun schumann_PN : PN; -fun schumann_heink_PN : PN; -fun schumpeter_PN : PN; -fun schutzstaffel_PN : PN; -fun schwann_PN : PN; -fun schwann_cell_PN : PN; -fun schweitzer_PN : PN; -fun schwerin_PN : PN; -fun sciadopityaceae_PN : PN; -fun sciadopitys_PN : PN; -fun sciaena_PN : PN; -fun sciaenidae_PN : PN; -fun sciaenops_PN : PN; -fun sciaridae_PN : PN; -fun scientology_PN : PN; -fun scilly_islands_PN : PN; -fun scincella_PN : PN; -fun scincidae_PN : PN; -fun scincus_PN : PN; -fun scindapsus_PN : PN; -fun scipio_PN : PN; -fun scirpus_PN : PN; -fun sciuridae_PN : PN; -fun sciuromorpha_PN : PN; -fun sciurus_PN : PN; -fun scleranthus_PN : PN; -fun scleroderma_PN : PN; -fun scleroderma_bovista_PN : PN; -fun scleroderma_citrinum_PN : PN; -fun scleroderma_flavidium_PN : PN; -fun sclerodermataceae_PN : PN; -fun sclerodermatales_PN : PN; -fun scleropages_PN : PN; -fun scleroparei_PN : PN; -fun sclerotiniaceae_PN : PN; -fun sclerotium_PN : PN; -fun scolopacidae_PN : PN; -fun scolopax_PN : PN; -fun scolymus_PN : PN; -fun scolytidae_PN : PN; -fun scolytus_PN : PN; -fun scomber_PN : PN; -fun scomberesocidae_PN : PN; -fun scomberesox_PN : PN; -fun scomberomorus_PN : PN; -fun scomberomorus_maculatus_PN : PN; -fun scombridae_PN : PN; -fun scombroidea_PN : PN; -fun scopes_PN : PN; -fun scopes_trial_PN : PN; -fun scophthalmus_PN : PN; -fun scopolia_PN : PN; -fun scopolia_carniolica_PN : PN; -fun scorpaena_PN : PN; -fun scorpaenidae_PN : PN; -fun scorpaenoidea_PN : PN; -fun scorpio_PN : PN; -fun scorpionida_PN : PN; -fun scorpius_PN : PN; -fun scorsese_PN : PN; -fun scot_PN : PN; -fun scotch_PN : PN; -fun scotch_and_soda_PN : PN; -fun scotch_asphodel_PN : PN; -fun scotch_broth_PN : PN; -fun scotch_egg_PN : PN; -fun scotch_kiss_PN : PN; -fun scotch_laburnum_PN : PN; -fun scotch_pine_PN : PN; -fun scotch_terrier_PN : PN; -fun scotch_woodcock_PN : PN; -fun scotland_PN : PN; -fun scotland_yard_PN : PN; -fun scots_A : A; -fun scotswoman_PN : PN; -fun scott_PN : PN; -fun scottish_PN : PN; -fun scottish_gaelic_PN : PN; -fun scottish_deerhound_PN : PN; -fun scout_PN : PN; -fun scrabble_PN : PN; -fun scranton_PN : PN; -fun scriabin_PN : PN; -fun scribe_PN : PN; -fun scripps_PN : PN; -fun scrophularia_PN : PN; -fun scrophulariaceae_PN : PN; -fun scrophulariales_PN : PN; -fun sculptor_PN : PN; -fun scunthorpe_PN : PN; -fun scutellaria_PN : PN; -fun scutigera_PN : PN; -fun scutigerella_PN : PN; -fun scutigeridae_PN : PN; -fun scyliorhinidae_PN : PN; -fun scylla_PN : PN; -fun scyphozoa_PN : PN; -fun scythia_PN : PN; -fun scythian_A : A; -fun scythian_PN : PN; -fun scythian_lamb_PN : PN; -fun sea_scout_PN : PN; -fun sea_of_azov_PN : PN; -fun sea_of_japan_PN : PN; -fun sea_of_okhotsk_PN : PN; -fun seaborg_PN : PN; -fun seaford_PN : PN; -fun seaham_PN : PN; -fun sealyham_PN : PN; -fun sealyham_terrier_PN : PN; -fun seaman_PN : PN; -fun seamus_PN : PN; -fun sean_PN : PN; -fun seanad_eireann_PN : PN; -fun sears_tower_PN : PN; -fun seaton_burn_PN : PN; -fun seaton_delaval_PN : PN; -fun seattle_PN : PN; -fun seattle_slew_PN : PN; -fun sebastiana_PN : PN; -fun sebastodes_PN : PN; -fun sebastopol_PN : PN; -fun secale_PN : PN; -fun secession_PN : PN; -fun second_coming_PN : PN; -fun second_crusade_PN : PN; -fun second_empire_PN : PN; -fun second_epistel_of_john_PN : PN; -fun second_epistle_of_paul_the_apostle_to_timothy_PN : PN; -fun second_epistle_of_paul_the_apostle_to_the_corinthians_PN : PN; -fun second_epistle_of_paul_the_apostle_to_the_thessalonians_PN : PN; -fun second_epistle_of_peter_PN : PN; -fun second_lateran_council_PN : PN; -fun second_vatican_council_PN : PN; -fun secotiaceae_PN : PN; -fun secotiales_PN : PN; -fun secret_intelligence_service_PN : PN; -fun secretariat_PN : PN; -fun secretary_general_PN : PN; -fun secretary_of_agriculture_PN : PN; -fun secretary_of_commerce_PN : PN; -fun secretary_of_commerce_and_labor_PN : PN; -fun secretary_of_defense_PN : PN; -fun secretary_of_education_PN : PN; -fun secretary_of_energy_PN : PN; -fun secretary_of_health_education_and_welfare_PN : PN; -fun secretary_of_health_and_human_services_PN : PN; -fun secretary_of_housing_and_urban_development_PN : PN; -fun secretary_of_labor_PN : PN; -fun secretary_of_state_PN : PN; -fun secretary_of_transportation_PN : PN; -fun secretary_of_veterans_affairs_PN : PN; -fun secretary_of_war_PN : PN; -fun secretary_of_the_interior_PN : PN; -fun secretary_of_the_navy_PN : PN; -fun secretary_of_the_treasury_PN : PN; -fun section_eight_PN : PN; -fun securicor_PN : PN; -fun securities_and_exchange_commission_PN : PN; -fun security_council_PN : PN; -fun security_intelligence_review_committee_PN : PN; -fun security_service_PN : PN; -fun sedalia_PN : PN; -fun seder_PN : PN; -fun sedna_PN : PN; -fun seeger_PN : PN; -fun seeing_eye_dog_PN : PN; -fun segal_PN : PN; -fun segovia_PN : PN; -fun segway_PN : PN; -fun seidlitz_powder_PN : PN; -fun seine_PN : PN; -fun seismosaurus_PN : PN; -fun seiurus_PN : PN; -fun sekhet_PN : PN; -fun selaginella_PN : PN; -fun selaginellaceae_PN : PN; -fun selaginellales_PN : PN; -fun selar_PN : PN; -fun selby_PN : PN; -fun selective_service_PN : PN; -fun selenarctos_PN : PN; -fun selene_PN : PN; -fun selenicereus_PN : PN; -fun selenipedium_PN : PN; -fun seles_PN : PN; -fun seleucus_PN : PN; -fun seljuk_A : A; -fun seljuk_PN : PN; -fun selkirk_PN : PN; -fun selkirk_mountains_PN : PN; -fun selkup_PN : PN; -fun sellers_PN : PN; -fun selma_PN : PN; -fun selsey_PN : PN; -fun selston_PN : PN; -fun selznick_PN : PN; -fun semarang_PN : PN; -fun seminole_PN : PN; -fun semite_A : A; -fun semite_PN : PN; -fun semitic_A : A; -fun semitic_PN : PN; -fun semitic_deity_PN : PN; -fun semitic_speaking_A : A; -fun sempatch_PN : PN; -fun seneca_PN : PN; -fun seneca_lake_PN : PN; -fun seneca_snakeroot_PN : PN; -fun senecan_A : A; -fun senecio_PN : PN; -fun senefelder_PN : PN; -fun senegal_PN : PN; -fun senegal_gum_PN : PN; -fun senegalese_A : A; -fun senegalese_PN : PN; -fun senegalese_franc_PN : PN; -fun senhor_PN : PN; -fun sennacherib_PN : PN; -fun sennenhunde_PN : PN; -fun sennett_PN : PN; -fun senor_PN : PN; -fun senora_PN : PN; -fun senorita_PN : PN; -fun seoul_PN : PN; -fun sephardi_PN : PN; -fun sepia_PN : PN; -fun sepiidae_PN : PN; -fun sept_PN : PN; -fun september_PN : PN; -fun september_elm_PN : PN; -fun septobasidiaceae_PN : PN; -fun septobasidium_PN : PN; -fun septuagesima_PN : PN; -fun septuagint_PN : PN; -fun sequoia_national_park_PN : PN; -fun sequoiadendron_PN : PN; -fun sequoya_PN : PN; -fun serbia_PN : PN; -fun serbia_and_montenegro_PN : PN; -fun serbian_A : A; -fun serbian_PN : PN; -fun serbo_croat_PN : PN; -fun serengeti_PN : PN; -fun serengeti_national_park_PN : PN; -fun serenoa_PN : PN; -fun serer_PN : PN; -fun sericocarpus_PN : PN; -fun serinus_PN : PN; -fun seriola_PN : PN; -fun seriphidium_PN : PN; -fun seriphus_PN : PN; -fun serkin_PN : PN; -fun sermon_on_the_mount_PN : PN; -fun serpens_PN : PN; -fun serpentes_PN : PN; -fun serra_PN : PN; -fun serranidae_PN : PN; -fun serranus_PN : PN; -fun serrasalmus_PN : PN; -fun serratia_marcescens_PN : PN; -fun serratula_PN : PN; -fun sertoli_cell_PN : PN; -fun sertularia_PN : PN; -fun service_PN : PN; -fun sesamum_PN : PN; -fun seseli_PN : PN; -fun sesotho_PN : PN; -fun sessions_PN : PN; -fun set_PN : PN; -fun setaria_PN : PN; -fun sete_quedas_PN : PN; -fun seth_PN : PN; -fun seton_PN : PN; -fun setophaga_PN : PN; -fun setubal_PN : PN; -fun seurat_PN : PN; -fun seven_hills_of_rome_PN : PN; -fun seven_wonders_of_the_ancient_world_PN : PN; -fun seven_years'_war_PN : PN; -fun seven_sisters_PN : PN; -fun sevenoaks_PN : PN; -fun seventh_avenue_PN : PN; -fun seventh_crusade_PN : PN; -fun seventh_day_adventism_PN : PN; -fun severn_PN : PN; -fun sevilla_PN : PN; -fun seville_PN : PN; -fun seward_PN : PN; -fun seward's_folly_PN : PN; -fun seward_peninsula_PN : PN; -fun sexton_PN : PN; -fun seychelles_PN : PN; -fun seychelles_monetary_unit_PN : PN; -fun seychelles_rupee_PN : PN; -fun seychellois_A : A; -fun seychellois_PN : PN; -fun seyhan_PN : PN; -fun seymour_PN : PN; -fun sfax_PN : PN; -fun sgd_PN : PN; -fun sgt_PN : PN; -fun sha'ban_PN : PN; -fun shah_PN : PN; -fun shah_jahan_PN : PN; -fun shahaptian_PN : PN; -fun shahn_PN : PN; -fun shaker_PN : PN; -fun shakers_PN : PN; -fun shakespeare_PN : PN; -fun shakespearean_sonnet_PN : PN; -fun shakespearian_A : A; -fun shakespearian_PN : PN; -fun shakti_PN : PN; -fun shaktism_PN : PN; -fun shaktist_PN : PN; -fun shamash_PN : PN; -fun shang_PN : PN; -fun shanghai_PN : PN; -fun shankar_PN : PN; -fun shanklin_PN : PN; -fun shannon_PN : PN; -fun shapley_PN : PN; -fun shari_PN : PN; -fun sharon_PN : PN; -fun sharpie_PN : PN; -fun shasta_PN : PN; -fun shasta_salamander_PN : PN; -fun shastan_PN : PN; -fun shavian_A : A; -fun shavian_PN : PN; -fun shavous_PN : PN; -fun shaw_PN : PN; -fun shawn_PN : PN; -fun shawnee_PN : PN; -fun shawnee_cake_PN : PN; -fun shawwal_PN : PN; -fun shearer_PN : PN; -fun shebat_PN : PN; -fun sheerness_PN : PN; -fun sheetrock_PN : PN; -fun sheffield_PN : PN; -fun sheila_PN : PN; -fun shelford_PN : PN; -fun shelley_PN : PN; -fun shem_PN : PN; -fun shema_PN : PN; -fun shen_pao_PN : PN; -fun shenandoah_national_park_PN : PN; -fun shenandoah_river_PN : PN; -fun shenandoah_valley_PN : PN; -fun shenyang_PN : PN; -fun shepard_PN : PN; -fun shepshed_PN : PN; -fun shepton_mallet_PN : PN; -fun sheraton_PN : PN; -fun sherbourne_PN : PN; -fun sheridan_PN : PN; -fun sheringham_PN : PN; -fun sherlock_holmes_PN : PN; -fun sherman_PN : PN; -fun sherpa_PN : PN; -fun sherrington_PN : PN; -fun sherwood_PN : PN; -fun sherwood_forest_PN : PN; -fun shetland_PN : PN; -fun shetland_pony_PN : PN; -fun shetland_sheepdog_PN : PN; -fun shetland_wool_PN : PN; -fun shevchenko_PN : PN; -fun shevington_PN : PN; -fun shiah_PN : PN; -fun shih_tzu_PN : PN; -fun shihkiachwang_PN : PN; -fun shiism_PN : PN; -fun shiite_PN : PN; -fun shikoku_PN : PN; -fun shildon_PN : PN; -fun shiloh_PN : PN; -fun shimchath_torah_PN : PN; -fun shin_bet_PN : PN; -fun shina_PN : PN; -fun shingon_PN : PN; -fun shining_path_PN : PN; -fun shinto_A : A; -fun shinto_PN : PN; -fun shintoist_PN : PN; -fun shiraz_PN : PN; -fun shirebrook_PN : PN; -fun shiremoor_PN : PN; -fun shirer_PN : PN; -fun shirley_PN : PN; -fun shirodkar's_operation_PN : PN; -fun shivaism_PN : PN; -fun shivaist_PN : PN; -fun shockley_PN : PN; -fun shona_A : A; -fun shona_PN : PN; -fun shorea_PN : PN; -fun short's_aster_PN : PN; -fun shoshone_PN : PN; -fun shoshonean_PN : PN; -fun shostakovich_PN : PN; -fun shotton_PN : PN; -fun shotts_PN : PN; -fun shreveport_PN : PN; -fun shrewsbury_PN : PN; -fun shropshire_PN : PN; -fun shrove_tuesday_PN : PN; -fun shrovetide_PN : PN; -fun shudra_PN : PN; -fun shuha_A : A; -fun shuha_shinto_PN : PN; -fun shumard_oak_PN : PN; -fun shute_PN : PN; -fun shylock_PN : PN; -fun sialia_PN : PN; -fun sialidae_PN : PN; -fun sialis_PN : PN; -fun siam_PN : PN; -fun siamese_cat_PN : PN; -fun siamese_twin_PN : PN; -fun sian_PN : PN; -fun sibelius_PN : PN; -fun siberia_PN : PN; -fun siberian_A : A; -fun siberian_PN : PN; -fun siberian_crab_PN : PN; -fun siberian_elm_PN : PN; -fun siberian_husky_PN : PN; -fun siberian_larch_PN : PN; -fun siberian_millet_PN : PN; -fun siberian_pea_tree_PN : PN; -fun siberian_spruce_PN : PN; -fun siberian_wall_flower_PN : PN; -fun sibley_tent_PN : PN; -fun sicilian_A : A; -fun sicilian_PN : PN; -fun sicilian_pizza_PN : PN; -fun sicily_PN : PN; -fun sid_PN : PN; -fun sida_PN : PN; -fun sidalcea_PN : PN; -fun siddons_PN : PN; -fun sideritis_PN : PN; -fun sidmouth_PN : PN; -fun sidney_PN : PN; -fun siege_perilous_PN : PN; -fun siegfried_PN : PN; -fun siegfried_line_PN : PN; -fun siemens_PN : PN; -fun sierra_leone_PN : PN; -fun sierra_leone_monetary_unit_PN : PN; -fun sierra_leonean_A : A; -fun sierra_leonean_PN : PN; -fun sierra_madre_occidental_PN : PN; -fun sierra_madre_oriental_PN : PN; -fun sierra_nevada_PN : PN; -fun sierra_lodgepole_pine_PN : PN; -fun sierra_plum_PN : PN; -fun sif_PN : PN; -fun sigmodon_PN : PN; -fun signora_PN : PN; -fun signorina_PN : PN; -fun sigurd_PN : PN; -fun sigyn_PN : PN; -fun sihasapa_PN : PN; -fun sikh_A : A; -fun sikh_PN : PN; -fun sikhism_PN : PN; -fun sikkim_PN : PN; -fun sikorsky_PN : PN; -fun sileby_PN : PN; -fun silenus_PN : PN; -fun silesia_PN : PN; -fun silex_PN : PN; -fun silicon_valley_PN : PN; -fun silk_road_PN : PN; -fun sillaginidae_PN : PN; -fun sillago_PN : PN; -fun sills_PN : PN; -fun silphium_PN : PN; -fun silsden_PN : PN; -fun silurian_PN : PN; -fun siluridae_PN : PN; -fun siluriformes_PN : PN; -fun silurus_PN : PN; -fun silver_city_PN : PN; -fun silver_star_medal_PN : PN; -fun silverstein_PN : PN; -fun silvia_PN : PN; -fun silybum_PN : PN; -fun simarouba_PN : PN; -fun simaroubaceae_PN : PN; -fun simenon_PN : PN; -fun simeon_PN : PN; -fun simon_PN : PN; -fun simon_legree_PN : PN; -fun simoniz_PN : PN; -fun simpson_PN : PN; -fun simpson_desert_PN : PN; -fun simuliidae_PN : PN; -fun simulium_PN : PN; -fun sin_PN : PN; -fun sinai_PN : PN; -fun sinanthropus_PN : PN; -fun sinapis_PN : PN; -fun sinatra_PN : PN; -fun sinbad_the_sailor_PN : PN; -fun sinclair_PN : PN; -fun sind_PN : PN; -fun sindhi_PN : PN; -fun singapore_PN : PN; -fun singapore_dollar_PN : PN; -fun singaporean_A : A; -fun singaporean_PN : PN; -fun singer_PN : PN; -fun singhalese_A : A; -fun sinhala_A : A; -fun sinhalese_PN : PN; -fun sining_PN : PN; -fun sinitic_A : A; -fun sinitic_PN : PN; -fun sinn_fein_PN : PN; -fun sinningia_PN : PN; -fun sino_tibetan_PN : PN; -fun sinologist_PN : PN; -fun sinology_PN : PN; -fun sinornis_PN : PN; -fun siouan_A : A; -fun siouan_PN : PN; -fun siouan_speaking_A : A; -fun sioux_PN : PN; -fun sioux_city_PN : PN; -fun sioux_falls_PN : PN; -fun sipah_e_sahaba_PN : PN; -fun siphonaptera_PN : PN; -fun siphonophora_PN : PN; -fun sipuncula_PN : PN; -fun siqueiros_PN : PN; -fun sir_PN : PN; -fun sir_barton_PN : PN; -fun siracusa_PN : PN; -fun siraj_ud_daula_PN : PN; -fun siren_PN : PN; -fun sirenia_PN : PN; -fun sirenidae_PN : PN; -fun sirius_PN : PN; -fun sison_PN : PN; -fun sister_PN : PN; -fun sistine_chapel_PN : PN; -fun sistrurus_PN : PN; -fun sisyphean_A : A; -fun sisyphus_PN : PN; -fun sisyridae_PN : PN; -fun sisyrinchium_PN : PN; -fun sita_PN : PN; -fun sitka_PN : PN; -fun sitka_spruce_PN : PN; -fun sitka_willow_PN : PN; -fun sitophylus_PN : PN; -fun sitotroga_PN : PN; -fun sitta_PN : PN; -fun sitter_PN : PN; -fun sittidae_PN : PN; -fun sitting_bull_PN : PN; -fun sittingbourne_PN : PN; -fun sitwell_PN : PN; -fun sium_PN : PN; -fun siva_PN : PN; -fun sivan_PN : PN; -fun sivapithecus_PN : PN; -fun sixteen_personality_factor_questionnaire_PN : PN; -fun sixth_crusade_PN : PN; -fun sixtus_iv_PN : PN; -fun skagens_odde_PN : PN; -fun skagerrak_PN : PN; -fun skagit_PN : PN; -fun skagway_PN : PN; -fun skanda_PN : PN; -fun skeat_PN : PN; -fun skegness_PN : PN; -fun skelmanthorpe_PN : PN; -fun skelmersdale_PN : PN; -fun skewen_PN : PN; -fun skinner_PN : PN; -fun skinnerian_A : A; -fun skinnerian_PN : PN; -fun skipton_PN : PN; -fun skivvies_PN : PN; -fun skopje_PN : PN; -fun skuld_PN : PN; -fun skye_terrier_PN : PN; -fun skylab_PN : PN; -fun slav_A : A; -fun slav_PN : PN; -fun slavic_PN : PN; -fun slavic_people_PN : PN; -fun slavonic_A : A; -fun sleaford_PN : PN; -fun sleeping_beauty_PN : PN; -fun sligo_PN : PN; -fun sloanea_PN : PN; -fun sloppy_joe_PN : PN; -fun slough_PN : PN; -fun slovak_PN : PN; -fun slovakia_PN : PN; -fun slovakian_A : A; -fun slovakian_monetary_unit_PN : PN; -fun slovene_PN : PN; -fun slovenia_PN : PN; -fun slovenian_A : A; -fun slovenian_PN : PN; -fun small_business_administration_PN : PN; -fun small_magellanic_cloud_PN : PN; -fun smalley_PN : PN; -fun smetana_PN : PN; -fun smilacaceae_PN : PN; -fun smilax_PN : PN; -fun smiledon_PN : PN; -fun smiledon_californicus_PN : PN; -fun smitane_PN : PN; -fun smith_PN : PN; -fun smolensk_PN : PN; -fun smollett_PN : PN; -fun smuts_PN : PN; -fun smyrnium_PN : PN; -fun snake_PN : PN; -fun snead_PN : PN; -fun snellen_PN : PN; -fun snellen_chart_PN : PN; -fun snellen_test_PN : PN; -fun sno_cat_PN : PN; -fun snoopy_PN : PN; -fun snow_PN : PN; -fun snr_PN : PN; -fun soho_PN : PN; -fun soave_PN : PN; -fun social_democratic_party_PN : PN; -fun social_development_commission_PN : PN; -fun social_security_PN : PN; -fun social_security_administration_PN : PN; -fun social_security_number_PN : PN; -fun socialist_labor_party_PN : PN; -fun socialist_party_PN : PN; -fun society_islands_PN : PN; -fun society_of_jesus_PN : PN; -fun socinian_PN : PN; -fun socinus_PN : PN; -fun socotra_begonia_PN : PN; -fun socrates_PN : PN; -fun socratic_A : A; -fun socratic_irony_PN : PN; -fun socratic_method_PN : PN; -fun soddy_PN : PN; -fun sodom_PN : PN; -fun sofia_PN : PN; -fun soissons_PN : PN; -fun sokoro_PN : PN; -fun sol_PN : PN; -fun solanaceae_PN : PN; -fun solandra_PN : PN; -fun solanopteris_PN : PN; -fun solanum_PN : PN; -fun solea_PN : PN; -fun soledad_PN : PN; -fun soleidae_PN : PN; -fun solemnity_of_mary_PN : PN; -fun solenichthyes_PN : PN; -fun solenidae_PN : PN; -fun solenogastres_PN : PN; -fun solenopsis_PN : PN; -fun solenostemon_PN : PN; -fun solent_PN : PN; -fun solferino_PN : PN; -fun solidago_PN : PN; -fun solihull_PN : PN; -fun solingen_PN : PN; -fun solo_man_PN : PN; -fun solomon_PN : PN; -fun solomon's_seal_PN : PN; -fun solomon_islands_PN : PN; -fun solomonic_A : A; -fun solomons_PN : PN; -fun solon_PN : PN; -fun solresol_PN : PN; -fun solvay_PN : PN; -fun solvay_process_PN : PN; -fun solway_firth_PN : PN; -fun solzhenitsyn_PN : PN; -fun soma_PN : PN; -fun somali_PN : PN; -fun somali_peninsula_PN : PN; -fun somalia_PN : PN; -fun somalian_A : A; -fun somalian_PN : PN; -fun somalian_monetary_unit_PN : PN; -fun somalian_shilling_PN : PN; -fun somateria_PN : PN; -fun sombrero_PN : PN; -fun somercotes_PN : PN; -fun somerset_PN : PN; -fun somme_PN : PN; -fun somrai_PN : PN; -fun son_PN : PN; -fun sonchus_PN : PN; -fun sondheim_PN : PN; -fun song_of_songs_PN : PN; -fun songhai_PN : PN; -fun sonia_PN : PN; -fun sonora_PN : PN; -fun sonora_gum_PN : PN; -fun sonora_lac_PN : PN; -fun sonoran_desert_PN : PN; -fun sonoran_lyre_snake_PN : PN; -fun sonoran_whipsnake_PN : PN; -fun sontag_PN : PN; -fun soochow_PN : PN; -fun sophia_PN : PN; -fun sophie_PN : PN; -fun sophist_PN : PN; -fun sophocles_PN : PN; -fun sophora_PN : PN; -fun sorbian_PN : PN; -fun sorbus_PN : PN; -fun sorensen_PN : PN; -fun sorex_PN : PN; -fun soricidae_PN : PN; -fun sotho_A : A; -fun sotho_PN : PN; -fun soubise_PN : PN; -fun soufflot_PN : PN; -fun sousa_PN : PN; -fun sousse_PN : PN; -fun south_PN : PN; -fun south_africa_PN : PN; -fun south_african_A : A; -fun south_african_PN : PN; -fun south_african_monetary_unit_PN : PN; -fun south_african_yellowwood_PN : PN; -fun south_america_PN : PN; -fun south_american_A : A; -fun south_american_PN : PN; -fun south_american_indian_PN : PN; -fun south_american_country_PN : PN; -fun south_american_poison_toad_PN : PN; -fun south_american_sea_lion_PN : PN; -fun south_american_staghorn_PN : PN; -fun south_atlantic_PN : PN; -fun south_australia_PN : PN; -fun south_bend_PN : PN; -fun south_carolina_PN : PN; -fun south_carolinian_PN : PN; -fun south_central_dravidian_PN : PN; -fun south_china_sea_PN : PN; -fun south_dakota_PN : PN; -fun south_dakotan_PN : PN; -fun south_dravidian_PN : PN; -fun south_equatorial_current_PN : PN; -fun south_island_PN : PN; -fun south_korea_PN : PN; -fun south_korean_A : A; -fun south_korean_PN : PN; -fun south_korean_monetary_unit_PN : PN; -fun south_korean_won_PN : PN; -fun south_pacific_PN : PN; -fun south_platte_PN : PN; -fun south_pole_PN : PN; -fun south_sea_PN : PN; -fun south_sea_islands_PN : PN; -fun south_temperate_zone_PN : PN; -fun south_vietnam_PN : PN; -fun south_yorkshire_PN : PN; -fun south_kirkby_PN : PN; -fun south_normantown_PN : PN; -fun south_ockendon_PN : PN; -fun south_shields_PN : PN; -fun southampton_PN : PN; -fun southeast_PN : PN; -fun southeast_asia_PN : PN; -fun southend_on_sea_PN : PN; -fun southern_baptist_PN : PN; -fun southern_baptist_convention_PN : PN; -fun southern_cross_PN : PN; -fun southern_tai_PN : PN; -fun southern_crab_apple_PN : PN; -fun southern_dewberry_PN : PN; -fun southerner_PN : PN; -fun southey_PN : PN; -fun southport_PN : PN; -fun southwark_PN : PN; -fun southwest_PN : PN; -fun southwestern_PN : PN; -fun soutine_PN : PN; -fun soviet_A : A; -fun soviet_russia_PN : PN; -fun soviet_socialist_republic_PN : PN; -fun soviet_union_PN : PN; -fun soviets_PN : PN; -fun soweto_PN : PN; -fun space_needle_PN : PN; -fun spain_PN : PN; -fun spalacidae_PN : PN; -fun spalax_PN : PN; -fun spalding_PN : PN; -fun spallanzani_PN : PN; -fun spam_PN : PN; -fun spandau_PN : PN; -fun spaniard_PN : PN; -fun spanish_A : A; -fun spanish_PN : PN; -fun spanish_american_PN : PN; -fun spanish_american_war_PN : PN; -fun spanish_armada_PN : PN; -fun spanish_civil_war_PN : PN; -fun spanish_inquisition_PN : PN; -fun spanish_bayonet_PN : PN; -fun spanish_broom_PN : PN; -fun spanish_cedar_PN : PN; -fun spanish_dagger_PN : PN; -fun spanish_elm_PN : PN; -fun spanish_fly_PN : PN; -fun spanish_grunt_PN : PN; -fun spanish_heath_PN : PN; -fun spanish_iris_PN : PN; -fun spanish_lime_PN : PN; -fun spanish_mackerel_PN : PN; -fun spanish_monetary_unit_PN : PN; -fun spanish_moss_PN : PN; -fun spanish_needles_PN : PN; -fun spanish_oak_PN : PN; -fun spanish_onion_PN : PN; -fun spanish_oyster_plant_PN : PN; -fun spanish_paprika_PN : PN; -fun spanish_rice_PN : PN; -fun spanish_speaking_A : A; -fun spanish_tamarind_PN : PN; -fun sparaxis_PN : PN; -fun sparganiaceae_PN : PN; -fun sparganium_PN : PN; -fun sparidae_PN : PN; -fun spark_PN : PN; -fun sparmannia_PN : PN; -fun sparrow_unit_PN : PN; -fun sparta_PN : PN; -fun spartan_A : A; -fun spartan_PN : PN; -fun spartina_PN : PN; -fun spartium_PN : PN; -fun spassky_PN : PN; -fun spatangoida_PN : PN; -fun speaker_PN : PN; -fun special_air_service_PN : PN; -fun special_branch_PN : PN; -fun special_forces_PN : PN; -fun special_olympics_PN : PN; -fun speer_PN : PN; -fun speke_PN : PN; -fun spenborough_PN : PN; -fun spencer_PN : PN; -fun spender_PN : PN; -fun spengler_PN : PN; -fun spennymoor_PN : PN; -fun spenser_PN : PN; -fun spenserian_sonnet_PN : PN; -fun spenserian_stanza_PN : PN; -fun spergula_PN : PN; -fun spergularia_PN : PN; -fun spermatophyta_PN : PN; -fun sperry_PN : PN; -fun sphacelotheca_PN : PN; -fun sphaeralcea_PN : PN; -fun sphaeriaceae_PN : PN; -fun sphaeriales_PN : PN; -fun sphaerobolaceae_PN : PN; -fun sphaerocarpaceae_PN : PN; -fun sphaerocarpales_PN : PN; -fun sphaerocarpus_PN : PN; -fun sphagnales_PN : PN; -fun sphecidae_PN : PN; -fun sphecius_PN : PN; -fun sphecoidea_PN : PN; -fun sphecotheres_PN : PN; -fun spheniscidae_PN : PN; -fun sphenisciformes_PN : PN; -fun spheniscus_PN : PN; -fun sphenodon_PN : PN; -fun sphenopsida_PN : PN; -fun sphingidae_PN : PN; -fun sphinx_PN : PN; -fun sphyraena_PN : PN; -fun sphyraenidae_PN : PN; -fun sphyrapicus_PN : PN; -fun sphyrna_PN : PN; -fun sphyrnidae_PN : PN; -fun spica_PN : PN; -fun spielberg_PN : PN; -fun spielmeyer_vogt_disease_PN : PN; -fun spillane_PN : PN; -fun spilogale_PN : PN; -fun spinacia_PN : PN; -fun spinoza_PN : PN; -fun spinus_PN : PN; -fun spiraea_PN : PN; -fun spiranthes_PN : PN; -fun spirillaceae_PN : PN; -fun spirochaeta_PN : PN; -fun spirochaetaceae_PN : PN; -fun spirochaetales_PN : PN; -fun spirodela_PN : PN; -fun spirulidae_PN : PN; -fun spitsbergen_PN : PN; -fun spizella_PN : PN; -fun split_PN : PN; -fun spock_PN : PN; -fun spode_PN : PN; -fun spodoptera_PN : PN; -fun spodoptera_exigua_PN : PN; -fun spodoptera_frugiperda_PN : PN; -fun spokane_PN : PN; -fun spondias_PN : PN; -fun spork_PN : PN; -fun sporobolus_PN : PN; -fun sporozoa_PN : PN; -fun spotsylvania_PN : PN; -fun spraguea_PN : PN; -fun springfield_PN : PN; -fun spyeria_PN : PN; -fun sq_PN : PN; -fun squalidae_PN : PN; -fun squalus_PN : PN; -fun squamata_PN : PN; -fun squatina_PN : PN; -fun squatinidae_PN : PN; -fun squillidae_PN : PN; -fun sr_PN : PN; -fun sri_lanka_PN : PN; -fun sri_lanka_rupee_PN : PN; -fun sri_lankan_A : A; -fun sri_lankan_PN : PN; -fun sri_lankan_monetary_unit_PN : PN; -fun st_PN : PN; -fun st_andrews's_cross_PN : PN; -fun st_john's_wort_PN : PN; -fun st_patrick's_day_PN : PN; -fun st_peter's_wort_PN : PN; -fun st__andrew's_cross_PN : PN; -fun st__augustine_PN : PN; -fun st__augustine_grass_PN : PN; -fun st__bruno's_lily_PN : PN; -fun st__denis_PN : PN; -fun st__elias_range_PN : PN; -fun st__george's_PN : PN; -fun st__john's_PN : PN; -fun st__petersburg_PN : PN; -fun st_albans_PN : PN; -fun st_andrews_PN : PN; -fun st_andrews_major_PN : PN; -fun st_austell_PN : PN; -fun st_blazey_PN : PN; -fun st_helens_PN : PN; -fun st_ives_PN : PN; -fun st_louis_PN : PN; -fun st_neots_PN : PN; -fun st_paul_PN : PN; -fun st_petersburg_PN : PN; -fun st_stephen_PN : PN; -fun sta_PN : PN; -fun stachys_PN : PN; -fun stael_PN : PN; -fun staffa_PN : PN; -fun stafford_PN : PN; -fun staffordshire_PN : PN; -fun staffordshire_bullterrier_PN : PN; -fun stagira_PN : PN; -fun stakeford_PN : PN; -fun stalin_PN : PN; -fun stalinist_A : A; -fun stalinist_PN : PN; -fun stalinization_PN : PN; -fun stalybridge_PN : PN; -fun stamford_PN : PN; -fun stamp_act_PN : PN; -fun stan_PN : PN; -fun standard_and_poor's_PN : PN; -fun standish_PN : PN; -fun stanford_PN : PN; -fun stanford_binet_test_PN : PN; -fun stanford_university_PN : PN; -fun stanislavsky_PN : PN; -fun stanley_PN : PN; -fun stanley_steamer_PN : PN; -fun stanleya_PN : PN; -fun stanton_PN : PN; -fun stapelias_asterias_PN : PN; -fun staphylaceae_PN : PN; -fun staphylea_PN : PN; -fun staphylinidae_PN : PN; -fun star_chamber_PN : PN; -fun star_of_david_PN : PN; -fun starr_PN : PN; -fun stars_and_bars_PN : PN; -fun stassano_furnace_PN : PN; -fun state_department_PN : PN; -fun statehouse_PN : PN; -fun staten_island_PN : PN; -fun states'_rights_democratic_party_PN : PN; -fun states_general_PN : PN; -fun station_of_the_cross_PN : PN; -fun stations_PN : PN; -fun statistical_commission_PN : PN; -fun statue_of_liberty_PN : PN; -fun stavanger_PN : PN; -fun stayman_PN : PN; -fun stayman_winesap_PN : PN; -fun std_PN : PN; -fun steatornis_PN : PN; -fun steatornithidae_PN : PN; -fun steele_PN : PN; -fun steen_PN : PN; -fun steffens_PN : PN; -fun steganopus_PN : PN; -fun stegocephalia_PN : PN; -fun steichen_PN : PN; -fun stein_PN : PN; -fun steinbeck_PN : PN; -fun steinberg_PN : PN; -fun steinem_PN : PN; -fun steiner_PN : PN; -fun steinman_PN : PN; -fun steinmetz_PN : PN; -fun steinway_PN : PN; -fun stella_PN : PN; -fun stellaria_PN : PN; -fun steller_PN : PN; -fun steller's_sea_cow_PN : PN; -fun steller_sea_lion_PN : PN; -fun stellite_PN : PN; -fun sten_PN : PN; -fun sten_gun_PN : PN; -fun stendhal_PN : PN; -fun stengel_PN : PN; -fun stenocarpus_PN : PN; -fun stenochlaena_PN : PN; -fun stenopelmatidae_PN : PN; -fun stenopelmatus_PN : PN; -fun stenotaphrum_PN : PN; -fun stenotomus_PN : PN; -fun stenotus_PN : PN; -fun stentor_PN : PN; -fun stephanie_PN : PN; -fun stephanomeria_PN : PN; -fun stephen_PN : PN; -fun stephenson_PN : PN; -fun stercorariidae_PN : PN; -fun stercorarius_PN : PN; -fun sterculiaceae_PN : PN; -fun stereospondyli_PN : PN; -fun stern_PN : PN; -fun sterna_PN : PN; -fun sterne_PN : PN; -fun sterninae_PN : PN; -fun sternotherus_PN : PN; -fun sterope_PN : PN; -fun steuben_PN : PN; -fun steve_PN : PN; -fun steven_PN : PN; -fun stevenage_PN : PN; -fun stevens_PN : PN; -fun stevens'_law_PN : PN; -fun stevenson_PN : PN; -fun stevenston_PN : PN; -fun stewart_PN : PN; -fun steyning_PN : PN; -fun stheno_PN : PN; -fun stichaeidae_PN : PN; -fun sticherus_PN : PN; -fun stictomys_PN : PN; -fun stictopelia_PN : PN; -fun stieglitz_PN : PN; -fun still's_disease_PN : PN; -fun stillson_wrench_PN : PN; -fun stilton_PN : PN; -fun stilwell_PN : PN; -fun stinger_PN : PN; -fun stirling_PN : PN; -fun stizidae_PN : PN; -fun stizostedion_PN : PN; -fun stockholm_PN : PN; -fun stockport_PN : PN; -fun stocksbridge_PN : PN; -fun stockton_PN : PN; -fun stoic_PN : PN; -fun stoicism_PN : PN; -fun stoke_on_trent_PN : PN; -fun stoker_PN : PN; -fun stokesia_PN : PN; -fun stokowski_PN : PN; -fun stomatopoda_PN : PN; -fun stone_PN : PN; -fun stone_age_PN : PN; -fun stonehenge_PN : PN; -fun stonehouse_PN : PN; -fun stopes_PN : PN; -fun stoppard_PN : PN; -fun storeria_PN : PN; -fun stornoway_PN : PN; -fun stotfold_PN : PN; -fun stourbridge_PN : PN; -fun stourport_on_severn_PN : PN; -fun stowe_PN : PN; -fun stowmarket_PN : PN; -fun strachey_PN : PN; -fun stradavarius_PN : PN; -fun stradivari_PN : PN; -fun strait_of_dover_PN : PN; -fun strait_of_georgia_PN : PN; -fun strait_of_gibraltar_PN : PN; -fun strait_of_hormuz_PN : PN; -fun strait_of_magellan_PN : PN; -fun strait_of_messina_PN : PN; -fun strand_PN : PN; -fun stranraer_PN : PN; -fun strasberg_PN : PN; -fun strasbourg_PN : PN; -fun strategic_arms_limitation_talks_PN : PN; -fun stratford_on_avon_PN : PN; -fun stratford_on_avon_PN : PN; -fun strathaven_PN : PN; -fun strathclyde_PN : PN; -fun strauss_PN : PN; -fun stravinsky_PN : PN; -fun stravinskyan_A : A; -fun streep_PN : PN; -fun street_PN : PN; -fun streisand_PN : PN; -fun strekelia_PN : PN; -fun strelitzia_PN : PN; -fun strelitziaceae_PN : PN; -fun strepera_PN : PN; -fun strepsirhini_PN : PN; -fun streptococcus_anhemolyticus_PN : PN; -fun streptomyces_erythreus_PN : PN; -fun streptomyces_griseus_PN : PN; -fun streptomycetaceae_PN : PN; -fun streptopelia_PN : PN; -fun streptopelia_turtur_PN : PN; -fun streptosolen_PN : PN; -fun stretford_PN : PN; -fun strickland_PN : PN; -fun strigidae_PN : PN; -fun strigiformes_PN : PN; -fun strindberg_PN : PN; -fun strix_PN : PN; -fun strobilomyces_PN : PN; -fun stroheim_PN : PN; -fun stromateidae_PN : PN; -fun strombidae_PN : PN; -fun strombus_PN : PN; -fun strongylodon_PN : PN; -fun strophanthus_kombe_PN : PN; -fun stropharia_PN : PN; -fun stropharia_ambigua_PN : PN; -fun stropharia_hornemannii_PN : PN; -fun stropharia_rugoso_annulata_PN : PN; -fun strophariaceae_PN : PN; -fun stroud_PN : PN; -fun struthio_PN : PN; -fun struthionidae_PN : PN; -fun struthioniformes_PN : PN; -fun strymon_PN : PN; -fun strymon_melinus_PN : PN; -fun stuart_PN : PN; -fun stubbs_PN : PN; -fun studley_PN : PN; -fun sturnella_PN : PN; -fun sturnidae_PN : PN; -fun sturnus_PN : PN; -fun stuttgart_PN : PN; -fun stuyvesant_PN : PN; -fun stygian_A : A; -fun stylomecon_PN : PN; -fun stylophorum_PN : PN; -fun styphelia_PN : PN; -fun styracaceae_PN : PN; -fun styrofoam_PN : PN; -fun styron_PN : PN; -fun styx_PN : PN; -fun sub_saharan_africa_PN : PN; -fun subularia_PN : PN; -fun succoth_PN : PN; -fun suchow_PN : PN; -fun suckling_PN : PN; -fun sucre_PN : PN; -fun sudan_PN : PN; -fun sudanese_A : A; -fun sudanese_PN : PN; -fun sudanese_monetary_unit_PN : PN; -fun sudanese_pound_PN : PN; -fun sudbury_PN : PN; -fun sue_PN : PN; -fun suez_PN : PN; -fun suez_canal_PN : PN; -fun suffolk_PN : PN; -fun sufi_A : A; -fun sufi_PN : PN; -fun sufism_PN : PN; -fun suharto_PN : PN; -fun suidae_PN : PN; -fun suillus_PN : PN; -fun suillus_albivelatus_PN : PN; -fun sukarno_PN : PN; -fun sukur_PN : PN; -fun sula_PN : PN; -fun sulidae_PN : PN; -fun sulla_PN : PN; -fun sullivan_PN : PN; -fun sully_PN : PN; -fun sumatra_PN : PN; -fun sumatran_A : A; -fun sumatran_PN : PN; -fun sumer_PN : PN; -fun sumerian_A : A; -fun sumerian_PN : PN; -fun sumerology_PN : PN; -fun sumner_PN : PN; -fun sun_PN : PN; -fun sun_city_PN : PN; -fun sun_river_PN : PN; -fun sun_valley_PN : PN; -fun sun_yat_sen_PN : PN; -fun sunbelt_PN : PN; -fun sunda_islands_PN : PN; -fun sundacarpus_PN : PN; -fun sundacarpus_amara_PN : PN; -fun sundanese_PN : PN; -fun sunday_PN : PN; -fun sunday_best_PN : PN; -fun sunday_school_PN : PN; -fun sunderland_PN : PN; -fun sung_PN : PN; -fun sunnah_PN : PN; -fun sunni_PN : PN; -fun sunnite_PN : PN; -fun superfund_program_PN : PN; -fun superior_PN : PN; -fun supreme_allied_commander_atlantic_PN : PN; -fun supreme_allied_commander_europe_PN : PN; -fun supreme_court_PN : PN; -fun supreme_headquarters_allied_powers_europe_PN : PN; -fun supt_PN : PN; -fun sur_PN : PN; -fun surabaja_PN : PN; -fun surgeon_general_PN : PN; -fun suricata_PN : PN; -fun surinam_cherry_PN : PN; -fun surinam_toad_PN : PN; -fun suriname_PN : PN; -fun suriname_river_PN : PN; -fun surinamese_monetary_unit_PN : PN; -fun surnia_PN : PN; -fun surrey_PN : PN; -fun surya_PN : PN; -fun sus_PN : PN; -fun susan_PN : PN; -fun susan_b_anthony_dollar_PN : PN; -fun susanna_PN : PN; -fun susie_PN : PN; -fun susquehanna_PN : PN; -fun sussex_PN : PN; -fun sussex_spaniel_PN : PN; -fun sutherland_PN : PN; -fun sutton_PN : PN; -fun sutton_at_hone_PN : PN; -fun sutton_coldfield_PN : PN; -fun sutton_in_ashfield_PN : PN; -fun suva_PN : PN; -fun suzanne_PN : PN; -fun svalbard_PN : PN; -fun svengali_PN : PN; -fun sverdlovsk_PN : PN; -fun sverdrup_PN : PN; -fun swadlincote_PN : PN; -fun swahili_PN : PN; -fun swainsona_PN : PN; -fun swammerdam_PN : PN; -fun swan_river_daisy_PN : PN; -fun swan_river_everlasting_PN : PN; -fun swanage_PN : PN; -fun swanley_PN : PN; -fun swansea_PN : PN; -fun swanson_PN : PN; -fun swazi_A : A; -fun swazi_PN : PN; -fun swaziland_PN : PN; -fun swaziland_monetary_unit_PN : PN; -fun swede_PN : PN; -fun sweden_PN : PN; -fun swedenborg_PN : PN; -fun swedish_A : A; -fun swedish_PN : PN; -fun swedish_iron_PN : PN; -fun swedish_krona_PN : PN; -fun swedish_massage_PN : PN; -fun swedish_meatball_PN : PN; -fun swedish_monetary_unit_PN : PN; -fun swedish_rye_bread_PN : PN; -fun sweet_PN : PN; -fun swertia_PN : PN; -fun swietinia_PN : PN; -fun swift_PN : PN; -fun swinburne_PN : PN; -fun swindon_PN : PN; -fun swinton_PN : PN; -fun swiss_A : A; -fun swiss_PN : PN; -fun swiss_canton_PN : PN; -fun swiss_cheese_PN : PN; -fun swiss_franc_PN : PN; -fun swiss_mountain_pine_PN : PN; -fun swiss_pine_PN : PN; -fun swiss_steak_PN : PN; -fun switzerland_PN : PN; -fun sydenham_PN : PN; -fun sydenham's_chorea_PN : PN; -fun sydney_PN : PN; -fun sydney_harbor_bridge_PN : PN; -fun sylvanus_PN : PN; -fun sylvester_ii_PN : PN; -fun sylvia_PN : PN; -fun sylviidae_PN : PN; -fun sylviinae_PN : PN; -fun sylvilagus_PN : PN; -fun symbion_pandora_PN : PN; -fun symonds_PN : PN; -fun symons_PN : PN; -fun symphalangus_PN : PN; -fun symphoricarpos_PN : PN; -fun symphyla_PN : PN; -fun symphytum_PN : PN; -fun symplocaceae_PN : PN; -fun symplocarpus_PN : PN; -fun symplocus_PN : PN; -fun synagrops_PN : PN; -fun synanceja_PN : PN; -fun synapsida_PN : PN; -fun synaptomys_PN : PN; -fun synchytriaceae_PN : PN; -fun synchytrium_PN : PN; -fun synentognathi_PN : PN; -fun synercus_PN : PN; -fun synge_PN : PN; -fun syngnathidae_PN : PN; -fun syngnathus_PN : PN; -fun syngonium_PN : PN; -fun synodontidae_PN : PN; -fun synoptic_gospels_PN : PN; -fun syracuse_PN : PN; -fun syria_PN : PN; -fun syrian_A : A; -fun syrian_PN : PN; -fun syrian_desert_PN : PN; -fun syrian_bear_PN : PN; -fun syrian_monetary_unit_PN : PN; -fun syrian_pound_PN : PN; -fun syringa_PN : PN; -fun syrrhaptes_PN : PN; -fun systeme_international_d'unites_PN : PN; -fun syston_PN : PN; -fun syzygium_PN : PN; -fun szechwan_PN : PN; -fun szell_PN : PN; -fun szent_gyorgyi_PN : PN; -fun szilard_PN : PN; -fun t_PN : PN; -fun tnt_PN : PN; -fun tv_dinner_PN : PN; -fun t_bar_lift_PN : PN; -fun t_bone_steak_PN : PN; -fun t_cell_PN : PN; -fun t_junction_PN : PN; -fun t_man_PN : PN; -fun t_network_PN : PN; -fun t_shaped_A : A; -fun t_square_PN : PN; -fun ta'ziyeh_PN : PN; -fun tabanidae_PN : PN; -fun tabasco_PN : PN; -fun tabernacle_PN : PN; -fun tabernaemontana_PN : PN; -fun tabora_PN : PN; -fun tabriz_PN : PN; -fun tabuk_PN : PN; -fun tacca_PN : PN; -fun taccaceae_PN : PN; -fun tachinidae_PN : PN; -fun tachyglossidae_PN : PN; -fun tachyglossus_PN : PN; -fun tachypleus_PN : PN; -fun tacitus_PN : PN; -fun tacoma_PN : PN; -fun tacoma_narrows_bridge_PN : PN; -fun taconic_mountains_PN : PN; -fun tadarida_PN : PN; -fun tadley_PN : PN; -fun tadorna_PN : PN; -fun taegu_PN : PN; -fun taeniidae_PN : PN; -fun taft_PN : PN; -fun tagalog_PN : PN; -fun tageteste_PN : PN; -fun tagore_PN : PN; -fun tagus_PN : PN; -fun tahiti_PN : PN; -fun tahitian_A : A; -fun tahitian_PN : PN; -fun tai_PN : PN; -fun tai_dam_PN : PN; -fun tai_long_PN : PN; -fun tai_lue_PN : PN; -fun tai_nuea_PN : PN; -fun tai_yuan_PN : PN; -fun taichung_PN : PN; -fun taif_PN : PN; -fun taimyr_peninsula_PN : PN; -fun taipei_PN : PN; -fun taiwan_PN : PN; -fun taiwan_dollar_PN : PN; -fun taiwanese_A : A; -fun taiwanese_PN : PN; -fun taiyuan_PN : PN; -fun taj_mahal_PN : PN; -fun tajik_PN : PN; -fun tajiki_PN : PN; -fun tajikistan_PN : PN; -fun tajikistani_A : A; -fun tajikistani_monetary_unit_PN : PN; -fun takakkaw_PN : PN; -fun takayasu's_arteritis_PN : PN; -fun takelma_PN : PN; -fun takilman_PN : PN; -fun taklimakan_desert_PN : PN; -fun talbot_PN : PN; -fun taliban_PN : PN; -fun talinum_PN : PN; -fun tallahassee_PN : PN; -fun tallapoosa_PN : PN; -fun tallchief_PN : PN; -fun talleyrand_PN : PN; -fun tallinn_PN : PN; -fun tallis_PN : PN; -fun talmud_PN : PN; -fun talmudic_literature_PN : PN; -fun talpidae_PN : PN; -fun tamale_PN : PN; -fun tamaricaceae_PN : PN; -fun tamarindus_PN : PN; -fun tamarix_PN : PN; -fun tamerlane_PN : PN; -fun tamias_PN : PN; -fun tamiasciurus_PN : PN; -fun tamil_A : A; -fun tamil_PN : PN; -fun tamil_nadu_PN : PN; -fun tamm_PN : PN; -fun tammany_hall_PN : PN; -fun tammuz_PN : PN; -fun tampa_PN : PN; -fun tampa_bay_PN : PN; -fun tampax_PN : PN; -fun tampere_PN : PN; -fun tampico_PN : PN; -fun tamus_PN : PN; -fun tamworth_PN : PN; -fun tanacetum_PN : PN; -fun tanakh_PN : PN; -fun tancred_PN : PN; -fun tandy_PN : PN; -fun taney_PN : PN; -fun tang_PN : PN; -fun tanga_PN : PN; -fun tanganyika_PN : PN; -fun tange_PN : PN; -fun tangier_PN : PN; -fun tangier_pea_PN : PN; -fun tangshan_PN : PN; -fun tanguy_PN : PN; -fun tannenberg_PN : PN; -fun tanoan_PN : PN; -fun tantalus_PN : PN; -fun tantilla_PN : PN; -fun tantra_PN : PN; -fun tantric_A : A; -fun tantrism_PN : PN; -fun tantrist_PN : PN; -fun tanzania_PN : PN; -fun tanzanian_A : A; -fun tanzanian_PN : PN; -fun tanzanian_monetary_unit_PN : PN; -fun tanzanian_shilling_PN : PN; -fun tao_PN : PN; -fun taoism_PN : PN; -fun taoist_A : A; -fun taoist_PN : PN; -fun taoist_trinity_PN : PN; -fun taos_PN : PN; -fun tapiridae_PN : PN; -fun tapirus_PN : PN; -fun tappan_PN : PN; -fun tappan_zee_bridge_PN : PN; -fun tara_PN : PN; -fun tarabulus_PN : PN; -fun taracahitian_PN : PN; -fun tarahumara_PN : PN; -fun taranaki_PN : PN; -fun tarantino_PN : PN; -fun taranto_PN : PN; -fun tarawa_PN : PN; -fun taraxacum_PN : PN; -fun tarbell_PN : PN; -fun tardigrada_PN : PN; -fun tareekh_e_kasas_PN : PN; -fun taricha_PN : PN; -fun tarkovsky_PN : PN; -fun tarquin_PN : PN; -fun tarrasa_PN : PN; -fun tarrietia_PN : PN; -fun tarsiidae_PN : PN; -fun tarsioidea_PN : PN; -fun tarsius_PN : PN; -fun tarsius_glis_PN : PN; -fun tarsius_syrichta_PN : PN; -fun tartary_PN : PN; -fun tartu_PN : PN; -fun tartuffe_PN : PN; -fun tarzan_PN : PN; -fun tashkent_PN : PN; -fun tashmit_PN : PN; -fun tasman_PN : PN; -fun tasman_sea_PN : PN; -fun tasman_dwarf_pine_PN : PN; -fun tasmania_PN : PN; -fun tasmanian_A : A; -fun tasmanian_devil_PN : PN; -fun tasso_PN : PN; -fun tatahumara_PN : PN; -fun tatar_PN : PN; -fun tate_PN : PN; -fun tati_PN : PN; -fun tatum_PN : PN; -fun taunton_PN : PN; -fun taurotragus_PN : PN; -fun taurus_PN : PN; -fun tautoga_PN : PN; -fun tautogolabrus_PN : PN; -fun taverham_PN : PN; -fun tavistock_PN : PN; -fun tawney_PN : PN; -fun taxaceae_PN : PN; -fun taxales_PN : PN; -fun taxidea_PN : PN; -fun taxodiaceae_PN : PN; -fun taxodium_PN : PN; -fun taxopsida_PN : PN; -fun taxus_PN : PN; -fun tay_PN : PN; -fun tay_sachs_disease_PN : PN; -fun tayalic_PN : PN; -fun tayassu_PN : PN; -fun tayassuidae_PN : PN; -fun taylor_PN : PN; -fun tayside_PN : PN; -fun tazir_crime_PN : PN; -fun tbilisi_PN : PN; -fun tchaikovsky_PN : PN; -fun te_deum_PN : PN; -fun te_kanawa_PN : PN; -fun teach_PN : PN; -fun teamsters_union_PN : PN; -fun teapot_dome_PN : PN; -fun teasdale_PN : PN; -fun tebaldi_PN : PN; -fun tebet_PN : PN; -fun technology_administration_PN : PN; -fun tecophilaeacea_PN : PN; -fun tectaria_PN : PN; -fun tectona_PN : PN; -fun tecumseh_PN : PN; -fun ted_PN : PN; -fun teddy_PN : PN; -fun teesside_PN : PN; -fun teflon_PN : PN; -fun tegucigalpa_PN : PN; -fun teheran_PN : PN; -fun teignmouth_PN : PN; -fun teiidae_PN : PN; -fun teilhard_de_chardin_PN : PN; -fun tel_PN : PN; -fun tel_aviv_PN : PN; -fun telanthera_PN : PN; -fun telemann_PN : PN; -fun teleostei_PN : PN; -fun teleprompter_PN : PN; -fun telescopium_PN : PN; -fun telford_PN : PN; -fun tell_PN : PN; -fun teller_PN : PN; -fun tellima_PN : PN; -fun tellus_PN : PN; -fun telopea_PN : PN; -fun telosporidia_PN : PN; -fun telstar_PN : PN; -fun telugu_PN : PN; -fun temnospondyli_PN : PN; -fun temperate_zone_PN : PN; -fun temple_of_apollo_PN : PN; -fun temple_of_artemis_PN : PN; -fun temple_of_jerusalem_PN : PN; -fun templetonia_PN : PN; -fun temuco_PN : PN; -fun tenby_PN : PN; -fun tenebrionidae_PN : PN; -fun tenerife_PN : PN; -fun tennessean_PN : PN; -fun tennessee_PN : PN; -fun tennessee_walker_PN : PN; -fun tenniel_PN : PN; -fun tennyson_PN : PN; -fun tenoretic_PN : PN; -fun tenrecidae_PN : PN; -fun tentaculata_PN : PN; -fun tenterden_PN : PN; -fun tenthredinidae_PN : PN; -fun tenzing_norgay_PN : PN; -fun tephrosia_PN : PN; -fun tepic_PN : PN; -fun tera_PN : PN; -fun terebella_PN : PN; -fun terebellidae_PN : PN; -fun teredinidae_PN : PN; -fun terence_PN : PN; -fun teresa_PN : PN; -fun teresa_of_avila_PN : PN; -fun tereshkova_PN : PN; -fun termes_PN : PN; -fun termi_PN : PN; -fun termitidae_PN : PN; -fun terpsichore_PN : PN; -fun terr_PN : PN; -fun terrapene_PN : PN; -fun territorial_army_PN : PN; -fun terry_PN : PN; -fun tertiary_PN : PN; -fun tertry_PN : PN; -fun tertullian_PN : PN; -fun tesla_PN : PN; -fun tesla_coil_PN : PN; -fun tess_PN : PN; -fun tessa_PN : PN; -fun testacea_PN : PN; -fun testament_PN : PN; -fun testudinidae_PN : PN; -fun testudo_PN : PN; -fun tet_PN : PN; -fun tethys_PN : PN; -fun teton_PN : PN; -fun teton_range_PN : PN; -fun tetraclinis_PN : PN; -fun tetragonia_PN : PN; -fun tetragonurus_PN : PN; -fun tetragrammaton_PN : PN; -fun tetraneuris_PN : PN; -fun tetranychidae_PN : PN; -fun tetrao_PN : PN; -fun tetraodontidae_PN : PN; -fun tetraonidae_PN : PN; -fun tetrapturus_PN : PN; -fun tetrazzini_PN : PN; -fun tettigoniidae_PN : PN; -fun teucrium_PN : PN; -fun teutoburger_wald_PN : PN; -fun teuton_PN : PN; -fun teutonic_A : A; -fun teutonic_deity_PN : PN; -fun teutonist_PN : PN; -fun tewkesbury_PN : PN; -fun texan_A : A; -fun texan_PN : PN; -fun texarkana_PN : PN; -fun texas_PN : PN; -fun texas_independence_day_PN : PN; -fun texas_ranger_PN : PN; -fun texas_bluebonnet_PN : PN; -fun texas_chachalaca_PN : PN; -fun texas_fever_PN : PN; -fun texas_horned_lizard_PN : PN; -fun texas_leaguer_PN : PN; -fun texas_purple_spike_PN : PN; -fun texas_snowbell_PN : PN; -fun texas_star_PN : PN; -fun texas_storksbill_PN : PN; -fun texas_toad_PN : PN; -fun texas_tortoise_PN : PN; -fun thackeray_PN : PN; -fun thai_A : A; -fun thai_PN : PN; -fun thai_monetary_unit_PN : PN; -fun thailand_PN : PN; -fun thalarctos_PN : PN; -fun thalassoma_PN : PN; -fun thales_PN : PN; -fun thalia_PN : PN; -fun thaliacea_PN : PN; -fun thalictrum_PN : PN; -fun thallophyta_PN : PN; -fun thame_PN : PN; -fun thames_PN : PN; -fun thamnophilus_PN : PN; -fun thamnophis_PN : PN; -fun thanatos_PN : PN; -fun thanksgiving_PN : PN; -fun thar_desert_PN : PN; -fun tharp_PN : PN; -fun thatcham_PN : PN; -fun thatcher_PN : PN; -fun thatcherism_PN : PN; -fun thatcherite_PN : PN; -fun the_hague_PN : PN; -fun the_star_spangled_banner_PN : PN; -fun thea_PN : PN; -fun theaceae_PN : PN; -fun theban_A : A; -fun theban_PN : PN; -fun thebes_PN : PN; -fun thecodontia_PN : PN; -fun thelephoraceae_PN : PN; -fun thelypteridaceae_PN : PN; -fun thelypteris_PN : PN; -fun thematic_apperception_test_PN : PN; -fun themis_PN : PN; -fun themistocles_PN : PN; -fun theo_PN : PN; -fun theobroma_PN : PN; -fun theodore_PN : PN; -fun theodore_roosevelt_memorial_national_park_PN : PN; -fun theodosius_PN : PN; -fun theophrastaceae_PN : PN; -fun theophrastus_PN : PN; -fun theraphosidae_PN : PN; -fun therapsida_PN : PN; -fun theravada_PN : PN; -fun theresa_PN : PN; -fun theridiidae_PN : PN; -fun thermidor_PN : PN; -fun thermobia_PN : PN; -fun thermopsis_PN : PN; -fun thermopylae_PN : PN; -fun theropoda_PN : PN; -fun theseus_PN : PN; -fun thespesia_PN : PN; -fun thespis_PN : PN; -fun thessalia_PN : PN; -fun thessalian_PN : PN; -fun thessalonian_PN : PN; -fun thessaloniki_PN : PN; -fun thetford_PN : PN; -fun thetis_PN : PN; -fun thevetia_PN : PN; -fun thielavia_PN : PN; -fun thiobacteriaceae_PN : PN; -fun thionville_PN : PN; -fun thiosulfil_PN : PN; -fun third_crusade_PN : PN; -fun third_epistel_of_john_PN : PN; -fun third_lateran_council_PN : PN; -fun third_reich_PN : PN; -fun third_world_PN : PN; -fun thirsk_PN : PN; -fun thirty_years'_war_PN : PN; -fun thlaspi_PN : PN; -fun tho_PN : PN; -fun thomas_PN : PN; -fun thomism_PN : PN; -fun thomomys_PN : PN; -fun thompson_PN : PN; -fun thompson_seedless_PN : PN; -fun thomson_PN : PN; -fun thomson's_gazelle_PN : PN; -fun thor_PN : PN; -fun thoreau_PN : PN; -fun thoreauvian_A : A; -fun thornbury_PN : PN; -fun thorndike_PN : PN; -fun thorne_PN : PN; -fun thornton_PN : PN; -fun thorpe_PN : PN; -fun thorshavn_PN : PN; -fun thoth_PN : PN; -fun thousand_island_dressing_PN : PN; -fun thrace_PN : PN; -fun thracian_A : A; -fun thracian_PN : PN; -fun thraco_phrygian_PN : PN; -fun thraupidae_PN : PN; -fun threskiornis_PN : PN; -fun threskiornithidae_PN : PN; -fun thrinax_PN : PN; -fun thripidae_PN : PN; -fun thryothorus_PN : PN; -fun thucydides_PN : PN; -fun thuja_PN : PN; -fun thujopsis_PN : PN; -fun thule_PN : PN; -fun thunbergia_PN : PN; -fun thunder_bay_PN : PN; -fun thunnus_PN : PN; -fun thurber_PN : PN; -fun thurcroft_PN : PN; -fun thuringia_PN : PN; -fun thurmaston_PN : PN; -fun thurrock_PN : PN; -fun thurs_PN : PN; -fun thursday_PN : PN; -fun thurso_PN : PN; -fun thylacinus_PN : PN; -fun thylogale_PN : PN; -fun thymelaeaceae_PN : PN; -fun thymus_PN : PN; -fun thyreophora_PN : PN; -fun thysanocarpus_PN : PN; -fun thysanoptera_PN : PN; -fun thysanura_PN : PN; -fun tiamat_PN : PN; -fun tianjin_PN : PN; -fun tiarella_PN : PN; -fun tiber_PN : PN; -fun tiberius_PN : PN; -fun tibet_PN : PN; -fun tibetan_A : A; -fun tibetan_PN : PN; -fun tibetan_mastiff_PN : PN; -fun tibetan_terrier_PN : PN; -fun tibeto_burman_PN : PN; -fun tibicen_PN : PN; -fun tichodroma_PN : PN; -fun ticino_PN : PN; -fun tidewater_PN : PN; -fun tidworth_PN : PN; -fun tien_shan_PN : PN; -fun tien_pao_PN : PN; -fun tientsin_PN : PN; -fun tiepolo_PN : PN; -fun tierra_del_fuego_PN : PN; -fun tietze's_syndrome_PN : PN; -fun tiffany_PN : PN; -fun tiffany_glass_PN : PN; -fun tigris_PN : PN; -fun tijuana_PN : PN; -fun tilapia_PN : PN; -fun tilburg_PN : PN; -fun tilbury_PN : PN; -fun tilden_PN : PN; -fun tilia_PN : PN; -fun tiliaceae_PN : PN; -fun tiliomycetes_PN : PN; -fun tillandsia_PN : PN; -fun tilletia_PN : PN; -fun tilletiaceae_PN : PN; -fun tillich_PN : PN; -fun tim_PN : PN; -fun timalia_PN : PN; -fun timaliidae_PN : PN; -fun timbuktu_PN : PN; -fun times_square_PN : PN; -fun timgad_PN : PN; -fun timimoun_PN : PN; -fun timmy_PN : PN; -fun timor_PN : PN; -fun timor_sea_PN : PN; -fun timorese_A : A; -fun timorese_PN : PN; -fun timothy_PN : PN; -fun tin_pan_alley_PN : PN; -fun tina_PN : PN; -fun tinamidae_PN : PN; -fun tinamiformes_PN : PN; -fun tinbergen_PN : PN; -fun tinca_PN : PN; -fun tinea_PN : PN; -fun tineidae_PN : PN; -fun tineoidea_PN : PN; -fun tineola_PN : PN; -fun tingidae_PN : PN; -fun tintoretto_PN : PN; -fun tipperary_PN : PN; -fun tipuana_PN : PN; -fun tipulidae_PN : PN; -fun tirana_PN : PN; -fun tiresias_PN : PN; -fun tirich_mir_PN : PN; -fun tirso_de_molina_PN : PN; -fun tishah_b'av_PN : PN; -fun tishri_PN : PN; -fun tisiphone_PN : PN; -fun titan_PN : PN; -fun titaness_PN : PN; -fun titania_PN : PN; -fun titanosauridae_PN : PN; -fun titanosaurus_PN : PN; -fun titian_PN : PN; -fun tito_PN : PN; -fun titus_PN : PN; -fun tiu_PN : PN; -fun tiverton_PN : PN; -fun tivoli_PN : PN; -fun tlingit_PN : PN; -fun tobago_PN : PN; -fun tobagonian_A : A; -fun tobagonian_PN : PN; -fun tobey_PN : PN; -fun tobin_PN : PN; -fun tobit_PN : PN; -fun toby_PN : PN; -fun tocantins_PN : PN; -fun tocharian_PN : PN; -fun tocqueville_PN : PN; -fun toda_PN : PN; -fun todd_PN : PN; -fun todea_PN : PN; -fun todidae_PN : PN; -fun todmorden_PN : PN; -fun todus_PN : PN; -fun tofieldia_PN : PN; -fun togaviridae_PN : PN; -fun togo_PN : PN; -fun togo_franc_PN : PN; -fun togolese_A : A; -fun togolese_PN : PN; -fun tojo_PN : PN; -fun tokay_PN : PN; -fun toklas_PN : PN; -fun tokyo_PN : PN; -fun toledo_PN : PN; -fun tolkien_PN : PN; -fun tolmiea_PN : PN; -fun tolstoy_PN : PN; -fun toltec_PN : PN; -fun tolypeutes_PN : PN; -fun tom_PN : PN; -fun tom_sawyer_PN : PN; -fun tom_thumb_PN : PN; -fun tom_and_jerry_PN : PN; -fun tombaugh_PN : PN; -fun tombigbee_PN : PN; -fun tomistoma_PN : PN; -fun tommy_PN : PN; -fun tommy_gun_PN : PN; -fun tonbridge_PN : PN; -fun tonegawa_susumu_PN : PN; -fun tonga_PN : PN; -fun tongan_A : A; -fun tongan_PN : PN; -fun tongan_monetary_unit_PN : PN; -fun tony_PN : PN; -fun tonyrefail_PN : PN; -fun toona_PN : PN; -fun topeka_PN : PN; -fun torah_PN : PN; -fun torbay_PN : PN; -fun torino_PN : PN; -fun toronto_PN : PN; -fun torpedinidae_PN : PN; -fun torpediniformes_PN : PN; -fun torquemada_PN : PN; -fun torreon_PN : PN; -fun torres_strait_PN : PN; -fun torrey_pine_PN : PN; -fun torreya_PN : PN; -fun torricelli_PN : PN; -fun torrid_zone_PN : PN; -fun tortricidae_PN : PN; -fun tory_PN : PN; -fun toscanini_PN : PN; -fun tosk_PN : PN; -fun totnes_PN : PN; -fun toulon_PN : PN; -fun toulouse_PN : PN; -fun toulouse_lautrec_PN : PN; -fun tour_de_france_PN : PN; -fun tourette_PN : PN; -fun tourette's_syndrome_PN : PN; -fun tours_PN : PN; -fun tower_hamlets_PN : PN; -fun tower_of_babel_PN : PN; -fun tower_of_london_PN : PN; -fun tower_of_pharos_PN : PN; -fun town_PN : PN; -fun townes_PN : PN; -fun townsend_PN : PN; -fun townsendia_PN : PN; -fun toxicodendron_PN : PN; -fun toxostoma_PN : PN; -fun toxotes_PN : PN; -fun toxotidae_PN : PN; -fun toynbee_PN : PN; -fun toyohashi_PN : PN; -fun toyonaki_PN : PN; -fun toyota_PN : PN; -fun trachelospermum_PN : PN; -fun tracheophyta_PN : PN; -fun trachinotus_PN : PN; -fun trachipteridae_PN : PN; -fun trachipterus_PN : PN; -fun trachurus_PN : PN; -fun tractarian_PN : PN; -fun tractarianism_PN : PN; -fun tracy_PN : PN; -fun tradescant_PN : PN; -fun tradescantia_PN : PN; -fun trafalgar_PN : PN; -fun trafalgar_square_PN : PN; -fun tragelaphus_PN : PN; -fun tragopogon_PN : PN; -fun tragulidae_PN : PN; -fun tragulus_PN : PN; -fun trajan_PN : PN; -fun tralee_PN : PN; -fun tranent_PN : PN; -fun trans_PN : PN; -fun transcaucasia_PN : PN; -fun transfiguration_PN : PN; -fun transportation_security_administration_PN : PN; -fun transvaal_PN : PN; -fun transylvania_PN : PN; -fun transylvanian_alps_PN : PN; -fun trapa_PN : PN; -fun trapaceae_PN : PN; -fun trapezium_PN : PN; -fun trappist_PN : PN; -fun trasimeno_PN : PN; -fun traubel_PN : PN; -fun trautvetteria_PN : PN; -fun traverse_city_PN : PN; -fun treasury_PN : PN; -fun treasury_bill_PN : PN; -fun treasury_bond_PN : PN; -fun treasury_note_PN : PN; -fun treaty_of_versailles_PN : PN; -fun tredegar_PN : PN; -fun tree_PN : PN; -fun trema_PN : PN; -fun trematoda_PN : PN; -fun tremella_PN : PN; -fun tremella_foliacea_PN : PN; -fun tremella_reticulata_PN : PN; -fun tremellaceae_PN : PN; -fun tremellales_PN : PN; -fun trent_PN : PN; -fun trentino_alto_adige_PN : PN; -fun trento_PN : PN; -fun trenton_PN : PN; -fun treponemataceae_PN : PN; -fun trevelyan_PN : PN; -fun trevino_PN : PN; -fun trevithick_PN : PN; -fun trevor_PN : PN; -fun triaenodon_PN : PN; -fun triakidae_PN : PN; -fun trialeurodes_PN : PN; -fun triangulum_PN : PN; -fun triangulum_australe_PN : PN; -fun triassic_A : A; -fun triassic_PN : PN; -fun triatoma_PN : PN; -fun tribes_of_israel_PN : PN; -fun tribolium_PN : PN; -fun tribonema_PN : PN; -fun tribonemaceae_PN : PN; -fun tribulus_PN : PN; -fun trichechidae_PN : PN; -fun trichechus_PN : PN; -fun trichiuridae_PN : PN; -fun trichoceros_PN : PN; -fun trichodontidae_PN : PN; -fun trichoglossus_PN : PN; -fun tricholoma_PN : PN; -fun tricholoma_aurantium_PN : PN; -fun tricholoma_pardinum_PN : PN; -fun tricholoma_pessundatum_PN : PN; -fun tricholoma_sejunctum_PN : PN; -fun tricholoma_vaccinum_PN : PN; -fun tricholoma_venenata_PN : PN; -fun tricholomataceae_PN : PN; -fun trichomanes_PN : PN; -fun trichophaga_PN : PN; -fun trichophyton_PN : PN; -fun trichoptera_PN : PN; -fun trichostema_PN : PN; -fun trichostigma_PN : PN; -fun trichosurus_PN : PN; -fun trichys_PN : PN; -fun tridacna_PN : PN; -fun tridacnidae_PN : PN; -fun trieste_PN : PN; -fun trifolium_PN : PN; -fun triga_PN : PN; -fun triglidae_PN : PN; -fun triglinae_PN : PN; -fun triglochin_PN : PN; -fun trigonella_PN : PN; -fun trilby_PN : PN; -fun trilisa_PN : PN; -fun trilliaceae_PN : PN; -fun trilling_PN : PN; -fun trimorphodon_PN : PN; -fun trimurti_PN : PN; -fun trinectes_PN : PN; -fun tring_PN : PN; -fun tringa_PN : PN; -fun trinidad_PN : PN; -fun trinidad_and_tobago_PN : PN; -fun trinidad_and_tobago_dollar_PN : PN; -fun trinidadian_A : A; -fun trinidadian_PN : PN; -fun trinitarian_PN : PN; -fun trinitarianism_PN : PN; -fun trinity_PN : PN; -fun trinity_river_PN : PN; -fun trinity_sunday_PN : PN; -fun trionychidae_PN : PN; -fun trionyx_PN : PN; -fun triopidae_PN : PN; -fun triops_PN : PN; -fun triostium_PN : PN; -fun triple_frontier_PN : PN; -fun tripleurospermum_PN : PN; -fun triplochiton_PN : PN; -fun tripoli_PN : PN; -fun tristan_PN : PN; -fun triticum_PN : PN; -fun triton_PN : PN; -fun triturus_PN : PN; -fun trochilidae_PN : PN; -fun trogium_PN : PN; -fun troglodytes_PN : PN; -fun troglodytidae_PN : PN; -fun trogonidae_PN : PN; -fun trogoniformes_PN : PN; -fun trojan_A : A; -fun trojan_PN : PN; -fun trojan_horse_PN : PN; -fun trojan_war_PN : PN; -fun trollius_PN : PN; -fun trollope_PN : PN; -fun trombicula_PN : PN; -fun trombiculidae_PN : PN; -fun trombidiidae_PN : PN; -fun trondheim_PN : PN; -fun trondheim_fjord_PN : PN; -fun troon_PN : PN; -fun tropaeolaceae_PN : PN; -fun tropaeolum_PN : PN; -fun tropic_of_cancer_PN : PN; -fun tropic_of_capricorn_PN : PN; -fun tropidoclonion_PN : PN; -fun trotsky_PN : PN; -fun trotskyism_PN : PN; -fun trotskyite_PN : PN; -fun trowbridge_PN : PN; -fun troy_PN : PN; -fun truffaut_PN : PN; -fun truman_PN : PN; -fun truman_doctrine_PN : PN; -fun trumbo_PN : PN; -fun trumbull_PN : PN; -fun truncocolumella_PN : PN; -fun truncocolumella_citrina_PN : PN; -fun truro_PN : PN; -fun trusteeship_council_PN : PN; -fun truth_PN : PN; -fun trypetidae_PN : PN; -fun tsimshian_PN : PN; -fun tsinan_PN : PN; -fun tsingtao_PN : PN; -fun tsitsihar_PN : PN; -fun tsouic_PN : PN; -fun tsuga_PN : PN; -fun tsushima_PN : PN; -fun tswana_PN : PN; -fun tuamotu_archipelago_PN : PN; -fun tuareg_PN : PN; -fun tuatha_de_danann_PN : PN; -fun tuber_PN : PN; -fun tuberaceae_PN : PN; -fun tuberales_PN : PN; -fun tubercularia_PN : PN; -fun tuberculariaceae_PN : PN; -fun tubman_PN : PN; -fun tubuai_islands_PN : PN; -fun tubulidentata_PN : PN; -fun tucana_PN : PN; -fun tuchman_PN : PN; -fun tucker_PN : PN; -fun tucson_PN : PN; -fun tudor_A : A; -fun tudor_PN : PN; -fun tudor_arch_PN : PN; -fun tudor_architecture_PN : PN; -fun tues_PN : PN; -fun tuesday_PN : PN; -fun tugela_PN : PN; -fun tuileries_PN : PN; -fun tulipa_PN : PN; -fun tulipa_gesneriana_PN : PN; -fun tullibody_PN : PN; -fun tulostoma_PN : PN; -fun tulostomaceae_PN : PN; -fun tulostomatales_PN : PN; -fun tulsa_PN : PN; -fun tulu_PN : PN; -fun tums_PN : PN; -fun tunbridge_wells_PN : PN; -fun tunga_PN : PN; -fun tungus_PN : PN; -fun tungusic_PN : PN; -fun tunguska_PN : PN; -fun tunis_PN : PN; -fun tunisia_PN : PN; -fun tunisian_A : A; -fun tunisian_PN : PN; -fun tunisian_dinar_PN : PN; -fun tunisian_dirham_PN : PN; -fun tunisian_monetary_unit_PN : PN; -fun tunney_PN : PN; -fun tupac_amaru_revolutionary_movement_PN : PN; -fun tupac_katari_guerrilla_army_PN : PN; -fun tupaia_PN : PN; -fun tupaiidae_PN : PN; -fun tupelo_PN : PN; -fun tupi_PN : PN; -fun tupi_guarani_PN : PN; -fun tupinambis_PN : PN; -fun tupungatito_PN : PN; -fun tupungato_PN : PN; -fun turbellaria_PN : PN; -fun turdidae_PN : PN; -fun turdinae_PN : PN; -fun turdus_PN : PN; -fun turfan_PN : PN; -fun turgenev_PN : PN; -fun turgot_PN : PN; -fun turin_PN : PN; -fun turing_PN : PN; -fun turing_machine_PN : PN; -fun turk_PN : PN; -fun turk's_cap_PN : PN; -fun turk's_head_PN : PN; -fun turkey_PN : PN; -fun turkey_red_PN : PN; -fun turki_PN : PN; -fun turkic_A : A; -fun turkic_speaking_A : A; -fun turkish_A : A; -fun turkish_PN : PN; -fun turkish_delight_PN : PN; -fun turkish_hizballah_PN : PN; -fun turkish_bath_PN : PN; -fun turkish_coffee_PN : PN; -fun turkish_monetary_unit_PN : PN; -fun turkish_tobacco_PN : PN; -fun turkish_towel_PN : PN; -fun turkistan_PN : PN; -fun turkmen_A : A; -fun turkmen_PN : PN; -fun turkmen_monetary_unit_PN : PN; -fun turkmenistan_PN : PN; -fun turkoman_PN : PN; -fun turku_PN : PN; -fun turner_PN : PN; -fun turner's_syndrome_PN : PN; -fun turnicidae_PN : PN; -fun turnix_PN : PN; -fun turpin_PN : PN; -fun turritis_PN : PN; -fun tursiops_PN : PN; -fun tuscaloosa_PN : PN; -fun tuscan_A : A; -fun tuscan_PN : PN; -fun tuscan_order_PN : PN; -fun tuscany_PN : PN; -fun tuscarora_PN : PN; -fun tuskegee_PN : PN; -fun tussaud_PN : PN; -fun tussilago_PN : PN; -fun tutankhamen_PN : PN; -fun tutelo_PN : PN; -fun tutsi_PN : PN; -fun tutu_PN : PN; -fun tuvalu_PN : PN; -fun tuvalu_dollar_PN : PN; -fun tuxtla_gutierrez_PN : PN; -fun tweedledum_and_tweedledee_PN : PN; -fun twelfth_night_PN : PN; -fun twelfthtide_PN : PN; -fun twin_PN : PN; -fun twin_cities_PN : PN; -fun twin_falls_PN : PN; -fun twinkie_PN : PN; -fun two_kettle_PN : PN; -fun tyche_PN : PN; -fun tyke_PN : PN; -fun tylenchidae_PN : PN; -fun tylenchus_PN : PN; -fun tyler_PN : PN; -fun tympanuchus_PN : PN; -fun tyndale_PN : PN; -fun tyndall_PN : PN; -fun tyndall_effect_PN : PN; -fun tyne_PN : PN; -fun tynemouth_PN : PN; -fun typha_PN : PN; -fun typhaceae_PN : PN; -fun typhlopidae_PN : PN; -fun typhoeus_PN : PN; -fun typhon_PN : PN; -fun tyr_PN : PN; -fun tyranni_PN : PN; -fun tyrannidae_PN : PN; -fun tyrannus_PN : PN; -fun tyrian_purple_PN : PN; -fun tyrol_PN : PN; -fun tyrolean_A : A; -fun tyrolean_PN : PN; -fun tyrolean_alps_PN : PN; -fun tyrone_PN : PN; -fun tyrrhenian_sea_PN : PN; -fun tyson_PN : PN; -fun tyto_PN : PN; -fun tytonidae_PN : PN; -fun tzara_PN : PN; -fun tzupo_PN : PN; -fun u_PN : PN; -fun unix_PN : PN; -fun unix_guru_PN : PN; -fun url_PN : PN; -fun uss_cole_PN : PN; -fun u_shaped_A : A; -fun ubykh_PN : PN; -fun uca_PN : PN; -fun uddingston_PN : PN; -fun udi_PN : PN; -fun udine_PN : PN; -fun udmurt_PN : PN; -fun ufa_PN : PN; -fun uganda_PN : PN; -fun ugandan_A : A; -fun ugandan_PN : PN; -fun ugandan_monetary_unit_PN : PN; -fun ugandan_shilling_PN : PN; -fun ugaritic_PN : PN; -fun ugric_PN : PN; -fun uhland_PN : PN; -fun uighur_PN : PN; -fun uintatheriidae_PN : PN; -fun uintatherium_PN : PN; -fun uk_PN : PN; -fun ukraine_PN : PN; -fun ukrainian_A : A; -fun ukrainian_PN : PN; -fun ukranian_PN : PN; -fun ukranian_monetary_unit_PN : PN; -fun ulan_bator_PN : PN; -fun ulanova_PN : PN; -fun ulex_PN : PN; -fun ulfilas_PN : PN; -fun ull_PN : PN; -fun ulmaceae_PN : PN; -fun ulmus_PN : PN; -fun ulster_PN : PN; -fun ulster_defence_association_PN : PN; -fun ultrasuede_PN : PN; -fun ulugh_muztagh_PN : PN; -fun ulva_PN : PN; -fun ulvaceae_PN : PN; -fun ulvales_PN : PN; -fun ulverston_PN : PN; -fun ulvophyceae_PN : PN; -fun ulysses_PN : PN; -fun uma_PN : PN; -fun umayyad_PN : PN; -fun umbellales_PN : PN; -fun umbelliferae_PN : PN; -fun umbellularia_PN : PN; -fun umbria_PN : PN; -fun umbrian_PN : PN; -fun umbrina_PN : PN; -fun umbundu_PN : PN; -fun umma_tameer_e_nau_PN : PN; -fun ummah_PN : PN; -fun uncle_remus_PN : PN; -fun uncle_sam_PN : PN; -fun uncle_tom_PN : PN; -fun uncompahgre_peak_PN : PN; -fun underground_railroad_PN : PN; -fun undset_PN : PN; -fun unesco_PN : PN; -fun unguiculata_PN : PN; -fun ungulata_PN : PN; -fun uniat_PN : PN; -fun uniat_church_PN : PN; -fun uniate_A : A; -fun unicef_PN : PN; -fun unification_church_PN : PN; -fun unio_PN : PN; -fun union_PN : PN; -fun union_army_PN : PN; -fun union_jack_PN : PN; -fun unionidae_PN : PN; -fun unitarian_A : A; -fun unitarian_PN : PN; -fun unitarian_church_PN : PN; -fun unitarianism_PN : PN; -fun united_arab_emirate_dirham_PN : PN; -fun united_arab_emirate_monetary_unit_PN : PN; -fun united_arab_emirates_PN : PN; -fun united_church_of_christ_PN : PN; -fun united_kingdom_PN : PN; -fun united_methodist_church_PN : PN; -fun united_mine_workers_of_america_PN : PN; -fun united_nations_PN : PN; -fun united_nations_children's_fund_PN : PN; -fun united_nations_crime_prevention_and_criminal_justice_PN : PN; -fun united_nations_day_PN : PN; -fun united_nations_educational_scientific_and_cultural_organization_PN : PN; -fun united_nations_office_for_drug_control_and_crime_prevention_PN : PN; -fun united_nations_secretariat_PN : PN; -fun united_nations_agency_PN : PN; -fun united_self_defense_force_of_colombia_PN : PN; -fun united_states_PN : PN; -fun united_states_air_force_PN : PN; -fun united_states_air_force_academy_PN : PN; -fun united_states_army_PN : PN; -fun united_states_army_criminal_investigation_laboratory_PN : PN; -fun united_states_army_rangers_PN : PN; -fun united_states_border_patrol_PN : PN; -fun united_states_cabinet_PN : PN; -fun united_states_coast_guard_PN : PN; -fun united_states_code_PN : PN; -fun united_states_constitution_PN : PN; -fun united_states_customary_system_PN : PN; -fun united_states_fish_and_wildlife_service_PN : PN; -fun united_states_government_printing_office_PN : PN; -fun united_states_house_of_representatives_PN : PN; -fun united_states_marine_corps_PN : PN; -fun united_states_marshals_service_PN : PN; -fun united_states_military_academy_PN : PN; -fun united_states_mint_PN : PN; -fun united_states_naval_academy_PN : PN; -fun united_states_navy_PN : PN; -fun united_states_post_office_PN : PN; -fun united_states_postal_inspection_service_PN : PN; -fun united_states_postal_service_PN : PN; -fun united_states_public_health_service_PN : PN; -fun united_states_secret_service_PN : PN; -fun united_states_senate_PN : PN; -fun united_states_trade_representative_PN : PN; -fun united_states_virgin_islands_PN : PN; -fun united_states_dollar_PN : PN; -fun united_states_dry_unit_PN : PN; -fun united_states_government_PN : PN; -fun united_states_intelligence_agency_PN : PN; -fun united_states_liquid_unit_PN : PN; -fun united_states_waters_PN : PN; -fun univ_PN : PN; -fun university_of_california_at_berkeley_PN : PN; -fun university_of_chicago_PN : PN; -fun university_of_michigan_PN : PN; -fun university_of_nebraska_PN : PN; -fun university_of_north_carolina_PN : PN; -fun university_of_pennsylvania_PN : PN; -fun university_of_pittsburgh_PN : PN; -fun university_of_sussex_PN : PN; -fun university_of_texas_PN : PN; -fun university_of_vermont_PN : PN; -fun university_of_washington_PN : PN; -fun university_of_west_virginia_PN : PN; -fun university_of_wisconsin_PN : PN; -fun unknown_soldier_PN : PN; -fun untermeyer_PN : PN; -fun up_holland_PN : PN; -fun upanishad_PN : PN; -fun updike_PN : PN; -fun upjohn_PN : PN; -fun upper_egypt_PN : PN; -fun upper_paleolithic_PN : PN; -fun upper_peninsula_PN : PN; -fun uppsala_PN : PN; -fun upton_PN : PN; -fun upupa_PN : PN; -fun upupidae_PN : PN; -fun ur_PN : PN; -fun ural_altaic_PN : PN; -fun uralic_PN : PN; -fun urals_PN : PN; -fun urania_PN : PN; -fun uranoscopidae_PN : PN; -fun uranus_PN : PN; -fun urban_ii_PN : PN; -fun urban_v_PN : PN; -fun urban_vi_PN : PN; -fun urban_viii_PN : PN; -fun urbana_PN : PN; -fun urd_PN : PN; -fun urdu_PN : PN; -fun uredinales_PN : PN; -fun urey_PN : PN; -fun urginea_PN : PN; -fun uria_PN : PN; -fun uriah_PN : PN; -fun urim_and_thummim_PN : PN; -fun urmia_PN : PN; -fun urnula_craterium_PN : PN; -fun urochordata_PN : PN; -fun urocyon_PN : PN; -fun urocystis_PN : PN; -fun urodella_PN : PN; -fun urophycis_PN : PN; -fun uropsilus_PN : PN; -fun urosaurus_PN : PN; -fun ursidae_PN : PN; -fun ursula_PN : PN; -fun ursus_PN : PN; -fun urtica_PN : PN; -fun urticaceae_PN : PN; -fun urticales_PN : PN; -fun urubupunga_PN : PN; -fun uruguay_PN : PN; -fun uruguay_river_PN : PN; -fun uruguay_potato_PN : PN; -fun uruguayan_A : A; -fun uruguayan_PN : PN; -fun uruguayan_monetary_unit_PN : PN; -fun uruguayan_peso_PN : PN; -fun urumchi_PN : PN; -fun us_PN : PN; -fun usa_PN : PN; -fun ushas_PN : PN; -fun ushaw_moor_PN : PN; -fun usnea_PN : PN; -fun usneaceae_PN : PN; -fun ussher_PN : PN; -fun ustilaginaceae_PN : PN; -fun ustilaginales_PN : PN; -fun ustilaginoidea_PN : PN; -fun ustilago_PN : PN; -fun ustinov_PN : PN; -fun usuli_PN : PN; -fun uta_PN : PN; -fun utah_PN : PN; -fun utahan_PN : PN; -fun ute_PN : PN; -fun utica_PN : PN; -fun utnapishtim_PN : PN; -fun uto_aztecan_PN : PN; -fun utopia_PN : PN; -fun utopian_PN : PN; -fun utopianism_PN : PN; -fun utrecht_PN : PN; -fun utricularia_PN : PN; -fun utrillo_PN : PN; -fun uttar_pradesh_PN : PN; -fun uttoxeter_PN : PN; -fun utu_PN : PN; -fun uvularia_PN : PN; -fun uvulariaceae_PN : PN; -fun uzbek_PN : PN; -fun uzbekistan_PN : PN; -fun uzbekistani_A : A; -fun uzbekistani_monetary_unit_PN : PN; -fun uzi_PN : PN; -fun v_PN : PN; -fun vat_PN : PN; -fun vx_gas_PN : PN; -fun v_8_juice_PN : PN; -fun v_e_day_PN : PN; -fun v_j_day_PN : PN; -fun v_day_PN : PN; -fun v_neck_PN : PN; -fun v_sign_PN : PN; -fun vaccaria_PN : PN; -fun vaccinium_PN : PN; -fun vaduz_PN : PN; -fun vaishnava_PN : PN; -fun vaishnavism_PN : PN; -fun vaisya_PN : PN; -fun vajra_PN : PN; -fun valdez_PN : PN; -fun valdosta_PN : PN; -fun valencia_PN : PN; -fun valencia_orange_PN : PN; -fun valenciennes_PN : PN; -fun valentine_PN : PN; -fun valentine_day_PN : PN; -fun valeriana_PN : PN; -fun valerianaceae_PN : PN; -fun valerianella_PN : PN; -fun valhalla_PN : PN; -fun vali_PN : PN; -fun valkyrie_PN : PN; -fun valladolid_PN : PN; -fun valle_d'aosta_PN : PN; -fun valletta_PN : PN; -fun vallisneria_PN : PN; -fun valmy_PN : PN; -fun valois_PN : PN; -fun valparaiso_PN : PN; -fun van_allen_PN : PN; -fun van_allen_belt_PN : PN; -fun van_buren_PN : PN; -fun van_doren_PN : PN; -fun van_vleck_PN : PN; -fun van_de_graaff_PN : PN; -fun vanbrugh_PN : PN; -fun vancouver_PN : PN; -fun vancouver_island_PN : PN; -fun vandal_PN : PN; -fun vanderbilt_PN : PN; -fun vandyke_PN : PN; -fun vandyke_brown_PN : PN; -fun vanellus_PN : PN; -fun vanessa_PN : PN; -fun vangueria_PN : PN; -fun vanir_PN : PN; -fun vanua_levu_PN : PN; -fun vanuatu_PN : PN; -fun vanzetti_PN : PN; -fun varanasi_PN : PN; -fun varanidae_PN : PN; -fun varanus_PN : PN; -fun varese_PN : PN; -fun vargas_PN : PN; -fun vargas_llosa_PN : PN; -fun varna_PN : PN; -fun varro_PN : PN; -fun varuna_PN : PN; -fun vasarely_PN : PN; -fun vasari_PN : PN; -fun vaseline_PN : PN; -fun vasteras_PN : PN; -fun vatican_PN : PN; -fun vatican_city_PN : PN; -fun vatican_council_PN : PN; -fun vaughan_PN : PN; -fun vaughan_williams_PN : PN; -fun vaux_PN : PN; -fun vayu_PN : PN; -fun veadar_PN : PN; -fun veblen_PN : PN; -fun vedanga_PN : PN; -fun vedanta_PN : PN; -fun vedic_A : A; -fun vedic_literature_PN : PN; -fun vedism_PN : PN; -fun vedist_PN : PN; -fun vega_PN : PN; -fun vela_PN : PN; -fun velazquez_PN : PN; -fun velcro_PN : PN; -fun velveeta_PN : PN; -fun vendemiaire_PN : PN; -fun veneridae_PN : PN; -fun venetian_A : A; -fun venetian_PN : PN; -fun venetian_blind_PN : PN; -fun venetian_glass_PN : PN; -fun venetian_sumac_PN : PN; -fun veneto_PN : PN; -fun venezia_PN : PN; -fun venezuela_PN : PN; -fun venezuelan_A : A; -fun venezuelan_PN : PN; -fun venezuelan_monetary_unit_PN : PN; -fun venice_PN : PN; -fun venn_PN : PN; -fun venn_diagram_PN : PN; -fun ventner_PN : PN; -fun ventnor_PN : PN; -fun ventose_PN : PN; -fun venturi_PN : PN; -fun venturi_tube_PN : PN; -fun venus_PN : PN; -fun venus'_slipper_PN : PN; -fun venus's_flower_basket_PN : PN; -fun venus's_flytrap_PN : PN; -fun venus's_girdle_PN : PN; -fun veps_PN : PN; -fun vera_PN : PN; -fun veracruz_PN : PN; -fun veratrum_PN : PN; -fun verbascum_PN : PN; -fun verbenaceae_PN : PN; -fun verbesina_PN : PN; -fun verdandi_PN : PN; -fun verdi_PN : PN; -fun verdicchio_PN : PN; -fun verdun_PN : PN; -fun verlaine_PN : PN; -fun vermeer_PN : PN; -fun vermont_PN : PN; -fun vermonter_PN : PN; -fun verne_PN : PN; -fun verner_PN : PN; -fun verner's_law_PN : PN; -fun vernier_PN : PN; -fun vernon_PN : PN; -fun verona_PN : PN; -fun veronese_PN : PN; -fun veronica_PN : PN; -fun verpa_PN : PN; -fun verpa_bohemica_PN : PN; -fun verpa_conica_PN : PN; -fun verrazano_PN : PN; -fun verrazano_narrows_PN : PN; -fun verrazano_narrows_bridge_PN : PN; -fun versace_PN : PN; -fun versailles_PN : PN; -fun vertebrata_PN : PN; -fun verwoerd_PN : PN; -fun very_reverend_PN : PN; -fun very_light_PN : PN; -fun very_pistol_PN : PN; -fun vesalius_PN : PN; -fun vesey_PN : PN; -fun vesicaria_PN : PN; -fun vespa_PN : PN; -fun vespasian_PN : PN; -fun vespertilio_PN : PN; -fun vespertilionidae_PN : PN; -fun vespidae_PN : PN; -fun vespucci_PN : PN; -fun vespula_PN : PN; -fun vesta_PN : PN; -fun vestris_PN : PN; -fun vesuvius_PN : PN; -fun veterans_day_PN : PN; -fun veterans_of_foreign_wars_PN : PN; -fun vetluga_PN : PN; -fun vhf_PN : PN; -fun viborg_PN : PN; -fun vibrio_fetus_PN : PN; -fun viburnum_PN : PN; -fun vic_PN : PN; -fun vice_president_of_the_united_states_PN : PN; -fun vicente_lopez_PN : PN; -fun vicenza_PN : PN; -fun vichy_PN : PN; -fun vichy_water_PN : PN; -fun vicia_PN : PN; -fun vicksburg_PN : PN; -fun vicky_PN : PN; -fun victor_PN : PN; -fun victor_emanuel_ii_PN : PN; -fun victor_emanuel_iii_PN : PN; -fun victoria_PN : PN; -fun victoria_cross_PN : PN; -fun victoria_day_PN : PN; -fun victoria_land_PN : PN; -fun victoria_plum_PN : PN; -fun victoria_sandwich_PN : PN; -fun victorian_A : A; -fun victorian_PN : PN; -fun victorian_age_PN : PN; -fun victorian_architecture_PN : PN; -fun victoriana_PN : PN; -fun victrola_PN : PN; -fun vicugna_PN : PN; -fun vidal_PN : PN; -fun vidalia_PN : PN; -fun vidalia_onion_PN : PN; -fun vidua_PN : PN; -fun vienna_PN : PN; -fun vienna_sausage_PN : PN; -fun vienne_PN : PN; -fun viennese_A : A; -fun vientiane_PN : PN; -fun vieques_PN : PN; -fun vietnam_PN : PN; -fun vietnam_war_PN : PN; -fun vietnamese_A : A; -fun vietnamese_PN : PN; -fun vietnamese_monetary_unit_PN : PN; -fun viewpark_PN : PN; -fun vigee_lebrun_PN : PN; -fun vigna_PN : PN; -fun vigo_PN : PN; -fun viking_PN : PN; -fun villa_PN : PN; -fun villa_lobos_PN : PN; -fun villahermosa_PN : PN; -fun villard_PN : PN; -fun villon_PN : PN; -fun vilnius_PN : PN; -fun viminaria_PN : PN; -fun vina_del_mar_PN : PN; -fun vinca_PN : PN; -fun vince_PN : PN; -fun vincent_PN : PN; -fun vincent's_angina_PN : PN; -fun vincetoxicum_PN : PN; -fun vinogradoff_PN : PN; -fun vinson_PN : PN; -fun vinylite_PN : PN; -fun viola_PN : PN; -fun violaceae_PN : PN; -fun violet_PN : PN; -fun vipera_PN : PN; -fun viperidae_PN : PN; -fun virchow_PN : PN; -fun vireonidae_PN : PN; -fun virgil_PN : PN; -fun virgilia_PN : PN; -fun virgin_birth_PN : PN; -fun virgin_islands_PN : PN; -fun virgin_islands_national_park_PN : PN; -fun virgin_mary_PN : PN; -fun virginia_PN : PN; -fun virginia_beach_PN : PN; -fun virginia_bluebell_PN : PN; -fun virginia_chain_fern_PN : PN; -fun virginia_creeper_PN : PN; -fun virginia_crownbeard_PN : PN; -fun virginia_deer_PN : PN; -fun virginia_ham_PN : PN; -fun virginia_mallow_PN : PN; -fun virginia_oyster_PN : PN; -fun virginia_reel_PN : PN; -fun virginia_snakeroot_PN : PN; -fun virginia_spring_beauty_PN : PN; -fun virginia_strawberry_PN : PN; -fun virginia_thimbleweed_PN : PN; -fun virginia_water_PN : PN; -fun virginia_waterleaf_PN : PN; -fun virginian_PN : PN; -fun virginian_stock_PN : PN; -fun virginian_witch_hazel_PN : PN; -fun virgo_PN : PN; -fun visayan_PN : PN; -fun visayan_islands_PN : PN; -fun viscaceae_PN : PN; -fun visconti_PN : PN; -fun viscum_PN : PN; -fun vishnu_PN : PN; -fun visigoth_PN : PN; -fun vistula_PN : PN; -fun vitaceae_PN : PN; -fun vitharr_PN : PN; -fun viti_levu_PN : PN; -fun vitis_PN : PN; -fun vitoria_PN : PN; -fun vittaria_PN : PN; -fun vittariaceae_PN : PN; -fun vitus_PN : PN; -fun viv_PN : PN; -fun vivaldi_PN : PN; -fun viverra_PN : PN; -fun viverricula_PN : PN; -fun viverridae_PN : PN; -fun vivian_PN : PN; -fun vivien_PN : PN; -fun vivienne_PN : PN; -fun viyella_PN : PN; -fun viz_PN : PN; -fun vizcaino_PN : PN; -fun vladivostok_PN : PN; -fun vlaminck_PN : PN; -fun vogul_PN : PN; -fun volans_PN : PN; -fun volapuk_PN : PN; -fun volcano_islands_PN : PN; -fun volga_PN : PN; -fun volgaic_PN : PN; -fun volgograd_PN : PN; -fun volkhov_PN : PN; -fun volta_PN : PN; -fun voltaire_PN : PN; -fun voltarian_A : A; -fun volund_PN : PN; -fun volvaria_PN : PN; -fun volvaria_bombycina_PN : PN; -fun volvariaceae_PN : PN; -fun volvariella_PN : PN; -fun volvariella_bombycina_PN : PN; -fun volvocaceae_PN : PN; -fun volvocales_PN : PN; -fun volvox_PN : PN; -fun vombatidae_PN : PN; -fun vonnegut_PN : PN; -fun voronezh_PN : PN; -fun vouvray_PN : PN; -fun voyageurs_national_park_PN : PN; -fun voznesenski_PN : PN; -fun vs_PN : PN; -fun vso_PN : PN; -fun vuillard_PN : PN; -fun vulcan_PN : PN; -fun vulgar_latin_PN : PN; -fun vulgate_PN : PN; -fun vulpecula_PN : PN; -fun vulpes_PN : PN; -fun vultur_PN : PN; -fun w_PN : PN; -fun wasp_PN : PN; -fun wats_PN : PN; -fun wysiwyg_A : A; -fun w_shaped_A : A; -fun wabash_PN : PN; -fun wac_PN : PN; -fun waco_PN : PN; -fun wade_PN : PN; -fun wagga_wagga_PN : PN; -fun wagner_PN : PN; -fun wagnerian_A : A; -fun wagnerian_PN : PN; -fun wagram_PN : PN; -fun wahhabi_PN : PN; -fun wahhabism_PN : PN; -fun waikiki_PN : PN; -fun wailing_wall_PN : PN; -fun wain_PN : PN; -fun waite_PN : PN; -fun wajda_PN : PN; -fun wakashan_PN : PN; -fun wake_island_PN : PN; -fun wakefield_PN : PN; -fun walapai_PN : PN; -fun walbiri_PN : PN; -fun waldenses_PN : PN; -fun waldheim_PN : PN; -fun waldorf_salad_PN : PN; -fun wales_PN : PN; -fun walesa_PN : PN; -fun walker_PN : PN; -fun walker_hound_PN : PN; -fun walkman_PN : PN; -fun wall_street_PN : PN; -fun walla_walla_PN : PN; -fun wallace_PN : PN; -fun wallasey_PN : PN; -fun wallenstein_PN : PN; -fun waller_PN : PN; -fun wallingford_PN : PN; -fun walloon_PN : PN; -fun walloons_PN : PN; -fun wallsend_PN : PN; -fun wally_PN : PN; -fun walpole_PN : PN; -fun walpurgis_night_PN : PN; -fun walsall_PN : PN; -fun walsham_PN : PN; -fun walt_disney_world_PN : PN; -fun walt_whitman_bridge_PN : PN; -fun walter_PN : PN; -fun walter_mitty_PN : PN; -fun waltham_forest_PN : PN; -fun walton_PN : PN; -fun wampanoag_PN : PN; -fun wanamaker_PN : PN; -fun wandering_jew_PN : PN; -fun wandsworth_PN : PN; -fun wankel_engine_PN : PN; -fun wantage_PN : PN; -fun war_admiral_PN : PN; -fun war_department_PN : PN; -fun war_of_1812_PN : PN; -fun war_of_greek_independence_PN : PN; -fun war_of_the_austrian_succession_PN : PN; -fun war_of_the_grand_alliance_PN : PN; -fun war_of_the_roses_PN : PN; -fun war_of_the_spanish_succession_PN : PN; -fun warburg_PN : PN; -fun ward_PN : PN; -fun ware_PN : PN; -fun warhol_PN : PN; -fun warji_PN : PN; -fun warley_PN : PN; -fun warminster_PN : PN; -fun warner_PN : PN; -fun warren_PN : PN; -fun warrington_PN : PN; -fun warsaw_PN : PN; -fun warsop_PN : PN; -fun warszawa_PN : PN; -fun warwick_PN : PN; -fun warwickshire_PN : PN; -fun washington_PN : PN; -fun washington's_birthday_PN : PN; -fun washington_monument_PN : PN; -fun washington_dc_PN : PN; -fun washingtonian_A : A; -fun washingtonian_PN : PN; -fun wassermann_PN : PN; -fun wassermann_test_PN : PN; -fun waterbury_PN : PN; -fun waterford_PN : PN; -fun watergate_PN : PN; -fun waterhouse_friderichsen_syndrome_PN : PN; -fun waterloo_PN : PN; -fun waters_PN : PN; -fun watertown_PN : PN; -fun watford_PN : PN; -fun watson_PN : PN; -fun watt_PN : PN; -fun watteau_PN : PN; -fun watts_PN : PN; -fun waugh_PN : PN; -fun wausau_PN : PN; -fun wave_PN : PN; -fun wavell_PN : PN; -fun wayland_PN : PN; -fun wayne_PN : PN; -fun ways_and_means_committee_PN : PN; -fun wear_PN : PN; -fun web_map_service_PN : PN; -fun webb_PN : PN; -fun weber_PN : PN; -fun weber's_law_PN : PN; -fun webster_PN : PN; -fun wed_PN : PN; -fun weddell_sea_PN : PN; -fun wedgwood_PN : PN; -fun wednesday_PN : PN; -fun wegener_PN : PN; -fun wei_PN : PN; -fun weil_PN : PN; -fun weil's_disease_PN : PN; -fun weill_PN : PN; -fun weimar_PN : PN; -fun weimar_republic_PN : PN; -fun weimaraner_PN : PN; -fun weinberg_PN : PN; -fun weismann_PN : PN; -fun weissbier_PN : PN; -fun weisshorn_PN : PN; -fun weizenbier_PN : PN; -fun weizenbock_PN : PN; -fun weizmann_PN : PN; -fun weld_PN : PN; -fun welles_PN : PN; -fun wellingborough_PN : PN; -fun wellington_PN : PN; -fun wells_PN : PN; -fun welsh_A : A; -fun welsh_PN : PN; -fun welsh_onion_PN : PN; -fun welsh_pony_PN : PN; -fun welsh_poppy_PN : PN; -fun welsh_rarebit_PN : PN; -fun welsh_springer_spaniel_PN : PN; -fun welsh_terrier_PN : PN; -fun welshman_PN : PN; -fun welshpool_PN : PN; -fun weltanschauung_PN : PN; -fun welty_PN : PN; -fun welwitschiaceae_PN : PN; -fun welwyn_PN : PN; -fun welwyn_garden_city_PN : PN; -fun wembley_PN : PN; -fun wen_ch'ang_PN : PN; -fun wendover_PN : PN; -fun wendy_PN : PN; -fun werdnig_hoffman_disease_PN : PN; -fun werfel_PN : PN; -fun wernicke_PN : PN; -fun wernicke's_aphasia_PN : PN; -fun wernicke's_area_PN : PN; -fun wernicke's_encephalopathy_PN : PN; -fun weser_PN : PN; -fun wesley_PN : PN; -fun wesleyan_PN : PN; -fun wesleyan_methodist_church_PN : PN; -fun wesleyanism_PN : PN; -fun wessex_PN : PN; -fun west_PN : PN; -fun west_africa_PN : PN; -fun west_african_A : A; -fun west_african_PN : PN; -fun west_bank_PN : PN; -fun west_bengal_PN : PN; -fun west_berlin_PN : PN; -fun west_berliner_PN : PN; -fun west_chadic_PN : PN; -fun west_coast_PN : PN; -fun west_country_PN : PN; -fun west_end_PN : PN; -fun west_germanic_PN : PN; -fun west_germany_PN : PN; -fun west_highland_white_terrier_PN : PN; -fun west_indian_PN : PN; -fun west_indian_jasmine_PN : PN; -fun west_indies_PN : PN; -fun west_malaysia_PN : PN; -fun west_midland_PN : PN; -fun west_nile_encephalitis_PN : PN; -fun west_nile_virus_PN : PN; -fun west_palm_beach_PN : PN; -fun west_point_PN : PN; -fun west_saxon_PN : PN; -fun west_sussex_PN : PN; -fun west_virginia_PN : PN; -fun west_virginian_PN : PN; -fun west_yorkshire_PN : PN; -fun west_bromwich_PN : PN; -fun west_sider_PN : PN; -fun westbury_PN : PN; -fun western_PN : PN; -fun western_australia_PN : PN; -fun western_australia_coral_pea_PN : PN; -fun western_malayo_polynesian_PN : PN; -fun western_roman_empire_PN : PN; -fun western_sahara_PN : PN; -fun western_samoan_monetary_unit_PN : PN; -fun western_box_turtle_PN : PN; -fun western_culture_PN : PN; -fun western_diamondback_PN : PN; -fun western_mountain_ash_PN : PN; -fun western_pasqueflower_PN : PN; -fun western_ribbon_snake_PN : PN; -fun western_sand_cherry_PN : PN; -fun western_silvery_aster_PN : PN; -fun westernization_PN : PN; -fun westhoughton_PN : PN; -fun westinghouse_PN : PN; -fun westmeath_PN : PN; -fun westminster_PN : PN; -fun westminster_abbey_PN : PN; -fun westmoreland_PN : PN; -fun weston_PN : PN; -fun weston_cell_PN : PN; -fun weston_super_mare_PN : PN; -fun wetherby_PN : PN; -fun wexford_PN : PN; -fun weymouth_PN : PN; -fun whaley_bridge_PN : PN; -fun wharton_PN : PN; -fun wheatley_PN : PN; -fun wheatley_hill_PN : PN; -fun wheatstone_PN : PN; -fun wheatstone_bridge_PN : PN; -fun wheeler_PN : PN; -fun wheeler_peak_PN : PN; -fun wheeling_PN : PN; -fun whig_PN : PN; -fun whig_party_PN : PN; -fun whipple's_penstemon_PN : PN; -fun whirlaway_PN : PN; -fun whistler_PN : PN; -fun whit_tuesday_PN : PN; -fun whitburn_PN : PN; -fun whitby_PN : PN; -fun whitchurch_PN : PN; -fun white_PN : PN; -fun white_house_PN : PN; -fun white_nile_PN : PN; -fun white_russian_PN : PN; -fun white_sea_PN : PN; -fun white_tai_PN : PN; -fun white_race_PN : PN; -fun whitehall_PN : PN; -fun whitehaven_PN : PN; -fun whitehead_PN : PN; -fun whitehorse_PN : PN; -fun whitley_bay_PN : PN; -fun whitman_PN : PN; -fun whitmonday_PN : PN; -fun whitney_PN : PN; -fun whitstable_PN : PN; -fun whitsun_PN : PN; -fun whitsuntide_PN : PN; -fun whittier_PN : PN; -fun whittle_PN : PN; -fun whittle_le_woods_PN : PN; -fun whittlesey_PN : PN; -fun whitworth_PN : PN; -fun wicca_PN : PN; -fun wiccan_A : A; -fun wiccan_PN : PN; -fun wichita_PN : PN; -fun wichita_falls_PN : PN; -fun wick_PN : PN; -fun wickford_PN : PN; -fun wicklow_PN : PN; -fun widal_test_PN : PN; -fun widnes_PN : PN; -fun wiener_PN : PN; -fun wiesbaden_PN : PN; -fun wiesel_PN : PN; -fun wiesenthal_PN : PN; -fun wiffle_PN : PN; -fun wigan_PN : PN; -fun wight_PN : PN; -fun wigner_PN : PN; -fun wild_west_PN : PN; -fun wild_west_show_PN : PN; -fun wilde_PN : PN; -fun wilder_PN : PN; -fun wilderness_PN : PN; -fun wilderness_campaign_PN : PN; -fun wilf_PN : PN; -fun wilfrid_PN : PN; -fun wilhelm_ii_PN : PN; -fun wilhelmshaven_PN : PN; -fun wilkes_PN : PN; -fun wilkes_land_PN : PN; -fun wilkins_PN : PN; -fun wilkinson_PN : PN; -fun will_PN : PN; -fun willamette_PN : PN; -fun willard_PN : PN; -fun willebrand_PN : PN; -fun william_PN : PN; -fun william_i_PN : PN; -fun william_ii_PN : PN; -fun william_iii_PN : PN; -fun william_iv_PN : PN; -fun william_and_mary_PN : PN; -fun williams_PN : PN; -fun williams_syndrome_PN : PN; -fun williamstown_PN : PN; -fun willie_PN : PN; -fun willington_PN : PN; -fun willis_PN : PN; -fun willy_PN : PN; -fun wilmington_PN : PN; -fun wilms'_tumor_PN : PN; -fun wilmslow_PN : PN; -fun wilmut_PN : PN; -fun wilson_PN : PN; -fun wilson's_phalarope_PN : PN; -fun wilson's_snipe_PN : PN; -fun wilson's_warbler_PN : PN; -fun wilsonian_A : A; -fun wilton_PN : PN; -fun wiltshire_PN : PN; -fun wimbledon_PN : PN; -fun wimbourne_PN : PN; -fun wimbourne_minster_PN : PN; -fun winchester_PN : PN; -fun winchester_college_PN : PN; -fun winckelmann_PN : PN; -fun wind_cave_national_park_PN : PN; -fun windaus_PN : PN; -fun windermere_PN : PN; -fun windhoek_PN : PN; -fun windows_PN : PN; -fun windsor_PN : PN; -fun windsor_chair_PN : PN; -fun windsor_green_PN : PN; -fun windsor_knot_PN : PN; -fun windsor_tie_PN : PN; -fun windward_islands_PN : PN; -fun windward_passage_PN : PN; -fun winesap_PN : PN; -fun wingate_PN : PN; -fun winifred_PN : PN; -fun winnebago_PN : PN; -fun winnie_PN : PN; -fun winnipeg_PN : PN; -fun winsford_PN : PN; -fun winslow_PN : PN; -fun winston_salem_PN : PN; -fun winter_olympic_games_PN : PN; -fun winteraceae_PN : PN; -fun wintun_PN : PN; -fun wisbech_PN : PN; -fun wisconsin_PN : PN; -fun wisconsin_weeping_willow_PN : PN; -fun wisconsinite_PN : PN; -fun wisdom_of_solomon_PN : PN; -fun wise_PN : PN; -fun wise_men_PN : PN; -fun wister_PN : PN; -fun witham_PN : PN; -fun withernsea_PN : PN; -fun witherspoon_PN : PN; -fun witney_PN : PN; -fun wittgenstein_PN : PN; -fun wittgensteinian_A : A; -fun witwatersrand_PN : PN; -fun wobbly_PN : PN; -fun woburn_PN : PN; -fun wodehouse_PN : PN; -fun woden_PN : PN; -fun wokingham_PN : PN; -fun wolf_PN : PN; -fun wolfe_PN : PN; -fun wolff_PN : PN; -fun wolffia_PN : PN; -fun wolffiella_PN : PN; -fun wollaston_PN : PN; -fun wollemi_pine_PN : PN; -fun wollstonecraft_PN : PN; -fun wolof_PN : PN; -fun wolstonian_glaciation_PN : PN; -fun wolverhampton_PN : PN; -fun wolverton_PN : PN; -fun wombourne_PN : PN; -fun women's_army_corps_PN : PN; -fun wood_PN : PN; -fun wood's_metal_PN : PN; -fun woodbridge_PN : PN; -fun woodbury_PN : PN; -fun woodhull_PN : PN; -fun woodward_PN : PN; -fun woodwardia_PN : PN; -fun woolf_PN : PN; -fun woollcott_PN : PN; -fun woolley_PN : PN; -fun woolworth_PN : PN; -fun wootton_bassett_PN : PN; -fun worcester_PN : PN; -fun worcester_sauce_PN : PN; -fun wordnet_PN : PN; -fun word_of_god_PN : PN; -fun wordsworth_PN : PN; -fun wordsworthian_A : A; -fun workington_PN : PN; -fun worksop_PN : PN; -fun world_council_of_churches_PN : PN; -fun world_cup_PN : PN; -fun world_health_organization_PN : PN; -fun world_meteorological_organization_PN : PN; -fun world_series_PN : PN; -fun world_trade_center_PN : PN; -fun world_trade_organization_PN : PN; -fun world_war_i_PN : PN; -fun world_war_ii_PN : PN; -fun world_wide_web_PN : PN; -fun wormian_bone_PN : PN; -fun worth_PN : PN; -fun worthing_PN : PN; -fun wotan_PN : PN; -fun wouk_PN : PN; -fun wrangell_st__elias_national_park_PN : PN; -fun wren_PN : PN; -fun wrexham_PN : PN; -fun wright_PN : PN; -fun writtle_PN : PN; -fun wroclaw_PN : PN; -fun wroughton_PN : PN; -fun wu_PN : PN; -fun wuhan_PN : PN; -fun wuppertal_PN : PN; -fun wurlitzer_PN : PN; -fun wurzburg_PN : PN; -fun wusih_PN : PN; -fun wyatt_PN : PN; -fun wycherley_PN : PN; -fun wycliffe_PN : PN; -fun wycombe_PN : PN; -fun wyeth_PN : PN; -fun wykeham_PN : PN; -fun wykehamist_PN : PN; -fun wyler_PN : PN; -fun wylie_PN : PN; -fun wymondham_PN : PN; -fun wynette_PN : PN; -fun wynnea_PN : PN; -fun wynnea_americana_PN : PN; -fun wynnea_sparassoides_PN : PN; -fun wyoming_PN : PN; -fun wyomingite_PN : PN; -fun wyrd_PN : PN; -fun wyszynski_PN : PN; -fun wythall_PN : PN; -fun x_PN : PN; -fun xx_PN : PN; -fun xxx_PN : PN; -fun xxy_PN : PN; -fun xy_PN : PN; -fun xyy_PN : PN; -fun x_or_circuit_PN : PN; -fun x_chromosome_PN : PN; -fun x_linked_A : A; -fun x_linked_scid_PN : PN; -fun x_linked_dominant_inheritance_PN : PN; -fun x_linked_gene_PN : PN; -fun x_linked_recessive_inheritance_PN : PN; -fun x_ray_PN : PN; -fun x_ray_diffraction_PN : PN; -fun x_ray_film_PN : PN; -fun x_ray_machine_PN : PN; -fun x_ray_therapy_PN : PN; -fun x_ray_tube_PN : PN; -fun x_raying_PN : PN; -fun xanthium_PN : PN; -fun xanthomonas_PN : PN; -fun xanthophyceae_PN : PN; -fun xanthorrhoeaceae_PN : PN; -fun xanthorroea_PN : PN; -fun xanthosoma_PN : PN; -fun xantusiidae_PN : PN; -fun xavier_PN : PN; -fun xenarthra_PN : PN; -fun xenicidae_PN : PN; -fun xenicus_PN : PN; -fun xenophanes_PN : PN; -fun xenophon_PN : PN; -fun xenopodidae_PN : PN; -fun xenopus_PN : PN; -fun xenorhyncus_PN : PN; -fun xenosauridae_PN : PN; -fun xenosaurus_PN : PN; -fun xerobates_PN : PN; -fun xerophyllum_PN : PN; -fun xerox_PN : PN; -fun xerxes_i_PN : PN; -fun xhosa_PN : PN; -fun xian_PN : PN; -fun xinjiang_PN : PN; -fun xiphias_PN : PN; -fun xiphiidae_PN : PN; -fun xiphosura_PN : PN; -fun xmas_PN : PN; -fun xylaria_PN : PN; -fun xylariaceae_PN : PN; -fun xylocopa_PN : PN; -fun xylomelum_PN : PN; -fun xylopia_PN : PN; -fun xyphophorus_PN : PN; -fun xyridaceae_PN : PN; -fun xyridales_PN : PN; -fun xyris_PN : PN; -fun y_PN : PN; -fun y2k_PN : PN; -fun y2k_compliant_A : A; -fun y_chromosome_PN : PN; -fun y_linked_gene_PN : PN; -fun y_shaped_A : A; -fun yahi_PN : PN; -fun yahoo_PN : PN; -fun yahweh_PN : PN; -fun yajur_veda_PN : PN; -fun yakima_PN : PN; -fun yakut_PN : PN; -fun yale_PN : PN; -fun yale_university_PN : PN; -fun yalta_PN : PN; -fun yalta_conference_PN : PN; -fun yalu_PN : PN; -fun yalu_river_PN : PN; -fun yama_PN : PN; -fun yamamoto_PN : PN; -fun yamani_PN : PN; -fun yamoussukro_PN : PN; -fun yana_PN : PN; -fun yanan_PN : PN; -fun yang_chen_ning_PN : PN; -fun yangon_PN : PN; -fun yankee_A : A; -fun yankee_PN : PN; -fun yaounde_PN : PN; -fun yarmouth_PN : PN; -fun yaroslavi_PN : PN; -fun yastrzemski_PN : PN; -fun yate_PN : PN; -fun yateley_PN : PN; -fun yavapai_PN : PN; -fun yay_PN : PN; -fun yazoo_PN : PN; -fun yeats_PN : PN; -fun yeatsian_A : A; -fun yellow_sea_PN : PN; -fun yellow_race_PN : PN; -fun yellowknife_PN : PN; -fun yellowstone_PN : PN; -fun yellowstone_national_park_PN : PN; -fun yemen_PN : PN; -fun yemeni_A : A; -fun yemeni_PN : PN; -fun yemeni_fils_PN : PN; -fun yemeni_monetary_unit_PN : PN; -fun yemeni_rial_PN : PN; -fun yenisei_PN : PN; -fun yeniseian_PN : PN; -fun yeovil_PN : PN; -fun yerevan_PN : PN; -fun yerkes_PN : PN; -fun yersin_PN : PN; -fun yersinia_pestis_PN : PN; -fun yerupaja_PN : PN; -fun yevtushenko_PN : PN; -fun yggdrasil_PN : PN; -fun yiddish_PN : PN; -fun ymir_PN : PN; -fun yogacara_PN : PN; -fun yokohama_PN : PN; -fun yokuts_PN : PN; -fun yom_kippur_PN : PN; -fun york_PN : PN; -fun yorkley_PN : PN; -fun yorkshire_PN : PN; -fun yorkshire_pudding_PN : PN; -fun yorkshire_terrier_PN : PN; -fun yorktown_PN : PN; -fun yoruba_PN : PN; -fun yosemite_PN : PN; -fun yosemite_national_park_PN : PN; -fun yosemite_toad_PN : PN; -fun young_PN : PN; -fun young's_modulus_PN : PN; -fun young_turk_PN : PN; -fun youngstown_PN : PN; -fun ypres_PN : PN; -fun yquem_PN : PN; -fun ystradgynlais_PN : PN; -fun yuan_PN : PN; -fun yucatan_PN : PN; -fun yucatec_PN : PN; -fun yue_PN : PN; -fun yugoslav_PN : PN; -fun yugoslavia_PN : PN; -fun yugoslavian_A : A; -fun yugoslavian_dinar_PN : PN; -fun yugoslavian_monetary_unit_PN : PN; -fun yukawa_PN : PN; -fun yukon_PN : PN; -fun yukon_white_birch_PN : PN; -fun yule_log_PN : PN; -fun yuma_PN : PN; -fun yuman_A : A; -fun yuman_PN : PN; -fun yunnan_PN : PN; -fun yvonne_PN : PN; -fun z_PN : PN; -fun zip_code_PN : PN; -fun zaar_PN : PN; -fun zabrze_PN : PN; -fun zaglossus_PN : PN; -fun zagreb_PN : PN; -fun zaharias_PN : PN; -fun zaire_PN : PN; -fun zairean_A : A; -fun zairese_PN : PN; -fun zairese_monetary_unit_PN : PN; -fun zalophus_PN : PN; -fun zama_PN : PN; -fun zambezi_PN : PN; -fun zambia_PN : PN; -fun zambian_A : A; -fun zambian_PN : PN; -fun zambian_kwacha_PN : PN; -fun zambian_monetary_unit_PN : PN; -fun zamboni_PN : PN; -fun zamiaceae_PN : PN; -fun zangwill_PN : PN; -fun zannichellia_PN : PN; -fun zannichelliaceae_PN : PN; -fun zantedeschia_PN : PN; -fun zanthoxylum_PN : PN; -fun zanuck_PN : PN; -fun zanzibar_PN : PN; -fun zanzibar_copal_PN : PN; -fun zapata_PN : PN; -fun zapodidae_PN : PN; -fun zaporozhye_PN : PN; -fun zapotec_A : A; -fun zapotec_PN : PN; -fun zapus_PN : PN; -fun zaragoza_PN : PN; -fun zaria_PN : PN; -fun zea_PN : PN; -fun zealand_PN : PN; -fun zealander_PN : PN; -fun zealot_PN : PN; -fun zechariah_PN : PN; -fun zeeman_PN : PN; -fun zeidae_PN : PN; -fun zeitgeist_PN : PN; -fun zen_PN : PN; -fun zen_buddhist_PN : PN; -fun zenaidura_PN : PN; -fun zeno_PN : PN; -fun zeomorphi_PN : PN; -fun zephaniah_PN : PN; -fun zephyr_PN : PN; -fun zeppelin_PN : PN; -fun zeus_PN : PN; -fun zhou_PN : PN; -fun zhou_en_lai_PN : PN; -fun zhu_jiang_PN : PN; -fun zhuang_PN : PN; -fun zhukov_PN : PN; -fun ziegfeld_PN : PN; -fun ziegfeld_follies_PN : PN; -fun ziegler_PN : PN; -fun zigadenus_PN : PN; -fun zimbabwe_PN : PN; -fun zimbabwean_A : A; -fun zimbabwean_PN : PN; -fun zimbabwean_dollar_PN : PN; -fun zimbalist_PN : PN; -fun zinfandel_PN : PN; -fun zingiber_PN : PN; -fun zingiberaceae_PN : PN; -fun zinjanthropus_PN : PN; -fun zinnemann_PN : PN; -fun zinsser_PN : PN; -fun zinzendorf_PN : PN; -fun zion_PN : PN; -fun zion_national_park_PN : PN; -fun zionism_PN : PN; -fun zionist_A : A; -fun zionist_PN : PN; -fun ziphiidae_PN : PN; -fun zizania_PN : PN; -fun ziziphus_PN : PN; -fun zoarces_PN : PN; -fun zoarcidae_PN : PN; -fun zoe_PN : PN; -fun zola_PN : PN; -fun zolaesque_A : A; -fun zollinger_ellison_syndrome_PN : PN; -fun zomba_PN : PN; -fun zonotrichia_PN : PN; -fun zoomastigina_PN : PN; -fun zoroaster_PN : PN; -fun zoroastrian_A : A; -fun zoroastrian_PN : PN; -fun zoroastrianism_PN : PN; -fun zostera_PN : PN; -fun zosteraceae_PN : PN; -fun zsigmondy_PN : PN; -fun zu_PN : PN; -fun zuider_zee_PN : PN; -fun zukerman_PN : PN; -fun zulu_PN : PN; -fun zuni_PN : PN; -fun zurich_PN : PN; -fun zurvan_PN : PN; -fun zurvanism_PN : PN; -fun zweig_PN : PN; -fun zwingli_PN : PN; -fun zworykin_PN : PN; -fun zygnema_PN : PN; -fun zygnemataceae_PN : PN; -fun zygnematales_PN : PN; -fun zygocactus_PN : PN; -fun zygomycetes_PN : PN; -fun zygomycota_PN : PN; -fun zygophyllaceae_PN : PN; -fun zygophyllum_PN : PN; -fun zygoptera_PN : PN; -fun a_kempis_PN : PN; -fun a_bit_Adv : Adv; -fun a_bomb_N : N; -fun a_cappella_A : A; -fun a_cappella_Adv : Adv; -fun a_few_A : A; -fun a_fortiori_Adv : Adv; -fun a_la_carte_A : A; -fun a_la_carte_Adv : Adv; -fun a_la_mode_Adv : Adv; -fun a_level_N : N; -fun a_lot_Adv : Adv; -fun a_ok_A : A; -fun a_posteriori_A : A; -fun a_posteriori_Adv : Adv; -fun a_priori_A : A; -fun a_priori_Adv : Adv; -fun aa_N : N; -fun aalii_N : N; -fun aardvark_N : N; -fun aardwolf_N : N; -fun ab_initio_Adv : Adv; -fun aba_N : N; -fun abaca_N : N; -fun aback_Adv : Adv; -fun abactinal_A : A; -fun abacus_N : N; -fun abaft_Adv : Adv; -fun abaft_Prep : Prep; -fun abalone_N : N; -fun abampere_N : N; -fun abandon_N : N; -fun abandon_V2 : V2; -fun abandoned_A : A; -fun abandonment_N : N; -fun abarticulation_N : N; -fun abase_V2 : V2; -fun abasement_N : N; -fun abash_V2 : V2; -fun abashed_A : A; -fun abashment_N : N; -fun abasia_N : N; -fun abasic_A : A; -fun abatable_A : A; -fun abate_V : V; -fun abate_V2 : V2; -fun abatement_N : N; -fun abator_N : N; -fun abattis_N : N; -fun abattoir_N : N; -fun abaxial_A : A; -fun abaxially_Adv : Adv; -fun abaya_N : N; -fun abbacy_N : N; -fun abbatial_A : A; -fun abbe_N : N; -fun abbess_N : N; -fun abbey_N : N; -fun abbot_N : N; -fun abbreviate_V2 : V2; -fun abbreviated_A : A; -fun abbreviation_N : N; -fun abc_N : N; -fun abcoulomb_N : N; -fun abdicable_A : A; -fun abdicate_V : V; -fun abdicate_V2 : V2; -fun abdication_N : N; -fun abdicator_N : N; -fun abdomen_N : N; -fun abdominal_A : A; -fun abdominal_N : N; -fun abdominocentesis_N : N; -fun abdominoplasty_N : N; -fun abdominous_A : A; -fun abdominousness_N : N; -fun abdominovesical_A : A; -fun abducent_A : A; -fun abducent_N : N; -fun abduct_V2 : V2; -fun abduction_N : N; -fun abductor_N : N; -fun abeam_Adv : Adv; -fun abecedarian_A : A; -fun abecedarian_N : N; -fun abecedarius_N : N; -fun abed_Adv : Adv; -fun abelia_N : N; -fun abelmosk_N : N; -fun aberrance_N : N; -fun aberrant_A : A; -fun aberrant_N : N; -fun aberration_N : N; -fun abet_V : V; -fun abet_V2 : V2; -fun abetalipoproteinemia_N : N; -fun abetment_N : N; -fun abettor_N : N; -fun abeyance_N : N; -fun abeyant_A : A; -fun abfarad_N : N; -fun abhenry_N : N; -fun abhor_V2 : V2; -fun abhorrence_N : N; -fun abhorrent_A : A; -fun abhorrer_N : N; -fun abidance_N : N; -fun abide_V : V; -fun abide_V2 : V2; -fun abiding_A : A; -fun abience_N : N; -fun abient_A : A; -fun ability_N : N; -fun abiogenesis_N : N; -fun abiogenetic_A : A; -fun abiogenist_N : N; -fun abiotrophy_N : N; -fun abject_A : A; -fun abjection_N : N; -fun abjectly_Adv : Adv; -fun abjuration_N : N; -fun abjure_V2 : V2; -fun abjurer_N : N; -fun ablactation_N : N; -fun ablated_A : A; -fun ablation_N : N; -fun ablative_A : A; -fun ablative_N : N; -fun ablaut_N : N; -fun ablaze_A : A; -fun ablaze_Adv : Adv; -fun able_A : A; -fun able_bodied_A : A; -fun ableism_N : N; -fun ablepharia_N : N; -fun abloom_A : A; -fun ablution_N : N; -fun ablutionary_A : A; -fun ably_Adv : Adv; -fun abnegation_N : N; -fun abnegator_N : N; -fun abnormal_A : A; -fun abnormality_N : N; -fun abnormally_Adv : Adv; -fun abo_N : N; -fun aboard_Adv : Adv; -fun aboard_Prep : Prep; -fun abocclusion_N : N; -fun abode_N : N; -fun abohm_N : N; -fun abolish_V2 : V2; -fun abolishable_A : A; -fun abolition_N : N; -fun abolitionary_A : A; -fun abolitionism_N : N; -fun abolitionist_N : N; -fun abomasal_A : A; -fun abomasum_N : N; -fun abominable_A : A; -fun abominate_V2 : V2; -fun abomination_N : N; -fun abominator_N : N; -fun aborad_Adv : Adv; -fun aboral_A : A; -fun aboriginal_A : A; -fun aboriginal_N : N; -fun aborigine_N : N; -fun abort_N : N; -fun abort_V : V; -fun abort_V2 : V2; -fun aborticide_N : N; -fun abortifacient_A : A; -fun abortifacient_N : N; -fun abortion_N : N; -fun abortionist_N : N; -fun abortive_A : A; -fun abortively_Adv : Adv; -fun abortus_N : N; -fun abound_V : V; -fun abounding_A : A; -fun about_A : A; -fun about_AdN : AdN; -fun about_Adv : Adv; -fun about_Prep : Prep; -fun about_face_N : N; -fun about_face_N : N; -fun about_face_V : V; -fun above_A : A; -fun above_Adv : Adv; -fun above_N : N; -fun above_Prep : Prep; -fun above_all_Adv : Adv; -fun above_board_A : A; -fun above_board_Adv : Adv; -fun above_mentioned_A : A; -fun above_mentioned_A : A; -fun above_named_A : A; -fun aboveboard_A : A; -fun aboveground_A : A; -fun abracadabra_N : N; -fun abrachia_N : N; -fun abrade_V2 : V2; -fun abrader_N : N; -fun abranchiate_A : A; -fun abrasion_N : N; -fun abrasive_A : A; -fun abrasive_N : N; -fun abrasiveness_N : N; -fun abreast_A : A; -fun abreast_Adv : Adv; -fun abridge_V2 : V2; -fun abridged_A : A; -fun abridgement_N : N; -fun abridger_N : N; -fun abridgment_N : N; -fun abroach_A : A; -fun abroad_A : A; -fun abroad_Adv : Adv; -fun abrocome_N : N; -fun abrogate_V2 : V2; -fun abrogation_N : N; -fun abrogator_N : N; -fun abrupt_A : A; -fun abruptly_Adv : Adv; -fun abruptness_N : N; -fun abscess_N : N; -fun abscessed_A : A; -fun abscissa_N : N; -fun abscission_N : N; -fun abscond_V : V; -fun absconder_N : N; -fun abscondment_N : N; -fun abseiler_N : N; -fun absence_N : N; -fun absent_A : A; -fun absent_V2 : V2; -fun absent_minded_A : A; -fun absent_mindedness_N : N; -fun absentee_N : N; -fun absenteeism_N : N; -fun absently_Adv : Adv; -fun absentmindedness_N : N; -fun absinth_N : N; -fun absinthe_N : N; -fun absolute_A : A; -fun absolute_N : N; -fun absolutely_Adv : Adv; -fun absoluteness_N : N; -fun absolution_N : N; -fun absolutism_N : N; -fun absolutist_A : A; -fun absolutist_N : N; -fun absolve_V2 : V2; -fun absolved_A : A; -fun absolver_N : N; -fun absolvitory_A : A; -fun absorb_V2 : V2; -fun absorbable_A : A; -fun absorbate_N : N; -fun absorbed_A : A; -fun absorbefacient_A : A; -fun absorbency_N : N; -fun absorbent_A : A; -fun absorbent_N : N; -fun absorber_N : N; -fun absorbing_A : A; -fun absorption_N : N; -fun absorptivity_N : N; -fun abstain_V : V; -fun abstainer_N : N; -fun abstemious_A : A; -fun abstemiously_Adv : Adv; -fun abstemiousness_N : N; -fun abstention_N : N; -fun abstinence_N : N; -fun abstinent_A : A; -fun abstract_A : A; -fun abstract_N : N; -fun abstract_V2 : V2; -fun abstracted_A : A; -fun abstractedness_N : N; -fun abstraction_N : N; -fun abstractionism_N : N; -fun abstractionist_N : N; -fun abstractive_A : A; -fun abstractly_Adv : Adv; -fun abstractness_N : N; -fun abstractor_N : N; -fun abstruse_A : A; -fun abstrusely_Adv : Adv; -fun abstruseness_N : N; -fun absurd_A : A; -fun absurd_N : N; -fun absurdity_N : N; -fun absurdly_Adv : Adv; -fun abulia_N : N; -fun abulic_A : A; -fun abundance_N : N; -fun abundant_A : A; -fun abundantly_Adv : Adv; -fun abuse_N : N; -fun abuse_V2 : V2; -fun abused_A : A; -fun abuser_N : N; -fun abusive_A : A; -fun abusively_Adv : Adv; -fun abut_V : V; -fun abutment_N : N; -fun abutter_N : N; -fun abuzz_A : A; -fun abvolt_N : N; -fun abwatt_N : N; -fun abysm_N : N; -fun abysmal_A : A; -fun abyss_N : N; -fun abyssal_A : A; -fun acacia_N : N; -fun academia_N : N; -fun academic_A : A; -fun academic_N : N; -fun academically_Adv : Adv; -fun academician_N : N; -fun academicianship_N : N; -fun academy_N : N; -fun acanthion_N : N; -fun acanthocephalan_N : N; -fun acanthocyte_N : N; -fun acanthocytosis_N : N; -fun acanthoid_A : A; -fun acantholysis_N : N; -fun acanthoma_N : N; -fun acanthosis_N : N; -fun acanthotic_A : A; -fun acanthus_N : N; -fun acapnic_A : A; -fun acardia_N : N; -fun acariasis_N : N; -fun acaricide_N : N; -fun acarid_N : N; -fun acarine_N : N; -fun acarophobia_N : N; -fun acarpelous_A : A; -fun acarpous_A : A; -fun acarus_N : N; -fun acatalectic_A : A; -fun acatalectic_N : N; -fun acataphasia_N : N; -fun acathexia_N : N; -fun acathexis_N : N; -fun acaudate_A : A; -fun acaulescent_A : A; -fun accede_V : V; -fun accelerando_A : A; -fun accelerando_Adv : Adv; -fun accelerando_N : N; -fun accelerate_V : V; -fun accelerate_V2 : V2; -fun accelerated_A : A; -fun acceleration_N : N; -fun accelerative_A : A; -fun accelerator_N : N; -fun accelerometer_N : N; -fun accent_N : N; -fun accent_V2 : V2; -fun accentor_N : N; -fun accentual_A : A; -fun accentuate_V2 : V2; -fun accentuation_N : N; -fun accept_V : V; -fun accept_V2 : V2; -fun accept_VS : VS; -fun acceptability_N : N; -fun acceptable_A : A; -fun acceptably_Adv : Adv; -fun acceptance_N : N; -fun acceptation_N : N; -fun accepted_A : A; -fun accepting_A : A; -fun acceptive_A : A; -fun acceptor_N : N; -fun access_N : N; -fun access_V2 : V2; -fun accessary_A : A; -fun accessary_N : N; -fun accessibility_N : N; -fun accessible_A : A; -fun accession_N : N; -fun accessional_A : A; -fun accessorial_A : A; -fun accessory_A : A; -fun accessory_N : N; -fun accidence_N : N; -fun accident_N : N; -fun accident_prone_A : A; -fun accident_prone_A : A; -fun accidental_A : A; -fun accidental_N : N; -fun accipitrine_A : A; -fun acclaim_N : N; -fun acclaim_V2 : V2; -fun acclamation_N : N; -fun acclimate_V : V; -fun acclimate_V2 : V2; -fun acclimation_N : N; -fun acclimatization_N : N; -fun acclimatize_V : V; -fun acclimatize_V2 : V2; -fun acclivitous_A : A; -fun acclivity_N : N; -fun accolade_N : N; -fun accommodate_V : V; -fun accommodate_V2 : V2; -fun accommodating_A : A; -fun accommodation_N : N; -fun accommodational_A : A; -fun accommodative_A : A; -fun accompanied_A : A; -fun accompaniment_N : N; -fun accompanist_N : N; -fun accompany_V2 : V2; -fun accomplice_N : N; -fun accomplish_V2 : V2; -fun accomplishable_A : A; -fun accomplished_A : A; -fun accomplishment_N : N; -fun accord_N : N; -fun accord_V : V; -fun accord_V2 : V2; -fun accordance_N : N; -fun accordant_A : A; -fun according_A : A; -fun accordingly_Adv : Adv; -fun accordion_N : N; -fun accordionist_N : N; -fun accost_V2 : V2; -fun accouchement_N : N; -fun account_N : N; -fun account_V : V; -fun account_V2 : V2; -fun accountability_N : N; -fun accountable_A : A; -fun accountancy_N : N; -fun accountant_N : N; -fun accountantship_N : N; -fun accounting_N : N; -fun accoutered_A : A; -fun accredit_V2 : V2; -fun accreditation_N : N; -fun accredited_A : A; -fun accretion_N : N; -fun accretionary_A : A; -fun accretive_A : A; -fun accrue_V : V; -fun accrue_V2 : V2; -fun accrued_A : A; -fun acculturation_N : N; -fun acculturational_A : A; -fun accumbent_A : A; -fun accumulate_V : V; -fun accumulate_V2 : V2; -fun accumulation_N : N; -fun accumulative_A : A; -fun accumulator_N : N; -fun accuracy_N : N; -fun accurate_A : A; -fun accurately_Adv : Adv; -fun accurse_V2 : V2; -fun accursed_A : A; -fun accurst_A : A; -fun accusation_N : N; -fun accusative_A : A; -fun accusative_N : N; -fun accusatorial_A : A; -fun accuse_V2 : V2; -fun accused_N : N; -fun accuser_N : N; -fun accusingly_Adv : Adv; -fun accustom_V2 : V2; -fun accustomed_A : A; -fun ace_A : A; -fun ace_N : N; -fun acebutolol_N : N; -fun acentric_A : A; -fun acephalia_N : N; -fun acephalous_A : A; -fun acerate_A : A; -fun acerb_A : A; -fun acerbity_N : N; -fun acerola_N : N; -fun acervate_A : A; -fun acervulus_N : N; -fun acetabular_A : A; -fun acetabulum_N : N; -fun acetal_N : N; -fun acetaldehyde_N : N; -fun acetaldol_N : N; -fun acetamide_N : N; -fun acetaminophen_N : N; -fun acetanilide_N : N; -fun acetate_N : N; -fun acetic_A : A; -fun acetin_N : N; -fun acetone_N : N; -fun acetonic_A : A; -fun acetophenetidin_N : N; -fun acetose_A : A; -fun acetum_N : N; -fun acetyl_N : N; -fun acetylation_N : N; -fun acetylcholine_N : N; -fun acetylene_N : N; -fun acetylenic_A : A; -fun acetylic_A : A; -fun ache_N : N; -fun ache_V : V; -fun achene_N : N; -fun achenial_A : A; -fun achievability_N : N; -fun achievable_A : A; -fun achieve_V2 : V2; -fun achievement_N : N; -fun achiever_N : N; -fun achillea_N : N; -fun achimenes_N : N; -fun aching_A : A; -fun achira_N : N; -fun achlamydeous_A : A; -fun achlorhydria_N : N; -fun achlorhydric_A : A; -fun acholia_N : N; -fun achondrite_N : N; -fun achondritic_A : A; -fun achondroplasia_N : N; -fun achondroplastic_A : A; -fun achromatic_A : A; -fun achromatin_N : N; -fun achromatinic_A : A; -fun achromatous_A : A; -fun achromia_N : N; -fun achromic_A : A; -fun achylia_N : N; -fun acicula_N : N; -fun aciculate_A : A; -fun acid_A : A; -fun acid_N : N; -fun acid_fast_A : A; -fun acid_forming_A : A; -fun acid_loving_A : A; -fun acid_tasting_A : A; -fun acidemia_N : N; -fun acidic_A : A; -fun acidification_N : N; -fun acidify_V : V; -fun acidify_V2 : V2; -fun acidimetric_A : A; -fun acidimetry_N : N; -fun acidity_N : N; -fun acidophil_N : N; -fun acidophilic_A : A; -fun acidophilus_N : N; -fun acidosis_N : N; -fun acidotic_A : A; -fun acidulated_A : A; -fun acidulous_A : A; -fun acinar_A : A; -fun acinus_N : N; -fun ack_ack_N : N; -fun ackee_N : N; -fun acknowledge_V : V; -fun acknowledge_V2 : V2; -fun acknowledge_VS : VS; -fun acknowledgeable_A : A; -fun acknowledged_A : A; -fun acknowledgement_N : N; -fun acknowledgment_N : N; -fun acme_N : N; -fun acne_N : N; -fun acned_A : A; -fun acneiform_A : A; -fun acold_A : A; -fun acolyte_N : N; -fun aconite_N : N; -fun acorea_N : N; -fun acorn_N : N; -fun acorn_cup_N : N; -fun acorn_shaped_A : A; -fun acoustic_A : A; -fun acoustic_N : N; -fun acoustically_Adv : Adv; -fun acoustician_N : N; -fun acoustics_N : N; -fun acquaint_V2 : V2; -fun acquaintance_N : N; -fun acquaintanceship_N : N; -fun acquainted_A : A; -fun acquiesce_V : V; -fun acquiescence_N : N; -fun acquiescent_A : A; -fun acquirable_A : A; -fun acquire_V2 : V2; -fun acquired_A : A; -fun acquirement_N : N; -fun acquirer_N : N; -fun acquiring_N : N; -fun acquisition_N : N; -fun acquisitive_A : A; -fun acquisitiveness_N : N; -fun acquit_V2 : V2; -fun acquittal_N : N; -fun acquittance_N : N; -fun acquitted_A : A; -fun acre_N : N; -fun acre_foot_N : N; -fun acreage_N : N; -fun acrid_A : A; -fun acridity_N : N; -fun acrimonious_A : A; -fun acrimony_N : N; -fun acritical_A : A; -fun acroanesthesia_N : N; -fun acrobat_N : N; -fun acrobatic_A : A; -fun acrobatics_N : N; -fun acrocarp_N : N; -fun acrocarpous_A : A; -fun acrocentric_A : A; -fun acrocyanosis_N : N; -fun acrodont_N : N; -fun acrogen_N : N; -fun acrogenic_A : A; -fun acromegalic_A : A; -fun acromegaly_N : N; -fun acromicria_N : N; -fun acromion_N : N; -fun acromphalus_N : N; -fun acromyotonia_N : N; -fun acronym_N : N; -fun acronymic_A : A; -fun acropetal_A : A; -fun acrophobia_N : N; -fun acrophobic_A : A; -fun acrophony_N : N; -fun acropolis_N : N; -fun acroscopic_A : A; -fun acrosome_N : N; -fun across_Adv : Adv; -fun across_Prep : Prep; -fun across_the_board_A : A; -fun across_the_board_Adv : Adv; -fun acrostic_N : N; -fun acrylamide_N : N; -fun acrylic_N : N; -fun acrylonitrile_butadiene_styrene_N : N; -fun act_N : N; -fun act_V : V; -fun act_V2 : V2; -fun act_V2V : V2V; -fun act_VA : VA; -fun act_of_god_PN : PN; -fun actable_A : A; -fun actin_N : N; -fun actinal_A : A; -fun acting_A : A; -fun acting_N : N; -fun actinia_N : N; -fun actinic_A : A; -fun actinism_N : N; -fun actinium_N : N; -fun actinoid_A : A; -fun actinoid_N : N; -fun actinolite_N : N; -fun actinometer_N : N; -fun actinometric_A : A; -fun actinometry_N : N; -fun actinomorphic_A : A; -fun actinomyces_N : N; -fun actinomycetal_A : A; -fun actinomycete_N : N; -fun actinomycin_N : N; -fun actinomycosis_N : N; -fun actinomycotic_A : A; -fun actinomyxidian_N : N; -fun actinopod_N : N; -fun action_N : N; -fun actionable_A : A; -fun activate_V2 : V2; -fun activated_A : A; -fun activating_A : A; -fun activation_N : N; -fun activator_N : N; -fun active_A : A; -fun active_N : N; -fun actively_Adv : Adv; -fun activeness_N : N; -fun activism_N : N; -fun activist_A : A; -fun activist_N : N; -fun activity_N : N; -fun actomyosin_N : N; -fun actor_N : N; -fun actress_N : N; -fun actual_A : A; -fun actuality_N : N; -fun actually_Adv : Adv; -fun actuarial_A : A; -fun actuary_N : N; -fun actuate_V2 : V2; -fun actuated_A : A; -fun actuator_N : N; -fun acuate_A : A; -fun acuity_N : N; -fun aculea_N : N; -fun aculeate_A : A; -fun aculeus_N : N; -fun acumen_N : N; -fun acuminate_A : A; -fun acupressure_N : N; -fun acupuncture_N : N; -fun acute_A : A; -fun acutely_Adv : Adv; -fun acuteness_N : N; -fun acyclic_A : A; -fun acyclovir_N : N; -fun acyl_N : N; -fun acylation_N : N; -fun ad_N : N; -fun ad_hoc_A : A; -fun ad_hoc_Adv : Adv; -fun ad_hominem_A : A; -fun ad_infinitum_Adv : Adv; -fun ad_interim_Adv : Adv; -fun ad_lib_A : A; -fun ad_lib_A : A; -fun ad_lib_Adv : Adv; -fun ad_lib_N : N; -fun ad_lib_V : V; -fun ad_libitum_Adv : Adv; -fun ad_man_N : N; -fun ad_nauseam_Adv : Adv; -fun ad_val_Adv : Adv; -fun ad_valorem_Adv : Adv; -fun adactylia_N : N; -fun adactylous_A : A; -fun adage_N : N; -fun adagio_A : A; -fun adagio_Adv : Adv; -fun adagio_N : N; -fun adamance_N : N; -fun adamant_A : A; -fun adamant_N : N; -fun adamantine_A : A; -fun adamantly_Adv : Adv; -fun adapt_V : V; -fun adapt_V2 : V2; -fun adaptability_N : N; -fun adaptable_A : A; -fun adaptation_N : N; -fun adaptational_A : A; -fun adapted_A : A; -fun adapter_N : N; -fun adaptive_A : A; -fun adaptor_N : N; -fun adaxial_A : A; -fun adaxially_Adv : Adv; -fun add_V : V; -fun add_V2 : V2; -fun add_VS : VS; -fun addable_A : A; -fun addax_N : N; -fun addend_N : N; -fun addendum_N : N; -fun adder_N : N; -fun addict_N : N; -fun addict_V2 : V2; -fun addicted_A : A; -fun addiction_N : N; -fun addictive_A : A; -fun adding_machine_N : N; -fun addition_N : N; -fun additional_A : A; -fun additionally_Adv : Adv; -fun additive_A : A; -fun additive_N : N; -fun addle_A : A; -fun addle_V : V; -fun addle_V2 : V2; -fun addle_brained_A : A; -fun addle_head_N : N; -fun addle_head_N : N; -fun addle_pated_A : A; -fun addlebrained_A : A; -fun addled_A : A; -fun address_N : N; -fun address_V2 : V2; -fun addressable_A : A; -fun addressed_A : A; -fun addressee_N : N; -fun addressograph_N : N; -fun adduce_V2 : V2; -fun adducent_A : A; -fun adducer_N : N; -fun adducing_N : N; -fun adduct_N : N; -fun adduction_N : N; -fun adductor_N : N; -fun adelgid_N : N; -fun adenine_N : N; -fun adenitis_N : N; -fun adenocarcinoma_N : N; -fun adenocarcinomatous_A : A; -fun adenoid_A : A; -fun adenoidal_A : A; -fun adenoidectomy_N : N; -fun adenoma_N : N; -fun adenomegaly_N : N; -fun adenopathy_N : N; -fun adenosine_N : N; -fun adenovirus_N : N; -fun adept_A : A; -fun adept_N : N; -fun adeptness_N : N; -fun adequacy_N : N; -fun adequate_A : A; -fun adequate_to_A : A; -fun adequately_Adv : Adv; -fun adesite_N : N; -fun adhere_V : V; -fun adherence_N : N; -fun adherent_A : A; -fun adherent_N : N; -fun adhesion_N : N; -fun adhesive_A : A; -fun adhesive_N : N; -fun adhesiveness_N : N; -fun adhocracy_N : N; -fun adiabatic_A : A; -fun adience_N : N; -fun adient_A : A; -fun adieu_N : N; -fun adipose_A : A; -fun adiposity_N : N; -fun adit_N : N; -fun adjacency_N : N; -fun adjacent_A : A; -fun adjectival_A : A; -fun adjectivally_Adv : Adv; -fun adjective_A : A; -fun adjective_N : N; -fun adjectively_Adv : Adv; -fun adjoin_V : V; -fun adjoin_V2 : V2; -fun adjoining_A : A; -fun adjourn_V : V; -fun adjourn_V2 : V2; -fun adjournment_N : N; -fun adjudge_V2 : V2; -fun adjudicate_V : V; -fun adjudicate_V2 : V2; -fun adjudication_N : N; -fun adjudicative_A : A; -fun adjudicator_N : N; -fun adjunct_A : A; -fun adjunct_N : N; -fun adjunctive_A : A; -fun adjuration_N : N; -fun adjuratory_A : A; -fun adjure_V2 : V2; -fun adjust_V : V; -fun adjust_V2 : V2; -fun adjust_V2V : V2V; -fun adjustable_A : A; -fun adjusted_A : A; -fun adjuster_N : N; -fun adjustive_A : A; -fun adjustment_N : N; -fun adjutant_N : N; -fun adjuvant_A : A; -fun adjuvant_N : N; -fun admass_N : N; -fun administer_V : V; -fun administer_V2 : V2; -fun administrable_A : A; -fun administration_N : N; -fun administrative_A : A; -fun administratively_Adv : Adv; -fun administrator_N : N; -fun administrivia_N : N; -fun admirability_N : N; -fun admirable_A : A; -fun admirably_Adv : Adv; -fun admiral_N : N; -fun admiralty_N : N; -fun admiration_N : N; -fun admire_V2 : V2; -fun admired_A : A; -fun admirer_N : N; -fun admiring_A : A; -fun admiringly_Adv : Adv; -fun admissibility_N : N; -fun admissible_A : A; -fun admission_N : N; -fun admissive_A : A; -fun admit_V : V; -fun admit_V2 : V2; -fun admit_VS : VS; -fun admittable_A : A; -fun admittance_N : N; -fun admittedly_Adv : Adv; -fun admix_V : V; -fun admix_V2 : V2; -fun admixture_N : N; -fun admonish_V2 : V2; -fun admonish_VS : VS; -fun admonisher_N : N; -fun admonition_N : N; -fun admonitory_A : A; -fun adnate_A : A; -fun adnexa_N : N; -fun adnexal_A : A; -fun adnoun_N : N; -fun ado_N : N; -fun adobe_N : N; -fun adobo_N : N; -fun adolescence_N : N; -fun adolescent_A : A; -fun adolescent_N : N; -fun adonis_N : N; -fun adopt_V2 : V2; -fun adoptable_A : A; -fun adopted_A : A; -fun adoptee_N : N; -fun adoption_N : N; -fun adoptive_A : A; -fun adorability_N : N; -fun adorable_A : A; -fun adorably_Adv : Adv; -fun adoration_N : N; -fun adore_V2 : V2; -fun adored_A : A; -fun adorer_N : N; -fun adoring_A : A; -fun adoringly_Adv : Adv; -fun adorn_V2 : V2; -fun adorned_A : A; -fun adornment_N : N; -fun adoxography_N : N; -fun adrenal_A : A; -fun adrenalectomy_N : N; -fun adrenalin_N : N; -fun adrenarche_N : N; -fun adrenergic_A : A; -fun adrenergic_N : N; -fun adrenocortical_A : A; -fun adrenocorticotropic_A : A; -fun adrenosterone_N : N; -fun adrift_A : A; -fun adrift_Adv : Adv; -fun adroit_A : A; -fun adroitly_Adv : Adv; -fun adroitness_N : N; -fun adscititious_A : A; -fun adscript_A : A; -fun adsorbable_A : A; -fun adsorbate_N : N; -fun adsorbent_A : A; -fun adsorbent_N : N; -fun adsorption_N : N; -fun adulation_N : N; -fun adulatory_A : A; -fun adult_A : A; -fun adult_N : N; -fun adulterant_N : N; -fun adulterate_A : A; -fun adulterate_V2 : V2; -fun adulterating_A : A; -fun adulteration_N : N; -fun adulterator_N : N; -fun adulterer_N : N; -fun adulteress_N : N; -fun adulterine_A : A; -fun adulterous_A : A; -fun adulterously_Adv : Adv; -fun adultery_N : N; -fun adulthood_N : N; -fun adumbrate_V2 : V2; -fun adumbration_N : N; -fun adumbrative_A : A; -fun adust_A : A; -fun advance_A : A; -fun advance_N : N; -fun advance_V : V; -fun advance_V2 : V2; -fun advanced_A : A; -fun advancement_N : N; -fun advancer_N : N; -fun advancing_A : A; -fun advantage_N : N; -fun advantage_V2 : V2; -fun advantageous_A : A; -fun advection_N : N; -fun advective_A : A; -fun advent_N : N; -fun adventist_N : N; -fun adventitial_A : A; -fun adventitious_A : A; -fun adventive_A : A; -fun adventure_N : N; -fun adventure_V2 : V2; -fun adventurer_N : N; -fun adventuresome_A : A; -fun adventuress_N : N; -fun adventurism_N : N; -fun adventuristic_A : A; -fun adventurous_A : A; -fun adventurousness_N : N; -fun adverb_N : N; -fun adverbial_A : A; -fun adverbial_N : N; -fun adverbially_Adv : Adv; -fun adversary_N : N; -fun adversative_A : A; -fun adverse_A : A; -fun adversely_Adv : Adv; -fun adversity_N : N; -fun advert_N : N; -fun advert_V : V; -fun advertence_N : N; -fun advertent_A : A; -fun advertise_V : V; -fun advertise_V2 : V2; -fun advertised_A : A; -fun advertisement_N : N; -fun advertiser_N : N; -fun advertising_N : N; -fun advertorial_N : N; -fun advice_N : N; -fun advisability_N : N; -fun advisable_A : A; -fun advise_V : V; -fun advise_V2 : V2; -fun advise_VS : VS; -fun advised_A : A; -fun advisee_N : N; -fun adviser_N : N; -fun advisory_A : A; -fun advisory_N : N; -fun advocacy_N : N; -fun advocate_N : N; -fun advocate_V2 : V2; -fun advocate_VS : VS; -fun advowson_N : N; -fun adynamia_N : N; -fun adynamic_A : A; -fun adz_N : N; -fun adze_N : N; -fun aecial_A : A; -fun aeciospore_N : N; -fun aecium_N : N; -fun aegis_N : N; -fun aeolotropic_A : A; -fun aeon_N : N; -fun aerate_V2 : V2; -fun aerated_A : A; -fun aeration_N : N; -fun aerator_N : N; -fun aerial_A : A; -fun aerial_N : N; -fun aerialist_N : N; -fun aerially_Adv : Adv; -fun aerides_N : N; -fun aerie_N : N; -fun aeriferous_A : A; -fun aeriform_A : A; -fun aerobatics_N : N; -fun aerobe_N : N; -fun aerobic_A : A; -fun aerobics_N : N; -fun aerobiosis_N : N; -fun aerobiotic_A : A; -fun aerodontalgia_N : N; -fun aerodrome_N : N; -fun aerodynamic_A : A; -fun aerodynamics_N : N; -fun aerolite_N : N; -fun aerolitic_A : A; -fun aerological_A : A; -fun aerology_N : N; -fun aeromechanic_A : A; -fun aeromechanics_N : N; -fun aeromedical_A : A; -fun aeromedicine_N : N; -fun aeronaut_N : N; -fun aeronautical_A : A; -fun aeronautics_N : N; -fun aerophagia_N : N; -fun aerophilatelic_A : A; -fun aerophilately_N : N; -fun aerophile_N : N; -fun aeroplane_N : N; -fun aerosol_N : N; -fun aerosolized_A : A; -fun aerospace_N : N; -fun aertex_N : N; -fun aery_N : N; -fun aeschynanthus_N : N; -fun aesculapian_A : A; -fun aesthete_N : N; -fun aesthetic_A : A; -fun aesthetic_N : N; -fun aesthetical_A : A; -fun aesthetically_Adv : Adv; -fun aesthetics_N : N; -fun aestival_A : A; -fun aether_N : N; -fun aetiology_N : N; -fun afar_Adv : Adv; -fun afeard_A : A; -fun afebrile_A : A; -fun affability_N : N; -fun affable_A : A; -fun affably_Adv : Adv; -fun affair_N : N; -fun affairs_N : N; -fun affect_N : N; -fun affect_V2 : V2; -fun affectation_N : N; -fun affected_A : A; -fun affectedly_Adv : Adv; -fun affectedness_N : N; -fun affecting_A : A; -fun affectingly_Adv : Adv; -fun affection_N : N; -fun affectional_A : A; -fun affectionate_A : A; -fun affectionateness_N : N; -fun affenpinscher_N : N; -fun afferent_A : A; -fun affiance_V2 : V2; -fun affiant_N : N; -fun affidavit_N : N; -fun affiliate_N : N; -fun affiliate_V : V; -fun affiliate_V2 : V2; -fun affiliated_A : A; -fun affiliation_N : N; -fun affinal_A : A; -fun affine_A : A; -fun affine_N : N; -fun affined_A : A; -fun affinity_N : N; -fun affirm_V : V; -fun affirm_V2 : V2; -fun affirm_VS : VS; -fun affirmable_A : A; -fun affirmation_N : N; -fun affirmative_A : A; -fun affirmative_N : N; -fun affirmatively_Adv : Adv; -fun affirmativeness_N : N; -fun affix_N : N; -fun affix_V2 : V2; -fun affixal_A : A; -fun affixation_N : N; -fun affixed_A : A; -fun afflatus_N : N; -fun afflict_V2 : V2; -fun afflicted_A : A; -fun affliction_N : N; -fun afflictive_A : A; -fun affluence_N : N; -fun affluent_A : A; -fun affluent_N : N; -fun afford_V2 : V2; -fun afford_V2V : V2V; -fun afforest_V2 : V2; -fun afforestation_N : N; -fun affranchise_V2 : V2; -fun affray_N : N; -fun affricate_N : N; -fun affrication_N : N; -fun affront_N : N; -fun affront_V2 : V2; -fun affusion_N : N; -fun afghan_A : A; -fun afghan_N : N; -fun afghani_N : N; -fun afghanistani_A : A; -fun afghanistani_N : N; -fun afibrinogenemia_N : N; -fun aficionado_N : N; -fun afield_Adv : Adv; -fun afire_A : A; -fun aflame_A : A; -fun aflare_A : A; -fun aflatoxin_N : N; -fun afloat_A : A; -fun aflutter_A : A; -fun afoot_A : A; -fun afoot_Adv : Adv; -fun afore_Adv : Adv; -fun afore_Prep : Prep; -fun aforesaid_A : A; -fun aforethought_A : A; -fun aforethought_Adv : Adv; -fun afoul_A : A; -fun afoul_Adv : Adv; -fun afraid_A : A; -fun afresh_Adv : Adv; -fun african_A : A; -fun african_N : N; -fun afrikaans_N : N; -fun afrikaner_A : A; -fun afrikaner_N : N; -fun afro_american_N : N; -fun afro_asian_A : A; -fun afro_wig_N : N; -fun afropavo_N : N; -fun aft_A : A; -fun aft_Adv : Adv; -fun after_A : A; -fun after_Adv : Adv; -fun after_Prep : Prep; -fun after_a_fashion_Adv : Adv; -fun after_all_Adv : Adv; -fun after_hours_A : A; -fun after_hours_Adv : Adv; -fun after_school_A : A; -fun after_shave_N : N; -fun afterbirth_N : N; -fun afterburner_N : N; -fun aftercare_N : N; -fun afterdamp_N : N; -fun afterdeck_N : N; -fun aftereffect_N : N; -fun afterglow_N : N; -fun afterimage_N : N; -fun afterlife_N : N; -fun aftermath_N : N; -fun aftermost_A : A; -fun afternoon_N : N; -fun afterpains_N : N; -fun afterpiece_N : N; -fun aftershaft_N : N; -fun aftershafted_A : A; -fun aftershock_N : N; -fun aftertaste_N : N; -fun afterthought_N : N; -fun afterwards_Adv : Adv; -fun afterworld_N : N; -fun again_Adv : Adv; -fun against_Prep : Prep; -fun against_the_clock_Adv : Adv; -fun agal_N : N; -fun agalactia_N : N; -fun agama_N : N; -fun agamete_N : N; -fun agamic_A : A; -fun agamid_N : N; -fun agammaglobulinemia_N : N; -fun agapanthus_N : N; -fun agape_A : A; -fun agape_N : N; -fun agar_N : N; -fun agar_agar_N : N; -fun agaric_N : N; -fun agate_N : N; -fun agateware_N : N; -fun agave_N : N; -fun agaze_A : A; -fun age_N : N; -fun age_V : V; -fun age_V2 : V2; -fun age_bracket_N : N; -fun age_group_N : N; -fun age_long_A : A; -fun age_old_A : A; -fun age_old_A : A; -fun age_related_A : A; -fun aged_A : A; -fun aged_N : N; -fun agedness_N : N; -fun ageing_N : N; -fun ageism_N : N; -fun ageless_A : A; -fun agelessness_N : N; -fun agelong_A : A; -fun agency_N : N; -fun agenda_N : N; -fun agenesis_N : N; -fun agent_N : N; -fun agent_in_place_N : N; -fun agent_provocateur_N : N; -fun agential_A : A; -fun agerasia_N : N; -fun ageratum_N : N; -fun agglomerate_A : A; -fun agglomerate_N : N; -fun agglomerate_V : V; -fun agglomerate_V2 : V2; -fun agglomeration_N : N; -fun agglomerator_N : N; -fun agglutinate_A : A; -fun agglutinate_V2 : V2; -fun agglutination_N : N; -fun agglutinative_A : A; -fun agglutinin_N : N; -fun agglutinogen_N : N; -fun aggrandize_V2 : V2; -fun aggrandizement_N : N; -fun aggravate_V2 : V2; -fun aggravated_A : A; -fun aggravating_A : A; -fun aggravatingly_Adv : Adv; -fun aggravation_N : N; -fun aggravator_N : N; -fun aggregate_A : A; -fun aggregate_N : N; -fun aggregate_V : V; -fun aggregate_V2 : V2; -fun aggregation_N : N; -fun aggression_N : N; -fun aggressive_A : A; -fun aggressively_Adv : Adv; -fun aggressiveness_N : N; -fun aggressor_N : N; -fun aggrieve_V2 : V2; -fun aggro_N : N; -fun aghast_A : A; -fun agile_A : A; -fun agilely_Adv : Adv; -fun agility_N : N; -fun agin_Prep : Prep; -fun aging_A : A; -fun aging_N : N; -fun agio_N : N; -fun agitate_V : V; -fun agitate_V2 : V2; -fun agitated_A : A; -fun agitating_A : A; -fun agitation_N : N; -fun agitative_A : A; -fun agitator_N : N; -fun agitprop_N : N; -fun agleam_A : A; -fun aglet_N : N; -fun aglitter_A : A; -fun aglow_A : A; -fun agm_N : N; -fun agnail_N : N; -fun agnate_A : A; -fun agnate_N : N; -fun agnomen_N : N; -fun agnosia_N : N; -fun agnostic_A : A; -fun agnostic_N : N; -fun agnosticism_N : N; -fun ago_A : A; -fun ago_Adv : Adv; -fun ago_Prep : Prep; -fun agog_A : A; -fun agon_N : N; -fun agonadal_A : A; -fun agonal_A : A; -fun agonist_N : N; -fun agonistic_A : A; -fun agonize_V : V; -fun agonize_V2 : V2; -fun agonized_A : A; -fun agonizing_A : A; -fun agonizingly_Adv : Adv; -fun agony_N : N; -fun agora_N : N; -fun agoraphobia_N : N; -fun agoraphobic_A : A; -fun agouti_N : N; -fun agranulocytic_A : A; -fun agranulocytosis_N : N; -fun agrapha_N : N; -fun agraphia_N : N; -fun agraphic_A : A; -fun agrarian_A : A; -fun agree_V : V; -fun agree_V2 : V2; -fun agree_VS : VS; -fun agree_VV : VV; -fun agreeable_A : A; -fun agreeableness_N : N; -fun agreed_A : A; -fun agreed_upon_A : A; -fun agreement_N : N; -fun agrestic_A : A; -fun agribusiness_N : N; -fun agricultural_A : A; -fun agriculture_N : N; -fun agriculturist_N : N; -fun agrimonia_N : N; -fun agrobiologic_A : A; -fun agrobiology_N : N; -fun agrologic_A : A; -fun agrology_N : N; -fun agromania_N : N; -fun agronomic_A : A; -fun agronomist_N : N; -fun agronomy_N : N; -fun aground_A : A; -fun aground_Adv : Adv; -fun agrypnia_N : N; -fun agrypnotic_A : A; -fun agua_N : N; -fun ague_N : N; -fun agueweed_N : N; -fun aguish_A : A; -fun ahead_A : A; -fun ahead_Adv : Adv; -fun ahead_of_the_game_Adv : Adv; -fun ahimsa_N : N; -fun ahistorical_A : A; -fun ahorse_A : A; -fun aid_N : N; -fun aid_V : V; -fun aid_V2 : V2; -fun aide_N : N; -fun aide_de_camp_N : N; -fun aide_memoire_N : N; -fun aide_memoire_N : N; -fun aids_N : N; -fun aigret_N : N; -fun aigrette_N : N; -fun aikido_N : N; -fun ail_V : V; -fun ail_V2 : V2; -fun ailanthus_N : N; -fun aileron_N : N; -fun ailing_A : A; -fun ailment_N : N; -fun ailurophobia_N : N; -fun aim_N : N; -fun aim_V : V; -fun aim_V2 : V2; -fun aim_VV : VV; -fun aimless_A : A; -fun aimlessly_Adv : Adv; -fun aioli_N : N; -fun air_N : N; -fun air_V : V; -fun air_V2 : V2; -fun air_bladder_N : N; -fun air_breathing_A : A; -fun air_conditioned_A : A; -fun air_conditioned_A : A; -fun air_conditioning_N : N; -fun air_cooled_A : A; -fun air_cooled_A : A; -fun air_dried_A : A; -fun air_dry_A : A; -fun air_filled_A : A; -fun air_intake_N : N; -fun air_minded_A : A; -fun air_pump_N : N; -fun air_raid_N : N; -fun air_shaft_N : N; -fun air_sick_A : A; -fun air_sickness_N : N; -fun air_to_air_A : A; -fun air_to_air_A : A; -fun air_to_ground_A : A; -fun air_to_surface_A : A; -fun airbed_N : N; -fun airborne_A : A; -fun airbrake_N : N; -fun airbrush_N : N; -fun airburst_N : N; -fun airbus_N : N; -fun aircraft_N : N; -fun aircraftman_N : N; -fun aircraftsman_N : N; -fun aircrew_N : N; -fun aircrewman_N : N; -fun airdock_N : N; -fun airdrome_N : N; -fun airdrop_N : N; -fun aired_A : A; -fun airedale_N : N; -fun airfare_N : N; -fun airfield_N : N; -fun airflow_N : N; -fun airfoil_N : N; -fun airframe_N : N; -fun airhead_N : N; -fun airheaded_A : A; -fun airiness_N : N; -fun airing_N : N; -fun airing_cupboard_N : N; -fun airless_A : A; -fun airlift_N : N; -fun airline_N : N; -fun airliner_N : N; -fun airlock_N : N; -fun airmail_N : N; -fun airmailer_N : N; -fun airman_N : N; -fun airplane_N : N; -fun airport_N : N; -fun airs_N : N; -fun airscrew_N : N; -fun airship_N : N; -fun airsick_A : A; -fun airsickness_N : N; -fun airspace_N : N; -fun airspeed_N : N; -fun airstream_N : N; -fun airstrip_N : N; -fun airtight_A : A; -fun airway_N : N; -fun airwoman_N : N; -fun airworthiness_N : N; -fun airworthy_A : A; -fun airy_A : A; -fun aisle_N : N; -fun aitch_N : N; -fun aitch_bone_N : N; -fun aitchbone_N : N; -fun ajar_A : A; -fun aka_Prep : Prep; -fun akaryocyte_N : N; -fun akee_N : N; -fun akimbo_A : A; -fun akimbo_Adv : Adv; -fun akin_A : A; -fun akinesis_N : N; -fun al_fatah_N : N; -fun al_itihaad_al_islamiya_PN : PN; -fun al_jihad_N : N; -fun al_ma'unah_N : N; -fun al_muhajiroun_N : N; -fun al_qaeda_N : N; -fun al_rashid_trust_PN : PN; -fun al_sunna_wal_jamma_PN : PN; -fun al_tawhid_N : N; -fun al_ummah_N : N; -fun al_dente_A : A; -fun ala_N : N; -fun alabaster_A : A; -fun alabaster_N : N; -fun alacritous_A : A; -fun alacrity_N : N; -fun alalia_N : N; -fun alanine_N : N; -fun alar_A : A; -fun alarm_N : N; -fun alarm_V2 : V2; -fun alarm_clock_N : N; -fun alarmed_A : A; -fun alarming_A : A; -fun alarmingly_Adv : Adv; -fun alarmism_N : N; -fun alarmist_N : N; -fun alastrim_N : N; -fun alate_A : A; -fun alb_N : N; -fun albacore_N : N; -fun albanian_A : A; -fun albanian_N : N; -fun albatross_N : N; -fun albedo_N : N; -fun albeit_Subj : Subj; -fun albescent_A : A; -fun albinal_A : A; -fun albinism_N : N; -fun albino_N : N; -fun albite_N : N; -fun albitic_A : A; -fun albizzia_N : N; -fun albuca_N : N; -fun albuginea_N : N; -fun album_N : N; -fun albumen_N : N; -fun albumin_N : N; -fun albuminous_A : A; -fun albuminuria_N : N; -fun albuminuric_A : A; -fun albuterol_N : N; -fun alcalde_N : N; -fun alcazar_N : N; -fun alchemic_A : A; -fun alchemist_N : N; -fun alchemistic_A : A; -fun alchemy_N : N; -fun alcohol_N : N; -fun alcohol_soluble_A : A; -fun alcoholic_A : A; -fun alcoholic_N : N; -fun alcoholism_N : N; -fun alcove_N : N; -fun aldehyde_N : N; -fun aldehydic_A : A; -fun alder_N : N; -fun alderfly_N : N; -fun alderleaf_juneberry_PN : PN; -fun alderman_N : N; -fun aldermanic_A : A; -fun aldohexose_N : N; -fun aldol_N : N; -fun aldose_N : N; -fun aldosterone_N : N; -fun aldosteronism_N : N; -fun ale_N : N; -fun ale_house_N : N; -fun aleatory_A : A; -fun alee_A : A; -fun alee_Adv : Adv; -fun alehouse_N : N; -fun alembic_N : N; -fun alendronate_N : N; -fun aleph_N : N; -fun aleph_null_N : N; -fun alert_A : A; -fun alert_N : N; -fun alert_V2 : V2; -fun alertly_Adv : Adv; -fun alertness_N : N; -fun aleurone_N : N; -fun aleuronic_A : A; -fun alewife_N : N; -fun alexandrine_N : N; -fun alexandrite_N : N; -fun alexia_N : N; -fun alexic_A : A; -fun alexic_N : N; -fun alfalfa_N : N; -fun alfresco_A : A; -fun alfresco_Adv : Adv; -fun alga_N : N; -fun algal_A : A; -fun algarroba_N : N; -fun algebra_N : N; -fun algebraic_A : A; -fun algebraical_A : A; -fun algebraically_Adv : Adv; -fun algebraist_N : N; -fun algerian_A : A; -fun algerian_N : N; -fun algid_A : A; -fun algidity_N : N; -fun algin_N : N; -fun algoid_A : A; -fun algolagnia_N : N; -fun algolagnic_A : A; -fun algometer_N : N; -fun algometric_A : A; -fun algometry_N : N; -fun algophobia_N : N; -fun algophobic_A : A; -fun algorism_N : N; -fun algorithm_N : N; -fun algorithmic_A : A; -fun alias_Adv : Adv; -fun alias_N : N; -fun alibi_N : N; -fun alidade_N : N; -fun alien_A : A; -fun alien_N : N; -fun alienable_A : A; -fun alienage_N : N; -fun alienate_V2 : V2; -fun alienated_A : A; -fun alienating_A : A; -fun alienation_N : N; -fun alienator_N : N; -fun alienee_N : N; -fun alienism_N : N; -fun alienist_N : N; -fun alienor_N : N; -fun alight_A : A; -fun alight_V : V; -fun align_V : V; -fun align_V2 : V2; -fun aligned_A : A; -fun aligning_A : A; -fun alignment_N : N; -fun alike_A : A; -fun alike_Adv : Adv; -fun alimentary_A : A; -fun alimentative_A : A; -fun alimony_N : N; -fun aliphatic_A : A; -fun aliquant_N : N; -fun aliquot_A : A; -fun aliquot_N : N; -fun aliterate_N : N; -fun alive_A : A; -fun aliyah_N : N; -fun alizarin_N : N; -fun alkahest_N : N; -fun alkahestic_A : A; -fun alkalemia_N : N; -fun alkalescent_A : A; -fun alkali_N : N; -fun alkalimetry_N : N; -fun alkaline_A : A; -fun alkaline_loving_A : A; -fun alkalinity_N : N; -fun alkalinuria_N : N; -fun alkaloid_N : N; -fun alkaloidal_A : A; -fun alkalosis_N : N; -fun alkalotic_A : A; -fun alkapton_N : N; -fun alkaptonuria_N : N; -fun alkene_N : N; -fun alkyd_N : N; -fun alkyl_N : N; -fun alkylbenzene_N : N; -fun alkylbenzenesulfonate_N : N; -fun alkylic_A : A; -fun all_A : A; -fun all_Predet : Predet; -fun all_along_Adv : Adv; -fun all_around_A : A; -fun all_devouring_A : A; -fun all_fired_A : A; -fun all_important_A : A; -fun all_in_A : A; -fun all_in_all_Adv : Adv; -fun all_knowing_A : A; -fun all_mains_A : A; -fun all_mains_A : A; -fun all_metal_A : A; -fun all_of_a_sudden_Adv : Adv; -fun all_or_none_A : A; -fun all_out_A : A; -fun all_over_Adv : Adv; -fun all_right_A : A; -fun all_right_Adv : Adv; -fun all_round_A : A; -fun all_rounder_N : N; -fun all_rounder_N : N; -fun all_the_way_Adv : Adv; -fun all_time_A : A; -fun all_together_Adv : Adv; -fun all_too_Adv : Adv; -fun all_victorious_A : A; -fun all_weather_A : A; -fun allamanda_N : N; -fun allantoic_A : A; -fun allantoid_A : A; -fun allantois_N : N; -fun allargando_A : A; -fun allay_V2 : V2; -fun allegation_N : N; -fun allege_V2 : V2; -fun allege_V2V : V2V; -fun allege_VS : VS; -fun alleged_A : A; -fun allegedly_Adv : Adv; -fun allegiance_N : N; -fun allegiant_A : A; -fun allegoric_A : A; -fun allegorical_A : A; -fun allegorically_Adv : Adv; -fun allegorizer_N : N; -fun allegory_N : N; -fun allegretto_A : A; -fun allegretto_Adv : Adv; -fun allegretto_N : N; -fun allegro_A : A; -fun allegro_Adv : Adv; -fun allegro_N : N; -fun allele_N : N; -fun allelic_A : A; -fun allemande_N : N; -fun allergen_N : N; -fun allergenic_A : A; -fun allergic_A : A; -fun allergist_N : N; -fun allergology_N : N; -fun allergy_N : N; -fun alleviate_V2 : V2; -fun alleviated_A : A; -fun alleviation_N : N; -fun alleviative_A : A; -fun alleviator_N : N; -fun alley_N : N; -fun alleyway_N : N; -fun alliaceous_A : A; -fun alliance_N : N; -fun allied_A : A; -fun allies_N : N; -fun alligator_N : N; -fun alligatored_A : A; -fun alligatorfish_N : N; -fun alliteration_N : N; -fun alliterative_A : A; -fun alliteratively_Adv : Adv; -fun alliterator_N : N; -fun allocable_A : A; -fun allocate_V : V; -fun allocate_V2 : V2; -fun allocation_N : N; -fun allocator_N : N; -fun allochronic_A : A; -fun allochthonous_A : A; -fun allocution_N : N; -fun allogamous_A : A; -fun allogamy_N : N; -fun allogeneic_A : A; -fun allograph_N : N; -fun allographic_A : A; -fun allomerism_N : N; -fun allomerous_A : A; -fun allometric_A : A; -fun allometry_N : N; -fun allomorph_N : N; -fun allomorphic_A : A; -fun allopathic_A : A; -fun allopathy_N : N; -fun allopatric_A : A; -fun allopatry_N : N; -fun allophone_N : N; -fun allophonic_A : A; -fun allopurinol_N : N; -fun allosaur_N : N; -fun allot_V2 : V2; -fun allotment_N : N; -fun allotrope_N : N; -fun allotropic_A : A; -fun allotropy_N : N; -fun allotted_A : A; -fun allover_A : A; -fun allow_V : V; -fun allow_V2 : V2; -fun allow_V2V : V2V; -fun allow_VS : VS; -fun allowable_A : A; -fun allowance_N : N; -fun alloy_N : N; -fun alloy_V2 : V2; -fun alloyed_A : A; -fun allspice_N : N; -fun allude_V : V; -fun allure_N : N; -fun allure_V2 : V2; -fun allurement_N : N; -fun alluring_A : A; -fun allusion_N : N; -fun allusive_A : A; -fun allusiveness_N : N; -fun alluvial_A : A; -fun alluvion_N : N; -fun ally_N : N; -fun ally_V : V; -fun ally_V2 : V2; -fun allyl_N : N; -fun allylic_A : A; -fun alma_mater_N : N; -fun almanac_N : N; -fun almandine_N : N; -fun almandite_N : N; -fun almighty_A : A; -fun almighty_N : N; -fun almond_N : N; -fun almond_eyed_A : A; -fun almond_eyed_A : A; -fun almond_scented_A : A; -fun almond_shaped_A : A; -fun almoner_N : N; -fun almost_AdN : AdN; -fun almost_Adv : Adv; -fun almost_Predet : Predet; -fun alms_N : N; -fun alms_box_N : N; -fun alms_giving_N : N; -fun alms_giving_N : N; -fun alms_house_N : N; -fun almsgiver_N : N; -fun alocasia_N : N; -fun aloe_N : N; -fun aloes_N : N; -fun aloft_Adv : Adv; -fun aloha_N : N; -fun alone_A : A; -fun alone_Adv : Adv; -fun aloneness_N : N; -fun along_Adv : Adv; -fun along_Prep : Prep; -fun alongside_Adv : Adv; -fun alongside_Prep : Prep; -fun aloof_A : A; -fun aloof_Adv : Adv; -fun aloofness_N : N; -fun alopecia_N : N; -fun alopecic_A : A; -fun aloud_Adv : Adv; -fun alp_N : N; -fun alpaca_N : N; -fun alpenstock_N : N; -fun alpestrine_A : A; -fun alpha_A : A; -fun alpha_N : N; -fun alpha_interferon_N : N; -fun alpha_naphthol_N : N; -fun alpha_tocopheral_N : N; -fun alphabet_N : N; -fun alphabetic_A : A; -fun alphabetical_A : A; -fun alphabetically_Adv : Adv; -fun alphabetization_N : N; -fun alphabetized_A : A; -fun alphabetizer_N : N; -fun alphanumeric_A : A; -fun alphanumerics_N : N; -fun alphavirus_N : N; -fun alpine_A : A; -fun alpinist_N : N; -fun alprazolam_N : N; -fun already_AdV : AdV; -fun already_Adv : Adv; -fun alright_A : A; -fun alright_Adv : Adv; -fun alsatian_N : N; -fun also_AdV : AdV; -fun also_Adv : Adv; -fun also_ran_N : N; -fun alstroemeria_N : N; -fun altar_N : N; -fun altar_piece_N : N; -fun altarpiece_N : N; -fun altazimuth_N : N; -fun alter_V : V; -fun alter_V2 : V2; -fun alter_ego_N : N; -fun alterability_N : N; -fun alterable_A : A; -fun alteration_N : N; -fun altercation_N : N; -fun altered_A : A; -fun alternate_A : A; -fun alternate_V : V; -fun alternate_V2 : V2; -fun alternately_Adv : Adv; -fun alternating_A : A; -fun alternation_N : N; -fun alternative_A : A; -fun alternative_N : N; -fun alternatively_Adv : Adv; -fun alternator_N : N; -fun althea_N : N; -fun although_Subj : Subj; -fun altimeter_N : N; -fun altissimo_A : A; -fun altitude_N : N; -fun altitudinal_A : A; -fun altitudinous_A : A; -fun alto_A : A; -fun alto_N : N; -fun altocumulus_N : N; -fun altogether_Adv : Adv; -fun altostratus_N : N; -fun altricial_A : A; -fun altruism_N : N; -fun altruist_N : N; -fun altruistic_A : A; -fun altruistically_Adv : Adv; -fun alula_N : N; -fun alular_A : A; -fun alum_N : N; -fun alumina_N : N; -fun aluminate_N : N; -fun aluminiferous_A : A; -fun aluminium_N : N; -fun aluminous_A : A; -fun aluminum_N : N; -fun alumna_N : N; -fun alumnus_N : N; -fun alumroot_N : N; -fun alundum_N : N; -fun alveolar_A : A; -fun alveolar_N : N; -fun alveolate_A : A; -fun alveolitis_N : N; -fun alveolus_N : N; -fun alvine_A : A; -fun always_AdV : AdV; -fun always_Adv : Adv; -fun alyssum_N : N; -fun amah_N : N; -fun amain_Adv : Adv; -fun amalgam_N : N; -fun amalgamate_A : A; -fun amalgamate_V : V; -fun amalgamate_V2 : V2; -fun amalgamation_N : N; -fun amalgamative_A : A; -fun amalgamator_N : N; -fun amanuensis_N : N; -fun amaranth_N : N; -fun amaranthine_A : A; -fun amarelle_N : N; -fun amaretto_N : N; -fun amaryllis_N : N; -fun amass_V : V; -fun amass_V2 : V2; -fun amastia_N : N; -fun amateur_A : A; -fun amateur_N : N; -fun amateurish_A : A; -fun amateurishly_Adv : Adv; -fun amateurishness_N : N; -fun amateurism_N : N; -fun amative_A : A; -fun amatory_A : A; -fun amaurosis_N : N; -fun amaurotic_A : A; -fun amaze_V2 : V2; -fun amaze_V2V : V2V; -fun amazed_A : A; -fun amazement_N : N; -fun amazing_A : A; -fun amazingly_Adv : Adv; -fun amazon_N : N; -fun ambages_N : N; -fun ambassador_N : N; -fun ambassadorial_A : A; -fun ambassadorship_N : N; -fun ambassadress_N : N; -fun amber_A : A; -fun amber_N : N; -fun amber_green_A : A; -fun ambergris_N : N; -fun amberjack_N : N; -fun ambiance_N : N; -fun ambidexterity_N : N; -fun ambidextrous_A : A; -fun ambience_N : N; -fun ambient_A : A; -fun ambiguity_N : N; -fun ambiguous_A : A; -fun ambiguously_Adv : Adv; -fun ambit_N : N; -fun ambition_N : N; -fun ambitious_A : A; -fun ambitiously_Adv : Adv; -fun ambivalence_N : N; -fun ambivalent_A : A; -fun ambiversion_N : N; -fun ambiversive_A : A; -fun amble_N : N; -fun amble_V : V; -fun amble_V2 : V2; -fun amblygonite_N : N; -fun amblyopia_N : N; -fun amblyopic_A : A; -fun amboyna_N : N; -fun ambrosia_N : N; -fun ambrosial_A : A; -fun ambulacral_A : A; -fun ambulacrum_N : N; -fun ambulance_N : N; -fun ambulant_A : A; -fun ambulation_N : N; -fun ambulatory_A : A; -fun ambulatory_N : N; -fun ambuscade_N : N; -fun ambuscade_V2 : V2; -fun ambush_N : N; -fun ambush_V2 : V2; -fun ambusher_N : N; -fun ambystomid_N : N; -fun ameba_N : N; -fun amebiasis_N : N; -fun ameboid_A : A; -fun ameer_N : N; -fun amelia_N : N; -fun ameliorate_V : V; -fun ameliorate_V2 : V2; -fun ameliorating_A : A; -fun amelioration_N : N; -fun ameloblast_N : N; -fun amelogenesis_N : N; -fun amenability_N : N; -fun amenable_A : A; -fun amend_V : V; -fun amend_V2 : V2; -fun amend_V2V : V2V; -fun amendable_A : A; -fun amendatory_A : A; -fun amended_A : A; -fun amendment_N : N; -fun amenity_N : N; -fun amenorrhea_N : N; -fun amenorrheic_A : A; -fun amentiferous_A : A; -fun amerciable_A : A; -fun american_A : A; -fun american_N : N; -fun americanism_N : N; -fun americanize_V2 : V2; -fun americium_N : N; -fun ametabolic_A : A; -fun amethyst_A : A; -fun amethyst_N : N; -fun amethystine_A : A; -fun ametria_N : N; -fun ametropia_N : N; -fun ametropic_A : A; -fun amharic_N : N; -fun amiability_N : N; -fun amiable_A : A; -fun amicability_N : N; -fun amicable_A : A; -fun amicably_Adv : Adv; -fun amid_Prep : Prep; -fun amide_N : N; -fun amidship_A : A; -fun amidship_Adv : Adv; -fun amidships_Adv : Adv; -fun amidst_Prep : Prep; -fun amigo_N : N; -fun amine_N : N; -fun amino_A : A; -fun amino_N : N; -fun aminoaciduria_N : N; -fun aminomethane_N : N; -fun aminophylline_N : N; -fun aminopyrine_N : N; -fun amiodarone_N : N; -fun amir_N : N; -fun amiss_A : A; -fun amiss_Adv : Adv; -fun amitosis_N : N; -fun amitotic_A : A; -fun amitriptyline_N : N; -fun amity_N : N; -fun ammeter_N : N; -fun ammine_N : N; -fun ammino_A : A; -fun ammobium_N : N; -fun ammonia_N : N; -fun ammoniac_A : A; -fun ammoniac_N : N; -fun ammoniated_A : A; -fun ammonification_N : N; -fun ammonite_N : N; -fun ammonitic_A : A; -fun ammonium_N : N; -fun ammoniuria_N : N; -fun ammunition_N : N; -fun amnesia_N : N; -fun amnesic_A : A; -fun amnesic_N : N; -fun amnestic_A : A; -fun amnesty_N : N; -fun amniocentesis_N : N; -fun amnion_N : N; -fun amniote_N : N; -fun amniotic_A : A; -fun amobarbital_N : N; -fun amoeba_N : N; -fun amoebic_A : A; -fun amok_Adv : Adv; -fun among_Prep : Prep; -fun amongst_Prep : Prep; -fun amora_N : N; -fun amoral_A : A; -fun amoralism_N : N; -fun amoralist_N : N; -fun amorality_N : N; -fun amorist_N : N; -fun amoristic_A : A; -fun amorous_A : A; -fun amorously_Adv : Adv; -fun amorousness_N : N; -fun amorpha_N : N; -fun amorphophallus_N : N; -fun amorphous_A : A; -fun amort_A : A; -fun amortization_N : N; -fun amortize_V2 : V2; -fun amount_N : N; -fun amount_V : V; -fun amour_N : N; -fun amour_propre_N : N; -fun amoxicillin_N : N; -fun amp_Conj : Conj; -fun amp_N : N; -fun amperage_N : N; -fun ampere_N : N; -fun ampere_hour_N : N; -fun ampere_minute_N : N; -fun ampere_turn_N : N; -fun ampersand_N : N; -fun amphetamine_N : N; -fun amphibia_N : N; -fun amphibian_N : N; -fun amphibiotic_A : A; -fun amphibious_A : A; -fun amphibole_N : N; -fun amphibolite_N : N; -fun amphibology_N : N; -fun amphibrach_N : N; -fun amphictyony_N : N; -fun amphidiploid_N : N; -fun amphidiploidy_N : N; -fun amphigory_N : N; -fun amphimixis_N : N; -fun amphipod_N : N; -fun amphiprostylar_A : A; -fun amphisbaena_N : N; -fun amphistylar_A : A; -fun amphitheater_N : N; -fun amphitheatre_N : N; -fun amphitheatric_A : A; -fun amphitropous_A : A; -fun amphiuma_N : N; -fun amphora_N : N; -fun amphoric_A : A; -fun amphoteric_A : A; -fun amphotericin_N : N; -fun ampicillin_N : N; -fun ample_A : A; -fun ampleness_N : N; -fun amplification_N : N; -fun amplifier_N : N; -fun amplify_V2 : V2; -fun amplitude_N : N; -fun amply_Adv : Adv; -fun ampoule_N : N; -fun ampulla_N : N; -fun ampullar_A : A; -fun amputate_V2 : V2; -fun amputation_N : N; -fun amputator_N : N; -fun amputee_N : N; -fun amrinone_N : N; -fun amuck_A : A; -fun amuck_Adv : Adv; -fun amulet_N : N; -fun amuse_V2 : V2; -fun amused_A : A; -fun amusement_N : N; -fun amusing_A : A; -fun amusingly_Adv : Adv; -fun amygdala_N : N; -fun amygdalin_N : N; -fun amygdaline_A : A; -fun amygdaloid_N : N; -fun amygdalotomy_N : N; -fun amyl_N : N; -fun amylase_N : N; -fun amyloid_N : N; -fun amyloidosis_N : N; -fun amylolysis_N : N; -fun amylolytic_A : A; -fun amyotrophia_N : N; -fun amyxia_N : N; -fun ana_N : N; -fun anabatic_A : A; -fun anabiosis_N : N; -fun anabiotic_A : A; -fun anabolic_A : A; -fun anabolism_N : N; -fun anachronic_A : A; -fun anachronism_N : N; -fun anachronistic_A : A; -fun anachronistically_Adv : Adv; -fun anaclinal_A : A; -fun anaclisis_N : N; -fun anaclitic_A : A; -fun anacoluthia_N : N; -fun anacoluthic_A : A; -fun anaconda_N : N; -fun anadiplosis_N : N; -fun anadromous_A : A; -fun anaemia_N : N; -fun anaemic_A : A; -fun anaerobe_N : N; -fun anaerobic_A : A; -fun anaesthesia_N : N; -fun anaesthetic_A : A; -fun anaesthetic_N : N; -fun anaesthetist_N : N; -fun anaesthetize_V2 : V2; -fun anaglyph_N : N; -fun anaglyphic_A : A; -fun anaglyphy_N : N; -fun anagnost_N : N; -fun anagoge_N : N; -fun anagogic_A : A; -fun anagram_N : N; -fun anagrammatic_A : A; -fun anagrams_N : N; -fun anal_A : A; -fun analbuminemia_N : N; -fun analects_N : N; -fun analeptic_A : A; -fun analeptic_N : N; -fun analgesia_N : N; -fun analgesic_A : A; -fun analgesic_N : N; -fun analog_N : N; -fun analogical_A : A; -fun analogist_N : N; -fun analogous_A : A; -fun analogously_Adv : Adv; -fun analogue_A : A; -fun analogue_N : N; -fun analogy_N : N; -fun analphabet_N : N; -fun analphabetic_A : A; -fun analysand_N : N; -fun analyse_V2 : V2; -fun analysis_N : N; -fun analyst_N : N; -fun analytic_A : A; -fun analytical_A : A; -fun analytically_Adv : Adv; -fun analyticity_N : N; -fun analyzable_A : A; -fun analyze_V2 : V2; -fun analyzed_A : A; -fun analyzer_N : N; -fun anamnestic_A : A; -fun anamorphic_A : A; -fun anamorphism_N : N; -fun anamorphosis_N : N; -fun anapaest_N : N; -fun anapaestic_A : A; -fun anapest_N : N; -fun anapestic_A : A; -fun anaphase_N : N; -fun anaphasic_A : A; -fun anaphor_N : N; -fun anaphora_N : N; -fun anaphoric_A : A; -fun anaphrodisia_N : N; -fun anaphrodisiac_A : A; -fun anaphylactic_A : A; -fun anaphylaxis_N : N; -fun anaplasia_N : N; -fun anaplasmosis_N : N; -fun anaplastic_A : A; -fun anapsid_N : N; -fun anarchic_A : A; -fun anarchically_Adv : Adv; -fun anarchism_N : N; -fun anarchist_N : N; -fun anarchistic_A : A; -fun anarchy_N : N; -fun anarthria_N : N; -fun anasarca_N : N; -fun anasarcous_A : A; -fun anaspid_N : N; -fun anastalsis_N : N; -fun anastigmat_N : N; -fun anastigmatic_A : A; -fun anastomosis_N : N; -fun anastomotic_A : A; -fun anastrophe_N : N; -fun anastylosis_N : N; -fun anathema_N : N; -fun anathematization_N : N; -fun anathematize_V : V; -fun anathematize_V2 : V2; -fun anatomic_A : A; -fun anatomical_A : A; -fun anatomically_Adv : Adv; -fun anatomist_N : N; -fun anatomy_N : N; -fun anatotitan_N : N; -fun anatoxin_N : N; -fun anatropous_A : A; -fun ancestor_N : N; -fun ancestral_A : A; -fun ancestress_N : N; -fun ancestry_N : N; -fun anchor_N : N; -fun anchor_V : V; -fun anchor_V2 : V2; -fun anchorage_N : N; -fun anchorite_N : N; -fun anchoritic_A : A; -fun anchorman_N : N; -fun anchovy_N : N; -fun anchusa_N : N; -fun ancient_A : A; -fun ancient_N : N; -fun anciently_Adv : Adv; -fun ancientness_N : N; -fun ancients_N : N; -fun ancillary_A : A; -fun and_Conj : Conj; -fun and_how_Adv : Adv; -fun and_so_forth_Adv : Adv; -fun and_then_some_Adv : Adv; -fun andante_A : A; -fun andante_Adv : Adv; -fun andante_N : N; -fun andantino_A : A; -fun andesite_N : N; -fun andiron_N : N; -fun andorran_A : A; -fun andorran_N : N; -fun andradite_N : N; -fun andrena_N : N; -fun androecium_N : N; -fun androgen_N : N; -fun androgenesis_N : N; -fun androgenetic_A : A; -fun androgenic_A : A; -fun androglossia_N : N; -fun androgynous_A : A; -fun androgyny_N : N; -fun android_N : N; -fun andromeda_N : N; -fun androphobia_N : N; -fun androsterone_N : N; -fun andryala_N : N; -fun anecdotal_A : A; -fun anecdote_N : N; -fun anecdotic_A : A; -fun anecdotist_N : N; -fun anechoic_A : A; -fun anemia_N : N; -fun anemic_A : A; -fun anemographic_A : A; -fun anemography_N : N; -fun anemometer_N : N; -fun anemometric_A : A; -fun anemometry_N : N; -fun anemone_N : N; -fun anemophilous_A : A; -fun anencephalic_A : A; -fun anencephaly_N : N; -fun anent_Prep : Prep; -fun anergy_N : N; -fun aneroid_A : A; -fun aneroid_N : N; -fun anesthesia_N : N; -fun anesthesiologist_N : N; -fun anesthesiology_N : N; -fun anesthetic_A : A; -fun anesthetic_N : N; -fun anesthetist_N : N; -fun anesthetize_V2 : V2; -fun anesthyl_N : N; -fun anestrous_A : A; -fun anestrus_N : N; -fun aneuploid_A : A; -fun aneuploidy_N : N; -fun aneurysm_N : N; -fun aneurysmal_A : A; -fun anew_Adv : Adv; -fun anfractuous_A : A; -fun angel_N : N; -fun angelfish_N : N; -fun angelic_A : A; -fun angelica_N : N; -fun angelically_Adv : Adv; -fun angelim_N : N; -fun angelology_N : N; -fun angelus_N : N; -fun anger_N : N; -fun anger_V2 : V2; -fun angered_A : A; -fun angiitis_N : N; -fun angina_N : N; -fun anginal_A : A; -fun angiocardiogram_N : N; -fun angiocarp_N : N; -fun angiocarpic_A : A; -fun angioedema_N : N; -fun angiogenesis_N : N; -fun angiogram_N : N; -fun angiography_N : N; -fun angiologist_N : N; -fun angiology_N : N; -fun angioma_N : N; -fun angiomatous_A : A; -fun angiopathy_N : N; -fun angioplasty_N : N; -fun angiopteris_N : N; -fun angiosarcoma_N : N; -fun angioscope_N : N; -fun angiosperm_N : N; -fun angiospermous_A : A; -fun angiotelectasia_N : N; -fun angiotensin_N : N; -fun angiotensin_i_PN : PN; -fun angiotensin_ii_PN : PN; -fun angiotensin_ii_inhibitor_PN : PN; -fun angle_N : N; -fun angle_V : V; -fun angle_V2 : V2; -fun angle_dozer_N : N; -fun angle_iron_N : N; -fun angle_park_V : V; -fun angle_park_V2 : V2; -fun angled_A : A; -fun angledozer_N : N; -fun angler_N : N; -fun anglewing_N : N; -fun anglican_A : A; -fun anglican_N : N; -fun anglicism_N : N; -fun anglicize_V2 : V2; -fun angling_N : N; -fun anglo_catholic_A : A; -fun anglo_catholic_N : N; -fun anglo_indian_A : A; -fun anglo_indian_N : N; -fun anglo_saxon_A : A; -fun anglo_saxon_N : N; -fun anglomania_N : N; -fun anglophil_N : N; -fun anglophile_N : N; -fun anglophobe_N : N; -fun anglophobia_N : N; -fun angolan_A : A; -fun angolan_N : N; -fun angora_N : N; -fun angostura_N : N; -fun angrecum_N : N; -fun angrily_Adv : Adv; -fun angry_A : A; -fun angst_N : N; -fun angstrom_N : N; -fun anguillan_A : A; -fun anguillan_N : N; -fun anguine_A : A; -fun anguish_N : N; -fun anguished_A : A; -fun angular_A : A; -fun angularity_N : N; -fun angulation_N : N; -fun angwantibo_N : N; -fun anhedonia_N : N; -fun anhidrosis_N : N; -fun anhydride_N : N; -fun anhydrous_A : A; -fun ani_N : N; -fun anicteric_A : A; -fun anil_N : N; -fun anile_A : A; -fun aniline_N : N; -fun anima_N : N; -fun animadversion_N : N; -fun animadvert_V : V; -fun animal_A : A; -fun animal_N : N; -fun animalcule_N : N; -fun animalism_N : N; -fun animalistic_A : A; -fun animality_N : N; -fun animalization_N : N; -fun animate_A : A; -fun animate_V2 : V2; -fun animated_A : A; -fun animatedly_A : A; -fun animatedly_Adv : Adv; -fun animateness_N : N; -fun animating_A : A; -fun animation_N : N; -fun animatism_N : N; -fun animatistic_A : A; -fun animator_N : N; -fun animatronics_N : N; -fun anime_N : N; -fun animism_N : N; -fun animist_A : A; -fun animist_N : N; -fun animosity_N : N; -fun animus_N : N; -fun anion_N : N; -fun anionic_A : A; -fun anise_N : N; -fun anise_scented_A : A; -fun aniseed_N : N; -fun aniseikonia_N : N; -fun aniseikonic_A : A; -fun anisette_N : N; -fun anisogamete_N : N; -fun anisogametic_A : A; -fun anisogamic_A : A; -fun anisogamy_N : N; -fun anisometric_A : A; -fun anisometropia_N : N; -fun anisometropic_A : A; -fun anisotropic_A : A; -fun anisotropically_Adv : Adv; -fun anisotropy_N : N; -fun anjou_N : N; -fun ankle_N : N; -fun ankle_deep_A : A; -fun anklebone_N : N; -fun anklet_N : N; -fun ankus_N : N; -fun ankylosaur_N : N; -fun ankylosis_N : N; -fun ankylotic_A : A; -fun anna_N : N; -fun annalist_N : N; -fun annalistic_A : A; -fun annals_N : N; -fun anneal_V2 : V2; -fun annealing_N : N; -fun annelid_A : A; -fun annelid_N : N; -fun annex_N : N; -fun annex_V2 : V2; -fun annexation_N : N; -fun annexational_A : A; -fun annexe_N : N; -fun annihilate_V2 : V2; -fun annihilated_A : A; -fun annihilating_A : A; -fun annihilation_N : N; -fun annihilative_A : A; -fun annihilator_N : N; -fun anniversary_N : N; -fun annotate_V : V; -fun annotate_V2 : V2; -fun annotation_N : N; -fun annotator_N : N; -fun announce_V2 : V2; -fun announce_VS : VS; -fun announced_A : A; -fun announcement_N : N; -fun announcer_N : N; -fun annoy_V2 : V2; -fun annoyance_N : N; -fun annoyed_A : A; -fun annoying_A : A; -fun annoyingly_Adv : Adv; -fun annual_A : A; -fun annual_N : N; -fun annually_Adv : Adv; -fun annuitant_N : N; -fun annuity_N : N; -fun annul_V2 : V2; -fun annular_A : A; -fun annulet_N : N; -fun annulment_N : N; -fun annulus_N : N; -fun annum_N : N; -fun annunciate_V2 : V2; -fun annunciation_N : N; -fun annunciator_N : N; -fun annunciatory_A : A; -fun anoa_N : N; -fun anode_N : N; -fun anodic_A : A; -fun anodyne_A : A; -fun anodyne_N : N; -fun anoint_V2 : V2; -fun anointer_N : N; -fun anointing_N : N; -fun anointment_N : N; -fun anomalist_N : N; -fun anomalops_N : N; -fun anomalopteryx_N : N; -fun anomalous_A : A; -fun anomalously_Adv : Adv; -fun anomaly_N : N; -fun anomie_N : N; -fun anon_Adv : Adv; -fun anonymity_N : N; -fun anonymous_A : A; -fun anonymously_Adv : Adv; -fun anoperineal_A : A; -fun anopheles_N : N; -fun anopheline_A : A; -fun anopheline_N : N; -fun anopia_N : N; -fun anorak_N : N; -fun anorchism_N : N; -fun anorectal_A : A; -fun anorectic_A : A; -fun anorexia_N : N; -fun anorexic_A : A; -fun anorexic_N : N; -fun anorgasmia_N : N; -fun anorthite_N : N; -fun anorthitic_A : A; -fun anorthopia_N : N; -fun anosmia_N : N; -fun anosmic_A : A; -fun another_A : A; -fun another_Quant : Quant; -fun anovulation_N : N; -fun anoxemia_N : N; -fun anoxemic_A : A; -fun anoxia_N : N; -fun anoxic_A : A; -fun anserine_A : A; -fun answer_N : N; -fun answer_V : V; -fun answer_V2 : V2; -fun answerable_A : A; -fun answering_A : A; -fun ant_N : N; -fun ant_eater_N : N; -fun ant_hill_N : N; -fun antacid_A : A; -fun antacid_N : N; -fun antagonism_N : N; -fun antagonist_N : N; -fun antagonistic_A : A; -fun antagonistically_Adv : Adv; -fun antagonize_V2 : V2; -fun antapex_N : N; -fun antarctic_A : A; -fun antbird_N : N; -fun ante_N : N; -fun ante_meridiem_A : A; -fun ante_meridiem_Adv : Adv; -fun anteater_N : N; -fun antebellum_A : A; -fun antecedence_N : N; -fun antecedent_A : A; -fun antecedent_N : N; -fun antechamber_N : N; -fun antecubital_A : A; -fun antedate_V2 : V2; -fun antediluvian_A : A; -fun antediluvian_N : N; -fun antefix_N : N; -fun antelope_N : N; -fun antemeridian_A : A; -fun antemortem_A : A; -fun antenatal_A : A; -fun antenna_N : N; -fun antennal_A : A; -fun antenuptial_A : A; -fun antepenult_N : N; -fun antepenultimate_A : A; -fun anterior_A : A; -fun anteriority_N : N; -fun anteriorly_Adv : Adv; -fun anterograde_A : A; -fun anteroom_N : N; -fun anthelmintic_A : A; -fun anthem_N : N; -fun anther_N : N; -fun antheral_A : A; -fun antheridial_A : A; -fun antheridiophore_N : N; -fun antheridium_N : N; -fun antherozoid_N : N; -fun anthill_N : N; -fun anthologist_N : N; -fun anthology_N : N; -fun anthophagous_A : A; -fun anthophyllite_N : N; -fun anthozoan_N : N; -fun anthracite_N : N; -fun anthracitic_A : A; -fun anthracosis_N : N; -fun anthrax_N : N; -fun anthropic_A : A; -fun anthropocentric_A : A; -fun anthropocentrism_N : N; -fun anthropogenesis_N : N; -fun anthropogenetic_A : A; -fun anthropoid_A : A; -fun anthropoid_N : N; -fun anthropolatry_N : N; -fun anthropological_A : A; -fun anthropologist_N : N; -fun anthropology_N : N; -fun anthropometric_A : A; -fun anthropometry_N : N; -fun anthropomorphic_A : A; -fun anthropomorphism_N : N; -fun anthropophagous_A : A; -fun anthropophagy_N : N; -fun anthroposophy_N : N; -fun anthurium_N : N; -fun anti_A : A; -fun anti_N : N; -fun anti_american_A : A; -fun anti_american_N : N; -fun anti_catholicism_N : N; -fun anti_semite_N : N; -fun anti_semitism_N : N; -fun anti_aircraft_A : A; -fun anti_hero_N : N; -fun anti_inflammatory_N : N; -fun anti_intellectual_A : A; -fun anti_personnel_A : A; -fun anti_semite_A : A; -fun anti_semite_N : N; -fun anti_semitic_A : A; -fun anti_semitic_A : A; -fun anti_semitism_N : N; -fun antiadrenergic_A : A; -fun antiaircraft_A : A; -fun antiaircraft_N : N; -fun antialiasing_N : N; -fun antiapartheid_A : A; -fun antiarrhythmic_N : N; -fun antiauthoritarian_A : A; -fun antibacterial_A : A; -fun antibacterial_N : N; -fun antibaryon_N : N; -fun antibiosis_N : N; -fun antibiotic_A : A; -fun antibiotic_N : N; -fun antibody_N : N; -fun antic_A : A; -fun antic_N : N; -fun anticancer_A : A; -fun anticatalyst_N : N; -fun anticholinergic_A : A; -fun anticholinergic_N : N; -fun anticholinesterase_N : N; -fun anticipant_A : A; -fun anticipate_V : V; -fun anticipate_V2 : V2; -fun anticipate_VS : VS; -fun anticipate_VV : VV; -fun anticipated_A : A; -fun anticipation_N : N; -fun anticipator_N : N; -fun anticipatory_A : A; -fun anticlimactic_A : A; -fun anticlimax_N : N; -fun anticlinal_A : A; -fun anticlockwise_Adv : Adv; -fun anticoagulant_N : N; -fun anticoagulation_N : N; -fun anticoagulative_A : A; -fun anticonvulsant_N : N; -fun anticyclone_N : N; -fun anticyclonic_A : A; -fun antidepressant_N : N; -fun antidiabetic_N : N; -fun antidiarrheal_N : N; -fun antidiuretic_N : N; -fun antidotal_A : A; -fun antidote_N : N; -fun antidromic_A : A; -fun antiemetic_N : N; -fun antiestablishmentarianism_N : N; -fun antifeminist_N : N; -fun antiferromagnetic_A : A; -fun antiferromagnetism_N : N; -fun antiflatulent_N : N; -fun antifreeze_N : N; -fun antifungal_N : N; -fun antigen_N : N; -fun antigenic_A : A; -fun antigram_N : N; -fun antiguan_A : A; -fun antiguan_N : N; -fun antiheretical_A : A; -fun antihero_N : N; -fun antihistamine_N : N; -fun antihypertensive_N : N; -fun antiknock_A : A; -fun antiknock_N : N; -fun antilepton_N : N; -fun antilogarithm_N : N; -fun antimacassar_N : N; -fun antimagnetic_A : A; -fun antimalarial_N : N; -fun antimatter_N : N; -fun antimeson_N : N; -fun antimetabolite_N : N; -fun antimicrobial_A : A; -fun antimonial_A : A; -fun antimonic_A : A; -fun antimonopoly_A : A; -fun antimony_N : N; -fun antimuon_N : N; -fun antimycin_N : N; -fun antineoplastic_N : N; -fun antineutrino_N : N; -fun antineutron_N : N; -fun antinode_N : N; -fun antinomasia_N : N; -fun antinomian_A : A; -fun antinomian_N : N; -fun antinomianism_N : N; -fun antinomy_N : N; -fun antioxidant_N : N; -fun antiparallel_A : A; -fun antiparticle_N : N; -fun antipasto_N : N; -fun antipathetic_A : A; -fun antipathy_N : N; -fun antipersonnel_A : A; -fun antiperspirant_N : N; -fun antiphlogistic_A : A; -fun antiphon_N : N; -fun antiphonary_A : A; -fun antiphonary_N : N; -fun antiphony_N : N; -fun antiphrasis_N : N; -fun antipodal_A : A; -fun antipodal_N : N; -fun antipode_N : N; -fun antipodes_N : N; -fun antipollution_A : A; -fun antipope_N : N; -fun antiproton_N : N; -fun antiprotozoal_N : N; -fun antipruritic_N : N; -fun antipyresis_N : N; -fun antipyretic_A : A; -fun antipyretic_N : N; -fun antiquarian_A : A; -fun antiquarian_N : N; -fun antiquark_N : N; -fun antiquary_N : N; -fun antiquated_A : A; -fun antique_A : A; -fun antique_N : N; -fun antique_V : V; -fun antiquity_N : N; -fun antiredeposition_N : N; -fun antirrhinum_N : N; -fun antisatellite_A : A; -fun antisepsis_N : N; -fun antiseptic_A : A; -fun antiseptic_N : N; -fun antiserum_N : N; -fun antisocial_A : A; -fun antispasmodic_N : N; -fun antistrophe_N : N; -fun antistrophic_A : A; -fun antisubmarine_A : A; -fun antisyphilitic_N : N; -fun antitank_A : A; -fun antitauon_N : N; -fun antithesis_N : N; -fun antithetic_A : A; -fun antithetical_A : A; -fun antithetically_Adv : Adv; -fun antithyroid_A : A; -fun antitoxic_A : A; -fun antitoxin_N : N; -fun antitrade_A : A; -fun antitrade_N : N; -fun antitrades_N : N; -fun antitussive_N : N; -fun antitype_N : N; -fun antitypic_A : A; -fun antivenin_N : N; -fun antiviral_A : A; -fun antiviral_N : N; -fun antler_N : N; -fun antler_like_A : A; -fun antlered_A : A; -fun antonym_N : N; -fun antonymous_A : A; -fun antonymy_N : N; -fun antrorse_A : A; -fun antrum_N : N; -fun antsy_A : A; -fun anuran_A : A; -fun anuresis_N : N; -fun anuretic_A : A; -fun anurous_A : A; -fun anus_N : N; -fun anvil_N : N; -fun anxiety_N : N; -fun anxiolytic_A : A; -fun anxious_A : A; -fun anxiously_Adv : Adv; -fun anxiousness_N : N; -fun any_A : A; -fun any_Adv : Adv; -fun anyPl_Det : Det; -fun anySg_Det : Det; -fun anybody_NP : NP; -fun anyhow_Adv : Adv; -fun anymore_Adv : Adv; -fun anyone_NP : NP; -fun anyplace_Adv : Adv; -fun anything_NP : NP; -fun anyway_Adv : Adv; -fun anywhere_Adv : Adv; -fun aorist_N : N; -fun aoristic_A : A; -fun aorta_N : N; -fun aortal_A : A; -fun aortitis_N : N; -fun aoudad_N : N; -fun apace_Adv : Adv; -fun apache_N : N; -fun apadana_N : N; -fun apanage_N : N; -fun apar_N : N; -fun apart_A : A; -fun apart_Adv : Adv; -fun apartheid_N : N; -fun apartment_N : N; -fun apathetic_A : A; -fun apathetically_Adv : Adv; -fun apathy_N : N; -fun apatite_N : N; -fun apatosaur_N : N; -fun ape_N : N; -fun ape_V2 : V2; -fun ape_man_N : N; -fun apercu_N : N; -fun aperea_N : N; -fun aperient_A : A; -fun aperient_N : N; -fun aperiodic_A : A; -fun aperitif_N : N; -fun aperture_N : N; -fun apery_N : N; -fun apetalous_A : A; -fun apex_N : N; -fun aphaeresis_N : N; -fun aphaeretic_A : A; -fun aphagia_N : N; -fun aphakia_N : N; -fun aphakic_A : A; -fun aphakic_N : N; -fun aphanite_N : N; -fun aphanitic_A : A; -fun aphasia_N : N; -fun aphasic_A : A; -fun aphasic_N : N; -fun aphelion_N : N; -fun apheresis_N : N; -fun aphesis_N : N; -fun aphetic_A : A; -fun aphid_N : N; -fun aphis_N : N; -fun aphonia_N : N; -fun aphonic_A : A; -fun aphorism_N : N; -fun aphorist_N : N; -fun aphoristic_A : A; -fun aphotic_A : A; -fun aphrodisia_N : N; -fun aphrodisiac_A : A; -fun aphrodisiac_N : N; -fun aphyllous_A : A; -fun apian_A : A; -fun apiarian_A : A; -fun apiarist_N : N; -fun apiary_N : N; -fun apical_A : A; -fun apiculate_A : A; -fun apicultural_A : A; -fun apiculture_N : N; -fun apiece_Adv : Adv; -fun apish_A : A; -fun apishamore_N : N; -fun apivorous_A : A; -fun aplacental_A : A; -fun aplanatic_A : A; -fun aplasia_N : N; -fun aplite_N : N; -fun aplitic_A : A; -fun aplomb_N : N; -fun apnea_N : N; -fun apneic_A : A; -fun apoapsis_N : N; -fun apocalypse_N : N; -fun apocalyptic_A : A; -fun apocarpous_A : A; -fun apochromatic_A : A; -fun apocope_N : N; -fun apocrine_A : A; -fun apocrypha_N : N; -fun apocryphal_A : A; -fun apocynaceous_A : A; -fun apodal_A : A; -fun apodeme_N : N; -fun apodictic_A : A; -fun apoenzyme_N : N; -fun apogamic_A : A; -fun apogamy_N : N; -fun apogean_A : A; -fun apogee_N : N; -fun apojove_N : N; -fun apolemia_N : N; -fun apolitical_A : A; -fun apologetic_A : A; -fun apologetically_Adv : Adv; -fun apologetics_N : N; -fun apologist_N : N; -fun apologize_V : V; -fun apology_N : N; -fun apomict_N : N; -fun apomictic_A : A; -fun apomixis_N : N; -fun apomorphine_N : N; -fun aponeurosis_N : N; -fun aponeurotic_A : A; -fun apopemptic_A : A; -fun apophasis_N : N; -fun apophatic_A : A; -fun apophatism_N : N; -fun apophthegm_N : N; -fun apophyseal_A : A; -fun apophysis_N : N; -fun apoplectic_A : A; -fun apoplectiform_A : A; -fun apoplexy_N : N; -fun apoptosis_N : N; -fun aposelene_N : N; -fun aposiopesis_N : N; -fun aposiopetic_A : A; -fun apostasy_N : N; -fun apostate_A : A; -fun apostate_N : N; -fun apostle_N : N; -fun apostleship_N : N; -fun apostolic_A : A; -fun apostrophe_N : N; -fun apostrophic_A : A; -fun apostrophize_V2 : V2; -fun apothecary_N : N; -fun apothecial_A : A; -fun apothecium_N : N; -fun apothegm_N : N; -fun apothegmatic_A : A; -fun apotheosis_N : N; -fun apotropaic_A : A; -fun appal_V2 : V2; -fun appall_V2 : V2; -fun appalling_A : A; -fun appalling_N : N; -fun appallingly_Adv : Adv; -fun appanage_N : N; -fun apparatchik_N : N; -fun apparatus_N : N; -fun apparel_N : N; -fun apparel_V2 : V2; -fun appareled_A : A; -fun apparent_A : A; -fun apparently_Adv : Adv; -fun apparentness_N : N; -fun apparition_N : N; -fun apparitional_A : A; -fun appeal_N : N; -fun appeal_V : V; -fun appeal_V2 : V2; -fun appeal_V2V : V2V; -fun appealable_A : A; -fun appealing_A : A; -fun appealingly_Adv : Adv; -fun appear_V : V; -fun appear_V2 : V2; -fun appear_VA : VA; -fun appear_VS : VS; -fun appear_VV : VV; -fun appearance_N : N; -fun appeasable_A : A; -fun appease_V2 : V2; -fun appeasement_N : N; -fun appeaser_N : N; -fun appeasing_A : A; -fun appellant_A : A; -fun appellant_N : N; -fun appellate_A : A; -fun appellation_N : N; -fun appellative_A : A; -fun append_V2 : V2; -fun appendage_N : N; -fun appendaged_A : A; -fun appendant_A : A; -fun appendectomy_N : N; -fun appendicitis_N : N; -fun appendicle_N : N; -fun appendicular_A : A; -fun appendicularia_N : N; -fun appendix_N : N; -fun apperception_N : N; -fun apperceptive_A : A; -fun appertain_V : V; -fun appetent_A : A; -fun appetite_N : N; -fun appetitive_A : A; -fun appetizer_N : N; -fun appetizing_A : A; -fun appetizingness_N : N; -fun applaud_V : V; -fun applaud_V2 : V2; -fun applaudable_A : A; -fun applause_N : N; -fun apple_N : N; -fun apple_of_peru_PN : PN; -fun apple_scented_A : A; -fun apple_shaped_A : A; -fun apple_sized_A : A; -fun applecart_N : N; -fun applejack_N : N; -fun applesauce_N : N; -fun applet_N : N; -fun applewood_N : N; -fun appliance_N : N; -fun applicability_N : N; -fun applicable_A : A; -fun applicant_N : N; -fun application_N : N; -fun applicative_A : A; -fun applicator_N : N; -fun applied_A : A; -fun applique_N : N; -fun applique_V : V; -fun applique_V2 : V2; -fun apply_V : V; -fun apply_V2 : V2; -fun apply_V2V : V2V; -fun apply_VV : VV; -fun appoint_V2 : V2; -fun appoint_V2V : V2V; -fun appoint_VS : VS; -fun appointed_A : A; -fun appointee_N : N; -fun appointive_A : A; -fun appointment_N : N; -fun apportion_V2 : V2; -fun apportioned_A : A; -fun apportionment_N : N; -fun apposite_A : A; -fun apposition_N : N; -fun appositional_A : A; -fun appositively_Adv : Adv; -fun appraisal_N : N; -fun appraise_V2 : V2; -fun appraiser_N : N; -fun appraising_A : A; -fun appreciable_A : A; -fun appreciably_Adv : Adv; -fun appreciate_V : V; -fun appreciate_V2 : V2; -fun appreciated_A : A; -fun appreciation_N : N; -fun appreciative_A : A; -fun appreciatively_Adv : Adv; -fun appreciator_N : N; -fun apprehend_V2 : V2; -fun apprehender_N : N; -fun apprehensible_A : A; -fun apprehension_N : N; -fun apprehensive_A : A; -fun apprentice_N : N; -fun apprentice_V2 : V2; -fun apprenticed_A : A; -fun apprenticeship_N : N; -fun appressed_A : A; -fun apprise_V2 : V2; -fun appro_N : N; -fun approach_N : N; -fun approach_V : V; -fun approach_V2 : V2; -fun approachability_N : N; -fun approachable_A : A; -fun approaching_A : A; -fun approbation_N : N; -fun appropriable_A : A; -fun appropriate_A : A; -fun appropriate_V2 : V2; -fun appropriately_Adv : Adv; -fun appropriateness_N : N; -fun appropriation_N : N; -fun appropriative_A : A; -fun appropriator_N : N; -fun approval_N : N; -fun approve_V : V; -fun approve_V2 : V2; -fun approved_A : A; -fun approver_N : N; -fun approving_A : A; -fun approvingly_Adv : Adv; -fun approximate_A : A; -fun approximate_V : V; -fun approximate_V2 : V2; -fun approximately_Adv : Adv; -fun approximation_N : N; -fun appurtenance_N : N; -fun apractic_A : A; -fun apraxia_N : N; -fun apres_ski_A : A; -fun apricot_N : N; -fun april_N : N; -fun apron_N : N; -fun apropos_A : A; -fun apropos_Adv : Adv; -fun apse_N : N; -fun apsidal_A : A; -fun apt_A : A; -fun apteral_A : A; -fun apterous_A : A; -fun aptitude_N : N; -fun aptitudinal_A : A; -fun aptness_N : N; -fun aquaculture_N : N; -fun aqualung_N : N; -fun aquamarine_N : N; -fun aquanaut_N : N; -fun aquaphobia_N : N; -fun aquaplane_N : N; -fun aquaplane_V : V; -fun aquarium_N : N; -fun aquatic_A : A; -fun aquatic_N : N; -fun aquatint_N : N; -fun aquavit_N : N; -fun aqueduct_N : N; -fun aqueous_A : A; -fun aquicultural_A : A; -fun aquifer_N : N; -fun aquiferous_A : A; -fun aquiline_A : A; -fun arab_N : N; -fun arabesque_N : N; -fun arabian_A : A; -fun arabian_N : N; -fun arabic_A : A; -fun arabic_N : N; -fun arability_N : N; -fun arabist_N : N; -fun arable_A : A; -fun arachnid_N : N; -fun arachnoid_A : A; -fun arachnoid_N : N; -fun arachnophobia_N : N; -fun aragonite_N : N; -fun aralia_N : N; -fun arame_N : N; -fun araneidal_A : A; -fun arariba_N : N; -fun araroba_N : N; -fun araucaria_N : N; -fun arbiter_N : N; -fun arbitrable_A : A; -fun arbitrage_N : N; -fun arbitrageur_N : N; -fun arbitral_A : A; -fun arbitrament_N : N; -fun arbitrary_A : A; -fun arbitrate_V : V; -fun arbitrate_V2 : V2; -fun arbitration_N : N; -fun arbitrative_A : A; -fun arbitrator_N : N; -fun arbor_N : N; -fun arboraceous_A : A; -fun arboreal_A : A; -fun arboretum_N : N; -fun arborical_A : A; -fun arboriculture_N : N; -fun arborolatry_N : N; -fun arborvitae_N : N; -fun arbour_N : N; -fun arbovirus_N : N; -fun arbutus_N : N; -fun arc_N : N; -fun arc_lamp_N : N; -fun arc_light_N : N; -fun arcade_N : N; -fun arcadian_A : A; -fun arcadian_N : N; -fun arcane_A : A; -fun arced_A : A; -fun arcella_N : N; -fun arch_A : A; -fun arch_N : N; -fun arch_V : V; -fun arch_V2 : V2; -fun archaebacteria_N : N; -fun archaeological_A : A; -fun archaeologist_N : N; -fun archaeology_N : N; -fun archaeopteryx_N : N; -fun archaeornis_N : N; -fun archaic_A : A; -fun archaism_N : N; -fun archaist_N : N; -fun archaistic_A : A; -fun archangel_N : N; -fun archangelic_A : A; -fun archbishop_N : N; -fun archbishopric_N : N; -fun archdeacon_N : N; -fun archdeaconry_N : N; -fun archdiocesan_A : A; -fun archdiocese_N : N; -fun archducal_A : A; -fun archduchess_N : N; -fun archduchy_N : N; -fun archduke_N : N; -fun archean_A : A; -fun arched_A : A; -fun archegonial_A : A; -fun archegonium_N : N; -fun archenteron_N : N; -fun archeologist_N : N; -fun archeology_N : N; -fun archeozoic_A : A; -fun archer_N : N; -fun archerfish_N : N; -fun archery_N : N; -fun archespore_N : N; -fun archesporial_A : A; -fun archetypal_A : A; -fun archetype_N : N; -fun archiannelid_N : N; -fun archidiaconal_A : A; -fun archidiaconate_N : N; -fun archiepiscopal_A : A; -fun archil_N : N; -fun archimandrite_N : N; -fun archine_N : N; -fun archipallium_N : N; -fun archipelagic_A : A; -fun archipelago_N : N; -fun architect_N : N; -fun architectonics_N : N; -fun architectural_A : A; -fun architecturally_Adv : Adv; -fun architecture_N : N; -fun architeuthis_N : N; -fun architrave_N : N; -fun archival_A : A; -fun archive_N : N; -fun archives_N : N; -fun archivist_N : N; -fun archly_Adv : Adv; -fun archosaur_N : N; -fun archosaurian_A : A; -fun archpriest_N : N; -fun archway_N : N; -fun arco_A : A; -fun arctic_A : A; -fun arctic_N : N; -fun arctiid_N : N; -fun arcus_N : N; -fun ardeb_N : N; -fun ardent_A : A; -fun ardently_Adv : Adv; -fun ardor_N : N; -fun ardour_N : N; -fun arduous_A : A; -fun arduously_Adv : Adv; -fun arduousness_N : N; -fun are_N : N; -fun area_N : N; -fun areal_A : A; -fun areaway_N : N; -fun areca_N : N; -fun areflexia_N : N; -fun arena_N : N; -fun arenaceous_A : A; -fun arenavirus_N : N; -fun arenicolous_A : A; -fun areola_N : N; -fun areolar_A : A; -fun arete_N : N; -fun arethusa_N : N; -fun argali_N : N; -fun argent_A : A; -fun argent_N : N; -fun argentic_A : A; -fun argentiferous_A : A; -fun argentine_N : N; -fun argentinian_A : A; -fun argentinian_N : N; -fun argentinosaur_N : N; -fun argentite_N : N; -fun argentous_A : A; -fun argil_N : N; -fun argillaceous_A : A; -fun argillite_N : N; -fun arginine_N : N; -fun argon_N : N; -fun argonaut_N : N; -fun argosy_N : N; -fun argot_N : N; -fun arguable_A : A; -fun arguably_Adv : Adv; -fun argue_V : V; -fun argue_V2 : V2; -fun argue_VS : VS; -fun argument_N : N; -fun argumentation_N : N; -fun argumentative_A : A; -fun argus_N : N; -fun argus_eyed_A : A; -fun argus_eyed_A : A; -fun argy_bargy_N : N; -fun argyle_N : N; -fun argyll_N : N; -fun argyrodite_N : N; -fun aria_N : N; -fun arianist_N : N; -fun arid_A : A; -fun aridity_N : N; -fun arietta_N : N; -fun aright_Adv : Adv; -fun aril_N : N; -fun ariled_A : A; -fun ariose_A : A; -fun arioso_N : N; -fun arise_V : V; -fun arise_VS : VS; -fun arista_N : N; -fun aristocracy_N : N; -fun aristocrat_N : N; -fun aristocratic_A : A; -fun aristocratically_Adv : Adv; -fun arithmancy_N : N; -fun arithmetic_N : N; -fun arithmetical_A : A; -fun arithmetically_Adv : Adv; -fun arithmetician_N : N; -fun arity_N : N; -fun ark_N : N; -fun arm_N : N; -fun arm_V : V; -fun arm_V2 : V2; -fun arm_hole_N : N; -fun arm_twisting_N : N; -fun armada_N : N; -fun armadillo_N : N; -fun armament_N : N; -fun armamentarium_N : N; -fun armature_N : N; -fun armband_N : N; -fun armchair_N : N; -fun armed_A : A; -fun armet_N : N; -fun armful_N : N; -fun armhole_N : N; -fun armiger_N : N; -fun armilla_N : N; -fun armillary_A : A; -fun arming_N : N; -fun armistice_N : N; -fun armless_A : A; -fun armlet_N : N; -fun armlike_A : A; -fun armoire_N : N; -fun armor_N : N; -fun armor_clad_A : A; -fun armored_A : A; -fun armorer_N : N; -fun armorial_A : A; -fun armory_N : N; -fun armour_N : N; -fun armour_plate_N : N; -fun armoured_A : A; -fun armourer_N : N; -fun armoury_N : N; -fun armpit_N : N; -fun armrest_N : N; -fun arms_race_N : N; -fun arms_runner_N : N; -fun army_N : N; -fun armyworm_N : N; -fun arnica_N : N; -fun aroid_A : A; -fun aroma_N : N; -fun aromatherapy_N : N; -fun aromatic_A : A; -fun arose_V2 : V2; -fun arose_VS : VS; -fun around_AdN : AdN; -fun around_Adv : Adv; -fun around_Prep : Prep; -fun around_the_clock_A : A; -fun around_the_clock_Adv : Adv; -fun arousal_N : N; -fun arouse_V2 : V2; -fun arouse_V2V : V2V; -fun aroused_A : A; -fun arpeggio_N : N; -fun arpent_N : N; -fun arquebus_N : N; -fun arrack_N : N; -fun arraign_V2 : V2; -fun arraignment_N : N; -fun arrange_V : V; -fun arrange_V2 : V2; -fun arranged_A : A; -fun arrangement_N : N; -fun arranger_N : N; -fun arrant_A : A; -fun arras_N : N; -fun array_N : N; -fun array_V2 : V2; -fun arrayed_A : A; -fun arrears_N : N; -fun arrest_N : N; -fun arrest_V2 : V2; -fun arrester_N : N; -fun arresting_A : A; -fun arrhythmic_A : A; -fun arriere_pensee_N : N; -fun arrival_N : N; -fun arrive_V : V; -fun arrive_V2 : V2; -fun arroba_N : N; -fun arrogance_N : N; -fun arrogant_A : A; -fun arrogantly_Adv : Adv; -fun arrogate_V2 : V2; -fun arrogator_N : N; -fun arrow_N : N; -fun arrowhead_N : N; -fun arrowroot_N : N; -fun arrowsmith_N : N; -fun arrowworm_N : N; -fun arroyo_N : N; -fun arse_N : N; -fun arsehole_N : N; -fun arsenal_N : N; -fun arsenate_N : N; -fun arsenic_N : N; -fun arsenical_A : A; -fun arsenical_N : N; -fun arsenide_N : N; -fun arsenious_A : A; -fun arsenopyrite_N : N; -fun arsine_N : N; -fun arson_N : N; -fun arsonist_N : N; -fun art_N : N; -fun artefact_N : N; -fun artemisia_N : N; -fun arterial_A : A; -fun arteriectasis_N : N; -fun arteriogram_N : N; -fun arteriography_N : N; -fun arteriolar_A : A; -fun arteriole_N : N; -fun arteriolosclerosis_N : N; -fun arteriosclerosis_N : N; -fun arteriosclerotic_A : A; -fun arteriovenous_A : A; -fun arteritis_N : N; -fun artery_N : N; -fun artesian_A : A; -fun artful_A : A; -fun artfully_Adv : Adv; -fun artfulness_N : N; -fun arthralgia_N : N; -fun arthralgic_A : A; -fun arthritic_A : A; -fun arthritic_N : N; -fun arthritis_N : N; -fun arthrocentesis_N : N; -fun arthrodesis_N : N; -fun arthrogram_N : N; -fun arthrography_N : N; -fun arthromere_N : N; -fun arthromeric_A : A; -fun arthropathy_N : N; -fun arthroplasty_N : N; -fun arthropod_N : N; -fun arthropodal_A : A; -fun arthroscope_N : N; -fun arthroscopy_N : N; -fun arthrospore_N : N; -fun arthrosporic_A : A; -fun artichoke_N : N; -fun article_N : N; -fun article_V2 : V2; -fun articular_A : A; -fun articulate_A : A; -fun articulate_V : V; -fun articulate_V2 : V2; -fun articulated_A : A; -fun articulately_Adv : Adv; -fun articulation_N : N; -fun articulator_N : N; -fun articulatory_A : A; -fun artifact_N : N; -fun artifactual_A : A; -fun artifice_N : N; -fun artificer_N : N; -fun artificial_A : A; -fun artificiality_N : N; -fun artificially_Adv : Adv; -fun artillery_N : N; -fun artilleryman_N : N; -fun artiodactyl_A : A; -fun artisan_N : N; -fun artist_N : N; -fun artiste_N : N; -fun artistic_A : A; -fun artistically_Adv : Adv; -fun artistry_N : N; -fun artless_A : A; -fun artlessly_Adv : Adv; -fun artlessness_N : N; -fun artsy_craftsy_A : A; -fun artwork_N : N; -fun arty_A : A; -fun arty_crafty_A : A; -fun arum_N : N; -fun arundinaceous_A : A; -fun aryan_A : A; -fun aryan_N : N; -fun arytenoid_N : N; -fun as_Prep : Prep; -fun as_far_as_possible_Adv : Adv; -fun as_follows_Adv : Adv; -fun as_it_is_Adv : Adv; -fun as_it_were_Adv : Adv; -fun as_needed_Adv : Adv; -fun as_the_crow_flies_Adv : Adv; -fun as_usual_Adv : Adv; -fun as_we_say_Adv : Adv; -fun asafetida_N : N; -fun asana_N : N; -fun asarabacca_N : N; -fun asbestos_N : N; -fun asbestosis_N : N; -fun ascariasis_N : N; -fun ascend_V : V; -fun ascend_V2 : V2; -fun ascendable_A : A; -fun ascendancy_N : N; -fun ascendant_A : A; -fun ascendant_N : N; -fun ascendency_N : N; -fun ascendent_N : N; -fun ascender_N : N; -fun ascending_A : A; -fun ascension_N : N; -fun ascensional_A : A; -fun ascent_N : N; -fun ascertain_V2 : V2; -fun ascertain_VS : VS; -fun ascertainable_A : A; -fun ascertained_A : A; -fun ascetic_A : A; -fun ascetic_N : N; -fun ascetically_Adv : Adv; -fun asceticism_N : N; -fun ascidian_N : N; -fun ascites_N : N; -fun ascitic_A : A; -fun asclepiad_N : N; -fun asclepiadaceous_A : A; -fun ascocarp_N : N; -fun ascocarpous_A : A; -fun ascolichen_N : N; -fun ascoma_N : N; -fun ascomycete_N : N; -fun ascomycetous_A : A; -fun ascorbic_A : A; -fun ascospore_N : N; -fun ascosporic_A : A; -fun ascot_N : N; -fun ascribable_A : A; -fun ascribe_V2 : V2; -fun ascription_N : N; -fun ascus_N : N; -fun asdic_N : N; -fun asepsis_N : N; -fun aseptic_A : A; -fun asexual_A : A; -fun asexuality_N : N; -fun asexually_Adv : Adv; -fun ash_N : N; -fun ash_bin_N : N; -fun ash_blonde_A : A; -fun ash_can_N : N; -fun ash_grey_A : A; -fun ash_key_N : N; -fun ash_key_N : N; -fun ash_pan_N : N; -fun ash_pan_N : N; -fun ashamed_A : A; -fun ashamedly_Adv : Adv; -fun ashcake_N : N; -fun ashcan_N : N; -fun ashen_A : A; -fun ashlar_N : N; -fun ashore_Adv : Adv; -fun ashram_N : N; -fun ashtray_N : N; -fun ashy_A : A; -fun asian_A : A; -fun asian_N : N; -fun asiatic_A : A; -fun asiatic_N : N; -fun aside_Adv : Adv; -fun aside_N : N; -fun asinine_A : A; -fun asininity_N : N; -fun ask_V : V; -fun ask_V2 : V2; -fun ask_V2Q : V2Q; -fun ask_V2V : V2V; -fun ask_VS : VS; -fun ask_VV : VV; -fun askance_A : A; -fun askance_Adv : Adv; -fun askew_A : A; -fun askew_Adv : Adv; -fun asking_N : N; -fun aslant_A : A; -fun aslant_Adv : Adv; -fun asleep_A : A; -fun asleep_Adv : Adv; -fun asocial_A : A; -fun asp_N : N; -fun asparaginase_N : N; -fun asparagine_N : N; -fun asparagus_N : N; -fun aspartame_N : N; -fun aspect_N : N; -fun aspectual_A : A; -fun aspen_N : N; -fun asper_N : N; -fun aspergill_N : N; -fun aspergillosis_N : N; -fun asperity_N : N; -fun asperse_V2 : V2; -fun aspersion_N : N; -fun aspersorium_N : N; -fun asphalt_N : N; -fun asphalt_V2 : V2; -fun asphaltic_A : A; -fun aspheric_A : A; -fun asphodel_N : N; -fun asphyxia_N : N; -fun asphyxiate_V2 : V2; -fun asphyxiated_A : A; -fun asphyxiating_A : A; -fun asphyxiation_N : N; -fun aspic_N : N; -fun aspidistra_N : N; -fun aspirant_A : A; -fun aspirant_N : N; -fun aspirate_N : N; -fun aspirate_V2 : V2; -fun aspiration_N : N; -fun aspirator_N : N; -fun aspire_V : V; -fun aspirin_N : N; -fun ass_N : N; -fun assagai_N : N; -fun assail_V2 : V2; -fun assailability_N : N; -fun assailable_A : A; -fun assailant_N : N; -fun assassin_N : N; -fun assassinate_V2 : V2; -fun assassinated_A : A; -fun assassination_N : N; -fun assault_N : N; -fun assault_V2 : V2; -fun assaultive_A : A; -fun assay_N : N; -fun assay_V2 : V2; -fun assayer_N : N; -fun assegai_N : N; -fun assemblage_N : N; -fun assemble_V : V; -fun assemble_V2 : V2; -fun assembler_N : N; -fun assembly_N : N; -fun assemblyman_N : N; -fun assemblywoman_N : N; -fun assent_N : N; -fun assent_V : V; -fun assenter_N : N; -fun assentient_A : A; -fun assert_V : V; -fun assert_V2 : V2; -fun assert_VS : VS; -fun asserted_A : A; -fun asserter_N : N; -fun assertion_N : N; -fun assertive_A : A; -fun assertively_Adv : Adv; -fun assertiveness_N : N; -fun assess_V2 : V2; -fun assessable_A : A; -fun assessee_N : N; -fun assessment_N : N; -fun assessor_N : N; -fun asset_N : N; -fun assets_N : N; -fun asseverate_V2 : V2; -fun asseveration_N : N; -fun asshole_N : N; -fun assibilation_N : N; -fun assiduity_N : N; -fun assiduous_A : A; -fun assiduously_Adv : Adv; -fun assign_V2 : V2; -fun assign_V2V : V2V; -fun assignable_A : A; -fun assignation_N : N; -fun assigned_A : A; -fun assignee_N : N; -fun assignment_N : N; -fun assignor_N : N; -fun assimilable_A : A; -fun assimilate_V : V; -fun assimilate_V2 : V2; -fun assimilating_A : A; -fun assimilation_N : N; -fun assimilative_A : A; -fun assist_N : N; -fun assist_V : V; -fun assist_V2 : V2; -fun assistance_N : N; -fun assistant_N : N; -fun assisted_A : A; -fun assistive_A : A; -fun assize_N : N; -fun assizes_N : N; -fun assoc_N : N; -fun associability_N : N; -fun associable_A : A; -fun associate_A : A; -fun associate_N : N; -fun associate_V : V; -fun associate_V2 : V2; -fun associateship_N : N; -fun association_N : N; -fun associational_A : A; -fun associationism_N : N; -fun associative_A : A; -fun assonance_N : N; -fun assonant_A : A; -fun assorted_A : A; -fun assortment_N : N; -fun asst_N : N; -fun assuage_V2 : V2; -fun assuasive_A : A; -fun assume_V : V; -fun assume_V2 : V2; -fun assume_VS : VS; -fun assumed_A : A; -fun assumption_N : N; -fun assumptive_A : A; -fun assurance_N : N; -fun assure_V2 : V2; -fun assure_VS : VS; -fun assured_A : A; -fun assuredly_Adv : Adv; -fun assuredness_N : N; -fun assurgent_A : A; -fun assuring_A : A; -fun astasia_N : N; -fun astatic_A : A; -fun astatine_N : N; -fun aster_N : N; -fun astereognosis_N : N; -fun asteriated_A : A; -fun asterion_N : N; -fun asterisk_N : N; -fun asterisked_A : A; -fun asterism_N : N; -fun asterismal_A : A; -fun astern_Adv : Adv; -fun asternal_A : A; -fun asteroid_A : A; -fun asteroid_N : N; -fun asteroidal_A : A; -fun asthenia_N : N; -fun asthenic_A : A; -fun asthenosphere_N : N; -fun asthma_N : N; -fun asthmatic_A : A; -fun asthmatic_N : N; -fun astigmatic_A : A; -fun astigmatism_N : N; -fun astilbe_N : N; -fun astir_A : A; -fun astir_Adv : Adv; -fun astomatal_A : A; -fun astomatous_A : A; -fun astonish_V2 : V2; -fun astonishing_A : A; -fun astonishment_N : N; -fun astound_V2 : V2; -fun astounding_A : A; -fun astragalar_A : A; -fun astrakhan_N : N; -fun astral_A : A; -fun astrantia_N : N; -fun astraphobia_N : N; -fun astray_A : A; -fun astray_Adv : Adv; -fun astride_A : A; -fun astride_Adv : Adv; -fun astride_Prep : Prep; -fun astringency_N : N; -fun astringent_A : A; -fun astringent_N : N; -fun astrocyte_N : N; -fun astrocytic_A : A; -fun astrodome_N : N; -fun astrodynamics_N : N; -fun astrogator_N : N; -fun astroglia_N : N; -fun astrolabe_N : N; -fun astrolatry_N : N; -fun astrologer_N : N; -fun astrological_A : A; -fun astrology_N : N; -fun astrometry_N : N; -fun astronaut_N : N; -fun astronautic_A : A; -fun astronautics_N : N; -fun astronomer_N : N; -fun astronomic_A : A; -fun astronomical_A : A; -fun astronomically_Adv : Adv; -fun astronomy_N : N; -fun astrophysical_A : A; -fun astrophysicist_N : N; -fun astrophysics_N : N; -fun astute_A : A; -fun astutely_Adv : Adv; -fun astuteness_N : N; -fun astylar_A : A; -fun asunder_A : A; -fun asunder_Adv : Adv; -fun asylum_N : N; -fun asymmetric_A : A; -fun asymmetrical_A : A; -fun asymmetrically_Adv : Adv; -fun asymmetry_N : N; -fun asymptomatic_A : A; -fun asymptote_N : N; -fun asymptotic_A : A; -fun asymptotically_Adv : Adv; -fun asynchronism_N : N; -fun asynchronous_A : A; -fun asynclitism_N : N; -fun asyndetic_A : A; -fun asyndeton_N : N; -fun asynergic_A : A; -fun asynergy_N : N; -fun asystole_N : N; -fun at_N : N; -fun at_Prep : Prep; -fun at_a_loss_A : A; -fun at_a_loss_Adv : Adv; -fun at_a_time_Adv : Adv; -fun at_all_Adv : Adv; -fun at_all_costs_Adv : Adv; -fun at_arm's_length_Adv : Adv; -fun at_bay_A : A; -fun at_best_Adv : Adv; -fun at_fault_A : A; -fun at_first_blush_Adv : Adv; -fun at_first_sight_Adv : Adv; -fun at_hand_A : A; -fun at_heart_Adv : Adv; -fun at_home_Adv : Adv; -fun at_home_N : N; -fun at_large_A : A; -fun at_large_Adv : Adv; -fun at_least_Adv : Adv; -fun at_leisure_Adv : Adv; -fun at_loggerheads_A : A; -fun at_most_Adv : Adv; -fun at_odds_A : A; -fun at_rest_A : A; -fun at_stake_Adv : Adv; -fun at_the_ready_A : A; -fun at_variance_A : A; -fun at_will_Adv : Adv; -fun at_work_A : A; -fun at_worst_Adv : Adv; -fun atabrine_N : N; -fun ataractic_A : A; -fun ataraxia_N : N; -fun atavism_N : N; -fun atavist_N : N; -fun atavistic_A : A; -fun ataxia_N : N; -fun ataxic_A : A; -fun atelectasis_N : N; -fun ateleiosis_N : N; -fun ateleiotic_A : A; -fun atelier_N : N; -fun atenolol_N : N; -fun athanor_N : N; -fun atheism_N : N; -fun atheist_A : A; -fun atheist_N : N; -fun atheistic_A : A; -fun athenaeum_N : N; -fun athenian_A : A; -fun athenian_N : N; -fun atherogenesis_N : N; -fun atheroma_N : N; -fun atheromatous_A : A; -fun atherosclerosis_N : N; -fun atherosclerotic_A : A; -fun athetosis_N : N; -fun athirst_A : A; -fun athlete_N : N; -fun athletic_A : A; -fun athleticism_N : N; -fun athletics_N : N; -fun athwart_Adv : Adv; -fun atilt_A : A; -fun atlas_N : N; -fun atmometer_N : N; -fun atmosphere_N : N; -fun atmospheric_A : A; -fun atmospherics_N : N; -fun atole_N : N; -fun atoll_N : N; -fun atom_N : N; -fun atomic_A : A; -fun atomism_N : N; -fun atomistic_A : A; -fun atomization_N : N; -fun atomize_V2 : V2; -fun atomizer_N : N; -fun atonal_A : A; -fun atonalistic_A : A; -fun atonality_N : N; -fun atonally_Adv : Adv; -fun atone_V : V; -fun atonement_N : N; -fun atonic_A : A; -fun atonicity_N : N; -fun atop_Adv : Adv; -fun atop_Prep : Prep; -fun atopognosia_N : N; -fun atorvastatin_N : N; -fun atrabilious_A : A; -fun atrazine_N : N; -fun atresia_N : N; -fun atrial_A : A; -fun atrioventricular_A : A; -fun atrium_N : N; -fun atrocious_A : A; -fun atrocity_N : N; -fun atrophic_A : A; -fun atrophied_A : A; -fun atrophy_N : N; -fun atrophy_V : V; -fun atrophy_V2 : V2; -fun atropine_N : N; -fun attach_V : V; -fun attach_V2 : V2; -fun attachable_A : A; -fun attache_N : N; -fun attached_A : A; -fun attachment_N : N; -fun attack_N : N; -fun attack_V2 : V2; -fun attacker_N : N; -fun attain_V : V; -fun attain_V2 : V2; -fun attainable_A : A; -fun attainder_N : N; -fun attained_A : A; -fun attainment_N : N; -fun attar_N : N; -fun attempt_N : N; -fun attempt_V2 : V2; -fun attempt_VV : VV; -fun attempted_A : A; -fun attend_V : V; -fun attend_V2 : V2; -fun attendance_N : N; -fun attendant_A : A; -fun attendant_N : N; -fun attended_A : A; -fun attention_N : N; -fun attention_getting_A : A; -fun attentional_A : A; -fun attentive_A : A; -fun attentively_Adv : Adv; -fun attentiveness_N : N; -fun attenuate_A : A; -fun attenuate_V2 : V2; -fun attenuated_A : A; -fun attenuation_N : N; -fun attenuator_N : N; -fun attest_V : V; -fun attest_V2 : V2; -fun attest_VS : VS; -fun attestation_N : N; -fun attested_A : A; -fun attester_N : N; -fun attic_A : A; -fun attic_N : N; -fun attire_N : N; -fun attire_V2 : V2; -fun attitude_N : N; -fun attitudinal_A : A; -fun attitudinize_V : V; -fun attorney_N : N; -fun attorneyship_N : N; -fun attosecond_N : N; -fun attract_V2 : V2; -fun attractable_A : A; -fun attraction_N : N; -fun attractive_A : A; -fun attractiveness_N : N; -fun attractor_N : N; -fun attributable_A : A; -fun attribute_N : N; -fun attribute_V2 : V2; -fun attribution_N : N; -fun attributive_A : A; -fun attributive_genitive_A : A; -fun attributively_Adv : Adv; -fun attrited_A : A; -fun attrition_N : N; -fun attritional_A : A; -fun attune_V2 : V2; -fun atypical_A : A; -fun atypicality_N : N; -fun atypically_Adv : Adv; -fun au_fait_A : A; -fun au_fond_Adv : Adv; -fun au_gratin_A : A; -fun au_jus_A : A; -fun au_pair_N : N; -fun aubergine_N : N; -fun aubrietia_N : N; -fun auburn_A : A; -fun auction_N : N; -fun auction_V2 : V2; -fun auctioneer_N : N; -fun audacious_A : A; -fun audaciously_Adv : Adv; -fun audacity_N : N; -fun audibility_N : N; -fun audible_A : A; -fun audible_N : N; -fun audibly_Adv : Adv; -fun audience_N : N; -fun audile_N : N; -fun audio_N : N; -fun audio_cd_PN : PN; -fun audio_lingual_A : A; -fun audio_lingual_A : A; -fun audiocassette_N : N; -fun audiogram_N : N; -fun audiology_N : N; -fun audiometer_N : N; -fun audiometric_A : A; -fun audiometry_N : N; -fun audiotape_N : N; -fun audiovisual_A : A; -fun audiovisual_N : N; -fun audit_N : N; -fun audit_V2 : V2; -fun audition_N : N; -fun audition_V : V; -fun audition_V2 : V2; -fun auditor_N : N; -fun auditorium_N : N; -fun auditory_A : A; -fun augend_N : N; -fun auger_N : N; -fun aught_N : N; -fun augite_N : N; -fun augitic_A : A; -fun augment_V : V; -fun augment_V2 : V2; -fun augmentation_N : N; -fun augmentative_A : A; -fun augmented_A : A; -fun augur_N : N; -fun augur_V : V; -fun augur_V2 : V2; -fun augury_N : N; -fun august_A : A; -fun august_N : N; -fun augustan_A : A; -fun auk_N : N; -fun auklet_N : N; -fun auld_A : A; -fun auld_lang_syne_N : N; -fun aunt_N : N; -fun auntie_N : N; -fun aunty_N : N; -fun aura_N : N; -fun aural_A : A; -fun aurally_Adv : Adv; -fun aureate_A : A; -fun aureole_N : N; -fun auricle_N : N; -fun auricula_N : N; -fun auricular_A : A; -fun auriculare_N : N; -fun auriculate_A : A; -fun auriferous_A : A; -fun auriform_A : A; -fun aurochs_N : N; -fun aurora_N : N; -fun auroral_A : A; -fun aurous_A : A; -fun auscultation_N : N; -fun auscultatory_A : A; -fun auspice_N : N; -fun auspices_N : N; -fun auspicious_A : A; -fun auspiciously_Adv : Adv; -fun auspiciousness_N : N; -fun aussie_N : N; -fun austenite_N : N; -fun austenitic_A : A; -fun austere_A : A; -fun austerely_Adv : Adv; -fun austereness_N : N; -fun austerity_N : N; -fun austral_A : A; -fun austral_N : N; -fun australian_A : A; -fun australian_N : N; -fun australopithecine_A : A; -fun australopithecine_N : N; -fun austrian_A : A; -fun austrian_N : N; -fun autacoid_N : N; -fun autacoidal_A : A; -fun autarchic_A : A; -fun autarchy_N : N; -fun autarkic_A : A; -fun autarky_N : N; -fun auteur_N : N; -fun authentic_A : A; -fun authentically_Adv : Adv; -fun authenticate_V2 : V2; -fun authentication_N : N; -fun authenticity_N : N; -fun author_N : N; -fun authore_V2 : V2; -fun authoress_N : N; -fun authorial_A : A; -fun authoritarian_A : A; -fun authoritarian_N : N; -fun authoritarianism_N : N; -fun authoritative_A : A; -fun authoritatively_Adv : Adv; -fun authority_N : N; -fun authorization_N : N; -fun authorize_V2 : V2; -fun authorize_V2V : V2V; -fun authorized_A : A; -fun authorizer_N : N; -fun authorship_N : N; -fun autism_N : N; -fun autistic_A : A; -fun auto_N : N; -fun auto_changer_N : N; -fun auto_da_fe_N : N; -fun auto_da_fe_N : N; -fun autoantibody_N : N; -fun autobahn_N : N; -fun autobiographer_N : N; -fun autobiographic_A : A; -fun autobiographical_A : A; -fun autobiography_N : N; -fun autocatalysis_N : N; -fun autocatalytic_A : A; -fun autochthon_N : N; -fun autochthonal_A : A; -fun autochthonous_A : A; -fun autoclave_N : N; -fun autocracy_N : N; -fun autocrat_N : N; -fun autocratic_A : A; -fun autocratically_Adv : Adv; -fun autodidact_N : N; -fun autodidactic_A : A; -fun autoecious_A : A; -fun autoerotic_A : A; -fun autoeroticism_N : N; -fun autofluorescence_N : N; -fun autofluorescent_A : A; -fun autofocus_N : N; -fun autogamous_A : A; -fun autogamy_N : N; -fun autogenetic_A : A; -fun autogenous_A : A; -fun autogiro_N : N; -fun autograft_N : N; -fun autograph_N : N; -fun autograph_V2 : V2; -fun autographed_A : A; -fun autographic_A : A; -fun autogyro_N : N; -fun autoicous_A : A; -fun autoimmune_A : A; -fun autoimmunity_N : N; -fun autoinjector_N : N; -fun autoloader_N : N; -fun autoloading_A : A; -fun autologous_A : A; -fun autolysis_N : N; -fun autolytic_A : A; -fun automat_N : N; -fun automate_V2 : V2; -fun automated_A : A; -fun automatic_A : A; -fun automatic_N : N; -fun automatically_Adv : Adv; -fun automation_N : N; -fun automatism_N : N; -fun automaton_N : N; -fun automobile_N : N; -fun automotive_A : A; -fun automysophobia_N : N; -fun autonomic_A : A; -fun autonomous_A : A; -fun autonomy_N : N; -fun autophyte_N : N; -fun autopilot_N : N; -fun autoplastic_A : A; -fun autoplasty_N : N; -fun autopsy_N : N; -fun autoradiograph_N : N; -fun autoradiographic_A : A; -fun autoradiography_N : N; -fun autoregulation_N : N; -fun autosemantic_A : A; -fun autosexing_N : N; -fun autosomal_A : A; -fun autosome_N : N; -fun autostrada_N : N; -fun autosuggestion_N : N; -fun autotelic_A : A; -fun autotelism_N : N; -fun autotomic_A : A; -fun autotomy_N : N; -fun autotrophic_A : A; -fun autotype_N : N; -fun autotypic_A : A; -fun autumn_N : N; -fun autumn_flowering_A : A; -fun autumnal_A : A; -fun auxesis_N : N; -fun auxetic_A : A; -fun auxiliary_A : A; -fun auxiliary_N : N; -fun auxin_N : N; -fun auxinic_A : A; -fun avadavat_N : N; -fun avail_N : N; -fun avail_V : V; -fun avail_V2 : V2; -fun availability_N : N; -fun available_A : A; -fun avalanche_N : N; -fun avant_garde_A : A; -fun avant_garde_N : N; -fun avant_garde_N : N; -fun avaram_N : N; -fun avarice_N : N; -fun avaricious_A : A; -fun avariciously_Adv : Adv; -fun avascular_A : A; -fun avatar_N : N; -fun avellan_A : A; -fun avenge_V2 : V2; -fun avenged_A : A; -fun avenger_N : N; -fun avens_N : N; -fun avenue_N : N; -fun aver_V2 : V2; -fun average_A : A; -fun average_N : N; -fun average_V : V; -fun average_V2 : V2; -fun averageness_N : N; -fun averr_VS : VS; -fun averse_A : A; -fun aversion_N : N; -fun aversive_A : A; -fun avert_V2 : V2; -fun averting_N : N; -fun avian_A : A; -fun aviary_N : N; -fun aviation_N : N; -fun aviator_N : N; -fun aviatrix_N : N; -fun avid_A : A; -fun avidity_N : N; -fun avidly_Adv : Adv; -fun avifauna_N : N; -fun avifaunal_A : A; -fun avionic_A : A; -fun avionics_N : N; -fun avirulent_A : A; -fun avitaminosis_N : N; -fun avitaminotic_A : A; -fun avo_N : N; -fun avocado_A : A; -fun avocado_N : N; -fun avocation_N : N; -fun avocational_A : A; -fun avocet_N : N; -fun avoid_V2 : V2; -fun avoid_VV : VV; -fun avoidable_A : A; -fun avoidance_N : N; -fun avoirdupois_N : N; -fun avouch_V : V; -fun avouch_V2 : V2; -fun avow_V2 : V2; -fun avowal_N : N; -fun avowed_A : A; -fun avowedly_Adv : Adv; -fun avower_N : N; -fun avulsion_N : N; -fun avuncular_A : A; -fun await_V2 : V2; -fun awake_A : A; -fun awake_V : V; -fun awaken_V : V; -fun awaken_V2 : V2; -fun awakened_A : A; -fun awakening_N : N; -fun award_N : N; -fun award_V2 : V2; -fun award_winning_A : A; -fun aware_A : A; -fun awareness_N : N; -fun awash_A : A; -fun away_A : A; -fun away_Adv : Adv; -fun awayness_N : N; -fun awe_N : N; -fun awe_V2 : V2; -fun awe_inspiring_A : A; -fun awe_stricken_A : A; -fun awe_struck_A : A; -fun aweary_A : A; -fun awed_A : A; -fun aweigh_A : A; -fun aweigh_Adv : Adv; -fun aweless_A : A; -fun awesome_A : A; -fun awful_A : A; -fun awfulness_N : N; -fun awheel_A : A; -fun awhile_Adv : Adv; -fun awkward_A : A; -fun awkwardly_Adv : Adv; -fun awkwardness_N : N; -fun awl_N : N; -fun awl_shaped_A : A; -fun awlwort_N : N; -fun awn_N : N; -fun awned_A : A; -fun awning_N : N; -fun awninged_A : A; -fun awnless_A : A; -fun awry_A : A; -fun awry_Adv : Adv; -fun ax_N : N; -fun ax_V2 : V2; -fun axe_N : N; -fun axe_V2 : V2; -fun axenic_A : A; -fun axial_A : A; -fun axially_Adv : Adv; -fun axil_N : N; -fun axile_A : A; -fun axillary_A : A; -fun axiological_A : A; -fun axiology_N : N; -fun axiom_N : N; -fun axiomatic_A : A; -fun axiomatically_Adv : Adv; -fun axis_N : N; -fun axle_N : N; -fun axletree_N : N; -fun axolemma_N : N; -fun axolotl_N : N; -fun axon_N : N; -fun axonal_A : A; -fun axseed_N : N; -fun ay_Adv : Adv; -fun ayah_N : N; -fun ayapana_N : N; -fun ayatollah_N : N; -fun aye_Adv : Adv; -fun aye_aye_N : N; -fun ayin_N : N; -fun azadirachtin_N : N; -fun azalea_N : N; -fun azathioprine_N : N; -fun azide_N : N; -fun azido_A : A; -fun azimuth_N : N; -fun azimuthal_A : A; -fun azithromycin_N : N; -fun azo_A : A; -fun azoic_A : A; -fun azonal_A : A; -fun azonic_A : A; -fun azote_N : N; -fun azotemic_A : A; -fun azotic_A : A; -fun azoturia_N : N; -fun aztreonam_N : N; -fun azure_A : A; -fun azure_N : N; -fun azurite_N : N; -fun azygous_A : A; -fun azymia_N : N; -fun b_ed_N : N; -fun b_meson_N : N; -fun ba_N : N; -fun baa_N : N; -fun baa_V : V; -fun baa_lamb_N : N; -fun baa_lamb_N : N; -fun baas_N : N; -fun baba_N : N; -fun babassu_N : N; -fun babbitting_N : N; -fun babble_N : N; -fun babble_V : V; -fun babble_V2 : V2; -fun babbler_N : N; -fun babe_N : N; -fun babel_N : N; -fun babelike_A : A; -fun babirusa_N : N; -fun babka_N : N; -fun baboo_N : N; -fun baboon_N : N; -fun baboonish_A : A; -fun babu_N : N; -fun babushka_N : N; -fun baby_N : N; -fun baby_V2 : V2; -fun baby_faced_A : A; -fun baby_faced_A : A; -fun baby_farmer_N : N; -fun baby_minder_N : N; -fun baby_talk_N : N; -fun baby_wise_Adv : Adv; -fun babyhood_N : N; -fun babyish_A : A; -fun babyminder_N : N; -fun babysit_V : V; -fun babysitter_N : N; -fun babysitting_N : N; -fun baccalaureate_N : N; -fun baccarat_N : N; -fun baccate_A : A; -fun bacchanal_A : A; -fun bacchanal_N : N; -fun bacchanalian_A : A; -fun bacchant_N : N; -fun bacchante_N : N; -fun bacchantic_A : A; -fun baccivorous_A : A; -fun baccy_N : N; -fun bachelor_N : N; -fun bachelorhood_N : N; -fun bacillar_A : A; -fun bacillus_N : N; -fun bacitracin_N : N; -fun back_A : A; -fun back_Adv : Adv; -fun back_N : N; -fun back_V : V; -fun back_V2 : V2; -fun back_and_forth_Adv : Adv; -fun back_breaking_A : A; -fun back_channel_A : A; -fun back_down_N : N; -fun back_formation_N : N; -fun back_formation_N : N; -fun back_geared_A : A; -fun back_to_back_A : A; -fun back_up_N : N; -fun backache_N : N; -fun backband_N : N; -fun backbeat_N : N; -fun backbench_N : N; -fun backbencher_N : N; -fun backbend_N : N; -fun backbite_V : V; -fun backbite_V2 : V2; -fun backbiter_N : N; -fun backblast_N : N; -fun backboard_N : N; -fun backbone_N : N; -fun backchat_N : N; -fun backcloth_N : N; -fun backdate_V2 : V2; -fun backdoor_N : N; -fun backdrop_N : N; -fun backed_A : A; -fun backer_N : N; -fun backfield_N : N; -fun backfire_N : N; -fun backfire_V : V; -fun backflow_N : N; -fun backgammon_N : N; -fun background_N : N; -fun backgrounder_N : N; -fun backhand_A : A; -fun backhand_N : N; -fun backhanded_A : A; -fun backhander_N : N; -fun backhoe_N : N; -fun backing_N : N; -fun backlash_N : N; -fun backless_A : A; -fun backlighting_N : N; -fun backlog_N : N; -fun backmost_A : A; -fun backpack_N : N; -fun backpack_V : V; -fun backpack_V2 : V2; -fun backpacker_N : N; -fun backpedal_V : V; -fun backpedaling_V : V; -fun backplate_N : N; -fun backroom_N : N; -fun backsaw_N : N; -fun backscratcher_N : N; -fun backseat_N : N; -fun backsheesh_N : N; -fun backside_N : N; -fun backslapper_N : N; -fun backslide_V : V; -fun backsliding_N : N; -fun backspace_V : V; -fun backspin_N : N; -fun backstage_Adv : Adv; -fun backstair_A : A; -fun backstairs_N : N; -fun backstay_N : N; -fun backstitch_N : N; -fun backstop_N : N; -fun backstroke_N : N; -fun backstroker_N : N; -fun backswept_A : A; -fun backswimmer_N : N; -fun backsword_N : N; -fun backtalk_N : N; -fun backup_N : N; -fun backward_A : A; -fun backward_Adv : Adv; -fun backwards_A : A; -fun backwards_Adv : Adv; -fun backwash_N : N; -fun backwater_N : N; -fun backwoods_N : N; -fun backwoodsman_N : N; -fun backyard_N : N; -fun bacon_N : N; -fun bacteremia_N : N; -fun bacteremic_A : A; -fun bacteria_N : N; -fun bacterial_A : A; -fun bacterially_Adv : Adv; -fun bactericidal_A : A; -fun bactericide_N : N; -fun bacteriochlorophyll_N : N; -fun bacteriological_A : A; -fun bacteriologist_N : N; -fun bacteriology_N : N; -fun bacteriolysis_N : N; -fun bacteriolytic_A : A; -fun bacteriophage_N : N; -fun bacteriophagic_A : A; -fun bacteriostasis_N : N; -fun bacteriostat_N : N; -fun bacteriostatic_A : A; -fun bacterium_N : N; -fun bacteroid_N : N; -fun bacteroidal_A : A; -fun bad_A : A; -fun bad_N : N; -fun baddeleyite_N : N; -fun badge_N : N; -fun badger_N : N; -fun badger_V2 : V2; -fun badger_VS : VS; -fun badgering_N : N; -fun badinage_N : N; -fun badlands_N : N; -fun badly_Adv : Adv; -fun badly_behaved_A : A; -fun badminton_N : N; -fun badness_N : N; -fun baedeker_N : N; -fun baffle_N : N; -fun baffle_V2 : V2; -fun baffled_A : A; -fun baffled_N : N; -fun baffling_A : A; -fun bag_N : N; -fun bag_V : V; -fun bag_V2 : V2; -fun bag_shaped_A : A; -fun bagasse_N : N; -fun bagassosis_N : N; -fun bagatelle_N : N; -fun bagel_N : N; -fun baggage_N : N; -fun baggageman_N : N; -fun bagger_N : N; -fun baggy_A : A; -fun bagman_N : N; -fun bagnio_N : N; -fun bagpipe_N : N; -fun baguet_N : N; -fun bahamian_A : A; -fun bahamian_N : N; -fun bahasa_N : N; -fun bahraini_A : A; -fun bahraini_N : N; -fun baht_N : N; -fun bail_N : N; -fun bail_V : V; -fun bail_V2 : V2; -fun bailable_A : A; -fun bailee_N : N; -fun bailey_N : N; -fun bailiff_N : N; -fun bailiffship_N : N; -fun bailiwick_N : N; -fun bailment_N : N; -fun bailor_N : N; -fun bain_marie_N : N; -fun bairn_N : N; -fun bait_N : N; -fun bait_V : V; -fun bait_V2 : V2; -fun baiting_N : N; -fun baiza_N : N; -fun baize_N : N; -fun bake_V : V; -fun bake_V2 : V2; -fun baked_A : A; -fun baked_alaska_PN : PN; -fun bakelite_N : N; -fun baker_N : N; -fun bakery_N : N; -fun baking_A : A; -fun baking_N : N; -fun baking_hot_A : A; -fun baking_powder_N : N; -fun baklava_N : N; -fun baksheesh_N : N; -fun balaclava_N : N; -fun balagan_N : N; -fun balalaika_N : N; -fun balance_N : N; -fun balance_V : V; -fun balance_V2 : V2; -fun balance_sheet_N : N; -fun balance_wheel_N : N; -fun balanced_A : A; -fun balancer_N : N; -fun balanitis_N : N; -fun balanoposthitis_N : N; -fun balas_N : N; -fun balata_N : N; -fun balboa_N : N; -fun balbriggan_N : N; -fun balconied_A : A; -fun balcony_N : N; -fun bald_A : A; -fun bald_faced_A : A; -fun bald_head_N : N; -fun bald_pate_N : N; -fun baldachin_N : N; -fun balderdash_N : N; -fun baldhead_N : N; -fun balding_A : A; -fun baldly_Adv : Adv; -fun baldness_N : N; -fun baldric_N : N; -fun bale_N : N; -fun bale_V2 : V2; -fun baleful_A : A; -fun balefully_Adv : Adv; -fun balk_N : N; -fun balk_V : V; -fun balk_V2 : V2; -fun balker_N : N; -fun balkiness_N : N; -fun balking_A : A; -fun balkline_N : N; -fun ball_N : N; -fun ball_V : V; -fun ball_V2 : V2; -fun ball_buster_N : N; -fun ball_cartridge_N : N; -fun ball_dress_N : N; -fun ball_hawking_A : A; -fun ball_shaped_A : A; -fun ballad_N : N; -fun ballade_N : N; -fun ballast_N : N; -fun ballast_V2 : V2; -fun ballbearing_N : N; -fun ballcock_N : N; -fun balldress_N : N; -fun ballerina_N : N; -fun ballet_N : N; -fun ballet_dancer_N : N; -fun ballet_skirt_N : N; -fun balletic_A : A; -fun balletomane_N : N; -fun balletomania_N : N; -fun ballgame_N : N; -fun ballistic_A : A; -fun ballistics_N : N; -fun ballistocardiogram_N : N; -fun ballistocardiograph_N : N; -fun ballock_N : N; -fun balloon_N : N; -fun balloon_V : V; -fun balloon_V2 : V2; -fun balloonfish_N : N; -fun ballooning_N : N; -fun balloonist_N : N; -fun ballot_N : N; -fun ballot_V : V; -fun ballot_box_N : N; -fun ballottement_N : N; -fun ballpark_N : N; -fun ballpen_N : N; -fun ballplayer_N : N; -fun ballpoint_N : N; -fun ballpoint_pen_N : N; -fun ballroom_N : N; -fun balls_up_N : N; -fun ballup_N : N; -fun bally_A : A; -fun bally_Adv : Adv; -fun ballyhoo_N : N; -fun balm_N : N; -fun balm_of_gilead_PN : PN; -fun balminess_N : N; -fun balmoral_N : N; -fun balmy_A : A; -fun baloney_N : N; -fun balsa_N : N; -fun balsam_N : N; -fun balsam_of_peru_PN : PN; -fun balsam_scented_A : A; -fun balsamic_A : A; -fun balsamroot_N : N; -fun baluster_N : N; -fun balustrade_N : N; -fun bambino_N : N; -fun bamboo_N : N; -fun bamboozle_V2 : V2; -fun ban_N : N; -fun ban_V2 : V2; -fun banal_A : A; -fun banality_N : N; -fun banana_N : N; -fun banausic_A : A; -fun band_N : N; -fun band_V : V; -fun band_V2 : V2; -fun band_saw_N : N; -fun bandage_N : N; -fun bandage_V2 : V2; -fun bandaged_A : A; -fun bandanna_N : N; -fun bandbox_N : N; -fun bandeau_N : N; -fun banded_A : A; -fun banderilla_N : N; -fun banderillero_N : N; -fun bandicoot_N : N; -fun bandit_N : N; -fun banditry_N : N; -fun bandleader_N : N; -fun bandmaster_N : N; -fun bandoleer_N : N; -fun bandolier_N : N; -fun bandoneon_N : N; -fun bandsaw_N : N; -fun bandsman_N : N; -fun bandstand_N : N; -fun bandwagon_N : N; -fun bandwidth_N : N; -fun bandy_A : A; -fun bandy_V2 : V2; -fun bandy_legged_A : A; -fun bane_N : N; -fun baneberry_N : N; -fun baneful_A : A; -fun banefully_Adv : Adv; -fun bang_Adv : Adv; -fun bang_N : N; -fun bang_V : V; -fun bang_V2 : V2; -fun bang_up_A : A; -fun banger_N : N; -fun banging_N : N; -fun bangladeshi_A : A; -fun bangladeshi_N : N; -fun bangle_N : N; -fun banian_N : N; -fun banian_tree_N : N; -fun banish_V2 : V2; -fun banishment_N : N; -fun banister_N : N; -fun banjo_N : N; -fun bank_N : N; -fun bank_V : V; -fun bank_V2 : V2; -fun bank_bill_N : N; -fun bank_book_N : N; -fun bank_draft_N : N; -fun bank_rate_N : N; -fun bankable_A : A; -fun bankbook_N : N; -fun banker_N : N; -fun banking_N : N; -fun banknote_N : N; -fun bankroll_N : N; -fun bankrupt_A : A; -fun bankrupt_N : N; -fun bankrupt_V2 : V2; -fun bankruptcy_N : N; -fun banksia_N : N; -fun banned_A : A; -fun banner_A : A; -fun banner_N : N; -fun bannerlike_Adv : Adv; -fun banning_order_N : N; -fun banning_order_N : N; -fun bannister_N : N; -fun bannock_N : N; -fun banns_N : N; -fun banquet_N : N; -fun banquet_V : V; -fun banquet_V2 : V2; -fun banquette_N : N; -fun banshee_N : N; -fun bant_V : V; -fun bantam_A : A; -fun bantam_N : N; -fun bantamweight_N : N; -fun banteng_N : N; -fun banter_N : N; -fun banter_V : V; -fun banter_V2 : V2; -fun bantering_A : A; -fun banteringly_Adv : Adv; -fun banting_N : N; -fun bantu_A : A; -fun bantu_N : N; -fun banyan_N : N; -fun banzai_N : N; -fun baobab_N : N; -fun bap_N : N; -fun baptism_N : N; -fun baptismal_A : A; -fun baptist_A : A; -fun baptist_N : N; -fun baptize_V2 : V2; -fun baptized_A : A; -fun bar_N : N; -fun bar_Prep : Prep; -fun bar_V2 : V2; -fun bar_shaped_A : A; -fun barb_N : N; -fun barbadian_A : A; -fun barbadian_N : N; -fun barbarian_A : A; -fun barbarian_N : N; -fun barbaric_A : A; -fun barbarism_N : N; -fun barbarity_N : N; -fun barbarization_N : N; -fun barbarize_V2 : V2; -fun barbarous_A : A; -fun barbarously_Adv : Adv; -fun barbasco_N : N; -fun barbecue_N : N; -fun barbecue_V2 : V2; -fun barbecued_A : A; -fun barbecuing_N : N; -fun barbed_A : A; -fun barbel_N : N; -fun barbell_N : N; -fun barber_N : N; -fun barberry_N : N; -fun barbershop_N : N; -fun barbet_N : N; -fun barbette_N : N; -fun barbican_N : N; -fun barbital_N : N; -fun barbitone_N : N; -fun barbiturate_N : N; -fun barbu_N : N; -fun barcarole_N : N; -fun barcarolle_N : N; -fun bard_N : N; -fun bardic_A : A; -fun bardolatry_N : N; -fun bare_A : A; -fun bare_V2 : V2; -fun bare_assed_A : A; -fun bare_breasted_A : A; -fun bareback_A : A; -fun bareback_Adv : Adv; -fun barebacked_A : A; -fun barebacked_Adv : Adv; -fun bareboat_N : N; -fun bareboating_N : N; -fun barefaced_A : A; -fun barefoot_A : A; -fun barefoot_Adv : Adv; -fun barefooted_A : A; -fun barefooted_Adv : Adv; -fun barehanded_A : A; -fun bareheaded_A : A; -fun barelegged_A : A; -fun barely_Adv : Adv; -fun bareness_N : N; -fun barf_V : V; -fun bargain_N : N; -fun bargain_V : V; -fun bargain_V2 : V2; -fun bargain_priced_A : A; -fun bargainer_N : N; -fun bargaining_N : N; -fun barge_N : N; -fun barge_V : V; -fun bargee_N : N; -fun bargello_N : N; -fun bargepole_N : N; -fun baric_A : A; -fun barilla_N : N; -fun baritone_A : A; -fun baritone_N : N; -fun barium_N : N; -fun bark_N : N; -fun bark_V : V; -fun bark_V2 : V2; -fun bark_louse_N : N; -fun barker_N : N; -fun barky_A : A; -fun barley_N : N; -fun barley_sugar_N : N; -fun barley_sugar_N : N; -fun barley_water_N : N; -fun barleycorn_N : N; -fun barm_N : N; -fun barmaid_N : N; -fun barman_N : N; -fun barmbrack_N : N; -fun barmy_A : A; -fun barn_N : N; -fun barn_door_N : N; -fun barnacle_N : N; -fun barnburner_N : N; -fun barndoor_N : N; -fun barnful_N : N; -fun barnstorm_V : V; -fun barnstormer_N : N; -fun barnyard_N : N; -fun barograph_N : N; -fun barographic_A : A; -fun barometer_N : N; -fun barometric_A : A; -fun baron_N : N; -fun baronage_N : N; -fun baronduki_N : N; -fun baroness_N : N; -fun baronet_N : N; -fun baronetage_N : N; -fun baronetcy_N : N; -fun barong_N : N; -fun baronial_A : A; -fun barony_N : N; -fun baroque_A : A; -fun baroque_N : N; -fun baroreceptor_N : N; -fun barosaur_N : N; -fun barouche_N : N; -fun barque_N : N; -fun barrack_N : N; -fun barrack_V : V; -fun barrack_V2 : V2; -fun barracking_N : N; -fun barracouta_N : N; -fun barracuda_N : N; -fun barrage_N : N; -fun barramundi_N : N; -fun barrator_N : N; -fun barratry_N : N; -fun barred_A : A; -fun barrel_N : N; -fun barrel_V2 : V2; -fun barrel_shaped_A : A; -fun barreled_A : A; -fun barrelfish_N : N; -fun barrelhouse_N : N; -fun barrelled_A : A; -fun barrels_N : N; -fun barren_A : A; -fun barren_N : N; -fun barrenness_N : N; -fun barrenwort_N : N; -fun barrette_N : N; -fun barricade_N : N; -fun barricade_V2 : V2; -fun barricaded_A : A; -fun barrier_N : N; -fun barring_N : N; -fun barrio_N : N; -fun barrister_N : N; -fun barroom_N : N; -fun barrow_N : N; -fun barrow_boy_N : N; -fun barrow_man_N : N; -fun bartender_N : N; -fun barter_N : N; -fun barter_V : V; -fun barter_V2 : V2; -fun barterer_N : N; -fun bartlett_N : N; -fun bartonia_N : N; -fun barycenter_N : N; -fun barye_N : N; -fun baryon_N : N; -fun baryta_N : N; -fun barytic_A : A; -fun bas_relief_N : N; -fun basal_A : A; -fun basalt_N : N; -fun basaltic_A : A; -fun bascule_N : N; -fun base_A : A; -fun base_N : N; -fun base_V : V; -fun base_V2 : V2; -fun base_forming_A : A; -fun baseball_N : N; -fun baseboard_N : N; -fun based_A : A; -fun baseless_A : A; -fun baseline_N : N; -fun basement_N : N; -fun baseness_N : N; -fun basenji_N : N; -fun bash_N : N; -fun bash_V2 : V2; -fun bashful_A : A; -fun basic_A : A; -fun basic_N : N; -fun basically_Adv : Adv; -fun basics_N : N; -fun basidial_A : A; -fun basidiocarp_N : N; -fun basidiolichen_N : N; -fun basidiomycete_N : N; -fun basidiomycetous_A : A; -fun basidiospore_N : N; -fun basidiosporous_A : A; -fun basidium_N : N; -fun basifixed_A : A; -fun basil_N : N; -fun basilar_A : A; -fun basileus_N : N; -fun basilica_N : N; -fun basilican_A : A; -fun basilisk_N : N; -fun basin_N : N; -fun basinal_A : A; -fun basined_A : A; -fun basinet_N : N; -fun basipetal_A : A; -fun basis_N : N; -fun basiscopic_A : A; -fun bask_V : V; -fun basket_N : N; -fun basket_shaped_A : A; -fun basketball_N : N; -fun basketry_N : N; -fun basketweaver_N : N; -fun basophil_N : N; -fun basophilia_N : N; -fun basophilic_A : A; -fun bass_A : A; -fun bass_N : N; -fun bassarisk_N : N; -fun basset_N : N; -fun bassine_N : N; -fun bassinet_N : N; -fun bassist_N : N; -fun bassoon_N : N; -fun bassoonist_N : N; -fun basswood_N : N; -fun bast_N : N; -fun bastard_N : N; -fun bastardization_N : N; -fun bastardize_V2 : V2; -fun bastardized_A : A; -fun bastardly_A : A; -fun bastardy_N : N; -fun baste_N : N; -fun baste_V2 : V2; -fun baster_N : N; -fun bastille_N : N; -fun bastinado_N : N; -fun bastinado_V2 : V2; -fun basting_N : N; -fun bastion_N : N; -fun bastioned_A : A; -fun bastnasite_N : N; -fun basuco_N : N; -fun bat_N : N; -fun bat_V : V; -fun bat_V2 : V2; -fun batch_N : N; -fun bate_V2 : V2; -fun bated_A : A; -fun batfish_N : N; -fun bath_N : N; -fun bath_V : V; -fun bath_V2 : V2; -fun bath_chair_N : N; -fun bathe_N : N; -fun bathe_V : V; -fun bathe_V2 : V2; -fun bather_N : N; -fun bathetic_A : A; -fun bathhouse_N : N; -fun bathing_N : N; -fun bathing_cap_N : N; -fun bathing_costume_N : N; -fun bathing_machine_N : N; -fun bathing_suit_N : N; -fun batholith_N : N; -fun batholithic_A : A; -fun bathos_N : N; -fun bathrobe_N : N; -fun bathroom_N : N; -fun bathtub_N : N; -fun bathyal_A : A; -fun bathymeter_N : N; -fun bathymetric_A : A; -fun bathymetry_N : N; -fun bathyscaphe_N : N; -fun bathysphere_N : N; -fun batik_N : N; -fun batiste_N : N; -fun batman_N : N; -fun baton_N : N; -fun batrachomyomachia_N : N; -fun bats_A : A; -fun batsman_N : N; -fun battalion_N : N; -fun batten_N : N; -fun batten_V : V; -fun batten_V2 : V2; -fun batter_N : N; -fun batter_V : V; -fun batter_V2 : V2; -fun batter_fried_A : A; -fun battered_A : A; -fun battering_N : N; -fun battery_N : N; -fun battery_powered_A : A; -fun batting_N : N; -fun battle_N : N; -fun battle_V : V; -fun battle_V2 : V2; -fun battle_ax_N : N; -fun battle_axe_N : N; -fun battle_cruiser_N : N; -fun battle_scarred_A : A; -fun battledore_N : N; -fun battledress_N : N; -fun battlefield_N : N; -fun battlefront_N : N; -fun battleful_A : A; -fun battleground_N : N; -fun battlement_N : N; -fun battlemented_A : A; -fun battleship_N : N; -fun battue_N : N; -fun batty_A : A; -fun batwing_A : A; -fun batwing_N : N; -fun bauble_N : N; -fun baud_N : N; -fun baulk_N : N; -fun baulk_V : V; -fun baulk_V2 : V2; -fun bauxite_N : N; -fun bauxitic_A : A; -fun bawbee_N : N; -fun bawd_N : N; -fun bawdily_Adv : Adv; -fun bawdry_N : N; -fun bawdy_A : A; -fun bawdy_N : N; -fun bawl_V : V; -fun bawl_V2 : V2; -fun bawler_N : N; -fun bay_A : A; -fun bay_N : N; -fun bay_V : V; -fun bay_wreath_N : N; -fun baya_N : N; -fun bayat_N : N; -fun bayberry_N : N; -fun bayonet_N : N; -fun bayonet_V2 : V2; -fun bayou_N : N; -fun bazaar_N : N; -fun bazooka_N : N; -fun bdellium_N : N; -fun beach_N : N; -fun beach_V2 : V2; -fun beachcomber_N : N; -fun beachfront_N : N; -fun beachhead_N : N; -fun beachwear_N : N; -fun beacon_N : N; -fun beacon_fire_N : N; -fun beacon_light_N : N; -fun bead_N : N; -fun beaded_A : A; -fun beading_N : N; -fun beadle_N : N; -fun beads_N : N; -fun beadsman_N : N; -fun beady_A : A; -fun beady_eyed_A : A; -fun beagle_N : N; -fun beagling_N : N; -fun beak_N : N; -fun beaked_A : A; -fun beaker_N : N; -fun beakless_A : A; -fun beaklike_A : A; -fun beam_N : N; -fun beam_V : V; -fun beam_V2 : V2; -fun beam_ends_N : N; -fun beaming_A : A; -fun beamish_A : A; -fun beamy_A : A; -fun bean_N : N; -fun bean_shaped_A : A; -fun beanbag_N : N; -fun beanball_N : N; -fun beanfeast_N : N; -fun beanie_N : N; -fun beano_N : N; -fun beanstalk_N : N; -fun bear_N : N; -fun bear_V : V; -fun bear_V2 : V2; -fun bear_sized_A : A; -fun bearable_A : A; -fun bearberry_N : N; -fun beard_N : N; -fun beard_V2 : V2; -fun bearded_A : A; -fun beardless_A : A; -fun beardown_A : A; -fun bearer_N : N; -fun bearing_A : A; -fun bearing_N : N; -fun bearish_A : A; -fun bearnaise_N : N; -fun bearskin_N : N; -fun beast_N : N; -fun beastliness_N : N; -fun beastly_A : A; -fun beastly_Adv : Adv; -fun beat_A : A; -fun beat_N : N; -fun beat_V : V; -fun beat_V2 : V2; -fun beatable_A : A; -fun beaten_A : A; -fun beater_N : N; -fun beatific_A : A; -fun beatification_N : N; -fun beatified_A : A; -fun beatify_V2 : V2; -fun beating_N : N; -fun beatitude_N : N; -fun beatnik_N : N; -fun beau_N : N; -fun beaugregory_N : N; -fun beaujolais_N : N; -fun beauteous_A : A; -fun beautician_N : N; -fun beautification_N : N; -fun beautiful_A : A; -fun beautifully_Adv : Adv; -fun beautify_V2 : V2; -fun beauty_N : N; -fun beauty_parlour_N : N; -fun beauty_salon_N : N; -fun beauty_sleep_N : N; -fun beauty_spot_N : N; -fun beaver_N : N; -fun beaver_V : V; -fun becalmed_A : A; -fun because_Subj : Subj; -fun beck_N : N; -fun becket_N : N; -fun beckon_V : V; -fun beckon_V2 : V2; -fun become_V : V; -fun become_V2 : V2; -fun become_VA : VA; -fun become_VS : VS; -fun becoming_A : A; -fun becomingly_Adv : Adv; -fun becomingness_N : N; -fun bed_N : N; -fun bed_V2 : V2; -fun bed_wetting_N : N; -fun bedaubed_A : A; -fun bedbug_N : N; -fun bedclothes_N : N; -fun bedded_A : A; -fun bedder_N : N; -fun bedding_N : N; -fun bedecked_A : A; -fun bedevil_V2 : V2; -fun bedevilment_N : N; -fun bedewed_A : A; -fun bedfast_A : A; -fun bedfellow_N : N; -fun bedimmed_A : A; -fun bedlam_N : N; -fun bedlamite_N : N; -fun bedless_A : A; -fun bedouin_N : N; -fun bedpan_N : N; -fun bedpost_N : N; -fun bedraggled_A : A; -fun bedrest_N : N; -fun bedridden_A : A; -fun bedrock_N : N; -fun bedroll_N : N; -fun bedroom_N : N; -fun bedroomed_A : A; -fun bedside_N : N; -fun bedsit_N : N; -fun bedsitter_N : N; -fun bedsitting_room_N : N; -fun bedsore_N : N; -fun bedspread_N : N; -fun bedspring_N : N; -fun bedstead_N : N; -fun bedstraw_N : N; -fun bedtime_N : N; -fun beduin_N : N; -fun bedwetter_N : N; -fun bee_N : N; -fun beebread_N : N; -fun beech_N : N; -fun beechen_A : A; -fun beechnut_N : N; -fun beef_N : N; -fun beef_V : V; -fun beef_bourguignonne_PN : PN; -fun beef_stroganoff_PN : PN; -fun beef_wellington_PN : PN; -fun beefcake_N : N; -fun beefeater_N : N; -fun beefed_up_A : A; -fun beefsteak_N : N; -fun beefwood_N : N; -fun beefy_A : A; -fun beehive_N : N; -fun beekeeper_N : N; -fun beekeeping_N : N; -fun beeline_N : N; -fun beep_N : N; -fun beep_V : V; -fun beep_V2 : V2; -fun beeper_N : N; -fun beer_N : N; -fun beery_A : A; -fun beeswax_N : N; -fun beeswax_V2 : V2; -fun beet_N : N; -fun beetle_A : A; -fun beetle_N : N; -fun beetle_V : V; -fun beetle_browed_A : A; -fun beetle_browed_A : A; -fun beetroot_N : N; -fun befall_V : V; -fun befall_V2 : V2; -fun befit_V2 : V2; -fun befitting_A : A; -fun befogged_A : A; -fun before_Adv : Adv; -fun before_Prep : Prep; -fun beforehand_A : A; -fun beforehand_Adv : Adv; -fun befoul_V2 : V2; -fun befouled_A : A; -fun befoulment_N : N; -fun befriend_V : V; -fun befriend_V2 : V2; -fun befuddle_V2 : V2; -fun beg_V : V; -fun beg_V2 : V2; -fun beg_VS : VS; -fun beget_V2 : V2; -fun begetter_N : N; -fun beggar_N : N; -fun beggar_V2 : V2; -fun beggar_my_neighbor_N : N; -fun beggarly_A : A; -fun beggarman_N : N; -fun beggarweed_N : N; -fun beggarwoman_N : N; -fun beggary_N : N; -fun begin_V : V; -fun begin_V2 : V2; -fun begin_VV : VV; -fun beginner_N : N; -fun beginning_A : A; -fun beginning_N : N; -fun begonia_N : N; -fun begotten_A : A; -fun begrimed_A : A; -fun begrudge_V2 : V2; -fun beguile_V2 : V2; -fun beguiled_A : A; -fun beguilement_N : N; -fun beguiling_A : A; -fun beguine_N : N; -fun begum_N : N; -fun behalf_N : N; -fun behave_V : V; -fun behaved_A : A; -fun behavior_N : N; -fun behavioral_A : A; -fun behaviorism_N : N; -fun behaviorist_N : N; -fun behavioristic_A : A; -fun behaviour_N : N; -fun behaviourism_N : N; -fun behaviourist_N : N; -fun behead_V2 : V2; -fun beheaded_A : A; -fun behest_N : N; -fun behind_A : A; -fun behind_Adv : Adv; -fun behind_N : N; -fun behind_Prep : Prep; -fun behindhand_A : A; -fun behold_V2 : V2; -fun beholden_A : A; -fun beholder_N : N; -fun behove_V2 : V2; -fun beige_A : A; -fun beige_N : N; -fun being_N : N; -fun bejewelled_A : A; -fun belabour_V2 : V2; -fun belated_A : A; -fun belay_N : N; -fun belay_V2 : V2; -fun belaying_pin_N : N; -fun belch_N : N; -fun belch_V : V; -fun belch_V2 : V2; -fun belching_N : N; -fun beldam_N : N; -fun beldame_N : N; -fun beleaguer_V2 : V2; -fun belemnite_N : N; -fun belemnitic_A : A; -fun belfry_N : N; -fun belgian_A : A; -fun belgian_N : N; -fun belie_V2 : V2; -fun belief_N : N; -fun believable_A : A; -fun believably_Adv : Adv; -fun believe_V : V; -fun believe_V2 : V2; -fun believe_V2V : V2V; -fun believe_VS : VS; -fun believer_N : N; -fun believing_N : N; -fun belike_Adv : Adv; -fun belittle_V2 : V2; -fun belittled_A : A; -fun belittling_A : A; -fun belittling_N : N; -fun bell_N : N; -fun bell_V2 : V2; -fun bell_bottomed_A : A; -fun bell_bottomed_A : A; -fun bell_buoy_N : N; -fun bell_flower_N : N; -fun bell_founder_N : N; -fun bell_foundry_N : N; -fun bell_metal_N : N; -fun bell_push_N : N; -fun bell_ringer_N : N; -fun bell_shaped_A : A; -fun bell_tent_N : N; -fun belladonna_N : N; -fun bellarmine_N : N; -fun bellbird_N : N; -fun bellboy_N : N; -fun belle_N : N; -fun belles_lettres_N : N; -fun belletristic_A : A; -fun bellhop_N : N; -fun bellicose_A : A; -fun bellicosity_N : N; -fun bellied_A : A; -fun belligerence_N : N; -fun belligerency_N : N; -fun belligerent_A : A; -fun belligerent_N : N; -fun belligerently_Adv : Adv; -fun bellow_N : N; -fun bellow_V : V; -fun bellow_V2 : V2; -fun bellows_N : N; -fun bellpull_N : N; -fun bellwether_N : N; -fun bellwort_N : N; -fun belly_N : N; -fun belly_V : V; -fun belly_V2 : V2; -fun bellyache_N : N; -fun bellyache_V : V; -fun bellyband_N : N; -fun bellyflop_N : N; -fun bellyful_N : N; -fun bellyland_V : V; -fun bellylaugh_N : N; -fun bellylaugh_V : V; -fun bellyless_A : A; -fun belong_V : V; -fun belonging_N : N; -fun beloved_A : A; -fun beloved_N : N; -fun below_Adv : Adv; -fun below_Prep : Prep; -fun below_the_belt_A : A; -fun belowground_A : A; -fun belt_N : N; -fun belt_V2 : V2; -fun belt_fed_A : A; -fun belt_shaped_A : A; -fun belted_A : A; -fun belting_N : N; -fun beltlike_A : A; -fun beltway_N : N; -fun beluga_N : N; -fun belvedere_N : N; -fun bemoan_V2 : V2; -fun bemused_A : A; -fun ben_N : N; -fun bench_N : N; -fun benchmark_N : N; -fun bend_N : N; -fun bend_V : V; -fun bend_V2 : V2; -fun bendability_N : N; -fun bendable_A : A; -fun bended_A : A; -fun bender_N : N; -fun bending_N : N; -fun beneath_Adv : Adv; -fun beneath_Prep : Prep; -fun benedick_N : N; -fun benedictine_A : A; -fun benedictine_N : N; -fun benediction_N : N; -fun benedictory_A : A; -fun benefaction_N : N; -fun benefactor_N : N; -fun benefactress_N : N; -fun benefic_A : A; -fun benefice_N : N; -fun beneficed_A : A; -fun beneficence_N : N; -fun beneficent_A : A; -fun beneficial_A : A; -fun beneficially_Adv : Adv; -fun beneficiary_A : A; -fun beneficiary_N : N; -fun benefit_N : N; -fun benefit_V : V; -fun benefit_V2 : V2; -fun benevolence_N : N; -fun benevolent_A : A; -fun benevolently_Adv : Adv; -fun bengali_A : A; -fun bengali_N : N; -fun benighted_A : A; -fun benign_A : A; -fun benignant_A : A; -fun benignity_N : N; -fun benignly_Adv : Adv; -fun beninese_A : A; -fun beninese_N : N; -fun benison_N : N; -fun bennet_N : N; -fun bent_A : A; -fun bent_N : N; -fun benthic_A : A; -fun benthos_N : N; -fun bentonite_N : N; -fun bentonitic_A : A; -fun bentwood_N : N; -fun benumbed_A : A; -fun benzedrine_N : N; -fun benzene_N : N; -fun benzenoid_A : A; -fun benzine_N : N; -fun benzoate_N : N; -fun benzocaine_N : N; -fun benzodiazepine_N : N; -fun benzofuran_N : N; -fun benzoic_A : A; -fun benzoin_N : N; -fun benzol_N : N; -fun benzyl_N : N; -fun benzylic_A : A; -fun bequeath_V2 : V2; -fun bequest_N : N; -fun berate_V2 : V2; -fun berating_N : N; -fun bereave_V2 : V2; -fun bereaved_A : A; -fun bereaved_N : N; -fun bereavement_N : N; -fun bereft_A : A; -fun beret_N : N; -fun berg_N : N; -fun bergamot_N : N; -fun bergenia_N : N; -fun beri_beri_N : N; -fun beriberi_N : N; -fun berk_N : N; -fun berkelium_N : N; -fun berlin_N : N; -fun berm_N : N; -fun bermudan_A : A; -fun bermudan_N : N; -fun beroe_N : N; -fun berried_A : A; -fun berry_N : N; -fun berry_V : V; -fun berserk_A : A; -fun berserker_N : N; -fun berth_N : N; -fun berth_V : V; -fun berth_V2 : V2; -fun beryl_N : N; -fun beryllium_N : N; -fun beseech_V2 : V2; -fun beseeching_A : A; -fun beseechingly_Adv : Adv; -fun beseem_V2 : V2; -fun beset_V2 : V2; -fun beshrew_V2 : V2; -fun beside_Prep : Prep; -fun besides_Adv : Adv; -fun besides_Prep : Prep; -fun besiege_V2 : V2; -fun besieged_A : A; -fun besieger_N : N; -fun besmear_V2 : V2; -fun besmirch_V2 : V2; -fun besom_N : N; -fun besotted_A : A; -fun bespangled_A : A; -fun bespattered_A : A; -fun bespeak_V2 : V2; -fun bespectacled_A : A; -fun bespoke_A : A; -fun bespoken_A : A; -fun besprent_A : A; -fun best_A : A; -fun best_Adv : Adv; -fun best_N : N; -fun best_V2 : V2; -fun best_known_A : A; -fun best_of_all_Adv : Adv; -fun best_seller_N : N; -fun best_selling_A : A; -fun bestial_A : A; -fun bestiality_N : N; -fun bestially_Adv : Adv; -fun bestiary_N : N; -fun bestir_V2 : V2; -fun bestow_V2 : V2; -fun bestowal_N : N; -fun bestrew_V2 : V2; -fun bestride_V2 : V2; -fun bestubbled_A : A; -fun bet_N : N; -fun bet_V : V; -fun bet_V2 : V2; -fun bet_VS : VS; -fun beta_A : A; -fun beta_N : N; -fun beta_carotene_N : N; -fun beta_interferon_N : N; -fun beta_naphthol_N : N; -fun betaine_N : N; -fun betake_V2 : V2; -fun betatron_N : N; -fun bete_noire_N : N; -fun betel_N : N; -fun betel_nut_N : N; -fun beth_N : N; -fun bethel_N : N; -fun bethink_V2 : V2; -fun betide_V2 : V2; -fun betimes_Adv : Adv; -fun betoken_V2 : V2; -fun betray_V2 : V2; -fun betrayal_N : N; -fun betrayer_N : N; -fun betroth_V2 : V2; -fun betrothal_N : N; -fun betrothed_N : N; -fun better_A : A; -fun better_Adv : Adv; -fun better_N : N; -fun better_V2 : V2; -fun better_known_A : A; -fun better_off_A : A; -fun bettering_A : A; -fun betterment_N : N; -fun bettong_N : N; -fun bettor_N : N; -fun betulaceous_A : A; -fun between_Adv : Adv; -fun between_Prep : Prep; -fun between_decks_Adv : Adv; -fun betwixt_Prep : Prep; -fun bevatron_N : N; -fun bevel_N : N; -fun bevel_V2 : V2; -fun beverage_N : N; -fun bevy_N : N; -fun bewail_V2 : V2; -fun beware_V : V; -fun beware_V2 : V2; -fun bewilder_V2 : V2; -fun bewilderedly_Adv : Adv; -fun bewildering_A : A; -fun bewilderingly_Adv : Adv; -fun bewilderment_N : N; -fun bewitch_V2 : V2; -fun bewitched_A : A; -fun bewitchery_N : N; -fun bewitching_A : A; -fun bewitchingly_Adv : Adv; -fun bey_N : N; -fun beyond_Adv : Adv; -fun beyond_Prep : Prep; -fun beyond_doubt_A : A; -fun beyond_measure_Adv : Adv; -fun bezant_N : N; -fun bezel_N : N; -fun bezique_N : N; -fun bhakti_N : N; -fun bhang_N : N; -fun bhutani_A : A; -fun bhutani_N : N; -fun bialy_N : N; -fun biannually_Adv : Adv; -fun bias_A : A; -fun bias_N : N; -fun bias_V2 : V2; -fun biased_A : A; -fun biauricular_A : A; -fun biaxial_A : A; -fun bib_N : N; -fun bib_V : V; -fun bib_and_tucker_N : N; -fun bibbed_A : A; -fun bible_N : N; -fun bibless_A : A; -fun biblical_A : A; -fun bibliographer_N : N; -fun bibliographic_A : A; -fun bibliography_N : N; -fun bibliolatrous_A : A; -fun bibliolatry_N : N; -fun bibliomania_N : N; -fun bibliomaniacal_A : A; -fun bibliophile_N : N; -fun bibliophilic_A : A; -fun bibliopole_N : N; -fun bibliopolic_A : A; -fun bibliotheca_N : N; -fun bibliothecal_A : A; -fun bibliotic_A : A; -fun bibliotics_N : N; -fun bibliotist_N : N; -fun bibulous_A : A; -fun bicameral_A : A; -fun bicapsular_A : A; -fun bicarbonate_N : N; -fun bicentenary_N : N; -fun bicentennial_A : A; -fun bicentennial_N : N; -fun bicentric_A : A; -fun bicephalous_A : A; -fun biceps_N : N; -fun bichromate_N : N; -fun bichromated_A : A; -fun bicipital_A : A; -fun bicker_N : N; -fun bicker_V : V; -fun bicolor_A : A; -fun biconcave_A : A; -fun biconvex_A : A; -fun bicorn_A : A; -fun bicorn_N : N; -fun bicuspid_A : A; -fun bicycle_N : N; -fun bicycle_V : V; -fun bicycle_built_for_two_N : N; -fun bicyclic_A : A; -fun bicycling_N : N; -fun bicylindrical_A : A; -fun bid_N : N; -fun bid_V : V; -fun bid_V2 : V2; -fun biddable_A : A; -fun bidder_N : N; -fun bidding_N : N; -fun bide_V2 : V2; -fun bidentate_A : A; -fun bidet_N : N; -fun bidirectional_A : A; -fun biennial_A : A; -fun biennial_N : N; -fun biennially_Adv : Adv; -fun bier_N : N; -fun biface_A : A; -fun biff_N : N; -fun biff_V2 : V2; -fun bifid_A : A; -fun bifilar_A : A; -fun biflagellate_A : A; -fun bifocal_A : A; -fun bifocals_N : N; -fun bifoliate_A : A; -fun biform_A : A; -fun bifurcate_A : A; -fun bifurcate_V : V; -fun bifurcate_V2 : V2; -fun bifurcated_A : A; -fun bifurcation_N : N; -fun big_A : A; -fun big_Adv : Adv; -fun big_h_PN : PN; -fun big_bellied_A : A; -fun big_boned_A : A; -fun big_boned_A : A; -fun big_chested_A : A; -fun big_shouldered_A : A; -fun big_ticket_A : A; -fun bigamist_N : N; -fun bigamous_A : A; -fun bigamy_N : N; -fun bigeminal_A : A; -fun bigeneric_A : A; -fun bigeye_N : N; -fun bigger_A : A; -fun biggin_N : N; -fun biggish_A : A; -fun bighead_N : N; -fun bigheaded_A : A; -fun bigheartedness_N : N; -fun bighorn_N : N; -fun bight_N : N; -fun bigmouthed_A : A; -fun bignoniaceous_A : A; -fun bignoniad_N : N; -fun bigos_N : N; -fun bigot_N : N; -fun bigoted_A : A; -fun bigotry_N : N; -fun bigram_N : N; -fun bigwig_N : N; -fun bijou_A : A; -fun bijou_N : N; -fun bike_N : N; -fun bike_V : V; -fun bike_V2 : V2; -fun bikini_N : N; -fun bilabial_A : A; -fun bilabial_N : N; -fun bilabiate_A : A; -fun bilateral_A : A; -fun bilateralism_N : N; -fun bilaterality_N : N; -fun bilaterally_Adv : Adv; -fun bilberry_N : N; -fun bile_N : N; -fun bile_duct_N : N; -fun bilge_N : N; -fun bilge_water_N : N; -fun bilges_N : N; -fun bilgy_A : A; -fun bilharzia_N : N; -fun biliary_A : A; -fun bilimbi_N : N; -fun bilinear_A : A; -fun bilingual_A : A; -fun bilingual_N : N; -fun bilingualism_N : N; -fun bilingually_Adv : Adv; -fun bilious_A : A; -fun biliousness_N : N; -fun bilirubin_N : N; -fun bilk_V2 : V2; -fun bill_N : N; -fun bill_V : V; -fun bill_V2 : V2; -fun bill_of_particulars_PN : PN; -fun bill_poster_N : N; -fun bill_sticker_N : N; -fun billabong_N : N; -fun billboard_N : N; -fun billed_A : A; -fun billet_N : N; -fun billet_V2 : V2; -fun billet_doux_N : N; -fun billfish_N : N; -fun billfold_N : N; -fun billhook_N : N; -fun billiard_A : A; -fun billiard_marker_N : N; -fun billiard_player_N : N; -fun billiard_room_N : N; -fun billiard_table_N : N; -fun billiards_N : N; -fun billingsgate_N : N; -fun billion_A : A; -fun billion_N : N; -fun billionaire_N : N; -fun billionth_A : A; -fun billionth_N : N; -fun billow_N : N; -fun billow_V : V; -fun billowy_A : A; -fun billy_N : N; -fun billy_goat_N : N; -fun billy_ho_N : N; -fun billy_o_N : N; -fun billyo_N : N; -fun bilobate_A : A; -fun bilocation_N : N; -fun bilocular_A : A; -fun biltong_N : N; -fun bimbo_N : N; -fun bimester_N : N; -fun bimestrial_A : A; -fun bimetal_A : A; -fun bimetal_N : N; -fun bimetallic_A : A; -fun bimetallism_N : N; -fun bimetallist_N : N; -fun bimetallistic_A : A; -fun bimillenial_A : A; -fun bimillennium_N : N; -fun bimodal_A : A; -fun bimolecular_A : A; -fun bimonthly_A : A; -fun bimonthly_Adv : Adv; -fun bimonthly_N : N; -fun bimorphemic_A : A; -fun bimotored_A : A; -fun bin_N : N; -fun bin_laden_PN : PN; -fun binary_A : A; -fun binary_N : N; -fun binate_A : A; -fun binaural_A : A; -fun binaurally_Adv : Adv; -fun bind_N : N; -fun bind_V : V; -fun bind_V2 : V2; -fun bindable_A : A; -fun binder_N : N; -fun bindery_N : N; -fun binding_A : A; -fun binding_N : N; -fun bindweed_N : N; -fun bine_N : N; -fun binge_N : N; -fun bingo_N : N; -fun binnacle_N : N; -fun binocular_A : A; -fun binoculars_N : N; -fun binomial_A : A; -fun binomial_N : N; -fun binturong_N : N; -fun binucleate_A : A; -fun bioassay_N : N; -fun biocatalyst_N : N; -fun biocatalytic_A : A; -fun biochemical_A : A; -fun biochemically_Adv : Adv; -fun biochemist_N : N; -fun biochemistry_N : N; -fun biochip_N : N; -fun bioclimatic_A : A; -fun bioclimatology_N : N; -fun biodegradable_A : A; -fun biodiversity_N : N; -fun bioelectricity_N : N; -fun bioethics_N : N; -fun biofeedback_N : N; -fun biogenesis_N : N; -fun biogenetic_A : A; -fun biogenic_A : A; -fun biogenous_A : A; -fun biogeographic_A : A; -fun biogeography_N : N; -fun biograph_N : N; -fun biographer_N : N; -fun biographic_A : A; -fun biographical_A : A; -fun biography_N : N; -fun biohazard_N : N; -fun biological_A : A; -fun biologically_Adv : Adv; -fun biologism_N : N; -fun biologist_N : N; -fun biologistic_A : A; -fun biology_N : N; -fun bioluminescence_N : N; -fun bioluminescent_A : A; -fun biomass_N : N; -fun biome_N : N; -fun biomedical_A : A; -fun biomedicine_N : N; -fun biometrics_N : N; -fun bionic_A : A; -fun bionics_N : N; -fun biont_N : N; -fun biophysicist_N : N; -fun biophysics_N : N; -fun biopiracy_N : N; -fun biopsy_N : N; -fun bioremediation_N : N; -fun biosafety_N : N; -fun bioscope_N : N; -fun biosphere_N : N; -fun biosynthesis_N : N; -fun biosynthetic_A : A; -fun biosystematic_A : A; -fun biosystematics_N : N; -fun biota_N : N; -fun biotechnology_N : N; -fun bioterrorism_N : N; -fun biotic_A : A; -fun biotin_N : N; -fun biotite_N : N; -fun biotitic_A : A; -fun biotype_N : N; -fun biotypic_A : A; -fun bioweapon_N : N; -fun biparous_A : A; -fun bipartisan_A : A; -fun bipartite_A : A; -fun biped_N : N; -fun bipedal_A : A; -fun bipedalism_N : N; -fun bipinnate_A : A; -fun bipinnatifid_A : A; -fun biplane_N : N; -fun bipolar_A : A; -fun biprism_N : N; -fun biquadrate_N : N; -fun biquadratic_A : A; -fun biquadratic_N : N; -fun biracial_A : A; -fun biradial_A : A; -fun biradially_Adv : Adv; -fun birch_A : A; -fun birch_N : N; -fun birch_V2 : V2; -fun birch_rod_N : N; -fun bird_N : N; -fun bird's_eye_A : A; -fun bird's_eye_A : A; -fun bird_fancier_N : N; -fun birdbath_N : N; -fun birdcage_N : N; -fun birdcall_N : N; -fun birdhouse_N : N; -fun birdie_N : N; -fun birdlime_N : N; -fun birdnest_V : V; -fun birdnesting_N : N; -fun birdwatcher_N : N; -fun birefringent_A : A; -fun biretta_N : N; -fun birling_N : N; -fun biro_N : N; -fun birr_N : N; -fun birth_N : N; -fun birth_control_N : N; -fun birthday_N : N; -fun birthmark_N : N; -fun birthplace_N : N; -fun birthrate_N : N; -fun birthright_N : N; -fun birthwort_N : N; -fun biryani_N : N; -fun biscuit_N : N; -fun bise_N : N; -fun bisect_V2 : V2; -fun bisection_N : N; -fun bisectional_A : A; -fun biserrate_A : A; -fun bisexual_A : A; -fun bisexual_N : N; -fun bisexuality_N : N; -fun bishop_N : N; -fun bishopric_N : N; -fun bishopry_N : N; -fun bismuth_N : N; -fun bismuthal_A : A; -fun bismuthic_A : A; -fun bison_N : N; -fun bisontine_A : A; -fun bisque_N : N; -fun bister_N : N; -fun bistered_A : A; -fun bistro_N : N; -fun bistroic_A : A; -fun bit_N : N; -fun bit_by_bit_A : A; -fun bitartrate_N : N; -fun bitch_N : N; -fun bitch_V : V; -fun bitchery_N : N; -fun bitchy_A : A; -fun bite_N : N; -fun bite_V : V; -fun bite_V2 : V2; -fun biter_N : N; -fun bitewing_N : N; -fun biting_A : A; -fun bitmap_N : N; -fun bitok_N : N; -fun bitter_A : A; -fun bitter_N : N; -fun bitter_sweet_A : A; -fun bittercress_N : N; -fun bitterish_A : A; -fun bitterly_Adv : Adv; -fun bittern_N : N; -fun bitterness_N : N; -fun bitternut_N : N; -fun bitterroot_N : N; -fun bitters_N : N; -fun bittersweet_A : A; -fun bittersweet_N : N; -fun bitthead_N : N; -fun bitty_A : A; -fun bitumastic_N : N; -fun bitumen_N : N; -fun bituminoid_A : A; -fun bituminous_A : A; -fun bivalent_A : A; -fun bivalve_A : A; -fun bivalve_N : N; -fun bivariate_A : A; -fun bivouac_N : N; -fun bivouac_V : V; -fun biweekly_N : N; -fun biz_N : N; -fun bizarre_A : A; -fun bizonal_A : A; -fun blab_V : V; -fun blab_V2 : V2; -fun blabber_V : V; -fun blabber_V2 : V2; -fun blabbermouth_N : N; -fun blabbermouthed_A : A; -fun black_A : A; -fun black_N : N; -fun black_V2 : V2; -fun black_and_blue_A : A; -fun black_and_tan_A : A; -fun black_and_white_A : A; -fun black_barred_A : A; -fun black_beetle_N : N; -fun black_coated_A : A; -fun black_eyed_susan_PN : PN; -fun black_grey_A : A; -fun black_lead_N : N; -fun black_lead_V2 : V2; -fun black_marked_A : A; -fun black_seeded_A : A; -fun blackamoor_N : N; -fun blackball_V2 : V2; -fun blackberry_N : N; -fun blackberry_V : V; -fun blackberry_lily_N : N; -fun blackbird_N : N; -fun blackboard_N : N; -fun blackbuck_N : N; -fun blackcap_N : N; -fun blackcock_N : N; -fun blackcurrant_N : N; -fun blacken_V : V; -fun blacken_V2 : V2; -fun blackened_A : A; -fun blackening_N : N; -fun blackface_N : N; -fun blackfish_N : N; -fun blackfly_N : N; -fun blackguard_N : N; -fun blackguard_V2 : V2; -fun blackguardly_A : A; -fun blackhead_N : N; -fun blackheart_N : N; -fun blacking_N : N; -fun blackish_A : A; -fun blackish_brown_A : A; -fun blackish_red_A : A; -fun blackjack_N : N; -fun blackleg_N : N; -fun blackleg_V : V; -fun blackleg_V2 : V2; -fun blacklist_N : N; -fun blacklist_V2 : V2; -fun blackmail_N : N; -fun blackmail_V2 : V2; -fun blackmailer_N : N; -fun blackness_N : N; -fun blackout_N : N; -fun blackpoll_N : N; -fun blackshirt_N : N; -fun blacksmith_N : N; -fun blacksnake_N : N; -fun blackthorn_N : N; -fun blacktop_N : N; -fun blackwash_N : N; -fun blackwater_A : A; -fun blackwater_N : N; -fun blackwood_N : N; -fun bladder_N : N; -fun bladderpod_N : N; -fun bladderwort_N : N; -fun bladderwrack_N : N; -fun bladdery_A : A; -fun blade_N : N; -fun bladed_A : A; -fun blae_A : A; -fun blaeberry_N : N; -fun blah_N : N; -fun blahs_N : N; -fun blain_N : N; -fun blame_N : N; -fun blame_V : V; -fun blame_V2 : V2; -fun blameless_A : A; -fun blamelessness_N : N; -fun blameworthiness_N : N; -fun blameworthy_A : A; -fun blanc_N : N; -fun blanch_V : V; -fun blanch_V2 : V2; -fun blancmange_N : N; -fun bland_A : A; -fun blandishment_N : N; -fun blandly_Adv : Adv; -fun blandness_N : N; -fun blank_A : A; -fun blank_N : N; -fun blanket_N : N; -fun blanket_V2 : V2; -fun blanketed_A : A; -fun blankly_Adv : Adv; -fun blankness_N : N; -fun blanquillo_N : N; -fun blare_N : N; -fun blare_V : V; -fun blare_V2 : V2; -fun blaring_A : A; -fun blarney_N : N; -fun blase_A : A; -fun blaspheme_V : V; -fun blaspheme_V2 : V2; -fun blasphemer_N : N; -fun blasphemous_A : A; -fun blasphemously_Adv : Adv; -fun blasphemy_N : N; -fun blast_N : N; -fun blast_V : V; -fun blast_V2 : V2; -fun blast_furnace_N : N; -fun blast_off_N : N; -fun blasted_A : A; -fun blastema_N : N; -fun blastemal_A : A; -fun blaster_N : N; -fun blasting_A : A; -fun blastocoel_N : N; -fun blastocoelic_A : A; -fun blastocyst_N : N; -fun blastocyte_N : N; -fun blastoderm_N : N; -fun blastodermatic_A : A; -fun blastoff_N : N; -fun blastogenesis_N : N; -fun blastogenetic_A : A; -fun blastoma_N : N; -fun blastomere_N : N; -fun blastomeric_A : A; -fun blastomycete_N : N; -fun blastomycosis_N : N; -fun blastomycotic_A : A; -fun blastoporal_A : A; -fun blastopore_N : N; -fun blastospheric_A : A; -fun blastula_N : N; -fun blat_V : V; -fun blat_V2 : V2; -fun blatancy_N : N; -fun blatant_A : A; -fun blatantly_Adv : Adv; -fun blather_N : N; -fun blather_V : V; -fun blaxploitation_N : N; -fun blaze_N : N; -fun blaze_V : V; -fun blaze_V2 : V2; -fun blazer_N : N; -fun blazing_A : A; -fun blazon_N : N; -fun blazon_V2 : V2; -fun blazonry_N : N; -fun bleach_N : N; -fun bleach_V : V; -fun bleach_V2 : V2; -fun bleached_A : A; -fun bleacher_N : N; -fun bleachers_N : N; -fun bleaching_powder_N : N; -fun bleak_A : A; -fun bleakly_Adv : Adv; -fun bleakness_N : N; -fun bleary_A : A; -fun bleary_eyed_A : A; -fun bleat_N : N; -fun bleat_V : V; -fun bleat_V2 : V2; -fun blebbed_A : A; -fun blebby_A : A; -fun bleed_V : V; -fun bleed_V2 : V2; -fun bleed_VS : VS; -fun bleeding_N : N; -fun bleep_N : N; -fun bleep_V : V; -fun blemish_N : N; -fun blemish_V2 : V2; -fun blemished_A : A; -fun blench_V : V; -fun blend_N : N; -fun blend_V : V; -fun blend_V2 : V2; -fun blended_A : A; -fun blender_N : N; -fun blenny_N : N; -fun blepharism_N : N; -fun blepharitis_N : N; -fun blepharospasm_N : N; -fun bless_V2 : V2; -fun blessed_A : A; -fun blessedly_Adv : Adv; -fun blessedness_N : N; -fun blessing_N : N; -fun blether_N : N; -fun blether_V : V; -fun bletia_N : N; -fun bleu_N : N; -fun blewits_N : N; -fun blight_N : N; -fun blight_V2 : V2; -fun blighted_A : A; -fun blighter_N : N; -fun blighty_N : N; -fun blimp_N : N; -fun blimpish_A : A; -fun blind_A : A; -fun blind_N : N; -fun blind_V2 : V2; -fun blinded_A : A; -fun blindfold_A : A; -fun blindfold_N : N; -fun blindfold_V2 : V2; -fun blindly_Adv : Adv; -fun blindman's_buff_N : N; -fun blindness_N : N; -fun blindworm_N : N; -fun bling_N : N; -fun blini_N : N; -fun blink_N : N; -fun blink_V : V; -fun blink_V2 : V2; -fun blinker_N : N; -fun blinking_A : A; -fun blinks_N : N; -fun blintz_N : N; -fun blip_N : N; -fun bliss_N : N; -fun blissful_A : A; -fun blissfully_Adv : Adv; -fun blister_N : N; -fun blister_V : V; -fun blister_V2 : V2; -fun blistering_A : A; -fun blithe_A : A; -fun blithering_A : A; -fun blithesome_A : A; -fun blitz_N : N; -fun blitz_V2 : V2; -fun blizzard_N : N; -fun bloat_N : N; -fun bloated_A : A; -fun bloater_N : N; -fun blob_N : N; -fun bloc_N : N; -fun block_N : N; -fun block_V2 : V2; -fun blockade_N : N; -fun blockade_V2 : V2; -fun blockade_runner_N : N; -fun blockade_runner_N : N; -fun blockading_A : A; -fun blockage_N : N; -fun blockbuster_N : N; -fun blocked_A : A; -fun blocker_N : N; -fun blockhead_N : N; -fun blockheaded_A : A; -fun blockhouse_N : N; -fun blocking_N : N; -fun blockish_A : A; -fun blogger_N : N; -fun bloke_N : N; -fun blolly_N : N; -fun blond_A : A; -fun blond_N : N; -fun blonde_A : A; -fun blonde_N : N; -fun blood_N : N; -fun blood_V2 : V2; -fun blood_and_guts_A : A; -fun blood_bath_N : N; -fun blood_donor_N : N; -fun blood_filled_A : A; -fun blood_group_N : N; -fun blood_heat_N : N; -fun blood_letting_N : N; -fun blood_money_N : N; -fun blood_poisoning_N : N; -fun blood_pressure_N : N; -fun blood_relation_N : N; -fun blood_transfusion_N : N; -fun blood_type_N : N; -fun blood_vessel_N : N; -fun bloodbath_N : N; -fun bloodberry_N : N; -fun bloodcurdling_A : A; -fun bloodguilt_N : N; -fun bloodguilty_A : A; -fun bloodhound_N : N; -fun bloodily_Adv : Adv; -fun bloodiness_N : N; -fun bloodleaf_N : N; -fun bloodless_A : A; -fun bloodlessly_Adv : Adv; -fun bloodletting_N : N; -fun bloodlust_N : N; -fun bloodmobile_N : N; -fun bloodroot_N : N; -fun bloodshed_N : N; -fun bloodshot_A : A; -fun bloodstain_N : N; -fun bloodstained_A : A; -fun bloodstock_N : N; -fun bloodstone_N : N; -fun bloodstream_N : N; -fun bloodsucker_N : N; -fun bloodsucking_A : A; -fun bloodthirstiness_N : N; -fun bloodthirsty_A : A; -fun bloodworm_N : N; -fun bloodwort_N : N; -fun bloody_A : A; -fun bloody_Adv : Adv; -fun bloody_minded_A : A; -fun bloody_minded_A : A; -fun bloom_N : N; -fun bloom_V : V; -fun bloomer_N : N; -fun bloomers_N : N; -fun blooming_A : A; -fun blooming_N : N; -fun blossom_N : N; -fun blossom_V : V; -fun blossoming_N : N; -fun blot_N : N; -fun blot_V2 : V2; -fun blotch_N : N; -fun blotched_A : A; -fun blotchy_A : A; -fun blotted_out_A : A; -fun blotter_N : N; -fun blotting_paper_N : N; -fun blotto_A : A; -fun blouse_N : N; -fun blow_N : N; -fun blow_V : V; -fun blow_V2 : V2; -fun blow_by_blow_A : A; -fun blow_dry_V2 : V2; -fun blow_up_N : N; -fun blowback_N : N; -fun blower_N : N; -fun blowfish_N : N; -fun blowfly_N : N; -fun blowgun_N : N; -fun blowhole_N : N; -fun blowing_N : N; -fun blowing_up_N : N; -fun blowlamp_N : N; -fun blown_A : A; -fun blown_up_A : A; -fun blowout_N : N; -fun blowpipe_N : N; -fun blowsy_A : A; -fun blowtorch_N : N; -fun blowtube_N : N; -fun blowy_A : A; -fun blowzy_A : A; -fun blubber_N : N; -fun blubber_V : V; -fun blubber_V2 : V2; -fun blubberer_N : N; -fun blubbery_A : A; -fun blucher_N : N; -fun bludgeon_N : N; -fun bludgeon_V2 : V2; -fun bludgeoner_N : N; -fun blue_A : A; -fun blue_N : N; -fun blue_V2 : V2; -fun blue_black_A : A; -fun blue_chip_A : A; -fun blue_collar_A : A; -fun blue_collar_A : A; -fun blue_eyed_A : A; -fun blue_eyed_african_daisy_PN : PN; -fun blue_eyed_mary_PN : PN; -fun blue_flowered_A : A; -fun blue_fruited_A : A; -fun blue_grey_A : A; -fun blue_jacket_N : N; -fun blue_lilac_A : A; -fun blue_pencil_V2 : V2; -fun blue_point_siamese_PN : PN; -fun blue_purple_A : A; -fun blue_ribbon_A : A; -fun blue_sky_A : A; -fun blue_violet_A : A; -fun blue_white_A : A; -fun bluebell_N : N; -fun blueberry_N : N; -fun bluebird_N : N; -fun bluebonnet_N : N; -fun bluebottle_N : N; -fun bluecoat_N : N; -fun bluefin_N : N; -fun bluefish_N : N; -fun bluegill_N : N; -fun bluegrass_N : N; -fun bluehead_N : N; -fun bluejacket_N : N; -fun bluepoint_N : N; -fun blueprint_N : N; -fun blues_N : N; -fun bluestem_N : N; -fun bluestocking_N : N; -fun bluestone_N : N; -fun bluethroat_N : N; -fun bluetick_N : N; -fun bluetongue_N : N; -fun blueweed_N : N; -fun bluewing_N : N; -fun bluff_A : A; -fun bluff_N : N; -fun bluff_V : V; -fun bluff_V2 : V2; -fun bluffer_N : N; -fun bluffly_Adv : Adv; -fun bluffness_N : N; -fun bluing_N : N; -fun bluish_A : A; -fun bluish_green_A : A; -fun blunder_N : N; -fun blunder_V : V; -fun blunder_V2 : V2; -fun blunderbuss_N : N; -fun blunderer_N : N; -fun blunt_A : A; -fun blunt_V2 : V2; -fun blunted_A : A; -fun bluntness_N : N; -fun blur_N : N; -fun blur_V : V; -fun blur_V2 : V2; -fun blurb_N : N; -fun blurred_A : A; -fun blurt_V2 : V2; -fun blush_N : N; -fun blush_V : V; -fun blushful_A : A; -fun blushing_A : A; -fun bluster_N : N; -fun bluster_V : V; -fun bluster_V2 : V2; -fun blustering_A : A; -fun blustery_A : A; -fun blvd_N : N; -fun bma_N : N; -fun bmus_N : N; -fun bo'sn_N : N; -fun bo'sun_N : N; -fun boa_N : N; -fun boa_constrictor_N : N; -fun boar_N : N; -fun board_N : N; -fun board_V : V; -fun board_V2 : V2; -fun boarder_N : N; -fun boarding_N : N; -fun boarding_card_N : N; -fun boarding_house_N : N; -fun boarding_school_N : N; -fun boardroom_N : N; -fun boards_N : N; -fun boardwalk_N : N; -fun boarfish_N : N; -fun boarhound_N : N; -fun boast_N : N; -fun boast_V : V; -fun boast_V2 : V2; -fun boast_VS : VS; -fun boaster_N : N; -fun boastful_A : A; -fun boastfully_Adv : Adv; -fun boastfulness_N : N; -fun boat_N : N; -fun boat_V : V; -fun boat_V2 : V2; -fun boat_hook_N : N; -fun boat_house_N : N; -fun boat_race_N : N; -fun boat_shaped_A : A; -fun boat_train_N : N; -fun boatbill_N : N; -fun boatbuilder_N : N; -fun boater_N : N; -fun boathouse_N : N; -fun boating_N : N; -fun boatload_N : N; -fun boatman_N : N; -fun boatmanship_N : N; -fun boatswain_N : N; -fun boatyard_N : N; -fun bob_N : N; -fun bob_V : V; -fun bob_V2 : V2; -fun bobbin_N : N; -fun bobble_N : N; -fun bobby_N : N; -fun bobby_soxer_N : N; -fun bobbysoxer_N : N; -fun bobcat_N : N; -fun bobolink_N : N; -fun bobsled_N : N; -fun bobsled_V2 : V2; -fun bobsledding_N : N; -fun bobsleigh_N : N; -fun bobtail_A : A; -fun bobtail_N : N; -fun bobwhite_N : N; -fun bocce_N : N; -fun bocconia_N : N; -fun boche_A : A; -fun bock_N : N; -fun bodacious_A : A; -fun bode_V : V; -fun bode_V2 : V2; -fun bodega_N : N; -fun bodice_N : N; -fun bodied_A : A; -fun bodiless_A : A; -fun bodily_A : A; -fun bodily_Adv : Adv; -fun boding_N : N; -fun bodkin_N : N; -fun body_N : N; -fun body_english_PN : PN; -fun body_servant_N : N; -fun body_snatcher_N : N; -fun bodybuilder_N : N; -fun bodybuilding_N : N; -fun bodyguard_N : N; -fun bodywork_N : N; -fun boer_A : A; -fun boer_N : N; -fun boffin_N : N; -fun boffo_A : A; -fun bog_N : N; -fun bog_V : V; -fun bog_V2 : V2; -fun bogey_N : N; -fun bogeyman_N : N; -fun boggle_V : V; -fun boggle_V2 : V2; -fun boggy_A : A; -fun bogie_N : N; -fun bogus_A : A; -fun bogy_N : N; -fun bohemia_N : N; -fun bohemian_A : A; -fun bohemian_N : N; -fun bohemianism_N : N; -fun bohrium_N : N; -fun boil_N : N; -fun boil_V : V; -fun boil_V2 : V2; -fun boiled_A : A; -fun boiler_N : N; -fun boilerplate_N : N; -fun boilersuit_N : N; -fun boiling_Adv : Adv; -fun boiling_N : N; -fun boiling_point_N : N; -fun boisterous_A : A; -fun boisterousness_N : N; -fun bola_N : N; -fun bold_A : A; -fun boldface_N : N; -fun boldly_Adv : Adv; -fun boldness_N : N; -fun bole_N : N; -fun bolero_N : N; -fun bolete_N : N; -fun bolide_N : N; -fun bolivar_N : N; -fun bolivia_N : N; -fun bolivian_A : A; -fun bolivian_N : N; -fun boliviano_N : N; -fun boll_N : N; -fun bollard_N : N; -fun bollock_N : N; -fun bollworm_N : N; -fun bolo_N : N; -fun bologna_N : N; -fun bologram_N : N; -fun bolographic_A : A; -fun bolometer_N : N; -fun bolometric_A : A; -fun boloney_N : N; -fun bolshevik_N : N; -fun bolshy_A : A; -fun bolster_N : N; -fun bolster_V : V; -fun bolster_V2 : V2; -fun bolt_Adv : Adv; -fun bolt_N : N; -fun bolt_V : V; -fun bolt_V2 : V2; -fun bolt_hole_N : N; -fun bolt_hole_N : N; -fun bolti_N : N; -fun bolus_N : N; -fun bomb_N : N; -fun bomb_V : V; -fun bomb_V2 : V2; -fun bomb_proof_A : A; -fun bomb_sight_N : N; -fun bomb_site_N : N; -fun bombard_V2 : V2; -fun bombardier_N : N; -fun bombardment_N : N; -fun bombardon_N : N; -fun bombast_N : N; -fun bombastic_A : A; -fun bombastically_Adv : Adv; -fun bombazine_N : N; -fun bomber_N : N; -fun bombie_N : N; -fun bombing_N : N; -fun bomblet_N : N; -fun bombproof_A : A; -fun bombshell_N : N; -fun bombsight_N : N; -fun bombycid_N : N; -fun bon_mot_N : N; -fun bona_fide_A : A; -fun bona_fide_Adv : Adv; -fun bonanza_N : N; -fun bonbon_N : N; -fun bond_N : N; -fun bond_V2 : V2; -fun bond_holder_N : N; -fun bondable_A : A; -fun bondage_N : N; -fun bondholder_N : N; -fun bonding_N : N; -fun bondman_N : N; -fun bondsman_N : N; -fun bonduc_N : N; -fun bondwoman_N : N; -fun bone_A : A; -fun bone_N : N; -fun bone_V2 : V2; -fun bone_covered_A : A; -fun bone_dry_A : A; -fun bone_dry_A : A; -fun bone_head_N : N; -fun bone_idle_A : A; -fun bone_idle_A : A; -fun bone_lazy_A : A; -fun bone_setter_N : N; -fun boned_A : A; -fun bonefish_N : N; -fun boneless_A : A; -fun bonelike_A : A; -fun bonemeal_N : N; -fun boner_N : N; -fun bones_N : N; -fun boneset_N : N; -fun bonesetter_N : N; -fun boneshaker_N : N; -fun bonfire_N : N; -fun bong_N : N; -fun bongo_N : N; -fun bonheur_N : N; -fun bonhomie_N : N; -fun bonito_N : N; -fun bonk_V2 : V2; -fun bonkers_A : A; -fun bonnet_N : N; -fun bonnily_Adv : Adv; -fun bonny_A : A; -fun bonsai_N : N; -fun bonus_N : N; -fun bony_A : A; -fun bony_plated_A : A; -fun bonyness_N : N; -fun bonzer_A : A; -fun boo_N : N; -fun boo_V : V; -fun boo_V2 : V2; -fun boob_N : N; -fun boob_V : V; -fun booboisie_N : N; -fun booby_N : N; -fun booby_trap_N : N; -fun boodle_N : N; -fun booger_N : N; -fun boogie_N : N; -fun boogie_woogie_N : N; -fun book_N : N; -fun book_V2 : V2; -fun book_end_N : N; -fun book_keeper_N : N; -fun bookable_A : A; -fun bookbinder_N : N; -fun bookbindery_N : N; -fun bookbinding_N : N; -fun bookcase_N : N; -fun bookclub_N : N; -fun bookdealer_N : N; -fun booked_A : A; -fun bookend_N : N; -fun booker_N : N; -fun bookie_N : N; -fun booking_N : N; -fun bookish_A : A; -fun bookishness_N : N; -fun bookkeeper_N : N; -fun bookkeeping_N : N; -fun booklet_N : N; -fun booklouse_N : N; -fun bookmaker_N : N; -fun bookmark_N : N; -fun bookmarker_N : N; -fun bookmobile_N : N; -fun bookplate_N : N; -fun bookseller_N : N; -fun bookshelf_N : N; -fun bookshop_N : N; -fun bookstall_N : N; -fun bookworm_N : N; -fun boom_N : N; -fun boom_V : V; -fun boom_V2 : V2; -fun boomerang_N : N; -fun booming_A : A; -fun boon_A : A; -fun boon_N : N; -fun boondoggle_N : N; -fun boor_N : N; -fun boorish_A : A; -fun boorishly_Adv : Adv; -fun boorishness_N : N; -fun boost_N : N; -fun boost_V2 : V2; -fun booster_N : N; -fun boot_N : N; -fun boot_V2 : V2; -fun boot_shaped_A : A; -fun bootblack_N : N; -fun booted_A : A; -fun bootee_N : N; -fun booth_N : N; -fun boothose_N : N; -fun bootjack_N : N; -fun bootlace_N : N; -fun bootleg_A : A; -fun bootleg_N : N; -fun bootleg_V2 : V2; -fun bootlegger_N : N; -fun bootlegging_N : N; -fun bootless_A : A; -fun bootlicking_A : A; -fun bootmaker_N : N; -fun bootstrap_N : N; -fun booty_N : N; -fun booze_N : N; -fun booze_V : V; -fun booze_up_N : N; -fun boozer_N : N; -fun boozy_A : A; -fun bop_N : N; -fun bopeep_N : N; -fun boracic_A : A; -fun borage_N : N; -fun borate_N : N; -fun borated_A : A; -fun borax_N : N; -fun bordeaux_N : N; -fun bordelaise_N : N; -fun border_N : N; -fun border_V : V; -fun border_V2 : V2; -fun bordered_A : A; -fun borderer_N : N; -fun borderland_N : N; -fun borderline_A : A; -fun borderline_N : N; -fun bore_N : N; -fun bore_V : V; -fun bore_V2 : V2; -fun bore_hole_N : N; -fun boreal_A : A; -fun bored_A : A; -fun boredom_N : N; -fun borer_N : N; -fun boric_A : A; -fun boring_A : A; -fun boring_N : N; -fun boringly_Adv : Adv; -fun boringness_N : N; -fun born_A : A; -fun born_again_A : A; -fun born_again_christian_PN : PN; -fun bornite_N : N; -fun boron_N : N; -fun boronic_A : A; -fun borosilicate_N : N; -fun borough_N : N; -fun borough_english_PN : PN; -fun borrelia_N : N; -fun borrow_V : V; -fun borrow_V2 : V2; -fun borrow_VV : VV; -fun borrower_N : N; -fun borrowing_N : N; -fun borsch_N : N; -fun borstal_N : N; -fun bortsch_N : N; -fun borzoi_N : N; -fun bosc_N : N; -fun bosh_N : N; -fun bosk_N : N; -fun boskopoid_A : A; -fun bosky_A : A; -fun bosom_N : N; -fun bosomed_A : A; -fun bosomy_A : A; -fun boson_N : N; -fun boss_A : A; -fun boss_N : N; -fun boss_V2 : V2; -fun boss_eyed_A : A; -fun boss_eyed_A : A; -fun bossism_N : N; -fun bossy_A : A; -fun bot_N : N; -fun bota_N : N; -fun botanic_A : A; -fun botanical_A : A; -fun botanical_N : N; -fun botanist_N : N; -fun botanize_V : V; -fun botany_N : N; -fun botch_N : N; -fun botch_V2 : V2; -fun botcher_N : N; -fun botchy_A : A; -fun botfly_N : N; -fun both_A : A; -fun both_Adv : Adv; -fun both_Det : Det; -fun both7and_DConj : Conj; -fun bother_N : N; -fun bother_V : V; -fun bother_V2 : V2; -fun bother_V2V : V2V; -fun bothered_A : A; -fun bothersome_A : A; -fun botonee_A : A; -fun botryoid_A : A; -fun bottle_N : N; -fun bottle_V2 : V2; -fun bottle_fed_A : A; -fun bottle_fed_A : A; -fun bottle_green_A : A; -fun bottle_green_A : A; -fun bottle_shaped_A : A; -fun bottle_tree_N : N; -fun bottlebrush_N : N; -fun bottlecap_N : N; -fun bottlefeed_V2 : V2; -fun bottleneck_N : N; -fun bottler_N : N; -fun bottom_A : A; -fun bottom_N : N; -fun bottom_V : V; -fun bottom_dwelling_A : A; -fun bottom_feeder_N : N; -fun bottom_feeding_A : A; -fun bottom_up_A : A; -fun bottomed_A : A; -fun bottomland_N : N; -fun bottomless_A : A; -fun bottomlessness_N : N; -fun bottommost_A : A; -fun botuliform_A : A; -fun botulin_N : N; -fun botulinal_A : A; -fun botulinum_toxin_a_PN : PN; -fun botulinus_N : N; -fun botulism_N : N; -fun boucle_N : N; -fun boudoir_N : N; -fun bouffant_A : A; -fun bouffant_N : N; -fun bougainvillea_N : N; -fun bough_N : N; -fun boughed_A : A; -fun boughless_A : A; -fun boughten_A : A; -fun bouillabaisse_N : N; -fun bouillon_N : N; -fun boulder_N : N; -fun boulevard_N : N; -fun boulevardier_N : N; -fun boulle_N : N; -fun bounce_N : N; -fun bounce_V : V; -fun bounce_V2 : V2; -fun bouncer_N : N; -fun bouncing_A : A; -fun bouncy_A : A; -fun bound_A : A; -fun bound_N : N; -fun bound_V : V; -fun bound_V2 : V2; -fun bound_V2V : V2V; -fun bound_up_A : A; -fun boundary_N : N; -fun bounded_A : A; -fun bounden_A : A; -fun bounder_N : N; -fun boundless_A : A; -fun boundlessly_Adv : Adv; -fun bounteous_A : A; -fun bountied_A : A; -fun bountiful_A : A; -fun bountifully_Adv : Adv; -fun bounty_N : N; -fun bouquet_N : N; -fun bourbon_N : N; -fun bourgeois_A : A; -fun bourgeois_N : N; -fun bourgeoisie_N : N; -fun bourguignon_N : N; -fun bourn_N : N; -fun bourne_N : N; -fun bourse_N : N; -fun bourtree_N : N; -fun boustrophedon_N : N; -fun boustrophedonic_A : A; -fun bout_N : N; -fun boutique_N : N; -fun boutonniere_N : N; -fun bovid_N : N; -fun bovine_A : A; -fun bovine_N : N; -fun bovril_N : N; -fun bow_N : N; -fun bow_V : V; -fun bow_V2 : V2; -fun bow_wow_N : N; -fun bow_wow_N : N; -fun bowdlerization_N : N; -fun bowdlerize_V2 : V2; -fun bowed_A : A; -fun bowed_down_A : A; -fun bowel_N : N; -fun bowels_N : N; -fun bower_N : N; -fun bowerbird_N : N; -fun bowery_A : A; -fun bowfin_N : N; -fun bowfront_A : A; -fun bowhead_N : N; -fun bowie_knife_N : N; -fun bowing_N : N; -fun bowl_N : N; -fun bowl_V : V; -fun bowl_V2 : V2; -fun bowl_shaped_A : A; -fun bowleg_N : N; -fun bowler_N : N; -fun bowline_N : N; -fun bowling_N : N; -fun bowling_green_N : N; -fun bowls_N : N; -fun bowman_N : N; -fun bowsprit_N : N; -fun bowstring_N : N; -fun box_N : N; -fun box_V : V; -fun box_V2 : V2; -fun box_kite_N : N; -fun box_number_N : N; -fun box_office_N : N; -fun boxcar_N : N; -fun boxcars_N : N; -fun boxed_A : A; -fun boxer_N : N; -fun boxfish_N : N; -fun boxful_N : N; -fun boxing_N : N; -fun boxing_day_N : N; -fun boxing_glove_N : N; -fun boxing_match_N : N; -fun boxlike_A : A; -fun boxwood_N : N; -fun boy_N : N; -fun boycott_N : N; -fun boycott_V2 : V2; -fun boyfriend_N : N; -fun boyhood_N : N; -fun boyish_A : A; -fun boyishly_Adv : Adv; -fun boyishness_N : N; -fun boysenberry_N : N; -fun bra_N : N; -fun brace_N : N; -fun brace_V : V; -fun brace_V2 : V2; -fun braced_A : A; -fun bracelet_N : N; -fun bracer_N : N; -fun bracero_N : N; -fun brachial_A : A; -fun brachiate_A : A; -fun brachiation_N : N; -fun brachiopod_A : A; -fun brachiopod_N : N; -fun brachium_N : N; -fun brachycephalic_A : A; -fun brachycephalic_N : N; -fun brachycephaly_N : N; -fun brachydactylic_A : A; -fun brachydactyly_N : N; -fun brachypterous_A : A; -fun brachyuran_N : N; -fun brachyurous_A : A; -fun bracing_A : A; -fun bracken_N : N; -fun bracket_N : N; -fun bracket_V2 : V2; -fun brackish_A : A; -fun brackishness_N : N; -fun bract_N : N; -fun bracteal_A : A; -fun bracteate_A : A; -fun bracteolate_A : A; -fun bracteole_N : N; -fun brad_N : N; -fun bradawl_N : N; -fun bradycardia_N : N; -fun brae_N : N; -fun brag_N : N; -fun brag_V : V; -fun braggadocio_N : N; -fun braggart_N : N; -fun bragger_N : N; -fun bragging_N : N; -fun brahman_N : N; -fun brahmin_N : N; -fun brahminic_A : A; -fun braid_N : N; -fun braid_V2 : V2; -fun braided_A : A; -fun brail_N : N; -fun braille_N : N; -fun brain_N : N; -fun brain_V2 : V2; -fun brain_dead_A : A; -fun brain_fag_N : N; -fun brain_teaser_N : N; -fun brainchild_N : N; -fun brainless_A : A; -fun brainsick_A : A; -fun brainstem_N : N; -fun brainstorm_N : N; -fun brainstorming_N : N; -fun brainwash_V2 : V2; -fun brainwashed_A : A; -fun brainwashing_N : N; -fun brainwave_N : N; -fun brainworker_N : N; -fun brainy_A : A; -fun braise_V2 : V2; -fun braised_A : A; -fun braising_N : N; -fun brake_N : N; -fun brake_V : V; -fun brake_V2 : V2; -fun brakeman_N : N; -fun braky_A : A; -fun bramble_N : N; -fun brambling_N : N; -fun bran_N : N; -fun bran_new_A : A; -fun branch_N : N; -fun branch_V : V; -fun branched_A : A; -fun branchial_A : A; -fun branchiate_A : A; -fun branching_A : A; -fun branching_N : N; -fun branchiopod_A : A; -fun branchless_A : A; -fun branchlet_N : N; -fun branchy_A : A; -fun brand_N : N; -fun brand_V2 : V2; -fun brand_new_A : A; -fun brand_new_A : A; -fun brand_newness_N : N; -fun branded_A : A; -fun branding_iron_N : N; -fun brandish_V2 : V2; -fun brandy_N : N; -fun brandy_ball_N : N; -fun brandy_snap_N : N; -fun brandyball_N : N; -fun brandysnap_N : N; -fun brant_N : N; -fun brash_A : A; -fun brashness_N : N; -fun brass_N : N; -fun brassard_N : N; -fun brassavola_N : N; -fun brassbound_A : A; -fun brasserie_N : N; -fun brassie_N : N; -fun brassiere_N : N; -fun brassiere_1_N : N; -fun brassiere_2_N : N; -fun brassy_A : A; -fun brat_N : N; -fun brattice_N : N; -fun bratty_A : A; -fun bratwurst_N : N; -fun bravado_N : N; -fun brave_A : A; -fun brave_N : N; -fun brave_V2 : V2; -fun bravely_Adv : Adv; -fun bravery_N : N; -fun bravo_N : N; -fun bravura_N : N; -fun brawl_N : N; -fun brawl_V : V; -fun brawler_N : N; -fun brawn_N : N; -fun brawny_A : A; -fun bray_N : N; -fun bray_V : V; -fun bray_V2 : V2; -fun braze_V2 : V2; -fun brazen_A : A; -fun brazen_V2 : V2; -fun brazen_faced_A : A; -fun brazenly_Adv : Adv; -fun brazier_N : N; -fun brazilian_A : A; -fun brazilian_N : N; -fun brazilwood_N : N; -fun breach_N : N; -fun breach_V2 : V2; -fun bread_N : N; -fun bread_bin_N : N; -fun breadbasket_N : N; -fun breadboard_N : N; -fun breadcrumb_N : N; -fun breadfruit_N : N; -fun breadline_N : N; -fun breadroot_N : N; -fun breadstick_N : N; -fun breadstuff_N : N; -fun breadth_N : N; -fun breadthways_Adv : Adv; -fun breadthwise_Adv : Adv; -fun breadwinner_N : N; -fun break_N : N; -fun break_V : V; -fun break_V2 : V2; -fun break_apart_V2 : V2; -fun break_down_V2 : V2; -fun break_in_N : N; -fun break_up_N : N; -fun break_up_V2 : V2; -fun breakable_A : A; -fun breakable_N : N; -fun breakableness_N : N; -fun breakage_N : N; -fun breakaway_A : A; -fun breakaway_N : N; -fun breakaways_N : N; -fun breakax_N : N; -fun breakdown_N : N; -fun breaker_N : N; -fun breakfast_N : N; -fun breakfast_V : V; -fun breakneck_A : A; -fun breakthrough_N : N; -fun breakwater_N : N; -fun bream_N : N; -fun breast_N : N; -fun breast_V2 : V2; -fun breast_deep_Adv : Adv; -fun breast_deep_Adv : Adv; -fun breast_fed_A : A; -fun breast_fed_A : A; -fun breast_high_Adv : Adv; -fun breast_plate_N : N; -fun breasted_A : A; -fun breastfeed_V : V; -fun breastfeed_V2 : V2; -fun breastless_A : A; -fun breastplate_N : N; -fun breaststroke_N : N; -fun breaststroker_N : N; -fun breastwork_N : N; -fun breath_N : N; -fun breathalyser_N : N; -fun breathalyzer_N : N; -fun breathe_V : V; -fun breathe_V2 : V2; -fun breathed_A : A; -fun breather_N : N; -fun breathing_A : A; -fun breathing_N : N; -fun breathing_space_N : N; -fun breathless_A : A; -fun breathlessly_Adv : Adv; -fun breathtaking_A : A; -fun breccia_N : N; -fun breech_N : N; -fun breech_block_N : N; -fun breech_loading_A : A; -fun breechblock_N : N; -fun breechcloth_N : N; -fun breeched_A : A; -fun breeches_N : N; -fun breeches_buoy_N : N; -fun breechloader_N : N; -fun breed_N : N; -fun breed_V : V; -fun breed_V2 : V2; -fun breeder_N : N; -fun breeding_A : A; -fun breeding_N : N; -fun breeze_N : N; -fun breeze_V : V; -fun breezily_Adv : Adv; -fun breeziness_N : N; -fun breezy_A : A; -fun bregma_N : N; -fun bregmatic_A : A; -fun bren_N : N; -fun bren_gun_N : N; -fun brethren_N : N; -fun breve_N : N; -fun brevet_N : N; -fun breviary_N : N; -fun brevity_N : N; -fun brew_N : N; -fun brew_V : V; -fun brew_V2 : V2; -fun brewer_N : N; -fun brewery_N : N; -fun brewing_N : N; -fun brewpub_N : N; -fun briar_N : N; -fun briard_N : N; -fun briarroot_N : N; -fun briarwood_N : N; -fun bribable_A : A; -fun bribe_N : N; -fun bribe_V : V; -fun bribe_V2 : V2; -fun briber_N : N; -fun bribery_N : N; -fun bric_a_brac_N : N; -fun bric_a_brac_N : N; -fun brick_N : N; -fun brick_V2 : V2; -fun brick_field_N : N; -fun brick_shaped_A : A; -fun brickbat_N : N; -fun brickkiln_N : N; -fun bricklayer_N : N; -fun bricklaying_N : N; -fun brickwork_N : N; -fun brickyard_N : N; -fun bridal_A : A; -fun bridal_N : N; -fun bride_N : N; -fun bride_gift_N : N; -fun bridecake_N : N; -fun bridegroom_N : N; -fun bridesmaid_N : N; -fun bridge_N : N; -fun bridge_V2 : V2; -fun bridgeable_A : A; -fun bridged_t_N : N; -fun bridgehead_N : N; -fun bridle_N : N; -fun bridle_V : V; -fun bridle_V2 : V2; -fun bridle_path_N : N; -fun bridle_road_N : N; -fun bridoon_N : N; -fun brief_A : A; -fun brief_N : N; -fun brief_V2 : V2; -fun briefcase_N : N; -fun briefing_N : N; -fun briefless_A : A; -fun briefly_Adv : Adv; -fun briefness_N : N; -fun briefs_N : N; -fun brier_N : N; -fun brig_N : N; -fun brigade_N : N; -fun brigadier_N : N; -fun brigand_N : N; -fun brigandine_N : N; -fun brigantine_N : N; -fun bright_A : A; -fun bright_Adv : Adv; -fun bright_as_a_new_penny_A : A; -fun bright_red_A : A; -fun brighten_V : V; -fun brighten_V2 : V2; -fun brightly_colored_A : A; -fun brightness_N : N; -fun brill_N : N; -fun brilliance_N : N; -fun brilliancy_N : N; -fun brilliant_A : A; -fun brilliantine_N : N; -fun brilliantly_Adv : Adv; -fun brim_N : N; -fun brim_V : V; -fun brimful_A : A; -fun brimfull_A : A; -fun brimless_A : A; -fun brimstone_N : N; -fun brindled_A : A; -fun brine_N : N; -fun bring_V2 : V2; -fun bring_V2V : V2V; -fun bring_about_V2 : V2; -fun brininess_N : N; -fun brink_N : N; -fun brinkmanship_N : N; -fun briny_A : A; -fun brioche_N : N; -fun briquet_N : N; -fun briquette_N : N; -fun brisance_N : N; -fun brisant_A : A; -fun brisk_A : A; -fun brisket_N : N; -fun briskly_Adv : Adv; -fun brisling_N : N; -fun bristle_N : N; -fun bristle_V : V; -fun bristle_pointed_A : A; -fun bristlegrass_N : N; -fun bristlelike_A : A; -fun bristletail_N : N; -fun bristly_A : A; -fun brit_N : N; -fun britannic_A : A; -fun britches_N : N; -fun british_A : A; -fun britisher_N : N; -fun briton_A : A; -fun briton_N : N; -fun brittle_A : A; -fun brittle_N : N; -fun brittlebush_N : N; -fun brittleness_N : N; -fun broach_V : V; -fun broach_V2 : V2; -fun broad_A : A; -fun broad_N : N; -fun broad_brimmed_A : A; -fun broad_headed_A : A; -fun broad_minded_A : A; -fun broad_minded_A : A; -fun broad_mindedly_Adv : Adv; -fun broad_mindedness_N : N; -fun broad_mindedness_N : N; -fun broadax_N : N; -fun broadband_A : A; -fun broadbill_N : N; -fun broadcast_Adv : Adv; -fun broadcast_N : N; -fun broadcast_V : V; -fun broadcast_V2 : V2; -fun broadcaster_N : N; -fun broadcasting_A : A; -fun broadcasting_N : N; -fun broadcloth_N : N; -fun broaden_V : V; -fun broaden_V2 : V2; -fun broadening_N : N; -fun broadleaf_A : A; -fun broadloom_A : A; -fun broadloom_N : N; -fun broadly_Adv : Adv; -fun broadness_N : N; -fun broadsheet_N : N; -fun broadside_A : A; -fun broadside_Adv : Adv; -fun broadside_N : N; -fun broadsword_N : N; -fun broadtail_N : N; -fun broadways_Adv : Adv; -fun broadwise_Adv : Adv; -fun brocade_N : N; -fun brocade_V2 : V2; -fun brocaded_A : A; -fun broccoli_N : N; -fun brochette_N : N; -fun brochure_N : N; -fun brocket_N : N; -fun brodiaea_N : N; -fun brogan_N : N; -fun brogue_N : N; -fun broil_N : N; -fun broil_V : V; -fun broil_V2 : V2; -fun broiled_A : A; -fun broiler_N : N; -fun broke_A : A; -fun broke_VA : VA; -fun broke_VS : VS; -fun broken_A : A; -fun broken_backed_A : A; -fun broken_down_A : A; -fun broken_field_A : A; -fun broken_hearted_A : A; -fun brokenhearted_A : A; -fun broker_N : N; -fun broker_dealer_N : N; -fun brokerage_N : N; -fun brolly_N : N; -fun brome_N : N; -fun bromic_A : A; -fun bromide_N : N; -fun bromidic_A : A; -fun bromine_N : N; -fun bromoform_N : N; -fun bronchial_A : A; -fun bronchiolar_A : A; -fun bronchiole_N : N; -fun bronchiolitis_N : N; -fun bronchitic_A : A; -fun bronchitis_N : N; -fun bronchodilator_N : N; -fun bronchopneumonia_N : N; -fun bronchoscope_N : N; -fun bronchoscopic_A : A; -fun bronchospasm_N : N; -fun bronchus_N : N; -fun bronco_N : N; -fun bronze_A : A; -fun bronze_N : N; -fun bronze_V : V; -fun bronze_V2 : V2; -fun bronze_red_A : A; -fun bronzed_A : A; -fun brooch_N : N; -fun brood_N : N; -fun brood_V : V; -fun brood_hen_N : N; -fun brood_mare_N : N; -fun brooding_A : A; -fun brooding_N : N; -fun broodmare_N : N; -fun broody_A : A; -fun brook_N : N; -fun brook_V2 : V2; -fun brooklet_N : N; -fun brooklime_N : N; -fun brookweed_N : N; -fun broom_N : N; -fun broomcorn_N : N; -fun broomstick_N : N; -fun broomweed_N : N; -fun broth_N : N; -fun brothel_N : N; -fun brother_N : N; -fun brother_in_law_N : N; -fun brother_in_law_N : N; -fun brotherhood_N : N; -fun brotherly_A : A; -fun brotherly_Adv : Adv; -fun brotula_N : N; -fun brougham_N : N; -fun brought_V : V; -fun brought_VS : VS; -fun brouhaha_N : N; -fun brow_N : N; -fun browbeat_V2 : V2; -fun brown_A : A; -fun brown_N : N; -fun brown_V : V; -fun brown_V2 : V2; -fun brown_betty_PN : PN; -fun brown_black_A : A; -fun brown_green_A : A; -fun brown_grey_A : A; -fun brown_purple_A : A; -fun brown_speckled_A : A; -fun brown_striped_A : A; -fun brownie_N : N; -fun brownish_A : A; -fun brownstone_N : N; -fun browntail_N : N; -fun browse_N : N; -fun browse_V : V; -fun browser_N : N; -fun brucellosis_N : N; -fun brucine_N : N; -fun bruin_N : N; -fun bruise_N : N; -fun bruise_V : V; -fun bruise_V2 : V2; -fun bruiser_N : N; -fun bruising_A : A; -fun bruit_V2 : V2; -fun brumal_A : A; -fun brumous_A : A; -fun brunch_N : N; -fun brunch_V : V; -fun bruneian_A : A; -fun bruneian_N : N; -fun brunet_A : A; -fun brunet_N : N; -fun brunette_N : N; -fun brunt_N : N; -fun brush_N : N; -fun brush_V : V; -fun brush_V2 : V2; -fun brush_off_N : N; -fun brush_off_N : N; -fun brush_up_N : N; -fun brushed_A : A; -fun brushlike_A : A; -fun brushwood_N : N; -fun brushwork_N : N; -fun brusque_A : A; -fun brusqueness_N : N; -fun brut_A : A; -fun brutal_A : A; -fun brutality_N : N; -fun brutalization_N : N; -fun brutalize_V2 : V2; -fun brute_N : N; -fun brutish_A : A; -fun bruxism_N : N; -fun bryanthus_N : N; -fun bryony_N : N; -fun bryophyte_N : N; -fun bryophytic_A : A; -fun bryozoan_N : N; -fun bsc_N : N; -fun bubaline_A : A; -fun bubble_N : N; -fun bubble_V : V; -fun bubble_V2 : V2; -fun bubbler_N : N; -fun bubbliness_N : N; -fun bubbling_A : A; -fun bubbly_A : A; -fun bubbly_N : N; -fun bubo_N : N; -fun bubonic_A : A; -fun buccal_A : A; -fun buccaneer_N : N; -fun buck_N : N; -fun buck_V : V; -fun buck_V2 : V2; -fun buck_and_wing_N : N; -fun buck_toothed_A : A; -fun buckboard_N : N; -fun bucked_up_A : A; -fun bucket_N : N; -fun bucket_V : V; -fun bucketful_N : N; -fun buckeye_N : N; -fun buckle_N : N; -fun buckle_V : V; -fun buckle_V2 : V2; -fun buckler_N : N; -fun buckleya_N : N; -fun buckminsterfullerene_N : N; -fun buckram_N : N; -fun bucksaw_N : N; -fun buckshee_A : A; -fun buckshot_N : N; -fun buckskin_N : N; -fun buckskins_N : N; -fun buckthorn_N : N; -fun bucktooth_N : N; -fun buckwheat_N : N; -fun bucolic_A : A; -fun bucolics_N : N; -fun bud_N : N; -fun bud_V : V; -fun buddhism_N : N; -fun buddhist_N : N; -fun budding_A : A; -fun budding_N : N; -fun buddy_N : N; -fun budge_V : V; -fun budge_V2 : V2; -fun budgerigar_N : N; -fun budget_N : N; -fun budget_V : V; -fun budget_V2 : V2; -fun budgetary_A : A; -fun budgie_N : N; -fun buff_A : A; -fun buff_N : N; -fun buff_V2 : V2; -fun buff_brown_A : A; -fun buff_colored_A : A; -fun buffalo_N : N; -fun buffalofish_N : N; -fun buffer_N : N; -fun buffer_V2 : V2; -fun buffet_N : N; -fun buffet_V : V; -fun buffet_V2 : V2; -fun buffeted_A : A; -fun bufflehead_N : N; -fun buffoon_N : N; -fun buffoonery_N : N; -fun buffoonish_A : A; -fun bufo_N : N; -fun bug_N : N; -fun bug_V2 : V2; -fun bug_hunter_N : N; -fun bugaboo_N : N; -fun bugbane_N : N; -fun bugbear_N : N; -fun bugged_A : A; -fun bugger_N : N; -fun bugger_V : V; -fun bugger_V2 : V2; -fun bugger_all_N : N; -fun buggery_N : N; -fun bugginess_N : N; -fun buggy_A : A; -fun buggy_N : N; -fun bugle_N : N; -fun bugler_N : N; -fun bugleweed_N : N; -fun bugloss_N : N; -fun buhl_N : N; -fun build_N : N; -fun build_V : V; -fun build_V2 : V2; -fun build_up_N : N; -fun builder_N : N; -fun building_N : N; -fun building_society_N : N; -fun buildup_N : N; -fun built_A : A; -fun built_in_A : A; -fun built_in_A : A; -fun built_up_A : A; -fun built_up_A : A; -fun bulb_N : N; -fun bulbaceous_A : A; -fun bulbar_A : A; -fun bulbed_A : A; -fun bulbil_N : N; -fun bulblike_A : A; -fun bulbous_A : A; -fun bulbul_N : N; -fun bulgarian_A : A; -fun bulgarian_N : N; -fun bulge_N : N; -fun bulge_V : V; -fun bulge_V2 : V2; -fun bulgur_N : N; -fun bulimarexia_N : N; -fun bulimia_N : N; -fun bulimic_A : A; -fun bulimic_N : N; -fun bulk_N : N; -fun bulk_V : V; -fun bulkhead_N : N; -fun bulkiness_N : N; -fun bulky_A : A; -fun bull_N : N; -fun bull's_eye_N : N; -fun bull_headed_A : A; -fun bull_neck_N : N; -fun bull_terrier_N : N; -fun bulla_N : N; -fun bullace_N : N; -fun bullate_A : A; -fun bullbrier_N : N; -fun bulldog_N : N; -fun bulldoze_V2 : V2; -fun bulldozer_N : N; -fun bullet_N : N; -fun bullet_headed_A : A; -fun bullet_headed_A : A; -fun bullethead_N : N; -fun bulletin_N : N; -fun bulletproof_A : A; -fun bullfight_N : N; -fun bullfighter_N : N; -fun bullfighting_N : N; -fun bullfinch_N : N; -fun bullfrog_N : N; -fun bullhead_N : N; -fun bullheaded_A : A; -fun bullhorn_N : N; -fun bullion_N : N; -fun bullish_A : A; -fun bullnecked_A : A; -fun bullnose_N : N; -fun bullock_N : N; -fun bullock_V2 : V2; -fun bullocky_A : A; -fun bullpen_N : N; -fun bullring_N : N; -fun bullshit_N : N; -fun bullshit_V : V; -fun bullshot_N : N; -fun bullterrier_N : N; -fun bully_A : A; -fun bully_N : N; -fun bully_V : V; -fun bully_V2 : V2; -fun bullyboy_N : N; -fun bullying_N : N; -fun bulrush_N : N; -fun bulwark_N : N; -fun bum_A : A; -fun bum_N : N; -fun bum_V : V; -fun bum_V2 : V2; -fun bumblebee_N : N; -fun bumbling_A : A; -fun bumboat_N : N; -fun bumf_N : N; -fun bummer_N : N; -fun bump_Adv : Adv; -fun bump_N : N; -fun bump_V : V; -fun bump_V2 : V2; -fun bumper_N : N; -fun bumper_to_bumper_A : A; -fun bumpiness_N : N; -fun bumpkin_N : N; -fun bumpkinly_A : A; -fun bumptious_A : A; -fun bumptiously_Adv : Adv; -fun bumptiousness_N : N; -fun bumpy_A : A; -fun bun_N : N; -fun buna_N : N; -fun bunch_N : N; -fun bunch_V : V; -fun bunch_V2 : V2; -fun bunchberry_N : N; -fun bunchgrass_N : N; -fun bunchy_A : A; -fun bunco_N : N; -fun bundle_N : N; -fun bundle_V : V; -fun bundle_V2 : V2; -fun bundled_up_A : A; -fun bundling_N : N; -fun bunfight_N : N; -fun bung_N : N; -fun bung_V2 : V2; -fun bung_hole_N : N; -fun bungaloid_A : A; -fun bungalow_N : N; -fun bungee_N : N; -fun bunghole_N : N; -fun bungle_N : N; -fun bungle_V : V; -fun bungle_V2 : V2; -fun bungled_A : A; -fun bungler_N : N; -fun bungling_A : A; -fun bunion_N : N; -fun bunji_bunji_N : N; -fun bunk_N : N; -fun bunk_V : V; -fun bunker_N : N; -fun bunker_V : V; -fun bunker_V2 : V2; -fun bunkmate_N : N; -fun bunkum_N : N; -fun bunny_N : N; -fun bunsen_N : N; -fun bunt_N : N; -fun buntal_N : N; -fun bunter_N : N; -fun bunting_N : N; -fun bunyavirus_N : N; -fun buoy_N : N; -fun buoy_V : V; -fun buoy_V2 : V2; -fun buoyancy_N : N; -fun buoyant_A : A; -fun buoyantly_Adv : Adv; -fun bur_N : N; -fun burberry_N : N; -fun burble_V : V; -fun burble_V2 : V2; -fun burble_VS : VS; -fun burbling_A : A; -fun burbot_N : N; -fun burden_N : N; -fun burden_V2 : V2; -fun burdened_A : A; -fun burdenless_A : A; -fun burdensome_A : A; -fun burdensomeness_N : N; -fun burdock_N : N; -fun bureau_N : N; -fun bureaucracy_N : N; -fun bureaucrat_N : N; -fun bureaucratic_A : A; -fun bureaucratically_Adv : Adv; -fun burette_N : N; -fun burg_N : N; -fun burgeon_V : V; -fun burgess_N : N; -fun burgh_N : N; -fun burgher_N : N; -fun burglar_N : N; -fun burglar_alarm_N : N; -fun burglar_proof_A : A; -fun burglarious_A : A; -fun burglarproof_A : A; -fun burglary_N : N; -fun burgle_V : V; -fun burgle_V2 : V2; -fun burgomaster_N : N; -fun burgoo_N : N; -fun burgrass_N : N; -fun burgrave_N : N; -fun burgundy_N : N; -fun burial_N : N; -fun burial_ground_N : N; -fun buried_A : A; -fun burin_N : N; -fun burke_V2 : V2; -fun burked_A : A; -fun burl_N : N; -fun burl_V2 : V2; -fun burlap_N : N; -fun burled_A : A; -fun burlesque_A : A; -fun burlesque_N : N; -fun burlesque_V2 : V2; -fun burly_A : A; -fun burmese_A : A; -fun burmese_N : N; -fun burn_N : N; -fun burn_V : V; -fun burn_V2 : V2; -fun burn_up_N : N; -fun burnable_A : A; -fun burned_A : A; -fun burned_out_A : A; -fun burner_N : N; -fun burning_A : A; -fun burning_N : N; -fun burnish_V : V; -fun burnish_V2 : V2; -fun burnous_N : N; -fun burnouse_N : N; -fun burnup_N : N; -fun burp_N : N; -fun burp_V : V; -fun burp_V2 : V2; -fun burqa_N : N; -fun burr_N : N; -fun burr_V : V; -fun burr_V2 : V2; -fun burr_drill_N : N; -fun burr_headed_A : A; -fun burrawong_N : N; -fun burrfish_N : N; -fun burrito_N : N; -fun burrlike_A : A; -fun burro_N : N; -fun burrow_N : N; -fun burrow_V : V; -fun burrow_V2 : V2; -fun bursa_N : N; -fun bursal_A : A; -fun bursar_N : N; -fun bursary_N : N; -fun bursiform_A : A; -fun bursitis_N : N; -fun burst_N : N; -fun burst_V : V; -fun burst_V2 : V2; -fun burthen_N : N; -fun burthen_V2 : V2; -fun burton_N : N; -fun burundian_A : A; -fun burundian_N : N; -fun bury_V : V; -fun bury_V2 : V2; -fun burying_N : N; -fun burying_ground_N : N; -fun bus_N : N; -fun bus_V : V; -fun bus_V2 : V2; -fun busbar_N : N; -fun busboy_N : N; -fun busby_N : N; -fun bush_N : N; -fun bush_league_A : A; -fun bushbuck_N : N; -fun bushel_N : N; -fun bushing_N : N; -fun bushman_N : N; -fun bushtit_N : N; -fun bushwhacker_N : N; -fun bushwhacking_A : A; -fun bushy_A : A; -fun busily_Adv : Adv; -fun business_N : N; -fun businesslike_A : A; -fun businessman_N : N; -fun businessmen_N : N; -fun businessperson_N : N; -fun businesswoman_N : N; -fun busker_N : N; -fun buskin_N : N; -fun busload_N : N; -fun busman_N : N; -fun buspirone_N : N; -fun bust_N : N; -fun bust_V : V; -fun bust_V2 : V2; -fun bust_up_N : N; -fun bust_up_N : N; -fun bustard_N : N; -fun buster_N : N; -fun bustier_N : N; -fun bustle_N : N; -fun bustle_V : V; -fun bustle_V2 : V2; -fun bustling_A : A; -fun busy_A : A; -fun busy_V2 : V2; -fun busybody_N : N; -fun busyness_N : N; -fun busywork_N : N; -fun but_Adv : Adv; -fun but_Prep : Prep; -fun butacaine_N : N; -fun butadiene_N : N; -fun butane_N : N; -fun butanone_N : N; -fun butch_A : A; -fun butch_N : N; -fun butcher_N : N; -fun butcher_V2 : V2; -fun butcherbird_N : N; -fun butchery_N : N; -fun buteonine_A : A; -fun buteonine_N : N; -fun butler_N : N; -fun butt_N : N; -fun butt_V : V; -fun butt_V2 : V2; -fun butte_N : N; -fun butter_N : N; -fun butter_V2 : V2; -fun butterbean_N : N; -fun butterbur_N : N; -fun buttercrunch_N : N; -fun buttercup_N : N; -fun butterfat_N : N; -fun butterfingers_N : N; -fun butterfish_N : N; -fun butterfly_N : N; -fun butterfly_shaped_A : A; -fun buttermilk_N : N; -fun butternut_N : N; -fun butterscotch_N : N; -fun butterweed_N : N; -fun butterwort_N : N; -fun buttery_A : A; -fun buttery_N : N; -fun buttinsky_N : N; -fun buttock_N : N; -fun buttocks_N : N; -fun button_N : N; -fun button_V : V; -fun button_V2 : V2; -fun button_down_A : A; -fun button_shaped_A : A; -fun buttoned_A : A; -fun buttoned_up_A : A; -fun buttoned_up_A : A; -fun buttonhole_N : N; -fun buttonhole_V2 : V2; -fun buttonhook_N : N; -fun buttonwood_N : N; -fun buttony_A : A; -fun buttress_N : N; -fun buttress_V2 : V2; -fun butty_N : N; -fun butut_N : N; -fun butyl_N : N; -fun butylene_N : N; -fun butyraceous_A : A; -fun butyric_A : A; -fun butyrin_N : N; -fun buxom_A : A; -fun buxomness_N : N; -fun buy_N : N; -fun buy_V : V; -fun buy_V2 : V2; -fun buyer_N : N; -fun buying_N : N; -fun buyout_N : N; -fun buzz_N : N; -fun buzz_V : V; -fun buzz_V2 : V2; -fun buzzard_N : N; -fun buzzer_N : N; -fun buzzword_N : N; -fun bvm_N : N; -fun by_Adv : Adv; -fun by_Prep : Prep; -fun by_a_long_shot_Adv : Adv; -fun by_all_means_Adv : Adv; -fun by_and_by_Adv : Adv; -fun by_and_by_N : N; -fun by_and_large_Adv : Adv; -fun by_catch_N : N; -fun by_chance_Adv : Adv; -fun by_election_N : N; -fun by_election_N : N; -fun by_far_Adv : Adv; -fun by_fits_and_starts_Adv : Adv; -fun by_hand_Adv : Adv; -fun by_heart_Adv : Adv; -fun by_hook_or_by_crook_Adv : Adv; -fun by_inches_Adv : Adv; -fun by_line_N : N; -fun by_machine_Adv : Adv; -fun by_no_means_Adv : Adv; -fun by_product_N : N; -fun by_rights_Adv : Adv; -fun by_the_piece_Adv : Adv; -fun by_the_way_Adv : Adv; -fun by_word_of_mouth_Adv : Adv; -fun bye_N : N; -fun bye_bye_N : N; -fun bye_law_N : N; -fun bygone_A : A; -fun bygone_N : N; -fun bylaw_N : N; -fun bypass_N : N; -fun bypass_V2 : V2; -fun bypath_N : N; -fun byplay_N : N; -fun byproduct_N : N; -fun byroad_N : N; -fun byssus_N : N; -fun bystander_N : N; -fun byte_N : N; -fun byway_N : N; -fun byword_N : N; -fun c_of_e_N : N; -fun ca'canny_N : N; -fun cab_N : N; -fun cab_V2 : V2; -fun cab_rank_N : N; -fun cabal_N : N; -fun cabala_N : N; -fun cabalist_N : N; -fun cabalistic_A : A; -fun cabana_N : N; -fun cabaret_N : N; -fun cabbage_N : N; -fun cabbage_V2 : V2; -fun cabbageworm_N : N; -fun cabby_N : N; -fun caber_N : N; -fun cabin_N : N; -fun cabinet_N : N; -fun cabinet_maker_N : N; -fun cabinetmaker_N : N; -fun cabinetmaking_N : N; -fun cabinetwork_N : N; -fun cable_N : N; -fun cable_V : V; -fun cable_V2 : V2; -fun cable's_length_N : N; -fun cable_car_N : N; -fun cable_length_N : N; -fun cable_railway_N : N; -fun cablegram_N : N; -fun cabman_N : N; -fun cabochon_N : N; -fun caboodle_N : N; -fun caboose_N : N; -fun cabotage_N : N; -fun cabstand_N : N; -fun cacao_N : N; -fun cacao_bean_N : N; -fun cacao_tree_N : N; -fun cache_N : N; -fun cache_V2 : V2; -fun cachectic_A : A; -fun cachet_N : N; -fun cachexia_N : N; -fun cachinnation_N : N; -fun cachou_N : N; -fun cacique_N : N; -fun cackle_N : N; -fun cackle_V : V; -fun cackle_V2 : V2; -fun cackler_N : N; -fun cackly_A : A; -fun cacodemon_N : N; -fun cacodemonic_A : A; -fun cacodyl_N : N; -fun cacodylic_A : A; -fun cacogenesis_N : N; -fun cacophonous_A : A; -fun cacophony_N : N; -fun cactus_N : N; -fun cacuminal_A : A; -fun cad_N : N; -fun cadaster_N : N; -fun cadastral_A : A; -fun cadaver_N : N; -fun cadaverine_N : N; -fun cadaverous_A : A; -fun caddie_N : N; -fun caddish_A : A; -fun caddisworm_N : N; -fun caddy_N : N; -fun cadence_N : N; -fun cadenced_A : A; -fun cadenza_N : N; -fun cadet_N : N; -fun cadetship_N : N; -fun cadge_V : V; -fun cadge_V2 : V2; -fun cadger_N : N; -fun cadmium_N : N; -fun cadre_N : N; -fun caducean_A : A; -fun caduceus_N : N; -fun caducous_A : A; -fun caecilian_A : A; -fun caecilian_N : N; -fun caesar_N : N; -fun caesarian_A : A; -fun caespitose_A : A; -fun caesura_N : N; -fun caesural_A : A; -fun cafe_N : N; -fun cafe_au_lait_N : N; -fun cafeteria_N : N; -fun caff_N : N; -fun caffeine_N : N; -fun caffeinic_A : A; -fun caffeinism_N : N; -fun caftan_N : N; -fun cage_N : N; -fun cage_V2 : V2; -fun cagey_A : A; -fun cagily_Adv : Adv; -fun cagoule_N : N; -fun cahoot_N : N; -fun caiman_N : N; -fun cairn_N : N; -fun cairned_A : A; -fun cairngorm_N : N; -fun caisson_N : N; -fun caitiff_A : A; -fun caitiff_N : N; -fun cajole_V2 : V2; -fun cajolery_N : N; -fun cake_N : N; -fun cake_V : V; -fun cake_V2 : V2; -fun cakewalk_N : N; -fun calaba_N : N; -fun calabash_N : N; -fun caladenia_N : N; -fun caladium_N : N; -fun calamint_N : N; -fun calamitous_A : A; -fun calamity_N : N; -fun calamus_N : N; -fun calando_A : A; -fun calanthe_N : N; -fun calash_N : N; -fun calcaneal_A : A; -fun calcareous_A : A; -fun calced_A : A; -fun calceolaria_N : N; -fun calceolate_A : A; -fun calceus_N : N; -fun calcic_A : A; -fun calcicolous_A : A; -fun calciferous_A : A; -fun calcific_A : A; -fun calcification_N : N; -fun calcifugous_A : A; -fun calcify_V : V; -fun calcify_V2 : V2; -fun calcimine_N : N; -fun calcination_N : N; -fun calcine_V : V; -fun calcine_V2 : V2; -fun calcite_N : N; -fun calcitic_A : A; -fun calcitonin_N : N; -fun calcium_N : N; -fun calcium_cyanamide_N : N; -fun calculable_A : A; -fun calculate_V : V; -fun calculate_V2 : V2; -fun calculate_VS : VS; -fun calculating_A : A; -fun calculatingly_Adv : Adv; -fun calculation_N : N; -fun calculator_N : N; -fun calculous_A : A; -fun calculus_N : N; -fun caldera_N : N; -fun caldron_N : N; -fun calefacient_A : A; -fun calefaction_N : N; -fun calefactory_A : A; -fun calendar_N : N; -fun calender_N : N; -fun calender_V2 : V2; -fun calendric_A : A; -fun calendula_N : N; -fun calf_N : N; -fun calf_love_N : N; -fun calibrate_V2 : V2; -fun calibrated_A : A; -fun calibration_N : N; -fun calibre_N : N; -fun caliche_N : N; -fun caliche_topped_A : A; -fun calico_A : A; -fun calico_N : N; -fun calif_N : N; -fun californian_A : A; -fun californian_N : N; -fun californium_N : N; -fun caliginous_A : A; -fun caliper_N : N; -fun caliph_N : N; -fun caliphate_N : N; -fun calisaya_N : N; -fun calisthenic_A : A; -fun calisthenics_N : N; -fun calk_N : N; -fun calk_V2 : V2; -fun call_N : N; -fun call_V : V; -fun call_V2 : V2; -fun call_V2V : V2V; -fun call_VS : VS; -fun call_back_N : N; -fun call_board_N : N; -fun call_box_N : N; -fun call_girl_N : N; -fun call_in_N : N; -fun call_out_N : N; -fun call_over_N : N; -fun call_up_N : N; -fun callable_A : A; -fun caller_A : A; -fun caller_N : N; -fun caller_id_PN : PN; -fun calliandra_N : N; -fun calligrapher_N : N; -fun calligraphic_A : A; -fun calligraphy_N : N; -fun calling_N : N; -fun calliope_N : N; -fun calliopsis_N : N; -fun callipygian_A : A; -fun callisthenics_N : N; -fun callithump_N : N; -fun callithumpian_A : A; -fun callosity_N : N; -fun callosotomy_N : N; -fun callous_A : A; -fun calloused_A : A; -fun callously_Adv : Adv; -fun callousness_N : N; -fun callow_A : A; -fun callowness_N : N; -fun callus_N : N; -fun calm_A : A; -fun calm_N : N; -fun calm_V : V; -fun calm_V2 : V2; -fun calm_down_V2 : V2; -fun calmly_Adv : Adv; -fun calmness_N : N; -fun calomel_N : N; -fun caloric_A : A; -fun calorie_N : N; -fun calorifacient_A : A; -fun calorific_A : A; -fun calorimeter_N : N; -fun calorimetric_A : A; -fun calorimetry_N : N; -fun calosoma_N : N; -fun calpac_N : N; -fun calque_N : N; -fun caltrop_N : N; -fun calumet_N : N; -fun calumniate_V2 : V2; -fun calumniatory_A : A; -fun calumny_N : N; -fun calvaria_N : N; -fun calvary_N : N; -fun calve_V : V; -fun calving_N : N; -fun calvinism_N : N; -fun calvinist_N : N; -fun calyceal_A : A; -fun calycular_A : A; -fun calyculate_A : A; -fun calyculus_N : N; -fun calypso_N : N; -fun calyptra_N : N; -fun calyptrate_A : A; -fun calyx_N : N; -fun cam_N : N; -fun camail_N : N; -fun camaraderie_N : N; -fun camas_N : N; -fun camber_N : N; -fun camber_V : V; -fun camber_V2 : V2; -fun cambial_A : A; -fun cambium_N : N; -fun cambodian_A : A; -fun cambodian_N : N; -fun cambric_N : N; -fun camcorder_N : N; -fun camel_N : N; -fun camel_hair_N : N; -fun camellia_N : N; -fun camelpox_N : N; -fun camembert_N : N; -fun cameo_N : N; -fun camera_N : N; -fun cameraman_N : N; -fun cameroonian_A : A; -fun cameroonian_N : N; -fun camion_N : N; -fun camise_N : N; -fun camisole_N : N; -fun camlet_N : N; -fun camomile_N : N; -fun camouflage_N : N; -fun camouflage_V2 : V2; -fun camouflaged_A : A; -fun camp_A : A; -fun camp_N : N; -fun camp_V : V; -fun camp_V2 : V2; -fun camp_bed_N : N; -fun camp_chair_N : N; -fun camp_fire_N : N; -fun camp_follower_N : N; -fun camp_made_A : A; -fun camp_stool_N : N; -fun campaign_N : N; -fun campaign_V : V; -fun campaigner_N : N; -fun campaigning_N : N; -fun campanile_N : N; -fun campanula_N : N; -fun campanulate_A : A; -fun camper_N : N; -fun campestral_A : A; -fun campfire_N : N; -fun camphor_N : N; -fun camphoraceous_A : A; -fun camphorated_A : A; -fun camphoric_A : A; -fun camping_N : N; -fun campion_N : N; -fun campmate_N : N; -fun campsite_N : N; -fun campstool_N : N; -fun campus_N : N; -fun campylotropous_A : A; -fun camshaft_N : N; -fun camwood_N : N; -fun can_N : N; -fun can_V2 : V2; -fun can_VV : VV; -fun can_do_A : A; -fun canadian_A : A; -fun canadian_N : N; -fun canal_N : N; -fun canal_of_schlemm_PN : PN; -fun canalicular_A : A; -fun canaliculate_A : A; -fun canaliculus_N : N; -fun canalization_N : N; -fun canalize_V2 : V2; -fun canape_N : N; -fun canard_N : N; -fun canary_A : A; -fun canary_N : N; -fun canary_bird_N : N; -fun canary_wine_N : N; -fun canasta_N : N; -fun canavanine_N : N; -fun cancan_N : N; -fun cancel_V : V; -fun cancel_V2 : V2; -fun cancellate_A : A; -fun cancellation_N : N; -fun cancer_N : N; -fun cancerous_A : A; -fun cancerweed_N : N; -fun cancroid_A : A; -fun cancroid_N : N; -fun candelabrum_N : N; -fun candelilla_N : N; -fun candescent_A : A; -fun candid_A : A; -fun candida_N : N; -fun candidate_N : N; -fun candidature_N : N; -fun candidiasis_N : N; -fun candied_A : A; -fun candle_N : N; -fun candle_power_N : N; -fun candlelight_N : N; -fun candlemaker_N : N; -fun candlenut_N : N; -fun candlepin_N : N; -fun candlepins_N : N; -fun candlepower_N : N; -fun candlesnuffer_N : N; -fun candlestick_N : N; -fun candlewick_N : N; -fun candlewood_N : N; -fun candor_N : N; -fun candour_N : N; -fun candy_N : N; -fun candy_V : V; -fun candy_V2 : V2; -fun candy_floss_N : N; -fun candy_like_A : A; -fun candy_scented_A : A; -fun candytuft_N : N; -fun cane_N : N; -fun cane_V2 : V2; -fun canebrake_N : N; -fun canella_N : N; -fun canescent_A : A; -fun canfield_N : N; -fun cangue_N : N; -fun canicular_A : A; -fun canine_A : A; -fun canine_N : N; -fun canistel_N : N; -fun canister_N : N; -fun canker_N : N; -fun canker_V2 : V2; -fun cankerous_A : A; -fun cankerworm_N : N; -fun canna_N : N; -fun cannabin_N : N; -fun cannabis_N : N; -fun canned_A : A; -fun cannelloni_N : N; -fun cannery_N : N; -fun cannibal_N : N; -fun cannibalic_A : A; -fun cannibalism_N : N; -fun cannibalistic_A : A; -fun cannibalize_V2 : V2; -fun cannikin_N : N; -fun cannily_Adv : Adv; -fun cannon_N : N; -fun cannon_fodder_N : N; -fun cannonade_N : N; -fun cannonball_N : N; -fun cannula_N : N; -fun cannulation_N : N; -fun canny_A : A; -fun canoe_N : N; -fun canoe_V2 : V2; -fun canoeist_N : N; -fun canon_N : N; -fun canon_1_N : N; -fun canon_2_N : N; -fun canonic_A : A; -fun canonical_A : A; -fun canonically_Adv : Adv; -fun canonist_A : A; -fun canonist_N : N; -fun canonization_N : N; -fun canonize_V2 : V2; -fun canonized_A : A; -fun canopied_A : A; -fun canopy_N : N; -fun canorous_A : A; -fun cant_N : N; -fun cant_V : V; -fun cant_V2 : V2; -fun cantabile_A : A; -fun cantala_N : N; -fun cantaloup_N : N; -fun cantaloupe_N : N; -fun cantankerous_A : A; -fun cantankerously_Adv : Adv; -fun cantata_N : N; -fun canteen_N : N; -fun canter_N : N; -fun canter_V : V; -fun canter_V2 : V2; -fun cantering_A : A; -fun canthus_N : N; -fun canticle_N : N; -fun cantilever_N : N; -fun cantillation_N : N; -fun cantle_N : N; -fun canto_N : N; -fun canton_N : N; -fun cantonal_A : A; -fun cantonment_N : N; -fun cantor_N : N; -fun canty_A : A; -fun canuck_N : N; -fun canvas_N : N; -fun canvasback_N : N; -fun canvass_N : N; -fun canvass_V : V; -fun canvass_V2 : V2; -fun canvasser_N : N; -fun canyon_N : N; -fun canyonside_N : N; -fun cap_N : N; -fun cap_V2 : V2; -fun cap_a_pie_Adv : Adv; -fun cap_a_pie_Adv : Adv; -fun capability_N : N; -fun capable_A : A; -fun capacious_A : A; -fun capaciousness_N : N; -fun capacitance_N : N; -fun capacitive_A : A; -fun capacitor_N : N; -fun capacity_N : N; -fun caparison_N : N; -fun caparison_V2 : V2; -fun caparisoned_A : A; -fun cape_N : N; -fun capelin_N : N; -fun caper_N : N; -fun caper_V : V; -fun capercaillie_N : N; -fun capful_N : N; -fun capillarity_N : N; -fun capillary_A : A; -fun capillary_N : N; -fun capital_A : A; -fun capital_N : N; -fun capitalism_A : A; -fun capitalism_N : N; -fun capitalist_A : A; -fun capitalist_N : N; -fun capitalistic_A : A; -fun capitalization_N : N; -fun capitalize_V : V; -fun capitalize_V2 : V2; -fun capitate_A : A; -fun capitate_N : N; -fun capitation_N : N; -fun capitol_N : N; -fun capitular_A : A; -fun capitulate_V : V; -fun capitulate_V2 : V2; -fun capitulation_N : N; -fun capitulum_N : N; -fun capo_N : N; -fun capon_N : N; -fun capote_N : N; -fun capped_A : A; -fun cappuccino_N : N; -fun capriccio_N : N; -fun caprice_N : N; -fun capricious_A : A; -fun capriciously_Adv : Adv; -fun capriciousness_N : N; -fun caprifig_N : N; -fun caprine_A : A; -fun capriole_N : N; -fun capsaicin_N : N; -fun capsicum_N : N; -fun capsid_N : N; -fun capsize_V : V; -fun capsize_V2 : V2; -fun capsizing_N : N; -fun capstan_N : N; -fun capstone_N : N; -fun capsular_A : A; -fun capsulate_A : A; -fun capsule_N : N; -fun captain_N : N; -fun captain_V2 : V2; -fun captainship_N : N; -fun caption_N : N; -fun captious_A : A; -fun captiously_Adv : Adv; -fun captivate_V2 : V2; -fun captivated_A : A; -fun captivation_N : N; -fun captive_A : A; -fun captive_N : N; -fun captivity_N : N; -fun captopril_N : N; -fun captor_N : N; -fun capture_N : N; -fun capture_V2 : V2; -fun capuchin_N : N; -fun capulin_N : N; -fun caput_N : N; -fun capybara_N : N; -fun car_N : N; -fun car_ferry_N : N; -fun car_ferry_N : N; -fun carabao_N : N; -fun carabiner_N : N; -fun caracal_N : N; -fun caracara_N : N; -fun caracolito_N : N; -fun carafe_N : N; -fun carambola_N : N; -fun caramel_A : A; -fun caramel_N : N; -fun carancha_N : N; -fun caranday_N : N; -fun carangid_A : A; -fun carapace_N : N; -fun carat_N : N; -fun caravan_N : N; -fun caravan_V2 : V2; -fun caravanning_N : N; -fun caravansary_N : N; -fun caravanserai_N : N; -fun caraway_N : N; -fun carbamate_N : N; -fun carbide_N : N; -fun carbine_N : N; -fun carbineer_N : N; -fun carbocyclic_A : A; -fun carbohydrate_N : N; -fun carbolated_A : A; -fun carbolic_A : A; -fun carbomycin_N : N; -fun carbon_N : N; -fun carbon_paper_N : N; -fun carbonaceous_A : A; -fun carbonado_N : N; -fun carbonara_N : N; -fun carbonate_N : N; -fun carbonated_A : A; -fun carbonation_N : N; -fun carbonic_A : A; -fun carboniferous_A : A; -fun carbonization_N : N; -fun carbonize_V2 : V2; -fun carbonyl_A : A; -fun carbonyl_N : N; -fun carborundum_N : N; -fun carboxyl_A : A; -fun carboxyl_N : N; -fun carboy_N : N; -fun carbuncle_N : N; -fun carbuncled_A : A; -fun carburetor_N : N; -fun carburettor_N : N; -fun carcase_N : N; -fun carcass_N : N; -fun carcinogen_N : N; -fun carcinogenic_A : A; -fun carcinoid_N : N; -fun carcinoma_N : N; -fun carcinomatous_A : A; -fun carcinosarcoma_N : N; -fun card_N : N; -fun card_V2 : V2; -fun card_sharper_N : N; -fun cardamom_N : N; -fun cardboard_A : A; -fun cardboard_N : N; -fun cardcase_N : N; -fun cardholder_N : N; -fun cardia_N : N; -fun cardiac_A : A; -fun cardigan_N : N; -fun cardinal_A : A; -fun cardinal_N : N; -fun cardinalate_N : N; -fun cardinalfish_N : N; -fun cardinality_N : N; -fun cardinalship_N : N; -fun cardiograph_N : N; -fun cardiographic_A : A; -fun cardiography_N : N; -fun cardioid_N : N; -fun cardiologic_A : A; -fun cardiologist_N : N; -fun cardiology_N : N; -fun cardiomegaly_N : N; -fun cardiomyopathy_N : N; -fun cardiopulmonary_A : A; -fun cardiospasm_N : N; -fun cardiovascular_A : A; -fun carditis_N : N; -fun cardoon_N : N; -fun cardroom_N : N; -fun cardsharp_N : N; -fun care_N : N; -fun care_V : V; -fun care_laden_A : A; -fun cared_for_A : A; -fun careen_V : V; -fun careen_V2 : V2; -fun career_N : N; -fun career_V : V; -fun careerism_N : N; -fun careerist_N : N; -fun carefree_A : A; -fun carefreeness_N : N; -fun careful_A : A; -fun carefully_Adv : Adv; -fun carefulness_N : N; -fun caregiver_N : N; -fun careladen_A : A; -fun careless_A : A; -fun carelessly_Adv : Adv; -fun carelessness_N : N; -fun caress_N : N; -fun caress_V2 : V2; -fun caressing_A : A; -fun caressing_N : N; -fun caret_N : N; -fun caretaker_N : N; -fun careworn_A : A; -fun carful_N : N; -fun cargo_N : N; -fun carhop_N : N; -fun caribou_N : N; -fun caricature_N : N; -fun caricature_V2 : V2; -fun caricaturist_N : N; -fun caries_N : N; -fun carillon_N : N; -fun carillonneur_N : N; -fun carina_N : N; -fun carinal_A : A; -fun carinate_N : N; -fun caring_A : A; -fun carioca_N : N; -fun carious_A : A; -fun carissa_N : N; -fun carjack_V2 : V2; -fun carjacking_N : N; -fun carload_N : N; -fun carmelite_A : A; -fun carmelite_N : N; -fun carminative_A : A; -fun carminative_N : N; -fun carmine_A : A; -fun carmine_N : N; -fun carnage_N : N; -fun carnal_A : A; -fun carnallite_N : N; -fun carnally_Adv : Adv; -fun carnassial_A : A; -fun carnation_A : A; -fun carnation_N : N; -fun carnauba_N : N; -fun carnelian_N : N; -fun carnival_N : N; -fun carnivore_N : N; -fun carnivorous_A : A; -fun carnosaur_N : N; -fun carnotite_N : N; -fun carob_N : N; -fun caroche_N : N; -fun carol_N : N; -fun carol_V2 : V2; -fun caroler_N : N; -fun caroling_N : N; -fun caroller_N : N; -fun carom_N : N; -fun carom_V : V; -fun carom_V2 : V2; -fun carotene_N : N; -fun carotenemia_N : N; -fun carotenoid_N : N; -fun carotid_A : A; -fun carousal_N : N; -fun carouse_N : N; -fun carouse_V2 : V2; -fun carousel_N : N; -fun carp_N : N; -fun carp_V : V; -fun carp_V2 : V2; -fun carpal_A : A; -fun carpal_N : N; -fun carpel_N : N; -fun carpellary_A : A; -fun carpellate_A : A; -fun carpenter_N : N; -fun carpenteria_N : N; -fun carpentry_N : N; -fun carper_N : N; -fun carpet_N : N; -fun carpet_V2 : V2; -fun carpet_beater_N : N; -fun carpet_knight_N : N; -fun carpet_sweeper_N : N; -fun carpetbag_A : A; -fun carpetbag_N : N; -fun carpetbagger_N : N; -fun carpeted_A : A; -fun carpetweed_N : N; -fun carpophagous_A : A; -fun carpophore_N : N; -fun carport_N : N; -fun carpospore_N : N; -fun carposporic_A : A; -fun carposporous_A : A; -fun carrack_N : N; -fun carrageenin_N : N; -fun carrel_N : N; -fun carriage_N : N; -fun carriageway_N : N; -fun carrier_N : N; -fun carrier_bag_N : N; -fun carrier_pigeon_N : N; -fun carrion_N : N; -fun carrion_crow_N : N; -fun carrot_N : N; -fun carroty_A : A; -fun carry_N : N; -fun carry_V : V; -fun carry_V2 : V2; -fun carry_on_V2 : V2; -fun carry_out_V2 : V2; -fun carry_over_N : N; -fun carryall_N : N; -fun carrycot_N : N; -fun carsick_A : A; -fun carsickness_N : N; -fun cart_N : N; -fun cart_V2 : V2; -fun cart_track_N : N; -fun cartage_N : N; -fun carte_blanche_N : N; -fun cartel_N : N; -fun carter_N : N; -fun carthorse_N : N; -fun cartilage_N : N; -fun cartilaginification_N : N; -fun cartilaginous_A : A; -fun cartload_N : N; -fun cartographer_N : N; -fun cartographic_A : A; -fun cartography_N : N; -fun carton_N : N; -fun cartoon_N : N; -fun cartoon_V2 : V2; -fun cartoonist_N : N; -fun cartouche_N : N; -fun cartridge_N : N; -fun cartridge_belt_N : N; -fun cartridge_paper_N : N; -fun cartroad_N : N; -fun cartwheel_N : N; -fun cartwright_N : N; -fun caruncle_N : N; -fun caruncular_A : A; -fun carunculate_A : A; -fun carve_V : V; -fun carve_V2 : V2; -fun carved_A : A; -fun carvedilol_N : N; -fun carvel_built_A : A; -fun carver_N : N; -fun carving_N : N; -fun carving_fork_N : N; -fun carving_knife_N : N; -fun caryatid_N : N; -fun caryophyllaceous_A : A; -fun casaba_N : N; -fun cascade_N : N; -fun cascade_V : V; -fun cascara_N : N; -fun cascarilla_N : N; -fun case_N : N; -fun case_V2 : V2; -fun case_hardened_A : A; -fun case_hardened_A : A; -fun case_history_N : N; -fun case_law_N : N; -fun casebook_A : A; -fun casebook_N : N; -fun cased_A : A; -fun casein_N : N; -fun casement_N : N; -fun caseous_A : A; -fun casern_N : N; -fun casework_N : N; -fun caseworm_N : N; -fun cash_N : N; -fun cash_V : V; -fun cash_V2 : V2; -fun cash_and_carry_A : A; -fun cashable_A : A; -fun cashbox_N : N; -fun cashed_A : A; -fun cashew_N : N; -fun cashier_N : N; -fun cashier_V2 : V2; -fun cashmere_N : N; -fun casing_N : N; -fun casino_N : N; -fun cask_N : N; -fun casket_N : N; -fun caspase_N : N; -fun casque_N : N; -fun casquet_N : N; -fun cassareep_N : N; -fun cassava_N : N; -fun casserole_N : N; -fun cassette_N : N; -fun cassia_N : N; -fun cassiri_N : N; -fun cassiterite_N : N; -fun cassock_N : N; -fun cassocked_A : A; -fun cassowary_N : N; -fun cast_N : N; -fun cast_V : V; -fun cast_V2 : V2; -fun cast_iron_A : A; -fun cast_iron_A : A; -fun cast_off_A : A; -fun cast_off_A : A; -fun castaway_N : N; -fun caste_N : N; -fun castellated_A : A; -fun caster_N : N; -fun castigate_V2 : V2; -fun castigation_N : N; -fun casting_N : N; -fun castle_N : N; -fun castle_V : V; -fun castor_N : N; -fun castor_oil_N : N; -fun castrate_V2 : V2; -fun castrated_A : A; -fun castration_N : N; -fun castrato_N : N; -fun casual_A : A; -fun casually_Adv : Adv; -fun casualness_N : N; -fun casualty_N : N; -fun casuarina_N : N; -fun casuist_N : N; -fun casuistic_A : A; -fun casuistical_A : A; -fun casuistry_N : N; -fun casus_belli_N : N; -fun cat_N : N; -fun cat's_claw_N : N; -fun cat's_ear_N : N; -fun cat's_paw_N : N; -fun cat's_tail_N : N; -fun cat_nap_N : N; -fun cat_o'_nine_tails_N : N; -fun cat_o'_nine_tails_N : N; -fun cat_sleep_N : N; -fun catabiosis_N : N; -fun catabolic_A : A; -fun catabolism_N : N; -fun catachresis_N : N; -fun catachrestic_A : A; -fun cataclinal_A : A; -fun cataclysm_N : N; -fun cataclysmal_A : A; -fun cataclysmic_A : A; -fun catacomb_N : N; -fun catacorner_A : A; -fun catadromous_A : A; -fun catafalque_N : N; -fun catalan_A : A; -fun catalan_N : N; -fun catalase_N : N; -fun catalatic_A : A; -fun catalectic_A : A; -fun catalectic_N : N; -fun catalepsy_N : N; -fun cataleptic_A : A; -fun cataleptic_N : N; -fun catalexis_N : N; -fun catalog_N : N; -fun catalog_V2 : V2; -fun cataloger_N : N; -fun catalogue_N : N; -fun catalogue_V2 : V2; -fun catalpa_N : N; -fun catalufa_N : N; -fun catalysis_N : N; -fun catalyst_N : N; -fun catalytic_A : A; -fun catalytically_Adv : Adv; -fun catamaran_N : N; -fun catamite_N : N; -fun catananche_N : N; -fun cataphasia_N : N; -fun cataphatic_A : A; -fun cataphatism_N : N; -fun cataphyll_N : N; -fun cataplasia_N : N; -fun cataplastic_A : A; -fun catapult_N : N; -fun catapult_V2 : V2; -fun catapultic_A : A; -fun cataract_N : N; -fun catarrh_N : N; -fun catarrhal_A : A; -fun catarrhine_A : A; -fun catastrophe_N : N; -fun catastrophic_A : A; -fun catastrophically_Adv : Adv; -fun catatonia_N : N; -fun catatonic_A : A; -fun catbird_N : N; -fun catboat_N : N; -fun catcall_N : N; -fun catcall_V : V; -fun catch_N : N; -fun catch_V : V; -fun catch_V2 : V2; -fun catch_VS : VS; -fun catch_crop_N : N; -fun catchall_N : N; -fun catcher_N : N; -fun catching_A : A; -fun catching_N : N; -fun catchment_N : N; -fun catchment_area_N : N; -fun catchment_basin_N : N; -fun catchpenny_A : A; -fun catchphrase_N : N; -fun catchup_N : N; -fun catchword_N : N; -fun catchy_A : A; -fun catechesis_N : N; -fun catechetical_A : A; -fun catechin_N : N; -fun catechism_N : N; -fun catechismal_A : A; -fun catechist_N : N; -fun catechistic_A : A; -fun catechize_V2 : V2; -fun catecholamine_N : N; -fun catechu_N : N; -fun catechumen_N : N; -fun categorem_N : N; -fun categorematic_A : A; -fun categorial_A : A; -fun categoric_A : A; -fun categorical_A : A; -fun categorization_N : N; -fun categorize_V2 : V2; -fun categorized_A : A; -fun category_N : N; -fun catena_N : N; -fun catenary_N : N; -fun catenulate_A : A; -fun cater_V : V; -fun caterer_N : N; -fun catering_N : N; -fun caterpillar_N : N; -fun caterpillar_tracked_A : A; -fun caterwaul_N : N; -fun caterwaul_V : V; -fun catfish_N : N; -fun catgut_N : N; -fun catharsis_N : N; -fun cathartic_A : A; -fun cathartic_N : N; -fun cathectic_A : A; -fun cathedra_N : N; -fun cathedral_A : A; -fun cathedral_N : N; -fun catheter_N : N; -fun catheterization_N : N; -fun cathexis_N : N; -fun cathode_N : N; -fun cathodic_A : A; -fun catholic_A : A; -fun catholic_N : N; -fun catholicism_N : N; -fun catholicity_N : N; -fun cation_N : N; -fun cationic_A : A; -fun catkin_N : N; -fun catkinate_A : A; -fun catling_N : N; -fun catmint_N : N; -fun catnap_V2 : V2; -fun catoptric_A : A; -fun catoptrics_N : N; -fun catostomid_N : N; -fun catsup_N : N; -fun cattail_N : N; -fun cattalo_N : N; -fun cattiness_N : N; -fun cattish_A : A; -fun cattle_N : N; -fun cattle_cake_N : N; -fun cattleman_N : N; -fun cattleship_N : N; -fun cattleya_N : N; -fun catty_A : A; -fun catty_N : N; -fun catwalk_N : N; -fun caucasian_A : A; -fun caucasian_N : N; -fun caucus_N : N; -fun cauda_N : N; -fun caudal_A : A; -fun caudally_Adv : Adv; -fun caudate_A : A; -fun caudex_N : N; -fun caught_up_A : A; -fun caul_N : N; -fun cauldron_N : N; -fun caulescent_A : A; -fun cauliflower_N : N; -fun cauline_A : A; -fun caulk_N : N; -fun caulk_V2 : V2; -fun caulked_A : A; -fun causal_A : A; -fun causalgia_N : N; -fun causality_N : N; -fun causally_Adv : Adv; -fun causation_N : N; -fun causative_A : A; -fun cause_N : N; -fun cause_V2 : V2; -fun cause_V2V : V2V; -fun cause_VS : VS; -fun causeless_A : A; -fun causerie_N : N; -fun causeway_N : N; -fun causing_N : N; -fun caustic_A : A; -fun caustic_N : N; -fun caustically_Adv : Adv; -fun cauterize_V2 : V2; -fun cautery_N : N; -fun caution_N : N; -fun caution_V : V; -fun caution_V2 : V2; -fun caution_V2V : V2V; -fun caution_VS : VS; -fun cautionary_A : A; -fun cautious_A : A; -fun cautiously_Adv : Adv; -fun cavalcade_N : N; -fun cavalier_A : A; -fun cavalier_N : N; -fun cavalry_N : N; -fun cavalryman_N : N; -fun cave_N : N; -fun cave_V : V; -fun cave_V2 : V2; -fun cave_dweller_N : N; -fun cave_in_N : N; -fun caveat_N : N; -fun caveman_N : N; -fun cavern_N : N; -fun cavernous_A : A; -fun cavetto_N : N; -fun caviar_N : N; -fun caviare_N : N; -fun cavil_V : V; -fun cavity_N : N; -fun cavort_V : V; -fun cavort_V2 : V2; -fun cavy_N : N; -fun caw_N : N; -fun caw_V : V; -fun caw_V2 : V2; -fun cayenne_N : N; -fun cayenne_pepper_N : N; -fun cayman_N : N; -fun cayuse_N : N; -fun cbi_N : N; -fun cc_N : N; -fun cd_N : N; -fun cease_N : N; -fun cease_V : V; -fun cease_V2 : V2; -fun cease_V2V : V2V; -fun cease_VS : VS; -fun cease_fire_N : N; -fun ceaseless_A : A; -fun cecal_A : A; -fun cecropia_N : N; -fun cecum_N : N; -fun cedar_N : N; -fun cedar_of_lebanon_PN : PN; -fun cedar_scented_A : A; -fun cedarn_A : A; -fun cede_V2 : V2; -fun cedi_N : N; -fun cedilla_N : N; -fun cefadroxil_N : N; -fun cefoperazone_N : N; -fun cefotaxime_N : N; -fun ceftazidime_N : N; -fun ceftriaxone_N : N; -fun cefuroxime_N : N; -fun ceibo_N : N; -fun ceilidh_N : N; -fun ceiling_N : N; -fun ceilinged_A : A; -fun celandine_N : N; -fun celebrant_N : N; -fun celebrate_V2 : V2; -fun celebrated_A : A; -fun celebration_N : N; -fun celebratory_A : A; -fun celebrity_N : N; -fun celecoxib_N : N; -fun celeriac_N : N; -fun celerity_N : N; -fun celery_N : N; -fun celesta_N : N; -fun celestial_A : A; -fun celestite_N : N; -fun celiac_A : A; -fun celibacy_N : N; -fun celibate_A : A; -fun celibate_N : N; -fun celiocentesis_N : N; -fun celioma_N : N; -fun celioscopy_N : N; -fun cell_N : N; -fun cell_free_A : A; -fun cell_like_A : A; -fun cellar_N : N; -fun cellarage_N : N; -fun cellblock_N : N; -fun cellist_N : N; -fun cello_N : N; -fun cellophane_N : N; -fun cellular_A : A; -fun cellularity_N : N; -fun cellulite_N : N; -fun cellulitis_N : N; -fun celluloid_A : A; -fun celluloid_N : N; -fun cellulose_N : N; -fun cellulosic_N : N; -fun cellulosid_A : A; -fun celom_N : N; -fun celt_N : N; -fun celtic_A : A; -fun celtic_N : N; -fun celtuce_N : N; -fun cement_N : N; -fun cement_V2 : V2; -fun cement_mixer_N : N; -fun cementite_N : N; -fun cementitious_A : A; -fun cementum_N : N; -fun cemetery_N : N; -fun cenobite_N : N; -fun cenobitic_A : A; -fun cenogenesis_N : N; -fun cenogenetic_A : A; -fun cenotaph_N : N; -fun censer_N : N; -fun censor_N : N; -fun censor_V2 : V2; -fun censored_A : A; -fun censorial_A : A; -fun censoring_N : N; -fun censorious_A : A; -fun censorship_N : N; -fun censure_N : N; -fun censure_V2 : V2; -fun census_N : N; -fun cent_N : N; -fun centas_N : N; -fun centaur_N : N; -fun centaury_N : N; -fun centavo_N : N; -fun centenarian_A : A; -fun centenarian_N : N; -fun centenary_A : A; -fun centenary_N : N; -fun centennial_A : A; -fun centennial_N : N; -fun centennially_Adv : Adv; -fun center_A : A; -fun center_N : N; -fun center_V : V; -fun center_V2 : V2; -fun centerboard_N : N; -fun centered_A : A; -fun centerfold_N : N; -fun centering_N : N; -fun centerline_N : N; -fun centerpiece_N : N; -fun centesimal_A : A; -fun centesimo_N : N; -fun centesis_N : N; -fun centigrade_A : A; -fun centiliter_N : N; -fun centime_N : N; -fun centimeter_N : N; -fun centimetre_N : N; -fun centimo_N : N; -fun centipede_N : N; -fun centner_N : N; -fun central_A : A; -fun central_N : N; -fun centralism_N : N; -fun centralist_A : A; -fun centrality_N : N; -fun centralization_N : N; -fun centralize_V : V; -fun centralize_V2 : V2; -fun centralized_A : A; -fun centralizing_A : A; -fun centrally_Adv : Adv; -fun centre_N : N; -fun centre_V : V; -fun centre_V2 : V2; -fun centre_bit_N : N; -fun centre_board_N : N; -fun centrepiece_N : N; -fun centrex_N : N; -fun centric_A : A; -fun centrifugal_A : A; -fun centrifugation_N : N; -fun centrifuge_N : N; -fun centriole_N : N; -fun centripetal_A : A; -fun centrism_N : N; -fun centrist_A : A; -fun centrist_N : N; -fun centroid_N : N; -fun centroidal_A : A; -fun centromere_N : N; -fun centromeric_A : A; -fun centrosome_N : N; -fun centrosomic_A : A; -fun centrum_N : N; -fun centurion_N : N; -fun century_N : N; -fun cephalexin_N : N; -fun cephalhematoma_N : N; -fun cephalic_A : A; -fun cephalochordate_N : N; -fun cephaloglycin_N : N; -fun cephalometry_N : N; -fun cephalopod_A : A; -fun cephalopod_N : N; -fun cephaloridine_N : N; -fun cephalosporin_N : N; -fun cephalothin_N : N; -fun ceramic_A : A; -fun ceramic_N : N; -fun ceramics_N : N; -fun ceras_N : N; -fun cerate_N : N; -fun ceratodus_N : N; -fun ceratopsian_N : N; -fun ceratosaur_N : N; -fun ceratozamia_N : N; -fun cercaria_N : N; -fun cercarial_A : A; -fun cere_N : N; -fun cereal_A : A; -fun cereal_N : N; -fun cerebellar_A : A; -fun cerebellum_N : N; -fun cerebral_A : A; -fun cerebrally_Adv : Adv; -fun cerebration_N : N; -fun cerebrospinal_A : A; -fun cerebrovascular_A : A; -fun cerebrum_N : N; -fun cerecloth_N : N; -fun ceremonial_A : A; -fun ceremonial_N : N; -fun ceremonially_Adv : Adv; -fun ceremonious_A : A; -fun ceremoniously_Adv : Adv; -fun ceremoniousness_N : N; -fun ceremony_N : N; -fun ceresin_N : N; -fun ceric_A : A; -fun ceriman_N : N; -fun cerise_A : A; -fun cerise_N : N; -fun cerium_N : N; -fun cerivastatin_N : N; -fun cernuous_A : A; -fun cero_N : N; -fun cerous_A : A; -fun cert_N : N; -fun certain_A : A; -fun certainty_N : N; -fun certifiable_A : A; -fun certificate_N : N; -fun certificate_V2 : V2; -fun certificated_A : A; -fun certification_N : N; -fun certificatory_A : A; -fun certified_A : A; -fun certify_V : V; -fun certify_V2 : V2; -fun certiorari_N : N; -fun certitude_N : N; -fun cerulean_A : A; -fun cerumen_N : N; -fun ceruminous_A : A; -fun cerussite_N : N; -fun cervical_A : A; -fun cervicitis_N : N; -fun cervine_A : A; -fun cervix_N : N; -fun cesarean_A : A; -fun cesium_N : N; -fun cessation_N : N; -fun cession_N : N; -fun cesspit_N : N; -fun cesspool_N : N; -fun cetacean_A : A; -fun cetacean_N : N; -fun ceteris_paribus_Adv : Adv; -fun cetrimide_N : N; -fun cf__Adv : Adv; -fun cgs_N : N; -fun cha_cha_N : N; -fun chabazite_N : N; -fun chachalaca_N : N; -fun chachka_N : N; -fun chacma_N : N; -fun chad_N : N; -fun chadian_A : A; -fun chadian_N : N; -fun chador_N : N; -fun chaenactis_N : N; -fun chaeta_N : N; -fun chaetal_A : A; -fun chaetodon_N : N; -fun chaetognathan_A : A; -fun chafe_N : N; -fun chafe_V : V; -fun chafe_V2 : V2; -fun chafed_A : A; -fun chafeweed_N : N; -fun chaff_N : N; -fun chaff_V2 : V2; -fun chaffinch_N : N; -fun chaffweed_N : N; -fun chaffy_A : A; -fun chafing_N : N; -fun chafing_dish_N : N; -fun chagrin_N : N; -fun chagrin_V2 : V2; -fun chain_N : N; -fun chain_V2 : V2; -fun chain_armour_N : N; -fun chain_gang_N : N; -fun chain_letter_N : N; -fun chain_mail_N : N; -fun chain_smoker_N : N; -fun chain_smoker_N : N; -fun chain_stitch_N : N; -fun chain_store_N : N; -fun chained_A : A; -fun chair_N : N; -fun chair_V2 : V2; -fun chair_lift_N : N; -fun chairlift_N : N; -fun chairman_N : N; -fun chairmanship_N : N; -fun chaise_N : N; -fun chaise_longue_N : N; -fun chaja_N : N; -fun chalaza_N : N; -fun chalazion_N : N; -fun chalcedony_N : N; -fun chalcocite_N : N; -fun chalcopyrite_N : N; -fun chaldron_N : N; -fun chalet_N : N; -fun chalice_N : N; -fun chalk_N : N; -fun chalk_V : V; -fun chalk_V2 : V2; -fun chalkpit_N : N; -fun chalky_A : A; -fun challah_N : N; -fun challenge_N : N; -fun challenge_V : V; -fun challenge_V2 : V2; -fun challengeable_A : A; -fun challenger_N : N; -fun challenging_A : A; -fun challis_N : N; -fun chalybeate_A : A; -fun chamber_N : N; -fun chambered_A : A; -fun chamberlain_N : N; -fun chambermaid_N : N; -fun chamberpot_N : N; -fun chambray_N : N; -fun chameleon_N : N; -fun chammy_leather_N : N; -fun chamois_N : N; -fun chamois_leather_N : N; -fun chamomile_N : N; -fun chamosite_N : N; -fun champ_N : N; -fun champ_V : V; -fun champ_V2 : V2; -fun champagne_N : N; -fun champerty_N : N; -fun champion_A : A; -fun champion_Adv : Adv; -fun champion_N : N; -fun champion_V2 : V2; -fun championship_N : N; -fun champleve_A : A; -fun chanar_N : N; -fun chance_N : N; -fun chance_V : V; -fun chance_V2 : V2; -fun chance_VS : VS; -fun chance_medley_N : N; -fun chancel_N : N; -fun chancellery_N : N; -fun chancellor_N : N; -fun chancellorship_N : N; -fun chancery_N : N; -fun chancre_N : N; -fun chancroid_N : N; -fun chancroidal_A : A; -fun chancrous_A : A; -fun chancy_A : A; -fun chandelier_N : N; -fun chandelle_N : N; -fun chandler_N : N; -fun chandlery_N : N; -fun chanfron_N : N; -fun change_N : N; -fun change_V : V; -fun change_V2 : V2; -fun change_up_N : N; -fun changeable_A : A; -fun changeableness_N : N; -fun changed_A : A; -fun changeful_A : A; -fun changeless_A : A; -fun changelessness_N : N; -fun changeling_N : N; -fun changeover_N : N; -fun changer_N : N; -fun changing_A : A; -fun channel_N : N; -fun channel_V2 : V2; -fun channelization_N : N; -fun channels_N : N; -fun chant_N : N; -fun chant_V : V; -fun chant_V2 : V2; -fun chanted_A : A; -fun chanter_N : N; -fun chanterelle_N : N; -fun chantey_N : N; -fun chantlike_A : A; -fun chantry_N : N; -fun chaos_N : N; -fun chaotic_A : A; -fun chaotically_Adv : Adv; -fun chap_N : N; -fun chap_V : V; -fun chap_V2 : V2; -fun chapatti_N : N; -fun chapel_N : N; -fun chapelgoer_N : N; -fun chaperon_N : N; -fun chaperon_V2 : V2; -fun chapfallen_A : A; -fun chaplain_N : N; -fun chaplaincy_N : N; -fun chaplet_N : N; -fun chapleted_A : A; -fun chapman_N : N; -fun chapped_A : A; -fun chapter_N : N; -fun chapterhouse_N : N; -fun char_N : N; -fun char_V : V; -fun char_V2 : V2; -fun charabanc_1_N : N; -fun charabanc_2_N : N; -fun characin_N : N; -fun character_N : N; -fun characteristic_A : A; -fun characteristic_N : N; -fun characteristically_Adv : Adv; -fun characterization_N : N; -fun characterize_V2 : V2; -fun characterless_A : A; -fun charade_N : N; -fun charades_N : N; -fun charcoal_A : A; -fun charcoal_N : N; -fun charcoal_V : V; -fun charcoal_V2 : V2; -fun charcoal_burner_N : N; -fun charcuterie_N : N; -fun chard_N : N; -fun charge_N : N; -fun charge_V : V; -fun charge_V2 : V2; -fun charge_VS : VS; -fun charge_account_N : N; -fun charge_d'affaires_N : N; -fun charge_sheet_N : N; -fun chargeable_A : A; -fun charged_A : A; -fun charger_N : N; -fun charily_Adv : Adv; -fun chariot_N : N; -fun chariot_V2 : V2; -fun charioteer_N : N; -fun charisma_N : N; -fun charismatic_A : A; -fun charitable_A : A; -fun charitableness_N : N; -fun charitably_Adv : Adv; -fun charity_N : N; -fun charivari_N : N; -fun charlady_N : N; -fun charlatan_N : N; -fun charlatanism_N : N; -fun charleston_N : N; -fun charlock_N : N; -fun charlotte_N : N; -fun charm_N : N; -fun charm_V : V; -fun charm_V2 : V2; -fun charmer_N : N; -fun charming_A : A; -fun charmingly_Adv : Adv; -fun charnel_A : A; -fun charnel_house_N : N; -fun chart_N : N; -fun chart_V2 : V2; -fun chartaceous_A : A; -fun charter_N : N; -fun charter_V2 : V2; -fun charter_party_N : N; -fun chartered_A : A; -fun charterhouse_N : N; -fun chartism_N : N; -fun chartist_N : N; -fun chartless_A : A; -fun chartreuse_A : A; -fun chartreuse_N : N; -fun charwoman_N : N; -fun chary_A : A; -fun chase_N : N; -fun chase_V : V; -fun chase_V2 : V2; -fun chaser_N : N; -fun chasm_N : N; -fun chasse_N : N; -fun chassis_N : N; -fun chaste_A : A; -fun chastely_Adv : Adv; -fun chasten_V2 : V2; -fun chasteness_N : N; -fun chastise_V2 : V2; -fun chastisement_N : N; -fun chastity_N : N; -fun chasuble_N : N; -fun chat_N : N; -fun chat_V : V; -fun chat_V2 : V2; -fun chateau_N : N; -fun chatelaine_N : N; -fun chattel_N : N; -fun chatter_N : N; -fun chatter_V : V; -fun chatter_V2 : V2; -fun chatterbox_N : N; -fun chatterer_N : N; -fun chattily_Adv : Adv; -fun chatty_A : A; -fun chauffeur_N : N; -fun chauffeur_V2 : V2; -fun chauffeuse_N : N; -fun chaulmoogra_N : N; -fun chauvinism_N : N; -fun chauvinist_N : N; -fun chauvinistic_A : A; -fun chaw_N : N; -fun chaw_V2 : V2; -fun chaw_bacon_N : N; -fun cheap_A : A; -fun cheapen_V : V; -fun cheapen_V2 : V2; -fun cheapjack_A : A; -fun cheapjack_N : N; -fun cheaply_Adv : Adv; -fun cheapness_N : N; -fun cheapskate_N : N; -fun cheat_N : N; -fun cheat_V : V; -fun cheat_V2 : V2; -fun cheating_A : A; -fun chebab_N : N; -fun check_N : N; -fun check_V : V; -fun check_V2 : V2; -fun check_in_N : N; -fun checkbook_N : N; -fun checked_A : A; -fun checker_N : N; -fun checker_V2 : V2; -fun checkerbloom_N : N; -fun checkerboard_N : N; -fun checkered_A : A; -fun checkers_N : N; -fun checklist_N : N; -fun checkmate_N : N; -fun checkmate_V2 : V2; -fun checkout_N : N; -fun checkpoint_N : N; -fun checkroom_N : N; -fun checksum_N : N; -fun checkup_N : N; -fun cheddar_N : N; -fun cheek_N : N; -fun cheek_V2 : V2; -fun cheek_by_jowl_Adv : Adv; -fun cheekbone_N : N; -fun cheeked_A : A; -fun cheekily_Adv : Adv; -fun cheekpiece_N : N; -fun cheeky_A : A; -fun cheep_N : N; -fun cheep_V : V; -fun cheer_N : N; -fun cheer_V : V; -fun cheer_V2 : V2; -fun cheerer_N : N; -fun cheerful_A : A; -fun cheerfully_Adv : Adv; -fun cheerfulness_N : N; -fun cheering_A : A; -fun cheering_N : N; -fun cheerleader_N : N; -fun cheerless_A : A; -fun cheerlessly_Adv : Adv; -fun cheerlessness_N : N; -fun cheery_A : A; -fun cheese_N : N; -fun cheeseboard_N : N; -fun cheeseburger_N : N; -fun cheesecake_N : N; -fun cheesecloth_N : N; -fun cheeselike_A : A; -fun cheesemonger_N : N; -fun cheeseparing_A : A; -fun cheetah_N : N; -fun chef_N : N; -fun chef_d'oeuvre_N : N; -fun cheilitis_N : N; -fun cheilosis_N : N; -fun chela_N : N; -fun chelate_A : A; -fun chelate_N : N; -fun chelation_N : N; -fun chelicera_N : N; -fun cheliceral_A : A; -fun chelicerous_A : A; -fun cheliferous_A : A; -fun chelonian_A : A; -fun chelonian_N : N; -fun chemical_A : A; -fun chemical_N : N; -fun chemically_Adv : Adv; -fun chemiluminescence_N : N; -fun chemiluminescent_A : A; -fun chemise_N : N; -fun chemisorption_N : N; -fun chemisorptive_A : A; -fun chemist_N : N; -fun chemistry_N : N; -fun chemoreceptive_A : A; -fun chemoreceptor_N : N; -fun chemosis_N : N; -fun chemosurgery_N : N; -fun chemosynthesis_N : N; -fun chemotaxis_N : N; -fun chemotherapeutic_A : A; -fun chemotherapy_N : N; -fun chenille_N : N; -fun cheque_N : N; -fun chequebook_N : N; -fun chequer_V2 : V2; -fun cherimoya_N : N; -fun cherish_V2 : V2; -fun cherished_A : A; -fun cheroot_N : N; -fun cherry_A : A; -fun cherry_N : N; -fun cherry_sized_A : A; -fun cherrystone_N : N; -fun chert_N : N; -fun cherty_A : A; -fun cherub_N : N; -fun cherubic_A : A; -fun chervil_N : N; -fun chess_N : N; -fun chessboard_N : N; -fun chessman_N : N; -fun chest_N : N; -fun chesterfield_N : N; -fun chestnut_A : A; -fun chestnut_N : N; -fun chestnut_brown_A : A; -fun chestnut_colored_A : A; -fun chetrum_N : N; -fun cheval_de_frise_N : N; -fun cheval_glass_N : N; -fun chevron_N : N; -fun chevrotain_N : N; -fun chew_N : N; -fun chew_V : V; -fun chew_V2 : V2; -fun chewable_A : A; -fun chewer_N : N; -fun chewing_gum_N : N; -fun chewink_N : N; -fun chewy_A : A; -fun chi_N : N; -fun chianti_N : N; -fun chiaroscuro_N : N; -fun chiasma_N : N; -fun chiasmal_A : A; -fun chiasmus_N : N; -fun chic_A : A; -fun chic_N : N; -fun chicane_N : N; -fun chicanery_N : N; -fun chichi_A : A; -fun chichi_N : N; -fun chichipe_N : N; -fun chick_N : N; -fun chickadee_N : N; -fun chicken_A : A; -fun chicken_N : N; -fun chicken_kiev_PN : PN; -fun chicken_marengo_PN : PN; -fun chicken_tetrazzini_PN : PN; -fun chicken_hearted_A : A; -fun chicken_run_N : N; -fun chickenfeed_N : N; -fun chickenpox_N : N; -fun chickenshit_N : N; -fun chickeree_N : N; -fun chickpea_N : N; -fun chickweed_N : N; -fun chicle_N : N; -fun chicory_N : N; -fun chide_V : V; -fun chide_V2 : V2; -fun chiding_N : N; -fun chief_A : A; -fun chief_N : N; -fun chiefly_Adv : Adv; -fun chieftain_N : N; -fun chieftaincy_N : N; -fun chiffon_N : N; -fun chiffonier_N : N; -fun chigetai_N : N; -fun chignon_N : N; -fun chigoe_N : N; -fun chilblain_N : N; -fun chilblained_A : A; -fun child_N : N; -fun child's_play_N : N; -fun child_bearing_N : N; -fun child_centered_A : A; -fun childbearing_A : A; -fun childbirth_N : N; -fun childcare_N : N; -fun childhood_N : N; -fun childish_A : A; -fun childishly_Adv : Adv; -fun childishness_N : N; -fun childless_A : A; -fun childlessness_N : N; -fun childlike_A : A; -fun chilean_A : A; -fun chilean_N : N; -fun chili_N : N; -fun chill_A : A; -fun chill_N : N; -fun chill_V : V; -fun chill_V2 : V2; -fun chilli_N : N; -fun chilliness_N : N; -fun chilling_A : A; -fun chilly_A : A; -fun chilly_N : N; -fun chimaera_N : N; -fun chime_N : N; -fun chime_V : V; -fun chime_V2 : V2; -fun chimera_N : N; -fun chimeric_A : A; -fun chimerical_A : A; -fun chimney_N : N; -fun chimney_sweep_N : N; -fun chimneybreast_N : N; -fun chimneypiece_N : N; -fun chimneypot_N : N; -fun chimneystack_N : N; -fun chimneysweep_N : N; -fun chimneysweeper_N : N; -fun chimp_N : N; -fun chimpanzee_N : N; -fun chin_N : N; -fun chin_strap_N : N; -fun chin_wagging_N : N; -fun china_N : N; -fun china_closet_N : N; -fun chinaberry_N : N; -fun chinaware_N : N; -fun chincapin_N : N; -fun chincherinchee_N : N; -fun chinchilla_N : N; -fun chine_N : N; -fun chinese_A : A; -fun chinese_N : N; -fun chink_N : N; -fun chink_V : V; -fun chink_V2 : V2; -fun chinked_A : A; -fun chinless_A : A; -fun chino_N : N; -fun chinoiserie_N : N; -fun chinook_N : N; -fun chintz_N : N; -fun chip_N : N; -fun chip_V : V; -fun chip_V2 : V2; -fun chipboard_N : N; -fun chipmunk_N : N; -fun chipolata_N : N; -fun chipotle_N : N; -fun chippendale_N : N; -fun chipper_A : A; -fun chir_V : V; -fun chir_V2 : V2; -fun chiralgia_N : N; -fun chiromantic_A : A; -fun chiropodist_N : N; -fun chiropody_N : N; -fun chiropractic_N : N; -fun chiropractor_N : N; -fun chirp_N : N; -fun chirp_V : V; -fun chirp_V2 : V2; -fun chirpiness_N : N; -fun chirpy_A : A; -fun chirrup_N : N; -fun chirrup_V : V; -fun chirrup_V2 : V2; -fun chisel_N : N; -fun chisel_V : V; -fun chisel_V2 : V2; -fun chisel_like_A : A; -fun chiseled_A : A; -fun chiseller_N : N; -fun chit_N : N; -fun chit_chat_N : N; -fun chitchat_N : N; -fun chitchat_V : V; -fun chitin_N : N; -fun chitinous_A : A; -fun chiton_N : N; -fun chitter_V : V; -fun chitter_V2 : V2; -fun chitterlings_N : N; -fun chivalric_A : A; -fun chivalrous_A : A; -fun chivalry_N : N; -fun chive_N : N; -fun chives_N : N; -fun chivvy_V2 : V2; -fun chivy_V2 : V2; -fun chlamydeous_A : A; -fun chlamydia_N : N; -fun chlamydial_A : A; -fun chlamydospore_N : N; -fun chlamys_N : N; -fun chloasma_N : N; -fun chlorambucil_N : N; -fun chloramine_N : N; -fun chloramphenicol_N : N; -fun chlorate_N : N; -fun chlordiazepoxide_N : N; -fun chlorella_N : N; -fun chlorenchyma_N : N; -fun chlorhexidine_N : N; -fun chloride_N : N; -fun chlorinate_V2 : V2; -fun chlorination_N : N; -fun chlorine_N : N; -fun chlorinity_N : N; -fun chlorite_N : N; -fun chloroacetophenone_N : N; -fun chlorobenzene_N : N; -fun chlorobenzylidenemalononitrile_N : N; -fun chlorofluorocarbon_N : N; -fun chloroform_N : N; -fun chlorophyll_N : N; -fun chlorophyllose_A : A; -fun chloropicrin_N : N; -fun chloroplast_N : N; -fun chloroprene_N : N; -fun chloroquine_N : N; -fun chlorosis_N : N; -fun chlorothiazide_N : N; -fun chlorotic_A : A; -fun chlorpromazine_N : N; -fun chlorpyrifos_N : N; -fun chlortetracycline_N : N; -fun chlorthalidone_N : N; -fun choanocyte_N : N; -fun choc_N : N; -fun choc_ice_N : N; -fun choc_ice_N : N; -fun chock_Adv : Adv; -fun chock_N : N; -fun chock_V2 : V2; -fun chock_a_block_A : A; -fun chock_a_block_Adv : Adv; -fun chock_full_A : A; -fun chockablock_A : A; -fun chocolate_N : N; -fun chocolate_colored_A : A; -fun choice_A : A; -fun choice_N : N; -fun choir_N : N; -fun choir_school_N : N; -fun choirboy_N : N; -fun choirmaster_N : N; -fun choke_N : N; -fun choke_V : V; -fun choke_V2 : V2; -fun choke_damp_N : N; -fun chokecherry_N : N; -fun choked_A : A; -fun chokedamp_N : N; -fun chokehold_N : N; -fun chokepoint_N : N; -fun choker_N : N; -fun chokey_N : N; -fun choking_N : N; -fun choky_A : A; -fun choky_N : N; -fun cholangiography_N : N; -fun cholangitis_N : N; -fun cholecystectomy_N : N; -fun cholecystitis_N : N; -fun cholecystokinin_N : N; -fun cholelithiasis_N : N; -fun cholelithotomy_N : N; -fun choler_N : N; -fun cholera_N : N; -fun choleraic_A : A; -fun choleric_A : A; -fun cholesterol_N : N; -fun choline_N : N; -fun cholinergic_A : A; -fun cholinesterase_N : N; -fun cholla_N : N; -fun chomping_N : N; -fun chon_N : N; -fun chondrin_N : N; -fun chondrite_N : N; -fun chondritic_A : A; -fun chondroma_N : N; -fun chondrosarcoma_N : N; -fun chondrule_N : N; -fun choo_choo_N : N; -fun choose_V : V; -fun choose_V2 : V2; -fun choose_V2V : V2V; -fun choose_VS : VS; -fun choose_VV : VV; -fun choosey_A : A; -fun choosy_A : A; -fun chop_N : N; -fun chop_V : V; -fun chop_V2 : V2; -fun chop_chop_Adv : Adv; -fun chop_house_N : N; -fun chop_suey_N : N; -fun chopine_N : N; -fun chopped_A : A; -fun chopper_N : N; -fun choppiness_N : N; -fun choppy_A : A; -fun chopstick_N : N; -fun choragic_A : A; -fun choragus_N : N; -fun choral_A : A; -fun chorale_N : N; -fun chorally_Adv : Adv; -fun chord_N : N; -fun chordal_A : A; -fun chordamesoderm_N : N; -fun chordate_A : A; -fun chordate_N : N; -fun chorditis_N : N; -fun chordophone_N : N; -fun chore_N : N; -fun chorea_N : N; -fun choreographer_N : N; -fun choreographic_A : A; -fun choreography_N : N; -fun choric_A : A; -fun chorioallantois_N : N; -fun choriomeningitis_N : N; -fun chorion_N : N; -fun chorionic_A : A; -fun chorioretinitis_N : N; -fun chorister_N : N; -fun chorizo_N : N; -fun choroid_N : N; -fun chortle_N : N; -fun chortle_V : V; -fun chortle_V2 : V2; -fun chorus_N : N; -fun chorus_V2 : V2; -fun chorus_girl_N : N; -fun chosen_N : N; -fun chough_N : N; -fun chow_N : N; -fun chowchow_N : N; -fun chowder_N : N; -fun chrestomathy_N : N; -fun chrism_N : N; -fun christella_N : N; -fun christen_V2 : V2; -fun christendom_N : N; -fun christening_N : N; -fun christian_A : A; -fun christian_N : N; -fun christianity_N : N; -fun christianly_A : A; -fun christless_A : A; -fun christlike_A : A; -fun christmas_N : N; -fun christmas_box_N : N; -fun christmas_tree_N : N; -fun christmastide_N : N; -fun christmastime_N : N; -fun chromate_N : N; -fun chromatic_A : A; -fun chromatically_Adv : Adv; -fun chromatid_N : N; -fun chromatin_N : N; -fun chromatinic_A : A; -fun chromatism_N : N; -fun chromatogram_N : N; -fun chromatographic_A : A; -fun chromatographically_Adv : Adv; -fun chromatography_N : N; -fun chrome_N : N; -fun chromesthesia_N : N; -fun chromite_N : N; -fun chromium_N : N; -fun chromoblastomycosis_N : N; -fun chromogen_N : N; -fun chromolithography_N : N; -fun chromophore_N : N; -fun chromoplast_N : N; -fun chromosomal_A : A; -fun chromosome_N : N; -fun chromosphere_N : N; -fun chronic_A : A; -fun chronically_Adv : Adv; -fun chronicle_N : N; -fun chronicle_V2 : V2; -fun chronicler_N : N; -fun chronograph_N : N; -fun chronological_A : A; -fun chronologically_Adv : Adv; -fun chronology_N : N; -fun chronometer_N : N; -fun chronoscope_N : N; -fun chrysalis_N : N; -fun chrysanthemum_N : N; -fun chrysoberyl_N : N; -fun chrysolite_N : N; -fun chrysoprase_N : N; -fun chrysotherapy_N : N; -fun chrysotile_N : N; -fun chthonian_A : A; -fun chub_N : N; -fun chubbiness_N : N; -fun chubby_A : A; -fun chuck_N : N; -fun chuck_V2 : V2; -fun chuck_will's_widow_N : N; -fun chucker_out_N : N; -fun chuckle_N : N; -fun chuckle_V : V; -fun chuckle_V2 : V2; -fun chuckle_VS : VS; -fun chuckwalla_N : N; -fun chufa_N : N; -fun chuffed_A : A; -fun chug_N : N; -fun chug_V : V; -fun chug_V2 : V2; -fun chukka_N : N; -fun chukker_N : N; -fun chum_N : N; -fun chum_V : V; -fun chumminess_N : N; -fun chummy_A : A; -fun chump_N : N; -fun chunga_N : N; -fun chunk_N : N; -fun chunk_V2 : V2; -fun chunky_A : A; -fun chunnel_N : N; -fun church_N : N; -fun church_state_N : N; -fun churchgoer_N : N; -fun churchgoing_A : A; -fun churchly_A : A; -fun churchman_N : N; -fun churchwarden_N : N; -fun churchyard_N : N; -fun churidars_N : N; -fun churl_N : N; -fun churlish_A : A; -fun churlishly_Adv : Adv; -fun churn_N : N; -fun churn_V : V; -fun churn_V2 : V2; -fun churning_A : A; -fun chute_N : N; -fun chutney_N : N; -fun chutzpa_N : N; -fun chutzpanik_N : N; -fun chylaceous_A : A; -fun chyle_N : N; -fun chyliferous_A : A; -fun chylific_A : A; -fun chylomicron_N : N; -fun chyme_N : N; -fun cia_N : N; -fun cicada_N : N; -fun cicala_N : N; -fun cicatrice_N : N; -fun cicatrix_N : N; -fun cicero_N : N; -fun cicerone_N : N; -fun cichlid_N : N; -fun cid_N : N; -fun cider_N : N; -fun ciderpress_N : N; -fun cigar_N : N; -fun cigar_shaped_A : A; -fun cigarette_N : N; -fun cigarette_case_N : N; -fun cigarette_holder_N : N; -fun cigarette_paper_N : N; -fun cigarillo_N : N; -fun ciliary_A : A; -fun ciliate_A : A; -fun ciliate_N : N; -fun cilium_N : N; -fun cimetidine_N : N; -fun cinch_N : N; -fun cinch_V2 : V2; -fun cinchona_N : N; -fun cinchonine_N : N; -fun cincture_N : N; -fun cinder_N : N; -fun cinder_track_N : N; -fun cinderella_N : N; -fun cine_camera_N : N; -fun cine_film_N : N; -fun cine_projector_N : N; -fun cinema_N : N; -fun cinematic_A : A; -fun cinematography_N : N; -fun cineraria_N : N; -fun cinerary_A : A; -fun cingulum_N : N; -fun cinnabar_N : N; -fun cinnamon_N : N; -fun cinnamon_colored_A : A; -fun cinnamon_red_A : A; -fun cinnamon_scented_A : A; -fun cinquefoil_N : N; -fun cipher_N : N; -fun cipher_V : V; -fun cipher_V2 : V2; -fun ciprofloxacin_N : N; -fun circa_Prep : Prep; -fun circadian_A : A; -fun circle_N : N; -fun circle_V : V; -fun circle_V2 : V2; -fun circle_of_willis_PN : PN; -fun circlet_N : N; -fun circuit_N : N; -fun circuitous_A : A; -fun circuitry_N : N; -fun circular_A : A; -fun circular_N : N; -fun circular_knit_A : A; -fun circularity_N : N; -fun circularization_N : N; -fun circularize_V2 : V2; -fun circularly_Adv : Adv; -fun circulate_V : V; -fun circulate_V2 : V2; -fun circulating_A : A; -fun circulation_N : N; -fun circulative_A : A; -fun circulatory_A : A; -fun circumcise_V2 : V2; -fun circumcision_N : N; -fun circumduction_N : N; -fun circumference_N : N; -fun circumferential_A : A; -fun circumflex_N : N; -fun circumlocution_N : N; -fun circumlocutious_A : A; -fun circumnavigate_V2 : V2; -fun circumnavigation_N : N; -fun circumpolar_A : A; -fun circumscribe_V2 : V2; -fun circumscribed_A : A; -fun circumscription_N : N; -fun circumspect_A : A; -fun circumspection_N : N; -fun circumstance_N : N; -fun circumstances_N : N; -fun circumstantial_A : A; -fun circumstantially_Adv : Adv; -fun circumvent_V2 : V2; -fun circumvention_N : N; -fun circumvolution_N : N; -fun circus_N : N; -fun cirque_N : N; -fun cirrhosis_N : N; -fun cirrocumulus_N : N; -fun cirrostratus_N : N; -fun cirrus_N : N; -fun cisalpine_A : A; -fun cisco_N : N; -fun cismontane_A : A; -fun cissy_A : A; -fun cissy_N : N; -fun cistern_N : N; -fun cisterna_N : N; -fun citadel_N : N; -fun citation_N : N; -fun cite_V2 : V2; -fun citified_A : A; -fun citizen_N : N; -fun citizenry_N : N; -fun citizenship_N : N; -fun citrange_N : N; -fun citrate_N : N; -fun citric_A : A; -fun citrine_N : N; -fun citron_N : N; -fun citronwood_N : N; -fun citrous_A : A; -fun citrulline_N : N; -fun citrus_N : N; -fun cittern_N : N; -fun city_N : N; -fun city_like_A : A; -fun cityscape_N : N; -fun citywide_A : A; -fun civet_N : N; -fun civet_cat_N : N; -fun civic_A : A; -fun civics_N : N; -fun civies_N : N; -fun civil_A : A; -fun civil_libertarian_A : A; -fun civilian_A : A; -fun civilian_N : N; -fun civility_N : N; -fun civilization_N : N; -fun civilize_V2 : V2; -fun civilized_A : A; -fun civilly_Adv : Adv; -fun clabber_N : N; -fun clack_N : N; -fun clack_V : V; -fun clack_V2 : V2; -fun clad_A : A; -fun clad_V : V; -fun clad_V2 : V2; -fun clade_N : N; -fun cladistics_N : N; -fun cladode_N : N; -fun cladogram_N : N; -fun claim_N : N; -fun claim_V : V; -fun claim_V2 : V2; -fun claim_VS : VS; -fun claim_VV : VV; -fun claimant_N : N; -fun clairvoyance_N : N; -fun clairvoyant_A : A; -fun clairvoyant_N : N; -fun clam_N : N; -fun clam_V : V; -fun clamant_A : A; -fun clamatorial_A : A; -fun clambake_N : N; -fun clamber_N : N; -fun clamber_V : V; -fun clamber_V2 : V2; -fun clammily_Adv : Adv; -fun clammy_A : A; -fun clammyweed_N : N; -fun clamor_N : N; -fun clamorous_A : A; -fun clamour_N : N; -fun clamour_V : V; -fun clamour_V2 : V2; -fun clamp_N : N; -fun clamp_V : V; -fun clamp_V2 : V2; -fun clamp_down_N : N; -fun clampdown_N : N; -fun clamshell_N : N; -fun clan_N : N; -fun clandestine_A : A; -fun clang_N : N; -fun clang_V : V; -fun clang_V2 : V2; -fun clanger_N : N; -fun clangorous_A : A; -fun clangour_N : N; -fun clank_N : N; -fun clank_V : V; -fun clank_V2 : V2; -fun clanking_A : A; -fun clannish_A : A; -fun clannishly_Adv : Adv; -fun clannishness_N : N; -fun clansman_N : N; -fun clap_N : N; -fun clap_V : V; -fun clap_V2 : V2; -fun clapboard_N : N; -fun clapped_out_A : A; -fun clapper_N : N; -fun clapperboard_N : N; -fun claptrap_N : N; -fun claque_N : N; -fun clarence_N : N; -fun claret_N : N; -fun clarification_N : N; -fun clarify_V : V; -fun clarify_V2 : V2; -fun clarifying_A : A; -fun clarinet_N : N; -fun clarinetist_N : N; -fun clarinettist_N : N; -fun clarion_A : A; -fun clarion_N : N; -fun clarity_N : N; -fun claro_N : N; -fun clary_N : N; -fun clash_N : N; -fun clash_V : V; -fun clash_V2 : V2; -fun clashing_A : A; -fun clasp_N : N; -fun clasp_V : V; -fun clasp_V2 : V2; -fun clasp_knife_N : N; -fun class_N : N; -fun class_V2 : V2; -fun class_cyanobacteria_PN : PN; -fun class_conscious_A : A; -fun class_conscious_A : A; -fun class_feeling_N : N; -fun class_fellow_N : N; -fun class_list_N : N; -fun class_warfare_N : N; -fun classic_A : A; -fun classic_N : N; -fun classical_A : A; -fun classical_latin_PN : PN; -fun classically_Adv : Adv; -fun classicism_N : N; -fun classicist_N : N; -fun classicistic_A : A; -fun classics_N : N; -fun classifiable_A : A; -fun classification_N : N; -fun classificatory_A : A; -fun classified_A : A; -fun classifier_N : N; -fun classify_V2 : V2; -fun classless_A : A; -fun classmate_N : N; -fun classroom_N : N; -fun classwork_N : N; -fun classy_A : A; -fun clast_N : N; -fun clastic_A : A; -fun clathrate_A : A; -fun clatter_N : N; -fun clatter_V : V; -fun clatter_V2 : V2; -fun clattery_A : A; -fun clausal_A : A; -fun clause_N : N; -fun claustrophobe_N : N; -fun claustrophobia_N : N; -fun claustrophobic_A : A; -fun claustrum_N : N; -fun clavichord_N : N; -fun clavicle_N : N; -fun clavier_N : N; -fun claw_N : N; -fun claw_V2 : V2; -fun claw_shaped_A : A; -fun clawback_N : N; -fun clawed_A : A; -fun clawfoot_N : N; -fun clawhammer_N : N; -fun clawlike_A : A; -fun clay_N : N; -fun clayey_A : A; -fun claymore_N : N; -fun claystone_N : N; -fun clean_A : A; -fun clean_Adv : Adv; -fun clean_N : N; -fun clean_V : V; -fun clean_V2 : V2; -fun clean_bowled_A : A; -fun clean_burning_A : A; -fun clean_cut_A : A; -fun clean_cut_A : A; -fun clean_limbed_A : A; -fun clean_limbed_A : A; -fun clean_living_A : A; -fun clean_shaven_A : A; -fun clean_shaven_A : A; -fun clean_up_N : N; -fun cleanable_A : A; -fun cleaner_N : N; -fun cleaners_N : N; -fun cleaning_N : N; -fun cleanliness_N : N; -fun cleanly_A : A; -fun cleanly_Adv : Adv; -fun cleanness_N : N; -fun cleanse_V2 : V2; -fun cleanser_N : N; -fun cleansing_A : A; -fun cleanup_N : N; -fun clear_A : A; -fun clear_Adv : Adv; -fun clear_N : N; -fun clear_V : V; -fun clear_V2 : V2; -fun clear_V2V : V2V; -fun clear_cut_A : A; -fun clear_cut_Adv : Adv; -fun clear_eyed_A : A; -fun clear_headed_A : A; -fun clear_sighted_A : A; -fun clear_sighted_A : A; -fun clearance_N : N; -fun cleared_A : A; -fun clearheaded_A : A; -fun clearing_N : N; -fun clearing_house_N : N; -fun clearly_Adv : Adv; -fun clearness_N : N; -fun clearway_N : N; -fun cleat_N : N; -fun cleats_N : N; -fun cleavable_A : A; -fun cleavage_N : N; -fun cleave_V : V; -fun cleave_V2 : V2; -fun cleaver_N : N; -fun cleavers_N : N; -fun clef_N : N; -fun cleft_A : A; -fun cleft_N : N; -fun cleistogamous_A : A; -fun cleistogamy_N : N; -fun cleistothecium_N : N; -fun clematis_N : N; -fun clemency_N : N; -fun clement_A : A; -fun clementine_N : N; -fun clench_V2 : V2; -fun clenched_A : A; -fun clerestory_N : N; -fun clergy_N : N; -fun clergyman_N : N; -fun cleric_N : N; -fun clerical_A : A; -fun clericalism_N : N; -fun clericalist_N : N; -fun clerihew_N : N; -fun clerk_N : N; -fun clerk_V : V; -fun clerkship_N : N; -fun clever_A : A; -fun clever_dick_PN : PN; -fun cleverly_Adv : Adv; -fun cleverness_N : N; -fun clevis_N : N; -fun clew_N : N; -fun clew_V2 : V2; -fun clews_N : N; -fun cliche_N : N; -fun cliched_A : A; -fun click_N : N; -fun click_V : V; -fun click_V2 : V2; -fun click_clack_N : N; -fun clickety_clack_N : N; -fun client_N : N; -fun client_server_A : A; -fun clientage_N : N; -fun clientele_N : N; -fun cliff_N : N; -fun cliff_hanger_N : N; -fun cliff_hanging_A : A; -fun cliffhanger_N : N; -fun climacteric_N : N; -fun climactic_A : A; -fun climate_N : N; -fun climatic_A : A; -fun climatically_Adv : Adv; -fun climatologist_N : N; -fun climatology_N : N; -fun climax_N : N; -fun climax_V : V; -fun climax_V2 : V2; -fun climb_N : N; -fun climb_V : V; -fun climb_V2 : V2; -fun climb_down_N : N; -fun climber_N : N; -fun clime_N : N; -fun clinch_N : N; -fun clinch_V : V; -fun clinch_V2 : V2; -fun clincher_N : N; -fun cling_N : N; -fun cling_V : V; -fun cling_V2 : V2; -fun clingfish_N : N; -fun clinic_N : N; -fun clinical_A : A; -fun clinically_Adv : Adv; -fun clinician_N : N; -fun clinid_N : N; -fun clink_N : N; -fun clink_V : V; -fun clink_V2 : V2; -fun clinker_N : N; -fun clinker_built_A : A; -fun clinker_built_A : A; -fun clinking_A : A; -fun clinocephaly_N : N; -fun clinodactyly_N : N; -fun clinometer_N : N; -fun clinquant_A : A; -fun clintonia_N : N; -fun clip_N : N; -fun clip_V2 : V2; -fun clip_clop_N : N; -fun clip_joint_N : N; -fun clip_on_A : A; -fun clip_on_A : A; -fun clip_on_N : N; -fun clipboard_N : N; -fun clipped_A : A; -fun clipper_N : N; -fun clipping_N : N; -fun clique_N : N; -fun cliquish_A : A; -fun clitoral_A : A; -fun clitoridectomy_N : N; -fun clitoris_N : N; -fun cloaca_N : N; -fun cloak_N : N; -fun cloak_V2 : V2; -fun cloaked_A : A; -fun cloakmaker_N : N; -fun cloakroom_N : N; -fun clobber_N : N; -fun clobber_V2 : V2; -fun cloche_N : N; -fun clock_N : N; -fun clock_V : V; -fun clock_V2 : V2; -fun clock_dial_N : N; -fun clock_face_N : N; -fun clock_golf_N : N; -fun clock_tower_N : N; -fun clock_watching_N : N; -fun clock_watching_N : N; -fun clocking_N : N; -fun clocksmith_N : N; -fun clockwise_A : A; -fun clockwise_Adv : Adv; -fun clockwork_N : N; -fun clod_N : N; -fun cloddish_A : A; -fun clodhopper_N : N; -fun clofibrate_N : N; -fun clog_N : N; -fun clog_V : V; -fun clog_V2 : V2; -fun clog_dance_N : N; -fun clogged_A : A; -fun clogging_A : A; -fun cloggy_A : A; -fun cloisonne_N : N; -fun cloister_N : N; -fun cloister_V2 : V2; -fun cloistered_A : A; -fun clomiphene_N : N; -fun clomipramine_N : N; -fun clomp_V : V; -fun clomp_V2 : V2; -fun clonal_A : A; -fun clone_N : N; -fun clone_V2 : V2; -fun clonic_A : A; -fun clonidine_N : N; -fun cloning_N : N; -fun clonus_N : N; -fun close_A : A; -fun close_Adv : Adv; -fun close_N : N; -fun close_V : V; -fun close_V2 : V2; -fun close_V2V : V2V; -fun close_VA : VA; -fun close_VS : VS; -fun close_cropped_A : A; -fun close_cut_A : A; -fun close_down_N : N; -fun close_fisted_A : A; -fun close_fitting_A : A; -fun close_grained_A : A; -fun close_grained_A : A; -fun close_hauled_A : A; -fun close_hauled_A : A; -fun close_knit_A : A; -fun close_minded_A : A; -fun close_packed_A : A; -fun close_set_A : A; -fun close_set_A : A; -fun close_to_the_wind_Adv : Adv; -fun close_up_Adv : Adv; -fun close_up_N : N; -fun closed_A : A; -fun closed_captioned_A : A; -fun closed_chain_A : A; -fun closed_circuit_A : A; -fun closed_door_A : A; -fun closefisted_A : A; -fun closely_Adv : Adv; -fun closely_held_A : A; -fun closeness_N : N; -fun closeout_N : N; -fun closer_N : N; -fun closet_A : A; -fun closet_N : N; -fun closet_V2 : V2; -fun closeup_N : N; -fun closing_A : A; -fun closing_N : N; -fun clostridium_N : N; -fun closure_N : N; -fun clot_N : N; -fun clot_V : V; -fun clot_V2 : V2; -fun cloth_N : N; -fun clothe_V : V; -fun clothe_V2 : V2; -fun clothed_A : A; -fun clothes_basket_N : N; -fun clothes_hanger_N : N; -fun clothes_moth_N : N; -fun clothes_peg_N : N; -fun clothes_pin_N : N; -fun clothesbrush_N : N; -fun clotheshorse_N : N; -fun clothesless_A : A; -fun clothesline_N : N; -fun clothespin_N : N; -fun clothier_N : N; -fun clothing_N : N; -fun cloud_N : N; -fun cloud_V : V; -fun cloud_V2 : V2; -fun cloud_bank_N : N; -fun cloud_capped_A : A; -fun cloud_covered_A : A; -fun cloud_cuckoo_land_N : N; -fun cloud_cuckoo_land_N : N; -fun cloudberry_N : N; -fun cloudburst_N : N; -fun clouded_A : A; -fun cloudiness_N : N; -fun clouding_N : N; -fun cloudless_A : A; -fun cloudlessness_N : N; -fun cloudlike_A : A; -fun cloudy_A : A; -fun clout_N : N; -fun clout_V2 : V2; -fun clove_N : N; -fun clove_hitch_N : N; -fun clove_scented_A : A; -fun cloven_A : A; -fun cloven_hoofed_A : A; -fun clover_N : N; -fun cloverleaf_N : N; -fun clowder_N : N; -fun clown_N : N; -fun clown_V : V; -fun clownish_A : A; -fun cloy_V : V; -fun cloy_V2 : V2; -fun cloying_A : A; -fun cloyingly_Adv : Adv; -fun clozapine_N : N; -fun cloze_A : A; -fun club_N : N; -fun club_V : V; -fun club_V2 : V2; -fun club_footed_A : A; -fun club_shaped_A : A; -fun clubbable_A : A; -fun clubbing_N : N; -fun clubbish_A : A; -fun clubfoot_N : N; -fun clubfooted_A : A; -fun clubhouse_N : N; -fun clubroom_N : N; -fun cluck_N : N; -fun cluck_V : V; -fun cluck_V2 : V2; -fun clue_N : N; -fun clueless_A : A; -fun clumber_N : N; -fun clump_N : N; -fun clump_V : V; -fun clump_V2 : V2; -fun clumsily_Adv : Adv; -fun clumsiness_N : N; -fun clumsy_A : A; -fun clunch_N : N; -fun clunk_N : N; -fun clunk_V : V; -fun clunk_V2 : V2; -fun clunky_A : A; -fun clusia_N : N; -fun cluster_N : N; -fun cluster_V : V; -fun cluster_V2 : V2; -fun clustered_A : A; -fun clutch_N : N; -fun clutch_V : V; -fun clutch_V2 : V2; -fun clutter_N : N; -fun clutter_V2 : V2; -fun cluttered_A : A; -fun clypeus_N : N; -fun cm_N : N; -fun co_N : N; -fun co_author_V2 : V2; -fun co_beneficiary_N : N; -fun co_discoverer_N : N; -fun co_ed_A : A; -fun co_ed_N : N; -fun co_ed_N : N; -fun co_edit_V2 : V2; -fun co_exist_V : V; -fun co_found_V2 : V2; -fun co_manage_V2 : V2; -fun co_op_N : N; -fun co_opt_V2 : V2; -fun co_option_N : N; -fun co_respondent_N : N; -fun co_sponsor_V2 : V2; -fun co_star_N : N; -fun co_star_N : N; -fun co_star_V : V; -fun co_star_V2 : V2; -fun coach_N : N; -fun coach_V : V; -fun coach_V2 : V2; -fun coach_builder_N : N; -fun coachbuilder_N : N; -fun coaching_N : N; -fun coachman_N : N; -fun coachwhip_N : N; -fun coadjutor_N : N; -fun coagulable_A : A; -fun coagulant_N : N; -fun coagulase_N : N; -fun coagulate_A : A; -fun coagulate_V : V; -fun coagulate_V2 : V2; -fun coagulated_A : A; -fun coagulation_N : N; -fun coal_N : N; -fun coal_V : V; -fun coal_V2 : V2; -fun coal_black_A : A; -fun coal_fired_A : A; -fun coal_gas_N : N; -fun coal_hole_N : N; -fun coal_house_N : N; -fun coal_scuttle_N : N; -fun coal_seam_N : N; -fun coal_tar_N : N; -fun coalbin_N : N; -fun coalesce_V : V; -fun coalescence_N : N; -fun coalescent_A : A; -fun coalface_N : N; -fun coalfield_N : N; -fun coaling_station_N : N; -fun coalition_N : N; -fun coalman_N : N; -fun coalmine_N : N; -fun coalpit_N : N; -fun coaming_N : N; -fun coarctate_A : A; -fun coarctation_N : N; -fun coarse_A : A; -fun coarse_grained_A : A; -fun coarse_haired_A : A; -fun coarsely_Adv : Adv; -fun coarsen_V : V; -fun coarsen_V2 : V2; -fun coarsened_A : A; -fun coarseness_N : N; -fun coast_N : N; -fun coast_V : V; -fun coast_V2 : V2; -fun coastal_A : A; -fun coaster_N : N; -fun coastguard_N : N; -fun coastguardsman_N : N; -fun coastland_N : N; -fun coastline_N : N; -fun coastward_Adv : Adv; -fun coastwise_A : A; -fun coastwise_Adv : Adv; -fun coat_N : N; -fun coat_V2 : V2; -fun coat_hanger_N : N; -fun coatdress_N : N; -fun coated_A : A; -fun coatee_N : N; -fun coati_N : N; -fun coating_N : N; -fun coatrack_N : N; -fun coattail_N : N; -fun coauthor_N : N; -fun coax_V : V; -fun coax_V2 : V2; -fun coaxial_A : A; -fun coaxing_A : A; -fun coaxing_N : N; -fun coaxingly_Adv : Adv; -fun cob_N : N; -fun cob_nut_N : N; -fun cobalt_N : N; -fun cobaltite_N : N; -fun cobber_N : N; -fun cobble_N : N; -fun cobble_V2 : V2; -fun cobbler_N : N; -fun cobblers_N : N; -fun cobblestone_N : N; -fun cobia_N : N; -fun cobnut_N : N; -fun cobra_N : N; -fun cobweb_N : N; -fun cobwebby_A : A; -fun coca_N : N; -fun coca_cola_N : N; -fun cocaine_N : N; -fun cocarboxylase_N : N; -fun coccal_A : A; -fun coccidioidomycosis_N : N; -fun coccidiosis_N : N; -fun coccidium_N : N; -fun coccobacillus_N : N; -fun coccoid_A : A; -fun coccus_N : N; -fun coccygeal_A : A; -fun coccyx_N : N; -fun cochin_N : N; -fun cochineal_N : N; -fun cochlea_N : N; -fun cochlear_A : A; -fun cock_N : N; -fun cock_V2 : V2; -fun cock_a_doodle_doo_N : N; -fun cock_a_doodle_doo_N : N; -fun cock_a_hoop_A : A; -fun cock_a_hoop_Adv : Adv; -fun cock_a_leekie_N : N; -fun cock_crow_N : N; -fun cockade_N : N; -fun cockamamie_A : A; -fun cockateel_N : N; -fun cockatoo_N : N; -fun cockatrice_N : N; -fun cockchafer_N : N; -fun cocker_N : N; -fun cockerel_N : N; -fun cockeyed_A : A; -fun cockfight_N : N; -fun cockfighting_N : N; -fun cockhorse_N : N; -fun cockle_N : N; -fun cocklebur_N : N; -fun cockleshell_N : N; -fun cockloft_N : N; -fun cockney_A : A; -fun cockney_N : N; -fun cockpit_N : N; -fun cockroach_N : N; -fun cockscomb_N : N; -fun cockspur_N : N; -fun cocksucker_N : N; -fun cocksure_A : A; -fun cocktail_N : N; -fun cockup_N : N; -fun cocky_A : A; -fun coco_N : N; -fun cocoa_N : N; -fun cocobolo_N : N; -fun coconut_N : N; -fun cocoon_N : N; -fun cocoon_V2 : V2; -fun cocooning_N : N; -fun cocotte_N : N; -fun cocozelle_N : N; -fun cocuswood_N : N; -fun cod_N : N; -fun cod_V : V; -fun cod_V2 : V2; -fun cod_liver_oil_N : N; -fun coda_N : N; -fun coddle_V2 : V2; -fun code_N : N; -fun code_V2 : V2; -fun codefendant_N : N; -fun codeine_N : N; -fun codetalker_N : N; -fun codex_N : N; -fun codfish_N : N; -fun codger_N : N; -fun codicil_N : N; -fun codification_N : N; -fun codified_A : A; -fun codify_V2 : V2; -fun codling_N : N; -fun codon_N : N; -fun codpiece_N : N; -fun coeducation_N : N; -fun coeducational_A : A; -fun coefficient_N : N; -fun coelacanth_N : N; -fun coelenterate_N : N; -fun coelenteron_N : N; -fun coeliac_A : A; -fun coelogyne_N : N; -fun coelophysis_N : N; -fun coelostat_N : N; -fun coenzyme_N : N; -fun coenzyme_a_PN : PN; -fun coequal_A : A; -fun coerce_V2 : V2; -fun coercion_N : N; -fun coercive_A : A; -fun coetaneous_A : A; -fun coeval_A : A; -fun coeval_N : N; -fun coevals_N : N; -fun coexist_V : V; -fun coexistence_N : N; -fun coexistent_A : A; -fun coextension_N : N; -fun coextensive_A : A; -fun coextrude_V2 : V2; -fun cofactor_N : N; -fun coffee_N : N; -fun coffee_house_N : N; -fun coffee_mill_N : N; -fun coffee_stall_N : N; -fun coffeeberry_N : N; -fun coffeecake_N : N; -fun coffeepot_N : N; -fun coffer_N : N; -fun coffer_dam_N : N; -fun coffin_N : N; -fun cofounder_N : N; -fun cog_N : N; -fun cogency_N : N; -fun cogent_A : A; -fun cogged_A : A; -fun cogitable_A : A; -fun cogitate_V : V; -fun cogitate_V2 : V2; -fun cogitation_N : N; -fun cogitative_A : A; -fun cognac_N : N; -fun cognate_A : A; -fun cognate_N : N; -fun cognition_N : N; -fun cognitive_A : A; -fun cognitively_Adv : Adv; -fun cognizance_N : N; -fun cognizant_A : A; -fun cognomen_N : N; -fun cogwheel_N : N; -fun cohabit_V : V; -fun cohabitation_N : N; -fun cohere_V : V; -fun coherence_N : N; -fun coherency_N : N; -fun coherent_A : A; -fun coherently_Adv : Adv; -fun cohesion_N : N; -fun cohesive_A : A; -fun cohesiveness_N : N; -fun coho_N : N; -fun cohort_N : N; -fun coif_N : N; -fun coiffeur_N : N; -fun coiffeuse_N : N; -fun coiffure_N : N; -fun coign_N : N; -fun coil_N : N; -fun coil_V : V; -fun coil_V2 : V2; -fun coiled_A : A; -fun coiling_A : A; -fun coin_N : N; -fun coin_V2 : V2; -fun coin_operated_A : A; -fun coinage_N : N; -fun coincide_V : V; -fun coincidence_N : N; -fun coincident_A : A; -fun coincidental_A : A; -fun coincidentally_Adv : Adv; -fun coiner_N : N; -fun coinsurance_N : N; -fun coir_N : N; -fun coital_A : A; -fun coition_N : N; -fun coitus_N : N; -fun coke_N : N; -fun coke_V2 : V2; -fun col_N : N; -fun cola_N : N; -fun colander_N : N; -fun colchicine_N : N; -fun cold_A : A; -fun cold_N : N; -fun cold_blooded_A : A; -fun cold_blooded_A : A; -fun cold_bloodedly_Adv : Adv; -fun cold_hearted_A : A; -fun cold_shoulder_V2 : V2; -fun cold_sober_A : A; -fun cold_temperate_A : A; -fun coldcream_V2 : V2; -fun coldhearted_A : A; -fun coldly_Adv : Adv; -fun coldness_N : N; -fun coleslaw_N : N; -fun coleus_N : N; -fun colic_N : N; -fun colicky_A : A; -fun colicroot_N : N; -fun coliphage_N : N; -fun colitis_N : N; -fun collaborate_V : V; -fun collaboration_N : N; -fun collaborationist_N : N; -fun collaborative_A : A; -fun collaborator_N : N; -fun collage_N : N; -fun collagen_N : N; -fun collagenase_N : N; -fun collagenous_A : A; -fun collapsable_A : A; -fun collapse_N : N; -fun collapse_V : V; -fun collapse_V2 : V2; -fun collapsible_A : A; -fun collar_N : N; -fun collar_V2 : V2; -fun collarbone_N : N; -fun collard_N : N; -fun collards_N : N; -fun collarless_A : A; -fun collate_V2 : V2; -fun collateral_A : A; -fun collateral_N : N; -fun collation_N : N; -fun colleague_N : N; -fun collect_A : A; -fun collect_Adv : Adv; -fun collect_N : N; -fun collect_V : V; -fun collect_V2 : V2; -fun collected_A : A; -fun collectedly_Adv : Adv; -fun collectible_A : A; -fun collectible_N : N; -fun collection_N : N; -fun collective_A : A; -fun collective_N : N; -fun collectivism_N : N; -fun collectivist_A : A; -fun collectivist_N : N; -fun collectivization_N : N; -fun collectivize_V2 : V2; -fun collectivized_A : A; -fun collector_N : N; -fun colleen_N : N; -fun college_N : N; -fun collegial_A : A; -fun collegian_N : N; -fun collegiate_A : A; -fun collembolan_N : N; -fun collet_N : N; -fun collide_V : V; -fun collider_N : N; -fun collie_N : N; -fun collier_N : N; -fun colliery_N : N; -fun colligation_N : N; -fun collimation_N : N; -fun collimator_N : N; -fun collinear_A : A; -fun collins_N : N; -fun collision_N : N; -fun collocate_V : V; -fun collocation_N : N; -fun collodion_N : N; -fun colloid_N : N; -fun colloidal_A : A; -fun colloidally_Adv : Adv; -fun colloquial_A : A; -fun colloquialism_N : N; -fun colloquially_Adv : Adv; -fun colloquium_N : N; -fun colloquy_N : N; -fun collotype_N : N; -fun collude_V : V; -fun collusion_N : N; -fun collusive_A : A; -fun colobus_N : N; -fun cologne_N : N; -fun colombian_A : A; -fun colombian_N : N; -fun colon_N : N; -fun colonel_N : N; -fun colonial_A : A; -fun colonial_N : N; -fun colonialism_N : N; -fun colonialist_N : N; -fun colonic_A : A; -fun colonist_N : N; -fun colonization_N : N; -fun colonize_V2 : V2; -fun colonized_A : A; -fun colonizer_N : N; -fun colonnade_N : N; -fun colonnaded_A : A; -fun colonoscope_N : N; -fun colonoscopy_N : N; -fun colony_N : N; -fun colophon_N : N; -fun colophony_N : N; -fun color_A : A; -fun color_N : N; -fun color_V2 : V2; -fun color_blind_A : A; -fun color_code_V2 : V2; -fun coloration_N : N; -fun coloratura_N : N; -fun colorcast_N : N; -fun colorectal_A : A; -fun colored_A : A; -fun colorfast_A : A; -fun colorful_A : A; -fun colorimeter_N : N; -fun colorimetric_A : A; -fun colorimetry_N : N; -fun coloring_N : N; -fun colorist_N : N; -fun colorless_A : A; -fun colorlessness_N : N; -fun colors_N : N; -fun colossal_A : A; -fun colossus_N : N; -fun colostomy_N : N; -fun colostrum_N : N; -fun colour_N : N; -fun colour_V : V; -fun colour_V2 : V2; -fun colour_bar_N : N; -fun colour_blind_A : A; -fun colour_wash_N : N; -fun coloured_A : A; -fun colourful_A : A; -fun colouring_N : N; -fun colourless_A : A; -fun colpitis_N : N; -fun colpocele_N : N; -fun colpocystitis_N : N; -fun colpoxerosis_N : N; -fun colt_N : N; -fun colter_N : N; -fun coltish_A : A; -fun coltsfoot_N : N; -fun columbarium_N : N; -fun columbine_N : N; -fun columbite_tantalite_N : N; -fun columbium_N : N; -fun columbo_N : N; -fun columella_N : N; -fun column_N : N; -fun columnar_A : A; -fun columnea_N : N; -fun columned_A : A; -fun columniation_N : N; -fun columniform_A : A; -fun columnist_N : N; -fun coma_N : N; -fun comate_A : A; -fun comatose_A : A; -fun comb_N : N; -fun comb_V : V; -fun comb_V2 : V2; -fun comb_out_N : N; -fun comb_out_N : N; -fun combat_N : N; -fun combat_V : V; -fun combat_V2 : V2; -fun combatant_A : A; -fun combatant_N : N; -fun combative_A : A; -fun combatively_Adv : Adv; -fun combativeness_N : N; -fun combed_A : A; -fun comber_N : N; -fun combinable_A : A; -fun combination_N : N; -fun combination_lock_N : N; -fun combinative_A : A; -fun combinatorial_A : A; -fun combine_N : N; -fun combine_V : V; -fun combine_V2 : V2; -fun combine_V2V : V2V; -fun combine_VV : VV; -fun combined_A : A; -fun combining_N : N; -fun combretum_N : N; -fun comburent_A : A; -fun combustibility_N : N; -fun combustible_A : A; -fun combustible_N : N; -fun combustion_N : N; -fun come_V : V; -fun come_V2 : V2; -fun come_VA : VA; -fun come_VS : VS; -fun come_VV : VV; -fun come_at_able_A : A; -fun come_at_able_A : A; -fun come_hell_or_high_water_Adv : Adv; -fun come_on_N : N; -fun comeback_N : N; -fun comedian_N : N; -fun comedienne_N : N; -fun comedown_N : N; -fun comedy_N : N; -fun comeliness_N : N; -fun comely_A : A; -fun comer_N : N; -fun comestible_N : N; -fun comet_N : N; -fun comet_like_A : A; -fun cometary_A : A; -fun comfit_N : N; -fun comfort_N : N; -fun comfort_V2 : V2; -fun comfortable_A : A; -fun comfortableness_N : N; -fun comfortably_Adv : Adv; -fun comforted_A : A; -fun comforter_N : N; -fun comforting_A : A; -fun comfortingly_Adv : Adv; -fun comfortless_A : A; -fun comforts_N : N; -fun comfrey_N : N; -fun comfy_A : A; -fun comic_A : A; -fun comic_N : N; -fun comical_A : A; -fun comicality_N : N; -fun comically_Adv : Adv; -fun coming_A : A; -fun coming_N : N; -fun comity_N : N; -fun comma_N : N; -fun command_N : N; -fun command_V : V; -fun command_V2 : V2; -fun commandant_N : N; -fun commandeer_V2 : V2; -fun commander_N : N; -fun commandership_N : N; -fun commanding_A : A; -fun commandment_N : N; -fun commando_N : N; -fun commelina_N : N; -fun commemorate_V2 : V2; -fun commemoration_N : N; -fun commemorative_A : A; -fun commemorative_N : N; -fun commence_V : V; -fun commence_V2 : V2; -fun commencement_N : N; -fun commend_V2 : V2; -fun commendable_A : A; -fun commendation_N : N; -fun commensal_A : A; -fun commensal_N : N; -fun commensalism_N : N; -fun commensally_Adv : Adv; -fun commensurable_A : A; -fun commensurate_A : A; -fun commensurateness_N : N; -fun comment_N : N; -fun comment_V : V; -fun comment_V2 : V2; -fun comment_VS : VS; -fun commentary_N : N; -fun commentate_V : V; -fun commentator_N : N; -fun commerce_N : N; -fun commercial_A : A; -fun commercial_N : N; -fun commercialism_N : N; -fun commercialization_N : N; -fun commercialize_V2 : V2; -fun commercialized_A : A; -fun commercially_Adv : Adv; -fun commination_N : N; -fun comminatory_A : A; -fun commingle_V : V; -fun commingle_V2 : V2; -fun commiserate_V : V; -fun commiseration_N : N; -fun commiserative_A : A; -fun commissar_N : N; -fun commissariat_N : N; -fun commissary_N : N; -fun commission_N : N; -fun commission_V2 : V2; -fun commission_V2V : V2V; -fun commissionaire_N : N; -fun commissioned_A : A; -fun commissioner_N : N; -fun commissure_N : N; -fun commit_V2 : V2; -fun commit_V2V : V2V; -fun commital_N : N; -fun commitment_N : N; -fun committed_A : A; -fun committedness_N : N; -fun committee_N : N; -fun committeeman_N : N; -fun committeewoman_N : N; -fun commode_N : N; -fun commodious_A : A; -fun commodity_N : N; -fun commodore_N : N; -fun common_A : A; -fun common_N : N; -fun common_american_shad_PN : PN; -fun common_european_dogwood_PN : PN; -fun common_european_earwig_PN : PN; -fun common_european_jay_PN : PN; -fun common_st_john's_wort_PN : PN; -fun common_law_A : A; -fun common_or_garden_A : A; -fun common_room_N : N; -fun commonage_N : N; -fun commonality_N : N; -fun commonalty_N : N; -fun commoner_N : N; -fun commonness_N : N; -fun commonplace_A : A; -fun commonplace_N : N; -fun commons_N : N; -fun commonsense_A : A; -fun commonwealth_N : N; -fun commotion_N : N; -fun communal_A : A; -fun communalism_N : N; -fun communally_Adv : Adv; -fun commune_N : N; -fun commune_V : V; -fun communicable_A : A; -fun communicant_N : N; -fun communicate_V : V; -fun communicate_V2 : V2; -fun communication_N : N; -fun communicational_A : A; -fun communications_N : N; -fun communicative_A : A; -fun communicativeness_N : N; -fun communicator_N : N; -fun communion_N : N; -fun communique_N : N; -fun communism_N : N; -fun communist_A : A; -fun communist_N : N; -fun community_N : N; -fun communization_N : N; -fun commutability_N : N; -fun commutable_A : A; -fun commutation_N : N; -fun commutative_A : A; -fun commutator_N : N; -fun commute_N : N; -fun commute_V : V; -fun commute_V2 : V2; -fun commuter_N : N; -fun compact_A : A; -fun compact_N : N; -fun compact_V2 : V2; -fun compaction_N : N; -fun compactly_Adv : Adv; -fun compactness_N : N; -fun companion_N : N; -fun companionability_N : N; -fun companionable_A : A; -fun companionate_A : A; -fun companionship_N : N; -fun companionway_N : N; -fun company_N : N; -fun comparability_N : N; -fun comparable_A : A; -fun comparable_to_A : A; -fun comparable_with_A : A; -fun comparably_Adv : Adv; -fun comparative_A : A; -fun comparative_N : N; -fun compare_N : N; -fun compare_V : V; -fun compare_V2 : V2; -fun comparison_N : N; -fun compartment_N : N; -fun compartmental_A : A; -fun compartmentalization_N : N; -fun compartmentalize_V2 : V2; -fun compartmented_A : A; -fun compass_N : N; -fun compass_V2 : V2; -fun compassion_N : N; -fun compassionate_A : A; -fun compatibility_N : N; -fun compatible_A : A; -fun compatibly_Adv : Adv; -fun compatriot_N : N; -fun compeer_N : N; -fun compel_V2 : V2; -fun compel_VV : VV; -fun compelling_A : A; -fun compendious_A : A; -fun compendium_N : N; -fun compensable_A : A; -fun compensate_V : V; -fun compensate_V2 : V2; -fun compensated_A : A; -fun compensation_N : N; -fun compensatory_A : A; -fun compere_N : N; -fun compere_V2 : V2; -fun compete_V : V; -fun competence_N : N; -fun competent_A : A; -fun competently_Adv : Adv; -fun competition_N : N; -fun competitive_A : A; -fun competitively_Adv : Adv; -fun competitiveness_N : N; -fun competitor_N : N; -fun compilation_N : N; -fun compile_V : V; -fun compile_V2 : V2; -fun compiler_N : N; -fun complacence_N : N; -fun complacency_N : N; -fun complacent_A : A; -fun complacently_Adv : Adv; -fun complain_V : V; -fun complain_VS : VS; -fun complainant_N : N; -fun complaining_A : A; -fun complainingly_Adv : Adv; -fun complaint_N : N; -fun complaisance_N : N; -fun complaisant_A : A; -fun complement_N : N; -fun complement_V2 : V2; -fun complemental_A : A; -fun complementarity_N : N; -fun complementary_A : A; -fun complementary_dna_PN : PN; -fun complementation_N : N; -fun complete_A : A; -fun complete_V : V; -fun complete_V2 : V2; -fun completed_A : A; -fun completely_Adv : Adv; -fun completeness_N : N; -fun completion_N : N; -fun complex_A : A; -fun complex_N : N; -fun complexifier_N : N; -fun complexion_N : N; -fun complexity_N : N; -fun complexly_Adv : Adv; -fun compliance_N : N; -fun compliant_A : A; -fun complicate_V2 : V2; -fun complicated_A : A; -fun complicatedness_N : N; -fun complication_N : N; -fun complicity_N : N; -fun compliment_N : N; -fun compliment_V2 : V2; -fun complimentary_A : A; -fun complin_N : N; -fun compline_N : N; -fun comply_V : V; -fun comply_V2 : V2; -fun component_A : A; -fun component_N : N; -fun comport_V : V; -fun comport_V2 : V2; -fun comportment_N : N; -fun compos_mentis_A : A; -fun compose_V : V; -fun compose_V2 : V2; -fun composed_A : A; -fun composer_N : N; -fun composing_N : N; -fun composite_A : A; -fun composite_N : N; -fun compositeness_N : N; -fun composition_N : N; -fun compositional_A : A; -fun compositor_N : N; -fun compost_N : N; -fun compost_V2 : V2; -fun composure_N : N; -fun compote_N : N; -fun compound_A : A; -fun compound_N : N; -fun compound_V : V; -fun compound_V2 : V2; -fun compounded_A : A; -fun comprehend_V2 : V2; -fun comprehensibility_N : N; -fun comprehensible_A : A; -fun comprehension_N : N; -fun comprehensive_A : A; -fun comprehensively_Adv : Adv; -fun comprehensiveness_N : N; -fun compress_N : N; -fun compress_V2 : V2; -fun compressed_A : A; -fun compressibility_N : N; -fun compressible_A : A; -fun compression_N : N; -fun compressor_N : N; -fun comprise_V2 : V2; -fun compromise_N : N; -fun compromise_V : V; -fun compromise_V2 : V2; -fun compromiser_N : N; -fun compromising_A : A; -fun compsognathus_N : N; -fun comptroller_N : N; -fun comptrollership_N : N; -fun compulsion_N : N; -fun compulsive_A : A; -fun compulsive_N : N; -fun compulsively_Adv : Adv; -fun compulsiveness_N : N; -fun compulsorily_Adv : Adv; -fun compulsory_A : A; -fun compunction_N : N; -fun computable_A : A; -fun computation_N : N; -fun computational_A : A; -fun computationally_Adv : Adv; -fun compute_V : V; -fun compute_V2 : V2; -fun computer_N : N; -fun computerization_N : N; -fun computerize_V2 : V2; -fun comrade_N : N; -fun comradely_A : A; -fun comradely_Adv : Adv; -fun comradeship_N : N; -fun con_Adv : Adv; -fun con_N : N; -fun con_V2 : V2; -fun con_brio_A : A; -fun con_brio_Adv : Adv; -fun con_man_N : N; -fun conacaste_N : N; -fun concatenation_N : N; -fun concave_A : A; -fun concavely_Adv : Adv; -fun concavity_N : N; -fun concavo_convex_A : A; -fun conceal_V2 : V2; -fun conceale_V : V; -fun concealed_A : A; -fun concealing_A : A; -fun concealment_N : N; -fun concede_V : V; -fun concede_V2 : V2; -fun concede_VS : VS; -fun conceit_N : N; -fun conceited_A : A; -fun conceitedly_Adv : Adv; -fun conceivable_A : A; -fun conceivableness_N : N; -fun conceivably_Adv : Adv; -fun conceive_V : V; -fun conceive_V2 : V2; -fun concentrate_N : N; -fun concentrate_V : V; -fun concentrate_V2 : V2; -fun concentrated_A : A; -fun concentration_N : N; -fun concentric_A : A; -fun concentricity_N : N; -fun concept_N : N; -fun conception_N : N; -fun conceptional_A : A; -fun conceptive_A : A; -fun conceptual_A : A; -fun conceptualism_N : N; -fun conceptualistic_A : A; -fun conceptualization_N : N; -fun conceptually_Adv : Adv; -fun concern_N : N; -fun concern_V : V; -fun concern_V2 : V2; -fun concern_VS : VS; -fun concerned_A : A; -fun concernedly_Adv : Adv; -fun concert_N : N; -fun concert_V2 : V2; -fun concert_goer_N : N; -fun concert_hall_N : N; -fun concerted_A : A; -fun concertina_N : N; -fun concerto_N : N; -fun concession_N : N; -fun concessionaire_N : N; -fun concessive_A : A; -fun conch_N : N; -fun concha_N : N; -fun conchfish_N : N; -fun conchologist_N : N; -fun conchology_N : N; -fun concierge_N : N; -fun conciliate_V2 : V2; -fun conciliation_N : N; -fun conciliator_N : N; -fun conciliatory_A : A; -fun concise_A : A; -fun concisely_Adv : Adv; -fun conciseness_N : N; -fun conclave_N : N; -fun conclude_V : V; -fun conclude_V2 : V2; -fun conclude_VS : VS; -fun concluding_A : A; -fun conclusion_N : N; -fun conclusive_A : A; -fun conclusively_Adv : Adv; -fun concoct_V2 : V2; -fun concoction_N : N; -fun concomitance_N : N; -fun concomitant_A : A; -fun concomitant_N : N; -fun concord_N : N; -fun concordance_N : N; -fun concordant_A : A; -fun concordat_N : N; -fun concourse_N : N; -fun concrete_A : A; -fun concrete_N : N; -fun concrete_V : V; -fun concrete_V2 : V2; -fun concretely_Adv : Adv; -fun concreteness_N : N; -fun concretion_N : N; -fun concretism_N : N; -fun concretistic_A : A; -fun concubinage_N : N; -fun concubine_N : N; -fun concupiscence_N : N; -fun concur_V : V; -fun concurrence_N : N; -fun concurrent_A : A; -fun concurrently_Adv : Adv; -fun concuss_V2 : V2; -fun concussion_N : N; -fun condemn_V2 : V2; -fun condemnable_A : A; -fun condemnation_N : N; -fun condemnatory_A : A; -fun condensate_N : N; -fun condensation_N : N; -fun condense_V : V; -fun condense_V2 : V2; -fun condenser_N : N; -fun condensing_N : N; -fun condescend_V : V; -fun condescending_A : A; -fun condescendingly_Adv : Adv; -fun condescension_N : N; -fun condign_A : A; -fun condiment_N : N; -fun condition_N : N; -fun condition_V2 : V2; -fun conditional_A : A; -fun conditionality_N : N; -fun conditionally_Adv : Adv; -fun conditioned_A : A; -fun conditioner_N : N; -fun conditioning_N : N; -fun conditions_N : N; -fun condole_V : V; -fun condolence_N : N; -fun condolent_A : A; -fun condom_N : N; -fun condominium_N : N; -fun condonation_N : N; -fun condone_V2 : V2; -fun condor_N : N; -fun conduce_V : V; -fun conducive_A : A; -fun conduct_N : N; -fun conduct_V : V; -fun conduct_V2 : V2; -fun conductance_N : N; -fun conducting_N : N; -fun conduction_N : N; -fun conductive_A : A; -fun conductivity_N : N; -fun conductor_N : N; -fun conductress_N : N; -fun conduit_N : N; -fun condylar_A : A; -fun condyle_N : N; -fun condylion_N : N; -fun cone_N : N; -fun cone_V2 : V2; -fun coneflower_N : N; -fun conenose_N : N; -fun coney_N : N; -fun confab_N : N; -fun confab_V : V; -fun confabulate_V : V; -fun confabulation_N : N; -fun confection_N : N; -fun confectioner_N : N; -fun confectionery_N : N; -fun confederacy_N : N; -fun confederate_A : A; -fun confederate_N : N; -fun confederate_V : V; -fun confederate_V2 : V2; -fun confederation_N : N; -fun confer_V : V; -fun confer_V2 : V2; -fun conferee_N : N; -fun conference_N : N; -fun conferment_N : N; -fun conferrer_N : N; -fun conferva_N : N; -fun confess_V : V; -fun confess_V2 : V2; -fun confess_VS : VS; -fun confessedly_Adv : Adv; -fun confession_N : N; -fun confessional_N : N; -fun confessor_N : N; -fun confetti_N : N; -fun confidant_N : N; -fun confidante_N : N; -fun confide_V : V; -fun confide_V2 : V2; -fun confide_VS : VS; -fun confidence_N : N; -fun confident_A : A; -fun confidential_A : A; -fun confidentiality_N : N; -fun confidentially_Adv : Adv; -fun confidently_Adv : Adv; -fun confiding_A : A; -fun configuration_N : N; -fun configurational_A : A; -fun configure_V2 : V2; -fun configured_A : A; -fun confine_V2 : V2; -fun confined_A : A; -fun confinement_N : N; -fun confines_N : N; -fun confining_A : A; -fun confirm_V2 : V2; -fun confirm_VS : VS; -fun confirmable_A : A; -fun confirmation_N : N; -fun confirmed_A : A; -fun confiscate_A : A; -fun confiscate_V2 : V2; -fun confiscation_N : N; -fun confit_N : N; -fun confiture_N : N; -fun conflagration_N : N; -fun conflict_N : N; -fun conflict_V : V; -fun conflicting_A : A; -fun confluence_N : N; -fun confluent_A : A; -fun conform_V : V; -fun conform_V2 : V2; -fun conformable_A : A; -fun conformably_Adv : Adv; -fun conformation_N : N; -fun conforming_A : A; -fun conformist_A : A; -fun conformist_N : N; -fun conformity_N : N; -fun confound_V2 : V2; -fun confounded_A : A; -fun confounding_A : A; -fun confrere_N : N; -fun confront_V2 : V2; -fun confrontation_N : N; -fun confrontational_A : A; -fun confucian_A : A; -fun confucian_N : N; -fun confusable_A : A; -fun confuse_V2 : V2; -fun confused_A : A; -fun confusedly_Adv : Adv; -fun confusing_A : A; -fun confusion_N : N; -fun confutation_N : N; -fun confute_V2 : V2; -fun conga_N : N; -fun conge_N : N; -fun congeal_V : V; -fun congeal_V2 : V2; -fun congealed_A : A; -fun congealment_N : N; -fun congee_N : N; -fun congener_N : N; -fun congeneric_A : A; -fun congenial_A : A; -fun congeniality_N : N; -fun congenially_Adv : Adv; -fun congenialness_N : N; -fun congenital_A : A; -fun conger_N : N; -fun conger_eel_N : N; -fun congested_A : A; -fun congestion_N : N; -fun congestive_A : A; -fun conglomerate_A : A; -fun conglomerate_N : N; -fun conglomerate_V : V; -fun conglomerate_V2 : V2; -fun conglomeration_N : N; -fun congolese_A : A; -fun congolese_N : N; -fun congou_N : N; -fun congratulate_V2 : V2; -fun congratulation_N : N; -fun congratulatory_A : A; -fun congregant_N : N; -fun congregate_V : V; -fun congregate_V2 : V2; -fun congregation_N : N; -fun congregational_A : A; -fun congress_N : N; -fun congressional_A : A; -fun congressman_N : N; -fun congresswoman_N : N; -fun congruent_A : A; -fun congruity_N : N; -fun congruous_A : A; -fun conic_A : A; -fun conical_A : A; -fun conically_Adv : Adv; -fun conidiophore_N : N; -fun conidium_N : N; -fun conifer_N : N; -fun coniferous_A : A; -fun conima_N : N; -fun conjectural_A : A; -fun conjecturally_Adv : Adv; -fun conjecture_N : N; -fun conjecture_V : V; -fun conjecture_V2 : V2; -fun conjoin_V : V; -fun conjoin_V2 : V2; -fun conjoined_A : A; -fun conjoint_A : A; -fun conjugal_A : A; -fun conjugally_Adv : Adv; -fun conjugate_A : A; -fun conjugate_V : V; -fun conjugate_V2 : V2; -fun conjugation_N : N; -fun conjunct_A : A; -fun conjunction_N : N; -fun conjunctiva_N : N; -fun conjunctival_A : A; -fun conjunctive_A : A; -fun conjunctive_N : N; -fun conjunctivitis_N : N; -fun conjuncture_N : N; -fun conjuration_N : N; -fun conjure_V : V; -fun conjure_V2 : V2; -fun conjurer_N : N; -fun conjuring_N : N; -fun conjuror_N : N; -fun conk_N : N; -fun conk_V : V; -fun conk_V2 : V2; -fun conker_N : N; -fun connate_A : A; -fun connatural_A : A; -fun connect_V : V; -fun connect_V2 : V2; -fun connected_A : A; -fun connection_N : N; -fun connective_A : A; -fun connective_N : N; -fun connectivity_N : N; -fun connexion_N : N; -fun conning_A : A; -fun connivance_N : N; -fun connive_V : V; -fun connoisseur_N : N; -fun connotation_N : N; -fun connotational_A : A; -fun connotative_A : A; -fun connote_V2 : V2; -fun connubial_A : A; -fun conodont_N : N; -fun conquer_V2 : V2; -fun conquerable_A : A; -fun conqueror_N : N; -fun conquest_N : N; -fun conquistador_N : N; -fun consanguinity_N : N; -fun conscience_N : N; -fun conscience_smitten_A : A; -fun conscience_smitten_A : A; -fun conscienceless_A : A; -fun conscientious_A : A; -fun conscientiousness_N : N; -fun conscionable_A : A; -fun conscious_A : A; -fun consciously_Adv : Adv; -fun consciousness_N : N; -fun conscript_N : N; -fun conscript_V2 : V2; -fun conscription_N : N; -fun consecrate_V2 : V2; -fun consecrated_A : A; -fun consecration_N : N; -fun consecutive_A : A; -fun consecutive_Adv : Adv; -fun consecutively_Adv : Adv; -fun consensual_A : A; -fun consensus_N : N; -fun consent_N : N; -fun consent_V : V; -fun consent_V2V : V2V; -fun consentaneous_A : A; -fun consenting_A : A; -fun consequence_N : N; -fun consequent_A : A; -fun consequential_A : A; -fun consequentially_Adv : Adv; -fun consequently_Adv : Adv; -fun conservancy_N : N; -fun conservation_N : N; -fun conservatism_N : N; -fun conservative_A : A; -fun conservative_N : N; -fun conservatively_Adv : Adv; -fun conservatoire_N : N; -fun conservator_N : N; -fun conservatory_N : N; -fun conserve_N : N; -fun conserve_V2 : V2; -fun conserved_A : A; -fun consider_V : V; -fun consider_V2 : V2; -fun consider_V2V : V2V; -fun consider_VA : VA; -fun consider_VS : VS; -fun consider_VV : VV; -fun considerable_A : A; -fun considerate_A : A; -fun considerately_Adv : Adv; -fun considerateness_N : N; -fun consideration_N : N; -fun considered_A : A; -fun consign_V2 : V2; -fun consignee_N : N; -fun consigner_N : N; -fun consignment_N : N; -fun consignor_N : N; -fun consist_V : V; -fun consistence_N : N; -fun consistency_N : N; -fun consistent_A : A; -fun consistory_N : N; -fun consolable_A : A; -fun consolation_N : N; -fun consolatory_A : A; -fun console_N : N; -fun console_V2 : V2; -fun consolidate_V : V; -fun consolidate_V2 : V2; -fun consolidated_A : A; -fun consolidation_N : N; -fun consolidative_A : A; -fun consomme_N : N; -fun consonance_N : N; -fun consonant_A : A; -fun consonant_N : N; -fun consonantal_A : A; -fun consort_N : N; -fun consort_V : V; -fun consortium_N : N; -fun conspecific_A : A; -fun conspecific_N : N; -fun conspectus_N : N; -fun conspicuous_A : A; -fun conspicuously_Adv : Adv; -fun conspicuousness_N : N; -fun conspiracy_N : N; -fun conspirator_N : N; -fun conspiratorial_A : A; -fun conspire_V : V; -fun conspire_V2 : V2; -fun conspire_V2V : V2V; -fun constable_N : N; -fun constabulary_N : N; -fun constancy_N : N; -fun constant_A : A; -fun constant_N : N; -fun constantan_N : N; -fun constantly_Adv : Adv; -fun constellation_N : N; -fun consternation_N : N; -fun constipate_V2 : V2; -fun constipated_A : A; -fun constipation_N : N; -fun constituency_N : N; -fun constituent_A : A; -fun constituent_N : N; -fun constitute_V2 : V2; -fun constitution_N : N; -fun constitutional_A : A; -fun constitutional_N : N; -fun constitutionalism_N : N; -fun constitutionalist_N : N; -fun constitutionalize_V2 : V2; -fun constitutionally_Adv : Adv; -fun constitutive_A : A; -fun constrain_V2 : V2; -fun constrained_A : A; -fun constrainedly_Adv : Adv; -fun constraint_N : N; -fun constrict_V2 : V2; -fun constricted_A : A; -fun constricting_A : A; -fun constriction_N : N; -fun constrictor_N : N; -fun construal_N : N; -fun construct_V2 : V2; -fun construction_N : N; -fun constructional_A : A; -fun constructive_A : A; -fun constructive_metabolic_A : A; -fun constructively_Adv : Adv; -fun constructiveness_N : N; -fun constructivism_N : N; -fun constructivist_N : N; -fun constructor_N : N; -fun construe_V : V; -fun construe_V2 : V2; -fun construe_V2V : V2V; -fun consubstantial_A : A; -fun consubstantiation_N : N; -fun consuetude_N : N; -fun consuetudinary_N : N; -fun consul_N : N; -fun consular_A : A; -fun consulate_N : N; -fun consulship_N : N; -fun consult_V : V; -fun consult_V2 : V2; -fun consult_V2Q : V2Q; -fun consultancy_N : N; -fun consultant_N : N; -fun consultation_N : N; -fun consultative_A : A; -fun consumable_A : A; -fun consume_V : V; -fun consume_V2 : V2; -fun consumer_N : N; -fun consumerism_N : N; -fun consuming_A : A; -fun consummate_A : A; -fun consummate_V2 : V2; -fun consummated_A : A; -fun consummation_N : N; -fun consumption_N : N; -fun consumptive_A : A; -fun consumptive_N : N; -fun contact_N : N; -fun contact_V2 : V2; -fun contadino_N : N; -fun contagion_N : N; -fun contagious_A : A; -fun contagiously_Adv : Adv; -fun contain_V2 : V2; -fun contained_A : A; -fun container_N : N; -fun containerful_N : N; -fun containment_N : N; -fun contaminant_N : N; -fun contaminate_V2 : V2; -fun contaminated_A : A; -fun contamination_N : N; -fun contaminative_A : A; -fun contemn_V2 : V2; -fun contemplate_V : V; -fun contemplate_V2 : V2; -fun contemplate_VS : VS; -fun contemplation_N : N; -fun contemplative_A : A; -fun contemplative_N : N; -fun contemporaneity_N : N; -fun contemporaneous_A : A; -fun contemporaneously_Adv : Adv; -fun contemporary_A : A; -fun contemporary_N : N; -fun contempt_N : N; -fun contempt_of_congress_PN : PN; -fun contemptible_A : A; -fun contemptibly_Adv : Adv; -fun contemptuous_A : A; -fun contemptuously_Adv : Adv; -fun contemptuousness_N : N; -fun contend_V : V; -fun contend_VS : VS; -fun contender_N : N; -fun content_A : A; -fun content_N : N; -fun content_V2 : V2; -fun contented_A : A; -fun contentedly_Adv : Adv; -fun contentedness_N : N; -fun contention_N : N; -fun contentious_A : A; -fun contentment_N : N; -fun contents_N : N; -fun conterminous_A : A; -fun contest_N : N; -fun contest_V : V; -fun contest_V2 : V2; -fun contestable_A : A; -fun contestant_N : N; -fun contested_A : A; -fun contestee_N : N; -fun contester_N : N; -fun context_N : N; -fun contextual_A : A; -fun contextualism_N : N; -fun contextually_Adv : Adv; -fun contiguity_N : N; -fun contiguous_A : A; -fun continence_N : N; -fun continent_A : A; -fun continent_N : N; -fun continent_wide_A : A; -fun continental_A : A; -fun contingency_N : N; -fun contingent_A : A; -fun contingent_N : N; -fun continual_A : A; -fun continually_Adv : Adv; -fun continuance_N : N; -fun continuation_N : N; -fun continue_V : V; -fun continue_V2 : V2; -fun continue_VS : VS; -fun continue_VV : VV; -fun continued_A : A; -fun continuing_A : A; -fun continuity_N : N; -fun continuous_A : A; -fun continuously_Adv : Adv; -fun continuousness_N : N; -fun continuum_N : N; -fun conto_N : N; -fun contort_V2 : V2; -fun contorted_A : A; -fun contortion_N : N; -fun contortionist_N : N; -fun contour_N : N; -fun contour_V2 : V2; -fun contraband_N : N; -fun contrabass_A : A; -fun contrabass_N : N; -fun contrabassoon_N : N; -fun contraception_N : N; -fun contraceptive_A : A; -fun contraceptive_N : N; -fun contract_N : N; -fun contract_V : V; -fun contract_V2 : V2; -fun contract_V2V : V2V; -fun contracted_A : A; -fun contractible_A : A; -fun contractile_A : A; -fun contractility_N : N; -fun contraction_N : N; -fun contractor_N : N; -fun contractual_A : A; -fun contractually_Adv : Adv; -fun contracture_N : N; -fun contradict_V2 : V2; -fun contradiction_N : N; -fun contradictorily_Adv : Adv; -fun contradictoriness_N : N; -fun contradictory_A : A; -fun contradictory_N : N; -fun contradistinction_N : N; -fun contradistinguish_V2 : V2; -fun contrail_N : N; -fun contraindication_N : N; -fun contralateral_A : A; -fun contralto_N : N; -fun contraption_N : N; -fun contrapuntal_A : A; -fun contrapuntist_N : N; -fun contrarian_N : N; -fun contrariety_N : N; -fun contrarily_Adv : Adv; -fun contrariness_N : N; -fun contrarious_A : A; -fun contrariwise_Adv : Adv; -fun contrary_A : A; -fun contrary_N : N; -fun contrast_N : N; -fun contrast_V : V; -fun contrast_V2 : V2; -fun contrasting_A : A; -fun contrastingly_Adv : Adv; -fun contrastive_A : A; -fun contrasty_A : A; -fun contravene_V2 : V2; -fun contravention_N : N; -fun contretemps_N : N; -fun contribute_V : V; -fun contribute_V2 : V2; -fun contribute_V2V : V2V; -fun contribution_N : N; -fun contributor_N : N; -fun contributory_A : A; -fun contrite_A : A; -fun contrition_N : N; -fun contrivance_N : N; -fun contrive_V : V; -fun contrive_V2 : V2; -fun contrived_A : A; -fun contriver_N : N; -fun control_N : N; -fun control_V : V; -fun control_V2 : V2; -fun controllable_A : A; -fun controlled_A : A; -fun controller_N : N; -fun controllership_N : N; -fun controlling_A : A; -fun controversial_A : A; -fun controversialist_N : N; -fun controversially_Adv : Adv; -fun controversy_N : N; -fun controvert_V2 : V2; -fun contumacious_A : A; -fun contumacy_N : N; -fun contumelious_A : A; -fun contumely_N : N; -fun contuse_V2 : V2; -fun contusion_N : N; -fun conundrum_N : N; -fun conurbation_N : N; -fun convalesce_V : V; -fun convalescence_N : N; -fun convalescent_A : A; -fun convalescent_N : N; -fun convection_N : N; -fun convector_N : N; -fun convene_V : V; -fun convene_V2 : V2; -fun convener_N : N; -fun convenience_N : N; -fun convenient_A : A; -fun convent_N : N; -fun conventicle_N : N; -fun convention_N : N; -fun conventional_A : A; -fun conventionality_N : N; -fun conventionalization_N : N; -fun conventionalized_A : A; -fun conventionally_Adv : Adv; -fun conventioneer_N : N; -fun converge_V : V; -fun convergence_N : N; -fun convergent_A : A; -fun conversant_A : A; -fun conversation_N : N; -fun conversational_A : A; -fun conversationalist_N : N; -fun converse_A : A; -fun converse_N : N; -fun converse_V : V; -fun conversely_Adv : Adv; -fun conversion_N : N; -fun convert_N : N; -fun convert_V : V; -fun convert_V2 : V2; -fun converted_A : A; -fun converter_N : N; -fun convertibility_N : N; -fun convertible_A : A; -fun convertible_N : N; -fun convex_A : A; -fun convexity_N : N; -fun convexly_Adv : Adv; -fun convexo_concave_A : A; -fun convey_V2 : V2; -fun conveyance_N : N; -fun conveyancer_N : N; -fun conveyer_N : N; -fun conveyer_belt_N : N; -fun conveyor_N : N; -fun convict_N : N; -fun convict_V2 : V2; -fun conviction_N : N; -fun convince_V2 : V2; -fun convince_V2V : V2V; -fun convince_VS : VS; -fun convinced_A : A; -fun convincible_A : A; -fun convincing_A : A; -fun convincingly_Adv : Adv; -fun convincingness_N : N; -fun convivial_A : A; -fun conviviality_N : N; -fun convivially_Adv : Adv; -fun convocation_N : N; -fun convoke_V2 : V2; -fun convolute_A : A; -fun convoluted_A : A; -fun convolution_N : N; -fun convolvulus_N : N; -fun convoy_N : N; -fun convoy_V2 : V2; -fun convulse_V : V; -fun convulse_V2 : V2; -fun convulsion_N : N; -fun convulsive_A : A; -fun convulsively_Adv : Adv; -fun cony_N : N; -fun coo_N : N; -fun coo_V : V; -fun coo_V2 : V2; -fun cook_N : N; -fun cook_V : V; -fun cook_V2 : V2; -fun cookbook_N : N; -fun cooked_A : A; -fun cooker_N : N; -fun cookery_N : N; -fun cookery_book_N : N; -fun cookfire_N : N; -fun cookhouse_N : N; -fun cookie_N : N; -fun cookie_cutter_A : A; -fun cookie_sized_A : A; -fun cooking_N : N; -fun cookout_N : N; -fun cookstove_N : N; -fun cooky_N : N; -fun cool_A : A; -fun cool_N : N; -fun cool_V : V; -fun cool_V2 : V2; -fun cool_headed_A : A; -fun coolant_N : N; -fun cooler_N : N; -fun coolie_N : N; -fun cooling_N : N; -fun cooling_tower_N : N; -fun coolly_Adv : Adv; -fun coolness_N : N; -fun coon_N : N; -fun coondog_N : N; -fun coonhound_N : N; -fun coontie_N : N; -fun coop_N : N; -fun coop_V2 : V2; -fun cooper_N : N; -fun cooperate_V : V; -fun cooperation_N : N; -fun cooperative_A : A; -fun cooperative_N : N; -fun cooperator_N : N; -fun coordinate_A : A; -fun coordinate_N : N; -fun coordinate_V : V; -fun coordinate_V2 : V2; -fun coordinated_A : A; -fun coordinately_Adv : Adv; -fun coordinating_A : A; -fun coordination_N : N; -fun coordinator_N : N; -fun coot_N : N; -fun cooter_N : N; -fun cop_N : N; -fun cop_V : V; -fun cop_V2 : V2; -fun cop_out_N : N; -fun copacetic_A : A; -fun copaiba_N : N; -fun copal_N : N; -fun copalite_N : N; -fun copartner_N : N; -fun copartnership_N : N; -fun cope_N : N; -fun cope_V : V; -fun copeck_N : N; -fun copepod_N : N; -fun copernican_A : A; -fun copilot_N : N; -fun coping_N : N; -fun coping_stone_N : N; -fun copious_A : A; -fun coplanar_A : A; -fun copolymer_N : N; -fun copout_N : N; -fun copper_N : N; -fun copper_V2 : V2; -fun copper_bottom_V2 : V2; -fun copper_bottomed_A : A; -fun copper_bottomed_A : A; -fun copperhead_N : N; -fun copperplate_N : N; -fun coppersmith_N : N; -fun copperware_N : N; -fun coppery_A : A; -fun coppice_N : N; -fun copra_N : N; -fun coprolalia_N : N; -fun coprolite_N : N; -fun coprolith_N : N; -fun coprophagy_N : N; -fun copse_N : N; -fun copt_A : A; -fun copt_N : N; -fun coptic_N : N; -fun copula_N : N; -fun copular_A : A; -fun copulate_V : V; -fun copulation_N : N; -fun copulative_A : A; -fun copulative_N : N; -fun copy_N : N; -fun copy_V : V; -fun copy_V2 : V2; -fun copybook_N : N; -fun copycat_N : N; -fun copyhold_N : N; -fun copyholder_N : N; -fun copying_N : N; -fun copyist_N : N; -fun copyright_N : N; -fun copyright_V2 : V2; -fun copyrighted_A : A; -fun copywriter_N : N; -fun coquetry_N : N; -fun coquette_N : N; -fun coquettish_A : A; -fun coquettishly_Adv : Adv; -fun coquille_N : N; -fun coquilles_saint_jacques_PN : PN; -fun cor_anglais_N : N; -fun coracle_N : N; -fun coral_A : A; -fun coral_N : N; -fun coral_red_A : A; -fun coral_reef_N : N; -fun coralbells_N : N; -fun coralberry_N : N; -fun coralwood_N : N; -fun corbel_N : N; -fun corbelled_A : A; -fun corbina_N : N; -fun corchorus_N : N; -fun cord_N : N; -fun cord_V2 : V2; -fun cordage_N : N; -fun cordate_A : A; -fun corded_A : A; -fun cordgrass_N : N; -fun cordial_A : A; -fun cordial_N : N; -fun cordiality_N : N; -fun cordierite_N : N; -fun cordite_N : N; -fun corditis_N : N; -fun cordless_A : A; -fun cordoba_N : N; -fun cordon_N : N; -fun cordon_V2 : V2; -fun cordon_bleu_A : A; -fun cordovan_N : N; -fun cords_N : N; -fun corduroy_N : N; -fun cordwood_N : N; -fun core_N : N; -fun core_V2 : V2; -fun coreference_N : N; -fun coreferent_A : A; -fun coreferential_A : A; -fun coreligionist_N : N; -fun coreopsis_N : N; -fun corer_N : N; -fun corespondent_N : N; -fun corgi_N : N; -fun coriaceous_A : A; -fun coriander_N : N; -fun corinthian_A : A; -fun corinthian_N : N; -fun cork_N : N; -fun cork_V2 : V2; -fun corkage_N : N; -fun corkboard_N : N; -fun corked_A : A; -fun corker_N : N; -fun corkscrew_N : N; -fun corkwood_N : N; -fun corm_N : N; -fun cormorant_N : N; -fun cormous_A : A; -fun corn_N : N; -fun corn_V2 : V2; -fun corn_exchange_N : N; -fun corn_fed_A : A; -fun cornbread_N : N; -fun corncob_N : N; -fun corncrake_N : N; -fun corncrib_N : N; -fun cornea_N : N; -fun corneal_A : A; -fun corned_A : A; -fun cornelian_N : N; -fun corneous_A : A; -fun corner_N : N; -fun corner_V : V; -fun corner_V2 : V2; -fun corner_kick_N : N; -fun cornerback_N : N; -fun cornered_A : A; -fun cornerstone_N : N; -fun cornet_N : N; -fun cornetfish_N : N; -fun cornfield_N : N; -fun cornflake_N : N; -fun cornflour_N : N; -fun cornflower_N : N; -fun cornhusk_N : N; -fun cornhusker_N : N; -fun cornhusking_N : N; -fun cornice_N : N; -fun cornmeal_N : N; -fun cornpone_N : N; -fun cornsilk_N : N; -fun cornsmut_N : N; -fun cornstalk_N : N; -fun cornstarch_N : N; -fun cornu_N : N; -fun cornucopia_N : N; -fun corny_A : A; -fun corolla_N : N; -fun corollary_N : N; -fun corona_N : N; -fun coronary_A : A; -fun coronary_N : N; -fun coronate_V2 : V2; -fun coronation_N : N; -fun coroner_N : N; -fun coronet_N : N; -fun coroneted_A : A; -fun coronilla_N : N; -fun coronion_N : N; -fun corozo_N : N; -fun corporal_A : A; -fun corporal_N : N; -fun corporate_A : A; -fun corporation_N : N; -fun corporatism_N : N; -fun corporatist_A : A; -fun corporatist_N : N; -fun corporeal_A : A; -fun corps_N : N; -fun corps_de_ballet_N : N; -fun corps_diplomatique_N : N; -fun corpse_N : N; -fun corpulence_N : N; -fun corpulent_A : A; -fun corpus_N : N; -fun corpuscle_N : N; -fun corpuscular_A : A; -fun corral_N : N; -fun corral_V2 : V2; -fun correct_A : A; -fun correct_V : V; -fun correct_V2 : V2; -fun correct_VS : VS; -fun correctable_A : A; -fun corrected_A : A; -fun correction_N : N; -fun correctional_A : A; -fun corrections_N : N; -fun correctitude_N : N; -fun corrective_A : A; -fun corrective_N : N; -fun correctly_Adv : Adv; -fun correctness_N : N; -fun correlate_N : N; -fun correlate_V : V; -fun correlate_V2 : V2; -fun correlation_N : N; -fun correlational_A : A; -fun correlative_A : A; -fun correlative_N : N; -fun correspond_V : V; -fun correspondence_N : N; -fun correspondent_N : N; -fun corresponding_A : A; -fun correspondingly_Adv : Adv; -fun corridor_N : N; -fun corrie_N : N; -fun corrigenda_N : N; -fun corrigendum_N : N; -fun corrigible_A : A; -fun corroborant_A : A; -fun corroborate_V2 : V2; -fun corroboration_N : N; -fun corroborative_A : A; -fun corrode_V : V; -fun corrode_V2 : V2; -fun corroded_A : A; -fun corrosion_N : N; -fun corrosion_resistant_A : A; -fun corrosive_A : A; -fun corrosive_N : N; -fun corrugate_V : V; -fun corrugate_V2 : V2; -fun corrugated_A : A; -fun corrugation_N : N; -fun corrupt_A : A; -fun corrupt_V : V; -fun corrupt_V2 : V2; -fun corrupted_A : A; -fun corruptibility_N : N; -fun corruptible_A : A; -fun corrupting_A : A; -fun corruption_N : N; -fun corruptive_A : A; -fun corruptly_Adv : Adv; -fun corruptness_N : N; -fun corsage_N : N; -fun corsair_N : N; -fun corse_N : N; -fun corselet_N : N; -fun corset_N : N; -fun corslet_N : N; -fun cortege_N : N; -fun cortege_1_N : N; -fun cortege_2_N : N; -fun cortex_N : N; -fun cortical_A : A; -fun cortically_Adv : Adv; -fun cortico_hypothalamic_A : A; -fun corticoafferent_A : A; -fun corticoefferent_A : A; -fun corticosteroid_N : N; -fun corticosterone_N : N; -fun cortina_N : N; -fun cortisone_N : N; -fun corundom_N : N; -fun corundum_N : N; -fun coruscate_V : V; -fun coruscation_N : N; -fun corvee_N : N; -fun corvette_N : N; -fun corvine_A : A; -fun corydalis_N : N; -fun corymb_N : N; -fun corymbose_A : A; -fun corynebacterium_N : N; -fun coryphantha_N : N; -fun corythosaur_N : N; -fun cos_N : N; -fun coscoroba_N : N; -fun cosecant_N : N; -fun coseismic_A : A; -fun cosh_N : N; -fun cosh_V2 : V2; -fun cosher_A : A; -fun cosignatory_A : A; -fun cosignatory_N : N; -fun cosigner_N : N; -fun cosily_Adv : Adv; -fun cosine_N : N; -fun cosiness_N : N; -fun cosmetic_A : A; -fun cosmetic_N : N; -fun cosmetically_Adv : Adv; -fun cosmetician_N : N; -fun cosmetologist_N : N; -fun cosmetology_N : N; -fun cosmic_A : A; -fun cosmid_N : N; -fun cosmogony_N : N; -fun cosmographer_N : N; -fun cosmography_N : N; -fun cosmolatry_N : N; -fun cosmologic_A : A; -fun cosmologist_N : N; -fun cosmology_N : N; -fun cosmonaut_N : N; -fun cosmopolitan_A : A; -fun cosmopolitan_N : N; -fun cosmos_N : N; -fun cosmotron_N : N; -fun cosset_V2 : V2; -fun cost_N : N; -fun cost_V : V; -fun cost_V2 : V2; -fun cost_efficient_A : A; -fun cost_plus_A : A; -fun costa_N : N; -fun costa_rican_A : A; -fun costa_rican_N : N; -fun costal_A : A; -fun costate_A : A; -fun costermonger_N : N; -fun costia_N : N; -fun costiasis_N : N; -fun costing_N : N; -fun costive_A : A; -fun costliness_N : N; -fun costly_A : A; -fun costmary_N : N; -fun costochondritis_N : N; -fun costs_N : N; -fun costum_V2 : V2; -fun costume_N : N; -fun costumed_A : A; -fun costumier_N : N; -fun costusroot_N : N; -fun cosy_A : A; -fun cosy_N : N; -fun cot_N : N; -fun cotangent_N : N; -fun cote_N : N; -fun cotenant_N : N; -fun coterie_N : N; -fun coterminous_A : A; -fun coterminously_Adv : Adv; -fun cotilion_N : N; -fun cotillion_N : N; -fun cotinga_N : N; -fun cotoneaster_N : N; -fun cottage_N : N; -fun cottager_N : N; -fun cottar_N : N; -fun cotter_N : N; -fun cotton_N : N; -fun cotton_V : V; -fun cotton_cake_N : N; -fun cotton_plant_N : N; -fun cotton_wool_N : N; -fun cottonseed_N : N; -fun cottontail_N : N; -fun cottonweed_N : N; -fun cottonwick_N : N; -fun cottonwood_N : N; -fun cottony_A : A; -fun cottony_white_A : A; -fun cotyledon_N : N; -fun coucal_N : N; -fun couch_N : N; -fun couch_V : V; -fun couch_V2 : V2; -fun couch_grass_N : N; -fun couchant_A : A; -fun couchette_N : N; -fun cougar_N : N; -fun cough_N : N; -fun cough_V : V; -fun cough_V2 : V2; -fun coulisse_N : N; -fun coulomb_N : N; -fun coulter_N : N; -fun council_N : N; -fun council_board_N : N; -fun council_chamber_N : N; -fun councillor_N : N; -fun councillorship_N : N; -fun councilman_N : N; -fun councilwoman_N : N; -fun counsel_N : N; -fun counsel_V2 : V2; -fun counsellor_N : N; -fun counselor_N : N; -fun counselorship_N : N; -fun count_N : N; -fun count_V : V; -fun count_V2 : V2; -fun countable_A : A; -fun countdown_N : N; -fun countenance_N : N; -fun countenance_V2 : V2; -fun counter_Adv : Adv; -fun counter_N : N; -fun counter_V : V; -fun counter_V2 : V2; -fun counter_VS : VS; -fun counter_example_N : N; -fun counter_revolution_N : N; -fun counter_revolutionary_A : A; -fun counter_revolutionary_N : N; -fun counter_sabotage_N : N; -fun counteract_V2 : V2; -fun counteraction_N : N; -fun counteractive_A : A; -fun counteractively_Adv : Adv; -fun counterargument_N : N; -fun counterattack_N : N; -fun counterattack_V : V; -fun counterattack_V2 : V2; -fun counterattraction_N : N; -fun counterbalance_N : N; -fun counterbalance_V2 : V2; -fun counterbalanced_A : A; -fun counterblast_N : N; -fun counterblow_N : N; -fun counterbombardment_N : N; -fun counterbore_N : N; -fun countercharge_N : N; -fun countercheck_N : N; -fun counterclaim_N : N; -fun counterclockwise_A : A; -fun counterclockwise_Adv : Adv; -fun countercoup_N : N; -fun counterculture_N : N; -fun countercurrent_N : N; -fun counterdemonstration_N : N; -fun counterdemonstrator_N : N; -fun counterespionage_N : N; -fun counterexample_N : N; -fun counterfactual_A : A; -fun counterfactuality_N : N; -fun counterfeit_A : A; -fun counterfeit_N : N; -fun counterfeit_V2 : V2; -fun counterfeiter_N : N; -fun counterfire_N : N; -fun counterfoil_N : N; -fun counterglow_N : N; -fun counterinsurgent_A : A; -fun counterintelligence_N : N; -fun counterintuitive_A : A; -fun counterintuitively_Adv : Adv; -fun counterirritant_N : N; -fun countermand_N : N; -fun countermand_V2 : V2; -fun countermarch_N : N; -fun countermeasure_N : N; -fun countermine_N : N; -fun countermine_V : V; -fun countermine_V2 : V2; -fun counteroffensive_N : N; -fun counteroffer_N : N; -fun counterpane_N : N; -fun counterpart_N : N; -fun counterperson_N : N; -fun counterplea_N : N; -fun counterplot_N : N; -fun counterplot_V : V; -fun counterplot_V2 : V2; -fun counterpoint_N : N; -fun counterpoise_N : N; -fun counterpoise_V2 : V2; -fun counterproductive_A : A; -fun counterproposal_N : N; -fun counterpunch_N : N; -fun counterreformation_N : N; -fun counterrevolution_N : N; -fun counterrevolutionary_A : A; -fun counterrevolutionist_N : N; -fun countershot_N : N; -fun countersign_N : N; -fun countersign_V2 : V2; -fun countersignature_N : N; -fun countersink_N : N; -fun countersink_V2 : V2; -fun counterspy_N : N; -fun counterstain_N : N; -fun countersubversion_N : N; -fun countersuing_V2 : V2; -fun countersuit_N : N; -fun countertenor_A : A; -fun countertenor_N : N; -fun counterterror_A : A; -fun counterterrorism_N : N; -fun counterterrorist_N : N; -fun countertop_N : N; -fun countertransference_N : N; -fun countervail_V : V; -fun countervail_V2 : V2; -fun counterweight_N : N; -fun countess_N : N; -fun counting_house_N : N; -fun countinghouse_N : N; -fun countless_A : A; -fun countrified_A : A; -fun country_N : N; -fun country_bred_A : A; -fun country_dance_N : N; -fun country_house_N : N; -fun country_seat_N : N; -fun country_style_A : A; -fun countryman_N : N; -fun countryseat_N : N; -fun countryside_N : N; -fun countrywide_A : A; -fun countrywoman_N : N; -fun county_N : N; -fun countywide_A : A; -fun coup_N : N; -fun coup_d'etat_N : N; -fun coup_de_grace_N : N; -fun coupe_N : N; -fun couple_N : N; -fun couple_V : V; -fun couple_V2 : V2; -fun coupled_A : A; -fun couplet_N : N; -fun coupling_N : N; -fun coupon_N : N; -fun courage_N : N; -fun courageous_A : A; -fun courante_N : N; -fun courbaril_N : N; -fun courgette_N : N; -fun courier_N : N; -fun courlan_N : N; -fun course_N : N; -fun course_V : V; -fun course_V2 : V2; -fun courser_N : N; -fun coursework_N : N; -fun coursing_N : N; -fun court_N : N; -fun court_V : V; -fun court_V2 : V2; -fun court_card_N : N; -fun court_martial_N : N; -fun court_martial_N : N; -fun court_martial_V2 : V2; -fun court_ordered_A : A; -fun courteous_A : A; -fun courtesan_N : N; -fun courtesy_N : N; -fun courthouse_N : N; -fun courtier_N : N; -fun courtliness_N : N; -fun courtly_A : A; -fun courtroom_N : N; -fun courtship_N : N; -fun courtyard_N : N; -fun couscous_N : N; -fun cousin_N : N; -fun cousinly_A : A; -fun couth_A : A; -fun couthie_A : A; -fun couture_N : N; -fun couturier_N : N; -fun couvade_N : N; -fun couverture_N : N; -fun covalence_N : N; -fun covalent_A : A; -fun covariance_N : N; -fun covariant_A : A; -fun covariation_N : N; -fun cove_N : N; -fun coven_N : N; -fun covenant_N : N; -fun covenant_V : V; -fun covenant_V2 : V2; -fun cover_N : N; -fun cover_V2 : V2; -fun cover_VS : VS; -fun cover_up_N : N; -fun cover_up_N : N; -fun coverage_N : N; -fun coverall_N : N; -fun covered_A : A; -fun covering_A : A; -fun covering_N : N; -fun coverlet_N : N; -fun covert_A : A; -fun covert_N : N; -fun covertly_Adv : Adv; -fun covet_V2 : V2; -fun coveted_A : A; -fun covetous_A : A; -fun covetousness_N : N; -fun covey_N : N; -fun cow_N : N; -fun cow_V2 : V2; -fun cowage_N : N; -fun coward_N : N; -fun cowardice_N : N; -fun cowardly_A : A; -fun cowbarn_N : N; -fun cowbell_N : N; -fun cowberry_N : N; -fun cowbird_N : N; -fun cowboy_N : N; -fun cowcatcher_N : N; -fun cower_V : V; -fun cowfish_N : N; -fun cowgirl_N : N; -fun cowhand_N : N; -fun cowherb_N : N; -fun cowherd_N : N; -fun cowhide_N : N; -fun cowhouse_N : N; -fun cowl_N : N; -fun cowl_shaped_A : A; -fun cowled_A : A; -fun cowlick_N : N; -fun cowling_N : N; -fun cowman_N : N; -fun cowpea_N : N; -fun cowpox_N : N; -fun cowrie_N : N; -fun cowshed_N : N; -fun cowskin_N : N; -fun cowslip_N : N; -fun cox_N : N; -fun cox_V : V; -fun cox_V2 : V2; -fun coxcomb_N : N; -fun coxsackievirus_N : N; -fun coxswain_N : N; -fun coy_A : A; -fun coydog_N : N; -fun coyly_Adv : Adv; -fun coyness_N : N; -fun coyol_N : N; -fun coyote_N : N; -fun coypu_N : N; -fun cozen_V2 : V2; -fun cozily_Adv : Adv; -fun coziness_N : N; -fun cozy_A : A; -fun crab_N : N; -fun crab_V : V; -fun crab_V2 : V2; -fun crab_louis_PN : PN; -fun crab_apple_N : N; -fun crabbed_A : A; -fun crabbiness_N : N; -fun crabgrass_N : N; -fun crabwise_A : A; -fun crack_N : N; -fun crack_V : V; -fun crack_V2 : V2; -fun crack_down_N : N; -fun crack_up_N : N; -fun crackbrained_A : A; -fun crackdown_N : N; -fun cracker_N : N; -fun cracker_barrel_A : A; -fun crackers_A : A; -fun cracking_N : N; -fun crackle_A : A; -fun crackle_N : N; -fun crackle_V : V; -fun crackle_V2 : V2; -fun crackle_china_N : N; -fun crackleware_N : N; -fun crackling_N : N; -fun cracklings_N : N; -fun crackpot_N : N; -fun cracksman_N : N; -fun cradle_N : N; -fun cradle_V2 : V2; -fun craft_N : N; -fun craft_V2 : V2; -fun craftily_Adv : Adv; -fun craftiness_N : N; -fun craftsman_N : N; -fun craftsmanship_N : N; -fun crafty_A : A; -fun crag_N : N; -fun cragfast_A : A; -fun cragged_A : A; -fun craggy_A : A; -fun cragsman_N : N; -fun crake_N : N; -fun cram_V : V; -fun cram_V2 : V2; -fun cram_full_A : A; -fun cram_full_Adv : Adv; -fun crammer_N : N; -fun cramp_N : N; -fun cramp_V2 : V2; -fun cramp_iron_N : N; -fun cramped_A : A; -fun crampon_N : N; -fun cran_N : N; -fun cranberry_N : N; -fun crane_N : N; -fun crane_V : V; -fun crane_V2 : V2; -fun crane_fly_N : N; -fun cranesbill_N : N; -fun cranial_A : A; -fun craniology_N : N; -fun craniometer_N : N; -fun craniometric_A : A; -fun craniometry_N : N; -fun craniotomy_N : N; -fun cranium_N : N; -fun crank_A : A; -fun crank_N : N; -fun crank_V2 : V2; -fun crankcase_N : N; -fun crankiness_N : N; -fun crankshaft_N : N; -fun cranky_A : A; -fun crannied_A : A; -fun cranny_N : N; -fun crap_N : N; -fun crap_V : V; -fun crap_shooting_N : N; -fun crapaud_N : N; -fun crape_N : N; -fun crappie_N : N; -fun craps_N : N; -fun crapshoot_N : N; -fun crapshooter_N : N; -fun crapulent_A : A; -fun crapulous_A : A; -fun crash_Adv : Adv; -fun crash_N : N; -fun crash_V : V; -fun crash_V2 : V2; -fun crash_dive_N : N; -fun crash_dive_V : V; -fun crash_helmet_N : N; -fun crash_land_V : V; -fun crash_land_V2 : V2; -fun crash_landing_N : N; -fun crass_A : A; -fun crassness_N : N; -fun crate_N : N; -fun crate_V2 : V2; -fun crater_N : N; -fun crater_V : V; -fun craton_N : N; -fun cravat_N : N; -fun crave_V : V; -fun crave_V2 : V2; -fun craved_A : A; -fun craven_A : A; -fun craven_N : N; -fun cravenness_N : N; -fun craving_N : N; -fun craw_N : N; -fun crawfish_N : N; -fun crawl_N : N; -fun crawl_V : V; -fun crawl_V2 : V2; -fun crawler_N : N; -fun crawlspace_N : N; -fun crayfish_N : N; -fun crayon_N : N; -fun crayon_V : V; -fun crayon_V2 : V2; -fun craze_N : N; -fun crazed_A : A; -fun crazily_Adv : Adv; -fun craziness_N : N; -fun crazy_A : A; -fun crazy_N : N; -fun creak_N : N; -fun creak_V : V; -fun creak_V2 : V2; -fun creakily_Adv : Adv; -fun creaky_A : A; -fun cream_N : N; -fun cream_V2 : V2; -fun cream_colored_A : A; -fun creamcups_N : N; -fun creamery_N : N; -fun creaminess_N : N; -fun creamy_A : A; -fun creamy_yellow_A : A; -fun crease_N : N; -fun crease_V : V; -fun crease_V2 : V2; -fun creaseless_A : A; -fun creaseproof_A : A; -fun create_V : V; -fun create_V2 : V2; -fun create_VV : VV; -fun creatine_N : N; -fun creation_N : N; -fun creationism_N : N; -fun creative_A : A; -fun creatively_Adv : Adv; -fun creativeness_N : N; -fun creativity_N : N; -fun creator_N : N; -fun creature_N : N; -fun creche_N : N; -fun credence_N : N; -fun credential_V2 : V2; -fun credentialled_A : A; -fun credenza_N : N; -fun credibility_N : N; -fun credible_A : A; -fun credibly_Adv : Adv; -fun credit_N : N; -fun credit_V2 : V2; -fun credit_side_N : N; -fun credit_worthiness_N : N; -fun credit_worthy_A : A; -fun creditable_A : A; -fun credited_A : A; -fun creditor_N : N; -fun credits_N : N; -fun creditworthiness_N : N; -fun creditworthy_A : A; -fun credo_N : N; -fun credulity_N : N; -fun credulous_A : A; -fun credulously_Adv : Adv; -fun credulousness_N : N; -fun creed_N : N; -fun creedal_A : A; -fun creek_N : N; -fun creel_N : N; -fun creep_N : N; -fun creep_V : V; -fun creep_V2 : V2; -fun creeper_N : N; -fun creepiness_N : N; -fun creeping_st_john's_wort_PN : PN; -fun creeps_N : N; -fun creepy_A : A; -fun creepy_crawlies_N : N; -fun creepy_crawly_N : N; -fun cremains_N : N; -fun cremate_V2 : V2; -fun cremation_N : N; -fun crematorium_N : N; -fun crematory_N : N; -fun creme_de_menthe_N : N; -fun crenate_A : A; -fun crenel_N : N; -fun crenelation_N : N; -fun crenellated_A : A; -fun crenulate_A : A; -fun creole_A : A; -fun creole_N : N; -fun creole_fish_N : N; -fun creosol_N : N; -fun creosote_N : N; -fun crepe_N : N; -fun crepe_1_N : N; -fun crepe_2_N : N; -fun crepe_suzette_PN : PN; -fun crepe_de_chine_PN : PN; -fun crepitate_V : V; -fun crepitate_V2 : V2; -fun crepitation_N : N; -fun crepuscular_A : A; -fun crescendo_A : A; -fun crescendo_N : N; -fun crescent_A : A; -fun crescent_N : N; -fun cresol_N : N; -fun cress_N : N; -fun cress_green_A : A; -fun crest_N : N; -fun crest_V : V; -fun crest_V2 : V2; -fun crested_A : A; -fun crestfallen_A : A; -fun cretaceous_A : A; -fun cretin_N : N; -fun cretinism_N : N; -fun cretinous_A : A; -fun cretonne_N : N; -fun crevasse_N : N; -fun crevice_N : N; -fun crew_N : N; -fun crew_V : V; -fun crew_cut_N : N; -fun crew_neck_N : N; -fun crewelwork_N : N; -fun crewman_N : N; -fun crib_N : N; -fun crib_V : V; -fun crib_V2 : V2; -fun cribbage_N : N; -fun cribbage_board_N : N; -fun crick_N : N; -fun crick_V2 : V2; -fun cricket_N : N; -fun cricketer_N : N; -fun crier_N : N; -fun crime_N : N; -fun crime_V2 : V2; -fun criminal_A : A; -fun criminal_N : N; -fun criminalism_N : N; -fun criminalization_N : N; -fun criminalize_V2 : V2; -fun criminally_Adv : Adv; -fun criminative_A : A; -fun criminological_A : A; -fun criminologist_N : N; -fun criminology_N : N; -fun crimp_N : N; -fun crimp_V2 : V2; -fun crimson_A : A; -fun crimson_N : N; -fun crimson_V : V; -fun crimson_V2 : V2; -fun crimson_magenta_A : A; -fun crimson_purple_A : A; -fun crimson_yellow_A : A; -fun cringe_V : V; -fun cringing_A : A; -fun cringle_N : N; -fun crinkle_N : N; -fun crinkle_V : V; -fun crinkle_V2 : V2; -fun crinkled_A : A; -fun crinkleroot_N : N; -fun crinkly_A : A; -fun crinoid_A : A; -fun crinoid_N : N; -fun crinoline_N : N; -fun criollo_N : N; -fun cripple_N : N; -fun cripple_V2 : V2; -fun crippled_A : A; -fun crippling_A : A; -fun crisis_N : N; -fun crisp_A : A; -fun crisp_N : N; -fun crisp_V : V; -fun crisp_V2 : V2; -fun crispate_A : A; -fun crispness_N : N; -fun criss_cross_V2 : V2; -fun crisscross_A : A; -fun crisscross_Adv : Adv; -fun crisscross_N : N; -fun crisscross_V : V; -fun crisscross_V2 : V2; -fun cristobalite_N : N; -fun criterial_A : A; -fun criterion_N : N; -fun crith_N : N; -fun critic_N : N; -fun critical_A : A; -fun criticality_N : N; -fun critically_Adv : Adv; -fun criticism_N : N; -fun criticize_V : V; -fun criticize_V2 : V2; -fun critique_N : N; -fun critter_N : N; -fun croak_N : N; -fun croak_V : V; -fun croak_V2 : V2; -fun croaker_N : N; -fun croaky_A : A; -fun crochet_N : N; -fun crochet_V : V; -fun crochet_V2 : V2; -fun crochet_hook_N : N; -fun crocheting_N : N; -fun crock_N : N; -fun crock_V : V; -fun crock_V2 : V2; -fun crockery_N : N; -fun crocket_N : N; -fun crocketed_A : A; -fun crocodile_N : N; -fun crocolite_N : N; -fun crocus_N : N; -fun croft_N : N; -fun crofter_N : N; -fun cromlech_N : N; -fun crone_N : N; -fun crony_N : N; -fun cronyism_N : N; -fun crook_N : N; -fun crook_V : V; -fun crook_V2 : V2; -fun crook_back_A : A; -fun crook_backed_A : A; -fun crookback_A : A; -fun crooked_A : A; -fun crookedness_N : N; -fun crookneck_N : N; -fun croon_V : V; -fun croon_V2 : V2; -fun crooner_N : N; -fun crooning_N : N; -fun crop_N : N; -fun crop_V : V; -fun crop_V2 : V2; -fun crop_dusting_N : N; -fun crop_dusting_N : N; -fun cropped_A : A; -fun cropper_N : N; -fun croquet_N : N; -fun croquette_N : N; -fun crore_N : N; -fun crosier_N : N; -fun cross_A : A; -fun cross_N : N; -fun cross_V : V; -fun cross_V2 : V2; -fun cross_banded_A : A; -fun cross_bench_N : N; -fun cross_bencher_N : N; -fun cross_classification_N : N; -fun cross_country_Adv : Adv; -fun cross_cultural_A : A; -fun cross_division_N : N; -fun cross_examination_N : N; -fun cross_examination_N : N; -fun cross_examine_V2 : V2; -fun cross_examiner_N : N; -fun cross_examiner_N : N; -fun cross_eye_N : N; -fun cross_eyed_A : A; -fun cross_fertilization_N : N; -fun cross_fertilization_N : N; -fun cross_fertilize_V2 : V2; -fun cross_grained_A : A; -fun cross_heading_N : N; -fun cross_index_N : N; -fun cross_index_V2 : V2; -fun cross_legged_Adv : Adv; -fun cross_legged_Adv : Adv; -fun cross_linguistic_A : A; -fun cross_linguistically_Adv : Adv; -fun cross_link_N : N; -fun cross_modal_A : A; -fun cross_ply_A : A; -fun cross_pollinating_A : A; -fun cross_pollination_N : N; -fun cross_purpose_N : N; -fun cross_question_N : N; -fun cross_question_V2 : V2; -fun cross_reference_N : N; -fun cross_reference_N : N; -fun cross_section_A : A; -fun cross_section_N : N; -fun cross_sectional_A : A; -fun cross_sentential_A : A; -fun cross_shaped_A : A; -fun cross_stitch_N : N; -fun cross_stitch_N : N; -fun crossbar_N : N; -fun crossbeam_N : N; -fun crossbench_N : N; -fun crossbencher_N : N; -fun crossbill_N : N; -fun crossbones_N : N; -fun crossbow_N : N; -fun crossbred_A : A; -fun crossbreed_N : N; -fun crossbreed_V2 : V2; -fun crosscheck_N : N; -fun crosscheck_V : V; -fun crosscheck_V2 : V2; -fun crosscountry_A : A; -fun crosscountry_Adv : Adv; -fun crosscurrent_N : N; -fun crosscut_A : A; -fun crosscut_N : N; -fun crosse_N : N; -fun crossed_A : A; -fun crosseyed_A : A; -fun crossfire_N : N; -fun crosshairs_N : N; -fun crosshead_N : N; -fun crossheading_N : N; -fun crossing_N : N; -fun crossjack_N : N; -fun crossly_Adv : Adv; -fun crossness_N : N; -fun crossopterygian_N : N; -fun crossover_N : N; -fun crosspatch_N : N; -fun crosspiece_N : N; -fun crossroad_N : N; -fun crossroads_N : N; -fun crosstalk_N : N; -fun crosstown_A : A; -fun crosstown_Adv : Adv; -fun crosswalk_N : N; -fun crosswind_N : N; -fun crosswise_A : A; -fun crosswise_Adv : Adv; -fun crossword_N : N; -fun crotalaria_N : N; -fun crotaphion_N : N; -fun crotch_N : N; -fun crotchet_N : N; -fun crotchety_A : A; -fun croton_N : N; -fun crottle_N : N; -fun crouch_N : N; -fun crouch_V : V; -fun crouch_V2 : V2; -fun croup_N : N; -fun croupier_N : N; -fun croupy_A : A; -fun crouton_N : N; -fun crow_N : N; -fun crow_V : V; -fun crow_V2 : V2; -fun crow_VS : VS; -fun crow's_nest_N : N; -fun crow_sized_A : A; -fun crowbait_N : N; -fun crowbar_N : N; -fun crowberry_N : N; -fun crowd_N : N; -fun crowd_V : V; -fun crowd_V2 : V2; -fun crowded_A : A; -fun crowding_N : N; -fun crown_N : N; -fun crown_V2 : V2; -fun crown_land_N : N; -fun crownbeard_N : N; -fun crowned_A : A; -fun crowning_A : A; -fun crozier_N : N; -fun crucial_A : A; -fun crucially_Adv : Adv; -fun cruciate_A : A; -fun crucible_N : N; -fun crucifer_N : N; -fun cruciferous_A : A; -fun crucifix_N : N; -fun crucifixion_N : N; -fun cruciform_A : A; -fun crucify_V2 : V2; -fun crud_N : N; -fun cruddy_A : A; -fun crude_A : A; -fun crudely_Adv : Adv; -fun crudeness_N : N; -fun crudites_N : N; -fun crudity_N : N; -fun cruel_A : A; -fun cruelly_Adv : Adv; -fun cruelty_N : N; -fun cruet_N : N; -fun cruet_stand_N : N; -fun cruet_stand_N : N; -fun cruise_N : N; -fun cruise_V : V; -fun cruise_V2 : V2; -fun cruiser_N : N; -fun cruller_N : N; -fun crumb_N : N; -fun crumble_V : V; -fun crumble_V2 : V2; -fun crumbliness_N : N; -fun crumbly_A : A; -fun crumpet_N : N; -fun crumple_V : V; -fun crumple_V2 : V2; -fun crunch_N : N; -fun crunch_V : V; -fun crunch_V2 : V2; -fun crupper_N : N; -fun crural_A : A; -fun crus_N : N; -fun crusade_N : N; -fun crusade_V : V; -fun crusader_N : N; -fun cruse_N : N; -fun crush_N : N; -fun crush_V : V; -fun crush_V2 : V2; -fun crushed_A : A; -fun crusher_N : N; -fun crushing_A : A; -fun crushingly_Adv : Adv; -fun crust_N : N; -fun crust_V : V; -fun crust_V2 : V2; -fun crustacean_N : N; -fun crustaceous_A : A; -fun crustal_A : A; -fun crusted_A : A; -fun crustose_A : A; -fun crusty_A : A; -fun crutch_N : N; -fun crux_N : N; -fun cruzeiro_N : N; -fun cry_N : N; -fun cry_V : V; -fun cry_V2 : V2; -fun crybaby_N : N; -fun cryesthesia_N : N; -fun crying_A : A; -fun crying_N : N; -fun cryoanesthesia_N : N; -fun cryobiology_N : N; -fun cryocautery_N : N; -fun cryogen_N : N; -fun cryogenic_A : A; -fun cryogenics_N : N; -fun cryolite_N : N; -fun cryometer_N : N; -fun cryonic_A : A; -fun cryonics_N : N; -fun cryophobia_N : N; -fun cryoscope_N : N; -fun cryostat_N : N; -fun cryosurgery_N : N; -fun crypt_N : N; -fun cryptanalysis_N : N; -fun cryptanalyst_N : N; -fun cryptanalytic_A : A; -fun cryptic_A : A; -fun cryptically_Adv : Adv; -fun cryptobiosis_N : N; -fun cryptobiotic_A : A; -fun cryptococcosis_N : N; -fun cryptocoryne_N : N; -fun cryptogam_N : N; -fun cryptogamic_A : A; -fun cryptogram_N : N; -fun cryptograph_N : N; -fun cryptographically_Adv : Adv; -fun cryptography_N : N; -fun cryptomonad_N : N; -fun cryptorchidy_N : N; -fun crystal_N : N; -fun crystal_gazing_N : N; -fun crystalline_A : A; -fun crystallite_N : N; -fun crystallization_N : N; -fun crystallize_V : V; -fun crystallize_V2 : V2; -fun crystallized_A : A; -fun crystallographer_N : N; -fun crystallography_N : N; -fun ctene_N : N; -fun ctenidium_N : N; -fun ctenoid_A : A; -fun ctenophore_N : N; -fun cub_N : N; -fun cub_V : V; -fun cuban_A : A; -fun cuban_N : N; -fun cubby_N : N; -fun cubbyhole_N : N; -fun cube_N : N; -fun cube_V2 : V2; -fun cubeb_N : N; -fun cubelike_A : A; -fun cubic_A : A; -fun cubical_A : A; -fun cubicity_N : N; -fun cubicle_N : N; -fun cubism_N : N; -fun cubist_A : A; -fun cubist_N : N; -fun cubit_N : N; -fun cubital_A : A; -fun cubitiere_N : N; -fun cubitus_N : N; -fun cuboid_N : N; -fun cuckold_N : N; -fun cuckold_V2 : V2; -fun cuckoldom_N : N; -fun cuckoldry_N : N; -fun cuckoo_N : N; -fun cuckoo_V : V; -fun cuckoo_bumblebee_N : N; -fun cuckoo_clock_N : N; -fun cuckoopint_N : N; -fun cucumber_N : N; -fun cucumber_shaped_A : A; -fun cucurbit_N : N; -fun cucurbitaceous_A : A; -fun cud_N : N; -fun cuddle_N : N; -fun cuddle_V : V; -fun cuddle_V2 : V2; -fun cuddlesome_A : A; -fun cuddly_A : A; -fun cuddy_N : N; -fun cudgel_N : N; -fun cudgel_V2 : V2; -fun cudweed_N : N; -fun cue_N : N; -fun cuff_N : N; -fun cuff_V2 : V2; -fun cufflink_N : N; -fun cuirass_N : N; -fun cuirassier_N : N; -fun cuisine_N : N; -fun cuisse_N : N; -fun cul_N : N; -fun cul_de_sac_N : N; -fun culdoscope_N : N; -fun culdoscopy_N : N; -fun culinary_A : A; -fun cull_N : N; -fun cull_V2 : V2; -fun cullender_N : N; -fun cullis_N : N; -fun culm_N : N; -fun culminate_V : V; -fun culminate_V2 : V2; -fun culmination_N : N; -fun culotte_N : N; -fun culpability_N : N; -fun culpable_A : A; -fun culprit_N : N; -fun cult_N : N; -fun cultism_N : N; -fun cultist_N : N; -fun cultivable_A : A; -fun cultivar_N : N; -fun cultivate_V2 : V2; -fun cultivated_A : A; -fun cultivation_N : N; -fun cultivator_N : N; -fun cultural_A : A; -fun culturally_Adv : Adv; -fun culturati_N : N; -fun culture_N : N; -fun cultured_A : A; -fun culverin_N : N; -fun culvert_N : N; -fun cum_laude_A : A; -fun cum_laude_Adv : Adv; -fun cumber_V2 : V2; -fun cumbersome_A : A; -fun cumbrous_A : A; -fun cumin_N : N; -fun cummerbund_N : N; -fun cummings_N : N; -fun cumulative_A : A; -fun cumulatively_Adv : Adv; -fun cumuliform_A : A; -fun cumulonimbus_N : N; -fun cumulous_A : A; -fun cumulus_N : N; -fun cuneate_A : A; -fun cuneiform_A : A; -fun cuneiform_N : N; -fun cunner_N : N; -fun cunnilingus_N : N; -fun cunning_A : A; -fun cunning_N : N; -fun cunningly_Adv : Adv; -fun cunt_N : N; -fun cup_N : N; -fun cup_V2 : V2; -fun cup_bearer_N : N; -fun cup_final_N : N; -fun cup_tie_N : N; -fun cupbearer_N : N; -fun cupboard_N : N; -fun cupboard_love_N : N; -fun cupcake_N : N; -fun cupflower_N : N; -fun cupful_N : N; -fun cupid_N : N; -fun cupidity_N : N; -fun cuplike_A : A; -fun cupola_N : N; -fun cuppa_N : N; -fun cupping_N : N; -fun cupric_A : A; -fun cuprite_N : N; -fun cupro_nickel_N : N; -fun cupronickel_N : N; -fun cupular_A : A; -fun cupule_N : N; -fun cur_N : N; -fun curability_N : N; -fun curable_A : A; -fun curacao_N : N; -fun curacoa_N : N; -fun curacy_N : N; -fun curandera_N : N; -fun curandero_N : N; -fun curassow_N : N; -fun curate_N : N; -fun curative_A : A; -fun curator_N : N; -fun curatorial_A : A; -fun curatorship_N : N; -fun curb_N : N; -fun curb_V2 : V2; -fun curbside_N : N; -fun curbstone_N : N; -fun curd_N : N; -fun curdle_V : V; -fun curdle_V2 : V2; -fun curdling_N : N; -fun cure_V : V; -fun cure_V2 : V2; -fun cure_1_N : N; -fun cure_2_N : N; -fun cure_all_N : N; -fun cured_A : A; -fun curettage_N : N; -fun curette_N : N; -fun curfew_N : N; -fun curie_N : N; -fun curio_N : N; -fun curiosa_N : N; -fun curiosity_N : N; -fun curious_A : A; -fun curiously_Adv : Adv; -fun curiousness_N : N; -fun curium_N : N; -fun curl_N : N; -fun curl_V : V; -fun curl_V2 : V2; -fun curled_A : A; -fun curler_N : N; -fun curlew_N : N; -fun curliness_N : N; -fun curling_N : N; -fun curly_A : A; -fun curly_grained_A : A; -fun curly_haired_A : A; -fun curly_heads_N : N; -fun curly_leaved_A : A; -fun curmudgeon_N : N; -fun currant_N : N; -fun currawong_N : N; -fun currency_N : N; -fun current_A : A; -fun current_N : N; -fun currentness_N : N; -fun curricular_A : A; -fun curriculum_N : N; -fun curriculum_vitae_N : N; -fun currier_N : N; -fun currish_A : A; -fun currishly_Adv : Adv; -fun curry_N : N; -fun curry_V2 : V2; -fun curry_powder_N : N; -fun currycomb_N : N; -fun curse_N : N; -fun curse_V : V; -fun curse_V2 : V2; -fun cursed_A : A; -fun cursed_with_A : A; -fun cursive_A : A; -fun cursively_Adv : Adv; -fun cursor_N : N; -fun cursorial_A : A; -fun cursorily_Adv : Adv; -fun cursory_A : A; -fun curst_A : A; -fun curt_A : A; -fun curtail_V2 : V2; -fun curtailment_N : N; -fun curtain_N : N; -fun curtain_V2 : V2; -fun curtain_call_N : N; -fun curtain_lecture_N : N; -fun curtain_raiser_N : N; -fun curtained_A : A; -fun curtainless_A : A; -fun curtal_A : A; -fun curtly_Adv : Adv; -fun curtness_N : N; -fun curtsey_N : N; -fun curtsey_V : V; -fun curtsey_V2 : V2; -fun curtsy_N : N; -fun curtsy_V : V; -fun curvaceously_Adv : Adv; -fun curvaceousness_N : N; -fun curvature_N : N; -fun curve_N : N; -fun curve_V : V; -fun curve_V2 : V2; -fun curved_A : A; -fun curvet_N : N; -fun curvilineal_A : A; -fun curvy_A : A; -fun cuscus_N : N; -fun cush_cush_N : N; -fun cushaw_N : N; -fun cushion_N : N; -fun cushion_V2 : V2; -fun cushioned_A : A; -fun cushy_A : A; -fun cusk_N : N; -fun cusk_eel_N : N; -fun cusp_N : N; -fun cuspate_A : A; -fun cuspidation_N : N; -fun cuspidor_N : N; -fun cuss_N : N; -fun cussed_A : A; -fun cussedness_N : N; -fun custard_N : N; -fun custard_like_A : A; -fun custodial_A : A; -fun custodian_N : N; -fun custodianship_N : N; -fun custody_N : N; -fun custom_N : N; -fun custom_built_A : A; -fun custom_built_A : A; -fun custom_made_A : A; -fun custom_made_A : A; -fun custom_made_N : N; -fun customarily_Adv : Adv; -fun customary_A : A; -fun customer_N : N; -fun customhouse_N : N; -fun customize_V2 : V2; -fun customs_N : N; -fun cut_A : A; -fun cut_N : N; -fun cut_V : V; -fun cut_V2 : V2; -fun cut_VS : VS; -fun cut_and_dried_A : A; -fun cut_in_N : N; -fun cut_out_A : A; -fun cut_out_N : N; -fun cut_price_A : A; -fun cut_rate_A : A; -fun cut_throat_A : A; -fun cut_throat_N : N; -fun cut_up_A : A; -fun cutaneous_A : A; -fun cutaway_N : N; -fun cutback_N : N; -fun cutch_N : N; -fun cute_A : A; -fun cuteness_N : N; -fun cuticle_N : N; -fun cuticula_N : N; -fun cuticular_A : A; -fun cutin_N : N; -fun cutlas_N : N; -fun cutlass_N : N; -fun cutlassfish_N : N; -fun cutler_N : N; -fun cutlery_N : N; -fun cutlet_N : N; -fun cutoff_N : N; -fun cutout_N : N; -fun cutpurse_N : N; -fun cutter_N : N; -fun cutthroat_A : A; -fun cutthroat_N : N; -fun cutting_A : A; -fun cutting_N : N; -fun cutting_room_N : N; -fun cuttingly_Adv : Adv; -fun cuttlefish_N : N; -fun cutwork_N : N; -fun cutworm_N : N; -fun cwt_N : N; -fun cyan_N : N; -fun cyanamide_N : N; -fun cyanide_N : N; -fun cyanobacteria_N : N; -fun cyanobacterial_A : A; -fun cyanogen_N : N; -fun cyanogenetic_A : A; -fun cyanohydrin_N : N; -fun cyanosis_N : N; -fun cyber_terrorism_N : N; -fun cyberart_N : N; -fun cybercafe_N : N; -fun cybercrime_N : N; -fun cyberculture_N : N; -fun cybernaut_N : N; -fun cybernetic_A : A; -fun cybernetics_N : N; -fun cyberphobia_N : N; -fun cyberpunk_N : N; -fun cybersex_N : N; -fun cyborg_N : N; -fun cycad_N : N; -fun cyclamen_N : N; -fun cycle_N : N; -fun cycle_V : V; -fun cyclic_A : A; -fun cyclical_A : A; -fun cyclicity_N : N; -fun cycling_N : N; -fun cyclist_N : N; -fun cyclobenzaprine_N : N; -fun cyclohexanol_N : N; -fun cycloid_A : A; -fun cycloid_N : N; -fun cyclone_N : N; -fun cyclonic_A : A; -fun cyclooxygenase_N : N; -fun cyclooxygenase_1_N : N; -fun cyclooxygenase_2_N : N; -fun cyclopaedia_N : N; -fun cyclopean_A : A; -fun cyclopia_N : N; -fun cyclopropane_N : N; -fun cyclops_N : N; -fun cycloserine_N : N; -fun cyclosis_N : N; -fun cyclostome_N : N; -fun cyclostyle_N : N; -fun cyclostyle_V2 : V2; -fun cyclothymia_N : N; -fun cyclothymic_A : A; -fun cyclotron_N : N; -fun cyder_N : N; -fun cygnet_N : N; -fun cylinder_N : N; -fun cylindrical_A : A; -fun cylindrical_stemmed_A : A; -fun cylindricality_N : N; -fun cyma_N : N; -fun cymbal_N : N; -fun cymbalist_N : N; -fun cymbid_N : N; -fun cyme_N : N; -fun cymene_N : N; -fun cymling_N : N; -fun cymose_A : A; -fun cymule_N : N; -fun cynancum_N : N; -fun cynic_N : N; -fun cynical_A : A; -fun cynically_Adv : Adv; -fun cynicism_N : N; -fun cynodont_N : N; -fun cynophobia_N : N; -fun cynosure_N : N; -fun cypher_N : N; -fun cypher_V : V; -fun cypher_V2 : V2; -fun cypress_N : N; -fun cyprian_A : A; -fun cyprinid_A : A; -fun cyprinid_N : N; -fun cyprinodont_N : N; -fun cypriot_A : A; -fun cypriot_N : N; -fun cypripedia_N : N; -fun cyproheptadine_N : N; -fun cyrilla_N : N; -fun cyrillic_A : A; -fun cyst_N : N; -fun cysteine_N : N; -fun cystic_A : A; -fun cystine_N : N; -fun cystitis_N : N; -fun cystocele_N : N; -fun cystoplegia_N : N; -fun cytoarchitectural_A : A; -fun cytoarchitecture_N : N; -fun cytochrome_N : N; -fun cytogenesis_N : N; -fun cytogenetic_A : A; -fun cytogeneticist_N : N; -fun cytogenetics_N : N; -fun cytokine_N : N; -fun cytokinesis_N : N; -fun cytokinetic_A : A; -fun cytological_A : A; -fun cytologist_N : N; -fun cytology_N : N; -fun cytolysin_N : N; -fun cytolysis_N : N; -fun cytolytic_A : A; -fun cytomegalic_A : A; -fun cytomegalovirus_N : N; -fun cytopathogenic_A : A; -fun cytopenia_N : N; -fun cytophotometer_N : N; -fun cytophotometric_A : A; -fun cytophotometrically_Adv : Adv; -fun cytophotometry_N : N; -fun cytoplasm_N : N; -fun cytoplasmic_A : A; -fun cytoplasmically_Adv : Adv; -fun cytoplast_N : N; -fun cytoplastic_A : A; -fun cytosine_N : N; -fun cytoskeleton_N : N; -fun cytosol_N : N; -fun cytostome_N : N; -fun cytotoxic_A : A; -fun cytotoxicity_N : N; -fun cytotoxin_N : N; -fun czar_N : N; -fun czarina_N : N; -fun czarist_A : A; -fun czech_A : A; -fun czech_N : N; -fun czechoslovak_A : A; -fun czechoslovak_N : N; -fun czechoslovakian_A : A; -fun czechoslovakian_N : N; -fun d_o_a__A : A; -fun da'wah_N : N; -fun da_gamma_PN : PN; -fun dab_N : N; -fun dab_V : V; -fun dab_V2 : V2; -fun dabble_V : V; -fun dabble_V2 : V2; -fun dabbled_A : A; -fun dabbler_N : N; -fun dabchick_N : N; -fun dace_N : N; -fun dacha_N : N; -fun dachshund_N : N; -fun dacite_N : N; -fun dacitic_A : A; -fun dacoit_N : N; -fun dacoity_N : N; -fun dacryocystitis_N : N; -fun dacryon_N : N; -fun dactyl_N : N; -fun dactylic_A : A; -fun dactylomegaly_N : N; -fun dad_N : N; -fun dada_N : N; -fun daddy_N : N; -fun daddy_longlegs_N : N; -fun dado_N : N; -fun daedal_A : A; -fun daemon_N : N; -fun daffodil_N : N; -fun daft_A : A; -fun daftly_Adv : Adv; -fun dagame_N : N; -fun dagga_N : N; -fun dagger_N : N; -fun dagger_like_A : A; -fun daggerboard_N : N; -fun dago_N : N; -fun daguerreotype_N : N; -fun dahlia_N : N; -fun dail_eireann_N : N; -fun daily_A : A; -fun daily_Adv : Adv; -fun daily_N : N; -fun daintily_Adv : Adv; -fun daintiness_N : N; -fun dainty_A : A; -fun dainty_N : N; -fun daiquiri_N : N; -fun dairy_N : N; -fun dairy_farm_N : N; -fun dairy_farming_N : N; -fun dairying_N : N; -fun dairymaid_N : N; -fun dairyman_N : N; -fun dais_N : N; -fun daisy_N : N; -fun daisybush_N : N; -fun daisylike_A : A; -fun dalasi_N : N; -fun dale_N : N; -fun dalesman_N : N; -fun daleth_N : N; -fun dalliance_N : N; -fun dallier_N : N; -fun dallisgrass_N : N; -fun dally_V : V; -fun dalmatian_N : N; -fun dam_N : N; -fun dam_V2 : V2; -fun damage_N : N; -fun damage_V2 : V2; -fun damaged_A : A; -fun damages_N : N; -fun damaging_A : A; -fun damascene_A : A; -fun damascene_N : N; -fun damascene_V2 : V2; -fun damask_A : A; -fun damask_N : N; -fun dame_N : N; -fun dammar_N : N; -fun damn_A : A; -fun damn_Adv : Adv; -fun damn_N : N; -fun damn_V2 : V2; -fun damnable_A : A; -fun damnation_N : N; -fun damnatory_A : A; -fun damned_A : A; -fun damned_Adv : Adv; -fun damned_N : N; -fun damourite_N : N; -fun damp_A : A; -fun damp_N : N; -fun damp_V : V; -fun damp_V2 : V2; -fun dampen_V : V; -fun dampen_V2 : V2; -fun dampener_N : N; -fun damper_N : N; -fun dampish_A : A; -fun damply_Adv : Adv; -fun dampness_N : N; -fun damsel_N : N; -fun damselfish_N : N; -fun damselfly_N : N; -fun damson_N : N; -fun danaid_N : N; -fun dance_N : N; -fun dance_V : V; -fun dance_V2 : V2; -fun dance_band_N : N; -fun dance_hall_N : N; -fun dance_orchestra_N : N; -fun danceable_A : A; -fun dancer_N : N; -fun dancing_A : A; -fun dancing_N : N; -fun dancing_master_N : N; -fun dandelion_N : N; -fun dander_N : N; -fun dandified_A : A; -fun dandily_Adv : Adv; -fun dandle_V2 : V2; -fun dandruff_N : N; -fun dandy_A : A; -fun dandy_N : N; -fun dane_N : N; -fun danger_N : N; -fun dangerous_A : A; -fun dangerousness_N : N; -fun dangle_V : V; -fun dangle_V2 : V2; -fun dangleberry_N : N; -fun daniel_N : N; -fun danish_A : A; -fun danish_N : N; -fun dank_A : A; -fun dankness_N : N; -fun danse_macabre_N : N; -fun danseur_N : N; -fun daphne_N : N; -fun daphnia_N : N; -fun dapper_A : A; -fun dapple_V2 : V2; -fun dapple_grey_A : A; -fun dapple_grey_N : N; -fun dapple_grey_N : N; -fun dappled_A : A; -fun dapsone_N : N; -fun daraf_N : N; -fun dare_N : N; -fun dare_V : V; -fun dare_V2 : V2; -fun dare_VV : VV; -fun daredevil_A : A; -fun daredevil_N : N; -fun daredevilry_N : N; -fun daring_A : A; -fun daring_N : N; -fun daringly_Adv : Adv; -fun dark_A : A; -fun dark_N : N; -fun dark_blue_A : A; -fun dark_colored_A : A; -fun dark_fruited_A : A; -fun dark_haired_A : A; -fun dark_skinned_A : A; -fun dark_spotted_A : A; -fun darken_V : V; -fun darken_V2 : V2; -fun darkened_A : A; -fun darkening_A : A; -fun darkey_N : N; -fun darkie_N : N; -fun darkish_A : A; -fun darkling_A : A; -fun darkly_Adv : Adv; -fun darkness_N : N; -fun darkroom_N : N; -fun darky_N : N; -fun darling_N : N; -fun darmstadtium_N : N; -fun darn_N : N; -fun darn_V : V; -fun darn_V2 : V2; -fun darnel_N : N; -fun darner_N : N; -fun darning_N : N; -fun darning_needle_N : N; -fun dart_N : N; -fun dart_V : V; -fun dart_V2 : V2; -fun dartboard_N : N; -fun darter_N : N; -fun darts_N : N; -fun dash_N : N; -fun dash_V : V; -fun dash_V2 : V2; -fun dash_pot_N : N; -fun dashboard_N : N; -fun dashed_A : A; -fun dashiki_N : N; -fun dashing_A : A; -fun dashingly_Adv : Adv; -fun dastard_A : A; -fun dastard_N : N; -fun dastardliness_N : N; -fun dastardly_A : A; -fun dasymeter_N : N; -fun dasyure_N : N; -fun data_N : N; -fun database_N : N; -fun datable_A : A; -fun date_N : N; -fun date_V : V; -fun date_V2 : V2; -fun dated_A : A; -fun dateless_A : A; -fun dateline_N : N; -fun dating_N : N; -fun dative_A : A; -fun dative_N : N; -fun datum_N : N; -fun daub_N : N; -fun daub_V : V; -fun daub_V2 : V2; -fun dauber_N : N; -fun daughter_N : N; -fun daughter_in_law_N : N; -fun daughter_in_law_N : N; -fun daughterly_A : A; -fun daunt_V2 : V2; -fun daunting_A : A; -fun dauntingly_Adv : Adv; -fun dauntless_A : A; -fun dauntlessness_N : N; -fun dauphin_N : N; -fun davallia_N : N; -fun davenport_N : N; -fun davit_N : N; -fun daw_N : N; -fun dawdle_V : V; -fun dawdle_V2 : V2; -fun dawdler_N : N; -fun dawn_N : N; -fun dawn_V : V; -fun day_N : N; -fun day_boarder_N : N; -fun day_by_day_Adv : Adv; -fun day_in_and_day_out_Adv : Adv; -fun day_in_day_out_Adv : Adv; -fun day_labourer_N : N; -fun day_old_A : A; -fun day_return_N : N; -fun day_school_N : N; -fun daybed_N : N; -fun daybook_N : N; -fun dayboy_N : N; -fun daybreak_N : N; -fun daycare_N : N; -fun daydream_N : N; -fun daydream_V : V; -fun daydreamer_N : N; -fun daygirl_N : N; -fun daylight_N : N; -fun daylight_saving_A : A; -fun daylight_saving_N : N; -fun daylong_A : A; -fun daylong_Adv : Adv; -fun days_N : N; -fun dayspring_N : N; -fun daytime_N : N; -fun daze_N : N; -fun daze_V2 : V2; -fun dazed_A : A; -fun dazedly_Adv : Adv; -fun dazzle_N : N; -fun dazzle_V2 : V2; -fun dazzled_A : A; -fun dazzling_A : A; -fun dazzlingly_Adv : Adv; -fun ddt_N : N; -fun devries_N : N; -fun de_gaulle_PN : PN; -fun de_kooning_PN : PN; -fun de_mille_PN : PN; -fun de_saussure_PN : PN; -fun de_valera_PN : PN; -fun de_emphasize_V2 : V2; -fun de_escalate_V2 : V2; -fun de_escalation_N : N; -fun de_escalation_N : N; -fun de_facto_A : A; -fun de_facto_Adv : Adv; -fun de_ice_V2 : V2; -fun de_iodinase_N : N; -fun de_iodinating_A : A; -fun de_iodination_N : N; -fun de_jure_A : A; -fun de_jure_Adv : Adv; -fun de_la_mare_PN : PN; -fun de_luxe_A : A; -fun de_novo_Adv : Adv; -fun de_rigeur_A : A; -fun de_rigueur_A : A; -fun de_trop_A : A; -fun deaccent_V2 : V2; -fun deacon_N : N; -fun deaconess_N : N; -fun deactivate_V2 : V2; -fun deactivation_N : N; -fun dead_A : A; -fun dead_Adv : Adv; -fun dead_N : N; -fun dead_ahead_Adv : Adv; -fun dead_end_A : A; -fun dead_man's_fingers_N : N; -fun dead_on_A : A; -fun deaden_V2 : V2; -fun deadened_A : A; -fun deadeye_N : N; -fun deadhead_N : N; -fun deadlight_N : N; -fun deadline_N : N; -fun deadliness_N : N; -fun deadlock_N : N; -fun deadlock_V : V; -fun deadlocked_A : A; -fun deadly_A : A; -fun deadly_Adv : Adv; -fun deadness_N : N; -fun deadpan_A : A; -fun deadpan_Adv : Adv; -fun deadwood_N : N; -fun deaf_A : A; -fun deaf_N : N; -fun deaf_aid_N : N; -fun deaf_and_dumb_A : A; -fun deaf_mute_N : N; -fun deaf_mutism_N : N; -fun deafen_V2 : V2; -fun deafened_A : A; -fun deafening_A : A; -fun deafness_N : N; -fun deal_Adv : Adv; -fun deal_N : N; -fun deal_V : V; -fun deal_V2 : V2; -fun dealer_N : N; -fun dealfish_N : N; -fun dealignment_N : N; -fun dealing_N : N; -fun dealings_N : N; -fun deamination_N : N; -fun dean_N : N; -fun deanery_N : N; -fun deanship_N : N; -fun dear_A : A; -fun dear_Adv : Adv; -fun dear_N : N; -fun dearest_N : N; -fun dearie_N : N; -fun dearly_Adv : Adv; -fun dearly_won_A : A; -fun dearness_N : N; -fun dearth_N : N; -fun deary_N : N; -fun death_N : N; -fun death_mask_N : N; -fun death_rate_N : N; -fun death_roll_N : N; -fun death_roll_N : N; -fun death_warrant_N : N; -fun deathbed_N : N; -fun deathblow_N : N; -fun deathless_A : A; -fun deathlike_A : A; -fun deathly_A : A; -fun deathly_Adv : Adv; -fun deathrate_N : N; -fun deathtrap_N : N; -fun deb_N : N; -fun debacle_N : N; -fun debag_V2 : V2; -fun debar_V2 : V2; -fun debark_V : V; -fun debark_V2 : V2; -fun debarkation_N : N; -fun debarment_N : N; -fun debase_V2 : V2; -fun debased_A : A; -fun debasement_N : N; -fun debaser_N : N; -fun debasing_A : A; -fun debatable_A : A; -fun debate_N : N; -fun debate_V : V; -fun debate_V2 : V2; -fun debater_N : N; -fun debauch_N : N; -fun debauch_V2 : V2; -fun debauched_A : A; -fun debauchee_N : N; -fun debauchery_N : N; -fun debenture_N : N; -fun debilitate_V2 : V2; -fun debilitating_A : A; -fun debilitation_N : N; -fun debilitative_A : A; -fun debility_N : N; -fun debit_N : N; -fun debit_V2 : V2; -fun debit_side_N : N; -fun debonair_A : A; -fun debone_V2 : V2; -fun debouch_V : V; -fun debouch_V2 : V2; -fun debowel_V2 : V2; -fun debridement_N : N; -fun debrief_V2 : V2; -fun debriefing_N : N; -fun debris_N : N; -fun debris_1_N : N; -fun debris_2_N : N; -fun debt_N : N; -fun debtor_N : N; -fun debug_V2 : V2; -fun debugger_N : N; -fun debunk_V2 : V2; -fun debur_V2 : V2; -fun debut_N : N; -fun debut_V2 : V2; -fun debut_1_N : N; -fun debut_2_N : N; -fun debutante_N : N; -fun debutante_1_N : N; -fun debutante_2_N : N; -fun decade_N : N; -fun decadence_N : N; -fun decadent_A : A; -fun decadent_N : N; -fun decagon_N : N; -fun decahedron_N : N; -fun decal_N : N; -fun decalcification_N : N; -fun decalcomania_N : N; -fun decalescence_N : N; -fun decalescent_A : A; -fun decalogue_N : N; -fun decameter_N : N; -fun decamp_V : V; -fun decampment_N : N; -fun decant_V2 : V2; -fun decantation_N : N; -fun decanter_N : N; -fun decapitate_V2 : V2; -fun decapitation_N : N; -fun decapod_N : N; -fun decarbonize_V2 : V2; -fun decarboxylase_N : N; -fun decarboxylation_N : N; -fun decasyllabic_A : A; -fun decasyllable_N : N; -fun decathlon_N : N; -fun decay_N : N; -fun decay_V : V; -fun decayable_A : A; -fun decayed_A : A; -fun decease_N : N; -fun decease_V : V; -fun deceit_N : N; -fun deceitful_A : A; -fun deceitfulness_N : N; -fun deceive_V2 : V2; -fun deceiver_N : N; -fun deceivingly_Adv : Adv; -fun decelerate_V : V; -fun decelerate_V2 : V2; -fun deceleration_N : N; -fun december_N : N; -fun decency_N : N; -fun decent_A : A; -fun decently_Adv : Adv; -fun decentralization_N : N; -fun decentralize_V2 : V2; -fun decentralized_A : A; -fun decentralizing_A : A; -fun deception_N : N; -fun deceptive_A : A; -fun deceptively_Adv : Adv; -fun deceptiveness_N : N; -fun decibel_N : N; -fun decide_V : V; -fun decide_V2 : V2; -fun decide_VS : VS; -fun decide_VV : VV; -fun decided_A : A; -fun decidedly_Adv : Adv; -fun deciding_A : A; -fun decidua_N : N; -fun deciduous_A : A; -fun decigram_N : N; -fun decile_N : N; -fun deciliter_N : N; -fun decimal_A : A; -fun decimal_N : N; -fun decimalization_N : N; -fun decimalize_V2 : V2; -fun decimate_V2 : V2; -fun decimation_N : N; -fun decimeter_N : N; -fun decipher_V2 : V2; -fun decipherable_A : A; -fun deciphered_A : A; -fun decipherer_N : N; -fun decision_N : N; -fun decisive_A : A; -fun decisively_Adv : Adv; -fun decisiveness_N : N; -fun deck_N : N; -fun deck_V2 : V2; -fun deck_house_N : N; -fun decker_N : N; -fun deckhand_N : N; -fun deckle_N : N; -fun deckle_edged_A : A; -fun deckled_A : A; -fun declaim_V : V; -fun declaim_V2 : V2; -fun declamation_N : N; -fun declamatory_A : A; -fun declarable_A : A; -fun declaration_N : N; -fun declarative_A : A; -fun declare_V : V; -fun declare_V2 : V2; -fun declare_V2V : V2V; -fun declare_VS : VS; -fun declared_A : A; -fun declassification_N : N; -fun declassified_A : A; -fun declassify_V2 : V2; -fun declaw_V2 : V2; -fun declension_N : N; -fun declination_N : N; -fun decline_N : N; -fun decline_V : V; -fun decline_V2 : V2; -fun decline_VS : VS; -fun decline_VV : VV; -fun declinometer_N : N; -fun declivitous_A : A; -fun declivity_N : N; -fun declutch_V : V; -fun deco_N : N; -fun decoction_N : N; -fun decode_V2 : V2; -fun decoder_N : N; -fun decoding_N : N; -fun decoke_V2 : V2; -fun decolletage_N : N; -fun decollete_A : A; -fun decolonization_N : N; -fun decolonize_V2 : V2; -fun decompose_V : V; -fun decompose_V2 : V2; -fun decomposition_N : N; -fun decompositional_A : A; -fun decompound_A : A; -fun decompress_V2 : V2; -fun decompression_N : N; -fun decongestant_N : N; -fun deconsecrated_A : A; -fun deconstruction_N : N; -fun deconstructionist_A : A; -fun deconstructivism_N : N; -fun decontaminate_V2 : V2; -fun decontamination_N : N; -fun decontrol_V2 : V2; -fun decor_N : N; -fun decorate_V2 : V2; -fun decoration_N : N; -fun decorative_A : A; -fun decoratively_Adv : Adv; -fun decorativeness_N : N; -fun decorator_N : N; -fun decorous_A : A; -fun decorously_Adv : Adv; -fun decortication_N : N; -fun decorum_N : N; -fun decoupage_N : N; -fun decoy_N : N; -fun decoy_V2 : V2; -fun decrease_N : N; -fun decrease_V : V; -fun decrease_V2 : V2; -fun decreased_A : A; -fun decreasing_A : A; -fun decreasing_monotonic_A : A; -fun decree_N : N; -fun decree_V2 : V2; -fun decree_nisi_N : N; -fun decrepit_A : A; -fun decrepitation_N : N; -fun decrepitude_N : N; -fun decrescendo_A : A; -fun decrescendo_N : N; -fun decribe_V2 : V2; -fun decriminalization_N : N; -fun decry_V2 : V2; -fun decubitus_N : N; -fun decumary_N : N; -fun decurved_A : A; -fun decussate_A : A; -fun dedicate_V2 : V2; -fun dedicated_A : A; -fun dedication_N : N; -fun dedifferentiated_A : A; -fun dedifferentiation_N : N; -fun deduce_V2 : V2; -fun deducible_A : A; -fun deduct_V2 : V2; -fun deductible_A : A; -fun deductible_N : N; -fun deduction_N : N; -fun deductive_A : A; -fun deed_N : N; -fun deed_box_N : N; -fun deedpoll_N : N; -fun deem_V2 : V2; -fun deem_VS : VS; -fun deep_A : A; -fun deep_Adv : Adv; -fun deep_N : N; -fun deep_chested_A : A; -fun deep_eyed_A : A; -fun deep_freeze_N : N; -fun deep_freeze_N : N; -fun deep_freeze_V2 : V2; -fun deep_laid_A : A; -fun deep_laid_A : A; -fun deep_lobed_A : A; -fun deep_mined_A : A; -fun deep_mined_A : A; -fun deep_pink_A : A; -fun deep_rooted_A : A; -fun deep_rooted_A : A; -fun deep_sea_A : A; -fun deep_sea_A : A; -fun deep_seated_A : A; -fun deep_set_A : A; -fun deep_water_A : A; -fun deep_water_A : A; -fun deep_yellow_A : A; -fun deepen_V : V; -fun deepen_V2 : V2; -fun deepening_A : A; -fun deepening_N : N; -fun deeply_Adv : Adv; -fun deepness_N : N; -fun deer_N : N; -fun deerberry_N : N; -fun deerskin_N : N; -fun deerstalker_N : N; -fun deerstalking_N : N; -fun deface_V2 : V2; -fun defacement_N : N; -fun defalcation_N : N; -fun defamation_N : N; -fun defamatory_A : A; -fun defame_V2 : V2; -fun defamer_N : N; -fun defang_V2 : V2; -fun defat_V2 : V2; -fun default_N : N; -fun default_V : V; -fun defaulter_N : N; -fun defeasible_A : A; -fun defeat_N : N; -fun defeat_V2 : V2; -fun defeated_A : A; -fun defeated_N : N; -fun defeather_V2 : V2; -fun defeatism_N : N; -fun defeatist_N : N; -fun defecate_V : V; -fun defecation_N : N; -fun defecator_N : N; -fun defect_N : N; -fun defect_V : V; -fun defection_N : N; -fun defective_A : A; -fun defectively_Adv : Adv; -fun defectiveness_N : N; -fun defector_N : N; -fun defence_N : N; -fun defenceless_A : A; -fun defencelessness_N : N; -fun defend_V : V; -fun defend_V2 : V2; -fun defendable_A : A; -fun defendant_N : N; -fun defender_N : N; -fun defending_A : A; -fun defenestration_N : N; -fun defense_N : N; -fun defenseless_A : A; -fun defenseless_Adv : Adv; -fun defenselessness_N : N; -fun defensibility_N : N; -fun defensible_A : A; -fun defensive_A : A; -fun defensive_N : N; -fun defensively_Adv : Adv; -fun defensiveness_N : N; -fun defer_V : V; -fun defer_V2 : V2; -fun deference_N : N; -fun deferent_A : A; -fun deferential_A : A; -fun deferentially_Adv : Adv; -fun deferment_N : N; -fun deferral_N : N; -fun defervescence_N : N; -fun defervescent_A : A; -fun defiance_N : N; -fun defiant_A : A; -fun defibrillation_N : N; -fun defibrillator_N : N; -fun deficiency_N : N; -fun deficient_A : A; -fun deficit_N : N; -fun defilade_N : N; -fun defile_N : N; -fun defile_V : V; -fun defile_V2 : V2; -fun defiled_A : A; -fun defilement_N : N; -fun definable_A : A; -fun define_V : V; -fun define_V2 : V2; -fun defined_A : A; -fun definite_A : A; -fun definition_N : N; -fun definitive_A : A; -fun deflagration_N : N; -fun deflate_V2 : V2; -fun deflation_N : N; -fun deflationary_A : A; -fun deflator_N : N; -fun deflea_V2 : V2; -fun deflect_V : V; -fun deflect_V2 : V2; -fun deflection_N : N; -fun deflective_A : A; -fun deflector_N : N; -fun deflesh_V2 : V2; -fun defloration_N : N; -fun deflower_V2 : V2; -fun defoam_V2 : V2; -fun defog_V2 : V2; -fun defoliant_N : N; -fun defoliate_A : A; -fun defoliate_V2 : V2; -fun defoliation_N : N; -fun defoliator_N : N; -fun deforest_V2 : V2; -fun deforestation_N : N; -fun deform_V : V; -fun deform_V2 : V2; -fun deformation_N : N; -fun deformational_A : A; -fun deformed_A : A; -fun deformity_N : N; -fun defraud_V2 : V2; -fun defray_V2 : V2; -fun defrayal_N : N; -fun defrayment_N : N; -fun defrock_V2 : V2; -fun defrost_V2 : V2; -fun defroster_N : N; -fun deft_A : A; -fun deftly_Adv : Adv; -fun deftness_N : N; -fun defunct_A : A; -fun defuse_V2 : V2; -fun defuzz_V2 : V2; -fun defy_V2 : V2; -fun defy_V2V : V2V; -fun degage_A : A; -fun degas_V2 : V2; -fun degauss_V2 : V2; -fun degaussing_N : N; -fun degeneracy_N : N; -fun degenerate_A : A; -fun degenerate_N : N; -fun degenerate_V : V; -fun degeneration_N : N; -fun degenerative_A : A; -fun degerm_V2 : V2; -fun deglaze_V2 : V2; -fun degradation_N : N; -fun degrade_V2 : V2; -fun degrease_V2 : V2; -fun degree_N : N; -fun degree_fahrenheit_PN : PN; -fun degressive_A : A; -fun degrit_V2 : V2; -fun degum_V2 : V2; -fun degut_V2 : V2; -fun dehair_V2 : V2; -fun dehead_V2 : V2; -fun dehiscence_N : N; -fun dehiscent_A : A; -fun dehorn_V2 : V2; -fun dehull_V2 : V2; -fun dehumanization_N : N; -fun dehumanize_V2 : V2; -fun dehumanized_A : A; -fun dehusk_V2 : V2; -fun dehydrate_V2 : V2; -fun dehydrated_A : A; -fun dehydration_N : N; -fun deice_V2 : V2; -fun deictic_A : A; -fun deictic_N : N; -fun deific_A : A; -fun deification_N : N; -fun deify_V2 : V2; -fun deign_V : V; -fun deink_V2 : V2; -fun deinocheirus_N : N; -fun deinonychus_N : N; -fun deipnosophist_N : N; -fun deism_N : N; -fun deist_A : A; -fun deist_N : N; -fun deity_N : N; -fun deixis_N : N; -fun deject_V2 : V2; -fun dejected_A : A; -fun dejectedly_Adv : Adv; -fun dejection_N : N; -fun dekagram_N : N; -fun dekaliter_N : N; -fun dekko_N : N; -fun delavirdine_N : N; -fun delay_N : N; -fun delay_V : V; -fun delay_V2 : V2; -fun delay_VS : VS; -fun delayed_A : A; -fun delayed_action_A : A; -fun delayed_action_N : N; -fun delayer_N : N; -fun delectability_N : N; -fun delectable_A : A; -fun delectation_N : N; -fun delegacy_N : N; -fun delegate_N : N; -fun delegate_V2 : V2; -fun delegating_N : N; -fun delegation_N : N; -fun delete_V2 : V2; -fun deleterious_A : A; -fun deletion_N : N; -fun delf_N : N; -fun delft_N : N; -fun deliberate_A : A; -fun deliberate_V : V; -fun deliberate_V2 : V2; -fun deliberation_N : N; -fun deliberative_A : A; -fun delible_A : A; -fun delicacy_N : N; -fun delicate_A : A; -fun delicatessen_N : N; -fun delicious_A : A; -fun deliciously_Adv : Adv; -fun delight_N : N; -fun delight_V : V; -fun delight_V2 : V2; -fun delight_VS : VS; -fun delighted_A : A; -fun delightedly_Adv : Adv; -fun delightful_A : A; -fun delightfully_Adv : Adv; -fun delimit_V2 : V2; -fun delimitate_V2 : V2; -fun delimitation_N : N; -fun delineate_V2 : V2; -fun delineated_A : A; -fun delineation_N : N; -fun delineative_A : A; -fun delinquency_N : N; -fun delinquent_A : A; -fun delinquent_N : N; -fun delint_V2 : V2; -fun deliquescent_A : A; -fun delirious_A : A; -fun deliriously_Adv : Adv; -fun delirium_N : N; -fun delirium_tremens_N : N; -fun deliver_V : V; -fun deliver_V2 : V2; -fun deliverable_A : A; -fun deliverable_N : N; -fun deliverance_N : N; -fun deliverer_N : N; -fun delivery_N : N; -fun deliveryman_N : N; -fun dell_N : N; -fun delouse_V2 : V2; -fun delphic_A : A; -fun delphinium_N : N; -fun delta_N : N; -fun deltoid_A : A; -fun deltoid_N : N; -fun delude_V2 : V2; -fun deluge_N : N; -fun deluge_V2 : V2; -fun delusion_N : N; -fun delusional_A : A; -fun delusive_A : A; -fun delusively_Adv : Adv; -fun deluster_V2 : V2; -fun deluxe_A : A; -fun delve_V : V; -fun delve_V2 : V2; -fun demagnetization_N : N; -fun demagnetize_V2 : V2; -fun demagogic_A : A; -fun demagogue_N : N; -fun demagoguery_N : N; -fun demagogy_N : N; -fun demand_N : N; -fun demand_V2 : V2; -fun demand_VS : VS; -fun demander_N : N; -fun demanding_A : A; -fun demandingly_Adv : Adv; -fun demantoid_N : N; -fun demarcate_V2 : V2; -fun demarcation_N : N; -fun demarche_N : N; -fun demast_V2 : V2; -fun demean_V2 : V2; -fun demeaning_A : A; -fun demeanor_N : N; -fun demeanour_N : N; -fun demented_A : A; -fun dementia_N : N; -fun demerara_N : N; -fun demerit_N : N; -fun demesne_N : N; -fun demiglace_N : N; -fun demigod_N : N; -fun demijohn_N : N; -fun demilitarize_V2 : V2; -fun demimondaine_N : N; -fun demimonde_N : N; -fun demineralization_N : N; -fun demise_N : N; -fun demist_V2 : V2; -fun demister_N : N; -fun demitasse_N : N; -fun demiurge_N : N; -fun demo_N : N; -fun demob_V2 : V2; -fun demobilization_N : N; -fun demobilize_V2 : V2; -fun democracy_N : N; -fun democrat_N : N; -fun democratic_A : A; -fun democratically_Adv : Adv; -fun democratization_N : N; -fun democratize_V2 : V2; -fun demode_A : A; -fun demodulation_N : N; -fun demographer_N : N; -fun demographic_A : A; -fun demographic_N : N; -fun demography_N : N; -fun demolish_V2 : V2; -fun demolished_A : A; -fun demolition_N : N; -fun demon_N : N; -fun demon_ridden_A : A; -fun demonetization_N : N; -fun demonetize_V2 : V2; -fun demoniac_A : A; -fun demoniac_N : N; -fun demoniacal_A : A; -fun demoniacally_Adv : Adv; -fun demonic_A : A; -fun demonization_N : N; -fun demonize_V2 : V2; -fun demonstrability_N : N; -fun demonstrable_A : A; -fun demonstrably_Adv : Adv; -fun demonstrate_V : V; -fun demonstrate_V2 : V2; -fun demonstrate_VS : VS; -fun demonstrated_A : A; -fun demonstration_N : N; -fun demonstrative_A : A; -fun demonstrative_of_A : A; -fun demonstratively_Adv : Adv; -fun demonstrativeness_N : N; -fun demonstrator_N : N; -fun demoralization_N : N; -fun demoralize_V2 : V2; -fun demoralized_A : A; -fun demoralizing_A : A; -fun demote_V2 : V2; -fun demotic_A : A; -fun demotion_N : N; -fun demulcent_A : A; -fun demulcent_N : N; -fun demur_N : N; -fun demur_V : V; -fun demur_VS : VS; -fun demure_A : A; -fun demurely_Adv : Adv; -fun demureness_N : N; -fun demurrage_N : N; -fun demurrer_N : N; -fun demyelination_N : N; -fun demythologization_N : N; -fun demythologized_A : A; -fun den_N : N; -fun denary_A : A; -fun denationalization_N : N; -fun denationalize_V2 : V2; -fun denaturant_N : N; -fun denatured_A : A; -fun denazification_N : N; -fun dendrite_N : N; -fun dendritic_A : A; -fun dendrobium_N : N; -fun dengue_N : N; -fun deniable_A : A; -fun denial_N : N; -fun denier_N : N; -fun denigrate_V2 : V2; -fun denigration_N : N; -fun denim_N : N; -fun denizen_N : N; -fun denominate_V2 : V2; -fun denomination_N : N; -fun denominational_A : A; -fun denominationalism_N : N; -fun denominationally_Adv : Adv; -fun denominator_N : N; -fun denotative_A : A; -fun denotatum_N : N; -fun denote_V2 : V2; -fun denouement_N : N; -fun denounce_V2 : V2; -fun dense_A : A; -fun densely_Adv : Adv; -fun denseness_N : N; -fun densimeter_N : N; -fun densitometer_N : N; -fun densitometry_N : N; -fun density_N : N; -fun dent_N : N; -fun dent_V : V; -fun dent_V2 : V2; -fun dental_A : A; -fun dentate_A : A; -fun denticle_N : N; -fun denticulate_A : A; -fun dentifrice_N : N; -fun dentine_N : N; -fun dentist_N : N; -fun dentistry_N : N; -fun dentition_N : N; -fun denture_N : N; -fun denudation_N : N; -fun denude_V2 : V2; -fun denunciation_N : N; -fun deny_V2 : V2; -fun deny_VS : VS; -fun deodar_N : N; -fun deodorant_N : N; -fun deodorize_V2 : V2; -fun deossification_N : N; -fun deoxyadenosine_N : N; -fun deoxycytidine_N : N; -fun deoxyguanosine_N : N; -fun deoxyribose_N : N; -fun deoxythymidine_N : N; -fun depart_V : V; -fun depart_V2 : V2; -fun departed_A : A; -fun departed_N : N; -fun departer_N : N; -fun department_N : N; -fun departmental_A : A; -fun departmentally_Adv : Adv; -fun departure_N : N; -fun depend_V : V; -fun dependability_N : N; -fun dependable_A : A; -fun dependant_N : N; -fun dependence_N : N; -fun dependency_N : N; -fun dependent_A : A; -fun dependent_N : N; -fun depersonalization_N : N; -fun depict_V2 : V2; -fun depicted_A : A; -fun depicting_N : N; -fun depiction_N : N; -fun depigmentation_N : N; -fun depilation_N : N; -fun depilatory_A : A; -fun depilatory_N : N; -fun depilous_A : A; -fun deplane_V : V; -fun depletable_A : A; -fun deplete_V2 : V2; -fun depleted_A : A; -fun depletion_N : N; -fun deplorable_A : A; -fun deplorably_Adv : Adv; -fun deplore_V2 : V2; -fun deploy_V : V; -fun deploy_V2 : V2; -fun deployment_N : N; -fun depolarization_N : N; -fun deponent_N : N; -fun depopulate_V2 : V2; -fun depopulated_A : A; -fun depopulation_N : N; -fun deport_V2 : V2; -fun deportation_N : N; -fun deportee_N : N; -fun deportment_N : N; -fun depose_V : V; -fun depose_V2 : V2; -fun deposit_N : N; -fun deposit_V2 : V2; -fun deposition_N : N; -fun depositor_N : N; -fun depository_N : N; -fun depot_N : N; -fun deprave_V2 : V2; -fun depraved_A : A; -fun depravity_N : N; -fun deprecate_V2 : V2; -fun deprecation_N : N; -fun deprecative_A : A; -fun deprecatively_Adv : Adv; -fun depreciate_V : V; -fun depreciate_V2 : V2; -fun depreciating_A : A; -fun depreciation_N : N; -fun depreciatory_A : A; -fun depredation_N : N; -fun depress_V2 : V2; -fun depressant_A : A; -fun depressed_A : A; -fun depressing_A : A; -fun depressingly_Adv : Adv; -fun depression_N : N; -fun depressive_A : A; -fun depressive_N : N; -fun depressor_N : N; -fun deprivation_N : N; -fun deprive_V2 : V2; -fun deprived_A : A; -fun depth_N : N; -fun depth_bomb_N : N; -fun depth_charge_N : N; -fun deputation_N : N; -fun depute_V2 : V2; -fun deputize_V : V; -fun deputy_N : N; -fun derail_V2 : V2; -fun derailment_N : N; -fun derange_V2 : V2; -fun derangement_N : N; -fun derat_V2 : V2; -fun derate_V2 : V2; -fun derby_N : N; -fun deregulate_V2 : V2; -fun deregulation_N : N; -fun derelict_A : A; -fun derelict_N : N; -fun dereliction_N : N; -fun derequisition_V2 : V2; -fun derestrict_V2 : V2; -fun derib_V2 : V2; -fun deride_V2 : V2; -fun derind_V2 : V2; -fun derision_N : N; -fun derisive_A : A; -fun derisively_Adv : Adv; -fun derisory_A : A; -fun derivable_A : A; -fun derivation_N : N; -fun derivational_A : A; -fun derivative_A : A; -fun derivative_N : N; -fun derive_V : V; -fun derive_V2 : V2; -fun derived_A : A; -fun deriving_N : N; -fun dermabrasion_N : N; -fun dermal_A : A; -fun dermatitis_N : N; -fun dermatoglyphic_N : N; -fun dermatoglyphics_N : N; -fun dermatologic_A : A; -fun dermatologist_N : N; -fun dermatology_N : N; -fun dermatome_N : N; -fun dermatomycosis_N : N; -fun dermatomyositis_N : N; -fun dermatosis_N : N; -fun dermis_N : N; -fun derogate_V : V; -fun derogation_N : N; -fun derogative_A : A; -fun derogatory_A : A; -fun derrick_N : N; -fun derring_do_N : N; -fun derring_do_N : N; -fun derringer_N : N; -fun derris_N : N; -fun derv_N : N; -fun dervish_N : N; -fun des_N : N; -fun desalinate_V2 : V2; -fun desalination_N : N; -fun desalinization_N : N; -fun desalinize_V2 : V2; -fun desalt_V2 : V2; -fun descale_V2 : V2; -fun descant_N : N; -fun descant_V : V; -fun descend_V : V; -fun descend_V2 : V2; -fun descendant_A : A; -fun descendant_N : N; -fun descendants_N : N; -fun descender_N : N; -fun descending_A : A; -fun descent_N : N; -fun describable_A : A; -fun describe_V : V; -fun describe_V2 : V2; -fun describe_VS : VS; -fun described_A : A; -fun description_N : N; -fun descriptive_A : A; -fun descriptively_Adv : Adv; -fun descriptivism_N : N; -fun descriptor_N : N; -fun descry_V2 : V2; -fun desecrate_V2 : V2; -fun desecrated_A : A; -fun desecration_N : N; -fun desegrated_A : A; -fun desegregate_V2 : V2; -fun desegregation_N : N; -fun desensitization_N : N; -fun desensitize_V2 : V2; -fun desensitizing_A : A; -fun desert_A : A; -fun desert_N : N; -fun desert_V : V; -fun desert_V2 : V2; -fun deserter_N : N; -fun desertification_N : N; -fun desertion_N : N; -fun deserts_N : N; -fun deserve_V : V; -fun deserve_V2 : V2; -fun deserved_A : A; -fun deservedly_Adv : Adv; -fun deserving_A : A; -fun deservingness_N : N; -fun desex_V2 : V2; -fun deshabille_N : N; -fun desiccant_N : N; -fun desiccate_V2 : V2; -fun desiccated_A : A; -fun desideratum_N : N; -fun design_N : N; -fun design_V : V; -fun design_V2 : V2; -fun design_VS : VS; -fun design_VV : VV; -fun designate_A : A; -fun designate_V : V; -fun designate_V2 : V2; -fun designate_V2V : V2V; -fun designate_VS : VS; -fun designation_N : N; -fun designative_A : A; -fun designatum_N : N; -fun designed_A : A; -fun designedly_Adv : Adv; -fun designer_N : N; -fun designing_A : A; -fun designing_N : N; -fun desipramine_N : N; -fun desirability_N : N; -fun desirable_A : A; -fun desire_N : N; -fun desire_V2 : V2; -fun desirous_A : A; -fun desist_V : V; -fun desk_N : N; -fun desk_bound_A : A; -fun desktop_N : N; -fun desmid_N : N; -fun desolate_A : A; -fun desolate_V2 : V2; -fun desolately_Adv : Adv; -fun desolation_N : N; -fun desorption_N : N; -fun despair_N : N; -fun despair_V : V; -fun despairing_A : A; -fun despairingly_Adv : Adv; -fun despatch_N : N; -fun despatch_V2 : V2; -fun desperado_N : N; -fun desperate_A : A; -fun desperate_N : N; -fun desperately_Adv : Adv; -fun desperation_N : N; -fun despicable_A : A; -fun despicably_Adv : Adv; -fun despisal_N : N; -fun despise_V2 : V2; -fun despised_A : A; -fun despite_N : N; -fun despite_Prep : Prep; -fun despiteful_A : A; -fun despitefully_Adv : Adv; -fun despoil_V2 : V2; -fun despoiled_A : A; -fun despondency_N : N; -fun despondent_A : A; -fun despot_N : N; -fun despotic_A : A; -fun despotism_N : N; -fun desprout_V2 : V2; -fun desquamation_N : N; -fun dessert_N : N; -fun dessertspoon_N : N; -fun dessertspoonful_N : N; -fun dessiatine_N : N; -fun destabilization_N : N; -fun destalinization_N : N; -fun destarch_V2 : V2; -fun destination_N : N; -fun destine_V2 : V2; -fun destine_V2V : V2V; -fun destiny_N : N; -fun destitute_A : A; -fun destitution_N : N; -fun destress_V2 : V2; -fun destroy_V2 : V2; -fun destroyable_A : A; -fun destroyed_A : A; -fun destroyer_N : N; -fun destructibility_N : N; -fun destructible_A : A; -fun destruction_N : N; -fun destructive_A : A; -fun destructive_metabolic_A : A; -fun destructively_Adv : Adv; -fun destructiveness_N : N; -fun desuetude_N : N; -fun desultory_A : A; -fun detach_V2 : V2; -fun detachable_A : A; -fun detached_A : A; -fun detachment_N : N; -fun detail_N : N; -fun detail_V2 : V2; -fun detailed_A : A; -fun details_N : N; -fun detain_V2 : V2; -fun detainee_N : N; -fun detassel_V2 : V2; -fun detect_V2 : V2; -fun detectable_A : A; -fun detected_A : A; -fun detection_N : N; -fun detective_N : N; -fun detector_N : N; -fun detente_N : N; -fun detention_N : N; -fun deter_V2 : V2; -fun detergency_N : N; -fun detergent_A : A; -fun detergent_N : N; -fun deteriorate_V : V; -fun deteriorate_V2 : V2; -fun deterioration_N : N; -fun determent_N : N; -fun determinable_A : A; -fun determinant_A : A; -fun determinant_N : N; -fun determinate_A : A; -fun determinateness_N : N; -fun determination_N : N; -fun determinative_A : A; -fun determinative_N : N; -fun determine_V : V; -fun determine_V2 : V2; -fun determine_V2V : V2V; -fun determine_VS : VS; -fun determine_VV : VV; -fun determined_A : A; -fun determinedly_Adv : Adv; -fun determiner_N : N; -fun determinism_N : N; -fun deterministic_A : A; -fun deterrence_N : N; -fun deterrent_A : A; -fun deterrent_N : N; -fun detest_V2 : V2; -fun detestable_A : A; -fun detestably_Adv : Adv; -fun detestation_N : N; -fun dethrone_V2 : V2; -fun dethronement_N : N; -fun detonate_V : V; -fun detonate_V2 : V2; -fun detonation_N : N; -fun detonative_A : A; -fun detonator_N : N; -fun detour_N : N; -fun detour_V2 : V2; -fun detox_N : N; -fun detoxification_N : N; -fun detract_V : V; -fun detraction_N : N; -fun detractive_A : A; -fun detractor_N : N; -fun detrain_V : V; -fun detrain_V2 : V2; -fun detribalization_N : N; -fun detribalize_V2 : V2; -fun detriment_N : N; -fun detrimental_A : A; -fun detrimentally_Adv : Adv; -fun detritus_N : N; -fun detumescence_N : N; -fun detusk_V2 : V2; -fun deuce_N : N; -fun deuced_A : A; -fun deuteranopia_N : N; -fun deuteranopic_A : A; -fun deuterium_N : N; -fun deuteron_N : N; -fun deutschmark_N : N; -fun deutzia_N : N; -fun devaluate_V2 : V2; -fun devaluation_N : N; -fun devalue_V2 : V2; -fun devastate_V2 : V2; -fun devastation_N : N; -fun devein_V2 : V2; -fun develop_V : V; -fun develop_V2 : V2; -fun developed_A : A; -fun developer_N : N; -fun developing_A : A; -fun development_N : N; -fun developmental_A : A; -fun developmentally_Adv : Adv; -fun deviant_A : A; -fun deviant_N : N; -fun deviate_V : V; -fun deviation_N : N; -fun deviationism_N : N; -fun deviationist_N : N; -fun device_N : N; -fun devices_N : N; -fun devil_N : N; -fun devil_V : V; -fun devil_V2 : V2; -fun devil_may_care_A : A; -fun devil_may_care_A : A; -fun devilish_A : A; -fun devilish_Adv : Adv; -fun devilishly_Adv : Adv; -fun devilment_N : N; -fun devilry_N : N; -fun deviltry_N : N; -fun devilwood_N : N; -fun devious_A : A; -fun deviously_Adv : Adv; -fun deviousness_N : N; -fun devisal_N : N; -fun devise_N : N; -fun devise_V2 : V2; -fun devisee_N : N; -fun devising_N : N; -fun devisor_N : N; -fun devitalization_N : N; -fun devitalize_V2 : V2; -fun devoid_A : A; -fun devoir_N : N; -fun devolution_N : N; -fun devolve_V : V; -fun devolve_V2 : V2; -fun devote_V2 : V2; -fun devoted_A : A; -fun devotedly_Adv : Adv; -fun devotee_N : N; -fun devotion_N : N; -fun devotional_A : A; -fun devotional_N : N; -fun devour_V2 : V2; -fun devourer_N : N; -fun devout_A : A; -fun devoutly_Adv : Adv; -fun devoutness_N : N; -fun dew_N : N; -fun dewater_V2 : V2; -fun dewax_V2 : V2; -fun dewberry_N : N; -fun dewdrop_N : N; -fun dewlap_N : N; -fun deworm_V2 : V2; -fun dewy_A : A; -fun dexamethasone_N : N; -fun dexter_A : A; -fun dexterity_N : N; -fun dexterous_A : A; -fun dexterously_Adv : Adv; -fun dextral_A : A; -fun dextrin_N : N; -fun dextrocardia_N : N; -fun dextrorotary_A : A; -fun dextrorotation_N : N; -fun dextrorse_A : A; -fun dextrose_N : N; -fun dextrous_A : A; -fun dhak_N : N; -fun dhawa_N : N; -fun dhole_N : N; -fun dhoti_N : N; -fun dhow_N : N; -fun di_iodotyrosine_N : N; -fun diabatic_A : A; -fun diabetes_N : N; -fun diabetic_A : A; -fun diabetic_N : N; -fun diabolatry_N : N; -fun diabolic_A : A; -fun diabolical_A : A; -fun diabolically_Adv : Adv; -fun diabolism_N : N; -fun diachronic_A : A; -fun diacritic_A : A; -fun diacritic_N : N; -fun diacritical_A : A; -fun diadem_N : N; -fun diadromous_A : A; -fun diaeresis_N : N; -fun diagnosable_A : A; -fun diagnose_V2 : V2; -fun diagnosis_N : N; -fun diagnostic_A : A; -fun diagnostician_N : N; -fun diagonal_A : A; -fun diagonal_N : N; -fun diagonalizable_A : A; -fun diagonalization_N : N; -fun diagonally_Adv : Adv; -fun diagram_N : N; -fun diagrammatic_A : A; -fun diagrammatical_A : A; -fun diagrammatically_Adv : Adv; -fun diakinesis_N : N; -fun dial_N : N; -fun dial_V2 : V2; -fun dialect_N : N; -fun dialectal_A : A; -fun dialectic_A : A; -fun dialectic_N : N; -fun dialectical_A : A; -fun dialectically_Adv : Adv; -fun dialectician_N : N; -fun dialectics_N : N; -fun dialectology_N : N; -fun dialogue_N : N; -fun dialysis_N : N; -fun dialyzer_N : N; -fun diamagnet_N : N; -fun diamagnetic_A : A; -fun diamagnetism_N : N; -fun diamante_N : N; -fun diamantine_A : A; -fun diameter_N : N; -fun diametral_A : A; -fun diametric_A : A; -fun diametrically_Adv : Adv; -fun diamine_N : N; -fun diamond_N : N; -fun diamondback_N : N; -fun dianoetic_A : A; -fun diapason_N : N; -fun diapedesis_N : N; -fun diapensia_N : N; -fun diaper_N : N; -fun diaphanous_A : A; -fun diapheromera_N : N; -fun diaphone_N : N; -fun diaphoretic_A : A; -fun diaphoretic_N : N; -fun diaphragm_N : N; -fun diaphyseal_A : A; -fun diaphysis_N : N; -fun diapir_N : N; -fun diapsid_N : N; -fun diarchy_N : N; -fun diarist_N : N; -fun diarrhea_N : N; -fun diarrheal_A : A; -fun diarrhoea_N : N; -fun diary_N : N; -fun diaspora_N : N; -fun diastasis_N : N; -fun diastema_N : N; -fun diastole_N : N; -fun diastolic_A : A; -fun diastrophism_N : N; -fun diathermy_N : N; -fun diathesis_N : N; -fun diatom_N : N; -fun diatomic_A : A; -fun diatonic_A : A; -fun diatribe_N : N; -fun diazepam_N : N; -fun diazo_A : A; -fun diazonium_N : N; -fun diazoxide_N : N; -fun dibber_N : N; -fun dibble_N : N; -fun dibble_V2 : V2; -fun dibranchiate_N : N; -fun dibs_N : N; -fun dibucaine_N : N; -fun dicamptodon_N : N; -fun dicarboxylic_A : A; -fun dice_N : N; -fun dice_V : V; -fun dice_V2 : V2; -fun dice_box_N : N; -fun dicer_N : N; -fun dicey_A : A; -fun dichloride_N : N; -fun dichlorodiphenyltrichloroethane_N : N; -fun dichondra_N : N; -fun dichotomization_N : N; -fun dichotomous_A : A; -fun dichotomously_Adv : Adv; -fun dichotomy_N : N; -fun dichroism_N : N; -fun dichromacy_N : N; -fun dichromat_N : N; -fun dichromatic_A : A; -fun dick_N : N; -fun dickens_N : N; -fun dicker_V : V; -fun dickey_N : N; -fun dickeybird_N : N; -fun dicky_A : A; -fun dicky_N : N; -fun dicky_seat_N : N; -fun dickybird_N : N; -fun diclinous_A : A; -fun dicloxacillin_N : N; -fun dicot_N : N; -fun dicotyledonous_A : A; -fun dictaphone_N : N; -fun dictate_N : N; -fun dictate_V : V; -fun dictate_V2 : V2; -fun dictate_VS : VS; -fun dictation_N : N; -fun dictator_N : N; -fun dictatorial_A : A; -fun dictatorially_Adv : Adv; -fun dictatorship_N : N; -fun diction_N : N; -fun dictionary_N : N; -fun dictostylium_N : N; -fun dictum_N : N; -fun dictyopteran_A : A; -fun dicumarol_N : N; -fun dicynodont_N : N; -fun didactic_A : A; -fun didactically_Adv : Adv; -fun didacticism_N : N; -fun diddle_V2 : V2; -fun dideoxycytosine_N : N; -fun dideoxyinosine_N : N; -fun die_N : N; -fun die_V : V; -fun die_V2 : V2; -fun die_cast_A : A; -fun die_cast_A : A; -fun die_hard_A : A; -fun die_hard_N : N; -fun dieback_N : N; -fun diemaker_N : N; -fun diencephalon_N : N; -fun dieresis_N : N; -fun diesel_N : N; -fun diestock_N : N; -fun diestrous_A : A; -fun diestrus_N : N; -fun diet_N : N; -fun diet_V : V; -fun diet_V2 : V2; -fun dietary_A : A; -fun dietary_N : N; -fun dieter_N : N; -fun dietetics_N : N; -fun diethylstilbesterol_N : N; -fun diethylstilbestrol_N : N; -fun dietician_N : N; -fun dietitian_N : N; -fun differ_V : V; -fun difference_N : N; -fun different_A : A; -fun differentia_N : N; -fun differentiable_A : A; -fun differential_A : A; -fun differential_N : N; -fun differentially_Adv : Adv; -fun differentiate_V : V; -fun differentiate_V2 : V2; -fun differentiated_A : A; -fun differentiation_N : N; -fun differentiator_N : N; -fun differently_Adv : Adv; -fun difficult_A : A; -fun difficulty_N : N; -fun diffidence_N : N; -fun diffident_A : A; -fun diffidently_Adv : Adv; -fun difflugia_N : N; -fun diffract_V2 : V2; -fun diffraction_N : N; -fun diffuse_A : A; -fun diffuse_V : V; -fun diffuse_V2 : V2; -fun diffused_A : A; -fun diffusely_Adv : Adv; -fun diffuseness_N : N; -fun diffuser_N : N; -fun diffusing_A : A; -fun diffusion_N : N; -fun diflunisal_N : N; -fun dig_N : N; -fun dig_V : V; -fun dig_V2 : V2; -fun digest_N : N; -fun digest_V : V; -fun digest_V2 : V2; -fun digester_N : N; -fun digestibility_N : N; -fun digestible_A : A; -fun digestion_N : N; -fun digestive_A : A; -fun digestive_N : N; -fun digger_N : N; -fun digging_N : N; -fun diggings_N : N; -fun dighted_A : A; -fun digit_N : N; -fun digital_A : A; -fun digitalis_N : N; -fun digitalization_N : N; -fun digitally_Adv : Adv; -fun digitate_A : A; -fun digitately_Adv : Adv; -fun digitigrade_A : A; -fun digitization_N : N; -fun digitizer_N : N; -fun digitoxin_N : N; -fun dignified_A : A; -fun dignify_V2 : V2; -fun dignifying_A : A; -fun dignitary_N : N; -fun dignity_N : N; -fun digoxin_N : N; -fun digraph_N : N; -fun digress_V : V; -fun digression_N : N; -fun digressive_A : A; -fun dihybrid_N : N; -fun dihydrostreptomycin_N : N; -fun dik_dik_N : N; -fun dike_N : N; -fun dike_V : V; -fun dike_V2 : V2; -fun dilapidated_A : A; -fun dilapidation_N : N; -fun dilatation_N : N; -fun dilate_V : V; -fun dilate_V2 : V2; -fun dilation_N : N; -fun dilator_N : N; -fun dilatoriness_N : N; -fun dilatory_A : A; -fun dildo_N : N; -fun dilemma_N : N; -fun dilettante_A : A; -fun dilettante_N : N; -fun diligence_N : N; -fun diligent_A : A; -fun diligently_Adv : Adv; -fun dill_N : N; -fun dillenia_N : N; -fun dilly_dally_V : V; -fun diltiazem_N : N; -fun dilutant_N : N; -fun dilute_A : A; -fun dilute_V : V; -fun dilute_V2 : V2; -fun diluted_A : A; -fun dilution_N : N; -fun diluvian_A : A; -fun dim_A : A; -fun dim_V : V; -fun dim_V2 : V2; -fun dim_sighted_A : A; -fun dim_witted_A : A; -fun dime_N : N; -fun dimenhydrinate_N : N; -fun dimension_N : N; -fun dimensional_A : A; -fun dimensionality_N : N; -fun dimensioning_A : A; -fun dimer_N : N; -fun dimethylglyoxime_N : N; -fun dimetrodon_N : N; -fun diminish_V : V; -fun diminish_V2 : V2; -fun diminished_A : A; -fun diminishing_A : A; -fun diminuendo_N : N; -fun diminution_N : N; -fun diminutive_A : A; -fun diminutive_N : N; -fun diminutiveness_N : N; -fun dimity_N : N; -fun dimly_Adv : Adv; -fun dimmed_A : A; -fun dimmer_N : N; -fun dimness_N : N; -fun dimorphic_A : A; -fun dimorphism_N : N; -fun dimple_N : N; -fun dimple_V : V; -fun dimple_V2 : V2; -fun dimwit_N : N; -fun din_N : N; -fun din_V : V; -fun din_V2 : V2; -fun dinar_N : N; -fun dine_V : V; -fun dine_V2 : V2; -fun diner_N : N; -fun dinette_N : N; -fun ding_N : N; -fun ding_V : V; -fun ding_V2 : V2; -fun ding_dong_Adv : Adv; -fun ding_dong_N : N; -fun ding_dong_N : N; -fun dingbat_N : N; -fun dingdong_Adv : Adv; -fun dinghy_N : N; -fun dingily_Adv : Adv; -fun dinginess_N : N; -fun dingle_N : N; -fun dingo_N : N; -fun dingy_A : A; -fun dining_N : N; -fun dining_car_N : N; -fun dining_hall_N : N; -fun dining_room_N : N; -fun dining_table_N : N; -fun dinky_A : A; -fun dinky_N : N; -fun dinner_N : N; -fun dinner_jacket_N : N; -fun dinner_party_N : N; -fun dinner_service_N : N; -fun dinner_set_N : N; -fun dinnertime_N : N; -fun dinnerware_N : N; -fun dinoceras_N : N; -fun dinocerate_N : N; -fun dinoflagellate_N : N; -fun dinosaur_N : N; -fun dint_N : N; -fun diocesan_A : A; -fun diocesan_N : N; -fun diocese_N : N; -fun diode_N : N; -fun dioecious_A : A; -fun diol_N : N; -fun dioon_N : N; -fun diopter_N : N; -fun diorite_N : N; -fun dioxide_N : N; -fun dioxin_N : N; -fun dip_N : N; -fun dip_V : V; -fun dip_V2 : V2; -fun dip_ed_N : N; -fun diphenhydramine_N : N; -fun diphenylhydantoin_N : N; -fun diphtheria_N : N; -fun diphthong_N : N; -fun diplegia_N : N; -fun diplococcus_N : N; -fun diplodocus_N : N; -fun diploid_A : A; -fun diploid_N : N; -fun diploidy_N : N; -fun diploma_N : N; -fun diplomacy_N : N; -fun diplomat_N : N; -fun diplomate_N : N; -fun diplomatic_A : A; -fun diplomatically_Adv : Adv; -fun diplomatist_N : N; -fun diplopia_N : N; -fun diplotene_N : N; -fun dipolar_A : A; -fun dipole_N : N; -fun dipped_A : A; -fun dipper_N : N; -fun dipsomania_N : N; -fun dipsomaniac_N : N; -fun dipstick_N : N; -fun dipterocarp_N : N; -fun dipterous_A : A; -fun diptych_N : N; -fun dir_N : N; -fun dire_A : A; -fun direct_A : A; -fun direct_Adv : Adv; -fun direct_V : V; -fun direct_V2 : V2; -fun direct_VS : VS; -fun directed_A : A; -fun directing_A : A; -fun direction_N : N; -fun direction_finder_N : N; -fun directional_A : A; -fun directionality_N : N; -fun directive_N : N; -fun directivity_N : N; -fun directly_Adv : Adv; -fun directness_N : N; -fun director_N : N; -fun directorate_N : N; -fun directorship_N : N; -fun directory_N : N; -fun direful_A : A; -fun direfully_Adv : Adv; -fun dirge_N : N; -fun dirigible_N : N; -fun dirk_N : N; -fun dirndl_N : N; -fun dirt_A : A; -fun dirt_N : N; -fun dirt_cheap_A : A; -fun dirt_track_N : N; -fun dirtily_Adv : Adv; -fun dirtiness_N : N; -fun dirty_A : A; -fun dirty_V : V; -fun dirty_V2 : V2; -fun dirty_faced_A : A; -fun dirty_minded_A : A; -fun disa_N : N; -fun disability_N : N; -fun disable_V2 : V2; -fun disabled_A : A; -fun disabled_N : N; -fun disablement_N : N; -fun disabling_A : A; -fun disabuse_V2 : V2; -fun disabused_A : A; -fun disaccharidase_N : N; -fun disaccharide_N : N; -fun disadvantage_N : N; -fun disadvantageous_A : A; -fun disaffected_A : A; -fun disaffection_N : N; -fun disafforest_V2 : V2; -fun disagree_V : V; -fun disagree_V2 : V2; -fun disagree_VS : VS; -fun disagreeable_A : A; -fun disagreeableness_N : N; -fun disagreeably_Adv : Adv; -fun disagreement_N : N; -fun disallow_V2 : V2; -fun disambiguation_N : N; -fun disambiguator_N : N; -fun disappear_V : V; -fun disappearance_N : N; -fun disappoint_V2 : V2; -fun disappointed_A : A; -fun disappointedly_Adv : Adv; -fun disappointing_A : A; -fun disappointingly_Adv : Adv; -fun disappointment_N : N; -fun disapprobation_N : N; -fun disapproval_N : N; -fun disapprove_V : V; -fun disapprove_V2 : V2; -fun disapproving_A : A; -fun disapprovingly_Adv : Adv; -fun disarm_V : V; -fun disarm_V2 : V2; -fun disarmament_N : N; -fun disarming_A : A; -fun disarming_N : N; -fun disarrange_V2 : V2; -fun disarranged_A : A; -fun disarrangement_N : N; -fun disarray_N : N; -fun disarray_V2 : V2; -fun disarrayed_A : A; -fun disassemble_V2 : V2; -fun disassociate_V : V; -fun disassociate_V2 : V2; -fun disassociation_N : N; -fun disaster_N : N; -fun disastrous_A : A; -fun disastrously_Adv : Adv; -fun disavow_V2 : V2; -fun disavowable_A : A; -fun disavowal_N : N; -fun disband_V : V; -fun disband_V2 : V2; -fun disbandment_N : N; -fun disbarment_N : N; -fun disbelief_N : N; -fun disbelieve_V : V; -fun disbelieve_V2 : V2; -fun disbeliever_N : N; -fun disbelieving_A : A; -fun disbelievingly_Adv : Adv; -fun disbud_V2 : V2; -fun disburden_V2 : V2; -fun disburse_V : V; -fun disburse_V2 : V2; -fun disbursement_N : N; -fun disc_N : N; -fun discalced_A : A; -fun discard_N : N; -fun discard_V2 : V2; -fun discern_V2 : V2; -fun discernability_N : N; -fun discernible_A : A; -fun discerning_A : A; -fun discernment_N : N; -fun discharge_N : N; -fun discharge_V : V; -fun discharge_V2 : V2; -fun discharged_A : A; -fun disciform_A : A; -fun discina_N : N; -fun disciple_N : N; -fun discipleship_N : N; -fun disciplinarian_N : N; -fun disciplinary_A : A; -fun discipline_N : N; -fun discipline_V2 : V2; -fun disciplined_A : A; -fun disclaim_V2 : V2; -fun disclaim_VS : VS; -fun disclaimer_N : N; -fun disclose_V : V; -fun disclose_V2 : V2; -fun disclose_VS : VS; -fun disclosed_A : A; -fun disclosure_N : N; -fun disco_N : N; -fun discography_N : N; -fun discoid_A : A; -fun discoloration_N : N; -fun discolour_V : V; -fun discolour_V2 : V2; -fun discolouration_N : N; -fun discombobulate_V2 : V2; -fun discombobulated_A : A; -fun discomfit_V2 : V2; -fun discomfiture_N : N; -fun discomfort_N : N; -fun discommode_V2 : V2; -fun discompose_V2 : V2; -fun discomposed_A : A; -fun discomposure_N : N; -fun discomycete_N : N; -fun discomycetous_A : A; -fun disconcert_V2 : V2; -fun disconcerting_A : A; -fun disconcertingly_Adv : Adv; -fun disconfirming_A : A; -fun disconnect_V2 : V2; -fun disconnected_A : A; -fun disconnection_N : N; -fun disconsolate_A : A; -fun discontent_N : N; -fun discontent_V2 : V2; -fun discontented_A : A; -fun discontentedly_Adv : Adv; -fun discontentment_N : N; -fun discontinuance_N : N; -fun discontinue_V : V; -fun discontinue_V2 : V2; -fun discontinued_A : A; -fun discontinuity_N : N; -fun discontinuous_A : A; -fun discord_N : N; -fun discordance_N : N; -fun discordant_A : A; -fun discordantly_Adv : Adv; -fun discorporate_A : A; -fun discotheque_N : N; -fun discount_N : N; -fun discount_V : V; -fun discount_V2 : V2; -fun discountenance_V2 : V2; -fun discourage_V2 : V2; -fun discouraged_A : A; -fun discouragement_N : N; -fun discouraging_A : A; -fun discouragingly_Adv : Adv; -fun discourse_N : N; -fun discourse_V : V; -fun discourteous_A : A; -fun discourtesy_N : N; -fun discover_V : V; -fun discover_V2 : V2; -fun discover_V2V : V2V; -fun discover_VS : VS; -fun discoverer_N : N; -fun discovery_N : N; -fun discredit_N : N; -fun discredit_V2 : V2; -fun discreditable_A : A; -fun discredited_A : A; -fun discreet_A : A; -fun discreetly_Adv : Adv; -fun discrepancy_N : N; -fun discrepant_A : A; -fun discrete_A : A; -fun discreteness_N : N; -fun discretion_N : N; -fun discretionary_A : A; -fun discriminable_A : A; -fun discriminate_A : A; -fun discriminate_V : V; -fun discriminate_V2 : V2; -fun discriminating_A : A; -fun discrimination_N : N; -fun discriminative_A : A; -fun discriminatory_A : A; -fun discursive_A : A; -fun discursively_Adv : Adv; -fun discursiveness_N : N; -fun discus_N : N; -fun discuss_V2 : V2; -fun discuss_VS : VS; -fun discussant_N : N; -fun discussion_N : N; -fun disdain_N : N; -fun disdain_V2 : V2; -fun disdainful_A : A; -fun disdainfully_Adv : Adv; -fun disease_N : N; -fun diseased_A : A; -fun disembark_V : V; -fun disembark_V2 : V2; -fun disembarkation_N : N; -fun disembarrass_V2 : V2; -fun disembarrassment_N : N; -fun disembody_V2 : V2; -fun disembowel_V2 : V2; -fun disembowelment_N : N; -fun disenchant_V2 : V2; -fun disenchanted_A : A; -fun disenchanting_A : A; -fun disenchantment_N : N; -fun disencumber_V2 : V2; -fun disenfranchise_V2 : V2; -fun disenfranchised_A : A; -fun disenfranchisement_N : N; -fun disengage_V : V; -fun disengage_V2 : V2; -fun disengagement_N : N; -fun disentangle_V : V; -fun disentangle_V2 : V2; -fun disentangled_A : A; -fun disentanglement_N : N; -fun disentangler_N : N; -fun disequilibrium_N : N; -fun disestablish_V2 : V2; -fun disestablishment_N : N; -fun disesteem_N : N; -fun disfavor_N : N; -fun disfavour_N : N; -fun disfavour_V2 : V2; -fun disfigure_V2 : V2; -fun disfigured_A : A; -fun disfigurement_N : N; -fun disfluency_N : N; -fun disforest_V2 : V2; -fun disfranchise_V2 : V2; -fun disfranchisement_N : N; -fun disgorge_V2 : V2; -fun disgrace_N : N; -fun disgrace_V2 : V2; -fun disgraceful_A : A; -fun disgracefully_Adv : Adv; -fun disgruntle_V2 : V2; -fun disgruntled_A : A; -fun disgruntlement_N : N; -fun disguise_N : N; -fun disguise_V2 : V2; -fun disgust_N : N; -fun disgust_V2 : V2; -fun disgusted_A : A; -fun disgustedly_Adv : Adv; -fun disgusting_A : A; -fun disgustingly_Adv : Adv; -fun disgustingness_N : N; -fun dish_N : N; -fun dish_V2 : V2; -fun dishabille_N : N; -fun disharmonious_A : A; -fun disharmony_N : N; -fun dishcloth_N : N; -fun dishearten_V2 : V2; -fun disheartenment_N : N; -fun dished_A : A; -fun disheveled_A : A; -fun dishevelled_A : A; -fun dishful_N : N; -fun dishonest_A : A; -fun dishonestly_Adv : Adv; -fun dishonesty_N : N; -fun dishonor_N : N; -fun dishonorable_A : A; -fun dishonorableness_N : N; -fun dishonorably_Adv : Adv; -fun dishonour_N : N; -fun dishonour_V2 : V2; -fun dishonourable_A : A; -fun dishpan_N : N; -fun dishrag_N : N; -fun dishtowel_N : N; -fun dishwasher_N : N; -fun dishwashing_N : N; -fun dishwater_N : N; -fun dishy_A : A; -fun disillusion_N : N; -fun disillusion_V2 : V2; -fun disillusioned_A : A; -fun disillusionment_N : N; -fun disincentive_N : N; -fun disinclination_N : N; -fun disincline_V2 : V2; -fun disincline_V2V : V2V; -fun disinclined_A : A; -fun disinfect_V2 : V2; -fun disinfectant_A : A; -fun disinfectant_N : N; -fun disinfection_N : N; -fun disinfest_V2 : V2; -fun disinfestation_N : N; -fun disinflation_N : N; -fun disinformation_N : N; -fun disingenuous_A : A; -fun disingenuously_Adv : Adv; -fun disingenuousness_N : N; -fun disinherit_V2 : V2; -fun disinheritance_N : N; -fun disinherited_A : A; -fun disintegrate_V : V; -fun disintegrate_V2 : V2; -fun disintegration_N : N; -fun disintegrative_A : A; -fun disinter_V2 : V2; -fun disinterest_N : N; -fun disinterested_A : A; -fun disinterestedly_Adv : Adv; -fun disinterestedness_N : N; -fun disinterment_N : N; -fun disinvestment_N : N; -fun disjoined_A : A; -fun disjoint_A : A; -fun disjoint_V2 : V2; -fun disjointed_A : A; -fun disjointedly_Adv : Adv; -fun disjointedness_N : N; -fun disjunct_A : A; -fun disjunction_N : N; -fun disjunctive_A : A; -fun disk_N : N; -fun diskette_N : N; -fun dislikable_A : A; -fun dislike_N : N; -fun dislike_V2 : V2; -fun disliked_A : A; -fun dislocate_V2 : V2; -fun dislocation_N : N; -fun dislodge_V2 : V2; -fun dislodgement_N : N; -fun dislodgment_N : N; -fun disloyal_A : A; -fun disloyally_Adv : Adv; -fun disloyalty_N : N; -fun dismal_A : A; -fun dismally_Adv : Adv; -fun dismantle_V2 : V2; -fun dismantlement_N : N; -fun dismantling_N : N; -fun dismay_N : N; -fun dismay_V : V; -fun dismay_V2 : V2; -fun dismember_V2 : V2; -fun dismemberment_N : N; -fun dismiss_V2 : V2; -fun dismissal_N : N; -fun dismissible_A : A; -fun dismissive_A : A; -fun dismount_N : N; -fun dismount_V : V; -fun dismount_V2 : V2; -fun dismounted_A : A; -fun disobedience_N : N; -fun disobedient_A : A; -fun disobediently_Adv : Adv; -fun disobey_V2 : V2; -fun disoblige_V2 : V2; -fun disobliging_A : A; -fun disorder_N : N; -fun disorder_V2 : V2; -fun disordered_A : A; -fun disorderliness_N : N; -fun disorderly_A : A; -fun disorganization_N : N; -fun disorganize_V2 : V2; -fun disorganized_A : A; -fun disorient_V2 : V2; -fun disorientate_V2 : V2; -fun disorientation_N : N; -fun disorienting_A : A; -fun disown_V2 : V2; -fun disownment_N : N; -fun disparage_V2 : V2; -fun disparagement_N : N; -fun disparagingly_Adv : Adv; -fun disparate_A : A; -fun disparateness_N : N; -fun disparity_N : N; -fun dispassion_N : N; -fun dispassionate_A : A; -fun dispassionately_Adv : Adv; -fun dispassionateness_N : N; -fun dispatch_N : N; -fun dispatch_V2 : V2; -fun dispatch_V2V : V2V; -fun dispatch_box_N : N; -fun dispatch_rider_N : N; -fun dispatcher_N : N; -fun dispel_V2 : V2; -fun dispensability_N : N; -fun dispensable_A : A; -fun dispensary_N : N; -fun dispensation_N : N; -fun dispense_V : V; -fun dispense_V2 : V2; -fun dispensed_A : A; -fun dispenser_N : N; -fun dispersal_N : N; -fun disperse_V : V; -fun disperse_V2 : V2; -fun dispersed_A : A; -fun dispersion_N : N; -fun dispirit_V2 : V2; -fun dispirited_A : A; -fun dispiritedly_Adv : Adv; -fun displace_V2 : V2; -fun displacement_N : N; -fun display_N : N; -fun display_V2 : V2; -fun display_VS : VS; -fun displease_V2 : V2; -fun displeased_A : A; -fun displeasing_A : A; -fun displeasingly_Adv : Adv; -fun displeasure_N : N; -fun disport_V2 : V2; -fun disposable_A : A; -fun disposable_N : N; -fun disposal_N : N; -fun dispose_V : V; -fun dispose_V2 : V2; -fun disposed_A : A; -fun disposition_N : N; -fun dispossess_V2 : V2; -fun dispossessed_A : A; -fun dispossession_N : N; -fun disprefer_V2 : V2; -fun disproof_N : N; -fun disproportion_N : N; -fun disproportionate_A : A; -fun disproportionately_Adv : Adv; -fun disprove_V2 : V2; -fun disprove_VS : VS; -fun disputable_A : A; -fun disputant_N : N; -fun disputation_N : N; -fun disputatious_A : A; -fun disputatiously_Adv : Adv; -fun dispute_N : N; -fun dispute_V : V; -fun dispute_V2 : V2; -fun disputed_A : A; -fun disqualification_N : N; -fun disqualified_A : A; -fun disqualify_V2 : V2; -fun disquiet_N : N; -fun disquiet_V2 : V2; -fun disquieted_A : A; -fun disquieting_A : A; -fun disquietingly_Adv : Adv; -fun disquietude_N : N; -fun disquisition_N : N; -fun disregard_N : N; -fun disregard_V2 : V2; -fun disregarded_A : A; -fun disrepair_N : N; -fun disreputable_A : A; -fun disreputably_Adv : Adv; -fun disrepute_N : N; -fun disrespect_N : N; -fun disrespectful_A : A; -fun disrespectfully_Adv : Adv; -fun disrobe_V : V; -fun disrobe_V2 : V2; -fun disrupt_V : V; -fun disrupt_V2 : V2; -fun disrupted_A : A; -fun disruption_N : N; -fun disruptive_A : A; -fun disruptively_Adv : Adv; -fun dissatisfaction_N : N; -fun dissatisfy_V2 : V2; -fun dissect_V2 : V2; -fun dissection_N : N; -fun dissemble_V : V; -fun dissemble_V2 : V2; -fun dissembler_N : N; -fun disseminate_V : V; -fun disseminate_V2 : V2; -fun dissemination_N : N; -fun dissension_N : N; -fun dissent_N : N; -fun dissent_V : V; -fun dissenter_N : N; -fun dissentient_A : A; -fun dissentious_A : A; -fun dissertation_N : N; -fun disservice_N : N; -fun dissever_V2 : V2; -fun dissidence_N : N; -fun dissident_A : A; -fun dissident_N : N; -fun dissilience_N : N; -fun dissilient_A : A; -fun dissimilar_A : A; -fun dissimilarity_N : N; -fun dissimilation_N : N; -fun dissimilitude_N : N; -fun dissimulate_V : V; -fun dissimulate_V2 : V2; -fun dissimulation_N : N; -fun dissimulative_A : A; -fun dissipate_V : V; -fun dissipate_V2 : V2; -fun dissipated_A : A; -fun dissipation_N : N; -fun dissociable_A : A; -fun dissociate_V2 : V2; -fun dissociation_N : N; -fun dissociative_A : A; -fun dissolubility_N : N; -fun dissoluble_A : A; -fun dissolute_A : A; -fun dissoluteness_N : N; -fun dissolution_N : N; -fun dissolvable_A : A; -fun dissolve_N : N; -fun dissolve_V : V; -fun dissolve_V2 : V2; -fun dissolved_A : A; -fun dissolving_N : N; -fun dissonance_N : N; -fun dissonant_A : A; -fun dissuade_V2 : V2; -fun dissuasion_N : N; -fun dissuasive_A : A; -fun dissyllable_N : N; -fun distaff_N : N; -fun distal_A : A; -fun distally_Adv : Adv; -fun distance_N : N; -fun distance_V2 : V2; -fun distant_A : A; -fun distantly_Adv : Adv; -fun distaste_N : N; -fun distasteful_A : A; -fun distastefully_Adv : Adv; -fun distastefulness_N : N; -fun distemper_N : N; -fun distemper_V2 : V2; -fun distend_V : V; -fun distend_V2 : V2; -fun distensible_A : A; -fun distension_N : N; -fun distention_N : N; -fun distil_V : V; -fun distil_V2 : V2; -fun distillate_N : N; -fun distillation_N : N; -fun distiller_N : N; -fun distillery_N : N; -fun distinct_A : A; -fun distinction_N : N; -fun distinctive_A : A; -fun distinctively_Adv : Adv; -fun distinctiveness_N : N; -fun distinctly_Adv : Adv; -fun distinctness_N : N; -fun distinguish_V : V; -fun distinguish_V2 : V2; -fun distinguishable_A : A; -fun distinguished_A : A; -fun distort_V2 : V2; -fun distortable_A : A; -fun distorted_A : A; -fun distortion_N : N; -fun distortionist_N : N; -fun distract_V : V; -fun distract_V2 : V2; -fun distracted_A : A; -fun distractedly_Adv : Adv; -fun distraction_N : N; -fun distrain_V : V; -fun distraint_N : N; -fun distrait_A : A; -fun distraught_A : A; -fun distress_N : N; -fun distress_V2 : V2; -fun distressed_A : A; -fun distressful_A : A; -fun distressfully_Adv : Adv; -fun distressing_A : A; -fun distributary_N : N; -fun distribute_V2 : V2; -fun distributed_A : A; -fun distribution_N : N; -fun distributional_A : A; -fun distributive_A : A; -fun distributively_Adv : Adv; -fun distributor_N : N; -fun district_N : N; -fun distrust_N : N; -fun distrust_V2 : V2; -fun distrustful_A : A; -fun distrustfully_Adv : Adv; -fun distrustfulness_N : N; -fun disturb_V2 : V2; -fun disturbance_N : N; -fun disturbed_A : A; -fun disturber_N : N; -fun disturbingly_Adv : Adv; -fun disulfiram_N : N; -fun disunion_N : N; -fun disunite_V : V; -fun disunite_V2 : V2; -fun disunity_N : N; -fun disuse_N : N; -fun disused_A : A; -fun disyllabic_A : A; -fun disyllable_N : N; -fun dita_N : N; -fun ditch_N : N; -fun ditch_V : V; -fun ditch_V2 : V2; -fun dither_N : N; -fun dither_V : V; -fun dithering_N : N; -fun dithyramb_N : N; -fun dithyrambic_A : A; -fun ditto_N : N; -fun ditty_N : N; -fun diuresis_N : N; -fun diurnal_A : A; -fun divagate_V : V; -fun divagation_N : N; -fun divan_N : N; -fun divan_bed_N : N; -fun divarication_N : N; -fun dive_N : N; -fun dive_V : V; -fun dive_bomb_V : V; -fun dive_bomb_V2 : V2; -fun dive_bomber_N : N; -fun dive_bombing_N : N; -fun diver_N : N; -fun diverge_V : V; -fun divergence_N : N; -fun divergency_N : N; -fun divergent_A : A; -fun divers_A : A; -fun diverse_A : A; -fun diverseness_N : N; -fun diversification_N : N; -fun diversified_A : A; -fun diversify_V : V; -fun diversify_V2 : V2; -fun diversion_N : N; -fun diversionary_A : A; -fun diversionist_N : N; -fun diversity_N : N; -fun divert_V : V; -fun divert_V2 : V2; -fun diverticulitis_N : N; -fun diverticulosis_N : N; -fun diverticulum_N : N; -fun divertimento_N : N; -fun diverting_A : A; -fun divest_V2 : V2; -fun divestiture_N : N; -fun divi_divi_N : N; -fun dividable_A : A; -fun divide_N : N; -fun divide_V : V; -fun divide_V2 : V2; -fun divided_A : A; -fun dividend_N : N; -fun dividend_warrant_N : N; -fun divider_N : N; -fun divination_N : N; -fun divinatory_A : A; -fun divine_A : A; -fun divine_N : N; -fun divine_V : V; -fun divine_V2 : V2; -fun divinely_Adv : Adv; -fun diviner_N : N; -fun diving_N : N; -fun diving_bell_N : N; -fun diving_board_N : N; -fun diving_dress_N : N; -fun diving_suit_N : N; -fun divinity_N : N; -fun divisibility_N : N; -fun divisible_A : A; -fun division_N : N; -fun division_archaebacteria_PN : PN; -fun division_eubacteria_PN : PN; -fun divisional_A : A; -fun divisor_N : N; -fun divorce_N : N; -fun divorce_V : V; -fun divorce_V2 : V2; -fun divorced_A : A; -fun divorcee_N : N; -fun divot_N : N; -fun divulge_V2 : V2; -fun divulgence_N : N; -fun divvy_N : N; -fun dixie_N : N; -fun diy_N : N; -fun dizygotic_A : A; -fun dizzily_Adv : Adv; -fun dizziness_N : N; -fun dizzy_A : A; -fun dizzy_V2 : V2; -fun dj_N : N; -fun djiboutian_A : A; -fun djiboutian_N : N; -fun djinn_N : N; -fun djs_N : N; -fun dlitt_N : N; -fun dm_N : N; -fun dna_N : N; -fun do_N : N; -fun do_V : V; -fun do_V2 : V2; -fun do_gooder_N : N; -fun do_it_yourself_A : A; -fun do_nothing_A : A; -fun do_si_do_N : N; -fun dobbin_N : N; -fun dobra_N : N; -fun dobson_N : N; -fun docent_N : N; -fun docile_A : A; -fun docility_N : N; -fun dock_N : N; -fun dock_V : V; -fun dock_V2 : V2; -fun dockage_N : N; -fun docker_N : N; -fun docket_N : N; -fun docket_V2 : V2; -fun docking_N : N; -fun dockside_N : N; -fun dockyard_N : N; -fun doctor_N : N; -fun doctor_V2 : V2; -fun doctoral_A : A; -fun doctorate_N : N; -fun doctorfish_N : N; -fun doctorspeak_N : N; -fun doctrinaire_A : A; -fun doctrinaire_N : N; -fun doctrinal_A : A; -fun doctrinally_Adv : Adv; -fun doctrine_N : N; -fun document_N : N; -fun document_V2 : V2; -fun documentary_A : A; -fun documentary_N : N; -fun documentation_N : N; -fun documented_A : A; -fun dodder_N : N; -fun dodder_V : V; -fun dodder_V2 : V2; -fun dodderer_N : N; -fun doddering_A : A; -fun doddery_A : A; -fun doddle_N : N; -fun dodecagon_N : N; -fun dodecahedron_N : N; -fun dodge_N : N; -fun dodge_V : V; -fun dodge_V2 : V2; -fun dodgem_N : N; -fun dodger_N : N; -fun dodgy_A : A; -fun dodo_N : N; -fun doe_N : N; -fun doer_N : N; -fun doeskin_N : N; -fun doff_V2 : V2; -fun dog_N : N; -fun dog_V2 : V2; -fun dog's_tooth_N : N; -fun dog_biscuit_N : N; -fun dog_cart_N : N; -fun dog_collar_N : N; -fun dog_ear_N : N; -fun dog_eared_A : A; -fun dog_eared_A : A; -fun dog_like_A : A; -fun dog_sized_A : A; -fun dogbane_N : N; -fun dogcart_N : N; -fun doge_N : N; -fun dogfight_N : N; -fun dogfighter_N : N; -fun dogfish_N : N; -fun dogged_A : A; -fun doggedly_Adv : Adv; -fun doggedness_N : N; -fun doggerel_N : N; -fun doggie_N : N; -fun dogging_A : A; -fun doggo_Adv : Adv; -fun doggy_N : N; -fun doghouse_N : N; -fun dogie_N : N; -fun dogleg_N : N; -fun doglike_A : A; -fun dogma_N : N; -fun dogmatic_A : A; -fun dogmatically_Adv : Adv; -fun dogmatism_N : N; -fun dogmatist_N : N; -fun dogmatize_V : V; -fun dogmatize_V2 : V2; -fun dogsbody_N : N; -fun dogsled_N : N; -fun dogsled_V2 : V2; -fun dogtooth_N : N; -fun dogtrot_N : N; -fun dogwatch_N : N; -fun dogwood_N : N; -fun doh_N : N; -fun doily_N : N; -fun dol_N : N; -fun dolabriform_A : A; -fun dolce_Adv : Adv; -fun doldrums_N : N; -fun dole_N : N; -fun dole_V2 : V2; -fun doleful_A : A; -fun dolefully_Adv : Adv; -fun dolefulness_N : N; -fun dolichocephalic_A : A; -fun dolichocephalic_N : N; -fun dolichocephaly_N : N; -fun doliolum_N : N; -fun doll_N : N; -fun doll_V : V; -fun doll_V2 : V2; -fun dollar_N : N; -fun dollarfish_N : N; -fun dollhouse_N : N; -fun dollop_N : N; -fun dolly_N : N; -fun dolman_N : N; -fun dolmas_N : N; -fun dolmen_N : N; -fun dolomite_N : N; -fun dolomitic_A : A; -fun dolor_N : N; -fun dolorous_A : A; -fun dolour_N : N; -fun dolourous_A : A; -fun dolphin_N : N; -fun dolphinfish_N : N; -fun dolt_N : N; -fun doltish_A : A; -fun domain_N : N; -fun domatium_N : N; -fun dombeya_N : N; -fun dome_N : N; -fun dome_shaped_A : A; -fun domed_A : A; -fun domestic_A : A; -fun domestic_N : N; -fun domestically_Adv : Adv; -fun domesticate_V2 : V2; -fun domesticated_A : A; -fun domestication_N : N; -fun domesticity_N : N; -fun domicile_N : N; -fun domiciliary_A : A; -fun dominance_N : N; -fun dominant_A : A; -fun dominant_N : N; -fun dominate_V : V; -fun dominate_V2 : V2; -fun dominated_A : A; -fun domination_N : N; -fun dominatrix_N : N; -fun domineer_V : V; -fun domineering_A : A; -fun domineeringly_Adv : Adv; -fun dominical_A : A; -fun dominican_A : A; -fun dominican_N : N; -fun dominie_N : N; -fun dominion_N : N; -fun domino_N : N; -fun dominoes_N : N; -fun dominus_N : N; -fun don_N : N; -fun don_V2 : V2; -fun don't_know_N : N; -fun don't_know_N : N; -fun donate_V : V; -fun donate_V2 : V2; -fun donation_N : N; -fun done_A : A; -fun done_VA : VA; -fun done_for_A : A; -fun done_with_A : A; -fun dong_N : N; -fun dong_V : V; -fun dong_V2 : V2; -fun dongle_N : N; -fun donjon_N : N; -fun donkey_N : N; -fun donkey_jacket_N : N; -fun donkey_work_N : N; -fun donna_N : N; -fun donnish_A : A; -fun donor_N : N; -fun doo_wop_N : N; -fun doodad_N : N; -fun doodia_N : N; -fun doodle_V : V; -fun doodle_V2 : V2; -fun doodlebug_N : N; -fun doom_N : N; -fun doom_V2 : V2; -fun doomed_A : A; -fun doomed_N : N; -fun door_N : N; -fun door_to_door_A : A; -fun door_to_door_A : A; -fun doorbell_N : N; -fun doorcase_N : N; -fun doorframe_N : N; -fun doorhandle_N : N; -fun doorjamb_N : N; -fun doorkeeper_N : N; -fun doorknob_N : N; -fun doorknocker_N : N; -fun doorlock_N : N; -fun doorman_N : N; -fun doormat_N : N; -fun doornail_N : N; -fun doorplate_N : N; -fun doorpost_N : N; -fun doorsill_N : N; -fun doorstep_N : N; -fun doorstop_N : N; -fun doorstopper_N : N; -fun doorway_N : N; -fun dooryard_N : N; -fun dopa_N : N; -fun dopamine_N : N; -fun dope_N : N; -fun dope_V2 : V2; -fun doped_A : A; -fun dopey_A : A; -fun doppelganger_N : N; -fun dorbeetle_N : N; -fun doric_A : A; -fun dormancy_N : N; -fun dormant_A : A; -fun dormer_N : N; -fun dormer_window_N : N; -fun dormie_A : A; -fun dormitory_N : N; -fun dormouse_N : N; -fun dorsal_A : A; -fun dorsally_Adv : Adv; -fun dorsiflexion_N : N; -fun dorsoventral_A : A; -fun dorsoventrally_Adv : Adv; -fun dorsum_N : N; -fun dory_N : N; -fun dosage_N : N; -fun dose_N : N; -fun dose_V2 : V2; -fun dosed_A : A; -fun dosemeter_N : N; -fun dosimetry_N : N; -fun doss_V : V; -fun doss_house_N : N; -fun dossal_N : N; -fun dosser_N : N; -fun dossier_N : N; -fun dot_N : N; -fun dot_V2 : V2; -fun dot_com_A : A; -fun dot_com_N : N; -fun dotage_N : N; -fun dotard_N : N; -fun dote_V : V; -fun dotted_A : A; -fun dotterel_N : N; -fun dottle_N : N; -fun dotty_A : A; -fun double_A : A; -fun double_Adv : Adv; -fun double_N : N; -fun double_V : V; -fun double_V2 : V2; -fun double_dutch_PN : PN; -fun double_gloucester_PN : PN; -fun double_barreled_A : A; -fun double_barrelled_A : A; -fun double_bass_N : N; -fun double_bedded_A : A; -fun double_bedded_A : A; -fun double_bogey_N : N; -fun double_breasted_A : A; -fun double_breasted_A : A; -fun double_check_V2 : V2; -fun double_chinned_A : A; -fun double_cross_N : N; -fun double_cross_V2 : V2; -fun double_crosser_N : N; -fun double_dealer_N : N; -fun double_dealing_A : A; -fun double_dealing_N : N; -fun double_decker_N : N; -fun double_dutch_N : N; -fun double_dyed_A : A; -fun double_edged_A : A; -fun double_edged_A : A; -fun double_entry_N : N; -fun double_faced_A : A; -fun double_faced_A : A; -fun double_first_N : N; -fun double_geared_A : A; -fun double_jointed_A : A; -fun double_jointed_A : A; -fun double_park_V : V; -fun double_park_V2 : V2; -fun double_prop_N : N; -fun double_quick_A : A; -fun double_quick_A : A; -fun double_quick_Adv : Adv; -fun double_spaced_A : A; -fun double_spacing_N : N; -fun double_spacing_N : N; -fun double_talk_N : N; -fun double_think_N : N; -fun double_time_Adv : Adv; -fun doubler_N : N; -fun doubles_N : N; -fun doublespeak_N : N; -fun doublet_N : N; -fun doublethink_N : N; -fun doubleton_N : N; -fun doubletree_N : N; -fun doubling_N : N; -fun doubloon_N : N; -fun doubly_Adv : Adv; -fun doubt_N : N; -fun doubt_V2 : V2; -fun doubt_VS : VS; -fun doubtful_A : A; -fun doubtfully_Adv : Adv; -fun doubting_A : A; -fun doubting_thomas_PN : PN; -fun doubtless_Adv : Adv; -fun douche_N : N; -fun dough_N : N; -fun doughboy_N : N; -fun doughnut_N : N; -fun doughty_A : A; -fun doughy_A : A; -fun dour_A : A; -fun dourly_Adv : Adv; -fun douroucouli_N : N; -fun douse_V2 : V2; -fun dove_N : N; -fun dovecote_N : N; -fun dovetail_N : N; -fun dovetail_V : V; -fun dovetail_V2 : V2; -fun dovishness_N : N; -fun dowager_N : N; -fun dowdily_Adv : Adv; -fun dowdiness_N : N; -fun dowdy_A : A; -fun dowdy_N : N; -fun dowel_N : N; -fun doweling_N : N; -fun dower_N : N; -fun dower_V2 : V2; -fun dowered_A : A; -fun dowerless_A : A; -fun dowitcher_N : N; -fun down_A : A; -fun down_Adv : Adv; -fun down_N : N; -fun down_Prep : Prep; -fun down_V2 : V2; -fun down_and_out_A : A; -fun down_and_out_N : N; -fun down_and_out_N : N; -fun down_bow_N : N; -fun down_market_A : A; -fun down_to_earth_A : A; -fun down_to_earth_A : A; -fun downbeat_N : N; -fun downbound_A : A; -fun downcast_A : A; -fun downcast_N : N; -fun downdraft_N : N; -fun downfall_N : N; -fun downfield_A : A; -fun downfield_Adv : Adv; -fun downgrade_N : N; -fun downgrade_V2 : V2; -fun downhearted_A : A; -fun downheartedness_N : N; -fun downhill_Adv : Adv; -fun downhill_N : N; -fun downiness_N : N; -fun downmarket_A : A; -fun downplay_V2 : V2; -fun downpour_N : N; -fun downright_A : A; -fun downright_Adv : Adv; -fun downrightness_N : N; -fun downriver_Adv : Adv; -fun downscale_A : A; -fun downshift_N : N; -fun downside_N : N; -fun downsize_V2 : V2; -fun downspin_N : N; -fun downstage_A : A; -fun downstage_Adv : Adv; -fun downstage_N : N; -fun downstair_A : A; -fun downstairs_A : A; -fun downstairs_Adv : Adv; -fun downstream_A : A; -fun downstream_Adv : Adv; -fun downstroke_N : N; -fun downswing_N : N; -fun downtick_N : N; -fun downtime_N : N; -fun downtown_A : A; -fun downtown_Adv : Adv; -fun downtrodden_A : A; -fun downturn_N : N; -fun downward_A : A; -fun downward_Adv : Adv; -fun downward_arching_A : A; -fun downwards_Adv : Adv; -fun downwind_A : A; -fun downwind_Adv : Adv; -fun downy_A : A; -fun dowry_N : N; -fun dowse_N : N; -fun dowse_V2 : V2; -fun dowser_N : N; -fun dowsing_N : N; -fun doxazosin_N : N; -fun doxepin_N : N; -fun doxology_N : N; -fun doxorubicin_N : N; -fun doxycycline_N : N; -fun doyen_N : N; -fun doyenne_N : N; -fun doyley_N : N; -fun doyly_N : N; -fun doz_N : N; -fun doze_N : N; -fun doze_V : V; -fun doze_V2 : V2; -fun dozen_N : N; -fun dphil_N : N; -fun drab_A : A; -fun draba_N : N; -fun drably_Adv : Adv; -fun drabness_N : N; -fun dracaena_N : N; -fun drachm_N : N; -fun drachma_N : N; -fun draconian_A : A; -fun dracontium_N : N; -fun draft_N : N; -fun draft_V2 : V2; -fun draftee_N : N; -fun drafter_N : N; -fun drafting_N : N; -fun draftsman_N : N; -fun drafty_A : A; -fun drag_N : N; -fun drag_V : V; -fun drag_V2 : V2; -fun dragee_N : N; -fun dragging_A : A; -fun draggingly_Adv : Adv; -fun draggled_A : A; -fun dragnet_N : N; -fun dragoman_N : N; -fun dragon_N : N; -fun dragonet_N : N; -fun dragonfly_N : N; -fun dragonhead_N : N; -fun dragoon_N : N; -fun dragoon_V2 : V2; -fun drain_N : N; -fun drain_V : V; -fun drain_V2 : V2; -fun drainage_N : N; -fun drainage_basin_N : N; -fun drainboard_N : N; -fun drained_A : A; -fun draining_A : A; -fun draining_board_N : N; -fun drainpipe_N : N; -fun drainplug_N : N; -fun drake_N : N; -fun dram_N : N; -fun drama_N : N; -fun dramatic_A : A; -fun dramatically_Adv : Adv; -fun dramatics_N : N; -fun dramatist_N : N; -fun dramatization_N : N; -fun dramatize_V2 : V2; -fun dramaturgic_A : A; -fun dramaturgy_N : N; -fun drape_N : N; -fun drape_V2 : V2; -fun draped_A : A; -fun draper_N : N; -fun drapery_N : N; -fun drastic_A : A; -fun drastically_Adv : Adv; -fun drat_V2 : V2; -fun draught_N : N; -fun draught_V2 : V2; -fun draught_horse_N : N; -fun draughts_N : N; -fun draughtsman_N : N; -fun draughty_A : A; -fun draw_N : N; -fun draw_V : V; -fun draw_V2 : V2; -fun draw_V2V : V2V; -fun drawback_N : N; -fun drawbar_N : N; -fun drawbridge_N : N; -fun drawee_N : N; -fun drawer_N : N; -fun drawers_N : N; -fun drawing_N : N; -fun drawing_board_N : N; -fun drawing_pin_N : N; -fun drawing_room_N : N; -fun drawknife_N : N; -fun drawl_N : N; -fun drawl_V : V; -fun drawl_V2 : V2; -fun drawler_N : N; -fun drawn_A : A; -fun drawn_out_A : A; -fun drawnwork_N : N; -fun drawstring_N : N; -fun dray_N : N; -fun dread_N : N; -fun dread_V : V; -fun dread_V2 : V2; -fun dreaded_A : A; -fun dreadful_A : A; -fun dreadfully_Adv : Adv; -fun dreadfulness_N : N; -fun dreadlock_N : N; -fun dreadnought_N : N; -fun dream_N : N; -fun dream_V : V; -fun dream_V2 : V2; -fun dreamed_A : A; -fun dreamer_N : N; -fun dreamily_Adv : Adv; -fun dreamland_N : N; -fun dreamless_A : A; -fun dreamlike_A : A; -fun dreamworld_N : N; -fun dreamy_A : A; -fun drear_A : A; -fun drearily_Adv : Adv; -fun dreariness_N : N; -fun dreary_A : A; -fun dredge_N : N; -fun dredge_V : V; -fun dredge_V2 : V2; -fun dredger_N : N; -fun dreg_N : N; -fun dregs_N : N; -fun drench_V2 : V2; -fun drenched_A : A; -fun drenching_N : N; -fun dress_A : A; -fun dress_N : N; -fun dress_V : V; -fun dress_V2 : V2; -fun dress_hanger_N : N; -fun dressage_N : N; -fun dressed_A : A; -fun dresser_N : N; -fun dressing_N : N; -fun dressing_case_N : N; -fun dressing_down_N : N; -fun dressing_gown_N : N; -fun dressing_table_N : N; -fun dressmaker_N : N; -fun dressmaking_N : N; -fun dressy_A : A; -fun drey_N : N; -fun dribble_N : N; -fun dribble_V : V; -fun dribble_V2 : V2; -fun dribbler_N : N; -fun driblet_N : N; -fun dried_A : A; -fun dried_up_A : A; -fun drier_N : N; -fun drift_N : N; -fun drift_V : V; -fun drift_V2 : V2; -fun drift_ice_N : N; -fun drift_net_N : N; -fun drift_wood_N : N; -fun driftage_N : N; -fun drifter_N : N; -fun driftfish_N : N; -fun drifting_N : N; -fun driftwood_N : N; -fun drill_N : N; -fun drill_V : V; -fun drill_V2 : V2; -fun drill_like_A : A; -fun drilled_A : A; -fun drilling_N : N; -fun drily_Adv : Adv; -fun drink_N : N; -fun drink_V : V; -fun drink_V2 : V2; -fun drinkable_A : A; -fun drinker_N : N; -fun drinking_N : N; -fun drinking_bout_N : N; -fun drinking_fountain_N : N; -fun drinking_song_N : N; -fun drinking_water_N : N; -fun drip_N : N; -fun drip_V : V; -fun drip_V2 : V2; -fun drip_dry_A : A; -fun drip_dry_A : A; -fun drip_dry_V2 : V2; -fun dripless_A : A; -fun drippiness_N : N; -fun dripping_N : N; -fun dripping_pan_N : N; -fun drippings_N : N; -fun drippy_A : A; -fun dripstone_N : N; -fun drive_N : N; -fun drive_V : V; -fun drive_V2 : V2; -fun drive_V2V : V2V; -fun drive_VS : VS; -fun drive_in_N : N; -fun drive_in_N : N; -fun drivel_N : N; -fun drivel_V : V; -fun driveller_N : N; -fun driven_A : A; -fun driver_N : N; -fun driveshaft_N : N; -fun driveway_N : N; -fun driving_A : A; -fun driving_N : N; -fun driving_belt_N : N; -fun driving_wheel_N : N; -fun drizzle_N : N; -fun drizzle_V : V; -fun drizzling_A : A; -fun drizzly_A : A; -fun drogue_N : N; -fun droll_A : A; -fun drollery_N : N; -fun dromaeosaur_N : N; -fun dromedary_N : N; -fun dronabinol_N : N; -fun drone_N : N; -fun drone_V : V; -fun drone_V2 : V2; -fun drool_N : N; -fun drool_V : V; -fun drool_V2 : V2; -fun droop_N : N; -fun droop_V : V; -fun droop_V2 : V2; -fun drooping_A : A; -fun droopingly_Adv : Adv; -fun drop_N : N; -fun drop_V : V; -fun drop_V2 : V2; -fun drop_curtain_N : N; -fun drop_dead_Adv : Adv; -fun drop_kick_N : N; -fun drop_leaf_N : N; -fun dropkick_N : N; -fun dropkicker_N : N; -fun droplet_N : N; -fun dropline_N : N; -fun dropout_N : N; -fun dropper_N : N; -fun dropping_A : A; -fun dropping_zone_N : N; -fun droppings_N : N; -fun dropseed_N : N; -fun dropsical_A : A; -fun dropsy_N : N; -fun droshky_N : N; -fun drosophila_N : N; -fun dross_N : N; -fun drought_N : N; -fun drove_N : N; -fun drover_N : N; -fun drown_V : V; -fun drown_V2 : V2; -fun drowse_N : N; -fun drowse_V : V; -fun drowse_V2 : V2; -fun drowsily_Adv : Adv; -fun drowsiness_N : N; -fun drowsy_A : A; -fun drub_V2 : V2; -fun drubbing_N : N; -fun drudge_N : N; -fun drudge_V : V; -fun drudgery_N : N; -fun drudging_A : A; -fun drug_N : N; -fun drug_V2 : V2; -fun drug_free_A : A; -fun drugget_N : N; -fun druggist_N : N; -fun drugless_A : A; -fun drugstore_N : N; -fun druid_N : N; -fun druidism_N : N; -fun drum_N : N; -fun drum_V : V; -fun drum_V2 : V2; -fun drum_major_N : N; -fun drum_majorette_N : N; -fun drum_shaped_A : A; -fun drumbeat_N : N; -fun drumfire_N : N; -fun drumhead_A : A; -fun drumhead_N : N; -fun drumlin_N : N; -fun drummer_N : N; -fun drumming_N : N; -fun drumstick_N : N; -fun drunk_A : A; -fun drunk_N : N; -fun drunk_and_disorderly_N : N; -fun drunkard_N : N; -fun drunken_A : A; -fun drunkenly_Adv : Adv; -fun drunkenness_N : N; -fun drupaceous_A : A; -fun drupe_N : N; -fun drupelet_N : N; -fun drusen_N : N; -fun dry_A : A; -fun dry_N : N; -fun dry_V : V; -fun dry_V2 : V2; -fun dry_clean_V2 : V2; -fun dry_cleaned_A : A; -fun dry_cleaner_N : N; -fun dry_cleaning_N : N; -fun dry_gulching_N : N; -fun dry_shod_A : A; -fun dry_shod_A : A; -fun dry_walling_N : N; -fun dryad_N : N; -fun dryer_N : N; -fun drygoods_N : N; -fun dryness_N : N; -fun dryopithecine_N : N; -fun drypis_N : N; -fun dsc_N : N; -fun dscdna_N : N; -fun dss_N : N; -fun dti_N : N; -fun du_maurier_PN : PN; -fun dual_A : A; -fun dualism_N : N; -fun dualist_N : N; -fun dualistic_A : A; -fun duality_N : N; -fun dub_N : N; -fun dub_V2 : V2; -fun dub_VS : VS; -fun dubbin_N : N; -fun dubbing_N : N; -fun dubiety_N : N; -fun dubious_A : A; -fun dubiousness_N : N; -fun dubliner_N : N; -fun dubnium_N : N; -fun ducal_A : A; -fun ducat_N : N; -fun duce_N : N; -fun duchess_N : N; -fun duchy_N : N; -fun duck_N : N; -fun duck_V : V; -fun duck_V2 : V2; -fun duckbill_A : A; -fun duckbilled_A : A; -fun duckboard_N : N; -fun ducking_N : N; -fun ducking_stool_N : N; -fun duckling_N : N; -fun duckpin_N : N; -fun duckpins_N : N; -fun duckweed_N : N; -fun ducky_N : N; -fun duct_N : N; -fun ductile_A : A; -fun ductility_N : N; -fun ductless_A : A; -fun ductule_N : N; -fun dud_A : A; -fun dud_N : N; -fun dude_N : N; -fun dudeen_N : N; -fun dudgeon_N : N; -fun due_A : A; -fun due_Adv : Adv; -fun due_N : N; -fun duel_N : N; -fun duel_V : V; -fun dueler_N : N; -fun duelist_N : N; -fun duellist_N : N; -fun duenna_N : N; -fun duet_N : N; -fun duff_N : N; -fun duffel_N : N; -fun duffer_N : N; -fun duffle_N : N; -fun dug_N : N; -fun dugong_N : N; -fun dugout_N : N; -fun duke_N : N; -fun dukedom_N : N; -fun dulcet_A : A; -fun dulciana_N : N; -fun dulcimer_N : N; -fun dull_A : A; -fun dull_V : V; -fun dull_V2 : V2; -fun dull_purple_A : A; -fun dull_white_A : A; -fun dullard_N : N; -fun dulled_A : A; -fun dullness_N : N; -fun dully_Adv : Adv; -fun dulse_N : N; -fun duly_Adv : Adv; -fun dumb_A : A; -fun dumbbell_N : N; -fun dumbfound_V2 : V2; -fun dumbfounded_A : A; -fun dumbly_Adv : Adv; -fun dumbness_N : N; -fun dumbwaiter_N : N; -fun dumdum_N : N; -fun dummy_A : A; -fun dummy_N : N; -fun dump_N : N; -fun dump_V : V; -fun dump_V2 : V2; -fun dumpcart_N : N; -fun dumper_N : N; -fun dumpiness_N : N; -fun dumping_N : N; -fun dumpling_N : N; -fun dumps_N : N; -fun dumpy_A : A; -fun dun_A : A; -fun dun_N : N; -fun dun_V2 : V2; -fun dun_colored_A : A; -fun dunce_N : N; -fun dunderhead_N : N; -fun dune_N : N; -fun dung_N : N; -fun dungeon_N : N; -fun dunghill_N : N; -fun dunk_N : N; -fun dunk_V2 : V2; -fun dunker_N : N; -fun duodecimal_A : A; -fun duodenal_A : A; -fun duodenum_N : N; -fun duologue_N : N; -fun dupe_N : N; -fun dupe_V2 : V2; -fun duplex_A : A; -fun duplicable_A : A; -fun duplicate_A : A; -fun duplicate_N : N; -fun duplicate_V2 : V2; -fun duplication_N : N; -fun duplicator_N : N; -fun duplicity_N : N; -fun durability_N : N; -fun durable_A : A; -fun durable_N : N; -fun durables_N : N; -fun dural_A : A; -fun durance_N : N; -fun duration_N : N; -fun durative_N : N; -fun durbar_N : N; -fun duress_N : N; -fun durian_N : N; -fun during_Prep : Prep; -fun durmast_N : N; -fun durra_N : N; -fun durum_N : N; -fun dusk_N : N; -fun dusky_A : A; -fun dust_N : N; -fun dust_V2 : V2; -fun dust_bowl_N : N; -fun dust_coat_N : N; -fun dust_jacket_N : N; -fun dust_sheet_N : N; -fun dust_up_N : N; -fun dust_wrapper_N : N; -fun dustbin_N : N; -fun dustcart_N : N; -fun dustcloth_N : N; -fun duster_N : N; -fun dustiness_N : N; -fun dustlike_A : A; -fun dustman_N : N; -fun dustmop_N : N; -fun dustpan_N : N; -fun dusty_A : A; -fun dutch_A : A; -fun dutch_N : N; -fun dutchman_N : N; -fun duteous_A : A; -fun dutiable_A : A; -fun dutiful_A : A; -fun dutifully_Adv : Adv; -fun dutifulness_N : N; -fun duty_N : N; -fun duty_bound_A : A; -fun duty_free_A : A; -fun duty_free_A : A; -fun duvet_N : N; -fun dwarf_N : N; -fun dwarf_V2 : V2; -fun dwarfish_A : A; -fun dwarfishness_N : N; -fun dwarfism_N : N; -fun dwell_V : V; -fun dweller_N : N; -fun dwelling_N : N; -fun dwelling_house_N : N; -fun dwindle_V : V; -fun dwindling_A : A; -fun dwindling_N : N; -fun dyadic_A : A; -fun dyarchy_N : N; -fun dybbuk_N : N; -fun dye_N : N; -fun dye_V : V; -fun dye_V2 : V2; -fun dye_works_N : N; -fun dye_works_N : N; -fun dyed_in_the_wool_A : A; -fun dyeing_N : N; -fun dyer_N : N; -fun dyestuff_N : N; -fun dyewood_N : N; -fun dying_A : A; -fun dyke_N : N; -fun dyke_V : V; -fun dyke_V2 : V2; -fun dynamic_A : A; -fun dynamic_N : N; -fun dynamically_Adv : Adv; -fun dynamics_N : N; -fun dynamism_N : N; -fun dynamite_N : N; -fun dynamite_V2 : V2; -fun dynamiter_N : N; -fun dynamo_N : N; -fun dynamometer_N : N; -fun dynast_N : N; -fun dynastic_A : A; -fun dynasty_N : N; -fun dyne_N : N; -fun dysaphia_N : N; -fun dysarthria_N : N; -fun dyscalculia_N : N; -fun dyschezia_N : N; -fun dyscrasia_N : N; -fun dysentery_N : N; -fun dysfunction_N : N; -fun dysfunctional_A : A; -fun dysgenesis_N : N; -fun dysgenic_A : A; -fun dysgenics_N : N; -fun dysgraphia_N : N; -fun dyskinesia_N : N; -fun dyslectic_A : A; -fun dyslectic_N : N; -fun dyslexia_N : N; -fun dyslexic_A : A; -fun dyslogia_N : N; -fun dyslogistic_A : A; -fun dysmenorrhea_N : N; -fun dysomia_N : N; -fun dysosmia_N : N; -fun dyspepsia_N : N; -fun dyspeptic_A : A; -fun dyspeptic_N : N; -fun dysphagia_N : N; -fun dysphasia_N : N; -fun dysphemism_N : N; -fun dysphemistic_A : A; -fun dysphonia_N : N; -fun dysphoria_N : N; -fun dysphoric_A : A; -fun dysplasia_N : N; -fun dysplastic_A : A; -fun dyspnea_N : N; -fun dysprosium_N : N; -fun dysthymia_N : N; -fun dystopia_N : N; -fun dystopian_A : A; -fun dystrophy_N : N; -fun dysuria_N : N; -fun e_N : N; -fun e'en_Adv : Adv; -fun e'er_Adv : Adv; -fun e_commerce_N : N; -fun e_mail_V2 : V2; -fun each_A : A; -fun each_Adv : Adv; -fun each_Det : Det; -fun eager_A : A; -fun eagerly_Adv : Adv; -fun eagerness_N : N; -fun eagle_N : N; -fun eagle_eyed_A : A; -fun eagle_eyed_A : A; -fun eaglet_N : N; -fun ear_N : N; -fun ear_trumpet_N : N; -fun earache_N : N; -fun eardrop_N : N; -fun eardrum_N : N; -fun eared_A : A; -fun earflap_N : N; -fun earful_N : N; -fun earl_N : N; -fun earldom_N : N; -fun earless_A : A; -fun earlier_A : A; -fun earlier_Adv : Adv; -fun earliness_N : N; -fun earlobe_N : N; -fun early_A : A; -fun early_Adv : Adv; -fun early_on_Adv : Adv; -fun early_warning_A : A; -fun earlyish_A : A; -fun earmark_N : N; -fun earmark_V2 : V2; -fun earmuff_N : N; -fun earn_V : V; -fun earn_V2 : V2; -fun earn_VA : VA; -fun earned_A : A; -fun earner_N : N; -fun earnest_A : A; -fun earnest_N : N; -fun earnest_money_N : N; -fun earnestness_N : N; -fun earphone_N : N; -fun earpiece_N : N; -fun earplug_N : N; -fun earring_N : N; -fun earshot_N : N; -fun earth_N : N; -fun earth_V2 : V2; -fun earth_closet_N : N; -fun earth_god_N : N; -fun earth_goddess_N : N; -fun earthball_N : N; -fun earthborn_A : A; -fun earthbound_A : A; -fun earthen_A : A; -fun earthenware_N : N; -fun earthlike_A : A; -fun earthly_A : A; -fun earthnut_N : N; -fun earthquake_N : N; -fun earthshaking_A : A; -fun earthstar_N : N; -fun earthtongue_N : N; -fun earthwork_N : N; -fun earthworm_N : N; -fun earthy_A : A; -fun earwax_N : N; -fun earwig_N : N; -fun ease_N : N; -fun ease_V : V; -fun ease_V2 : V2; -fun easel_N : N; -fun easement_N : N; -fun easily_Adv : Adv; -fun easiness_N : N; -fun easing_N : N; -fun east_A : A; -fun east_Adv : Adv; -fun east_N : N; -fun east_african_cedar_PN : PN; -fun east_central_A : A; -fun eastbound_A : A; -fun easter_N : N; -fun easterly_A : A; -fun easterly_Adv : Adv; -fun eastern_A : A; -fun easterner_N : N; -fun easternmost_A : A; -fun eastside_A : A; -fun eastward_A : A; -fun eastward_Adv : Adv; -fun eastwards_Adv : Adv; -fun easy_A : A; -fun easy_Adv : Adv; -fun easy_V2V : V2V; -fun easygoing_A : A; -fun easygoingness_N : N; -fun eat_V : V; -fun eat_V2 : V2; -fun eatable_A : A; -fun eatable_N : N; -fun eatage_N : N; -fun eater_N : N; -fun eating_N : N; -fun eating_apple_N : N; -fun eating_house_N : N; -fun eau_de_cologne_N : N; -fun eau_de_vie_N : N; -fun eaves_N : N; -fun eavesdrop_V : V; -fun eavesdropper_N : N; -fun ebb_N : N; -fun ebb_V : V; -fun ebbtide_N : N; -fun eblis_N : N; -fun ebon_A : A; -fun ebonite_N : N; -fun ebony_A : A; -fun ebony_N : N; -fun ebracteate_A : A; -fun ebullience_N : N; -fun ebullient_A : A; -fun ebulliently_Adv : Adv; -fun eburnation_N : N; -fun ec_N : N; -fun ecarte_N : N; -fun eccentric_A : A; -fun eccentric_N : N; -fun eccentrically_Adv : Adv; -fun eccentricity_N : N; -fun ecchymosis_N : N; -fun ecclesiastic_N : N; -fun ecclesiastical_A : A; -fun ecclesiastically_Adv : Adv; -fun ecclesiasticism_N : N; -fun ecclesiology_N : N; -fun eccrine_A : A; -fun ecdemic_A : A; -fun echelon_N : N; -fun echidna_N : N; -fun echinocactus_N : N; -fun echinococcosis_N : N; -fun echinococcus_N : N; -fun echinoderm_N : N; -fun echinus_N : N; -fun echo_N : N; -fun echo_V : V; -fun echo_V2 : V2; -fun echo_sounder_N : N; -fun echo_sounding_N : N; -fun echocardiogram_N : N; -fun echocardiograph_N : N; -fun echocardiography_N : N; -fun echoencephalogram_N : N; -fun echoencephalograph_N : N; -fun echoencephalography_N : N; -fun echoic_A : A; -fun echoing_A : A; -fun echolalia_N : N; -fun echoless_A : A; -fun echolocation_N : N; -fun echovirus_N : N; -fun eclair_N : N; -fun eclampsia_N : N; -fun eclat_N : N; -fun eclectic_A : A; -fun eclectic_N : N; -fun eclecticism_N : N; -fun eclipse_N : N; -fun eclipse_V2 : V2; -fun ecliptic_N : N; -fun eclogue_N : N; -fun ecobabble_N : N; -fun ecological_A : A; -fun ecologically_Adv : Adv; -fun ecologist_N : N; -fun ecology_N : N; -fun econometric_A : A; -fun econometrician_N : N; -fun econometrics_N : N; -fun economic_A : A; -fun economical_A : A; -fun economically_Adv : Adv; -fun economics_N : N; -fun economist_N : N; -fun economize_V : V; -fun economize_V2 : V2; -fun economizer_N : N; -fun economy_N : N; -fun ecosystem_N : N; -fun ecoterrorism_N : N; -fun ecotourism_N : N; -fun ecphonesis_N : N; -fun ecstasy_N : N; -fun ecstatic_A : A; -fun ecstatically_Adv : Adv; -fun ectasia_N : N; -fun ectoderm_N : N; -fun ectodermal_A : A; -fun ectomorph_N : N; -fun ectomorphic_A : A; -fun ectoparasite_N : N; -fun ectopia_N : N; -fun ectopic_A : A; -fun ectoplasm_N : N; -fun ectoproct_N : N; -fun ectrodactyly_N : N; -fun ecuadorian_A : A; -fun ecuadorian_N : N; -fun ecumenic_A : A; -fun ecumenical_A : A; -fun ecumenism_N : N; -fun eczema_N : N; -fun edacious_A : A; -fun edacity_N : N; -fun edaphosaurus_N : N; -fun eddy_N : N; -fun eddy_V : V; -fun edelweiss_N : N; -fun edema_N : N; -fun edematous_A : A; -fun edental_A : A; -fun edentate_N : N; -fun edentulous_A : A; -fun edge_N : N; -fun edge_V : V; -fun edge_V2 : V2; -fun edged_A : A; -fun edgeless_A : A; -fun edger_N : N; -fun edgeways_Adv : Adv; -fun edgewise_Adv : Adv; -fun edginess_N : N; -fun edging_N : N; -fun edgy_A : A; -fun edibility_N : N; -fun edible_A : A; -fun edible_N : N; -fun edict_N : N; -fun edification_N : N; -fun edifice_N : N; -fun edified_A : A; -fun edify_V2 : V2; -fun edifying_A : A; -fun edit_V2 : V2; -fun editing_N : N; -fun edition_N : N; -fun editor_N : N; -fun editorial_A : A; -fun editorial_N : N; -fun editorially_Adv : Adv; -fun editorship_N : N; -fun edmontosaurus_N : N; -fun edp_N : N; -fun educate_V2 : V2; -fun educated_A : A; -fun education_N : N; -fun educational_A : A; -fun educationalist_N : N; -fun educationally_Adv : Adv; -fun educationist_N : N; -fun educative_A : A; -fun educator_N : N; -fun educe_V2 : V2; -fun edutainment_N : N; -fun edwardian_A : A; -fun edwardian_N : N; -fun eec_N : N; -fun eeg_N : N; -fun eel_N : N; -fun eel_shaped_A : A; -fun eelblenny_N : N; -fun eelgrass_N : N; -fun eellike_A : A; -fun eelpout_N : N; -fun eelworm_N : N; -fun eerie_A : A; -fun eerily_Adv : Adv; -fun eeriness_N : N; -fun eery_A : A; -fun eff_V : V; -fun efface_V2 : V2; -fun effaceable_A : A; -fun effacement_N : N; -fun effect_N : N; -fun effect_V2 : V2; -fun effecter_N : N; -fun effective_A : A; -fun effectively_Adv : Adv; -fun effectiveness_N : N; -fun effector_N : N; -fun effects_N : N; -fun effectual_A : A; -fun effectuality_N : N; -fun effectually_Adv : Adv; -fun effectualness_N : N; -fun effeminacy_N : N; -fun effeminate_A : A; -fun effendi_N : N; -fun efferent_A : A; -fun effervesce_V : V; -fun effervescence_N : N; -fun effervescent_A : A; -fun effete_A : A; -fun effeteness_N : N; -fun efficacious_A : A; -fun efficaciously_Adv : Adv; -fun efficacy_N : N; -fun efficiency_N : N; -fun efficient_A : A; -fun efficiently_Adv : Adv; -fun effigy_N : N; -fun effleurage_N : N; -fun efflorescence_N : N; -fun efflorescent_A : A; -fun effluent_A : A; -fun effluent_N : N; -fun effluvium_N : N; -fun efflux_N : N; -fun effort_N : N; -fun effortful_A : A; -fun effortfulness_N : N; -fun effortless_A : A; -fun effortlessly_Adv : Adv; -fun effortlessness_N : N; -fun effrontery_N : N; -fun effulgence_N : N; -fun effulgent_A : A; -fun effusion_N : N; -fun effusive_A : A; -fun effusively_Adv : Adv; -fun effusiveness_N : N; -fun eft_N : N; -fun efta_N : N; -fun egalitarian_A : A; -fun egalitarian_N : N; -fun egalitarianism_N : N; -fun egality_N : N; -fun egg_N : N; -fun egg_V2 : V2; -fun egg_and_dart_N : N; -fun egg_beater_N : N; -fun egg_cup_N : N; -fun egg_filled_A : A; -fun egg_producing_A : A; -fun egg_shaped_A : A; -fun egg_whisk_N : N; -fun eggar_N : N; -fun eggbeater_N : N; -fun eggcup_N : N; -fun egghead_N : N; -fun eggnog_N : N; -fun eggplant_N : N; -fun eggs_benedict_PN : PN; -fun eggshake_N : N; -fun eggshell_N : N; -fun eglantine_N : N; -fun ego_N : N; -fun egocentric_A : A; -fun egocentric_N : N; -fun egoism_N : N; -fun egoist_N : N; -fun egoistic_A : A; -fun egoistical_A : A; -fun egomania_N : N; -fun egomaniac_N : N; -fun egotism_N : N; -fun egotist_N : N; -fun egotistic_A : A; -fun egotistically_Adv : Adv; -fun egotrip_N : N; -fun egotrip_V : V; -fun egregious_A : A; -fun egress_N : N; -fun egret_N : N; -fun egyptian_A : A; -fun egyptian_N : N; -fun eider_N : N; -fun eiderdown_N : N; -fun eidetic_A : A; -fun eidos_N : N; -fun eigenvalue_N : N; -fun eight_A : A; -fun eight_N : N; -fun eight_day_A : A; -fun eight_membered_A : A; -fun eight_sided_A : A; -fun eight_spot_N : N; -fun eighteen_A : A; -fun eighteen_N : N; -fun eighteenth_A : A; -fun eighteenth_N : N; -fun eighth_A : A; -fun eighth_N : N; -fun eighties_N : N; -fun eightieth_A : A; -fun eightieth_N : N; -fun eightpence_N : N; -fun eightpenny_A : A; -fun eightsome_N : N; -fun eighty_A : A; -fun eighty_N : N; -fun eighty_eight_A : A; -fun eighty_fifth_A : A; -fun eighty_five_A : A; -fun eighty_four_A : A; -fun eighty_nine_A : A; -fun eighty_one_A : A; -fun eighty_seven_A : A; -fun eighty_six_A : A; -fun eighty_three_A : A; -fun eighty_two_A : A; -fun einsteinium_N : N; -fun eisegesis_N : N; -fun eisteddfod_N : N; -fun either_Adv : Adv; -fun either_Det : Det; -fun either7or_DConj : Conj; -fun ejaculate_V2 : V2; -fun ejaculation_N : N; -fun ejaculator_N : N; -fun eject_V : V; -fun eject_V2 : V2; -fun ejection_N : N; -fun ejector_N : N; -fun ejector_seat_N : N; -fun eke_V2 : V2; -fun el_dorado_N : N; -fun elaborate_A : A; -fun elaborate_V : V; -fun elaborate_V2 : V2; -fun elaborately_Adv : Adv; -fun elaborateness_N : N; -fun elaboration_N : N; -fun elan_N : N; -fun eland_N : N; -fun elapid_N : N; -fun elapse_V : V; -fun elapsed_A : A; -fun elasmobranch_N : N; -fun elastance_N : N; -fun elastase_N : N; -fun elastic_A : A; -fun elastic_N : N; -fun elasticity_N : N; -fun elasticized_A : A; -fun elastin_N : N; -fun elastomer_N : N; -fun elastoplast_N : N; -fun elastosis_N : N; -fun elate_V2 : V2; -fun elated_A : A; -fun elating_A : A; -fun elation_N : N; -fun elbow_N : N; -fun elbow_V2 : V2; -fun elbowing_N : N; -fun elder_A : A; -fun elder_N : N; -fun elderberry_N : N; -fun elderly_A : A; -fun eldership_N : N; -fun eldritch_A : A; -fun elecampane_N : N; -fun elect_A : A; -fun elect_V : V; -fun elect_V2 : V2; -fun elect_V2V : V2V; -fun elect_V3 : V3; -fun elect_VS : VS; -fun election_N : N; -fun electioneering_N : N; -fun elective_A : A; -fun elector_N : N; -fun electoral_A : A; -fun electorate_N : N; -fun electric_A : A; -fun electric_N : N; -fun electrical_A : A; -fun electrically_Adv : Adv; -fun electrician_N : N; -fun electricity_N : N; -fun electrification_N : N; -fun electrify_V2 : V2; -fun electrifying_A : A; -fun electrocardiogram_N : N; -fun electrocardiograph_N : N; -fun electrocardiographic_A : A; -fun electrocautery_N : N; -fun electrochemical_A : A; -fun electrochemistry_N : N; -fun electrocute_V2 : V2; -fun electrocution_N : N; -fun electrocutioner_N : N; -fun electrode_N : N; -fun electrodeposition_N : N; -fun electrodynamometer_N : N; -fun electroencephalogram_N : N; -fun electroencephalograph_N : N; -fun electroencephalographic_A : A; -fun electrograph_N : N; -fun electrologist_N : N; -fun electrolysis_N : N; -fun electrolyte_N : N; -fun electrolytic_A : A; -fun electrolytic_N : N; -fun electromagnet_N : N; -fun electromagnetic_A : A; -fun electromagnetism_N : N; -fun electromechanical_A : A; -fun electrometer_N : N; -fun electromotive_A : A; -fun electromyogram_N : N; -fun electromyograph_N : N; -fun electromyography_N : N; -fun electron_N : N; -fun electron_microscopic_A : A; -fun electronegativity_N : N; -fun electronic_A : A; -fun electronically_Adv : Adv; -fun electronics_N : N; -fun electrophoresis_N : N; -fun electrophoretic_A : A; -fun electrophorus_N : N; -fun electroplate_N : N; -fun electroplate_V2 : V2; -fun electroplater_N : N; -fun electroretinogram_N : N; -fun electroscope_N : N; -fun electrosleep_N : N; -fun electrostatic_A : A; -fun electrostatically_Adv : Adv; -fun electrostatics_N : N; -fun electrosurgery_N : N; -fun electrotherapist_N : N; -fun electrotherapy_N : N; -fun electrum_N : N; -fun eleemosynary_A : A; -fun elegance_N : N; -fun elegant_A : A; -fun elegant_habenaria_PN : PN; -fun elegantly_Adv : Adv; -fun elegiac_A : A; -fun elegist_N : N; -fun elegy_N : N; -fun element_N : N; -fun elemental_A : A; -fun elementarily_Adv : Adv; -fun elementary_A : A; -fun elements_N : N; -fun elemi_N : N; -fun elephant_N : N; -fun elephant's_foot_N : N; -fun elephantiasis_N : N; -fun elephantine_A : A; -fun elevate_V2 : V2; -fun elevated_A : A; -fun elevation_N : N; -fun elevator_N : N; -fun eleven_A : A; -fun eleven_N : N; -fun eleven_plus_N : N; -fun eleven_sided_A : A; -fun eleventh_A : A; -fun eleventh_N : N; -fun elf_N : N; -fun elfin_A : A; -fun elfish_A : A; -fun elicit_V2 : V2; -fun elicitation_N : N; -fun elicited_A : A; -fun elide_V2 : V2; -fun eligibility_N : N; -fun eligible_A : A; -fun eliminate_V2 : V2; -fun elimination_N : N; -fun eliminator_N : N; -fun elision_N : N; -fun elite_N : N; -fun elitism_N : N; -fun elitist_N : N; -fun elixir_N : N; -fun elizabethan_A : A; -fun elizabethan_N : N; -fun elk_N : N; -fun ell_N : N; -fun ellipse_N : N; -fun ellipsis_N : N; -fun ellipsoid_A : A; -fun ellipsoid_N : N; -fun elliptic_A : A; -fun elliptical_A : A; -fun elm_N : N; -fun elocution_N : N; -fun elocutionary_A : A; -fun elocutionist_N : N; -fun elongate_A : A; -fun elongate_V : V; -fun elongate_V2 : V2; -fun elongated_A : A; -fun elongation_N : N; -fun elope_V : V; -fun elopement_N : N; -fun eloquence_N : N; -fun eloquent_A : A; -fun eloquently_Adv : Adv; -fun else_Adv : Adv; -fun elsewhere_Adv : Adv; -fun elsholtzia_N : N; -fun eluate_N : N; -fun elucidate_V2 : V2; -fun elucidation_N : N; -fun elude_V2 : V2; -fun elusive_A : A; -fun elusiveness_N : N; -fun elution_N : N; -fun elver_N : N; -fun elves_N : N; -fun elvish_A : A; -fun elysian_A : A; -fun em_N : N; -fun emaciate_V2 : V2; -fun emaciation_N : N; -fun emanate_V : V; -fun emanate_V2 : V2; -fun emanation_N : N; -fun emancipate_V2 : V2; -fun emancipated_A : A; -fun emancipation_N : N; -fun emancipative_A : A; -fun emancipator_N : N; -fun emarginate_A : A; -fun emasculate_V2 : V2; -fun emasculation_N : N; -fun embalm_V2 : V2; -fun embalmer_N : N; -fun embalmment_N : N; -fun embankment_N : N; -fun embargo_N : N; -fun embargo_V2 : V2; -fun embark_V : V; -fun embark_V2 : V2; -fun embarkation_N : N; -fun embarrass_V2 : V2; -fun embarrassed_A : A; -fun embarrassing_A : A; -fun embarrassingly_Adv : Adv; -fun embarrassment_N : N; -fun embassy_N : N; -fun embattled_A : A; -fun embed_V2 : V2; -fun embedded_A : A; -fun embellish_V2 : V2; -fun embellishment_N : N; -fun ember_N : N; -fun embezzle_V2 : V2; -fun embezzled_A : A; -fun embezzlement_N : N; -fun embezzler_N : N; -fun embitter_V2 : V2; -fun embitterment_N : N; -fun emblazon_V2 : V2; -fun emblem_N : N; -fun emblematic_A : A; -fun embodiment_N : N; -fun embody_V2 : V2; -fun embolden_V2 : V2; -fun emboldened_A : A; -fun embolectomy_N : N; -fun embolic_A : A; -fun embolism_N : N; -fun embolus_N : N; -fun embonpoint_A : A; -fun embonpoint_N : N; -fun emboss_V : V; -fun emboss_V2 : V2; -fun embrace_N : N; -fun embrace_V : V; -fun embrace_V2 : V2; -fun embrasure_N : N; -fun embrocation_N : N; -fun embroider_V : V; -fun embroider_V2 : V2; -fun embroiderer_N : N; -fun embroideress_N : N; -fun embroidery_N : N; -fun embroil_V : V; -fun embroil_V2 : V2; -fun embroiled_A : A; -fun embryo_N : N; -fun embryologist_N : N; -fun embryology_N : N; -fun embryonic_A : A; -fun emeer_N : N; -fun emend_V2 : V2; -fun emendation_N : N; -fun emended_A : A; -fun emerald_N : N; -fun emerge_V : V; -fun emerge_V2 : V2; -fun emerge_V2V : V2V; -fun emerge_VS : VS; -fun emergence_N : N; -fun emergency_N : N; -fun emergent_A : A; -fun emerging_A : A; -fun emeritus_A : A; -fun emeritus_N : N; -fun emery_N : N; -fun emetic_N : N; -fun emigrant_N : N; -fun emigrate_V : V; -fun emigrate_V2V : V2V; -fun emigration_N : N; -fun emigre_N : N; -fun eminence_N : N; -fun eminent_A : A; -fun eminently_Adv : Adv; -fun emir_N : N; -fun emirate_N : N; -fun emissary_N : N; -fun emission_N : N; -fun emit_V2 : V2; -fun emitter_N : N; -fun emmenagogue_N : N; -fun emmer_N : N; -fun emmetropia_N : N; -fun emmetropic_A : A; -fun emolument_N : N; -fun emoticon_N : N; -fun emotion_N : N; -fun emotional_A : A; -fun emotionality_N : N; -fun emotionally_Adv : Adv; -fun emotionless_A : A; -fun emotionlessness_N : N; -fun emotive_A : A; -fun empale_V2 : V2; -fun empanel_V2 : V2; -fun empathic_A : A; -fun empathize_V : V; -fun empathy_N : N; -fun emperor_N : N; -fun emphasis_N : N; -fun emphasize_V2 : V2; -fun emphasize_VS : VS; -fun emphasizing_N : N; -fun emphatic_A : A; -fun emphatically_Adv : Adv; -fun emphysema_N : N; -fun emphysematous_A : A; -fun empire_N : N; -fun empiric_A : A; -fun empirical_A : A; -fun empirically_Adv : Adv; -fun empiricism_N : N; -fun empiricist_N : N; -fun emplacement_N : N; -fun emplane_V : V; -fun emplane_V2 : V2; -fun employ_N : N; -fun employ_V2 : V2; -fun employable_A : A; -fun employable_N : N; -fun employed_A : A; -fun employee_N : N; -fun employer_N : N; -fun employment_N : N; -fun emporium_N : N; -fun empower_V2 : V2; -fun empower_V2V : V2V; -fun empowered_A : A; -fun empress_N : N; -fun emptiness_N : N; -fun empty_A : A; -fun empty_N : N; -fun empty_V : V; -fun empty_V2 : V2; -fun empty_handed_A : A; -fun empty_handed_A : A; -fun empty_headed_A : A; -fun emptying_N : N; -fun empurpled_A : A; -fun empyema_N : N; -fun empyreal_A : A; -fun empyrean_A : A; -fun empyrean_N : N; -fun emu_N : N; -fun emulate_V2 : V2; -fun emulation_N : N; -fun emulous_A : A; -fun emulously_Adv : Adv; -fun emulsifier_N : N; -fun emulsify_V2 : V2; -fun emulsion_N : N; -fun en_N : N; -fun en_clair_Adv : Adv; -fun en_deshabille_A : A; -fun en_famille_Adv : Adv; -fun en_garde_A : A; -fun en_masse_Adv : Adv; -fun en_route_Adv : Adv; -fun enable_V2 : V2; -fun enable_V2V : V2V; -fun enable_VS : VS; -fun enabling_A : A; -fun enact_V2 : V2; -fun enact_V2V : V2V; -fun enactment_N : N; -fun enalapril_N : N; -fun enallage_N : N; -fun enamel_N : N; -fun enamel_V2 : V2; -fun enamelware_N : N; -fun enamine_N : N; -fun enamored_A : A; -fun enamour_V2 : V2; -fun enanthem_N : N; -fun enantiomorph_N : N; -fun enantiomorphism_N : N; -fun enate_A : A; -fun enate_N : N; -fun encainide_N : N; -fun encamp_V : V; -fun encamp_V2 : V2; -fun encampment_N : N; -fun encapsulation_N : N; -fun encase_V2 : V2; -fun encasement_N : N; -fun encaustic_A : A; -fun encaustic_N : N; -fun encephalartos_N : N; -fun encephalitis_N : N; -fun encephalocele_N : N; -fun encephalogram_N : N; -fun encephalography_N : N; -fun encephalomyelitis_N : N; -fun enchain_V2 : V2; -fun enchant_V2 : V2; -fun enchanted_A : A; -fun enchanter_N : N; -fun enchantingly_Adv : Adv; -fun enchantment_N : N; -fun enchantress_N : N; -fun enchilada_N : N; -fun enchondroma_N : N; -fun encircle_V2 : V2; -fun encirclement_N : N; -fun encircling_A : A; -fun enclave_N : N; -fun enclose_V2 : V2; -fun enclosed_A : A; -fun enclosure_N : N; -fun encode_V2 : V2; -fun encoding_N : N; -fun encolure_N : N; -fun encomiastic_A : A; -fun encomium_N : N; -fun encompass_V2 : V2; -fun encompassing_A : A; -fun encompassment_N : N; -fun encopresis_N : N; -fun encore_N : N; -fun encore_V2 : V2; -fun encounter_N : N; -fun encounter_V2 : V2; -fun encourage_V2 : V2; -fun encourage_V2V : V2V; -fun encouragement_N : N; -fun encouraging_A : A; -fun encouragingly_Adv : Adv; -fun encroach_V : V; -fun encroaching_A : A; -fun encroachment_N : N; -fun encrust_V : V; -fun encrust_V2 : V2; -fun encrypt_V2 : V2; -fun encumber_V2 : V2; -fun encumbered_A : A; -fun encumbrance_N : N; -fun encyclical_A : A; -fun encyclical_N : N; -fun encyclopaedia_N : N; -fun encyclopaedic_A : A; -fun encyclopedia_N : N; -fun encyclopedic_A : A; -fun encyclopedist_N : N; -fun encysted_A : A; -fun end_N : N; -fun end_V : V; -fun end_V2 : V2; -fun end_VA : VA; -fun end_VS : VS; -fun end_all_N : N; -fun end_all_N : N; -fun end_plate_N : N; -fun end_rhymed_A : A; -fun end_stopped_A : A; -fun end_tail_V2 : V2; -fun end_to_end_A : A; -fun endameba_N : N; -fun endanger_V2 : V2; -fun endangered_A : A; -fun endarterectomy_N : N; -fun endarteritis_N : N; -fun endear_V2 : V2; -fun endearingly_Adv : Adv; -fun endearment_N : N; -fun endeavour_N : N; -fun endeavour_V : V; -fun endemic_A : A; -fun endemic_N : N; -fun endergonic_A : A; -fun endermic_A : A; -fun endgame_N : N; -fun ending_N : N; -fun endive_N : N; -fun endless_A : A; -fun endlessly_Adv : Adv; -fun endlessness_N : N; -fun endocarditis_N : N; -fun endocardium_N : N; -fun endocentric_A : A; -fun endocervicitis_N : N; -fun endocranium_N : N; -fun endocrine_A : A; -fun endocrinologist_N : N; -fun endocrinology_N : N; -fun endoderm_N : N; -fun endodontic_A : A; -fun endodontics_N : N; -fun endodontist_N : N; -fun endoergic_A : A; -fun endogamous_A : A; -fun endogamy_N : N; -fun endogenic_A : A; -fun endogenous_A : A; -fun endogenously_Adv : Adv; -fun endogeny_N : N; -fun endolymph_N : N; -fun endometrial_A : A; -fun endometriosis_N : N; -fun endometrium_N : N; -fun endomorph_N : N; -fun endomorphic_A : A; -fun endomorphy_N : N; -fun endoneurium_N : N; -fun endonuclease_N : N; -fun endoparasite_N : N; -fun endoparasitic_A : A; -fun endoplasm_N : N; -fun endorphin_N : N; -fun endorse_V2 : V2; -fun endorsement_N : N; -fun endorser_N : N; -fun endoscope_N : N; -fun endoscopic_A : A; -fun endoscopy_N : N; -fun endoskeleton_N : N; -fun endosperm_N : N; -fun endospore_N : N; -fun endosteum_N : N; -fun endothelial_A : A; -fun endothelium_N : N; -fun endothermic_A : A; -fun endotoxin_N : N; -fun endow_V2 : V2; -fun endowed_A : A; -fun endowment_N : N; -fun endue_V2 : V2; -fun endurable_A : A; -fun endurance_N : N; -fun endure_V : V; -fun endure_V2 : V2; -fun enduring_A : A; -fun enduringly_Adv : Adv; -fun endways_Adv : Adv; -fun endwise_Adv : Adv; -fun enema_N : N; -fun enemy_N : N; -fun energetic_A : A; -fun energetically_Adv : Adv; -fun energid_N : N; -fun energizer_N : N; -fun energizing_A : A; -fun energizing_N : N; -fun energy_N : N; -fun enervate_V2 : V2; -fun enervation_N : N; -fun enfant_terrible_N : N; -fun enfeeble_V2 : V2; -fun enfeoffment_N : N; -fun enfilade_N : N; -fun enflurane_N : N; -fun enfold_V2 : V2; -fun enforce_V2 : V2; -fun enforceable_A : A; -fun enforced_A : A; -fun enforcement_N : N; -fun enfranchise_V2 : V2; -fun enfranchised_A : A; -fun enfranchisement_N : N; -fun engage_V : V; -fun engage_V2 : V2; -fun engaged_A : A; -fun engagement_N : N; -fun engaging_A : A; -fun engelmannia_N : N; -fun engender_V2 : V2; -fun engine_N : N; -fun engine_driver_N : N; -fun engineer_N : N; -fun engineer_V : V; -fun engineer_V2 : V2; -fun engineering_N : N; -fun enginery_N : N; -fun english_A : A; -fun english_N : N; -fun englishman_N : N; -fun englishwoman_N : N; -fun engorgement_N : N; -fun engraft_V2 : V2; -fun engram_N : N; -fun engrave_V : V; -fun engrave_V2 : V2; -fun engraved_A : A; -fun engraver_N : N; -fun engraving_N : N; -fun engross_V2 : V2; -fun engrossed_A : A; -fun engulf_V2 : V2; -fun enhance_V2 : V2; -fun enhanced_A : A; -fun enhancement_N : N; -fun enigma_N : N; -fun enigmatic_A : A; -fun enigmatically_Adv : Adv; -fun enjambment_N : N; -fun enjoin_V2 : V2; -fun enjoy_V2 : V2; -fun enjoy_VV : VV; -fun enjoyable_A : A; -fun enjoyableness_N : N; -fun enjoyer_N : N; -fun enjoyment_N : N; -fun enkephalin_N : N; -fun enkindle_V2 : V2; -fun enlarge_V : V; -fun enlarge_V2 : V2; -fun enlarged_A : A; -fun enlargement_N : N; -fun enlarger_N : N; -fun enlighten_V2 : V2; -fun enlightened_A : A; -fun enlightening_A : A; -fun enlightenment_N : N; -fun enlist_V : V; -fun enlist_V2 : V2; -fun enlistment_N : N; -fun enliven_V2 : V2; -fun enlivened_A : A; -fun enmesh_V2 : V2; -fun enmeshed_A : A; -fun enmity_N : N; -fun ennoble_V2 : V2; -fun ennoblement_N : N; -fun ennobling_A : A; -fun ennui_N : N; -fun ennumerate_V2 : V2; -fun enol_N : N; -fun enolic_A : A; -fun enologist_N : N; -fun enology_N : N; -fun enophile_N : N; -fun enormity_N : N; -fun enormous_A : A; -fun enormously_Adv : Adv; -fun enormousness_N : N; -fun enosis_N : N; -fun enough_A : A; -fun enough_Adv : Adv; -fun enough_N : N; -fun enplane_V : V; -fun enplane_V2 : V2; -fun enquire_V : V; -fun enquire_V2 : V2; -fun enquire_V2Q : V2Q; -fun enquirer_N : N; -fun enquiringly_Adv : Adv; -fun enquiry_N : N; -fun enrage_V2 : V2; -fun enrapture_V2 : V2; -fun enrich_V2 : V2; -fun enrichment_N : N; -fun enrol_V : V; -fun enrol_V2 : V2; -fun enroll_V : V; -fun enroll_V2 : V2; -fun enrollee_N : N; -fun enrolment_N : N; -fun ensconce_V2 : V2; -fun ensemble_N : N; -fun enshrine_V2 : V2; -fun enshroud_V2 : V2; -fun ensiform_A : A; -fun ensign_N : N; -fun ensilage_N : N; -fun enslave_V2 : V2; -fun enslavement_N : N; -fun ensnare_V2 : V2; -fun ensue_V : V; -fun ensuing_A : A; -fun ensure_V : V; -fun ensure_V2 : V2; -fun ensure_VS : VS; -fun entablature_N : N; -fun entail_N : N; -fun entail_V2 : V2; -fun entangle_V2 : V2; -fun entangled_A : A; -fun entanglement_N : N; -fun entasis_N : N; -fun entelechy_N : N; -fun entellus_N : N; -fun entente_N : N; -fun entente_cordiale_N : N; -fun enter_V : V; -fun enter_V2 : V2; -fun enteric_A : A; -fun enteritis_N : N; -fun enterobiasis_N : N; -fun enterokinase_N : N; -fun enterolith_N : N; -fun enterolithiasis_N : N; -fun enteron_N : N; -fun enteropathy_N : N; -fun enteroptosis_N : N; -fun enterostenosis_N : N; -fun enterostomy_N : N; -fun enterotoxemia_N : N; -fun enterotoxin_N : N; -fun enterovirus_N : N; -fun enterprise_N : N; -fun enterprising_A : A; -fun enterprisingly_Adv : Adv; -fun entertain_V2 : V2; -fun entertainer_N : N; -fun entertaining_A : A; -fun entertainingly_Adv : Adv; -fun entertainment_N : N; -fun enthral_V2 : V2; -fun enthrall_V2 : V2; -fun enthrone_V2 : V2; -fun enthronement_N : N; -fun enthuse_V : V; -fun enthuse_V2 : V2; -fun enthusiasm_N : N; -fun enthusiast_N : N; -fun enthusiastic_A : A; -fun enthusiastically_Adv : Adv; -fun entice_V2 : V2; -fun enticement_N : N; -fun entire_A : A; -fun entirely_Adv : Adv; -fun entirety_N : N; -fun entitle_V2 : V2; -fun entitle_V2V : V2V; -fun entitle_VS : VS; -fun entitled_A : A; -fun entitlement_N : N; -fun entity_N : N; -fun entomb_V2 : V2; -fun entomion_N : N; -fun entomological_A : A; -fun entomologist_N : N; -fun entomology_N : N; -fun entomophilous_A : A; -fun entomophobia_N : N; -fun entoproct_N : N; -fun entourage_N : N; -fun entozoan_A : A; -fun entozoic_A : A; -fun entr'acte_N : N; -fun entrain_V : V; -fun entrain_V2 : V2; -fun entrance_N : N; -fun entrance_V2 : V2; -fun entrance_fee_N : N; -fun entrance_money_N : N; -fun entrancement_N : N; -fun entrant_N : N; -fun entrap_V2 : V2; -fun entrapment_N : N; -fun entreat_V2 : V2; -fun entreat_VS : VS; -fun entreatingly_Adv : Adv; -fun entreaty_N : N; -fun entrecote_N : N; -fun entree_N : N; -fun entrench_V2 : V2; -fun entrenched_A : A; -fun entrenchment_N : N; -fun entrepot_N : N; -fun entrepreneur_N : N; -fun entrepreneurial_A : A; -fun entrust_V2 : V2; -fun entry_N : N; -fun entwin_V : V; -fun entwine_V2 : V2; -fun enucleation_N : N; -fun enumerate_V2 : V2; -fun enumeration_N : N; -fun enunciate_V : V; -fun enunciate_V2 : V2; -fun enunciation_N : N; -fun enured_A : A; -fun enuresis_N : N; -fun envelop_V2 : V2; -fun envelope_N : N; -fun enveloping_A : A; -fun envelopment_N : N; -fun envenom_V2 : V2; -fun enviable_A : A; -fun enviably_Adv : Adv; -fun envious_A : A; -fun enviously_Adv : Adv; -fun environ_V2 : V2; -fun environment_N : N; -fun environmental_A : A; -fun environmentalism_N : N; -fun environmentalist_N : N; -fun environmentally_Adv : Adv; -fun environs_N : N; -fun envisage_V2 : V2; -fun envision_V2 : V2; -fun envision_VS : VS; -fun envisioned_A : A; -fun envoi_N : N; -fun envoy_N : N; -fun envy_N : N; -fun envy_V2 : V2; -fun enwrap_V2 : V2; -fun enzootic_A : A; -fun enzymatic_A : A; -fun enzyme_N : N; -fun enzymologist_N : N; -fun enzymology_N : N; -fun eohippus_N : N; -fun eolith_N : N; -fun eolithic_A : A; -fun eon_N : N; -fun eonian_A : A; -fun eoraptor_N : N; -fun eosin_N : N; -fun eosinopenia_N : N; -fun eosinophil_N : N; -fun eosinophilia_N : N; -fun eosinophilic_A : A; -fun epacris_N : N; -fun epanalepsis_N : N; -fun epanaphora_N : N; -fun epanodos_N : N; -fun epanorthosis_N : N; -fun eparch_N : N; -fun eparchial_A : A; -fun eparchy_N : N; -fun epaulet_N : N; -fun epaulette_N : N; -fun epauliere_N : N; -fun epee_N : N; -fun ependyma_N : N; -fun epenthesis_N : N; -fun epenthetic_A : A; -fun epergne_N : N; -fun ephah_N : N; -fun ephedra_N : N; -fun ephedrine_N : N; -fun ephemera_N : N; -fun ephemeral_A : A; -fun ephemerality_N : N; -fun ephemerid_N : N; -fun ephemeris_N : N; -fun ephemeron_N : N; -fun epic_A : A; -fun epic_N : N; -fun epicalyx_N : N; -fun epicanthus_N : N; -fun epicardia_N : N; -fun epicardium_N : N; -fun epicarp_N : N; -fun epicarpal_A : A; -fun epicenter_N : N; -fun epicentre_N : N; -fun epicondyle_N : N; -fun epicondylitis_N : N; -fun epicranium_N : N; -fun epicure_N : N; -fun epicurean_A : A; -fun epicurean_N : N; -fun epicureanism_N : N; -fun epicurism_N : N; -fun epicycle_N : N; -fun epicyclic_A : A; -fun epicycloid_N : N; -fun epideictic_A : A; -fun epidemic_A : A; -fun epidemic_N : N; -fun epidemiologic_A : A; -fun epidemiologist_N : N; -fun epidemiology_N : N; -fun epidendron_N : N; -fun epidermis_N : N; -fun epidiascope_N : N; -fun epididymis_N : N; -fun epididymitis_N : N; -fun epidural_A : A; -fun epigastric_A : A; -fun epigastrium_N : N; -fun epigenesis_N : N; -fun epiglottis_N : N; -fun epiglottitis_N : N; -fun epigone_N : N; -fun epigram_N : N; -fun epigrammatic_A : A; -fun epigraph_N : N; -fun epigraphy_N : N; -fun epikeratophakia_N : N; -fun epilation_N : N; -fun epilepsy_N : N; -fun epileptic_A : A; -fun epileptic_N : N; -fun epilithic_A : A; -fun epilogue_N : N; -fun epimorphic_A : A; -fun epinephrine_N : N; -fun epiphany_N : N; -fun epiphenomenon_N : N; -fun epiphora_N : N; -fun epiphyllum_N : N; -fun epiphyseal_A : A; -fun epiphysis_N : N; -fun epiphytic_A : A; -fun epiphytotic_A : A; -fun epiplexis_N : N; -fun episcia_N : N; -fun episcleritis_N : N; -fun episcopacy_N : N; -fun episcopal_A : A; -fun episcopalian_A : A; -fun episcopalian_N : N; -fun episcopate_N : N; -fun episiotomy_N : N; -fun episode_N : N; -fun episodic_A : A; -fun episodically_Adv : Adv; -fun episome_N : N; -fun epispadias_N : N; -fun episteme_N : N; -fun epistemic_A : A; -fun epistemologist_N : N; -fun epistemology_N : N; -fun epistle_N : N; -fun epistolary_A : A; -fun epitaph_N : N; -fun epitaxy_N : N; -fun epithalamium_N : N; -fun epithelial_A : A; -fun epitheliod_A : A; -fun epithelioma_N : N; -fun epithelium_N : N; -fun epithet_N : N; -fun epitome_N : N; -fun epitomize_V2 : V2; -fun epizoan_A : A; -fun epizoic_A : A; -fun epizootic_A : A; -fun epoch_N : N; -fun epoch_making_A : A; -fun epochal_A : A; -fun eponym_N : N; -fun eponymous_A : A; -fun eponymy_N : N; -fun epos_N : N; -fun epoxy_N : N; -fun epoxy_V2 : V2; -fun epsilon_N : N; -fun eptatretus_N : N; -fun equable_A : A; -fun equably_Adv : Adv; -fun equal_A : A; -fun equal_N : N; -fun equal_V2 : V2; -fun equalitarian_N : N; -fun equality_N : N; -fun equalization_N : N; -fun equalize_V2 : V2; -fun equalizer_N : N; -fun equally_Adv : Adv; -fun equanimity_N : N; -fun equatability_N : N; -fun equate_V2 : V2; -fun equation_N : N; -fun equator_N : N; -fun equatorial_A : A; -fun equatorial_N : N; -fun equerry_N : N; -fun equestrian_A : A; -fun equestrian_N : N; -fun equiangular_A : A; -fun equidistant_A : A; -fun equidistribution_N : N; -fun equilateral_A : A; -fun equilateral_N : N; -fun equilibration_N : N; -fun equilibrium_N : N; -fun equine_A : A; -fun equine_N : N; -fun equinoctial_A : A; -fun equinox_N : N; -fun equip_V2 : V2; -fun equipage_N : N; -fun equipment_N : N; -fun equipoise_N : N; -fun equipoised_A : A; -fun equipotent_A : A; -fun equipped_A : A; -fun equiprobable_A : A; -fun equitable_A : A; -fun equitably_Adv : Adv; -fun equity_N : N; -fun equivalence_N : N; -fun equivalent_A : A; -fun equivalent_N : N; -fun equivocal_A : A; -fun equivocation_N : N; -fun era_N : N; -fun eradicable_A : A; -fun eradicate_V2 : V2; -fun eradication_N : N; -fun erase_V2 : V2; -fun eraser_N : N; -fun erasure_N : N; -fun erbium_N : N; -fun ere_Adv : Adv; -fun erect_A : A; -fun erect_V : V; -fun erect_V2 : V2; -fun erectile_A : A; -fun erecting_N : N; -fun erection_N : N; -fun erectly_Adv : Adv; -fun erectness_N : N; -fun eremite_N : N; -fun eremitic_A : A; -fun eremitism_N : N; -fun erethism_N : N; -fun erg_N : N; -fun ergo_Adv : Adv; -fun ergodic_A : A; -fun ergodicity_N : N; -fun ergonomic_A : A; -fun ergonomics_N : N; -fun ergonovine_N : N; -fun ergosterol_N : N; -fun ergot_N : N; -fun ergotamine_N : N; -fun ergotic_A : A; -fun ergotism_N : N; -fun ergotropic_A : A; -fun ergotropism_N : N; -fun erica_N : N; -fun eriogonum_N : N; -fun eristic_A : A; -fun eristic_N : N; -fun eritrean_A : A; -fun eritrean_N : N; -fun ermine_N : N; -fun ern_N : N; -fun erode_V : V; -fun erode_V2 : V2; -fun eroded_A : A; -fun erogenous_A : A; -fun erose_A : A; -fun erosion_N : N; -fun erosive_A : A; -fun erotic_A : A; -fun erotic_N : N; -fun erotically_Adv : Adv; -fun eroticism_N : N; -fun err_V : V; -fun errancy_N : N; -fun errand_N : N; -fun errant_A : A; -fun erratic_A : A; -fun erratically_Adv : Adv; -fun erratum_N : N; -fun errhine_A : A; -fun erring_A : A; -fun erroneous_A : A; -fun erroneousness_N : N; -fun error_N : N; -fun errorless_A : A; -fun ersatz_A : A; -fun ersatz_N : N; -fun erse_N : N; -fun erstwhile_A : A; -fun eruct_V : V; -fun eructation_N : N; -fun erudite_A : A; -fun eruditely_Adv : Adv; -fun eruditeness_N : N; -fun erudition_N : N; -fun erupt_V : V; -fun eruption_N : N; -fun eruptive_A : A; -fun erwinia_N : N; -fun eryngo_N : N; -fun erysipelas_N : N; -fun erythema_N : N; -fun erythematous_A : A; -fun erythrite_N : N; -fun erythroblast_N : N; -fun erythroblastosis_N : N; -fun erythroderma_N : N; -fun erythroid_A : A; -fun erythromycin_N : N; -fun erythropoiesis_N : N; -fun erythropoietic_A : A; -fun erythropoietin_N : N; -fun escadrille_N : N; -fun escalade_N : N; -fun escalader_N : N; -fun escalate_V : V; -fun escalate_V2 : V2; -fun escalation_N : N; -fun escalator_N : N; -fun escalope_N : N; -fun escalope_de_veau_orloff_PN : PN; -fun escapade_N : N; -fun escape_N : N; -fun escape_V : V; -fun escape_V2 : V2; -fun escape_VS : VS; -fun escapee_N : N; -fun escapement_N : N; -fun escapism_N : N; -fun escapist_N : N; -fun escapologist_N : N; -fun escapology_N : N; -fun escargot_N : N; -fun escarpment_N : N; -fun eschar_N : N; -fun eschatological_A : A; -fun eschatologically_Adv : Adv; -fun eschatologist_N : N; -fun eschatology_N : N; -fun escheat_N : N; -fun escherichia_N : N; -fun eschew_V2 : V2; -fun escolar_N : N; -fun escort_N : N; -fun escort_V2 : V2; -fun escritoire_N : N; -fun escrow_N : N; -fun escudo_N : N; -fun escutcheon_N : N; -fun esker_N : N; -fun eskimo_N : N; -fun esmolol_N : N; -fun esophageal_A : A; -fun esophagitis_N : N; -fun esophagoscope_N : N; -fun esophagus_N : N; -fun esoteric_A : A; -fun esoterica_N : N; -fun esp_N : N; -fun espadrille_N : N; -fun espalier_N : N; -fun especial_A : A; -fun esperanto_N : N; -fun espionage_N : N; -fun esplanade_N : N; -fun espousal_N : N; -fun espouse_V2 : V2; -fun espresso_N : N; -fun esprit_N : N; -fun esprit_de_corps_N : N; -fun espy_V2 : V2; -fun esquire_N : N; -fun essay_N : N; -fun essay_V : V; -fun essay_V2 : V2; -fun essayist_N : N; -fun essence_N : N; -fun essential_A : A; -fun essential_N : N; -fun essentiality_N : N; -fun establish_V2 : V2; -fun established_A : A; -fun establishment_N : N; -fun establishmentarianism_N : N; -fun estaminet_N : N; -fun estate_N : N; -fun estazolam_N : N; -fun esteem_N : N; -fun esteem_V2 : V2; -fun esteemed_A : A; -fun ester_N : N; -fun esthete_N : N; -fun esthetic_A : A; -fun esthetic_N : N; -fun esthetical_A : A; -fun esthetician_N : N; -fun esthetics_N : N; -fun estimable_A : A; -fun estimate_N : N; -fun estimate_V : V; -fun estimate_V2 : V2; -fun estimate_V2V : V2V; -fun estimate_VS : VS; -fun estimation_N : N; -fun estivation_N : N; -fun estoppel_N : N; -fun estradiol_N : N; -fun estrange_V2 : V2; -fun estrangement_N : N; -fun estranging_A : A; -fun estriol_N : N; -fun estrogen_N : N; -fun estrogenic_A : A; -fun estrone_N : N; -fun estrous_A : A; -fun estrus_N : N; -fun estuarine_A : A; -fun estuary_N : N; -fun et_al__Adv : Adv; -fun eta_N : N; -fun etagere_N : N; -fun etamine_N : N; -fun etanercept_N : N; -fun etcetera_N : N; -fun etch_V : V; -fun etch_V2 : V2; -fun etcher_N : N; -fun etching_N : N; -fun etd_N : N; -fun eternal_A : A; -fun eternity_N : N; -fun ethane_N : N; -fun ethchlorvynol_N : N; -fun ether_N : N; -fun ethereal_A : A; -fun ethernet_N : N; -fun ethic_N : N; -fun ethical_A : A; -fun ethically_Adv : Adv; -fun ethicism_N : N; -fun ethicist_N : N; -fun ethics_N : N; -fun ethiopian_A : A; -fun ethiopian_N : N; -fun ethmoid_N : N; -fun ethnarch_N : N; -fun ethnic_A : A; -fun ethnic_N : N; -fun ethnically_Adv : Adv; -fun ethnicity_N : N; -fun ethnocentric_A : A; -fun ethnocentrism_N : N; -fun ethnographer_N : N; -fun ethnographic_A : A; -fun ethnography_N : N; -fun ethnological_A : A; -fun ethnologist_N : N; -fun ethnology_N : N; -fun ethologist_N : N; -fun ethology_N : N; -fun ethos_N : N; -fun ethosuximide_N : N; -fun ethyl_N : N; -fun ethylene_N : N; -fun etiolate_A : A; -fun etiolation_N : N; -fun etiological_A : A; -fun etiologist_N : N; -fun etiology_N : N; -fun etiquette_N : N; -fun etodolac_N : N; -fun etude_N : N; -fun etui_N : N; -fun etymological_A : A; -fun etymologist_N : N; -fun etymology_N : N; -fun etymon_N : N; -fun eubacteria_N : N; -fun eucalyptus_N : N; -fun eucharist_N : N; -fun euchre_N : N; -fun euclidean_A : A; -fun euclidian_A : A; -fun eudemon_N : N; -fun eudemonic_A : A; -fun eudemonism_N : N; -fun eudiometer_N : N; -fun eugenic_A : A; -fun eugenics_N : N; -fun euglena_N : N; -fun euglenoid_N : N; -fun eukaryote_N : N; -fun eukaryotic_A : A; -fun eulogist_N : N; -fun eulogistic_A : A; -fun eulogize_V2 : V2; -fun eulogy_N : N; -fun eunuch_N : N; -fun euphemism_N : N; -fun euphemistic_A : A; -fun euphemistically_Adv : Adv; -fun euphonic_A : A; -fun euphonious_A : A; -fun euphonium_N : N; -fun euphony_N : N; -fun euphorbium_N : N; -fun euphoria_N : N; -fun euphoriant_A : A; -fun euphoriant_N : N; -fun euphoric_A : A; -fun euphuism_N : N; -fun eupnea_N : N; -fun eurasian_A : A; -fun eurasian_N : N; -fun eurhythmics_N : N; -fun euro_N : N; -fun eurodollar_N : N; -fun european_A : A; -fun european_N : N; -fun europium_N : N; -fun eurypterid_N : N; -fun eurythmics_N : N; -fun eurythmy_N : N; -fun eusporangiate_A : A; -fun eusporangium_N : N; -fun eustachian_A : A; -fun eutectic_N : N; -fun euthanasia_N : N; -fun euthanize_V2 : V2; -fun euthenics_N : N; -fun eutherian_A : A; -fun eutrophic_A : A; -fun eutrophication_N : N; -fun evacuate_V2 : V2; -fun evacuation_N : N; -fun evacuee_N : N; -fun evade_V2 : V2; -fun evaluate_V : V; -fun evaluate_V2 : V2; -fun evaluation_N : N; -fun evaluative_A : A; -fun evaluator_N : N; -fun evanescence_N : N; -fun evanescent_A : A; -fun evangelical_A : A; -fun evangelicalism_N : N; -fun evangelism_N : N; -fun evangelist_N : N; -fun evangelistic_A : A; -fun evaporable_A : A; -fun evaporate_V : V; -fun evaporate_V2 : V2; -fun evaporate_VS : VS; -fun evaporated_A : A; -fun evaporation_N : N; -fun evaporative_A : A; -fun evaporite_N : N; -fun evasion_N : N; -fun evasive_A : A; -fun evasively_Adv : Adv; -fun evasiveness_N : N; -fun eve_N : N; -fun even_A : A; -fun even_Adv : Adv; -fun even_N : N; -fun even_V2 : V2; -fun even_as_Adv : Adv; -fun even_handed_A : A; -fun even_pinnate_A : A; -fun even_textured_A : A; -fun evenhanded_A : A; -fun evening_N : N; -fun evening_snow_N : N; -fun evenly_Adv : Adv; -fun evenness_N : N; -fun evensong_N : N; -fun event_N : N; -fun eventful_A : A; -fun eventide_N : N; -fun eventration_N : N; -fun eventual_A : A; -fun eventuality_N : N; -fun ever_AdV : AdV; -fun ever_Adv : Adv; -fun ever_present_A : A; -fun evergreen_A : A; -fun evergreen_N : N; -fun everlasting_A : A; -fun everlasting_N : N; -fun everlastingly_Adv : Adv; -fun everlastingness_N : N; -fun evermore_Adv : Adv; -fun eversion_N : N; -fun every_A : A; -fun every_Det : Det; -fun every_inch_Adv : Adv; -fun every_last_A : A; -fun every_so_often_Adv : Adv; -fun everybody_NP : NP; -fun everyday_A : A; -fun everyman_N : N; -fun everyone_NP : NP; -fun everyplace_Adv : Adv; -fun everything_NP : NP; -fun everywhere_Adv : Adv; -fun evicerate_V2 : V2; -fun evict_V2 : V2; -fun eviction_N : N; -fun evidence_N : N; -fun evidence_V2 : V2; -fun evidenced_A : A; -fun evident_A : A; -fun evidential_A : A; -fun evidentiary_A : A; -fun evil_A : A; -fun evil_N : N; -fun evil_doer_N : N; -fun evil_looking_A : A; -fun evil_minded_A : A; -fun evil_minded_A : A; -fun evince_V2 : V2; -fun eviscerate_A : A; -fun eviscerate_V2 : V2; -fun evisceration_N : N; -fun evitable_A : A; -fun evocation_N : N; -fun evocative_A : A; -fun evoke_V2 : V2; -fun evolution_N : N; -fun evolutionarily_Adv : Adv; -fun evolutionary_A : A; -fun evolutionist_N : N; -fun evolve_V : V; -fun evolve_V2 : V2; -fun ewe_N : N; -fun ewer_N : N; -fun ex_boyfriend_N : N; -fun ex_cathedra_Adv : Adv; -fun ex_directory_A : A; -fun ex_directory_A : A; -fun ex_gambler_N : N; -fun ex_gratia_A : A; -fun ex_husband_N : N; -fun ex_mayor_N : N; -fun ex_officio_A : A; -fun ex_officio_Adv : Adv; -fun ex_post_facto_A : A; -fun ex_president_N : N; -fun ex_service_A : A; -fun ex_serviceman_N : N; -fun ex_spouse_N : N; -fun ex_wife_N : N; -fun exabit_N : N; -fun exabyte_N : N; -fun exacerbate_V2 : V2; -fun exacerbation_N : N; -fun exact_A : A; -fun exact_V2 : V2; -fun exacta_N : N; -fun exacting_A : A; -fun exaction_N : N; -fun exactitude_N : N; -fun exactness_N : N; -fun exaggerate_V : V; -fun exaggerate_V2 : V2; -fun exaggerated_A : A; -fun exaggeration_N : N; -fun exalt_V2 : V2; -fun exaltation_N : N; -fun exalted_A : A; -fun exam_N : N; -fun examen_N : N; -fun examination_N : N; -fun examine_V2 : V2; -fun examiner_N : N; -fun example_N : N; -fun exanthem_N : N; -fun exarch_N : N; -fun exasperate_V2 : V2; -fun exasperated_A : A; -fun exasperating_A : A; -fun exasperatingly_Adv : Adv; -fun exasperation_N : N; -fun exaugural_A : A; -fun exbibit_N : N; -fun excavate_V : V; -fun excavate_V2 : V2; -fun excavation_N : N; -fun excavator_N : N; -fun exceed_V2 : V2; -fun exceedance_N : N; -fun exceeding_A : A; -fun exceedingly_Adv : Adv; -fun excel_V : V; -fun excel_V2 : V2; -fun excellence_N : N; -fun excellency_N : N; -fun excellent_A : A; -fun excellently_Adv : Adv; -fun excelsior_N : N; -fun except_Prep : Prep; -fun except_V2 : V2; -fun exception_N : N; -fun exceptionable_A : A; -fun exceptional_A : A; -fun exceptionally_Adv : Adv; -fun excerpt_N : N; -fun excess_A : A; -fun excess_N : N; -fun excessive_A : A; -fun excessively_Adv : Adv; -fun exchange_N : N; -fun exchange_V2 : V2; -fun exchangeability_N : N; -fun exchangeable_A : A; -fun exchanged_A : A; -fun exchanger_N : N; -fun exchequer_N : N; -fun excise_N : N; -fun excise_V2 : V2; -fun exciseman_N : N; -fun excision_N : N; -fun excitability_N : N; -fun excitable_A : A; -fun excitant_A : A; -fun excitation_N : N; -fun excite_V2 : V2; -fun excited_A : A; -fun excitedly_Adv : Adv; -fun excitement_N : N; -fun exciting_A : A; -fun excitingly_Adv : Adv; -fun exclaim_V : V; -fun exclaim_V2 : V2; -fun exclamation_N : N; -fun exclamatory_A : A; -fun exclude_V2 : V2; -fun exclusion_N : N; -fun exclusive_A : A; -fun exclusive_N : N; -fun excogitate_V2 : V2; -fun excogitation_N : N; -fun excogitative_A : A; -fun excogitator_N : N; -fun excommunicate_V2 : V2; -fun excommunication_N : N; -fun excoriate_V2 : V2; -fun excoriation_N : N; -fun excrement_N : N; -fun excrescence_N : N; -fun excrescent_A : A; -fun excrete_V2 : V2; -fun excretion_N : N; -fun excretory_A : A; -fun excruciating_A : A; -fun exculpate_V2 : V2; -fun exculpation_N : N; -fun exculpatory_A : A; -fun excursion_N : N; -fun excursionist_N : N; -fun excusable_A : A; -fun excusably_Adv : Adv; -fun excuse_N : N; -fun excuse_V2 : V2; -fun excused_A : A; -fun execrable_A : A; -fun execrate_V2 : V2; -fun execration_N : N; -fun executability_N : N; -fun executant_N : N; -fun execute_V2 : V2; -fun executed_A : A; -fun execution_N : N; -fun executioner_N : N; -fun executive_A : A; -fun executive_N : N; -fun executor_N : N; -fun executrix_N : N; -fun exegesis_N : N; -fun exegete_N : N; -fun exegetic_A : A; -fun exemplar_N : N; -fun exemplary_A : A; -fun exemplification_N : N; -fun exemplify_V2 : V2; -fun exemplifying_A : A; -fun exempt_A : A; -fun exempt_V2 : V2; -fun exempt_V2V : V2V; -fun exemption_N : N; -fun exenteration_N : N; -fun exercise_N : N; -fun exercise_V : V; -fun exercise_V2 : V2; -fun exercise_VV : VV; -fun exergonic_A : A; -fun exert_V2 : V2; -fun exertion_N : N; -fun exfoliation_N : N; -fun exhalation_N : N; -fun exhale_V : V; -fun exhale_V2 : V2; -fun exhaust_N : N; -fun exhaust_V2 : V2; -fun exhaust_pipe_N : N; -fun exhausted_A : A; -fun exhaustible_A : A; -fun exhausting_A : A; -fun exhaustion_N : N; -fun exhaustive_A : A; -fun exhibit_N : N; -fun exhibit_V2 : V2; -fun exhibition_N : N; -fun exhibitioner_N : N; -fun exhibitionism_N : N; -fun exhibitionist_N : N; -fun exhibitionistic_A : A; -fun exhibitor_N : N; -fun exhilarate_V2 : V2; -fun exhilarating_A : A; -fun exhilaration_N : N; -fun exhort_V2 : V2; -fun exhort_VS : VS; -fun exhortation_N : N; -fun exhortative_A : A; -fun exhumation_N : N; -fun exhume_V2 : V2; -fun exigency_N : N; -fun exigent_A : A; -fun exiguous_A : A; -fun exile_N : N; -fun exile_V2 : V2; -fun exilic_A : A; -fun exist_V : V; -fun exist_V2V : V2V; -fun existence_N : N; -fun existent_A : A; -fun existential_A : A; -fun existentialism_N : N; -fun existentialist_A : A; -fun existentialist_N : N; -fun existing_A : A; -fun exit_N : N; -fun exit_V : V; -fun exobiology_N : N; -fun exocentric_A : A; -fun exocrine_A : A; -fun exode_N : N; -fun exodontic_A : A; -fun exodontics_N : N; -fun exodontist_N : N; -fun exodus_N : N; -fun exoergic_A : A; -fun exogamous_A : A; -fun exogamy_N : N; -fun exogenous_A : A; -fun exomphalos_N : N; -fun exon_N : N; -fun exonerate_V2 : V2; -fun exoneration_N : N; -fun exonuclease_N : N; -fun exophthalmos_N : N; -fun exorbitance_N : N; -fun exorbitant_A : A; -fun exorbitantly_Adv : Adv; -fun exorcise_V2 : V2; -fun exorcism_N : N; -fun exorcist_N : N; -fun exorcize_V2 : V2; -fun exordium_N : N; -fun exoskeleton_N : N; -fun exosphere_N : N; -fun exostosis_N : N; -fun exoteric_A : A; -fun exotherm_N : N; -fun exothermic_A : A; -fun exotic_A : A; -fun exoticism_N : N; -fun exotoxin_N : N; -fun expand_V : V; -fun expand_V2 : V2; -fun expand_V2V : V2V; -fun expandable_A : A; -fun expanded_A : A; -fun expanse_N : N; -fun expansion_N : N; -fun expansionism_N : N; -fun expansionist_A : A; -fun expansive_A : A; -fun expansively_Adv : Adv; -fun expansiveness_N : N; -fun expatiate_V : V; -fun expatiation_N : N; -fun expatriate_N : N; -fun expatriate_V2 : V2; -fun expect_Prep : Prep; -fun expect_V : V; -fun expect_V2 : V2; -fun expect_V2V : V2V; -fun expect_VS : VS; -fun expect_VV : VV; -fun expectable_A : A; -fun expectancy_N : N; -fun expectant_A : A; -fun expectantly_Adv : Adv; -fun expectation_N : N; -fun expected_A : A; -fun expectedness_N : N; -fun expectorant_N : N; -fun expectorate_V : V; -fun expectorate_V2 : V2; -fun expectoration_N : N; -fun expedience_N : N; -fun expediency_N : N; -fun expedient_A : A; -fun expedient_N : N; -fun expediently_Adv : Adv; -fun expedite_V2 : V2; -fun expedition_N : N; -fun expeditionary_A : A; -fun expeditious_A : A; -fun expel_V2 : V2; -fun expend_V2 : V2; -fun expendable_A : A; -fun expending_N : N; -fun expenditure_N : N; -fun expense_N : N; -fun expensive_A : A; -fun expensively_Adv : Adv; -fun expensiveness_N : N; -fun experience_N : N; -fun experience_V2 : V2; -fun experienced_A : A; -fun experiential_A : A; -fun experiment_N : N; -fun experiment_V : V; -fun experiment_V2 : V2; -fun experimental_A : A; -fun experimentalism_N : N; -fun experimentally_Adv : Adv; -fun experimentation_N : N; -fun experimenter_N : N; -fun expert_A : A; -fun expert_N : N; -fun expertise_N : N; -fun expertly_Adv : Adv; -fun expertness_N : N; -fun expiable_A : A; -fun expiate_V2 : V2; -fun expiation_N : N; -fun expiatory_A : A; -fun expiration_N : N; -fun expiratory_A : A; -fun expire_V : V; -fun expire_V2 : V2; -fun expire_VS : VS; -fun expired_A : A; -fun expiry_N : N; -fun explain_V2 : V2; -fun explain_VS : VS; -fun explainable_A : A; -fun explanans_N : N; -fun explanation_N : N; -fun explanatory_A : A; -fun expletive_N : N; -fun explicable_A : A; -fun explicandum_N : N; -fun explicate_V2 : V2; -fun explication_N : N; -fun explicit_A : A; -fun explicitly_Adv : Adv; -fun explicitness_N : N; -fun explode_V : V; -fun explode_V2 : V2; -fun exploded_A : A; -fun exploit_N : N; -fun exploit_V2 : V2; -fun exploitation_N : N; -fun exploitative_A : A; -fun exploited_A : A; -fun exploiter_N : N; -fun exploration_N : N; -fun exploratory_A : A; -fun explore_V2 : V2; -fun explore_VS : VS; -fun explorer_N : N; -fun explosion_N : N; -fun explosive_A : A; -fun explosive_N : N; -fun explosively_Adv : Adv; -fun expo_N : N; -fun exponent_N : N; -fun exponential_A : A; -fun exponential_N : N; -fun exponentially_Adv : Adv; -fun exponentiation_N : N; -fun export_N : N; -fun export_V : V; -fun export_V2 : V2; -fun exportable_A : A; -fun exportation_N : N; -fun exporter_N : N; -fun exporting_N : N; -fun expose_N : N; -fun expose_V : V; -fun expose_V2 : V2; -fun exposed_A : A; -fun exposition_N : N; -fun expositor_N : N; -fun expository_A : A; -fun expostulate_V : V; -fun expostulation_N : N; -fun exposure_N : N; -fun expound_V2 : V2; -fun expound_VS : VS; -fun express_A : A; -fun express_Adv : Adv; -fun express_N : N; -fun express_V2 : V2; -fun expressed_A : A; -fun expressible_A : A; -fun expression_N : N; -fun expressionism_N : N; -fun expressionist_A : A; -fun expressionist_N : N; -fun expressionless_A : A; -fun expressive_A : A; -fun expressively_Adv : Adv; -fun expressiveness_N : N; -fun expressly_Adv : Adv; -fun expressway_N : N; -fun expropriate_V2 : V2; -fun expropriation_N : N; -fun expulsion_N : N; -fun expunction_N : N; -fun expunge_V2 : V2; -fun expurgate_V2 : V2; -fun expurgated_A : A; -fun expurgation_N : N; -fun expurgator_N : N; -fun exquisite_A : A; -fun exquisiteness_N : N; -fun extant_A : A; -fun extemporaneous_A : A; -fun extemporaneously_Adv : Adv; -fun extemporary_A : A; -fun extempore_A : A; -fun extempore_Adv : Adv; -fun extemporization_N : N; -fun extemporize_V : V; -fun extemporize_V2 : V2; -fun extend_V : V; -fun extend_V2 : V2; -fun extended_A : A; -fun extendible_A : A; -fun extensile_A : A; -fun extension_N : N; -fun extensional_A : A; -fun extensive_A : A; -fun extensively_Adv : Adv; -fun extent_N : N; -fun extenuate_V2 : V2; -fun extenuating_A : A; -fun extenuation_N : N; -fun exterior_A : A; -fun exterior_N : N; -fun exteriorize_V2 : V2; -fun exterminable_A : A; -fun exterminate_V2 : V2; -fun extermination_N : N; -fun exterminator_N : N; -fun extern_N : N; -fun external_A : A; -fun external_N : N; -fun externalization_N : N; -fun externalize_V2 : V2; -fun externally_Adv : Adv; -fun exteroception_N : N; -fun exteroceptive_A : A; -fun exteroceptor_N : N; -fun exterritorial_A : A; -fun extinct_A : A; -fun extinction_N : N; -fun extinguish_V2 : V2; -fun extinguishable_A : A; -fun extinguished_A : A; -fun extinguisher_N : N; -fun extirpate_V2 : V2; -fun extirpation_N : N; -fun extol_V2 : V2; -fun extort_V : V; -fun extort_V2 : V2; -fun extort_VS : VS; -fun extortion_N : N; -fun extortionate_A : A; -fun extra_A : A; -fun extra_Adv : Adv; -fun extra_N : N; -fun extracellular_A : A; -fun extract_N : N; -fun extract_V2 : V2; -fun extractable_A : A; -fun extraction_N : N; -fun extractor_N : N; -fun extracurricular_A : A; -fun extradite_V2 : V2; -fun extradition_N : N; -fun extrados_N : N; -fun extragalactic_A : A; -fun extrajudicial_A : A; -fun extralegal_A : A; -fun extralinguistic_A : A; -fun extramarital_A : A; -fun extramural_A : A; -fun extraneous_A : A; -fun extraneousness_N : N; -fun extraordinaire_A : A; -fun extraordinariness_N : N; -fun extraordinary_A : A; -fun extrapolate_V : V; -fun extrapolate_V2 : V2; -fun extrapolation_N : N; -fun extrasensory_A : A; -fun extrasystole_N : N; -fun extrasystolic_A : A; -fun extraterrestrial_A : A; -fun extraterritorial_A : A; -fun extravagance_N : N; -fun extravagant_A : A; -fun extravagantly_Adv : Adv; -fun extravaganza_N : N; -fun extravasation_N : N; -fun extraversion_N : N; -fun extreme_A : A; -fun extreme_N : N; -fun extremely_Adv : Adv; -fun extremeness_N : N; -fun extremism_N : N; -fun extremist_A : A; -fun extremist_N : N; -fun extremity_N : N; -fun extremum_N : N; -fun extricable_A : A; -fun extricate_V2 : V2; -fun extrication_N : N; -fun extrinsic_A : A; -fun extropic_A : A; -fun extropy_N : N; -fun extrospective_A : A; -fun extroversion_N : N; -fun extroversive_A : A; -fun extrovert_A : A; -fun extrovert_N : N; -fun extroverted_A : A; -fun extrovertish_A : A; -fun extrude_V2 : V2; -fun extrusion_N : N; -fun extrusive_A : A; -fun exuberance_N : N; -fun exuberant_A : A; -fun exuberantly_Adv : Adv; -fun exudate_N : N; -fun exudation_N : N; -fun exude_V : V; -fun exude_V2 : V2; -fun exult_V : V; -fun exultant_A : A; -fun exultantly_Adv : Adv; -fun exultation_N : N; -fun exurbia_N : N; -fun exuviae_N : N; -fun exuvial_A : A; -fun eyas_N : N; -fun eye_N : N; -fun eye_V2 : V2; -fun eye_beaming_N : N; -fun eye_catcher_N : N; -fun eye_catching_A : A; -fun eye_deceiving_A : A; -fun eye_lotion_N : N; -fun eye_opener_N : N; -fun eye_shadow_N : N; -fun eyeball_N : N; -fun eyeball_V2 : V2; -fun eyebath_N : N; -fun eyebrow_N : N; -fun eyecatching_A : A; -fun eyecup_N : N; -fun eyed_A : A; -fun eyedness_N : N; -fun eyedrop_N : N; -fun eyeful_N : N; -fun eyeglass_N : N; -fun eyelash_N : N; -fun eyeless_A : A; -fun eyelessness_N : N; -fun eyelet_N : N; -fun eyelid_N : N; -fun eyelike_A : A; -fun eyeliner_N : N; -fun eyepatch_N : N; -fun eyepiece_N : N; -fun eyes_N : N; -fun eyes_only_A : A; -fun eyeshadow_N : N; -fun eyeshot_N : N; -fun eyesight_N : N; -fun eyesore_N : N; -fun eyespot_N : N; -fun eyestrain_N : N; -fun eyetooth_N : N; -fun eyewash_N : N; -fun eyewitness_N : N; -fun eyrie_N : N; -fun eyrir_N : N; -fun eyry_N : N; -fun fa_N : N; -fun fab_A : A; -fun fabian_A : A; -fun fabian_N : N; -fun fable_N : N; -fun fabled_A : A; -fun fabric_N : N; -fun fabricate_V2 : V2; -fun fabricated_A : A; -fun fabrication_N : N; -fun fabulist_N : N; -fun fabulous_A : A; -fun fabulously_Adv : Adv; -fun facade_N : N; -fun face_N : N; -fun face_V : V; -fun face_V2 : V2; -fun face_ache_N : N; -fun face_card_N : N; -fun face_cloth_N : N; -fun face_cream_N : N; -fun face_lift_N : N; -fun face_lifting_N : N; -fun face_off_N : N; -fun face_pack_N : N; -fun face_powder_N : N; -fun face_saver_N : N; -fun face_saving_A : A; -fun face_saving_A : A; -fun face_saving_N : N; -fun face_to_face_A : A; -fun face_to_face_Adv : Adv; -fun face_to_face_Adv : Adv; -fun faced_A : A; -fun faceless_A : A; -fun faceplate_N : N; -fun facer_N : N; -fun facet_N : N; -fun faceted_A : A; -fun facetious_A : A; -fun facetiously_Adv : Adv; -fun facetiousness_N : N; -fun facia_N : N; -fun facial_A : A; -fun facial_N : N; -fun facially_Adv : Adv; -fun facile_A : A; -fun facilitate_V2 : V2; -fun facilitation_N : N; -fun facilitative_A : A; -fun facilitator_N : N; -fun facilitatory_A : A; -fun facility_N : N; -fun facing_N : N; -fun facsimile_N : N; -fun fact_N : N; -fun fact_finding_A : A; -fun fact_finding_A : A; -fun faction_N : N; -fun factious_A : A; -fun factitious_A : A; -fun factoid_N : N; -fun factor_N : N; -fun factor_analytical_A : A; -fun factorial_A : A; -fun factorial_N : N; -fun factorization_N : N; -fun factorize_V2 : V2; -fun factory_N : N; -fun factory_made_A : A; -fun factotum_N : N; -fun factual_A : A; -fun factuality_N : N; -fun factually_Adv : Adv; -fun facula_N : N; -fun facultative_A : A; -fun faculty_N : N; -fun fad_N : N; -fun faddily_Adv : Adv; -fun faddish_A : A; -fun faddishly_Adv : Adv; -fun faddist_N : N; -fun faddy_A : A; -fun fade_N : N; -fun fade_V : V; -fun fade_V2 : V2; -fun fadeout_N : N; -fun fado_N : N; -fun faecal_A : A; -fun faerie_N : N; -fun faery_N : N; -fun fag_N : N; -fun fag_V : V; -fun fag_V2 : V2; -fun fag_end_N : N; -fun faggot_N : N; -fun fagot_N : N; -fun fagoting_N : N; -fun faience_N : N; -fun fail_N : N; -fun fail_V : V; -fun fail_V2 : V2; -fun fail_V2V : V2V; -fun fail_VS : VS; -fun fail_VV : VV; -fun fail_safe_A : A; -fun fail_safe_A : A; -fun fail_safe_N : N; -fun failing_A : A; -fun failing_N : N; -fun faille_N : N; -fun failure_N : N; -fun fain_Adv : Adv; -fun faineance_N : N; -fun faineant_A : A; -fun faint_A : A; -fun faint_N : N; -fun faint_V : V; -fun faint_hearted_A : A; -fun faintheartedness_N : N; -fun faintly_Adv : Adv; -fun faintness_N : N; -fun fair_A : A; -fun fair_Adv : Adv; -fun fair_N : N; -fun fair_and_square_A : A; -fun fair_minded_A : A; -fun fair_minded_A : A; -fun fairground_N : N; -fun fairish_A : A; -fun fairlead_N : N; -fun fairly_Adv : Adv; -fun fairness_N : N; -fun fairway_N : N; -fun fairy_N : N; -fun fairyland_N : N; -fun fairytale_N : N; -fun fait_accompli_N : N; -fun faith_N : N; -fun faith_healing_N : N; -fun faithful_A : A; -fun faithful_N : N; -fun faithfully_Adv : Adv; -fun faithfulness_N : N; -fun faithless_A : A; -fun faithlessly_Adv : Adv; -fun faithlessness_N : N; -fun fake_A : A; -fun fake_N : N; -fun fake_V2 : V2; -fun fakery_N : N; -fun fakir_N : N; -fun falafel_N : N; -fun falangist_N : N; -fun falcate_A : A; -fun falchion_N : N; -fun falcon_N : N; -fun falcon_gentle_N : N; -fun falconer_N : N; -fun falconine_A : A; -fun falconry_N : N; -fun fall_N : N; -fun fall_V : V; -fun fall_V2 : V2; -fun fall_VA : VA; -fun fall_VS : VS; -fun fallacious_A : A; -fun fallaciousness_N : N; -fun fallacy_N : N; -fun fallboard_N : N; -fun fallen_A : A; -fun faller_N : N; -fun fallibility_N : N; -fun fallible_A : A; -fun falling_A : A; -fun fallopian_A : A; -fun fallout_N : N; -fun fallow_A : A; -fun fallow_N : N; -fun fallow_deer_N : N; -fun falls_N : N; -fun false_A : A; -fun false_Adv : Adv; -fun falsehood_N : N; -fun falsely_Adv : Adv; -fun falseness_N : N; -fun falsetto_A : A; -fun falsetto_N : N; -fun falsie_N : N; -fun falsification_N : N; -fun falsifier_N : N; -fun falsify_V2 : V2; -fun falsity_N : N; -fun falter_V : V; -fun falter_V2 : V2; -fun faltering_A : A; -fun falteringly_Adv : Adv; -fun fame_N : N; -fun fame_V2 : V2; -fun famed_A : A; -fun familial_A : A; -fun familiar_A : A; -fun familiar_N : N; -fun familiarity_N : N; -fun familiarization_N : N; -fun familiarize_V2 : V2; -fun familiarizing_A : A; -fun familiarly_Adv : Adv; -fun family_N : N; -fun family_bible_PN : PN; -fun famine_N : N; -fun famish_V : V; -fun famish_V2 : V2; -fun famished_A : A; -fun famotidine_N : N; -fun famous_A : A; -fun famously_Adv : Adv; -fun famulus_N : N; -fun fan_N : N; -fun fan_V : V; -fun fan_V2 : V2; -fun fan_belt_N : N; -fun fan_leaved_A : A; -fun fan_shaped_A : A; -fun fanaloka_N : N; -fun fanatic_A : A; -fun fanatic_N : N; -fun fanatical_A : A; -fun fanatically_Adv : Adv; -fun fanaticism_N : N; -fun fancier_N : N; -fun fanciful_A : A; -fun fancifully_Adv : Adv; -fun fancy_A : A; -fun fancy_N : N; -fun fancy_V2 : V2; -fun fancy_VS : VS; -fun fancy_free_A : A; -fun fancy_free_A : A; -fun fandango_N : N; -fun fandom_N : N; -fun fanfare_N : N; -fun fang_N : N; -fun fang_like_A : A; -fun fanged_A : A; -fun fanion_N : N; -fun fanjet_N : N; -fun fanlight_N : N; -fun fanlike_A : A; -fun fanned_A : A; -fun fanny_N : N; -fun fantail_N : N; -fun fantan_N : N; -fun fantasia_N : N; -fun fantasist_N : N; -fun fantasize_V : V; -fun fantast_N : N; -fun fantastic_A : A; -fun fantastically_Adv : Adv; -fun fantasy_N : N; -fun fantods_N : N; -fun fao_N : N; -fun far_A : A; -fun far_Adv : Adv; -fun far_V2 : V2; -fun far_and_wide_Adv : Adv; -fun far_famed_A : A; -fun far_fetched_A : A; -fun far_flung_A : A; -fun far_flung_A : A; -fun far_left_A : A; -fun far_off_A : A; -fun far_out_A : A; -fun far_reaching_A : A; -fun far_seeing_A : A; -fun far_sighted_A : A; -fun farad_N : N; -fun farandole_N : N; -fun faraway_A : A; -fun farce_N : N; -fun farcical_A : A; -fun farcically_Adv : Adv; -fun fardel_N : N; -fun fare_N : N; -fun fare_V : V; -fun fare_stage_N : N; -fun fare_stage_N : N; -fun fare_thee_well_N : N; -fun farewell_N : N; -fun farfalle_N : N; -fun farfetched_A : A; -fun farina_N : N; -fun farinaceous_A : A; -fun farkleberry_N : N; -fun farm_N : N; -fun farm_V : V; -fun farm_V2 : V2; -fun farmer_N : N; -fun farmerette_N : N; -fun farmhand_N : N; -fun farmhouse_N : N; -fun farming_N : N; -fun farmland_N : N; -fun farmplace_N : N; -fun farmstead_N : N; -fun farmyard_N : N; -fun farness_N : N; -fun faro_N : N; -fun farrago_N : N; -fun farrier_N : N; -fun farrow_N : N; -fun farrow_V : V; -fun farseeing_A : A; -fun farsi_N : N; -fun farsighted_A : A; -fun fart_N : N; -fun fart_V : V; -fun farther_A : A; -fun farther_Adv : Adv; -fun farthermost_A : A; -fun farthest_Adv : Adv; -fun farthing_N : N; -fun farthingale_N : N; -fun fartlek_N : N; -fun fasces_N : N; -fun fascia_N : N; -fun fascicle_N : N; -fun fasciculation_N : N; -fun fascinate_V2 : V2; -fun fascinated_A : A; -fun fascinating_A : A; -fun fascinatingly_Adv : Adv; -fun fascination_N : N; -fun fascioliasis_N : N; -fun fasciolopsiasis_N : N; -fun fascism_N : N; -fun fascist_A : A; -fun fascist_N : N; -fun fascista_N : N; -fun fashion_N : N; -fun fashion_V : V; -fun fashion_V2 : V2; -fun fashionable_A : A; -fun fashionably_Adv : Adv; -fun fashioned_A : A; -fun fast_A : A; -fun fast_Adv : Adv; -fun fast_N : N; -fun fast_V : V; -fun fast_asleep_A : A; -fun fast_breaking_A : A; -fun fast_flying_A : A; -fun fast_paced_A : A; -fun fastball_N : N; -fun fasten_V : V; -fun fasten_V2 : V2; -fun fastened_A : A; -fun fastener_N : N; -fun fastening_N : N; -fun fastidious_A : A; -fun fastidiously_Adv : Adv; -fun fastidiousness_N : N; -fun fastigiate_A : A; -fun fastnacht_N : N; -fun fastness_N : N; -fun fat_A : A; -fun fat_N : N; -fun fat_V2 : V2; -fun fat_soluble_A : A; -fun fatal_A : A; -fun fatalism_N : N; -fun fatalist_A : A; -fun fatalist_N : N; -fun fatalistic_A : A; -fun fatality_N : N; -fun fatally_Adv : Adv; -fun fatback_N : N; -fun fate_N : N; -fun fate_V2 : V2; -fun fateful_A : A; -fun fatefully_Adv : Adv; -fun fathead_N : N; -fun father_N : N; -fun father_V2 : V2; -fun father_figure_N : N; -fun father_in_law_N : N; -fun father_in_law_N : N; -fun fatherhood_N : N; -fun fatherland_N : N; -fun fatherless_A : A; -fun fatherliness_N : N; -fun fatherly_A : A; -fun fathom_N : N; -fun fathom_V2 : V2; -fun fathomable_A : A; -fun fathomless_A : A; -fun fatigability_N : N; -fun fatigue_N : N; -fun fatigue_V2 : V2; -fun fatigue_party_N : N; -fun fatigues_N : N; -fun fatless_A : A; -fun fatness_N : N; -fun fatso_N : N; -fun fatten_V : V; -fun fatten_V2 : V2; -fun fattened_A : A; -fun fattening_A : A; -fun fattish_A : A; -fun fattism_N : N; -fun fatty_A : A; -fun fatuity_N : N; -fun fatuous_A : A; -fun fatuously_Adv : Adv; -fun fatuousness_N : N; -fun fatwa_N : N; -fun fatwah_N : N; -fun faubourg_N : N; -fun faucal_A : A; -fun fauces_N : N; -fun faucet_N : N; -fun fauld_N : N; -fun fault_N : N; -fun fault_V2 : V2; -fun fault_finder_N : N; -fun fault_finding_N : N; -fun faultfinding_A : A; -fun faultfinding_N : N; -fun faultily_Adv : Adv; -fun faultless_A : A; -fun faultlessly_Adv : Adv; -fun faultlessness_N : N; -fun faulty_A : A; -fun faun_N : N; -fun fauna_N : N; -fun fauteuil_N : N; -fun fauvism_N : N; -fun faux_pas_N : N; -fun favism_N : N; -fun favor_N : N; -fun favor_V : V; -fun favor_V2 : V2; -fun favor_VS : VS; -fun favorable_A : A; -fun favorableness_N : N; -fun favorably_Adv : Adv; -fun favored_A : A; -fun favorite_A : A; -fun favorite_N : N; -fun favoritism_N : N; -fun favour_N : N; -fun favour_V2 : V2; -fun favourable_A : A; -fun favourite_A : A; -fun favourite_N : N; -fun favouritism_N : N; -fun favus_N : N; -fun fawn_N : N; -fun fawn_V : V; -fun fawn_colored_A : A; -fun fax_V2 : V2; -fun faze_V2 : V2; -fun fealty_N : N; -fun fear_N : N; -fun fear_V : V; -fun fear_V2 : V2; -fun fear_VS : VS; -fun fearful_A : A; -fun fearfully_Adv : Adv; -fun fearfulness_N : N; -fun fearless_A : A; -fun fearlessly_Adv : Adv; -fun fearlessness_N : N; -fun fearsome_A : A; -fun fearsomely_Adv : Adv; -fun feasibility_N : N; -fun feasible_A : A; -fun feast_N : N; -fun feast_V : V; -fun feast_V2 : V2; -fun feast_day_N : N; -fun feasting_N : N; -fun feat_N : N; -fun feather_N : N; -fun feather_V2 : V2; -fun feather_boa_N : N; -fun featherbed_N : N; -fun featherbed_V2 : V2; -fun featherbedding_N : N; -fun featherbrained_A : A; -fun feathered_A : A; -fun featheredge_N : N; -fun featherfoil_N : N; -fun featherlike_A : A; -fun feathertop_N : N; -fun featherweight_N : N; -fun feathery_A : A; -fun feature_N : N; -fun feature_V2 : V2; -fun featured_A : A; -fun featureless_A : A; -fun febrile_A : A; -fun february_N : N; -fun feckless_A : A; -fun fecklessly_Adv : Adv; -fun fecklessness_N : N; -fun fecula_N : N; -fun feculence_N : N; -fun feculent_A : A; -fun fecund_A : A; -fun fecundity_N : N; -fun fed_N : N; -fun fedayeen_N : N; -fun fedelline_N : N; -fun federal_A : A; -fun federalism_N : N; -fun federalist_N : N; -fun federalization_N : N; -fun federally_Adv : Adv; -fun federate_A : A; -fun federate_V : V; -fun federate_V2 : V2; -fun federation_N : N; -fun fedora_N : N; -fun fee_N : N; -fun fee_V2 : V2; -fun feeble_A : A; -fun feeble_minded_A : A; -fun feeblemindedness_N : N; -fun feebleness_N : N; -fun feebly_Adv : Adv; -fun feed_N : N; -fun feed_V : V; -fun feed_V2 : V2; -fun feedback_N : N; -fun feeder_N : N; -fun feeding_N : N; -fun feeding_bottle_N : N; -fun feedlot_N : N; -fun feedstock_N : N; -fun feel_N : N; -fun feel_V : V; -fun feel_V2 : V2; -fun feel_VA : VA; -fun feel_VS : VS; -fun feeler_N : N; -fun feeling_A : A; -fun feeling_N : N; -fun feelingly_Adv : Adv; -fun feelings_N : N; -fun feetfirst_Adv : Adv; -fun feign_V2 : V2; -fun feigned_A : A; -fun feijoa_N : N; -fun feint_N : N; -fun feint_V : V; -fun feist_N : N; -fun feisty_A : A; -fun feldspar_N : N; -fun felicitate_V2 : V2; -fun felicitation_N : N; -fun felicitous_A : A; -fun felicitously_Adv : Adv; -fun felicity_N : N; -fun feline_A : A; -fun feline_N : N; -fun fell_A : A; -fun fell_N : N; -fun fell_V2 : V2; -fun fell_V2V : V2V; -fun fell_VA : VA; -fun fell_VS : VS; -fun fellah_N : N; -fun fellatio_N : N; -fun felloe_N : N; -fun fellow_N : N; -fun fellow_feeling_N : N; -fun fellow_traveller_N : N; -fun fellowship_N : N; -fun felo_de_se_N : N; -fun felon_N : N; -fun felonious_A : A; -fun felony_N : N; -fun felspar_N : N; -fun felt_N : N; -fun felted_A : A; -fun felucca_N : N; -fun felwort_N : N; -fun female_A : A; -fun female_N : N; -fun femaleness_N : N; -fun feminine_A : A; -fun feminine_N : N; -fun femininity_N : N; -fun feminism_N : N; -fun feminist_A : A; -fun feminist_N : N; -fun feminization_N : N; -fun femoral_A : A; -fun femtochemistry_N : N; -fun femtometer_N : N; -fun femtosecond_N : N; -fun femtovolt_N : N; -fun femur_N : N; -fun fen_N : N; -fun fence_N : N; -fun fence_V2 : V2; -fun fence_sitter_N : N; -fun fencelike_A : A; -fun fencer_N : N; -fun fencing_N : N; -fun fend_V : V; -fun fend_V2 : V2; -fun fender_N : N; -fun fender_bender_N : N; -fun fenestra_N : N; -fun fenestral_A : A; -fun fenestration_N : N; -fun fennel_N : N; -fun fenoprofen_N : N; -fun fenugreek_N : N; -fun feoff_N : N; -fun fer_de_lance_N : N; -fun feral_A : A; -fun fergusonite_N : N; -fun feria_N : N; -fun ferial_A : A; -fun fermata_N : N; -fun ferment_N : N; -fun ferment_V : V; -fun ferment_V2 : V2; -fun fermentable_A : A; -fun fermentation_N : N; -fun fermion_N : N; -fun fermium_N : N; -fun fern_N : N; -fun ferned_A : A; -fun fernless_A : A; -fun fernlike_A : A; -fun ferny_A : A; -fun ferocious_A : A; -fun ferociously_Adv : Adv; -fun ferociousness_N : N; -fun ferocity_N : N; -fun ferret_N : N; -fun ferret_V : V; -fun ferret_V2 : V2; -fun ferret_sized_A : A; -fun ferric_A : A; -fun ferricyanide_N : N; -fun ferrimagnetism_N : N; -fun ferrite_N : N; -fun ferritin_N : N; -fun ferrocerium_N : N; -fun ferroconcrete_N : N; -fun ferrocyanide_N : N; -fun ferromagnetic_A : A; -fun ferromagnetism_N : N; -fun ferrous_A : A; -fun ferrule_N : N; -fun ferry_N : N; -fun ferry_V : V; -fun ferry_V2 : V2; -fun ferryboat_N : N; -fun ferryman_N : N; -fun fertile_A : A; -fun fertility_N : N; -fun fertilizable_A : A; -fun fertilization_N : N; -fun fertilize_V2 : V2; -fun fertilizer_N : N; -fun ferule_N : N; -fun fervency_N : N; -fun fervent_A : A; -fun fervid_A : A; -fun fervour_N : N; -fun fescue_N : N; -fun fesse_N : N; -fun festal_A : A; -fun fester_N : N; -fun fester_V : V; -fun festering_N : N; -fun festination_N : N; -fun festival_N : N; -fun festive_A : A; -fun festivity_N : N; -fun festoon_N : N; -fun festoon_V2 : V2; -fun festschrift_N : N; -fun fetal_A : A; -fun fetch_N : N; -fun fetch_V : V; -fun fetch_V2 : V2; -fun fetching_A : A; -fun fete_N : N; -fun fete_V2 : V2; -fun fete_day_N : N; -fun feterita_N : N; -fun fetid_A : A; -fun fetish_N : N; -fun fetishism_N : N; -fun fetishist_N : N; -fun fetlock_N : N; -fun fetology_N : N; -fun fetometry_N : N; -fun fetoprotein_N : N; -fun fetoscope_N : N; -fun fetoscopy_N : N; -fun fetter_N : N; -fun fetter_V2 : V2; -fun fetterbush_N : N; -fun fettered_A : A; -fun fettle_N : N; -fun fettuccine_N : N; -fun fettuccine_alfredo_PN : PN; -fun fetus_N : N; -fun feud_N : N; -fun feudal_A : A; -fun feudalism_N : N; -fun feudally_Adv : Adv; -fun feudatory_A : A; -fun feudatory_N : N; -fun feude_V : V; -fun fever_N : N; -fun fevered_A : A; -fun feverfew_N : N; -fun feverish_A : A; -fun feverishly_Adv : Adv; -fun feverroot_N : N; -fun few_A : A; -fun few_N : N; -fun few_Num : Num; -fun fewer_A : A; -fun fewest_A : A; -fun fewness_N : N; -fun fey_A : A; -fun fez_N : N; -fun fiance_N : N; -fun fiancee_N : N; -fun fiasco_N : N; -fun fiat_N : N; -fun fib_N : N; -fun fib_V : V; -fun fibber_N : N; -fun fibbing_N : N; -fun fiber_N : N; -fun fiber_optic_A : A; -fun fiberboard_N : N; -fun fiberglass_N : N; -fun fiberscope_N : N; -fun fibre_N : N; -fun fibreboard_N : N; -fun fibreglass_N : N; -fun fibril_N : N; -fun fibrillation_N : N; -fun fibrillose_A : A; -fun fibrin_N : N; -fun fibrinase_N : N; -fun fibrinogen_N : N; -fun fibrinolysis_N : N; -fun fibrinopeptide_N : N; -fun fibrinous_A : A; -fun fibroadenoma_N : N; -fun fibroblast_N : N; -fun fibrocalcific_A : A; -fun fibrocartilage_N : N; -fun fibrocartilaginous_A : A; -fun fibroma_N : N; -fun fibromyositis_N : N; -fun fibrosis_N : N; -fun fibrositis_N : N; -fun fibrosity_N : N; -fun fibrous_A : A; -fun fibula_N : N; -fun fichu_N : N; -fun fickle_A : A; -fun fickleness_N : N; -fun fictile_A : A; -fun fiction_N : N; -fun fictional_A : A; -fun fictionalization_N : N; -fun fictitious_A : A; -fun fictitiously_Adv : Adv; -fun fictive_A : A; -fun fiddle_N : N; -fun fiddle_V2 : V2; -fun fiddleneck_N : N; -fun fiddler_N : N; -fun fiddlestick_N : N; -fun fiddling_A : A; -fun fidelity_N : N; -fun fidget_N : N; -fun fidget_V : V; -fun fidget_V2 : V2; -fun fidgety_A : A; -fun fiducial_A : A; -fun fiduciary_A : A; -fun fiduciary_N : N; -fun fief_N : N; -fun fiefdom_N : N; -fun field_N : N; -fun field_V : V; -fun field_V2 : V2; -fun field_crop_A : A; -fun field_hospital_N : N; -fun field_officer_N : N; -fun fielder_N : N; -fun fieldfare_N : N; -fun fielding_N : N; -fun fieldsman_N : N; -fun fieldstone_N : N; -fun fieldwork_N : N; -fun fieldworker_N : N; -fun fiend_N : N; -fun fiendish_A : A; -fun fierce_A : A; -fun fiercely_Adv : Adv; -fun fierceness_N : N; -fun fierily_Adv : Adv; -fun fieriness_N : N; -fun fiery_A : A; -fun fiesta_N : N; -fun fife_N : N; -fun fifteen_A : A; -fun fifteen_N : N; -fun fifteenth_A : A; -fun fifteenth_N : N; -fun fifth_A : A; -fun fifth_N : N; -fun fifthly_Adv : Adv; -fun fifties_N : N; -fun fiftieth_A : A; -fun fiftieth_N : N; -fun fifty_A : A; -fun fifty_N : N; -fun fifty_eight_A : A; -fun fifty_fifth_A : A; -fun fifty_five_A : A; -fun fifty_four_A : A; -fun fifty_nine_A : A; -fun fifty_one_A : A; -fun fifty_seven_A : A; -fun fifty_six_A : A; -fun fifty_three_A : A; -fun fifty_two_A : A; -fun fig_N : N; -fun fig_bird_N : N; -fun fig_leaf_N : N; -fun fig_shaped_A : A; -fun fight_N : N; -fun fight_V : V; -fun fight_V2 : V2; -fun fight_V2V : V2V; -fun fighter_N : N; -fun fighting_N : N; -fun figment_N : N; -fun figural_A : A; -fun figuration_N : N; -fun figurative_A : A; -fun figuratively_Adv : Adv; -fun figure_N : N; -fun figure_V : V; -fun figure_V2 : V2; -fun figure_V2V : V2V; -fun figure_VS : VS; -fun figure_out_V2 : V2; -fun figured_A : A; -fun figurehead_N : N; -fun figurine_N : N; -fun figwort_N : N; -fun fijian_A : A; -fun fijian_N : N; -fun filaggrin_N : N; -fun filament_N : N; -fun filamentous_A : A; -fun filar_A : A; -fun filaria_N : N; -fun filarial_A : A; -fun filariasis_N : N; -fun filariid_A : A; -fun filature_N : N; -fun filbert_N : N; -fun filch_V2 : V2; -fun file_N : N; -fun file_V : V; -fun file_V2 : V2; -fun file_like_A : A; -fun filefish_N : N; -fun filename_N : N; -fun filer_N : N; -fun filet_N : N; -fun filial_A : A; -fun filibuster_N : N; -fun filibuster_V : V; -fun filicide_N : N; -fun filigree_N : N; -fun filing_N : N; -fun filipino_A : A; -fun filipino_N : N; -fun fill_N : N; -fun fill_V : V; -fun fill_V2 : V2; -fun filled_A : A; -fun filler_N : N; -fun fillet_N : N; -fun fillet_V2 : V2; -fun filling_N : N; -fun fillip_N : N; -fun filly_N : N; -fun film_N : N; -fun film_V : V; -fun film_V2 : V2; -fun film_star_N : N; -fun filmable_A : A; -fun filmdom_N : N; -fun filmed_A : A; -fun filming_N : N; -fun filmy_A : A; -fun filovirus_N : N; -fun fils_N : N; -fun filter_N : N; -fun filter_V : V; -fun filter_V2 : V2; -fun filter_tipped_A : A; -fun filtertipped_A : A; -fun filth_N : N; -fun filthily_Adv : Adv; -fun filthiness_N : N; -fun filthy_A : A; -fun filtrate_N : N; -fun filtrate_V : V; -fun filtrate_V2 : V2; -fun filtration_N : N; -fun fimbria_N : N; -fun fimbriate_A : A; -fun fin_N : N; -fun fin_de_siecle_A : A; -fun finable_A : A; -fun finagle_V2 : V2; -fun finagler_N : N; -fun final_A : A; -fun final_N : N; -fun finale_N : N; -fun finalist_N : N; -fun finality_N : N; -fun finalization_N : N; -fun finalize_V2 : V2; -fun finally_Adv : Adv; -fun finance_N : N; -fun finance_V2 : V2; -fun financial_A : A; -fun financially_Adv : Adv; -fun financier_N : N; -fun financing_N : N; -fun finback_N : N; -fun finch_N : N; -fun find_N : N; -fun find_V : V; -fun find_V2 : V2; -fun find_V2V : V2V; -fun find_VS : VS; -fun finder_N : N; -fun finding_N : N; -fun findings_N : N; -fun fine_A : A; -fun fine_Adv : Adv; -fun fine_N : N; -fun fine_V2 : V2; -fun fine_leaved_A : A; -fun fine_looking_A : A; -fun fine_textured_A : A; -fun fine_tooth_A : A; -fun fine_toothed_A : A; -fun fineable_A : A; -fun finely_Adv : Adv; -fun fineness_N : N; -fun finer_A : A; -fun finery_N : N; -fun finespun_A : A; -fun finesse_N : N; -fun finesse_V2 : V2; -fun finger_N : N; -fun finger_V2 : V2; -fun finger_alphabet_N : N; -fun finger_bowl_N : N; -fun finger_painting_N : N; -fun finger_plate_N : N; -fun finger_pointing_N : N; -fun finger_post_N : N; -fun finger_roll_N : N; -fun fingerboard_N : N; -fun fingered_A : A; -fun fingering_N : N; -fun fingerless_A : A; -fun fingerling_N : N; -fun fingermark_N : N; -fun fingernail_N : N; -fun fingerpost_N : N; -fun fingerprint_N : N; -fun fingerprinting_N : N; -fun fingerstall_N : N; -fun fingertip_N : N; -fun finial_N : N; -fun finical_A : A; -fun finicky_A : A; -fun finis_N : N; -fun finish_N : N; -fun finish_V : V; -fun finish_V2 : V2; -fun finish_VA : VA; -fun finish_VS : VS; -fun finished_A : A; -fun finisher_N : N; -fun finite_A : A; -fun finitely_Adv : Adv; -fun finiteness_N : N; -fun fink_N : N; -fun finn_N : N; -fun finnan_N : N; -fun finnan_haddie_N : N; -fun finnan_haddock_N : N; -fun finnish_A : A; -fun finnish_N : N; -fun fiord_N : N; -fun fipple_N : N; -fun fir_N : N; -fun fir_cone_N : N; -fun fire_N : N; -fun fire_V : V; -fun fire_V2 : V2; -fun fire_alarm_N : N; -fun fire_brigade_N : N; -fun fire_control_N : N; -fun fire_eater_N : N; -fun fire_eater_N : N; -fun fire_engine_N : N; -fun fire_escape_N : N; -fun fire_extinguisher_N : N; -fun fire_fighter_N : N; -fun fire_hose_N : N; -fun fire_on_the_mountain_N : N; -fun fire_power_N : N; -fun fire_raising_N : N; -fun fire_retardant_A : A; -fun fire_walker_N : N; -fun fire_walking_N : N; -fun fire_watcher_N : N; -fun fire_watching_N : N; -fun firearm_N : N; -fun fireball_N : N; -fun firebase_N : N; -fun firebird_N : N; -fun fireboat_N : N; -fun firebomb_N : N; -fun firebox_N : N; -fun firebrand_N : N; -fun firebrat_N : N; -fun firebreak_N : N; -fun firebrick_N : N; -fun firebug_N : N; -fun fireclay_N : N; -fun firecracker_N : N; -fun firedamp_N : N; -fun firedog_N : N; -fun firefly_N : N; -fun fireguard_N : N; -fun firelight_N : N; -fun firelighter_N : N; -fun fireman_N : N; -fun fireplace_N : N; -fun fireplug_N : N; -fun firepower_N : N; -fun fireproof_A : A; -fun fireside_N : N; -fun firestone_N : N; -fun firestorm_N : N; -fun firetrap_N : N; -fun firewall_N : N; -fun firewater_N : N; -fun fireweed_N : N; -fun firewood_N : N; -fun firework_N : N; -fun firing_line_N : N; -fun firing_party_N : N; -fun firing_squad_N : N; -fun firkin_N : N; -fun firm_A : A; -fun firm_Adv : Adv; -fun firm_N : N; -fun firm_V : V; -fun firm_V2 : V2; -fun firmament_N : N; -fun firmamental_A : A; -fun firmness_N : N; -fun firmware_N : N; -fun first_A : A; -fun first_Adv : Adv; -fun first_N : N; -fun first_and_last_Adv : Adv; -fun first_class_A : A; -fun first_class_Adv : Adv; -fun first_come_first_serve_A : A; -fun first_hand_A : A; -fun first_hand_Adv : Adv; -fun first_nighter_N : N; -fun first_nighter_N : N; -fun first_rate_A : A; -fun first_rate_Adv : Adv; -fun first_rate_Adv : Adv; -fun first_rater_N : N; -fun first_string_A : A; -fun firstborn_A : A; -fun firstborn_N : N; -fun firsthand_A : A; -fun firsthand_Adv : Adv; -fun firth_N : N; -fun fisc_N : N; -fun fiscal_A : A; -fun fiscally_Adv : Adv; -fun fish_N : N; -fun fish_V : V; -fun fish_V2 : V2; -fun fish_hook_N : N; -fun fish_knife_N : N; -fun fish_slice_N : N; -fun fishball_N : N; -fun fishbone_N : N; -fun fishbowl_N : N; -fun fishcake_N : N; -fun fisher_N : N; -fun fisherman_N : N; -fun fishery_N : N; -fun fisheye_A : A; -fun fishhook_N : N; -fun fishing_N : N; -fun fishing_line_N : N; -fun fishing_rod_N : N; -fun fishing_tackle_N : N; -fun fishmonger_N : N; -fun fishnet_N : N; -fun fishpaste_N : N; -fun fishplate_N : N; -fun fishpond_N : N; -fun fishwife_N : N; -fun fishy_A : A; -fun fissile_A : A; -fun fission_N : N; -fun fissionable_A : A; -fun fissiparity_N : N; -fun fissiparous_A : A; -fun fissure_N : N; -fun fissure_of_rolando_PN : PN; -fun fissure_of_sylvius_PN : PN; -fun fist_N : N; -fun fistfight_N : N; -fun fistmele_N : N; -fun fistula_N : N; -fun fistular_A : A; -fun fistulous_A : A; -fun fit_A : A; -fun fit_N : N; -fun fit_V : V; -fun fit_V2 : V2; -fun fitful_A : A; -fun fitfully_Adv : Adv; -fun fitfulness_N : N; -fun fitment_N : N; -fun fitness_N : N; -fun fitted_A : A; -fun fitted_out_A : A; -fun fitter_A : A; -fun fitter_N : N; -fun fitting_A : A; -fun fitting_N : N; -fun five_A : A; -fun five_N : N; -fun five_hitter_N : N; -fun five_hundred_A : A; -fun five_hundredth_A : A; -fun five_lobed_A : A; -fun five_membered_A : A; -fun five_needled_A : A; -fun five_petaled_A : A; -fun five_pointed_A : A; -fun five_sided_A : A; -fun five_spot_N : N; -fun five_year_old_A : A; -fun fivefold_A : A; -fun fivepence_N : N; -fun fivepenny_A : A; -fun fiver_N : N; -fun fives_N : N; -fun fix_N : N; -fun fix_V : V; -fun fix_V2 : V2; -fun fixate_V2 : V2; -fun fixation_N : N; -fun fixative_N : N; -fun fixed_A : A; -fun fixedly_Adv : Adv; -fun fixedness_N : N; -fun fixer_N : N; -fun fixer_upper_N : N; -fun fixings_N : N; -fun fixture_N : N; -fun fizgig_N : N; -fun fizz_N : N; -fun fizz_V : V; -fun fizz_V2 : V2; -fun fizzing_A : A; -fun fizzle_V : V; -fun fizzle_V2 : V2; -fun fizzy_A : A; -fun fjord_N : N; -fun flab_N : N; -fun flabbergast_V2 : V2; -fun flabbily_Adv : Adv; -fun flabbiness_N : N; -fun flabby_A : A; -fun flaccid_A : A; -fun flaccidity_N : N; -fun flag_N : N; -fun flag_V : V; -fun flag_V2 : V2; -fun flag_captain_N : N; -fun flag_day_N : N; -fun flagellant_N : N; -fun flagellate_A : A; -fun flagellate_N : N; -fun flagellate_V2 : V2; -fun flagellation_N : N; -fun flagellum_N : N; -fun flageolet_N : N; -fun flagfish_N : N; -fun flagging_N : N; -fun flagitious_A : A; -fun flagon_N : N; -fun flagpole_N : N; -fun flagrant_A : A; -fun flagrantly_Adv : Adv; -fun flagship_N : N; -fun flagstaff_N : N; -fun flagstone_N : N; -fun flail_N : N; -fun flail_V2 : V2; -fun flair_N : N; -fun flak_N : N; -fun flake_N : N; -fun flake_V : V; -fun flakiness_N : N; -fun flaky_A : A; -fun flambeau_N : N; -fun flamboyance_N : N; -fun flamboyant_A : A; -fun flamboyantly_Adv : Adv; -fun flame_N : N; -fun flame_V : V; -fun flame_colored_A : A; -fun flame_out_N : N; -fun flamen_N : N; -fun flamenco_N : N; -fun flameproof_A : A; -fun flamethrower_N : N; -fun flaming_A : A; -fun flamingo_N : N; -fun flammability_N : N; -fun flammable_A : A; -fun flan_N : N; -fun flange_N : N; -fun flank_N : N; -fun flank_V : V; -fun flank_V2 : V2; -fun flanker_N : N; -fun flannel_N : N; -fun flannelbush_N : N; -fun flannelette_N : N; -fun flap_N : N; -fun flap_V : V; -fun flap_V2 : V2; -fun flapjack_N : N; -fun flapper_N : N; -fun flare_N : N; -fun flare_V : V; -fun flare_V2 : V2; -fun flare_path_N : N; -fun flare_up_N : N; -fun flash_N : N; -fun flash_V : V; -fun flash_V2 : V2; -fun flash_forward_N : N; -fun flash_frozen_A : A; -fun flashback_N : N; -fun flashboard_N : N; -fun flashbulb_N : N; -fun flasher_N : N; -fun flashgun_N : N; -fun flashily_Adv : Adv; -fun flashiness_N : N; -fun flashing_N : N; -fun flashlight_N : N; -fun flashover_N : N; -fun flashpoint_N : N; -fun flashy_A : A; -fun flask_N : N; -fun flat_A : A; -fun flat_Adv : Adv; -fun flat_N : N; -fun flat_bottomed_A : A; -fun flat_bottomed_A : A; -fun flat_car_N : N; -fun flat_footed_A : A; -fun flat_footed_A : A; -fun flat_iron_N : N; -fun flat_out_Adv : Adv; -fun flat_topped_A : A; -fun flatbed_N : N; -fun flatbottom_A : A; -fun flatbread_N : N; -fun flatbrod_N : N; -fun flatcar_N : N; -fun flatfish_N : N; -fun flatfoot_N : N; -fun flathead_N : N; -fun flatiron_N : N; -fun flatlet_N : N; -fun flatly_Adv : Adv; -fun flatmate_N : N; -fun flatness_N : N; -fun flats_N : N; -fun flatten_V : V; -fun flatten_V2 : V2; -fun flatter_V2 : V2; -fun flatterer_N : N; -fun flattering_A : A; -fun flattery_N : N; -fun flattop_N : N; -fun flatulence_N : N; -fun flatulent_A : A; -fun flatware_N : N; -fun flatwork_N : N; -fun flatworm_N : N; -fun flaunt_N : N; -fun flaunt_V : V; -fun flaunt_V2 : V2; -fun flaunty_A : A; -fun flautist_N : N; -fun flavin_N : N; -fun flavivirus_N : N; -fun flavone_N : N; -fun flavonoid_N : N; -fun flavor_N : N; -fun flavorer_N : N; -fun flavorful_A : A; -fun flavorlessness_N : N; -fun flavorsomeness_N : N; -fun flavour_N : N; -fun flavour_V2 : V2; -fun flavouring_N : N; -fun flavourless_A : A; -fun flaw_N : N; -fun flaw_V2 : V2; -fun flawed_A : A; -fun flawless_A : A; -fun flawlessly_Adv : Adv; -fun flax_N : N; -fun flaxen_A : A; -fun flay_V2 : V2; -fun flea_N : N; -fun flea_bite_N : N; -fun flea_bitten_A : A; -fun fleabag_N : N; -fun fleabane_N : N; -fun fleapit_N : N; -fun fleawort_N : N; -fun flecainide_N : N; -fun fleck_N : N; -fun fleck_V2 : V2; -fun fledged_A : A; -fun fledgeling_N : N; -fun fledgling_A : A; -fun fledgling_N : N; -fun flee_V : V; -fun flee_V2 : V2; -fun fleece_N : N; -fun fleece_V2 : V2; -fun fleeceable_A : A; -fun fleecy_A : A; -fun fleer_N : N; -fun fleet_A : A; -fun fleet_N : N; -fun fleeting_A : A; -fun fleetness_N : N; -fun flemish_A : A; -fun flemish_N : N; -fun flesh_N : N; -fun flesh_colored_A : A; -fun flesh_eating_A : A; -fun flesh_wound_N : N; -fun fleshed_out_A : A; -fun fleshiness_N : N; -fun fleshly_A : A; -fun fleshy_A : A; -fun fleur_de_lis_N : N; -fun fleur_de_lis_N : N; -fun flex_N : N; -fun flex_V2 : V2; -fun flexibility_N : N; -fun flexible_A : A; -fun flexibly_Adv : Adv; -fun flexion_N : N; -fun flexuous_A : A; -fun flexure_N : N; -fun flibbertigibbet_N : N; -fun flick_N : N; -fun flick_V2 : V2; -fun flick_knife_N : N; -fun flicker_N : N; -fun flicker_V : V; -fun flickering_A : A; -fun flickertail_N : N; -fun flier_N : N; -fun flies_N : N; -fun flight_N : N; -fun flight_V2 : V2; -fun flighted_A : A; -fun flightiness_N : N; -fun flightless_A : A; -fun flighty_A : A; -fun flimsily_Adv : Adv; -fun flimsiness_N : N; -fun flimsy_A : A; -fun flimsy_N : N; -fun flinch_V : V; -fun flinders_N : N; -fun fling_N : N; -fun fling_V : V; -fun fling_V2 : V2; -fun flint_N : N; -fun flintlock_N : N; -fun flintstone_N : N; -fun flinty_A : A; -fun flip_A : A; -fun flip_N : N; -fun flip_V : V; -fun flip_V2 : V2; -fun flip_flap_Adv : Adv; -fun flip_flop_N : N; -fun flippancy_N : N; -fun flippant_A : A; -fun flippantly_Adv : Adv; -fun flipper_N : N; -fun flipper_like_A : A; -fun flirt_N : N; -fun flirt_V : V; -fun flirtation_N : N; -fun flirtatious_A : A; -fun flit_N : N; -fun flit_V : V; -fun flit_V2 : V2; -fun flitch_N : N; -fun float_N : N; -fun float_V : V; -fun float_V2 : V2; -fun float_VS : VS; -fun floatation_N : N; -fun floater_N : N; -fun floating_A : A; -fun floating_N : N; -fun floating_moss_N : N; -fun floatplane_N : N; -fun floccose_A : A; -fun flocculation_N : N; -fun floccule_N : N; -fun flocculent_A : A; -fun flock_N : N; -fun flock_V : V; -fun flock_V2V : V2V; -fun floe_N : N; -fun flog_V2 : V2; -fun flogger_N : N; -fun flogging_N : N; -fun flood_N : N; -fun flood_V : V; -fun flood_V2 : V2; -fun flood_tide_N : N; -fun floodgate_N : N; -fun floodhead_N : N; -fun floodlight_V2 : V2; -fun floodlit_A : A; -fun floodplain_N : N; -fun floor_N : N; -fun floor_V2 : V2; -fun floor_walker_N : N; -fun floorboard_N : N; -fun floored_A : A; -fun flooring_N : N; -fun floorwalker_N : N; -fun floozie_N : N; -fun floozy_N : N; -fun flop_Adv : Adv; -fun flop_N : N; -fun flop_V : V; -fun flop_V2 : V2; -fun flophouse_N : N; -fun floppy_A : A; -fun floral_A : A; -fun floret_N : N; -fun floricultural_A : A; -fun floriculture_N : N; -fun florid_A : A; -fun floridly_Adv : Adv; -fun florilegium_N : N; -fun florin_N : N; -fun florist_N : N; -fun floss_N : N; -fun floss_V : V; -fun floss_V2 : V2; -fun flotation_N : N; -fun flotilla_N : N; -fun flotsam_N : N; -fun flounce_N : N; -fun flounce_V : V; -fun flounce_V2 : V2; -fun flounder_N : N; -fun flounder_V : V; -fun flour_N : N; -fun flour_V2 : V2; -fun flourish_N : N; -fun flourish_V : V; -fun flourish_V2 : V2; -fun floury_A : A; -fun flout_V2 : V2; -fun flow_N : N; -fun flow_V : V; -fun flowage_N : N; -fun flower_N : N; -fun flower_V : V; -fun flower_girl_N : N; -fun flower_of_an_hour_N : N; -fun flowerbed_N : N; -fun flowered_A : A; -fun flowering_A : A; -fun flowerless_A : A; -fun flowerpot_N : N; -fun flowery_A : A; -fun floxuridine_N : N; -fun flu_N : N; -fun fluctuate_V : V; -fun fluctuating_A : A; -fun fluctuation_N : N; -fun flue_N : N; -fun fluency_N : N; -fun fluent_A : A; -fun fluently_Adv : Adv; -fun fluff_N : N; -fun fluff_V2 : V2; -fun fluffy_A : A; -fun flugelhorn_N : N; -fun fluid_A : A; -fun fluid_N : N; -fun fluidity_N : N; -fun fluidounce_N : N; -fun fluidram_N : N; -fun fluke_N : N; -fun flume_N : N; -fun flummery_N : N; -fun flummox_V2 : V2; -fun flunitrazepan_N : N; -fun flunk_V : V; -fun flunk_V2 : V2; -fun flunkey_N : N; -fun flunky_N : N; -fun fluorapatite_N : N; -fun fluoresce_V : V; -fun fluorescein_N : N; -fun fluorescence_N : N; -fun fluorescent_A : A; -fun fluorescent_N : N; -fun fluoridate_V2 : V2; -fun fluoridation_N : N; -fun fluoride_N : N; -fun fluoridization_N : N; -fun fluoridize_V2 : V2; -fun fluorine_N : N; -fun fluorite_N : N; -fun fluoroboride_N : N; -fun fluorocarbon_N : N; -fun fluorochrome_N : N; -fun fluoroform_N : N; -fun fluoroscope_N : N; -fun fluoroscopy_N : N; -fun fluorosis_N : N; -fun fluorouracil_N : N; -fun fluosilicate_N : N; -fun fluoxetine_N : N; -fun fluphenazine_N : N; -fun flurazepam_N : N; -fun flurbiprofen_N : N; -fun flurry_N : N; -fun flurry_V2 : V2; -fun flush_A : A; -fun flush_Adv : Adv; -fun flush_N : N; -fun flush_V : V; -fun flush_V2 : V2; -fun flush_seamed_A : A; -fun flushed_A : A; -fun fluster_N : N; -fun fluster_V2 : V2; -fun flustered_A : A; -fun flute_N : N; -fun flute_V : V; -fun flute_V2 : V2; -fun fluting_N : N; -fun flutist_N : N; -fun flutter_N : N; -fun flutter_V : V; -fun flutter_V2 : V2; -fun fluvastatin_N : N; -fun fluvial_A : A; -fun flux_N : N; -fun fluxmeter_N : N; -fun fly_A : A; -fun fly_N : N; -fun fly_V : V; -fun fly_V2 : V2; -fun fly_VS : VS; -fun fly_by_night_A : A; -fun fly_by_night_N : N; -fun fly_fish_V : V; -fun fly_fishing_N : N; -fun fly_fishing_N : N; -fun fly_swat_N : N; -fun fly_swatter_N : N; -fun flyaway_A : A; -fun flyblown_A : A; -fun flycatcher_N : N; -fun flyer_N : N; -fun flying_A : A; -fun flying_bomb_N : N; -fun flying_fish_N : N; -fun flying_fox_N : N; -fun flying_squad_N : N; -fun flyleaf_N : N; -fun flyover_N : N; -fun flypaper_N : N; -fun flypast_N : N; -fun flyspeck_N : N; -fun flytrap_N : N; -fun flyweight_N : N; -fun flywheel_N : N; -fun fm_N : N; -fun fo_N : N; -fun fo'c'sle_N : N; -fun foal_N : N; -fun foal_V : V; -fun foam_N : N; -fun foam_V : V; -fun foam_V2 : V2; -fun foam_rubber_N : N; -fun foamflower_N : N; -fun foaminess_N : N; -fun foaming_A : A; -fun foamy_A : A; -fun fob_N : N; -fun fob_V2 : V2; -fun focal_A : A; -fun focalization_N : N; -fun focally_Adv : Adv; -fun focus_N : N; -fun focus_V : V; -fun focus_V2 : V2; -fun focused_A : A; -fun fodder_N : N; -fun foe_N : N; -fun foetal_A : A; -fun foetus_N : N; -fun fog_N : N; -fun fog_V2 : V2; -fun fogbank_N : N; -fun fogbound_A : A; -fun fogey_N : N; -fun fogged_A : A; -fun foggy_A : A; -fun foghorn_N : N; -fun foglamp_N : N; -fun fogsignal_N : N; -fun fogyish_A : A; -fun fohn_N : N; -fun foible_N : N; -fun foil_N : N; -fun foil_V2 : V2; -fun foist_V2 : V2; -fun fold_N : N; -fun fold_V : V; -fun fold_V2 : V2; -fun foldable_A : A; -fun folder_N : N; -fun folderal_N : N; -fun folderol_N : N; -fun foldout_N : N; -fun foliaceous_A : A; -fun foliage_N : N; -fun foliate_A : A; -fun foliation_N : N; -fun folio_N : N; -fun foliolate_A : A; -fun folium_N : N; -fun folk_N : N; -fun folk_dance_N : N; -fun folklore_N : N; -fun folks_N : N; -fun folksong_N : N; -fun folksy_A : A; -fun folktale_N : N; -fun follicle_N : N; -fun follicular_A : A; -fun folliculitis_N : N; -fun follies_N : N; -fun follow_V : V; -fun follow_V2 : V2; -fun follow_VS : VS; -fun follow_on_N : N; -fun follow_on_N : N; -fun follow_through_N : N; -fun follow_through_N : N; -fun follow_up_N : N; -fun follow_up_N : N; -fun follower_N : N; -fun following_A : A; -fun following_N : N; -fun folly_N : N; -fun foment_V2 : V2; -fun fomentation_N : N; -fun fomite_N : N; -fun fond_A : A; -fun fondant_N : N; -fun fondle_V2 : V2; -fun fondler_N : N; -fun fondly_Adv : Adv; -fun fondness_N : N; -fun fondue_N : N; -fun font_N : N; -fun fontanelle_N : N; -fun food_N : N; -fun foodless_A : A; -fun foodstuff_N : N; -fun fool_N : N; -fun fool_V : V; -fun fool_V2 : V2; -fun foolery_N : N; -fun foolhardiness_N : N; -fun foolhardy_A : A; -fun fooling_A : A; -fun foolish_A : A; -fun foolishly_Adv : Adv; -fun foolishness_N : N; -fun foolproof_A : A; -fun foolscap_N : N; -fun foot_N : N; -fun foot_V : V; -fun foot_V2 : V2; -fun foot_and_mouth_A : A; -fun foot_and_mouth_N : N; -fun foot_bath_N : N; -fun foot_lambert_N : N; -fun foot_pound_N : N; -fun foot_pound_N : N; -fun foot_poundal_N : N; -fun foot_race_N : N; -fun foot_rot_N : N; -fun foot_shaped_A : A; -fun foot_ton_N : N; -fun footage_N : N; -fun football_N : N; -fun football_shaped_A : A; -fun footballer_N : N; -fun footbath_N : N; -fun footboard_N : N; -fun footbridge_N : N; -fun footcandle_N : N; -fun footed_A : A; -fun footedness_N : N; -fun footer_N : N; -fun footfall_N : N; -fun footfault_N : N; -fun foothill_N : N; -fun foothold_N : N; -fun footing_N : N; -fun footle_V : V; -fun footle_V2 : V2; -fun footless_A : A; -fun footlights_N : N; -fun footling_A : A; -fun footlocker_N : N; -fun footloose_A : A; -fun footman_N : N; -fun footmark_N : N; -fun footnote_N : N; -fun footpad_N : N; -fun footpath_N : N; -fun footplate_N : N; -fun footprint_N : N; -fun footrace_N : N; -fun footslog_V : V; -fun footslogger_N : N; -fun footsore_A : A; -fun footstep_N : N; -fun footsteps_of_spring_N : N; -fun footstool_N : N; -fun footsure_A : A; -fun footwall_N : N; -fun footwear_N : N; -fun footwork_N : N; -fun fop_N : N; -fun foppish_A : A; -fun foppishness_N : N; -fun for_Prep : Prep; -fun for_a_song_Adv : Adv; -fun for_all_practical_purposes_Adv : Adv; -fun for_dear_life_Adv : Adv; -fun for_example_Adv : Adv; -fun for_good_measure_Adv : Adv; -fun for_keeps_Adv : Adv; -fun for_love_or_money_Adv : Adv; -fun for_one_Adv : Adv; -fun for_short_Adv : Adv; -fun for_sure_A : A; -fun for_that_matter_Adv : Adv; -fun for_the_asking_Adv : Adv; -fun for_the_moment_Adv : Adv; -fun forage_N : N; -fun forage_V : V; -fun forager_N : N; -fun foraging_N : N; -fun foram_N : N; -fun foramen_N : N; -fun foray_N : N; -fun foray_V : V; -fun forbear_N : N; -fun forbear_V : V; -fun forbear_V2 : V2; -fun forbearance_N : N; -fun forbearing_A : A; -fun forbid_V2 : V2; -fun forbidden_A : A; -fun forbidding_A : A; -fun forbiddingly_Adv : Adv; -fun force_N : N; -fun force_V : V; -fun force_V2 : V2; -fun force_V2V : V2V; -fun force_VS : VS; -fun force_feed_V2 : V2; -fun force_feed_V2 : V2; -fun force_land_V : V; -fun force_land_V2 : V2; -fun force_majeure_N : N; -fun force_out_V2 : V2; -fun forced_A : A; -fun forceful_A : A; -fun forcefully_Adv : Adv; -fun forcefulness_N : N; -fun forceless_A : A; -fun forcemeat_N : N; -fun forceps_N : N; -fun forcible_A : A; -fun forcibly_Adv : Adv; -fun forcipate_A : A; -fun ford_N : N; -fun ford_V2 : V2; -fun fordable_A : A; -fun fore_A : A; -fun fore_Adv : Adv; -fun fore_N : N; -fun fore_and_aft_A : A; -fun fore_and_after_N : N; -fun fore_topmast_N : N; -fun fore_topsail_N : N; -fun forearm_N : N; -fun forearm_V2 : V2; -fun forebear_N : N; -fun forebode_V2 : V2; -fun foreboding_N : N; -fun forebrain_N : N; -fun forecast_N : N; -fun forecast_V : V; -fun forecast_V2 : V2; -fun forecast_VS : VS; -fun forecaster_N : N; -fun forecastle_N : N; -fun foreclose_V : V; -fun foreclose_V2 : V2; -fun foreclosure_N : N; -fun forecourt_N : N; -fun foredeck_N : N; -fun foredoom_V2 : V2; -fun forefather_N : N; -fun forefinger_N : N; -fun forefoot_N : N; -fun forefront_N : N; -fun foregather_V : V; -fun forego_V : V; -fun forego_V2 : V2; -fun foregoing_A : A; -fun foregone_A : A; -fun foreground_N : N; -fun forehand_A : A; -fun forehand_N : N; -fun forehanded_A : A; -fun forehead_N : N; -fun foreign_A : A; -fun foreign_born_A : A; -fun foreigner_N : N; -fun foreignness_N : N; -fun foreknow_V : V; -fun foreknow_V2 : V2; -fun foreknowledge_N : N; -fun foreland_N : N; -fun foreleg_N : N; -fun forelimb_N : N; -fun forelock_N : N; -fun foreman_N : N; -fun foremanship_N : N; -fun foremast_N : N; -fun foremost_A : A; -fun foremost_Adv : Adv; -fun foremother_N : N; -fun forename_N : N; -fun forenoon_N : N; -fun forensic_A : A; -fun forensics_N : N; -fun foreordain_V2 : V2; -fun foreordained_A : A; -fun forepaw_N : N; -fun foreperson_N : N; -fun foreplay_N : N; -fun forequarter_N : N; -fun forerunner_N : N; -fun foresail_N : N; -fun foresee_V2 : V2; -fun foreseeable_A : A; -fun foreshadow_V2 : V2; -fun foreshank_N : N; -fun foreshock_N : N; -fun foreshore_N : N; -fun foreshorten_V2 : V2; -fun foresight_N : N; -fun foreskin_N : N; -fun forest_N : N; -fun forestall_V2 : V2; -fun forestay_N : N; -fun forested_A : A; -fun forester_N : N; -fun forestiera_N : N; -fun forestry_N : N; -fun foreswear_V2 : V2; -fun foretaste_N : N; -fun foretell_V2 : V2; -fun forethought_N : N; -fun forethoughtful_A : A; -fun foretop_N : N; -fun forever_Adv : Adv; -fun forewarn_V2 : V2; -fun forewarning_N : N; -fun forewing_N : N; -fun forewoman_N : N; -fun foreword_N : N; -fun forfeit_N : N; -fun forfeit_V2 : V2; -fun forfeiture_N : N; -fun forgather_V : V; -fun forge_N : N; -fun forge_V : V; -fun forge_V2 : V2; -fun forger_N : N; -fun forgery_N : N; -fun forget_V : V; -fun forget_V2 : V2; -fun forget_VS : VS; -fun forget_me_not_N : N; -fun forget_me_not_N : N; -fun forgetful_A : A; -fun forgetfully_Adv : Adv; -fun forgetfulness_N : N; -fun forgettable_A : A; -fun forging_N : N; -fun forgivable_A : A; -fun forgive_V : V; -fun forgive_V2 : V2; -fun forgiveness_N : N; -fun forgiving_A : A; -fun forgivingly_Adv : Adv; -fun forgivingness_N : N; -fun forgo_V2 : V2; -fun forint_N : N; -fun fork_N : N; -fun fork_V : V; -fun fork_V2 : V2; -fun forked_A : A; -fun forklift_N : N; -fun forlorn_A : A; -fun forlornly_Adv : Adv; -fun forlornness_N : N; -fun form_N : N; -fun form_V : V; -fun form_V2 : V2; -fun form_only_A : A; -fun formal_A : A; -fun formaldehyde_N : N; -fun formalin_N : N; -fun formalism_N : N; -fun formalistic_A : A; -fun formality_N : N; -fun formalization_N : N; -fun formalize_V2 : V2; -fun formalized_A : A; -fun formally_Adv : Adv; -fun formalwear_N : N; -fun format_N : N; -fun formation_N : N; -fun formative_A : A; -fun formative_N : N; -fun formed_A : A; -fun former_A : A; -fun former_N : N; -fun formic_A : A; -fun formica_N : N; -fun formication_N : N; -fun formidability_N : N; -fun formidable_A : A; -fun formidably_Adv : Adv; -fun formless_A : A; -fun formlessly_Adv : Adv; -fun formula_N : N; -fun formulaic_A : A; -fun formulary_A : A; -fun formulary_N : N; -fun formulate_V : V; -fun formulate_V2 : V2; -fun formulated_A : A; -fun formulation_N : N; -fun fornicate_V : V; -fun fornication_N : N; -fun fornix_N : N; -fun forrader_Adv : Adv; -fun forsake_V2 : V2; -fun forsaking_N : N; -fun forsooth_Adv : Adv; -fun forswear_V2 : V2; -fun forsythia_N : N; -fun fort_N : N; -fun forte_A : A; -fun forte_Adv : Adv; -fun forte_N : N; -fun fortemente_A : A; -fun forth_Adv : Adv; -fun forthcoming_A : A; -fun forthright_A : A; -fun forthwith_Adv : Adv; -fun forties_N : N; -fun fortieth_A : A; -fun fortieth_N : N; -fun fortification_N : N; -fun fortified_A : A; -fun fortify_V2 : V2; -fun fortissimo_A : A; -fun fortissimo_Adv : Adv; -fun fortitude_N : N; -fun fortnight_N : N; -fun fortnightly_A : A; -fun fortnightly_Adv : Adv; -fun fortress_N : N; -fun fortuitous_A : A; -fun fortuitousness_N : N; -fun fortunate_A : A; -fun fortunately_Adv : Adv; -fun fortune_N : N; -fun fortuneteller_N : N; -fun fortunetelling_N : N; -fun forty_A : A; -fun forty_N : N; -fun forty_eight_A : A; -fun forty_eighth_A : A; -fun forty_fifth_A : A; -fun forty_first_A : A; -fun forty_five_A : A; -fun forty_five_N : N; -fun forty_four_A : A; -fun forty_fourth_A : A; -fun forty_nine_A : A; -fun forty_niner_N : N; -fun forty_ninth_A : A; -fun forty_one_A : A; -fun forty_second_A : A; -fun forty_seven_A : A; -fun forty_seventh_A : A; -fun forty_six_A : A; -fun forty_sixth_A : A; -fun forty_third_A : A; -fun forty_three_A : A; -fun forty_two_A : A; -fun fortyish_A : A; -fun forum_N : N; -fun forward_A : A; -fun forward_Adv : Adv; -fun forward_N : N; -fun forward_V2 : V2; -fun forwarding_N : N; -fun forwardness_N : N; -fun forwards_Adv : Adv; -fun foryml_N : N; -fun fossa_N : N; -fun fosse_N : N; -fun fossil_A : A; -fun fossil_N : N; -fun fossiliferous_A : A; -fun fossilization_N : N; -fun fossilize_V : V; -fun fossilize_V2 : V2; -fun fossilized_A : A; -fun fossorial_A : A; -fun foster_A : A; -fun foster_V2 : V2; -fun foster_brother_N : N; -fun foster_brother_N : N; -fun foster_child_N : N; -fun foster_child_N : N; -fun foster_daughter_N : N; -fun foster_father_N : N; -fun foster_father_N : N; -fun foster_mother_N : N; -fun foster_mother_N : N; -fun foster_nurse_N : N; -fun foster_parent_N : N; -fun foster_parent_N : N; -fun foster_sister_N : N; -fun foster_sister_N : N; -fun foster_son_N : N; -fun fostering_N : N; -fun fothergilla_N : N; -fun foul_A : A; -fun foul_N : N; -fun foul_V : V; -fun foul_V2 : V2; -fun foul_mouthed_A : A; -fun foul_mouthed_A : A; -fun foul_spoken_A : A; -fun foulard_N : N; -fun foully_Adv : Adv; -fun foulness_N : N; -fun found_A : A; -fun found_N : N; -fun found_V2 : V2; -fun foundation_N : N; -fun foundation_stone_N : N; -fun founder_N : N; -fun founder_V : V; -fun founder_V2 : V2; -fun foundering_N : N; -fun foundling_N : N; -fun foundress_N : N; -fun foundry_N : N; -fun fount_N : N; -fun fountain_N : N; -fun fountain_head_N : N; -fun fountain_pen_N : N; -fun fountainhead_N : N; -fun four_A : A; -fun four_N : N; -fun four_dimensional_A : A; -fun four_hitter_N : N; -fun four_hundred_A : A; -fun four_hundredth_A : A; -fun four_in_hand_N : N; -fun four_in_hand_N : N; -fun four_lane_A : A; -fun four_lobed_A : A; -fun four_membered_A : A; -fun four_needled_A : A; -fun four_part_A : A; -fun four_petaled_A : A; -fun four_ply_A : A; -fun four_ply_A : A; -fun four_poster_N : N; -fun four_poster_N : N; -fun four_pounder_N : N; -fun four_pounder_N : N; -fun four_pronged_A : A; -fun four_spot_N : N; -fun four_wheel_A : A; -fun four_wheeler_N : N; -fun four_wheeler_N : N; -fun four_year_old_A : A; -fun fourfold_A : A; -fun fourfold_Adv : Adv; -fun fourhanded_A : A; -fun fourpence_N : N; -fun fourpenny_A : A; -fun fourscore_A : A; -fun fourscore_N : N; -fun foursome_N : N; -fun foursquare_A : A; -fun foursquare_Adv : Adv; -fun fourteen_A : A; -fun fourteen_N : N; -fun fourteenth_A : A; -fun fourteenth_N : N; -fun fourth_A : A; -fun fourth_N : N; -fun fourthly_Adv : Adv; -fun fovea_N : N; -fun fowl_N : N; -fun fowl_V : V; -fun fowl_run_N : N; -fun fowler_N : N; -fun fowlingpiece_N : N; -fun fowlpest_N : N; -fun fox_N : N; -fun fox_V2 : V2; -fun fox_terrier_N : N; -fun fox_trot_N : N; -fun foxglove_N : N; -fun foxhole_N : N; -fun foxhound_N : N; -fun foxhunt_N : N; -fun foxhunt_V : V; -fun foxhunter_N : N; -fun foxtail_N : N; -fun foxtrot_N : N; -fun foxy_A : A; -fun foyer_N : N; -fun fracas_N : N; -fun fractal_N : N; -fun fraction_N : N; -fun fractional_A : A; -fun fractionation_N : N; -fun fractious_A : A; -fun fractiously_Adv : Adv; -fun fractiousness_N : N; -fun fracture_N : N; -fun fracture_V : V; -fun fracture_V2 : V2; -fun fragile_A : A; -fun fragility_N : N; -fun fragment_N : N; -fun fragment_V : V; -fun fragment_V2 : V2; -fun fragmental_A : A; -fun fragmentary_A : A; -fun fragmentation_N : N; -fun fragrance_N : N; -fun fragrant_A : A; -fun frail_A : A; -fun frail_N : N; -fun frailty_N : N; -fun fraise_N : N; -fun frame_N : N; -fun frame_V : V; -fun frame_V2 : V2; -fun frame_up_N : N; -fun frame_up_N : N; -fun framed_A : A; -fun framer_N : N; -fun framework_N : N; -fun framing_N : N; -fun franc_N : N; -fun franc_tireur_N : N; -fun franchise_N : N; -fun franciscan_A : A; -fun franciscan_N : N; -fun francium_N : N; -fun frangible_A : A; -fun frangipane_N : N; -fun frangipani_N : N; -fun frank_A : A; -fun frank_N : N; -fun frank_V2 : V2; -fun frankfurter_N : N; -fun frankincense_N : N; -fun franking_machine_N : N; -fun franklin_N : N; -fun frankness_N : N; -fun frantic_A : A; -fun frantically_Adv : Adv; -fun frappe_N : N; -fun fraternal_A : A; -fun fraternally_Adv : Adv; -fun fraternity_N : N; -fun fraternization_N : N; -fun fraternize_V : V; -fun fratricide_N : N; -fun frau_N : N; -fun fraud_N : N; -fun fraudulence_N : N; -fun fraudulent_A : A; -fun fraudulently_Adv : Adv; -fun fraught_A : A; -fun fraulein_N : N; -fun fraxinella_N : N; -fun fray_N : N; -fun fray_V : V; -fun fray_V2 : V2; -fun frayed_A : A; -fun frazzle_N : N; -fun freak_N : N; -fun freak_V : V; -fun freak_V2 : V2; -fun freak_out_N : N; -fun freakish_A : A; -fun freakishness_N : N; -fun freaky_A : A; -fun freckle_N : N; -fun freckle_V : V; -fun freckle_V2 : V2; -fun freckled_A : A; -fun free_A : A; -fun free_N : N; -fun free_V2 : V2; -fun free_V2V : V2V; -fun free_and_easy_A : A; -fun free_and_easy_A : A; -fun free_burning_A : A; -fun free_flying_A : A; -fun free_for_all_N : N; -fun free_handed_A : A; -fun free_list_N : N; -fun free_liver_N : N; -fun free_liver_N : N; -fun free_living_A : A; -fun free_living_N : N; -fun free_range_A : A; -fun free_range_A : A; -fun free_reed_N : N; -fun free_soil_A : A; -fun free_spoken_A : A; -fun free_standing_A : A; -fun free_swimming_A : A; -fun free_thinker_N : N; -fun free_thinking_A : A; -fun free_thinking_A : A; -fun free_thought_N : N; -fun free_trader_N : N; -fun freebie_N : N; -fun freebooter_N : N; -fun freeborn_A : A; -fun freedman_N : N; -fun freedom_N : N; -fun freehand_A : A; -fun freehold_N : N; -fun freeholder_N : N; -fun freelance_A : A; -fun freelance_N : N; -fun freelance_V : V; -fun freelancer_N : N; -fun freeloader_N : N; -fun freely_Adv : Adv; -fun freemail_N : N; -fun freeman_N : N; -fun freemason_N : N; -fun freemasonry_N : N; -fun freesia_N : N; -fun freestanding_A : A; -fun freestone_N : N; -fun freestyle_N : N; -fun freetail_N : N; -fun freeware_N : N; -fun freeway_N : N; -fun freewheel_N : N; -fun freewheel_V : V; -fun freewheeling_A : A; -fun freewill_A : A; -fun freeze_N : N; -fun freeze_V : V; -fun freeze_V2 : V2; -fun freeze_dried_A : A; -fun freeze_drying_N : N; -fun freezer_N : N; -fun freezing_mixture_N : N; -fun freezing_point_N : N; -fun freight_N : N; -fun freight_V2 : V2; -fun freight_train_N : N; -fun freighter_N : N; -fun freightliner_N : N; -fun french_A : A; -fun french_N : N; -fun frenchman_N : N; -fun frenchwoman_N : N; -fun frenetic_A : A; -fun frenzied_A : A; -fun frenziedly_Adv : Adv; -fun frenzy_N : N; -fun frequency_N : N; -fun frequent_A : A; -fun frequent_V2 : V2; -fun frequentative_N : N; -fun frequently_Adv : Adv; -fun fresco_N : N; -fun fresco_V2 : V2; -fun fresh_A : A; -fun fresh_Adv : Adv; -fun fresh_cut_A : A; -fun freshen_V : V; -fun freshen_V2 : V2; -fun freshener_N : N; -fun fresher_N : N; -fun freshet_N : N; -fun freshman_A : A; -fun freshman_N : N; -fun freshness_N : N; -fun freshwater_A : A; -fun fret_N : N; -fun fret_V : V; -fun fret_V2 : V2; -fun fret_VS : VS; -fun fretful_A : A; -fun fretfully_Adv : Adv; -fun fretsaw_N : N; -fun fretted_A : A; -fun fretwork_N : N; -fun freudian_A : A; -fun friability_N : N; -fun friable_A : A; -fun friar_N : N; -fun friar's_cowl_N : N; -fun friary_N : N; -fun fricandeau_N : N; -fun fricassee_N : N; -fun fricassee_V2 : V2; -fun fricative_A : A; -fun fricative_N : N; -fun friction_N : N; -fun frictional_A : A; -fun frictionless_A : A; -fun friday_N : N; -fun fridge_N : N; -fun fried_A : A; -fun friedcake_N : N; -fun friend_N : N; -fun friendless_A : A; -fun friendlessness_N : N; -fun friendliness_N : N; -fun friendly_A : A; -fun friendly_N : N; -fun friendship_N : N; -fun frier_N : N; -fun frieze_N : N; -fun frigate_N : N; -fun fright_N : N; -fun fright_V2 : V2; -fun frighten_V2 : V2; -fun frightened_A : A; -fun frightening_A : A; -fun frighteningly_Adv : Adv; -fun frightful_A : A; -fun frightfulness_N : N; -fun frigid_A : A; -fun frigidity_N : N; -fun frigorific_A : A; -fun frijole_N : N; -fun frill_N : N; -fun frilled_A : A; -fun frilly_A : A; -fun fringe_N : N; -fun fringe_V2 : V2; -fun fringed_A : A; -fun fringed_grass_of_parnassus_PN : PN; -fun fringepod_N : N; -fun fringy_A : A; -fun frippery_N : N; -fun frisk_N : N; -fun frisk_V : V; -fun frisk_V2 : V2; -fun friskily_Adv : Adv; -fun friskiness_N : N; -fun frisky_A : A; -fun frisson_N : N; -fun fritillary_N : N; -fun frittata_N : N; -fun fritter_N : N; -fun fritter_V2 : V2; -fun frivol_V : V; -fun frivol_V2 : V2; -fun frivolity_N : N; -fun frivolous_A : A; -fun frivolously_Adv : Adv; -fun frizz_N : N; -fun frizz_V2 : V2; -fun frizzle_V : V; -fun frizzle_V2 : V2; -fun frizzy_A : A; -fun fro_Adv : Adv; -fun frock_N : N; -fun frock_coat_N : N; -fun frog_N : N; -fun frogbit_N : N; -fun frogfish_N : N; -fun froghopper_N : N; -fun frogman_N : N; -fun frogmarch_V2 : V2; -fun frogmouth_N : N; -fun frolic_N : N; -fun frolic_V : V; -fun frolic_V2 : V2; -fun frolicsome_A : A; -fun from_Prep : Prep; -fun from_pillar_to_post_Adv : Adv; -fun from_scratch_Adv : Adv; -fun from_start_to_finish_Adv : Adv; -fun from_the_heart_Adv : Adv; -fun from_way_back_Adv : Adv; -fun frond_N : N; -fun front_A : A; -fun front_N : N; -fun front_V : V; -fun front_V2 : V2; -fun front_bench_N : N; -fun front_bencher_N : N; -fun front_runner_N : N; -fun frontage_N : N; -fun frontal_A : A; -fun frontal_N : N; -fun frontally_Adv : Adv; -fun frontbencher_N : N; -fun frontier_N : N; -fun frontiersman_N : N; -fun frontierswoman_N : N; -fun frontispiece_N : N; -fun frontlet_N : N; -fun frore_A : A; -fun frost_N : N; -fun frost_V : V; -fun frost_V2 : V2; -fun frost_bound_A : A; -fun frost_bound_A : A; -fun frostbite_N : N; -fun frostbitten_A : A; -fun frosted_A : A; -fun frostily_Adv : Adv; -fun frostiness_N : N; -fun frosting_N : N; -fun frostweed_N : N; -fun frosty_A : A; -fun froth_N : N; -fun froth_V : V; -fun frothily_Adv : Adv; -fun frothiness_N : N; -fun frothy_A : A; -fun frottage_N : N; -fun frotteur_N : N; -fun froward_A : A; -fun frown_N : N; -fun frown_V : V; -fun frown_V2 : V2; -fun frowning_A : A; -fun frowningly_Adv : Adv; -fun frowsty_A : A; -fun frowsy_A : A; -fun frowzy_A : A; -fun frozen_A : A; -fun frs_N : N; -fun fructification_N : N; -fun fructify_V : V; -fun fructify_V2 : V2; -fun fructose_N : N; -fun fructosuria_N : N; -fun frugal_A : A; -fun frugality_N : N; -fun frugally_Adv : Adv; -fun fruit_N : N; -fun fruit_V : V; -fun fruit_fly_N : N; -fun fruitage_N : N; -fun fruitcake_N : N; -fun fruiterer_N : N; -fun fruitful_A : A; -fun fruitfulness_N : N; -fun fruiting_A : A; -fun fruition_N : N; -fun fruitless_A : A; -fun fruitlessness_N : N; -fun fruitlet_N : N; -fun fruitwood_N : N; -fun fruity_A : A; -fun frumenty_N : N; -fun frump_N : N; -fun frumpish_A : A; -fun frumpy_A : A; -fun frustrate_V2 : V2; -fun frustrating_A : A; -fun frustration_N : N; -fun frustum_N : N; -fun fry_N : N; -fun fry_V : V; -fun fry_V2 : V2; -fun fry_pan_N : N; -fun fryer_N : N; -fun frying_N : N; -fun frying_pan_N : N; -fun fuchsia_N : N; -fun fuck_N : N; -fun fuck_V : V; -fun fuck_V2 : V2; -fun fuck_all_N : N; -fun fucked_up_A : A; -fun fucker_N : N; -fun fucking_A : A; -fun fucking_Adv : Adv; -fun fucoid_N : N; -fun fucus_N : N; -fun fuddle_V2 : V2; -fun fuddy_duddy_N : N; -fun fuddy_duddy_N : N; -fun fudge_N : N; -fun fuel_N : N; -fun fuel_V : V; -fun fuel_V2 : V2; -fun fueled_A : A; -fun fueling_N : N; -fun fug_N : N; -fun fugacity_N : N; -fun fugal_A : A; -fun fugally_Adv : Adv; -fun fuggy_A : A; -fun fugitive_A : A; -fun fugitive_N : N; -fun fugleman_N : N; -fun fugly_A : A; -fun fugu_N : N; -fun fugue_N : N; -fun fuhrer_N : N; -fun fuji_N : N; -fun fulcrum_N : N; -fun fulfil_V2 : V2; -fun fulfill_V2 : V2; -fun fulfilled_A : A; -fun fulfillment_N : N; -fun fulfilment_N : N; -fun fulgurating_A : A; -fun full_A : A; -fun full_blooded_A : A; -fun full_blooded_A : A; -fun full_blown_A : A; -fun full_blown_A : A; -fun full_bodied_A : A; -fun full_dress_A : A; -fun full_dress_A : A; -fun full_fashioned_A : A; -fun full_fashioned_A : A; -fun full_fledged_A : A; -fun full_fledged_A : A; -fun full_grown_A : A; -fun full_length_A : A; -fun full_length_A : A; -fun full_of_life_A : A; -fun full_page_A : A; -fun full_page_A : A; -fun full_scale_A : A; -fun full_term_A : A; -fun full_time_A : A; -fun full_time_A : A; -fun full_time_Adv : Adv; -fun full_time_Adv : Adv; -fun fullback_N : N; -fun fuller_N : N; -fun fullerene_N : N; -fun fullness_N : N; -fun fully_Adv : Adv; -fun fully_fashioned_A : A; -fun fully_fledged_A : A; -fun fully_grown_A : A; -fun fulmar_N : N; -fun fulminant_A : A; -fun fulminate_N : N; -fun fulminate_V : V; -fun fulmination_N : N; -fun fulsome_A : A; -fun fulsomeness_N : N; -fun fumble_N : N; -fun fumble_V : V; -fun fumble_V2 : V2; -fun fumbler_N : N; -fun fume_N : N; -fun fume_V : V; -fun fume_V2 : V2; -fun fumed_A : A; -fun fumewort_N : N; -fun fumigant_N : N; -fun fumigate_V2 : V2; -fun fumigation_N : N; -fun fumigator_N : N; -fun fumitory_N : N; -fun fun_N : N; -fun funambulism_N : N; -fun funambulist_N : N; -fun function_N : N; -fun function_V : V; -fun functional_A : A; -fun functionalism_N : N; -fun functionalist_N : N; -fun functionality_N : N; -fun functionally_Adv : Adv; -fun functionally_illiterate_A : A; -fun functionary_N : N; -fun functioning_A : A; -fun fund_N : N; -fun fund_V2 : V2; -fun fundamental_A : A; -fun fundamental_N : N; -fun fundamentalism_N : N; -fun fundamentalist_A : A; -fun fundamentalist_N : N; -fun fundamentals_N : N; -fun funded_A : A; -fun fundraiser_N : N; -fun funds_N : N; -fun fundus_N : N; -fun funeral_N : N; -fun funerary_A : A; -fun funereal_A : A; -fun funfair_N : N; -fun fungal_A : A; -fun fungible_A : A; -fun fungible_N : N; -fun fungicidal_A : A; -fun fungicide_N : N; -fun fungoid_A : A; -fun fungous_A : A; -fun fungus_N : N; -fun funicle_N : N; -fun funicular_A : A; -fun funicular_N : N; -fun funiculitis_N : N; -fun funiculus_N : N; -fun funk_N : N; -fun funk_V : V; -fun funk_V2 : V2; -fun funky_A : A; -fun funnel_N : N; -fun funnel_V : V; -fun funnel_V2 : V2; -fun funnel_shaped_A : A; -fun funnily_Adv : Adv; -fun funniness_N : N; -fun funny_A : A; -fun funny_bone_N : N; -fun funrun_N : N; -fun fur_N : N; -fun fur_bearing_A : A; -fun fur_piece_N : N; -fun furan_N : N; -fun furbelow_N : N; -fun furbish_V2 : V2; -fun furcation_N : N; -fun furcula_N : N; -fun furfural_N : N; -fun furious_A : A; -fun furiously_Adv : Adv; -fun furl_V : V; -fun furl_V2 : V2; -fun furled_A : A; -fun furlike_A : A; -fun furlong_N : N; -fun furlough_N : N; -fun furnace_N : N; -fun furnish_V2 : V2; -fun furnished_A : A; -fun furnishing_N : N; -fun furniture_N : N; -fun furor_N : N; -fun furore_N : N; -fun furosemide_N : N; -fun furred_A : A; -fun furrier_N : N; -fun furring_N : N; -fun furrow_N : N; -fun furrow_V : V; -fun furrow_V2 : V2; -fun furrowed_A : A; -fun furry_A : A; -fun further_A : A; -fun further_Adv : Adv; -fun further_V2 : V2; -fun furtherance_N : N; -fun furthermore_Adv : Adv; -fun furthermost_A : A; -fun furthest_A : A; -fun furthest_Adv : Adv; -fun furtive_A : A; -fun furtively_Adv : Adv; -fun furtiveness_N : N; -fun furunculosis_N : N; -fun fury_N : N; -fun furze_N : N; -fun fuschia_N : N; -fun fuscous_A : A; -fun fuse_N : N; -fun fuse_V : V; -fun fuse_V2 : V2; -fun fusee_N : N; -fun fuselage_N : N; -fun fusible_A : A; -fun fusiform_A : A; -fun fusil_N : N; -fun fusilier_N : N; -fun fusillade_N : N; -fun fusion_N : N; -fun fuss_N : N; -fun fuss_V : V; -fun fuss_V2 : V2; -fun fussily_Adv : Adv; -fun fussiness_N : N; -fun fusspot_N : N; -fun fussy_A : A; -fun fustian_N : N; -fun fusty_A : A; -fun futile_A : A; -fun futilely_Adv : Adv; -fun futility_N : N; -fun futon_N : N; -fun future_A : A; -fun future_N : N; -fun future_day_A : A; -fun futureless_A : A; -fun futurism_N : N; -fun futurist_N : N; -fun futuristic_A : A; -fun futurity_N : N; -fun futurology_N : N; -fun fuze_N : N; -fun fuzz_N : N; -fun fuzzed_A : A; -fun fuzzy_A : A; -fun g_N : N; -fun g_man_N : N; -fun gab_N : N; -fun gab_V : V; -fun gabapentin_N : N; -fun gabardine_N : N; -fun gabble_N : N; -fun gabble_V : V; -fun gabble_V2 : V2; -fun gabbro_N : N; -fun gaberdine_N : N; -fun gable_N : N; -fun gabled_A : A; -fun gabonese_A : A; -fun gabonese_N : N; -fun gad_V : V; -fun gadabout_N : N; -fun gaddi_N : N; -fun gadfly_N : N; -fun gadget_N : N; -fun gadgeteer_N : N; -fun gadgetry_N : N; -fun gadoid_N : N; -fun gadolinite_N : N; -fun gadolinium_N : N; -fun gael_N : N; -fun gaelic_A : A; -fun gaelic_N : N; -fun gaff_N : N; -fun gaffe_N : N; -fun gaffer_N : N; -fun gaffsail_N : N; -fun gag_N : N; -fun gag_V : V; -fun gag_V2 : V2; -fun gaga_A : A; -fun gage_N : N; -fun gage_V2 : V2; -fun gaggle_N : N; -fun gagman_N : N; -fun gaiety_N : N; -fun gaillardia_N : N; -fun gaily_Adv : Adv; -fun gain_N : N; -fun gain_V : V; -fun gain_V2 : V2; -fun gainer_N : N; -fun gainful_A : A; -fun gainfully_Adv : Adv; -fun gainly_A : A; -fun gainsay_V2 : V2; -fun gainsborough_N : N; -fun gait_N : N; -fun gaiter_N : N; -fun gal_N : N; -fun gala_N : N; -fun galactagogue_N : N; -fun galactic_A : A; -fun galactocele_N : N; -fun galactose_N : N; -fun galactosemia_N : N; -fun galactosis_N : N; -fun galago_N : N; -fun galangal_N : N; -fun galantine_N : N; -fun galax_N : N; -fun galaxy_N : N; -fun galbanum_N : N; -fun galbulus_N : N; -fun gale_N : N; -fun galea_N : N; -fun galena_N : N; -fun galere_N : N; -fun galingale_N : N; -fun gall_N : N; -fun gall_V2 : V2; -fun gallamine_N : N; -fun gallant_A : A; -fun gallant_N : N; -fun gallantly_Adv : Adv; -fun gallantry_N : N; -fun gallbladder_N : N; -fun galleon_N : N; -fun gallery_N : N; -fun galley_N : N; -fun galley_proof_N : N; -fun galley_slave_N : N; -fun gallfly_N : N; -fun gallic_A : A; -fun gallicism_N : N; -fun gallinaceous_A : A; -fun gallinule_N : N; -fun gallium_N : N; -fun gallivant_V : V; -fun gallon_N : N; -fun gallop_N : N; -fun gallop_V : V; -fun gallop_V2 : V2; -fun gallows_N : N; -fun gallows_bird_N : N; -fun gallstone_N : N; -fun galoot_N : N; -fun galore_A : A; -fun galore_Adv : Adv; -fun galosh_N : N; -fun galumph_V : V; -fun galvanic_A : A; -fun galvanism_N : N; -fun galvanization_N : N; -fun galvanize_V2 : V2; -fun galvanize_VS : VS; -fun galvanizer_N : N; -fun galvanometer_N : N; -fun gam_N : N; -fun gambian_A : A; -fun gambian_N : N; -fun gambist_N : N; -fun gambit_N : N; -fun gamble_N : N; -fun gamble_V : V; -fun gamble_V2 : V2; -fun gambler_N : N; -fun gambling_N : N; -fun gambling_den_N : N; -fun gamboge_N : N; -fun gambol_N : N; -fun gambol_V : V; -fun gambol_V2 : V2; -fun gambrel_N : N; -fun game_A : A; -fun game_N : N; -fun game_V : V; -fun game_V2 : V2; -fun game_bag_N : N; -fun game_bird_N : N; -fun game_licence_N : N; -fun gamebag_N : N; -fun gamecock_N : N; -fun gamekeeper_N : N; -fun gamelan_N : N; -fun gamely_Adv : Adv; -fun games_master_N : N; -fun games_master_N : N; -fun games_mistress_N : N; -fun gamesmanship_N : N; -fun gametangium_N : N; -fun gamete_N : N; -fun gametocyte_N : N; -fun gametoecium_N : N; -fun gametogenesis_N : N; -fun gametophore_N : N; -fun gametophyte_N : N; -fun gamey_A : A; -fun gamine_N : N; -fun gaminess_N : N; -fun gaming_house_N : N; -fun gaming_table_N : N; -fun gamma_N : N; -fun gamma_interferon_N : N; -fun gammon_N : N; -fun gammopathy_N : N; -fun gammy_A : A; -fun gamopetalous_A : A; -fun gamp_N : N; -fun gamut_N : N; -fun gamy_A : A; -fun gander_N : N; -fun gang_N : N; -fun gang_V : V; -fun ganger_N : N; -fun gangling_A : A; -fun ganglion_N : N; -fun gangplank_N : N; -fun gangrene_N : N; -fun gangrene_V : V; -fun gangrene_V2 : V2; -fun gangrenous_A : A; -fun gangsaw_N : N; -fun gangsta_N : N; -fun gangster_N : N; -fun gangway_N : N; -fun gannet_N : N; -fun ganoid_N : N; -fun ganoin_N : N; -fun gantlet_N : N; -fun gantry_N : N; -fun gaol_N : N; -fun gaol_V2 : V2; -fun gaolbird_N : N; -fun gaolbreak_N : N; -fun gaoler_N : N; -fun gap_N : N; -fun gap_toothed_A : A; -fun gap_toothed_A : A; -fun gape_N : N; -fun gape_V : V; -fun gape_V2 : V2; -fun gar_N : N; -fun garage_N : N; -fun garage_V2 : V2; -fun garambulla_N : N; -fun garb_N : N; -fun garb_V2 : V2; -fun garbage_N : N; -fun garbage_can_N : N; -fun garble_V2 : V2; -fun garboard_N : N; -fun garbology_N : N; -fun garden_N : N; -fun garden_V : V; -fun garden_truck_N : N; -fun gardener_N : N; -fun gardenia_N : N; -fun gardening_N : N; -fun garganey_N : N; -fun gargantuan_A : A; -fun gargle_N : N; -fun gargle_V : V; -fun gargle_V2 : V2; -fun gargoyle_N : N; -fun garibaldi_N : N; -fun garish_A : A; -fun garishly_Adv : Adv; -fun garishness_N : N; -fun garland_N : N; -fun garland_V2 : V2; -fun garlic_N : N; -fun garlicky_A : A; -fun garment_N : N; -fun garmentmaker_N : N; -fun garner_N : N; -fun garner_V2 : V2; -fun garnet_N : N; -fun garnet_colored_A : A; -fun garnierite_N : N; -fun garnish_N : N; -fun garnish_V2 : V2; -fun garnishee_N : N; -fun garnishment_N : N; -fun garotte_N : N; -fun garotte_V2 : V2; -fun garret_N : N; -fun garrison_N : N; -fun garrison_V2 : V2; -fun garrote_N : N; -fun garroter_N : N; -fun garrotte_N : N; -fun garrotte_V2 : V2; -fun garrulity_N : N; -fun garrulous_A : A; -fun garter_N : N; -fun gas_N : N; -fun gas_V : V; -fun gas_V2 : V2; -fun gas_bracket_N : N; -fun gas_cooker_N : N; -fun gas_engine_N : N; -fun gas_filled_A : A; -fun gas_fitter_N : N; -fun gas_helmet_N : N; -fun gas_holder_N : N; -fun gas_mask_N : N; -fun gas_meter_N : N; -fun gas_oven_N : N; -fun gas_ring_N : N; -fun gas_station_N : N; -fun gas_stove_N : N; -fun gasbag_N : N; -fun gaseous_A : A; -fun gaseousness_N : N; -fun gasfield_N : N; -fun gash_N : N; -fun gash_V2 : V2; -fun gasification_N : N; -fun gasified_A : A; -fun gasify_V : V; -fun gasify_V2 : V2; -fun gasket_N : N; -fun gaskin_N : N; -fun gaslight_N : N; -fun gasman_N : N; -fun gasmask_N : N; -fun gasohol_N : N; -fun gasolene_N : N; -fun gasoline_N : N; -fun gasometer_N : N; -fun gasp_N : N; -fun gasp_V : V; -fun gasp_V2 : V2; -fun gassing_N : N; -fun gassy_A : A; -fun gasteromycete_N : N; -fun gastrectomy_N : N; -fun gastric_A : A; -fun gastrin_N : N; -fun gastritis_N : N; -fun gastrocnemius_N : N; -fun gastroduodenal_A : A; -fun gastroenteritis_N : N; -fun gastroenterologist_N : N; -fun gastroenterology_N : N; -fun gastroenterostomy_N : N; -fun gastroesophageal_A : A; -fun gastrogavage_N : N; -fun gastrointestinal_A : A; -fun gastromy_N : N; -fun gastronomic_A : A; -fun gastronomy_N : N; -fun gastropod_N : N; -fun gastroscope_N : N; -fun gastroscopy_N : N; -fun gastrostomy_N : N; -fun gastrula_N : N; -fun gastrulation_N : N; -fun gasworks_N : N; -fun gat_N : N; -fun gate_N : N; -fun gate_V2 : V2; -fun gateau_N : N; -fun gatecrash_V2 : V2; -fun gatecrasher_N : N; -fun gatehouse_N : N; -fun gatekeeper_N : N; -fun gatepost_N : N; -fun gateway_N : N; -fun gather_N : N; -fun gather_V : V; -fun gather_V2 : V2; -fun gatherer_N : N; -fun gathering_N : N; -fun gatt_N : N; -fun gauche_A : A; -fun gaucherie_N : N; -fun gaucho_N : N; -fun gaud_N : N; -fun gaudery_N : N; -fun gaudily_Adv : Adv; -fun gaudy_A : A; -fun gaudy_N : N; -fun gauge_N : N; -fun gauge_V2 : V2; -fun gaul_N : N; -fun gaumless_A : A; -fun gaunt_A : A; -fun gauntlet_N : N; -fun gauntleted_A : A; -fun gauntness_N : N; -fun gaur_N : N; -fun gauss_N : N; -fun gauze_N : N; -fun gauzy_A : A; -fun gavel_N : N; -fun gavial_N : N; -fun gavotte_N : N; -fun gawk_N : N; -fun gawk_V : V; -fun gawk_V2 : V2; -fun gawker_N : N; -fun gawkiness_N : N; -fun gawky_A : A; -fun gawp_V : V; -fun gay_A : A; -fun gay_N : N; -fun gayal_N : N; -fun gayness_N : N; -fun gazania_N : N; -fun gaze_N : N; -fun gaze_V : V; -fun gazebo_N : N; -fun gazelle_N : N; -fun gazette_N : N; -fun gazette_V2 : V2; -fun gazetteer_N : N; -fun gazpacho_N : N; -fun gazump_V : V; -fun gazump_V2 : V2; -fun gcse_N : N; -fun gcses_N : N; -fun gean_N : N; -fun gear_N : N; -fun gear_V : V; -fun gear_V2 : V2; -fun gear_case_N : N; -fun gearbox_N : N; -fun geared_A : A; -fun gearing_N : N; -fun gearset_N : N; -fun gearshift_N : N; -fun gecko_N : N; -fun gee_gee_N : N; -fun gee_gee_N : N; -fun geebung_N : N; -fun geek_N : N; -fun geezer_N : N; -fun geiger_N : N; -fun geisha_N : N; -fun gel_N : N; -fun gel_V : V; -fun gel_V2 : V2; -fun gelatin_N : N; -fun gelatine_N : N; -fun gelatinous_A : A; -fun gelatinousness_N : N; -fun geld_V2 : V2; -fun gelding_N : N; -fun gelechiid_N : N; -fun gelignite_N : N; -fun gem_N : N; -fun gemfibrozil_N : N; -fun geminate_N : N; -fun gemination_N : N; -fun gemma_N : N; -fun gemmed_A : A; -fun gemmiferous_A : A; -fun gemmule_N : N; -fun gempylid_N : N; -fun gemsbok_N : N; -fun gen_N : N; -fun gen_V2 : V2; -fun gendarme_N : N; -fun gendarmerie_N : N; -fun gender_N : N; -fun gene_N : N; -fun genealogic_A : A; -fun genealogical_A : A; -fun genealogically_Adv : Adv; -fun genealogist_N : N; -fun genealogy_N : N; -fun general_A : A; -fun general_N : N; -fun general_purpose_A : A; -fun generalissimo_N : N; -fun generality_N : N; -fun generalization_N : N; -fun generalize_V : V; -fun generalize_V2 : V2; -fun generalized_A : A; -fun generally_Adv : Adv; -fun generalship_N : N; -fun generate_V2 : V2; -fun generation_N : N; -fun generation_x_PN : PN; -fun generational_A : A; -fun generative_A : A; -fun generator_N : N; -fun generic_A : A; -fun generic_N : N; -fun generically_Adv : Adv; -fun generosity_N : N; -fun generous_A : A; -fun genesis_N : N; -fun genet_N : N; -fun genetic_A : A; -fun genetically_Adv : Adv; -fun geneticism_N : N; -fun geneticist_N : N; -fun genetics_N : N; -fun geneva_N : N; -fun genial_A : A; -fun geniality_N : N; -fun genic_A : A; -fun geniculate_A : A; -fun genie_N : N; -fun genip_N : N; -fun genipa_N : N; -fun genipap_N : N; -fun genital_A : A; -fun genitalia_N : N; -fun genitive_A : A; -fun genitive_N : N; -fun genitor_N : N; -fun genitourinary_A : A; -fun genius_N : N; -fun genius_loci_N : N; -fun genlisea_N : N; -fun genocide_N : N; -fun genoise_N : N; -fun genome_N : N; -fun genomics_N : N; -fun genotype_N : N; -fun genotypical_A : A; -fun genre_N : N; -fun genre_painting_N : N; -fun gent_N : N; -fun gentamicin_N : N; -fun genteel_A : A; -fun genteelly_Adv : Adv; -fun gentian_N : N; -fun gentianella_N : N; -fun gentile_A : A; -fun gentile_N : N; -fun gentility_N : N; -fun gentle_A : A; -fun gentlefolk_N : N; -fun gentleman_N : N; -fun gentleman_at_arms_N : N; -fun gentleman_at_arms_N : N; -fun gentlemanlike_A : A; -fun gentlemanly_A : A; -fun gentleness_N : N; -fun gentlewoman_N : N; -fun gently_Adv : Adv; -fun gentrification_N : N; -fun gentry_N : N; -fun genuflect_V : V; -fun genuflect_V2 : V2; -fun genuflection_N : N; -fun genuflexion_N : N; -fun genuine_A : A; -fun genuineness_N : N; -fun genus_N : N; -fun genus_abelia_PN : PN; -fun genus_acacia_PN : PN; -fun genus_acanthus_PN : PN; -fun genus_achillea_PN : PN; -fun genus_achimenes_PN : PN; -fun genus_actinomyces_PN : PN; -fun genus_addax_PN : PN; -fun genus_aegyptopithecus_PN : PN; -fun genus_aepyornis_PN : PN; -fun genus_aerides_PN : PN; -fun genus_aeschynanthus_PN : PN; -fun genus_afropavo_PN : PN; -fun genus_agama_PN : PN; -fun genus_agapanthus_PN : PN; -fun genus_agave_PN : PN; -fun genus_ageratum_PN : PN; -fun genus_agrimonia_PN : PN; -fun genus_ailanthus_PN : PN; -fun genus_albizia_PN : PN; -fun genus_albuca_PN : PN; -fun genus_allamanda_PN : PN; -fun genus_alligator_PN : PN; -fun genus_allosaurus_PN : PN; -fun genus_alocasia_PN : PN; -fun genus_aloe_PN : PN; -fun genus_alstroemeria_PN : PN; -fun genus_althaea_PN : PN; -fun genus_amaryllis_PN : PN; -fun genus_ambrosia_PN : PN; -fun genus_ammobium_PN : PN; -fun genus_amoeba_PN : PN; -fun genus_amorpha_PN : PN; -fun genus_amorphophallus_PN : PN; -fun genus_amphioxus_PN : PN; -fun genus_amphiuma_PN : PN; -fun genus_anatotitan_PN : PN; -fun genus_anchusa_PN : PN; -fun genus_andrena_PN : PN; -fun genus_andromeda_PN : PN; -fun genus_andryala_PN : PN; -fun genus_anemone_PN : PN; -fun genus_angelica_PN : PN; -fun genus_angiopteris_PN : PN; -fun genus_angrecum_PN : PN; -fun genus_anhinga_PN : PN; -fun genus_ankylosaurus_PN : PN; -fun genus_anoa_PN : PN; -fun genus_anomalops_PN : PN; -fun genus_anomalopteryx_PN : PN; -fun genus_anthurium_PN : PN; -fun genus_apatosaurus_PN : PN; -fun genus_appendicularia_PN : PN; -fun genus_apteryx_PN : PN; -fun genus_aquilegia_PN : PN; -fun genus_aralia_PN : PN; -fun genus_araucaria_PN : PN; -fun genus_arbutus_PN : PN; -fun genus_arcella_PN : PN; -fun genus_archaeopteryx_PN : PN; -fun genus_archaeornis_PN : PN; -fun genus_architeuthis_PN : PN; -fun genus_areca_PN : PN; -fun genus_arethusa_PN : PN; -fun genus_argemone_PN : PN; -fun genus_argentinosaurus_PN : PN; -fun genus_arnica_PN : PN; -fun genus_artemisia_PN : PN; -fun genus_arum_PN : PN; -fun genus_asparagus_PN : PN; -fun genus_aspidistra_PN : PN; -fun genus_aster_PN : PN; -fun genus_astilbe_PN : PN; -fun genus_astrantia_PN : PN; -fun genus_australopithecus_PN : PN; -fun genus_ayapana_PN : PN; -fun genus_babesia_PN : PN; -fun genus_bacillus_PN : PN; -fun genus_banksia_PN : PN; -fun genus_barosaurus_PN : PN; -fun genus_begonia_PN : PN; -fun genus_bergenia_PN : PN; -fun genus_beroe_PN : PN; -fun genus_bison_PN : PN; -fun genus_bletia_PN : PN; -fun genus_bocconia_PN : PN; -fun genus_borrelia_PN : PN; -fun genus_bougainvillea_PN : PN; -fun genus_brassavola_PN : PN; -fun genus_brodiaea_PN : PN; -fun genus_browallia_PN : PN; -fun genus_bryanthus_PN : PN; -fun genus_bryonia_PN : PN; -fun genus_buckleya_PN : PN; -fun genus_buddleia_PN : PN; -fun genus_bufo_PN : PN; -fun genus_cabassous_PN : PN; -fun genus_caiman_PN : PN; -fun genus_caladenia_PN : PN; -fun genus_caladium_PN : PN; -fun genus_calamus_PN : PN; -fun genus_calanthe_PN : PN; -fun genus_calceolaria_PN : PN; -fun genus_calendula_PN : PN; -fun genus_calliandra_PN : PN; -fun genus_calosoma_PN : PN; -fun genus_calypso_PN : PN; -fun genus_camellia_PN : PN; -fun genus_campanula_PN : PN; -fun genus_candida_PN : PN; -fun genus_canella_PN : PN; -fun genus_canna_PN : PN; -fun genus_cannabis_PN : PN; -fun genus_capsicum_PN : PN; -fun genus_caragana_PN : PN; -fun genus_carissa_PN : PN; -fun genus_carpenteria_PN : PN; -fun genus_cassia_PN : PN; -fun genus_casuarina_PN : PN; -fun genus_catalpa_PN : PN; -fun genus_catananche_PN : PN; -fun genus_cathaya_PN : PN; -fun genus_cattleya_PN : PN; -fun genus_cerastes_PN : PN; -fun genus_ceratodus_PN : PN; -fun genus_ceratosaurus_PN : PN; -fun genus_ceratozamia_PN : PN; -fun genus_chaenactis_PN : PN; -fun genus_chaetodon_PN : PN; -fun genus_chimaera_PN : PN; -fun genus_chinchilla_PN : PN; -fun genus_chiton_PN : PN; -fun genus_chlamydia_PN : PN; -fun genus_chlorella_PN : PN; -fun genus_chlorophyllum_PN : PN; -fun genus_christella_PN : PN; -fun genus_chrysanthemum_PN : PN; -fun genus_chunga_PN : PN; -fun genus_cicada_PN : PN; -fun genus_cinchona_PN : PN; -fun genus_citrus_PN : PN; -fun genus_clematis_PN : PN; -fun genus_cleome_PN : PN; -fun genus_clianthus_PN : PN; -fun genus_clintonia_PN : PN; -fun genus_clostridium_PN : PN; -fun genus_clusia_PN : PN; -fun genus_coccus_PN : PN; -fun genus_coelogyne_PN : PN; -fun genus_coelophysis_PN : PN; -fun genus_coleus_PN : PN; -fun genus_colobus_PN : PN; -fun genus_columnea_PN : PN; -fun genus_combretum_PN : PN; -fun genus_commelina_PN : PN; -fun genus_compsognathus_PN : PN; -fun genus_convolvulus_PN : PN; -fun genus_coreopsis_PN : PN; -fun genus_coronilla_PN : PN; -fun genus_corozo_PN : PN; -fun genus_corynebacterium_PN : PN; -fun genus_coryphantha_PN : PN; -fun genus_corythosaurus_PN : PN; -fun genus_coscoroba_PN : PN; -fun genus_cosmos_PN : PN; -fun genus_costia_PN : PN; -fun genus_cotinga_PN : PN; -fun genus_cotoneaster_PN : PN; -fun genus_crocus_PN : PN; -fun genus_crotalaria_PN : PN; -fun genus_croton_PN : PN; -fun genus_cryptocoryne_PN : PN; -fun genus_cyclamen_PN : PN; -fun genus_cyclops_PN : PN; -fun genus_cymbidium_PN : PN; -fun genus_cynancum_PN : PN; -fun genus_cyrilla_PN : PN; -fun genus_dahlia_PN : PN; -fun genus_daphne_PN : PN; -fun genus_daphnia_PN : PN; -fun genus_davallia_PN : PN; -fun genus_deinocheirus_PN : PN; -fun genus_deinonychus_PN : PN; -fun genus_delphinium_PN : PN; -fun genus_dendrobium_PN : PN; -fun genus_derris_PN : PN; -fun genus_deutzia_PN : PN; -fun genus_diapensia_PN : PN; -fun genus_diapheromera_PN : PN; -fun genus_dicamptodon_PN : PN; -fun genus_dichondra_PN : PN; -fun genus_dictostylium_PN : PN; -fun genus_difflugia_PN : PN; -fun genus_digitalis_PN : PN; -fun genus_dillenia_PN : PN; -fun genus_dimetrodon_PN : PN; -fun genus_diomedea_PN : PN; -fun genus_dioon_PN : PN; -fun genus_diplococcus_PN : PN; -fun genus_diplodocus_PN : PN; -fun genus_disa_PN : PN; -fun genus_discina_PN : PN; -fun genus_doliolum_PN : PN; -fun genus_dombeya_PN : PN; -fun genus_doodia_PN : PN; -fun genus_draba_PN : PN; -fun genus_dracaena_PN : PN; -fun genus_dracontium_PN : PN; -fun genus_drosophila_PN : PN; -fun genus_drypis_PN : PN; -fun genus_dugong_PN : PN; -fun genus_echinocactus_PN : PN; -fun genus_echinococcus_PN : PN; -fun genus_edaphosaurus_PN : PN; -fun genus_edmontosaurus_PN : PN; -fun genus_eimeria_PN : PN; -fun genus_elsholtzia_PN : PN; -fun genus_encephalartos_PN : PN; -fun genus_engelmannia_PN : PN; -fun genus_eoraptor_PN : PN; -fun genus_epacris_PN : PN; -fun genus_ephedra_PN : PN; -fun genus_epiphyllum_PN : PN; -fun genus_episcia_PN : PN; -fun genus_eptatretus_PN : PN; -fun genus_erechtites_PN : PN; -fun genus_erica_PN : PN; -fun genus_eriogonum_PN : PN; -fun genus_erwinia_PN : PN; -fun genus_erythrina_PN : PN; -fun genus_escherichia_PN : PN; -fun genus_eucalyptus_PN : PN; -fun genus_euglena_PN : PN; -fun genus_feijoa_PN : PN; -fun genus_filago_PN : PN; -fun genus_forestiera_PN : PN; -fun genus_forsythia_PN : PN; -fun genus_fothergilla_PN : PN; -fun genus_freesia_PN : PN; -fun genus_fuchsia_PN : PN; -fun genus_fucus_PN : PN; -fun genus_fusarium_PN : PN; -fun genus_gaillardia_PN : PN; -fun genus_galago_PN : PN; -fun genus_galax_PN : PN; -fun genus_galictis_PN : PN; -fun genus_gardenia_PN : PN; -fun genus_gastrolobium_PN : PN; -fun genus_gazania_PN : PN; -fun genus_genipa_PN : PN; -fun genus_genlisea_PN : PN; -fun genus_geranium_PN : PN; -fun genus_gerardia_PN : PN; -fun genus_gesneria_PN : PN; -fun genus_giardia_PN : PN; -fun genus_ginkgo_PN : PN; -fun genus_gladiolus_PN : PN; -fun genus_gliricidia_PN : PN; -fun genus_globigerina_PN : PN; -fun genus_gloriosa_PN : PN; -fun genus_glossina_PN : PN; -fun genus_gloxinia_PN : PN; -fun genus_gnetum_PN : PN; -fun genus_gorilla_PN : PN; -fun genus_grampus_PN : PN; -fun genus_grevillea_PN : PN; -fun genus_grison_PN : PN; -fun genus_gyromitra_PN : PN; -fun genus_halogeton_PN : PN; -fun genus_hamelia_PN : PN; -fun genus_harpullia_PN : PN; -fun genus_helianthemum_PN : PN; -fun genus_helianthus_PN : PN; -fun genus_heliophila_PN : PN; -fun genus_heliopsis_PN : PN; -fun genus_helvella_PN : PN; -fun genus_hepatica_PN : PN; -fun genus_herrerasaurus_PN : PN; -fun genus_hibiscus_PN : PN; -fun genus_hippeastrum_PN : PN; -fun genus_hippopotamus_PN : PN; -fun genus_homo_PN : PN; -fun genus_hovea_PN : PN; -fun genus_hoya_PN : PN; -fun genus_hyacinthus_PN : PN; -fun genus_hyaena_PN : PN; -fun genus_hydra_PN : PN; -fun genus_hydrangea_PN : PN; -fun genus_hydrilla_PN : PN; -fun genus_ibero_mesornis_PN : PN; -fun genus_ibis_PN : PN; -fun genus_ichthyosaurus_PN : PN; -fun genus_ichthyostega_PN : PN; -fun genus_idesia_PN : PN; -fun genus_iguana_PN : PN; -fun genus_iguanodon_PN : PN; -fun genus_impatiens_PN : PN; -fun genus_indri_PN : PN; -fun genus_inga_PN : PN; -fun genus_inula_PN : PN; -fun genus_iris_PN : PN; -fun genus_iva_PN : PN; -fun genus_jabiru_PN : PN; -fun genus_junco_PN : PN; -fun genus_kalmia_PN : PN; -fun genus_keteleeria_PN : PN; -fun genus_klebsiella_PN : PN; -fun genus_kniphofia_PN : PN; -fun genus_kohleria_PN : PN; -fun genus_krigia_PN : PN; -fun genus_lactobacillus_PN : PN; -fun genus_laelia_PN : PN; -fun genus_lansium_PN : PN; -fun genus_lecanopteris_PN : PN; -fun genus_lecanora_PN : PN; -fun genus_leipoa_PN : PN; -fun genus_lemur_PN : PN; -fun genus_lepidobotrys_PN : PN; -fun genus_lepiota_PN : PN; -fun genus_leptospira_PN : PN; -fun genus_lespedeza_PN : PN; -fun genus_leucocytozoon_PN : PN; -fun genus_leucothoe_PN : PN; -fun genus_liparis_PN : PN; -fun genus_liquidambar_PN : PN; -fun genus_listeria_PN : PN; -fun genus_litchi_PN : PN; -fun genus_lithops_PN : PN; -fun genus_loasa_PN : PN; -fun genus_lobelia_PN : PN; -fun genus_loligo_PN : PN; -fun genus_lomatia_PN : PN; -fun genus_loris_PN : PN; -fun genus_luffa_PN : PN; -fun genus_lychnis_PN : PN; -fun genus_lynx_PN : PN; -fun genus_macadamia_PN : PN; -fun genus_macrotus_PN : PN; -fun genus_macrozamia_PN : PN; -fun genus_magnolia_PN : PN; -fun genus_malope_PN : PN; -fun genus_mammillaria_PN : PN; -fun genus_manta_PN : PN; -fun genus_mantis_PN : PN; -fun genus_maranta_PN : PN; -fun genus_martynia_PN : PN; -fun genus_masdevallia_PN : PN; -fun genus_maxillaria_PN : PN; -fun genus_megalosaurus_PN : PN; -fun genus_melilotus_PN : PN; -fun genus_mesohippus_PN : PN; -fun genus_metasequoia_PN : PN; -fun genus_millettia_PN : PN; -fun genus_mimosa_PN : PN; -fun genus_mola_PN : PN; -fun genus_moloch_PN : PN; -fun genus_monarda_PN : PN; -fun genus_monilia_PN : PN; -fun genus_mononychus_PN : PN; -fun genus_monstera_PN : PN; -fun genus_montezuma_PN : PN; -fun genus_mucor_PN : PN; -fun genus_mucuna_PN : PN; -fun genus_mutisia_PN : PN; -fun genus_mycobacterium_PN : PN; -fun genus_mycoplasma_PN : PN; -fun genus_mylodon_PN : PN; -fun genus_nanomia_PN : PN; -fun genus_narcissus_PN : PN; -fun genus_nautilus_PN : PN; -fun genus_nemophila_PN : PN; -fun genus_nephthytis_PN : PN; -fun genus_nerita_PN : PN; -fun genus_neritina_PN : PN; -fun genus_nierembergia_PN : PN; -fun genus_nigella_PN : PN; -fun genus_noctiluca_PN : PN; -fun genus_nostoc_PN : PN; -fun genus_nothosaurus_PN : PN; -fun genus_notornis_PN : PN; -fun genus_octopus_PN : PN; -fun genus_odontoglossum_PN : PN; -fun genus_ommastrephes_PN : PN; -fun genus_oncidium_PN : PN; -fun genus_orchis_PN : PN; -fun genus_origanum_PN : PN; -fun genus_oryx_PN : PN; -fun genus_osmunda_PN : PN; -fun genus_othonna_PN : PN; -fun genus_oxalis_PN : PN; -fun genus_pachysandra_PN : PN; -fun genus_palometa_PN : PN; -fun genus_pandanus_PN : PN; -fun genus_paramecium_PN : PN; -fun genus_parnassia_PN : PN; -fun genus_paspalum_PN : PN; -fun genus_pavonia_PN : PN; -fun genus_pecopteris_PN : PN; -fun genus_pecten_PN : PN; -fun genus_peperomia_PN : PN; -fun genus_peripatus_PN : PN; -fun genus_petunia_PN : PN; -fun genus_phacelia_PN : PN; -fun genus_phaius_PN : PN; -fun genus_phalanger_PN : PN; -fun genus_phenacomys_PN : PN; -fun genus_philadelphus_PN : PN; -fun genus_philodendron_PN : PN; -fun genus_phlomis_PN : PN; -fun genus_phlox_PN : PN; -fun genus_physa_PN : PN; -fun genus_physostegia_PN : PN; -fun genus_pisanosaurus_PN : PN; -fun genus_pistia_PN : PN; -fun genus_pitta_PN : PN; -fun genus_plasmodium_PN : PN; -fun genus_plectranthus_PN : PN; -fun genus_plesiosaurus_PN : PN; -fun genus_pleurothallis_PN : PN; -fun genus_plumbago_PN : PN; -fun genus_pogonia_PN : PN; -fun genus_polemonium_PN : PN; -fun genus_portulaca_PN : PN; -fun genus_potamogale_PN : PN; -fun genus_primula_PN : PN; -fun genus_proconsul_PN : PN; -fun genus_protea_PN : PN; -fun genus_protoavis_PN : PN; -fun genus_protoceratops_PN : PN; -fun genus_protohippus_PN : PN; -fun genus_psilophyton_PN : PN; -fun genus_psittacosaurus_PN : PN; -fun genus_pteropogon_PN : PN; -fun genus_pyracantha_PN : PN; -fun genus_pyrola_PN : PN; -fun genus_pyrrhuloxia_PN : PN; -fun genus_pythium_PN : PN; -fun genus_python_PN : PN; -fun genus_quassia_PN : PN; -fun genus_rauwolfia_PN : PN; -fun genus_ravenala_PN : PN; -fun genus_regnellidium_PN : PN; -fun genus_reseda_PN : PN; -fun genus_rhea_PN : PN; -fun genus_rhinoceros_PN : PN; -fun genus_rhizoctinia_PN : PN; -fun genus_rhizopus_PN : PN; -fun genus_rhodanthe_PN : PN; -fun genus_rhododendron_PN : PN; -fun genus_rickettsia_PN : PN; -fun genus_rivulus_PN : PN; -fun genus_roccella_PN : PN; -fun genus_roridula_PN : PN; -fun genus_sabbatia_PN : PN; -fun genus_sagitta_PN : PN; -fun genus_saiga_PN : PN; -fun genus_salmonella_PN : PN; -fun genus_salpa_PN : PN; -fun genus_salpiglossis_PN : PN; -fun genus_salvia_PN : PN; -fun genus_sansevieria_PN : PN; -fun genus_sargassum_PN : PN; -fun genus_sassafras_PN : PN; -fun genus_scabiosa_PN : PN; -fun genus_scarabaeus_PN : PN; -fun genus_schizanthus_PN : PN; -fun genus_schizopetalon_PN : PN; -fun genus_sciara_PN : PN; -fun genus_scilla_PN : PN; -fun genus_sclerotinia_PN : PN; -fun genus_scorzonera_PN : PN; -fun genus_sedum_PN : PN; -fun genus_senna_PN : PN; -fun genus_sequoia_PN : PN; -fun genus_serratia_PN : PN; -fun genus_sesbania_PN : PN; -fun genus_shigella_PN : PN; -fun genus_shortia_PN : PN; -fun genus_silene_PN : PN; -fun genus_sinornis_PN : PN; -fun genus_siren_PN : PN; -fun genus_sisymbrium_PN : PN; -fun genus_sivapithecus_PN : PN; -fun genus_sobralia_PN : PN; -fun genus_sorghum_PN : PN; -fun genus_spadella_PN : PN; -fun genus_spathiphyllum_PN : PN; -fun genus_sphagnum_PN : PN; -fun genus_spirillum_PN : PN; -fun genus_spirogyra_PN : PN; -fun genus_spirula_PN : PN; -fun genus_squilla_PN : PN; -fun genus_stanhopea_PN : PN; -fun genus_stapelia_PN : PN; -fun genus_staphylococcus_PN : PN; -fun genus_staurikosaurus_PN : PN; -fun genus_stegosaurus_PN : PN; -fun genus_stelis_PN : PN; -fun genus_stenopterygius_PN : PN; -fun genus_stentor_PN : PN; -fun genus_stephanotis_PN : PN; -fun genus_sterculia_PN : PN; -fun genus_stevia_PN : PN; -fun genus_streptocarpus_PN : PN; -fun genus_streptococcus_PN : PN; -fun genus_streptomyces_PN : PN; -fun genus_strophanthus_PN : PN; -fun genus_struthiomimus_PN : PN; -fun genus_styracosaurus_PN : PN; -fun genus_styrax_PN : PN; -fun genus_suksdorfia_PN : PN; -fun genus_taenia_PN : PN; -fun genus_tamandua_PN : PN; -fun genus_tarpon_PN : PN; -fun genus_tenrec_PN : PN; -fun genus_teredo_PN : PN; -fun genus_tetrahymena_PN : PN; -fun genus_thiobacillus_PN : PN; -fun genus_thrips_PN : PN; -fun genus_thyrsopteris_PN : PN; -fun genus_tithonia_PN : PN; -fun genus_tortrix_PN : PN; -fun genus_trachodon_PN : PN; -fun genus_tragopan_PN : PN; -fun genus_treponema_PN : PN; -fun genus_triceratops_PN : PN; -fun genus_trichodesmium_PN : PN; -fun genus_trichomonas_PN : PN; -fun genus_trillium_PN : PN; -fun genus_trogon_PN : PN; -fun genus_turreae_PN : PN; -fun genus_tyrannosaurus_PN : PN; -fun genus_ursinia_PN : PN; -fun genus_utahraptor_PN : PN; -fun genus_vanda_PN : PN; -fun genus_vanilla_PN : PN; -fun genus_velociraptor_PN : PN; -fun genus_verbena_PN : PN; -fun genus_vernonia_PN : PN; -fun genus_veronica_PN : PN; -fun genus_verticillium_PN : PN; -fun genus_vibrio_PN : PN; -fun genus_vireo_PN : PN; -fun genus_vorticella_PN : PN; -fun genus_weigela_PN : PN; -fun genus_welwitschia_PN : PN; -fun genus_wisteria_PN : PN; -fun genus_woodsia_PN : PN; -fun genus_wyethia_PN : PN; -fun genus_xeranthemum_PN : PN; -fun genus_xylosma_PN : PN; -fun genus_yucca_PN : PN; -fun genus_zamia_PN : PN; -fun genus_zinnia_PN : PN; -fun genus_zoysia_PN : PN; -fun geocentric_A : A; -fun geochemistry_N : N; -fun geode_N : N; -fun geodesic_N : N; -fun geodesy_N : N; -fun geodetic_A : A; -fun geoduck_N : N; -fun geographer_N : N; -fun geographic_A : A; -fun geographical_A : A; -fun geographically_Adv : Adv; -fun geography_N : N; -fun geological_A : A; -fun geologically_Adv : Adv; -fun geologist_N : N; -fun geology_N : N; -fun geomancer_N : N; -fun geomancy_N : N; -fun geometer_N : N; -fun geometric_A : A; -fun geometrical_A : A; -fun geometrically_Adv : Adv; -fun geometrid_N : N; -fun geometry_N : N; -fun geomorphologic_A : A; -fun geophagy_N : N; -fun geophysical_A : A; -fun geophysicist_N : N; -fun geophysics_N : N; -fun geophyte_N : N; -fun geophytic_A : A; -fun geopolitical_A : A; -fun geopolitics_N : N; -fun geordie_N : N; -fun georgette_N : N; -fun georgian_A : A; -fun georgian_N : N; -fun geostationary_A : A; -fun geostrategic_A : A; -fun geostrategy_N : N; -fun geosynchronous_A : A; -fun geothermal_A : A; -fun geothermally_Adv : Adv; -fun geotropism_N : N; -fun geranium_N : N; -fun gerardia_N : N; -fun gerbil_N : N; -fun gerenuk_N : N; -fun geriatric_A : A; -fun geriatrician_N : N; -fun geriatrics_N : N; -fun germ_N : N; -fun german_A : A; -fun german_N : N; -fun germander_N : N; -fun germane_A : A; -fun germaneness_N : N; -fun germanic_A : A; -fun germanite_N : N; -fun germanium_N : N; -fun germfree_A : A; -fun germicide_N : N; -fun germinal_A : A; -fun germinate_V : V; -fun germinate_V2 : V2; -fun germination_N : N; -fun germy_A : A; -fun gerontocracy_N : N; -fun gerontologist_N : N; -fun gerontology_N : N; -fun gerrymander_N : N; -fun gerrymander_V2 : V2; -fun gerund_N : N; -fun gerundial_A : A; -fun gesneria_N : N; -fun gesneriad_N : N; -fun gesso_N : N; -fun gestalt_N : N; -fun gestapo_N : N; -fun gestation_N : N; -fun gestational_A : A; -fun gesticulate_V : V; -fun gesticulating_A : A; -fun gesticulation_N : N; -fun gestural_A : A; -fun gesture_N : N; -fun gesture_V : V; -fun get_N : N; -fun get_V : V; -fun get_V2 : V2; -fun get_V2V : V2V; -fun get_VA : VA; -fun get_VS : VS; -fun get_VV : VV; -fun get_at_able_A : A; -fun get_together_N : N; -fun get_up_N : N; -fun getaway_N : N; -fun gettable_A : A; -fun geum_N : N; -fun geyser_N : N; -fun ghanaian_A : A; -fun ghanaian_N : N; -fun gharry_N : N; -fun ghastliness_N : N; -fun ghastly_A : A; -fun ghat_N : N; -fun ghatti_N : N; -fun ghee_N : N; -fun gherkin_N : N; -fun ghetto_N : N; -fun ghillie_N : N; -fun ghost_N : N; -fun ghost_V : V; -fun ghost_V2 : V2; -fun ghost_writer_N : N; -fun ghostliness_N : N; -fun ghostly_A : A; -fun ghostwriter_N : N; -fun ghoul_N : N; -fun ghoulish_A : A; -fun ghrelin_N : N; -fun gi_N : N; -fun giant_N : N; -fun giantess_N : N; -fun giantism_N : N; -fun giardia_N : N; -fun giardiasis_N : N; -fun gib_N : N; -fun gibber_V : V; -fun gibber_V2 : V2; -fun gibberellin_N : N; -fun gibberish_N : N; -fun gibbet_N : N; -fun gibbet_V2 : V2; -fun gibbon_N : N; -fun gibbous_A : A; -fun gibbsite_N : N; -fun gibe_N : N; -fun gibe_V : V; -fun gibe_V2 : V2; -fun gibibit_N : N; -fun gibingly_Adv : Adv; -fun giblet_N : N; -fun gibraltarian_A : A; -fun gibraltarian_N : N; -fun giddily_Adv : Adv; -fun giddiness_N : N; -fun giddy_A : A; -fun gidgee_N : N; -fun gift_N : N; -fun gift_V2 : V2; -fun gifted_A : A; -fun gig_N : N; -fun gigabit_N : N; -fun gigabyte_N : N; -fun gigahertz_N : N; -fun gigantic_A : A; -fun gigantism_N : N; -fun giggle_N : N; -fun giggle_V : V; -fun giggle_V2 : V2; -fun gigolo_N : N; -fun gilbert_N : N; -fun gilbertian_A : A; -fun gild_N : N; -fun gild_V2 : V2; -fun gilded_A : A; -fun gilder_N : N; -fun gildhall_N : N; -fun gilding_N : N; -fun gill_N : N; -fun gill_V2 : V2; -fun gillie_N : N; -fun gilt_N : N; -fun gilt_edged_A : A; -fun gilt_edged_A : A; -fun gimbal_N : N; -fun gimbaled_A : A; -fun gimcrack_A : A; -fun gimel_N : N; -fun gimlet_N : N; -fun gimmick_N : N; -fun gimmickry_N : N; -fun gin_N : N; -fun gin_V2 : V2; -fun ginger_A : A; -fun ginger_N : N; -fun ginger_V2 : V2; -fun ginger_scented_A : A; -fun gingerbread_N : N; -fun gingerly_A : A; -fun gingerly_Adv : Adv; -fun gingerol_N : N; -fun gingersnap_N : N; -fun gingery_A : A; -fun gingham_N : N; -fun gingiva_N : N; -fun gingival_A : A; -fun gingivitis_N : N; -fun gingko_N : N; -fun ginkgo_N : N; -fun ginseng_N : N; -fun gipsy_N : N; -fun gipsywort_N : N; -fun giraffe_N : N; -fun girandole_N : N; -fun gird_V : V; -fun gird_V2 : V2; -fun girder_N : N; -fun girdle_N : N; -fun girdle_V2 : V2; -fun girl_N : N; -fun girl_friday_PN : PN; -fun girlfriend_N : N; -fun girlhood_N : N; -fun girlish_A : A; -fun girlishly_Adv : Adv; -fun girlishness_N : N; -fun giro_N : N; -fun girth_N : N; -fun gist_N : N; -fun gitana_N : N; -fun gitano_N : N; -fun give_N : N; -fun give_V : V; -fun give_V2 : V2; -fun give_V3 : V3; -fun give_and_go_N : N; -fun give_or_take_Adv : Adv; -fun giveaway_N : N; -fun given_A : A; -fun given_N : N; -fun givenness_N : N; -fun giver_N : N; -fun giveth_V2 : V2; -fun giving_N : N; -fun gizzard_N : N; -fun glabella_N : N; -fun glabellar_A : A; -fun glabrescent_A : A; -fun glabrous_A : A; -fun glace_A : A; -fun glacial_A : A; -fun glacially_Adv : Adv; -fun glaciated_A : A; -fun glaciation_N : N; -fun glacier_N : N; -fun glad_A : A; -fun gladden_V2 : V2; -fun gladdened_A : A; -fun glade_N : N; -fun gladiator_N : N; -fun gladiatorial_A : A; -fun gladiolus_N : N; -fun gladly_Adv : Adv; -fun gladness_N : N; -fun gladsome_A : A; -fun glamor_N : N; -fun glamorization_N : N; -fun glamorize_V2 : V2; -fun glamorous_A : A; -fun glamour_N : N; -fun glance_N : N; -fun glance_V : V; -fun glance_V2 : V2; -fun gland_N : N; -fun glanders_N : N; -fun glandular_A : A; -fun glans_N : N; -fun glare_N : N; -fun glare_V : V; -fun glare_V2 : V2; -fun glaring_A : A; -fun glaringly_Adv : Adv; -fun glasnost_N : N; -fun glass_N : N; -fun glass_V2 : V2; -fun glass_blower_N : N; -fun glass_cutter_N : N; -fun glass_like_A : A; -fun glass_wool_N : N; -fun glassblower_N : N; -fun glassful_N : N; -fun glasshouse_N : N; -fun glassmaker_N : N; -fun glassware_N : N; -fun glassworks_N : N; -fun glasswort_N : N; -fun glassy_A : A; -fun glaswegian_A : A; -fun glaswegian_N : N; -fun glaucoma_N : N; -fun glauconite_N : N; -fun glaucous_A : A; -fun glaze_N : N; -fun glaze_V : V; -fun glaze_V2 : V2; -fun glazed_A : A; -fun glazier_N : N; -fun gleam_N : N; -fun gleam_V : V; -fun glean_V : V; -fun glean_V2 : V2; -fun gleaner_N : N; -fun gleba_N : N; -fun glebe_N : N; -fun glee_N : N; -fun gleeful_A : A; -fun gleefully_Adv : Adv; -fun gleet_N : N; -fun glen_N : N; -fun glengarry_N : N; -fun glial_A : A; -fun glib_A : A; -fun glibly_Adv : Adv; -fun glibness_N : N; -fun glide_N : N; -fun glide_V : V; -fun glide_V2 : V2; -fun glider_N : N; -fun gliding_N : N; -fun glimmer_N : N; -fun glimmer_V : V; -fun glimmery_A : A; -fun glimpse_N : N; -fun glimpse_V2 : V2; -fun glint_N : N; -fun glint_V : V; -fun glioblastoma_N : N; -fun glioma_N : N; -fun glipizide_N : N; -fun gliricidia_N : N; -fun glissade_N : N; -fun glissade_V : V; -fun glissando_A : A; -fun glissando_Adv : Adv; -fun glissando_N : N; -fun glisten_V : V; -fun glistening_A : A; -fun glister_N : N; -fun glister_V : V; -fun glitter_N : N; -fun glitter_V : V; -fun glittering_A : A; -fun gloaming_N : N; -fun gloat_N : N; -fun gloat_V : V; -fun gloat_VS : VS; -fun gloatingly_Adv : Adv; -fun global_A : A; -fun globalization_N : N; -fun globally_Adv : Adv; -fun globe_N : N; -fun globeflower_N : N; -fun globetrot_V : V; -fun globetrotter_N : N; -fun globigerina_N : N; -fun globin_N : N; -fun globular_A : A; -fun globule_N : N; -fun globulin_N : N; -fun glochidium_N : N; -fun glockenspiel_N : N; -fun glogg_N : N; -fun glomerular_A : A; -fun glomerule_N : N; -fun glomerulonephritis_N : N; -fun glomerulus_N : N; -fun gloom_N : N; -fun gloomily_Adv : Adv; -fun gloominess_N : N; -fun glooming_A : A; -fun gloomy_A : A; -fun glop_N : N; -fun glorification_N : N; -fun glorify_V2 : V2; -fun gloriosa_N : N; -fun glorious_A : A; -fun gloriously_Adv : Adv; -fun glory_N : N; -fun glory_V : V; -fun glory_hole_N : N; -fun gloss_N : N; -fun gloss_V2 : V2; -fun glossalgia_N : N; -fun glossarist_N : N; -fun glossary_N : N; -fun glossily_Adv : Adv; -fun glossiness_N : N; -fun glossitis_N : N; -fun glossolalia_N : N; -fun glossopharyngeal_A : A; -fun glossoptosis_N : N; -fun glossy_A : A; -fun glossy_N : N; -fun glossy_haired_A : A; -fun glottal_A : A; -fun glottis_N : N; -fun glottochronological_A : A; -fun glottochronology_N : N; -fun glove_N : N; -fun glove_compartment_N : N; -fun gloved_A : A; -fun gloveless_A : A; -fun glow_N : N; -fun glow_V : V; -fun glow_worm_N : N; -fun glower_V : V; -fun glower_V2 : V2; -fun gloweringly_Adv : Adv; -fun glowing_A : A; -fun glowingly_Adv : Adv; -fun glowworm_N : N; -fun gloxinia_N : N; -fun glucagon_N : N; -fun glucocorticoid_N : N; -fun glucosamine_N : N; -fun glucose_N : N; -fun glucoside_N : N; -fun glucosuria_N : N; -fun glue_N : N; -fun glue_V2 : V2; -fun glued_A : A; -fun gluey_A : A; -fun glum_A : A; -fun glume_N : N; -fun glumness_N : N; -fun gluon_N : N; -fun glut_N : N; -fun glut_V2 : V2; -fun glutamate_N : N; -fun glutamine_N : N; -fun gluteal_A : A; -fun glutelin_N : N; -fun gluten_N : N; -fun glutethimide_N : N; -fun gluteus_N : N; -fun glutinous_A : A; -fun glutted_A : A; -fun glutton_N : N; -fun gluttonous_A : A; -fun gluttonously_Adv : Adv; -fun gluttony_N : N; -fun glyburide_N : N; -fun glyceraldehyde_N : N; -fun glyceride_N : N; -fun glycerine_N : N; -fun glycerite_N : N; -fun glycerogelatin_N : N; -fun glycerol_N : N; -fun glyceryl_N : N; -fun glycine_N : N; -fun glycogen_N : N; -fun glycogenesis_N : N; -fun glycogenic_A : A; -fun glycolysis_N : N; -fun glycoprotein_N : N; -fun glycoside_N : N; -fun glycosuria_N : N; -fun glyph_N : N; -fun glyptics_N : N; -fun glyptography_N : N; -fun gnarled_A : A; -fun gnash_V : V; -fun gnash_V2 : V2; -fun gnat_N : N; -fun gnatcatcher_N : N; -fun gnathion_N : N; -fun gnathostome_N : N; -fun gnaw_V : V; -fun gnaw_V2 : V2; -fun gneiss_N : N; -fun gnetum_N : N; -fun gnocchi_N : N; -fun gnome_N : N; -fun gnomic_A : A; -fun gnomish_A : A; -fun gnomon_N : N; -fun gnosis_N : N; -fun gnostic_A : A; -fun gnp_N : N; -fun gnu_N : N; -fun go_A : A; -fun go_N : N; -fun go_V : V; -fun go_V2 : V2; -fun go_VA : VA; -fun go_VS : VS; -fun go_VV : VV; -fun go_about_V2 : V2; -fun go_ahead_N : N; -fun go_as_you_please_A : A; -fun go_as_you_please_A : A; -fun go_between_N : N; -fun go_by_N : N; -fun go_cart_N : N; -fun go_getter_N : N; -fun go_getter_N : N; -fun go_kart_N : N; -fun go_kart_N : N; -fun go_slow_N : N; -fun go_slow_N : N; -fun go_to_meeting_A : A; -fun go_to_meeting_A : A; -fun goad_N : N; -fun goad_V2 : V2; -fun goal_N : N; -fun goal_directed_A : A; -fun goal_kick_N : N; -fun goal_kick_N : N; -fun goal_line_N : N; -fun goalie_N : N; -fun goalkeeper_N : N; -fun goalless_A : A; -fun goalmouth_N : N; -fun goalpost_N : N; -fun goat_N : N; -fun goatee_N : N; -fun goateed_A : A; -fun goatfish_N : N; -fun goatherd_N : N; -fun goatsfoot_N : N; -fun goatskin_N : N; -fun goatsucker_N : N; -fun gob_N : N; -fun gobbet_N : N; -fun gobble_N : N; -fun gobble_V : V; -fun gobble_V2 : V2; -fun gobbledygook_N : N; -fun gobbler_N : N; -fun goblet_N : N; -fun goblet_shaped_A : A; -fun goblin_N : N; -fun gobsmacked_A : A; -fun goby_N : N; -fun god_N : N; -fun god_damn_A : A; -fun god_damned_A : A; -fun godchild_N : N; -fun goddam_A : A; -fun goddam_Adv : Adv; -fun goddaughter_N : N; -fun goddess_N : N; -fun godfather_N : N; -fun godfearing_A : A; -fun godforsaken_A : A; -fun godhead_N : N; -fun godless_A : A; -fun godlessness_N : N; -fun godlike_A : A; -fun godliness_N : N; -fun godly_A : A; -fun godmother_N : N; -fun godown_N : N; -fun godparent_N : N; -fun godsend_N : N; -fun godson_N : N; -fun godspeed_N : N; -fun godwit_N : N; -fun goethite_N : N; -fun gofer_N : N; -fun goffer_N : N; -fun goggle_V : V; -fun goggle_V2 : V2; -fun goggle_box_N : N; -fun goggle_eyed_A : A; -fun goggle_eyed_A : A; -fun goggles_N : N; -fun going_A : A; -fun going_N : N; -fun going_over_N : N; -fun going_over_N : N; -fun goiter_N : N; -fun goitre_N : N; -fun goitrogen_N : N; -fun gold_A : A; -fun gold_N : N; -fun gold_beater_N : N; -fun gold_colored_A : A; -fun gold_digger_N : N; -fun gold_dust_N : N; -fun gold_foil_N : N; -fun gold_leaf_N : N; -fun gold_plate_N : N; -fun gold_rush_N : N; -fun goldbeater_N : N; -fun goldbrick_N : N; -fun goldcrest_N : N; -fun golden_A : A; -fun golden_brown_A : A; -fun golden_green_A : A; -fun golden_yellow_A : A; -fun goldenbush_N : N; -fun goldeneye_N : N; -fun goldenrod_N : N; -fun goldenseal_N : N; -fun goldfield_N : N; -fun goldfields_N : N; -fun goldfinch_N : N; -fun goldfish_N : N; -fun goldilocks_N : N; -fun goldmine_N : N; -fun goldsmith_N : N; -fun goldstone_N : N; -fun goldthread_N : N; -fun golem_N : N; -fun golf_N : N; -fun golf_V : V; -fun golf_ball_N : N; -fun golf_club_N : N; -fun golf_course_N : N; -fun golf_links_N : N; -fun golfcart_N : N; -fun golfer_N : N; -fun golfing_N : N; -fun goliard_N : N; -fun goliath_N : N; -fun golliwog_N : N; -fun golosh_N : N; -fun gomphothere_N : N; -fun gonad_N : N; -fun gonadal_A : A; -fun gonadotropic_A : A; -fun gonadotropin_N : N; -fun gondola_N : N; -fun gondola_V2 : V2; -fun gondolier_N : N; -fun gone_A : A; -fun goner_N : N; -fun gong_N : N; -fun gong_V2 : V2; -fun gonif_N : N; -fun goniometer_N : N; -fun gonion_N : N; -fun gonioscopy_N : N; -fun gonococcus_N : N; -fun gonorrhea_N : N; -fun gonorrhoea_N : N; -fun goo_N : N; -fun good_A : A; -fun good_N : N; -fun good_samaritan_PN : PN; -fun good_and_Adv : Adv; -fun good_enough_A : A; -fun good_fellowship_N : N; -fun good_for_naught_A : A; -fun good_for_naught_N : N; -fun good_for_nothing_A : A; -fun good_for_nothing_A : A; -fun good_for_nothing_N : N; -fun good_humoured_A : A; -fun good_king_henry_N : N; -fun good_looking_A : A; -fun good_natured_A : A; -fun good_natured_A : A; -fun good_naturedly_Adv : Adv; -fun good_neighbourliness_N : N; -fun good_tempered_A : A; -fun good_temperedness_N : N; -fun good_time_A : A; -fun goodbye_N : N; -fun goodish_A : A; -fun goodly_A : A; -fun goodness_N : N; -fun goodwill_N : N; -fun goody_N : N; -fun goody_goody_A : A; -fun goody_goody_A : A; -fun goody_goody_N : N; -fun goody_goody_N : N; -fun gooey_A : A; -fun goof_N : N; -fun goof_V : V; -fun goof_V2 : V2; -fun goofy_A : A; -fun googly_N : N; -fun googol_N : N; -fun googolplex_N : N; -fun gook_N : N; -fun goon_N : N; -fun goosander_N : N; -fun goose_N : N; -fun goose_flesh_N : N; -fun goose_step_N : N; -fun goose_step_V : V; -fun goose_step_V2 : V2; -fun gooseberry_N : N; -fun goosefish_N : N; -fun goosefoot_N : N; -fun gooseneck_N : N; -fun gopher_N : N; -fun goral_N : N; -fun gordian_A : A; -fun gore_N : N; -fun gore_V2 : V2; -fun gorge_N : N; -fun gorge_V : V; -fun gorge_V2 : V2; -fun gorgeous_A : A; -fun gorgeously_Adv : Adv; -fun gorgerin_N : N; -fun gorget_N : N; -fun gorgon_N : N; -fun gorgonian_N : N; -fun gorgonzola_N : N; -fun gorilla_N : N; -fun gormandize_V : V; -fun gormless_A : A; -fun gorse_N : N; -fun gory_A : A; -fun goshawk_N : N; -fun gosling_N : N; -fun gospel_N : N; -fun gossamer_N : N; -fun gossip_N : N; -fun gossip_V : V; -fun gossiping_N : N; -fun goth_N : N; -fun gothic_A : A; -fun gothic_N : N; -fun gouache_N : N; -fun gouge_N : N; -fun gouge_V2 : V2; -fun gouger_N : N; -fun goulash_N : N; -fun gourd_N : N; -fun gourde_N : N; -fun gourmand_N : N; -fun gourmandism_N : N; -fun gourmet_N : N; -fun gout_N : N; -fun gouty_A : A; -fun govern_V : V; -fun govern_V2 : V2; -fun governance_N : N; -fun governed_N : N; -fun governess_N : N; -fun governing_A : A; -fun government_N : N; -fun government_in_exile_N : N; -fun governmental_A : A; -fun governmentally_Adv : Adv; -fun governor_N : N; -fun governor_general_N : N; -fun governorship_N : N; -fun govt_N : N; -fun gown_N : N; -fun gown_V2 : V2; -fun gowned_A : A; -fun gp_N : N; -fun grab_N : N; -fun grab_V : V; -fun grab_V2 : V2; -fun grabber_N : N; -fun grace_N : N; -fun grace_V2 : V2; -fun graceful_A : A; -fun gracefully_Adv : Adv; -fun gracefulness_N : N; -fun graceless_A : A; -fun gracelessly_Adv : Adv; -fun gracelessness_N : N; -fun gracilariid_N : N; -fun gracile_A : A; -fun gracious_A : A; -fun graciously_Adv : Adv; -fun graciousness_N : N; -fun grackle_N : N; -fun grad_N : N; -fun gradable_A : A; -fun gradation_N : N; -fun gradational_A : A; -fun grade_N : N; -fun grade_V2 : V2; -fun grade_appropriate_A : A; -fun grade_constructed_A : A; -fun graded_A : A; -fun grader_N : N; -fun gradient_N : N; -fun grading_N : N; -fun gradual_A : A; -fun gradual_N : N; -fun graduality_N : N; -fun gradually_Adv : Adv; -fun gradualness_N : N; -fun graduate_A : A; -fun graduate_N : N; -fun graduate_V : V; -fun graduate_V2 : V2; -fun graduation_N : N; -fun graffito_N : N; -fun graft_N : N; -fun graft_V : V; -fun graft_V2 : V2; -fun grail_N : N; -fun grain_N : N; -fun grained_A : A; -fun grainfield_N : N; -fun graining_N : N; -fun gram_N : N; -fun grama_N : N; -fun gramicidin_N : N; -fun grammar_N : N; -fun grammarian_N : N; -fun grammatical_A : A; -fun grammatically_Adv : Adv; -fun gramme_N : N; -fun gramophone_N : N; -fun grampus_N : N; -fun granadilla_N : N; -fun granary_N : N; -fun grand_A : A; -fun grand_prix_N : N; -fun grandad_N : N; -fun grandaunt_N : N; -fun grandchild_N : N; -fun granddad_N : N; -fun granddaughter_N : N; -fun grandee_N : N; -fun grandeur_N : N; -fun grandfather_N : N; -fun grandiloquence_N : N; -fun grandiloquent_A : A; -fun grandiloquently_Adv : Adv; -fun grandiose_A : A; -fun grandiosity_N : N; -fun grandly_Adv : Adv; -fun grandma_N : N; -fun grandmaster_N : N; -fun grandmother_N : N; -fun grandnephew_N : N; -fun grandniece_N : N; -fun grandpa_N : N; -fun grandparent_N : N; -fun grandson_N : N; -fun grandstand_N : N; -fun grandstander_N : N; -fun granduncle_N : N; -fun grange_N : N; -fun granite_N : N; -fun graniteware_N : N; -fun granitic_A : A; -fun grannie_N : N; -fun granny_N : N; -fun granola_N : N; -fun grant_N : N; -fun grant_V2 : V2; -fun grant_in_aid_N : N; -fun grantee_N : N; -fun granter_N : N; -fun grantor_N : N; -fun granular_A : A; -fun granularity_N : N; -fun granulate_V : V; -fun granulate_V2 : V2; -fun granulated_A : A; -fun granulation_N : N; -fun granule_N : N; -fun granuliferous_A : A; -fun granulocyte_N : N; -fun granulocytic_A : A; -fun granuloma_N : N; -fun granulomatous_A : A; -fun grape_N : N; -fun grape_sized_A : A; -fun grape_sugar_N : N; -fun grapefruit_N : N; -fun grapelike_A : A; -fun grapeshot_N : N; -fun grapevine_N : N; -fun grapey_A : A; -fun graph_N : N; -fun graphic_A : A; -fun graphic_N : N; -fun graphical_A : A; -fun graphically_Adv : Adv; -fun graphics_N : N; -fun graphite_N : N; -fun graphologist_N : N; -fun graphology_N : N; -fun grapnel_N : N; -fun grappa_N : N; -fun grapple_V : V; -fun grappling_iron_N : N; -fun grasp_N : N; -fun grasp_V : V; -fun grasp_V2 : V2; -fun grasping_A : A; -fun grasping_N : N; -fun grass_N : N; -fun grass_V : V; -fun grass_V2 : V2; -fun grass_covered_A : A; -fun grass_eating_A : A; -fun grassfinch_N : N; -fun grassfire_N : N; -fun grasshopper_N : N; -fun grassland_N : N; -fun grassless_A : A; -fun grasslike_A : A; -fun grassroots_A : A; -fun grassy_A : A; -fun grassy_leaved_A : A; -fun grate_N : N; -fun grate_V : V; -fun grate_V2 : V2; -fun grateful_A : A; -fun gratefulness_N : N; -fun grater_N : N; -fun gratification_N : N; -fun gratified_A : A; -fun gratify_V2 : V2; -fun gratifying_A : A; -fun gratifyingly_Adv : Adv; -fun grating_A : A; -fun grating_N : N; -fun gratingly_Adv : Adv; -fun gratis_A : A; -fun gratis_Adv : Adv; -fun gratitude_N : N; -fun gratuitous_A : A; -fun gratuitously_Adv : Adv; -fun gratuity_N : N; -fun grave_A : A; -fun grave_N : N; -fun grave_V2 : V2; -fun gravedigger_N : N; -fun gravel_N : N; -fun gravel_V2 : V2; -fun gravelly_A : A; -fun gravelweed_N : N; -fun gravely_Adv : Adv; -fun graven_A : A; -fun graveness_N : N; -fun graver_N : N; -fun graverobber_N : N; -fun gravestone_N : N; -fun graveyard_N : N; -fun gravida_N : N; -fun gravidity_N : N; -fun gravimeter_N : N; -fun graving_dock_N : N; -fun gravitate_V : V; -fun gravitation_N : N; -fun gravitational_A : A; -fun gravitationally_Adv : Adv; -fun graviton_N : N; -fun gravity_N : N; -fun gravity_assist_N : N; -fun gravure_N : N; -fun gravy_N : N; -fun gravy_boat_N : N; -fun gray_A : A; -fun gray_N : N; -fun gray_V : V; -fun gray_V2 : V2; -fun grayly_Adv : Adv; -fun graze_N : N; -fun graze_V : V; -fun graze_V2 : V2; -fun grazed_A : A; -fun grazier_N : N; -fun grazing_N : N; -fun grazing_land_N : N; -fun grease_N : N; -fun grease_V2 : V2; -fun grease_gun_N : N; -fun grease_gun_N : N; -fun greasepaint_N : N; -fun greaseproof_A : A; -fun greaser_N : N; -fun greasewood_N : N; -fun greasily_Adv : Adv; -fun greasiness_N : N; -fun greasy_A : A; -fun great_A : A; -fun great_N : N; -fun great_solomon's_seal_PN : PN; -fun great_st_john's_wort_PN : PN; -fun great_aunt_N : N; -fun great_nephew_N : N; -fun great_niece_N : N; -fun great_uncle_N : N; -fun greatcoat_N : N; -fun greater_A : A; -fun greatest_A : A; -fun greathearted_A : A; -fun greatly_Adv : Adv; -fun greatness_N : N; -fun greave_N : N; -fun greaves_N : N; -fun grebe_N : N; -fun grecian_A : A; -fun greed_N : N; -fun greedily_Adv : Adv; -fun greediness_N : N; -fun greedy_A : A; -fun greek_A : A; -fun greek_N : N; -fun green_A : A; -fun green_N : N; -fun green_june_beetle_PN : PN; -fun green_white_A : A; -fun greenback_N : N; -fun greenbelt_N : N; -fun greenbottle_N : N; -fun greenery_N : N; -fun greeneye_N : N; -fun greeneyed_A : A; -fun greenfly_N : N; -fun greengage_N : N; -fun greengrocer_N : N; -fun greengrocery_N : N; -fun greenhorn_N : N; -fun greenhouse_A : A; -fun greenhouse_N : N; -fun greenish_A : A; -fun greenish_brown_A : A; -fun greenish_grey_A : A; -fun greenishness_N : N; -fun greenling_N : N; -fun greenly_Adv : Adv; -fun greenmail_N : N; -fun greenness_N : N; -fun greenockite_N : N; -fun greenroom_N : N; -fun greens_N : N; -fun greensand_N : N; -fun greenshank_N : N; -fun greenside_A : A; -fun greenskeeper_N : N; -fun greensward_N : N; -fun greenwing_N : N; -fun greenwood_N : N; -fun greet_V2 : V2; -fun greeter_N : N; -fun greeting_N : N; -fun gregarine_N : N; -fun gregarious_A : A; -fun gregariously_Adv : Adv; -fun gregariousness_N : N; -fun gregorian_A : A; -fun greisen_N : N; -fun gremlin_N : N; -fun grenade_N : N; -fun grenadian_A : A; -fun grenadian_N : N; -fun grenadier_N : N; -fun grenadine_N : N; -fun grevillea_N : N; -fun grey_A : A; -fun grey_N : N; -fun grey_V : V; -fun grey_V2 : V2; -fun grey_black_A : A; -fun grey_blue_A : A; -fun grey_brown_A : A; -fun grey_green_A : A; -fun grey_headed_A : A; -fun grey_pink_A : A; -fun grey_white_A : A; -fun greyback_N : N; -fun greybeard_N : N; -fun greyhen_N : N; -fun greyhound_N : N; -fun greyish_A : A; -fun greylag_N : N; -fun grid_N : N; -fun griddle_N : N; -fun gridiron_N : N; -fun gridlock_N : N; -fun grief_N : N; -fun grievance_N : N; -fun grieve_V : V; -fun grieve_V2 : V2; -fun grievous_A : A; -fun grievously_Adv : Adv; -fun griffin_N : N; -fun griffon_N : N; -fun grigri_N : N; -fun grill_N : N; -fun grill_V : V; -fun grill_V2 : V2; -fun grille_N : N; -fun grillroom_N : N; -fun grim_A : A; -fun grimace_N : N; -fun grimace_V : V; -fun grimace_V2 : V2; -fun grime_N : N; -fun grime_V2 : V2; -fun griminess_N : N; -fun grimly_Adv : Adv; -fun grimness_N : N; -fun grimoire_N : N; -fun grimy_A : A; -fun grin_N : N; -fun grin_V : V; -fun grin_V2 : V2; -fun grind_N : N; -fun grind_V : V; -fun grind_V2 : V2; -fun grinder_N : N; -fun grinding_N : N; -fun grindstone_N : N; -fun gringo_N : N; -fun grinner_N : N; -fun griot_N : N; -fun grip_N : N; -fun grip_V : V; -fun grip_V2 : V2; -fun gripe_N : N; -fun gripe_V : V; -fun gripe_VS : VS; -fun grippe_N : N; -fun gripsack_N : N; -fun grisaille_N : N; -fun griseofulvin_N : N; -fun grisly_A : A; -fun grison_N : N; -fun grissino_N : N; -fun grist_N : N; -fun gristle_N : N; -fun gristmill_N : N; -fun grit_N : N; -fun grit_V2 : V2; -fun grits_N : N; -fun gritty_A : A; -fun grivet_N : N; -fun grizzle_N : N; -fun grizzle_V : V; -fun grizzled_A : A; -fun grizzly_N : N; -fun groan_N : N; -fun groan_V : V; -fun groan_V2 : V2; -fun groaner_N : N; -fun groat_N : N; -fun groats_N : N; -fun grocer_N : N; -fun grocery_N : N; -fun groenendael_N : N; -fun grog_N : N; -fun grogginess_N : N; -fun groggy_A : A; -fun grogram_N : N; -fun groin_N : N; -fun groin_V2 : V2; -fun gromwell_N : N; -fun groom_N : N; -fun groom_V2 : V2; -fun groomed_A : A; -fun groomsman_N : N; -fun groove_N : N; -fun groove_V2 : V2; -fun grooved_A : A; -fun groover_N : N; -fun grooving_N : N; -fun groovy_A : A; -fun grope_N : N; -fun grope_V : V; -fun grope_V2 : V2; -fun groping_A : A; -fun gropingly_Adv : Adv; -fun grosbeak_N : N; -fun groschen_N : N; -fun grosgrain_N : N; -fun gross_A : A; -fun gross_N : N; -fun gross_V2 : V2; -fun grossly_Adv : Adv; -fun grossness_N : N; -fun grosz_N : N; -fun grot_N : N; -fun grotesque_A : A; -fun grotesque_N : N; -fun grotesquely_Adv : Adv; -fun grotesqueness_N : N; -fun grotto_N : N; -fun grotty_A : A; -fun grouch_N : N; -fun grouch_V : V; -fun grouchy_A : A; -fun ground_N : N; -fun ground_V : V; -fun ground_V2 : V2; -fun ground_bait_N : N; -fun ground_fish_N : N; -fun ground_floor_A : A; -fun ground_plan_N : N; -fun ground_rent_N : N; -fun ground_shaker_N : N; -fun groundbreaking_N : N; -fun groundcover_N : N; -fun grounder_N : N; -fun groundfish_N : N; -fun groundhog_N : N; -fun grounding_N : N; -fun groundless_A : A; -fun groundlessness_N : N; -fun groundling_N : N; -fun groundmass_N : N; -fun groundnut_N : N; -fun grounds_N : N; -fun groundsel_N : N; -fun groundsheet_N : N; -fun groundsman_N : N; -fun groundspeed_N : N; -fun groundwork_N : N; -fun group_N : N; -fun group_V : V; -fun group_V2 : V2; -fun grouped_A : A; -fun grouper_N : N; -fun groupie_N : N; -fun grouping_N : N; -fun groupthink_N : N; -fun groupware_N : N; -fun grouse_N : N; -fun grouse_V : V; -fun grouse_VS : VS; -fun grouseberry_N : N; -fun grout_N : N; -fun grove_N : N; -fun grovel_V : V; -fun groveller_N : N; -fun grow_V : V; -fun grow_V2 : V2; -fun grow_V2V : V2V; -fun grow_VA : VA; -fun grow_VS : VS; -fun grower_N : N; -fun growing_A : A; -fun growing_N : N; -fun growl_N : N; -fun growl_V : V; -fun growl_V2 : V2; -fun growler_N : N; -fun growling_N : N; -fun growlingly_Adv : Adv; -fun grown_up_A : A; -fun grown_up_N : N; -fun growth_N : N; -fun groyne_N : N; -fun grub_N : N; -fun grub_V : V; -fun grub_V2 : V2; -fun grubbiness_N : N; -fun grubby_A : A; -fun grubby_N : N; -fun grubstake_N : N; -fun grudge_N : N; -fun grudge_V2 : V2; -fun grudging_A : A; -fun grudgingly_Adv : Adv; -fun gruel_N : N; -fun gruelling_A : A; -fun gruesome_A : A; -fun gruesomely_Adv : Adv; -fun gruesomeness_N : N; -fun gruff_A : A; -fun gruffly_Adv : Adv; -fun gruffness_N : N; -fun grugru_N : N; -fun grumble_N : N; -fun grumble_V : V; -fun grumble_V2 : V2; -fun grumble_VS : VS; -fun grumbler_N : N; -fun grumbling_A : A; -fun grume_N : N; -fun grumpily_Adv : Adv; -fun grumpiness_N : N; -fun grumpy_A : A; -fun grundyism_N : N; -fun grunt_N : N; -fun grunt_V : V; -fun grunt_V2 : V2; -fun grunter_N : N; -fun gryphon_N : N; -fun guacamole_N : N; -fun guaiacum_N : N; -fun guama_N : N; -fun guan_N : N; -fun guanabenz_N : N; -fun guanaco_N : N; -fun guanine_N : N; -fun guano_N : N; -fun guar_N : N; -fun guarani_N : N; -fun guarantee_N : N; -fun guarantee_V : V; -fun guarantee_V2 : V2; -fun guarantee_VS : VS; -fun guarantor_N : N; -fun guaranty_N : N; -fun guard_N : N; -fun guard_V : V; -fun guard_V2 : V2; -fun guard_boat_N : N; -fun guardant_A : A; -fun guarded_A : A; -fun guardhouse_N : N; -fun guardian_N : N; -fun guardianship_N : N; -fun guardrail_N : N; -fun guardroom_N : N; -fun guardship_N : N; -fun guardsman_N : N; -fun guatemalan_A : A; -fun guatemalan_N : N; -fun guava_N : N; -fun guayule_N : N; -fun gubernatorial_A : A; -fun gudgeon_N : N; -fun guelder_rose_N : N; -fun guenon_N : N; -fun guerdon_N : N; -fun guereza_N : N; -fun gueridon_N : N; -fun guerilla_N : N; -fun guerrilla_N : N; -fun guess_N : N; -fun guess_V : V; -fun guess_V2 : V2; -fun guess_VS : VS; -fun guesser_N : N; -fun guesstimate_N : N; -fun guesstimate_V2 : V2; -fun guesswork_N : N; -fun guest_N : N; -fun guest_night_N : N; -fun guesthouse_N : N; -fun guestroom_N : N; -fun guffaw_N : N; -fun guffaw_V : V; -fun guffaw_V2 : V2; -fun guidance_N : N; -fun guide_N : N; -fun guide_V2 : V2; -fun guidebook_N : N; -fun guided_A : A; -fun guideline_N : N; -fun guidepost_N : N; -fun guiding_A : A; -fun guild_N : N; -fun guild_hall_N : N; -fun guilder_N : N; -fun guildhall_N : N; -fun guile_N : N; -fun guileful_A : A; -fun guileless_A : A; -fun guillemot_N : N; -fun guilloche_N : N; -fun guillotine_N : N; -fun guillotine_V2 : V2; -fun guilt_N : N; -fun guilt_ridden_A : A; -fun guiltily_Adv : Adv; -fun guiltiness_N : N; -fun guiltless_A : A; -fun guilty_A : A; -fun guimpe_N : N; -fun guinea_N : N; -fun guinea_fowl_N : N; -fun guinea_pig_N : N; -fun guinean_A : A; -fun guinean_N : N; -fun guinness_N : N; -fun guise_N : N; -fun guitar_N : N; -fun guitar_shaped_A : A; -fun guitarfish_N : N; -fun guitarist_N : N; -fun gulag_N : N; -fun gulch_N : N; -fun gulden_N : N; -fun gulf_N : N; -fun gulfweed_N : N; -fun gull_N : N; -fun gull_V2 : V2; -fun gullet_N : N; -fun gullibility_N : N; -fun gullible_A : A; -fun gully_N : N; -fun gulp_N : N; -fun gulp_V : V; -fun gulp_V2 : V2; -fun gulper_N : N; -fun gulping_N : N; -fun gum_N : N; -fun gum_V2 : V2; -fun gum_lac_N : N; -fun gum_like_A : A; -fun gumbo_N : N; -fun gumbo_limbo_N : N; -fun gumboil_N : N; -fun gumboot_N : N; -fun gumdrop_N : N; -fun gumma_N : N; -fun gummed_A : A; -fun gummite_N : N; -fun gummosis_N : N; -fun gummy_A : A; -fun gumption_N : N; -fun gumshoe_N : N; -fun gumweed_N : N; -fun gumwood_N : N; -fun gun_N : N; -fun gun_V2 : V2; -fun gun_carriage_N : N; -fun gunboat_N : N; -fun guncotton_N : N; -fun gundog_N : N; -fun gunfight_N : N; -fun gunfire_N : N; -fun gunflint_N : N; -fun gung_ho_A : A; -fun gunite_N : N; -fun gunlock_N : N; -fun gunman_N : N; -fun gunmetal_N : N; -fun gunnel_N : N; -fun gunner_N : N; -fun gunnery_N : N; -fun gunny_N : N; -fun gunnysack_N : N; -fun gunplay_N : N; -fun gunpoint_N : N; -fun gunpowder_N : N; -fun gunroom_N : N; -fun gunrunner_N : N; -fun gunrunning_N : N; -fun gunshot_N : N; -fun gunsight_N : N; -fun gunsmith_N : N; -fun gunwale_N : N; -fun guppy_N : N; -fun gurgle_N : N; -fun gurgle_V : V; -fun gurgle_V2 : V2; -fun gurkha_N : N; -fun gurnard_N : N; -fun gurney_N : N; -fun guru_N : N; -fun gush_N : N; -fun gush_V : V; -fun gush_V2 : V2; -fun gusher_N : N; -fun gushes_VS : VS; -fun gushing_A : A; -fun gushingly_Adv : Adv; -fun gusset_N : N; -fun gusseted_A : A; -fun gust_N : N; -fun gustation_N : N; -fun gustatory_A : A; -fun gusto_N : N; -fun gusty_A : A; -fun gut_N : N; -fun gut_V2 : V2; -fun gutless_A : A; -fun gutlessness_N : N; -fun gutsiness_N : N; -fun gutsy_A : A; -fun gutta_percha_N : N; -fun gutta_percha_N : N; -fun gutter_N : N; -fun gutter_V : V; -fun guttersnipe_N : N; -fun guttural_A : A; -fun guttural_N : N; -fun gutturally_Adv : Adv; -fun guvnor_N : N; -fun guy_N : N; -fun guy_V2 : V2; -fun guyanese_A : A; -fun guyanese_N : N; -fun guyot_N : N; -fun guzzle_V : V; -fun guzzle_V2 : V2; -fun guzzler_N : N; -fun gybe_V : V; -fun gybe_V2 : V2; -fun gym_N : N; -fun gymkhana_N : N; -fun gymnasium_N : N; -fun gymnast_N : N; -fun gymnastic_A : A; -fun gymnastics_N : N; -fun gymnosophical_A : A; -fun gymnosophist_N : N; -fun gymnosophy_N : N; -fun gymnosperm_N : N; -fun gymnospermous_A : A; -fun gymslip_N : N; -fun gynaecological_A : A; -fun gynaecologist_N : N; -fun gynaecology_N : N; -fun gynandromorphic_A : A; -fun gynecocracy_N : N; -fun gynecological_A : A; -fun gynecologist_N : N; -fun gynecology_N : N; -fun gynecomastia_N : N; -fun gyneolatry_N : N; -fun gynobase_N : N; -fun gynoecium_N : N; -fun gynogenesis_N : N; -fun gynophobia_N : N; -fun gynophore_N : N; -fun gynostegium_N : N; -fun gyp_N : N; -fun gyp_V2 : V2; -fun gypsum_N : N; -fun gypsy_N : N; -fun gyral_A : A; -fun gyrate_V : V; -fun gyration_N : N; -fun gyrfalcon_N : N; -fun gyro_N : N; -fun gyrocompass_N : N; -fun gyromitra_N : N; -fun gyroscope_N : N; -fun gyroscopic_A : A; -fun gyrostabilizer_N : N; -fun gyrus_N : N; -fun h'm_V : V; -fun h_bomb_N : N; -fun ha'p'orth_N : N; -fun ha'penny_N : N; -fun habanera_N : N; -fun habeas_corpus_N : N; -fun haberdasher_N : N; -fun haberdashery_N : N; -fun habergeon_N : N; -fun habit_N : N; -fun habitability_N : N; -fun habitable_A : A; -fun habitat_N : N; -fun habitation_N : N; -fun habited_A : A; -fun habitual_A : A; -fun habitually_Adv : Adv; -fun habituate_V2 : V2; -fun habituation_N : N; -fun habitude_N : N; -fun habitue_N : N; -fun habitus_N : N; -fun hacek_N : N; -fun hacienda_N : N; -fun hack_N : N; -fun hack_V : V; -fun hack_V2 : V2; -fun hackberry_N : N; -fun hacker_N : N; -fun hackle_N : N; -fun hackney_N : N; -fun hackneyed_A : A; -fun hacksaw_N : N; -fun hackwork_N : N; -fun hadal_A : A; -fun haddock_N : N; -fun hadji_N : N; -fun hadron_N : N; -fun hadrosaur_N : N; -fun haematite_N : N; -fun haemoglobin_N : N; -fun haemophilia_N : N; -fun haemophiliac_N : N; -fun haemophilic_A : A; -fun haemoproteid_N : N; -fun haemorrhage_N : N; -fun haemosporidian_N : N; -fun hafnium_N : N; -fun haft_N : N; -fun hag_N : N; -fun hag_ridden_A : A; -fun hag_ridden_A : A; -fun hagberry_N : N; -fun hagfish_N : N; -fun haggard_A : A; -fun haggardly_Adv : Adv; -fun haggis_N : N; -fun haggle_N : N; -fun haggle_V : V; -fun haggler_N : N; -fun hagiographer_N : N; -fun hagiography_N : N; -fun hagiolatry_N : N; -fun hagiology_N : N; -fun haha_N : N; -fun haik_N : N; -fun haiku_N : N; -fun hail_N : N; -fun hail_V : V; -fun hail_V2 : V2; -fun hailstone_N : N; -fun hailstorm_N : N; -fun hair_N : N; -fun hair's_breadth_N : N; -fun hair's_breadth_N : N; -fun hair_breadth_N : N; -fun hair_dye_N : N; -fun hair_oil_N : N; -fun hair_raiser_N : N; -fun hair_raising_A : A; -fun hair_shirt_A : A; -fun hair_shirt_N : N; -fun hair_slide_N : N; -fun hair_trigger_N : N; -fun hairball_N : N; -fun hairbrush_N : N; -fun haircloth_N : N; -fun haircut_N : N; -fun hairdo_N : N; -fun hairdresser_N : N; -fun hairdressing_N : N; -fun hairiness_N : N; -fun hairless_A : A; -fun hairlessness_N : N; -fun hairlike_A : A; -fun hairline_N : N; -fun hairnet_N : N; -fun hairpiece_N : N; -fun hairpin_N : N; -fun hairsplitter_N : N; -fun hairsplitting_A : A; -fun hairsplitting_N : N; -fun hairspring_N : N; -fun hairstreak_N : N; -fun hairstyle_N : N; -fun hairstylist_N : N; -fun hairweaving_N : N; -fun hairy_A : A; -fun haitian_A : A; -fun haitian_N : N; -fun hajj_N : N; -fun hajji_N : N; -fun hake_N : N; -fun hakim_N : N; -fun halal_A : A; -fun halal_N : N; -fun halberd_N : N; -fun halberdier_N : N; -fun halcyon_A : A; -fun halcyon_N : N; -fun hale_A : A; -fun haler_N : N; -fun half_A : A; -fun half_Adv : Adv; -fun half_N : N; -fun half_Predet : Predet; -fun half_and_half_A : A; -fun half_and_half_Adv : Adv; -fun half_and_half_N : N; -fun half_baked_A : A; -fun half_baked_A : A; -fun half_blood_N : N; -fun half_blooded_A : A; -fun half_bound_A : A; -fun half_breed_N : N; -fun half_breed_N : N; -fun half_brother_N : N; -fun half_caste_N : N; -fun half_caste_N : N; -fun half_century_N : N; -fun half_clothed_A : A; -fun half_cock_N : N; -fun half_crazed_A : A; -fun half_crown_N : N; -fun half_hardy_A : A; -fun half_hardy_A : A; -fun half_hearted_A : A; -fun half_heartedly_Adv : Adv; -fun half_holiday_N : N; -fun half_holiday_N : N; -fun half_hour_N : N; -fun half_hour_N : N; -fun half_hourly_A : A; -fun half_hourly_A : A; -fun half_hourly_Adv : Adv; -fun half_hourly_Adv : Adv; -fun half_intensity_N : N; -fun half_length_A : A; -fun half_length_A : A; -fun half_length_N : N; -fun half_light_N : N; -fun half_mast_N : N; -fun half_moon_N : N; -fun half_pay_N : N; -fun half_pay_N : N; -fun half_price_Adv : Adv; -fun half_price_Adv : Adv; -fun half_seas_over_A : A; -fun half_seas_over_A : A; -fun half_sister_N : N; -fun half_size_A : A; -fun half_size_A : A; -fun half_term_N : N; -fun half_timber_A : A; -fun half_timbered_A : A; -fun half_time_A : A; -fun half_time_Adv : Adv; -fun half_time_N : N; -fun half_track_A : A; -fun half_track_N : N; -fun half_tracked_A : A; -fun half_truth_N : N; -fun half_truth_N : N; -fun half_volley_N : N; -fun half_yearly_A : A; -fun half_yearly_Adv : Adv; -fun half_yearly_Adv : Adv; -fun halfback_N : N; -fun halfbeak_N : N; -fun halfhearted_A : A; -fun halfpenny_N : N; -fun halfpennyworth_N : N; -fun halftime_N : N; -fun halftone_N : N; -fun halfway_A : A; -fun halfway_Adv : Adv; -fun halfwit_N : N; -fun halfwitted_A : A; -fun halibut_N : N; -fun halide_N : N; -fun halite_N : N; -fun halitosis_N : N; -fun halitus_N : N; -fun hall_N : N; -fun hall_stand_N : N; -fun hallelujah_N : N; -fun halliard_N : N; -fun hallmark_N : N; -fun halloo_N : N; -fun halloo_V : V; -fun hallow_N : N; -fun hallow_V2 : V2; -fun hallowe'en_N : N; -fun hallowed_A : A; -fun hallstand_N : N; -fun hallucination_N : N; -fun hallucinatory_A : A; -fun hallucinogen_N : N; -fun hallucinogenic_A : A; -fun hallucinosis_N : N; -fun hallway_N : N; -fun halma_N : N; -fun halo_N : N; -fun halobacteria_N : N; -fun halocarbon_N : N; -fun haloform_N : N; -fun halogen_N : N; -fun halogeton_N : N; -fun halon_N : N; -fun haloperidol_N : N; -fun halophile_N : N; -fun halophyte_N : N; -fun halothane_N : N; -fun halt_A : A; -fun halt_N : N; -fun halt_V : V; -fun halt_V2 : V2; -fun halter_N : N; -fun halting_A : A; -fun haltingly_Adv : Adv; -fun halve_V2 : V2; -fun halyard_N : N; -fun ham_N : N; -fun ham_V : V; -fun ham_V2 : V2; -fun ham_fisted_A : A; -fun ham_handed_A : A; -fun hamadryad_N : N; -fun hamartoma_N : N; -fun hamate_N : N; -fun hamburger_N : N; -fun hame_N : N; -fun hamelia_N : N; -fun hamlet_N : N; -fun hammer_N : N; -fun hammer_V : V; -fun hammer_V2 : V2; -fun hammer_shaped_A : A; -fun hammered_A : A; -fun hammerhead_N : N; -fun hammerlock_N : N; -fun hammertoe_N : N; -fun hamming_N : N; -fun hammock_N : N; -fun hammy_A : A; -fun hamper_N : N; -fun hamper_V2 : V2; -fun hamster_N : N; -fun hamstring_N : N; -fun hamstring_V2 : V2; -fun hand_N : N; -fun hand_V2 : V2; -fun hand_and_foot_Adv : Adv; -fun hand_barrow_N : N; -fun hand_carry_V2 : V2; -fun hand_grenade_N : N; -fun hand_held_A : A; -fun hand_in_glove_Adv : Adv; -fun hand_in_hand_Adv : Adv; -fun hand_loomed_A : A; -fun hand_luggage_N : N; -fun hand_me_down_A : A; -fun hand_me_down_N : N; -fun hand_me_down_N : N; -fun hand_operated_A : A; -fun hand_organ_N : N; -fun hand_out_N : N; -fun hand_over_fist_Adv : Adv; -fun hand_picked_A : A; -fun hand_to_hand_A : A; -fun hand_to_hand_Adv : Adv; -fun hand_to_mouth_A : A; -fun hand_to_mouth_Adv : Adv; -fun handbag_N : N; -fun handball_N : N; -fun handbarrow_N : N; -fun handbell_N : N; -fun handbill_N : N; -fun handbook_N : N; -fun handbow_N : N; -fun handbrake_N : N; -fun handbreadth_N : N; -fun handcar_N : N; -fun handcart_N : N; -fun handclap_N : N; -fun handcuff_N : N; -fun handcuff_V2 : V2; -fun handed_A : A; -fun handed_down_A : A; -fun handedness_N : N; -fun handfeed_V2 : V2; -fun handful_N : N; -fun handhold_N : N; -fun handicap_N : N; -fun handicap_V2 : V2; -fun handicraft_N : N; -fun handily_Adv : Adv; -fun handiness_N : N; -fun handiwork_N : N; -fun handkerchief_N : N; -fun handle_N : N; -fun handle_V : V; -fun handle_V2 : V2; -fun handlebar_N : N; -fun handled_A : A; -fun handleless_A : A; -fun handler_N : N; -fun handless_A : A; -fun handline_N : N; -fun handling_N : N; -fun handloom_N : N; -fun handmade_A : A; -fun handmaid_N : N; -fun handoff_N : N; -fun handout_N : N; -fun handover_N : N; -fun handrail_N : N; -fun handrest_N : N; -fun hands_N : N; -fun hands_down_A : A; -fun hands_off_A : A; -fun hands_on_A : A; -fun handsaw_N : N; -fun handset_N : N; -fun handsewn_A : A; -fun handshake_N : N; -fun handshaking_N : N; -fun handsome_A : A; -fun handsomely_Adv : Adv; -fun handsomeness_N : N; -fun handspike_N : N; -fun handspring_N : N; -fun handstamp_N : N; -fun handstand_N : N; -fun handwear_N : N; -fun handwheel_N : N; -fun handwork_N : N; -fun handwriting_N : N; -fun handwritten_A : A; -fun handy_A : A; -fun handyman_N : N; -fun hang_N : N; -fun hang_V : V; -fun hang_V2 : V2; -fun hang_up_N : N; -fun hang_up_N : N; -fun hangar_N : N; -fun hangdog_A : A; -fun hanger_N : N; -fun hanger_on_N : N; -fun hanging_N : N; -fun hangman_N : N; -fun hangnail_N : N; -fun hangover_N : N; -fun hank_N : N; -fun hanker_V : V; -fun hankering_N : N; -fun hanky_N : N; -fun hanky_panky_N : N; -fun hansard_N : N; -fun hansom_N : N; -fun hao_N : N; -fun hap_N : N; -fun hap_V : V; -fun haphazard_A : A; -fun haphazard_Adv : Adv; -fun hapless_A : A; -fun haploid_A : A; -fun haploid_N : N; -fun haploidy_N : N; -fun haplosporidian_N : N; -fun haplotype_N : N; -fun haply_Adv : Adv; -fun happen_V : V; -fun happen_V2 : V2; -fun happen_VV : VV; -fun happening_N : N; -fun happily_Adv : Adv; -fun happiness_N : N; -fun happy_A : A; -fun happy_go_lucky_A : A; -fun haptic_A : A; -fun haptoglobin_N : N; -fun hara_kiri_N : N; -fun harakiri_N : N; -fun harangue_N : N; -fun harangue_V : V; -fun harangue_V2 : V2; -fun haranguer_N : N; -fun harass_V2 : V2; -fun harasser_N : N; -fun harassment_N : N; -fun harbinger_N : N; -fun harbor_N : N; -fun harbor_V2 : V2; -fun harborage_N : N; -fun harbour_N : N; -fun harbour_V : V; -fun harbour_V2 : V2; -fun harbourage_N : N; -fun hard_A : A; -fun hard_Adv : Adv; -fun hard_and_fast_A : A; -fun hard_baked_A : A; -fun hard_baked_A : A; -fun hard_bitten_A : A; -fun hard_bitten_A : A; -fun hard_boiled_A : A; -fun hard_boiled_A : A; -fun hard_core_A : A; -fun hard_fought_A : A; -fun hard_headed_A : A; -fun hard_hitting_A : A; -fun hard_line_A : A; -fun hard_of_hearing_A : A; -fun hard_shelled_A : A; -fun hard_to_please_A : A; -fun hard_up_A : A; -fun hardback_N : N; -fun hardbacked_A : A; -fun hardbake_N : N; -fun hardball_N : N; -fun hardboard_N : N; -fun hardbound_A : A; -fun hardcover_N : N; -fun hardcovered_A : A; -fun harden_V : V; -fun harden_V2 : V2; -fun hardened_A : A; -fun hardening_N : N; -fun hardheaded_A : A; -fun hardhearted_A : A; -fun hardhitting_A : A; -fun hardihood_N : N; -fun hardiness_N : N; -fun hardinggrass_N : N; -fun hardliner_N : N; -fun hardly_Adv : Adv; -fun hardly_a_A : A; -fun hardness_N : N; -fun hardscrabble_A : A; -fun hardship_N : N; -fun hardtack_N : N; -fun hardtop_N : N; -fun hardware_N : N; -fun hardwood_N : N; -fun hardworking_A : A; -fun hardy_A : A; -fun hare_N : N; -fun hare_V : V; -fun harebell_N : N; -fun harebrained_A : A; -fun harelip_N : N; -fun harem_N : N; -fun haricot_N : N; -fun hark_V : V; -fun harlequin_N : N; -fun harlequinade_N : N; -fun harlot_N : N; -fun harm_N : N; -fun harm_V2 : V2; -fun harmattan_N : N; -fun harmful_A : A; -fun harmfulness_N : N; -fun harmless_A : A; -fun harmlessly_Adv : Adv; -fun harmonic_A : A; -fun harmonic_N : N; -fun harmonica_N : N; -fun harmonically_Adv : Adv; -fun harmonics_N : N; -fun harmonious_A : A; -fun harmoniously_Adv : Adv; -fun harmonium_N : N; -fun harmonizable_A : A; -fun harmonization_N : N; -fun harmonize_V : V; -fun harmonize_V2 : V2; -fun harmonizer_N : N; -fun harmony_N : N; -fun harness_N : N; -fun harness_V2 : V2; -fun harnessed_A : A; -fun harp_N : N; -fun harp_V : V; -fun harp_shaped_A : A; -fun harper_N : N; -fun harpist_N : N; -fun harpoon_N : N; -fun harpoon_V2 : V2; -fun harpooner_N : N; -fun harpsichord_N : N; -fun harpsichordist_N : N; -fun harpulla_N : N; -fun harpullia_N : N; -fun harpy_N : N; -fun harridan_N : N; -fun harrier_N : N; -fun harrow_N : N; -fun harrow_V2 : V2; -fun harry_V2 : V2; -fun harsh_A : A; -fun harsh_voiced_A : A; -fun harshly_Adv : Adv; -fun harshness_N : N; -fun hart_N : N; -fun hart's_tongue_N : N; -fun hartebeest_N : N; -fun harum_scarum_A : A; -fun harum_scarum_Adv : Adv; -fun harum_scarum_N : N; -fun harvest_N : N; -fun harvest_V2 : V2; -fun harvest_lice_N : N; -fun harvester_N : N; -fun harvestfish_N : N; -fun harvestman_N : N; -fun has_been_N : N; -fun has_been_N : N; -fun hash_N : N; -fun hash_V2 : V2; -fun hashish_N : N; -fun haslet_N : N; -fun hasp_N : N; -fun hassium_N : N; -fun hassle_N : N; -fun hassle_V : V; -fun hassle_V2 : V2; -fun hassock_N : N; -fun hastate_A : A; -fun haste_N : N; -fun hasten_V : V; -fun hasten_V2 : V2; -fun hastily_Adv : Adv; -fun hastiness_N : N; -fun hasty_A : A; -fun hat_N : N; -fun hatband_N : N; -fun hatbox_N : N; -fun hatch_N : N; -fun hatch_V : V; -fun hatch_V2 : V2; -fun hatchback_N : N; -fun hatched_A : A; -fun hatchel_N : N; -fun hatchery_N : N; -fun hatchet_N : N; -fun hatching_N : N; -fun hatchling_N : N; -fun hatchway_N : N; -fun hate_N : N; -fun hate_V2 : V2; -fun hate_V2V : V2V; -fun hate_VS : VS; -fun hateful_A : A; -fun hatefully_Adv : Adv; -fun hatefulness_N : N; -fun hatemonger_N : N; -fun hater_N : N; -fun hatful_N : N; -fun hatless_A : A; -fun hatmaker_N : N; -fun hatpin_N : N; -fun hatred_N : N; -fun hatted_A : A; -fun hatter_N : N; -fun hauberk_N : N; -fun haughtily_Adv : Adv; -fun haughtiness_N : N; -fun haughty_A : A; -fun haul_N : N; -fun haul_V : V; -fun haul_V2 : V2; -fun haulage_N : N; -fun hauler_N : N; -fun haulier_N : N; -fun hauling_N : N; -fun haulm_N : N; -fun haunch_N : N; -fun haunt_N : N; -fun haunt_V2 : V2; -fun haunted_A : A; -fun haunting_A : A; -fun hausmannite_N : N; -fun haustorium_N : N; -fun hautboy_N : N; -fun hauteur_N : N; -fun havana_N : N; -fun have_V : V; -fun have_V2 : V2; -fun have_VS : VS; -fun have_VV : VV; -fun havelock_N : N; -fun haven_N : N; -fun haversack_N : N; -fun havoc_N : N; -fun haw_N : N; -fun haw_V : V; -fun haw_haw_N : N; -fun hawala_N : N; -fun hawfinch_N : N; -fun hawk_N : N; -fun hawk_V2 : V2; -fun hawk's_beard_N : N; -fun hawk_eyed_A : A; -fun hawkbit_N : N; -fun hawker_N : N; -fun hawkishness_N : N; -fun hawkmoth_N : N; -fun hawkweed_N : N; -fun hawse_N : N; -fun hawser_N : N; -fun hawthorn_N : N; -fun hay_N : N; -fun hay_V : V; -fun hay_scented_N : N; -fun haycock_N : N; -fun hayfield_N : N; -fun hayfork_N : N; -fun haying_N : N; -fun hayloft_N : N; -fun haymaker_N : N; -fun haymaking_N : N; -fun haymow_N : N; -fun hayrack_N : N; -fun hayrick_N : N; -fun haystack_N : N; -fun haywire_A : A; -fun haywire_N : N; -fun hazard_N : N; -fun hazard_V2 : V2; -fun hazardous_A : A; -fun hazardousness_N : N; -fun haze_N : N; -fun haze_V2 : V2; -fun hazel_A : A; -fun hazel_N : N; -fun hazel_brown_A : A; -fun hazelnut_N : N; -fun hazily_Adv : Adv; -fun haziness_N : N; -fun hazy_A : A; -fun he_N : N; -fun he_Pron : Pron; -fun he_goat_N : N; -fun he_man_N : N; -fun head_N : N; -fun head_V : V; -fun head_V2 : V2; -fun head_and_shoulders_above_Adv : Adv; -fun head_hunter_N : N; -fun head_on_A : A; -fun head_on_A : A; -fun head_on_Adv : Adv; -fun head_on_Adv : Adv; -fun head_on_V2 : V2; -fun head_over_heels_Adv : Adv; -fun headache_N : N; -fun headband_N : N; -fun headboard_N : N; -fun headcheese_N : N; -fun headdress_N : N; -fun headed_A : A; -fun header_N : N; -fun headfast_N : N; -fun headfirst_A : A; -fun headful_N : N; -fun headgear_N : N; -fun headhunter_N : N; -fun heading_N : N; -fun headlamp_N : N; -fun headland_N : N; -fun headless_A : A; -fun headlight_N : N; -fun headlike_A : A; -fun headline_N : N; -fun headliner_N : N; -fun headlinese_N : N; -fun headlock_N : N; -fun headlong_A : A; -fun headlong_Adv : Adv; -fun headman_N : N; -fun headmaster_N : N; -fun headmastership_N : N; -fun headmistress_N : N; -fun headmistressship_N : N; -fun headpiece_N : N; -fun headpin_N : N; -fun headquarters_N : N; -fun headrace_N : N; -fun headrest_N : N; -fun headroom_N : N; -fun heads_up_A : A; -fun heads_up_N : N; -fun headsail_N : N; -fun headscarf_N : N; -fun headset_N : N; -fun headshake_N : N; -fun headship_N : N; -fun headshot_N : N; -fun headsman_N : N; -fun headspace_N : N; -fun headstall_N : N; -fun headstand_N : N; -fun headstock_N : N; -fun headstone_N : N; -fun headstream_N : N; -fun headstrong_A : A; -fun headwater_N : N; -fun headway_N : N; -fun headwind_N : N; -fun headword_N : N; -fun heady_A : A; -fun heal_V : V; -fun heal_V2 : V2; -fun healer_N : N; -fun healing_A : A; -fun healing_N : N; -fun health_N : N; -fun healthcare_N : N; -fun healthful_A : A; -fun healthfulness_N : N; -fun healthily_Adv : Adv; -fun healthy_A : A; -fun heap_N : N; -fun heap_V2 : V2; -fun heaps_Adv : Adv; -fun hear_V : V; -fun hear_V2 : V2; -fun hear_V2V : V2V; -fun hear_VS : VS; -fun heard_A : A; -fun hearer_N : N; -fun hearing_A : A; -fun hearing_N : N; -fun hearing_aid_N : N; -fun hearken_V : V; -fun hearsay_A : A; -fun hearsay_N : N; -fun hearse_N : N; -fun heart_N : N; -fun heart's_ease_N : N; -fun heart_and_soul_Adv : Adv; -fun heart_disease_N : N; -fun heart_failure_N : N; -fun heart_healthy_A : A; -fun heart_rending_A : A; -fun heart_to_heart_N : N; -fun heart_whole_A : A; -fun heartache_N : N; -fun heartbeat_N : N; -fun heartbreak_N : N; -fun heartbreaker_N : N; -fun heartbreaking_A : A; -fun heartbroken_A : A; -fun heartburn_N : N; -fun heartburning_N : N; -fun hearted_A : A; -fun hearten_V2 : V2; -fun heartening_A : A; -fun heartfelt_A : A; -fun hearth_N : N; -fun hearthrug_N : N; -fun hearthstone_N : N; -fun heartily_Adv : Adv; -fun heartiness_N : N; -fun heartland_N : N; -fun heartleaf_N : N; -fun heartless_A : A; -fun heartlessly_Adv : Adv; -fun heartlessness_N : N; -fun heartrot_N : N; -fun hearts_N : N; -fun heartseed_N : N; -fun heartsick_A : A; -fun heartstrings_N : N; -fun heartthrob_N : N; -fun heartwarming_A : A; -fun heartwood_N : N; -fun hearty_A : A; -fun heat_N : N; -fun heat_V : V; -fun heat_V2 : V2; -fun heat_flash_N : N; -fun heatable_A : A; -fun heated_A : A; -fun heatedly_Adv : Adv; -fun heater_N : N; -fun heath_N : N; -fun heathen_A : A; -fun heathen_N : N; -fun heathenish_A : A; -fun heather_N : N; -fun heather_mixture_N : N; -fun heathlike_A : A; -fun heating_N : N; -fun heatless_A : A; -fun heatspot_N : N; -fun heatstroke_N : N; -fun heatwave_N : N; -fun heaume_N : N; -fun heave_N : N; -fun heave_V : V; -fun heave_V2 : V2; -fun heaven_N : N; -fun heaven_sent_A : A; -fun heavenly_A : A; -fun heavensent_A : A; -fun heavenward_A : A; -fun heavenward_Adv : Adv; -fun heavenwards_A : A; -fun heavenwards_Adv : Adv; -fun heaver_N : N; -fun heaves_N : N; -fun heavier_than_air_A : A; -fun heavily_Adv : Adv; -fun heavily_traveled_A : A; -fun heaviness_N : N; -fun heavy_A : A; -fun heavy_Adv : Adv; -fun heavy_N : N; -fun heavy_armed_A : A; -fun heavy_coated_A : A; -fun heavy_duty_A : A; -fun heavy_footed_A : A; -fun heavy_handed_A : A; -fun heavy_handed_A : A; -fun heavy_hearted_A : A; -fun heavy_laden_A : A; -fun heavy_limbed_A : A; -fun heavyhearted_A : A; -fun heavyheartedness_N : N; -fun heavyweight_N : N; -fun hebdomadal_A : A; -fun hebdomadally_Adv : Adv; -fun hebephrenia_N : N; -fun hebephrenic_A : A; -fun hebetude_N : N; -fun hebraic_A : A; -fun hebrew_A : A; -fun hebrew_N : N; -fun hecatomb_N : N; -fun heck_N : N; -fun heckelphone_N : N; -fun heckle_V2 : V2; -fun heckler_N : N; -fun heckling_N : N; -fun hectare_N : N; -fun hectic_A : A; -fun hectogram_N : N; -fun hectograph_N : N; -fun hectoliter_N : N; -fun hectometer_N : N; -fun hector_V : V; -fun hector_V2 : V2; -fun hedge_N : N; -fun hedge_V : V; -fun hedge_V2 : V2; -fun hedge_sparrow_N : N; -fun hedged_A : A; -fun hedgehog_N : N; -fun hedgehop_V : V; -fun hedger_N : N; -fun hedgerow_N : N; -fun hedonic_A : A; -fun hedonism_N : N; -fun hedonist_N : N; -fun hedonistic_A : A; -fun hee_haw_N : N; -fun hee_haw_V : V; -fun heed_N : N; -fun heed_V2 : V2; -fun heedful_A : A; -fun heedless_A : A; -fun heedlessness_N : N; -fun heehaw_N : N; -fun heel_N : N; -fun heel_V : V; -fun heel_V2 : V2; -fun heelbone_N : N; -fun heft_N : N; -fun heft_V2 : V2; -fun hefty_A : A; -fun hegari_N : N; -fun hegemon_N : N; -fun hegemony_N : N; -fun hegira_N : N; -fun heifer_N : N; -fun height_N : N; -fun heighten_V : V; -fun heighten_V2 : V2; -fun heightening_A : A; -fun heinous_A : A; -fun heinously_Adv : Adv; -fun heinousness_N : N; -fun heir_N : N; -fun heir_at_law_N : N; -fun heiress_N : N; -fun heirloom_N : N; -fun heist_N : N; -fun hejira_N : N; -fun held_A : A; -fun heliacal_A : A; -fun helianthemum_N : N; -fun helicon_N : N; -fun helicopter_N : N; -fun helicopter_V2 : V2; -fun heliocentric_A : A; -fun heliogram_N : N; -fun heliograph_N : N; -fun heliograph_V2 : V2; -fun heliolatry_N : N; -fun heliometer_N : N; -fun heliopause_N : N; -fun heliophila_N : N; -fun heliopsis_N : N; -fun heliosphere_N : N; -fun heliotherapy_N : N; -fun heliotrope_N : N; -fun heliotropism_N : N; -fun heliozoan_N : N; -fun heliport_N : N; -fun helium_N : N; -fun helix_N : N; -fun hell_N : N; -fun hell_bent_A : A; -fun hell_for_leather_Adv : Adv; -fun hell_kite_N : N; -fun hellbender_N : N; -fun hellcat_N : N; -fun hellebore_N : N; -fun helleborine_N : N; -fun hellene_N : N; -fun hellenic_A : A; -fun hellfire_N : N; -fun hellgrammiate_N : N; -fun hellhound_N : N; -fun hellion_N : N; -fun hellish_A : A; -fun hello_N : N; -fun helm_N : N; -fun helmet_N : N; -fun helmet_shaped_A : A; -fun helmeted_A : A; -fun helmetflower_N : N; -fun helminth_N : N; -fun helminthiasis_N : N; -fun helmsman_N : N; -fun helot_N : N; -fun help_N : N; -fun help_V : V; -fun help_V2 : V2; -fun help_V2V : V2V; -fun help_VS : VS; -fun help_VV : VV; -fun helper_N : N; -fun helper_t_cell_PN : PN; -fun helpful_A : A; -fun helpfully_Adv : Adv; -fun helpfulness_N : N; -fun helping_N : N; -fun helpless_A : A; -fun helplessly_Adv : Adv; -fun helplessness_N : N; -fun helpmate_N : N; -fun helpmeet_N : N; -fun helter_skelter_A : A; -fun helter_skelter_Adv : Adv; -fun helter_skelter_Adv : Adv; -fun helter_skelter_N : N; -fun helve_N : N; -fun helvella_N : N; -fun hem_N : N; -fun hem_V : V; -fun hem_V2 : V2; -fun hemagglutination_N : N; -fun hemal_A : A; -fun hemangioma_N : N; -fun hematemesis_N : N; -fun hematinic_N : N; -fun hematite_N : N; -fun hematocele_N : N; -fun hematochezia_N : N; -fun hematochrome_N : N; -fun hematocolpometra_N : N; -fun hematocolpos_N : N; -fun hematocrit_N : N; -fun hematocytopenia_N : N; -fun hematocyturia_N : N; -fun hematologic_A : A; -fun hematologist_N : N; -fun hematology_N : N; -fun hematoma_N : N; -fun hematopoiesis_N : N; -fun hematopoietic_A : A; -fun hematuria_N : N; -fun heme_N : N; -fun hemeralopia_N : N; -fun hemiacetal_N : N; -fun hemianopia_N : N; -fun hemic_A : A; -fun hemiepiphyte_N : N; -fun hemimetabolous_A : A; -fun hemimetamorphosis_N : N; -fun hemimorphite_N : N; -fun hemin_N : N; -fun hemiparasite_N : N; -fun hemiparasitic_A : A; -fun hemiplegia_N : N; -fun hemiplegic_N : N; -fun hemisphere_N : N; -fun hemispheric_A : A; -fun hemispherical_A : A; -fun hemline_N : N; -fun hemlock_N : N; -fun hemming_stitch_N : N; -fun hemming_stitch_N : N; -fun hemochromatosis_N : N; -fun hemodialysis_N : N; -fun hemodynamic_A : A; -fun hemodynamics_N : N; -fun hemoglobin_N : N; -fun hemoglobinemia_N : N; -fun hemoglobinopathy_N : N; -fun hemoglobinuria_N : N; -fun hemolysin_N : N; -fun hemolysis_N : N; -fun hemolytic_A : A; -fun hemophilia_N : N; -fun hemophilia_a_PN : PN; -fun hemophilia_b_PN : PN; -fun hemophiliac_N : N; -fun hemoprotein_N : N; -fun hemoptysis_N : N; -fun hemorrhage_N : N; -fun hemorrhage_V : V; -fun hemorrhage_V2 : V2; -fun hemorrhagic_A : A; -fun hemorrhoid_N : N; -fun hemorrhoidectomy_N : N; -fun hemosiderin_N : N; -fun hemosiderosis_N : N; -fun hemostasis_N : N; -fun hemostat_N : N; -fun hemothorax_N : N; -fun hemp_N : N; -fun hempen_A : A; -fun hemstitch_N : N; -fun hemstitch_V2 : V2; -fun hen_N : N; -fun hen_of_the_woods_N : N; -fun hen_party_N : N; -fun henbane_N : N; -fun henbit_N : N; -fun hence_Adv : Adv; -fun henceforth_Adv : Adv; -fun henceforward_Adv : Adv; -fun henchman_N : N; -fun hencoop_N : N; -fun hendiadys_N : N; -fun henhouse_N : N; -fun henna_N : N; -fun henna_V2 : V2; -fun hennaed_A : A; -fun henpecked_A : A; -fun henroost_N : N; -fun henry_N : N; -fun hep_A : A; -fun hepadnavirus_N : N; -fun heparin_N : N; -fun hepatic_A : A; -fun hepatica_N : N; -fun hepatitis_N : N; -fun hepatitis_a_PN : PN; -fun hepatitis_a_virus_PN : PN; -fun hepatitis_b_PN : PN; -fun hepatitis_c_PN : PN; -fun hepatoma_N : N; -fun hepatomegaly_N : N; -fun hepatotoxic_A : A; -fun hepatotoxin_N : N; -fun heptagon_N : N; -fun heptane_N : N; -fun herald_N : N; -fun herald_V2 : V2; -fun heralded_A : A; -fun heraldic_A : A; -fun heraldry_N : N; -fun herb_N : N; -fun herb_paris_PN : PN; -fun herbaceous_A : A; -fun herbage_N : N; -fun herbal_A : A; -fun herbalist_N : N; -fun herbarium_N : N; -fun herbicide_N : N; -fun herbivore_N : N; -fun herbivorous_A : A; -fun herculean_A : A; -fun herd_N : N; -fun herd_V : V; -fun herd_V2 : V2; -fun herder_N : N; -fun herdsman_N : N; -fun here_A : A; -fun here_Adv : Adv; -fun here_N : N; -fun here_and_there_Adv : Adv; -fun hereabout_Adv : Adv; -fun hereabouts_Adv : Adv; -fun hereafter_Adv : Adv; -fun hereafter_N : N; -fun hereby_Adv : Adv; -fun hereditament_N : N; -fun hereditarianism_N : N; -fun hereditary_A : A; -fun heredity_N : N; -fun herein_Adv : Adv; -fun hereinafter_Adv : Adv; -fun hereinbefore_Adv : Adv; -fun hereness_N : N; -fun hereof_Adv : Adv; -fun heresy_N : N; -fun heretic_N : N; -fun heretical_A : A; -fun hereto_Adv : Adv; -fun heretofore_Adv : Adv; -fun hereunder_Adv : Adv; -fun hereupon_Adv : Adv; -fun herewith_Adv : Adv; -fun heritable_A : A; -fun heritage_N : N; -fun herm_N : N; -fun hermaphrodite_N : N; -fun hermaphroditic_A : A; -fun hermaphroditism_N : N; -fun hermeneutic_A : A; -fun hermeneutics_N : N; -fun hermetic_A : A; -fun hermetically_Adv : Adv; -fun hermit_N : N; -fun hermitage_N : N; -fun hernia_N : N; -fun hero_N : N; -fun heroic_A : A; -fun heroically_Adv : Adv; -fun heroics_N : N; -fun heroin_N : N; -fun heroine_N : N; -fun heroism_N : N; -fun heron_N : N; -fun heronry_N : N; -fun herpangia_N : N; -fun herpes_N : N; -fun herpetologist_N : N; -fun herpetology_N : N; -fun herr_N : N; -fun herrerasaur_N : N; -fun herring_N : N; -fun herringbone_N : N; -fun hertz_N : N; -fun hertzian_A : A; -fun hesitance_N : N; -fun hesitancy_N : N; -fun hesitant_A : A; -fun hesitantly_Adv : Adv; -fun hesitate_V : V; -fun hesitate_VS : VS; -fun hesitate_VV : VV; -fun hesitatingly_Adv : Adv; -fun hesitation_N : N; -fun hessian_N : N; -fun het_up_A : A; -fun heterocercal_A : A; -fun heterocyclic_A : A; -fun heterodactyl_A : A; -fun heterodox_A : A; -fun heterodoxy_N : N; -fun heterodyne_A : A; -fun heteroecious_A : A; -fun heterogeneity_N : N; -fun heterogeneous_A : A; -fun heterogenous_A : A; -fun heterograft_N : N; -fun heteroicous_A : A; -fun heterologous_A : A; -fun heterology_N : N; -fun heterometabolism_N : N; -fun heterometabolous_A : A; -fun heteronym_N : N; -fun heteroploid_N : N; -fun heteroploidy_N : N; -fun heterosexism_N : N; -fun heterosexual_A : A; -fun heterosexual_N : N; -fun heterosexuality_N : N; -fun heterosis_N : N; -fun heterosporous_A : A; -fun heterospory_N : N; -fun heterostracan_N : N; -fun heterotroph_N : N; -fun heterotrophic_A : A; -fun heterozygosity_N : N; -fun heterozygote_N : N; -fun heterozygous_A : A; -fun heth_N : N; -fun heulandite_N : N; -fun heuristic_A : A; -fun heuristic_N : N; -fun heuristics_N : N; -fun hew_V : V; -fun hew_V2 : V2; -fun hewer_N : N; -fun hewn_A : A; -fun hex_N : N; -fun hexachlorophene_N : N; -fun hexadecimal_A : A; -fun hexagon_N : N; -fun hexagonal_A : A; -fun hexagram_N : N; -fun hexahedron_N : N; -fun hexameter_N : N; -fun hexane_N : N; -fun hexangular_A : A; -fun hexapod_N : N; -fun hexed_A : A; -fun hexestrol_N : N; -fun hexose_N : N; -fun heyday_N : N; -fun hi_fi_A : A; -fun hi_fi_N : N; -fun hi_fi_N : N; -fun hiatus_N : N; -fun hibachi_N : N; -fun hibernate_V : V; -fun hibernation_N : N; -fun hibiscus_N : N; -fun hiccough_N : N; -fun hiccough_V : V; -fun hiccup_N : N; -fun hiccup_V : V; -fun hick_A : A; -fun hick_N : N; -fun hickey_N : N; -fun hickory_N : N; -fun hidden_A : A; -fun hiddenite_N : N; -fun hiddenness_N : N; -fun hide_N : N; -fun hide_V : V; -fun hide_V2 : V2; -fun hide_and_seek_N : N; -fun hide_and_seek_N : N; -fun hide_out_N : N; -fun hideaway_N : N; -fun hidebound_A : A; -fun hideous_A : A; -fun hideously_Adv : Adv; -fun hideousness_N : N; -fun hideout_N : N; -fun hiding_N : N; -fun hiding_place_N : N; -fun hidrotic_A : A; -fun hie_V : V; -fun hierarch_N : N; -fun hierarchic_A : A; -fun hierarchical_A : A; -fun hierarchically_Adv : Adv; -fun hierarchy_N : N; -fun hieratic_A : A; -fun hieratic_N : N; -fun hierocracy_N : N; -fun hieroglyph_N : N; -fun hieroglyphic_A : A; -fun hieroglyphically_Adv : Adv; -fun hieroglyphics_N : N; -fun higgledy_piggledy_A : A; -fun higgledy_piggledy_Adv : Adv; -fun higgledy_piggledy_Adv : Adv; -fun high_A : A; -fun high_Adv : Adv; -fun high_N : N; -fun high_and_low_Adv : Adv; -fun high_backed_A : A; -fun high_ceilinged_A : A; -fun high_class_A : A; -fun high_class_A : A; -fun high_crowned_A : A; -fun high_energy_A : A; -fun high_falutin_A : A; -fun high_fidelity_A : A; -fun high_fidelity_A : A; -fun high_fidelity_N : N; -fun high_five_N : N; -fun high_flown_A : A; -fun high_frequency_N : N; -fun high_grade_A : A; -fun high_grade_A : A; -fun high_handed_A : A; -fun high_handedly_Adv : Adv; -fun high_interest_A : A; -fun high_keyed_A : A; -fun high_keyed_A : A; -fun high_level_A : A; -fun high_level_A : A; -fun high_low_N : N; -fun high_minded_A : A; -fun high_mindedly_Adv : Adv; -fun high_mindedness_N : N; -fun high_mindedness_N : N; -fun high_muck_a_muck_N : N; -fun high_necked_A : A; -fun high_necked_A : A; -fun high_octane_A : A; -fun high_octane_A : A; -fun high_performance_A : A; -fun high_pitched_A : A; -fun high_pitched_A : A; -fun high_powered_A : A; -fun high_powered_A : A; -fun high_pressure_N : N; -fun high_priced_A : A; -fun high_principled_A : A; -fun high_principled_A : A; -fun high_ranking_A : A; -fun high_resolution_A : A; -fun high_rise_A : A; -fun high_rise_A : A; -fun high_rise_N : N; -fun high_sounding_A : A; -fun high_speed_A : A; -fun high_speed_A : A; -fun high_spirited_A : A; -fun high_spiritedness_N : N; -fun high_stepped_A : A; -fun high_sudsing_A : A; -fun high_tech_A : A; -fun high_tension_A : A; -fun high_tension_A : A; -fun high_toned_A : A; -fun high_top_A : A; -fun high_up_N : N; -fun high_voltage_A : A; -fun high_yield_A : A; -fun highball_N : N; -fun highbinder_N : N; -fun highboard_N : N; -fun highborn_A : A; -fun highboy_N : N; -fun highbrow_A : A; -fun highbrow_N : N; -fun highchair_N : N; -fun higher_A : A; -fun highflier_N : N; -fun highflown_A : A; -fun highflyer_N : N; -fun highflying_A : A; -fun highjack_N : N; -fun highjack_V2 : V2; -fun highjacker_N : N; -fun highjacking_N : N; -fun highland_N : N; -fun highlander_N : N; -fun highlight_N : N; -fun highlight_V2 : V2; -fun highlighter_N : N; -fun highly_Adv : Adv; -fun highly_infective_A : A; -fun highly_sensitive_A : A; -fun highness_N : N; -fun highroad_N : N; -fun highway_N : N; -fun highwayman_N : N; -fun hijab_N : N; -fun hijack_N : N; -fun hijack_V2 : V2; -fun hijacker_N : N; -fun hike_N : N; -fun hike_V : V; -fun hike_V2 : V2; -fun hiker_N : N; -fun hilar_A : A; -fun hilarious_A : A; -fun hilariously_Adv : Adv; -fun hilarity_N : N; -fun hill_N : N; -fun hill_billy_N : N; -fun hillbilly_N : N; -fun hilliness_N : N; -fun hillock_N : N; -fun hillside_N : N; -fun hilltop_N : N; -fun hilly_A : A; -fun hilt_N : N; -fun hilum_N : N; -fun hilus_N : N; -fun hin_N : N; -fun hind_A : A; -fun hind_N : N; -fun hindbrain_N : N; -fun hinder_V2 : V2; -fun hindfoot_N : N; -fun hindgut_N : N; -fun hindi_A : A; -fun hindi_N : N; -fun hindmost_A : A; -fun hindquarter_N : N; -fun hindquarters_N : N; -fun hindrance_N : N; -fun hindshank_N : N; -fun hindsight_N : N; -fun hindu_A : A; -fun hindu_N : N; -fun hinduism_N : N; -fun hindustani_A : A; -fun hindustani_N : N; -fun hinge_N : N; -fun hinge_V : V; -fun hinge_V2 : V2; -fun hinny_N : N; -fun hint_N : N; -fun hint_V : V; -fun hint_V2 : V2; -fun hint_VS : VS; -fun hinterland_N : N; -fun hip_A : A; -fun hip_N : N; -fun hip_bath_N : N; -fun hip_flask_N : N; -fun hip_hop_N : N; -fun hip_pocket_N : N; -fun hipbone_N : N; -fun hipflask_N : N; -fun hiplength_A : A; -fun hipless_A : A; -fun hipline_N : N; -fun hippeastrum_N : N; -fun hipped_A : A; -fun hippie_N : N; -fun hippo_N : N; -fun hippocampus_N : N; -fun hippocratic_A : A; -fun hippodrome_N : N; -fun hippopotamus_N : N; -fun hippy_N : N; -fun hircine_A : A; -fun hire_N : N; -fun hire_V : V; -fun hire_V2 : V2; -fun hire_V2V : V2V; -fun hire_VS : VS; -fun hire_purchase_N : N; -fun hired_A : A; -fun hireling_N : N; -fun hirsute_A : A; -fun hirsuteness_N : N; -fun hispid_A : A; -fun hiss_N : N; -fun hiss_V : V; -fun hiss_V2 : V2; -fun hisser_N : N; -fun histaminase_N : N; -fun histamine_N : N; -fun histidine_N : N; -fun histiocyte_N : N; -fun histiocytosis_N : N; -fun histocompatibility_N : N; -fun histogram_N : N; -fun histoincompatibility_N : N; -fun histological_A : A; -fun histologically_Adv : Adv; -fun histologist_N : N; -fun histology_N : N; -fun histone_N : N; -fun historian_N : N; -fun historic_A : A; -fun historical_A : A; -fun historically_Adv : Adv; -fun historicalness_N : N; -fun historicism_N : N; -fun historicize_V2 : V2; -fun historiography_N : N; -fun history_N : N; -fun histrionic_A : A; -fun histrionics_N : N; -fun hit_N : N; -fun hit_V : V; -fun hit_V2 : V2; -fun hit_and_run_A : A; -fun hit_and_run_A : A; -fun hitch_N : N; -fun hitch_V : V; -fun hitch_V2 : V2; -fun hitchhike_V : V; -fun hitchhiker_N : N; -fun hitchrack_N : N; -fun hither_Adv : Adv; -fun hitherto_Adv : Adv; -fun hitless_A : A; -fun hitter_N : N; -fun hive_N : N; -fun hive_V : V; -fun hive_V2 : V2; -fun hoar_A : A; -fun hoard_N : N; -fun hoard_V : V; -fun hoard_V2 : V2; -fun hoarder_N : N; -fun hoarding_N : N; -fun hoarfrost_N : N; -fun hoariness_N : N; -fun hoarse_A : A; -fun hoarsely_Adv : Adv; -fun hoarseness_N : N; -fun hoary_A : A; -fun hoatzin_N : N; -fun hoax_N : N; -fun hoax_V2 : V2; -fun hoaxer_N : N; -fun hob_N : N; -fun hobbit_N : N; -fun hobble_N : N; -fun hobble_V : V; -fun hobble_V2 : V2; -fun hobble_skirt_N : N; -fun hobbledehoy_N : N; -fun hobbler_N : N; -fun hobby_N : N; -fun hobbyhorse_N : N; -fun hobbyism_N : N; -fun hobbyist_N : N; -fun hobgoblin_N : N; -fun hobnail_N : N; -fun hobnailed_A : A; -fun hobnob_V : V; -fun hobo_N : N; -fun hock_N : N; -fun hock_V2 : V2; -fun hockey_N : N; -fun hocus_pocus_N : N; -fun hod_N : N; -fun hodgepodge_N : N; -fun hodoscope_N : N; -fun hoe_N : N; -fun hoe_V : V; -fun hoe_V2 : V2; -fun hoecake_N : N; -fun hog_N : N; -fun hog_V2 : V2; -fun hogan_N : N; -fun hogback_N : N; -fun hogchoker_N : N; -fun hogfish_N : N; -fun hoggish_A : A; -fun hogmanay_N : N; -fun hogshead_N : N; -fun hogwash_N : N; -fun hoist_N : N; -fun hoist_V2 : V2; -fun hoister_N : N; -fun hoity_toity_A : A; -fun hold_N : N; -fun hold_V : V; -fun hold_V2 : V2; -fun hold_V2V : V2V; -fun hold_VS : VS; -fun hold_down_N : N; -fun hold_up_N : N; -fun holdall_N : N; -fun holder_N : N; -fun holding_N : N; -fun holdout_N : N; -fun holdover_N : N; -fun holdup_N : N; -fun hole_N : N; -fun hole_V : V; -fun hole_V2 : V2; -fun hole_and_corner_A : A; -fun hole_and_corner_A : A; -fun hole_in_the_wall_N : N; -fun holey_A : A; -fun holiday_N : N; -fun holiday_V : V; -fun holiday_maker_N : N; -fun holier_than_thou_A : A; -fun holiness_N : N; -fun holism_N : N; -fun holistic_A : A; -fun hollandaise_N : N; -fun hollander_A : A; -fun hollander_N : N; -fun holler_V : V; -fun holler_V2 : V2; -fun holloa_N : N; -fun hollow_A : A; -fun hollow_N : N; -fun hollow_V2 : V2; -fun hollow_horned_A : A; -fun hollowness_N : N; -fun hollowware_N : N; -fun holly_N : N; -fun hollyhock_N : N; -fun holm_oak_N : N; -fun holmium_N : N; -fun holocaust_N : N; -fun holocephalan_N : N; -fun hologram_N : N; -fun holograph_N : N; -fun holographic_A : A; -fun holography_N : N; -fun holometabola_N : N; -fun holometabolic_A : A; -fun holometabolism_N : N; -fun holonym_N : N; -fun holonymy_N : N; -fun holophyte_N : N; -fun holophytic_A : A; -fun holozoic_A : A; -fun holster_N : N; -fun holy_A : A; -fun holy_N : N; -fun holystone_N : N; -fun holystone_V2 : V2; -fun homage_N : N; -fun home_A : A; -fun home_Adv : Adv; -fun home_N : N; -fun home_baked_A : A; -fun home_baked_A : A; -fun home_brewed_A : A; -fun home_brewed_A : A; -fun home_cured_A : A; -fun home_cured_A : A; -fun home_farm_N : N; -fun home_farm_N : N; -fun home_grown_A : A; -fun home_loving_A : A; -fun home_made_A : A; -fun home_style_A : A; -fun homebound_A : A; -fun homebound_N : N; -fun homeboy_N : N; -fun homebuilder_N : N; -fun homecoming_N : N; -fun homefolk_N : N; -fun homegirl_N : N; -fun homegrown_A : A; -fun homeland_N : N; -fun homeless_A : A; -fun homeless_N : N; -fun homelessness_N : N; -fun homelike_A : A; -fun homeliness_N : N; -fun homely_A : A; -fun homemade_A : A; -fun homemaking_N : N; -fun homeobox_N : N; -fun homeopath_N : N; -fun homeopathic_A : A; -fun homeopathy_N : N; -fun homeostasis_N : N; -fun homeostatic_A : A; -fun homeostatically_Adv : Adv; -fun homeotherm_N : N; -fun homeowner_N : N; -fun homer_N : N; -fun homer_V : V; -fun homeric_A : A; -fun homesick_A : A; -fun homesickness_N : N; -fun homespun_A : A; -fun homespun_N : N; -fun homestead_N : N; -fun homestretch_N : N; -fun hometown_N : N; -fun homeward_A : A; -fun homeward_Adv : Adv; -fun homewards_Adv : Adv; -fun homework_N : N; -fun homey_A : A; -fun homicidal_A : A; -fun homicide_N : N; -fun homiletic_A : A; -fun homiletics_N : N; -fun homily_N : N; -fun hominal_A : A; -fun homing_A : A; -fun hominian_A : A; -fun hominid_N : N; -fun hominine_A : A; -fun hominoid_N : N; -fun hominy_N : N; -fun homo_N : N; -fun homo_sapiens_N : N; -fun homocercal_A : A; -fun homocyclic_A : A; -fun homoeopath_N : N; -fun homoeopathy_N : N; -fun homoerotic_A : A; -fun homogenate_N : N; -fun homogeneity_N : N; -fun homogeneous_A : A; -fun homogeneously_Adv : Adv; -fun homogenization_N : N; -fun homogenize_V2 : V2; -fun homogenized_A : A; -fun homogeny_N : N; -fun homograft_N : N; -fun homograph_N : N; -fun homoiothermic_A : A; -fun homologic_A : A; -fun homologous_A : A; -fun homology_N : N; -fun homomorphism_N : N; -fun homonym_N : N; -fun homonymic_A : A; -fun homonymy_N : N; -fun homophobe_N : N; -fun homophobia_N : N; -fun homophobic_A : A; -fun homophone_N : N; -fun homophonic_A : A; -fun homophonous_A : A; -fun homophony_N : N; -fun homosexual_A : A; -fun homosexual_N : N; -fun homosexuality_N : N; -fun homosporous_A : A; -fun homospory_N : N; -fun homostylous_A : A; -fun homozygosity_N : N; -fun homozygote_N : N; -fun homozygous_A : A; -fun homunculus_N : N; -fun honduran_A : A; -fun honduran_N : N; -fun hone_N : N; -fun hone_V2 : V2; -fun honest_A : A; -fun honest_to_god_A : A; -fun honestly_Adv : Adv; -fun honesty_N : N; -fun honey_A : A; -fun honey_N : N; -fun honey_colored_A : A; -fun honey_scented_A : A; -fun honeybee_N : N; -fun honeycomb_N : N; -fun honeycomb_V2 : V2; -fun honeycreeper_N : N; -fun honeydew_N : N; -fun honeyed_A : A; -fun honeyflower_N : N; -fun honeylike_A : A; -fun honeymoon_N : N; -fun honeymoon_V : V; -fun honeypot_N : N; -fun honeysuckle_N : N; -fun honk_N : N; -fun honk_V : V; -fun honker_N : N; -fun honkytonk_N : N; -fun honor_N : N; -fun honor_V2 : V2; -fun honorable_A : A; -fun honorableness_N : N; -fun honorably_Adv : Adv; -fun honorarium_N : N; -fun honorary_A : A; -fun honoree_N : N; -fun honorific_A : A; -fun honorific_N : N; -fun honoring_N : N; -fun honour_N : N; -fun honour_V2 : V2; -fun honourable_A : A; -fun honours_N : N; -fun hooch_N : N; -fun hood_N : N; -fun hood_V2 : V2; -fun hoodlum_N : N; -fun hoodoo_N : N; -fun hoodoo_V2 : V2; -fun hoodwink_V2 : V2; -fun hooey_N : N; -fun hoof_N : N; -fun hoofer_N : N; -fun hooflike_A : A; -fun hoofprint_N : N; -fun hook_N : N; -fun hook_V : V; -fun hook_V2 : V2; -fun hook_line_and_sinker_Adv : Adv; -fun hook_nosed_A : A; -fun hook_nosed_A : A; -fun hook_shaped_A : A; -fun hook_up_N : N; -fun hookah_N : N; -fun hooked_A : A; -fun hooker_N : N; -fun hooklike_A : A; -fun hooks_N : N; -fun hookup_N : N; -fun hookworm_N : N; -fun hooky_N : N; -fun hooligan_N : N; -fun hooliganism_N : N; -fun hoop_N : N; -fun hoop_V2 : V2; -fun hoop_la_N : N; -fun hoopoe_N : N; -fun hoopskirt_N : N; -fun hoosegow_N : N; -fun hoot_N : N; -fun hoot_V : V; -fun hoot_V2 : V2; -fun hooter_N : N; -fun hoover_N : N; -fun hoover_V : V; -fun hoover_V2 : V2; -fun hop_N : N; -fun hop_V : V; -fun hop_V2 : V2; -fun hop_field_N : N; -fun hop_garden_N : N; -fun hop_picker_N : N; -fun hop_picker_N : N; -fun hop_pole_N : N; -fun hope_N : N; -fun hope_V : V; -fun hope_V2 : V2; -fun hope_VS : VS; -fun hope_VV : VV; -fun hopeful_A : A; -fun hopefully_Adv : Adv; -fun hopefulness_N : N; -fun hopeless_A : A; -fun hopelessly_Adv : Adv; -fun hopelessness_N : N; -fun hoper_N : N; -fun hopped_up_A : A; -fun hopped_up_A : A; -fun hopper_N : N; -fun hopsacking_N : N; -fun hopscotch_N : N; -fun hopscotch_V : V; -fun horary_A : A; -fun horde_N : N; -fun horehound_N : N; -fun horizon_N : N; -fun horizontal_A : A; -fun horizontal_N : N; -fun horizontality_N : N; -fun horizontally_Adv : Adv; -fun hormonal_A : A; -fun hormone_N : N; -fun horn_N : N; -fun horn_V : V; -fun horn_rimmed_A : A; -fun horn_rimmed_A : A; -fun horn_shaped_A : A; -fun hornbeam_N : N; -fun hornbill_N : N; -fun hornblende_N : N; -fun hornbook_N : N; -fun horned_A : A; -fun hornet_N : N; -fun hornfels_N : N; -fun horniness_N : N; -fun hornist_N : N; -fun hornless_A : A; -fun hornlike_A : A; -fun hornpipe_N : N; -fun hornwort_N : N; -fun horny_A : A; -fun horology_N : N; -fun horoscope_N : N; -fun horoscopy_N : N; -fun horrible_A : A; -fun horrid_A : A; -fun horridness_N : N; -fun horrific_A : A; -fun horrified_A : A; -fun horrify_V2 : V2; -fun horrifyingly_Adv : Adv; -fun horror_N : N; -fun horror_stricken_A : A; -fun horror_struck_A : A; -fun hors_de_combat_A : A; -fun horse_N : N; -fun horse_and_buggy_A : A; -fun horse_chestnut_N : N; -fun horse_drawn_A : A; -fun horse_laugh_N : N; -fun horse_pond_N : N; -fun horse_sense_N : N; -fun horse_trail_N : N; -fun horseback_Adv : Adv; -fun horseback_N : N; -fun horsebox_N : N; -fun horsecar_N : N; -fun horsecloth_N : N; -fun horseflesh_N : N; -fun horsefly_N : N; -fun horsehair_N : N; -fun horsehide_N : N; -fun horseleech_N : N; -fun horseman_N : N; -fun horsemanship_N : N; -fun horsemeat_N : N; -fun horsemint_N : N; -fun horseplay_N : N; -fun horsepond_N : N; -fun horsepower_N : N; -fun horsepower_hour_N : N; -fun horserace_N : N; -fun horseracing_N : N; -fun horseradish_N : N; -fun horseshoe_N : N; -fun horseshow_N : N; -fun horsetail_N : N; -fun horseweed_N : N; -fun horsewhip_N : N; -fun horsewhip_V2 : V2; -fun horsewhipping_N : N; -fun horsewoman_N : N; -fun horst_N : N; -fun horsy_A : A; -fun hortative_A : A; -fun hortensia_N : N; -fun horticultural_A : A; -fun horticulturally_Adv : Adv; -fun horticulture_N : N; -fun horticulturist_N : N; -fun hosanna_N : N; -fun hose_N : N; -fun hose_V2 : V2; -fun hosepipe_N : N; -fun hosier_N : N; -fun hosiery_N : N; -fun hospice_N : N; -fun hospitable_A : A; -fun hospitableness_N : N; -fun hospitably_Adv : Adv; -fun hospital_N : N; -fun hospitality_N : N; -fun hospitalization_N : N; -fun hospitalize_V2 : V2; -fun host_N : N; -fun host_V2 : V2; -fun hostage_N : N; -fun hostel_N : N; -fun hosteller_N : N; -fun hostelry_N : N; -fun hostess_N : N; -fun hostile_A : A; -fun hostile_N : N; -fun hostilities_N : N; -fun hostility_N : N; -fun hot_A : A; -fun hot_V : V; -fun hot_V2 : V2; -fun hot_blooded_A : A; -fun hot_blooded_A : A; -fun hot_headed_A : A; -fun hot_tempered_A : A; -fun hot_under_the_collar_A : A; -fun hot_water_bottle_N : N; -fun hotbed_N : N; -fun hotbox_N : N; -fun hotchpotch_N : N; -fun hotdog_N : N; -fun hotel_N : N; -fun hotel_casino_N : N; -fun hotelier_N : N; -fun hotfoot_Adv : Adv; -fun hotfoot_N : N; -fun hotfoot_V : V; -fun hothead_N : N; -fun hotheaded_A : A; -fun hothouse_N : N; -fun hotness_N : N; -fun hotplate_N : N; -fun hotspur_N : N; -fun hottish_A : A; -fun hound_N : N; -fun hound_V2 : V2; -fun hound's_tongue_N : N; -fun hour_N : N; -fun hourglass_N : N; -fun hourglass_shaped_A : A; -fun houri_N : N; -fun hourlong_A : A; -fun hourly_A : A; -fun hourly_Adv : Adv; -fun hours_N : N; -fun house_N : N; -fun house_V2 : V2; -fun house_party_N : N; -fun house_proud_A : A; -fun house_raising_N : N; -fun house_warming_N : N; -fun houseboat_N : N; -fun housebound_A : A; -fun housebreaker_N : N; -fun housebreaking_N : N; -fun housebroken_A : A; -fun housecleaning_N : N; -fun housecoat_N : N; -fun housecraft_N : N; -fun housedog_N : N; -fun housefather_N : N; -fun housefly_N : N; -fun houseful_N : N; -fun household_N : N; -fun householder_N : N; -fun housekeeper_N : N; -fun houselights_N : N; -fun housemaid_N : N; -fun houseman_N : N; -fun housemaster_N : N; -fun housemate_N : N; -fun housemother_N : N; -fun houseplant_N : N; -fun houseproud_A : A; -fun houseroom_N : N; -fun housetop_N : N; -fun housetrained_A : A; -fun housewarming_N : N; -fun housewife_N : N; -fun housewifely_A : A; -fun housewifery_N : N; -fun housework_N : N; -fun housewrecker_N : N; -fun housing_N : N; -fun hovea_N : N; -fun hovel_N : N; -fun hover_V : V; -fun hovercraft_N : N; -fun how_Adv : Adv; -fun how_d'ye_do_N : N; -fun how_do_you_do_N : N; -fun howdah_N : N; -fun however_Adv : Adv; -fun howitzer_N : N; -fun howl_N : N; -fun howl_V : V; -fun howl_V2 : V2; -fun howler_N : N; -fun howling_A : A; -fun hoya_N : N; -fun hoyden_N : N; -fun hoydenish_A : A; -fun hoydenism_N : N; -fun hp_N : N; -fun hryvnia_N : N; -fun huarache_N : N; -fun hub_N : N; -fun hub_and_spoke_N : N; -fun hubble_bubble_N : N; -fun hubbub_N : N; -fun hubby_N : N; -fun hubcap_N : N; -fun hubris_N : N; -fun huck_N : N; -fun huckaback_N : N; -fun huckleberry_N : N; -fun huckster_N : N; -fun huddle_N : N; -fun huddle_V : V; -fun huddle_V2 : V2; -fun huddled_A : A; -fun huddler_N : N; -fun hudud_N : N; -fun hue_N : N; -fun hued_A : A; -fun hueless_A : A; -fun huff_N : N; -fun huff_V : V; -fun huffily_Adv : Adv; -fun huffiness_N : N; -fun huffish_A : A; -fun huffy_A : A; -fun hug_N : N; -fun hug_V : V; -fun hug_V2 : V2; -fun hug_me_tight_N : N; -fun huge_A : A; -fun hugger_N : N; -fun hugger_mugger_A : A; -fun hugger_mugger_Adv : Adv; -fun hugger_mugger_Adv : Adv; -fun hugger_mugger_N : N; -fun hugger_mugger_N : N; -fun huguenot_N : N; -fun huisache_N : N; -fun huitre_N : N; -fun hula_N : N; -fun hula_hoop_N : N; -fun hulk_N : N; -fun hulking_A : A; -fun hull_N : N; -fun hull_V2 : V2; -fun hullabaloo_N : N; -fun hum_N : N; -fun hum_V : V; -fun hum_V2 : V2; -fun human_A : A; -fun human_N : N; -fun human_t_cell_leukemia_virus_1_PN : PN; -fun human_centered_A : A; -fun human_sized_A : A; -fun humane_A : A; -fun humanely_Adv : Adv; -fun humaneness_N : N; -fun humanism_N : N; -fun humanist_A : A; -fun humanist_N : N; -fun humanistic_A : A; -fun humanitarian_A : A; -fun humanitarian_N : N; -fun humanitarianism_N : N; -fun humanity_N : N; -fun humanization_N : N; -fun humanize_V : V; -fun humanize_V2 : V2; -fun humankind_N : N; -fun humanly_Adv : Adv; -fun humanness_N : N; -fun humate_N : N; -fun humble_A : A; -fun humble_V2 : V2; -fun humbleness_N : N; -fun humbly_Adv : Adv; -fun humbug_N : N; -fun humbug_V2 : V2; -fun humdinger_N : N; -fun humdrum_A : A; -fun humectant_N : N; -fun humerus_N : N; -fun humic_A : A; -fun humid_A : A; -fun humidify_V2 : V2; -fun humidity_N : N; -fun humification_N : N; -fun humified_A : A; -fun humiliate_V2 : V2; -fun humiliatingly_Adv : Adv; -fun humiliation_N : N; -fun humility_N : N; -fun humin_N : N; -fun hummer_N : N; -fun humming_N : N; -fun humming_top_N : N; -fun hummingbird_N : N; -fun hummock_N : N; -fun hummus_N : N; -fun humongous_A : A; -fun humor_N : N; -fun humoral_A : A; -fun humorist_N : N; -fun humorless_A : A; -fun humorlessly_Adv : Adv; -fun humorous_A : A; -fun humorously_Adv : Adv; -fun humour_N : N; -fun humour_V2 : V2; -fun humourist_N : N; -fun humourless_A : A; -fun hump_N : N; -fun hump_V2 : V2; -fun humpback_N : N; -fun humpbacked_A : A; -fun humus_N : N; -fun hun_N : N; -fun hunch_N : N; -fun hunch_V : V; -fun hunch_V2 : V2; -fun hunch_up_V : V; -fun hunchback_A : A; -fun hunchback_N : N; -fun hunchbacked_A : A; -fun hunched_A : A; -fun hundred_A : A; -fun hundred_N : N; -fun hundred_and_eightieth_A : A; -fun hundred_and_fifteenth_A : A; -fun hundred_and_fifth_A : A; -fun hundred_and_fiftieth_A : A; -fun hundred_and_fifty_fifth_A : A; -fun hundred_and_first_A : A; -fun hundred_and_fortieth_A : A; -fun hundred_and_forty_fifth_A : A; -fun hundred_and_ninetieth_A : A; -fun hundred_and_one_A : A; -fun hundred_and_seventieth_A : A; -fun hundred_and_seventy_fifth_A : A; -fun hundred_and_sixtieth_A : A; -fun hundred_and_sixty_fifth_A : A; -fun hundred_and_tenth_A : A; -fun hundred_and_thirtieth_A : A; -fun hundred_and_thirty_fifth_A : A; -fun hundred_and_twentieth_A : A; -fun hundred_and_twenty_fifth_A : A; -fun hundred_thousand_A : A; -fun hundredfold_Adv : Adv; -fun hundredth_A : A; -fun hundredth_N : N; -fun hundredweight_N : N; -fun hungarian_A : A; -fun hungarian_N : N; -fun hunger_N : N; -fun hunger_V : V; -fun hunger_march_N : N; -fun hunger_marcher_N : N; -fun hungrily_Adv : Adv; -fun hungry_A : A; -fun hunk_N : N; -fun hunt_N : N; -fun hunt_V : V; -fun hunt_V2 : V2; -fun hunted_A : A; -fun hunter_N : N; -fun hunter_gatherer_N : N; -fun hunting_N : N; -fun hunting_crop_N : N; -fun huntress_N : N; -fun huntsman_N : N; -fun hurdle_N : N; -fun hurdle_V : V; -fun hurdle_V2 : V2; -fun hurdler_N : N; -fun hurdles_N : N; -fun hurdy_gurdy_N : N; -fun hurl_N : N; -fun hurl_V2 : V2; -fun hurling_N : N; -fun hurly_burly_N : N; -fun hurrah_N : N; -fun hurrah_V : V; -fun hurricane_N : N; -fun hurried_A : A; -fun hurriedly_Adv : Adv; -fun hurry_N : N; -fun hurry_V : V; -fun hurry_V2 : V2; -fun hurry_V2V : V2V; -fun hurrying_A : A; -fun hurt_A : A; -fun hurt_N : N; -fun hurt_V : V; -fun hurt_V2 : V2; -fun hurt_VS : VS; -fun hurtful_A : A; -fun hurtle_V : V; -fun hurtle_V2 : V2; -fun husband_N : N; -fun husband_V2 : V2; -fun husbandly_A : A; -fun husbandman_N : N; -fun husbandry_N : N; -fun hush_N : N; -fun hush_V : V; -fun hush_V2 : V2; -fun hush_hush_A : A; -fun hush_money_N : N; -fun hush_up_V2 : V2; -fun hushed_A : A; -fun hushed_up_A : A; -fun husk_N : N; -fun husk_V2 : V2; -fun huskily_Adv : Adv; -fun huskiness_N : N; -fun husky_A : A; -fun husky_N : N; -fun hussar_N : N; -fun hussy_N : N; -fun hustings_N : N; -fun hustle_N : N; -fun hustle_V : V; -fun hustle_V2 : V2; -fun hustler_N : N; -fun hut_N : N; -fun hutch_N : N; -fun hutment_N : N; -fun hutted_A : A; -fun hyacinth_N : N; -fun hyaena_N : N; -fun hyaline_A : A; -fun hyaline_N : N; -fun hyalinization_N : N; -fun hyaloplasm_N : N; -fun hyaloplasmic_A : A; -fun hyaluronidase_N : N; -fun hybrid_A : A; -fun hybrid_N : N; -fun hybridization_N : N; -fun hybridize_V : V; -fun hybridize_V2 : V2; -fun hybridoma_N : N; -fun hydantoin_N : N; -fun hydathode_N : N; -fun hydatid_N : N; -fun hydra_N : N; -fun hydralazine_N : N; -fun hydramnios_N : N; -fun hydrangea_N : N; -fun hydrant_N : N; -fun hydrarthrosis_N : N; -fun hydrate_N : N; -fun hydrate_V : V; -fun hydrate_V2 : V2; -fun hydration_N : N; -fun hydraulic_A : A; -fun hydraulically_Adv : Adv; -fun hydraulics_N : N; -fun hydrazine_N : N; -fun hydrazoite_N : N; -fun hydremia_N : N; -fun hydric_A : A; -fun hydride_N : N; -fun hydrilla_N : N; -fun hydrocarbon_N : N; -fun hydrocele_N : N; -fun hydrocephalic_A : A; -fun hydrocephalus_N : N; -fun hydrochloric_A : A; -fun hydrochloride_N : N; -fun hydrochlorofluorocarbon_N : N; -fun hydrochlorothiazide_N : N; -fun hydrocolloid_N : N; -fun hydrocortisone_N : N; -fun hydrocracking_N : N; -fun hydrodynamic_A : A; -fun hydrodynamics_N : N; -fun hydroelectric_A : A; -fun hydroelectricity_N : N; -fun hydroflumethiazide_N : N; -fun hydrofluorocarbon_N : N; -fun hydrofoil_N : N; -fun hydrogel_N : N; -fun hydrogen_N : N; -fun hydrogenation_N : N; -fun hydrographic_A : A; -fun hydrography_N : N; -fun hydrokinetic_A : A; -fun hydrologist_N : N; -fun hydrology_N : N; -fun hydrolysate_N : N; -fun hydrolysis_N : N; -fun hydrolyzable_A : A; -fun hydromancer_N : N; -fun hydromancy_N : N; -fun hydromel_N : N; -fun hydrometer_N : N; -fun hydrometric_A : A; -fun hydrometry_N : N; -fun hydronephrosis_N : N; -fun hydropathic_A : A; -fun hydropathy_N : N; -fun hydrophilic_A : A; -fun hydrophobia_N : N; -fun hydrophobic_A : A; -fun hydrophobicity_N : N; -fun hydrophytic_A : A; -fun hydroplane_N : N; -fun hydroponics_N : N; -fun hydrosphere_N : N; -fun hydrostatic_A : A; -fun hydrostatics_N : N; -fun hydrothorax_N : N; -fun hydrous_A : A; -fun hydroxide_N : N; -fun hydroxy_A : A; -fun hydroxychloroquine_N : N; -fun hydroxyl_N : N; -fun hydroxymethyl_N : N; -fun hydroxyproline_N : N; -fun hydrozoan_N : N; -fun hyena_N : N; -fun hygiene_N : N; -fun hygienic_A : A; -fun hygienically_Adv : Adv; -fun hygienist_N : N; -fun hygrodeik_N : N; -fun hygrometer_N : N; -fun hygrophyte_N : N; -fun hygrophytic_A : A; -fun hygroscope_N : N; -fun hygroscopic_A : A; -fun hymen_N : N; -fun hymenal_A : A; -fun hymeneal_A : A; -fun hymeneal_N : N; -fun hymenium_N : N; -fun hymenopterous_A : A; -fun hymn_N : N; -fun hymn_V2 : V2; -fun hymnal_N : N; -fun hyoid_A : A; -fun hyoid_N : N; -fun hyoscyamine_N : N; -fun hypaethral_A : A; -fun hypallage_N : N; -fun hypanthium_N : N; -fun hype_V2 : V2; -fun hyperacidity_N : N; -fun hyperactive_A : A; -fun hyperactivity_N : N; -fun hyperacusis_N : N; -fun hyperbaton_N : N; -fun hyperbetalipoproteinemia_N : N; -fun hyperbilirubinemia_N : N; -fun hyperbola_N : N; -fun hyperbole_N : N; -fun hyperbolic_A : A; -fun hyperbolically_Adv : Adv; -fun hyperbolize_V2 : V2; -fun hyperboloid_N : N; -fun hyperboloidal_A : A; -fun hypercalcemia_N : N; -fun hypercalciuria_N : N; -fun hypercapnia_N : N; -fun hypercatalectic_A : A; -fun hypercatalectic_N : N; -fun hypercellularity_N : N; -fun hypercholesterolemia_N : N; -fun hypercoaster_N : N; -fun hypercritical_A : A; -fun hyperemesis_N : N; -fun hyperemia_N : N; -fun hyperemic_A : A; -fun hyperextension_N : N; -fun hyperfine_A : A; -fun hyperglycemia_N : N; -fun hyperhidrosis_N : N; -fun hypericism_N : N; -fun hyperkalemia_N : N; -fun hyperlink_N : N; -fun hyperlipoproteinemia_N : N; -fun hypermarket_N : N; -fun hypermastigote_N : N; -fun hypermedia_N : N; -fun hypermotility_N : N; -fun hypernatremia_N : N; -fun hypernym_N : N; -fun hypernymy_N : N; -fun hyperon_N : N; -fun hyperope_N : N; -fun hyperopia_N : N; -fun hyperopic_A : A; -fun hyperparathyroidism_N : N; -fun hyperpigmentation_N : N; -fun hyperpituitarism_N : N; -fun hyperplasia_N : N; -fun hyperpnea_N : N; -fun hyperpyrexia_N : N; -fun hypersecretion_N : N; -fun hypersensitive_A : A; -fun hypersensitivity_N : N; -fun hypersomnia_N : N; -fun hypersplenism_N : N; -fun hypertensive_A : A; -fun hypertensive_N : N; -fun hypertext_N : N; -fun hyperthermal_A : A; -fun hyperthermia_N : N; -fun hyperthyroidism_N : N; -fun hypertonia_N : N; -fun hypertonic_A : A; -fun hypertonicity_N : N; -fun hypertrophied_A : A; -fun hypertrophy_N : N; -fun hypervelocity_N : N; -fun hyperventilation_N : N; -fun hypervitaminosis_N : N; -fun hypervolemia_N : N; -fun hypha_N : N; -fun hyphema_N : N; -fun hyphen_N : N; -fun hyphen_V2 : V2; -fun hyphenate_V2 : V2; -fun hyphenation_N : N; -fun hypnagogue_N : N; -fun hypnoanalysis_N : N; -fun hypnogenesis_N : N; -fun hypnoid_A : A; -fun hypnophobia_N : N; -fun hypnosis_N : N; -fun hypnotherapy_N : N; -fun hypnotic_A : A; -fun hypnotically_Adv : Adv; -fun hypnotism_N : N; -fun hypnotist_N : N; -fun hypnotize_V2 : V2; -fun hypo_N : N; -fun hypoactive_A : A; -fun hypobasidium_N : N; -fun hypobetalipoproteinemia_N : N; -fun hypocalcemia_N : N; -fun hypocapnia_N : N; -fun hypocellularity_N : N; -fun hypochlorite_N : N; -fun hypochondria_N : N; -fun hypochondriac_A : A; -fun hypochondriac_N : N; -fun hypochondriacal_A : A; -fun hypochondrium_N : N; -fun hypocrisy_N : N; -fun hypocrite_N : N; -fun hypocritical_A : A; -fun hypocritically_Adv : Adv; -fun hypocycloid_N : N; -fun hypodermal_A : A; -fun hypodermic_A : A; -fun hypodermic_N : N; -fun hypodermis_N : N; -fun hypoesthesia_N : N; -fun hypogammaglobulinemia_N : N; -fun hypoglossal_N : N; -fun hypoglycemia_N : N; -fun hypoglycemic_A : A; -fun hypogonadism_N : N; -fun hypokalemia_N : N; -fun hypolipoproteinemia_N : N; -fun hyponatremia_N : N; -fun hyponym_N : N; -fun hyponymy_N : N; -fun hypoparathyroidism_N : N; -fun hypophyseal_A : A; -fun hypophysectomized_A : A; -fun hypophysectomy_N : N; -fun hypopigmentation_N : N; -fun hypoplasia_N : N; -fun hypopnea_N : N; -fun hypoproteinemia_N : N; -fun hyposmia_N : N; -fun hypospadias_N : N; -fun hypostasis_N : N; -fun hypostatization_N : N; -fun hypotension_N : N; -fun hypotensive_A : A; -fun hypotensive_N : N; -fun hypotenuse_N : N; -fun hypothalamic_A : A; -fun hypothalamically_Adv : Adv; -fun hypothalamus_N : N; -fun hypothecate_V2 : V2; -fun hypothermia_N : N; -fun hypothermic_A : A; -fun hypothesis_N : N; -fun hypothesize_V2 : V2; -fun hypothetical_A : A; -fun hypothetical_N : N; -fun hypothetically_Adv : Adv; -fun hypothrombinemia_N : N; -fun hypothyroidism_N : N; -fun hypotonia_N : N; -fun hypotonic_A : A; -fun hypotonicity_N : N; -fun hypovolemia_N : N; -fun hypovolemic_A : A; -fun hypoxia_N : N; -fun hypozeugma_N : N; -fun hypozeuxis_N : N; -fun hypsography_N : N; -fun hypsometer_N : N; -fun hypsometry_N : N; -fun hyrax_N : N; -fun hyson_N : N; -fun hyssop_N : N; -fun hysterectomy_N : N; -fun hysteresis_N : N; -fun hysteria_N : N; -fun hysteric_A : A; -fun hysteric_N : N; -fun hysterical_A : A; -fun hysterically_Adv : Adv; -fun hysterics_N : N; -fun hysterocatalepsy_N : N; -fun hysterosalpingogram_N : N; -fun hysteroscopy_N : N; -fun hysterotomy_N : N; -fun i_Pron : Pron; -fun ipod_N : N; -fun i_e__Adv : Adv; -fun iamb_N : N; -fun iambic_A : A; -fun iambic_N : N; -fun iambics_N : N; -fun iambus_N : N; -fun iatrogenic_A : A; -fun iba_N : N; -fun ibex_N : N; -fun ibid__Adv : Adv; -fun ibidem_Adv : Adv; -fun ibis_N : N; -fun ibuprofen_N : N; -fun icbm_N : N; -fun ice_N : N; -fun ice_V : V; -fun ice_V2 : V2; -fun ice_axe_N : N; -fun ice_clogged_A : A; -fun ice_cold_A : A; -fun ice_cream_N : N; -fun ice_free_A : A; -fun ice_lolly_N : N; -fun ice_show_N : N; -fun ice_skate_N : N; -fun ice_skate_V : V; -fun ice_skater_N : N; -fun ice_skating_N : N; -fun ice_tray_N : N; -fun iceberg_N : N; -fun iceboat_N : N; -fun icebound_A : A; -fun icebox_N : N; -fun icebreaker_N : N; -fun icecap_N : N; -fun icecube_N : N; -fun icefall_N : N; -fun icefield_N : N; -fun icefloe_N : N; -fun icefree_A : A; -fun icehouse_N : N; -fun icelander_A : A; -fun icelander_N : N; -fun icelandic_A : A; -fun icelandic_N : N; -fun iceman_N : N; -fun icepack_N : N; -fun icepick_N : N; -fun icerink_N : N; -fun icetray_N : N; -fun ichneumon_N : N; -fun ichneumon_fly_N : N; -fun ichor_N : N; -fun ichorous_A : A; -fun ichthyolatry_N : N; -fun ichthyologist_N : N; -fun ichthyology_N : N; -fun ichthyosaur_N : N; -fun ichthyosaurus_N : N; -fun ichthyosis_N : N; -fun icicle_N : N; -fun icily_Adv : Adv; -fun icing_N : N; -fun icky_A : A; -fun icon_N : N; -fun iconic_A : A; -fun iconoclasm_N : N; -fun iconoclast_N : N; -fun iconoclastic_A : A; -fun iconography_N : N; -fun iconolatry_N : N; -fun iconology_N : N; -fun iconoscope_N : N; -fun icosahedral_A : A; -fun icosahedron_N : N; -fun ictal_A : A; -fun icterogenic_A : A; -fun ictodosaur_N : N; -fun icy_A : A; -fun id_N : N; -fun idea_N : N; -fun ideal_A : A; -fun ideal_N : N; -fun idealism_N : N; -fun idealist_N : N; -fun idealistic_A : A; -fun ideality_N : N; -fun idealization_N : N; -fun idealize_V2 : V2; -fun idealized_A : A; -fun ideally_Adv : Adv; -fun ideation_N : N; -fun idempotent_A : A; -fun identical_A : A; -fun identically_Adv : Adv; -fun identifiable_A : A; -fun identifiably_Adv : Adv; -fun identification_N : N; -fun identified_A : A; -fun identifier_N : N; -fun identify_V : V; -fun identify_V2 : V2; -fun identikit_N : N; -fun identity_N : N; -fun ideogram_N : N; -fun ideograph_N : N; -fun ideographic_A : A; -fun ideographically_Adv : Adv; -fun ideography_N : N; -fun ideological_A : A; -fun ideologically_Adv : Adv; -fun ideologist_N : N; -fun ideology_N : N; -fun ides_N : N; -fun idesia_N : N; -fun idiocy_N : N; -fun idiographic_A : A; -fun idiolatry_N : N; -fun idiolect_N : N; -fun idiom_N : N; -fun idiomatic_A : A; -fun idiomatically_Adv : Adv; -fun idiopathic_A : A; -fun idiosyncrasy_N : N; -fun idiosyncratic_A : A; -fun idiot_N : N; -fun idiotic_A : A; -fun idiotically_Adv : Adv; -fun idle_A : A; -fun idle_N : N; -fun idle_V : V; -fun idle_V2 : V2; -fun idleness_N : N; -fun idler_N : N; -fun idly_Adv : Adv; -fun idol_N : N; -fun idolater_N : N; -fun idolatress_N : N; -fun idolatrous_A : A; -fun idolatrously_Adv : Adv; -fun idolatry_N : N; -fun idolization_N : N; -fun idolize_V2 : V2; -fun idolizer_N : N; -fun idyll_N : N; -fun idyllic_A : A; -fun idyllically_Adv : Adv; -fun if_Subj : Subj; -fun if_not_Adv : Adv; -fun igloo_N : N; -fun igneous_A : A; -fun ignescent_A : A; -fun ignis_fatuus_N : N; -fun ignite_V : V; -fun ignite_V2 : V2; -fun ignited_A : A; -fun igniter_N : N; -fun ignition_N : N; -fun ignoble_A : A; -fun ignobleness_N : N; -fun ignominious_A : A; -fun ignominy_N : N; -fun ignoramus_N : N; -fun ignorance_N : N; -fun ignorant_A : A; -fun ignorantly_Adv : Adv; -fun ignorantness_N : N; -fun ignore_V : V; -fun ignore_V2 : V2; -fun ignored_A : A; -fun iguana_N : N; -fun iguanid_N : N; -fun iguanodon_N : N; -fun ijtihad_N : N; -fun ikon_N : N; -fun ilama_N : N; -fun ilang_ilang_N : N; -fun ileitis_N : N; -fun ileostomy_N : N; -fun ileum_N : N; -fun ilex_N : N; -fun iliac_A : A; -fun ilium_N : N; -fun ilk_N : N; -fun ill_A : A; -fun ill_Adv : Adv; -fun ill_N : N; -fun ill_advised_A : A; -fun ill_advised_A : A; -fun ill_affected_A : A; -fun ill_being_N : N; -fun ill_bred_A : A; -fun ill_bred_A : A; -fun ill_breeding_N : N; -fun ill_conceived_A : A; -fun ill_considered_A : A; -fun ill_defined_A : A; -fun ill_disposed_A : A; -fun ill_dressed_A : A; -fun ill_equipped_A : A; -fun ill_famed_A : A; -fun ill_fated_A : A; -fun ill_favored_A : A; -fun ill_favoured_A : A; -fun ill_fed_A : A; -fun ill_fitting_A : A; -fun ill_gotten_A : A; -fun ill_judged_A : A; -fun ill_mannered_A : A; -fun ill_mannered_A : A; -fun ill_natured_A : A; -fun ill_natured_A : A; -fun ill_omened_A : A; -fun ill_proportioned_A : A; -fun ill_sorted_A : A; -fun ill_starred_A : A; -fun ill_timed_A : A; -fun ill_timed_A : A; -fun ill_treat_V2 : V2; -fun ill_treatment_N : N; -fun ill_usage_N : N; -fun ill_use_V2 : V2; -fun illative_A : A; -fun illegal_A : A; -fun illegality_N : N; -fun illegally_Adv : Adv; -fun illegibility_N : N; -fun illegible_A : A; -fun illegibly_Adv : Adv; -fun illegitimacy_N : N; -fun illegitimate_A : A; -fun illegitimate_N : N; -fun illegitimately_Adv : Adv; -fun illiberal_A : A; -fun illiberality_N : N; -fun illicit_A : A; -fun illicitness_N : N; -fun illimitable_A : A; -fun illiteracy_N : N; -fun illiterate_A : A; -fun illiterate_N : N; -fun illness_N : N; -fun illogical_A : A; -fun illogicality_N : N; -fun illogically_Adv : Adv; -fun illogicalness_N : N; -fun illume_V2 : V2; -fun illuminance_N : N; -fun illuminant_N : N; -fun illuminate_V2 : V2; -fun illuminated_A : A; -fun illumination_N : N; -fun illumine_V2 : V2; -fun illusion_N : N; -fun illusional_A : A; -fun illusionist_N : N; -fun illusive_A : A; -fun illusory_A : A; -fun illustrate_V : V; -fun illustrate_V2 : V2; -fun illustrate_VS : VS; -fun illustration_N : N; -fun illustrative_A : A; -fun illustrator_N : N; -fun illustrious_A : A; -fun illustriously_Adv : Adv; -fun ilmenite_N : N; -fun ilo_N : N; -fun image_N : N; -fun image_V2 : V2; -fun imagery_N : N; -fun imaginable_A : A; -fun imaginary_A : A; -fun imagination_N : N; -fun imaginative_A : A; -fun imaginatively_Adv : Adv; -fun imagine_V : V; -fun imagine_V2 : V2; -fun imagine_VS : VS; -fun imaging_N : N; -fun imagism_N : N; -fun imago_N : N; -fun imam_N : N; -fun imaret_N : N; -fun imbalance_N : N; -fun imbecile_A : A; -fun imbecile_N : N; -fun imbecility_N : N; -fun imbed_V2 : V2; -fun imbibe_V2 : V2; -fun imbibition_N : N; -fun imbricate_A : A; -fun imbrication_N : N; -fun imbroglio_N : N; -fun imbue_V2 : V2; -fun imf_N : N; -fun imidazole_N : N; -fun imide_N : N; -fun imipramine_N : N; -fun imitate_V2 : V2; -fun imitation_N : N; -fun imitative_A : A; -fun imitator_N : N; -fun immaculate_A : A; -fun immaculately_Adv : Adv; -fun immanence_N : N; -fun immanent_A : A; -fun immaterial_A : A; -fun immateriality_N : N; -fun immature_A : A; -fun immaturely_Adv : Adv; -fun immaturity_N : N; -fun immeasurable_A : A; -fun immeasurably_Adv : Adv; -fun immediacy_N : N; -fun immediate_A : A; -fun immediately_Adv : Adv; -fun immemorial_A : A; -fun immense_A : A; -fun immensity_N : N; -fun immerse_V2 : V2; -fun immersion_N : N; -fun immigrant_N : N; -fun immigrate_V : V; -fun immigration_N : N; -fun imminence_N : N; -fun imminent_A : A; -fun imminently_Adv : Adv; -fun immiscible_A : A; -fun immobile_A : A; -fun immobility_N : N; -fun immobilization_N : N; -fun immobilize_V2 : V2; -fun immoderate_A : A; -fun immoderately_Adv : Adv; -fun immoderation_N : N; -fun immodest_A : A; -fun immodestly_Adv : Adv; -fun immodesty_N : N; -fun immolate_V2 : V2; -fun immolation_N : N; -fun immoral_A : A; -fun immorality_N : N; -fun immorally_Adv : Adv; -fun immortal_A : A; -fun immortal_N : N; -fun immortality_N : N; -fun immortalize_V2 : V2; -fun immortelle_N : N; -fun immotility_N : N; -fun immovability_N : N; -fun immovable_A : A; -fun immovably_Adv : Adv; -fun immune_A : A; -fun immune_N : N; -fun immunity_N : N; -fun immunization_N : N; -fun immunize_V2 : V2; -fun immunized_A : A; -fun immunoassay_N : N; -fun immunochemical_A : A; -fun immunochemistry_N : N; -fun immunocompetence_N : N; -fun immunocompetent_A : A; -fun immunocompromised_A : A; -fun immunodeficiency_N : N; -fun immunodeficient_A : A; -fun immunoelectrophoresis_N : N; -fun immunofluorescence_N : N; -fun immunogen_N : N; -fun immunogenic_A : A; -fun immunogenicity_N : N; -fun immunoglobulin_N : N; -fun immunoglobulin_a_PN : PN; -fun immunoglobulin_d_PN : PN; -fun immunoglobulin_e_PN : PN; -fun immunoglobulin_g_PN : PN; -fun immunoglobulin_m_PN : PN; -fun immunohistochemistry_N : N; -fun immunological_A : A; -fun immunologically_Adv : Adv; -fun immunologist_N : N; -fun immunology_N : N; -fun immunopathology_N : N; -fun immunosuppressant_N : N; -fun immunosuppressed_A : A; -fun immunosuppression_N : N; -fun immunosuppressive_A : A; -fun immunotherapeutic_A : A; -fun immunotherapy_N : N; -fun immure_V2 : V2; -fun immutability_N : N; -fun immutable_A : A; -fun imp_N : N; -fun impact_N : N; -fun impact_V2 : V2; -fun impacted_A : A; -fun impaction_N : N; -fun impair_V2 : V2; -fun impaired_A : A; -fun impairer_N : N; -fun impairment_N : N; -fun impala_N : N; -fun impale_V2 : V2; -fun impalement_N : N; -fun impalpable_A : A; -fun impanel_V2 : V2; -fun impart_V2 : V2; -fun impartial_A : A; -fun impartiality_N : N; -fun impartially_Adv : Adv; -fun impassable_A : A; -fun impasse_N : N; -fun impassioned_A : A; -fun impassive_A : A; -fun impassively_Adv : Adv; -fun impassiveness_N : N; -fun impassivity_N : N; -fun impasto_N : N; -fun impatience_N : N; -fun impatient_A : A; -fun impatiently_Adv : Adv; -fun impeach_V2 : V2; -fun impeachability_N : N; -fun impeachment_N : N; -fun impeccability_N : N; -fun impeccable_A : A; -fun impeccably_Adv : Adv; -fun impeccant_A : A; -fun impecunious_A : A; -fun impecuniousness_N : N; -fun impede_V2 : V2; -fun impeded_A : A; -fun impediment_N : N; -fun impedimenta_N : N; -fun impel_V2 : V2; -fun impellent_A : A; -fun impeller_N : N; -fun impelling_A : A; -fun impend_V : V; -fun impenetrability_N : N; -fun impenetrable_A : A; -fun impenitence_N : N; -fun impenitent_A : A; -fun impenitently_Adv : Adv; -fun imperative_A : A; -fun imperative_N : N; -fun imperatively_Adv : Adv; -fun imperativeness_N : N; -fun imperceptibility_N : N; -fun imperceptible_A : A; -fun imperceptibly_Adv : Adv; -fun imperfect_A : A; -fun imperfect_N : N; -fun imperfectibility_N : N; -fun imperfectible_A : A; -fun imperfection_N : N; -fun imperfective_N : N; -fun imperfectly_Adv : Adv; -fun imperforate_A : A; -fun imperial_A : A; -fun imperial_N : N; -fun imperial_japanese_morning_glory_PN : PN; -fun imperialism_N : N; -fun imperialist_N : N; -fun imperialistic_A : A; -fun imperially_Adv : Adv; -fun imperil_V2 : V2; -fun imperile_V2 : V2; -fun imperious_A : A; -fun imperiously_Adv : Adv; -fun imperiousness_N : N; -fun imperishability_N : N; -fun imperishable_A : A; -fun imperium_N : N; -fun impermanence_N : N; -fun impermanent_A : A; -fun impermeability_N : N; -fun impermeable_A : A; -fun impermissibility_N : N; -fun impermissible_A : A; -fun impermissibly_Adv : Adv; -fun impersonal_A : A; -fun impersonally_Adv : Adv; -fun impersonate_V2 : V2; -fun impersonation_N : N; -fun impersonator_N : N; -fun impertinence_N : N; -fun impertinent_A : A; -fun impertinently_Adv : Adv; -fun imperturbability_N : N; -fun imperturbable_A : A; -fun impervious_A : A; -fun impetiginous_A : A; -fun impetigo_N : N; -fun impetuosity_N : N; -fun impetuous_A : A; -fun impetuously_Adv : Adv; -fun impetuousness_N : N; -fun impetus_N : N; -fun impiety_N : N; -fun impinge_V : V; -fun impingement_N : N; -fun impious_A : A; -fun impiously_Adv : Adv; -fun impish_A : A; -fun impishly_Adv : Adv; -fun impishness_N : N; -fun implacable_A : A; -fun implant_N : N; -fun implant_V2 : V2; -fun implantation_N : N; -fun implausibility_N : N; -fun implausible_A : A; -fun implement_N : N; -fun implement_V2 : V2; -fun implemental_A : A; -fun implementation_N : N; -fun implicate_V2 : V2; -fun implicated_A : A; -fun implication_N : N; -fun implicational_A : A; -fun implicative_A : A; -fun implicit_A : A; -fun implicit_in_A : A; -fun implicitly_Adv : Adv; -fun implicitness_N : N; -fun implore_V2 : V2; -fun implore_VS : VS; -fun imploringly_Adv : Adv; -fun implosion_N : N; -fun imply_V : V; -fun imply_V2 : V2; -fun imply_VS : VS; -fun impolite_A : A; -fun impolitely_Adv : Adv; -fun impoliteness_N : N; -fun impolitic_A : A; -fun imponderable_A : A; -fun imponderable_N : N; -fun import_N : N; -fun import_V2 : V2; -fun importance_N : N; -fun important_A : A; -fun important_looking_A : A; -fun importantly_Adv : Adv; -fun importation_N : N; -fun imported_A : A; -fun importer_N : N; -fun importing_N : N; -fun importunate_A : A; -fun importune_V2 : V2; -fun importune_VS : VS; -fun importunity_N : N; -fun impose_V : V; -fun impose_V2 : V2; -fun imposed_A : A; -fun imposing_A : A; -fun imposition_N : N; -fun impossibility_N : N; -fun impossible_A : A; -fun impossible_N : N; -fun impossibly_Adv : Adv; -fun imposter_N : N; -fun impostor_N : N; -fun imposture_N : N; -fun impotence_N : N; -fun impotent_A : A; -fun impound_V2 : V2; -fun impoundment_N : N; -fun impoverish_V2 : V2; -fun impoverishment_N : N; -fun impracticability_N : N; -fun impracticable_A : A; -fun impracticableness_N : N; -fun impracticably_Adv : Adv; -fun impractical_A : A; -fun impracticality_N : N; -fun imprecate_V2 : V2; -fun imprecation_N : N; -fun imprecise_A : A; -fun imprecisely_Adv : Adv; -fun impreciseness_N : N; -fun imprecision_N : N; -fun impregnability_N : N; -fun impregnable_A : A; -fun impregnably_Adv : Adv; -fun impregnate_V2 : V2; -fun impregnation_N : N; -fun impresario_N : N; -fun impress_N : N; -fun impress_V : V; -fun impress_V2 : V2; -fun impressed_A : A; -fun impression_N : N; -fun impressionable_A : A; -fun impressionism_N : N; -fun impressionist_A : A; -fun impressionist_N : N; -fun impressionistic_A : A; -fun impressive_A : A; -fun impressively_Adv : Adv; -fun impressiveness_N : N; -fun imprimatur_N : N; -fun imprint_N : N; -fun imprint_V : V; -fun imprint_V2 : V2; -fun imprinting_N : N; -fun imprison_V2 : V2; -fun imprisonment_N : N; -fun improbability_N : N; -fun improbable_A : A; -fun impromptu_A : A; -fun impromptu_Adv : Adv; -fun impromptu_N : N; -fun improper_A : A; -fun improperly_Adv : Adv; -fun impropriety_N : N; -fun improvable_A : A; -fun improve_V : V; -fun improve_V2 : V2; -fun improved_A : A; -fun improvement_N : N; -fun improver_N : N; -fun improvidence_N : N; -fun improvident_A : A; -fun improvidently_Adv : Adv; -fun improving_A : A; -fun improvisation_N : N; -fun improvise_V : V; -fun improvise_V2 : V2; -fun improvised_A : A; -fun imprudence_N : N; -fun imprudent_A : A; -fun imprudently_Adv : Adv; -fun impudence_N : N; -fun impudent_A : A; -fun impugn_V2 : V2; -fun impugnable_A : A; -fun impuissant_A : A; -fun impulse_N : N; -fun impulse_buy_V : V; -fun impulse_buy_V2 : V2; -fun impulsion_N : N; -fun impulsive_A : A; -fun impulsiveness_N : N; -fun impunity_N : N; -fun impure_A : A; -fun impurity_N : N; -fun imputation_N : N; -fun impute_V2 : V2; -fun imputrescible_A : A; -fun in_A : A; -fun in_Adv : Adv; -fun in_N : N; -fun in_Prep : Prep; -fun in_a_nutshell_Adv : Adv; -fun in_a_pig's_eye_Adv : Adv; -fun in_a_way_Adv : Adv; -fun in_absentia_Adv : Adv; -fun in_basket_N : N; -fun in_between_A : A; -fun in_bounds_A : A; -fun in_case_Adv : Adv; -fun in_chief_A : A; -fun in_chief_A : A; -fun in_circles_Adv : Adv; -fun in_common_Adv : Adv; -fun in_concert_Adv : Adv; -fun in_detail_Adv : Adv; -fun in_due_course_Adv : Adv; -fun in_evidence_A : A; -fun in_extremis_Adv : Adv; -fun in_fact_Adv : Adv; -fun in_fighting_N : N; -fun in_fighting_N : N; -fun in_flight_Adv : Adv; -fun in_for_A : A; -fun in_full_Adv : Adv; -fun in_full_swing_Adv : Adv; -fun in_gear_A : A; -fun in_good_taste_A : A; -fun in_hand_Adv : Adv; -fun in_height_A : A; -fun in_his_right_mind_A : A; -fun in_joke_N : N; -fun in_kind_Adv : Adv; -fun in_law_N : N; -fun in_league_A : A; -fun in_line_A : A; -fun in_line_Adv : Adv; -fun in_loco_parentis_Adv : Adv; -fun in_name_Adv : Adv; -fun in_no_time_Adv : Adv; -fun in_on_Adv : Adv; -fun in_one's_own_right_Adv : Adv; -fun in_order_A : A; -fun in_other_words_Adv : Adv; -fun in_passing_Adv : Adv; -fun in_patient_N : N; -fun in_perpetuity_Adv : Adv; -fun in_person_A : A; -fun in_play_A : A; -fun in_practice_Adv : Adv; -fun in_principle_Adv : Adv; -fun in_return_Adv : Adv; -fun in_service_A : A; -fun in_short_order_Adv : Adv; -fun in_sight_A : A; -fun in_situ_A : A; -fun in_situ_Adv : Adv; -fun in_stock_A : A; -fun in_store_A : A; -fun in_stride_Adv : Adv; -fun in_the_air_Adv : Adv; -fun in_the_bargain_Adv : Adv; -fun in_the_first_place_Adv : Adv; -fun in_the_least_Adv : Adv; -fun in_the_long_run_Adv : Adv; -fun in_the_lurch_Adv : Adv; -fun in_the_nick_of_time_Adv : Adv; -fun in_the_public_eye_A : A; -fun in_the_same_breath_Adv : Adv; -fun in_the_way_Adv : Adv; -fun in_time_Adv : Adv; -fun in_toto_Adv : Adv; -fun in_tray_N : N; -fun in_truth_Adv : Adv; -fun in_unison_Adv : Adv; -fun in_use_A : A; -fun in_utero_Adv : Adv; -fun in_vacuo_Adv : Adv; -fun in_vitro_A : A; -fun in_vitro_Adv : Adv; -fun in_vivo_A : A; -fun in_vivo_Adv : Adv; -fun in_your_face_A : A; -fun inability_N : N; -fun inaccessibility_N : N; -fun inaccessible_A : A; -fun inaccessibly_Adv : Adv; -fun inaccuracy_N : N; -fun inaccurate_A : A; -fun inaccurately_Adv : Adv; -fun inaction_N : N; -fun inactivate_V2 : V2; -fun inactivation_N : N; -fun inactive_A : A; -fun inactiveness_N : N; -fun inactivity_N : N; -fun inadequacy_N : N; -fun inadequate_A : A; -fun inadequately_Adv : Adv; -fun inadmissibility_N : N; -fun inadmissible_A : A; -fun inadvertence_N : N; -fun inadvertent_A : A; -fun inadvisability_N : N; -fun inadvisable_A : A; -fun inaesthetic_A : A; -fun inalienable_A : A; -fun inalienably_Adv : Adv; -fun inamorata_N : N; -fun inamorato_N : N; -fun inane_A : A; -fun inanimate_A : A; -fun inanimateness_N : N; -fun inanition_N : N; -fun inanity_N : N; -fun inapplicability_N : N; -fun inapplicable_A : A; -fun inapposite_A : A; -fun inappreciable_A : A; -fun inappropriate_A : A; -fun inappropriately_Adv : Adv; -fun inappropriateness_N : N; -fun inapt_A : A; -fun inaptitude_N : N; -fun inaptness_N : N; -fun inarguable_A : A; -fun inarticulate_A : A; -fun inarticulately_Adv : Adv; -fun inartistic_A : A; -fun inasmuch_as_Adv : Adv; -fun inattention_N : N; -fun inattentive_A : A; -fun inattentiveness_N : N; -fun inaudibility_N : N; -fun inaudible_A : A; -fun inaudibly_Adv : Adv; -fun inaugural_A : A; -fun inaugural_N : N; -fun inaugurally_Adv : Adv; -fun inaugurate_V2 : V2; -fun inauguration_N : N; -fun inauspicious_A : A; -fun inauspiciously_Adv : Adv; -fun inauspiciousness_N : N; -fun inauthentic_A : A; -fun inboard_A : A; -fun inborn_A : A; -fun inbound_A : A; -fun inbred_A : A; -fun inbreeding_N : N; -fun inbuilt_A : A; -fun incalculable_A : A; -fun incandesce_V : V; -fun incandescence_N : N; -fun incandescent_A : A; -fun incantation_N : N; -fun incapability_N : N; -fun incapable_A : A; -fun incapacitate_V2 : V2; -fun incapacity_N : N; -fun incarcerate_V2 : V2; -fun incarceration_N : N; -fun incarnate_A : A; -fun incarnate_V2 : V2; -fun incarnation_N : N; -fun incaution_N : N; -fun incautious_A : A; -fun incautiously_Adv : Adv; -fun incendiarism_N : N; -fun incendiary_A : A; -fun incendiary_N : N; -fun incense_N : N; -fun incense_V2 : V2; -fun incentive_N : N; -fun inception_N : N; -fun incertitude_N : N; -fun incessant_A : A; -fun incest_N : N; -fun incestuous_A : A; -fun incestuously_Adv : Adv; -fun inch_N : N; -fun inch_V : V; -fun inch_V2 : V2; -fun inchoate_A : A; -fun inchoative_A : A; -fun inchoative_N : N; -fun incidence_N : N; -fun incident_A : A; -fun incident_N : N; -fun incidental_A : A; -fun incidental_N : N; -fun incidentally_Adv : Adv; -fun incinerate_V2 : V2; -fun incineration_N : N; -fun incinerator_N : N; -fun incipiency_N : N; -fun incipient_A : A; -fun incise_V : V; -fun incise_V2 : V2; -fun incised_A : A; -fun incision_N : N; -fun incisive_A : A; -fun incisively_Adv : Adv; -fun incisiveness_N : N; -fun incisor_N : N; -fun incisure_N : N; -fun incitation_N : N; -fun incite_V2 : V2; -fun incitement_N : N; -fun incivility_N : N; -fun inclemency_N : N; -fun inclement_A : A; -fun inclination_N : N; -fun incline_N : N; -fun incline_V : V; -fun incline_V2 : V2; -fun incline_V2V : V2V; -fun inclined_A : A; -fun inclinometer_N : N; -fun inclose_V2 : V2; -fun inclosure_N : N; -fun include_V : V; -fun include_V2 : V2; -fun include_VS : VS; -fun include_VV : VV; -fun included_A : A; -fun inclusion_N : N; -fun inclusive_A : A; -fun incognito_A : A; -fun incognito_Adv : Adv; -fun incognizable_A : A; -fun incognizance_N : N; -fun incoherence_N : N; -fun incoherent_A : A; -fun incoherently_Adv : Adv; -fun incombustible_A : A; -fun income_N : N; -fun income_tax_N : N; -fun incoming_A : A; -fun incommensurable_A : A; -fun incommensurate_A : A; -fun incommode_V2 : V2; -fun incommodious_A : A; -fun incommunicado_A : A; -fun incommutability_N : N; -fun incommutable_A : A; -fun incomparable_A : A; -fun incomparably_Adv : Adv; -fun incompatibility_N : N; -fun incompatible_A : A; -fun incompatibly_Adv : Adv; -fun incompetence_N : N; -fun incompetency_N : N; -fun incompetent_A : A; -fun incompetent_N : N; -fun incompetently_Adv : Adv; -fun incomplete_A : A; -fun incompletely_Adv : Adv; -fun incompleteness_N : N; -fun incomprehensibility_N : N; -fun incomprehensible_A : A; -fun incomprehension_N : N; -fun incompressibility_N : N; -fun incompressible_A : A; -fun incomputable_A : A; -fun inconceivability_N : N; -fun inconceivable_A : A; -fun inconceivably_Adv : Adv; -fun inconclusive_A : A; -fun inconclusively_Adv : Adv; -fun inconclusiveness_N : N; -fun incongruent_A : A; -fun incongruity_N : N; -fun incongruous_A : A; -fun incongruously_Adv : Adv; -fun inconsequence_N : N; -fun inconsequent_A : A; -fun inconsequential_A : A; -fun inconsequentially_Adv : Adv; -fun inconsiderable_A : A; -fun inconsiderate_A : A; -fun inconsiderately_Adv : Adv; -fun inconsideration_N : N; -fun inconsistency_N : N; -fun inconsistent_A : A; -fun inconsistently_Adv : Adv; -fun inconsolable_A : A; -fun inconspicuous_A : A; -fun inconspicuously_Adv : Adv; -fun inconspicuousness_N : N; -fun inconstancy_N : N; -fun inconstant_A : A; -fun incontestable_A : A; -fun incontinence_N : N; -fun incontinent_A : A; -fun incontrovertibility_N : N; -fun incontrovertible_A : A; -fun inconvenience_N : N; -fun inconvenience_V2 : V2; -fun inconvenient_A : A; -fun inconveniently_Adv : Adv; -fun inconvertibility_N : N; -fun inconvertible_A : A; -fun incoordination_N : N; -fun incorporate_A : A; -fun incorporate_V : V; -fun incorporate_V2 : V2; -fun incorporated_A : A; -fun incorporation_N : N; -fun incorporative_A : A; -fun incorporeal_A : A; -fun incorrect_A : A; -fun incorrectly_Adv : Adv; -fun incorrectness_N : N; -fun incorrigible_A : A; -fun incorrupt_A : A; -fun incorruptibility_N : N; -fun incorruptible_A : A; -fun incorruptness_N : N; -fun increase_N : N; -fun increase_V : V; -fun increase_V2 : V2; -fun increased_A : A; -fun increasing_A : A; -fun increasing_monotonic_A : A; -fun increasingly_Adv : Adv; -fun incredibility_N : N; -fun incredible_A : A; -fun incredibly_Adv : Adv; -fun incredulity_N : N; -fun incredulous_A : A; -fun incredulously_Adv : Adv; -fun increment_N : N; -fun incremental_A : A; -fun incriminate_V2 : V2; -fun incriminatingly_Adv : Adv; -fun incrimination_N : N; -fun incrustation_N : N; -fun incubate_V : V; -fun incubate_V2 : V2; -fun incubation_N : N; -fun incubator_N : N; -fun incubus_N : N; -fun inculcate_V2 : V2; -fun inculcation_N : N; -fun inculpate_V2 : V2; -fun inculpatory_A : A; -fun incumbency_N : N; -fun incumbent_A : A; -fun incumbent_N : N; -fun incumbent_on_A : A; -fun incur_V2 : V2; -fun incurability_N : N; -fun incurable_A : A; -fun incurable_N : N; -fun incurably_Adv : Adv; -fun incurious_A : A; -fun incurrence_N : N; -fun incurring_N : N; -fun incursion_N : N; -fun incursive_A : A; -fun incurvate_A : A; -fun incurvation_N : N; -fun incurved_A : A; -fun incus_N : N; -fun indaba_N : N; -fun indapamide_N : N; -fun indebted_A : A; -fun indebtedness_N : N; -fun indecency_N : N; -fun indecent_A : A; -fun indecently_Adv : Adv; -fun indecipherable_A : A; -fun indecision_N : N; -fun indecisive_A : A; -fun indecisively_Adv : Adv; -fun indecisiveness_N : N; -fun indecorous_A : A; -fun indecorously_Adv : Adv; -fun indecorum_N : N; -fun indeed_Adv : Adv; -fun indefatigability_N : N; -fun indefatigable_A : A; -fun indefatigably_Adv : Adv; -fun indefeasible_A : A; -fun indefensible_A : A; -fun indefinable_A : A; -fun indefinite_A : A; -fun indefinitely_Adv : Adv; -fun indefiniteness_N : N; -fun indehiscent_A : A; -fun indelible_A : A; -fun indelibly_Adv : Adv; -fun indelicacy_N : N; -fun indelicate_A : A; -fun indemnification_N : N; -fun indemnify_V2 : V2; -fun indemnity_N : N; -fun indene_N : N; -fun indent_N : N; -fun indent_V : V; -fun indent_V2 : V2; -fun indentation_N : N; -fun indenture_N : N; -fun indenture_V2 : V2; -fun independence_N : N; -fun independent_A : A; -fun independent_N : N; -fun independently_Adv : Adv; -fun indescribable_A : A; -fun indestructibility_N : N; -fun indestructible_A : A; -fun indeterminable_A : A; -fun indeterminably_Adv : Adv; -fun indeterminacy_N : N; -fun indeterminate_A : A; -fun index_N : N; -fun index_V2 : V2; -fun indexation_N : N; -fun indexer_N : N; -fun indexical_A : A; -fun indexing_N : N; -fun indexless_A : A; -fun india_rubber_N : N; -fun indiaman_N : N; -fun indian_A : A; -fun indian_N : N; -fun indicate_V : V; -fun indicate_V2 : V2; -fun indicate_VS : VS; -fun indication_N : N; -fun indicative_A : A; -fun indicator_N : N; -fun indict_V : V; -fun indict_V2 : V2; -fun indictable_A : A; -fun indiction_N : N; -fun indictment_N : N; -fun indie_A : A; -fun indie_N : N; -fun indifference_N : N; -fun indifferent_A : A; -fun indifferently_Adv : Adv; -fun indigence_N : N; -fun indigenous_A : A; -fun indigenously_Adv : Adv; -fun indigenousness_N : N; -fun indigent_A : A; -fun indigestibility_N : N; -fun indigestible_A : A; -fun indigestion_N : N; -fun indignant_A : A; -fun indignantly_Adv : Adv; -fun indignation_N : N; -fun indignity_N : N; -fun indigo_A : A; -fun indigo_N : N; -fun indinavir_N : N; -fun indirect_A : A; -fun indirection_N : N; -fun indirectly_Adv : Adv; -fun indirectness_N : N; -fun indiscernible_A : A; -fun indiscipline_N : N; -fun indiscreet_A : A; -fun indiscreetly_Adv : Adv; -fun indiscrete_A : A; -fun indiscretion_N : N; -fun indiscriminate_A : A; -fun indispensability_N : N; -fun indispensable_A : A; -fun indisposed_A : A; -fun indisposition_N : N; -fun indisputability_N : N; -fun indisputable_A : A; -fun indissoluble_A : A; -fun indistinct_A : A; -fun indistinctness_N : N; -fun indistinguishable_A : A; -fun indite_V2 : V2; -fun indium_N : N; -fun individual_A : A; -fun individual_N : N; -fun individualism_N : N; -fun individualist_A : A; -fun individualist_N : N; -fun individualistic_A : A; -fun individualistically_Adv : Adv; -fun individuality_N : N; -fun individualization_N : N; -fun individualize_V2 : V2; -fun individualized_A : A; -fun individually_Adv : Adv; -fun indivisible_A : A; -fun indo_european_A : A; -fun indocile_A : A; -fun indoctrinate_V2 : V2; -fun indoctrination_N : N; -fun indolence_N : N; -fun indolent_A : A; -fun indolently_Adv : Adv; -fun indomethacin_N : N; -fun indomitability_N : N; -fun indomitable_A : A; -fun indonesian_A : A; -fun indonesian_N : N; -fun indoor_A : A; -fun indoors_Adv : Adv; -fun indorse_V2 : V2; -fun indrawn_A : A; -fun indri_N : N; -fun indubitable_A : A; -fun indubitably_Adv : Adv; -fun induce_V2 : V2; -fun induce_V2V : V2V; -fun induced_A : A; -fun inducement_N : N; -fun inducer_N : N; -fun induct_V2 : V2; -fun inductee_N : N; -fun induction_N : N; -fun inductive_A : A; -fun inductor_N : N; -fun indue_V2 : V2; -fun indulge_V : V; -fun indulge_V2 : V2; -fun indulgence_N : N; -fun indulgent_A : A; -fun indulgently_Adv : Adv; -fun indumentum_N : N; -fun indusial_A : A; -fun indusium_N : N; -fun industrial_A : A; -fun industrial_strength_A : A; -fun industrialism_N : N; -fun industrialist_N : N; -fun industrialization_N : N; -fun industrialized_A : A; -fun industrially_Adv : Adv; -fun industrious_A : A; -fun industriously_Adv : Adv; -fun industry_N : N; -fun indweller_N : N; -fun indwelling_A : A; -fun inebriate_A : A; -fun inebriate_N : N; -fun inebriate_V2 : V2; -fun inebriation_N : N; -fun inebriety_N : N; -fun inedible_A : A; -fun ineffable_A : A; -fun ineffably_Adv : Adv; -fun ineffective_A : A; -fun ineffectiveness_N : N; -fun ineffectual_A : A; -fun ineffectuality_N : N; -fun ineffectually_Adv : Adv; -fun inefficacious_A : A; -fun inefficaciously_Adv : Adv; -fun inefficacy_N : N; -fun inefficiency_N : N; -fun inefficient_A : A; -fun inefficiently_Adv : Adv; -fun inelaborate_A : A; -fun inelastic_A : A; -fun inelasticity_N : N; -fun inelegance_N : N; -fun inelegant_A : A; -fun inelegantly_Adv : Adv; -fun ineligibility_N : N; -fun ineligible_A : A; -fun ineloquently_Adv : Adv; -fun ineluctability_N : N; -fun ineluctable_A : A; -fun inept_A : A; -fun ineptitude_N : N; -fun ineptly_Adv : Adv; -fun inequality_N : N; -fun inequitable_A : A; -fun inequitably_Adv : Adv; -fun inequity_N : N; -fun ineradicable_A : A; -fun inerrable_A : A; -fun inerrancy_N : N; -fun inert_A : A; -fun inertia_N : N; -fun inertial_A : A; -fun inertness_N : N; -fun inescapable_A : A; -fun inescapably_Adv : Adv; -fun inessential_A : A; -fun inessential_N : N; -fun inessentiality_N : N; -fun inestimable_A : A; -fun inevitability_N : N; -fun inevitable_A : A; -fun inevitable_N : N; -fun inevitably_Adv : Adv; -fun inexact_A : A; -fun inexactitude_N : N; -fun inexactness_N : N; -fun inexcusable_A : A; -fun inexcusably_Adv : Adv; -fun inexhaustible_A : A; -fun inexorable_A : A; -fun inexorably_Adv : Adv; -fun inexpedience_N : N; -fun inexpediency_N : N; -fun inexpedient_A : A; -fun inexpediently_Adv : Adv; -fun inexpensive_A : A; -fun inexpensiveness_N : N; -fun inexperience_N : N; -fun inexperienced_A : A; -fun inexpert_A : A; -fun inexpiable_A : A; -fun inexplicable_A : A; -fun inexplicitness_N : N; -fun inexpressible_A : A; -fun inexpressive_A : A; -fun inexpressively_Adv : Adv; -fun inexpungible_A : A; -fun inexterminable_A : A; -fun inextinguishable_A : A; -fun inextricable_A : A; -fun inextricably_Adv : Adv; -fun infallibility_N : N; -fun infallible_A : A; -fun infamous_A : A; -fun infamy_N : N; -fun infancy_N : N; -fun infant_N : N; -fun infanticide_N : N; -fun infantile_A : A; -fun infantilism_N : N; -fun infantry_N : N; -fun infantryman_N : N; -fun infarct_N : N; -fun infatuate_V2 : V2; -fun infatuation_N : N; -fun infeasibility_N : N; -fun infect_V : V; -fun infect_V2 : V2; -fun infection_N : N; -fun infectious_A : A; -fun infective_A : A; -fun infelicitous_A : A; -fun infelicitously_Adv : Adv; -fun infelicity_N : N; -fun infer_V2 : V2; -fun inference_N : N; -fun inferential_A : A; -fun inferior_A : A; -fun inferior_N : N; -fun inferiority_N : N; -fun infernal_A : A; -fun infernal_N : N; -fun infernally_Adv : Adv; -fun inferno_N : N; -fun infertile_A : A; -fun infertility_N : N; -fun infest_V2 : V2; -fun infestation_N : N; -fun infidel_N : N; -fun infidelity_N : N; -fun infield_N : N; -fun infielder_N : N; -fun infiltrate_V : V; -fun infiltrate_V2 : V2; -fun infiltration_N : N; -fun infiltrator_N : N; -fun infinite_A : A; -fun infinitely_Adv : Adv; -fun infiniteness_N : N; -fun infinitesimal_A : A; -fun infinitesimal_N : N; -fun infinitival_A : A; -fun infinitive_A : A; -fun infinitive_N : N; -fun infinitude_N : N; -fun infinity_N : N; -fun infirm_A : A; -fun infirmary_N : N; -fun infirmity_N : N; -fun infix_N : N; -fun inflame_V : V; -fun inflame_V2 : V2; -fun inflamed_A : A; -fun inflammable_A : A; -fun inflammation_N : N; -fun inflammatory_A : A; -fun inflatable_A : A; -fun inflate_V : V; -fun inflate_V2 : V2; -fun inflater_N : N; -fun inflation_N : N; -fun inflationary_A : A; -fun inflect_V2 : V2; -fun inflected_A : A; -fun inflection_N : N; -fun inflectional_A : A; -fun inflexibility_N : N; -fun inflexible_A : A; -fun inflexibly_Adv : Adv; -fun inflexion_N : N; -fun inflict_V2 : V2; -fun infliction_N : N; -fun infliximab_N : N; -fun inflorescence_N : N; -fun inflow_N : N; -fun inflowing_A : A; -fun influence_N : N; -fun influence_V2 : V2; -fun influential_A : A; -fun influentially_Adv : Adv; -fun influenza_N : N; -fun influx_N : N; -fun info_N : N; -fun infomercial_N : N; -fun inform_V : V; -fun inform_V2 : V2; -fun informal_A : A; -fun informality_N : N; -fun informally_Adv : Adv; -fun informant_N : N; -fun information_N : N; -fun informational_A : A; -fun informative_A : A; -fun informatively_Adv : Adv; -fun informed_A : A; -fun informer_N : N; -fun informing_N : N; -fun infra_Adv : Adv; -fun infra_dig_A : A; -fun infra_red_A : A; -fun infraction_N : N; -fun infrahuman_A : A; -fun infrangible_A : A; -fun infrared_A : A; -fun infrared_N : N; -fun infrasonic_A : A; -fun infrastructure_N : N; -fun infrequency_N : N; -fun infrequent_A : A; -fun infrequently_Adv : Adv; -fun infringe_V : V; -fun infringe_V2 : V2; -fun infringement_N : N; -fun infructescence_N : N; -fun infundibulum_N : N; -fun infuriate_V2 : V2; -fun infuriation_N : N; -fun infuse_V : V; -fun infuse_V2 : V2; -fun infusion_N : N; -fun infusorian_N : N; -fun inga_N : N; -fun ingathering_N : N; -fun ingenious_A : A; -fun ingeniously_Adv : Adv; -fun ingenue_N : N; -fun ingenuity_N : N; -fun ingenuous_A : A; -fun ingenuousness_N : N; -fun ingest_V2 : V2; -fun ingesta_N : N; -fun ingle_nook_N : N; -fun inglorious_A : A; -fun ingoing_A : A; -fun ingot_N : N; -fun ingraft_V2 : V2; -fun ingrained_A : A; -fun ingrate_N : N; -fun ingratiate_V2 : V2; -fun ingratiating_A : A; -fun ingratiatingly_Adv : Adv; -fun ingratiation_N : N; -fun ingratitude_N : N; -fun ingredient_N : N; -fun ingress_N : N; -fun ingrowing_A : A; -fun ingrowth_N : N; -fun inguinal_A : A; -fun inhabit_V2 : V2; -fun inhabitable_A : A; -fun inhabitancy_N : N; -fun inhabitant_N : N; -fun inhabited_A : A; -fun inhalant_A : A; -fun inhalant_N : N; -fun inhalation_N : N; -fun inhale_V : V; -fun inhale_V2 : V2; -fun inhaler_N : N; -fun inharmonious_A : A; -fun inherence_N : N; -fun inherent_A : A; -fun inherently_Adv : Adv; -fun inherit_V : V; -fun inherit_V2 : V2; -fun inheritable_A : A; -fun inheritance_N : N; -fun inheriting_A : A; -fun inheritor_N : N; -fun inhibit_V2 : V2; -fun inhibited_A : A; -fun inhibition_N : N; -fun inhibitor_N : N; -fun inhibitory_A : A; -fun inhomogeneity_N : N; -fun inhomogeneous_A : A; -fun inhospitable_A : A; -fun inhospitableness_N : N; -fun inhospitably_Adv : Adv; -fun inhospitality_N : N; -fun inhuman_A : A; -fun inhumane_A : A; -fun inhumanely_Adv : Adv; -fun inhumaneness_N : N; -fun inhumanity_N : N; -fun inimical_A : A; -fun inimitable_A : A; -fun inimitably_Adv : Adv; -fun inion_N : N; -fun iniquitous_A : A; -fun iniquitously_Adv : Adv; -fun iniquity_N : N; -fun initial_A : A; -fun initial_N : N; -fun initial_V2 : V2; -fun initially_Adv : Adv; -fun initiate_A : A; -fun initiate_N : N; -fun initiate_V2 : V2; -fun initiation_N : N; -fun initiative_N : N; -fun inject_V2 : V2; -fun injectable_A : A; -fun injection_N : N; -fun injector_N : N; -fun injudicious_A : A; -fun injudiciously_Adv : Adv; -fun injudiciousness_N : N; -fun injunction_N : N; -fun injure_V2 : V2; -fun injured_A : A; -fun injurious_A : A; -fun injuriously_Adv : Adv; -fun injury_N : N; -fun injustice_N : N; -fun ink_N : N; -fun ink_V : V; -fun ink_V2 : V2; -fun ink_black_A : A; -fun ink_bottle_N : N; -fun ink_jet_A : A; -fun ink_pad_N : N; -fun ink_pot_N : N; -fun inkberry_N : N; -fun inkblot_N : N; -fun inkle_N : N; -fun inkling_N : N; -fun inkstand_N : N; -fun inkwell_N : N; -fun inky_A : A; -fun inlaid_A : A; -fun inland_A : A; -fun inland_Adv : Adv; -fun inlay_N : N; -fun inlay_V2 : V2; -fun inlet_N : N; -fun inmate_N : N; -fun inmost_A : A; -fun inn_N : N; -fun innate_A : A; -fun innately_Adv : Adv; -fun innateness_N : N; -fun inner_A : A; -fun innermost_A : A; -fun innervation_N : N; -fun inning_N : N; -fun innings_N : N; -fun innkeeper_N : N; -fun innocence_N : N; -fun innocency_N : N; -fun innocent_A : A; -fun innocent_N : N; -fun innocently_Adv : Adv; -fun innocuous_A : A; -fun innovate_V : V; -fun innovate_V2 : V2; -fun innovation_N : N; -fun innovative_A : A; -fun innovativeness_N : N; -fun innovator_N : N; -fun innoxious_A : A; -fun innuendo_N : N; -fun innumerable_A : A; -fun innumerableness_N : N; -fun innumerate_A : A; -fun inoculant_N : N; -fun inoculate_V2 : V2; -fun inoculating_N : N; -fun inoculation_N : N; -fun inoculator_N : N; -fun inoffensive_A : A; -fun inoffensively_Adv : Adv; -fun inoperable_A : A; -fun inoperative_A : A; -fun inopportune_A : A; -fun inopportunely_Adv : Adv; -fun inopportuneness_N : N; -fun inordinate_A : A; -fun inordinately_Adv : Adv; -fun inorganic_A : A; -fun inorganically_Adv : Adv; -fun inosine_N : N; -fun inositol_N : N; -fun inpatient_N : N; -fun inpouring_A : A; -fun inpouring_N : N; -fun input_N : N; -fun inquest_N : N; -fun inquietude_N : N; -fun inquire_V : V; -fun inquire_V2 : V2; -fun inquire_V2Q : V2Q; -fun inquirer_N : N; -fun inquiring_A : A; -fun inquiringly_Adv : Adv; -fun inquiry_N : N; -fun inquisition_N : N; -fun inquisitive_A : A; -fun inquisitiveness_N : N; -fun inquisitor_N : N; -fun inquisitorial_A : A; -fun inquisitory_A : A; -fun inroad_N : N; -fun inrush_N : N; -fun insalubrious_A : A; -fun insalubrity_N : N; -fun insane_A : A; -fun insanely_Adv : Adv; -fun insanitary_A : A; -fun insanity_N : N; -fun insatiable_A : A; -fun insatiably_Adv : Adv; -fun insatiate_A : A; -fun inscribe_V : V; -fun inscribe_V2 : V2; -fun inscribed_A : A; -fun inscription_N : N; -fun inscriptive_A : A; -fun inscriptively_Adv : Adv; -fun inscrutability_N : N; -fun inscrutable_A : A; -fun inscrutably_Adv : Adv; -fun insect_N : N; -fun insect_powder_N : N; -fun insectan_A : A; -fun insecticidal_A : A; -fun insecticidally_Adv : Adv; -fun insecticide_N : N; -fun insectifuge_N : N; -fun insectivore_N : N; -fun insectivorous_A : A; -fun insecure_A : A; -fun insecurely_Adv : Adv; -fun insecureness_N : N; -fun insecurity_N : N; -fun inseminate_V2 : V2; -fun insemination_N : N; -fun insensate_A : A; -fun insensately_Adv : Adv; -fun insensibility_N : N; -fun insensible_A : A; -fun insensitive_A : A; -fun insensitively_Adv : Adv; -fun insensitivity_N : N; -fun insentience_N : N; -fun insentient_A : A; -fun inseparable_A : A; -fun inseparably_Adv : Adv; -fun insert_N : N; -fun insert_V2 : V2; -fun insertion_N : N; -fun inset_N : N; -fun inset_V2 : V2; -fun inshore_A : A; -fun inshore_Adv : Adv; -fun inside_A : A; -fun inside_Adv : Adv; -fun inside_N : N; -fun inside_Prep : Prep; -fun inside_out_Adv : Adv; -fun insider_N : N; -fun insidious_A : A; -fun insidiously_Adv : Adv; -fun insidiousness_N : N; -fun insight_N : N; -fun insightful_A : A; -fun insightfulness_N : N; -fun insignia_N : N; -fun insignificance_N : N; -fun insignificant_A : A; -fun insignificantly_Adv : Adv; -fun insincere_A : A; -fun insincerely_Adv : Adv; -fun insincerity_N : N; -fun insinuate_V2 : V2; -fun insinuatingly_Adv : Adv; -fun insinuation_N : N; -fun insipid_A : A; -fun insipidity_N : N; -fun insipidly_Adv : Adv; -fun insipidness_N : N; -fun insist_V : V; -fun insist_V2 : V2; -fun insist_VS : VS; -fun insistence_N : N; -fun insistent_A : A; -fun insistently_Adv : Adv; -fun insofar_Adv : Adv; -fun insolation_N : N; -fun insole_N : N; -fun insolence_N : N; -fun insolent_A : A; -fun insolently_Adv : Adv; -fun insolubility_N : N; -fun insoluble_A : A; -fun insolvable_A : A; -fun insolvency_N : N; -fun insolvent_A : A; -fun insolvent_N : N; -fun insomnia_N : N; -fun insomniac_A : A; -fun insomniac_N : N; -fun insomuch_Adv : Adv; -fun insouciance_N : N; -fun insouciant_A : A; -fun inspan_V2 : V2; -fun inspect_V2 : V2; -fun inspection_N : N; -fun inspector_N : N; -fun inspectorate_N : N; -fun inspectorship_N : N; -fun inspiration_N : N; -fun inspirational_A : A; -fun inspirationally_Adv : Adv; -fun inspiratory_A : A; -fun inspire_V2 : V2; -fun inspire_V2V : V2V; -fun inspired_A : A; -fun inspiring_A : A; -fun inspissation_N : N; -fun instability_N : N; -fun install_V : V; -fun install_V2 : V2; -fun installation_N : N; -fun installment_N : N; -fun instalment_N : N; -fun instance_N : N; -fun instance_V2 : V2; -fun instant_A : A; -fun instant_N : N; -fun instantaneous_A : A; -fun instantaneously_Adv : Adv; -fun instantiation_N : N; -fun instar_N : N; -fun instead_Adv : Adv; -fun instep_N : N; -fun instigate_V2 : V2; -fun instigation_N : N; -fun instigator_N : N; -fun instil_V2 : V2; -fun instillation_N : N; -fun instillator_N : N; -fun instinct_A : A; -fun instinct_N : N; -fun instinctive_A : A; -fun instinctively_Adv : Adv; -fun institute_N : N; -fun institute_V2 : V2; -fun institution_N : N; -fun institutional_A : A; -fun institutionalize_V2 : V2; -fun institutionalized_A : A; -fun institutionally_Adv : Adv; -fun instroke_N : N; -fun instruct_V2 : V2; -fun instruction_N : N; -fun instructional_A : A; -fun instructive_A : A; -fun instructor_N : N; -fun instructorship_N : N; -fun instructress_N : N; -fun instrument_N : N; -fun instrumental_A : A; -fun instrumentalism_N : N; -fun instrumentalist_N : N; -fun instrumentality_N : N; -fun instrumentation_N : N; -fun insubordinate_A : A; -fun insubordination_N : N; -fun insubstantial_A : A; -fun insubstantiality_N : N; -fun insubstantially_Adv : Adv; -fun insufferable_A : A; -fun insufficiency_N : N; -fun insufficient_A : A; -fun insufficiently_Adv : Adv; -fun insufflation_N : N; -fun insular_A : A; -fun insularism_N : N; -fun insularity_N : N; -fun insulate_V2 : V2; -fun insulation_N : N; -fun insulator_N : N; -fun insulin_N : N; -fun insult_N : N; -fun insult_V2 : V2; -fun insulting_A : A; -fun insultingly_Adv : Adv; -fun insuperable_A : A; -fun insuperably_Adv : Adv; -fun insupportable_A : A; -fun insurability_N : N; -fun insurable_A : A; -fun insurance_N : N; -fun insure_V : V; -fun insure_V2 : V2; -fun insure_VS : VS; -fun insured_A : A; -fun insured_N : N; -fun insurgency_N : N; -fun insurgent_A : A; -fun insurgent_N : N; -fun insurmountable_A : A; -fun insurrection_N : N; -fun insurrectional_A : A; -fun insurrectionism_N : N; -fun intact_A : A; -fun intactness_N : N; -fun intaglio_N : N; -fun intake_N : N; -fun intangibility_N : N; -fun intangible_A : A; -fun intangible_N : N; -fun intangibles_N : N; -fun integer_N : N; -fun integral_A : A; -fun integral_N : N; -fun integrally_Adv : Adv; -fun integrate_V : V; -fun integrate_V2 : V2; -fun integrated_A : A; -fun integration_N : N; -fun integrative_A : A; -fun integrator_N : N; -fun integrity_N : N; -fun integument_N : N; -fun integumentary_A : A; -fun intellect_N : N; -fun intellectual_A : A; -fun intellectual_N : N; -fun intellectualization_N : N; -fun intellectually_Adv : Adv; -fun intelligence_N : N; -fun intelligent_A : A; -fun intelligently_Adv : Adv; -fun intelligentsia_N : N; -fun intelligibility_N : N; -fun intelligible_A : A; -fun intelligibly_Adv : Adv; -fun intemperance_N : N; -fun intemperate_A : A; -fun intend_V : V; -fun intend_V2 : V2; -fun intend_VS : VS; -fun intend_VV : VV; -fun intended_A : A; -fun intense_A : A; -fun intensely_Adv : Adv; -fun intensification_N : N; -fun intensified_A : A; -fun intensifier_N : N; -fun intensify_V : V; -fun intensify_V2 : V2; -fun intensifying_A : A; -fun intension_N : N; -fun intensional_A : A; -fun intensity_N : N; -fun intensive_A : A; -fun intensively_Adv : Adv; -fun intent_A : A; -fun intent_N : N; -fun intention_N : N; -fun intentional_A : A; -fun intentionality_N : N; -fun intentionally_Adv : Adv; -fun intently_Adv : Adv; -fun intentness_N : N; -fun inter_V2 : V2; -fun inter_alia_Adv : Adv; -fun interact_V : V; -fun interaction_N : N; -fun interactional_A : A; -fun interactive_A : A; -fun interbred_A : A; -fun interbreed_V : V; -fun interbreed_V2 : V2; -fun intercalary_A : A; -fun intercede_V : V; -fun intercellular_A : A; -fun intercept_N : N; -fun intercept_V2 : V2; -fun interception_N : N; -fun interceptor_N : N; -fun intercession_N : N; -fun interchange_N : N; -fun interchange_V2 : V2; -fun interchangeable_A : A; -fun interchangeably_Adv : Adv; -fun interchurch_A : A; -fun intercollegiate_A : A; -fun intercom_N : N; -fun intercommunicate_V : V; -fun intercommunication_N : N; -fun intercommunion_N : N; -fun interconnect_V : V; -fun interconnect_V2 : V2; -fun interconnected_A : A; -fun interconnectedness_N : N; -fun interconnection_N : N; -fun intercontinental_A : A; -fun intercostal_A : A; -fun intercostal_N : N; -fun intercourse_N : N; -fun interdenominational_A : A; -fun interdepartmental_A : A; -fun interdepartmental_Adv : Adv; -fun interdependence_N : N; -fun interdependent_A : A; -fun interdict_N : N; -fun interdict_V2 : V2; -fun interdiction_N : N; -fun interdisciplinary_A : A; -fun interest_N : N; -fun interest_V : V; -fun interest_V2 : V2; -fun interest_bearing_A : A; -fun interested_A : A; -fun interestedness_N : N; -fun interesting_A : A; -fun interestingly_Adv : Adv; -fun interface_N : N; -fun interfacial_A : A; -fun interfaith_A : A; -fun interfere_V : V; -fun interference_N : N; -fun interfering_A : A; -fun interferometer_N : N; -fun interferon_N : N; -fun intergalactic_A : A; -fun interim_A : A; -fun interim_N : N; -fun interior_A : A; -fun interior_N : N; -fun interject_V2 : V2; -fun interjection_N : N; -fun interlace_V : V; -fun interlace_V2 : V2; -fun interlacing_A : A; -fun interlard_V2 : V2; -fun interlayer_N : N; -fun interleaf_N : N; -fun interleave_V2 : V2; -fun interleukin_N : N; -fun interlinear_A : A; -fun interlink_V : V; -fun interlink_V2 : V2; -fun interlobular_A : A; -fun interlock_N : N; -fun interlock_V : V; -fun interlock_V2 : V2; -fun interlocutor_N : N; -fun interlocutory_A : A; -fun interloper_N : N; -fun interlude_N : N; -fun intermarriage_N : N; -fun intermarry_V : V; -fun intermediary_N : N; -fun intermediate_A : A; -fun intermediate_N : N; -fun intermediately_Adv : Adv; -fun interment_N : N; -fun intermezzo_N : N; -fun interminable_A : A; -fun interminably_Adv : Adv; -fun intermingle_V : V; -fun intermingle_V2 : V2; -fun intermission_N : N; -fun intermittence_N : N; -fun intermittent_A : A; -fun intermittently_Adv : Adv; -fun intermix_V : V; -fun intermix_V2 : V2; -fun intermixture_N : N; -fun intermolecular_A : A; -fun intermural_A : A; -fun intern_N : N; -fun intern_V2 : V2; -fun internal_A : A; -fun internalization_N : N; -fun internalize_V2 : V2; -fun internally_Adv : Adv; -fun international_A : A; -fun international_N : N; -fun internationale_N : N; -fun internationalism_N : N; -fun internationalist_A : A; -fun internationalist_N : N; -fun internationality_N : N; -fun internationalization_N : N; -fun internationalize_V2 : V2; -fun internationally_Adv : Adv; -fun interne_N : N; -fun internecine_A : A; -fun internee_N : N; -fun internet_N : N; -fun internist_N : N; -fun internment_N : N; -fun internode_N : N; -fun internship_N : N; -fun internuncio_N : N; -fun interoception_N : N; -fun interoceptive_A : A; -fun interoceptor_N : N; -fun interoperability_N : N; -fun interoperable_A : A; -fun interpellate_V2 : V2; -fun interpellation_N : N; -fun interpenetration_N : N; -fun interpersonal_A : A; -fun interphone_N : N; -fun interplanetary_A : A; -fun interplay_N : N; -fun interpolate_V2 : V2; -fun interpolation_N : N; -fun interpose_V : V; -fun interpose_V2 : V2; -fun interposition_N : N; -fun interpret_V : V; -fun interpret_V2 : V2; -fun interpretation_N : N; -fun interpretative_A : A; -fun interpreted_A : A; -fun interpreter_N : N; -fun interracial_A : A; -fun interracially_Adv : Adv; -fun interreflection_N : N; -fun interregnum_N : N; -fun interrelate_V : V; -fun interrelate_V2 : V2; -fun interrelation_N : N; -fun interrelationship_N : N; -fun interrogate_V2 : V2; -fun interrogation_N : N; -fun interrogative_A : A; -fun interrogative_N : N; -fun interrogatively_Adv : Adv; -fun interrogator_N : N; -fun interrogatory_A : A; -fun interrupt_N : N; -fun interrupt_V : V; -fun interrupt_V2 : V2; -fun interrupted_A : A; -fun interrupter_N : N; -fun interruption_N : N; -fun interscholastic_A : A; -fun intersect_V : V; -fun intersect_V2 : V2; -fun intersection_N : N; -fun intersexual_A : A; -fun interspecies_A : A; -fun intersperse_V2 : V2; -fun interspersion_N : N; -fun interstate_A : A; -fun interstate_N : N; -fun interstellar_A : A; -fun interstice_N : N; -fun interstitial_A : A; -fun intertidal_A : A; -fun intertribal_A : A; -fun intertrigo_N : N; -fun intertwine_V : V; -fun intertwine_V2 : V2; -fun interval_N : N; -fun intervene_V : V; -fun intervene_V2V : V2V; -fun intervening_A : A; -fun intervenor_N : N; -fun intervention_N : N; -fun intervertebral_A : A; -fun interview_N : N; -fun interview_V2 : V2; -fun interviewee_N : N; -fun interviewer_N : N; -fun interweave_V2 : V2; -fun intestacy_N : N; -fun intestate_A : A; -fun intestinal_A : A; -fun intestine_N : N; -fun inti_N : N; -fun intifada_N : N; -fun intima_N : N; -fun intimacy_N : N; -fun intimal_A : A; -fun intimate_A : A; -fun intimate_N : N; -fun intimate_V2 : V2; -fun intimation_N : N; -fun intimidate_V2 : V2; -fun intimidated_A : A; -fun intimidation_N : N; -fun into_Prep : Prep; -fun intolerable_A : A; -fun intolerance_N : N; -fun intolerant_A : A; -fun intolerantly_Adv : Adv; -fun intonation_N : N; -fun intone_V : V; -fun intone_V2 : V2; -fun intoxicant_A : A; -fun intoxicant_N : N; -fun intoxicate_V2 : V2; -fun intoxicated_A : A; -fun intoxication_N : N; -fun intra_uterine_A : A; -fun intra_vires_A : A; -fun intracellular_A : A; -fun intracerebral_A : A; -fun intracranial_A : A; -fun intractability_N : N; -fun intractable_A : A; -fun intractably_Adv : Adv; -fun intradepartmental_A : A; -fun intradermal_A : A; -fun intradermally_Adv : Adv; -fun intrados_N : N; -fun intralinguistic_A : A; -fun intralobular_A : A; -fun intramolecular_A : A; -fun intramural_A : A; -fun intramuscular_A : A; -fun intramuscularly_Adv : Adv; -fun intranet_N : N; -fun intransigence_N : N; -fun intransigency_N : N; -fun intransigent_A : A; -fun intransitive_A : A; -fun intransitively_Adv : Adv; -fun intransitivity_N : N; -fun intrapulmonary_A : A; -fun intrasentential_A : A; -fun intraspecies_A : A; -fun intrastate_A : A; -fun intrauterine_A : A; -fun intravasation_N : N; -fun intravenous_A : A; -fun intravenously_Adv : Adv; -fun intraventricular_A : A; -fun intrench_V2 : V2; -fun intrepid_A : A; -fun intrepidity_N : N; -fun intricacy_N : N; -fun intricate_A : A; -fun intrigue_N : N; -fun intrigue_V : V; -fun intrigue_V2 : V2; -fun intriguing_A : A; -fun intrinsic_A : A; -fun intrinsically_Adv : Adv; -fun intro_N : N; -fun introduce_V2 : V2; -fun introduction_N : N; -fun introductory_A : A; -fun introit_N : N; -fun introitus_N : N; -fun introject_N : N; -fun introjected_A : A; -fun introjection_N : N; -fun intron_N : N; -fun introspect_V : V; -fun introspection_N : N; -fun introspective_A : A; -fun introspectiveness_N : N; -fun introuvable_A : A; -fun introversion_N : N; -fun introversive_A : A; -fun introvert_N : N; -fun introvert_V2 : V2; -fun introvertish_A : A; -fun intrude_V : V; -fun intrude_V2 : V2; -fun intruder_N : N; -fun intruding_A : A; -fun intrusion_N : N; -fun intrusive_A : A; -fun intrusiveness_N : N; -fun intrust_V2 : V2; -fun intuit_V : V; -fun intuit_V2 : V2; -fun intuition_N : N; -fun intuitionism_N : N; -fun intuitionist_A : A; -fun intuitive_A : A; -fun intuitively_Adv : Adv; -fun intumescence_N : N; -fun intussusception_N : N; -fun inula_N : N; -fun inulin_N : N; -fun inundate_V2 : V2; -fun inundation_N : N; -fun inure_V2 : V2; -fun inutile_A : A; -fun inutility_N : N; -fun invade_V2 : V2; -fun invader_N : N; -fun invagination_N : N; -fun invalid_A : A; -fun invalid_N : N; -fun invalid_V2 : V2; -fun invalidate_V2 : V2; -fun invalidated_A : A; -fun invalidation_N : N; -fun invalidator_N : N; -fun invalidism_N : N; -fun invalidity_N : N; -fun invaluable_A : A; -fun invaluableness_N : N; -fun invariability_N : N; -fun invariable_A : A; -fun invariance_N : N; -fun invariant_A : A; -fun invariant_N : N; -fun invasion_N : N; -fun invasive_A : A; -fun invective_N : N; -fun inveigh_V : V; -fun inveigle_V2 : V2; -fun invent_V : V; -fun invent_V2 : V2; -fun invention_N : N; -fun inventive_A : A; -fun inventively_Adv : Adv; -fun inventiveness_N : N; -fun inventor_N : N; -fun inventory_N : N; -fun inverse_A : A; -fun inverse_N : N; -fun inversely_Adv : Adv; -fun inversion_N : N; -fun invert_V2 : V2; -fun invertase_N : N; -fun invertebrate_A : A; -fun invertebrate_N : N; -fun inverted_A : A; -fun inverter_N : N; -fun invertible_A : A; -fun invest_V : V; -fun invest_V2 : V2; -fun investigate_V : V; -fun investigate_V2 : V2; -fun investigation_N : N; -fun investigator_N : N; -fun investing_N : N; -fun investiture_N : N; -fun investment_N : N; -fun investor_N : N; -fun inveterate_A : A; -fun invidious_A : A; -fun invidiously_Adv : Adv; -fun invigilate_V : V; -fun invigilation_N : N; -fun invigilator_N : N; -fun invigorate_V2 : V2; -fun invigorating_A : A; -fun invincibility_N : N; -fun invincible_A : A; -fun invincibly_Adv : Adv; -fun inviolable_A : A; -fun inviolate_A : A; -fun invisibility_N : N; -fun invisible_A : A; -fun invisibly_Adv : Adv; -fun invitation_N : N; -fun invitational_A : A; -fun invitatory_A : A; -fun invite_N : N; -fun invite_V2 : V2; -fun invite_V2V : V2V; -fun inviting_A : A; -fun invocation_N : N; -fun invoice_N : N; -fun invoice_V2 : V2; -fun invoke_V2 : V2; -fun involucrate_A : A; -fun involucre_N : N; -fun involuntarily_Adv : Adv; -fun involuntary_A : A; -fun involute_A : A; -fun involution_N : N; -fun involve_V : V; -fun involve_V2 : V2; -fun involve_VS : VS; -fun involved_A : A; -fun involvement_N : N; -fun invulnerability_N : N; -fun invulnerable_A : A; -fun inward_A : A; -fun inward_Adv : Adv; -fun inward_developing_A : A; -fun inward_moving_A : A; -fun inwardly_Adv : Adv; -fun inwardness_N : N; -fun inwards_Adv : Adv; -fun inwrought_A : A; -fun iodide_N : N; -fun iodinated_A : A; -fun iodinating_A : A; -fun iodination_N : N; -fun iodine_N : N; -fun iodine_125_N : N; -fun iodine_131_N : N; -fun iodochlorhydroxyquin_N : N; -fun iodocompound_N : N; -fun iodoform_N : N; -fun iodoprotein_N : N; -fun iodopsin_N : N; -fun iodothyronine_N : N; -fun iodotyrosine_N : N; -fun ion_N : N; -fun ionic_A : A; -fun ionization_N : N; -fun ionize_V : V; -fun ionize_V2 : V2; -fun ionized_A : A; -fun ionosphere_N : N; -fun iontophoresis_N : N; -fun iota_N : N; -fun iou_N : N; -fun ipecac_N : N; -fun iproclozide_N : N; -fun ipse_dixit_N : N; -fun ipsilateral_A : A; -fun ipso_facto_Adv : Adv; -fun iq_N : N; -fun ira_N : N; -fun iranian_A : A; -fun iranian_N : N; -fun iraqi_A : A; -fun iraqi_N : N; -fun irascibility_N : N; -fun irascible_A : A; -fun irate_A : A; -fun irately_Adv : Adv; -fun ire_N : N; -fun ireful_A : A; -fun irenic_A : A; -fun iridaceous_A : A; -fun iridectomy_N : N; -fun iridescence_N : N; -fun iridescent_A : A; -fun iridic_A : A; -fun iridium_N : N; -fun iridocyclitis_N : N; -fun iridokeratitis_N : N; -fun iridoncus_N : N; -fun iridotomy_N : N; -fun iris_N : N; -fun irish_A : A; -fun irish_N : N; -fun irishman_N : N; -fun irishwoman_N : N; -fun iritic_A : A; -fun iritis_N : N; -fun irk_V2 : V2; -fun irksome_A : A; -fun iron_N : N; -fun iron_V : V; -fun iron_V2 : V2; -fun iron_foundry_N : N; -fun iron_grey_A : A; -fun iron_grey_A : A; -fun iron_grey_N : N; -fun iron_grey_N : N; -fun ironclad_A : A; -fun ironclad_N : N; -fun ironed_A : A; -fun ironic_A : A; -fun ironical_A : A; -fun ironically_Adv : Adv; -fun ironing_N : N; -fun ironing_board_N : N; -fun ironlike_A : A; -fun ironmonger_N : N; -fun ironmongery_N : N; -fun ironmould_N : N; -fun irons_N : N; -fun ironshod_A : A; -fun ironside_N : N; -fun ironware_N : N; -fun ironweed_N : N; -fun ironwood_N : N; -fun ironwork_N : N; -fun ironworker_N : N; -fun ironworks_N : N; -fun irony_N : N; -fun irradiate_V2 : V2; -fun irradiation_N : N; -fun irrational_A : A; -fun irrationality_N : N; -fun irrationally_Adv : Adv; -fun irreclaimable_A : A; -fun irreconcilable_A : A; -fun irrecoverable_A : A; -fun irredeemable_A : A; -fun irredenta_N : N; -fun irredentism_N : N; -fun irredentist_N : N; -fun irreducible_A : A; -fun irrefutable_A : A; -fun irregardless_Adv : Adv; -fun irregular_A : A; -fun irregular_N : N; -fun irregularity_N : N; -fun irregularly_Adv : Adv; -fun irrelevance_N : N; -fun irrelevancy_N : N; -fun irrelevant_A : A; -fun irrelevantly_Adv : Adv; -fun irreligionist_N : N; -fun irreligious_A : A; -fun irreligiousness_N : N; -fun irremediable_A : A; -fun irremovable_A : A; -fun irreparable_A : A; -fun irreparably_Adv : Adv; -fun irreplaceable_A : A; -fun irreplaceableness_N : N; -fun irrepressibility_N : N; -fun irrepressible_A : A; -fun irreproachable_A : A; -fun irreproachably_Adv : Adv; -fun irreproducibility_N : N; -fun irresistibility_N : N; -fun irresistible_A : A; -fun irresolute_A : A; -fun irresolutely_Adv : Adv; -fun irresoluteness_N : N; -fun irresolution_N : N; -fun irrespective_A : A; -fun irresponsibility_N : N; -fun irresponsible_A : A; -fun irresponsibly_Adv : Adv; -fun irretrievable_A : A; -fun irretrievably_Adv : Adv; -fun irreverence_N : N; -fun irreverent_A : A; -fun irreverently_Adv : Adv; -fun irreversibility_N : N; -fun irreversible_A : A; -fun irreversibly_Adv : Adv; -fun irrevocable_A : A; -fun irrevocably_Adv : Adv; -fun irridentism_N : N; -fun irrigate_V2 : V2; -fun irrigation_N : N; -fun irritability_N : N; -fun irritable_A : A; -fun irritably_Adv : Adv; -fun irritant_A : A; -fun irritant_N : N; -fun irritate_V2 : V2; -fun irritating_A : A; -fun irritatingly_Adv : Adv; -fun irritation_N : N; -fun irruption_N : N; -fun irruptive_A : A; -fun ischemia_N : N; -fun ischemic_A : A; -fun ischium_N : N; -fun isentropic_A : A; -fun isinglass_N : N; -fun islam_N : N; -fun islamic_A : A; -fun island_N : N; -fun islander_N : N; -fun islands_of_langerhans_PN : PN; -fun isle_N : N; -fun islet_N : N; -fun ism_N : N; -fun isoagglutination_N : N; -fun isoagglutinin_N : N; -fun isoagglutinogen_N : N; -fun isoantibody_N : N; -fun isobar_N : N; -fun isobutylene_N : N; -fun isocarboxazid_N : N; -fun isochronal_A : A; -fun isochrone_N : N; -fun isoclinal_A : A; -fun isocyanate_N : N; -fun isoflurane_N : N; -fun isogamete_N : N; -fun isogamy_N : N; -fun isogon_N : N; -fun isogonic_A : A; -fun isogram_N : N; -fun isohel_N : N; -fun isolable_A : A; -fun isolate_V2 : V2; -fun isolated_A : A; -fun isolating_A : A; -fun isolation_N : N; -fun isolationism_N : N; -fun isolationist_A : A; -fun isolationist_N : N; -fun isoleucine_N : N; -fun isomer_N : N; -fun isomerase_N : N; -fun isomeric_A : A; -fun isomerism_N : N; -fun isomerization_N : N; -fun isometric_A : A; -fun isometrics_N : N; -fun isometropia_N : N; -fun isometry_N : N; -fun isomorphism_N : N; -fun isomorphous_A : A; -fun isoniazid_N : N; -fun isopod_N : N; -fun isoproterenol_N : N; -fun isopteran_A : A; -fun isosceles_A : A; -fun isosorbide_N : N; -fun isostasy_N : N; -fun isotherm_N : N; -fun isothermal_A : A; -fun isothermic_A : A; -fun isothiocyanate_N : N; -fun isotonic_A : A; -fun isotope_N : N; -fun isotopic_A : A; -fun isotropic_A : A; -fun isotropically_Adv : Adv; -fun isotropy_N : N; -fun israeli_A : A; -fun israeli_N : N; -fun issue_N : N; -fun issue_V : V; -fun issue_V2 : V2; -fun issuer_N : N; -fun isthmian_A : A; -fun isthmus_N : N; -fun it_Pron : Pron; -fun italian_A : A; -fun italian_N : N; -fun italic_A : A; -fun italic_N : N; -fun italicize_V2 : V2; -fun itch_N : N; -fun itch_V : V; -fun itchy_A : A; -fun item_Adv : Adv; -fun item_N : N; -fun itemize_V2 : V2; -fun iterate_V2 : V2; -fun iteration_N : N; -fun iterative_A : A; -fun iterative_N : N; -fun itinerant_A : A; -fun itinerant_N : N; -fun itinerary_N : N; -fun itineration_N : N; -fun itraconazole_N : N; -fun itv_N : N; -fun iud_N : N; -fun ivied_A : A; -fun ivory_N : N; -fun ivorybill_N : N; -fun ivy_N : N; -fun izar_N : N; -fun jab_N : N; -fun jab_V : V; -fun jab_V2 : V2; -fun jabber_N : N; -fun jabber_V : V; -fun jabber_V2 : V2; -fun jabberer_N : N; -fun jabberwocky_N : N; -fun jabiru_N : N; -fun jabot_N : N; -fun jaboticaba_N : N; -fun jacamar_N : N; -fun jack_N : N; -fun jack_V2 : V2; -fun jack_in_the_box_N : N; -fun jack_in_the_box_N : N; -fun jack_in_the_pulpit_N : N; -fun jack_knife_N : N; -fun jack_knife_V : V; -fun jack_o'_lantern_N : N; -fun jack_o'_lantern_N : N; -fun jack_plane_N : N; -fun jackal_N : N; -fun jackanapes_N : N; -fun jackass_N : N; -fun jackboot_N : N; -fun jackdaw_N : N; -fun jacket_N : N; -fun jackfruit_N : N; -fun jackknife_N : N; -fun jackknife_fish_N : N; -fun jacklight_N : N; -fun jackpot_N : N; -fun jackrabbit_N : N; -fun jacks_N : N; -fun jackscrew_N : N; -fun jacksmelt_N : N; -fun jacksnipe_N : N; -fun jackstraw_N : N; -fun jackstraws_N : N; -fun jacobean_A : A; -fun jacobin_A : A; -fun jacobin_N : N; -fun jacobinism_N : N; -fun jacobite_N : N; -fun jaconet_N : N; -fun jacquard_N : N; -fun jactitation_N : N; -fun jade_A : A; -fun jade_N : N; -fun jade_V2 : V2; -fun jaded_A : A; -fun jadeite_N : N; -fun jaeger_N : N; -fun jag_N : N; -fun jag_V2 : V2; -fun jagged_A : A; -fun jaggedness_N : N; -fun jaggery_N : N; -fun jaggy_A : A; -fun jaguar_N : N; -fun jaguarundi_N : N; -fun jail_N : N; -fun jail_V2 : V2; -fun jailer_N : N; -fun jailor_N : N; -fun jakes_N : N; -fun jalapeno_N : N; -fun jalopy_N : N; -fun jalousie_N : N; -fun jam_N : N; -fun jam_V : V; -fun jam_V2 : V2; -fun jam_VS : VS; -fun jamaican_A : A; -fun jamaican_N : N; -fun jamb_N : N; -fun jambalaya_N : N; -fun jamboree_N : N; -fun jamjar_N : N; -fun jammed_A : A; -fun jammer_N : N; -fun jamming_N : N; -fun jampack_V2 : V2; -fun jampan_N : N; -fun jampot_N : N; -fun jangle_N : N; -fun jangle_V : V; -fun jangle_V2 : V2; -fun jangling_A : A; -fun janissary_N : N; -fun janitor_N : N; -fun january_N : N; -fun japan_N : N; -fun japan_V2 : V2; -fun japanese_A : A; -fun japanese_N : N; -fun jape_N : N; -fun japonica_N : N; -fun jar_N : N; -fun jar_V : V; -fun jar_V2 : V2; -fun jarful_N : N; -fun jargon_N : N; -fun jargoon_N : N; -fun jarring_A : A; -fun jarringly_Adv : Adv; -fun jasmine_N : N; -fun jasper_N : N; -fun jassid_N : N; -fun jati_N : N; -fun jaundice_N : N; -fun jaundice_V2 : V2; -fun jaundiced_A : A; -fun jaunt_N : N; -fun jaunt_V : V; -fun jauntily_Adv : Adv; -fun jauntiness_N : N; -fun jaunting_car_N : N; -fun jaunty_A : A; -fun javanese_A : A; -fun javanese_N : N; -fun javelin_N : N; -fun jaw_N : N; -fun jaw_V : V; -fun jawan_N : N; -fun jawbone_N : N; -fun jawbreaker_N : N; -fun jawed_A : A; -fun jawfish_N : N; -fun jawless_A : A; -fun jay_N : N; -fun jaywalk_V : V; -fun jaywalker_N : N; -fun jazz_N : N; -fun jazz_V2 : V2; -fun jazzy_A : A; -fun jealous_A : A; -fun jealously_Adv : Adv; -fun jealousy_N : N; -fun jean_N : N; -fun jeep_N : N; -fun jeep_V2 : V2; -fun jeer_N : N; -fun jeer_V : V; -fun jeer_V2 : V2; -fun jeeringly_Adv : Adv; -fun jejune_A : A; -fun jejuneness_N : N; -fun jejunitis_N : N; -fun jejunity_N : N; -fun jejunoileitis_N : N; -fun jejunostomy_N : N; -fun jejunum_N : N; -fun jell_V : V; -fun jell_V2 : V2; -fun jellaba_N : N; -fun jellied_A : A; -fun jello_N : N; -fun jelly_N : N; -fun jelly_V : V; -fun jelly_V2 : V2; -fun jellyfish_N : N; -fun jellyroll_N : N; -fun jemmy_N : N; -fun jennet_N : N; -fun jenny_N : N; -fun jeopardize_V2 : V2; -fun jeopardy_N : N; -fun jerboa_N : N; -fun jeremiad_N : N; -fun jerk_N : N; -fun jerk_V : V; -fun jerk_V2 : V2; -fun jerkily_Adv : Adv; -fun jerkin_N : N; -fun jerkiness_N : N; -fun jerkwater_A : A; -fun jerky_A : A; -fun jerky_N : N; -fun jeroboam_N : N; -fun jerry_N : N; -fun jerry_builder_N : N; -fun jerry_builder_N : N; -fun jerry_building_N : N; -fun jerry_building_N : N; -fun jerry_built_A : A; -fun jerry_built_A : A; -fun jersey_N : N; -fun jest_N : N; -fun jest_V : V; -fun jester_N : N; -fun jesting_A : A; -fun jesuit_N : N; -fun jesuitical_A : A; -fun jet_N : N; -fun jet_V : V; -fun jet_V2 : V2; -fun jet_black_A : A; -fun jet_propelled_A : A; -fun jet_propelled_A : A; -fun jetliner_N : N; -fun jetsam_N : N; -fun jetting_A : A; -fun jettison_V2 : V2; -fun jetty_N : N; -fun jew_N : N; -fun jewel_N : N; -fun jewel_V2 : V2; -fun jeweler_N : N; -fun jeweller_N : N; -fun jewellery_N : N; -fun jewelry_N : N; -fun jewels_of_opar_N : N; -fun jewelweed_N : N; -fun jewess_N : N; -fun jewfish_N : N; -fun jewish_A : A; -fun jezebel_N : N; -fun jiao_N : N; -fun jib_N : N; -fun jib_V : V; -fun jib_boom_N : N; -fun jibboom_N : N; -fun jibe_N : N; -fun jibe_V : V; -fun jiffy_N : N; -fun jig_N : N; -fun jig_V : V; -fun jig_V2 : V2; -fun jigger_N : N; -fun jiggered_A : A; -fun jiggermast_N : N; -fun jiggery_pokery_N : N; -fun jiggle_N : N; -fun jiggle_V : V; -fun jiggle_V2 : V2; -fun jigsaw_N : N; -fun jihad_N : N; -fun jihadi_A : A; -fun jilt_N : N; -fun jilt_V2 : V2; -fun jilted_A : A; -fun jim_crow_N : N; -fun jimdandy_N : N; -fun jimmies_N : N; -fun jimmy_N : N; -fun jimsonweed_N : N; -fun jingle_N : N; -fun jingle_V : V; -fun jingle_V2 : V2; -fun jingling_A : A; -fun jingo_N : N; -fun jingoism_N : N; -fun jingoist_N : N; -fun jingoistic_A : A; -fun jinks_N : N; -fun jinn_N : N; -fun jinrikisha_N : N; -fun jinx_N : N; -fun jiqui_N : N; -fun jird_N : N; -fun jitney_N : N; -fun jitter_N : N; -fun jitterbug_N : N; -fun jitteriness_N : N; -fun jittering_A : A; -fun jitters_N : N; -fun jittery_A : A; -fun jive_N : N; -fun jive_V : V; -fun job_N : N; -fun job_V : V; -fun job_V2 : V2; -fun jobber_N : N; -fun jobbery_N : N; -fun jobcentre_N : N; -fun jobholder_N : N; -fun jockey_N : N; -fun jockey_V : V; -fun jockey_V2 : V2; -fun jocose_A : A; -fun jocosely_Adv : Adv; -fun jocoseness_N : N; -fun jocosity_N : N; -fun jocular_A : A; -fun jocularity_N : N; -fun jocund_A : A; -fun jocundity_N : N; -fun jodhpur_N : N; -fun jodhpurs_N : N; -fun jog_N : N; -fun jog_V : V; -fun jog_V2 : V2; -fun jog_trot_N : N; -fun jogger_N : N; -fun jogging_N : N; -fun joggle_N : N; -fun joggle_V : V; -fun joggle_V2 : V2; -fun john_bull_N : N; -fun johnnycake_N : N; -fun joie_de_vivre_N : N; -fun join_N : N; -fun join_V : V; -fun join_V2 : V2; -fun joined_A : A; -fun joiner_N : N; -fun joinery_N : N; -fun joining_N : N; -fun joint_A : A; -fun joint_N : N; -fun joint_V2 : V2; -fun jointed_A : A; -fun jointer_N : N; -fun jointly_Adv : Adv; -fun jointure_N : N; -fun joist_N : N; -fun joke_N : N; -fun joke_V : V; -fun joke_VS : VS; -fun joker_N : N; -fun jokingly_Adv : Adv; -fun jollification_N : N; -fun jollify_V2 : V2; -fun jollity_N : N; -fun jolly_A : A; -fun jolly_Adv : Adv; -fun jolly_N : N; -fun jolly_V2 : V2; -fun jollyboat_N : N; -fun jolt_N : N; -fun jolt_V : V; -fun jolt_V2 : V2; -fun jolted_A : A; -fun jolty_A : A; -fun jonah_N : N; -fun jonquil_N : N; -fun jordanian_A : A; -fun jordanian_N : N; -fun jorum_N : N; -fun joss_N : N; -fun joss_house_N : N; -fun joss_stick_N : N; -fun jostle_N : N; -fun jostle_V : V; -fun jostle_V2 : V2; -fun jot_N : N; -fun jot_V2 : V2; -fun jotter_N : N; -fun jotting_N : N; -fun joule_N : N; -fun journal_N : N; -fun journalese_N : N; -fun journalism_N : N; -fun journalist_N : N; -fun journalistic_A : A; -fun journalistically_Adv : Adv; -fun journey_N : N; -fun journey_V : V; -fun journey_V2 : V2; -fun journeyman_N : N; -fun joust_N : N; -fun joust_V : V; -fun jovial_A : A; -fun joviality_N : N; -fun jovially_Adv : Adv; -fun jowl_N : N; -fun jowly_A : A; -fun joy_N : N; -fun joy_V : V; -fun joy_ride_N : N; -fun joy_stick_N : N; -fun joyful_A : A; -fun joyfulness_N : N; -fun joyless_A : A; -fun joylessly_Adv : Adv; -fun joylessness_N : N; -fun joyous_A : A; -fun joyousness_N : N; -fun joyride_N : N; -fun joystick_N : N; -fun jp_N : N; -fun ju_jitsu_N : N; -fun jubilant_A : A; -fun jubilation_N : N; -fun jubilee_N : N; -fun judaic_A : A; -fun judaism_N : N; -fun judas_N : N; -fun judder_V : V; -fun judge_N : N; -fun judge_V : V; -fun judge_V2 : V2; -fun judge_V2V : V2V; -fun judge_VS : VS; -fun judgement_N : N; -fun judgeship_N : N; -fun judgment_N : N; -fun judgmental_A : A; -fun judicable_A : A; -fun judicature_N : N; -fun judicial_A : A; -fun judicially_Adv : Adv; -fun judiciary_N : N; -fun judicious_A : A; -fun judiciously_Adv : Adv; -fun judiciousness_N : N; -fun judo_N : N; -fun jug_N : N; -fun jug_V2 : V2; -fun jugale_N : N; -fun jugful_N : N; -fun juggernaut_N : N; -fun juggle_N : N; -fun juggle_V : V; -fun juggle_V2 : V2; -fun juggler_N : N; -fun jugglery_N : N; -fun jugular_A : A; -fun jugular_N : N; -fun juice_N : N; -fun juiceless_A : A; -fun juiciness_N : N; -fun juicy_A : A; -fun juju_N : N; -fun jujube_N : N; -fun jujutsu_N : N; -fun juke_N : N; -fun jukebox_N : N; -fun julep_N : N; -fun julian_A : A; -fun julienne_N : N; -fun july_N : N; -fun jumble_N : N; -fun jumble_V : V; -fun jumble_V2 : V2; -fun jumble_sale_N : N; -fun jumbo_A : A; -fun jumbojet_N : N; -fun jumentous_A : A; -fun jump_N : N; -fun jump_V : V; -fun jump_V2 : V2; -fun jump_V2V : V2V; -fun jump_VV : VV; -fun jumped_up_A : A; -fun jumped_up_A : A; -fun jumper_N : N; -fun jumpiness_N : N; -fun jumping_N : N; -fun jumpstart_N : N; -fun jumpy_A : A; -fun junco_N : N; -fun junction_N : N; -fun juncture_N : N; -fun june_N : N; -fun jungle_N : N; -fun jungly_A : A; -fun junior_A : A; -fun junior_N : N; -fun junior_grade_A : A; -fun juniper_N : N; -fun junk_N : N; -fun junk_V2 : V2; -fun junk_dna_PN : PN; -fun junk_shop_N : N; -fun junket_N : N; -fun junket_V : V; -fun junketing_N : N; -fun junkie_N : N; -fun junky_N : N; -fun junkyard_N : N; -fun junoesque_A : A; -fun junta_N : N; -fun jupati_N : N; -fun jural_A : A; -fun juridical_A : A; -fun jurisdiction_N : N; -fun jurisdictional_A : A; -fun jurisprudence_N : N; -fun jurisprudential_A : A; -fun jurisprudentially_Adv : Adv; -fun jurist_N : N; -fun juror_N : N; -fun jury_N : N; -fun jury_box_N : N; -fun jury_mast_N : N; -fun jury_rigge_V2 : V2; -fun juryman_N : N; -fun just_A : A; -fun just_Adv : Adv; -fun just_Predet : Predet; -fun just_so_Adv : Adv; -fun just_then_Adv : Adv; -fun justice_N : N; -fun justiciar_N : N; -fun justiciary_N : N; -fun justifiable_A : A; -fun justifiably_Adv : Adv; -fun justification_N : N; -fun justificative_A : A; -fun justified_A : A; -fun justify_V2 : V2; -fun justify_VV : VV; -fun justly_Adv : Adv; -fun justness_N : N; -fun jut_V : V; -fun jute_N : N; -fun jutting_A : A; -fun juvenescence_N : N; -fun juvenile_A : A; -fun juvenile_N : N; -fun juxtapose_V2 : V2; -fun juxtaposed_A : A; -fun juxtaposition_N : N; -fun k_o__V2 : V2; -fun kabbalism_N : N; -fun kabob_N : N; -fun kachina_N : N; -fun kaffir_N : N; -fun kaffiyeh_N : N; -fun kafkaesque_A : A; -fun kahikatea_N : N; -fun kail_N : N; -fun kainite_N : N; -fun kaiser_N : N; -fun kakemono_N : N; -fun kaki_N : N; -fun kalansuwa_N : N; -fun kale_N : N; -fun kaleidoscope_N : N; -fun kaleidoscopic_A : A; -fun kalemia_N : N; -fun kaliuresis_N : N; -fun kalmia_N : N; -fun kalumpang_N : N; -fun kameez_N : N; -fun kamikaze_N : N; -fun kampong_N : N; -fun kampuchean_A : A; -fun kampuchean_N : N; -fun kanamycin_N : N; -fun kanchil_N : N; -fun kangaroo_N : N; -fun kanzu_N : N; -fun kaoliang_N : N; -fun kaolin_N : N; -fun kaolinite_N : N; -fun kaon_N : N; -fun kapeika_N : N; -fun kaph_N : N; -fun kapok_N : N; -fun kappa_N : N; -fun kapuka_N : N; -fun kaput_A : A; -fun karaoke_N : N; -fun karat_N : N; -fun karate_N : N; -fun karma_N : N; -fun karyokinesis_N : N; -fun karyokinetic_A : A; -fun karyolymph_N : N; -fun karyolysis_N : N; -fun karyotype_N : N; -fun kasbah_N : N; -fun kasha_N : N; -fun kashmiri_A : A; -fun kashmiri_N : N; -fun kat_N : N; -fun katabatic_A : A; -fun katamorphism_N : N; -fun katharobe_N : N; -fun katharobic_A : A; -fun katharometer_N : N; -fun katydid_N : N; -fun kauri_N : N; -fun kava_N : N; -fun kawaka_N : N; -fun kayak_N : N; -fun kazoo_N : N; -fun kea_N : N; -fun kebab_N : N; -fun kedgeree_N : N; -fun keel_N : N; -fun keel_V : V; -fun keel_V2 : V2; -fun keel_shaped_A : A; -fun keelboat_N : N; -fun keelson_N : N; -fun keen_A : A; -fun keen_N : N; -fun keen_V : V; -fun keen_V2 : V2; -fun keen_eyed_A : A; -fun keenly_Adv : Adv; -fun keenness_N : N; -fun keep_N : N; -fun keep_V : V; -fun keep_V2 : V2; -fun keep_VA : VA; -fun keep_VS : VS; -fun keep_down_V2 : V2; -fun keep_up_V2 : V2; -fun keeper_N : N; -fun keeping_N : N; -fun keepsake_N : N; -fun keeshond_N : N; -fun keg_N : N; -fun keloid_N : N; -fun kelp_N : N; -fun kelpie_N : N; -fun kelpy_N : N; -fun kelt_N : N; -fun kelvin_N : N; -fun kempt_A : A; -fun ken_N : N; -fun ken_V2 : V2; -fun kenaf_N : N; -fun kennel_N : N; -fun kennel_V : V; -fun kennel_V2 : V2; -fun kenning_N : N; -fun kenyan_A : A; -fun kenyan_N : N; -fun kepi_N : N; -fun kept_up_A : A; -fun keratalgia_N : N; -fun keratectasia_N : N; -fun keratin_N : N; -fun keratinization_N : N; -fun keratitis_N : N; -fun keratoacanthoma_N : N; -fun keratocele_N : N; -fun keratoconjunctivitis_N : N; -fun keratoconus_N : N; -fun keratoderma_N : N; -fun keratohyalin_N : N; -fun keratoiritis_N : N; -fun keratomalacia_N : N; -fun keratomycosis_N : N; -fun keratonosis_N : N; -fun keratonosus_N : N; -fun keratoplasty_N : N; -fun keratoscleritis_N : N; -fun keratoscope_N : N; -fun keratoscopy_N : N; -fun keratosis_N : N; -fun keratotomy_N : N; -fun kerb_N : N; -fun kerbstone_N : N; -fun kerchief_N : N; -fun kerion_N : N; -fun kern_N : N; -fun kernel_N : N; -fun kernicterus_N : N; -fun kernite_N : N; -fun kerosene_N : N; -fun kerygma_N : N; -fun kestrel_N : N; -fun ketamine_N : N; -fun ketch_N : N; -fun ketchup_N : N; -fun keteleeria_N : N; -fun ketembilla_N : N; -fun ketoacidosis_N : N; -fun ketohexose_N : N; -fun ketone_N : N; -fun ketonemia_N : N; -fun ketonuria_N : N; -fun ketoprofen_N : N; -fun ketorolac_N : N; -fun ketose_N : N; -fun ketosteroid_N : N; -fun kettle_N : N; -fun kettledrum_N : N; -fun keurboom_N : N; -fun key_A : A; -fun key_N : N; -fun key_V2 : V2; -fun keyboard_N : N; -fun keyboardist_N : N; -fun keycard_N : N; -fun keyed_A : A; -fun keyhole_N : N; -fun keyless_A : A; -fun keynote_N : N; -fun keyring_N : N; -fun keystone_N : N; -fun keystroke_N : N; -fun keyword_N : N; -fun kg_N : N; -fun kgb_N : N; -fun khadi_N : N; -fun khaki_A : A; -fun khaki_N : N; -fun khakis_N : N; -fun khalka_N : N; -fun khamsin_N : N; -fun khan_N : N; -fun khanate_N : N; -fun khimar_N : N; -fun khmer_N : N; -fun khoum_N : N; -fun khukuri_N : N; -fun kiang_N : N; -fun kibble_N : N; -fun kibbutz_N : N; -fun kibbutznik_N : N; -fun kibe_N : N; -fun kibibit_N : N; -fun kibitzer_N : N; -fun kick_N : N; -fun kick_V : V; -fun kick_V2 : V2; -fun kick_start_N : N; -fun kick_starter_N : N; -fun kickback_N : N; -fun kicker_N : N; -fun kickoff_N : N; -fun kicksorter_N : N; -fun kickstand_N : N; -fun kid_N : N; -fun kid_V : V; -fun kid_V2 : V2; -fun kiddy_N : N; -fun kidnap_V2 : V2; -fun kidnapper_N : N; -fun kidnapping_N : N; -fun kidney_N : N; -fun kidney_bean_N : N; -fun kieserite_N : N; -fun kike_N : N; -fun kilderkin_N : N; -fun kill_N : N; -fun kill_V : V; -fun kill_V2 : V2; -fun killable_A : A; -fun killdeer_N : N; -fun killer_N : N; -fun killer_t_cell_PN : PN; -fun killifish_N : N; -fun killing_A : A; -fun killing_N : N; -fun killingly_Adv : Adv; -fun killjoy_N : N; -fun kiln_N : N; -fun kiln_dried_A : A; -fun kilo_N : N; -fun kilobit_N : N; -fun kilobyte_N : N; -fun kilocycle_N : N; -fun kilogram_N : N; -fun kilogram_meter_N : N; -fun kilohertz_N : N; -fun kiloliter_N : N; -fun kilolitre_N : N; -fun kilometer_N : N; -fun kilometre_N : N; -fun kiloton_N : N; -fun kilovolt_N : N; -fun kilovolt_ampere_N : N; -fun kilowatt_N : N; -fun kilt_N : N; -fun kilter_N : N; -fun kimberlite_N : N; -fun kimono_N : N; -fun kin_N : N; -fun kina_N : N; -fun kinanesthesia_N : N; -fun kinase_N : N; -fun kind_A : A; -fun kind_N : N; -fun kind_hearted_A : A; -fun kinda_Adv : Adv; -fun kindergarten_N : N; -fun kindhearted_A : A; -fun kindheartedness_N : N; -fun kindle_V : V; -fun kindle_V2 : V2; -fun kindliness_N : N; -fun kindling_N : N; -fun kindly_A : A; -fun kindly_Adv : Adv; -fun kindness_N : N; -fun kindred_A : A; -fun kindred_N : N; -fun kinematics_N : N; -fun kinescope_N : N; -fun kinesiology_N : N; -fun kinesis_N : N; -fun kinesthesia_N : N; -fun kinesthesis_N : N; -fun kinesthetic_A : A; -fun kinesthetically_Adv : Adv; -fun kinetic_A : A; -fun kinetics_N : N; -fun king_N : N; -fun king_size_A : A; -fun king_size_A : A; -fun king_sized_A : A; -fun kingbird_N : N; -fun kingbolt_N : N; -fun kingcup_N : N; -fun kingdom_N : N; -fun kingfish_N : N; -fun kingfisher_N : N; -fun kinglet_N : N; -fun kinglike_A : A; -fun kingly_A : A; -fun kingmaker_N : N; -fun kingpin_N : N; -fun kingship_N : N; -fun kingwood_N : N; -fun kinin_N : N; -fun kink_N : N; -fun kink_V : V; -fun kink_V2 : V2; -fun kinkajou_N : N; -fun kinky_A : A; -fun kino_N : N; -fun kinship_N : N; -fun kinsman_N : N; -fun kinswoman_N : N; -fun kiosk_N : N; -fun kip_N : N; -fun kip_V : V; -fun kipper_N : N; -fun kirk_N : N; -fun kirpan_N : N; -fun kirsch_N : N; -fun kirtle_N : N; -fun kishke_N : N; -fun kismet_N : N; -fun kiss_N : N; -fun kiss_V : V; -fun kiss_V2 : V2; -fun kisser_N : N; -fun kit_N : N; -fun kit_V2 : V2; -fun kitbag_N : N; -fun kitchen_N : N; -fun kitchenette_N : N; -fun kitchenware_N : N; -fun kite_N : N; -fun kite_balloon_N : N; -fun kith_N : N; -fun kitsch_A : A; -fun kitsch_N : N; -fun kittee_N : N; -fun kitten_N : N; -fun kitten_V : V; -fun kitten_tails_N : N; -fun kittenish_A : A; -fun kittiwake_N : N; -fun kitty_N : N; -fun kiwi_N : N; -fun kiwi_sized_A : A; -fun klavern_N : N; -fun klaxon_N : N; -fun klebsiella_N : N; -fun kleenex_N : N; -fun kleptomania_N : N; -fun kleptomaniac_N : N; -fun klondike_N : N; -fun kludge_N : N; -fun klutz_N : N; -fun klystron_N : N; -fun km_N : N; -fun knack_N : N; -fun knacker_N : N; -fun knackered_A : A; -fun knackwurst_N : N; -fun knap_V2 : V2; -fun knapsack_N : N; -fun knapweed_N : N; -fun knave_N : N; -fun knavery_N : N; -fun knavish_A : A; -fun knawel_N : N; -fun knead_V : V; -fun knead_V2 : V2; -fun knee_N : N; -fun knee_V2 : V2; -fun knee_deep_A : A; -fun knee_deep_Adv : Adv; -fun knee_deep_Adv : Adv; -fun knee_high_A : A; -fun knee_high_Adv : Adv; -fun knee_high_N : N; -fun knee_length_A : A; -fun kneecap_N : N; -fun kneel_N : N; -fun kneel_V : V; -fun kneel_V2 : V2; -fun kneeler_N : N; -fun knell_N : N; -fun knell_V : V; -fun knell_V2 : V2; -fun knesset_N : N; -fun knick_knack_N : N; -fun knickknack_N : N; -fun knife_N : N; -fun knife_V2 : V2; -fun knife_edge_N : N; -fun knife_edge_N : N; -fun knifelike_A : A; -fun knight_N : N; -fun knight_V2 : V2; -fun knight_errant_N : N; -fun knight_errant_N : N; -fun knighthood_N : N; -fun knightly_A : A; -fun kniphofia_N : N; -fun knish_N : N; -fun knit_N : N; -fun knit_V : V; -fun knit_V2 : V2; -fun knitted_A : A; -fun knitter_N : N; -fun knitting_N : N; -fun knitting_machine_N : N; -fun knitting_needle_N : N; -fun knitwear_N : N; -fun knob_N : N; -fun knobble_N : N; -fun knobbly_A : A; -fun knobby_A : A; -fun knobkerrie_N : N; -fun knock_N : N; -fun knock_V : V; -fun knock_V2 : V2; -fun knock_down_A : A; -fun knock_knee_N : N; -fun knock_kneed_A : A; -fun knock_kneed_A : A; -fun knock_off_V2 : V2; -fun knock_on_N : N; -fun knockabout_A : A; -fun knockabout_N : N; -fun knockdown_A : A; -fun knockdown_N : N; -fun knockdown_dragout_A : A; -fun knocked_out_A : A; -fun knocked_out_A : A; -fun knocker_N : N; -fun knockoff_N : N; -fun knockout_A : A; -fun knockout_N : N; -fun knoll_N : N; -fun knot_N : N; -fun knot_V : V; -fun knot_V2 : V2; -fun knotgrass_N : N; -fun knothole_N : N; -fun knotted_A : A; -fun knotty_A : A; -fun knout_N : N; -fun know_N : N; -fun know_V : V; -fun know_V2 : V2; -fun know_V2V : V2V; -fun know_VS : VS; -fun know_all_N : N; -fun know_how_N : N; -fun know_how_N : N; -fun know_it_all_N : N; -fun knowable_A : A; -fun knower_N : N; -fun knowing_A : A; -fun knowing_N : N; -fun knowingness_N : N; -fun knowledge_N : N; -fun knowledgeability_N : N; -fun knowledgeable_A : A; -fun known_A : A; -fun knuckle_N : N; -fun knuckle_V : V; -fun knuckleball_N : N; -fun ko_N : N; -fun koala_N : N; -fun koan_N : N; -fun kob_N : N; -fun kobo_N : N; -fun kohl_N : N; -fun kohleria_N : N; -fun kohlrabi_N : N; -fun koinonia_N : N; -fun kola_N : N; -fun kola_nut_N : N; -fun kolkhoz_N : N; -fun kolkhoznik_N : N; -fun komondor_N : N; -fun konini_N : N; -fun kook_N : N; -fun kookaburra_N : N; -fun kopeck_N : N; -fun kopek_N : N; -fun kopiyka_N : N; -fun kopje_N : N; -fun koppie_N : N; -fun koran_N : N; -fun koranic_A : A; -fun korean_A : A; -fun korean_N : N; -fun koruna_N : N; -fun kos_N : N; -fun kosher_A : A; -fun kosher_N : N; -fun koto_N : N; -fun kotow_N : N; -fun kotow_V : V; -fun koumiss_N : N; -fun kowhai_N : N; -fun kowtow_N : N; -fun kowtow_V : V; -fun kraal_N : N; -fun kraft_N : N; -fun krait_N : N; -fun kraurosis_N : N; -fun kremlin_N : N; -fun krigia_N : N; -fun krill_N : N; -fun kris_N : N; -fun krona_N : N; -fun krone_N : N; -fun kroon_N : N; -fun krubi_N : N; -fun krummhorn_N : N; -fun krypton_N : N; -fun kudos_N : N; -fun kudu_N : N; -fun kudzu_N : N; -fun kumis_N : N; -fun kummel_N : N; -fun kumquat_N : N; -fun kung_fu_N : N; -fun kunzite_N : N; -fun kurrajong_N : N; -fun kurta_N : N; -fun kuru_N : N; -fun kurus_N : N; -fun kuvasz_N : N; -fun kuwaiti_A : A; -fun kuwaiti_N : N; -fun kvass_N : N; -fun kvetch_N : N; -fun kvetch_V : V; -fun kw_N : N; -fun kwacha_N : N; -fun kwanza_N : N; -fun kwashiorkor_N : N; -fun kwela_N : N; -fun kyanite_N : N; -fun kyat_N : N; -fun kylie_N : N; -fun kylix_N : N; -fun kymograph_N : N; -fun kyphosis_N : N; -fun l_plate_N : N; -fun la_N : N; -fun la_di_da_A : A; -fun laager_N : N; -fun lab_N : N; -fun labdanum_N : N; -fun label_N : N; -fun label_V : V; -fun label_V2 : V2; -fun label_VS : VS; -fun labeled_A : A; -fun labetalol_N : N; -fun labial_A : A; -fun labiate_A : A; -fun labile_A : A; -fun labium_N : N; -fun labor_N : N; -fun labor_V : V; -fun labor_intensive_A : A; -fun laboratory_N : N; -fun labored_A : A; -fun laborer_N : N; -fun laborious_A : A; -fun laboriously_Adv : Adv; -fun laboriousness_N : N; -fun laborsaving_A : A; -fun labour_N : N; -fun labour_V : V; -fun labour_V2 : V2; -fun labour_saving_A : A; -fun laboured_A : A; -fun labourer_N : N; -fun labourite_N : N; -fun laburnum_N : N; -fun labyrinth_N : N; -fun labyrinthine_A : A; -fun labyrinthitis_N : N; -fun labyrinthodont_N : N; -fun lac_N : N; -fun lace_N : N; -fun lace_V : V; -fun lace_V2 : V2; -fun lacebark_N : N; -fun laced_A : A; -fun lacer_N : N; -fun lacerate_A : A; -fun lacerate_V2 : V2; -fun laceration_N : N; -fun lacewing_N : N; -fun lacework_N : N; -fun lachrymal_A : A; -fun lachrymose_A : A; -fun lacing_N : N; -fun lack_N : N; -fun lack_V : V; -fun lack_V2 : V2; -fun lack_lustre_A : A; -fun lackadaisical_A : A; -fun lackadaisically_Adv : Adv; -fun lackey_N : N; -fun lacking_A : A; -fun lackluster_A : A; -fun laconic_A : A; -fun laconically_Adv : Adv; -fun laconicism_N : N; -fun laconism_N : N; -fun lacquer_N : N; -fun lacquer_V2 : V2; -fun lacquerware_N : N; -fun lacrimal_A : A; -fun lacrimation_N : N; -fun lacrimatory_A : A; -fun lacrosse_N : N; -fun lactalbumin_N : N; -fun lactase_N : N; -fun lactate_N : N; -fun lactation_N : N; -fun lacteal_A : A; -fun lacteal_N : N; -fun lactic_A : A; -fun lactifuge_N : N; -fun lactobacillus_N : N; -fun lactogen_N : N; -fun lactogenic_A : A; -fun lactose_N : N; -fun lactosuria_N : N; -fun lacuna_N : N; -fun lacustrine_A : A; -fun lacy_A : A; -fun lad_N : N; -fun ladder_N : N; -fun ladder_V : V; -fun ladder_back_N : N; -fun ladder_proof_A : A; -fun laddie_N : N; -fun lade_V2 : V2; -fun laden_A : A; -fun lading_N : N; -fun ladle_N : N; -fun ladle_V2 : V2; -fun lady_N : N; -fun lady's_eardrop_N : N; -fun lady's_maid_N : N; -fun lady_chapel_N : N; -fun lady_in_waiting_N : N; -fun lady_in_waiting_N : N; -fun lady_killer_N : N; -fun lady_of_the_night_N : N; -fun ladybird_N : N; -fun ladybug_N : N; -fun ladyfinger_N : N; -fun ladyfish_N : N; -fun ladylike_A : A; -fun ladylikeness_N : N; -fun ladylove_N : N; -fun ladyship_N : N; -fun laelia_N : N; -fun laetrile_N : N; -fun lag_N : N; -fun lag_V : V; -fun lag_V2 : V2; -fun lagan_N : N; -fun lager_N : N; -fun lagerphone_N : N; -fun laggard_N : N; -fun lagging_N : N; -fun lagniappe_N : N; -fun lagomorph_N : N; -fun lagoon_N : N; -fun lagophthalmos_N : N; -fun lahar_N : N; -fun laic_A : A; -fun laicize_V2 : V2; -fun laid_A : A; -fun laid_back_A : A; -fun laid_low_A : A; -fun laid_up_A : A; -fun lair_N : N; -fun laird_N : N; -fun laissez_faire_N : N; -fun laity_N : N; -fun lake_N : N; -fun lakefront_N : N; -fun lakeside_N : N; -fun lakh_N : N; -fun lallation_N : N; -fun lally_N : N; -fun lam_V : V; -fun lam_V2 : V2; -fun lama_N : N; -fun lamasery_N : N; -fun lamb_N : N; -fun lamb_V : V; -fun lamb's_quarter_N : N; -fun lamb's_quarters_N : N; -fun lambaste_V2 : V2; -fun lambda_N : N; -fun lambdacism_N : N; -fun lambency_N : N; -fun lambent_A : A; -fun lambert_N : N; -fun lambkin_N : N; -fun lamblike_A : A; -fun lambrequin_N : N; -fun lambskin_N : N; -fun lame_A : A; -fun lame_N : N; -fun lame_V2 : V2; -fun lamedh_N : N; -fun lamella_N : N; -fun lamellibranch_A : A; -fun lamely_Adv : Adv; -fun lameness_N : N; -fun lament_N : N; -fun lament_V : V; -fun lament_V2 : V2; -fun lament_VS : VS; -fun lamentable_A : A; -fun lamentation_N : N; -fun lamented_A : A; -fun lamenting_A : A; -fun lamina_N : N; -fun laminar_A : A; -fun laminate_N : N; -fun laminate_V : V; -fun laminate_V2 : V2; -fun lamination_N : N; -fun laminator_N : N; -fun laminectomy_N : N; -fun laminitis_N : N; -fun lamivudine_N : N; -fun lammas_N : N; -fun lamp_N : N; -fun lamp_black_N : N; -fun lamplight_N : N; -fun lamplighter_N : N; -fun lamplit_A : A; -fun lampoon_N : N; -fun lampoon_V2 : V2; -fun lamppost_N : N; -fun lamprey_N : N; -fun lampshade_N : N; -fun lanai_N : N; -fun lanate_A : A; -fun lancastrian_A : A; -fun lancastrian_N : N; -fun lance_N : N; -fun lance_V2 : V2; -fun lance_corporal_N : N; -fun lance_shaped_A : A; -fun lancelet_N : N; -fun lanceolate_A : A; -fun lancer_N : N; -fun lancers_N : N; -fun lancet_N : N; -fun lancet_shaped_A : A; -fun lancetfish_N : N; -fun lancewood_N : N; -fun land_N : N; -fun land_V : V; -fun land_V2 : V2; -fun land_agent_N : N; -fun landau_N : N; -fun landed_A : A; -fun lander_N : N; -fun landfall_N : N; -fun landfill_N : N; -fun landgrave_N : N; -fun landholder_N : N; -fun landholding_N : N; -fun landing_N : N; -fun landing_craft_N : N; -fun landing_field_N : N; -fun landing_gear_N : N; -fun landing_net_N : N; -fun landing_party_N : N; -fun landing_place_N : N; -fun landing_stage_N : N; -fun landing_strip_N : N; -fun landlady_N : N; -fun landler_N : N; -fun landless_A : A; -fun landlocked_A : A; -fun landlord_N : N; -fun landlubber_N : N; -fun landmark_N : N; -fun landmass_N : N; -fun landmine_N : N; -fun landowner_N : N; -fun landrover_N : N; -fun landscape_N : N; -fun landscape_V2 : V2; -fun landscaped_A : A; -fun landscaping_N : N; -fun landscapist_N : N; -fun landside_N : N; -fun landslide_N : N; -fun landslip_N : N; -fun landsman_N : N; -fun landward_Adv : Adv; -fun lane_N : N; -fun langbeinite_N : N; -fun langlaufer_N : N; -fun langley_N : N; -fun langsyne_Adv : Adv; -fun langsyne_N : N; -fun language_N : N; -fun languid_A : A; -fun languidly_Adv : Adv; -fun languish_V : V; -fun languisher_N : N; -fun languor_N : N; -fun languorous_A : A; -fun languorously_Adv : Adv; -fun langur_N : N; -fun lank_A : A; -fun lankiness_N : N; -fun lanky_A : A; -fun lanolin_N : N; -fun lanseh_N : N; -fun lansoprazole_N : N; -fun lantana_N : N; -fun lantern_N : N; -fun lantern_jawed_A : A; -fun lantern_jawed_A : A; -fun lanternfish_N : N; -fun lanthanum_N : N; -fun lanugo_N : N; -fun lanyard_N : N; -fun lao_N : N; -fun laotian_A : A; -fun laotian_N : N; -fun lap_N : N; -fun lap_V : V; -fun lap_V2 : V2; -fun lap_dog_N : N; -fun lap_jointed_A : A; -fun laparocele_N : N; -fun laparoscope_N : N; -fun laparoscopy_N : N; -fun laparotomy_N : N; -fun lapboard_N : N; -fun lapdog_N : N; -fun lapel_N : N; -fun lapful_N : N; -fun lapidarian_A : A; -fun lapidary_A : A; -fun lapidary_N : N; -fun lapin_N : N; -fun lapis_lazuli_N : N; -fun lappet_N : N; -fun lapse_N : N; -fun lapse_V : V; -fun lapsed_A : A; -fun laptop_N : N; -fun lapwing_N : N; -fun larboard_A : A; -fun larboard_N : N; -fun larcenist_N : N; -fun larceny_N : N; -fun larch_N : N; -fun lard_N : N; -fun lard_V2 : V2; -fun larder_N : N; -fun large_A : A; -fun large_Adv : Adv; -fun large_N : N; -fun large_capitalization_A : A; -fun large_headed_A : A; -fun large_leaved_A : A; -fun large_mouthed_A : A; -fun large_scale_A : A; -fun large_scale_A : A; -fun largely_Adv : Adv; -fun largemouth_N : N; -fun largeness_N : N; -fun largess_N : N; -fun largesse_N : N; -fun larghetto_A : A; -fun larghetto_N : N; -fun larghissimo_A : A; -fun largish_A : A; -fun largo_A : A; -fun largo_Adv : Adv; -fun largo_N : N; -fun lari_N : N; -fun lariat_N : N; -fun larid_N : N; -fun lark_N : N; -fun lark_V : V; -fun larkspur_N : N; -fun larn_V : V; -fun larn_V2 : V2; -fun larva_N : N; -fun larvacean_N : N; -fun larvacide_N : N; -fun larval_A : A; -fun larvicide_N : N; -fun laryngeal_A : A; -fun laryngectomy_N : N; -fun laryngismus_N : N; -fun laryngitis_N : N; -fun laryngopharyngeal_A : A; -fun laryngopharyngitis_N : N; -fun laryngopharynx_N : N; -fun laryngoscope_N : N; -fun laryngospasm_N : N; -fun laryngostenosis_N : N; -fun laryngotracheobronchitis_N : N; -fun larynx_N : N; -fun lasagna_N : N; -fun lascar_N : N; -fun lascivious_A : A; -fun lasciviously_Adv : Adv; -fun lasciviousness_N : N; -fun laser_N : N; -fun lash_N : N; -fun lash_V : V; -fun lash_V2 : V2; -fun lash_up_N : N; -fun lash_up_N : N; -fun lasher_N : N; -fun lashing_A : A; -fun lashing_N : N; -fun lasiocampid_N : N; -fun lass_N : N; -fun lassie_N : N; -fun lassitude_N : N; -fun lasso_N : N; -fun lasso_V2 : V2; -fun last_A : A; -fun last_Adv : Adv; -fun last_N : N; -fun last_V : V; -fun last_V2 : V2; -fun last_but_not_least_Adv : Adv; -fun last_ditch_A : A; -fun last_mentioned_A : A; -fun last_minute_A : A; -fun lasting_A : A; -fun lastingly_Adv : Adv; -fun lastingness_N : N; -fun lat_N : N; -fun latakia_N : N; -fun latanier_N : N; -fun latch_N : N; -fun latch_V : V; -fun latch_V2 : V2; -fun latchet_N : N; -fun latchkey_N : N; -fun latchstring_N : N; -fun late_A : A; -fun late_Adv : Adv; -fun late_ripening_A : A; -fun latecomer_N : N; -fun lateen_A : A; -fun lateen_N : N; -fun lateen_rig_N : N; -fun latency_N : N; -fun lateness_N : N; -fun latent_A : A; -fun later_A : A; -fun later_Adv : Adv; -fun lateral_A : A; -fun laterality_N : N; -fun lateralization_N : N; -fun laterally_Adv : Adv; -fun laterite_N : N; -fun latest_A : A; -fun latest_N : N; -fun latex_N : N; -fun lath_N : N; -fun lathe_N : N; -fun lather_N : N; -fun lather_V : V; -fun lather_V2 : V2; -fun lathery_A : A; -fun lathi_N : N; -fun laticifer_N : N; -fun latin_A : A; -fun latin_N : N; -fun latinate_A : A; -fun latinist_N : N; -fun latinize_V2 : V2; -fun latish_A : A; -fun latitude_N : N; -fun latitudes_N : N; -fun latitudinal_A : A; -fun latitudinarian_A : A; -fun latitudinarian_N : N; -fun latrine_N : N; -fun lats_N : N; -fun latten_N : N; -fun latter_A : A; -fun latter_N : N; -fun latter_day_A : A; -fun latter_day_A : A; -fun lattice_N : N; -fun latticed_A : A; -fun laud_V2 : V2; -fun laudable_A : A; -fun laudanum_N : N; -fun laudator_N : N; -fun laudatory_A : A; -fun laugh_N : N; -fun laugh_V : V; -fun laugh_V2 : V2; -fun laugh_VS : VS; -fun laughable_A : A; -fun laughably_Adv : Adv; -fun laugher_N : N; -fun laughing_A : A; -fun laughing_gas_N : N; -fun laughing_stock_N : N; -fun laughingly_Adv : Adv; -fun laughter_N : N; -fun launch_N : N; -fun launch_V : V; -fun launch_V2 : V2; -fun launcher_N : N; -fun launching_N : N; -fun launching_pad_N : N; -fun launching_site_N : N; -fun launder_V : V; -fun launder_V2 : V2; -fun launderette_N : N; -fun laundering_N : N; -fun laundress_N : N; -fun laundry_N : N; -fun laundryman_N : N; -fun laundrywoman_N : N; -fun laureate_A : A; -fun laureate_N : N; -fun laurel_N : N; -fun laurel_tree_N : N; -fun laureled_A : A; -fun laurelled_A : A; -fun laurelwood_N : N; -fun lav_N : N; -fun lava_N : N; -fun lavage_N : N; -fun lavalava_N : N; -fun lavaliere_N : N; -fun lavatory_N : N; -fun lave_V2 : V2; -fun lavender_A : A; -fun lavender_N : N; -fun lavender_tinged_A : A; -fun laver_N : N; -fun lavish_A : A; -fun lavish_V2 : V2; -fun lavishly_Adv : Adv; -fun lavishness_N : N; -fun law_N : N; -fun law_abiding_A : A; -fun law_abiding_A : A; -fun law_officer_N : N; -fun lawbreaker_N : N; -fun lawful_A : A; -fun lawfully_begotten_A : A; -fun lawfulness_N : N; -fun lawgiver_N : N; -fun lawless_A : A; -fun lawlessness_N : N; -fun lawmaker_N : N; -fun lawmaking_N : N; -fun lawman_N : N; -fun lawn_N : N; -fun lawn_mower_N : N; -fun lawrencium_N : N; -fun lawsuit_N : N; -fun lawyer_N : N; -fun lawyerbush_N : N; -fun lax_A : A; -fun laxative_A : A; -fun laxative_N : N; -fun laxity_N : N; -fun laxly_Adv : Adv; -fun laxness_N : N; -fun lay_A : A; -fun lay_N : N; -fun lay_V : V; -fun lay_V2 : V2; -fun lay_VS : VS; -fun lay_figure_N : N; -fun lay_off_N : N; -fun lay_out_N : N; -fun lay_up_N : N; -fun layabout_N : N; -fun layby_N : N; -fun layer_N : N; -fun layer_V2 : V2; -fun layer_cake_N : N; -fun layered_A : A; -fun layette_N : N; -fun laying_N : N; -fun layman_N : N; -fun layoff_N : N; -fun layout_N : N; -fun layover_N : N; -fun lazar_N : N; -fun lazaret_N : N; -fun lazarette_N : N; -fun lazaretto_N : N; -fun lazarus_N : N; -fun laze_V : V; -fun laze_V2 : V2; -fun lazily_Adv : Adv; -fun laziness_N : N; -fun lazy_A : A; -fun lazybones_N : N; -fun lb_N : N; -fun le_carre_PN : PN; -fun le_chatelier_PN : PN; -fun lea_N : N; -fun leach_N : N; -fun leach_V2 : V2; -fun lead_N : N; -fun lead_V : V; -fun lead_V2 : V2; -fun lead_V2V : V2V; -fun lead_VS : VS; -fun lead_colored_A : A; -fun lead_free_A : A; -fun lead_in_N : N; -fun lead_in_N : N; -fun lead_ore_N : N; -fun leaded_A : A; -fun leaden_A : A; -fun leader_N : N; -fun leaderless_A : A; -fun leadership_N : N; -fun leading_A : A; -fun leading_N : N; -fun leading_rein_N : N; -fun leadplant_N : N; -fun leadwort_N : N; -fun leaf_N : N; -fun leaf_V : V; -fun leaf_bud_N : N; -fun leaf_mould_N : N; -fun leafed_A : A; -fun leafhopper_N : N; -fun leafless_A : A; -fun leaflet_N : N; -fun leaflike_A : A; -fun leafy_A : A; -fun leafy_stemmed_A : A; -fun league_N : N; -fun league_V : V; -fun league_V2 : V2; -fun leak_N : N; -fun leak_V : V; -fun leak_V2 : V2; -fun leakage_N : N; -fun leaker_N : N; -fun leakiness_N : N; -fun leakproof_A : A; -fun leaky_A : A; -fun leal_A : A; -fun lean_A : A; -fun lean_N : N; -fun lean_V : V; -fun lean_V2 : V2; -fun lean_to_N : N; -fun lean_to_N : N; -fun leaner_N : N; -fun leaning_N : N; -fun leanness_N : N; -fun leap_N : N; -fun leap_V : V; -fun leap_V2 : V2; -fun leap_year_N : N; -fun leapfrog_N : N; -fun leapfrog_V2 : V2; -fun learn_V : V; -fun learn_V2 : V2; -fun learn_VS : VS; -fun learn_VV : VV; -fun learned_A : A; -fun learner_N : N; -fun learning_N : N; -fun lease_N : N; -fun lease_V2 : V2; -fun lease_lend_N : N; -fun leasehold_A : A; -fun leasehold_N : N; -fun leaseholder_N : N; -fun leash_N : N; -fun leash_V2 : V2; -fun least_A : A; -fun least_Adv : Adv; -fun least_N : N; -fun least_of_all_Adv : Adv; -fun leastways_Adv : Adv; -fun leastwise_Adv : Adv; -fun leather_N : N; -fun leather_jacket_N : N; -fun leather_leaved_A : A; -fun leatherette_N : N; -fun leatherjacket_N : N; -fun leatherleaf_N : N; -fun leatherneck_N : N; -fun leatherwood_N : N; -fun leatherwork_N : N; -fun leathery_A : A; -fun leave_N : N; -fun leave_V : V; -fun leave_V2 : V2; -fun leave_V2V : V2V; -fun leave_VS : VS; -fun leave_VV : VV; -fun leave_taking_N : N; -fun leaven_N : N; -fun leaven_V2 : V2; -fun leavened_A : A; -fun lebanese_A : A; -fun lebanese_N : N; -fun lecanopteris_N : N; -fun lecanora_N : N; -fun lecher_N : N; -fun lecherous_A : A; -fun lecherousness_N : N; -fun lechery_N : N; -fun lechwe_N : N; -fun lecithin_N : N; -fun lectern_N : N; -fun lectin_N : N; -fun lector_N : N; -fun lecture_N : N; -fun lecture_V : V; -fun lecture_V2 : V2; -fun lecturer_N : N; -fun lectureship_N : N; -fun lederhosen_N : N; -fun ledge_N : N; -fun ledger_N : N; -fun lee_N : N; -fun leech_N : N; -fun leek_N : N; -fun leer_N : N; -fun leer_V : V; -fun leering_A : A; -fun leery_A : A; -fun lees_N : N; -fun leeward_A : A; -fun leeward_Adv : Adv; -fun leeward_N : N; -fun leeway_N : N; -fun leflunomide_N : N; -fun left_A : A; -fun left_Adv : Adv; -fun left_N : N; -fun left_VS : VS; -fun left_eyed_A : A; -fun left_hand_A : A; -fun left_hand_A : A; -fun left_handed_A : A; -fun left_handed_A : A; -fun left_handedness_N : N; -fun left_hander_N : N; -fun left_wing_N : N; -fun left_winger_N : N; -fun leftish_A : A; -fun leftism_N : N; -fun leftist_A : A; -fun leftist_N : N; -fun leftmost_A : A; -fun leftover_A : A; -fun leftover_N : N; -fun leftovers_N : N; -fun leg_N : N; -fun leg_pull_N : N; -fun leg_pull_N : N; -fun leg_pulling_N : N; -fun legacy_N : N; -fun legal_A : A; -fun legalese_N : N; -fun legalism_N : N; -fun legalistic_A : A; -fun legality_N : N; -fun legalization_N : N; -fun legalize_V2 : V2; -fun legally_Adv : Adv; -fun legate_N : N; -fun legatee_N : N; -fun legation_N : N; -fun legato_A : A; -fun legato_Adv : Adv; -fun legend_N : N; -fun legendary_A : A; -fun leger_line_N : N; -fun legerdemain_N : N; -fun legged_A : A; -fun legging_N : N; -fun leggy_A : A; -fun leghorn_N : N; -fun legibility_N : N; -fun legible_A : A; -fun legibly_Adv : Adv; -fun legion_N : N; -fun legionary_N : N; -fun legionnaire_N : N; -fun legislate_V : V; -fun legislation_N : N; -fun legislative_A : A; -fun legislatively_Adv : Adv; -fun legislator_N : N; -fun legislatorship_N : N; -fun legislature_N : N; -fun legitimacy_N : N; -fun legitimate_A : A; -fun legitimately_Adv : Adv; -fun legitimation_N : N; -fun legitimatize_V2 : V2; -fun legitimize_V2 : V2; -fun legitimize_V2V : V2V; -fun legless_A : A; -fun leglike_A : A; -fun legs_N : N; -fun legume_N : N; -fun leguminous_A : A; -fun lei_N : N; -fun leiomyoma_N : N; -fun leiomyosarcoma_N : N; -fun leishmaniasis_N : N; -fun leister_N : N; -fun leisure_N : N; -fun leisured_A : A; -fun leisureliness_N : N; -fun leisurely_A : A; -fun leisurely_Adv : Adv; -fun leitmotiv_N : N; -fun lek_N : N; -fun lekvar_N : N; -fun lemma_N : N; -fun lemming_N : N; -fun lemniscus_N : N; -fun lemon_N : N; -fun lemon_scented_A : A; -fun lemonade_N : N; -fun lemongrass_N : N; -fun lemonwood_N : N; -fun lemony_A : A; -fun lempira_N : N; -fun lemur_N : N; -fun lend_V : V; -fun lend_V2 : V2; -fun lend_lease_N : N; -fun lendable_A : A; -fun lender_N : N; -fun lending_N : N; -fun lending_library_N : N; -fun length_N : N; -fun lengthen_V : V; -fun lengthen_V2 : V2; -fun lengthily_Adv : Adv; -fun lengthiness_N : N; -fun lengthways_A : A; -fun lengthways_Adv : Adv; -fun lengthwise_A : A; -fun lengthwise_Adv : Adv; -fun lengthy_A : A; -fun lenience_N : N; -fun leniency_N : N; -fun lenient_A : A; -fun lenitive_N : N; -fun lenity_N : N; -fun lens_N : N; -fun lent_N : N; -fun lenten_A : A; -fun lentic_A : A; -fun lenticel_N : N; -fun lentil_N : N; -fun lentissimo_A : A; -fun lento_A : A; -fun lento_Adv : Adv; -fun leone_N : N; -fun leonine_A : A; -fun leopard_N : N; -fun leopard's_bane_N : N; -fun leopardess_N : N; -fun leotard_N : N; -fun leper_N : N; -fun lepidobotrys_N : N; -fun lepidocrocite_N : N; -fun lepidolite_N : N; -fun lepidomelane_N : N; -fun lepidophobia_N : N; -fun lepidopterist_N : N; -fun lepidopterology_N : N; -fun lepidote_A : A; -fun lepiota_N : N; -fun leporid_N : N; -fun leprechaun_N : N; -fun leprosy_N : N; -fun leprous_A : A; -fun leptocephalus_N : N; -fun leptomeninges_N : N; -fun leptomeningitis_N : N; -fun lepton_N : N; -fun leptorrhine_A : A; -fun leptospira_N : N; -fun leptosporangiate_A : A; -fun leptosporangium_N : N; -fun leptotene_N : N; -fun leresis_N : N; -fun lerot_N : N; -fun lesbian_A : A; -fun lesbian_N : N; -fun lesbianism_N : N; -fun lese_majesty_N : N; -fun lesgislate_V : V; -fun lesion_N : N; -fun less_A : A; -fun less_Adv : Adv; -fun less_N : N; -fun less_traveled_A : A; -fun lessee_N : N; -fun lessen_V : V; -fun lessen_V2 : V2; -fun lessened_A : A; -fun lesser_A : A; -fun lesson_N : N; -fun lessor_N : N; -fun lest_Prep : Prep; -fun let_N : N; -fun let_V : V; -fun let_V2 : V2; -fun let_V2V : V2V; -fun let_VS : VS; -fun let_alone_Adv : Adv; -fun let_down_N : N; -fun let_up_N : N; -fun lethal_A : A; -fun lethargic_A : A; -fun lethargically_Adv : Adv; -fun lethargy_N : N; -fun letter_N : N; -fun letter_V2 : V2; -fun letter_box_N : N; -fun letter_card_N : N; -fun letter_case_N : N; -fun letter_perfect_A : A; -fun lettercard_N : N; -fun lettered_A : A; -fun letterer_N : N; -fun letterhead_N : N; -fun lettering_N : N; -fun letterman_N : N; -fun letterpress_N : N; -fun letters_N : N; -fun letting_N : N; -fun lettuce_N : N; -fun letup_N : N; -fun leu_N : N; -fun leucine_N : N; -fun leucocyte_N : N; -fun leucocytozoan_N : N; -fun leucothoe_N : N; -fun leukaemia_N : N; -fun leukemia_N : N; -fun leukocyte_N : N; -fun leukocytosis_N : N; -fun leukoderma_N : N; -fun leukoencephalitis_N : N; -fun leukoma_N : N; -fun leukopenia_N : N; -fun leukorrhea_N : N; -fun lev_N : N; -fun levallorphan_N : N; -fun levant_V : V; -fun levanter_N : N; -fun levantine_A : A; -fun levantine_N : N; -fun levator_N : N; -fun levee_N : N; -fun level_A : A; -fun level_N : N; -fun level_V : V; -fun level_V2 : V2; -fun level_headed_A : A; -fun leveler_N : N; -fun leveller_N : N; -fun lever_N : N; -fun lever_V2 : V2; -fun leverage_N : N; -fun leveret_N : N; -fun leviathan_N : N; -fun levirate_N : N; -fun levitate_V : V; -fun levitate_V2 : V2; -fun levitation_N : N; -fun levity_N : N; -fun levorotary_A : A; -fun levorotation_N : N; -fun levy_N : N; -fun levy_V : V; -fun levy_V2 : V2; -fun lewd_A : A; -fun lewdly_Adv : Adv; -fun lewdness_N : N; -fun lexeme_N : N; -fun lexical_A : A; -fun lexicalization_N : N; -fun lexicalized_A : A; -fun lexically_Adv : Adv; -fun lexicographer_N : N; -fun lexicographic_A : A; -fun lexicography_N : N; -fun lexicology_N : N; -fun lexicon_N : N; -fun lexicostatistic_A : A; -fun lexicostatistics_N : N; -fun lexis_N : N; -fun ley_N : N; -fun li_N : N; -fun liabilities_N : N; -fun liability_N : N; -fun liable_A : A; -fun liaise_V : V; -fun liaison_N : N; -fun liana_N : N; -fun liar_N : N; -fun lib_N : N; -fun libation_N : N; -fun libel_N : N; -fun libel_V2 : V2; -fun libellous_A : A; -fun liberal_A : A; -fun liberal_N : N; -fun liberalism_N : N; -fun liberalistic_A : A; -fun liberality_N : N; -fun liberalization_N : N; -fun liberalize_V2 : V2; -fun liberally_Adv : Adv; -fun liberate_V2 : V2; -fun liberated_A : A; -fun liberation_N : N; -fun liberator_N : N; -fun liberian_A : A; -fun liberian_N : N; -fun libertarian_N : N; -fun libertarianism_N : N; -fun libertine_N : N; -fun liberty_N : N; -fun libidinal_A : A; -fun libidinous_A : A; -fun libido_N : N; -fun librarian_N : N; -fun librarianship_N : N; -fun library_N : N; -fun libration_N : N; -fun librettist_N : N; -fun libretto_N : N; -fun libyan_A : A; -fun libyan_N : N; -fun licence_N : N; -fun licence_V2 : V2; -fun license_N : N; -fun license_V2 : V2; -fun licensee_N : N; -fun licenser_N : N; -fun licentiate_N : N; -fun licentious_A : A; -fun licentiously_Adv : Adv; -fun licentiousness_N : N; -fun lichee_N : N; -fun lichen_N : N; -fun lichgate_N : N; -fun lichi_N : N; -fun licit_A : A; -fun licitness_N : N; -fun lick_N : N; -fun lick_V : V; -fun lick_V2 : V2; -fun licked_A : A; -fun lickety_split_Adv : Adv; -fun licking_N : N; -fun licorice_N : N; -fun lid_N : N; -fun lidar_N : N; -fun lidded_A : A; -fun lidless_A : A; -fun lido_N : N; -fun lie_N : N; -fun lie_V : V; -fun lie_VS : VS; -fun lie_abed_N : N; -fun lie_abed_N : N; -fun lie_detector_N : N; -fun lie_down_V : V; -fun lie_in_N : N; -fun lie_in_N : N; -fun liebfraumilch_N : N; -fun liechtensteiner_A : A; -fun liechtensteiner_N : N; -fun lied_N : N; -fun lieder_singer_N : N; -fun lief_Adv : Adv; -fun liege_A : A; -fun liege_N : N; -fun liegeman_N : N; -fun lien_N : N; -fun lieu_N : N; -fun lieutenancy_N : N; -fun lieutenant_N : N; -fun life_N : N; -fun life_and_death_A : A; -fun life_buoy_N : N; -fun life_giving_A : A; -fun life_giving_A : A; -fun life_jacket_N : N; -fun life_office_N : N; -fun life_preserver_N : N; -fun life_raft_N : N; -fun life_saver_N : N; -fun life_size_A : A; -fun life_size_A : A; -fun life_sized_A : A; -fun life_span_N : N; -fun life_support_A : A; -fun life_work_N : N; -fun lifebelt_N : N; -fun lifeblood_N : N; -fun lifeboat_N : N; -fun lifebuoy_N : N; -fun lifeguard_N : N; -fun lifeless_A : A; -fun lifelessly_Adv : Adv; -fun lifelike_A : A; -fun lifeline_N : N; -fun lifelong_A : A; -fun lifer_N : N; -fun lifesaving_N : N; -fun lifetime_N : N; -fun lifework_N : N; -fun lift_N : N; -fun lift_V : V; -fun lift_V2 : V2; -fun lift_off_N : N; -fun liftman_N : N; -fun liftoff_N : N; -fun ligament_N : N; -fun ligand_N : N; -fun ligation_N : N; -fun ligature_N : N; -fun liger_N : N; -fun light_A : A; -fun light_Adv : Adv; -fun light_N : N; -fun light_V : V; -fun light_V2 : V2; -fun light_armed_A : A; -fun light_armed_A : A; -fun light_blue_A : A; -fun light_boned_A : A; -fun light_coloured_A : A; -fun light_duty_A : A; -fun light_fingered_A : A; -fun light_fingered_A : A; -fun light_footed_A : A; -fun light_handed_A : A; -fun light_handed_A : A; -fun light_handedly_Adv : Adv; -fun light_headed_A : A; -fun light_headedness_N : N; -fun light_hearted_A : A; -fun light_heartedly_Adv : Adv; -fun light_heartedness_N : N; -fun light_heavyweight_N : N; -fun light_minded_A : A; -fun light_mindedness_N : N; -fun light_o'_love_N : N; -fun light_o'_love_N : N; -fun light_sensitive_A : A; -fun light_skinned_A : A; -fun lighted_A : A; -fun lighten_V : V; -fun lighten_V2 : V2; -fun lightening_N : N; -fun lighter_N : N; -fun lighter_V2 : V2; -fun lighter_than_air_A : A; -fun lighterage_N : N; -fun lighterman_N : N; -fun lightheadedness_N : N; -fun lighthouse_N : N; -fun lighting_N : N; -fun lighting_up_A : A; -fun lighting_up_A : A; -fun lightless_A : A; -fun lightly_Adv : Adv; -fun lightly_armored_A : A; -fun lightness_N : N; -fun lightning_N : N; -fun lightning_conductor_N : N; -fun lightning_rod_N : N; -fun lightproof_A : A; -fun lights_out_N : N; -fun lightship_N : N; -fun lightsome_A : A; -fun lightsomely_Adv : Adv; -fun lightsomeness_N : N; -fun lightweight_A : A; -fun lightweight_N : N; -fun lightwood_N : N; -fun ligne_N : N; -fun ligneous_A : A; -fun lignin_N : N; -fun lignite_N : N; -fun lignosae_N : N; -fun lignum_N : N; -fun ligule_N : N; -fun likable_A : A; -fun like_A : A; -fun like_Adv : Adv; -fun like_N : N; -fun like_Prep : Prep; -fun like_V2 : V2; -fun like_V2V : V2V; -fun like_VS : VS; -fun like_VV : VV; -fun like_clockwork_Adv : Adv; -fun like_hell_Adv : Adv; -fun like_minded_A : A; -fun like_minded_A : A; -fun likeable_A : A; -fun liked_A : A; -fun likelihood_N : N; -fun likely_A : A; -fun liken_V2 : V2; -fun likeness_N : N; -fun likening_N : N; -fun likewise_Adv : Adv; -fun liking_N : N; -fun likuta_N : N; -fun lilac_N : N; -fun lilac_blue_A : A; -fun lilac_pink_A : A; -fun lilac_purple_A : A; -fun lilangeni_N : N; -fun liliaceous_A : A; -fun lilliputian_A : A; -fun lilliputian_N : N; -fun lilt_N : N; -fun lilt_V : V; -fun lilt_V2 : V2; -fun lilting_A : A; -fun lily_N : N; -fun lily_livered_A : A; -fun lily_white_A : A; -fun lily_white_A : A; -fun lilyturf_N : N; -fun limacine_A : A; -fun liman_N : N; -fun limb_N : N; -fun limbed_A : A; -fun limber_A : A; -fun limber_N : N; -fun limber_V : V; -fun limber_V2 : V2; -fun limbers_N : N; -fun limbic_A : A; -fun limbless_A : A; -fun limbo_N : N; -fun limbus_N : N; -fun lime_N : N; -fun lime_V2 : V2; -fun lime_tree_N : N; -fun limeade_N : N; -fun limejuice_N : N; -fun limekiln_N : N; -fun limelight_N : N; -fun limerick_N : N; -fun limestone_N : N; -fun limewater_N : N; -fun limey_N : N; -fun limit_N : N; -fun limit_V2 : V2; -fun limitation_N : N; -fun limited_A : A; -fun limitedly_Adv : Adv; -fun limiter_N : N; -fun limiting_A : A; -fun limitless_A : A; -fun limn_V2 : V2; -fun limnological_A : A; -fun limnologically_Adv : Adv; -fun limnologist_N : N; -fun limnology_N : N; -fun limonene_N : N; -fun limonite_N : N; -fun limousine_N : N; -fun limp_A : A; -fun limp_N : N; -fun limp_V : V; -fun limp_V2 : V2; -fun limpa_N : N; -fun limpet_N : N; -fun limpid_A : A; -fun limpidity_N : N; -fun limpkin_N : N; -fun limply_Adv : Adv; -fun limpness_N : N; -fun linage_N : N; -fun linalool_N : N; -fun linchpin_N : N; -fun lincomycin_N : N; -fun lindane_N : N; -fun linden_N : N; -fun linden_tree_N : N; -fun lindy_N : N; -fun line_N : N; -fun line_V : V; -fun line_V2 : V2; -fun line_shooter_N : N; -fun line_shooting_N : N; -fun line_up_N : N; -fun lineage_N : N; -fun lineal_A : A; -fun lineally_Adv : Adv; -fun lineament_N : N; -fun linear_A : A; -fun linearly_Adv : Adv; -fun lineation_N : N; -fun linebacker_N : N; -fun linecut_N : N; -fun lined_A : A; -fun linelike_A : A; -fun lineman_N : N; -fun linemen_N : N; -fun linen_N : N; -fun linen_draper_N : N; -fun linendraper_N : N; -fun liner_N : N; -fun liner_train_N : N; -fun linesman_N : N; -fun lineup_N : N; -fun ling_N : N; -fun lingam_N : N; -fun lingcod_N : N; -fun linger_V : V; -fun lingerer_N : N; -fun lingerie_N : N; -fun lingering_A : A; -fun lingeringly_Adv : Adv; -fun lingo_N : N; -fun lingonberry_N : N; -fun lingua_franca_N : N; -fun lingual_A : A; -fun lingual_N : N; -fun linguica_N : N; -fun linguine_N : N; -fun linguist_N : N; -fun linguistic_A : A; -fun linguistically_Adv : Adv; -fun linguistics_N : N; -fun lingulate_A : A; -fun liniment_N : N; -fun linin_N : N; -fun lining_N : N; -fun link_N : N; -fun link_V : V; -fun link_V2 : V2; -fun link_up_N : N; -fun linkage_N : N; -fun linkboy_N : N; -fun linkman_N : N; -fun links_N : N; -fun linnet_N : N; -fun lino_N : N; -fun linocut_N : N; -fun linoleum_N : N; -fun linotype_N : N; -fun linseed_N : N; -fun linsey_woolsey_N : N; -fun linsey_woolsey_N : N; -fun linstock_N : N; -fun lint_N : N; -fun lint_V2 : V2; -fun lintel_N : N; -fun linuron_N : N; -fun lion_N : N; -fun lion's_ear_N : N; -fun lion_hearted_A : A; -fun lion_hunter_N : N; -fun lion_hunter_N : N; -fun lioness_N : N; -fun lionet_N : N; -fun lionfish_N : N; -fun lionhearted_A : A; -fun lionize_V2 : V2; -fun lip_N : N; -fun lip_gloss_N : N; -fun lip_read_V2 : V2; -fun lip_reading_N : N; -fun lip_shaped_A : A; -fun liparis_N : N; -fun lipase_N : N; -fun lipectomy_N : N; -fun lipemia_N : N; -fun lipid_N : N; -fun lipidosis_N : N; -fun lipless_A : A; -fun lipogram_N : N; -fun lipoma_N : N; -fun lipomatosis_N : N; -fun lipophilic_A : A; -fun lipoprotein_N : N; -fun liposarcoma_N : N; -fun liposome_N : N; -fun liposuction_N : N; -fun lipped_A : A; -fun lipreading_N : N; -fun lipstick_N : N; -fun liquefaction_N : N; -fun liquefiable_A : A; -fun liquefied_A : A; -fun liquefy_V : V; -fun liquefy_V2 : V2; -fun liquescent_A : A; -fun liqueur_N : N; -fun liquid_A : A; -fun liquid_N : N; -fun liquid_fueled_A : A; -fun liquidambar_N : N; -fun liquidate_V : V; -fun liquidate_V2 : V2; -fun liquidation_N : N; -fun liquidator_N : N; -fun liquidity_N : N; -fun liquidize_V2 : V2; -fun liquidizer_N : N; -fun liquor_N : N; -fun liquorice_N : N; -fun lira_N : N; -fun lisinopril_N : N; -fun lisle_N : N; -fun lisp_N : N; -fun lisp_V : V; -fun lisp_V2 : V2; -fun lisper_N : N; -fun lispingly_Adv : Adv; -fun lissom_A : A; -fun lissome_A : A; -fun lissomeness_N : N; -fun lissomness_N : N; -fun list_N : N; -fun list_V : V; -fun list_V2 : V2; -fun list_V2V : V2V; -fun list_price_N : N; -fun listed_A : A; -fun listen_V : V; -fun listener_N : N; -fun listening_N : N; -fun lister_N : N; -fun listeria_N : N; -fun listeriosis_N : N; -fun listing_N : N; -fun listless_A : A; -fun listlessly_Adv : Adv; -fun listlessness_N : N; -fun lit_V2 : V2; -fun litany_N : N; -fun litas_N : N; -fun litchee_N : N; -fun litchi_N : N; -fun liter_N : N; -fun literacy_N : N; -fun literal_A : A; -fun literal_N : N; -fun literalism_N : N; -fun literally_Adv : Adv; -fun literalness_N : N; -fun literary_A : A; -fun literate_A : A; -fun literate_N : N; -fun literati_N : N; -fun literatim_Adv : Adv; -fun literature_N : N; -fun lithe_A : A; -fun lithe_bodied_A : A; -fun lithiasis_N : N; -fun lithic_A : A; -fun lithium_N : N; -fun lithograph_N : N; -fun lithograph_V : V; -fun lithograph_V2 : V2; -fun lithographer_N : N; -fun lithographic_A : A; -fun lithography_N : N; -fun lithomancer_N : N; -fun lithomancy_N : N; -fun lithomantic_A : A; -fun lithophyte_N : N; -fun lithophytic_A : A; -fun lithops_N : N; -fun lithosphere_N : N; -fun lithotomy_N : N; -fun lithuresis_N : N; -fun litigant_N : N; -fun litigate_V : V; -fun litigate_V2 : V2; -fun litigation_N : N; -fun litigious_A : A; -fun litigiousness_N : N; -fun litmus_N : N; -fun litmus_paper_N : N; -fun litotes_N : N; -fun litre_N : N; -fun litter_N : N; -fun litter_V : V; -fun litter_V2 : V2; -fun litter_basket_N : N; -fun litter_lout_N : N; -fun litterbin_N : N; -fun litterer_N : N; -fun little_A : A; -fun little_Adv : Adv; -fun little_N : N; -fun little_known_A : A; -fun littleneck_N : N; -fun littleness_N : N; -fun littoral_A : A; -fun littoral_N : N; -fun liturgical_A : A; -fun liturgics_N : N; -fun liturgist_N : N; -fun liturgy_N : N; -fun livable_A : A; -fun live_A : A; -fun live_Adv : Adv; -fun live_V : V; -fun live_V2 : V2; -fun live_VV : VV; -fun live_birth_N : N; -fun liveable_A : A; -fun liveborn_A : A; -fun livedo_N : N; -fun livelihood_N : N; -fun liveliness_N : N; -fun livelong_A : A; -fun lively_A : A; -fun liven_V : V; -fun liven_V2 : V2; -fun liver_N : N; -fun liver_colored_A : A; -fun liveried_A : A; -fun liverish_A : A; -fun liverpudlian_A : A; -fun liverpudlian_N : N; -fun liverwort_N : N; -fun liverwurst_N : N; -fun livery_A : A; -fun livery_N : N; -fun liveryman_N : N; -fun livestock_N : N; -fun livid_A : A; -fun lividity_N : N; -fun lividly_Adv : Adv; -fun lividness_N : N; -fun living_A : A; -fun living_N : N; -fun living_room_N : N; -fun living_space_N : N; -fun liza_N : N; -fun lizard_N : N; -fun lizard's_tail_N : N; -fun lizardfish_N : N; -fun llama_N : N; -fun llano_N : N; -fun llb_N : N; -fun loach_N : N; -fun load_N : N; -fun load_V : V; -fun load_V2 : V2; -fun load_bearing_A : A; -fun load_line_N : N; -fun load_shedding_N : N; -fun load_shedding_N : N; -fun loaded_A : A; -fun loader_N : N; -fun loading_N : N; -fun loadstar_N : N; -fun loadstone_N : N; -fun loaf_N : N; -fun loaf_V : V; -fun loaf_V2 : V2; -fun loaf_sugar_N : N; -fun loafer_N : N; -fun loam_N : N; -fun loamless_A : A; -fun loamy_A : A; -fun loan_N : N; -fun loan_V2 : V2; -fun loan_collection_N : N; -fun loan_office_N : N; -fun loanblend_N : N; -fun loaner_N : N; -fun loanword_N : N; -fun loasa_N : N; -fun loath_A : A; -fun loathe_V2 : V2; -fun loathing_N : N; -fun loathly_A : A; -fun loathsome_A : A; -fun loathsomeness_N : N; -fun lob_N : N; -fun lob_V : V; -fun lob_V2 : V2; -fun lobar_A : A; -fun lobate_A : A; -fun lobby_N : N; -fun lobby_V : V; -fun lobby_V2 : V2; -fun lobby_V2V : V2V; -fun lobby_VS : VS; -fun lobbyism_N : N; -fun lobbyist_N : N; -fun lobe_N : N; -fun lobectomy_N : N; -fun lobed_A : A; -fun lobelia_N : N; -fun lobeliaceous_A : A; -fun loblolly_N : N; -fun lobotomy_N : N; -fun lobscouse_N : N; -fun lobster_N : N; -fun lobster_newburg_PN : PN; -fun lobster_pot_N : N; -fun lobsterman_N : N; -fun lobular_A : A; -fun lobularity_N : N; -fun lobule_N : N; -fun local_A : A; -fun local_N : N; -fun locale_N : N; -fun localism_N : N; -fun locality_N : N; -fun localization_N : N; -fun localize_V2 : V2; -fun localized_A : A; -fun locally_Adv : Adv; -fun locate_V : V; -fun locate_V2 : V2; -fun located_A : A; -fun location_N : N; -fun locator_N : N; -fun loch_N : N; -fun lochia_N : N; -fun lock_N : N; -fun lock_V : V; -fun lock_V2 : V2; -fun lock_gate_N : N; -fun lock_gate_N : N; -fun lock_keeper_N : N; -fun lockage_N : N; -fun lockdown_N : N; -fun locker_N : N; -fun locker_room_A : A; -fun locket_N : N; -fun locking_N : N; -fun lockjaw_N : N; -fun lockmaster_N : N; -fun locknut_N : N; -fun lockout_N : N; -fun lockring_N : N; -fun locksmith_N : N; -fun lockstep_N : N; -fun lockstitch_N : N; -fun lockup_A : A; -fun lockup_N : N; -fun loco_A : A; -fun locomotion_N : N; -fun locomotive_A : A; -fun locomotive_N : N; -fun locoweed_N : N; -fun locule_N : N; -fun locum_N : N; -fun locum_tenens_N : N; -fun locus_N : N; -fun locus_classicus_N : N; -fun locust_N : N; -fun locust_tree_N : N; -fun locution_N : N; -fun lode_N : N; -fun lodestar_N : N; -fun lodestone_N : N; -fun lodge_N : N; -fun lodge_V : V; -fun lodge_V2 : V2; -fun lodgement_N : N; -fun lodger_N : N; -fun lodging_N : N; -fun lodging_house_N : N; -fun lodgment_N : N; -fun loess_N : N; -fun loft_N : N; -fun loft_V2 : V2; -fun loftily_Adv : Adv; -fun loftiness_N : N; -fun lofty_A : A; -fun log_N : N; -fun log_V : V; -fun log_V2 : V2; -fun log_cabin_N : N; -fun log_jam_N : N; -fun log_rolling_N : N; -fun loganberry_N : N; -fun logarithm_N : N; -fun logarithmic_A : A; -fun logarithmically_Adv : Adv; -fun logbook_N : N; -fun loge_N : N; -fun loggerhead_N : N; -fun loggerheads_N : N; -fun loggia_N : N; -fun logging_N : N; -fun logic_N : N; -fun logical_A : A; -fun logicality_N : N; -fun logically_Adv : Adv; -fun logician_N : N; -fun logicism_N : N; -fun loginess_N : N; -fun logion_N : N; -fun logistic_A : A; -fun logistics_N : N; -fun logjam_N : N; -fun logo_N : N; -fun logogram_N : N; -fun logogrammatic_A : A; -fun logogrammatically_Adv : Adv; -fun logomach_N : N; -fun logomachy_N : N; -fun logorrhea_N : N; -fun logrolling_N : N; -fun logwood_N : N; -fun loin_N : N; -fun loincloth_N : N; -fun loins_N : N; -fun loir_N : N; -fun loiter_V : V; -fun loiter_V2 : V2; -fun loiterer_N : N; -fun loligo_N : N; -fun loll_V : V; -fun loll_V2 : V2; -fun lollipop_N : N; -fun lollop_V : V; -fun lollop_V2 : V2; -fun lolly_N : N; -fun lomatia_N : N; -fun loment_N : N; -fun lomustine_N : N; -fun londoner_N : N; -fun lone_A : A; -fun loneliness_N : N; -fun lonely_A : A; -fun loner_N : N; -fun lonesome_A : A; -fun long_A : A; -fun long_Adv : Adv; -fun long_N : N; -fun long_V : V; -fun long_acting_A : A; -fun long_ago_A : A; -fun long_ago_Adv : Adv; -fun long_armed_A : A; -fun long_bodied_A : A; -fun long_branched_A : A; -fun long_chain_A : A; -fun long_dated_A : A; -fun long_distance_A : A; -fun long_distance_A : A; -fun long_drawn_out_A : A; -fun long_faced_A : A; -fun long_familiar_A : A; -fun long_haired_A : A; -fun long_haired_A : A; -fun long_handled_A : A; -fun long_headed_A : A; -fun long_headed_A : A; -fun long_jawed_A : A; -fun long_life_A : A; -fun long_lived_A : A; -fun long_play_A : A; -fun long_play_A : A; -fun long_playing_A : A; -fun long_range_A : A; -fun long_range_A : A; -fun long_run_A : A; -fun long_sighted_A : A; -fun long_snouted_A : A; -fun long_spurred_A : A; -fun long_stalked_A : A; -fun long_standing_A : A; -fun long_staple_A : A; -fun long_sufferance_N : N; -fun long_suffering_A : A; -fun long_term_A : A; -fun long_time_A : A; -fun long_winded_A : A; -fun long_winded_A : A; -fun long_windedness_N : N; -fun long_wool_A : A; -fun longan_N : N; -fun longanberry_N : N; -fun longboat_N : N; -fun longbow_N : N; -fun longbowman_N : N; -fun longed_for_A : A; -fun longer_Adv : Adv; -fun longer_N : N; -fun longest_Adv : Adv; -fun longevity_N : N; -fun longhand_A : A; -fun longhand_N : N; -fun longhorn_N : N; -fun longing_A : A; -fun longing_N : N; -fun longingly_Adv : Adv; -fun longish_A : A; -fun longitude_N : N; -fun longitudinal_A : A; -fun longitudinally_Adv : Adv; -fun longness_N : N; -fun longshoreman_N : N; -fun longshot_N : N; -fun longstanding_A : A; -fun longtime_A : A; -fun longueur_N : N; -fun longways_Adv : Adv; -fun longways_N : N; -fun longwise_Adv : Adv; -fun longwool_N : N; -fun loo_N : N; -fun loofa_N : N; -fun loofah_N : N; -fun look_N : N; -fun look_V : V; -fun look_V2 : V2; -fun look_V2V : V2V; -fun look_VA : VA; -fun look_alike_A : A; -fun look_over_N : N; -fun lookdown_N : N; -fun looker_N : N; -fun looker_on_N : N; -fun looking_A : A; -fun looking_N : N; -fun looking_glass_N : N; -fun lookout_N : N; -fun loom_N : N; -fun loom_V : V; -fun loon_N : N; -fun loony_A : A; -fun loony_N : N; -fun loonybin_N : N; -fun loop_N : N; -fun loop_V : V; -fun loop_V2 : V2; -fun loop_line_N : N; -fun loop_line_N : N; -fun loophole_N : N; -fun loopy_A : A; -fun loose_A : A; -fun loose_Adv : Adv; -fun loose_V2 : V2; -fun loose_jointed_A : A; -fun loose_leaf_A : A; -fun looseleaf_A : A; -fun loosely_Adv : Adv; -fun loosely_knit_A : A; -fun loosen_V : V; -fun loosen_V2 : V2; -fun looseness_N : N; -fun loosening_N : N; -fun loosestrife_N : N; -fun loot_N : N; -fun loot_V : V; -fun loot_V2 : V2; -fun looted_A : A; -fun looter_N : N; -fun looting_N : N; -fun lop_V : V; -fun lop_V2 : V2; -fun lop_eared_A : A; -fun lop_eared_A : A; -fun lope_N : N; -fun lope_V : V; -fun lope_V2 : V2; -fun lopsided_A : A; -fun lopsidedly_Adv : Adv; -fun lopsidedness_N : N; -fun loquacious_A : A; -fun loquaciously_Adv : Adv; -fun loquaciousness_N : N; -fun loquacity_N : N; -fun loquat_N : N; -fun lorazepam_N : N; -fun lorchel_N : N; -fun lord_N : N; -fun lord_V2 : V2; -fun lordless_A : A; -fun lordliness_N : N; -fun lordly_A : A; -fun lordolatry_N : N; -fun lordosis_N : N; -fun lordship_N : N; -fun lore_N : N; -fun lorgnette_N : N; -fun lorica_N : N; -fun lorikeet_N : N; -fun lorn_A : A; -fun lorry_N : N; -fun lory_N : N; -fun lose_V : V; -fun lose_V2 : V2; -fun loser_N : N; -fun losings_N : N; -fun loss_N : N; -fun loss_leader_N : N; -fun lossless_A : A; -fun lossy_A : A; -fun lost_A : A; -fun lost_and_found_N : N; -fun lot_N : N; -fun lota_N : N; -fun loth_A : A; -fun loti_N : N; -fun lotic_A : A; -fun lotion_N : N; -fun lottery_N : N; -fun lotto_N : N; -fun lotus_N : N; -fun lotus_eater_N : N; -fun lotus_eater_N : N; -fun lotusland_N : N; -fun louche_A : A; -fun loud_A : A; -fun loud_Adv : Adv; -fun loud_hailer_N : N; -fun loud_mouthed_A : A; -fun loud_voiced_A : A; -fun loudly_Adv : Adv; -fun loudmouth_N : N; -fun loudness_N : N; -fun loudspeaker_N : N; -fun lough_N : N; -fun lounge_N : N; -fun lounge_V : V; -fun lounge_chair_N : N; -fun lounge_lizard_N : N; -fun lounge_suit_N : N; -fun lounger_N : N; -fun loungewear_N : N; -fun loupe_N : N; -fun lour_V : V; -fun louringly_Adv : Adv; -fun louse_N : N; -fun louse_V2 : V2; -fun lousy_A : A; -fun lout_N : N; -fun loutish_A : A; -fun louvar_N : N; -fun louver_N : N; -fun louvered_A : A; -fun louvre_N : N; -fun lovable_A : A; -fun lovage_N : N; -fun lovastatin_N : N; -fun love_N : N; -fun love_V2 : V2; -fun love_V2V : V2V; -fun love_affair_N : N; -fun love_child_N : N; -fun love_feast_N : N; -fun love_in_a_mist_N : N; -fun love_in_winter_N : N; -fun love_knot_N : N; -fun love_letter_N : N; -fun love_lies_bleeding_N : N; -fun love_match_N : N; -fun love_philtre_N : N; -fun love_potion_N : N; -fun love_seat_N : N; -fun love_song_N : N; -fun love_story_N : N; -fun love_token_N : N; -fun love_token_N : N; -fun lovebird_N : N; -fun loved_A : A; -fun loveless_A : A; -fun loveliness_N : N; -fun lovelorn_A : A; -fun lovely_A : A; -fun lovemaking_N : N; -fun lover_N : N; -fun loverlike_A : A; -fun lovesick_A : A; -fun lovesickness_N : N; -fun loving_A : A; -fun loving_cup_N : N; -fun loving_kindness_N : N; -fun loving_kindness_N : N; -fun lovingness_N : N; -fun low_A : A; -fun low_Adv : Adv; -fun low_N : N; -fun low_V : V; -fun low_st_andrew's_cross_PN : PN; -fun low_backed_A : A; -fun low_beam_A : A; -fun low_budget_A : A; -fun low_ceilinged_A : A; -fun low_cost_A : A; -fun low_cut_A : A; -fun low_density_A : A; -fun low_down_A : A; -fun low_grade_A : A; -fun low_growing_A : A; -fun low_interest_A : A; -fun low_key_A : A; -fun low_keyed_A : A; -fun low_level_A : A; -fun low_lying_A : A; -fun low_pitched_A : A; -fun low_pitched_A : A; -fun low_powered_A : A; -fun low_pressure_A : A; -fun low_relief_N : N; -fun low_resolution_A : A; -fun low_rise_A : A; -fun low_spirited_A : A; -fun low_sudsing_A : A; -fun low_tech_A : A; -fun low_tension_A : A; -fun low_warp_loom_N : N; -fun lowborn_A : A; -fun lowboy_N : N; -fun lowbred_A : A; -fun lowbrow_A : A; -fun lowbrow_N : N; -fun lower_Adv : Adv; -fun lower_V : V; -fun lower_V2 : V2; -fun lower_class_A : A; -fun lower_middle_class_A : A; -fun lowercase_A : A; -fun lowerclassman_N : N; -fun lowered_A : A; -fun lowering_N : N; -fun loweringly_Adv : Adv; -fun lowermost_A : A; -fun lowest_Adv : Adv; -fun lowland_A : A; -fun lowland_N : N; -fun lowlander_N : N; -fun lowliness_N : N; -fun lowly_A : A; -fun lowness_N : N; -fun lowset_A : A; -fun lox_N : N; -fun loxapine_N : N; -fun loyal_A : A; -fun loyalist_N : N; -fun loyally_Adv : Adv; -fun loyalty_N : N; -fun lozenge_N : N; -fun lp_N : N; -fun lsd_N : N; -fun luau_N : N; -fun lubber_N : N; -fun lubberly_A : A; -fun lubricant_N : N; -fun lubricate_V2 : V2; -fun lubricated_A : A; -fun lubrication_N : N; -fun lubricious_A : A; -fun lucent_A : A; -fun lucerne_N : N; -fun lucid_A : A; -fun lucidity_N : N; -fun lucidly_Adv : Adv; -fun lucifer_N : N; -fun luciferin_N : N; -fun lucifugous_A : A; -fun luck_N : N; -fun luckily_Adv : Adv; -fun luckless_A : A; -fun lucky_A : A; -fun lucrative_A : A; -fun lucre_N : N; -fun lucubration_N : N; -fun luddite_N : N; -fun ludicrous_A : A; -fun ludo_N : N; -fun luff_N : N; -fun luff_V : V; -fun luff_V2 : V2; -fun luffa_N : N; -fun lug_N : N; -fun lug_V2 : V2; -fun luge_N : N; -fun luger_N : N; -fun luggage_N : N; -fun luggage_carrier_N : N; -fun luggage_rack_N : N; -fun luggage_van_N : N; -fun lugger_N : N; -fun luging_N : N; -fun lugsail_N : N; -fun lugubrious_A : A; -fun lugubriously_Adv : Adv; -fun lugubriousness_N : N; -fun lugworm_N : N; -fun lukewarm_A : A; -fun lukewarmly_Adv : Adv; -fun lukewarmness_N : N; -fun lull_N : N; -fun lull_V : V; -fun lull_V2 : V2; -fun lullaby_N : N; -fun lumbago_N : N; -fun lumbar_A : A; -fun lumber_N : N; -fun lumber_V : V; -fun lumber_V2 : V2; -fun lumber_mill_N : N; -fun lumbering_N : N; -fun lumberjack_N : N; -fun lumberman_N : N; -fun lumbermill_N : N; -fun lumberroom_N : N; -fun lumberyard_N : N; -fun lumbosacral_A : A; -fun lumen_N : N; -fun luminary_N : N; -fun luminescence_N : N; -fun luminescent_A : A; -fun luminism_N : N; -fun luminosity_N : N; -fun luminous_A : A; -fun lumma_N : N; -fun lump_N : N; -fun lump_V2 : V2; -fun lumpectomy_N : N; -fun lumpenproletariat_N : N; -fun lumper_N : N; -fun lumpfish_N : N; -fun lumpish_A : A; -fun lumpsucker_N : N; -fun lumpy_A : A; -fun lunacy_N : N; -fun lunar_A : A; -fun lunatic_A : A; -fun lunatic_N : N; -fun lunch_N : N; -fun lunch_V : V; -fun lunch_V2 : V2; -fun luncheon_N : N; -fun luncheon_V : V; -fun luncher_N : N; -fun lunching_N : N; -fun lunchroom_N : N; -fun lunchtime_N : N; -fun lunette_N : N; -fun lung_N : N; -fun lung_like_A : A; -fun lung_power_N : N; -fun lung_power_N : N; -fun lunge_N : N; -fun lunge_V : V; -fun lunger_N : N; -fun lungfish_N : N; -fun lungi_N : N; -fun lunisolar_A : A; -fun lunula_N : N; -fun lupin_N : N; -fun lupine_A : A; -fun lupine_N : N; -fun lupus_N : N; -fun lurch_N : N; -fun lurch_V : V; -fun lurch_V2 : V2; -fun lurcher_N : N; -fun lure_N : N; -fun lure_V2 : V2; -fun lurid_A : A; -fun luridly_Adv : Adv; -fun luridness_N : N; -fun lurk_V : V; -fun lurker_N : N; -fun lurking_place_N : N; -fun luscious_A : A; -fun lusciously_Adv : Adv; -fun lusciousness_N : N; -fun lush_A : A; -fun lush_N : N; -fun lust_N : N; -fun lust_V : V; -fun luster_N : N; -fun lusterware_N : N; -fun lustful_A : A; -fun lustfully_Adv : Adv; -fun lustily_Adv : Adv; -fun lustre_N : N; -fun lustrous_A : A; -fun lustrum_N : N; -fun lusty_A : A; -fun lutanist_N : N; -fun lute_N : N; -fun luteal_A : A; -fun lutefisk_N : N; -fun lutenist_N : N; -fun lutetium_N : N; -fun lutheran_A : A; -fun lutheran_N : N; -fun luthier_N : N; -fun lutist_N : N; -fun lux_N : N; -fun luxation_N : N; -fun luxe_A : A; -fun luxemburger_A : A; -fun luxemburger_N : N; -fun luxuriance_N : N; -fun luxuriant_A : A; -fun luxuriantly_Adv : Adv; -fun luxuriate_V : V; -fun luxuriation_N : N; -fun luxurious_A : A; -fun luxuriously_Adv : Adv; -fun luxury_N : N; -fun lwei_N : N; -fun lycaenid_N : N; -fun lycanthropy_N : N; -fun lycee_N : N; -fun lyceum_N : N; -fun lychee_N : N; -fun lychgate_N : N; -fun lychnis_N : N; -fun lycopene_N : N; -fun lye_N : N; -fun lygaeid_N : N; -fun lying_N : N; -fun lying_in_A : A; -fun lying_in_wait_A : A; -fun lymantriid_N : N; -fun lymph_N : N; -fun lymphadenitis_N : N; -fun lymphadenoma_N : N; -fun lymphadenopathy_N : N; -fun lymphangiectasia_N : N; -fun lymphangiogram_N : N; -fun lymphangiography_N : N; -fun lymphangioma_N : N; -fun lymphangitis_N : N; -fun lymphatic_A : A; -fun lymphedema_N : N; -fun lymphoblast_N : N; -fun lymphoblast_like_A : A; -fun lymphocyte_N : N; -fun lymphocytic_A : A; -fun lymphocytopenia_N : N; -fun lymphocytosis_N : N; -fun lymphogranuloma_N : N; -fun lymphoid_A : A; -fun lymphokine_N : N; -fun lymphoma_N : N; -fun lymphopoiesis_N : N; -fun lymphuria_N : N; -fun lynch_N : N; -fun lynch_V2 : V2; -fun lynching_N : N; -fun lynchpin_N : N; -fun lynx_N : N; -fun lynx_eyed_A : A; -fun lyonnaise_A : A; -fun lyophilized_A : A; -fun lypressin_N : N; -fun lyrate_A : A; -fun lyre_N : N; -fun lyre_bird_N : N; -fun lyre_shaped_A : A; -fun lyrebird_N : N; -fun lyric_A : A; -fun lyric_N : N; -fun lyrical_A : A; -fun lyricality_N : N; -fun lyrically_Adv : Adv; -fun lyricism_N : N; -fun lyricist_N : N; -fun lysin_N : N; -fun lysine_N : N; -fun lysinemia_N : N; -fun lysis_N : N; -fun lysogenic_A : A; -fun lysogenization_N : N; -fun lysogeny_N : N; -fun lysol_N : N; -fun lysosome_N : N; -fun lysozyme_N : N; -fun lyssavirus_N : N; -fun ma_N : N; -fun ma'am_N : N; -fun maar_N : N; -fun mac_N : N; -fun macabre_A : A; -fun macadam_N : N; -fun macadamia_N : N; -fun macadamize_V2 : V2; -fun macaque_N : N; -fun macaroni_N : N; -fun macaronic_A : A; -fun macaroon_N : N; -fun macaw_N : N; -fun mace_N : N; -fun mace_bearer_N : N; -fun macebearer_N : N; -fun macedoine_N : N; -fun macedonian_A : A; -fun macedonian_N : N; -fun macerate_V : V; -fun macerate_V2 : V2; -fun maceration_N : N; -fun macerative_A : A; -fun machete_N : N; -fun machiavellian_A : A; -fun machicolation_N : N; -fun machinate_V2 : V2; -fun machination_N : N; -fun machine_N : N; -fun machine_V2 : V2; -fun machine_accessible_A : A; -fun machine_gun_N : N; -fun machine_made_A : A; -fun machine_made_A : A; -fun machine_readable_A : A; -fun machinery_N : N; -fun machinist_N : N; -fun machismo_N : N; -fun machmeter_N : N; -fun macho_N : N; -fun macintosh_N : N; -fun mackerel_N : N; -fun mackinaw_N : N; -fun mackintosh_N : N; -fun mackle_N : N; -fun macon_N : N; -fun macrame_N : N; -fun macrencephalic_A : A; -fun macrencephaly_N : N; -fun macro_A : A; -fun macro_N : N; -fun macrobiotic_A : A; -fun macrobiotics_N : N; -fun macrocephalic_A : A; -fun macrocephaly_N : N; -fun macrocosm_N : N; -fun macrocosmic_A : A; -fun macrocytosis_N : N; -fun macroeconomic_A : A; -fun macroeconomics_N : N; -fun macroeconomist_N : N; -fun macroevolution_N : N; -fun macroglossia_N : N; -fun macromolecular_A : A; -fun macromolecule_N : N; -fun macron_N : N; -fun macrophage_N : N; -fun macroscopic_A : A; -fun macroscopically_Adv : Adv; -fun macrotus_N : N; -fun macrozamia_N : N; -fun macula_N : N; -fun maculate_A : A; -fun macule_N : N; -fun macumba_N : N; -fun macushla_N : N; -fun mad_A : A; -fun madagascan_A : A; -fun madagascan_N : N; -fun madam_N : N; -fun madame_N : N; -fun madcap_N : N; -fun madden_V2 : V2; -fun madder_N : N; -fun madderwort_N : N; -fun made_A : A; -fun made_up_A : A; -fun madeira_N : N; -fun mademoiselle_N : N; -fun madhouse_N : N; -fun madly_Adv : Adv; -fun madman_N : N; -fun madness_N : N; -fun madonna_N : N; -fun madras_N : N; -fun madrasa_N : N; -fun madrigal_N : N; -fun madrigalist_N : N; -fun madrilene_N : N; -fun madrona_N : N; -fun madwoman_N : N; -fun maelstrom_N : N; -fun maenad_N : N; -fun maestro_N : N; -fun maffick_V : V; -fun mafia_N : N; -fun mafioso_N : N; -fun mag_N : N; -fun magazine_N : N; -fun magdalen_N : N; -fun magenta_A : A; -fun magenta_N : N; -fun magenta_pink_A : A; -fun maggot_N : N; -fun maggoty_A : A; -fun magic_A : A; -fun magic_N : N; -fun magical_A : A; -fun magically_Adv : Adv; -fun magician_N : N; -fun magisterial_A : A; -fun magistracy_N : N; -fun magistrate_N : N; -fun magma_N : N; -fun magna_cum_laude_A : A; -fun magna_cum_laude_Adv : Adv; -fun magnanimity_N : N; -fun magnanimous_A : A; -fun magnanimously_Adv : Adv; -fun magnate_N : N; -fun magnesia_N : N; -fun magnesite_N : N; -fun magnesium_N : N; -fun magnet_N : N; -fun magnetic_A : A; -fun magnetically_Adv : Adv; -fun magnetism_N : N; -fun magnetite_N : N; -fun magnetization_N : N; -fun magnetize_V2 : V2; -fun magneto_N : N; -fun magnetograph_N : N; -fun magnetohydrodynamics_N : N; -fun magnetometer_N : N; -fun magneton_N : N; -fun magnetosphere_N : N; -fun magnetron_N : N; -fun magnificat_N : N; -fun magnification_N : N; -fun magnificence_N : N; -fun magnificent_A : A; -fun magnifico_N : N; -fun magnifier_N : N; -fun magnify_V2 : V2; -fun magniloquence_N : N; -fun magniloquent_A : A; -fun magnitude_N : N; -fun magnolia_N : N; -fun magnum_N : N; -fun magnum_opus_N : N; -fun magpie_N : N; -fun maguey_N : N; -fun magus_N : N; -fun magyar_A : A; -fun magyar_N : N; -fun maharaja_N : N; -fun maharajah_N : N; -fun maharanee_N : N; -fun maharani_N : N; -fun mahatma_N : N; -fun mahjong_N : N; -fun mahoe_N : N; -fun mahogany_N : N; -fun mahout_N : N; -fun mahuang_N : N; -fun maid_N : N; -fun maiden_A : A; -fun maiden_N : N; -fun maiden_blue_eyed_mary_PN : PN; -fun maidenhair_N : N; -fun maidenhead_N : N; -fun maidenhood_N : N; -fun maidenlike_A : A; -fun maidenliness_N : N; -fun maidenly_A : A; -fun maidservant_N : N; -fun maigre_N : N; -fun mail_N : N; -fun mail_V2 : V2; -fun mail_cheeked_A : A; -fun mail_clad_A : A; -fun mail_train_N : N; -fun mailbag_N : N; -fun mailboat_N : N; -fun mailbox_N : N; -fun maildrop_N : N; -fun mailed_A : A; -fun mailer_N : N; -fun mailing_N : N; -fun mailing_card_N : N; -fun mailing_list_N : N; -fun maillot_N : N; -fun mailman_N : N; -fun mailsorter_N : N; -fun maim_V2 : V2; -fun maimed_A : A; -fun main_A : A; -fun main_N : N; -fun main_topmast_N : N; -fun main_topsail_N : N; -fun mainframe_N : N; -fun mainland_N : N; -fun mainmast_N : N; -fun mainsail_N : N; -fun mainspring_N : N; -fun mainstay_N : N; -fun mainstream_N : N; -fun mainstreamed_A : A; -fun maintain_V : V; -fun maintain_V2 : V2; -fun maintain_VS : VS; -fun maintainable_A : A; -fun maintenance_N : N; -fun maisonette_N : N; -fun maisonnette_N : N; -fun maize_N : N; -fun majestic_A : A; -fun majestically_Adv : Adv; -fun majesty_N : N; -fun majolica_N : N; -fun major_A : A; -fun major_N : N; -fun major_V : V; -fun major_domo_N : N; -fun major_domo_N : N; -fun major_general_N : N; -fun major_general_N : N; -fun majority_N : N; -fun majuscular_A : A; -fun majuscule_A : A; -fun make_N : N; -fun make_V : V; -fun make_V2 : V2; -fun make_V2V : V2V; -fun make_VA : VA; -fun make_VS : VS; -fun make_VV : VV; -fun make_believe_A : A; -fun make_believe_N : N; -fun make_believe_N : N; -fun make_out_V2 : V2; -fun make_up_N : N; -fun makeover_N : N; -fun maker_N : N; -fun makeready_N : N; -fun makeshift_N : N; -fun makeup_N : N; -fun makeweight_N : N; -fun making_N : N; -fun mako_N : N; -fun makomako_N : N; -fun malabsorption_N : N; -fun malacca_N : N; -fun malachite_N : N; -fun malacia_N : N; -fun malacologist_N : N; -fun malacology_N : N; -fun maladaptive_A : A; -fun maladjusted_A : A; -fun maladjustive_A : A; -fun maladjustment_N : N; -fun maladroit_A : A; -fun maladroitly_Adv : Adv; -fun maladroitness_N : N; -fun malady_N : N; -fun malahini_N : N; -fun malaise_N : N; -fun malamute_N : N; -fun malapropism_N : N; -fun malapropos_A : A; -fun malapropos_Adv : Adv; -fun malaria_N : N; -fun malarial_A : A; -fun malawian_A : A; -fun malawian_N : N; -fun malay_A : A; -fun malay_N : N; -fun malayan_A : A; -fun malayan_N : N; -fun malaysian_A : A; -fun malaysian_N : N; -fun malcontent_A : A; -fun malcontent_N : N; -fun male_A : A; -fun male_N : N; -fun maleate_N : N; -fun maleberry_N : N; -fun malediction_N : N; -fun malefactor_N : N; -fun malefic_A : A; -fun maleficence_N : N; -fun maleficent_A : A; -fun maleness_N : N; -fun maleo_N : N; -fun malevolence_N : N; -fun malevolent_A : A; -fun malevolently_Adv : Adv; -fun malfeasance_N : N; -fun malfeasant_N : N; -fun malformation_N : N; -fun malformed_A : A; -fun malfunction_N : N; -fun malfunction_V : V; -fun malfunctioning_A : A; -fun malian_A : A; -fun malian_N : N; -fun malice_N : N; -fun malicious_A : A; -fun maliciously_Adv : Adv; -fun malign_A : A; -fun malign_V2 : V2; -fun malignancy_N : N; -fun malignant_A : A; -fun malignantly_Adv : Adv; -fun malignity_N : N; -fun malignly_Adv : Adv; -fun malik_N : N; -fun malinger_V : V; -fun malingerer_N : N; -fun malingering_N : N; -fun malinois_N : N; -fun mallard_N : N; -fun malleability_N : N; -fun malleable_A : A; -fun mallee_N : N; -fun mallet_N : N; -fun malleus_N : N; -fun mallow_N : N; -fun malmsey_N : N; -fun malnourished_A : A; -fun malnutrition_N : N; -fun malocclusion_N : N; -fun malodor_N : N; -fun malodorous_A : A; -fun malodorousness_N : N; -fun malope_N : N; -fun malposed_A : A; -fun malposition_N : N; -fun malpractice_N : N; -fun malt_N : N; -fun malt_V : V; -fun malt_V2 : V2; -fun malted_A : A; -fun malted_N : N; -fun maltese_A : A; -fun maltese_N : N; -fun maltha_N : N; -fun malthusian_A : A; -fun maltose_N : N; -fun maltreat_V2 : V2; -fun maltreatment_N : N; -fun maltster_N : N; -fun malvasia_N : N; -fun malversation_N : N; -fun mama_N : N; -fun mamba_N : N; -fun mambo_N : N; -fun mamey_N : N; -fun mamma_N : N; -fun mammal_N : N; -fun mammalian_A : A; -fun mammalogist_N : N; -fun mammalogy_N : N; -fun mammary_A : A; -fun mammillaria_N : N; -fun mammogram_N : N; -fun mammography_N : N; -fun mammon_N : N; -fun mammoth_N : N; -fun mammothermography_N : N; -fun mammy_N : N; -fun mamo_N : N; -fun man_N : N; -fun man_V2 : V2; -fun man_at_arms_N : N; -fun man_at_arms_N : N; -fun man_eater_N : N; -fun man_hour_N : N; -fun man_made_A : A; -fun man_of_the_earth_N : N; -fun man_of_war_N : N; -fun man_of_war_N : N; -fun man_on_a_horse_N : N; -fun man_portable_A : A; -fun man_sized_A : A; -fun man_sized_A : A; -fun man_to_man_A : A; -fun man_to_man_Adv : Adv; -fun manacle_N : N; -fun manacle_V2 : V2; -fun manage_V : V; -fun manage_V2 : V2; -fun manage_VV : VV; -fun manageability_N : N; -fun manageable_A : A; -fun manageably_Adv : Adv; -fun management_N : N; -fun manager_N : N; -fun manageress_N : N; -fun managerial_A : A; -fun managerially_Adv : Adv; -fun managership_N : N; -fun manakin_N : N; -fun manana_N : N; -fun manat_N : N; -fun manatee_N : N; -fun mancunian_A : A; -fun mancunian_N : N; -fun mandala_N : N; -fun mandamus_N : N; -fun mandarin_N : N; -fun mandatary_N : N; -fun mandate_N : N; -fun mandate_V2 : V2; -fun mandate_VS : VS; -fun mandator_N : N; -fun mandatory_A : A; -fun mandatory_N : N; -fun mandible_N : N; -fun mandibular_A : A; -fun mandibulate_A : A; -fun mandibulofacial_A : A; -fun mandola_N : N; -fun mandolin_N : N; -fun mandragora_N : N; -fun mandrake_N : N; -fun mandrill_N : N; -fun mane_N : N; -fun maneuver_N : N; -fun maneuver_V : V; -fun maneuver_V2 : V2; -fun maneuverability_N : N; -fun maneuverable_A : A; -fun maneuverer_N : N; -fun manful_A : A; -fun manfully_Adv : Adv; -fun manfulness_N : N; -fun mangabey_N : N; -fun manganate_N : N; -fun manganese_N : N; -fun manganite_N : N; -fun mange_N : N; -fun mangel_wurzel_N : N; -fun mangel_wurzel_N : N; -fun manger_N : N; -fun mangily_Adv : Adv; -fun mangle_N : N; -fun mangle_V2 : V2; -fun manglietia_N : N; -fun mango_N : N; -fun mangosteen_N : N; -fun mangrove_N : N; -fun mangy_A : A; -fun manhandle_V2 : V2; -fun manhattan_N : N; -fun manhole_N : N; -fun manhood_N : N; -fun manhunt_N : N; -fun mania_N : N; -fun maniac_N : N; -fun maniacal_A : A; -fun maniacally_Adv : Adv; -fun manic_depressive_A : A; -fun manic_depressive_A : A; -fun manic_depressive_N : N; -fun manic_depressive_N : N; -fun maniclike_A : A; -fun manicotti_N : N; -fun manicure_N : N; -fun manicure_V2 : V2; -fun manicurist_N : N; -fun manifest_A : A; -fun manifest_N : N; -fun manifest_V2 : V2; -fun manifestation_N : N; -fun manifesto_N : N; -fun manifold_A : A; -fun manifold_N : N; -fun manifold_V2 : V2; -fun manikin_N : N; -fun manila_N : N; -fun manilla_N : N; -fun manipulability_N : N; -fun manipulate_V2 : V2; -fun manipulation_N : N; -fun manipulative_A : A; -fun manipulatively_Adv : Adv; -fun manipulator_N : N; -fun maniraptor_N : N; -fun mankind_N : N; -fun manky_A : A; -fun manlike_A : A; -fun manliness_N : N; -fun manly_A : A; -fun manna_N : N; -fun manned_A : A; -fun mannequin_N : N; -fun manner_N : N; -fun mannered_A : A; -fun mannerism_N : N; -fun mannerly_A : A; -fun manners_N : N; -fun mannish_A : A; -fun mannitol_N : N; -fun manoeuvrability_N : N; -fun manoeuvrable_A : A; -fun manoeuvre_N : N; -fun manoeuvre_V : V; -fun manoeuvre_V2 : V2; -fun manoeuvrer_N : N; -fun manometer_N : N; -fun manor_N : N; -fun manor_house_N : N; -fun manorial_A : A; -fun manpower_N : N; -fun manque_A : A; -fun mansard_A : A; -fun mansard_N : N; -fun manse_N : N; -fun manservant_N : N; -fun mansion_N : N; -fun manslaughter_N : N; -fun manta_N : N; -fun mantel_N : N; -fun mantelet_N : N; -fun mantelpiece_N : N; -fun manticore_N : N; -fun mantilla_N : N; -fun mantis_N : N; -fun mantispid_N : N; -fun mantissa_N : N; -fun mantle_N : N; -fun mantle_V : V; -fun mantle_V2 : V2; -fun mantra_N : N; -fun mantrap_N : N; -fun mantua_N : N; -fun manual_A : A; -fun manual_N : N; -fun manually_Adv : Adv; -fun manubrium_N : N; -fun manufacture_N : N; -fun manufacture_V2 : V2; -fun manufactured_A : A; -fun manufacturer_N : N; -fun manul_N : N; -fun manumission_N : N; -fun manumit_V2 : V2; -fun manure_N : N; -fun manure_V2 : V2; -fun manuscript_N : N; -fun manx_A : A; -fun manx_N : N; -fun many_A : A; -fun many_Det : Det; -fun many_a_A : A; -fun many_chambered_A : A; -fun many_lobed_A : A; -fun many_sided_A : A; -fun many_sided_A : A; -fun manzanita_N : N; -fun maoism_N : N; -fun maoist_N : N; -fun maori_N : N; -fun map_N : N; -fun map_V2 : V2; -fun map_reader_N : N; -fun map_reader_N : N; -fun mapinguari_N : N; -fun maple_N : N; -fun maple_leaf_N : N; -fun maple_leaf_N : N; -fun maplelike_A : A; -fun mapmaking_N : N; -fun mapping_N : N; -fun maquiladora_N : N; -fun maquis_N : N; -fun mar_V2 : V2; -fun mara_N : N; -fun marabou_N : N; -fun maraca_N : N; -fun marang_N : N; -fun maranta_N : N; -fun marasca_N : N; -fun maraschino_N : N; -fun marasmus_N : N; -fun marathon_N : N; -fun marathoner_N : N; -fun maraud_V : V; -fun marauder_N : N; -fun marauding_A : A; -fun marble_N : N; -fun marbled_A : A; -fun marbleization_N : N; -fun marbles_N : N; -fun marblewood_N : N; -fun marbling_N : N; -fun marc_N : N; -fun marcel_N : N; -fun march_N : N; -fun march_V : V; -fun march_V2 : V2; -fun marched_upon_A : A; -fun marcher_N : N; -fun marchioness_N : N; -fun mardi_gras_N : N; -fun mare_N : N; -fun margarin_N : N; -fun margarine_N : N; -fun margarita_N : N; -fun margate_N : N; -fun margay_N : N; -fun marge_N : N; -fun margin_N : N; -fun marginal_A : A; -fun marginalia_N : N; -fun marginality_N : N; -fun marginalization_N : N; -fun marginalize_V2 : V2; -fun marginally_Adv : Adv; -fun margrave_N : N; -fun marguerite_N : N; -fun mariachi_N : N; -fun marigold_N : N; -fun marihuana_N : N; -fun marijuana_N : N; -fun marimba_N : N; -fun marina_N : N; -fun marinade_N : N; -fun marinade_V2 : V2; -fun marinara_N : N; -fun marinate_V2 : V2; -fun marine_A : A; -fun marine_N : N; -fun mariner_N : N; -fun marionette_N : N; -fun mariposa_N : N; -fun marital_A : A; -fun mariticide_N : N; -fun maritime_A : A; -fun marjoram_N : N; -fun mark_N : N; -fun mark_V : V; -fun mark_V2 : V2; -fun mark_of_cain_PN : PN; -fun mark_up_N : N; -fun marke_VS : VS; -fun marked_A : A; -fun markedly_Adv : Adv; -fun marker_N : N; -fun market_N : N; -fun market_V : V; -fun market_V2 : V2; -fun market_cross_N : N; -fun market_day_N : N; -fun market_garden_N : N; -fun market_gardening_N : N; -fun market_square_N : N; -fun market_town_N : N; -fun marketable_A : A; -fun marketing_N : N; -fun marketplace_N : N; -fun markhor_N : N; -fun marking_N : N; -fun marking_ink_N : N; -fun marking_inks_N : N; -fun markka_N : N; -fun marksman_N : N; -fun marksmanship_N : N; -fun markup_N : N; -fun marl_N : N; -fun marlberry_N : N; -fun marlin_N : N; -fun marline_N : N; -fun marlinespike_N : N; -fun marlite_N : N; -fun marly_A : A; -fun marmalade_N : N; -fun marmite_N : N; -fun marmoreal_A : A; -fun marmorean_A : A; -fun marmoset_N : N; -fun marmot_N : N; -fun marocain_N : N; -fun maroon_A : A; -fun maroon_N : N; -fun maroon_V2 : V2; -fun maroon_purple_A : A; -fun maroon_spotted_A : A; -fun marque_N : N; -fun marquee_N : N; -fun marquess_N : N; -fun marquetry_N : N; -fun marquis_N : N; -fun marred_A : A; -fun marriage_N : N; -fun marriageability_N : N; -fun marriageable_A : A; -fun married_A : A; -fun married_N : N; -fun marrow_N : N; -fun marrowbone_N : N; -fun marry_V : V; -fun marry_V2 : V2; -fun marsala_N : N; -fun marseillaise_N : N; -fun marseille_N : N; -fun marsh_N : N; -fun marsh_st_john's_wort_PN : PN; -fun marshal_N : N; -fun marshal_V2 : V2; -fun marshalling_yard_N : N; -fun marshalship_N : N; -fun marshmallow_N : N; -fun marshy_A : A; -fun marsupial_A : A; -fun marsupial_N : N; -fun marsupium_N : N; -fun mart_N : N; -fun marten_N : N; -fun martensite_N : N; -fun martial_A : A; -fun martially_Adv : Adv; -fun martian_A : A; -fun martian_N : N; -fun martin_N : N; -fun martinet_N : N; -fun martingale_N : N; -fun martini_N : N; -fun martynia_N : N; -fun martyr_N : N; -fun martyr_V2 : V2; -fun martyrdom_N : N; -fun marumi_N : N; -fun marupa_N : N; -fun marvel_N : N; -fun marvel_V : V; -fun marvel_VS : VS; -fun marvellous_A : A; -fun marvelous_A : A; -fun marxism_N : N; -fun marxist_N : N; -fun marzipan_N : N; -fun mascara_N : N; -fun mascarpone_N : N; -fun mascot_N : N; -fun masculine_A : A; -fun masculine_N : N; -fun masculinity_N : N; -fun masculinization_N : N; -fun masdevallia_N : N; -fun maser_N : N; -fun mash_N : N; -fun mash_V2 : V2; -fun masher_N : N; -fun mashie_N : N; -fun masjid_N : N; -fun mask_N : N; -fun mask_V2 : V2; -fun masked_A : A; -fun masking_N : N; -fun masochism_N : N; -fun masochist_N : N; -fun masochistic_A : A; -fun masochistically_Adv : Adv; -fun mason_N : N; -fun masonic_A : A; -fun masonry_N : N; -fun masque_N : N; -fun masquerade_N : N; -fun masquerade_V : V; -fun masquerader_N : N; -fun mass_N : N; -fun mass_V : V; -fun mass_V2 : V2; -fun mass_produce_V2 : V2; -fun mass_produced_A : A; -fun mass_spectrometric_A : A; -fun mass_spectroscopic_A : A; -fun massacre_N : N; -fun massacre_V2 : V2; -fun massage_N : N; -fun massage_V2 : V2; -fun massager_N : N; -fun massasauga_N : N; -fun masse_N : N; -fun masseter_N : N; -fun masseur_N : N; -fun masseuse_N : N; -fun massicot_N : N; -fun massif_N : N; -fun massive_A : A; -fun massively_Adv : Adv; -fun massiveness_N : N; -fun massy_A : A; -fun mast_N : N; -fun mastaba_N : N; -fun mastalgia_N : N; -fun mastectomy_N : N; -fun masted_A : A; -fun master_N : N; -fun master_V2 : V2; -fun master_at_arms_N : N; -fun master_at_arms_N : N; -fun master_key_N : N; -fun masterful_A : A; -fun masterfully_Adv : Adv; -fun mastering_N : N; -fun masterless_A : A; -fun masterly_A : A; -fun mastermind_N : N; -fun mastermind_V2 : V2; -fun masterpiece_N : N; -fun mastership_N : N; -fun masterstroke_N : N; -fun mastery_N : N; -fun masthead_N : N; -fun mastic_N : N; -fun masticate_V2 : V2; -fun mastication_N : N; -fun mastiff_N : N; -fun mastitis_N : N; -fun mastodon_N : N; -fun mastoid_A : A; -fun mastoid_N : N; -fun mastoidale_N : N; -fun mastoidectomy_N : N; -fun mastoiditis_N : N; -fun mastopathy_N : N; -fun mastopexy_N : N; -fun masturbate_V : V; -fun masturbate_V2 : V2; -fun masturbation_N : N; -fun masturbator_N : N; -fun mat_A : A; -fun mat_N : N; -fun mat_V : V; -fun mat_V2 : V2; -fun matador_N : N; -fun matai_N : N; -fun match_N : N; -fun match_V : V; -fun match_V2 : V2; -fun match_point_N : N; -fun match_up_N : N; -fun matchboard_N : N; -fun matchbook_N : N; -fun matchbox_N : N; -fun matched_A : A; -fun matchet_N : N; -fun matchless_A : A; -fun matchlock_N : N; -fun matchmaker_N : N; -fun matchmaking_N : N; -fun matchstick_N : N; -fun matchweed_N : N; -fun matchwood_N : N; -fun mate_N : N; -fun mate_V : V; -fun mate_V2 : V2; -fun mate_1_N : N; -fun mate_2_N : N; -fun mated_A : A; -fun mateless_A : A; -fun matelote_N : N; -fun mater_N : N; -fun material_A : A; -fun material_N : N; -fun materialism_N : N; -fun materialist_N : N; -fun materialistic_A : A; -fun materialistically_Adv : Adv; -fun materiality_N : N; -fun materialization_N : N; -fun materialize_V : V; -fun materialize_V2V : V2V; -fun materially_Adv : Adv; -fun materiel_N : N; -fun maternal_A : A; -fun maternalism_N : N; -fun maternalistic_A : A; -fun maternally_Adv : Adv; -fun maternity_N : N; -fun matey_A : A; -fun mathematical_A : A; -fun mathematically_Adv : Adv; -fun mathematician_N : N; -fun mathematics_N : N; -fun maths_N : N; -fun matinee_N : N; -fun matins_N : N; -fun matriarch_N : N; -fun matriarchal_A : A; -fun matriarchic_A : A; -fun matriarchy_N : N; -fun matric_N : N; -fun matricentric_A : A; -fun matricide_N : N; -fun matriculate_N : N; -fun matriculate_V : V; -fun matriculate_V2 : V2; -fun matriculation_N : N; -fun matrilineage_N : N; -fun matrilineal_A : A; -fun matrilineally_Adv : Adv; -fun matrimonial_A : A; -fun matrimony_N : N; -fun matrix_N : N; -fun matron_N : N; -fun matronly_A : A; -fun matronymic_N : N; -fun matsyendra_N : N; -fun matt_A : A; -fun matte_N : N; -fun matted_A : A; -fun matter_N : N; -fun matter_V : V; -fun matter_of_course_A : A; -fun matter_of_course_A : A; -fun matter_of_fact_A : A; -fun matter_of_fact_A : A; -fun matting_N : N; -fun mattock_N : N; -fun mattress_N : N; -fun maturate_V : V; -fun maturation_N : N; -fun maturational_A : A; -fun mature_A : A; -fun mature_V : V; -fun mature_V2 : V2; -fun maturely_Adv : Adv; -fun maturity_N : N; -fun matutinal_A : A; -fun matzo_N : N; -fun maudlin_A : A; -fun maul_N : N; -fun maul_V2 : V2; -fun mauler_N : N; -fun maulstick_N : N; -fun maund_N : N; -fun maunder_V : V; -fun maundy_thursday_N : N; -fun mauritanian_A : A; -fun mauritanian_N : N; -fun mauritian_A : A; -fun mauritian_N : N; -fun mausoleum_N : N; -fun mauve_A : A; -fun mauve_N : N; -fun mauve_blue_A : A; -fun mauve_pink_A : A; -fun maverick_N : N; -fun mavis_N : N; -fun maw_N : N; -fun mawkish_A : A; -fun mawkishly_Adv : Adv; -fun mawkishness_N : N; -fun max_N : N; -fun maxi_A : A; -fun maxi_N : N; -fun maxillaria_N : N; -fun maxillary_A : A; -fun maxillodental_A : A; -fun maxillofacial_A : A; -fun maxillomandibular_A : A; -fun maxim_N : N; -fun maximal_A : A; -fun maximally_Adv : Adv; -fun maximization_N : N; -fun maximize_V2 : V2; -fun maximizing_A : A; -fun maximum_A : A; -fun maximum_N : N; -fun maxwell_N : N; -fun may_N : N; -fun may_VV : VV; -fun may_beetle_N : N; -fun may_bug_N : N; -fun mayapple_N : N; -fun maybe_Adv : Adv; -fun mayday_N : N; -fun mayeng_N : N; -fun mayfly_N : N; -fun mayhaw_N : N; -fun mayhem_N : N; -fun mayonnaise_N : N; -fun mayor_N : N; -fun mayoral_A : A; -fun mayoralty_N : N; -fun mayoress_N : N; -fun maypole_N : N; -fun maypop_N : N; -fun mayweed_N : N; -fun maze_N : N; -fun mazed_A : A; -fun mazer_N : N; -fun mazurka_N : N; -fun mb_N : N; -fun mc_N : N; -fun mcc_N : N; -fun mccarthyism_N : N; -fun md_N : N; -fun mead_N : N; -fun meadow_N : N; -fun meadowgrass_N : N; -fun meadowlark_N : N; -fun meager_A : A; -fun meagerly_Adv : Adv; -fun meagerness_N : N; -fun meagre_A : A; -fun meagreness_N : N; -fun meal_N : N; -fun mealie_N : N; -fun mealtime_N : N; -fun mealworm_N : N; -fun mealy_A : A; -fun mealy_bug_N : N; -fun mealy_mouthed_A : A; -fun mealybug_N : N; -fun mealymouthed_A : A; -fun mean_A : A; -fun mean_N : N; -fun mean_V : V; -fun mean_V2 : V2; -fun mean_VA : VA; -fun mean_VS : VS; -fun mean_VV : VV; -fun meander_N : N; -fun meander_V : V; -fun meander_V2 : V2; -fun meandering_A : A; -fun meanderingly_Adv : Adv; -fun meanie_N : N; -fun meaning_A : A; -fun meaning_N : N; -fun meaningful_A : A; -fun meaningfully_Adv : Adv; -fun meaningfulness_N : N; -fun meaningless_A : A; -fun meaninglessness_N : N; -fun meanly_Adv : Adv; -fun meanness_N : N; -fun means_N : N; -fun meanspiritedly_Adv : Adv; -fun meantime_Adv : Adv; -fun meantime_N : N; -fun meanwhile_Adv : Adv; -fun meany_N : N; -fun measles_N : N; -fun measly_A : A; -fun measurable_A : A; -fun measurably_Adv : Adv; -fun measure_N : N; -fun measure_V : V; -fun measure_V2 : V2; -fun measured_A : A; -fun measuredly_Adv : Adv; -fun measureless_A : A; -fun measurement_N : N; -fun measurer_N : N; -fun meat_N : N; -fun meat_safe_N : N; -fun meatball_N : N; -fun meatless_A : A; -fun meatpacking_N : N; -fun meatus_N : N; -fun meaty_A : A; -fun mebendazole_N : N; -fun mebibit_N : N; -fun mecca_N : N; -fun mechanic_A : A; -fun mechanic_N : N; -fun mechanical_A : A; -fun mechanically_Adv : Adv; -fun mechanics_N : N; -fun mechanism_N : N; -fun mechanist_N : N; -fun mechanistic_A : A; -fun mechanistically_Adv : Adv; -fun mechanization_N : N; -fun mechanize_V2 : V2; -fun mechanized_A : A; -fun meclizine_N : N; -fun meclofenamate_N : N; -fun meconium_N : N; -fun mecopteran_N : N; -fun mecopterous_A : A; -fun med_N : N; -fun medal_N : N; -fun medalist_N : N; -fun medallion_N : N; -fun medallist_N : N; -fun meddle_V : V; -fun meddler_N : N; -fun meddlesome_A : A; -fun meddling_N : N; -fun mediacy_N : N; -fun mediaeval_A : A; -fun medial_A : A; -fun medially_Adv : Adv; -fun median_A : A; -fun median_N : N; -fun mediant_N : N; -fun mediastinum_N : N; -fun mediate_A : A; -fun mediate_V : V; -fun mediate_V2 : V2; -fun mediated_A : A; -fun mediation_N : N; -fun mediator_N : N; -fun mediatorial_A : A; -fun mediatory_A : A; -fun mediatrix_N : N; -fun medic_N : N; -fun medical_A : A; -fun medical_N : N; -fun medically_Adv : Adv; -fun medicament_N : N; -fun medicare_N : N; -fun medicate_V2 : V2; -fun medication_N : N; -fun medicative_A : A; -fun medicinal_A : A; -fun medicinally_Adv : Adv; -fun medicine_N : N; -fun medicine_ball_N : N; -fun medicine_chest_N : N; -fun medicine_man_N : N; -fun medico_N : N; -fun medicolegal_A : A; -fun medieval_A : A; -fun medina_N : N; -fun mediocre_A : A; -fun mediocrity_N : N; -fun meditate_V : V; -fun meditate_V2 : V2; -fun meditation_N : N; -fun meditative_A : A; -fun meditatively_Adv : Adv; -fun mediterranean_A : A; -fun medium_A : A; -fun medium_N : N; -fun medium_dry_A : A; -fun medium_grade_A : A; -fun medium_large_A : A; -fun medium_sized_A : A; -fun medlar_N : N; -fun medley_N : N; -fun medroxyprogesterone_N : N; -fun medulla_N : N; -fun medullary_A : A; -fun medusa_N : N; -fun medusoid_A : A; -fun meed_N : N; -fun meek_A : A; -fun meekly_Adv : Adv; -fun meekness_N : N; -fun meerkat_N : N; -fun meerschaum_N : N; -fun meet_A : A; -fun meet_N : N; -fun meet_V : V; -fun meet_V2 : V2; -fun meet_V2V : V2V; -fun meeting_N : N; -fun meeting_house_N : N; -fun meeting_place_N : N; -fun mefloquine_N : N; -fun megabit_N : N; -fun megabyte_N : N; -fun megacolon_N : N; -fun megacycle_N : N; -fun megadeath_N : N; -fun megaflop_N : N; -fun megagametophyte_N : N; -fun megahertz_N : N; -fun megakaryocyte_N : N; -fun megakaryocytic_A : A; -fun megalith_N : N; -fun megalithic_A : A; -fun megaloblast_N : N; -fun megaloblastic_A : A; -fun megalocyte_N : N; -fun megalomania_N : N; -fun megalomaniac_N : N; -fun megalomaniacal_A : A; -fun megalopolis_N : N; -fun megalosaur_N : N; -fun megaphone_N : N; -fun megapode_N : N; -fun megascopic_A : A; -fun megasporangium_N : N; -fun megaspore_N : N; -fun megasporophyll_N : N; -fun megatherian_N : N; -fun megaton_N : N; -fun megawatt_N : N; -fun megestrol_N : N; -fun megillah_N : N; -fun megilp_N : N; -fun megohm_N : N; -fun megrim_N : N; -fun meiosis_N : N; -fun meiotic_A : A; -fun meitnerium_N : N; -fun melagra_N : N; -fun melamine_N : N; -fun melancholia_N : N; -fun melancholic_A : A; -fun melancholic_N : N; -fun melancholy_A : A; -fun melancholy_N : N; -fun melange_N : N; -fun melanin_N : N; -fun melanoblast_N : N; -fun melanocyte_N : N; -fun melanoderma_N : N; -fun melanoma_N : N; -fun melanosis_N : N; -fun melatonin_N : N; -fun meld_V2 : V2; -fun melee_N : N; -fun melena_N : N; -fun melilotus_N : N; -fun meliorate_V : V; -fun meliorate_V2 : V2; -fun melioration_N : N; -fun meliorism_N : N; -fun mellifluous_A : A; -fun mellow_A : A; -fun mellow_V : V; -fun mellow_V2 : V2; -fun mellowing_N : N; -fun mellowingly_Adv : Adv; -fun mellowly_Adv : Adv; -fun mellowness_N : N; -fun melodic_A : A; -fun melodically_Adv : Adv; -fun melodious_A : A; -fun melodiously_Adv : Adv; -fun melodiousness_N : N; -fun melodrama_N : N; -fun melodramatic_A : A; -fun melodramatically_Adv : Adv; -fun melody_N : N; -fun melon_N : N; -fun melosa_N : N; -fun melphalan_N : N; -fun melt_V : V; -fun melt_V2 : V2; -fun meltable_A : A; -fun meltdown_N : N; -fun melted_A : A; -fun melter_N : N; -fun melting_A : A; -fun melting_point_N : N; -fun melting_pot_N : N; -fun meltwater_N : N; -fun mem_N : N; -fun member_N : N; -fun membered_A : A; -fun memberless_A : A; -fun membership_N : N; -fun membrane_N : N; -fun membranous_A : A; -fun meme_N : N; -fun memento_N : N; -fun memo_N : N; -fun memoir_N : N; -fun memorabilia_N : N; -fun memorability_N : N; -fun memorable_A : A; -fun memorably_Adv : Adv; -fun memorandum_N : N; -fun memorial_N : N; -fun memorialize_V2 : V2; -fun memorization_N : N; -fun memorize_V2 : V2; -fun memorizer_N : N; -fun memory_N : N; -fun memsahib_N : N; -fun menace_N : N; -fun menace_V2 : V2; -fun menacingly_Adv : Adv; -fun menage_N : N; -fun menagerie_N : N; -fun menarche_N : N; -fun mend_N : N; -fun mend_V : V; -fun mend_V2 : V2; -fun mendacious_A : A; -fun mendaciously_Adv : Adv; -fun mendacity_N : N; -fun mendelevium_N : N; -fun mendelian_A : A; -fun mender_N : N; -fun mendicant_A : A; -fun mendicant_N : N; -fun mending_N : N; -fun menhaden_N : N; -fun menhir_N : N; -fun menial_A : A; -fun menial_N : N; -fun menially_Adv : Adv; -fun meningeal_A : A; -fun meningioma_N : N; -fun meningism_N : N; -fun meningitis_N : N; -fun meningocele_N : N; -fun meningoencephalitis_N : N; -fun meninx_N : N; -fun meniscectomy_N : N; -fun meniscus_N : N; -fun menopausal_A : A; -fun menopause_N : N; -fun menorah_N : N; -fun menorrhagia_N : N; -fun menorrhea_N : N; -fun mensal_A : A; -fun mensch_N : N; -fun menstrual_A : A; -fun menstruate_V : V; -fun menstruation_N : N; -fun menstruum_N : N; -fun mensurable_A : A; -fun mensural_A : A; -fun mensuration_N : N; -fun mental_A : A; -fun mentalism_N : N; -fun mentality_N : N; -fun mentally_Adv : Adv; -fun mentally_ill_A : A; -fun menthol_N : N; -fun mentholated_A : A; -fun mention_N : N; -fun mention_V : V; -fun mention_V2 : V2; -fun mention_VS : VS; -fun mentioned_A : A; -fun mentioner_N : N; -fun mentor_N : N; -fun mentum_N : N; -fun menu_N : N; -fun meow_N : N; -fun meow_V : V; -fun meperidine_N : N; -fun mephenytoin_N : N; -fun mephistophelian_A : A; -fun mephitis_N : N; -fun mephobarbital_N : N; -fun meprobamate_N : N; -fun meralgia_N : N; -fun merbromine_N : N; -fun mercantile_A : A; -fun mercantilism_N : N; -fun mercaptopurine_N : N; -fun mercenary_A : A; -fun mercenary_N : N; -fun mercer_N : N; -fun mercerize_V2 : V2; -fun mercerized_A : A; -fun merchandise_N : N; -fun merchant_N : N; -fun merchantability_N : N; -fun merchantman_N : N; -fun merciful_A : A; -fun mercifully_Adv : Adv; -fun mercifulness_N : N; -fun merciless_A : A; -fun mercilessly_Adv : Adv; -fun mercilessness_N : N; -fun mercurial_A : A; -fun mercuric_A : A; -fun mercury_N : N; -fun mercury_contaminated_A : A; -fun mercy_N : N; -fun mere_A : A; -fun mere_N : N; -fun merely_Adv : Adv; -fun merestone_N : N; -fun meretricious_A : A; -fun meretriciously_Adv : Adv; -fun meretriciousness_N : N; -fun merganser_N : N; -fun merge_V : V; -fun merge_V2 : V2; -fun merger_N : N; -fun merging_N : N; -fun mericarp_N : N; -fun meridian_A : A; -fun meridian_N : N; -fun meridional_A : A; -fun meringue_N : N; -fun merino_N : N; -fun merino_sheep_N : N; -fun meristem_N : N; -fun merit_N : N; -fun merit_V2 : V2; -fun merited_A : A; -fun meritocracy_N : N; -fun meritocratic_A : A; -fun meritorious_A : A; -fun meritoriously_Adv : Adv; -fun merlon_N : N; -fun mermaid_N : N; -fun merman_N : N; -fun meromelia_N : N; -fun meronym_N : N; -fun meronymy_N : N; -fun merozoite_N : N; -fun merrily_Adv : Adv; -fun merriment_N : N; -fun merry_A : A; -fun merry_go_round_N : N; -fun merry_go_round_N : N; -fun merrymaker_N : N; -fun merrymaking_N : N; -fun mesa_N : N; -fun mesalliance_N : N; -fun mescal_N : N; -fun mescaline_N : N; -fun meseems_Adv : Adv; -fun mesenchyme_N : N; -fun mesenteric_A : A; -fun mesentery_N : N; -fun mesh_N : N; -fun mesh_V : V; -fun mesh_V2 : V2; -fun meshed_A : A; -fun meshugaas_N : N; -fun meshugge_A : A; -fun meshuggeneh_N : N; -fun mesial_A : A; -fun mesic_A : A; -fun mesmeric_A : A; -fun mesmerism_N : N; -fun mesmerist_N : N; -fun mesmerize_V2 : V2; -fun mesoblastic_A : A; -fun mesocarp_N : N; -fun mesocolon_N : N; -fun mesoderm_N : N; -fun mesohippus_N : N; -fun mesolithic_A : A; -fun mesomorph_N : N; -fun mesomorphic_A : A; -fun meson_N : N; -fun mesonic_A : A; -fun mesophyte_N : N; -fun mesophytic_A : A; -fun mesosphere_N : N; -fun mesothelioma_N : N; -fun mesothelium_N : N; -fun mesquite_N : N; -fun mess_N : N; -fun mess_V : V; -fun mess_V2 : V2; -fun mess_jacket_N : N; -fun mess_up_N : N; -fun message_N : N; -fun messaging_N : N; -fun messenger_N : N; -fun messenger_rna_PN : PN; -fun messiah_N : N; -fun messiahship_N : N; -fun messianic_A : A; -fun messily_Adv : Adv; -fun messiness_N : N; -fun messmate_N : N; -fun messuage_N : N; -fun messy_A : A; -fun mestiza_N : N; -fun mestizo_N : N; -fun mestranol_N : N; -fun metabolic_A : A; -fun metabolically_Adv : Adv; -fun metabolism_N : N; -fun metabolite_N : N; -fun metabolize_V2 : V2; -fun metacarpal_A : A; -fun metacarpal_N : N; -fun metacarpus_N : N; -fun metacenter_N : N; -fun metacentric_A : A; -fun metadata_N : N; -fun metagenesis_N : N; -fun metagrobolized_A : A; -fun metaknowledge_N : N; -fun metal_N : N; -fun metal_V2 : V2; -fun metal_colored_A : A; -fun metal_cutting_A : A; -fun metalanguage_N : N; -fun metalepsis_N : N; -fun metalhead_N : N; -fun metallic_A : A; -fun metallic_N : N; -fun metallike_A : A; -fun metalloid_A : A; -fun metallurgical_A : A; -fun metallurgist_N : N; -fun metallurgy_N : N; -fun metalware_N : N; -fun metalwork_N : N; -fun metalworker_N : N; -fun metalworking_N : N; -fun metamathematics_N : N; -fun metamere_N : N; -fun metameric_A : A; -fun metamorphic_A : A; -fun metamorphism_N : N; -fun metamorphopsia_N : N; -fun metamorphose_V : V; -fun metamorphose_V2 : V2; -fun metamorphosis_N : N; -fun metamorphous_A : A; -fun metaphase_N : N; -fun metaphor_N : N; -fun metaphorical_A : A; -fun metaphorically_Adv : Adv; -fun metaphysical_A : A; -fun metaphysically_Adv : Adv; -fun metaphysics_N : N; -fun metaphysis_N : N; -fun metaproterenol_N : N; -fun metarule_N : N; -fun metasequoia_N : N; -fun metastability_N : N; -fun metastable_A : A; -fun metastasis_N : N; -fun metastatic_A : A; -fun metatarsal_A : A; -fun metatarsal_N : N; -fun metatarsus_N : N; -fun metatherian_N : N; -fun metathesis_N : N; -fun metazoan_N : N; -fun mete_V2 : V2; -fun metempsychosis_N : N; -fun metencephalon_N : N; -fun meteor_N : N; -fun meteoric_A : A; -fun meteorite_N : N; -fun meteoritic_A : A; -fun meteoroid_N : N; -fun meteorologic_A : A; -fun meteorological_A : A; -fun meteorologically_Adv : Adv; -fun meteorologist_N : N; -fun meteorology_N : N; -fun meteortropism_N : N; -fun meter_N : N; -fun meterstick_N : N; -fun metformin_N : N; -fun methacholine_N : N; -fun methadone_N : N; -fun methamphetamine_N : N; -fun methane_N : N; -fun methanogen_N : N; -fun methanol_N : N; -fun methapyrilene_N : N; -fun methaqualone_N : N; -fun metharbital_N : N; -fun metheglin_N : N; -fun methenamine_N : N; -fun methicillin_N : N; -fun methinks_Adv : Adv; -fun methionine_N : N; -fun methocarbamol_N : N; -fun method_N : N; -fun methodical_A : A; -fun methodically_Adv : Adv; -fun methodism_N : N; -fun methodist_A : A; -fun methodist_N : N; -fun methodological_A : A; -fun methodologically_Adv : Adv; -fun methodology_N : N; -fun methotrexate_N : N; -fun methought_Adv : Adv; -fun methyl_N : N; -fun methylated_A : A; -fun methyldopa_N : N; -fun methylenedioxymethamphetamine_N : N; -fun methylphenidate_N : N; -fun methyltestosterone_N : N; -fun metic_N : N; -fun metical_N : N; -fun meticulous_A : A; -fun meticulously_Adv : Adv; -fun meticulousness_N : N; -fun metier_N : N; -fun metonym_N : N; -fun metonymic_A : A; -fun metonymically_Adv : Adv; -fun metonymy_N : N; -fun metopion_N : N; -fun metoprolol_N : N; -fun metralgia_N : N; -fun metre_N : N; -fun metric_A : A; -fun metrical_A : A; -fun metrically_Adv : Adv; -fun metrication_N : N; -fun metricize_V2 : V2; -fun metrification_N : N; -fun metritis_N : N; -fun metro_N : N; -fun metrological_A : A; -fun metrology_N : N; -fun metronidazole_N : N; -fun metronome_N : N; -fun metropolis_N : N; -fun metropolitan_A : A; -fun metropolitan_N : N; -fun metroptosis_N : N; -fun metrorrhagia_N : N; -fun mettle_N : N; -fun mettlesome_A : A; -fun mettlesomeness_N : N; -fun mew_N : N; -fun mew_V : V; -fun mews_N : N; -fun mexican_A : A; -fun mexican_N : N; -fun mexiletine_N : N; -fun mezereon_N : N; -fun mezereum_N : N; -fun mezuzah_N : N; -fun mezzanine_A : A; -fun mezzanine_N : N; -fun mezzo_Adv : Adv; -fun mezzo_relievo_N : N; -fun mezzo_soprano_N : N; -fun mezzo_soprano_N : N; -fun mezzotint_N : N; -fun mg_N : N; -fun mho_N : N; -fun mi_N : N; -fun miaou_N : N; -fun miaou_V : V; -fun miaow_N : N; -fun miaow_V : V; -fun miasma_N : N; -fun miasmal_A : A; -fun miasmic_A : A; -fun mica_N : N; -fun micaceous_A : A; -fun micelle_N : N; -fun michaelmas_N : N; -fun mickey_N : N; -fun mickle_N : N; -fun miconazole_N : N; -fun micro_A : A; -fun micro_organism_N : N; -fun microbalance_N : N; -fun microbe_N : N; -fun microbial_A : A; -fun microbiologist_N : N; -fun microbiology_N : N; -fun microbrachia_N : N; -fun microbrewery_N : N; -fun microcephalic_A : A; -fun microcephaly_N : N; -fun microcosm_N : N; -fun microcosmic_A : A; -fun microcrystalline_A : A; -fun microcyte_N : N; -fun microcytosis_N : N; -fun microdot_N : N; -fun microeconomic_A : A; -fun microeconomics_N : N; -fun microeconomist_N : N; -fun microelectronic_A : A; -fun microelectronics_N : N; -fun microevolution_N : N; -fun microfarad_N : N; -fun microfiche_N : N; -fun microfilm_N : N; -fun microfilm_V2 : V2; -fun microflora_N : N; -fun microfossil_N : N; -fun microgametophyte_N : N; -fun microgauss_N : N; -fun microglia_N : N; -fun microgliacyte_N : N; -fun microgram_N : N; -fun micrometeoric_A : A; -fun micrometeorite_N : N; -fun micrometeoritic_A : A; -fun micrometer_N : N; -fun micrometry_N : N; -fun micron_N : N; -fun micronutrient_N : N; -fun microorganism_N : N; -fun micropaleontology_N : N; -fun micropenis_N : N; -fun microphage_N : N; -fun microphone_N : N; -fun microphoning_N : N; -fun microphotometer_N : N; -fun microprocessor_N : N; -fun micropylar_A : A; -fun micropyle_N : N; -fun microradian_N : N; -fun microscope_N : N; -fun microscopic_A : A; -fun microscopical_A : A; -fun microscopically_Adv : Adv; -fun microscopist_N : N; -fun microscopy_N : N; -fun microsecond_N : N; -fun microsomal_A : A; -fun microsome_N : N; -fun microsporangium_N : N; -fun microspore_N : N; -fun microsporidian_N : N; -fun microsporophyll_N : N; -fun microsurgery_N : N; -fun microtome_N : N; -fun microtubule_N : N; -fun microvolt_N : N; -fun microwave_N : N; -fun micturition_N : N; -fun mid_A : A; -fun mid_april_N : N; -fun mid_august_N : N; -fun mid_december_N : N; -fun mid_february_N : N; -fun mid_january_N : N; -fun mid_july_N : N; -fun mid_june_N : N; -fun mid_march_N : N; -fun mid_may_N : N; -fun mid_november_N : N; -fun mid_october_N : N; -fun mid_september_N : N; -fun mid_calf_N : N; -fun mid_off_N : N; -fun mid_off_N : N; -fun mid_on_N : N; -fun mid_on_N : N; -fun mid_water_N : N; -fun midafternoon_N : N; -fun midair_N : N; -fun midazolam_N : N; -fun midbrain_N : N; -fun midday_N : N; -fun midden_N : N; -fun middle_A : A; -fun middle_N : N; -fun middle_atlantic_A : A; -fun middle_c_PN : PN; -fun middle_aged_A : A; -fun middle_aged_A : A; -fun middle_class_A : A; -fun middle_class_A : A; -fun middle_distance_A : A; -fun middle_level_A : A; -fun middle_of_the_road_A : A; -fun middle_of_the_road_A : A; -fun middlebrow_N : N; -fun middleman_N : N; -fun middlemost_A : A; -fun middleweight_A : A; -fun middleweight_N : N; -fun middling_A : A; -fun middling_Adv : Adv; -fun middling_N : N; -fun middy_N : N; -fun midfield_N : N; -fun midge_N : N; -fun midget_N : N; -fun midgrass_N : N; -fun midi_A : A; -fun midinette_N : N; -fun midiron_N : N; -fun midland_N : N; -fun midmost_A : A; -fun midmost_Adv : Adv; -fun midnight_N : N; -fun midplane_N : N; -fun midrib_N : N; -fun midriff_N : N; -fun midshipman_N : N; -fun midships_Adv : Adv; -fun midst_N : N; -fun midstream_N : N; -fun midsummer_N : N; -fun midterm_N : N; -fun midway_A : A; -fun midway_Adv : Adv; -fun midway_N : N; -fun midweek_A : A; -fun midweek_Adv : Adv; -fun midweek_N : N; -fun midweekly_A : A; -fun midwestern_A : A; -fun midwife_N : N; -fun midwifery_N : N; -fun midwinter_N : N; -fun mien_N : N; -fun miff_V2 : V2; -fun might_N : N; -fun might_have_been_N : N; -fun might_have_been_N : N; -fun mightily_Adv : Adv; -fun mighty_A : A; -fun mighty_Adv : Adv; -fun mignonette_N : N; -fun migraine_N : N; -fun migrant_A : A; -fun migrant_N : N; -fun migrate_V : V; -fun migration_N : N; -fun migrational_A : A; -fun migrator_N : N; -fun migratory_A : A; -fun mihrab_N : N; -fun mikado_N : N; -fun mike_N : N; -fun mikvah_N : N; -fun mil_N : N; -fun milady_N : N; -fun milage_N : N; -fun milch_A : A; -fun mild_A : A; -fun mild_mannered_A : A; -fun mild_tasting_A : A; -fun mildew_N : N; -fun mildew_V : V; -fun mildew_V2 : V2; -fun mildly_Adv : Adv; -fun mildness_N : N; -fun mile_N : N; -fun mileage_N : N; -fun mileometer_N : N; -fun miler_N : N; -fun milestone_N : N; -fun milieu_N : N; -fun militainment_N : N; -fun militancy_N : N; -fun militant_A : A; -fun militant_N : N; -fun militarily_Adv : Adv; -fun militarism_N : N; -fun militarist_N : N; -fun militaristic_A : A; -fun militarized_A : A; -fun military_A : A; -fun military_N : N; -fun militate_V : V; -fun militia_N : N; -fun militiaman_N : N; -fun milk_N : N; -fun milk_V : V; -fun milk_V2 : V2; -fun milk_churn_N : N; -fun milk_powder_N : N; -fun milk_shake_N : N; -fun milk_sick_A : A; -fun milk_tooth_N : N; -fun milk_white_A : A; -fun milk_white_A : A; -fun milkbar_N : N; -fun milkcap_N : N; -fun milking_machine_N : N; -fun milkless_A : A; -fun milkmaid_N : N; -fun milkman_N : N; -fun milkshake_N : N; -fun milksop_N : N; -fun milkweed_N : N; -fun milkwort_N : N; -fun milky_A : A; -fun mill_N : N; -fun mill_V : V; -fun mill_V2 : V2; -fun mill_dam_N : N; -fun mill_girl_N : N; -fun mill_girl_N : N; -fun mill_hand_N : N; -fun mill_hand_N : N; -fun millboard_N : N; -fun milldam_N : N; -fun milled_A : A; -fun millenarian_A : A; -fun millenarian_N : N; -fun millenarianism_N : N; -fun millenary_A : A; -fun millenary_N : N; -fun millennial_A : A; -fun millennium_N : N; -fun millepede_N : N; -fun miller_N : N; -fun miller's_thumb_N : N; -fun millerite_N : N; -fun millet_N : N; -fun millettia_N : N; -fun milliammeter_N : N; -fun milliampere_N : N; -fun milliard_N : N; -fun millibar_N : N; -fun millicurie_N : N; -fun millidegree_N : N; -fun milliequivalent_N : N; -fun millifarad_N : N; -fun milligram_N : N; -fun millihenry_N : N; -fun milliliter_N : N; -fun millime_N : N; -fun millimeter_N : N; -fun millimetre_N : N; -fun milline_N : N; -fun milliner_N : N; -fun millinery_N : N; -fun milling_N : N; -fun million_A : A; -fun million_N : N; -fun millionaire_N : N; -fun millionairess_N : N; -fun millionfold_Adv : Adv; -fun millionth_A : A; -fun millionth_N : N; -fun millipede_N : N; -fun milliradian_N : N; -fun millisecond_N : N; -fun millivolt_N : N; -fun millivoltmeter_N : N; -fun milliwatt_N : N; -fun millpond_N : N; -fun millrace_N : N; -fun millstone_N : N; -fun millwheel_N : N; -fun millwork_N : N; -fun millwright_N : N; -fun milo_N : N; -fun milometer_N : N; -fun milord_N : N; -fun milt_N : N; -fun mime_N : N; -fun mime_V : V; -fun mime_V2 : V2; -fun mimeograph_N : N; -fun mimeograph_V2 : V2; -fun mimesis_N : N; -fun mimetic_A : A; -fun mimic_A : A; -fun mimic_N : N; -fun mimic_V2 : V2; -fun mimicry_N : N; -fun mimosa_N : N; -fun min_N : N; -fun minaret_N : N; -fun minatory_A : A; -fun mince_N : N; -fun mince_V : V; -fun mince_V2 : V2; -fun mince_pie_N : N; -fun mincemeat_N : N; -fun mincer_N : N; -fun mincing_A : A; -fun mincingly_Adv : Adv; -fun mind_N : N; -fun mind_V : V; -fun mind_V2 : V2; -fun mind_VS : VS; -fun mind_altering_A : A; -fun mind_bending_A : A; -fun mind_bending_A : A; -fun mind_blowing_A : A; -fun mind_blowing_A : A; -fun mind_boggling_A : A; -fun mind_boggling_A : A; -fun mind_expanding_A : A; -fun mind_reader_N : N; -fun minded_A : A; -fun minder_N : N; -fun mindful_A : A; -fun mindfully_Adv : Adv; -fun mindfulness_N : N; -fun mindless_A : A; -fun mindlessly_Adv : Adv; -fun mindlessness_N : N; -fun mine_A : A; -fun mine_N : N; -fun mine_V : V; -fun mine_V2 : V2; -fun mine_detector_N : N; -fun mine_disposal_N : N; -fun mined_A : A; -fun minefield_N : N; -fun minelayer_N : N; -fun minelaying_N : N; -fun miner_N : N; -fun mineral_A : A; -fun mineral_N : N; -fun mineralocorticoid_N : N; -fun mineralogist_N : N; -fun mineralogy_N : N; -fun mineshaft_N : N; -fun minestrone_N : N; -fun minesweeper_N : N; -fun minesweeping_N : N; -fun mineworker_N : N; -fun minge_N : N; -fun mingle_V : V; -fun mingle_V2 : V2; -fun mingling_N : N; -fun mingy_A : A; -fun mini_A : A; -fun miniature_A : A; -fun miniature_N : N; -fun miniaturist_N : N; -fun miniaturization_N : N; -fun miniaturize_V2 : V2; -fun minibar_N : N; -fun minibike_N : N; -fun minibus_N : N; -fun minicab_N : N; -fun minicar_N : N; -fun minicomputer_N : N; -fun minim_N : N; -fun minimal_A : A; -fun minimalism_N : N; -fun minimalist_A : A; -fun minimalist_N : N; -fun minimally_Adv : Adv; -fun minimization_N : N; -fun minimize_V2 : V2; -fun minimized_A : A; -fun minimum_A : A; -fun minimum_N : N; -fun minimus_N : N; -fun mining_N : N; -fun minion_N : N; -fun miniskirt_N : N; -fun minister_N : N; -fun minister_V : V; -fun ministerial_A : A; -fun ministerially_Adv : Adv; -fun ministrant_A : A; -fun ministrant_N : N; -fun ministration_N : N; -fun ministry_N : N; -fun minisub_N : N; -fun minivan_N : N; -fun miniver_N : N; -fun mink_N : N; -fun minniebush_N : N; -fun minnow_N : N; -fun minocycline_N : N; -fun minor_A : A; -fun minor_N : N; -fun minority_N : N; -fun minotaur_N : N; -fun minoxidil_N : N; -fun minster_N : N; -fun minstrel_N : N; -fun minstrelsy_N : N; -fun mint_A : A; -fun mint_N : N; -fun mint_V2 : V2; -fun mint_scented_A : A; -fun mintage_N : N; -fun mintmark_N : N; -fun minty_A : A; -fun minuend_N : N; -fun minuet_N : N; -fun minus_A : A; -fun minus_N : N; -fun minus_Prep : Prep; -fun minuscule_A : A; -fun minuscule_N : N; -fun minute_A : A; -fun minute_N : N; -fun minute_V2 : V2; -fun minute_book_N : N; -fun minute_gun_N : N; -fun minute_hand_N : N; -fun minutely_Adv : Adv; -fun minuteman_N : N; -fun minuteness_N : N; -fun minutes_N : N; -fun minutia_N : N; -fun minx_N : N; -fun minyan_N : N; -fun miotic_A : A; -fun miracle_N : N; -fun miraculous_A : A; -fun miraculously_Adv : Adv; -fun mirage_N : N; -fun mire_N : N; -fun mire_V : V; -fun mire_V2 : V2; -fun miro_N : N; -fun mirror_N : N; -fun mirror_V2 : V2; -fun mirrored_A : A; -fun mirrorlike_A : A; -fun mirth_N : N; -fun mirthful_A : A; -fun mirthless_A : A; -fun miry_A : A; -fun misadventure_N : N; -fun misadvise_V2 : V2; -fun misalignment_N : N; -fun misalliance_N : N; -fun misanthrope_N : N; -fun misanthropic_A : A; -fun misanthropy_N : N; -fun misapplication_N : N; -fun misapply_V2 : V2; -fun misapprehend_V2 : V2; -fun misapprehension_N : N; -fun misappropriate_V2 : V2; -fun misappropriation_N : N; -fun misbegotten_A : A; -fun misbehave_V : V; -fun misbehave_V2 : V2; -fun misbehavior_N : N; -fun misbehaviour_N : N; -fun misbranded_A : A; -fun miscalculate_V : V; -fun miscalculate_V2 : V2; -fun miscalculation_N : N; -fun miscall_V2 : V2; -fun miscarriage_N : N; -fun miscarry_V2 : V2; -fun miscast_V2 : V2; -fun miscegenation_N : N; -fun miscellaneous_A : A; -fun miscellany_N : N; -fun mischance_N : N; -fun mischief_N : N; -fun mischief_maker_N : N; -fun mischief_making_N : N; -fun mischievous_A : A; -fun mischievousness_N : N; -fun miscible_A : A; -fun misconceive_V : V; -fun misconceive_V2 : V2; -fun misconception_N : N; -fun misconduct_N : N; -fun misconduct_V2 : V2; -fun misconstrual_N : N; -fun misconstruction_N : N; -fun misconstrue_V2 : V2; -fun miscount_N : N; -fun miscount_V : V; -fun miscount_V2 : V2; -fun miscreant_N : N; -fun miscue_N : N; -fun misdate_V2 : V2; -fun misdeal_N : N; -fun misdeal_V : V; -fun misdeal_V2 : V2; -fun misdeed_N : N; -fun misdemeanor_N : N; -fun misdemeanour_N : N; -fun misdirect_V2 : V2; -fun misdirection_N : N; -fun misdoing_N : N; -fun mise_en_scene_N : N; -fun miser_N : N; -fun miserable_A : A; -fun miserably_Adv : Adv; -fun miserliness_N : N; -fun miserly_A : A; -fun misery_N : N; -fun misfeasance_N : N; -fun misfire_N : N; -fun misfire_V : V; -fun misfit_N : N; -fun misfortune_N : N; -fun misgive_V2 : V2; -fun misgiving_N : N; -fun misgovern_V2 : V2; -fun misgovernment_N : N; -fun misguide_V2 : V2; -fun misguided_A : A; -fun mishandle_V2 : V2; -fun mishap_N : N; -fun mishmash_N : N; -fun mishpocha_N : N; -fun misinform_V2 : V2; -fun misinformation_N : N; -fun misinterpret_V2 : V2; -fun misinterpretation_N : N; -fun misjudge_V : V; -fun misjudge_V2 : V2; -fun mislaid_A : A; -fun mislay_V2 : V2; -fun mislead_V2 : V2; -fun misleader_N : N; -fun mismanage_V2 : V2; -fun mismanagement_N : N; -fun mismatch_N : N; -fun mismatched_A : A; -fun misname_V2 : V2; -fun misnomer_N : N; -fun miso_N : N; -fun misocainea_N : N; -fun misogamist_N : N; -fun misogamy_N : N; -fun misogynic_A : A; -fun misogynist_N : N; -fun misogynous_A : A; -fun misogyny_N : N; -fun misology_N : N; -fun misoneism_N : N; -fun misopedia_N : N; -fun misplace_V2 : V2; -fun misplaced_A : A; -fun misprint_N : N; -fun misprint_V2 : V2; -fun mispronounce_V2 : V2; -fun mispronunciation_N : N; -fun misquotation_N : N; -fun misquote_V2 : V2; -fun misread_V2 : V2; -fun misreading_N : N; -fun misrelated_A : A; -fun misrepresent_V2 : V2; -fun misrepresentation_N : N; -fun misrule_N : N; -fun miss_N : N; -fun miss_V : V; -fun miss_V2 : V2; -fun missal_N : N; -fun misshapen_A : A; -fun missile_N : N; -fun missing_A : A; -fun mission_N : N; -fun missionary_A : A; -fun missionary_N : N; -fun missis_N : N; -fun missive_N : N; -fun misspell_V : V; -fun misspell_V2 : V2; -fun misspelling_N : N; -fun misspend_V2 : V2; -fun misstate_V2 : V2; -fun misstatement_N : N; -fun missus_N : N; -fun missy_N : N; -fun mist_N : N; -fun mist_V : V; -fun mist_V2 : V2; -fun mistake_N : N; -fun mistake_V : V; -fun mistake_V2 : V2; -fun mistaken_A : A; -fun mistakenly_Adv : Adv; -fun mister_N : N; -fun mistflower_N : N; -fun mistily_Adv : Adv; -fun mistime_V2 : V2; -fun mistiness_N : N; -fun mistletoe_N : N; -fun mistral_N : N; -fun mistranslate_V2 : V2; -fun mistranslation_N : N; -fun mistreat_V2 : V2; -fun mistreatment_N : N; -fun mistress_N : N; -fun mistrial_N : N; -fun mistrust_N : N; -fun mistrust_V2 : V2; -fun mistrustful_A : A; -fun misty_A : A; -fun misty_eyed_A : A; -fun misunderstand_V2 : V2; -fun misunderstanding_N : N; -fun misunderstood_A : A; -fun misuse_N : N; -fun misuse_V2 : V2; -fun misused_A : A; -fun mite_N : N; -fun miter_N : N; -fun miterwort_N : N; -fun mithraic_A : A; -fun mithramycin_N : N; -fun mitigable_A : A; -fun mitigate_V2 : V2; -fun mitigated_A : A; -fun mitigation_N : N; -fun mitochondrion_N : N; -fun mitogen_N : N; -fun mitomycin_N : N; -fun mitosis_N : N; -fun mitotic_A : A; -fun mitral_A : A; -fun mitre_N : N; -fun mitre_joint_N : N; -fun mitt_N : N; -fun mittelschmerz_N : N; -fun mitten_N : N; -fun mitzvah_N : N; -fun mix_N : N; -fun mix_V : V; -fun mix_V2 : V2; -fun mix_up_N : N; -fun mixed_A : A; -fun mixed_blood_N : N; -fun mixed_up_A : A; -fun mixer_N : N; -fun mixology_N : N; -fun mixture_N : N; -fun mizen_N : N; -fun mizzen_N : N; -fun mizzen_mast_N : N; -fun mizzenmast_N : N; -fun mizzle_V : V; -fun ml_N : N; -fun mm_N : N; -fun mnemonic_A : A; -fun mnemonic_N : N; -fun mnemonics_N : N; -fun mnemonist_N : N; -fun mo_N : N; -fun moa_N : N; -fun moan_N : N; -fun moan_V : V; -fun moan_V2 : V2; -fun moan_VS : VS; -fun moat_N : N; -fun moated_A : A; -fun mob_N : N; -fun mob_V2 : V2; -fun mobbish_A : A; -fun mobcap_N : N; -fun mobile_A : A; -fun mobile_N : N; -fun mobility_N : N; -fun mobilization_N : N; -fun mobilize_V : V; -fun mobilize_V2 : V2; -fun mobocracy_N : N; -fun mobster_N : N; -fun moccasin_N : N; -fun mocha_N : N; -fun mock_A : A; -fun mock_N : N; -fun mock_V : V; -fun mock_V2 : V2; -fun mock_heroic_N : N; -fun mock_up_N : N; -fun mock_up_N : N; -fun mocker_N : N; -fun mockernut_N : N; -fun mockery_N : N; -fun mocking_A : A; -fun mockingbird_N : N; -fun mockingly_Adv : Adv; -fun mod_A : A; -fun mod_N : N; -fun mod_cons_N : N; -fun modal_A : A; -fun modality_N : N; -fun mode_N : N; -fun model_N : N; -fun model_V : V; -fun model_V2 : V2; -fun modeled_A : A; -fun modeler_N : N; -fun modeling_N : N; -fun modeller_N : N; -fun modelling_N : N; -fun modem_N : N; -fun modem_V2 : V2; -fun moderate_A : A; -fun moderate_N : N; -fun moderate_V : V; -fun moderate_V2 : V2; -fun moderately_Adv : Adv; -fun moderating_A : A; -fun moderation_N : N; -fun moderationism_N : N; -fun moderationist_N : N; -fun moderato_A : A; -fun moderator_N : N; -fun moderatorship_N : N; -fun modern_A : A; -fun modern_N : N; -fun moderne_A : A; -fun modernism_N : N; -fun modernist_N : N; -fun modernistic_A : A; -fun modernity_N : N; -fun modernization_N : N; -fun modernize_V2 : V2; -fun modernized_A : A; -fun modest_A : A; -fun modestly_Adv : Adv; -fun modesty_N : N; -fun modicum_N : N; -fun modifiable_A : A; -fun modification_N : N; -fun modified_A : A; -fun modified_american_plan_PN : PN; -fun modifier_N : N; -fun modify_V2 : V2; -fun modillion_N : N; -fun modiolus_N : N; -fun modish_A : A; -fun modiste_N : N; -fun mods_N : N; -fun modular_A : A; -fun modulate_V : V; -fun modulate_V2 : V2; -fun modulated_A : A; -fun modulation_N : N; -fun module_N : N; -fun modulus_N : N; -fun modus_operandi_N : N; -fun modus_vivendi_N : N; -fun mogul_N : N; -fun mohair_N : N; -fun mohammedan_N : N; -fun mohawk_N : N; -fun moiety_N : N; -fun moil_V : V; -fun moire_A : A; -fun moire_N : N; -fun moist_A : A; -fun moisten_V : V; -fun moisten_V2 : V2; -fun moistening_N : N; -fun moisture_N : N; -fun moisturize_V : V; -fun moisturize_V2 : V2; -fun mojarra_N : N; -fun mojo_N : N; -fun moke_N : N; -fun moksa_N : N; -fun molal_A : A; -fun molality_N : N; -fun molar_A : A; -fun molar_N : N; -fun molarity_N : N; -fun molasses_N : N; -fun mold_N : N; -fun mold_V : V; -fun mold_V2 : V2; -fun moldboard_N : N; -fun molding_N : N; -fun moldy_A : A; -fun mole_N : N; -fun molecular_A : A; -fun molecule_N : N; -fun molehill_N : N; -fun moleskin_N : N; -fun molest_V2 : V2; -fun molestation_N : N; -fun molester_N : N; -fun molindone_N : N; -fun moll_N : N; -fun mollie_N : N; -fun mollification_N : N; -fun mollify_V2 : V2; -fun mollusc_N : N; -fun molluscum_N : N; -fun mollusk_N : N; -fun mollycoddle_N : N; -fun mollycoddle_V2 : V2; -fun moloch_N : N; -fun molt_N : N; -fun molten_A : A; -fun molter_N : N; -fun molto_Adv : Adv; -fun molybdenite_N : N; -fun molybdenum_N : N; -fun mombin_N : N; -fun moment_N : N; -fun momentarily_Adv : Adv; -fun momentary_A : A; -fun momentous_A : A; -fun momentously_Adv : Adv; -fun momentousness_N : N; -fun momentum_N : N; -fun momism_N : N; -fun monad_N : N; -fun monal_N : N; -fun monandrous_A : A; -fun monandry_N : N; -fun monarch_N : N; -fun monarchal_A : A; -fun monarchic_A : A; -fun monarchism_N : N; -fun monarchist_N : N; -fun monarchy_N : N; -fun monarda_N : N; -fun monastery_N : N; -fun monastic_A : A; -fun monasticism_N : N; -fun monatomic_A : A; -fun monaural_A : A; -fun monaurally_Adv : Adv; -fun monazite_N : N; -fun monday_N : N; -fun monegasque_A : A; -fun monegasque_N : N; -fun moneran_A : A; -fun moneran_N : N; -fun monestrous_A : A; -fun monetarism_N : N; -fun monetarist_N : N; -fun monetary_A : A; -fun monetization_N : N; -fun monetize_V2 : V2; -fun money_N : N; -fun money_grubber_N : N; -fun money_order_N : N; -fun money_spinner_N : N; -fun moneybag_N : N; -fun moneybox_N : N; -fun moneychanger_N : N; -fun moneyed_A : A; -fun moneygrubber_N : N; -fun moneylender_N : N; -fun moneyless_A : A; -fun moneymaker_N : N; -fun moneymaking_N : N; -fun moneywort_N : N; -fun monger_N : N; -fun mongo_N : N; -fun mongol_A : A; -fun mongol_N : N; -fun mongolian_A : A; -fun mongolian_N : N; -fun mongolism_N : N; -fun mongoloid_A : A; -fun mongoloid_N : N; -fun mongoose_N : N; -fun mongrel_A : A; -fun mongrel_N : N; -fun monilia_N : N; -fun monism_N : N; -fun monistic_A : A; -fun monition_N : N; -fun monitor_N : N; -fun monitor_V : V; -fun monitor_V2 : V2; -fun monitoring_N : N; -fun monk_N : N; -fun monkey_N : N; -fun monkey_V : V; -fun monkey_jacket_N : N; -fun monkey_nut_N : N; -fun monkey_puzzle_N : N; -fun monkey_wrench_N : N; -fun monkey_wrench_N : N; -fun monkfish_N : N; -fun monkish_A : A; -fun monkshood_N : N; -fun mono_A : A; -fun mono_iodotyrosine_N : N; -fun monoamine_N : N; -fun monoblast_N : N; -fun monocarboxylic_A : A; -fun monocarp_N : N; -fun monocarpic_A : A; -fun monochromacy_N : N; -fun monochromat_N : N; -fun monochromatic_A : A; -fun monochrome_A : A; -fun monochrome_N : N; -fun monocle_N : N; -fun monocled_A : A; -fun monoclinal_A : A; -fun monocline_N : N; -fun monoclinic_A : A; -fun monoclinous_A : A; -fun monoclonal_A : A; -fun monocot_N : N; -fun monocotyledonous_A : A; -fun monoculture_N : N; -fun monocyte_N : N; -fun monocytosis_N : N; -fun monodic_A : A; -fun monoecious_A : A; -fun monogamist_N : N; -fun monogamous_A : A; -fun monogamy_N : N; -fun monogenesis_N : N; -fun monogenic_A : A; -fun monogram_N : N; -fun monogram_V2 : V2; -fun monograph_N : N; -fun monogynous_A : A; -fun monogyny_N : N; -fun monohybrid_N : N; -fun monohydrate_N : N; -fun monolatry_N : N; -fun monolingual_A : A; -fun monolingual_N : N; -fun monolingually_Adv : Adv; -fun monolith_N : N; -fun monolithic_A : A; -fun monologist_N : N; -fun monologue_N : N; -fun monomania_N : N; -fun monomaniac_N : N; -fun monomaniacal_A : A; -fun monomer_N : N; -fun monometallic_A : A; -fun monomorphemic_A : A; -fun mononeuropathy_N : N; -fun mononuclear_A : A; -fun monophonic_A : A; -fun monophony_N : N; -fun monoplane_N : N; -fun monoplegia_N : N; -fun monopolist_N : N; -fun monopolistic_A : A; -fun monopolization_N : N; -fun monopolize_V2 : V2; -fun monopoly_N : N; -fun monopsony_N : N; -fun monopteral_A : A; -fun monorail_N : N; -fun monorchism_N : N; -fun monosaccharide_N : N; -fun monosemous_A : A; -fun monosemy_N : N; -fun monosomy_N : N; -fun monosyllabic_A : A; -fun monosyllabically_Adv : Adv; -fun monosyllable_N : N; -fun monotheism_N : N; -fun monotheist_N : N; -fun monotheistic_A : A; -fun monotone_N : N; -fun monotonic_A : A; -fun monotonous_A : A; -fun monotonously_Adv : Adv; -fun monotony_N : N; -fun monotreme_N : N; -fun monotype_N : N; -fun monotypic_A : A; -fun monounsaturated_A : A; -fun monovalent_A : A; -fun monoxide_N : N; -fun monozygotic_A : A; -fun mons_N : N; -fun monsieur_N : N; -fun monsignor_N : N; -fun monsoon_N : N; -fun monster_N : N; -fun monstera_N : N; -fun monstrance_N : N; -fun monstrosity_N : N; -fun monstrous_A : A; -fun montage_N : N; -fun montane_A : A; -fun monte_N : N; -fun month_N : N; -fun month_by_month_Adv : Adv; -fun month_of_sundays_PN : PN; -fun monthlong_A : A; -fun monthly_A : A; -fun monthly_Adv : Adv; -fun monthly_N : N; -fun montserratian_A : A; -fun montserratian_N : N; -fun monument_N : N; -fun monumental_A : A; -fun moo_N : N; -fun moo_V : V; -fun moo_cow_N : N; -fun mooch_V : V; -fun moocher_N : N; -fun mood_N : N; -fun moodily_Adv : Adv; -fun moodiness_N : N; -fun moody_A : A; -fun moon_N : N; -fun moon_V : V; -fun moon_V2 : V2; -fun moon_faced_A : A; -fun moon_splashed_A : A; -fun moon_worship_N : N; -fun moonbeam_N : N; -fun moonfish_N : N; -fun moonflower_N : N; -fun moonless_A : A; -fun moonlight_N : N; -fun moonlighter_N : N; -fun moonlike_A : A; -fun moonlit_A : A; -fun moonseed_N : N; -fun moonshine_N : N; -fun moonstone_N : N; -fun moonstruck_A : A; -fun moonwalk_N : N; -fun moonwort_N : N; -fun moony_A : A; -fun moor_N : N; -fun moor_V2 : V2; -fun moorage_N : N; -fun moorcock_N : N; -fun moorfowl_N : N; -fun moorgame_N : N; -fun moorhen_N : N; -fun mooring_N : N; -fun mooring_mast_N : N; -fun moorish_A : A; -fun moorland_N : N; -fun moose_N : N; -fun moosewood_N : N; -fun moot_A : A; -fun moot_N : N; -fun moot_V2 : V2; -fun mop_N : N; -fun mop_V : V; -fun mop_V2 : V2; -fun mop_headed_A : A; -fun mope_N : N; -fun mope_V : V; -fun moped_N : N; -fun moped_V2 : V2; -fun mopper_N : N; -fun moppet_N : N; -fun moquette_N : N; -fun moraceous_A : A; -fun moraine_N : N; -fun moral_A : A; -fun moral_N : N; -fun morale_N : N; -fun moralism_N : N; -fun moralist_N : N; -fun moralistic_A : A; -fun morality_N : N; -fun moralization_N : N; -fun moralize_V : V; -fun moralize_V2 : V2; -fun moralizing_N : N; -fun morally_Adv : Adv; -fun morass_N : N; -fun moratorium_N : N; -fun moray_N : N; -fun morbid_A : A; -fun morbidity_N : N; -fun morbidly_Adv : Adv; -fun morbidness_N : N; -fun morbilliform_A : A; -fun morceau_N : N; -fun mordacious_A : A; -fun mordaciously_Adv : Adv; -fun mordacity_N : N; -fun mordant_A : A; -fun mordant_N : N; -fun more_A : A; -fun more_Adv : Adv; -fun more_Det : Det; -fun more_N : N; -fun moreen_N : N; -fun morel_N : N; -fun morello_N : N; -fun moreover_Adv : Adv; -fun mores_N : N; -fun moresque_A : A; -fun morganatic_A : A; -fun morganite_N : N; -fun morgen_N : N; -fun morgue_N : N; -fun moribund_A : A; -fun morion_N : N; -fun mormon_A : A; -fun mormon_N : N; -fun mormonism_N : N; -fun morn_N : N; -fun morning_N : N; -fun morning_glory_N : N; -fun morning_room_N : N; -fun moroccan_A : A; -fun moroccan_N : N; -fun morocco_N : N; -fun moron_N : N; -fun moronic_A : A; -fun moronity_N : N; -fun morose_A : A; -fun morosely_Adv : Adv; -fun moroseness_N : N; -fun morosoph_N : N; -fun morphallaxis_N : N; -fun morphea_N : N; -fun morpheme_N : N; -fun morphemic_A : A; -fun morphia_N : N; -fun morphine_N : N; -fun morphogenesis_N : N; -fun morphologic_A : A; -fun morphological_A : A; -fun morphologically_Adv : Adv; -fun morphology_N : N; -fun morphophoneme_N : N; -fun morphophonemic_A : A; -fun morphophonemics_N : N; -fun morris_dance_N : N; -fun morrow_N : N; -fun morse_N : N; -fun morsel_N : N; -fun mortal_A : A; -fun mortal_N : N; -fun mortality_N : N; -fun mortally_Adv : Adv; -fun mortar_N : N; -fun mortar_V2 : V2; -fun mortarboard_N : N; -fun mortgage_N : N; -fun mortgage_V2 : V2; -fun mortgaged_A : A; -fun mortgagee_N : N; -fun mortgagor_N : N; -fun mortice_N : N; -fun mortice_V2 : V2; -fun mortician_N : N; -fun mortification_N : N; -fun mortify_V : V; -fun mortify_V2 : V2; -fun mortise_N : N; -fun mortise_V2 : V2; -fun mortmain_N : N; -fun mortuary_A : A; -fun mortuary_N : N; -fun morula_N : N; -fun mosaic_A : A; -fun mosaic_N : N; -fun mosaicism_N : N; -fun moselle_N : N; -fun mosey_V : V; -fun mosey_V2 : V2; -fun moshav_N : N; -fun moslem_A : A; -fun moslem_N : N; -fun mosque_N : N; -fun mosquito_N : N; -fun mosquito_craft_N : N; -fun mosquito_net_N : N; -fun mosquitofish_N : N; -fun moss_N : N; -fun moss_green_A : A; -fun moss_grown_A : A; -fun moss_grown_A : A; -fun moss_trooper_N : N; -fun mossback_N : N; -fun mossy_A : A; -fun most_A : A; -fun most_Adv : Adv; -fun most_Det : Det; -fun most_favored_nation_A : A; -fun most_valuable_A : A; -fun mostaccioli_N : N; -fun mostly_Adv : Adv; -fun mote_N : N; -fun motel_N : N; -fun motet_N : N; -fun moth_N : N; -fun moth_eaten_A : A; -fun moth_eaten_A : A; -fun mothball_N : N; -fun mother_N : N; -fun mother_V2 : V2; -fun mother_in_law_N : N; -fun mother_in_law_N : N; -fun mother_naked_A : A; -fun mother_of_pearl_N : N; -fun mother_of_pearl_N : N; -fun motherhood_N : N; -fun motherland_N : N; -fun motherless_A : A; -fun motherlike_A : A; -fun motherliness_N : N; -fun motherly_A : A; -fun motherwort_N : N; -fun mothproof_A : A; -fun mothproof_V2 : V2; -fun mothy_A : A; -fun motif_N : N; -fun motile_A : A; -fun motile_N : N; -fun motilin_N : N; -fun motility_N : N; -fun motion_N : N; -fun motion_V : V; -fun motion_V2 : V2; -fun motional_A : A; -fun motionless_A : A; -fun motionlessly_Adv : Adv; -fun motionlessness_N : N; -fun motivate_V2 : V2; -fun motivate_V2V : V2V; -fun motivate_VS : VS; -fun motivated_A : A; -fun motivation_N : N; -fun motivational_A : A; -fun motivative_A : A; -fun motive_A : A; -fun motive_N : N; -fun motiveless_A : A; -fun motley_A : A; -fun motley_N : N; -fun motmot_N : N; -fun motor_N : N; -fun motor_V : V; -fun motor_V2 : V2; -fun motor_assisted_A : A; -fun motor_assisted_A : A; -fun motorbike_N : N; -fun motorboat_N : N; -fun motorcade_N : N; -fun motorcar_N : N; -fun motorcoach_N : N; -fun motorcycle_N : N; -fun motorcycling_N : N; -fun motorcyclist_N : N; -fun motoring_N : N; -fun motorist_N : N; -fun motorization_N : N; -fun motorize_V2 : V2; -fun motorized_A : A; -fun motorman_N : N; -fun motormouth_N : N; -fun motorway_N : N; -fun mottle_N : N; -fun mottle_V2 : V2; -fun mottling_N : N; -fun motto_N : N; -fun mouflon_N : N; -fun moujik_N : N; -fun mould_N : N; -fun mould_V : V; -fun mould_V2 : V2; -fun moulder_V : V; -fun moulding_N : N; -fun mouldy_A : A; -fun moult_N : N; -fun moult_V : V; -fun moult_V2 : V2; -fun mound_N : N; -fun mounded_over_A : A; -fun mount_N : N; -fun mount_V : V; -fun mount_V2 : V2; -fun mount_VS : VS; -fun mountain_N : N; -fun mountaineer_N : N; -fun mountaineering_N : N; -fun mountainous_A : A; -fun mountainside_N : N; -fun mountebank_N : N; -fun mounted_A : A; -fun mounter_N : N; -fun mountie_N : N; -fun mounting_N : N; -fun mourn_V : V; -fun mourn_V2 : V2; -fun mourner_N : N; -fun mournful_A : A; -fun mournfully_Adv : Adv; -fun mournfulness_N : N; -fun mourning_N : N; -fun mourning_band_N : N; -fun mourning_ring_N : N; -fun mouse_N : N; -fun mouse_V : V; -fun mouse_eared_A : A; -fun mouse_sized_A : A; -fun mousepad_N : N; -fun mouser_N : N; -fun mousetrap_N : N; -fun moussaka_N : N; -fun mousse_N : N; -fun moustache_N : N; -fun mousy_A : A; -fun mouth_N : N; -fun mouth_V : V; -fun mouth_V2 : V2; -fun mouth_organ_N : N; -fun mouth_watering_A : A; -fun mouth_watering_A : A; -fun mouthbreeder_N : N; -fun mouthful_N : N; -fun mouthlike_A : A; -fun mouthpart_N : N; -fun mouthpiece_N : N; -fun mouton_N : N; -fun movability_N : N; -fun movable_A : A; -fun move_N : N; -fun move_V : V; -fun move_V2 : V2; -fun move_V2V : V2V; -fun move_VV : VV; -fun moved_A : A; -fun movement_N : N; -fun mover_N : N; -fun movie_N : N; -fun moviegoer_N : N; -fun moviemaking_N : N; -fun moving_A : A; -fun movingly_Adv : Adv; -fun mow_N : N; -fun mow_V : V; -fun mow_V2 : V2; -fun mower_N : N; -fun mown_A : A; -fun mozambican_A : A; -fun mozambican_N : N; -fun mozzarella_N : N; -fun mp_N : N; -fun mpg_N : N; -fun mph_N : N; -fun ms_N : N; -fun msasa_N : N; -fun msc_N : N; -fun mu_N : N; -fun much_A : A; -fun much_Adv : Adv; -fun much_Det : Det; -fun much_N : N; -fun much_as_Adv : Adv; -fun muchness_N : N; -fun muciferous_A : A; -fun mucilage_N : N; -fun mucin_N : N; -fun mucinoid_A : A; -fun mucinous_A : A; -fun muck_N : N; -fun muck_V : V; -fun muck_V2 : V2; -fun muck_heap_N : N; -fun muckle_N : N; -fun muckraker_N : N; -fun muckraking_N : N; -fun mucky_A : A; -fun mucocutaneous_A : A; -fun mucoid_A : A; -fun mucoid_N : N; -fun mucopolysaccharide_N : N; -fun mucopolysaccharidosis_N : N; -fun mucopurulent_A : A; -fun mucor_N : N; -fun mucosal_A : A; -fun mucous_A : A; -fun mucuna_N : N; -fun mucus_N : N; -fun mud_N : N; -fun mud_V2 : V2; -fun mud_bath_N : N; -fun mud_beplastered_A : A; -fun mud_brick_A : A; -fun mudder_N : N; -fun muddle_N : N; -fun muddle_V : V; -fun muddle_V2 : V2; -fun muddle_headed_A : A; -fun muddy_A : A; -fun muddy_V2 : V2; -fun mudguard_N : N; -fun mudhif_N : N; -fun mudra_N : N; -fun mudskipper_N : N; -fun mudslide_N : N; -fun mudslinger_N : N; -fun muesli_N : N; -fun muezzin_N : N; -fun muff_N : N; -fun muff_V2 : V2; -fun muffin_N : N; -fun muffin_man_N : N; -fun muffle_N : N; -fun muffle_V2 : V2; -fun muffled_A : A; -fun muffler_N : N; -fun mufti_N : N; -fun mug_N : N; -fun mug_V2 : V2; -fun muggee_N : N; -fun mugger_N : N; -fun mugginess_N : N; -fun mugging_N : N; -fun muggins_N : N; -fun muggy_A : A; -fun mugwort_N : N; -fun mugwump_N : N; -fun muhammadan_A : A; -fun muhammadan_N : N; -fun muhammadanism_N : N; -fun muishond_N : N; -fun mujahid_N : N; -fun mujahidin_N : N; -fun mujtihad_N : N; -fun mukataa_N : N; -fun mulatto_N : N; -fun mulberry_N : N; -fun mulch_N : N; -fun mulch_V2 : V2; -fun mulct_V2 : V2; -fun mule_N : N; -fun muleteer_N : N; -fun mulish_A : A; -fun mulishness_N : N; -fun mull_N : N; -fun mull_V2 : V2; -fun mullah_N : N; -fun mullein_N : N; -fun muller_N : N; -fun mullet_N : N; -fun mulligatawny_N : N; -fun mullion_N : N; -fun mullioned_A : A; -fun mulloway_N : N; -fun multi_billionaire_N : N; -fun multi_lingual_A : A; -fun multi_seeded_A : A; -fun multi_stemmed_A : A; -fun multicellular_A : A; -fun multicollinearity_N : N; -fun multicultural_A : A; -fun multiculturalism_N : N; -fun multidimensional_A : A; -fun multiethnic_A : A; -fun multifactorial_A : A; -fun multifarious_A : A; -fun multiflora_N : N; -fun multiform_A : A; -fun multilane_A : A; -fun multilateral_A : A; -fun multilaterally_Adv : Adv; -fun multilevel_A : A; -fun multilingual_A : A; -fun multimedia_N : N; -fun multinational_A : A; -fun multinucleate_A : A; -fun multiparous_A : A; -fun multipartite_A : A; -fun multiphase_A : A; -fun multiple_A : A; -fun multiple_N : N; -fun multiple_choice_A : A; -fun multiplex_A : A; -fun multiplex_N : N; -fun multiplexer_N : N; -fun multiplicand_N : N; -fun multiplication_N : N; -fun multiplicative_A : A; -fun multiplicatively_Adv : Adv; -fun multiplicity_N : N; -fun multiplied_A : A; -fun multiplier_N : N; -fun multiply_Adv : Adv; -fun multiply_V : V; -fun multiply_V2 : V2; -fun multipotent_A : A; -fun multiprocessing_N : N; -fun multiprocessor_N : N; -fun multiprogramming_N : N; -fun multipurpose_A : A; -fun multiracial_A : A; -fun multistage_N : N; -fun multistory_A : A; -fun multitude_N : N; -fun multitudinous_A : A; -fun multitudinousness_N : N; -fun multivalent_A : A; -fun multivariate_A : A; -fun multiversity_N : N; -fun multivitamin_N : N; -fun multum_in_parvo_N : N; -fun mum_A : A; -fun mum_N : N; -fun mumble_N : N; -fun mumble_V : V; -fun mumble_V2 : V2; -fun mumblety_peg_N : N; -fun mumbling_N : N; -fun mumbo_jumbo_N : N; -fun mummer_N : N; -fun mummery_N : N; -fun mummichog_N : N; -fun mummification_N : N; -fun mummify_V2 : V2; -fun mummy_N : N; -fun mumps_N : N; -fun mumpsimus_N : N; -fun munch_N : N; -fun munch_V : V; -fun munch_V2 : V2; -fun muncher_N : N; -fun mundane_A : A; -fun mundanely_Adv : Adv; -fun mung_N : N; -fun municipal_A : A; -fun municipality_N : N; -fun municipally_Adv : Adv; -fun munificence_N : N; -fun munificent_A : A; -fun muniments_N : N; -fun munition_N : N; -fun munition_V2 : V2; -fun munj_N : N; -fun muntjac_N : N; -fun muon_N : N; -fun mural_A : A; -fun mural_N : N; -fun muralist_N : N; -fun murder_N : N; -fun murder_V2 : V2; -fun murdered_A : A; -fun murderee_N : N; -fun murderer_N : N; -fun murderess_N : N; -fun murderous_A : A; -fun murderously_Adv : Adv; -fun murderousness_N : N; -fun murine_A : A; -fun murine_N : N; -fun murk_N : N; -fun murkily_Adv : Adv; -fun murky_A : A; -fun murmur_N : N; -fun murmur_V : V; -fun murmur_V2 : V2; -fun murmuring_A : A; -fun murmurous_A : A; -fun murphy_N : N; -fun murrain_N : N; -fun murre_N : N; -fun muscadine_N : N; -fun muscat_N : N; -fun muscatel_N : N; -fun muscle_N : N; -fun muscle_V : V; -fun muscle_V2 : V2; -fun muscle_bound_A : A; -fun muscle_bound_A : A; -fun muscleman_N : N; -fun muscovite_A : A; -fun muscovite_N : N; -fun muscovy_N : N; -fun muscular_A : A; -fun muscularity_N : N; -fun musculoskeletal_A : A; -fun muse_N : N; -fun muse_V : V; -fun muse_VS : VS; -fun muser_N : N; -fun musette_N : N; -fun museum_N : N; -fun mush_N : N; -fun musher_N : N; -fun mushiness_N : N; -fun mushroom_N : N; -fun mushroom_V : V; -fun mushy_A : A; -fun music_N : N; -fun music_box_N : N; -fun music_hall_N : N; -fun music_stand_N : N; -fun music_stool_N : N; -fun musical_A : A; -fun musical_N : N; -fun musical_box_N : N; -fun musicality_N : N; -fun musically_Adv : Adv; -fun musician_N : N; -fun musicianship_N : N; -fun musicological_A : A; -fun musicologically_Adv : Adv; -fun musicologist_N : N; -fun musicology_N : N; -fun musingly_Adv : Adv; -fun musk_N : N; -fun musk_deer_N : N; -fun musk_rose_N : N; -fun musk_scented_A : A; -fun muskellunge_N : N; -fun musket_N : N; -fun musketeer_N : N; -fun musketry_N : N; -fun muskiness_N : N; -fun muskmelon_N : N; -fun muskrat_N : N; -fun muskwood_N : N; -fun musky_A : A; -fun muslim_N : N; -fun muslin_N : N; -fun musnud_N : N; -fun musophobia_N : N; -fun musquash_N : N; -fun muss_N : N; -fun muss_V2 : V2; -fun mussel_N : N; -fun must_A : A; -fun must_N : N; -fun must_VV : VV; -fun mustache_N : N; -fun mustachio_N : N; -fun mustachioed_A : A; -fun mustang_N : N; -fun mustard_N : N; -fun muster_N : N; -fun muster_V : V; -fun muster_V2 : V2; -fun musth_N : N; -fun mustiness_N : N; -fun musty_A : A; -fun mutability_N : N; -fun mutable_A : A; -fun mutafacient_A : A; -fun mutagen_N : N; -fun mutagenesis_N : N; -fun mutagenic_A : A; -fun mutant_A : A; -fun mutant_N : N; -fun mutate_V : V; -fun mutate_V2 : V2; -fun mutation_N : N; -fun mutational_A : A; -fun mutatis_mutandis_Adv : Adv; -fun mutative_A : A; -fun mutchkin_N : N; -fun mute_A : A; -fun mute_N : N; -fun mute_V2 : V2; -fun mutely_Adv : Adv; -fun muteness_N : N; -fun mutilate_V : V; -fun mutilate_V2 : V2; -fun mutilation_N : N; -fun mutilator_N : N; -fun mutineer_N : N; -fun mutinous_A : A; -fun mutiny_N : N; -fun mutiny_V : V; -fun mutisia_N : N; -fun mutism_N : N; -fun muton_N : N; -fun mutt_N : N; -fun mutter_N : N; -fun mutter_V : V; -fun mutter_V2 : V2; -fun mutterer_N : N; -fun mutton_N : N; -fun mutton_head_N : N; -fun mutual_A : A; -fun mutuality_N : N; -fun mutually_Adv : Adv; -fun muzhik_N : N; -fun muzzle_N : N; -fun muzzle_V2 : V2; -fun muzzle_loading_A : A; -fun muzzle_velocity_N : N; -fun muzzler_N : N; -fun muzzy_A : A; -fun myalgia_N : N; -fun myalgic_A : A; -fun myasthenia_N : N; -fun mycelium_N : N; -fun mycobacteria_N : N; -fun mycologist_N : N; -fun mycology_N : N; -fun mycomycin_N : N; -fun mycophagist_N : N; -fun mycophagy_N : N; -fun mycoplasma_N : N; -fun mycotoxin_N : N; -fun mydriasis_N : N; -fun mydriatic_N : N; -fun myelatelia_N : N; -fun myelencephalon_N : N; -fun myelic_A : A; -fun myelin_N : N; -fun myelinated_A : A; -fun myelinic_A : A; -fun myelinization_N : N; -fun myelitis_N : N; -fun myeloblast_N : N; -fun myelocyte_N : N; -fun myelofibrosis_N : N; -fun myelogram_N : N; -fun myelography_N : N; -fun myeloid_A : A; -fun myeloma_N : N; -fun myelomeningocele_N : N; -fun myiasis_N : N; -fun mylodon_N : N; -fun mylodontid_N : N; -fun myna_N : N; -fun mynah_N : N; -fun myocardial_A : A; -fun myocardium_N : N; -fun myoclonus_N : N; -fun myofibril_N : N; -fun myoglobin_N : N; -fun myoglobinuria_N : N; -fun myogram_N : N; -fun myoid_A : A; -fun myology_N : N; -fun myoma_N : N; -fun myometritis_N : N; -fun myometrium_N : N; -fun myonecrosis_N : N; -fun myopathic_A : A; -fun myopathy_N : N; -fun myope_N : N; -fun myopia_N : N; -fun myopic_A : A; -fun myosarcoma_N : N; -fun myosin_N : N; -fun myositis_N : N; -fun myotomy_N : N; -fun myotonia_N : N; -fun myotonic_A : A; -fun myriad_A : A; -fun myriad_N : N; -fun myriagram_N : N; -fun myriameter_N : N; -fun myriapod_N : N; -fun myringectomy_N : N; -fun myringoplasty_N : N; -fun myringotomy_N : N; -fun myrmecophagous_A : A; -fun myrmecophile_N : N; -fun myrmecophilous_A : A; -fun myrmecophyte_N : N; -fun myrmecophytic_A : A; -fun myrmidon_N : N; -fun myrrh_N : N; -fun myrtle_N : N; -fun mysophilia_N : N; -fun mysophobia_N : N; -fun mysophobic_A : A; -fun mysterious_A : A; -fun mystery_N : N; -fun mystic_A : A; -fun mystic_N : N; -fun mystical_A : A; -fun mystically_Adv : Adv; -fun mysticism_N : N; -fun mystification_N : N; -fun mystify_V2 : V2; -fun mystique_N : N; -fun myth_N : N; -fun mythic_A : A; -fun mythical_A : A; -fun mythological_A : A; -fun mythologist_N : N; -fun mythologization_N : N; -fun mythology_N : N; -fun myxedema_N : N; -fun myxobacteria_N : N; -fun myxoma_N : N; -fun myxomatosis_N : N; -fun myxosporidian_N : N; -fun myxovirus_N : N; -fun naafi_N : N; -fun nab_V2 : V2; -fun nabob_N : N; -fun naboom_N : N; -fun nabumetone_N : N; -fun nacelle_N : N; -fun nacho_N : N; -fun nacre_N : N; -fun nacreous_A : A; -fun nadir_N : N; -fun nadolol_N : N; -fun nafcillin_N : N; -fun nag_N : N; -fun nag_V : V; -fun nag_V2 : V2; -fun nagami_N : N; -fun nagger_N : N; -fun nagi_N : N; -fun naiad_N : N; -fun naiant_A : A; -fun naif_N : N; -fun nail_N : N; -fun nail_V2 : V2; -fun nail_polish_N : N; -fun nail_varnish_N : N; -fun nailbrush_N : N; -fun nailer_N : N; -fun nailfile_N : N; -fun nailhead_N : N; -fun nainsook_N : N; -fun naira_N : N; -fun naive_A : A; -fun naive_1_A : A; -fun naive_2_A : A; -fun naively_Adv : Adv; -fun naivete_N : N; -fun naivety_N : N; -fun naked_A : A; -fun naked_muzzled_A : A; -fun naked_tailed_A : A; -fun nakedly_Adv : Adv; -fun nakedness_N : N; -fun nakedwood_N : N; -fun nalorphine_N : N; -fun naloxone_N : N; -fun naltrexone_N : N; -fun namby_pamby_A : A; -fun namby_pamby_A : A; -fun namby_pamby_N : N; -fun namby_pamby_N : N; -fun name_N : N; -fun name_V2 : V2; -fun name_V2V : V2V; -fun name_VS : VS; -fun name_day_N : N; -fun name_drop_V : V; -fun name_dropping_N : N; -fun name_dropping_N : N; -fun name_part_N : N; -fun nameko_N : N; -fun nameless_A : A; -fun namely_Adv : Adv; -fun nameplate_N : N; -fun namer_N : N; -fun namesake_N : N; -fun namibian_A : A; -fun namibian_N : N; -fun naming_N : N; -fun nan_N : N; -fun nandrolone_N : N; -fun nankeen_N : N; -fun nanny_N : N; -fun nanny_goat_N : N; -fun nanogram_N : N; -fun nanometer_N : N; -fun nanomia_N : N; -fun nanophthalmos_N : N; -fun nanosecond_N : N; -fun nanotechnology_N : N; -fun nanovolt_N : N; -fun nap_N : N; -fun nap_V : V; -fun nap_V2 : V2; -fun napalm_N : N; -fun nape_N : N; -fun napery_N : N; -fun naphazoline_N : N; -fun naphtha_N : N; -fun naphthalene_N : N; -fun naphthol_N : N; -fun napkin_N : N; -fun napkin_ring_N : N; -fun napoleon_N : N; -fun napoleonic_A : A; -fun napping_A : A; -fun nappy_N : N; -fun naprapath_N : N; -fun naprapathy_N : N; -fun naproxen_N : N; -fun napu_N : N; -fun naranjilla_N : N; -fun narc_N : N; -fun narcissism_N : N; -fun narcissist_N : N; -fun narcissus_N : N; -fun narco_state_N : N; -fun narcolepsy_N : N; -fun narcoleptic_A : A; -fun narcoleptic_N : N; -fun narcosis_N : N; -fun narcoterrorism_N : N; -fun narcotic_A : A; -fun narcotic_N : N; -fun nard_N : N; -fun nardoo_N : N; -fun narial_A : A; -fun naris_N : N; -fun nark_N : N; -fun nark_V2 : V2; -fun narrate_V2 : V2; -fun narration_N : N; -fun narrative_A : A; -fun narrative_N : N; -fun narrator_N : N; -fun narrow_A : A; -fun narrow_N : N; -fun narrow_V : V; -fun narrow_V2 : V2; -fun narrow_bodied_A : A; -fun narrow_minded_A : A; -fun narrow_minded_A : A; -fun narrow_mindedly_Adv : Adv; -fun narrow_mindedness_N : N; -fun narrow_mindedness_N : N; -fun narrow_mouthed_A : A; -fun narrowed_A : A; -fun narrowing_N : N; -fun narrowly_Adv : Adv; -fun narrowness_N : N; -fun narthex_N : N; -fun narwhal_N : N; -fun nary_A : A; -fun nary_Predet : Predet; -fun nasal_A : A; -fun nasal_N : N; -fun nasality_N : N; -fun nasalization_N : N; -fun nasalize_V2 : V2; -fun nasally_Adv : Adv; -fun nascent_A : A; -fun nasion_N : N; -fun nasopharyngeal_A : A; -fun nasopharynx_N : N; -fun nastily_Adv : Adv; -fun nastiness_N : N; -fun nasturtium_N : N; -fun nasty_A : A; -fun natal_A : A; -fun nation_N : N; -fun national_A : A; -fun national_N : N; -fun national_socialist_A : A; -fun nationalism_N : N; -fun nationalist_A : A; -fun nationalist_N : N; -fun nationalistic_A : A; -fun nationality_N : N; -fun nationalization_N : N; -fun nationalize_V2 : V2; -fun nationally_Adv : Adv; -fun nationhood_N : N; -fun nationwide_A : A; -fun nationwide_Adv : Adv; -fun native_A : A; -fun native_N : N; -fun native_born_A : A; -fun nativeness_N : N; -fun nativism_N : N; -fun nativist_A : A; -fun nativist_N : N; -fun nativity_N : N; -fun natriuresis_N : N; -fun natriuretic_A : A; -fun natrolite_N : N; -fun natter_V : V; -fun natter_V2 : V2; -fun natterjack_N : N; -fun nattily_Adv : Adv; -fun natty_A : A; -fun natural_A : A; -fun natural_N : N; -fun naturalism_N : N; -fun naturalist_N : N; -fun naturalistic_A : A; -fun naturalization_N : N; -fun naturalize_V : V; -fun naturalize_V2 : V2; -fun naturalized_A : A; -fun naturally_Adv : Adv; -fun naturally_occurring_A : A; -fun naturalness_N : N; -fun nature_N : N; -fun naturism_N : N; -fun naturist_N : N; -fun naturistic_A : A; -fun naturopath_N : N; -fun naturopathy_N : N; -fun naught_N : N; -fun naughtily_Adv : Adv; -fun naughtiness_N : N; -fun naughty_A : A; -fun naumachy_N : N; -fun nauruan_A : A; -fun nauruan_N : N; -fun nausea_N : N; -fun nauseate_V2 : V2; -fun nauseated_A : A; -fun nauseating_A : A; -fun nauseous_A : A; -fun nautch_N : N; -fun nautch_girl_N : N; -fun nautical_A : A; -fun nautilus_N : N; -fun naval_A : A; -fun nave_N : N; -fun navel_N : N; -fun navicular_A : A; -fun navigability_N : N; -fun navigable_A : A; -fun navigate_V : V; -fun navigate_V2 : V2; -fun navigation_N : N; -fun navigational_A : A; -fun navigator_N : N; -fun navvy_N : N; -fun navy_N : N; -fun nawab_N : N; -fun nay_Adv : Adv; -fun nay_N : N; -fun naysay_V2 : V2; -fun naysayer_N : N; -fun naysaying_N : N; -fun nazi_A : A; -fun nazi_N : N; -fun nazism_N : N; -fun nco_N : N; -fun ne'er_Adv : Adv; -fun ne'er_do_well_N : N; -fun ne_plus_ultra_N : N; -fun neanderthal_A : A; -fun neap_N : N; -fun neap_tide_N : N; -fun neapolitan_A : A; -fun neapolitan_N : N; -fun near_A : A; -fun near_Adv : Adv; -fun near_Prep : Prep; -fun near_V : V; -fun near_V2 : V2; -fun near_sighted_A : A; -fun nearby_A : A; -fun nearby_Adv : Adv; -fun nearer_Adv : Adv; -fun nearer_Prep : Prep; -fun nearest_Adv : Adv; -fun nearest_Prep : Prep; -fun nearness_N : N; -fun nearside_N : N; -fun nearsighted_A : A; -fun neat_A : A; -fun neaten_V2 : V2; -fun neatly_Adv : Adv; -fun neatness_N : N; -fun nebbish_N : N; -fun nebuchadnezzar_N : N; -fun nebula_N : N; -fun nebular_A : A; -fun nebule_N : N; -fun nebulous_A : A; -fun nebulously_Adv : Adv; -fun necessarily_Adv : Adv; -fun necessary_A : A; -fun necessary_N : N; -fun necessitarian_N : N; -fun necessitate_V2 : V2; -fun necessitous_A : A; -fun necessity_N : N; -fun neck_N : N; -fun neck_V : V; -fun neck_and_neck_A : A; -fun neck_and_neck_Adv : Adv; -fun neck_deep_A : A; -fun neckband_N : N; -fun neckcloth_N : N; -fun necked_A : A; -fun necker_N : N; -fun neckerchief_N : N; -fun necklace_N : N; -fun neckless_A : A; -fun necklet_N : N; -fun necklike_A : A; -fun neckline_N : N; -fun neckpiece_N : N; -fun necktie_N : N; -fun neckwear_N : N; -fun necrobiosis_N : N; -fun necrology_N : N; -fun necrolysis_N : N; -fun necromancer_N : N; -fun necromancy_N : N; -fun necromantic_A : A; -fun necrophagia_N : N; -fun necrophilia_N : N; -fun necropolis_N : N; -fun necrosis_N : N; -fun necrotic_A : A; -fun nectar_N : N; -fun nectar_rich_A : A; -fun nectariferous_A : A; -fun nectarine_N : N; -fun nectary_N : N; -fun nee_A : A; -fun need_N : N; -fun need_V : V; -fun need_V2 : V2; -fun need_V2V : V2V; -fun need_VS : VS; -fun need_VV : VV; -fun needed_A : A; -fun needful_A : A; -fun neediness_N : N; -fun needle_N : N; -fun needle_V2 : V2; -fun needlebush_N : N; -fun needlecraft_N : N; -fun needled_A : A; -fun needlefish_N : N; -fun needlepoint_N : N; -fun needless_A : A; -fun needlessly_Adv : Adv; -fun needlewoman_N : N; -fun needlewood_N : N; -fun needlework_N : N; -fun needleworker_N : N; -fun needs_Adv : Adv; -fun needy_A : A; -fun needy_N : N; -fun neem_N : N; -fun neencephalon_N : N; -fun nefarious_A : A; -fun nefariously_Adv : Adv; -fun nefariousness_N : N; -fun nefazodone_N : N; -fun negate_V2 : V2; -fun negation_N : N; -fun negative_A : A; -fun negative_N : N; -fun negative_V2 : V2; -fun negatively_Adv : Adv; -fun negativist_N : N; -fun negativity_N : N; -fun neglect_N : N; -fun neglect_V2 : V2; -fun neglected_A : A; -fun neglecter_N : N; -fun neglectful_A : A; -fun neglectfully_Adv : Adv; -fun neglectfulness_N : N; -fun neglige_N : N; -fun negligee_N : N; -fun negligence_N : N; -fun negligent_A : A; -fun negligently_Adv : Adv; -fun negligible_A : A; -fun negotiable_A : A; -fun negotiate_V : V; -fun negotiate_V2 : V2; -fun negotiate_VV : VV; -fun negotiation_N : N; -fun negotiator_N : N; -fun negotiatress_N : N; -fun negress_N : N; -fun negro_A : A; -fun negro_N : N; -fun negroid_A : A; -fun negroid_N : N; -fun negus_N : N; -fun neigh_N : N; -fun neigh_V : V; -fun neighbor_N : N; -fun neighbor_V2 : V2; -fun neighborhood_N : N; -fun neighborliness_N : N; -fun neighborly_A : A; -fun neighbour_N : N; -fun neighbour_V : V; -fun neighbour_V2 : V2; -fun neighbourhood_N : N; -fun neighbourliness_N : N; -fun neighbourly_A : A; -fun neither_A : A; -fun neither_Adv : Adv; -fun neither_Prep : Prep; -fun neither7nor_DConj : Conj; -fun nekton_N : N; -fun nelfinavir_N : N; -fun nelly_N : N; -fun nelson_N : N; -fun nem_con_Adv : Adv; -fun nematode_N : N; -fun nemesis_N : N; -fun nemophila_N : N; -fun neo_A : A; -fun neo_darwinian_A : A; -fun neo_darwinism_N : N; -fun neo_lamarckian_A : A; -fun neoclassic_A : A; -fun neoclassicism_N : N; -fun neoclassicist_A : A; -fun neoclassicist_N : N; -fun neocolonialism_N : N; -fun neoconservatism_N : N; -fun neoconservative_N : N; -fun neocortical_A : A; -fun neodymium_N : N; -fun neoexpressionism_N : N; -fun neoliberal_A : A; -fun neoliberal_N : N; -fun neoliberalism_N : N; -fun neolith_N : N; -fun neolithic_A : A; -fun neologism_N : N; -fun neologist_N : N; -fun neomycin_N : N; -fun neon_N : N; -fun neonatal_A : A; -fun neonate_N : N; -fun neonatology_N : N; -fun neopallium_N : N; -fun neophobia_N : N; -fun neophyte_N : N; -fun neoplasia_N : N; -fun neoplasm_N : N; -fun neoplastic_A : A; -fun neoprene_N : N; -fun neoromanticism_N : N; -fun neostigmine_N : N; -fun neotenic_A : A; -fun neoteny_N : N; -fun neotony_N : N; -fun nepalese_A : A; -fun nepalese_N : N; -fun nepali_A : A; -fun nepali_N : N; -fun nepheline_N : N; -fun nephelinite_N : N; -fun nephew_N : N; -fun nephology_N : N; -fun nephoscope_N : N; -fun nephralgia_N : N; -fun nephrectomy_N : N; -fun nephrite_N : N; -fun nephritic_A : A; -fun nephritis_N : N; -fun nephrocalcinosis_N : N; -fun nephrolithiasis_N : N; -fun nephrology_N : N; -fun nephron_N : N; -fun nephroptosis_N : N; -fun nephrosclerosis_N : N; -fun nephrotomy_N : N; -fun nephrotoxic_A : A; -fun nephrotoxin_N : N; -fun nephthytis_N : N; -fun nepotism_N : N; -fun nepotist_N : N; -fun neptunium_N : N; -fun nerd_N : N; -fun nereid_N : N; -fun nerita_N : N; -fun neritic_A : A; -fun neritid_N : N; -fun neritina_N : N; -fun nerve_N : N; -fun nerve_V2 : V2; -fun nerve_cell_N : N; -fun nerve_centre_N : N; -fun nerve_racking_A : A; -fun nerve_racking_A : A; -fun nerveless_A : A; -fun nerves_N : N; -fun nervous_A : A; -fun nervously_Adv : Adv; -fun nervousness_N : N; -fun nervy_A : A; -fun nescience_N : N; -fun nescient_A : A; -fun ness_N : N; -fun nest_N : N; -fun nest_V : V; -fun nest_egg_N : N; -fun nester_N : N; -fun nestle_V : V; -fun nestle_V2 : V2; -fun nestled_A : A; -fun nestling_N : N; -fun net_A : A; -fun net_N : N; -fun net_V2 : V2; -fun netball_N : N; -fun nether_A : A; -fun netherlander_N : N; -fun nethermost_A : A; -fun netmail_V2 : V2; -fun nett_A : A; -fun nett_V2 : V2; -fun netting_N : N; -fun nettle_N : N; -fun nettle_V2 : V2; -fun nettlerash_N : N; -fun network_N : N; -fun networklike_A : A; -fun neural_A : A; -fun neuralgia_N : N; -fun neuralgic_A : A; -fun neurasthenia_N : N; -fun neurasthenic_A : A; -fun neurasthenic_N : N; -fun neurectomy_N : N; -fun neurinoma_N : N; -fun neuritis_N : N; -fun neuroanatomic_A : A; -fun neuroanatomy_N : N; -fun neurobiological_A : A; -fun neurobiological_Adv : Adv; -fun neurobiologist_N : N; -fun neurobiology_N : N; -fun neuroblast_N : N; -fun neuroblastoma_N : N; -fun neurochemical_N : N; -fun neurodermatitis_N : N; -fun neuroendocrine_A : A; -fun neuroepithelioma_N : N; -fun neuroepithelium_N : N; -fun neuroethics_N : N; -fun neurofibroma_N : N; -fun neurofibromatosis_N : N; -fun neurogenesis_N : N; -fun neurogenic_A : A; -fun neuroglia_N : N; -fun neurogliacyte_N : N; -fun neuroglial_A : A; -fun neurohormone_N : N; -fun neurolemma_N : N; -fun neurolinguist_N : N; -fun neurolinguistics_N : N; -fun neurological_A : A; -fun neurologist_N : N; -fun neurology_N : N; -fun neuroma_N : N; -fun neuromatous_A : A; -fun neuromotor_A : A; -fun neuromuscular_A : A; -fun neuropathy_N : N; -fun neurophysiological_A : A; -fun neurophysiology_N : N; -fun neuropil_N : N; -fun neuroplasty_N : N; -fun neuropsychiatric_A : A; -fun neuropsychiatry_N : N; -fun neuropsychological_A : A; -fun neuropteron_N : N; -fun neurosarcoma_N : N; -fun neuroscience_N : N; -fun neuroscientist_N : N; -fun neurosis_N : N; -fun neurosurgeon_N : N; -fun neurosurgery_N : N; -fun neurosyphilis_N : N; -fun neurotic_A : A; -fun neurotic_N : N; -fun neurotically_Adv : Adv; -fun neurotoxic_A : A; -fun neurotoxin_N : N; -fun neurotransmitter_N : N; -fun neurotropic_A : A; -fun neurotropism_N : N; -fun neuter_A : A; -fun neuter_N : N; -fun neuter_V2 : V2; -fun neutering_N : N; -fun neutral_A : A; -fun neutral_N : N; -fun neutral_colored_A : A; -fun neutralism_N : N; -fun neutralist_N : N; -fun neutrality_N : N; -fun neutralization_N : N; -fun neutralize_V2 : V2; -fun neutralized_A : A; -fun neutrino_N : N; -fun neutron_N : N; -fun neutropenia_N : N; -fun neutrophil_N : N; -fun neve_N : N; -fun never_AdV : AdV; -fun never_Adv : Adv; -fun nevermore_Adv : Adv; -fun nevertheless_Adv : Adv; -fun nevirapine_N : N; -fun new_A : A; -fun new_Adv : Adv; -fun new_made_A : A; -fun new_mown_A : A; -fun newborn_A : A; -fun newcomer_N : N; -fun newel_N : N; -fun newfangled_A : A; -fun newfound_A : A; -fun newly_Adv : Adv; -fun newlywed_N : N; -fun newmarket_N : N; -fun newness_N : N; -fun news_N : N; -fun newsagent_N : N; -fun newsboy_N : N; -fun newscast_N : N; -fun newscaster_N : N; -fun newsdealer_N : N; -fun newsflash_N : N; -fun newsless_A : A; -fun newsletter_N : N; -fun newsmonger_N : N; -fun newspaper_N : N; -fun newspapering_N : N; -fun newspaperman_N : N; -fun newspeak_N : N; -fun newsprint_N : N; -fun newsreader_N : N; -fun newsreel_N : N; -fun newsroom_N : N; -fun newssheet_N : N; -fun newsstand_N : N; -fun newsvendor_N : N; -fun newswoman_N : N; -fun newsworthiness_N : N; -fun newsworthy_A : A; -fun newsy_A : A; -fun newt_N : N; -fun newton_N : N; -fun newtonian_A : A; -fun newtonian_N : N; -fun next_A : A; -fun next_Adv : Adv; -fun next_N : N; -fun next_Prep : Prep; -fun next_door_Adv : Adv; -fun nexus_N : N; -fun ngultrum_N : N; -fun ngwee_N : N; -fun nhs_N : N; -fun niacin_N : N; -fun nib_N : N; -fun nibbed_A : A; -fun nibble_N : N; -fun nibble_V : V; -fun nibble_V2 : V2; -fun nibbler_N : N; -fun niblick_N : N; -fun nicad_N : N; -fun nicaraguan_A : A; -fun nicaraguan_N : N; -fun nice_A : A; -fun nicely_Adv : Adv; -fun niceness_N : N; -fun nicety_N : N; -fun niche_N : N; -fun nick_N : N; -fun nick_V2 : V2; -fun nickel_N : N; -fun nickel_V2 : V2; -fun nickel_and_dime_A : A; -fun nicknack_N : N; -fun nickname_N : N; -fun nickname_V2 : V2; -fun nickname_VS : VS; -fun nicotine_N : N; -fun nidicolous_A : A; -fun nidifugous_A : A; -fun nidus_N : N; -fun niece_N : N; -fun nifedipine_N : N; -fun niff_N : N; -fun niffy_A : A; -fun nifty_A : A; -fun nigella_N : N; -fun nigerian_A : A; -fun nigerian_N : N; -fun nigerien_A : A; -fun nigerien_N : N; -fun niggard_N : N; -fun niggardliness_N : N; -fun niggardly_A : A; -fun nigger_N : N; -fun niggle_V : V; -fun niggling_A : A; -fun nigh_Adv : Adv; -fun nigher_Adv : Adv; -fun nighest_Adv : Adv; -fun night_N : N; -fun night_bell_N : N; -fun night_bird_N : N; -fun night_light_N : N; -fun night_light_N : N; -fun night_line_N : N; -fun night_line_N : N; -fun night_porter_N : N; -fun night_soil_N : N; -fun night_stop_N : N; -fun night_stop_N : N; -fun night_time_N : N; -fun night_watch_N : N; -fun night_watchman_N : N; -fun nightcap_N : N; -fun nightclub_N : N; -fun nightdress_N : N; -fun nightfall_N : N; -fun nightgown_N : N; -fun nighthawk_N : N; -fun nightie_N : N; -fun nightingale_N : N; -fun nightjar_N : N; -fun nightlife_N : N; -fun nightlong_A : A; -fun nightly_A : A; -fun nightly_Adv : Adv; -fun nightmare_N : N; -fun nightmarish_A : A; -fun nightshade_N : N; -fun nightshirt_N : N; -fun nightwear_N : N; -fun nightwork_N : N; -fun nihil_N : N; -fun nihilism_N : N; -fun nihilist_N : N; -fun nihilistic_A : A; -fun nil_N : N; -fun nilgai_N : N; -fun nilotic_A : A; -fun nilpotent_A : A; -fun nim_N : N; -fun nimble_A : A; -fun nimbleness_N : N; -fun nimblewill_N : N; -fun nimbly_Adv : Adv; -fun nimbus_N : N; -fun niminy_piminy_A : A; -fun nincompoop_N : N; -fun nine_A : A; -fun nine_N : N; -fun nine_membered_A : A; -fun nine_sided_A : A; -fun nine_spot_N : N; -fun ninefold_A : A; -fun ninefold_Adv : Adv; -fun ninepence_N : N; -fun ninepenny_A : A; -fun ninepin_N : N; -fun ninepins_N : N; -fun nineteen_A : A; -fun nineteen_N : N; -fun nineteenth_A : A; -fun nineteenth_N : N; -fun nineties_N : N; -fun ninetieth_A : A; -fun ninetieth_N : N; -fun ninety_A : A; -fun ninety_N : N; -fun ninety_eight_A : A; -fun ninety_fifth_A : A; -fun ninety_five_A : A; -fun ninety_four_A : A; -fun ninety_nine_A : A; -fun ninety_one_A : A; -fun ninety_seven_A : A; -fun ninety_six_A : A; -fun ninety_three_A : A; -fun ninety_two_A : A; -fun ninja_N : N; -fun ninjutsu_N : N; -fun ninny_N : N; -fun ninon_N : N; -fun ninth_A : A; -fun ninth_N : N; -fun niobite_N : N; -fun niobium_N : N; -fun nip_N : N; -fun nip_V : V; -fun nip_V2 : V2; -fun nipa_N : N; -fun nipper_N : N; -fun nipping_A : A; -fun nipple_N : N; -fun nipponese_A : A; -fun nippy_A : A; -fun niqaabi_N : N; -fun niqab_N : N; -fun nirvana_N : N; -fun nisi_A : A; -fun nit_N : N; -fun nitpicker_N : N; -fun nitrate_N : N; -fun nitrazepam_N : N; -fun nitre_N : N; -fun nitric_A : A; -fun nitride_N : N; -fun nitrification_N : N; -fun nitrile_N : N; -fun nitrite_N : N; -fun nitrobacterium_N : N; -fun nitrobenzene_N : N; -fun nitrocalcite_N : N; -fun nitrochalk_N : N; -fun nitrochloromethane_N : N; -fun nitrofuran_N : N; -fun nitrofurantoin_N : N; -fun nitrogen_N : N; -fun nitrogen_fixing_A : A; -fun nitrogenase_N : N; -fun nitrogenous_A : A; -fun nitroglycerin_N : N; -fun nitroglycerine_N : N; -fun nitrosobacteria_N : N; -fun nitrous_A : A; -fun nitty_gritty_N : N; -fun nitwit_N : N; -fun nitwitted_A : A; -fun nix_N : N; -fun nix_V2 : V2; -fun no_A : A; -fun no_Adv : Adv; -fun no_N : N; -fun no_Quant : Quant; -fun no_ball_N : N; -fun no_brainer_N : N; -fun no_end_Adv : Adv; -fun no_frills_A : A; -fun no_go_A : A; -fun no_go_A : A; -fun no_goal_N : N; -fun no_hit_A : A; -fun no_longer_Adv : Adv; -fun no_man's_land_N : N; -fun no_nonsense_A : A; -fun no_show_N : N; -fun no_trump_N : N; -fun no_win_A : A; -fun nob_N : N; -fun nobble_V2 : V2; -fun nobelium_N : N; -fun nobility_N : N; -fun noble_A : A; -fun noble_N : N; -fun noble_mindedness_N : N; -fun nobleman_N : N; -fun noblesse_N : N; -fun noblesse_oblige_N : N; -fun nobly_Adv : Adv; -fun nocent_A : A; -fun nociceptive_A : A; -fun noctambulist_N : N; -fun noctiluca_N : N; -fun noctilucent_A : A; -fun nocturia_N : N; -fun nocturnal_A : A; -fun nocturnally_Adv : Adv; -fun nocturne_N : N; -fun nod_N : N; -fun nod_V : V; -fun nod_V2 : V2; -fun noddle_N : N; -fun node_N : N; -fun nodular_A : A; -fun nodulated_A : A; -fun nodule_N : N; -fun nodulose_A : A; -fun noel_N : N; -fun nog_N : N; -fun noggin_N : N; -fun nogging_N : N; -fun nohow_Adv : Adv; -fun noise_N : N; -fun noise_V2 : V2; -fun noiseless_A : A; -fun noiselessly_Adv : Adv; -fun noiselessness_N : N; -fun noisemaker_N : N; -fun noisily_Adv : Adv; -fun noisiness_N : N; -fun noisome_A : A; -fun noisy_A : A; -fun noli_me_tangere_N : N; -fun nom_de_plume_N : N; -fun noma_N : N; -fun nomad_N : N; -fun nomadic_A : A; -fun nombril_N : N; -fun nomenclature_N : N; -fun nomenklatura_N : N; -fun nomia_N : N; -fun nominal_A : A; -fun nominalism_N : N; -fun nominalist_N : N; -fun nominalistic_A : A; -fun nominally_Adv : Adv; -fun nominate_V2 : V2; -fun nominated_A : A; -fun nomination_N : N; -fun nominative_A : A; -fun nominative_N : N; -fun nominator_N : N; -fun nominee_N : N; -fun nomogram_N : N; -fun nomothetic_A : A; -fun non_catholic_N : N; -fun non_u_A : A; -fun non_aromatic_A : A; -fun non_buoyant_A : A; -fun non_compliance_N : N; -fun non_compos_mentis_A : A; -fun non_contentious_A : A; -fun non_discrimination_N : N; -fun non_engagement_N : N; -fun non_interference_N : N; -fun non_invertible_A : A; -fun non_metric_A : A; -fun non_negotiable_A : A; -fun non_paying_A : A; -fun non_resistant_N : N; -fun non_sequitur_N : N; -fun non_skid_A : A; -fun non_u_A : A; -fun non_zero_A : A; -fun nonabsorbency_N : N; -fun nonabsorbent_A : A; -fun nonacceptance_N : N; -fun nonaccomplishment_N : N; -fun nonaddictive_A : A; -fun nonadhesive_A : A; -fun nonadjacent_A : A; -fun nonadsorbent_A : A; -fun nonage_N : N; -fun nonagenarian_A : A; -fun nonagenarian_N : N; -fun nonaggression_N : N; -fun nonagon_N : N; -fun nonalcoholic_A : A; -fun nonaligned_A : A; -fun nonalignment_N : N; -fun nonallele_N : N; -fun nonappearance_N : N; -fun nonappointive_A : A; -fun nonarbitrable_A : A; -fun nonarbitrary_A : A; -fun nonarboreal_A : A; -fun nonassertive_A : A; -fun nonassociative_A : A; -fun nonastringent_A : A; -fun nonattendance_N : N; -fun nonautonomous_A : A; -fun nonbearing_A : A; -fun nonbeing_N : N; -fun nonbelligerent_A : A; -fun noncaloric_A : A; -fun noncandidate_N : N; -fun noncarbonated_A : A; -fun noncausative_A : A; -fun nonce_N : N; -fun nonce_word_N : N; -fun noncellular_A : A; -fun nonchalance_N : N; -fun nonchalant_A : A; -fun noncivilized_A : A; -fun nonclassical_A : A; -fun noncollapsible_A : A; -fun noncolumned_A : A; -fun noncombatant_A : A; -fun noncombatant_N : N; -fun noncombinative_A : A; -fun noncombining_A : A; -fun noncombustible_A : A; -fun noncommercial_A : A; -fun noncommissioned_A : A; -fun noncommittal_A : A; -fun noncommunicable_A : A; -fun noncompetitive_A : A; -fun noncompetitively_Adv : Adv; -fun noncomprehensive_A : A; -fun noncomprehensively_Adv : Adv; -fun nonconductive_A : A; -fun nonconductor_N : N; -fun nonconforming_A : A; -fun nonconformism_N : N; -fun nonconformist_A : A; -fun nonconformist_N : N; -fun nonconformity_N : N; -fun nonconscious_A : A; -fun noncontentious_A : A; -fun nonconvergent_A : A; -fun noncritical_A : A; -fun noncrucial_A : A; -fun noncrystalline_A : A; -fun noncurrent_A : A; -fun noncyclic_A : A; -fun nondeductible_A : A; -fun nondenominational_A : A; -fun nondescript_A : A; -fun nondescript_N : N; -fun nondevelopment_N : N; -fun nondigestible_A : A; -fun nondisjunction_N : N; -fun nondisposable_A : A; -fun nondriver_N : N; -fun none_A : A; -fun none_Adv : Adv; -fun none_N : N; -fun nonechoic_A : A; -fun noneffervescent_A : A; -fun nonelective_A : A; -fun nonentity_N : N; -fun nonenzymatic_A : A; -fun nonequivalence_N : N; -fun nonequivalent_A : A; -fun nones_N : N; -fun nonesuch_N : N; -fun nonevent_N : N; -fun nonexempt_A : A; -fun nonexistence_N : N; -fun nonexistent_A : A; -fun nonexploratory_A : A; -fun nonexplosive_A : A; -fun nonextant_A : A; -fun nonextensile_A : A; -fun nonfat_A : A; -fun nonfatal_A : A; -fun nonfeasance_N : N; -fun nonfiction_N : N; -fun nonfictional_A : A; -fun nonfinancial_A : A; -fun nonfissile_A : A; -fun nonfissionable_A : A; -fun nonflammable_A : A; -fun nonfunctional_A : A; -fun nonglutinous_A : A; -fun nongranular_A : A; -fun nongregarious_A : A; -fun nonhairy_A : A; -fun nonharmonic_A : A; -fun nonhereditary_A : A; -fun nonhierarchical_A : A; -fun nonhuman_A : A; -fun nonimitative_A : A; -fun nonindulgent_A : A; -fun nonindustrial_A : A; -fun noninfectious_A : A; -fun noninflammatory_A : A; -fun noninheritable_A : A; -fun noninstitutional_A : A; -fun noninstitutionalized_A : A; -fun nonintegrated_A : A; -fun nonintellectual_A : A; -fun noninterchangeable_A : A; -fun nonintervention_N : N; -fun noninvasive_A : A; -fun nonionic_A : A; -fun nonionized_A : A; -fun nonjudgmental_A : A; -fun nonkosher_A : A; -fun nonlethal_A : A; -fun nonlexical_A : A; -fun nonlexically_Adv : Adv; -fun nonlinear_A : A; -fun nonlinguistic_A : A; -fun nonmagnetic_A : A; -fun nonmandatory_A : A; -fun nonmechanical_A : A; -fun nonmechanistic_A : A; -fun nonmember_N : N; -fun nonmetal_N : N; -fun nonmetallic_A : A; -fun nonmetamorphic_A : A; -fun nonmigratory_A : A; -fun nonmodern_A : A; -fun nonmonotonic_A : A; -fun nonmoral_A : A; -fun nonmotile_A : A; -fun nonmoving_A : A; -fun nonnative_A : A; -fun nonnatural_A : A; -fun nonnegative_A : A; -fun nonnomadic_A : A; -fun nonnormative_A : A; -fun nonobservance_N : N; -fun nonobservant_A : A; -fun nonoccurrence_N : N; -fun nonopening_A : A; -fun nonoperational_A : A; -fun nonoscillatory_A : A; -fun nonparallel_A : A; -fun nonparametric_A : A; -fun nonpareil_A : A; -fun nonpareil_N : N; -fun nonparticipant_N : N; -fun nonparticulate_A : A; -fun nonpartisan_A : A; -fun nonpartisan_N : N; -fun nonpasserine_A : A; -fun nonpayment_N : N; -fun nonperson_N : N; -fun nonpersonal_A : A; -fun nonphotosynthetic_A : A; -fun nonplus_V2 : V2; -fun nonpoisonous_A : A; -fun nonpolitical_A : A; -fun nonporous_A : A; -fun nonpregnant_A : A; -fun nonprehensile_A : A; -fun nonprescription_A : A; -fun nonproductive_A : A; -fun nonprofessional_A : A; -fun nonprofit_A : A; -fun nonprognosticative_A : A; -fun nonproliferation_N : N; -fun nonproprietary_A : A; -fun nonpsychoactive_A : A; -fun nonpublic_A : A; -fun nonpurulent_A : A; -fun nonracial_A : A; -fun nonradioactive_A : A; -fun nonrandom_A : A; -fun nonrational_A : A; -fun nonreader_N : N; -fun nonreciprocal_A : A; -fun nonreciprocating_A : A; -fun nonrecreational_A : A; -fun nonreflective_A : A; -fun nonrepetitive_A : A; -fun nonrepresentational_A : A; -fun nonrepresentative_A : A; -fun nonresident_A : A; -fun nonresident_N : N; -fun nonresidential_A : A; -fun nonresilient_A : A; -fun nonresinous_A : A; -fun nonresistance_N : N; -fun nonresistant_A : A; -fun nonrestrictive_A : A; -fun nonreticulate_A : A; -fun nonretractile_A : A; -fun nonreturnable_A : A; -fun nonreversible_A : A; -fun nonrhythmic_A : A; -fun nonrigid_A : A; -fun nonruminant_A : A; -fun nonsectarian_A : A; -fun nonsense_A : A; -fun nonsense_N : N; -fun nonsensical_A : A; -fun nonsensitive_A : A; -fun nonsignificant_A : A; -fun nonskid_A : A; -fun nonslip_A : A; -fun nonslippery_A : A; -fun nonsmoker_N : N; -fun nonspatial_A : A; -fun nonspeaking_A : A; -fun nonspecific_A : A; -fun nonspecifically_Adv : Adv; -fun nonspherical_A : A; -fun nonstandard_A : A; -fun nonstarter_N : N; -fun nonsteroid_N : N; -fun nonsteroidal_A : A; -fun nonstick_A : A; -fun nonstop_A : A; -fun nonstop_Adv : Adv; -fun nonstructural_A : A; -fun nonsubmersible_A : A; -fun nonsuch_N : N; -fun nonsuppurative_A : A; -fun nonsurgical_A : A; -fun nonsyllabic_A : A; -fun nonsynchronous_A : A; -fun nonsynthetic_A : A; -fun nontaxable_A : A; -fun nontechnical_A : A; -fun nontelescopic_A : A; -fun nonterritorial_A : A; -fun nonthermal_A : A; -fun nontoxic_A : A; -fun nontraditional_A : A; -fun nontransferable_A : A; -fun nontranslational_A : A; -fun nontricyclic_N : N; -fun nonturbulent_A : A; -fun nonuniformity_N : N; -fun nonunion_A : A; -fun nonuple_A : A; -fun nonvenomous_A : A; -fun nonverbal_A : A; -fun nonverbally_Adv : Adv; -fun nonviable_A : A; -fun nonviolence_N : N; -fun nonviolent_A : A; -fun nonviolently_Adv : Adv; -fun nonvisual_A : A; -fun nonvolatile_A : A; -fun nonwashable_A : A; -fun nonwoody_A : A; -fun nonworker_N : N; -fun noodle_N : N; -fun nook_N : N; -fun noon_N : N; -fun noonday_A : A; -fun noontide_N : N; -fun noose_N : N; -fun noose_V2 : V2; -fun nopal_N : N; -fun nor_Conj : Conj; -fun nor'_east_Adv : Adv; -fun nor'_east_N : N; -fun nor'_nor'_east_Adv : Adv; -fun nor'_nor'_east_N : N; -fun nor'_nor'_west_Adv : Adv; -fun nor'_nor'_west_N : N; -fun nor'_west_Adv : Adv; -fun nor'_west_N : N; -fun noradrenaline_N : N; -fun nordic_A : A; -fun nordic_N : N; -fun norethindrone_N : N; -fun norethynodrel_N : N; -fun norgestrel_N : N; -fun noria_N : N; -fun norm_N : N; -fun normal_A : A; -fun normal_N : N; -fun normalcy_N : N; -fun normality_N : N; -fun normalization_N : N; -fun normalize_V2 : V2; -fun normalizer_N : N; -fun normally_Adv : Adv; -fun norman_A : A; -fun norman_N : N; -fun normative_A : A; -fun normotensive_A : A; -fun normothermia_N : N; -fun norse_A : A; -fun norse_N : N; -fun north_A : A; -fun north_Adv : Adv; -fun north_N : N; -fun north_central_A : A; -fun north_northeast_Adv : Adv; -fun north_northeast_Adv : Adv; -fun north_northeast_N : N; -fun north_northwest_Adv : Adv; -fun north_northwest_Adv : Adv; -fun north_northwest_N : N; -fun north_polar_A : A; -fun northbound_A : A; -fun northeast_Adv : Adv; -fun northeast_N : N; -fun northeaster_N : N; -fun northeasterly_A : A; -fun northeastern_A : A; -fun northeastward_A : A; -fun northeastward_Adv : Adv; -fun northerly_A : A; -fun northerly_Adv : Adv; -fun northern_A : A; -fun northern_europe_PN : PN; -fun northern_jacob's_ladder_PN : PN; -fun northerner_N : N; -fun northernmost_A : A; -fun northernness_N : N; -fun northland_N : N; -fun northman_N : N; -fun northwards_Adv : Adv; -fun northwest_Adv : Adv; -fun northwest_N : N; -fun northwester_N : N; -fun northwesterly_A : A; -fun northwestern_A : A; -fun northwestward_A : A; -fun northwestward_Adv : Adv; -fun nortriptyline_N : N; -fun norwegian_A : A; -fun norwegian_N : N; -fun nose_N : N; -fun nose_V : V; -fun nose_V2 : V2; -fun nose_flute_N : N; -fun nose_wheel_N : N; -fun nosebag_N : N; -fun noseband_N : N; -fun nosebleed_N : N; -fun nosecone_N : N; -fun nosed_A : A; -fun nosedive_N : N; -fun nosedive_V : V; -fun nosegay_N : N; -fun noseless_A : A; -fun nosepiece_N : N; -fun nosering_N : N; -fun nosewheel_N : N; -fun nosey_A : A; -fun nosh_N : N; -fun nosh_V : V; -fun nosh_up_N : N; -fun nosh_up_N : N; -fun nosher_N : N; -fun nosiness_N : N; -fun nosocomial_A : A; -fun nosohusial_A : A; -fun nosology_N : N; -fun nostalgia_N : N; -fun nostalgic_A : A; -fun nostalgically_Adv : Adv; -fun nostoc_N : N; -fun nostril_N : N; -fun nostrum_N : N; -fun nosy_A : A; -fun not_Adv : Adv; -fun notability_N : N; -fun notable_A : A; -fun notable_N : N; -fun notably_Adv : Adv; -fun notary_N : N; -fun notation_N : N; -fun notch_N : N; -fun notch_V2 : V2; -fun note_N : N; -fun note_V : V; -fun note_V2 : V2; -fun note_VS : VS; -fun notebook_N : N; -fun notecase_N : N; -fun noted_A : A; -fun notepad_N : N; -fun notepaper_N : N; -fun noteworthy_A : A; -fun nothing_Adv : Adv; -fun nothing_N : N; -fun nothingness_N : N; -fun nothings_N : N; -fun nothosaur_N : N; -fun notice_N : N; -fun notice_V : V; -fun notice_V2 : V2; -fun notice_VS : VS; -fun notice_board_N : N; -fun noticeable_A : A; -fun noticed_A : A; -fun noticer_N : N; -fun notifiable_A : A; -fun notification_N : N; -fun notify_V2 : V2; -fun notion_N : N; -fun notional_A : A; -fun notochord_N : N; -fun notoriety_N : N; -fun notorious_A : A; -fun notoriously_Adv : Adv; -fun notornis_N : N; -fun notwithstanding_Adv : Adv; -fun notwithstanding_Prep : Prep; -fun nougat_N : N; -fun nought_N : N; -fun noumenon_N : N; -fun noun_N : N; -fun nourish_V2 : V2; -fun nourished_A : A; -fun nourishment_N : N; -fun nous_N : N; -fun nouveau_riche_A : A; -fun nouveau_riche_N : N; -fun nova_N : N; -fun novation_N : N; -fun novel_A : A; -fun novel_N : N; -fun novelette_N : N; -fun novelist_N : N; -fun novelization_N : N; -fun novelty_N : N; -fun november_N : N; -fun novena_N : N; -fun novice_N : N; -fun noviciate_N : N; -fun novillada_N : N; -fun novillero_N : N; -fun novitiate_N : N; -fun novobiocin_N : N; -fun now_Adv : Adv; -fun now_N : N; -fun now_now_Adv : Adv; -fun nowadays_Adv : Adv; -fun nowhere_Adv : Adv; -fun nowhere_N : N; -fun nowise_Adv : Adv; -fun noxious_A : A; -fun noxiousness_N : N; -fun nozzle_N : N; -fun nspcc_N : N; -fun nt_N : N; -fun nth_A : A; -fun nu_N : N; -fun nuance_N : N; -fun nub_N : N; -fun nubbin_N : N; -fun nubile_A : A; -fun nucellus_N : N; -fun nuclear_A : A; -fun nuclear_rna_PN : PN; -fun nuclease_N : N; -fun nucleated_A : A; -fun nucleic_A : A; -fun nucleolus_N : N; -fun nucleon_N : N; -fun nucleoplasm_N : N; -fun nucleoprotein_N : N; -fun nucleoside_N : N; -fun nucleosynthesis_N : N; -fun nucleotide_N : N; -fun nucleus_N : N; -fun nude_A : A; -fun nude_N : N; -fun nudge_N : N; -fun nudge_V2 : V2; -fun nudger_N : N; -fun nudism_N : N; -fun nudist_N : N; -fun nudity_N : N; -fun nudnik_N : N; -fun nugatory_A : A; -fun nugget_N : N; -fun nuisance_N : N; -fun null_A : A; -fun nullah_N : N; -fun nullification_N : N; -fun nullifier_N : N; -fun nullify_V2 : V2; -fun nullipara_N : N; -fun nullity_N : N; -fun numb_A : A; -fun numb_V2 : V2; -fun numbat_N : N; -fun number_N : N; -fun number_V2 : V2; -fun numberless_A : A; -fun numberplate_N : N; -fun numbing_A : A; -fun numbly_Adv : Adv; -fun numbness_N : N; -fun numdah_N : N; -fun numen_N : N; -fun numerable_A : A; -fun numeracy_N : N; -fun numeral_A : A; -fun numeral_N : N; -fun numerate_A : A; -fun numeration_N : N; -fun numerator_N : N; -fun numeric_A : A; -fun numerical_A : A; -fun numerically_Adv : Adv; -fun numerological_A : A; -fun numerologist_N : N; -fun numerology_N : N; -fun numerous_A : A; -fun numerousness_N : N; -fun numinous_A : A; -fun numismatics_N : N; -fun numismatist_N : N; -fun nummulite_N : N; -fun numskull_N : N; -fun nun_N : N; -fun nuncio_N : N; -fun nunnery_N : N; -fun nuptial_A : A; -fun nurse_N : N; -fun nurse_V2 : V2; -fun nurse_midwife_N : N; -fun nursed_A : A; -fun nurseling_N : N; -fun nursemaid_N : N; -fun nurser_N : N; -fun nursery_N : N; -fun nurseryman_N : N; -fun nursing_N : N; -fun nursing_home_N : N; -fun nursling_N : N; -fun nurtural_A : A; -fun nurturance_N : N; -fun nurturant_A : A; -fun nurture_N : N; -fun nurture_V2 : V2; -fun nut_N : N; -fun nut_V : V; -fun nut_bearing_A : A; -fun nut_brown_A : A; -fun nut_butter_N : N; -fun nutation_N : N; -fun nutbrown_A : A; -fun nutcracker_N : N; -fun nutgrass_N : N; -fun nuthatch_N : N; -fun nuthouse_N : N; -fun nutlet_N : N; -fun nutlike_A : A; -fun nutmeg_N : N; -fun nutmeg_shaped_A : A; -fun nutria_N : N; -fun nutrient_A : A; -fun nutrient_N : N; -fun nutriment_N : N; -fun nutrition_N : N; -fun nutritional_A : A; -fun nutritionally_Adv : Adv; -fun nutritious_A : A; -fun nutritiousness_N : N; -fun nutritive_A : A; -fun nuts_A : A; -fun nutshell_N : N; -fun nutter_N : N; -fun nutty_A : A; -fun nuzzle_V : V; -fun nuzzle_V2 : V2; -fun nyala_N : N; -fun nybble_N : N; -fun nyctalopia_N : N; -fun nyctophobia_N : N; -fun nylon_N : N; -fun nylons_N : N; -fun nymph_N : N; -fun nymphalid_N : N; -fun nymphet_N : N; -fun nympho_N : N; -fun nympholepsy_N : N; -fun nympholept_N : N; -fun nymphomania_N : N; -fun nymphomaniac_A : A; -fun nymphomaniac_N : N; -fun nymphomaniacal_A : A; -fun nystagmus_N : N; -fun nystatin_N : N; -fun o'clock_Adv : Adv; -fun o'er_Adv : Adv; -fun o_level_N : N; -fun oaf_N : N; -fun oafish_A : A; -fun oak_N : N; -fun oak_apple_N : N; -fun oaken_A : A; -fun oakum_N : N; -fun oap_N : N; -fun oar_N : N; -fun oar_V2 : V2; -fun oarfish_N : N; -fun oarsman_N : N; -fun oarsmanship_N : N; -fun oarswoman_N : N; -fun oasis_N : N; -fun oast_N : N; -fun oasthouse_N : N; -fun oat_N : N; -fun oatcake_N : N; -fun oaten_A : A; -fun oath_N : N; -fun oatmeal_N : N; -fun oau_N : N; -fun obbligato_N : N; -fun obduracy_N : N; -fun obdurate_A : A; -fun obeah_N : N; -fun obeche_N : N; -fun obedience_N : N; -fun obedient_A : A; -fun obediently_Adv : Adv; -fun obeisance_N : N; -fun obelion_N : N; -fun obelisk_N : N; -fun obese_A : A; -fun obesity_N : N; -fun obey_V : V; -fun obey_V2 : V2; -fun obfuscate_V2 : V2; -fun obfuscation_N : N; -fun obi_N : N; -fun obiism_N : N; -fun obiter_dictum_N : N; -fun obituary_N : N; -fun object_N : N; -fun object_V : V; -fun object_V2 : V2; -fun objectification_N : N; -fun objection_N : N; -fun objectionable_A : A; -fun objective_A : A; -fun objective_N : N; -fun objectively_Adv : Adv; -fun objectivity_N : N; -fun objector_N : N; -fun objurgate_V2 : V2; -fun objurgation_N : N; -fun oblanceolate_A : A; -fun oblate_A : A; -fun oblate_N : N; -fun oblateness_N : N; -fun oblation_N : N; -fun obligate_A : A; -fun obligate_V2 : V2; -fun obligate_V2V : V2V; -fun obligated_A : A; -fun obligation_N : N; -fun obligational_A : A; -fun obligatorily_Adv : Adv; -fun obligatory_A : A; -fun oblige_V2 : V2; -fun obliger_N : N; -fun obliging_A : A; -fun obligingly_Adv : Adv; -fun oblique_A : A; -fun oblique_N : N; -fun oblique_angled_A : A; -fun obliquely_Adv : Adv; -fun obliqueness_N : N; -fun obliquity_N : N; -fun obliterable_A : A; -fun obliterate_V2 : V2; -fun obliteration_N : N; -fun obliterator_N : N; -fun oblivion_N : N; -fun oblivious_A : A; -fun obliviousness_N : N; -fun oblong_A : A; -fun oblong_N : N; -fun obloquy_N : N; -fun obnoxious_A : A; -fun obnoxiousness_N : N; -fun oboe_N : N; -fun oboist_N : N; -fun obolus_N : N; -fun obovate_A : A; -fun obscene_A : A; -fun obscenely_Adv : Adv; -fun obscenity_N : N; -fun obscurantism_N : N; -fun obscurantist_N : N; -fun obscure_A : A; -fun obscure_V2 : V2; -fun obscure_VA : VA; -fun obscurely_Adv : Adv; -fun obscureness_N : N; -fun obscurity_N : N; -fun obsequious_A : A; -fun obsequiously_Adv : Adv; -fun obsequiousness_N : N; -fun observable_A : A; -fun observance_N : N; -fun observant_A : A; -fun observantly_Adv : Adv; -fun observation_N : N; -fun observatory_N : N; -fun observe_V : V; -fun observe_V2 : V2; -fun observe_VS : VS; -fun observer_N : N; -fun observing_A : A; -fun obsess_V2 : V2; -fun obsessed_A : A; -fun obsession_N : N; -fun obsessional_A : A; -fun obsessive_A : A; -fun obsessive_N : N; -fun obsessive_compulsive_A : A; -fun obsessive_compulsive_N : N; -fun obsessiveness_N : N; -fun obsidian_N : N; -fun obsolescence_N : N; -fun obsolescent_A : A; -fun obsolete_A : A; -fun obsoleteness_N : N; -fun obstacle_N : N; -fun obstetric_A : A; -fun obstetrical_A : A; -fun obstetrician_N : N; -fun obstetrics_N : N; -fun obstinacy_N : N; -fun obstinate_A : A; -fun obstipation_N : N; -fun obstreperous_A : A; -fun obstreperously_Adv : Adv; -fun obstreperousness_N : N; -fun obstruct_V2 : V2; -fun obstructed_A : A; -fun obstruction_N : N; -fun obstructionism_N : N; -fun obstructionist_N : N; -fun obstructive_A : A; -fun obstructively_Adv : Adv; -fun obstruent_N : N; -fun obtain_V : V; -fun obtain_V2 : V2; -fun obtainable_A : A; -fun obtainment_N : N; -fun obtrude_V : V; -fun obtrude_V2 : V2; -fun obtrusive_A : A; -fun obtrusively_Adv : Adv; -fun obtrusiveness_N : N; -fun obturator_N : N; -fun obtuse_A : A; -fun obtuseness_N : N; -fun obverse_N : N; -fun obviate_V2 : V2; -fun obviation_N : N; -fun obvious_A : A; -fun obviously_Adv : Adv; -fun obviousness_N : N; -fun oca_N : N; -fun ocarina_N : N; -fun occasion_N : N; -fun occasion_V2 : V2; -fun occasional_A : A; -fun occasionally_Adv : Adv; -fun occasions_N : N; -fun occidental_A : A; -fun occidental_N : N; -fun occidentalism_N : N; -fun occipital_A : A; -fun occiput_N : N; -fun occluded_A : A; -fun occlusion_N : N; -fun occlusive_A : A; -fun occult_A : A; -fun occult_N : N; -fun occultism_N : N; -fun occultist_N : N; -fun occupancy_N : N; -fun occupant_N : N; -fun occupation_N : N; -fun occupational_A : A; -fun occupied_A : A; -fun occupier_N : N; -fun occupy_V : V; -fun occupy_V2 : V2; -fun occur_V : V; -fun occurr_V2 : V2; -fun occurrence_N : N; -fun occurrent_A : A; -fun ocean_N : N; -fun oceanfront_N : N; -fun oceangoing_A : A; -fun oceanic_A : A; -fun oceanographer_N : N; -fun oceanography_N : N; -fun ocellated_A : A; -fun ocelot_N : N; -fun ocher_A : A; -fun ocher_N : N; -fun ochre_N : N; -fun ochronosis_N : N; -fun ocotillo_N : N; -fun octagon_N : N; -fun octagonal_A : A; -fun octahedron_N : N; -fun octal_A : A; -fun octameter_N : N; -fun octane_N : N; -fun octangular_A : A; -fun octant_N : N; -fun octave_N : N; -fun octavo_N : N; -fun octet_N : N; -fun octette_N : N; -fun octillion_N : N; -fun october_N : N; -fun octogenarian_A : A; -fun octogenarian_N : N; -fun octopod_N : N; -fun octopus_N : N; -fun octoroon_N : N; -fun octosyllabic_A : A; -fun octosyllable_N : N; -fun octroi_N : N; -fun octuple_A : A; -fun ocular_A : A; -fun oculism_N : N; -fun oculist_N : N; -fun oculomotor_N : N; -fun odalisque_N : N; -fun odd_A : A; -fun odd_job_A : A; -fun odd_job_A : A; -fun odd_pinnate_A : A; -fun oddish_A : A; -fun oddity_N : N; -fun oddment_N : N; -fun oddness_N : N; -fun odds_N : N; -fun odds_maker_N : N; -fun odds_on_A : A; -fun odds_on_A : A; -fun odds_on_Adv : Adv; -fun ode_N : N; -fun odious_A : A; -fun odist_N : N; -fun odium_N : N; -fun odometer_N : N; -fun odonate_N : N; -fun odontoglossum_N : N; -fun odoriferous_A : A; -fun odorless_A : A; -fun odorous_A : A; -fun odour_N : N; -fun odourless_A : A; -fun odynophagia_N : N; -fun odyssey_N : N; -fun oecd_N : N; -fun oecumenical_A : A; -fun oed_N : N; -fun oenomel_N : N; -fun oersted_N : N; -fun oesophagus_N : N; -fun oeuvre_N : N; -fun of_Prep : Prep; -fun off_A : A; -fun off_Adv : Adv; -fun off_Prep : Prep; -fun off_V2 : V2; -fun off_broadway_N : N; -fun off_and_on_Adv : Adv; -fun off_base_A : A; -fun off_center_A : A; -fun off_day_N : N; -fun off_day_N : N; -fun off_hand_Adv : Adv; -fun off_licence_N : N; -fun off_limits_A : A; -fun off_line_A : A; -fun off_peak_A : A; -fun off_putting_A : A; -fun off_putting_A : A; -fun off_season_N : N; -fun off_site_A : A; -fun off_street_A : A; -fun off_street_A : A; -fun off_the_beaten_track_A : A; -fun off_the_clock_Adv : Adv; -fun off_the_cuff_Adv : Adv; -fun off_the_hook_A : A; -fun off_the_rack_A : A; -fun off_the_record_Adv : Adv; -fun off_the_shoulder_A : A; -fun off_white_A : A; -fun offal_N : N; -fun offbeat_A : A; -fun offence_N : N; -fun offenceless_A : A; -fun offend_V : V; -fun offend_V2 : V2; -fun offended_A : A; -fun offender_N : N; -fun offending_A : A; -fun offense_N : N; -fun offenseless_A : A; -fun offensive_A : A; -fun offensive_N : N; -fun offensively_Adv : Adv; -fun offensiveness_N : N; -fun offer_N : N; -fun offer_V : V; -fun offer_V2 : V2; -fun offer_VS : VS; -fun offer_VV : VV; -fun offerer_N : N; -fun offering_N : N; -fun offertory_N : N; -fun offhand_A : A; -fun offhand_Adv : Adv; -fun offhanded_A : A; -fun offhanded_Adv : Adv; -fun offhandedly_A : A; -fun office_N : N; -fun office_bearer_N : N; -fun office_bearer_N : N; -fun office_block_N : N; -fun office_boy_N : N; -fun office_holder_N : N; -fun officeholder_N : N; -fun officer_N : N; -fun official_A : A; -fun official_N : N; -fun officialdom_N : N; -fun officialese_N : N; -fun officially_Adv : Adv; -fun officiant_N : N; -fun officiate_V : V; -fun officiation_N : N; -fun officious_A : A; -fun officiously_Adv : Adv; -fun officiousness_N : N; -fun offing_N : N; -fun offish_A : A; -fun offprint_N : N; -fun offset_N : N; -fun offset_V2 : V2; -fun offshoot_N : N; -fun offshore_A : A; -fun offshore_Adv : Adv; -fun offside_A : A; -fun offside_Adv : Adv; -fun offside_N : N; -fun offspring_N : N; -fun offstage_A : A; -fun offstage_Adv : Adv; -fun oft_Adv : Adv; -fun oft_times_Adv : Adv; -fun often_Adv : Adv; -fun oftener_Adv : Adv; -fun ogee_N : N; -fun ogle_V : V; -fun ogle_V2 : V2; -fun ogler_N : N; -fun ogre_N : N; -fun ogreish_A : A; -fun ogress_N : N; -fun ohm_N : N; -fun ohmage_N : N; -fun ohmic_A : A; -fun ohmmeter_N : N; -fun oil_N : N; -fun oil_V2 : V2; -fun oil_bearing_A : A; -fun oil_bearing_A : A; -fun oil_burner_N : N; -fun oil_cake_N : N; -fun oil_fired_A : A; -fun oil_painting_N : N; -fun oil_palm_N : N; -fun oil_paper_N : N; -fun oil_rig_N : N; -fun oil_silk_N : N; -fun oil_slick_N : N; -fun oil_soluble_A : A; -fun oil_tanker_N : N; -fun oil_well_N : N; -fun oilbird_N : N; -fun oilcan_N : N; -fun oilcloth_N : N; -fun oiled_A : A; -fun oiler_N : N; -fun oilfield_N : N; -fun oilfired_A : A; -fun oilfish_N : N; -fun oiliness_N : N; -fun oilman_N : N; -fun oilpaper_N : N; -fun oilseed_N : N; -fun oilskin_N : N; -fun oilstone_N : N; -fun oily_A : A; -fun oink_V : V; -fun ointment_N : N; -fun oka_N : N; -fun okapi_N : N; -fun okay_A : A; -fun okay_Adv : Adv; -fun okay_N : N; -fun okay_V2 : V2; -fun okra_N : N; -fun ola_N : N; -fun old_A : A; -fun old_N : N; -fun old_fashioned_A : A; -fun old_fashionedness_N : N; -fun old_maidish_A : A; -fun old_maidish_A : A; -fun old_man_of_the_woods_N : N; -fun old_time_A : A; -fun old_time_A : A; -fun old_timer_N : N; -fun old_timer_N : N; -fun old_womanish_A : A; -fun old_world_A : A; -fun old_world_A : A; -fun olden_A : A; -fun oldie_N : N; -fun oldish_A : A; -fun oldline_A : A; -fun oldness_N : N; -fun oldster_N : N; -fun oleaceous_A : A; -fun oleaginous_A : A; -fun oleander_N : N; -fun oleaster_N : N; -fun olecranon_N : N; -fun oleophilic_A : A; -fun oleophobic_A : A; -fun oleoresin_N : N; -fun olfactory_A : A; -fun oligarch_N : N; -fun oligarchic_A : A; -fun oligarchy_N : N; -fun oligochaete_N : N; -fun oligodactyly_N : N; -fun oligodendrocyte_N : N; -fun oligodendroglia_N : N; -fun oligodontia_N : N; -fun oligomenorrhea_N : N; -fun oligopoly_N : N; -fun oligosaccharide_N : N; -fun oligospermia_N : N; -fun oliguria_N : N; -fun olive_A : A; -fun olive_N : N; -fun olive_brown_A : A; -fun olive_colored_A : A; -fun olive_drab_A : A; -fun olive_grey_A : A; -fun olive_sized_A : A; -fun olive_tree_N : N; -fun olivelike_A : A; -fun olivenite_N : N; -fun olivine_N : N; -fun olm_N : N; -fun ology_N : N; -fun olympiad_N : N; -fun olympian_A : A; -fun olympian_N : N; -fun olympic_A : A; -fun omani_A : A; -fun omani_N : N; -fun ombu_N : N; -fun ombudsman_N : N; -fun omega_N : N; -fun omelet_N : N; -fun omelette_N : N; -fun omen_N : N; -fun omen_V2 : V2; -fun omentum_N : N; -fun omeprazole_N : N; -fun omerta_N : N; -fun omicron_N : N; -fun ominous_A : A; -fun ominously_Adv : Adv; -fun omissible_A : A; -fun omission_N : N; -fun omissive_A : A; -fun omit_V2 : V2; -fun ommastrephes_N : N; -fun ommatidium_N : N; -fun omnibus_A : A; -fun omnibus_N : N; -fun omnidirectional_A : A; -fun omnifarious_A : A; -fun omnipotence_N : N; -fun omnipotent_A : A; -fun omnipresent_A : A; -fun omnirange_N : N; -fun omniscience_N : N; -fun omniscient_A : A; -fun omnivore_N : N; -fun omnivorous_A : A; -fun omophagia_N : N; -fun omphaloskepsis_N : N; -fun on_A : A; -fun on_Adv : Adv; -fun on_Prep : Prep; -fun on_air_Adv : Adv; -fun on_all_fours_Adv : Adv; -fun on_approval_Adv : Adv; -fun on_camera_Adv : Adv; -fun on_earth_Adv : Adv; -fun on_faith_Adv : Adv; -fun on_guard_A : A; -fun on_hand_A : A; -fun on_key_A : A; -fun on_licence_N : N; -fun on_license_N : N; -fun on_line_A : A; -fun on_paper_Adv : Adv; -fun on_site_A : A; -fun on_street_A : A; -fun on_tap_A : A; -fun on_the_average_Adv : Adv; -fun on_the_coattails_Adv : Adv; -fun on_the_fence_A : A; -fun on_the_fly_Adv : Adv; -fun on_the_go_A : A; -fun on_the_hook_A : A; -fun on_the_job_A : A; -fun on_the_nose_A : A; -fun on_the_offensive_A : A; -fun on_the_one_hand_Adv : Adv; -fun on_the_other_hand_Adv : Adv; -fun on_the_spot_A : A; -fun on_the_spot_Adv : Adv; -fun on_the_spur_of_the_moment_Adv : Adv; -fun on_the_way_Adv : Adv; -fun on_time_Adv : Adv; -fun on_trial_A : A; -fun onager_N : N; -fun once_Adv : Adv; -fun once_Prep : Prep; -fun once_over_N : N; -fun onchocerciasis_N : N; -fun oncidium_N : N; -fun oncogene_N : N; -fun oncological_A : A; -fun oncologist_N : N; -fun oncology_N : N; -fun oncoming_A : A; -fun oncoming_N : N; -fun one_A : A; -fun one_N : N; -fun one_and_one_N : N; -fun one_armed_A : A; -fun one_armed_A : A; -fun one_billionth_N : N; -fun one_by_one_Adv : Adv; -fun one_dimensionality_N : N; -fun one_eared_A : A; -fun one_eighth_N : N; -fun one_eyed_A : A; -fun one_eyed_A : A; -fun one_fifth_N : N; -fun one_fourth_N : N; -fun one_half_N : N; -fun one_handed_A : A; -fun one_hitter_N : N; -fun one_horse_A : A; -fun one_humped_A : A; -fun one_hundred_eighty_A : A; -fun one_hundred_fifteen_A : A; -fun one_hundred_fifty_A : A; -fun one_hundred_fifty_five_A : A; -fun one_hundred_five_A : A; -fun one_hundred_forty_A : A; -fun one_hundred_forty_five_A : A; -fun one_hundred_millionth_N : N; -fun one_hundred_ninety_A : A; -fun one_hundred_seventy_A : A; -fun one_hundred_seventy_five_A : A; -fun one_hundred_sixty_A : A; -fun one_hundred_sixty_five_A : A; -fun one_hundred_ten_A : A; -fun one_hundred_thirty_A : A; -fun one_hundred_thirty_five_A : A; -fun one_hundred_thousandth_N : N; -fun one_hundred_twenty_A : A; -fun one_hundred_twenty_five_A : A; -fun one_hundredth_N : N; -fun one_idea'd_A : A; -fun one_liner_N : N; -fun one_man_A : A; -fun one_millionth_N : N; -fun one_ninth_N : N; -fun one_off_N : N; -fun one_on_one_A : A; -fun one_on_one_Adv : Adv; -fun one_party_A : A; -fun one_piece_A : A; -fun one_quadrillionth_N : N; -fun one_quintillionth_N : N; -fun one_seventh_N : N; -fun one_sided_A : A; -fun one_sixteenth_N : N; -fun one_sixth_N : N; -fun one_sixtieth_N : N; -fun one_sixty_fourth_N : N; -fun one_spot_N : N; -fun one_step_N : N; -fun one_step_N : N; -fun one_ten_thousandth_N : N; -fun one_tenth_N : N; -fun one_third_N : N; -fun one_thirty_second_N : N; -fun one_thousandth_N : N; -fun one_time_A : A; -fun one_to_one_A : A; -fun one_trillionth_N : N; -fun one_twelfth_N : N; -fun one_upmanship_N : N; -fun one_upmanship_N : N; -fun one_way_A : A; -fun one_winged_A : A; -fun one_year_old_A : A; -fun oneiric_A : A; -fun oneiromancer_N : N; -fun oneiromancy_N : N; -fun oneness_N : N; -fun onerous_A : A; -fun onerously_Adv : Adv; -fun ongoing_A : A; -fun onion_N : N; -fun onionskin_N : N; -fun onlooker_N : N; -fun only_Adv : Adv; -fun only_Predet : Predet; -fun onomancer_N : N; -fun onomancy_N : N; -fun onomastic_A : A; -fun onomasticon_N : N; -fun onomastics_N : N; -fun onomatomania_N : N; -fun onomatopoeia_N : N; -fun onomatopoeic_A : A; -fun onrush_N : N; -fun onset_N : N; -fun onshore_A : A; -fun onshore_Adv : Adv; -fun onside_A : A; -fun onslaught_N : N; -fun onstage_A : A; -fun onstage_Adv : Adv; -fun onto_Prep : Prep; -fun ontogenetic_A : A; -fun ontological_A : A; -fun ontology_N : N; -fun onus_N : N; -fun onward_A : A; -fun onward_Adv : Adv; -fun onwards_Adv : Adv; -fun onycholysis_N : N; -fun onychophoran_N : N; -fun onychosis_N : N; -fun onymous_A : A; -fun onyx_N : N; -fun oocyte_N : N; -fun oogenesis_N : N; -fun oology_N : N; -fun oolong_N : N; -fun oomph_N : N; -fun oophorectomy_N : N; -fun oophoritis_N : N; -fun oophorosalpingectomy_N : N; -fun oosphere_N : N; -fun oospore_N : N; -fun ootid_N : N; -fun ooze_N : N; -fun ooze_V : V; -fun ooze_V2 : V2; -fun oozing_A : A; -fun oozy_A : A; -fun op_art_N : N; -fun opacification_N : N; -fun opacity_N : N; -fun opah_N : N; -fun opal_N : N; -fun opalescence_N : N; -fun opalescent_A : A; -fun opaque_A : A; -fun opaquely_Adv : Adv; -fun opaqueness_N : N; -fun open_A : A; -fun open_N : N; -fun open_V : V; -fun open_V2 : V2; -fun open_air_A : A; -fun open_and_shut_A : A; -fun open_collared_A : A; -fun open_ended_A : A; -fun open_ended_A : A; -fun open_eyed_A : A; -fun open_handed_A : A; -fun open_hearted_A : A; -fun open_hearth_A : A; -fun open_minded_A : A; -fun open_minded_A : A; -fun open_mouthed_A : A; -fun open_plan_A : A; -fun open_source_A : A; -fun openbill_N : N; -fun opencast_A : A; -fun opened_A : A; -fun opener_N : N; -fun openhearted_A : A; -fun opening_A : A; -fun opening_N : N; -fun openly_Adv : Adv; -fun openness_N : N; -fun openwork_N : N; -fun opepe_N : N; -fun opera_N : N; -fun opera_cloak_N : N; -fun opera_hat_N : N; -fun opera_house_N : N; -fun operable_A : A; -fun operagoer_N : N; -fun operand_N : N; -fun operant_A : A; -fun operate_V : V; -fun operate_V2 : V2; -fun operatic_A : A; -fun operating_A : A; -fun operating_table_N : N; -fun operating_theatre_N : N; -fun operation_N : N; -fun operational_A : A; -fun operationalism_N : N; -fun operationalist_A : A; -fun operationally_Adv : Adv; -fun operations_N : N; -fun operative_A : A; -fun operative_N : N; -fun operatively_Adv : Adv; -fun operator_N : N; -fun operculate_A : A; -fun operculum_N : N; -fun operetta_N : N; -fun operon_N : N; -fun ophidism_N : N; -fun ophiolatry_N : N; -fun ophryon_N : N; -fun ophthalmectomy_N : N; -fun ophthalmia_N : N; -fun ophthalmic_A : A; -fun ophthalmologist_N : N; -fun ophthalmology_N : N; -fun ophthalmoplegia_N : N; -fun ophthalmoscope_N : N; -fun ophthalmoscopy_N : N; -fun opiate_N : N; -fun opine_V2 : V2; -fun opine_VS : VS; -fun opinion_N : N; -fun opinionated_A : A; -fun opinionative_A : A; -fun opisthognathous_A : A; -fun opisthorchiasis_N : N; -fun opisthotonos_N : N; -fun opium_N : N; -fun opium_den_N : N; -fun opopanax_N : N; -fun opossum_N : N; -fun opponent_A : A; -fun opponent_N : N; -fun opportune_A : A; -fun opportunely_Adv : Adv; -fun opportuneness_N : N; -fun opportunism_N : N; -fun opportunist_A : A; -fun opportunist_N : N; -fun opportunity_N : N; -fun opposable_A : A; -fun oppose_V : V; -fun oppose_V2 : V2; -fun oppose_VS : VS; -fun opposed_A : A; -fun opposite_A : A; -fun opposite_N : N; -fun opposite_Prep : Prep; -fun oppositely_Adv : Adv; -fun opposition_N : N; -fun oppress_V2 : V2; -fun oppression_N : N; -fun oppressive_A : A; -fun oppressively_Adv : Adv; -fun oppressor_N : N; -fun opprobrious_A : A; -fun opprobrium_N : N; -fun oppugn_V2 : V2; -fun opsin_N : N; -fun opsonin_N : N; -fun opsonization_N : N; -fun opt_V : V; -fun opt_V2V : V2V; -fun opt_VS : VS; -fun optative_A : A; -fun optative_N : N; -fun optic_A : A; -fun optical_A : A; -fun optically_Adv : Adv; -fun optician_N : N; -fun optics_N : N; -fun optimal_A : A; -fun optimally_Adv : Adv; -fun optimism_N : N; -fun optimist_N : N; -fun optimistic_A : A; -fun optimistically_Adv : Adv; -fun optimization_N : N; -fun optimum_A : A; -fun optimum_N : N; -fun option_N : N; -fun optional_A : A; -fun optionally_Adv : Adv; -fun optometrist_N : N; -fun optometry_N : N; -fun opulence_N : N; -fun opulent_A : A; -fun opus_N : N; -fun or_Conj : Conj; -fun orach_N : N; -fun oracle_N : N; -fun oracular_A : A; -fun orad_Adv : Adv; -fun oral_A : A; -fun oral_N : N; -fun orally_Adv : Adv; -fun orang_outan_N : N; -fun orang_outang_N : N; -fun orang_utan_N : N; -fun orange_A : A; -fun orange_N : N; -fun orange_brown_A : A; -fun orange_colored_A : A; -fun orange_flowered_A : A; -fun orange_red_A : A; -fun orange_sized_A : A; -fun orangeade_N : N; -fun orangeman_N : N; -fun orangery_N : N; -fun orangewood_N : N; -fun orangutan_N : N; -fun orate_V : V; -fun oration_N : N; -fun orator_N : N; -fun oratorical_A : A; -fun oratorio_N : N; -fun oratory_N : N; -fun orb_N : N; -fun orb_weaving_A : A; -fun orbiculate_A : A; -fun orbit_N : N; -fun orbit_V : V; -fun orbit_V2 : V2; -fun orbital_A : A; -fun orbitale_N : N; -fun orchard_N : N; -fun orchestra_N : N; -fun orchestral_A : A; -fun orchestrate_V2 : V2; -fun orchestrated_A : A; -fun orchestration_N : N; -fun orchestrator_N : N; -fun orchid_N : N; -fun orchidalgia_N : N; -fun orchidectomy_N : N; -fun orchil_N : N; -fun orchiopexy_N : N; -fun orchis_N : N; -fun orchitis_N : N; -fun orchotomy_N : N; -fun ordain_V2 : V2; -fun ordain_VS : VS; -fun ordained_A : A; -fun ordainer_N : N; -fun ordeal_N : N; -fun order_N : N; -fun order_V : V; -fun order_V2 : V2; -fun order_V2V : V2V; -fun order_VS : VS; -fun order_myxobacteria_PN : PN; -fun order_book_N : N; -fun order_form_N : N; -fun order_paper_N : N; -fun ordered_A : A; -fun orderer_N : N; -fun ordering_N : N; -fun orderliness_N : N; -fun orderly_A : A; -fun orderly_N : N; -fun ordinal_A : A; -fun ordinal_N : N; -fun ordinance_N : N; -fun ordinand_N : N; -fun ordinariness_N : N; -fun ordinary_A : A; -fun ordinary_N : N; -fun ordinate_N : N; -fun ordination_N : N; -fun ordnance_N : N; -fun ordure_N : N; -fun ore_N : N; -fun oregano_N : N; -fun oreo_N : N; -fun organ_N : N; -fun organ_blower_N : N; -fun organ_grinder_N : N; -fun organ_grinder_N : N; -fun organ_loft_N : N; -fun organ_of_corti_PN : PN; -fun organdie_N : N; -fun organdy_N : N; -fun organelle_N : N; -fun organic_A : A; -fun organic_N : N; -fun organically_Adv : Adv; -fun organicism_N : N; -fun organicistic_A : A; -fun organification_N : N; -fun organism_N : N; -fun organismal_A : A; -fun organist_N : N; -fun organization_N : N; -fun organizational_A : A; -fun organizationally_Adv : Adv; -fun organize_V2 : V2; -fun organize_V2V : V2V; -fun organized_A : A; -fun organizer_N : N; -fun organon_N : N; -fun organophosphate_N : N; -fun organza_N : N; -fun orgasm_N : N; -fun orgiastic_A : A; -fun orgy_N : N; -fun oriel_N : N; -fun orient_A : A; -fun orient_N : N; -fun orient_V2 : V2; -fun oriental_A : A; -fun oriental_N : N; -fun orientalism_N : N; -fun orientalist_N : N; -fun orientate_V2 : V2; -fun orientation_N : N; -fun oriented_A : A; -fun orienting_A : A; -fun orifice_N : N; -fun oriflamme_N : N; -fun origami_N : N; -fun origanum_N : N; -fun origin_N : N; -fun original_A : A; -fun original_N : N; -fun originalism_N : N; -fun originality_N : N; -fun originally_Adv : Adv; -fun originate_V : V; -fun originate_V2 : V2; -fun originator_N : N; -fun oriole_N : N; -fun orison_N : N; -fun orlop_N : N; -fun ormer_N : N; -fun ormolu_N : N; -fun ornament_N : N; -fun ornament_V2 : V2; -fun ornamental_A : A; -fun ornamental_N : N; -fun ornamentalism_N : N; -fun ornamentally_Adv : Adv; -fun ornamentation_N : N; -fun ornate_A : A; -fun ornately_Adv : Adv; -fun ornateness_N : N; -fun ornery_A : A; -fun ornithine_N : N; -fun ornithischian_N : N; -fun ornithological_A : A; -fun ornithologist_N : N; -fun ornithology_N : N; -fun ornithomimid_N : N; -fun ornithopod_N : N; -fun orogeny_N : N; -fun oroide_N : N; -fun orology_N : N; -fun oropharyngeal_A : A; -fun oropharynx_N : N; -fun orotund_A : A; -fun orphan_N : N; -fun orphan_V2 : V2; -fun orphanage_N : N; -fun orphaned_A : A; -fun orphenadrine_N : N; -fun orphrey_N : N; -fun orpiment_N : N; -fun orpine_N : N; -fun orrery_N : N; -fun orrisroot_N : N; -fun orthicon_N : N; -fun orthochorea_N : N; -fun orthoclase_N : N; -fun orthodontic_A : A; -fun orthodontics_N : N; -fun orthodontist_N : N; -fun orthodox_A : A; -fun orthodoxy_N : N; -fun orthoepist_N : N; -fun orthoepy_N : N; -fun orthogonal_A : A; -fun orthogonality_N : N; -fun orthographic_A : A; -fun orthography_N : N; -fun orthomolecular_A : A; -fun orthomyxovirus_N : N; -fun orthopaedic_A : A; -fun orthopaedics_N : N; -fun orthopedic_A : A; -fun orthopedics_N : N; -fun orthopedist_N : N; -fun orthopnea_N : N; -fun orthopter_N : N; -fun orthoptic_A : A; -fun orthoptics_N : N; -fun orthoptist_N : N; -fun orthoscope_N : N; -fun orthostatic_A : A; -fun orthotropous_A : A; -fun ortolan_N : N; -fun ortygan_N : N; -fun oryx_N : N; -fun orzo_N : N; -fun os_N : N; -fun oscar_N : N; -fun oscheocele_N : N; -fun oscillate_V : V; -fun oscillate_V2 : V2; -fun oscillation_N : N; -fun oscillator_N : N; -fun oscillatory_A : A; -fun oscillogram_N : N; -fun oscillograph_N : N; -fun oscilloscope_N : N; -fun oscine_A : A; -fun oscine_N : N; -fun oscitancy_N : N; -fun osculation_N : N; -fun osier_N : N; -fun osmiridium_N : N; -fun osmium_N : N; -fun osmoreceptor_N : N; -fun osmosis_N : N; -fun osmotic_A : A; -fun osmotically_Adv : Adv; -fun osprey_N : N; -fun osseous_A : A; -fun ossicle_N : N; -fun ossicular_A : A; -fun ossiferous_A : A; -fun ossification_N : N; -fun ossify_V : V; -fun ossify_V2 : V2; -fun ossuary_N : N; -fun osteal_A : A; -fun osteitis_N : N; -fun ostensible_A : A; -fun ostensive_A : A; -fun ostentation_N : N; -fun ostentatious_A : A; -fun ostentatiously_Adv : Adv; -fun osteoarthritis_N : N; -fun osteoblast_N : N; -fun osteoblastoma_N : N; -fun osteochondroma_N : N; -fun osteoclasis_N : N; -fun osteoclast_N : N; -fun osteocyte_N : N; -fun osteodystrophy_N : N; -fun osteologist_N : N; -fun osteology_N : N; -fun osteolysis_N : N; -fun osteoma_N : N; -fun osteomalacia_N : N; -fun osteomyelitis_N : N; -fun osteopath_N : N; -fun osteopathy_N : N; -fun osteopetrosis_N : N; -fun osteophyte_N : N; -fun osteoporosis_N : N; -fun osteosarcoma_N : N; -fun osteosclerosis_N : N; -fun osteostracan_N : N; -fun osteotomy_N : N; -fun ostinato_N : N; -fun ostiole_N : N; -fun ostler_N : N; -fun ostomy_N : N; -fun ostracism_N : N; -fun ostracize_V2 : V2; -fun ostracoderm_N : N; -fun ostrich_N : N; -fun ot_N : N; -fun other_A : A; -fun other_Adv : Adv; -fun other_N : N; -fun otherness_N : N; -fun otherwise_A : A; -fun otherwise_Adv : Adv; -fun otherworld_N : N; -fun otherworldly_A : A; -fun othonna_N : N; -fun otic_A : A; -fun otiose_A : A; -fun otitis_N : N; -fun otology_N : N; -fun otoplasty_N : N; -fun otorrhea_N : N; -fun otosclerosis_N : N; -fun otoscope_N : N; -fun ototoxic_A : A; -fun otter_N : N; -fun otterhound_N : N; -fun ottoman_N : N; -fun oubliette_N : N; -fun ouguiya_N : N; -fun ouija_N : N; -fun ouija_board_N : N; -fun ounce_N : N; -fun oust_V : V; -fun oust_V2 : V2; -fun ouster_N : N; -fun out_A : A; -fun out_Adv : Adv; -fun out_N : N; -fun out_Prep : Prep; -fun out_V2 : V2; -fun out_and_outer_N : N; -fun out_basket_N : N; -fun out_herod_V2 : V2; -fun out_of_Adv : Adv; -fun out_of_bounds_A : A; -fun out_of_date_A : A; -fun out_of_door_A : A; -fun out_of_doors_Adv : Adv; -fun out_of_gear_A : A; -fun out_of_hand_Adv : Adv; -fun out_of_place_Adv : Adv; -fun out_of_play_A : A; -fun out_of_pocket_A : A; -fun out_of_practice_A : A; -fun out_of_print_A : A; -fun out_of_school_A : A; -fun out_of_sight_Adv : Adv; -fun out_of_stock_A : A; -fun out_of_the_way_A : A; -fun out_of_the_way_A : A; -fun out_of_the_way_Adv : Adv; -fun out_of_thin_air_Adv : Adv; -fun out_of_town_A : A; -fun out_of_true_A : A; -fun out_of_wedlock_Adv : Adv; -fun out_of_whack_A : A; -fun out_of_work_A : A; -fun out_trade_V2 : V2; -fun out_tray_N : N; -fun outage_N : N; -fun outback_A : A; -fun outback_N : N; -fun outbalance_V2 : V2; -fun outbid_V2 : V2; -fun outboard_A : A; -fun outbound_A : A; -fun outbrave_V2 : V2; -fun outbreak_N : N; -fun outbred_A : A; -fun outbuilding_N : N; -fun outburst_N : N; -fun outcast_A : A; -fun outcast_N : N; -fun outcaste_A : A; -fun outcaste_N : N; -fun outclass_V2 : V2; -fun outclassed_A : A; -fun outcome_N : N; -fun outcrop_N : N; -fun outcry_N : N; -fun outdated_A : A; -fun outdistance_V2 : V2; -fun outdo_V2 : V2; -fun outdoor_A : A; -fun outdoors_Adv : Adv; -fun outdoors_N : N; -fun outdoorsman_N : N; -fun outdoorswoman_N : N; -fun outdoorsy_A : A; -fun outer_A : A; -fun outercourse_N : N; -fun outermost_A : A; -fun outerwear_N : N; -fun outface_V2 : V2; -fun outfall_N : N; -fun outfield_N : N; -fun outfielder_N : N; -fun outfight_V2 : V2; -fun outfit_N : N; -fun outfit_V2 : V2; -fun outfitted_A : A; -fun outfitter_N : N; -fun outfitting_N : N; -fun outflank_V2 : V2; -fun outflow_N : N; -fun outfly_V2 : V2; -fun outfox_V2 : V2; -fun outgain_V2 : V2; -fun outgo_N : N; -fun outgo_V : V; -fun outgoing_A : A; -fun outgrow_V2 : V2; -fun outgrowth_N : N; -fun outhouse_N : N; -fun outing_N : N; -fun outlandish_A : A; -fun outlandishly_Adv : Adv; -fun outlandishness_N : N; -fun outlast_V2 : V2; -fun outlaw_N : N; -fun outlaw_V2 : V2; -fun outlawry_N : N; -fun outlay_N : N; -fun outleap_V2 : V2; -fun outlet_N : N; -fun outlier_N : N; -fun outline_N : N; -fun outline_V2 : V2; -fun outlive_V2 : V2; -fun outlook_N : N; -fun outlying_A : A; -fun outmanoeuvre_V2 : V2; -fun outmarch_V2 : V2; -fun outmatch_V2 : V2; -fun outmoded_A : A; -fun outmost_A : A; -fun outnumber_V2 : V2; -fun outpace_V2 : V2; -fun outpatient_N : N; -fun outperform_V2 : V2; -fun outplay_V2 : V2; -fun outpoint_V2 : V2; -fun outport_N : N; -fun outpost_N : N; -fun outpouring_N : N; -fun output_N : N; -fun outrace_V2 : V2; -fun outrage_N : N; -fun outrage_V2 : V2; -fun outrageous_A : A; -fun outrageously_Adv : Adv; -fun outrageousness_N : N; -fun outrange_V2 : V2; -fun outrank_V2 : V2; -fun outre_A : A; -fun outreach_N : N; -fun outride_V2 : V2; -fun outrider_N : N; -fun outrigged_A : A; -fun outrigger_N : N; -fun outright_A : A; -fun outright_Adv : Adv; -fun outrival_V2 : V2; -fun outrun_V2 : V2; -fun outsail_V2 : V2; -fun outsell_V2 : V2; -fun outset_N : N; -fun outshine_V2 : V2; -fun outside_A : A; -fun outside_Adv : Adv; -fun outside_N : N; -fun outside_Prep : Prep; -fun outsider_N : N; -fun outsize_A : A; -fun outsize_N : N; -fun outskirt_N : N; -fun outskirts_N : N; -fun outsmart_V2 : V2; -fun outsole_N : N; -fun outspan_V : V; -fun outspan_V2 : V2; -fun outspoken_A : A; -fun outspokenly_Adv : Adv; -fun outspokenness_N : N; -fun outspread_A : A; -fun outstanding_A : A; -fun outstandingly_Adv : Adv; -fun outstation_N : N; -fun outstay_V2 : V2; -fun outstretched_A : A; -fun outstrip_V2 : V2; -fun outstroke_N : N; -fun outtake_N : N; -fun outthrust_N : N; -fun outvie_V2 : V2; -fun outvote_V2 : V2; -fun outward_A : A; -fun outward_Adv : Adv; -fun outward_developing_A : A; -fun outward_moving_A : A; -fun outwardly_Adv : Adv; -fun outwardness_N : N; -fun outwards_Adv : Adv; -fun outwear_V2 : V2; -fun outweigh_V2 : V2; -fun outwit_V2 : V2; -fun outwork_N : N; -fun ouzel_N : N; -fun ouzo_N : N; -fun oval_A : A; -fun oval_N : N; -fun oval_bodied_A : A; -fun oval_fruited_A : A; -fun ovarian_A : A; -fun ovaritis_N : N; -fun ovary_N : N; -fun ovate_A : A; -fun ovation_N : N; -fun oven_N : N; -fun oven_ready_A : A; -fun oven_shaped_A : A; -fun ovenbird_N : N; -fun ovenware_N : N; -fun over_Adv : Adv; -fun over_N : N; -fun over_Prep : Prep; -fun over_abundance_N : N; -fun over_and_over_Adv : Adv; -fun over_magazine_V2 : V2; -fun over_ripe_A : A; -fun over_the_counter_A : A; -fun overabundance_N : N; -fun overabundant_A : A; -fun overachievement_N : N; -fun overachiever_N : N; -fun overact_V : V; -fun overact_V2 : V2; -fun overactive_A : A; -fun overactivity_N : N; -fun overage_A : A; -fun overage_N : N; -fun overall_A : A; -fun overall_N : N; -fun overambitious_A : A; -fun overanxiety_N : N; -fun overanxious_A : A; -fun overarch_V : V; -fun overarch_V2 : V2; -fun overarm_A : A; -fun overarm_Adv : Adv; -fun overawe_V2 : V2; -fun overawed_A : A; -fun overbalance_V : V; -fun overbalance_V2 : V2; -fun overbear_V2 : V2; -fun overbearing_A : A; -fun overbearingly_Adv : Adv; -fun overbid_N : N; -fun overbid_V : V; -fun overbid_V2 : V2; -fun overbite_N : N; -fun overblown_A : A; -fun overboard_Adv : Adv; -fun overbold_A : A; -fun overburden_N : N; -fun overburden_V2 : V2; -fun overbusy_A : A; -fun overcall_V : V; -fun overcall_V2 : V2; -fun overcapitalization_N : N; -fun overcapitalize_V2 : V2; -fun overcareful_A : A; -fun overcast_A : A; -fun overcast_N : N; -fun overcast_V2 : V2; -fun overcautious_A : A; -fun overcharge_N : N; -fun overcharge_V : V; -fun overcharge_V2 : V2; -fun overclothe_V2 : V2; -fun overcloud_V : V; -fun overcloud_V2 : V2; -fun overcoat_N : N; -fun overcome_V : V; -fun overcome_V2 : V2; -fun overcommit_V2 : V2; -fun overcompensation_N : N; -fun overconfidence_N : N; -fun overconfident_A : A; -fun overcook_V2 : V2; -fun overcredulity_N : N; -fun overcredulous_A : A; -fun overcritical_A : A; -fun overcrop_V2 : V2; -fun overcrowd_V2 : V2; -fun overcurious_A : A; -fun overdelicate_A : A; -fun overdo_V2 : V2; -fun overdone_A : A; -fun overdose_V : V; -fun overdraft_N : N; -fun overdraw_V : V; -fun overdraw_V2 : V2; -fun overdress_V : V; -fun overdress_V2 : V2; -fun overdressed_A : A; -fun overdrive_N : N; -fun overdue_A : A; -fun overeager_A : A; -fun overeat_V : V; -fun overemotional_A : A; -fun overemphasis_N : N; -fun overemphasize_V : V; -fun overemphasize_V2 : V2; -fun overenthusiastic_A : A; -fun overestimate_N : N; -fun overestimate_V2 : V2; -fun overexcited_A : A; -fun overexert_V2 : V2; -fun overexertion_N : N; -fun overexploitation_N : N; -fun overexpose_V2 : V2; -fun overexposure_N : N; -fun overfamiliar_A : A; -fun overfed_A : A; -fun overfeed_V : V; -fun overfeed_V2 : V2; -fun overfeeding_N : N; -fun overflight_N : N; -fun overflow_N : N; -fun overflow_V : V; -fun overflow_V2 : V2; -fun overfly_V2 : V2; -fun overfond_A : A; -fun overfull_A : A; -fun overgarment_N : N; -fun overgenerous_A : A; -fun overgreedy_A : A; -fun overgrown_A : A; -fun overgrowth_N : N; -fun overhand_A : A; -fun overhang_N : N; -fun overhang_V : V; -fun overhang_V2 : V2; -fun overhasty_A : A; -fun overhaul_N : N; -fun overhaul_V2 : V2; -fun overhead_A : A; -fun overhead_Adv : Adv; -fun overhead_N : N; -fun overhear_V2 : V2; -fun overheat_V2 : V2; -fun overheated_A : A; -fun overheating_N : N; -fun overindulge_V : V; -fun overindulge_V2 : V2; -fun overindulgence_N : N; -fun overindulgent_A : A; -fun overjealous_A : A; -fun overjoyed_A : A; -fun overkill_N : N; -fun overladen_A : A; -fun overland_A : A; -fun overlap_N : N; -fun overlap_V : V; -fun overlap_V2 : V2; -fun overlarge_A : A; -fun overlay_N : N; -fun overlay_V2 : V2; -fun overleaf_Adv : Adv; -fun overleap_V2 : V2; -fun overlie_V : V; -fun overlip_N : N; -fun overload_N : N; -fun overload_V2 : V2; -fun overlook_N : N; -fun overlook_V2 : V2; -fun overlooked_A : A; -fun overlord_N : N; -fun overlordship_N : N; -fun overly_Adv : Adv; -fun overlying_A : A; -fun overmantel_N : N; -fun overmaster_V2 : V2; -fun overmodest_A : A; -fun overmuch_A : A; -fun overmuch_Adv : Adv; -fun overnervous_A : A; -fun overnight_A : A; -fun overnight_Adv : Adv; -fun overnighter_N : N; -fun overpass_N : N; -fun overpay_V : V; -fun overpay_V2 : V2; -fun overpayment_N : N; -fun overplant_V2 : V2; -fun overplay_V2 : V2; -fun overplus_N : N; -fun overpopulation_N : N; -fun overpower_V2 : V2; -fun overpowering_A : A; -fun overpraise_V2 : V2; -fun overpressure_N : N; -fun overprice_V2 : V2; -fun overpriced_A : A; -fun overprint_N : N; -fun overprint_V2 : V2; -fun overproduce_V : V; -fun overproduce_V2 : V2; -fun overproduction_N : N; -fun overprotective_A : A; -fun overproud_A : A; -fun overrate_V2 : V2; -fun overreach_V2 : V2; -fun overreaching_A : A; -fun overreact_V : V; -fun overreaction_N : N; -fun overrefined_A : A; -fun override_N : N; -fun override_V2 : V2; -fun overriding_A : A; -fun overripe_A : A; -fun overrule_V2 : V2; -fun overrun_V2 : V2; -fun oversea_A : A; -fun oversea_Adv : Adv; -fun overseas_A : A; -fun overseas_Adv : Adv; -fun oversee_V2 : V2; -fun overseer_N : N; -fun oversell_V2 : V2; -fun oversensitive_A : A; -fun oversensitiveness_N : N; -fun overserious_A : A; -fun oversew_V2 : V2; -fun oversewn_A : A; -fun oversexed_A : A; -fun overshadow_V2 : V2; -fun overshoe_N : N; -fun overshoot_N : N; -fun overshoot_V2 : V2; -fun overshot_A : A; -fun overside_Adv : Adv; -fun oversight_N : N; -fun oversimplification_N : N; -fun oversimplify_V : V; -fun oversimplify_V2 : V2; -fun oversize_A : A; -fun overskirt_N : N; -fun oversleep_V : V; -fun oversolicitous_A : A; -fun overspend_V : V; -fun overspend_V2 : V2; -fun overspill_N : N; -fun overstate_V2 : V2; -fun overstatement_N : N; -fun overstay_V2 : V2; -fun overstep_V2 : V2; -fun overstock_V2 : V2; -fun overstrain_N : N; -fun overstrain_V2 : V2; -fun overstress_V2 : V2; -fun overstrung_A : A; -fun overstuffed_A : A; -fun oversubscribe_V2 : V2; -fun oversubscribed_A : A; -fun oversuspicious_A : A; -fun overt_A : A; -fun overtake_V2 : V2; -fun overtax_V2 : V2; -fun overthrow_N : N; -fun overthrow_V2 : V2; -fun overtime_Adv : Adv; -fun overtime_N : N; -fun overtly_Adv : Adv; -fun overtolerance_N : N; -fun overtone_N : N; -fun overtop_V2 : V2; -fun overtrump_V2 : V2; -fun overture_N : N; -fun overturn_N : N; -fun overturn_V : V; -fun overturn_V2 : V2; -fun overturned_A : A; -fun overvaliant_A : A; -fun overvaluation_N : N; -fun overvalue_V2 : V2; -fun overview_N : N; -fun overweening_A : A; -fun overweight_A : A; -fun overweight_N : N; -fun overweighted_A : A; -fun overwhelm_V2 : V2; -fun overwhelmingly_Adv : Adv; -fun overwork_N : N; -fun overwork_V : V; -fun overwork_V2 : V2; -fun overwrought_A : A; -fun overzealous_A : A; -fun oviduct_N : N; -fun ovine_A : A; -fun oviparous_A : A; -fun ovipositor_N : N; -fun oviraptorid_N : N; -fun ovoid_A : A; -fun ovoid_N : N; -fun ovolo_N : N; -fun ovotestis_N : N; -fun ovoviviparous_A : A; -fun ovular_A : A; -fun ovulation_N : N; -fun ovule_N : N; -fun ovum_N : N; -fun owe_V : V; -fun owe_V2 : V2; -fun owing_A : A; -fun owl_N : N; -fun owlet_N : N; -fun owlish_A : A; -fun owlishly_Adv : Adv; -fun own_A : A; -fun own_V : V; -fun own_V2 : V2; -fun owned_A : A; -fun owner_N : N; -fun owner_driven_A : A; -fun owner_driver_N : N; -fun owner_driver_N : N; -fun owner_occupied_A : A; -fun owner_occupied_A : A; -fun owner_occupier_N : N; -fun owner_occupier_N : N; -fun ownerless_A : A; -fun ownership_N : N; -fun ox_N : N; -fun ox_eyed_A : A; -fun oxacillin_N : N; -fun oxalacetate_N : N; -fun oxalate_N : N; -fun oxalis_N : N; -fun oxaprozin_N : N; -fun oxazepam_N : N; -fun oxbow_N : N; -fun oxcart_N : N; -fun oxeye_N : N; -fun oxeyed_A : A; -fun oxford_N : N; -fun oxford_grey_A : A; -fun oxidant_N : N; -fun oxidase_N : N; -fun oxidation_N : N; -fun oxidation_reduction_N : N; -fun oxidative_A : A; -fun oxide_N : N; -fun oxidizable_A : A; -fun oxidization_N : N; -fun oxidize_V : V; -fun oxidize_V2 : V2; -fun oxidized_A : A; -fun oxidized_ldl_cholesterol_PN : PN; -fun oxidoreductase_N : N; -fun oxime_N : N; -fun oximeter_N : N; -fun oxlip_N : N; -fun oxonian_A : A; -fun oxonian_N : N; -fun oxtail_N : N; -fun oxtant_N : N; -fun oxtongue_N : N; -fun oxyacetylene_A : A; -fun oxyacetylene_N : N; -fun oxyacid_N : N; -fun oxycephaly_N : N; -fun oxygen_N : N; -fun oxygenase_N : N; -fun oxygenate_V2 : V2; -fun oxygenation_N : N; -fun oxygenize_V2 : V2; -fun oxyhemoglobin_N : N; -fun oxymoron_N : N; -fun oxyopia_N : N; -fun oxyphenbutazone_N : N; -fun oxyphencyclimine_N : N; -fun oxytetracycline_N : N; -fun oxytocic_N : N; -fun oxytocin_N : N; -fun oxytone_N : N; -fun oyabun_N : N; -fun oyster_N : N; -fun oyster_V : V; -fun oyster_bank_N : N; -fun oyster_bar_N : N; -fun oyster_bed_N : N; -fun oyster_catcher_N : N; -fun oystercatcher_N : N; -fun oysters_rockefeller_PN : PN; -fun oz_N : N; -fun ozena_N : N; -fun ozone_N : N; -fun ozonide_N : N; -fun ph_N : N; -fun pa_N : N; -fun pa'anga_N : N; -fun pabulum_N : N; -fun paca_N : N; -fun pace_N : N; -fun pace_V : V; -fun pace_V2 : V2; -fun pacemaker_N : N; -fun pacer_N : N; -fun pacesetter_N : N; -fun pachinko_N : N; -fun pachisi_N : N; -fun pachuco_N : N; -fun pachycephalosaur_N : N; -fun pachycheilia_N : N; -fun pachyderm_N : N; -fun pachydermatous_A : A; -fun pachysandra_N : N; -fun pachytene_N : N; -fun pacific_A : A; -fun pacifically_Adv : Adv; -fun pacification_N : N; -fun pacifier_N : N; -fun pacifism_N : N; -fun pacifist_A : A; -fun pacifist_N : N; -fun pacifistically_Adv : Adv; -fun pacify_V2 : V2; -fun pacing_N : N; -fun pack_N : N; -fun pack_V : V; -fun pack_V2 : V2; -fun pack_animal_N : N; -fun pack_saddle_N : N; -fun pack_thread_N : N; -fun packable_A : A; -fun package_N : N; -fun package_V2 : V2; -fun packaged_A : A; -fun packaging_N : N; -fun packed_A : A; -fun packer_N : N; -fun packet_N : N; -fun packet_boat_N : N; -fun packhorse_N : N; -fun packing_N : N; -fun packing_case_N : N; -fun packing_needle_N : N; -fun packinghouse_N : N; -fun packrat_N : N; -fun packsaddle_N : N; -fun packthread_N : N; -fun pact_N : N; -fun pad_N : N; -fun pad_V : V; -fun pad_V2 : V2; -fun padauk_N : N; -fun padding_N : N; -fun paddle_N : N; -fun paddle_V : V; -fun paddle_V2 : V2; -fun paddle_box_N : N; -fun paddle_shaped_A : A; -fun paddle_steamer_N : N; -fun paddle_wheel_N : N; -fun paddlefish_N : N; -fun paddlewheel_N : N; -fun paddock_N : N; -fun paddy_N : N; -fun paddy_field_N : N; -fun paddy_wagon_N : N; -fun paddywhack_V2 : V2; -fun pademelon_N : N; -fun padlock_N : N; -fun padlock_V2 : V2; -fun padre_N : N; -fun padrone_N : N; -fun paean_N : N; -fun paederasty_N : N; -fun paediatrics_N : N; -fun paella_N : N; -fun paeony_N : N; -fun pagan_A : A; -fun pagan_N : N; -fun paganism_N : N; -fun page_N : N; -fun page_V2 : V2; -fun pageant_N : N; -fun pageantry_N : N; -fun pageboy_N : N; -fun pagination_N : N; -fun paging_N : N; -fun pagoda_N : N; -fun pahautea_N : N; -fun pahoehoe_N : N; -fun paid_A : A; -fun paid_up_A : A; -fun pail_N : N; -fun pailful_N : N; -fun paillasse_N : N; -fun pailliasse_N : N; -fun pain_N : N; -fun pain_V : V; -fun pain_V2 : V2; -fun pain_free_A : A; -fun pained_A : A; -fun painful_A : A; -fun painfully_Adv : Adv; -fun painfulness_N : N; -fun painkiller_N : N; -fun painless_A : A; -fun painlessly_Adv : Adv; -fun painstaking_A : A; -fun painstakingly_Adv : Adv; -fun paint_N : N; -fun paint_V : V; -fun paint_V2 : V2; -fun paintable_A : A; -fun paintball_N : N; -fun paintbox_N : N; -fun paintbrush_N : N; -fun painted_A : A; -fun painter_N : N; -fun painterly_A : A; -fun painting_N : N; -fun pair_N : N; -fun pair_V : V; -fun pair_V2 : V2; -fun paired_A : A; -fun pairing_N : N; -fun paisa_N : N; -fun paisley_N : N; -fun pajama_N : N; -fun pakistani_A : A; -fun pakistani_N : N; -fun pal_N : N; -fun pal_V : V; -fun palace_N : N; -fun paladin_N : N; -fun palaeolithic_A : A; -fun palaeontologist_N : N; -fun palaeontology_N : N; -fun palankeen_N : N; -fun palanquin_N : N; -fun palatability_N : N; -fun palatable_A : A; -fun palatably_Adv : Adv; -fun palatal_A : A; -fun palatal_N : N; -fun palate_N : N; -fun palatial_A : A; -fun palatinate_N : N; -fun palatine_A : A; -fun palatine_N : N; -fun palatoglossal_A : A; -fun palatopharyngoplasty_N : N; -fun palaver_N : N; -fun palaver_V : V; -fun pale_A : A; -fun pale_N : N; -fun pale_V : V; -fun pale_colored_A : A; -fun pale_faced_A : A; -fun paleencephalon_N : N; -fun paleface_N : N; -fun palely_Adv : Adv; -fun paleness_N : N; -fun paleoanthropological_A : A; -fun paleoanthropology_N : N; -fun paleobiology_N : N; -fun paleobotany_N : N; -fun paleocerebellum_N : N; -fun paleoclimatology_N : N; -fun paleocortical_A : A; -fun paleodendrology_N : N; -fun paleoecology_N : N; -fun paleoethnography_N : N; -fun paleogeography_N : N; -fun paleogeology_N : N; -fun paleographer_N : N; -fun paleography_N : N; -fun paleolith_N : N; -fun paleolithic_A : A; -fun paleology_N : N; -fun paleomammalogy_N : N; -fun paleontological_A : A; -fun paleontologist_N : N; -fun paleontology_N : N; -fun paleopathology_N : N; -fun paleornithology_N : N; -fun paleozoology_N : N; -fun palestinian_A : A; -fun palestinian_N : N; -fun palestra_N : N; -fun paletiology_N : N; -fun palette_N : N; -fun palette_knife_N : N; -fun palfrey_N : N; -fun palilalia_N : N; -fun palimony_N : N; -fun palimpsest_N : N; -fun palindrome_N : N; -fun paling_N : N; -fun palingenesis_N : N; -fun palingenetic_A : A; -fun palisade_N : N; -fun palisade_V2 : V2; -fun palish_A : A; -fun pall_N : N; -fun pall_V : V; -fun pall_mall_N : N; -fun palladium_N : N; -fun pallasite_N : N; -fun pallbearer_N : N; -fun pallet_N : N; -fun pallette_N : N; -fun palliasse_N : N; -fun palliate_V2 : V2; -fun palliation_N : N; -fun palliative_A : A; -fun palliative_N : N; -fun pallid_A : A; -fun pallidly_Adv : Adv; -fun pallidness_N : N; -fun pallidum_N : N; -fun pallium_N : N; -fun pallone_N : N; -fun pallor_N : N; -fun pally_A : A; -fun palm_N : N; -fun palm_V2 : V2; -fun palm_oil_N : N; -fun palmar_A : A; -fun palmate_A : A; -fun palmately_Adv : Adv; -fun palmately_lobed_A : A; -fun palmatifid_A : A; -fun palmature_N : N; -fun palmer_N : N; -fun palmetto_N : N; -fun palmist_N : N; -fun palmistry_N : N; -fun palmitin_N : N; -fun palmlike_A : A; -fun palmy_A : A; -fun palmyra_N : N; -fun palometa_N : N; -fun palomino_N : N; -fun paloverde_N : N; -fun palpable_A : A; -fun palpably_Adv : Adv; -fun palpation_N : N; -fun palpatory_A : A; -fun palpebrate_A : A; -fun palpebration_N : N; -fun palpitant_A : A; -fun palpitate_V : V; -fun palpitation_N : N; -fun palsied_A : A; -fun palsy_N : N; -fun palsy_V2 : V2; -fun palter_V : V; -fun paltriness_N : N; -fun paltry_A : A; -fun pampas_N : N; -fun pampas_grass_N : N; -fun pamper_V2 : V2; -fun pamperer_N : N; -fun pampering_A : A; -fun pamphlet_N : N; -fun pamphleteer_N : N; -fun pan_N : N; -fun pan_V : V; -fun pan_V2 : V2; -fun panacea_N : N; -fun panache_N : N; -fun panama_N : N; -fun panamanian_A : A; -fun panamanian_N : N; -fun panatela_N : N; -fun panatella_N : N; -fun pancake_N : N; -fun pancake_like_A : A; -fun pancake_style_A : A; -fun pancarditis_N : N; -fun panchayat_N : N; -fun panchromatic_A : A; -fun pancreas_N : N; -fun pancreatectomy_N : N; -fun pancreatic_A : A; -fun pancreatin_N : N; -fun pancreatitis_N : N; -fun pancytopenia_N : N; -fun panda_N : N; -fun pandanus_N : N; -fun pandemic_A : A; -fun pandemic_N : N; -fun pandemonium_N : N; -fun pander_N : N; -fun pander_V : V; -fun panderer_N : N; -fun pandiculation_N : N; -fun pandurate_A : A; -fun pane_N : N; -fun panegyric_N : N; -fun panel_N : N; -fun panel_V2 : V2; -fun paneled_A : A; -fun paneling_N : N; -fun panelist_N : N; -fun panelling_N : N; -fun panencephalitis_N : N; -fun panfish_N : N; -fun pang_N : N; -fun panga_N : N; -fun pangolin_N : N; -fun panhandle_N : N; -fun panhandle_V : V; -fun panhandler_N : N; -fun panic_N : N; -fun panic_V : V; -fun panic_V2 : V2; -fun panic_stricken_A : A; -fun panicky_A : A; -fun panicle_N : N; -fun panicled_A : A; -fun paniculate_A : A; -fun panjandrum_N : N; -fun pannier_N : N; -fun pannikin_N : N; -fun panoplied_A : A; -fun panoply_N : N; -fun panoptic_A : A; -fun panopticon_N : N; -fun panorama_N : N; -fun panoramic_A : A; -fun panpipe_N : N; -fun pansexual_N : N; -fun pansinusitis_N : N; -fun pansy_N : N; -fun pant_N : N; -fun pant_V : V; -fun pant_V2 : V2; -fun pantaloon_N : N; -fun pantechnicon_N : N; -fun pantheism_N : N; -fun pantheist_A : A; -fun pantheist_N : N; -fun pantheistic_A : A; -fun pantheon_N : N; -fun panther_N : N; -fun pantie_N : N; -fun pantile_N : N; -fun panting_N : N; -fun pantingly_Adv : Adv; -fun panto_N : N; -fun pantograph_N : N; -fun pantomime_N : N; -fun pantropical_A : A; -fun pantry_N : N; -fun pantryman_N : N; -fun panty_hose_N : N; -fun pantyhose_N : N; -fun panzer_A : A; -fun panzer_N : N; -fun pap_N : N; -fun papa_N : N; -fun papacy_N : N; -fun papain_N : N; -fun papal_A : A; -fun paparazzo_N : N; -fun papaverine_N : N; -fun papaw_N : N; -fun papaya_N : N; -fun paper_N : N; -fun paper_V2 : V2; -fun paper_chase_N : N; -fun paper_pusher_N : N; -fun paper_thin_A : A; -fun paperback_A : A; -fun paperback_N : N; -fun paperbacked_A : A; -fun paperboard_N : N; -fun paperboy_N : N; -fun paperclip_N : N; -fun paperhanger_N : N; -fun papering_N : N; -fun paperknife_N : N; -fun paperless_A : A; -fun papermaking_N : N; -fun papermill_N : N; -fun paperweight_N : N; -fun paperwork_N : N; -fun papery_A : A; -fun papier_mache_N : N; -fun papier_mache_N : N; -fun papilla_N : N; -fun papillary_A : A; -fun papillate_A : A; -fun papilledema_N : N; -fun papilliform_A : A; -fun papilloma_N : N; -fun papillon_N : N; -fun papist_A : A; -fun papist_N : N; -fun papoose_N : N; -fun papovavirus_N : N; -fun pappose_A : A; -fun pappus_N : N; -fun paprika_N : N; -fun papuan_A : A; -fun papuan_N : N; -fun papule_N : N; -fun papulovesicle_N : N; -fun papyrus_N : N; -fun par_N : N; -fun par_excellence_Adv : Adv; -fun para_N : N; -fun parable_N : N; -fun parabola_N : N; -fun parabolic_A : A; -fun parabolical_A : A; -fun paraboloid_N : N; -fun paraboloidal_A : A; -fun parachute_N : N; -fun parachute_V : V; -fun parachute_V2 : V2; -fun parachutist_N : N; -fun paracosm_N : N; -fun parade_N : N; -fun parade_V : V; -fun parade_V2 : V2; -fun parade_ground_N : N; -fun paradiddle_N : N; -fun paradigm_N : N; -fun paradigmatic_A : A; -fun paradise_N : N; -fun paradisiac_A : A; -fun paradisiacal_A : A; -fun paradox_N : N; -fun paradoxical_A : A; -fun paradoxically_Adv : Adv; -fun paraffin_N : N; -fun parafovea_N : N; -fun paragon_N : N; -fun paragonite_N : N; -fun paragraph_N : N; -fun paragraph_V2 : V2; -fun paragrapher_N : N; -fun paraguayan_A : A; -fun paraguayan_N : N; -fun parakeet_N : N; -fun paralanguage_N : N; -fun paraldehyde_N : N; -fun paralegal_N : N; -fun paralepsis_N : N; -fun parallax_N : N; -fun parallel_A : A; -fun parallel_N : N; -fun parallel_V2 : V2; -fun parallelepiped_N : N; -fun parallelism_N : N; -fun parallelogram_N : N; -fun paralogism_N : N; -fun paralyse_V2 : V2; -fun paralysis_N : N; -fun paralytic_A : A; -fun paralytic_N : N; -fun paralyze_V2 : V2; -fun paramagnet_N : N; -fun paramagnetic_A : A; -fun paramagnetism_N : N; -fun paramecium_N : N; -fun paramedic_N : N; -fun paramedical_A : A; -fun parameter_N : N; -fun parametric_A : A; -fun parametritis_N : N; -fun paramilitary_A : A; -fun paramilitary_N : N; -fun paramnesia_N : N; -fun paramount_A : A; -fun paramountcy_N : N; -fun paramour_N : N; -fun paramyxovirus_N : N; -fun paranasal_A : A; -fun parang_N : N; -fun paranoia_N : N; -fun paranoiac_N : N; -fun paranoid_A : A; -fun paranoid_N : N; -fun paranormal_A : A; -fun paraparesis_N : N; -fun parapet_N : N; -fun paraph_N : N; -fun paraphernalia_N : N; -fun paraphilia_N : N; -fun paraphrase_N : N; -fun paraphrase_V2 : V2; -fun paraphrastic_A : A; -fun paraphysis_N : N; -fun paraplegia_N : N; -fun paraplegic_A : A; -fun paraplegic_N : N; -fun parapodium_N : N; -fun paraprofessional_N : N; -fun parapsychological_A : A; -fun parapsychologist_N : N; -fun paraquat_N : N; -fun parasail_N : N; -fun parasailing_N : N; -fun parasite_N : N; -fun parasitemia_N : N; -fun parasitic_A : A; -fun parasitical_A : A; -fun parasitically_Adv : Adv; -fun parasitism_N : N; -fun parasol_N : N; -fun parasympathetic_A : A; -fun parasympathomimetic_A : A; -fun parathion_N : N; -fun paratrooper_N : N; -fun paratroops_N : N; -fun paratyphoid_N : N; -fun parboil_V2 : V2; -fun parcel_N : N; -fun parcel_V2 : V2; -fun parcellation_N : N; -fun parch_V2 : V2; -fun parched_A : A; -fun parchment_N : N; -fun pardon_N : N; -fun pardon_V2 : V2; -fun pardonable_A : A; -fun pardoner_N : N; -fun pare_V2 : V2; -fun paregmenon_N : N; -fun paregoric_N : N; -fun parenchyma_N : N; -fun parent_N : N; -fun parentage_N : N; -fun parental_A : A; -fun parentally_Adv : Adv; -fun parented_A : A; -fun parenteral_A : A; -fun parenterally_Adv : Adv; -fun parenthesis_N : N; -fun parenthetic_A : A; -fun parenthetical_A : A; -fun parenthetically_Adv : Adv; -fun parenthood_N : N; -fun parer_N : N; -fun paresis_N : N; -fun paresthesia_N : N; -fun paretic_N : N; -fun pareve_A : A; -fun parfait_N : N; -fun parget_N : N; -fun pargeting_N : N; -fun parhelic_A : A; -fun parhelion_N : N; -fun pari_mutuel_N : N; -fun pari_passu_Adv : Adv; -fun pariah_N : N; -fun pariah_dog_N : N; -fun parietal_A : A; -fun parimutuel_N : N; -fun paring_N : N; -fun parish_N : N; -fun parishioner_N : N; -fun parisian_A : A; -fun parisian_N : N; -fun parisology_N : N; -fun parity_N : N; -fun park_N : N; -fun park_V : V; -fun park_V2 : V2; -fun parka_N : N; -fun parked_A : A; -fun parking_N : N; -fun parkinson's_A : A; -fun parky_A : A; -fun parlance_N : N; -fun parlay_N : N; -fun parley_N : N; -fun parley_V : V; -fun parliament_N : N; -fun parliamentarian_N : N; -fun parliamentary_A : A; -fun parlor_N : N; -fun parlormaid_N : N; -fun parlour_N : N; -fun parlour_car_N : N; -fun parlous_A : A; -fun parmesan_N : N; -fun parnassia_N : N; -fun parochial_A : A; -fun parochialism_N : N; -fun parochially_Adv : Adv; -fun parodist_N : N; -fun parody_N : N; -fun parody_V2 : V2; -fun paroicous_A : A; -fun parole_N : N; -fun parole_V2 : V2; -fun paronychia_N : N; -fun paroquet_N : N; -fun parotid_A : A; -fun parotitis_N : N; -fun parous_A : A; -fun paroxetime_N : N; -fun paroxysm_N : N; -fun paroxysmal_A : A; -fun paroxytone_N : N; -fun parquet_N : N; -fun parquetry_N : N; -fun parr_N : N; -fun parricide_N : N; -fun parrot_N : N; -fun parrotfish_N : N; -fun parrotlike_A : A; -fun parry_N : N; -fun parry_V2 : V2; -fun parse_V2 : V2; -fun parsec_N : N; -fun parsee_N : N; -fun parser_N : N; -fun parsimonious_A : A; -fun parsimony_N : N; -fun parsley_N : N; -fun parsnip_N : N; -fun parson_N : N; -fun parsonage_N : N; -fun part_Adv : Adv; -fun part_N : N; -fun part_V : V; -fun part_V2 : V2; -fun part_owner_N : N; -fun part_owner_N : N; -fun part_singing_N : N; -fun part_singing_N : N; -fun part_song_N : N; -fun part_time_A : A; -fun part_time_A : A; -fun part_time_Adv : Adv; -fun part_timer_N : N; -fun part_timer_N : N; -fun partake_V : V; -fun partake_V2 : V2; -fun partaker_N : N; -fun parted_A : A; -fun parterre_N : N; -fun parthenocarpy_N : N; -fun parthenogenesis_N : N; -fun parthenote_N : N; -fun parthian_A : A; -fun parti_coloured_A : A; -fun partial_A : A; -fun partiality_N : N; -fun partially_Adv : Adv; -fun partialness_N : N; -fun partible_A : A; -fun participant_N : N; -fun participate_V : V; -fun participate_V2 : V2; -fun participation_N : N; -fun participatory_A : A; -fun participial_A : A; -fun participle_N : N; -fun particle_N : N; -fun particular_A : A; -fun particular_N : N; -fun particularism_N : N; -fun particularistic_A : A; -fun particularity_N : N; -fun particularization_N : N; -fun particularize_V : V; -fun particularize_V2 : V2; -fun particularized_A : A; -fun particularly_Adv : Adv; -fun particulate_A : A; -fun particulate_N : N; -fun parting_N : N; -fun partisan_A : A; -fun partisan_N : N; -fun partisanship_N : N; -fun partita_N : N; -fun partition_N : N; -fun partition_V2 : V2; -fun partitionist_N : N; -fun partitive_A : A; -fun partitive_N : N; -fun partly_Adv : Adv; -fun partner_N : N; -fun partner_V : V; -fun partner_V2 : V2; -fun partnership_N : N; -fun partridge_N : N; -fun partridgeberry_N : N; -fun parts_N : N; -fun partsong_N : N; -fun parturiency_N : N; -fun parturient_A : A; -fun parturition_N : N; -fun party_N : N; -fun party_spirit_N : N; -fun party_spirited_A : A; -fun party_spirited_A : A; -fun party_wall_N : N; -fun partygoer_N : N; -fun parvenu_A : A; -fun parvenu_N : N; -fun parvis_N : N; -fun parvovirus_N : N; -fun pas_N : N; -fun pascal_N : N; -fun paschal_A : A; -fun pasha_N : N; -fun pashto_N : N; -fun pasqueflower_N : N; -fun pass_N : N; -fun pass_V : V; -fun pass_V2 : V2; -fun pass_on_V2 : V2; -fun pass_through_N : N; -fun passable_A : A; -fun passage_N : N; -fun passageway_N : N; -fun passant_A : A; -fun passbook_N : N; -fun passe_A : A; -fun passe_partout_N : N; -fun passee_A : A; -fun passenger_N : N; -fun passepartout_N : N; -fun passer_N : N; -fun passer_by_N : N; -fun passerby_N : N; -fun passerine_A : A; -fun passerine_N : N; -fun passim_Adv : Adv; -fun passing_A : A; -fun passing_Adv : Adv; -fun passing_N : N; -fun passing_out_A : A; -fun passion_N : N; -fun passion_flower_N : N; -fun passionate_A : A; -fun passionately_Adv : Adv; -fun passionflower_N : N; -fun passionless_A : A; -fun passive_A : A; -fun passive_N : N; -fun passively_Adv : Adv; -fun passiveness_N : N; -fun passivity_N : N; -fun passkey_N : N; -fun passover_N : N; -fun passport_N : N; -fun password_N : N; -fun past_A : A; -fun past_Adv : Adv; -fun past_N : N; -fun past_Prep : Prep; -fun pasta_N : N; -fun paste_N : N; -fun paste_V2 : V2; -fun paste_up_N : N; -fun paste_up_N : N; -fun pasteboard_N : N; -fun pastel_A : A; -fun pastel_N : N; -fun pastel_colored_A : A; -fun paster_N : N; -fun pastern_N : N; -fun pasteurization_N : N; -fun pasteurize_V2 : V2; -fun pasteurized_A : A; -fun pastiche_N : N; -fun pastille_N : N; -fun pastime_N : N; -fun pasting_N : N; -fun pastis_N : N; -fun pastness_N : N; -fun pastor_N : N; -fun pastoral_A : A; -fun pastoral_N : N; -fun pastorale_N : N; -fun pastorate_N : N; -fun pastorship_N : N; -fun pastrami_N : N; -fun pastry_N : N; -fun pastry_cook_N : N; -fun pasturage_N : N; -fun pasture_N : N; -fun pasture_V : V; -fun pasture_V2 : V2; -fun pasty_A : A; -fun pasty_N : N; -fun pat_A : A; -fun pat_Adv : Adv; -fun pat_N : N; -fun pat_V : V; -fun pat_V2 : V2; -fun pataca_N : N; -fun patas_N : N; -fun patch_N : N; -fun patch_V2 : V2; -fun patch_pocket_N : N; -fun patchcord_N : N; -fun patched_A : A; -fun patchily_Adv : Adv; -fun patchiness_N : N; -fun patching_N : N; -fun patchouli_N : N; -fun patchwork_N : N; -fun patchy_A : A; -fun pate_N : N; -fun pate_1_N : N; -fun pate_2_N : N; -fun pate_de_foie_gras_N : N; -fun patella_N : N; -fun patellar_A : A; -fun patency_N : N; -fun patent_A : A; -fun patent_N : N; -fun patent_V2 : V2; -fun patented_A : A; -fun patentee_N : N; -fun pater_N : N; -fun paterfamilias_N : N; -fun paternal_A : A; -fun paternalism_N : N; -fun paternalistic_A : A; -fun paternally_Adv : Adv; -fun paternity_N : N; -fun paternoster_N : N; -fun path_N : N; -fun path_finder_N : N; -fun pathetic_A : A; -fun pathetically_Adv : Adv; -fun pathless_A : A; -fun pathogen_N : N; -fun pathogenesis_N : N; -fun pathogenically_Adv : Adv; -fun pathological_A : A; -fun pathologically_Adv : Adv; -fun pathologist_N : N; -fun pathology_N : N; -fun pathos_N : N; -fun pathway_N : N; -fun patience_N : N; -fun patient_A : A; -fun patient_N : N; -fun patiently_Adv : Adv; -fun patina_N : N; -fun patio_N : N; -fun patisserie_N : N; -fun patka_N : N; -fun patois_N : N; -fun patrial_N : N; -fun patriarch_N : N; -fun patriarchal_A : A; -fun patriarchate_N : N; -fun patriarchic_A : A; -fun patriarchy_N : N; -fun patricentric_A : A; -fun patrician_A : A; -fun patrician_N : N; -fun patricide_N : N; -fun patrilineage_N : N; -fun patrilineal_A : A; -fun patrilineally_Adv : Adv; -fun patrimonial_A : A; -fun patrimony_N : N; -fun patriot_N : N; -fun patriotic_A : A; -fun patriotically_Adv : Adv; -fun patriotism_N : N; -fun patristic_A : A; -fun patristics_N : N; -fun patrol_N : N; -fun patrol_V : V; -fun patrol_V2 : V2; -fun patroller_N : N; -fun patrolman_N : N; -fun patron_N : N; -fun patronage_N : N; -fun patroness_N : N; -fun patronize_V2 : V2; -fun patronized_A : A; -fun patronizing_A : A; -fun patronymic_A : A; -fun patronymic_N : N; -fun patten_N : N; -fun patter_N : N; -fun patter_V : V; -fun patter_V2 : V2; -fun pattern_N : N; -fun pattern_V2 : V2; -fun patterned_A : A; -fun patternmaker_N : N; -fun patty_N : N; -fun patty_pan_N : N; -fun patty_pan_N : N; -fun patzer_N : N; -fun paucity_N : N; -fun paunch_N : N; -fun paunchiness_N : N; -fun paunchy_A : A; -fun pauper_N : N; -fun pauper_V2 : V2; -fun pauperism_N : N; -fun pauperization_N : N; -fun pauperize_V2 : V2; -fun pause_N : N; -fun pause_V : V; -fun pause_V2V : V2V; -fun pause_VS : VS; -fun pavage_N : N; -fun pavane_N : N; -fun pave_N : N; -fun pave_V2 : V2; -fun paved_A : A; -fun pavement_N : N; -fun pavilion_N : N; -fun paving_N : N; -fun paving_stone_N : N; -fun pavior_N : N; -fun pavis_N : N; -fun pavlova_N : N; -fun pavonia_N : N; -fun paw_N : N; -fun paw_V : V; -fun paw_V2 : V2; -fun pawer_N : N; -fun pawky_A : A; -fun pawl_N : N; -fun pawn_N : N; -fun pawn_V2 : V2; -fun pawn_ticket_N : N; -fun pawnbroker_N : N; -fun pawnshop_N : N; -fun pawpaw_N : N; -fun pax_N : N; -fun pax_romana_N : N; -fun pay_N : N; -fun pay_V : V; -fun pay_V2 : V2; -fun pay_V2V : V2V; -fun pay_VS : VS; -fun pay_as_you_earn_N : N; -fun pay_claim_N : N; -fun pay_packet_N : N; -fun pay_phone_N : N; -fun pay_station_N : N; -fun payable_A : A; -fun payables_N : N; -fun payback_N : N; -fun paycheck_N : N; -fun payday_N : N; -fun paydirt_N : N; -fun payee_N : N; -fun payer_N : N; -fun payload_N : N; -fun paymaster_N : N; -fun payment_N : N; -fun paynim_N : N; -fun payoff_N : N; -fun payola_N : N; -fun payphone_N : N; -fun payroll_N : N; -fun paysheet_N : N; -fun payslip_N : N; -fun pdsa_N : N; -fun pe_N : N; -fun pea_N : N; -fun pea_chick_N : N; -fun pea_flour_N : N; -fun pea_green_A : A; -fun pea_green_A : A; -fun pea_green_N : N; -fun pea_jacket_N : N; -fun pea_soup_N : N; -fun peace_N : N; -fun peace_offering_N : N; -fun peaceable_A : A; -fun peaceableness_N : N; -fun peaceably_Adv : Adv; -fun peaceful_A : A; -fun peacefully_Adv : Adv; -fun peacefulness_N : N; -fun peacekeeper_N : N; -fun peacekeeping_A : A; -fun peacekeeping_N : N; -fun peacemaker_N : N; -fun peacetime_N : N; -fun peach_N : N; -fun peach_V : V; -fun peach_V2 : V2; -fun peach_colored_A : A; -fun peachick_N : N; -fun peachy_A : A; -fun peacock_N : N; -fun peacock_blue_A : A; -fun peacock_blue_A : A; -fun peacock_blue_N : N; -fun peacock_throne_N : N; -fun peafowl_N : N; -fun peahen_N : N; -fun peak_N : N; -fun peak_V : V; -fun peak_V2 : V2; -fun peaked_A : A; -fun peaky_A : A; -fun peal_N : N; -fun peal_V : V; -fun peal_V2 : V2; -fun peanut_N : N; -fun peanuts_N : N; -fun pear_N : N; -fun pear_shaped_A : A; -fun pearl_N : N; -fun pearl_V : V; -fun pearl_barley_N : N; -fun pearl_diver_N : N; -fun pearl_fishery_N : N; -fun pearl_grey_A : A; -fun pearl_oyster_N : N; -fun pearl_sago_N : N; -fun pearlfish_N : N; -fun pearlite_N : N; -fun pearlwort_N : N; -fun pearly_A : A; -fun pearmain_N : N; -fun peasant_N : N; -fun peasanthood_N : N; -fun peasantry_N : N; -fun pease_N : N; -fun pease_pudding_N : N; -fun peashooter_N : N; -fun peasouper_N : N; -fun peat_N : N; -fun peaty_A : A; -fun peavey_N : N; -fun peba_N : N; -fun pebble_N : N; -fun pebble_grained_A : A; -fun pebbly_A : A; -fun pebibit_N : N; -fun pecan_N : N; -fun peccable_A : A; -fun peccadillo_N : N; -fun peccary_N : N; -fun peck_N : N; -fun peck_V : V; -fun peck_V2 : V2; -fun pecker_N : N; -fun peckish_A : A; -fun pecopteris_N : N; -fun pectic_A : A; -fun pectin_N : N; -fun pectinate_A : A; -fun pectineal_A : A; -fun pectoral_A : A; -fun pectoral_N : N; -fun peculate_V : V; -fun peculate_V2 : V2; -fun peculation_N : N; -fun peculiar_A : A; -fun peculiarity_N : N; -fun peculiarly_Adv : Adv; -fun pecuniary_A : A; -fun pedagogic_A : A; -fun pedagogical_A : A; -fun pedagogue_N : N; -fun pedagogy_N : N; -fun pedal_A : A; -fun pedal_N : N; -fun pedal_V : V; -fun pedal_V2 : V2; -fun pedaler_N : N; -fun pedant_N : N; -fun pedantic_A : A; -fun pedantically_Adv : Adv; -fun pedantry_N : N; -fun pedate_A : A; -fun peddle_V : V; -fun peddle_V2 : V2; -fun peddler_N : N; -fun peddling_A : A; -fun pederast_N : N; -fun pederastic_A : A; -fun pederasty_N : N; -fun pedestal_N : N; -fun pedestrian_A : A; -fun pedestrian_N : N; -fun pediatric_A : A; -fun pediatrician_N : N; -fun pediatrics_N : N; -fun pedicab_N : N; -fun pedicel_N : N; -fun pediculicide_N : N; -fun pediculosis_N : N; -fun pedicure_N : N; -fun pedigree_A : A; -fun pedigree_N : N; -fun pediment_N : N; -fun pedlar_N : N; -fun pedodontist_N : N; -fun pedometer_N : N; -fun pedophile_N : N; -fun pedophilia_N : N; -fun peduncle_N : N; -fun pedunculate_A : A; -fun pee_N : N; -fun pee_V : V; -fun peeing_N : N; -fun peek_N : N; -fun peek_V : V; -fun peek_a_boo_N : N; -fun peekaboo_N : N; -fun peel_N : N; -fun peel_V : V; -fun peel_V2 : V2; -fun peeler_N : N; -fun peen_N : N; -fun peep_N : N; -fun peep_V : V; -fun peeper_N : N; -fun peephole_N : N; -fun peepshow_N : N; -fun peepul_N : N; -fun peer_N : N; -fun peer_V : V; -fun peerage_N : N; -fun peeress_N : N; -fun peerless_A : A; -fun peeve_N : N; -fun peeve_V2 : V2; -fun peeved_A : A; -fun peevish_A : A; -fun peevishly_Adv : Adv; -fun peevishness_N : N; -fun peewit_N : N; -fun peg_N : N; -fun peg_V : V; -fun peg_V2 : V2; -fun pegboard_N : N; -fun pegged_down_A : A; -fun pegmatite_N : N; -fun peignoir_N : N; -fun pejorative_A : A; -fun pejoratively_Adv : Adv; -fun peke_N : N; -fun pekinese_N : N; -fun pekoe_N : N; -fun pelf_N : N; -fun pelican_N : N; -fun pelisse_N : N; -fun pell_mell_Adv : Adv; -fun pellagra_N : N; -fun pellet_N : N; -fun pellicle_N : N; -fun pellitory_N : N; -fun pellitory_of_the_wall_N : N; -fun pellucid_A : A; -fun pellucidness_N : N; -fun pelmet_N : N; -fun pelota_N : N; -fun pelt_N : N; -fun pelt_V : V; -fun pelt_V2 : V2; -fun peltate_A : A; -fun pelter_N : N; -fun peludo_N : N; -fun pelvic_A : A; -fun pelvimeter_N : N; -fun pelvimetry_N : N; -fun pelvis_N : N; -fun pelycosaur_N : N; -fun pemmican_N : N; -fun pemphigous_A : A; -fun pemphigus_N : N; -fun pen_N : N; -fun pen_V2 : V2; -fun pen_and_ink_N : N; -fun pen_and_ink_N : N; -fun pen_friend_N : N; -fun pen_name_N : N; -fun pen_pusher_N : N; -fun penal_A : A; -fun penalization_N : N; -fun penalize_V2 : V2; -fun penalty_N : N; -fun penance_N : N; -fun penchant_N : N; -fun pencil_N : N; -fun pencil_V : V; -fun pencil_V2 : V2; -fun penciled_A : A; -fun pend_V : V; -fun pend_V2 : V2; -fun pendant_N : N; -fun pendent_A : A; -fun pending_A : A; -fun pending_Prep : Prep; -fun pendragon_N : N; -fun pendulous_A : A; -fun pendulum_N : N; -fun peneplain_N : N; -fun penetrability_N : N; -fun penetrable_A : A; -fun penetralia_N : N; -fun penetrate_V : V; -fun penetrate_V2 : V2; -fun penetrating_A : A; -fun penetratingly_Adv : Adv; -fun penetration_N : N; -fun penetrative_A : A; -fun penetrator_N : N; -fun pengo_N : N; -fun penguin_N : N; -fun penicillamine_N : N; -fun penicillin_N : N; -fun penicillin_f_PN : PN; -fun penicillin_g_PN : PN; -fun penicillin_o_PN : PN; -fun penicillin_v_PN : PN; -fun penicillin_v_potassium_PN : PN; -fun penicillin_resistant_A : A; -fun penicillinase_N : N; -fun penile_A : A; -fun peninsula_N : N; -fun peninsular_A : A; -fun penis_N : N; -fun penitence_N : N; -fun penitent_A : A; -fun penitent_N : N; -fun penitential_A : A; -fun penitentiary_A : A; -fun penitentiary_N : N; -fun penitently_Adv : Adv; -fun penknife_N : N; -fun penlight_N : N; -fun penmanship_N : N; -fun penn'orth_N : N; -fun pennant_N : N; -fun pennate_A : A; -fun penne_N : N; -fun penni_N : N; -fun penniless_A : A; -fun pennon_N : N; -fun pennoncel_N : N; -fun penny_N : N; -fun penny_wise_A : A; -fun pennycress_N : N; -fun pennyroyal_N : N; -fun pennyweight_N : N; -fun pennywhistle_N : N; -fun pennyworth_N : N; -fun penologist_N : N; -fun penology_N : N; -fun penpusher_N : N; -fun pension_N : N; -fun pension_V2 : V2; -fun pensionable_A : A; -fun pensioner_N : N; -fun pensive_A : A; -fun pensively_Adv : Adv; -fun pensiveness_N : N; -fun penstock_N : N; -fun pent_A : A; -fun pent_up_A : A; -fun pent_up_A : A; -fun pentacle_N : N; -fun pentaerythritol_N : N; -fun pentagon_N : N; -fun pentagonal_A : A; -fun pentahedron_N : N; -fun pentail_N : N; -fun pentamerous_A : A; -fun pentameter_N : N; -fun pentangular_A : A; -fun pentasyllabic_A : A; -fun pentateuch_N : N; -fun pentathlete_N : N; -fun pentathlon_N : N; -fun pentatonic_A : A; -fun pentavalent_A : A; -fun pentazocine_N : N; -fun pentecost_N : N; -fun pentecostal_A : A; -fun pentecostalism_N : N; -fun penthouse_N : N; -fun pentimento_N : N; -fun pentlandite_N : N; -fun pentode_N : N; -fun pentose_N : N; -fun pentoxide_N : N; -fun pentoxifylline_N : N; -fun pentylenetetrazol_N : N; -fun penuche_N : N; -fun penult_N : N; -fun penultimate_A : A; -fun penultimate_N : N; -fun penumbra_N : N; -fun penumbral_A : A; -fun penurious_A : A; -fun penuriously_Adv : Adv; -fun penuriousness_N : N; -fun penury_N : N; -fun peon_N : N; -fun peonage_N : N; -fun peony_N : N; -fun people_N : N; -fun people_V2 : V2; -fun peopled_A : A; -fun peoples_N : N; -fun pep_N : N; -fun pep_V2 : V2; -fun peperomia_N : N; -fun peplos_N : N; -fun peplum_N : N; -fun pepper_N : N; -fun pepper_V2 : V2; -fun pepper_and_salt_N : N; -fun pepper_and_salt_N : N; -fun pepper_mill_N : N; -fun pepper_pot_N : N; -fun peppercorn_N : N; -fun peppermint_N : N; -fun pepperoni_N : N; -fun peppery_A : A; -fun pepsin_N : N; -fun pepsinogen_N : N; -fun peptic_A : A; -fun peptide_N : N; -fun peptization_N : N; -fun peptone_N : N; -fun per_Prep : Prep; -fun per_annum_Adv : Adv; -fun per_capita_A : A; -fun per_capita_Adv : Adv; -fun per_diem_Adv : Adv; -fun peradventure_Adv : Adv; -fun peradventure_N : N; -fun perambulate_V : V; -fun perambulate_V2 : V2; -fun perambulating_A : A; -fun perambulation_N : N; -fun perambulator_N : N; -fun percale_N : N; -fun perceivable_A : A; -fun perceive_V2 : V2; -fun perceive_V2V : V2V; -fun perceive_VS : VS; -fun perceived_A : A; -fun perceiver_N : N; -fun percent_N : N; -fun percentage_N : N; -fun percentile_N : N; -fun percept_N : N; -fun perceptibility_N : N; -fun perceptible_A : A; -fun perceptibly_Adv : Adv; -fun perception_N : N; -fun perceptive_A : A; -fun perceptively_Adv : Adv; -fun perceptiveness_N : N; -fun perceptual_A : A; -fun perceptually_Adv : Adv; -fun perch_N : N; -fun perch_V : V; -fun perch_V2 : V2; -fun perchance_Adv : Adv; -fun percher_N : N; -fun perchlorate_N : N; -fun perchloride_N : N; -fun percipient_A : A; -fun percolate_N : N; -fun percolate_V : V; -fun percolate_V2 : V2; -fun percolation_N : N; -fun percolator_N : N; -fun percussion_N : N; -fun percussionist_N : N; -fun percussive_A : A; -fun perdition_N : N; -fun perdurability_N : N; -fun peregrination_N : N; -fun peregrine_N : N; -fun peremptory_A : A; -fun perennation_N : N; -fun perennial_A : A; -fun perennial_N : N; -fun perennially_Adv : Adv; -fun perestroika_N : N; -fun perfect_A : A; -fun perfect_V2 : V2; -fun perfected_A : A; -fun perfecter_N : N; -fun perfectibility_N : N; -fun perfectible_A : A; -fun perfection_N : N; -fun perfectionism_N : N; -fun perfectionist_N : N; -fun perfective_N : N; -fun perfectly_Adv : Adv; -fun perfervid_A : A; -fun perfidious_A : A; -fun perfidiously_Adv : Adv; -fun perfidiousness_N : N; -fun perfidy_N : N; -fun perfluorocarbon_N : N; -fun perfoliate_A : A; -fun perforate_V2 : V2; -fun perforated_A : A; -fun perforation_N : N; -fun perforce_Adv : Adv; -fun perform_V : V; -fun perform_V2 : V2; -fun performance_N : N; -fun performer_N : N; -fun perfume_N : N; -fun perfume_V2 : V2; -fun perfumed_A : A; -fun perfumer_N : N; -fun perfumery_N : N; -fun perfunctorily_Adv : Adv; -fun perfunctory_A : A; -fun perfusion_N : N; -fun pergola_N : N; -fun perhaps_Adv : Adv; -fun peri_N : N; -fun perianal_A : A; -fun perianth_N : N; -fun periapsis_N : N; -fun periarteritis_N : N; -fun pericardial_A : A; -fun pericarditis_N : N; -fun pericardium_N : N; -fun pericarp_N : N; -fun pericementoclasia_N : N; -fun periclase_N : N; -fun peridinian_N : N; -fun peridium_N : N; -fun peridot_N : N; -fun peridotite_N : N; -fun perigee_N : N; -fun perigon_N : N; -fun perigonal_A : A; -fun perihelion_N : N; -fun perijove_N : N; -fun peril_N : N; -fun peril_V2 : V2; -fun perilous_A : A; -fun perilously_Adv : Adv; -fun perilymph_N : N; -fun perimeter_N : N; -fun perimysium_N : N; -fun perinasal_A : A; -fun perinatal_A : A; -fun perinatologist_N : N; -fun perinatology_N : N; -fun perineal_A : A; -fun perineotomy_N : N; -fun perineum_N : N; -fun perineurium_N : N; -fun period_N : N; -fun periodic_A : A; -fun periodical_A : A; -fun periodical_N : N; -fun periodontic_A : A; -fun periodontics_N : N; -fun periodontist_N : N; -fun periosteum_N : N; -fun peripatetic_A : A; -fun peripatetic_N : N; -fun peripeteia_N : N; -fun peripheral_A : A; -fun peripheral_N : N; -fun peripherally_Adv : Adv; -fun periphery_N : N; -fun periphrasis_N : N; -fun periphrastic_A : A; -fun peripteral_A : A; -fun periscope_N : N; -fun periselene_N : N; -fun perish_V : V; -fun perish_V2 : V2; -fun perishability_N : N; -fun perishable_A : A; -fun perishable_N : N; -fun perisher_N : N; -fun perisperm_N : N; -fun peristalsis_N : N; -fun peristome_N : N; -fun peristylar_A : A; -fun peristyle_N : N; -fun perithecium_N : N; -fun perithelial_A : A; -fun perithelium_N : N; -fun peritoneal_A : A; -fun peritoneum_N : N; -fun peritonitis_N : N; -fun peritrichous_A : A; -fun periwig_N : N; -fun periwinkle_N : N; -fun perjure_V2 : V2; -fun perjurer_N : N; -fun perjury_N : N; -fun perk_N : N; -fun perk_V : V; -fun perk_V2 : V2; -fun perked_up_A : A; -fun perkily_Adv : Adv; -fun perkiness_N : N; -fun perky_A : A; -fun perm_N : N; -fun perm_V2 : V2; -fun permafrost_N : N; -fun permanence_N : N; -fun permanency_N : N; -fun permanent_A : A; -fun permanently_Adv : Adv; -fun permanganate_N : N; -fun permeability_N : N; -fun permeable_A : A; -fun permeant_A : A; -fun permeate_V : V; -fun permeate_V2 : V2; -fun permeation_N : N; -fun permed_A : A; -fun permissibility_N : N; -fun permissible_A : A; -fun permissibly_Adv : Adv; -fun permission_N : N; -fun permissive_A : A; -fun permissively_Adv : Adv; -fun permissiveness_N : N; -fun permit_N : N; -fun permit_V : V; -fun permit_V2 : V2; -fun permit_V2V : V2V; -fun permutability_N : N; -fun permutation_N : N; -fun permute_V2 : V2; -fun pernicious_A : A; -fun perniciousness_N : N; -fun pernickety_A : A; -fun peroneal_A : A; -fun peroneus_N : N; -fun peroration_N : N; -fun peroxidase_N : N; -fun peroxide_N : N; -fun perpendicular_A : A; -fun perpendicular_N : N; -fun perpendicularity_N : N; -fun perpendicularly_Adv : Adv; -fun perpetrate_V2 : V2; -fun perpetration_N : N; -fun perpetrator_N : N; -fun perpetual_A : A; -fun perpetually_Adv : Adv; -fun perpetuate_V2 : V2; -fun perpetuation_N : N; -fun perpetuity_N : N; -fun perphenazine_N : N; -fun perplex_V2 : V2; -fun perplexed_A : A; -fun perplexedly_Adv : Adv; -fun perplexity_N : N; -fun perquisite_N : N; -fun perry_N : N; -fun persecute_V2 : V2; -fun persecution_N : N; -fun persecutor_N : N; -fun perseverance_N : N; -fun perseveration_N : N; -fun persevere_V : V; -fun persevering_A : A; -fun perseveringly_Adv : Adv; -fun persian_A : A; -fun persian_N : N; -fun persiflage_N : N; -fun persimmon_N : N; -fun persist_V : V; -fun persistence_N : N; -fun persistent_A : A; -fun persistently_Adv : Adv; -fun person_N : N; -fun person_to_person_A : A; -fun persona_N : N; -fun persona_grata_N : N; -fun persona_non_grata_N : N; -fun personable_A : A; -fun personableness_N : N; -fun personage_N : N; -fun personal_A : A; -fun personal_N : N; -fun personality_N : N; -fun personalize_V2 : V2; -fun personalized_A : A; -fun personally_Adv : Adv; -fun personalty_N : N; -fun personate_V2 : V2; -fun personation_N : N; -fun personhood_N : N; -fun personification_N : N; -fun personify_V2 : V2; -fun perspective_N : N; -fun perspex_N : N; -fun perspicacious_A : A; -fun perspicacity_N : N; -fun perspicuity_N : N; -fun perspicuous_A : A; -fun perspicuousness_N : N; -fun perspiration_N : N; -fun perspire_V : V; -fun perspirer_N : N; -fun persuadable_A : A; -fun persuade_V2 : V2; -fun persuade_VS : VS; -fun persuader_N : N; -fun persuasion_N : N; -fun persuasive_A : A; -fun persuasively_Adv : Adv; -fun persuasiveness_N : N; -fun pert_A : A; -fun pertain_V : V; -fun pertainym_N : N; -fun pertinacious_A : A; -fun pertinaciously_Adv : Adv; -fun pertinacity_N : N; -fun pertinence_N : N; -fun pertinent_A : A; -fun pertinently_Adv : Adv; -fun pertness_N : N; -fun perturb_V2 : V2; -fun perturbation_N : N; -fun peruke_N : N; -fun peruked_A : A; -fun perusal_N : N; -fun peruse_V2 : V2; -fun peruvian_A : A; -fun peruvian_N : N; -fun pervade_V2 : V2; -fun pervaporation_N : N; -fun pervasion_N : N; -fun pervasive_A : A; -fun pervasively_Adv : Adv; -fun pervasiveness_N : N; -fun perverse_A : A; -fun perversely_Adv : Adv; -fun perverseness_N : N; -fun perversion_N : N; -fun perversity_N : N; -fun pervert_N : N; -fun pervert_V2 : V2; -fun pervious_A : A; -fun pesantran_N : N; -fun peseta_N : N; -fun pesewa_N : N; -fun peshmerga_N : N; -fun pesky_A : A; -fun peso_N : N; -fun pessary_N : N; -fun pessimal_A : A; -fun pessimism_N : N; -fun pessimist_N : N; -fun pessimistic_A : A; -fun pessimistically_Adv : Adv; -fun pest_N : N; -fun pester_V2 : V2; -fun pesthole_N : N; -fun pesticide_N : N; -fun pestiferous_A : A; -fun pestilence_N : N; -fun pestilent_A : A; -fun pestilential_A : A; -fun pestle_N : N; -fun pestle_V2 : V2; -fun pesto_N : N; -fun pet_N : N; -fun pet_V : V; -fun pet_V2 : V2; -fun petabit_N : N; -fun petabyte_N : N; -fun petal_N : N; -fun petaled_A : A; -fun petalled_A : A; -fun petallike_A : A; -fun petaloid_A : A; -fun petalous_A : A; -fun petard_N : N; -fun petcock_N : N; -fun petechia_N : N; -fun peter_V : V; -fun petfood_N : N; -fun petiole_N : N; -fun petiolule_N : N; -fun petit_bourgeois_N : N; -fun petite_A : A; -fun petite_N : N; -fun petition_N : N; -fun petition_V : V; -fun petition_V2 : V2; -fun petitionary_A : A; -fun petitioner_N : N; -fun petrel_N : N; -fun petrifaction_N : N; -fun petrify_V : V; -fun petrify_V2 : V2; -fun petrifying_A : A; -fun petrissage_N : N; -fun petro_chemical_N : N; -fun petrochemical_N : N; -fun petroglyph_N : N; -fun petrol_N : N; -fun petrolatum_N : N; -fun petroleum_N : N; -fun petrology_N : N; -fun petrous_A : A; -fun petter_N : N; -fun petticoat_N : N; -fun petticoated_A : A; -fun pettifogging_A : A; -fun pettily_Adv : Adv; -fun pettiness_N : N; -fun pettish_A : A; -fun pettishness_N : N; -fun petty_A : A; -fun petulance_N : N; -fun petulant_A : A; -fun petunia_N : N; -fun pew_N : N; -fun pew_opener_N : N; -fun pewee_N : N; -fun pewit_N : N; -fun pewter_N : N; -fun peyote_N : N; -fun pfannkuchen_N : N; -fun pfennig_N : N; -fun phacoemulsification_N : N; -fun phaeton_N : N; -fun phagocyte_N : N; -fun phagocytic_A : A; -fun phagocytosis_N : N; -fun phaius_N : N; -fun phalangeal_A : A; -fun phalanger_N : N; -fun phalangitis_N : N; -fun phalanx_N : N; -fun phalarope_N : N; -fun phallic_A : A; -fun phalloplasty_N : N; -fun phallus_N : N; -fun phalsa_N : N; -fun phaneromania_N : N; -fun phantasm_N : N; -fun phantasmagoria_N : N; -fun phantasmagoric_A : A; -fun phantasmal_A : A; -fun phantasy_N : N; -fun phantom_A : A; -fun phantom_N : N; -fun pharaoh_N : N; -fun pharisaic_A : A; -fun pharisaical_A : A; -fun pharisee_N : N; -fun pharmaceutical_A : A; -fun pharmaceutical_N : N; -fun pharmacist_N : N; -fun pharmacogenetics_N : N; -fun pharmacokinetics_N : N; -fun pharmacological_A : A; -fun pharmacologically_Adv : Adv; -fun pharmacologist_N : N; -fun pharmacology_N : N; -fun pharmacopoeia_N : N; -fun pharmacy_N : N; -fun pharos_N : N; -fun pharyngeal_A : A; -fun pharyngitis_N : N; -fun pharynx_N : N; -fun phase_N : N; -fun phase_V2 : V2; -fun phase_iii_clinical_trial_PN : PN; -fun phase_ii_clinical_trial_PN : PN; -fun phase_iv_clinical_trial_PN : PN; -fun phase_i_clinical_trial_PN : PN; -fun phase_out_N : N; -fun phasianid_N : N; -fun phasmid_N : N; -fun phd_N : N; -fun pheasant_N : N; -fun pheasant's_eye_N : N; -fun phellem_N : N; -fun phenacomys_N : N; -fun phenazopyridine_N : N; -fun phencyclidine_N : N; -fun phenelzine_N : N; -fun pheniramine_N : N; -fun pheno_safranine_N : N; -fun phenobarbitone_N : N; -fun phenol_N : N; -fun phenolphthalein_N : N; -fun phenomenal_A : A; -fun phenomenally_Adv : Adv; -fun phenomenology_N : N; -fun phenomenon_N : N; -fun phenothiazine_N : N; -fun phenotype_N : N; -fun phenotypical_A : A; -fun phensuximide_N : N; -fun phentolamine_N : N; -fun phenylalanine_N : N; -fun phenylbutazone_N : N; -fun phenylephrine_N : N; -fun phenylketonuria_N : N; -fun phenylpropanolamine_N : N; -fun phenyltoloxamine_N : N; -fun pheochromocytoma_N : N; -fun pheromone_N : N; -fun phi_N : N; -fun phial_N : N; -fun philadelphus_N : N; -fun philander_V : V; -fun philanderer_N : N; -fun philanthropic_A : A; -fun philanthropically_Adv : Adv; -fun philanthropist_N : N; -fun philanthropy_N : N; -fun philatelic_A : A; -fun philatelically_Adv : Adv; -fun philatelist_N : N; -fun philately_N : N; -fun philharmonic_A : A; -fun philhellene_A : A; -fun philhellene_N : N; -fun philhellenic_A : A; -fun philhellenism_N : N; -fun philippine_A : A; -fun philippine_N : N; -fun philistine_N : N; -fun philistinism_N : N; -fun phillipsite_N : N; -fun philodendron_N : N; -fun philogyny_N : N; -fun philological_A : A; -fun philologist_N : N; -fun philology_N : N; -fun philomath_N : N; -fun philosopher_N : N; -fun philosophic_A : A; -fun philosophical_A : A; -fun philosophically_Adv : Adv; -fun philosophize_V : V; -fun philosophizer_N : N; -fun philosophizing_N : N; -fun philosophy_N : N; -fun philter_N : N; -fun philtre_N : N; -fun phimosis_N : N; -fun phlebectomy_N : N; -fun phlebitis_N : N; -fun phlebothrombosis_N : N; -fun phlebotomist_N : N; -fun phlegm_N : N; -fun phlegmatic_A : A; -fun phlegmatically_Adv : Adv; -fun phlegmy_A : A; -fun phloem_N : N; -fun phlogiston_N : N; -fun phlogopite_N : N; -fun phlomis_N : N; -fun phlox_N : N; -fun phobia_N : N; -fun phobic_A : A; -fun phobophobia_N : N; -fun phocine_A : A; -fun phocomelia_N : N; -fun phoebe_N : N; -fun phoenicophorium_N : N; -fun phoenix_N : N; -fun phon_N : N; -fun phone_N : N; -fun phone_V : V; -fun phone_V2 : V2; -fun phone_in_N : N; -fun phone_in_N : N; -fun phonebook_N : N; -fun phonebooth_N : N; -fun phonecall_N : N; -fun phoneme_N : N; -fun phonemic_A : A; -fun phonemic_Adv : Adv; -fun phonemics_N : N; -fun phonetic_A : A; -fun phonetically_Adv : Adv; -fun phonetician_N : N; -fun phonetics_N : N; -fun phoney_A : A; -fun phoney_N : N; -fun phonic_A : A; -fun phonics_N : N; -fun phonogram_N : N; -fun phonogramic_A : A; -fun phonograph_N : N; -fun phonological_A : A; -fun phonologist_N : N; -fun phonology_N : N; -fun phonophobia_N : N; -fun phony_A : A; -fun phony_N : N; -fun phoronid_N : N; -fun phosgene_N : N; -fun phosphatase_N : N; -fun phosphate_N : N; -fun phosphine_N : N; -fun phosphocreatine_N : N; -fun phospholipid_N : N; -fun phosphoprotein_N : N; -fun phosphor_N : N; -fun phosphorescence_N : N; -fun phosphorescent_A : A; -fun phosphoric_A : A; -fun phosphorous_A : A; -fun phosphorus_N : N; -fun phot_N : N; -fun photalgia_N : N; -fun photic_A : A; -fun photo_N : N; -fun photocathode_N : N; -fun photochemical_A : A; -fun photochemistry_N : N; -fun photocoagulation_N : N; -fun photocoagulator_N : N; -fun photoconductive_A : A; -fun photoconductivity_N : N; -fun photocopier_N : N; -fun photocopy_N : N; -fun photocopy_V2 : V2; -fun photoelectric_A : A; -fun photoelectrically_Adv : Adv; -fun photoelectricity_N : N; -fun photoelectron_N : N; -fun photoemission_N : N; -fun photoemissive_A : A; -fun photoflash_N : N; -fun photogenic_A : A; -fun photograph_N : N; -fun photograph_V2 : V2; -fun photographer_N : N; -fun photographic_A : A; -fun photographically_Adv : Adv; -fun photography_N : N; -fun photogravure_N : N; -fun photojournalism_N : N; -fun photojournalist_N : N; -fun photolithograph_N : N; -fun photolithography_N : N; -fun photomechanical_A : A; -fun photomechanics_N : N; -fun photometer_N : N; -fun photometric_A : A; -fun photometrically_Adv : Adv; -fun photometrist_N : N; -fun photometry_N : N; -fun photomicrograph_N : N; -fun photomontage_N : N; -fun photon_N : N; -fun photophobia_N : N; -fun photopigment_N : N; -fun photoretinitis_N : N; -fun photosensitivity_N : N; -fun photosensitize_V2 : V2; -fun photosphere_N : N; -fun photostat_N : N; -fun photostat_V2 : V2; -fun photosynthesis_N : N; -fun photosynthetic_A : A; -fun phototherapy_N : N; -fun phototropism_N : N; -fun photovoltaic_A : A; -fun phragmocone_N : N; -fun phrasal_A : A; -fun phrase_N : N; -fun phrase_V2 : V2; -fun phrase_book_N : N; -fun phraseology_N : N; -fun phrasing_N : N; -fun phreatic_A : A; -fun phrenetic_A : A; -fun phrenic_A : A; -fun phrenological_A : A; -fun phrenologist_N : N; -fun phrenology_N : N; -fun phrontistery_N : N; -fun phthisis_N : N; -fun phut_Adv : Adv; -fun phycobilin_N : N; -fun phycocyanin_N : N; -fun phycoerythrin_N : N; -fun phycology_N : N; -fun phycomycosis_N : N; -fun phylactery_N : N; -fun phyle_N : N; -fun phylliform_A : A; -fun phyllo_N : N; -fun phyllode_N : N; -fun phyllodial_A : A; -fun phylogenetic_A : A; -fun phylogenetically_Adv : Adv; -fun phylum_N : N; -fun physa_N : N; -fun physic_N : N; -fun physical_A : A; -fun physically_Adv : Adv; -fun physician_N : N; -fun physicist_N : N; -fun physicochemical_A : A; -fun physics_N : N; -fun physiognomy_N : N; -fun physiologic_A : A; -fun physiological_A : A; -fun physiologically_Adv : Adv; -fun physiologist_N : N; -fun physiology_N : N; -fun physiotherapeutic_A : A; -fun physiotherapist_N : N; -fun physiotherapy_N : N; -fun physique_N : N; -fun physostegia_N : N; -fun physostigmine_N : N; -fun phytelephas_N : N; -fun phytochemical_N : N; -fun phytochemist_N : N; -fun phytochemistry_N : N; -fun phytohormone_N : N; -fun phytoplankton_N : N; -fun phytotherapy_N : N; -fun pi_N : N; -fun pia_N : N; -fun piaffe_N : N; -fun pianism_N : N; -fun pianissimo_A : A; -fun pianissimo_Adv : Adv; -fun pianissimo_assai_A : A; -fun pianist_N : N; -fun pianistic_A : A; -fun piano_A : A; -fun piano_Adv : Adv; -fun piano_N : N; -fun pianoforte_N : N; -fun pianola_N : N; -fun piaster_N : N; -fun piastre_N : N; -fun piazza_N : N; -fun pibroch_N : N; -fun pica_N : N; -fun picador_N : N; -fun picaresque_A : A; -fun piccalilli_N : N; -fun piccaninny_N : N; -fun piccolo_N : N; -fun pichi_N : N; -fun pichiciago_N : N; -fun pick_N : N; -fun pick_V : V; -fun pick_V2 : V2; -fun pick_me_up_N : N; -fun pick_off_N : N; -fun pick_up_N : N; -fun pickaback_Adv : Adv; -fun pickaninny_N : N; -fun pickaxe_N : N; -fun pickelhaube_N : N; -fun picker_N : N; -fun pickerel_N : N; -fun pickerelweed_N : N; -fun picket_N : N; -fun picket_V : V; -fun picket_V2 : V2; -fun picking_N : N; -fun pickings_N : N; -fun pickle_N : N; -fun pickle_V2 : V2; -fun pickled_A : A; -fun pickpocket_N : N; -fun pickpocket_V2 : V2; -fun pickup_N : N; -fun picnic_N : N; -fun picnic_V : V; -fun picnicker_N : N; -fun picofarad_N : N; -fun picometer_N : N; -fun picornavirus_N : N; -fun picosecond_N : N; -fun picot_N : N; -fun picovolt_N : N; -fun picric_A : A; -fun pictograph_N : N; -fun pictographic_A : A; -fun pictorial_A : A; -fun pictorial_N : N; -fun pictorially_Adv : Adv; -fun picture_N : N; -fun picture_V2 : V2; -fun picture_book_N : N; -fun picture_card_N : N; -fun picture_gallery_N : N; -fun picturesque_A : A; -fun picturesquely_Adv : Adv; -fun picturesqueness_N : N; -fun picturing_N : N; -fun picul_N : N; -fun piculet_N : N; -fun piddle_N : N; -fun piddle_V : V; -fun piddling_A : A; -fun piddock_N : N; -fun pidgin_N : N; -fun pie_N : N; -fun pie_crust_N : N; -fun piebald_A : A; -fun piece_N : N; -fun piece_V2 : V2; -fun piecemeal_A : A; -fun piecemeal_Adv : Adv; -fun piecework_N : N; -fun pied_A : A; -fun pied_a_terre_N : N; -fun pied_a_terre_N : N; -fun piedmont_N : N; -fun pieplant_N : N; -fun pier_N : N; -fun pier_glass_N : N; -fun pierce_V : V; -fun pierce_V2 : V2; -fun pierced_A : A; -fun piercing_A : A; -fun piercingly_Adv : Adv; -fun pierid_N : N; -fun pierrot_N : N; -fun pieta_N : N; -fun pietistic_A : A; -fun piety_N : N; -fun piezoelectric_A : A; -fun piezoelectricity_N : N; -fun piezometer_N : N; -fun piffle_N : N; -fun piffle_V : V; -fun piffling_A : A; -fun pig_N : N; -fun pig_V : V; -fun pig_headed_A : A; -fun pig_headedness_N : N; -fun pig_iron_N : N; -fun pig_sized_A : A; -fun pig_sticking_N : N; -fun pigboat_N : N; -fun pigeon_N : N; -fun pigeon_breasted_A : A; -fun pigeon_breasted_A : A; -fun pigeon_toed_A : A; -fun pigeon_toed_A : A; -fun pigeonhole_N : N; -fun pigeonhole_V2 : V2; -fun pigfish_N : N; -fun piggery_N : N; -fun piggish_A : A; -fun piggishly_Adv : Adv; -fun piggishness_N : N; -fun piggy_A : A; -fun piggy_N : N; -fun piggyback_Adv : Adv; -fun piggyback_N : N; -fun piggyback_V : V; -fun piglet_N : N; -fun pigment_N : N; -fun pigmentation_N : N; -fun pigmy_N : N; -fun pignut_N : N; -fun pigskin_N : N; -fun pigsticking_N : N; -fun pigsty_N : N; -fun pigswill_N : N; -fun pigtail_N : N; -fun pigwash_N : N; -fun pigweed_N : N; -fun pika_N : N; -fun pike_N : N; -fun pike_perch_N : N; -fun pikeblenny_N : N; -fun pikestaff_N : N; -fun pilaf_N : N; -fun pilaff_N : N; -fun pilar_A : A; -fun pilaster_N : N; -fun pilau_N : N; -fun pilchard_N : N; -fun pile_N : N; -fun pile_V : V; -fun pile_V2 : V2; -fun pile_driver_N : N; -fun pile_dwelling_N : N; -fun pile_up_N : N; -fun piles_N : N; -fun pileup_N : N; -fun pilfer_V : V; -fun pilfer_V2 : V2; -fun pilferage_N : N; -fun pilferer_N : N; -fun pilgrim_N : N; -fun pilgrimage_N : N; -fun pill_N : N; -fun pillage_N : N; -fun pillage_V2 : V2; -fun pillager_N : N; -fun pillar_N : N; -fun pillar_box_N : N; -fun pillar_of_islam_PN : PN; -fun pillar_shaped_A : A; -fun pillared_A : A; -fun pillbox_N : N; -fun pillion_N : N; -fun pillory_N : N; -fun pillory_V2 : V2; -fun pillow_N : N; -fun pillow_V2 : V2; -fun pillow_fight_N : N; -fun pillowcase_N : N; -fun pillowslip_N : N; -fun pillwort_N : N; -fun pilocarpine_N : N; -fun pilosebaceous_A : A; -fun pilot_N : N; -fun pilot_V2 : V2; -fun pilot_boat_N : N; -fun pilot_burner_N : N; -fun pilot_cloth_N : N; -fun pilot_engine_N : N; -fun pilot_fish_N : N; -fun pilot_light_N : N; -fun pilotfish_N : N; -fun pilothouse_N : N; -fun piloting_N : N; -fun pilotless_A : A; -fun pilous_A : A; -fun pilus_N : N; -fun pimento_N : N; -fun pimozide_N : N; -fun pimp_N : N; -fun pimp_V : V; -fun pimpernel_N : N; -fun pimple_N : N; -fun pimpled_A : A; -fun pimply_A : A; -fun pin_N : N; -fun pin_V2 : V2; -fun pin_money_N : N; -fun pin_point_V2 : V2; -fun pin_table_N : N; -fun pin_up_N : N; -fun pinafore_N : N; -fun pinata_N : N; -fun pinball_N : N; -fun pince_nez_N : N; -fun pince_nez_N : N; -fun pincer_N : N; -fun pinch_N : N; -fun pinch_V : V; -fun pinch_V2 : V2; -fun pinchbeck_A : A; -fun pinchbeck_N : N; -fun pinche_N : N; -fun pinched_A : A; -fun pinchgut_N : N; -fun pincushion_N : N; -fun pindolol_N : N; -fun pine_N : N; -fun pine_V : V; -fun pineal_A : A; -fun pinealoma_N : N; -fun pineapple_N : N; -fun pinecone_N : N; -fun pinesap_N : N; -fun pinetum_N : N; -fun pinfish_N : N; -fun pinfold_N : N; -fun ping_N : N; -fun ping_V : V; -fun ping_V2 : V2; -fun pinger_N : N; -fun pingpong_N : N; -fun pinguecula_N : N; -fun pinhead_N : N; -fun pinhole_N : N; -fun pining_N : N; -fun pinion_N : N; -fun pinion_V2 : V2; -fun pinioned_A : A; -fun pinite_N : N; -fun pink_A : A; -fun pink_N : N; -fun pink_V : V; -fun pink_V2 : V2; -fun pink_collar_A : A; -fun pink_lavender_A : A; -fun pink_orange_A : A; -fun pink_purple_A : A; -fun pink_red_A : A; -fun pink_tinged_A : A; -fun pink_tipped_A : A; -fun pinkish_A : A; -fun pinkish_white_A : A; -fun pinkness_N : N; -fun pinko_N : N; -fun pinkroot_N : N; -fun pinna_N : N; -fun pinnace_N : N; -fun pinnacle_N : N; -fun pinnacle_V2 : V2; -fun pinnate_A : A; -fun pinnate_leaved_A : A; -fun pinnately_Adv : Adv; -fun pinnatifid_A : A; -fun pinnatisect_A : A; -fun pinner_N : N; -fun pinning_N : N; -fun pinny_N : N; -fun pinochle_N : N; -fun pinocytosis_N : N; -fun pinole_N : N; -fun pinon_N : N; -fun pinpoint_N : N; -fun pinpoint_V2 : V2; -fun pinprick_N : N; -fun pinscher_N : N; -fun pinstripe_A : A; -fun pinstripe_N : N; -fun pinstriped_A : A; -fun pint_N : N; -fun pint_size_A : A; -fun pintail_N : N; -fun pintle_N : N; -fun pinto_N : N; -fun pinwheel_N : N; -fun pinwheel_shaped_A : A; -fun pinworm_N : N; -fun pion_N : N; -fun pioneer_N : N; -fun pioneer_V : V; -fun pioneer_V2 : V2; -fun pious_A : A; -fun pip_N : N; -fun pip_V2 : V2; -fun pip_squeak_N : N; -fun pipage_N : N; -fun pipal_N : N; -fun pipe_N : N; -fun pipe_V : V; -fun pipe_V2 : V2; -fun pipe_organ_N : N; -fun pipe_rack_N : N; -fun pipeclay_N : N; -fun pipedream_N : N; -fun pipefish_N : N; -fun pipefitting_N : N; -fun pipeful_N : N; -fun pipeline_N : N; -fun piper_N : N; -fun piperacillin_N : N; -fun piperazine_N : N; -fun piperin_N : N; -fun piperocaine_N : N; -fun pipet_N : N; -fun pipette_N : N; -fun pipework_N : N; -fun pipewort_N : N; -fun piping_A : A; -fun piping_Adv : Adv; -fun piping_N : N; -fun pipistrelle_N : N; -fun pipit_N : N; -fun pippin_N : N; -fun pipsissewa_N : N; -fun pipsqueak_N : N; -fun piquancy_N : N; -fun piquant_A : A; -fun piquantly_Adv : Adv; -fun pique_N : N; -fun pique_V2 : V2; -fun piquet_N : N; -fun piracy_N : N; -fun piranha_N : N; -fun pirate_N : N; -fun pirate_V2 : V2; -fun piratical_A : A; -fun piratically_Adv : Adv; -fun pirogi_N : N; -fun piroplasm_N : N; -fun pirouette_N : N; -fun pirouette_V : V; -fun piroxicam_N : N; -fun pis_aller_N : N; -fun pisanosaur_N : N; -fun piscatorial_A : A; -fun piscine_A : A; -fun piscivorous_A : A; -fun pisiform_N : N; -fun piss_N : N; -fun piss_V : V; -fun piss_V2 : V2; -fun piss_up_N : N; -fun pissed_A : A; -fun pisser_N : N; -fun pistachio_N : N; -fun piste_N : N; -fun pistia_N : N; -fun pistil_N : N; -fun pistillate_A : A; -fun pistillode_N : N; -fun pistol_N : N; -fun pistoleer_N : N; -fun piston_N : N; -fun pit_N : N; -fun pit_V2 : V2; -fun pit_a_pat_Adv : Adv; -fun pit_a_pat_Adv : Adv; -fun pit_prop_N : N; -fun pita_N : N; -fun pitahaya_N : N; -fun pitch_N : N; -fun pitch_V : V; -fun pitch_V2 : V2; -fun pitch_black_A : A; -fun pitch_dark_A : A; -fun pitchblende_N : N; -fun pitched_A : A; -fun pitcher_N : N; -fun pitcher_shaped_A : A; -fun pitchfork_N : N; -fun pitchfork_V2 : V2; -fun pitching_N : N; -fun pitchman_N : N; -fun pitchstone_N : N; -fun pitchy_A : A; -fun piteous_A : A; -fun piteously_Adv : Adv; -fun pitfall_N : N; -fun pith_N : N; -fun pith_V2 : V2; -fun pithead_N : N; -fun pithily_Adv : Adv; -fun pithy_A : A; -fun pitiable_A : A; -fun pitiful_A : A; -fun pitifully_Adv : Adv; -fun pitiless_A : A; -fun pitilessness_N : N; -fun pitman_N : N; -fun piton_N : N; -fun pitprop_N : N; -fun pitsaw_N : N; -fun pitta_N : N; -fun pittance_N : N; -fun pitter_patter_N : N; -fun pitter_patter_N : N; -fun pitting_N : N; -fun pituitary_A : A; -fun pituitary_N : N; -fun pity_N : N; -fun pity_V2 : V2; -fun pitying_A : A; -fun pityingly_Adv : Adv; -fun pityriasis_N : N; -fun pivot_N : N; -fun pivot_V : V; -fun pivot_V2 : V2; -fun pivotal_A : A; -fun pixel_N : N; -fun pixie_N : N; -fun pixilated_A : A; -fun pixy_N : N; -fun pizza_N : N; -fun pizzeria_N : N; -fun pizzicato_A : A; -fun pizzicato_Adv : Adv; -fun pizzicato_N : N; -fun placable_A : A; -fun placard_N : N; -fun placard_V2 : V2; -fun placate_V2 : V2; -fun placatingly_Adv : Adv; -fun placation_N : N; -fun place_N : N; -fun place_V2 : V2; -fun place_bet_N : N; -fun place_kicker_N : N; -fun place_name_N : N; -fun placebo_N : N; -fun placed_A : A; -fun placeholder_N : N; -fun placeman_N : N; -fun placement_N : N; -fun placenta_N : N; -fun placental_A : A; -fun placental_N : N; -fun placentation_N : N; -fun placer_N : N; -fun placeseeker_N : N; -fun placid_A : A; -fun placidity_N : N; -fun placidly_Adv : Adv; -fun placing_N : N; -fun placket_N : N; -fun placoderm_N : N; -fun placoid_A : A; -fun plage_N : N; -fun plagiarism_N : N; -fun plagiarist_N : N; -fun plagiaristic_A : A; -fun plagiarize_V2 : V2; -fun plagiocephaly_N : N; -fun plagioclase_N : N; -fun plagioclastic_A : A; -fun plague_N : N; -fun plague_V2 : V2; -fun plague_spot_N : N; -fun plaguey_Adv : Adv; -fun plaguy_A : A; -fun plaice_N : N; -fun plaid_N : N; -fun plain_A : A; -fun plain_Adv : Adv; -fun plain_N : N; -fun plain_V : V; -fun plain_V2 : V2; -fun plain_spoken_A : A; -fun plain_woven_A : A; -fun plainclothesman_N : N; -fun plainly_Adv : Adv; -fun plainness_N : N; -fun plainsman_N : N; -fun plainsong_N : N; -fun plainspoken_A : A; -fun plaint_N : N; -fun plaintiff_N : N; -fun plaintive_A : A; -fun plaintively_Adv : Adv; -fun plaintiveness_N : N; -fun plait_N : N; -fun plait_V2 : V2; -fun plaiter_N : N; -fun plan_N : N; -fun plan_V : V; -fun plan_V2 : V2; -fun plan_V2V : V2V; -fun plan_VS : VS; -fun plan_VV : VV; -fun planar_A : A; -fun planarian_N : N; -fun planate_A : A; -fun planation_N : N; -fun planchet_N : N; -fun planchette_N : N; -fun plane_N : N; -fun plane_V : V; -fun plane_V2 : V2; -fun plane_polarized_A : A; -fun plane_tree_N : N; -fun planet_N : N; -fun planetal_A : A; -fun planetarium_N : N; -fun planetary_A : A; -fun planetesimal_N : N; -fun plangency_N : N; -fun plangent_A : A; -fun plank_N : N; -fun plank_V2 : V2; -fun plank_bed_N : N; -fun plank_bed_N : N; -fun planking_N : N; -fun plankton_N : N; -fun planktonic_A : A; -fun planless_A : A; -fun planned_A : A; -fun planner_N : N; -fun planning_N : N; -fun planoconcave_A : A; -fun planoconvex_A : A; -fun planographic_A : A; -fun plant_N : N; -fun plant_V2 : V2; -fun plant_eating_A : A; -fun plant_louse_N : N; -fun plantain_N : N; -fun plantal_A : A; -fun plantar_A : A; -fun plantation_N : N; -fun planted_A : A; -fun planter_N : N; -fun plantigrade_A : A; -fun planting_N : N; -fun plantlet_N : N; -fun planula_N : N; -fun plaque_N : N; -fun plash_N : N; -fun plash_V : V; -fun plash_V2 : V2; -fun plasm_N : N; -fun plasma_N : N; -fun plasmablast_N : N; -fun plasmacytoma_N : N; -fun plasmapheresis_N : N; -fun plasmid_N : N; -fun plasmin_N : N; -fun plasminogen_N : N; -fun plasmodium_N : N; -fun plaster_N : N; -fun plaster_V2 : V2; -fun plaster_of_paris_PN : PN; -fun plasterboard_N : N; -fun plastered_A : A; -fun plasterer_N : N; -fun plastering_N : N; -fun plastic_A : A; -fun plastic_N : N; -fun plastic_bomb_N : N; -fun plastically_Adv : Adv; -fun plasticine_N : N; -fun plasticity_N : N; -fun plasticizer_N : N; -fun plastics_N : N; -fun plastid_N : N; -fun plastination_N : N; -fun plastron_N : N; -fun plat_N : N; -fun plate_N : N; -fun plate_V2 : V2; -fun plate_glass_N : N; -fun plate_powder_N : N; -fun plate_rack_N : N; -fun plateau_N : N; -fun plateful_N : N; -fun platelayer_N : N; -fun platelet_N : N; -fun plateletpheresis_N : N; -fun platen_N : N; -fun plater_N : N; -fun platform_N : N; -fun plating_N : N; -fun platinum_N : N; -fun platitude_N : N; -fun platitudinarian_N : N; -fun platitudinous_A : A; -fun platonic_A : A; -fun platoon_N : N; -fun platter_N : N; -fun platy_N : N; -fun platyctenean_N : N; -fun platypus_N : N; -fun platyrrhine_A : A; -fun platysma_N : N; -fun plaudit_N : N; -fun plausibility_N : N; -fun plausible_A : A; -fun play_N : N; -fun play_V : V; -fun play_V2 : V2; -fun play_acting_N : N; -fun play_actor_N : N; -fun play_box_N : N; -fun play_off_N : N; -fun play_reading_N : N; -fun playable_A : A; -fun playback_N : N; -fun playbill_N : N; -fun playbook_N : N; -fun playbox_N : N; -fun playboy_N : N; -fun played_A : A; -fun played_out_A : A; -fun player_N : N; -fun player_piano_N : N; -fun playfellow_N : N; -fun playful_A : A; -fun playfully_Adv : Adv; -fun playfulness_N : N; -fun playgoer_N : N; -fun playground_N : N; -fun playgroup_N : N; -fun playhouse_N : N; -fun playing_N : N; -fun playing_card_N : N; -fun playing_field_N : N; -fun playlet_N : N; -fun playlist_N : N; -fun playmaker_N : N; -fun playmate_N : N; -fun playoff_N : N; -fun playpen_N : N; -fun playroom_N : N; -fun playschool_N : N; -fun playsuit_N : N; -fun plaything_N : N; -fun playtime_N : N; -fun playwright_N : N; -fun plaza_N : N; -fun plea_N : N; -fun pleach_V2 : V2; -fun plead_V : V; -fun plead_V2 : V2; -fun plead_VA : VA; -fun plead_VS : VS; -fun pleading_N : N; -fun pleadingly_Adv : Adv; -fun pleasance_N : N; -fun pleasant_A : A; -fun pleasant_smelling_A : A; -fun pleasantly_Adv : Adv; -fun pleasantness_N : N; -fun pleasantry_N : N; -fun please_Adv : Adv; -fun please_V : V; -fun please_V2 : V2; -fun pleased_A : A; -fun pleaser_N : N; -fun pleasing_A : A; -fun pleasing_N : N; -fun pleasingly_Adv : Adv; -fun pleasingness_N : N; -fun pleasurable_A : A; -fun pleasure_N : N; -fun pleasure_boat_N : N; -fun pleasure_craft_N : N; -fun pleasure_ground_N : N; -fun pleat_N : N; -fun pleat_V2 : V2; -fun pleb_N : N; -fun plebeian_A : A; -fun plebeian_N : N; -fun plebiscite_N : N; -fun plectognath_N : N; -fun plectranthus_N : N; -fun plectrum_N : N; -fun pledge_N : N; -fun pledge_V2 : V2; -fun pledge_V2V : V2V; -fun pledge_VS : VS; -fun pledged_A : A; -fun pledgee_N : N; -fun pledger_N : N; -fun plenarily_Adv : Adv; -fun plenary_A : A; -fun plenipotentiary_N : N; -fun plenitude_N : N; -fun plenteous_A : A; -fun plentiful_A : A; -fun plenty_Adv : Adv; -fun plenty_N : N; -fun plenum_N : N; -fun pleochroic_A : A; -fun pleochroism_N : N; -fun pleomorphic_A : A; -fun pleomorphism_N : N; -fun pleonasm_N : N; -fun pleonastic_A : A; -fun plesiosaur_N : N; -fun plethora_N : N; -fun plethysmograph_N : N; -fun pleura_N : N; -fun pleural_A : A; -fun pleurisy_N : N; -fun pleurocarp_N : N; -fun pleurocarpous_A : A; -fun pleurodont_N : N; -fun pleurodynia_N : N; -fun pleuropneumonia_N : N; -fun pleurothallis_N : N; -fun pleximeter_N : N; -fun plexor_N : N; -fun plexus_N : N; -fun pliability_N : N; -fun pliable_A : A; -fun pliancy_N : N; -fun pliant_A : A; -fun plication_N : N; -fun plier_N : N; -fun pliers_N : N; -fun plight_N : N; -fun plight_V2 : V2; -fun plimsoll_N : N; -fun plink_V : V; -fun plink_V2 : V2; -fun plinth_N : N; -fun ploce_N : N; -fun plod_V : V; -fun plod_V2 : V2; -fun plodder_N : N; -fun plodding_A : A; -fun plodding_N : N; -fun ploddingly_Adv : Adv; -fun plonk_Adv : Adv; -fun plonk_N : N; -fun plonk_V : V; -fun plonk_V2 : V2; -fun plop_Adv : Adv; -fun plop_N : N; -fun plop_V : V; -fun plop_V2 : V2; -fun plosion_N : N; -fun plosive_A : A; -fun plosive_N : N; -fun plot_N : N; -fun plot_V : V; -fun plot_V2 : V2; -fun plotter_N : N; -fun plough_N : N; -fun plough_V : V; -fun plough_V2 : V2; -fun ploughboy_N : N; -fun ploughman_N : N; -fun ploughshare_N : N; -fun plover_N : N; -fun plow_N : N; -fun plow_V : V; -fun plow_V2 : V2; -fun plowboy_N : N; -fun plowed_A : A; -fun plowing_N : N; -fun plowman_N : N; -fun plowshare_N : N; -fun plowwright_N : N; -fun ploy_N : N; -fun pluck_N : N; -fun pluck_V : V; -fun pluck_V2 : V2; -fun plucked_A : A; -fun pluckily_Adv : Adv; -fun plucky_A : A; -fun plug_N : N; -fun plug_V : V; -fun plug_V2 : V2; -fun plugged_A : A; -fun plughole_N : N; -fun plum_N : N; -fun plum_pudding_N : N; -fun plum_yew_N : N; -fun plumage_N : N; -fun plumaged_A : A; -fun plumate_A : A; -fun plumb_A : A; -fun plumb_Adv : Adv; -fun plumb_N : N; -fun plumb_V2 : V2; -fun plumbaginaceous_A : A; -fun plumbago_N : N; -fun plumber_N : N; -fun plumbic_A : A; -fun plumbing_N : N; -fun plumcot_N : N; -fun plume_N : N; -fun plume_V2 : V2; -fun plume_tipped_A : A; -fun plumed_A : A; -fun plumelike_A : A; -fun plumlike_A : A; -fun plummet_N : N; -fun plummet_V : V; -fun plummet_V2 : V2; -fun plummy_A : A; -fun plump_A : A; -fun plump_Adv : Adv; -fun plump_N : N; -fun plump_V : V; -fun plump_V2 : V2; -fun plumping_A : A; -fun plumpness_N : N; -fun plumule_N : N; -fun plunder_N : N; -fun plunder_V : V; -fun plunder_V2 : V2; -fun plunderage_N : N; -fun plunderer_N : N; -fun plundering_A : A; -fun plundering_N : N; -fun plunge_N : N; -fun plunge_V : V; -fun plunge_V2 : V2; -fun plunger_N : N; -fun plunk_N : N; -fun plunk_V : V; -fun plunk_V2 : V2; -fun pluperfect_A : A; -fun pluperfect_N : N; -fun plural_A : A; -fun plural_N : N; -fun pluralism_N : N; -fun pluralist_N : N; -fun pluralistic_A : A; -fun plurality_N : N; -fun pluralization_N : N; -fun plus_A : A; -fun plus_N : N; -fun plus_Prep : Prep; -fun plush_A : A; -fun plush_N : N; -fun plushy_A : A; -fun plutocracy_N : N; -fun plutocrat_N : N; -fun plutocratic_A : A; -fun plutonium_N : N; -fun ply_N : N; -fun ply_V : V; -fun ply_V2 : V2; -fun ply_VS : VS; -fun plywood_N : N; -fun pneumatic_A : A; -fun pneumatically_Adv : Adv; -fun pneumatics_N : N; -fun pneumatophore_N : N; -fun pneumococcal_A : A; -fun pneumococcus_N : N; -fun pneumoconiosis_N : N; -fun pneumocytosis_N : N; -fun pneumogastric_A : A; -fun pneumonectomy_N : N; -fun pneumonia_N : N; -fun pneumonic_A : A; -fun pneumonitis_N : N; -fun pneumothorax_N : N; -fun po_N : N; -fun po_faced_A : A; -fun poach_V : V; -fun poach_V2 : V2; -fun poacher_N : N; -fun poaching_N : N; -fun pochard_N : N; -fun pock_N : N; -fun pocked_A : A; -fun pocket_N : N; -fun pocket_V2 : V2; -fun pocket_book_N : N; -fun pocket_handkerchief_N : N; -fun pocket_handkerchief_N : N; -fun pocket_knife_N : N; -fun pocket_money_N : N; -fun pocket_size_A : A; -fun pocketbook_N : N; -fun pocketcomb_N : N; -fun pocketful_N : N; -fun pocketknife_N : N; -fun pockmark_N : N; -fun pockmarked_A : A; -fun pod_N : N; -fun pod_V : V; -fun pod_V2 : V2; -fun podalgia_N : N; -fun podetium_N : N; -fun podgy_A : A; -fun podiatry_N : N; -fun podium_N : N; -fun podlike_A : A; -fun podocarp_N : N; -fun podzol_N : N; -fun poem_N : N; -fun poesy_N : N; -fun poet_N : N; -fun poetess_N : N; -fun poetic_A : A; -fun poetical_A : A; -fun poetically_Adv : Adv; -fun poetics_N : N; -fun poetry_N : N; -fun pogge_N : N; -fun pogonia_N : N; -fun pogonion_N : N; -fun pogrom_N : N; -fun poi_N : N; -fun poignance_N : N; -fun poignancy_N : N; -fun poignant_A : A; -fun poikilotherm_N : N; -fun poikilothermic_A : A; -fun poilu_N : N; -fun poinsettia_N : N; -fun point_N : N; -fun point_V : V; -fun point_V2 : V2; -fun point_blank_A : A; -fun point_blank_A : A; -fun point_blank_Adv : Adv; -fun point_blank_Adv : Adv; -fun point_duty_N : N; -fun point_of_sale_A : A; -fun pointed_A : A; -fun pointedly_Adv : Adv; -fun pointedness_N : N; -fun pointer_N : N; -fun pointillism_N : N; -fun pointillist_A : A; -fun pointillist_N : N; -fun pointless_A : A; -fun pointlessly_Adv : Adv; -fun pointsman_N : N; -fun pointy_toed_A : A; -fun poise_N : N; -fun poise_V : V; -fun poise_V2 : V2; -fun poised_A : A; -fun poison_N : N; -fun poison_V2 : V2; -fun poison_gas_N : N; -fun poison_ivy_N : N; -fun poisoner_N : N; -fun poisoning_N : N; -fun poisonous_A : A; -fun poisonously_Adv : Adv; -fun poke_N : N; -fun poke_V : V; -fun poke_V2 : V2; -fun poke_bonnet_N : N; -fun poker_N : N; -fun poker_face_N : N; -fun pokeweed_N : N; -fun poky_A : A; -fun polack_N : N; -fun polar_A : A; -fun polarimeter_N : N; -fun polaris_N : N; -fun polarity_N : N; -fun polarization_N : N; -fun polarize_V2 : V2; -fun polarographic_A : A; -fun polarography_N : N; -fun polaroid_N : N; -fun polder_N : N; -fun pole_N : N; -fun pole_jumping_N : N; -fun pole_star_N : N; -fun pole_vault_N : N; -fun poleax_N : N; -fun poleax_V2 : V2; -fun poleaxe_N : N; -fun poleaxe_V2 : V2; -fun polecat_N : N; -fun polemic_A : A; -fun polemic_N : N; -fun polemically_Adv : Adv; -fun polemicist_N : N; -fun polemics_N : N; -fun polemoniaceous_A : A; -fun polemonium_N : N; -fun polenta_N : N; -fun police_N : N; -fun police_V2 : V2; -fun police_office_N : N; -fun police_officer_N : N; -fun police_station_N : N; -fun policeman_N : N; -fun policewoman_N : N; -fun policy_N : N; -fun policy_making_A : A; -fun policyholder_N : N; -fun polio_N : N; -fun poliomyelitis_N : N; -fun poliosis_N : N; -fun poliovirus_N : N; -fun polish_A : A; -fun polish_N : N; -fun polish_V : V; -fun polish_V2 : V2; -fun polished_A : A; -fun polisher_N : N; -fun politburo_N : N; -fun polite_A : A; -fun politely_Adv : Adv; -fun politeness_N : N; -fun politic_A : A; -fun political_A : A; -fun politically_Adv : Adv; -fun politically_correct_A : A; -fun politically_incorrect_A : A; -fun politician_N : N; -fun politicize_V : V; -fun politicize_V2 : V2; -fun politick_V : V; -fun politics_N : N; -fun polity_N : N; -fun polka_N : N; -fun poll_N : N; -fun poll_V : V; -fun poll_V2 : V2; -fun poll_tax_N : N; -fun pollack_N : N; -fun pollard_N : N; -fun pollard_V2 : V2; -fun pollen_N : N; -fun pollinate_V2 : V2; -fun pollination_N : N; -fun pollinator_N : N; -fun polling_booth_N : N; -fun polling_day_N : N; -fun polling_station_N : N; -fun pollinium_N : N; -fun polls_N : N; -fun pollster_N : N; -fun pollucite_N : N; -fun pollutant_N : N; -fun pollute_V2 : V2; -fun polluter_N : N; -fun pollution_N : N; -fun polo_N : N; -fun polo_neck_A : A; -fun polonaise_N : N; -fun polonium_N : N; -fun polony_N : N; -fun poltergeist_N : N; -fun poltroon_A : A; -fun poltroon_N : N; -fun poltroonery_N : N; -fun poly_N : N; -fun polyamide_N : N; -fun polyandrist_N : N; -fun polyandrous_A : A; -fun polyandry_N : N; -fun polyanthus_N : N; -fun polyarteritis_N : N; -fun polyatomic_A : A; -fun polybutylene_N : N; -fun polychaete_N : N; -fun polychromatic_A : A; -fun polychrome_N : N; -fun polycrystalline_A : A; -fun polycythemia_N : N; -fun polydactyl_A : A; -fun polydactyly_N : N; -fun polydipsia_N : N; -fun polyelectrolyte_N : N; -fun polyester_N : N; -fun polyestrous_A : A; -fun polyethylene_N : N; -fun polyfoam_N : N; -fun polygamist_N : N; -fun polygamous_A : A; -fun polygamy_N : N; -fun polygene_N : N; -fun polygenic_A : A; -fun polyglot_A : A; -fun polyglot_N : N; -fun polygon_N : N; -fun polygonal_A : A; -fun polygonally_Adv : Adv; -fun polygraph_N : N; -fun polygynist_N : N; -fun polygynous_A : A; -fun polygyny_N : N; -fun polyhedral_A : A; -fun polyhedron_N : N; -fun polymastigote_N : N; -fun polymath_N : N; -fun polymer_N : N; -fun polymerase_N : N; -fun polymeric_A : A; -fun polymerization_N : N; -fun polymorph_N : N; -fun polymorphemic_A : A; -fun polymorphic_A : A; -fun polymorphism_N : N; -fun polymorphous_A : A; -fun polymyositis_N : N; -fun polymyxin_N : N; -fun polyneuritis_N : N; -fun polynomial_A : A; -fun polynomial_N : N; -fun polynya_N : N; -fun polyoma_N : N; -fun polyp_N : N; -fun polypectomy_N : N; -fun polypeptide_N : N; -fun polypetalous_A : A; -fun polyphone_N : N; -fun polyphonic_A : A; -fun polyphonically_Adv : Adv; -fun polyphony_N : N; -fun polyphosphate_N : N; -fun polyploid_A : A; -fun polyploid_N : N; -fun polyploidy_N : N; -fun polypody_N : N; -fun polypore_N : N; -fun polypropenonitrile_N : N; -fun polypropylene_N : N; -fun polyptoton_N : N; -fun polypus_N : N; -fun polysaccharide_N : N; -fun polysemant_N : N; -fun polysemous_A : A; -fun polysemy_N : N; -fun polysomy_N : N; -fun polystyrene_N : N; -fun polysyllabic_A : A; -fun polysyllabically_Adv : Adv; -fun polysyllable_N : N; -fun polysyndeton_N : N; -fun polytechnic_N : N; -fun polytheism_N : N; -fun polytheist_N : N; -fun polytheistic_A : A; -fun polythene_N : N; -fun polytonal_A : A; -fun polytonality_N : N; -fun polyunsaturated_A : A; -fun polyurethane_N : N; -fun polyuria_N : N; -fun polyvalence_N : N; -fun polyvalent_A : A; -fun polyvinyl_formaldehyde_N : N; -fun pom_N : N; -fun pomade_N : N; -fun pomade_V2 : V2; -fun pomaded_A : A; -fun pome_N : N; -fun pomegranate_N : N; -fun pomelo_N : N; -fun pomfret_N : N; -fun pommel_N : N; -fun pommel_V2 : V2; -fun pommy_N : N; -fun pomologist_N : N; -fun pomology_N : N; -fun pomp_N : N; -fun pompadour_N : N; -fun pompano_N : N; -fun pompon_N : N; -fun pomposity_N : N; -fun pompous_A : A; -fun pompously_Adv : Adv; -fun ponce_N : N; -fun poncho_N : N; -fun pond_N : N; -fun ponder_V : V; -fun ponder_V2 : V2; -fun ponder_VS : VS; -fun ponderable_A : A; -fun ponderosa_N : N; -fun ponderous_A : A; -fun ponderously_Adv : Adv; -fun ponderousness_N : N; -fun pondweed_N : N; -fun pone_N : N; -fun pongee_N : N; -fun poniard_N : N; -fun poniard_V2 : V2; -fun pons_N : N; -fun pontifex_N : N; -fun pontiff_N : N; -fun pontifical_A : A; -fun pontifical_N : N; -fun pontificate_N : N; -fun pontificate_V : V; -fun pontoon_N : N; -fun pony_N : N; -fun pony_trekking_N : N; -fun pony_trekking_N : N; -fun ponytail_N : N; -fun pooch_N : N; -fun pood_N : N; -fun poodle_N : N; -fun poof_N : N; -fun pooh_pooh_V2 : V2; -fun pool_N : N; -fun pool_V2 : V2; -fun pooler_N : N; -fun poolroom_N : N; -fun poon_N : N; -fun poop_N : N; -fun poor_A : A; -fun poor_box_N : N; -fun poor_rate_N : N; -fun poor_spirited_A : A; -fun poorhouse_N : N; -fun poorly_A : A; -fun poorness_N : N; -fun poorwill_N : N; -fun pop_A : A; -fun pop_Adv : Adv; -fun pop_N : N; -fun pop_V : V; -fun pop_V2 : V2; -fun pop_up_V : V; -fun popcorn_N : N; -fun pope_N : N; -fun popery_N : N; -fun popeyed_A : A; -fun popgun_N : N; -fun popinjay_N : N; -fun popish_A : A; -fun popishly_Adv : Adv; -fun poplar_N : N; -fun poplin_N : N; -fun popliteal_A : A; -fun popover_N : N; -fun poppa_N : N; -fun popper_N : N; -fun poppet_N : N; -fun poppy_N : N; -fun poppycock_N : N; -fun populace_N : N; -fun popular_A : A; -fun popularism_N : N; -fun popularity_N : N; -fun popularization_N : N; -fun popularize_V2 : V2; -fun popularizer_N : N; -fun popularly_Adv : Adv; -fun populate_V2 : V2; -fun populated_A : A; -fun population_N : N; -fun populism_N : N; -fun populist_N : N; -fun populous_A : A; -fun porbeagle_N : N; -fun porcelain_N : N; -fun porch_N : N; -fun porcine_A : A; -fun porcupine_N : N; -fun porcupinefish_N : N; -fun pore_N : N; -fun pore_V : V; -fun porgy_N : N; -fun pork_N : N; -fun pork_barrel_N : N; -fun pork_barreling_N : N; -fun pork_butcher_N : N; -fun porkchop_N : N; -fun porker_N : N; -fun porkfish_N : N; -fun porkholt_N : N; -fun porkpie_N : N; -fun porn_N : N; -fun pornographer_N : N; -fun pornographic_A : A; -fun pornographically_Adv : Adv; -fun pornography_N : N; -fun porose_A : A; -fun porosity_N : N; -fun porous_A : A; -fun porousness_N : N; -fun porphyria_N : N; -fun porphyrin_N : N; -fun porphyritic_A : A; -fun porphyry_N : N; -fun porpoise_N : N; -fun porridge_N : N; -fun porringer_N : N; -fun port_A : A; -fun port_N : N; -fun port_V2 : V2; -fun portability_N : N; -fun portable_A : A; -fun portable_N : N; -fun portage_N : N; -fun portal_N : N; -fun portcullis_N : N; -fun porte_cochere_N : N; -fun porte_cochere_N : N; -fun portend_V2 : V2; -fun portent_N : N; -fun portentous_A : A; -fun portentously_Adv : Adv; -fun porter_N : N; -fun porterage_N : N; -fun porterhouse_N : N; -fun portfolio_N : N; -fun porthole_N : N; -fun portico_N : N; -fun portiere_N : N; -fun portion_N : N; -fun portion_V2 : V2; -fun portly_A : A; -fun portmanteau_N : N; -fun portrait_N : N; -fun portraitist_N : N; -fun portraiture_N : N; -fun portray_V2 : V2; -fun portrayal_N : N; -fun portuguese_A : A; -fun portuguese_N : N; -fun portulaca_N : N; -fun portwatcher_N : N; -fun pose_N : N; -fun pose_V : V; -fun pose_V2 : V2; -fun posed_A : A; -fun poser_N : N; -fun poseur_N : N; -fun poseuse_N : N; -fun posh_A : A; -fun posh_V2 : V2; -fun posit_V2 : V2; -fun position_N : N; -fun position_V2 : V2; -fun position_V2V : V2V; -fun positionable_A : A; -fun positional_A : A; -fun positive_A : A; -fun positive_N : N; -fun positively_Adv : Adv; -fun positiveness_N : N; -fun positivism_N : N; -fun positivist_A : A; -fun positivist_N : N; -fun positivity_N : N; -fun positron_N : N; -fun posology_N : N; -fun posse_N : N; -fun posseman_N : N; -fun possess_V2 : V2; -fun possession_N : N; -fun possessive_A : A; -fun possessively_Adv : Adv; -fun possessiveness_N : N; -fun possessor_N : N; -fun posset_N : N; -fun possibility_N : N; -fun possible_A : A; -fun possible_N : N; -fun possibly_Adv : Adv; -fun possum_N : N; -fun post_N : N; -fun post_Prep : Prep; -fun post_V : V; -fun post_V2 : V2; -fun post_chaise_N : N; -fun post_communist_A : A; -fun post_free_A : A; -fun post_free_A : A; -fun post_free_Adv : Adv; -fun post_free_Adv : Adv; -fun post_haste_Adv : Adv; -fun post_haste_Adv : Adv; -fun post_horse_N : N; -fun post_maturity_N : N; -fun post_meridiem_A : A; -fun post_meridiem_Adv : Adv; -fun post_mortem_A : A; -fun post_mortem_N : N; -fun post_paid_A : A; -fun post_paid_Adv : Adv; -fun postage_N : N; -fun postage_stamp_N : N; -fun postal_A : A; -fun postbag_N : N; -fun postbiblical_A : A; -fun postbox_N : N; -fun postcard_N : N; -fun postcode_N : N; -fun postdate_V2 : V2; -fun postdiluvian_A : A; -fun postdiluvian_N : N; -fun postdoc_N : N; -fun postdoctoral_A : A; -fun postdoctoral_N : N; -fun poste_restante_N : N; -fun posted_A : A; -fun poster_N : N; -fun posterior_A : A; -fun posterior_N : N; -fun posteriority_N : N; -fun posterity_N : N; -fun postern_N : N; -fun postexilic_A : A; -fun postganglionic_A : A; -fun postglacial_A : A; -fun postgraduate_A : A; -fun postgraduate_N : N; -fun posthitis_N : N; -fun posthole_N : N; -fun posthouse_N : N; -fun posthumous_A : A; -fun posthumously_Adv : Adv; -fun postictal_A : A; -fun postilion_N : N; -fun postillion_N : N; -fun postindustrial_A : A; -fun posting_N : N; -fun postlude_N : N; -fun postman_N : N; -fun postmark_N : N; -fun postmark_V2 : V2; -fun postmaster_N : N; -fun postmenopausal_A : A; -fun postmeridian_A : A; -fun postmillennial_A : A; -fun postmistress_N : N; -fun postmodernism_N : N; -fun postmodernist_A : A; -fun postmortem_A : A; -fun postmortem_N : N; -fun postnatal_A : A; -fun postnuptial_A : A; -fun postoperative_A : A; -fun postoperatively_Adv : Adv; -fun postpaid_A : A; -fun postpone_V2 : V2; -fun postponement_N : N; -fun postposition_N : N; -fun postpositive_A : A; -fun postprandial_A : A; -fun postscript_N : N; -fun postulant_N : N; -fun postulate_N : N; -fun postulate_V2 : V2; -fun postulation_N : N; -fun postulator_N : N; -fun postural_A : A; -fun posture_N : N; -fun posture_V : V; -fun posture_V2 : V2; -fun posturer_N : N; -fun posturing_N : N; -fun postwar_A : A; -fun posy_N : N; -fun pot_N : N; -fun pot_V : V; -fun pot_V2 : V2; -fun pot_au_feu_N : N; -fun pot_shot_N : N; -fun pot_trained_A : A; -fun potable_A : A; -fun potage_N : N; -fun potash_N : N; -fun potassium_N : N; -fun potation_N : N; -fun potato_N : N; -fun potbellied_A : A; -fun potbelly_N : N; -fun potboiler_N : N; -fun potbound_A : A; -fun potboy_N : N; -fun poteen_N : N; -fun potency_N : N; -fun potent_A : A; -fun potentate_N : N; -fun potential_A : A; -fun potential_N : N; -fun potentiality_N : N; -fun potentially_Adv : Adv; -fun potentiation_N : N; -fun potentiometer_N : N; -fun potently_Adv : Adv; -fun pothead_N : N; -fun pother_N : N; -fun potherb_N : N; -fun potholder_N : N; -fun pothole_N : N; -fun potholer_N : N; -fun pothook_N : N; -fun pothos_N : N; -fun pothouse_N : N; -fun pothunter_N : N; -fun potion_N : N; -fun potlatch_N : N; -fun potluck_N : N; -fun potman_N : N; -fun potoroo_N : N; -fun potpie_N : N; -fun potpourri_N : N; -fun potsherd_N : N; -fun potshot_N : N; -fun pottage_N : N; -fun potted_A : A; -fun potter_N : N; -fun potter_V : V; -fun potterer_N : N; -fun pottery_N : N; -fun pottle_N : N; -fun potto_N : N; -fun potty_A : A; -fun potty_N : N; -fun potty_trained_A : A; -fun pouch_N : N; -fun pouch_V2 : V2; -fun pouched_A : A; -fun pouf_N : N; -fun pouffe_N : N; -fun poulette_N : N; -fun poulterer_N : N; -fun poultice_N : N; -fun poultice_V2 : V2; -fun poultry_N : N; -fun poultryman_N : N; -fun pounce_N : N; -fun pounce_V : V; -fun pound_N : N; -fun pound_V : V; -fun pound_V2 : V2; -fun pound_foolish_A : A; -fun poundage_N : N; -fun poundal_N : N; -fun pounder_N : N; -fun pounding_N : N; -fun pour_V : V; -fun pour_V2 : V2; -fun pousse_cafe_N : N; -fun pout_N : N; -fun pout_V : V; -fun pout_V2 : V2; -fun poutingly_Adv : Adv; -fun poverty_N : N; -fun poverty_stricken_A : A; -fun pow_N : N; -fun powder_N : N; -fun powder_V : V; -fun powder_V2 : V2; -fun powder_blue_A : A; -fun powder_flask_N : N; -fun powder_horn_N : N; -fun powder_magazine_N : N; -fun powder_puff_A : A; -fun powder_puff_N : N; -fun powder_room_N : N; -fun powdered_A : A; -fun powderer_N : N; -fun powderpuff_N : N; -fun powdery_A : A; -fun power_N : N; -fun power_V2 : V2; -fun power_assisted_A : A; -fun power_dive_N : N; -fun power_dive_V2 : V2; -fun power_driven_A : A; -fun power_point_N : N; -fun power_station_N : N; -fun powerboat_N : N; -fun powered_A : A; -fun powerful_A : A; -fun powerfully_Adv : Adv; -fun powerhouse_N : N; -fun powerless_A : A; -fun powerlessly_Adv : Adv; -fun powerlessness_N : N; -fun powwow_N : N; -fun powwow_V : V; -fun pox_N : N; -fun poxvirus_N : N; -fun pp_N : N; -fun pr_N : N; -fun practicability_N : N; -fun practicable_A : A; -fun practicably_Adv : Adv; -fun practical_A : A; -fun practicality_N : N; -fun practically_Adv : Adv; -fun practice_N : N; -fun practice_V : V; -fun practice_V2 : V2; -fun practiced_A : A; -fun practician_N : N; -fun practise_V : V; -fun practise_V2 : V2; -fun practised_A : A; -fun practitioner_N : N; -fun praenomen_N : N; -fun praesidium_N : N; -fun praetor_N : N; -fun praetorian_A : A; -fun praetorium_N : N; -fun praetorship_N : N; -fun pragmatic_A : A; -fun pragmatically_Adv : Adv; -fun pragmatics_N : N; -fun pragmatism_N : N; -fun pragmatist_N : N; -fun prairia_sabbatia_PN : PN; -fun prairie_N : N; -fun praise_N : N; -fun praise_V2 : V2; -fun praiseworthiness_N : N; -fun praiseworthy_A : A; -fun praisworthiness_N : N; -fun praline_N : N; -fun pram_N : N; -fun prance_N : N; -fun prance_V : V; -fun prance_V2 : V2; -fun prancer_N : N; -fun prandial_A : A; -fun prang_N : N; -fun prank_N : N; -fun prankishness_N : N; -fun prankster_N : N; -fun praseodymium_N : N; -fun prate_N : N; -fun prate_V : V; -fun pratfall_N : N; -fun pratincole_N : N; -fun prattle_N : N; -fun prattle_V : V; -fun prattle_V2 : V2; -fun prattler_N : N; -fun pravastatin_N : N; -fun prawn_N : N; -fun prawn_V : V; -fun pray_V : V; -fun pray_V2 : V2; -fun praya_N : N; -fun prayer_N : N; -fun prayer_book_N : N; -fun prayer_mat_N : N; -fun prayer_meeting_N : N; -fun prayer_rug_N : N; -fun prayer_wheel_N : N; -fun prayerful_A : A; -fun prazosin_N : N; -fun pre_christian_A : A; -fun pre_columbian_A : A; -fun pre_jurassic_A : A; -fun pre_socratic_N : N; -fun pre_approve_V2 : V2; -fun pre_eminence_N : N; -fun pre_eminent_A : A; -fun pre_eminently_Adv : Adv; -fun pre_empt_V2 : V2; -fun pre_empt_V2 : V2; -fun pre_emption_N : N; -fun pre_emptive_A : A; -fun pre_exist_V : V; -fun pre_existence_N : N; -fun pre_existent_A : A; -fun pre_packaged_A : A; -fun pre_raphaelite_A : A; -fun pre_raphaelite_N : N; -fun pre_register_V2 : V2; -fun pre_sign_V2 : V2; -fun pre_test_V2 : V2; -fun preach_V : V; -fun preach_V2 : V2; -fun preacher_N : N; -fun preachification_N : N; -fun preachify_V : V; -fun preachy_A : A; -fun preamble_N : N; -fun preanal_A : A; -fun prearrange_V2 : V2; -fun prearrangement_N : N; -fun prebend_N : N; -fun prebendary_N : N; -fun precancerous_A : A; -fun precarious_A : A; -fun precariously_Adv : Adv; -fun precariousness_N : N; -fun precast_A : A; -fun precatory_A : A; -fun precaution_N : N; -fun precautionary_A : A; -fun precede_V : V; -fun precede_V2 : V2; -fun precedence_N : N; -fun precedent_A : A; -fun precedent_N : N; -fun precedented_A : A; -fun precedentedly_Adv : Adv; -fun precedential_A : A; -fun preceding_A : A; -fun precentor_N : N; -fun precentorship_N : N; -fun precept_N : N; -fun preceptor_N : N; -fun preceptorship_N : N; -fun precession_N : N; -fun prechlorination_N : N; -fun precinct_N : N; -fun preciosity_N : N; -fun precious_A : A; -fun precious_Adv : Adv; -fun preciousness_N : N; -fun precipice_N : N; -fun precipitant_N : N; -fun precipitate_A : A; -fun precipitate_N : N; -fun precipitate_V2 : V2; -fun precipitating_A : A; -fun precipitation_N : N; -fun precipitator_N : N; -fun precipitin_N : N; -fun precipitous_A : A; -fun precipitously_Adv : Adv; -fun precis_N : N; -fun precis_V2 : V2; -fun precise_A : A; -fun precisely_Adv : Adv; -fun preciseness_N : N; -fun precision_N : N; -fun preclinical_A : A; -fun preclude_V2 : V2; -fun preclusion_N : N; -fun preclusive_A : A; -fun precocial_A : A; -fun precocious_A : A; -fun precociously_Adv : Adv; -fun precociousness_N : N; -fun precocity_N : N; -fun precognition_N : N; -fun preconceive_V2 : V2; -fun preconceived_A : A; -fun preconception_N : N; -fun preconcerted_A : A; -fun precondition_N : N; -fun preconditioned_A : A; -fun precooked_A : A; -fun precooled_A : A; -fun precordial_A : A; -fun precordium_N : N; -fun precursor_N : N; -fun precursory_A : A; -fun predaceous_A : A; -fun predacious_A : A; -fun predate_V2 : V2; -fun predation_N : N; -fun predator_N : N; -fun predatory_A : A; -fun predecease_V2 : V2; -fun predecessor_N : N; -fun predestinarian_A : A; -fun predestinarianism_N : N; -fun predestinate_A : A; -fun predestinate_V2 : V2; -fun predestination_N : N; -fun predestine_V2 : V2; -fun predetermination_N : N; -fun predetermine_V2 : V2; -fun predicament_N : N; -fun predicate_N : N; -fun predicate_V2 : V2; -fun predicative_A : A; -fun predicatively_Adv : Adv; -fun predicator_N : N; -fun predict_V2 : V2; -fun predict_VS : VS; -fun predictability_N : N; -fun predictable_A : A; -fun predictably_Adv : Adv; -fun prediction_N : N; -fun predictive_A : A; -fun predictor_N : N; -fun predigest_V2 : V2; -fun predigested_A : A; -fun predilection_N : N; -fun predispose_V2 : V2; -fun predisposed_A : A; -fun predisposition_N : N; -fun prednisolone_N : N; -fun prednisone_N : N; -fun predominance_N : N; -fun predominant_A : A; -fun predominantly_Adv : Adv; -fun predominate_V : V; -fun predomination_N : N; -fun preeclampsia_N : N; -fun preemption_N : N; -fun preemptive_A : A; -fun preemptor_N : N; -fun preen_V : V; -fun preen_V2 : V2; -fun preexistence_N : N; -fun preexistent_A : A; -fun prefab_A : A; -fun prefab_N : N; -fun prefabricate_V2 : V2; -fun prefabrication_N : N; -fun preface_N : N; -fun preface_V2 : V2; -fun prefaded_A : A; -fun prefatory_A : A; -fun prefect_N : N; -fun prefectural_A : A; -fun prefecture_N : N; -fun prefer_V2 : V2; -fun prefer_V2V : V2V; -fun prefer_VS : VS; -fun prefer_VV : VV; -fun preferable_A : A; -fun preferably_Adv : Adv; -fun preference_N : N; -fun preferential_A : A; -fun preferentially_Adv : Adv; -fun preferment_N : N; -fun prefiguration_N : N; -fun prefigure_V2 : V2; -fun prefix_N : N; -fun prefix_V2 : V2; -fun prefixation_N : N; -fun preformation_N : N; -fun prefrontal_A : A; -fun pregnancy_N : N; -fun pregnanediol_N : N; -fun pregnant_A : A; -fun preheat_V2 : V2; -fun prehensile_A : A; -fun prehensor_N : N; -fun prehistoric_A : A; -fun prehistorical_A : A; -fun prehistory_N : N; -fun prejudge_V2 : V2; -fun prejudgement_N : N; -fun prejudgment_N : N; -fun prejudice_N : N; -fun prejudice_V2 : V2; -fun prejudiced_A : A; -fun prejudicial_A : A; -fun prelacy_N : N; -fun prelapsarian_A : A; -fun prelate_N : N; -fun prelim_N : N; -fun preliminary_A : A; -fun preliminary_N : N; -fun preliterate_A : A; -fun prelude_N : N; -fun prelude_V2 : V2; -fun premarital_A : A; -fun premature_A : A; -fun prematurely_Adv : Adv; -fun prematureness_N : N; -fun premedical_A : A; -fun premeditate_V2 : V2; -fun premeditated_A : A; -fun premeditation_N : N; -fun premenopausal_A : A; -fun premenstrual_A : A; -fun premier_A : A; -fun premier_N : N; -fun premiere_N : N; -fun premiere_V : V; -fun premiere_V2 : V2; -fun premiership_N : N; -fun premise_N : N; -fun premise_V2 : V2; -fun premises_N : N; -fun premiss_N : N; -fun premiss_V2 : V2; -fun premium_A : A; -fun premium_N : N; -fun premolar_N : N; -fun premonition_N : N; -fun premonitory_A : A; -fun prenatal_A : A; -fun prentice_N : N; -fun prenuptial_A : A; -fun preoccupancy_N : N; -fun preoccupation_N : N; -fun preoccupy_V2 : V2; -fun preoperative_A : A; -fun preordain_V2 : V2; -fun prep_N : N; -fun prepackaged_A : A; -fun prepacked_A : A; -fun preparation_N : N; -fun preparatory_A : A; -fun prepare_V : V; -fun prepare_V2 : V2; -fun prepare_V2V : V2V; -fun prepare_VS : VS; -fun prepare_VV : VV; -fun prepared_A : A; -fun preparedness_N : N; -fun prepay_V2 : V2; -fun prepayment_N : N; -fun preponderance_N : N; -fun preponderant_A : A; -fun preponderate_V : V; -fun preposition_N : N; -fun prepositional_A : A; -fun prepositionally_Adv : Adv; -fun prepossess_V2 : V2; -fun prepossessing_A : A; -fun prepossession_N : N; -fun preposterous_A : A; -fun preprandial_A : A; -fun prepuberty_N : N; -fun prepubescent_A : A; -fun prepuce_N : N; -fun prepupal_A : A; -fun prerecord_V2 : V2; -fun prerecorded_A : A; -fun prerequisite_A : A; -fun prerequisite_N : N; -fun prerogative_N : N; -fun pres_N : N; -fun presage_N : N; -fun presage_V2 : V2; -fun presbyope_N : N; -fun presbyopia_N : N; -fun presbyter_N : N; -fun presbyterian_A : A; -fun presbyterian_N : N; -fun presbyterianism_N : N; -fun presbytery_N : N; -fun preschool_N : N; -fun preschooler_N : N; -fun prescience_N : N; -fun prescient_A : A; -fun presciently_Adv : Adv; -fun prescribe_V : V; -fun prescribe_V2 : V2; -fun prescribed_A : A; -fun prescript_N : N; -fun prescription_A : A; -fun prescription_N : N; -fun prescriptive_A : A; -fun prescriptivism_N : N; -fun preseason_N : N; -fun presence_N : N; -fun present_A : A; -fun present_N : N; -fun present_V2 : V2; -fun present_day_A : A; -fun presentable_A : A; -fun presentably_Adv : Adv; -fun presentation_N : N; -fun presentational_A : A; -fun presenter_N : N; -fun presentiment_N : N; -fun presentism_N : N; -fun presentist_N : N; -fun presently_Adv : Adv; -fun presentment_N : N; -fun presentness_N : N; -fun preservable_A : A; -fun preservation_N : N; -fun preservationist_N : N; -fun preservative_A : A; -fun preservative_N : N; -fun preserve_N : N; -fun preserve_V2 : V2; -fun preserved_A : A; -fun preserver_N : N; -fun preset_A : A; -fun preside_V : V; -fun presidency_N : N; -fun president_N : N; -fun presidential_A : A; -fun presidentially_Adv : Adv; -fun presidio_N : N; -fun presidium_N : N; -fun presocratic_A : A; -fun press_N : N; -fun press_V : V; -fun press_V2 : V2; -fun press_V2V : V2V; -fun press_agency_N : N; -fun press_agent_N : N; -fun press_box_N : N; -fun press_clipping_N : N; -fun press_cutting_N : N; -fun press_gallery_N : N; -fun press_gang_N : N; -fun press_lord_N : N; -fun press_photographer_N : N; -fun press_stud_N : N; -fun press_up_N : N; -fun pressed_A : A; -fun pressing_A : A; -fun pressing_N : N; -fun pressingly_Adv : Adv; -fun pressman_N : N; -fun pressmark_N : N; -fun pressor_A : A; -fun pressure_N : N; -fun pressure_V2 : V2; -fun pressure_V2V : V2V; -fun pressure_cooker_N : N; -fun pressure_gauge_N : N; -fun pressurized_A : A; -fun prestidigitation_N : N; -fun prestidigitator_N : N; -fun prestige_N : N; -fun prestigious_A : A; -fun prestissimo_A : A; -fun prestissimo_Adv : Adv; -fun presto_A : A; -fun presto_Adv : Adv; -fun prestressed_A : A; -fun presumable_A : A; -fun presumably_Adv : Adv; -fun presume_V : V; -fun presume_V2 : V2; -fun presume_VS : VS; -fun presume_VV : VV; -fun presuming_A : A; -fun presumption_N : N; -fun presumptive_A : A; -fun presumptuous_A : A; -fun presumptuously_Adv : Adv; -fun presuppose_V2 : V2; -fun presupposition_N : N; -fun preteen_A : A; -fun preteen_N : N; -fun pretence_N : N; -fun pretend_V : V; -fun pretend_V2 : V2; -fun pretend_VS : VS; -fun pretendedly_Adv : Adv; -fun pretender_N : N; -fun pretense_N : N; -fun pretension_N : N; -fun pretentious_A : A; -fun pretentiously_Adv : Adv; -fun pretentiousness_N : N; -fun preterist_N : N; -fun preterit_A : A; -fun preterit_N : N; -fun preterite_A : A; -fun preterite_N : N; -fun pretermission_N : N; -fun preternatural_A : A; -fun preternaturally_Adv : Adv; -fun pretext_N : N; -fun pretor_N : N; -fun pretrial_N : N; -fun prettify_V2 : V2; -fun prettily_Adv : Adv; -fun prettiness_N : N; -fun pretty_A : A; -fun pretty_Adv : Adv; -fun pretty_N : N; -fun pretty_much_Adv : Adv; -fun pretty_pretty_A : A; -fun pretty_pretty_A : A; -fun pretzel_N : N; -fun prevail_V : V; -fun prevail_V2 : V2; -fun prevailing_A : A; -fun prevalence_N : N; -fun prevalent_A : A; -fun prevaricate_V : V; -fun prevarication_N : N; -fun prevent_V2 : V2; -fun preventable_A : A; -fun preventative_N : N; -fun prevention_N : N; -fun preventive_A : A; -fun preventive_N : N; -fun preview_N : N; -fun preview_V2 : V2; -fun previous_A : A; -fun previously_Adv : Adv; -fun prevision_N : N; -fun prewar_A : A; -fun prey_N : N; -fun prey_V : V; -fun priapic_A : A; -fun priapism_N : N; -fun price_N : N; -fun price_V : V; -fun price_V2 : V2; -fun price_V2V : V2V; -fun price_control_N : N; -fun price_controlled_A : A; -fun price_controlled_A : A; -fun price_fixing_N : N; -fun priceless_A : A; -fun pricelist_N : N; -fun pricey_A : A; -fun pricing_N : N; -fun prick_N : N; -fun prick_V : V; -fun prick_V2 : V2; -fun pricker_N : N; -fun pricket_N : N; -fun pricking_N : N; -fun prickle_N : N; -fun prickle_V : V; -fun prickle_V2 : V2; -fun prickleback_N : N; -fun prickliness_N : N; -fun prickling_N : N; -fun prickly_A : A; -fun prickly_leaved_A : A; -fun pride_N : N; -fun pride_V2 : V2; -fun pride_of_california_PN : PN; -fun prie_dieu_N : N; -fun prie_dieu_N : N; -fun priest_N : N; -fun priest_ridden_A : A; -fun priestcraft_N : N; -fun priestess_N : N; -fun priesthood_N : N; -fun priestlike_A : A; -fun priestly_A : A; -fun prig_N : N; -fun priggish_A : A; -fun priggishly_Adv : Adv; -fun priggishness_N : N; -fun prim_A : A; -fun prim_V2 : V2; -fun prima_A : A; -fun prima_ballerina_N : N; -fun prima_donna_N : N; -fun prima_facie_A : A; -fun prima_facie_Adv : Adv; -fun primacy_N : N; -fun primaeval_A : A; -fun primal_A : A; -fun primality_N : N; -fun primaquine_N : N; -fun primarily_Adv : Adv; -fun primary_A : A; -fun primary_N : N; -fun primate_N : N; -fun primateship_N : N; -fun primatology_N : N; -fun prime_A : A; -fun prime_N : N; -fun prime_V2 : V2; -fun primer_N : N; -fun primeval_A : A; -fun primidone_N : N; -fun primigravida_N : N; -fun priming_N : N; -fun primipara_N : N; -fun primiparous_A : A; -fun primitive_A : A; -fun primitive_N : N; -fun primitively_Adv : Adv; -fun primitiveness_N : N; -fun primitivism_N : N; -fun primly_Adv : Adv; -fun primness_N : N; -fun primo_A : A; -fun primo_N : N; -fun primogeniture_N : N; -fun primordial_A : A; -fun primordium_N : N; -fun primp_V : V; -fun primp_V2 : V2; -fun primping_N : N; -fun primrose_N : N; -fun primula_N : N; -fun primus_N : N; -fun prince_N : N; -fun prince's_feather_N : N; -fun princedom_N : N; -fun princeling_N : N; -fun princely_A : A; -fun princess_N : N; -fun princewood_N : N; -fun principal_A : A; -fun principal_N : N; -fun principality_N : N; -fun principalship_N : N; -fun principle_N : N; -fun principled_A : A; -fun prink_V2 : V2; -fun print_N : N; -fun print_V : V; -fun print_V2 : V2; -fun print_seller_N : N; -fun print_shop_N : N; -fun printable_A : A; -fun printer_N : N; -fun printing_N : N; -fun printing_ink_N : N; -fun printing_press_N : N; -fun printmaker_N : N; -fun printmaking_N : N; -fun printout_N : N; -fun prion_N : N; -fun prior_A : A; -fun prior_N : N; -fun prioress_N : N; -fun priority_N : N; -fun priorship_N : N; -fun priory_N : N; -fun prise_V2 : V2; -fun prism_N : N; -fun prismatic_A : A; -fun prismatoid_N : N; -fun prismoid_N : N; -fun prison_N : N; -fun prison_breaking_N : N; -fun prisoner_N : N; -fun prisonlike_A : A; -fun pristine_A : A; -fun privacy_N : N; -fun private_A : A; -fun private_N : N; -fun privateer_N : N; -fun privately_Adv : Adv; -fun privation_N : N; -fun privatize_V2 : V2; -fun privet_N : N; -fun privilege_N : N; -fun privileged_A : A; -fun privily_Adv : Adv; -fun privy_A : A; -fun privy_N : N; -fun prize_N : N; -fun prize_V2 : V2; -fun prize_fight_N : N; -fun prize_money_N : N; -fun prize_ring_N : N; -fun prizefight_N : N; -fun prizefighter_N : N; -fun pro_A : A; -fun pro_Adv : Adv; -fun pro_N : N; -fun pro_american_A : A; -fun pro_bono_A : A; -fun pro_choice_A : A; -fun pro_forma_A : A; -fun pro_forma_Adv : Adv; -fun pro_life_A : A; -fun pro_lifer_N : N; -fun pro_rata_Adv : Adv; -fun pro_tem_A : A; -fun pro_tem_Adv : Adv; -fun pro_tempore_Adv : Adv; -fun proaccelerin_N : N; -fun proactive_A : A; -fun probabilism_N : N; -fun probabilistic_A : A; -fun probabilistically_Adv : Adv; -fun probability_N : N; -fun probable_A : A; -fun probable_N : N; -fun probably_Adv : Adv; -fun probate_N : N; -fun probate_V2 : V2; -fun probation_N : N; -fun probationary_A : A; -fun probationer_N : N; -fun probative_A : A; -fun probe_N : N; -fun probe_V : V; -fun probe_V2 : V2; -fun probenecid_N : N; -fun probiotic_N : N; -fun probity_N : N; -fun problem_N : N; -fun problematic_A : A; -fun problematically_Adv : Adv; -fun proboscidean_N : N; -fun proboscis_N : N; -fun procaine_N : N; -fun procarbazine_N : N; -fun procedural_A : A; -fun procedure_N : N; -fun proceed_V : V; -fun proceed_V2 : V2; -fun proceed_V2V : V2V; -fun proceeding_N : N; -fun process_N : N; -fun process_V : V; -fun process_V2 : V2; -fun process_server_N : N; -fun process_server_N : N; -fun processed_A : A; -fun processing_N : N; -fun procession_N : N; -fun processional_A : A; -fun processional_N : N; -fun processor_N : N; -fun prochlorperazine_N : N; -fun proclaim_V2 : V2; -fun proclaim_VS : VS; -fun proclamation_N : N; -fun proclivity_N : N; -fun proconsul_N : N; -fun proconsular_A : A; -fun proconsulate_N : N; -fun proconsulship_N : N; -fun proconvertin_N : N; -fun procrastinate_V : V; -fun procrastination_N : N; -fun procrastinator_N : N; -fun procreate_V2 : V2; -fun procreation_N : N; -fun proctalgia_N : N; -fun proctitis_N : N; -fun proctologist_N : N; -fun proctology_N : N; -fun proctoplasty_N : N; -fun proctor_N : N; -fun proctorship_N : N; -fun proctoscope_N : N; -fun proctoscopy_N : N; -fun procumbent_A : A; -fun procurable_A : A; -fun procurator_N : N; -fun procure_V2 : V2; -fun procurement_N : N; -fun procurer_N : N; -fun procuress_N : N; -fun procyclidine_N : N; -fun procyonid_N : N; -fun prod_N : N; -fun prod_V : V; -fun prod_V2 : V2; -fun prod_V2V : V2V; -fun prodigal_A : A; -fun prodigal_N : N; -fun prodigality_N : N; -fun prodigious_A : A; -fun prodigiously_Adv : Adv; -fun prodigy_N : N; -fun prodromal_A : A; -fun prodrome_N : N; -fun produce_N : N; -fun produce_V : V; -fun produce_V2 : V2; -fun producer_N : N; -fun product_N : N; -fun production_N : N; -fun productive_A : A; -fun productively_Adv : Adv; -fun productiveness_N : N; -fun productivity_N : N; -fun proenzyme_N : N; -fun profanation_N : N; -fun profanatory_A : A; -fun profane_A : A; -fun profane_V2 : V2; -fun profaned_A : A; -fun profanely_Adv : Adv; -fun profaneness_N : N; -fun profanity_N : N; -fun profess_V : V; -fun profess_V2 : V2; -fun profess_V2V : V2V; -fun professed_A : A; -fun professedly_Adv : Adv; -fun profession_N : N; -fun professional_A : A; -fun professional_N : N; -fun professionalism_N : N; -fun professionalization_N : N; -fun professionally_Adv : Adv; -fun professor_N : N; -fun professorial_A : A; -fun professorially_Adv : Adv; -fun professorship_N : N; -fun proffer_N : N; -fun proffer_V2 : V2; -fun proficiency_N : N; -fun proficient_A : A; -fun proficiently_Adv : Adv; -fun profile_N : N; -fun profile_V2 : V2; -fun profiling_N : N; -fun profit_N : N; -fun profit_V : V; -fun profit_V2 : V2; -fun profit_margin_N : N; -fun profit_maximizing_A : A; -fun profit_sharing_N : N; -fun profitable_A : A; -fun profitableness_N : N; -fun profiteer_N : N; -fun profiteer_V : V; -fun profiterole_N : N; -fun profitless_A : A; -fun profitlessly_Adv : Adv; -fun profligacy_N : N; -fun profligate_A : A; -fun profligate_N : N; -fun profligately_Adv : Adv; -fun profound_A : A; -fun profoundly_Adv : Adv; -fun profoundly_deaf_A : A; -fun profoundness_N : N; -fun profundity_N : N; -fun profuse_A : A; -fun profuseness_N : N; -fun profusion_N : N; -fun progenitor_N : N; -fun progeria_N : N; -fun progestational_A : A; -fun progesterone_N : N; -fun progestin_N : N; -fun prognathism_N : N; -fun prognathous_A : A; -fun prognosis_N : N; -fun prognostic_A : A; -fun prognostic_N : N; -fun prognosticate_V2 : V2; -fun prognostication_N : N; -fun program_N : N; -fun program_V2 : V2; -fun program_V2V : V2V; -fun programma_N : N; -fun programme_N : N; -fun programme_V2 : V2; -fun programmer_N : N; -fun programming_N : N; -fun progress_N : N; -fun progress_V : V; -fun progress_V2 : V2; -fun progression_N : N; -fun progressive_A : A; -fun progressive_N : N; -fun progressiveness_N : N; -fun progressivism_N : N; -fun progymnosperm_N : N; -fun prohibit_V : V; -fun prohibit_V2 : V2; -fun prohibit_VS : VS; -fun prohibition_N : N; -fun prohibitionist_N : N; -fun prohibitive_A : A; -fun prohibitively_Adv : Adv; -fun prohibitory_A : A; -fun proinflammatory_A : A; -fun project_N : N; -fun project_V : V; -fun project_V2 : V2; -fun project_V2V : V2V; -fun project_VS : VS; -fun projectile_A : A; -fun projectile_N : N; -fun projection_N : N; -fun projectionist_N : N; -fun projector_N : N; -fun prokaryote_N : N; -fun prokaryotic_A : A; -fun prolactin_N : N; -fun prolamine_N : N; -fun prolapse_N : N; -fun prolapse_V : V; -fun prolate_A : A; -fun prole_N : N; -fun prolegomenon_N : N; -fun prolepsis_N : N; -fun proletarian_A : A; -fun proletarian_N : N; -fun proletariat_N : N; -fun proliferate_V : V; -fun proliferate_V2 : V2; -fun proliferation_N : N; -fun prolific_A : A; -fun proline_N : N; -fun prolix_A : A; -fun prolixity_N : N; -fun prologue_N : N; -fun prolong_V2 : V2; -fun prolongation_N : N; -fun prolonge_N : N; -fun prolonged_A : A; -fun prolusory_A : A; -fun prom_N : N; -fun promenade_N : N; -fun promenade_V : V; -fun promenade_V2 : V2; -fun promethazine_N : N; -fun promethium_N : N; -fun prominence_N : N; -fun prominent_A : A; -fun prominently_Adv : Adv; -fun promiscuity_N : N; -fun promiscuous_A : A; -fun promiscuously_Adv : Adv; -fun promise_N : N; -fun promise_V : V; -fun promise_V2 : V2; -fun promise_VS : VS; -fun promise_VV : VV; -fun promisee_N : N; -fun promiser_N : N; -fun promising_A : A; -fun promisingly_Adv : Adv; -fun promissory_A : A; -fun promontory_N : N; -fun promote_V : V; -fun promote_V2 : V2; -fun promoter_N : N; -fun promotion_N : N; -fun promotional_A : A; -fun promotive_A : A; -fun prompt_A : A; -fun prompt_N : N; -fun prompt_V2 : V2; -fun prompt_V2V : V2V; -fun prompt_box_N : N; -fun prompt_copy_N : N; -fun promptbook_N : N; -fun prompter_N : N; -fun prompting_N : N; -fun promptitude_N : N; -fun promptly_Adv : Adv; -fun promptness_N : N; -fun promulgate_V2 : V2; -fun promulgated_A : A; -fun promulgation_N : N; -fun promulgator_N : N; -fun promycelium_N : N; -fun pronation_N : N; -fun pronator_N : N; -fun prone_A : A; -fun proneness_N : N; -fun prong_N : N; -fun pronged_A : A; -fun pronghorn_N : N; -fun pronominal_A : A; -fun pronoun_N : N; -fun pronounce_V : V; -fun pronounce_V2 : V2; -fun pronounce_VS : VS; -fun pronounceable_A : A; -fun pronounced_A : A; -fun pronouncement_N : N; -fun pronto_Adv : Adv; -fun pronucleus_N : N; -fun pronunciamento_N : N; -fun pronunciation_N : N; -fun proof_A : A; -fun proof_N : N; -fun proof_V2 : V2; -fun proofed_A : A; -fun proofread_V : V; -fun proofread_V2 : V2; -fun proofreader_N : N; -fun prop_N : N; -fun prop_V2 : V2; -fun propaedeutic_N : N; -fun propaganda_N : N; -fun propagandist_A : A; -fun propagandist_N : N; -fun propagandize_V : V; -fun propagate_V : V; -fun propagate_V2 : V2; -fun propagation_N : N; -fun propagative_A : A; -fun propagator_N : N; -fun propanal_N : N; -fun propane_N : N; -fun propanol_N : N; -fun propanolol_N : N; -fun proparoxytone_N : N; -fun propel_V2 : V2; -fun propellant_A : A; -fun propellant_N : N; -fun propellent_A : A; -fun propellent_N : N; -fun propeller_N : N; -fun propenal_N : N; -fun propenoate_N : N; -fun propenonitrile_N : N; -fun propensity_N : N; -fun proper_A : A; -fun properly_Adv : Adv; -fun properly_speaking_Adv : Adv; -fun propertied_A : A; -fun property_N : N; -fun property_man_N : N; -fun property_master_N : N; -fun propertyless_A : A; -fun prophase_N : N; -fun prophecy_N : N; -fun prophesy_V : V; -fun prophesy_V2 : V2; -fun prophet_N : N; -fun prophetess_N : N; -fun prophetic_A : A; -fun prophetical_A : A; -fun prophetically_Adv : Adv; -fun prophylactic_A : A; -fun prophylactic_N : N; -fun prophylaxis_N : N; -fun prophyll_N : N; -fun propinquity_N : N; -fun propitiate_V2 : V2; -fun propitiation_N : N; -fun propitiative_A : A; -fun propitiatory_A : A; -fun propitious_A : A; -fun propjet_N : N; -fun proponent_N : N; -fun proportion_N : N; -fun proportion_V2 : V2; -fun proportionable_A : A; -fun proportional_A : A; -fun proportional_N : N; -fun proportionality_N : N; -fun proportionate_A : A; -fun proportionately_Adv : Adv; -fun proposal_N : N; -fun propose_V : V; -fun propose_V2 : V2; -fun propose_VS : VS; -fun propose_VV : VV; -fun proposer_N : N; -fun proposition_N : N; -fun proposition_V2 : V2; -fun propositus_N : N; -fun propound_V2 : V2; -fun propoxyphene_N : N; -fun proprietary_A : A; -fun proprietor_N : N; -fun proprietorship_N : N; -fun proprietress_N : N; -fun propriety_N : N; -fun proprioception_N : N; -fun proprioceptive_A : A; -fun proprioceptor_N : N; -fun proprionamide_N : N; -fun props_N : N; -fun propulsion_N : N; -fun propulsive_A : A; -fun propyl_N : N; -fun propylene_N : N; -fun propylthiouracil_N : N; -fun proration_N : N; -fun prorogation_N : N; -fun prorogue_V2 : V2; -fun prosaic_A : A; -fun prosaically_Adv : Adv; -fun proscenium_N : N; -fun prosciutto_N : N; -fun proscribe_V2 : V2; -fun proscription_N : N; -fun prose_N : N; -fun prosecute_V2 : V2; -fun prosecution_N : N; -fun prosecutor_N : N; -fun proselyte_N : N; -fun proselytism_N : N; -fun proselytize_V : V; -fun proselytize_V2 : V2; -fun prosily_Adv : Adv; -fun prosimian_N : N; -fun prosiness_N : N; -fun prosodic_A : A; -fun prosody_N : N; -fun prospect_N : N; -fun prospect_V : V; -fun prospective_A : A; -fun prospector_N : N; -fun prospectus_N : N; -fun prosper_V : V; -fun prosper_V2 : V2; -fun prosperity_N : N; -fun prosperous_A : A; -fun prosperously_Adv : Adv; -fun prostaglandin_N : N; -fun prostate_A : A; -fun prostate_N : N; -fun prostatectomy_N : N; -fun prostatitis_N : N; -fun prosthesis_N : N; -fun prosthetic_A : A; -fun prosthetics_N : N; -fun prosthetist_N : N; -fun prosthion_N : N; -fun prosthodontic_A : A; -fun prosthodontics_N : N; -fun prosthodontist_N : N; -fun prostitute_N : N; -fun prostitute_V2 : V2; -fun prostitution_N : N; -fun prostrate_A : A; -fun prostrate_V2 : V2; -fun prostration_N : N; -fun prostyle_A : A; -fun prosy_A : A; -fun protactinium_N : N; -fun protagonist_N : N; -fun protamine_N : N; -fun protanopia_N : N; -fun protanopic_A : A; -fun protea_N : N; -fun protean_A : A; -fun protease_N : N; -fun protect_V : V; -fun protect_V2 : V2; -fun protected_A : A; -fun protecting_A : A; -fun protection_N : N; -fun protectionism_N : N; -fun protectionist_N : N; -fun protective_A : A; -fun protectively_Adv : Adv; -fun protectiveness_N : N; -fun protector_N : N; -fun protectorate_N : N; -fun protectorship_N : N; -fun protege_N : N; -fun protegee_N : N; -fun protein_N : N; -fun proteinaceous_A : A; -fun proteolysis_N : N; -fun proteolytic_A : A; -fun proteome_N : N; -fun proteomics_N : N; -fun proterozoic_A : A; -fun protest_N : N; -fun protest_V : V; -fun protest_V2 : V2; -fun protestant_A : A; -fun protestant_N : N; -fun protestantism_N : N; -fun protestation_N : N; -fun protester_N : N; -fun protestingly_Adv : Adv; -fun prothalamion_N : N; -fun prothorax_N : N; -fun prothrombin_N : N; -fun prothrombinase_N : N; -fun protist_N : N; -fun proto_A : A; -fun proto_oncogene_N : N; -fun protoarcheology_N : N; -fun protoavis_N : N; -fun protoceratops_N : N; -fun protocol_N : N; -fun protoctist_N : N; -fun protogeometric_A : A; -fun protohippus_N : N; -fun protohistory_N : N; -fun protology_N : N; -fun proton_N : N; -fun protoplasm_N : N; -fun prototherian_N : N; -fun prototype_N : N; -fun protozoal_A : A; -fun protozoan_N : N; -fun protozoological_A : A; -fun protozoologist_N : N; -fun protozoology_N : N; -fun protract_V2 : V2; -fun protractile_A : A; -fun protraction_N : N; -fun protractor_N : N; -fun protriptyline_N : N; -fun protrude_V : V; -fun protrude_V2 : V2; -fun protrusile_A : A; -fun protrusion_N : N; -fun protrusive_A : A; -fun protuberance_N : N; -fun protuberant_A : A; -fun proturan_N : N; -fun proud_A : A; -fun proudly_Adv : Adv; -fun provable_A : A; -fun prove_V : V; -fun prove_V2 : V2; -fun prove_V2V : V2V; -fun prove_VA : VA; -fun prove_VS : VS; -fun proved_A : A; -fun provenance_N : N; -fun provencal_A : A; -fun provender_N : N; -fun proverb_N : N; -fun proverbial_A : A; -fun proverbially_Adv : Adv; -fun provide_V : V; -fun provide_V2 : V2; -fun provide_VS : VS; -fun providence_N : N; -fun provident_A : A; -fun providential_A : A; -fun providentially_Adv : Adv; -fun providently_Adv : Adv; -fun provider_N : N; -fun province_N : N; -fun provincial_A : A; -fun provincial_N : N; -fun provincialism_N : N; -fun provincially_Adv : Adv; -fun provirus_N : N; -fun provision_N : N; -fun provision_V2 : V2; -fun provisional_A : A; -fun provisionally_Adv : Adv; -fun proviso_N : N; -fun provisory_A : A; -fun provitamin_N : N; -fun provitamin_a_PN : PN; -fun provocation_N : N; -fun provocative_A : A; -fun provocatively_Adv : Adv; -fun provoke_V2 : V2; -fun provoking_A : A; -fun provost_N : N; -fun prow_N : N; -fun prowess_N : N; -fun prowl_N : N; -fun prowl_V : V; -fun prowl_V2 : V2; -fun prowler_N : N; -fun prox_Adv : Adv; -fun proxemics_N : N; -fun proximal_A : A; -fun proximate_A : A; -fun proximity_N : N; -fun proximo_A : A; -fun proxy_N : N; -fun prude_N : N; -fun prudence_N : N; -fun prudent_A : A; -fun prudential_A : A; -fun prudently_Adv : Adv; -fun prudery_N : N; -fun prudish_A : A; -fun prudishly_Adv : Adv; -fun prune_N : N; -fun prune_V2 : V2; -fun pruner_N : N; -fun pruning_N : N; -fun pruning_hook_N : N; -fun pruning_knife_N : N; -fun pruning_saw_N : N; -fun pruno_N : N; -fun prurience_N : N; -fun pruriency_N : N; -fun prurient_A : A; -fun pruriently_Adv : Adv; -fun prurigo_N : N; -fun pruritus_N : N; -fun prussian_A : A; -fun prussian_N : N; -fun prussic_A : A; -fun pry_V : V; -fun pry_V2 : V2; -fun pry_V2Q : V2Q; -fun pryingly_Adv : Adv; -fun psalm_N : N; -fun psalmist_N : N; -fun psalmody_N : N; -fun psalter_N : N; -fun psalterium_N : N; -fun psaltery_N : N; -fun psammoma_N : N; -fun psephologist_N : N; -fun psephology_N : N; -fun pseud_N : N; -fun pseudo_A : A; -fun pseudo_N : N; -fun pseudobulb_N : N; -fun pseudoephedrine_N : N; -fun pseudohallucination_N : N; -fun pseudohermaphrodite_N : N; -fun pseudohermaphroditic_A : A; -fun pseudohermaphroditism_N : N; -fun pseudomonad_N : N; -fun pseudonym_N : N; -fun pseudonymous_A : A; -fun pseudophloem_N : N; -fun pseudopod_N : N; -fun pseudoscience_N : N; -fun pseudoscientific_A : A; -fun psi_N : N; -fun psilocybin_N : N; -fun psilomelane_N : N; -fun psilophyte_N : N; -fun psilophyton_N : N; -fun psilosis_N : N; -fun psittacosaur_N : N; -fun psittacosis_N : N; -fun psoas_N : N; -fun psocid_N : N; -fun psoriasis_N : N; -fun psyche_N : N; -fun psychedelia_N : N; -fun psychedelic_A : A; -fun psychiatric_A : A; -fun psychiatrist_N : N; -fun psychiatry_N : N; -fun psychic_A : A; -fun psychic_N : N; -fun psychical_A : A; -fun psychically_Adv : Adv; -fun psychoactive_A : A; -fun psychoanalyse_V2 : V2; -fun psychoanalysis_N : N; -fun psychoanalyst_N : N; -fun psychoanalytic_A : A; -fun psychoanalytical_A : A; -fun psychoanalyze_V2 : V2; -fun psychobabble_N : N; -fun psychodid_N : N; -fun psychodynamics_N : N; -fun psychogenesis_N : N; -fun psychogenetic_A : A; -fun psychogenic_A : A; -fun psychokinetic_A : A; -fun psycholinguist_N : N; -fun psycholinguistic_A : A; -fun psycholinguistics_N : N; -fun psychological_A : A; -fun psychologically_Adv : Adv; -fun psychologist_N : N; -fun psychology_N : N; -fun psychometric_A : A; -fun psychometry_N : N; -fun psychomotor_A : A; -fun psychopath_N : N; -fun psychopathic_A : A; -fun psychopharmacological_A : A; -fun psychopharmacology_N : N; -fun psychophysicist_N : N; -fun psychophysics_N : N; -fun psychopomp_N : N; -fun psychosexual_A : A; -fun psychosexuality_N : N; -fun psychosis_N : N; -fun psychosomatic_A : A; -fun psychosurgery_N : N; -fun psychotherapeutic_A : A; -fun psychotherapist_N : N; -fun psychotherapy_N : N; -fun psychotic_A : A; -fun psychotic_N : N; -fun psychrometer_N : N; -fun pt_N : N; -fun pta_N : N; -fun ptarmigan_N : N; -fun pteridological_A : A; -fun pteridologist_N : N; -fun pteridology_N : N; -fun pteridophyte_N : N; -fun pterion_N : N; -fun pterodactyl_N : N; -fun pteropogon_N : N; -fun pterosaur_N : N; -fun pterygium_N : N; -fun ptomaine_N : N; -fun ptosis_N : N; -fun ptyalin_N : N; -fun ptyalism_N : N; -fun ptyalith_N : N; -fun pub_N : N; -fun pub_crawl_N : N; -fun pub_crawl_V : V; -fun pubertal_A : A; -fun puberty_N : N; -fun pubes_N : N; -fun pubescent_A : A; -fun pubic_A : A; -fun pubis_N : N; -fun public_A : A; -fun public_N : N; -fun public_spirited_A : A; -fun public_spirited_A : A; -fun publican_N : N; -fun publication_N : N; -fun publicist_N : N; -fun publicity_N : N; -fun publicize_V2 : V2; -fun publicized_A : A; -fun publicly_Adv : Adv; -fun publish_V : V; -fun publish_V2 : V2; -fun publishable_A : A; -fun published_A : A; -fun publisher_N : N; -fun puccoon_N : N; -fun puce_N : N; -fun puck_N : N; -fun pucker_N : N; -fun pucker_V : V; -fun pucker_V2 : V2; -fun puckish_A : A; -fun pud_N : N; -fun pudden_N : N; -fun pudden_head_N : N; -fun pudding_N : N; -fun pudding_face_N : N; -fun puddingwife_N : N; -fun puddle_N : N; -fun puddle_V2 : V2; -fun puddler_N : N; -fun pudendal_A : A; -fun pudendum_N : N; -fun pudge_N : N; -fun pudgy_A : A; -fun pueblo_N : N; -fun puerile_A : A; -fun puerility_N : N; -fun puerpera_N : N; -fun puerperal_A : A; -fun puerperium_N : N; -fun puff_A : A; -fun puff_N : N; -fun puff_V : V; -fun puff_V2 : V2; -fun puffball_N : N; -fun puffbird_N : N; -fun puffer_N : N; -fun puffery_N : N; -fun puffin_N : N; -fun puffiness_N : N; -fun puffing_N : N; -fun puffy_A : A; -fun pug_N : N; -fun pug_dog_N : N; -fun pug_faced_A : A; -fun pug_nose_A : A; -fun pug_nose_N : N; -fun pug_nosed_A : A; -fun pug_nosed_A : A; -fun pugilism_N : N; -fun pugilist_N : N; -fun pugilistic_A : A; -fun pugnacious_A : A; -fun pugnaciously_Adv : Adv; -fun pugnacity_N : N; -fun puissance_N : N; -fun puissant_A : A; -fun puka_N : N; -fun puke_N : N; -fun puke_V : V; -fun puke_V2 : V2; -fun pukka_A : A; -fun puku_N : N; -fun pul_N : N; -fun pula_N : N; -fun pulasan_N : N; -fun pulchritude_N : N; -fun pulchritudinous_A : A; -fun pule_V : V; -fun pull_N : N; -fun pull_V : V; -fun pull_V2 : V2; -fun pull_in_N : N; -fun pull_in_N : N; -fun pull_off_N : N; -fun pull_off_N : N; -fun pull_out_N : N; -fun pull_through_N : N; -fun pull_through_N : N; -fun pull_up_N : N; -fun pull_up_N : N; -fun pullback_N : N; -fun puller_N : N; -fun pullet_N : N; -fun pulley_N : N; -fun pulley_block_N : N; -fun pullman_N : N; -fun pullover_N : N; -fun pullulate_V : V; -fun pullulation_N : N; -fun pulmonary_A : A; -fun pulp_N : N; -fun pulp_V : V; -fun pulp_V2 : V2; -fun pulpit_N : N; -fun pulpwood_N : N; -fun pulpy_A : A; -fun pulque_N : N; -fun pulsar_N : N; -fun pulsate_V : V; -fun pulsate_V2 : V2; -fun pulsation_N : N; -fun pulse_N : N; -fun pulse_V : V; -fun pulverization_N : N; -fun pulverize_V : V; -fun pulverize_V2 : V2; -fun puma_N : N; -fun pumice_N : N; -fun pumice_stone_N : N; -fun pummel_V2 : V2; -fun pump_N : N; -fun pump_V : V; -fun pump_V2 : V2; -fun pump_room_N : N; -fun pumped_up_A : A; -fun pumpernickel_N : N; -fun pumpkin_N : N; -fun pumpkinseed_N : N; -fun pun_N : N; -fun pun_V : V; -fun punch_N : N; -fun punch_V2 : V2; -fun punch_drunk_A : A; -fun punch_drunk_A : A; -fun punch_up_N : N; -fun punch_up_N : N; -fun punchball_N : N; -fun punchboard_N : N; -fun punchbowl_N : N; -fun puncher_N : N; -fun punching_ball_N : N; -fun punctilio_N : N; -fun punctilious_A : A; -fun punctiliously_Adv : Adv; -fun punctiliousness_N : N; -fun punctual_A : A; -fun punctuality_N : N; -fun punctually_Adv : Adv; -fun punctuate_V2 : V2; -fun punctuation_N : N; -fun punctum_N : N; -fun puncturable_A : A; -fun puncture_N : N; -fun puncture_V : V; -fun puncture_V2 : V2; -fun punctureless_A : A; -fun pundit_N : N; -fun pung_N : N; -fun pungapung_N : N; -fun pungency_N : N; -fun pungent_A : A; -fun pungently_Adv : Adv; -fun punic_A : A; -fun punily_Adv : Adv; -fun puniness_N : N; -fun punish_V2 : V2; -fun punishable_A : A; -fun punished_A : A; -fun punishing_A : A; -fun punishingly_Adv : Adv; -fun punishment_N : N; -fun punitive_A : A; -fun punitively_Adv : Adv; -fun punk_N : N; -fun punkah_N : N; -fun punkie_N : N; -fun punks_N : N; -fun punnet_N : N; -fun punster_N : N; -fun punt_N : N; -fun punt_V : V; -fun punt_V2 : V2; -fun punter_N : N; -fun puny_A : A; -fun pup_N : N; -fun pup_V : V; -fun pupa_N : N; -fun pupal_A : A; -fun pupil_N : N; -fun pupillary_A : A; -fun puppet_N : N; -fun puppeteer_N : N; -fun puppetry_N : N; -fun puppy_N : N; -fun puppyish_A : A; -fun purblind_A : A; -fun purchasable_A : A; -fun purchase_N : N; -fun purchase_V2 : V2; -fun purchaser_N : N; -fun purdah_N : N; -fun pure_A : A; -fun purebred_A : A; -fun puree_N : N; -fun pureness_N : N; -fun purgation_N : N; -fun purgative_A : A; -fun purgative_N : N; -fun purgatorial_A : A; -fun purgatory_N : N; -fun purge_N : N; -fun purge_V2 : V2; -fun purification_N : N; -fun purifier_N : N; -fun purify_V2 : V2; -fun purifying_A : A; -fun purine_N : N; -fun purism_N : N; -fun purist_N : N; -fun puritan_A : A; -fun puritan_N : N; -fun puritanical_A : A; -fun puritanism_N : N; -fun purity_N : N; -fun purl_N : N; -fun purl_V : V; -fun purl_V2 : V2; -fun purloin_V2 : V2; -fun purloo_N : N; -fun purple_A : A; -fun purple_N : N; -fun purple_black_A : A; -fun purple_blue_A : A; -fun purple_brown_A : A; -fun purple_eyed_A : A; -fun purple_flowered_A : A; -fun purple_green_A : A; -fun purple_lilac_A : A; -fun purple_red_A : A; -fun purple_spotted_A : A; -fun purple_tinged_A : A; -fun purple_veined_A : A; -fun purple_white_A : A; -fun purplish_A : A; -fun purport_N : N; -fun purport_V2 : V2; -fun purport_V2V : V2V; -fun purportedly_Adv : Adv; -fun purpose_N : N; -fun purpose_V2 : V2; -fun purpose_built_A : A; -fun purpose_built_A : A; -fun purposeful_A : A; -fun purposefully_Adv : Adv; -fun purposefulness_N : N; -fun purposeless_A : A; -fun purposelessly_Adv : Adv; -fun purposelessness_N : N; -fun purposely_Adv : Adv; -fun purposive_A : A; -fun purpura_N : N; -fun purr_N : N; -fun purr_V : V; -fun purr_V2 : V2; -fun purr_VS : VS; -fun purse_N : N; -fun purse_V2 : V2; -fun purse_proud_A : A; -fun purse_proud_A : A; -fun purser_N : N; -fun purslane_N : N; -fun pursuance_N : N; -fun pursuant_A : A; -fun pursue_V : V; -fun pursue_V2 : V2; -fun pursued_A : A; -fun pursued_N : N; -fun pursuer_N : N; -fun pursuing_A : A; -fun pursuit_N : N; -fun pursy_A : A; -fun purulence_N : N; -fun purulent_A : A; -fun purvey_V : V; -fun purvey_V2 : V2; -fun purveyance_N : N; -fun purveyor_N : N; -fun purview_N : N; -fun pus_N : N; -fun push_N : N; -fun push_V : V; -fun push_V2 : V2; -fun push_V2V : V2V; -fun push_VS : VS; -fun push_bike_N : N; -fun push_bike_N : N; -fun pushball_N : N; -fun pushcart_N : N; -fun pushchair_N : N; -fun pusher_N : N; -fun pushful_A : A; -fun pushing_A : A; -fun pushover_N : N; -fun pushup_N : N; -fun pusillanimity_N : N; -fun pusillanimous_A : A; -fun pusillanimously_Adv : Adv; -fun puss_N : N; -fun pussy_N : N; -fun pussy_paw_N : N; -fun pussycat_N : N; -fun pussyfoot_V : V; -fun pustule_N : N; -fun put_N : N; -fun put_V : V; -fun put_V2 : V2; -fun put_V2V : V2V; -fun put_VS : VS; -fun put_down_N : N; -fun put_down_N : N; -fun put_on_N : N; -fun put_put_N : N; -fun put_up_A : A; -fun putamen_N : N; -fun putative_A : A; -fun putdownable_A : A; -fun putoff_N : N; -fun putout_N : N; -fun putrefaction_N : N; -fun putrefactive_A : A; -fun putrefy_V : V; -fun putrefy_V2 : V2; -fun putrescence_N : N; -fun putrescent_A : A; -fun putrescine_N : N; -fun putrid_A : A; -fun putrid_smelling_A : A; -fun putridity_N : N; -fun putsch_N : N; -fun putt_N : N; -fun putt_V : V; -fun putt_V2 : V2; -fun puttee_N : N; -fun putter_N : N; -fun putter_V : V; -fun putter_V2 : V2; -fun putterer_N : N; -fun putting_green_N : N; -fun putting_iron_N : N; -fun putty_N : N; -fun putty_V2 : V2; -fun puttyroot_N : N; -fun putz_N : N; -fun puzzle_N : N; -fun puzzle_V : V; -fun puzzle_V2 : V2; -fun puzzlement_N : N; -fun puzzler_N : N; -fun pya_N : N; -fun pycnidium_N : N; -fun pycnodysostosis_N : N; -fun pycnosis_N : N; -fun pyelitis_N : N; -fun pyelogram_N : N; -fun pyelography_N : N; -fun pyelonephritis_N : N; -fun pyemia_N : N; -fun pyemic_A : A; -fun pygmy_N : N; -fun pyinma_N : N; -fun pyjama_A : A; -fun pyknotic_A : A; -fun pylon_N : N; -fun pyloric_A : A; -fun pylorus_N : N; -fun pyocyanase_N : N; -fun pyocyanin_N : N; -fun pyogenic_A : A; -fun pyorrhea_N : N; -fun pyorrhoea_N : N; -fun pyralid_N : N; -fun pyramid_N : N; -fun pyramidal_A : A; -fun pyramidically_Adv : Adv; -fun pyramiding_N : N; -fun pyre_N : N; -fun pyrectic_A : A; -fun pyrene_N : N; -fun pyrethrum_N : N; -fun pyretic_A : A; -fun pyridine_N : N; -fun pyrilamine_N : N; -fun pyrimidine_N : N; -fun pyrite_N : N; -fun pyrites_N : N; -fun pyrocellulose_N : N; -fun pyrochemical_A : A; -fun pyroelectric_A : A; -fun pyroelectricity_N : N; -fun pyrogallic_A : A; -fun pyrogallol_N : N; -fun pyrogen_N : N; -fun pyrogenic_A : A; -fun pyrograph_N : N; -fun pyrographer_N : N; -fun pyrographic_A : A; -fun pyrography_N : N; -fun pyrolatry_N : N; -fun pyroligneous_A : A; -fun pyrolusite_N : N; -fun pyrolysis_N : N; -fun pyrolytic_A : A; -fun pyromancer_N : N; -fun pyromancy_N : N; -fun pyromania_N : N; -fun pyromaniac_N : N; -fun pyrometer_N : N; -fun pyromorphite_N : N; -fun pyrope_N : N; -fun pyrophobia_N : N; -fun pyrophosphate_N : N; -fun pyrophyllite_N : N; -fun pyrostat_N : N; -fun pyrotechnic_A : A; -fun pyrotechnics_N : N; -fun pyroxene_N : N; -fun pyroxylin_N : N; -fun pyrrhic_A : A; -fun pyrrhic_N : N; -fun pyrrhotite_N : N; -fun pyrrhuloxia_N : N; -fun pythium_N : N; -fun python_N : N; -fun pythoness_N : N; -fun pyuria_N : N; -fun pyx_N : N; -fun pyxidium_N : N; -fun pyxie_N : N; -fun pyxis_N : N; -fun qadi_N : N; -fun qatari_A : A; -fun qatari_N : N; -fun qc_N : N; -fun qepiq_N : N; -fun qi_N : N; -fun qibla_N : N; -fun qindarka_N : N; -fun qoph_N : N; -fun qt_N : N; -fun quack_A : A; -fun quack_N : N; -fun quack_V : V; -fun quack_quack_N : N; -fun quack_quack_N : N; -fun quackery_N : N; -fun quad_N : N; -fun quadrangle_N : N; -fun quadrangular_A : A; -fun quadrant_N : N; -fun quadrantanopia_N : N; -fun quadraphonic_A : A; -fun quadraphony_N : N; -fun quadrate_A : A; -fun quadrate_N : N; -fun quadratic_A : A; -fun quadratic_N : N; -fun quadratics_N : N; -fun quadrature_N : N; -fun quadrennium_N : N; -fun quadric_N : N; -fun quadriceps_N : N; -fun quadrilateral_A : A; -fun quadrilateral_N : N; -fun quadrille_N : N; -fun quadrillion_N : N; -fun quadrillionth_A : A; -fun quadripara_N : N; -fun quadripartite_A : A; -fun quadriplegia_N : N; -fun quadriplegic_N : N; -fun quadrivium_N : N; -fun quadroon_N : N; -fun quadrophonic_A : A; -fun quadrophony_N : N; -fun quadrumvirate_N : N; -fun quadruped_N : N; -fun quadrupedal_A : A; -fun quadruple_A : A; -fun quadruple_N : N; -fun quadruple_V : V; -fun quadruple_V2 : V2; -fun quadruplet_N : N; -fun quadruplicate_A : A; -fun quadruplicate_N : N; -fun quadruplicate_V2 : V2; -fun quadrupling_N : N; -fun quaestor_N : N; -fun quaff_N : N; -fun quaff_V : V; -fun quaff_V2 : V2; -fun quaffer_N : N; -fun quagga_N : N; -fun quagmire_N : N; -fun quahaug_N : N; -fun quahog_N : N; -fun quai_d'orsay_N : N; -fun quail_N : N; -fun quail_V : V; -fun quaint_A : A; -fun quaintly_Adv : Adv; -fun quaintness_N : N; -fun quake_N : N; -fun quake_V : V; -fun quaker_N : N; -fun qualification_N : N; -fun qualified_A : A; -fun qualifier_N : N; -fun qualify_V : V; -fun qualify_V2 : V2; -fun qualitative_A : A; -fun qualitatively_Adv : Adv; -fun quality_A : A; -fun quality_N : N; -fun qualm_N : N; -fun quandary_N : N; -fun quandong_N : N; -fun quango_N : N; -fun quantal_A : A; -fun quantic_N : N; -fun quantifiability_N : N; -fun quantifiable_A : A; -fun quantification_N : N; -fun quantifier_N : N; -fun quantify_V2 : V2; -fun quantitative_A : A; -fun quantitatively_Adv : Adv; -fun quantity_N : N; -fun quantization_N : N; -fun quantize_V2 : V2; -fun quantum_N : N; -fun quarantine_N : N; -fun quarantine_V2 : V2; -fun quark_N : N; -fun quarrel_N : N; -fun quarrel_V : V; -fun quarreler_N : N; -fun quarrelsome_A : A; -fun quarrelsomeness_N : N; -fun quarry_N : N; -fun quarry_V : V; -fun quarry_V2 : V2; -fun quarrying_N : N; -fun quarryman_N : N; -fun quart_N : N; -fun quartan_A : A; -fun quartan_N : N; -fun quarter_N : N; -fun quarter_V2 : V2; -fun quarter_century_N : N; -fun quarter_day_N : N; -fun quarter_deck_N : N; -fun quarter_hour_N : N; -fun quarter_plate_N : N; -fun quarterback_N : N; -fun quarterdeck_N : N; -fun quarterfinal_N : N; -fun quartering_N : N; -fun quarterlight_N : N; -fun quarterly_A : A; -fun quarterly_Adv : Adv; -fun quarterly_N : N; -fun quartermaster_N : N; -fun quartermaster_general_N : N; -fun quarterstaff_N : N; -fun quartet_N : N; -fun quartile_N : N; -fun quarto_N : N; -fun quartz_N : N; -fun quartzite_N : N; -fun quartzose_A : A; -fun quasar_N : N; -fun quash_V2 : V2; -fun quasi_A : A; -fun quasi_religious_A : A; -fun quasi_royal_A : A; -fun quasiparticle_N : N; -fun quassia_N : N; -fun quatercentenary_N : N; -fun quatercentennial_N : N; -fun quaternate_A : A; -fun quatrain_N : N; -fun quattrocento_N : N; -fun quaver_N : N; -fun quaver_V : V; -fun quaver_V2 : V2; -fun quavering_A : A; -fun quaveringly_Adv : Adv; -fun quay_N : N; -fun queasily_Adv : Adv; -fun queasiness_N : N; -fun queasy_A : A; -fun queen_N : N; -fun queen_V2 : V2; -fun queen_size_A : A; -fun queenly_A : A; -fun queer_A : A; -fun queer_N : N; -fun queer_V2 : V2; -fun queerly_Adv : Adv; -fun queerness_N : N; -fun quell_V2 : V2; -fun quelled_A : A; -fun quellung_N : N; -fun quench_V2 : V2; -fun quenched_A : A; -fun quenchless_A : A; -fun quercitron_N : N; -fun quern_N : N; -fun querulous_A : A; -fun querulousness_N : N; -fun query_N : N; -fun query_V : V; -fun query_V2 : V2; -fun quesadilla_N : N; -fun quest_N : N; -fun quest_V : V; -fun question_N : N; -fun question_V2 : V2; -fun question_mark_N : N; -fun question_master_N : N; -fun questionable_A : A; -fun questionably_Adv : Adv; -fun questioner_N : N; -fun questioning_A : A; -fun questioning_N : N; -fun questioningly_Adv : Adv; -fun questionnaire_N : N; -fun quetzal_N : N; -fun queue_N : N; -fun queue_V : V; -fun qui_vive_N : N; -fun quibble_N : N; -fun quibble_V : V; -fun quibbler_N : N; -fun quibbling_A : A; -fun quiche_N : N; -fun quiche_lorraine_PN : PN; -fun quick_A : A; -fun quick_Adv : Adv; -fun quick_N : N; -fun quick_change_A : A; -fun quick_change_A : A; -fun quick_drying_A : A; -fun quick_eared_A : A; -fun quick_eyed_A : A; -fun quick_freeze_V2 : V2; -fun quick_sighted_A : A; -fun quick_sighted_A : A; -fun quick_tempered_A : A; -fun quick_witted_A : A; -fun quick_witted_A : A; -fun quicken_V : V; -fun quicken_V2 : V2; -fun quickener_N : N; -fun quickening_N : N; -fun quicker_Adv : Adv; -fun quickest_Adv : Adv; -fun quickie_N : N; -fun quicklime_N : N; -fun quickly_Adv : Adv; -fun quickness_N : N; -fun quicksand_N : N; -fun quickset_A : A; -fun quickset_N : N; -fun quicksilver_N : N; -fun quickstep_N : N; -fun quid_N : N; -fun quid_pro_quo_N : N; -fun quiddity_N : N; -fun quiescence_N : N; -fun quiescent_A : A; -fun quiet_A : A; -fun quiet_N : N; -fun quiet_V : V; -fun quiet_V2 : V2; -fun quieten_V : V; -fun quieten_V2 : V2; -fun quietism_N : N; -fun quietist_N : N; -fun quietly_Adv : Adv; -fun quietness_N : N; -fun quietude_N : N; -fun quietus_N : N; -fun quiff_N : N; -fun quill_N : N; -fun quill_feather_N : N; -fun quillwort_N : N; -fun quilt_N : N; -fun quilt_V2 : V2; -fun quilted_A : A; -fun quilting_N : N; -fun quin_N : N; -fun quinacrine_N : N; -fun quince_N : N; -fun quincentenary_A : A; -fun quincentenary_N : N; -fun quincentennial_A : A; -fun quincentennial_N : N; -fun quinidine_N : N; -fun quinine_N : N; -fun quinone_N : N; -fun quinquagesima_N : N; -fun quinquefoliate_A : A; -fun quinquennium_N : N; -fun quinsy_N : N; -fun quintal_N : N; -fun quintessence_N : N; -fun quintessential_A : A; -fun quintet_N : N; -fun quintillion_N : N; -fun quintillionth_A : A; -fun quintipara_N : N; -fun quintuple_A : A; -fun quintuplet_N : N; -fun quintupling_N : N; -fun quip_N : N; -fun quip_V : V; -fun quip_VS : VS; -fun quipu_N : N; -fun quira_N : N; -fun quire_N : N; -fun quirk_N : N; -fun quirt_N : N; -fun quisling_N : N; -fun quit_A : A; -fun quit_V : V; -fun quit_V2 : V2; -fun quitclaim_N : N; -fun quite_Adv : Adv; -fun quite_Predet : Predet; -fun quits_A : A; -fun quittance_N : N; -fun quitter_N : N; -fun quiver_N : N; -fun quiver_V : V; -fun quiver_V2 : V2; -fun quixotic_A : A; -fun quixotically_Adv : Adv; -fun quiz_N : N; -fun quiz_V2 : V2; -fun quizmaster_N : N; -fun quizzical_A : A; -fun quodlibet_N : N; -fun quoin_N : N; -fun quoit_N : N; -fun quoits_N : N; -fun quonset_N : N; -fun quorum_N : N; -fun quot_V : V; -fun quot_VS : VS; -fun quota_N : N; -fun quotability_N : N; -fun quotable_A : A; -fun quotation_N : N; -fun quote_N : N; -fun quote_V : V; -fun quote_V2 : V2; -fun quoter_N : N; -fun quotidian_A : A; -fun quotient_N : N; -fun qurush_N : N; -fun ra_N : N; -fun rabato_N : N; -fun rabbet_N : N; -fun rabbi_N : N; -fun rabbinate_N : N; -fun rabbinical_A : A; -fun rabbit_N : N; -fun rabbit_V : V; -fun rabbit_burrow_N : N; -fun rabbit_hole_N : N; -fun rabbit_hutch_N : N; -fun rabbit_punch_N : N; -fun rabbit_sized_A : A; -fun rabbit_warren_N : N; -fun rabbitfish_N : N; -fun rabbitweed_N : N; -fun rabbitwood_N : N; -fun rabble_N : N; -fun rabble_rousing_A : A; -fun rabelaisian_A : A; -fun rabid_A : A; -fun rabies_N : N; -fun raccoon_N : N; -fun race_N : N; -fun race_V : V; -fun race_V2 : V2; -fun race_V2V : V2V; -fun race_VV : VV; -fun race_meeting_N : N; -fun raceabout_N : N; -fun racecard_N : N; -fun racecourse_N : N; -fun racehorse_N : N; -fun raceme_N : N; -fun racemose_A : A; -fun racer_N : N; -fun racerunner_N : N; -fun racetrack_N : N; -fun raceway_N : N; -fun rachis_N : N; -fun rachitis_N : N; -fun racial_A : A; -fun racialism_N : N; -fun racialist_N : N; -fun racially_Adv : Adv; -fun racily_Adv : Adv; -fun raciness_N : N; -fun racing_N : N; -fun racism_N : N; -fun racist_A : A; -fun racist_N : N; -fun rack_N : N; -fun rack_V2 : V2; -fun rack_railway_N : N; -fun rack_rent_N : N; -fun racker_N : N; -fun racket_N : N; -fun racket_V : V; -fun racketeer_N : N; -fun racketeering_N : N; -fun rackety_A : A; -fun racking_A : A; -fun raconteur_N : N; -fun racoon_N : N; -fun racquet_N : N; -fun racquetball_N : N; -fun racy_A : A; -fun rad_N : N; -fun radar_N : N; -fun raddled_A : A; -fun radial_A : A; -fun radial_N : N; -fun radial_ply_A : A; -fun radially_Adv : Adv; -fun radially_symmetrical_A : A; -fun radian_N : N; -fun radiance_N : N; -fun radiant_A : A; -fun radiantly_Adv : Adv; -fun radiate_A : A; -fun radiate_V : V; -fun radiate_V2 : V2; -fun radiating_A : A; -fun radiation_N : N; -fun radiator_N : N; -fun radical_A : A; -fun radical_N : N; -fun radicalism_N : N; -fun radically_Adv : Adv; -fun radicchio_N : N; -fun radicle_N : N; -fun radiculitis_N : N; -fun radio_A : A; -fun radio_N : N; -fun radio_V2 : V2; -fun radio_controlled_A : A; -fun radio_gramophone_N : N; -fun radio_location_N : N; -fun radio_phonograph_N : N; -fun radio_set_N : N; -fun radio_telescope_N : N; -fun radioactive_A : A; -fun radioactively_Adv : Adv; -fun radioactivity_N : N; -fun radiobiologist_N : N; -fun radiobiology_N : N; -fun radiocarbon_N : N; -fun radiochemistry_N : N; -fun radiochlorine_N : N; -fun radiogram_N : N; -fun radiograph_N : N; -fun radiographer_N : N; -fun radiographic_A : A; -fun radiography_N : N; -fun radioimmunoassay_N : N; -fun radioisotope_N : N; -fun radiolarian_N : N; -fun radiological_A : A; -fun radiologist_N : N; -fun radiology_N : N; -fun radiolucent_A : A; -fun radiolysis_N : N; -fun radiometer_N : N; -fun radiomicrometer_N : N; -fun radiopacity_N : N; -fun radiopaque_A : A; -fun radiopharmaceutical_N : N; -fun radiophotograph_N : N; -fun radiophotography_N : N; -fun radioprotection_N : N; -fun radioscopy_N : N; -fun radiosensitive_A : A; -fun radiotelegraph_N : N; -fun radiotelephone_N : N; -fun radiotelephonic_A : A; -fun radiotherapist_N : N; -fun radiotherapy_N : N; -fun radish_N : N; -fun radium_N : N; -fun radius_N : N; -fun radome_N : N; -fun radon_N : N; -fun raf_N : N; -fun raffia_N : N; -fun raffinose_N : N; -fun raffish_A : A; -fun raffle_N : N; -fun raffle_V2 : V2; -fun raft_N : N; -fun raft_V : V; -fun raft_V2 : V2; -fun rafter_N : N; -fun raftered_A : A; -fun raftsman_N : N; -fun rag_N : N; -fun rag_V2 : V2; -fun rag_day_N : N; -fun ragamuffin_N : N; -fun ragbag_N : N; -fun rage_N : N; -fun rage_V : V; -fun rage_V2 : V2; -fun ragged_A : A; -fun raggedly_Adv : Adv; -fun raggedness_N : N; -fun raging_A : A; -fun raglan_N : N; -fun ragout_N : N; -fun ragpicker_N : N; -fun ragsorter_N : N; -fun ragtag_N : N; -fun ragtime_N : N; -fun ragweed_N : N; -fun ragwort_N : N; -fun raid_N : N; -fun raid_V : V; -fun raid_V2 : V2; -fun raider_N : N; -fun rail_N : N; -fun rail_V : V; -fun rail_V2 : V2; -fun rail_splitter_N : N; -fun railbird_N : N; -fun railcar_N : N; -fun railhead_N : N; -fun railing_N : N; -fun raillery_N : N; -fun railroad_N : N; -fun railroad_V2 : V2; -fun railway_N : N; -fun railwayman_N : N; -fun raiment_N : N; -fun rain_N : N; -fun rain_V : V; -fun rain_V2 : V2; -fun rain_gauge_N : N; -fun rain_wash_N : N; -fun rainbow_N : N; -fun raincoat_N : N; -fun raindrop_N : N; -fun rainfall_N : N; -fun raining_A : A; -fun rainless_A : A; -fun rainmaker_N : N; -fun rainmaking_N : N; -fun rainproof_A : A; -fun rainstorm_N : N; -fun rainwater_N : N; -fun rainy_A : A; -fun raisable_A : A; -fun raise_N : N; -fun raise_V2 : V2; -fun raised_A : A; -fun raiser_N : N; -fun raisin_N : N; -fun raising_A : A; -fun raising_N : N; -fun raison_d'etre_N : N; -fun raita_N : N; -fun raj_N : N; -fun raja_N : N; -fun rajah_N : N; -fun rajanya_N : N; -fun rake_N : N; -fun rake_V : V; -fun rake_V2 : V2; -fun rake_off_N : N; -fun rake_off_N : N; -fun rakish_A : A; -fun rakishly_Adv : Adv; -fun rakishness_N : N; -fun rallentando_A : A; -fun rallentando_Adv : Adv; -fun rally_N : N; -fun rally_V : V; -fun rally_V2 : V2; -fun rally_V2V : V2V; -fun rallying_A : A; -fun rallying_N : N; -fun ram_N : N; -fun ram_V2 : V2; -fun ram's_head_N : N; -fun ramadan_N : N; -fun ramble_N : N; -fun ramble_V : V; -fun ramble_V2 : V2; -fun rambler_N : N; -fun rambling_A : A; -fun rambunctious_A : A; -fun rambutan_N : N; -fun ramekin_N : N; -fun ramie_N : N; -fun ramification_N : N; -fun ramify_V : V; -fun ramify_V2 : V2; -fun ramipril_N : N; -fun ramjet_N : N; -fun rammer_N : N; -fun ramp_N : N; -fun ramp_V2 : V2; -fun rampage_N : N; -fun rampage_V : V; -fun rampageous_A : A; -fun rampant_A : A; -fun rampantly_Adv : Adv; -fun rampart_N : N; -fun rampion_N : N; -fun ramrod_N : N; -fun ramshackle_A : A; -fun ramus_N : N; -fun ranch_N : N; -fun rancher_N : N; -fun ranching_N : N; -fun rancid_A : A; -fun rancidity_N : N; -fun rancidness_N : N; -fun rancorous_A : A; -fun rancour_N : N; -fun rand_N : N; -fun random_A : A; -fun random_N : N; -fun randomization_N : N; -fun randomized_A : A; -fun randomly_Adv : Adv; -fun randomness_N : N; -fun randy_A : A; -fun ranee_N : N; -fun range_N : N; -fun range_V : V; -fun range_V2 : V2; -fun rangefinder_N : N; -fun rangeland_N : N; -fun ranger_N : N; -fun ranging_A : A; -fun rangpur_N : N; -fun rangy_A : A; -fun rani_N : N; -fun ranitidine_N : N; -fun rank_A : A; -fun rank_N : N; -fun rank_V : V; -fun rank_V2 : V2; -fun rank_VS : VS; -fun rank_smelling_A : A; -fun ranker_N : N; -fun ranking_A : A; -fun ranking_N : N; -fun rankle_V : V; -fun rankle_V2 : V2; -fun rankness_N : N; -fun ransack_V2 : V2; -fun ransacking_N : N; -fun ransom_N : N; -fun ransom_V2 : V2; -fun ransomed_A : A; -fun rant_N : N; -fun rant_V : V; -fun rant_V2 : V2; -fun ranter_N : N; -fun ranula_N : N; -fun rap_N : N; -fun rap_V : V; -fun rap_V2 : V2; -fun rapacious_A : A; -fun rapaciously_Adv : Adv; -fun rapacity_N : N; -fun rape_N : N; -fun rape_V2 : V2; -fun raper_N : N; -fun rapeseed_N : N; -fun raphe_N : N; -fun rapid_A : A; -fun rapid_N : N; -fun rapidity_N : N; -fun rapier_N : N; -fun rapier_thrust_N : N; -fun rapine_N : N; -fun rapist_N : N; -fun rappee_N : N; -fun rappel_N : N; -fun rapper_N : N; -fun rapport_N : N; -fun rapporteur_N : N; -fun rapprochement_N : N; -fun rapscallion_N : N; -fun rapt_A : A; -fun raptorial_A : A; -fun rapture_N : N; -fun rapturous_A : A; -fun rare_A : A; -fun rare_roasted_A : A; -fun rarebit_N : N; -fun raree_show_N : N; -fun rarefaction_N : N; -fun rarefy_V : V; -fun rarefy_V2 : V2; -fun rarely_Adv : Adv; -fun rareness_N : N; -fun raring_A : A; -fun rariora_N : N; -fun rarity_N : N; -fun rascal_N : N; -fun rascality_N : N; -fun rascally_A : A; -fun rase_V2 : V2; -fun rash_A : A; -fun rash_N : N; -fun rasher_N : N; -fun rashness_N : N; -fun rasp_N : N; -fun rasp_V : V; -fun rasp_V2 : V2; -fun raspberry_N : N; -fun raspingly_Adv : Adv; -fun raster_N : N; -fun rat_N : N; -fun rat_V : V; -fun rat_V2 : V2; -fun rat_a_tat_tat_N : N; -fun rat_a_tat_tat_N : N; -fun rat_catcher_N : N; -fun rat_tat_N : N; -fun ratability_N : N; -fun ratable_A : A; -fun ratables_N : N; -fun ratafia_N : N; -fun ratan_N : N; -fun ratatouille_N : N; -fun ratch_N : N; -fun ratchet_N : N; -fun rate_N : N; -fun rate_V : V; -fun rate_V2 : V2; -fun rate_VA : VA; -fun rate_VS : VS; -fun rateability_N : N; -fun rateable_A : A; -fun ratel_N : N; -fun ratepayer_N : N; -fun rates_N : N; -fun rather_Adv : Adv; -fun rathole_N : N; -fun rathskeller_N : N; -fun ratification_N : N; -fun ratified_A : A; -fun ratify_V2 : V2; -fun rating_N : N; -fun ratio_N : N; -fun ratiocination_N : N; -fun ratiocinative_A : A; -fun ration_N : N; -fun ration_V2 : V2; -fun rational_A : A; -fun rationale_N : N; -fun rationalism_N : N; -fun rationalist_A : A; -fun rationalist_N : N; -fun rationalistic_A : A; -fun rationality_N : N; -fun rationalization_N : N; -fun rationalize_V2 : V2; -fun rationally_Adv : Adv; -fun rationed_A : A; -fun rationing_N : N; -fun ratite_N : N; -fun ratlike_A : A; -fun ratlin_N : N; -fun ratline_N : N; -fun rattan_N : N; -fun ratter_N : N; -fun rattle_N : N; -fun rattle_V : V; -fun rattle_V2 : V2; -fun rattlebrained_A : A; -fun rattlepated_A : A; -fun rattler_N : N; -fun rattlesnake_N : N; -fun rattling_A : A; -fun rattling_Adv : Adv; -fun rattrap_N : N; -fun ratty_A : A; -fun raucous_A : A; -fun raucously_Adv : Adv; -fun raunchy_A : A; -fun rauwolfia_N : N; -fun ravage_N : N; -fun ravage_V : V; -fun ravage_V2 : V2; -fun ravaging_A : A; -fun ravaging_N : N; -fun rave_N : N; -fun rave_V : V; -fun rave_V2 : V2; -fun rave_up_N : N; -fun rave_up_N : N; -fun ravehook_N : N; -fun ravel_V : V; -fun ravel_V2 : V2; -fun raveling_N : N; -fun raven_N : N; -fun ravening_A : A; -fun ravenous_A : A; -fun raver_N : N; -fun ravigote_N : N; -fun ravine_N : N; -fun raving_A : A; -fun raving_Adv : Adv; -fun raving_N : N; -fun raving_mad_A : A; -fun ravioli_N : N; -fun ravish_V2 : V2; -fun ravishing_A : A; -fun ravishingly_Adv : Adv; -fun ravishment_N : N; -fun raw_A : A; -fun raw_N : N; -fun rawboned_A : A; -fun rawhide_A : A; -fun rawhide_N : N; -fun rawness_N : N; -fun ray_N : N; -fun ray_V : V; -fun ray_V2 : V2; -fun rayless_A : A; -fun rayon_N : N; -fun razbliuto_N : N; -fun raze_V2 : V2; -fun razing_N : N; -fun razor_N : N; -fun razor_V2 : V2; -fun razor_edge_N : N; -fun razor_sharp_A : A; -fun razorback_A : A; -fun razorback_N : N; -fun razorbacked_A : A; -fun razorbill_N : N; -fun razorblade_N : N; -fun razzle_N : N; -fun razzle_dazzle_N : N; -fun razzle_dazzle_N : N; -fun re_N : N; -fun re_address_V2 : V2; -fun re_afforest_V2 : V2; -fun re_afforestation_N : N; -fun re_count_N : N; -fun re_count_V2 : V2; -fun re_cover_V2 : V2; -fun re_create_V2 : V2; -fun re_created_A : A; -fun re_creation_N : N; -fun re_echo_N : N; -fun re_echo_N : N; -fun re_echo_V : V; -fun re_elect_V2 : V2; -fun re_emerge_V : V; -fun re_emerge_V : V; -fun re_emphasize_V2 : V2; -fun re_enter_V : V; -fun re_enter_V2 : V2; -fun re_entrant_A : A; -fun re_entry_N : N; -fun re_establish_V2 : V2; -fun re_establishment_N : N; -fun re_evaluate_V2 : V2; -fun re_examine_V2 : V2; -fun re_form_V : V; -fun re_form_V2 : V2; -fun re_formation_N : N; -fun re_formation_N : N; -fun re_formed_A : A; -fun re_introduction_N : N; -fun re_join_V2 : V2; -fun re_supply_V2 : V2; -fun reach_N : N; -fun reach_V : V; -fun reach_V2 : V2; -fun reach_V2V : V2V; -fun reach_VA : VA; -fun react_V : V; -fun reactance_N : N; -fun reactant_N : N; -fun reaction_N : N; -fun reactionary_A : A; -fun reactionary_N : N; -fun reactionism_N : N; -fun reactivate_V2 : V2; -fun reactive_A : A; -fun reactivity_N : N; -fun reactor_N : N; -fun read_N : N; -fun read_V : V; -fun read_V2 : V2; -fun read_VA : VA; -fun read_VS : VS; -fun readability_N : N; -fun readable_A : A; -fun reader_N : N; -fun readership_N : N; -fun readily_Adv : Adv; -fun readiness_N : N; -fun reading_N : N; -fun reading_lamp_N : N; -fun reading_room_N : N; -fun readjust_V2 : V2; -fun readjustment_N : N; -fun readmission_N : N; -fun readmit_V2 : V2; -fun readout_N : N; -fun ready_A : A; -fun ready_N : N; -fun ready_V2 : V2; -fun ready_cooked_A : A; -fun ready_made_A : A; -fun ready_made_A : A; -fun ready_made_N : N; -fun ready_mix_N : N; -fun ready_to_eat_A : A; -fun ready_to_wear_N : N; -fun reaffiliation_N : N; -fun reaffirm_V2 : V2; -fun reagent_N : N; -fun reagin_N : N; -fun real_A : A; -fun real_N : N; -fun real_mccoy_PN : PN; -fun real_time_A : A; -fun realgar_N : N; -fun realign_V2 : V2; -fun realism_N : N; -fun realist_N : N; -fun realistic_A : A; -fun realistically_Adv : Adv; -fun reality_N : N; -fun realizable_A : A; -fun realization_N : N; -fun realize_V2 : V2; -fun realize_VS : VS; -fun reallocation_N : N; -fun reallotment_N : N; -fun realm_N : N; -fun realpolitik_N : N; -fun realtor_N : N; -fun realty_N : N; -fun ream_N : N; -fun reamer_N : N; -fun reanimate_V2 : V2; -fun reanimated_A : A; -fun reap_V : V; -fun reap_V2 : V2; -fun reaper_N : N; -fun reaping_hook_N : N; -fun reappear_V : V; -fun reappearance_N : N; -fun reappoint_V : V; -fun reappoint_V2 : V2; -fun reappraisal_N : N; -fun reappraise_V2 : V2; -fun rear_A : A; -fun rear_N : N; -fun rear_V : V; -fun rear_V2 : V2; -fun rear_admiral_N : N; -fun rearguard_N : N; -fun rearm_V : V; -fun rearm_V2 : V2; -fun rearmament_N : N; -fun rearmost_A : A; -fun rearrange_V2 : V2; -fun rearrangement_N : N; -fun rearward_A : A; -fun rearward_N : N; -fun rearwards_Adv : Adv; -fun reason_N : N; -fun reason_V : V; -fun reason_V2 : V2; -fun reason_VS : VS; -fun reason_out_V2 : V2; -fun reasonable_A : A; -fun reasonableness_N : N; -fun reasonably_Adv : Adv; -fun reasoned_A : A; -fun reasoner_N : N; -fun reasoning_N : N; -fun reasonless_A : A; -fun reassemble_V : V; -fun reassemble_V2 : V2; -fun reassembly_N : N; -fun reassert_V2 : V2; -fun reassertion_N : N; -fun reassess_V2 : V2; -fun reassessment_N : N; -fun reassign_V2 : V2; -fun reassignment_N : N; -fun reassume_V2 : V2; -fun reassurance_N : N; -fun reassure_V2 : V2; -fun reassure_VS : VS; -fun reassured_A : A; -fun reassuring_A : A; -fun reassuringly_Adv : Adv; -fun reattribute_V2 : V2; -fun rebarbative_A : A; -fun rebate_N : N; -fun rebel_N : N; -fun rebel_V : V; -fun rebellion_N : N; -fun rebellious_A : A; -fun rebelliously_Adv : Adv; -fun rebelliousness_N : N; -fun rebind_V2 : V2; -fun rebirth_N : N; -fun reborn_A : A; -fun rebound_N : N; -fun rebound_V : V; -fun rebound_V2 : V2; -fun rebound_V2V : V2V; -fun reboxetine_N : N; -fun rebozo_N : N; -fun rebroadcast_N : N; -fun rebuff_N : N; -fun rebuff_V : V; -fun rebuff_V2 : V2; -fun rebuild_V2 : V2; -fun rebuilding_N : N; -fun rebuke_N : N; -fun rebuke_V2 : V2; -fun rebukingly_Adv : Adv; -fun reburying_N : N; -fun rebus_N : N; -fun rebut_V2 : V2; -fun rebuttal_N : N; -fun rebutter_N : N; -fun recalcitrance_N : N; -fun recalcitrancy_N : N; -fun recalcitrant_A : A; -fun recalculate_V2 : V2; -fun recalculation_N : N; -fun recall_N : N; -fun recall_V2 : V2; -fun recall_VS : VS; -fun recant_V : V; -fun recant_V2 : V2; -fun recantation_N : N; -fun recap_N : N; -fun recap_V : V; -fun recap_V2 : V2; -fun recapitulate_V : V; -fun recapitulate_V2 : V2; -fun recapitulation_N : N; -fun recapture_N : N; -fun recapture_V2 : V2; -fun recast_V2 : V2; -fun recce_N : N; -fun recede_V : V; -fun receding_A : A; -fun receding_N : N; -fun receipt_N : N; -fun receipt_V2 : V2; -fun receivable_A : A; -fun receivables_N : N; -fun receive_V : V; -fun receive_V2 : V2; -fun received_A : A; -fun receiver_N : N; -fun receivership_N : N; -fun receiving_set_N : N; -fun recency_N : N; -fun recent_A : A; -fun recently_Adv : Adv; -fun recentralize_V2 : V2; -fun receptacle_N : N; -fun reception_N : N; -fun reception_desk_N : N; -fun receptionist_N : N; -fun receptive_A : A; -fun receptively_Adv : Adv; -fun receptiveness_N : N; -fun receptivity_N : N; -fun receptor_N : N; -fun recess_N : N; -fun recess_V2 : V2; -fun recessed_A : A; -fun recession_N : N; -fun recessional_A : A; -fun recessional_N : N; -fun recessionary_A : A; -fun recessive_A : A; -fun recharge_V2 : V2; -fun rechargeable_A : A; -fun rechauffe_N : N; -fun recherche_A : A; -fun recidivism_N : N; -fun recidivist_N : N; -fun recipe_N : N; -fun recipient_N : N; -fun reciprocal_A : A; -fun reciprocal_N : N; -fun reciprocality_N : N; -fun reciprocate_V : V; -fun reciprocate_V2 : V2; -fun reciprocation_N : N; -fun reciprocative_A : A; -fun reciprocity_N : N; -fun recirculation_N : N; -fun recission_N : N; -fun recital_N : N; -fun recitalist_N : N; -fun recitation_N : N; -fun recitative_N : N; -fun recite_V : V; -fun recite_V2 : V2; -fun reciter_N : N; -fun reckless_A : A; -fun recklessly_Adv : Adv; -fun recklessness_N : N; -fun reckon_V : V; -fun reckon_V2 : V2; -fun reckon_VS : VS; -fun reckoner_N : N; -fun reckoning_N : N; -fun reclaim_V2 : V2; -fun reclaimable_A : A; -fun reclamation_N : N; -fun reclassification_N : N; -fun reclassify_V2 : V2; -fun recline_V : V; -fun recline_V2 : V2; -fun recliner_N : N; -fun reclining_N : N; -fun recluse_A : A; -fun recluse_N : N; -fun reclusiveness_N : N; -fun recode_V2 : V2; -fun recoding_N : N; -fun recognition_N : N; -fun recognizable_A : A; -fun recognizably_Adv : Adv; -fun recognizance_N : N; -fun recognize_V2 : V2; -fun recognize_VS : VS; -fun recognized_A : A; -fun recoil_N : N; -fun recoil_V : V; -fun recoilless_A : A; -fun recollect_V : V; -fun recollect_V2 : V2; -fun recollection_N : N; -fun recombinant_A : A; -fun recombinant_N : N; -fun recombination_N : N; -fun recommend_V2 : V2; -fun recommend_VS : VS; -fun recommendation_N : N; -fun recommit_V2 : V2; -fun recompense_N : N; -fun recompense_V2 : V2; -fun reconcilable_A : A; -fun reconcile_V2 : V2; -fun reconciled_A : A; -fun reconciliation_N : N; -fun recondite_A : A; -fun reconditeness_N : N; -fun recondition_V2 : V2; -fun reconnaissance_N : N; -fun reconnoitre_V : V; -fun reconnoitre_V2 : V2; -fun reconsecrate_V2 : V2; -fun reconsider_V2 : V2; -fun reconsider_VS : VS; -fun reconsideration_N : N; -fun reconstruct_V2 : V2; -fun reconstructed_A : A; -fun reconstruction_N : N; -fun reconstructive_A : A; -fun reconvict_V2 : V2; -fun record_N : N; -fun record_V2 : V2; -fun record_breaker_N : N; -fun record_breaking_A : A; -fun record_breaking_A : A; -fun record_player_N : N; -fun recorded_A : A; -fun recorder_N : N; -fun recording_N : N; -fun recount_N : N; -fun recount_V2 : V2; -fun recount_VS : VS; -fun recoup_V2 : V2; -fun recourse_N : N; -fun recover_V : V; -fun recover_V2 : V2; -fun recover_V2V : V2V; -fun recoverable_A : A; -fun recovered_A : A; -fun recovery_N : N; -fun recreant_A : A; -fun recreant_N : N; -fun recreate_V2 : V2; -fun recreation_N : N; -fun recreational_A : A; -fun recriminate_V : V; -fun recrimination_N : N; -fun recriminative_A : A; -fun recriminatory_A : A; -fun recrudescence_N : N; -fun recrudescent_A : A; -fun recruit_N : N; -fun recruit_V : V; -fun recruit_V2 : V2; -fun recruiter_N : N; -fun recruiting_sergeant_N : N; -fun recruitment_N : N; -fun rectal_A : A; -fun rectangle_N : N; -fun rectangular_A : A; -fun rectangularity_N : N; -fun rectification_N : N; -fun rectified_A : A; -fun rectifier_N : N; -fun rectify_V2 : V2; -fun rectilinear_A : A; -fun rectitude_N : N; -fun recto_N : N; -fun rectocele_N : N; -fun rector_N : N; -fun rectorship_N : N; -fun rectory_N : N; -fun rectosigmoid_A : A; -fun rectum_N : N; -fun rectus_N : N; -fun recumbent_A : A; -fun recuperate_V : V; -fun recuperate_V2 : V2; -fun recuperation_N : N; -fun recuperative_A : A; -fun recur_V : V; -fun recurrence_N : N; -fun recurrent_A : A; -fun recurrently_Adv : Adv; -fun recurring_A : A; -fun recursion_N : N; -fun recursive_A : A; -fun recurve_V : V; -fun recurve_V2 : V2; -fun recurved_A : A; -fun recusancy_N : N; -fun recusant_A : A; -fun recusant_N : N; -fun recusation_N : N; -fun recycle_V2 : V2; -fun recycling_N : N; -fun red_A : A; -fun red_N : N; -fun red_clintonia_PN : PN; -fun red_brick_A : A; -fun red_brown_A : A; -fun red_carpet_A : A; -fun red_coated_A : A; -fun red_flowered_A : A; -fun red_fruited_A : A; -fun red_grey_A : A; -fun red_handed_A : A; -fun red_handed_Adv : Adv; -fun red_hot_A : A; -fun red_hot_A : A; -fun red_lavender_A : A; -fun red_letter_A : A; -fun red_orange_A : A; -fun red_purple_A : A; -fun red_rimmed_A : A; -fun red_rimmed_A : A; -fun red_striped_A : A; -fun red_violet_A : A; -fun redact_N : N; -fun redact_V2 : V2; -fun redaction_N : N; -fun redberry_N : N; -fun redbone_N : N; -fun redbreast_N : N; -fun redbrick_A : A; -fun redbud_N : N; -fun redcap_N : N; -fun redcoat_N : N; -fun redden_V : V; -fun redden_V2 : V2; -fun reddish_A : A; -fun reddish_pink_A : A; -fun redecorate_V2 : V2; -fun rededication_N : N; -fun redeem_V2 : V2; -fun redeemable_A : A; -fun redeemer_N : N; -fun redeeming_A : A; -fun redefine_V2 : V2; -fun redefinition_N : N; -fun redemption_N : N; -fun redemptive_A : A; -fun redeploy_V2 : V2; -fun redeployment_N : N; -fun redeposition_N : N; -fun redesign_V2 : V2; -fun redetermination_N : N; -fun redevelop_V2 : V2; -fun redevelopment_N : N; -fun redeye_N : N; -fun redfish_N : N; -fun redhead_N : N; -fun redheaded_A : A; -fun redhorse_N : N; -fun rediffusion_N : N; -fun rediscover_V2 : V2; -fun rediscovery_N : N; -fun redisposition_N : N; -fun redistribute_V2 : V2; -fun redistributed_A : A; -fun redistribution_N : N; -fun redline_V2 : V2; -fun redly_Adv : Adv; -fun redneck_N : N; -fun redness_N : N; -fun redo_V2 : V2; -fun redolence_N : N; -fun redolent_A : A; -fun redouble_V : V; -fun redouble_V2 : V2; -fun redoubled_A : A; -fun redoubt_N : N; -fun redoubtable_A : A; -fun redound_V : V; -fun redpoll_N : N; -fun redraft_N : N; -fun redraw_V2 : V2; -fun redress_N : N; -fun redress_V2 : V2; -fun redshank_N : N; -fun redskin_N : N; -fun redstart_N : N; -fun redtail_N : N; -fun reduce_V : V; -fun reduce_V2 : V2; -fun reduced_A : A; -fun reducer_N : N; -fun reducible_A : A; -fun reducing_N : N; -fun reductase_N : N; -fun reductio_ad_absurdum_N : N; -fun reduction_N : N; -fun reductionism_N : N; -fun reductionist_A : A; -fun reductive_A : A; -fun redundance_N : N; -fun redundancy_N : N; -fun redundant_A : A; -fun reduplicate_V2 : V2; -fun reduplication_N : N; -fun redux_A : A; -fun redwing_N : N; -fun redwood_N : N; -fun reed_N : N; -fun reedy_A : A; -fun reef_N : N; -fun reef_V2 : V2; -fun reef_knot_N : N; -fun reefer_N : N; -fun reefy_A : A; -fun reek_N : N; -fun reek_V : V; -fun reeking_A : A; -fun reel_N : N; -fun reel_V : V; -fun reel_V2 : V2; -fun reelect_V2 : V2; -fun reelection_N : N; -fun reeler_N : N; -fun reenactment_N : N; -fun reenactor_N : N; -fun reenlistment_N : N; -fun reentry_N : N; -fun reevaluation_N : N; -fun reeve_N : N; -fun reexamine_V : V; -fun ref_N : N; -fun reface_V2 : V2; -fun refashion_N : N; -fun refashion_V2 : V2; -fun refection_N : N; -fun refectory_N : N; -fun refer_V : V; -fun refer_V2 : V2; -fun referable_A : A; -fun referee_N : N; -fun referee_V : V; -fun referee_V2 : V2; -fun reference_N : N; -fun referenced_A : A; -fun referendum_N : N; -fun referent_A : A; -fun referent_N : N; -fun referential_A : A; -fun referral_N : N; -fun refill_N : N; -fun refill_V2 : V2; -fun refilling_N : N; -fun refinance_V : V; -fun refinance_V2 : V2; -fun refine_V : V; -fun refine_V2 : V2; -fun refined_A : A; -fun refinement_N : N; -fun refiner_N : N; -fun refinery_N : N; -fun refining_N : N; -fun refinisher_N : N; -fun refit_N : N; -fun refit_V : V; -fun refit_V2 : V2; -fun reflate_V2 : V2; -fun reflation_N : N; -fun reflect_V : V; -fun reflect_V2 : V2; -fun reflected_A : A; -fun reflecting_A : A; -fun reflection_N : N; -fun reflective_A : A; -fun reflectively_Adv : Adv; -fun reflectiveness_N : N; -fun reflectometer_N : N; -fun reflector_N : N; -fun reflex_A : A; -fun reflex_N : N; -fun reflexed_A : A; -fun reflexion_N : N; -fun reflexive_A : A; -fun reflexive_N : N; -fun reflexivity_N : N; -fun reflexly_Adv : Adv; -fun reflexology_N : N; -fun refloat_V : V; -fun refloat_V2 : V2; -fun reflux_N : N; -fun refocus_V : V; -fun refocus_V2 : V2; -fun refocus_V2V : V2V; -fun refocusing_N : N; -fun reforest_V2 : V2; -fun reforestation_N : N; -fun reform_N : N; -fun reform_V : V; -fun reform_V2 : V2; -fun reformation_N : N; -fun reformative_A : A; -fun reformatory_A : A; -fun reformatory_N : N; -fun reformed_A : A; -fun reformer_N : N; -fun reformism_N : N; -fun reformulate_V2 : V2; -fun refract_V2 : V2; -fun refraction_N : N; -fun refractive_A : A; -fun refractivity_N : N; -fun refractometer_N : N; -fun refractoriness_N : N; -fun refractory_A : A; -fun refractory_lined_A : A; -fun refrain_N : N; -fun refrain_V : V; -fun refresh_V2 : V2; -fun refresher_N : N; -fun refreshing_A : A; -fun refreshingly_Adv : Adv; -fun refreshment_N : N; -fun refrigerant_A : A; -fun refrigerant_N : N; -fun refrigerate_V2 : V2; -fun refrigerated_A : A; -fun refrigeration_N : N; -fun refrigerator_N : N; -fun refuel_V : V; -fun refuel_V2 : V2; -fun refuge_N : N; -fun refugee_N : N; -fun refulgence_N : N; -fun refulgent_A : A; -fun refund_N : N; -fun refund_V2 : V2; -fun refurbish_V2 : V2; -fun refurnish_V2 : V2; -fun refusal_N : N; -fun refuse_N : N; -fun refuse_V : V; -fun refuse_V2 : V2; -fun refuse_VV : VV; -fun refuse_collector_N : N; -fun refutable_A : A; -fun refutation_N : N; -fun refute_V2 : V2; -fun regain_V2 : V2; -fun regal_A : A; -fun regale_V2 : V2; -fun regalia_N : N; -fun regally_Adv : Adv; -fun regard_N : N; -fun regard_V : V; -fun regard_V2 : V2; -fun regard_VS : VS; -fun regardant_A : A; -fun regardful_A : A; -fun regardless_A : A; -fun regardless_Adv : Adv; -fun regatta_N : N; -fun regency_N : N; -fun regenerate_A : A; -fun regenerate_V : V; -fun regenerate_V2 : V2; -fun regenerating_A : A; -fun regeneration_N : N; -fun regent_A : A; -fun regent_N : N; -fun reggae_N : N; -fun regicide_N : N; -fun regime_1_N : N; -fun regime_2_N : N; -fun regimen_N : N; -fun regiment_N : N; -fun regiment_V2 : V2; -fun regimental_A : A; -fun regimentally_Adv : Adv; -fun regimentals_N : N; -fun regimentation_N : N; -fun regimented_A : A; -fun region_N : N; -fun regional_A : A; -fun regionalism_N : N; -fun regionally_Adv : Adv; -fun register_N : N; -fun register_V : V; -fun register_V2 : V2; -fun registered_A : A; -fun registrant_N : N; -fun registrar_N : N; -fun registration_N : N; -fun registry_N : N; -fun regnant_A : A; -fun regnellidium_N : N; -fun regosol_N : N; -fun regress_N : N; -fun regress_V : V; -fun regression_N : N; -fun regressive_A : A; -fun regret_N : N; -fun regret_V2 : V2; -fun regret_VS : VS; -fun regretful_A : A; -fun regretfully_Adv : Adv; -fun regrettable_A : A; -fun regroup_V : V; -fun regroup_V2 : V2; -fun regular_A : A; -fun regular_N : N; -fun regularity_N : N; -fun regularization_N : N; -fun regularize_V2 : V2; -fun regularly_Adv : Adv; -fun regulate_V2 : V2; -fun regulated_A : A; -fun regulation_A : A; -fun regulation_N : N; -fun regulative_A : A; -fun regulator_N : N; -fun regum_V2 : V2; -fun regur_N : N; -fun regurgitate_V : V; -fun regurgitate_V2 : V2; -fun regurgitation_N : N; -fun rehabilitate_V2 : V2; -fun rehabilitation_N : N; -fun rehabilitative_A : A; -fun reharmonization_N : N; -fun rehash_N : N; -fun rehash_V2 : V2; -fun rehear_V2 : V2; -fun rehearing_N : N; -fun rehearsal_N : N; -fun rehearse_V : V; -fun rehearse_V2 : V2; -fun rehouse_V2 : V2; -fun reich_N : N; -fun reign_N : N; -fun reign_V : V; -fun reignite_V2 : V2; -fun reimburse_V2 : V2; -fun reimbursement_N : N; -fun reimpose_V2 : V2; -fun reimposition_N : N; -fun rein_N : N; -fun rein_V2 : V2; -fun reincarnate_A : A; -fun reincarnate_V2 : V2; -fun reincarnation_N : N; -fun reincarnationism_N : N; -fun reindeer_N : N; -fun reindict_V2 : V2; -fun reinforce_V2 : V2; -fun reinforced_A : A; -fun reinforcement_N : N; -fun reinstall_V2 : V2; -fun reinstate_V2 : V2; -fun reinstatement_N : N; -fun reinstitute_V2 : V2; -fun reinsurance_N : N; -fun reinsure_V2 : V2; -fun reintegrate_V2 : V2; -fun reinterpret_V2 : V2; -fun reinterpretation_N : N; -fun reintroduce_V2 : V2; -fun reintroduction_N : N; -fun reinvent_V2 : V2; -fun reinvest_V2 : V2; -fun reinvigorate_V2 : V2; -fun reissue_N : N; -fun reissue_V2 : V2; -fun reiterate_V2 : V2; -fun reiterate_VS : VS; -fun reiteration_N : N; -fun reject_N : N; -fun reject_V2 : V2; -fun rejection_N : N; -fun rejective_A : A; -fun rejig_V2 : V2; -fun rejoice_V : V; -fun rejoice_V2 : V2; -fun rejoicing_N : N; -fun rejoin_V : V; -fun rejoin_V2 : V2; -fun rejoinder_N : N; -fun rejuvenate_V : V; -fun rejuvenate_V2 : V2; -fun rejuvenation_N : N; -fun rekindle_V : V; -fun rekindle_V2 : V2; -fun relapse_N : N; -fun relapse_V : V; -fun relate_V : V; -fun relate_V2 : V2; -fun related_A : A; -fun relatedness_N : N; -fun relation_N : N; -fun relational_A : A; -fun relations_N : N; -fun relationship_N : N; -fun relative_A : A; -fun relative_N : N; -fun relatively_Adv : Adv; -fun relativism_N : N; -fun relativistic_A : A; -fun relativistically_Adv : Adv; -fun relativity_N : N; -fun relatum_N : N; -fun relax_V : V; -fun relax_V2 : V2; -fun relaxant_A : A; -fun relaxant_N : N; -fun relaxation_N : N; -fun relaxed_A : A; -fun relaxer_N : N; -fun relaxin_N : N; -fun relay_N : N; -fun relay_V2 : V2; -fun release_N : N; -fun release_V2 : V2; -fun relegate_V2 : V2; -fun relegation_N : N; -fun relent_V : V; -fun relentless_A : A; -fun relentlessly_Adv : Adv; -fun relentlessness_N : N; -fun relevance_N : N; -fun relevancy_N : N; -fun relevant_A : A; -fun relevantly_Adv : Adv; -fun reliability_N : N; -fun reliable_A : A; -fun reliance_N : N; -fun reliant_A : A; -fun relic_N : N; -fun relict_N : N; -fun relief_N : N; -fun relieve_V2 : V2; -fun reliever_N : N; -fun religion_N : N; -fun religionism_N : N; -fun religionist_N : N; -fun religiosity_N : N; -fun religious_A : A; -fun religious_N : N; -fun religiously_Adv : Adv; -fun religiousness_N : N; -fun reline_V2 : V2; -fun relinquish_V2 : V2; -fun relinquished_A : A; -fun relinquishment_N : N; -fun reliquary_N : N; -fun relish_N : N; -fun relish_V2 : V2; -fun relish_VS : VS; -fun relistening_N : N; -fun relive_V2 : V2; -fun reliving_N : N; -fun relocate_V : V; -fun relocate_V2 : V2; -fun relocated_A : A; -fun relocation_N : N; -fun reluctance_N : N; -fun reluctant_A : A; -fun reluctantly_Adv : Adv; -fun reluctivity_N : N; -fun rely_V : V; -fun remain_V : V; -fun remain_V2 : V2; -fun remain_VA : VA; -fun remain_VS : VS; -fun remain_VV : VV; -fun remainder_N : N; -fun remains_N : N; -fun remake_N : N; -fun remake_V2 : V2; -fun remand_N : N; -fun remand_V2 : V2; -fun remark_N : N; -fun remark_V : V; -fun remark_V2 : V2; -fun remark_VS : VS; -fun remarkable_A : A; -fun remarriage_N : N; -fun remarry_V : V; -fun remarry_V2 : V2; -fun remediable_A : A; -fun remedial_A : A; -fun remedy_N : N; -fun remedy_V2 : V2; -fun remember_V : V; -fun remember_V2 : V2; -fun remember_VS : VS; -fun remembrance_N : N; -fun remilitarization_N : N; -fun remilitarize_V2 : V2; -fun remind_V2 : V2; -fun reminder_N : N; -fun reminisce_V : V; -fun reminiscence_N : N; -fun reminiscent_A : A; -fun reminiscently_Adv : Adv; -fun remise_N : N; -fun remiss_A : A; -fun remission_N : N; -fun remissness_N : N; -fun remit_N : N; -fun remit_V : V; -fun remit_V2 : V2; -fun remittance_N : N; -fun remittent_A : A; -fun remnant_N : N; -fun remodel_V : V; -fun remodel_V2 : V2; -fun remonstrance_N : N; -fun remonstrate_V : V; -fun remora_N : N; -fun remorse_N : N; -fun remorseful_A : A; -fun remorseless_A : A; -fun remote_A : A; -fun remotely_Adv : Adv; -fun remoteness_N : N; -fun remould_V2 : V2; -fun remount_N : N; -fun remount_V : V; -fun remount_V2 : V2; -fun removable_A : A; -fun removal_N : N; -fun remove_N : N; -fun remove_V : V; -fun remove_V2 : V2; -fun removed_A : A; -fun remover_N : N; -fun remuda_N : N; -fun remunerate_V2 : V2; -fun remuneration_N : N; -fun remunerative_A : A; -fun renaissance_N : N; -fun renal_A : A; -fun rename_V2 : V2; -fun rename_VS : VS; -fun renascence_N : N; -fun renascent_A : A; -fun rend_V2 : V2; -fun render_N : N; -fun render_V2 : V2; -fun render_VS : VS; -fun rendering_N : N; -fun rendezvous_N : N; -fun rendezvous_V : V; -fun rendezvouse_V : V; -fun rending_A : A; -fun rendition_N : N; -fun renegade_N : N; -fun renegade_V : V; -fun renege_V : V; -fun renegotiate_V2 : V2; -fun renegue_V : V; -fun renew_V2 : V2; -fun renewable_A : A; -fun renewal_N : N; -fun renewed_A : A; -fun renewing_A : A; -fun reniform_A : A; -fun renin_N : N; -fun rennet_N : N; -fun rennin_N : N; -fun renounce_V : V; -fun renounce_V2 : V2; -fun renovate_V2 : V2; -fun renovation_N : N; -fun renovator_N : N; -fun renown_N : N; -fun renowned_A : A; -fun rensselaerite_N : N; -fun rent_N : N; -fun rent_V : V; -fun rent_V2 : V2; -fun rent_collector_N : N; -fun rent_free_A : A; -fun rent_free_A : A; -fun rent_free_Adv : Adv; -fun rent_free_Adv : Adv; -fun rent_rebate_N : N; -fun rent_rebate_N : N; -fun rent_roll_N : N; -fun rent_roll_N : N; -fun rentable_A : A; -fun rental_A : A; -fun rental_N : N; -fun renter_N : N; -fun rentier_N : N; -fun renunciant_A : A; -fun renunciation_N : N; -fun reoffer_V2 : V2; -fun reopen_V : V; -fun reopen_V2 : V2; -fun reorder_N : N; -fun reordering_N : N; -fun reorganization_N : N; -fun reorganize_V : V; -fun reorganize_V2 : V2; -fun reorganized_A : A; -fun reorient_V : V; -fun reorient_V2 : V2; -fun reorientate_V : V; -fun reorientate_V2 : V2; -fun reorientation_N : N; -fun reovirus_N : N; -fun rep_N : N; -fun repackage_V2 : V2; -fun repaint_V2 : V2; -fun repair_N : N; -fun repair_V : V; -fun repair_V2 : V2; -fun repairable_A : A; -fun repairer_N : N; -fun repairman_N : N; -fun repand_A : A; -fun reparable_A : A; -fun reparation_N : N; -fun repartee_N : N; -fun repass_V2 : V2; -fun repast_N : N; -fun repatriate_N : N; -fun repatriate_V2 : V2; -fun repatriation_N : N; -fun repay_V : V; -fun repay_V2 : V2; -fun repayable_A : A; -fun repayment_N : N; -fun repeal_N : N; -fun repeal_V2 : V2; -fun repeat_N : N; -fun repeat_V : V; -fun repeat_V2 : V2; -fun repeat_VS : VS; -fun repeatable_A : A; -fun repeatedly_Adv : Adv; -fun repeater_N : N; -fun repechage_N : N; -fun repel_V2 : V2; -fun repellent_A : A; -fun repellent_N : N; -fun repellently_Adv : Adv; -fun repent_V : V; -fun repent_V2 : V2; -fun repentance_N : N; -fun repentant_A : A; -fun repercussion_N : N; -fun repertoire_N : N; -fun repertory_N : N; -fun repetition_N : N; -fun repetitious_A : A; -fun repetitive_A : A; -fun repetitively_Adv : Adv; -fun repetitiveness_N : N; -fun repine_V : V; -fun replace_V2 : V2; -fun replace_VV : VV; -fun replaceability_N : N; -fun replaceable_A : A; -fun replacement_N : N; -fun replant_V2 : V2; -fun replaster_V2 : V2; -fun replay_N : N; -fun replay_V2 : V2; -fun replenish_V2 : V2; -fun replenishment_N : N; -fun replete_A : A; -fun repletion_N : N; -fun replica_N : N; -fun replicate_V2 : V2; -fun replication_N : N; -fun reply_N : N; -fun reply_V : V; -fun reply_V2 : V2; -fun reply_VS : VS; -fun reply_paid_A : A; -fun reply_paid_A : A; -fun repoint_V2 : V2; -fun repond_V : V; -fun report_N : N; -fun report_V : V; -fun report_V2 : V2; -fun report_V2V : V2V; -fun report_VS : VS; -fun reportable_A : A; -fun reportage_N : N; -fun reported_A : A; -fun reportedly_Adv : Adv; -fun reporter_N : N; -fun repose_N : N; -fun repose_V : V; -fun repose_V2 : V2; -fun reposeful_A : A; -fun repositing_N : N; -fun reposition_V2 : V2; -fun repositioning_N : N; -fun repository_N : N; -fun repossess_V2 : V2; -fun repossession_N : N; -fun repot_V2 : V2; -fun repp_N : N; -fun reprehend_V2 : V2; -fun reprehensibility_N : N; -fun reprehensible_A : A; -fun reprehensibly_Adv : Adv; -fun represent_V : V; -fun represent_V2 : V2; -fun representable_A : A; -fun representation_N : N; -fun representational_A : A; -fun representative_A : A; -fun representative_N : N; -fun repress_V2 : V2; -fun repressed_A : A; -fun repression_N : N; -fun repressive_A : A; -fun repressor_N : N; -fun reprieve_N : N; -fun reprieve_V2 : V2; -fun reprimand_N : N; -fun reprimand_V2 : V2; -fun reprint_N : N; -fun reprint_V2 : V2; -fun reprisal_N : N; -fun reproach_N : N; -fun reproach_V2 : V2; -fun reproachful_A : A; -fun reprobate_N : N; -fun reprobate_V2 : V2; -fun reprobation_N : N; -fun reproduce_V : V; -fun reproduce_V2 : V2; -fun reproducer_N : N; -fun reproducibility_N : N; -fun reproducible_A : A; -fun reproducibly_Adv : Adv; -fun reproduction_N : N; -fun reproductive_A : A; -fun reproof_N : N; -fun reproof_V2 : V2; -fun reprove_V2 : V2; -fun reprovingly_Adv : Adv; -fun reps_N : N; -fun reptile_N : N; -fun reptilian_A : A; -fun reptilian_N : N; -fun republic_N : N; -fun republican_A : A; -fun republican_N : N; -fun republicanism_N : N; -fun republication_N : N; -fun repudiate_V2 : V2; -fun repudiation_N : N; -fun repudiative_A : A; -fun repugnance_N : N; -fun repugnant_A : A; -fun repulse_N : N; -fun repulse_V2 : V2; -fun repulsion_N : N; -fun repulsive_A : A; -fun repurchase_V2 : V2; -fun reputable_A : A; -fun reputably_Adv : Adv; -fun reputation_N : N; -fun repute_N : N; -fun repute_V2 : V2; -fun reputed_A : A; -fun reputedly_Adv : Adv; -fun request_N : N; -fun request_V2 : V2; -fun request_VS : VS; -fun requested_A : A; -fun requiem_N : N; -fun requiescat_N : N; -fun require_V : V; -fun require_V2 : V2; -fun require_V2V : V2V; -fun require_VS : VS; -fun require_VV : VV; -fun requirement_N : N; -fun requisite_A : A; -fun requisite_N : N; -fun requisiteness_N : N; -fun requisition_N : N; -fun requisition_V2 : V2; -fun requital_N : N; -fun requite_V2 : V2; -fun reread_V2 : V2; -fun rerebrace_N : N; -fun reredos_N : N; -fun reroute_V2 : V2; -fun rerun_N : N; -fun rerun_V2 : V2; -fun res_N : N; -fun resale_N : N; -fun reschedule_V2 : V2; -fun rescind_V2 : V2; -fun rescindable_A : A; -fun rescript_N : N; -fun rescue_N : N; -fun rescue_V2 : V2; -fun rescued_A : A; -fun rescuer_N : N; -fun research_N : N; -fun research_V : V; -fun research_V2 : V2; -fun researcher_N : N; -fun reseat_V2 : V2; -fun reseau_N : N; -fun resection_N : N; -fun reseda_N : N; -fun reseed_V2 : V2; -fun resell_V2 : V2; -fun resemblance_N : N; -fun resemble_V2 : V2; -fun resent_V2 : V2; -fun resent_VS : VS; -fun resentful_A : A; -fun resentfully_Adv : Adv; -fun resentment_N : N; -fun reserpine_N : N; -fun reservation_N : N; -fun reserve_N : N; -fun reserve_V : V; -fun reserve_V2 : V2; -fun reserved_A : A; -fun reservedly_Adv : Adv; -fun reservist_N : N; -fun reservoir_N : N; -fun reset_N : N; -fun reset_V : V; -fun reset_V2 : V2; -fun resettle_V : V; -fun resettle_V2 : V2; -fun resettlement_N : N; -fun resh_N : N; -fun reshape_V2 : V2; -fun reshipment_N : N; -fun reshuffle_N : N; -fun reshuffle_V2 : V2; -fun reside_V : V; -fun residence_N : N; -fun residency_N : N; -fun resident_A : A; -fun resident_N : N; -fun residential_A : A; -fun residentially_Adv : Adv; -fun residual_A : A; -fun residual_N : N; -fun residuary_A : A; -fun residue_N : N; -fun resign_V : V; -fun resign_V2 : V2; -fun resign_V2V : V2V; -fun resign_VS : VS; -fun resign_VV : VV; -fun resignation_N : N; -fun resigned_A : A; -fun resignedly_Adv : Adv; -fun resilience_N : N; -fun resiliency_N : N; -fun resilient_A : A; -fun resin_N : N; -fun resinated_A : A; -fun resinlike_A : A; -fun resinoid_N : N; -fun resinous_A : A; -fun resist_V : V; -fun resist_V2 : V2; -fun resist_VS : VS; -fun resistance_N : N; -fun resistant_A : A; -fun resister_N : N; -fun resistible_A : A; -fun resistive_A : A; -fun resistivity_N : N; -fun resistless_A : A; -fun resistor_N : N; -fun resold_V2 : V2; -fun resole_V2 : V2; -fun resolute_A : A; -fun resolutely_Adv : Adv; -fun resoluteness_N : N; -fun resolution_N : N; -fun resolvable_A : A; -fun resolve_N : N; -fun resolve_V : V; -fun resolve_V2 : V2; -fun resonance_N : N; -fun resonant_A : A; -fun resonate_V : V; -fun resonate_V2 : V2; -fun resonator_N : N; -fun resorcinol_N : N; -fun resorption_N : N; -fun resort_N : N; -fun resort_V : V; -fun resound_V : V; -fun resound_V2 : V2; -fun resoundingly_Adv : Adv; -fun resource_N : N; -fun resourceful_A : A; -fun resourcefully_Adv : Adv; -fun resourcefulness_N : N; -fun resourceless_A : A; -fun respect_N : N; -fun respect_V2 : V2; -fun respectability_N : N; -fun respectable_A : A; -fun respectably_Adv : Adv; -fun respected_A : A; -fun respecter_N : N; -fun respectful_A : A; -fun respectfully_Adv : Adv; -fun respective_A : A; -fun respectively_Adv : Adv; -fun respects_N : N; -fun respiration_N : N; -fun respirator_N : N; -fun respiratory_A : A; -fun respire_V : V; -fun respite_N : N; -fun respite_V2 : V2; -fun resplendence_N : N; -fun resplendency_N : N; -fun resplendent_A : A; -fun respond_V : V; -fun respond_V2 : V2; -fun respond_VS : VS; -fun respondent_N : N; -fun response_N : N; -fun responsibility_N : N; -fun responsible_A : A; -fun responsibly_Adv : Adv; -fun responsive_A : A; -fun responsiveness_N : N; -fun rest_N : N; -fun rest_V : V; -fun rest_V2 : V2; -fun rest_VS : VS; -fun rest_cure_N : N; -fun rest_cure_N : N; -fun rest_day_N : N; -fun rest_home_N : N; -fun rest_house_N : N; -fun restart_V : V; -fun restart_V2 : V2; -fun restate_V2 : V2; -fun restate_V2V : V2V; -fun restatement_N : N; -fun restaurant_N : N; -fun restauranteur_N : N; -fun restaurateur_N : N; -fun rested_A : A; -fun rester_N : N; -fun restful_A : A; -fun restfully_Adv : Adv; -fun restfulness_N : N; -fun restharrow_N : N; -fun restitution_N : N; -fun restive_A : A; -fun restively_Adv : Adv; -fun restiveness_N : N; -fun restless_A : A; -fun restlessly_Adv : Adv; -fun restlessness_N : N; -fun restock_V2 : V2; -fun restoration_N : N; -fun restorative_A : A; -fun restorative_N : N; -fun restore_V2 : V2; -fun restorer_N : N; -fun restrain_V2 : V2; -fun restrained_A : A; -fun restrainer_N : N; -fun restraint_N : N; -fun restrict_V : V; -fun restrict_V2 : V2; -fun restricted_A : A; -fun restriction_N : N; -fun restrictive_A : A; -fun restrictively_Adv : Adv; -fun restrictiveness_N : N; -fun restructure_V : V; -fun restructure_V2 : V2; -fun restructure_V2V : V2V; -fun result_N : N; -fun result_V : V; -fun resultant_A : A; -fun resultant_N : N; -fun resume_N : N; -fun resume_V : V; -fun resume_V2 : V2; -fun resume_VS : VS; -fun resumption_N : N; -fun resurface_V : V; -fun resurface_V2 : V2; -fun resurgence_N : N; -fun resurgent_A : A; -fun resurrect_V : V; -fun resurrect_V2 : V2; -fun resurrection_N : N; -fun resurvey_N : N; -fun resuscitate_V : V; -fun resuscitate_V2 : V2; -fun resuscitated_A : A; -fun resuscitation_N : N; -fun resuscitator_N : N; -fun resuspension_N : N; -fun ret_V2 : V2; -fun retail_Adv : Adv; -fun retail_N : N; -fun retail_V : V; -fun retail_V2 : V2; -fun retailer_N : N; -fun retailing_N : N; -fun retain_V2 : V2; -fun retain_V2V : V2V; -fun retained_A : A; -fun retainer_N : N; -fun retake_N : N; -fun retake_V2 : V2; -fun retaliate_V : V; -fun retaliation_N : N; -fun retaliative_A : A; -fun retaliatory_A : A; -fun retard_V2 : V2; -fun retardant_N : N; -fun retardation_N : N; -fun retarded_A : A; -fun retch_V : V; -fun retell_V2 : V2; -fun retem_N : N; -fun retention_N : N; -fun retentive_A : A; -fun retentively_Adv : Adv; -fun retentiveness_N : N; -fun rethink_N : N; -fun rethink_V : V; -fun rethink_V2 : V2; -fun reticence_N : N; -fun reticent_A : A; -fun reticently_Adv : Adv; -fun reticle_N : N; -fun reticulate_A : A; -fun reticulate_V : V; -fun reticulate_V2 : V2; -fun reticulation_N : N; -fun reticule_N : N; -fun reticulocyte_N : N; -fun reticulum_N : N; -fun retina_N : N; -fun retinal_A : A; -fun retinene_N : N; -fun retinitis_N : N; -fun retinoblastoma_N : N; -fun retinopathy_N : N; -fun retinue_N : N; -fun retire_N : N; -fun retire_V : V; -fun retire_V2 : V2; -fun retired_A : A; -fun retiree_N : N; -fun retirement_N : N; -fun retiring_A : A; -fun retool_V2 : V2; -fun retort_N : N; -fun retort_V : V; -fun retort_V2 : V2; -fun retouch_V2 : V2; -fun retrace_V2 : V2; -fun retract_V : V; -fun retract_V2 : V2; -fun retractable_A : A; -fun retracted_A : A; -fun retractile_A : A; -fun retraction_N : N; -fun retractor_N : N; -fun retraining_N : N; -fun retral_A : A; -fun retransmit_V2 : V2; -fun retread_N : N; -fun retread_V2 : V2; -fun retreat_N : N; -fun retreat_V : V; -fun retreat_V2 : V2; -fun retreatant_N : N; -fun retreated_N : N; -fun retrench_V : V; -fun retrench_V2 : V2; -fun retrenchment_N : N; -fun retrial_N : N; -fun retribution_N : N; -fun retributive_A : A; -fun retrievable_A : A; -fun retrieval_N : N; -fun retrieve_V : V; -fun retrieve_V2 : V2; -fun retriever_N : N; -fun retro_N : N; -fun retroactive_A : A; -fun retroactively_Adv : Adv; -fun retrofit_N : N; -fun retrofit_V2 : V2; -fun retroflection_N : N; -fun retroflex_A : A; -fun retrograde_A : A; -fun retrograde_V : V; -fun retrogress_V : V; -fun retrogression_N : N; -fun retrogressive_A : A; -fun retronym_N : N; -fun retrorocket_N : N; -fun retrorse_A : A; -fun retrospect_N : N; -fun retrospection_N : N; -fun retrospective_A : A; -fun retrospective_N : N; -fun retrospectively_Adv : Adv; -fun retrousse_A : A; -fun retroversion_N : N; -fun retrovirus_N : N; -fun retrovision_N : N; -fun retsina_N : N; -fun return_N : N; -fun return_V : V; -fun return_V2 : V2; -fun return_V2V : V2V; -fun returnable_A : A; -fun returning_A : A; -fun reunification_N : N; -fun reunion_N : N; -fun reunite_V : V; -fun reunite_V2 : V2; -fun reuptake_N : N; -fun rev_N : N; -fun rev_V : V; -fun rev_V2 : V2; -fun revaluation_N : N; -fun revalue_V2 : V2; -fun revamp_V2 : V2; -fun reveal_V2 : V2; -fun reveal_VS : VS; -fun revealing_A : A; -fun reveille_N : N; -fun revel_N : N; -fun revel_V : V; -fun revelation_N : N; -fun reveler_N : N; -fun reveller_N : N; -fun revelry_N : N; -fun revenant_A : A; -fun revenant_N : N; -fun revenge_N : N; -fun revenge_V2 : V2; -fun revengeful_A : A; -fun revengefully_Adv : Adv; -fun revenue_N : N; -fun revenuer_N : N; -fun reverberant_A : A; -fun reverberate_V : V; -fun reverberate_V2 : V2; -fun reverberation_N : N; -fun revere_V2 : V2; -fun reverence_N : N; -fun reverence_V2 : V2; -fun reverend_A : A; -fun reverend_N : N; -fun reverent_A : A; -fun reverential_A : A; -fun reverentially_Adv : Adv; -fun reverie_N : N; -fun revers_N : N; -fun reversal_N : N; -fun reverse_A : A; -fun reverse_N : N; -fun reverse_V : V; -fun reverse_V2 : V2; -fun reversed_A : A; -fun reversely_Adv : Adv; -fun reversibility_N : N; -fun reversible_A : A; -fun reversible_N : N; -fun reversibly_Adv : Adv; -fun reversion_N : N; -fun reversionary_A : A; -fun reversioner_N : N; -fun revert_V : V; -fun revertible_A : A; -fun revetment_N : N; -fun review_N : N; -fun review_V : V; -fun review_V2 : V2; -fun reviewer_N : N; -fun revile_V : V; -fun revile_V2 : V2; -fun revise_N : N; -fun revise_V : V; -fun revise_V2 : V2; -fun revised_A : A; -fun reviser_N : N; -fun revision_N : N; -fun revisionism_N : N; -fun revisionist_N : N; -fun revisit_V2 : V2; -fun revitalization_N : N; -fun revitalize_V2 : V2; -fun revitalized_A : A; -fun revival_N : N; -fun revivalism_N : N; -fun revivalist_N : N; -fun revivalistic_A : A; -fun revive_V : V; -fun revive_V2 : V2; -fun revived_A : A; -fun revivify_V2 : V2; -fun revocable_A : A; -fun revocation_N : N; -fun revoke_N : N; -fun revoke_V : V; -fun revoke_V2 : V2; -fun revolt_N : N; -fun revolt_V : V; -fun revolt_V2 : V2; -fun revolting_A : A; -fun revolution_N : N; -fun revolutionary_A : A; -fun revolutionary_N : N; -fun revolutionism_N : N; -fun revolutionist_N : N; -fun revolutionize_V2 : V2; -fun revolve_V : V; -fun revolve_V2 : V2; -fun revolver_N : N; -fun revue_N : N; -fun revulsion_N : N; -fun rewa_rewa_N : N; -fun reward_N : N; -fun reward_V2 : V2; -fun rewardful_A : A; -fun rewarding_A : A; -fun rewardingly_Adv : Adv; -fun rewire_V2 : V2; -fun reword_V2 : V2; -fun rewording_N : N; -fun rework_V2 : V2; -fun rewrite_N : N; -fun rewrite_V2 : V2; -fun rewriting_N : N; -fun rh_negative_A : A; -fun rh_positive_A : A; -fun rhabdomyoma_N : N; -fun rhabdomyosarcoma_N : N; -fun rhabdovirus_N : N; -fun rhagades_N : N; -fun rhapsodize_V : V; -fun rhapsody_N : N; -fun rhea_N : N; -fun rhenish_A : A; -fun rhenium_N : N; -fun rheologic_A : A; -fun rheology_N : N; -fun rheometer_N : N; -fun rheostat_N : N; -fun rhesus_N : N; -fun rhetoric_N : N; -fun rhetorical_A : A; -fun rhetorically_Adv : Adv; -fun rhetorician_N : N; -fun rheum_N : N; -fun rheumatic_A : A; -fun rheumatic_N : N; -fun rheumatism_N : N; -fun rheumatoid_A : A; -fun rheumatologist_N : N; -fun rheumatology_N : N; -fun rheumy_A : A; -fun rhinal_A : A; -fun rhinencephalon_N : N; -fun rhinestone_N : N; -fun rhinion_N : N; -fun rhinitis_N : N; -fun rhino_N : N; -fun rhinoceros_N : N; -fun rhinolaryngology_N : N; -fun rhinopathy_N : N; -fun rhinophyma_N : N; -fun rhinorrhea_N : N; -fun rhinoscope_N : N; -fun rhinoscopy_N : N; -fun rhinosporidiosis_N : N; -fun rhinostenosis_N : N; -fun rhinotomy_N : N; -fun rhinotracheitis_N : N; -fun rhinovirus_N : N; -fun rhizoctinia_N : N; -fun rhizoid_N : N; -fun rhizoidal_A : A; -fun rhizomatous_A : A; -fun rhizome_N : N; -fun rhizomorph_N : N; -fun rhizopod_N : N; -fun rhizopus_N : N; -fun rhizotomy_N : N; -fun rho_N : N; -fun rhodium_N : N; -fun rhodochrosite_N : N; -fun rhododendron_N : N; -fun rhodolite_N : N; -fun rhodonite_N : N; -fun rhomb_N : N; -fun rhombic_A : A; -fun rhombohedral_A : A; -fun rhombohedron_N : N; -fun rhomboid_A : A; -fun rhomboid_N : N; -fun rhombus_N : N; -fun rhonchus_N : N; -fun rhubarb_N : N; -fun rhyme_N : N; -fun rhyme_V : V; -fun rhyme_V2 : V2; -fun rhymed_A : A; -fun rhymer_N : N; -fun rhymester_N : N; -fun rhyolite_N : N; -fun rhythm_N : N; -fun rhythmic_A : A; -fun rhythmical_A : A; -fun rhythmically_Adv : Adv; -fun rhythmicity_N : N; -fun rib_N : N; -fun rib_V2 : V2; -fun ribald_A : A; -fun ribald_N : N; -fun ribaldry_N : N; -fun riband_N : N; -fun ribavirin_N : N; -fun ribbed_A : A; -fun ribbing_N : N; -fun ribbon_N : N; -fun ribbon_shaped_A : A; -fun ribbonfish_N : N; -fun ribbonlike_A : A; -fun ribier_N : N; -fun ribless_A : A; -fun riblike_A : A; -fun riboflavin_N : N; -fun ribonuclease_N : N; -fun ribose_N : N; -fun ribosome_N : N; -fun rice_N : N; -fun rice_paper_N : N; -fun ricegrass_N : N; -fun ricer_N : N; -fun rich_A : A; -fun richness_N : N; -fun richweed_N : N; -fun ricin_N : N; -fun rick_N : N; -fun rick_V2 : V2; -fun rickets_N : N; -fun rickettsia_N : N; -fun rickettsial_A : A; -fun rickettsialpox_N : N; -fun rickety_A : A; -fun rickey_N : N; -fun rickrack_N : N; -fun rickshaw_N : N; -fun rickshaw_V2 : V2; -fun ricochet_N : N; -fun ricochet_V : V; -fun ricochet_V2 : V2; -fun ricotta_N : N; -fun rictus_N : N; -fun rid_V : V; -fun rid_V2 : V2; -fun riddance_N : N; -fun riddle_N : N; -fun riddle_V2 : V2; -fun riddled_A : A; -fun ride_N : N; -fun ride_V : V; -fun ride_V2 : V2; -fun rider_N : N; -fun riderless_A : A; -fun ridge_N : N; -fun ridge_V2 : V2; -fun ridge_tile_N : N; -fun ridged_A : A; -fun ridgeling_N : N; -fun ridgepole_N : N; -fun ridicule_N : N; -fun ridicule_V2 : V2; -fun ridiculous_A : A; -fun riding_N : N; -fun riding_habit_N : N; -fun riding_lamp_N : N; -fun riding_light_N : N; -fun riding_master_N : N; -fun riding_school_N : N; -fun ridley_N : N; -fun riel_N : N; -fun riesling_N : N; -fun rifampin_N : N; -fun rife_A : A; -fun riff_N : N; -fun riff_raff_N : N; -fun riffle_N : N; -fun riffle_V : V; -fun riffle_V2 : V2; -fun rifle_N : N; -fun rifle_V2 : V2; -fun rifle_range_N : N; -fun rifle_shot_N : N; -fun riflebird_N : N; -fun rifled_A : A; -fun rifleman_N : N; -fun rift_N : N; -fun rift_valley_N : N; -fun rig_N : N; -fun rig_V : V; -fun rig_V2 : V2; -fun rigatoni_N : N; -fun rigged_A : A; -fun rigger_N : N; -fun rigging_N : N; -fun right_A : A; -fun right_Adv : Adv; -fun right_N : N; -fun right_V2 : V2; -fun right_angled_A : A; -fun right_angled_A : A; -fun right_down_A : A; -fun right_down_Adv : Adv; -fun right_down_Adv : Adv; -fun right_eyed_A : A; -fun right_hand_A : A; -fun right_hand_A : A; -fun right_handed_A : A; -fun right_handed_A : A; -fun right_handedness_N : N; -fun right_hander_N : N; -fun right_hander_N : N; -fun right_minded_A : A; -fun right_minded_A : A; -fun right_side_out_A : A; -fun right_side_up_A : A; -fun right_smart_A : A; -fun right_turn_N : N; -fun right_wing_N : N; -fun right_winger_N : N; -fun righteous_A : A; -fun righteously_Adv : Adv; -fun righteousness_N : N; -fun rightful_A : A; -fun rightfully_Adv : Adv; -fun rightfulness_N : N; -fun rightish_A : A; -fun rightism_N : N; -fun rightist_A : A; -fun rightist_N : N; -fun rightly_Adv : Adv; -fun rightmost_A : A; -fun rightness_N : N; -fun rigid_A : A; -fun rigidity_N : N; -fun rigidly_Adv : Adv; -fun rigmarole_N : N; -fun rigor_mortis_N : N; -fun rigorous_A : A; -fun rigorously_Adv : Adv; -fun rigour_N : N; -fun rigout_N : N; -fun rijsttaffel_N : N; -fun rile_V2 : V2; -fun rill_N : N; -fun rim_N : N; -fun rim_V2 : V2; -fun rima_N : N; -fun rime_N : N; -fun rime_V2 : V2; -fun rimless_A : A; -fun rimmed_A : A; -fun rimose_A : A; -fun rimu_N : N; -fun rind_N : N; -fun rind_V2 : V2; -fun rinderpest_N : N; -fun ring_N : N; -fun ring_V : V; -fun ring_V2 : V2; -fun ring_armour_N : N; -fun ring_around_the_rosy_N : N; -fun ring_finger_N : N; -fun ring_mail_N : N; -fun ring_road_N : N; -fun ringdove_N : N; -fun ringed_A : A; -fun ringer_N : N; -fun ringgit_N : N; -fun ringhals_N : N; -fun ringing_N : N; -fun ringleader_N : N; -fun ringlet_N : N; -fun ringleted_A : A; -fun ringlike_A : A; -fun ringmaster_N : N; -fun rings_N : N; -fun ringside_N : N; -fun ringtail_N : N; -fun ringworm_N : N; -fun rink_N : N; -fun rinse_N : N; -fun rinse_V2 : V2; -fun riot_N : N; -fun riot_V : V; -fun rioter_N : N; -fun rioting_N : N; -fun riotous_A : A; -fun rip_N : N; -fun rip_V : V; -fun rip_V2 : V2; -fun rip_off_N : N; -fun rip_roaring_A : A; -fun riparian_A : A; -fun ripcord_N : N; -fun ripe_A : A; -fun ripely_Adv : Adv; -fun ripen_V : V; -fun ripen_V2 : V2; -fun ripeness_N : N; -fun ripening_N : N; -fun riposte_N : N; -fun riposte_V : V; -fun ripper_N : N; -fun ripple_N : N; -fun ripple_V : V; -fun ripple_V2 : V2; -fun rippled_A : A; -fun ripsaw_N : N; -fun riptide_N : N; -fun rise_N : N; -fun rise_V : V; -fun rise_V2 : V2; -fun rise_VA : VA; -fun risen_A : A; -fun riser_N : N; -fun risibility_N : N; -fun risible_A : A; -fun rising_A : A; -fun rising_N : N; -fun risk_N : N; -fun risk_V2 : V2; -fun risk_VS : VS; -fun risk_free_A : A; -fun riskily_Adv : Adv; -fun riskiness_N : N; -fun risklessness_N : N; -fun risky_A : A; -fun risotto_N : N; -fun risque_A : A; -fun rissole_N : N; -fun rite_N : N; -fun ritonavir_N : N; -fun ritual_A : A; -fun ritual_N : N; -fun ritualism_N : N; -fun ritualist_N : N; -fun ritualistic_A : A; -fun ritz_N : N; -fun ritzy_A : A; -fun rival_N : N; -fun rival_V2 : V2; -fun rivalry_N : N; -fun rive_V : V; -fun rive_V2 : V2; -fun river_N : N; -fun river_basin_N : N; -fun river_bed_N : N; -fun riverbank_N : N; -fun riverbed_N : N; -fun riverside_N : N; -fun rivet_N : N; -fun rivet_V : V; -fun rivet_V2 : V2; -fun riveter_N : N; -fun rivulet_N : N; -fun rivulus_N : N; -fun riyal_omani_N : N; -fun rly_N : N; -fun rm_N : N; -fun rn_N : N; -fun roach_N : N; -fun road_N : N; -fun road_book_N : N; -fun road_hog_N : N; -fun road_metal_N : N; -fun road_sense_N : N; -fun road_to_damascus_PN : PN; -fun roadbed_N : N; -fun roadblock_N : N; -fun roadbook_N : N; -fun roadhouse_N : N; -fun roadkill_N : N; -fun roadless_A : A; -fun roadman_N : N; -fun roadmender_N : N; -fun roadrunner_N : N; -fun roads_N : N; -fun roadside_N : N; -fun roadstead_N : N; -fun roadster_N : N; -fun roadway_N : N; -fun roadworthiness_N : N; -fun roadworthy_A : A; -fun roam_V : V; -fun roam_V2 : V2; -fun roan_A : A; -fun roan_N : N; -fun roar_N : N; -fun roar_V : V; -fun roar_V2 : V2; -fun roarer_N : N; -fun roaring_A : A; -fun roaring_Adv : Adv; -fun roast_A : A; -fun roast_N : N; -fun roast_V : V; -fun roast_V2 : V2; -fun roaster_N : N; -fun roasting_N : N; -fun rob_V2 : V2; -fun robalo_N : N; -fun robber_N : N; -fun robbery_N : N; -fun robe_N : N; -fun robe_V : V; -fun robe_V2 : V2; -fun robin_N : N; -fun roble_N : N; -fun robot_N : N; -fun robotic_A : A; -fun robotics_N : N; -fun robust_A : A; -fun robustly_Adv : Adv; -fun robustness_N : N; -fun roc_N : N; -fun roccella_N : N; -fun rock_N : N; -fun rock_V : V; -fun rock_V2 : V2; -fun rock_'n_roll_N : N; -fun rock_bottom_N : N; -fun rock_cake_N : N; -fun rock_climbing_N : N; -fun rock_crystal_N : N; -fun rock_garden_N : N; -fun rock_inhabiting_A : A; -fun rock_loving_A : A; -fun rock_plant_N : N; -fun rock_ribbed_A : A; -fun rock_salmon_N : N; -fun rock_salt_N : N; -fun rockabilly_N : N; -fun rocker_N : N; -fun rockers_N : N; -fun rockery_N : N; -fun rocket_N : N; -fun rocket_V : V; -fun rocket_V2 : V2; -fun rocket_base_N : N; -fun rocket_propelled_A : A; -fun rocket_range_N : N; -fun rocketry_N : N; -fun rockfish_N : N; -fun rockiness_N : N; -fun rocking_chair_N : N; -fun rocking_horse_N : N; -fun rockrose_N : N; -fun rockslide_N : N; -fun rockweed_N : N; -fun rocky_A : A; -fun rococo_A : A; -fun rococo_N : N; -fun rod_N : N; -fun rod_shaped_A : A; -fun rodent_N : N; -fun rodeo_N : N; -fun rodomontade_N : N; -fun roe_N : N; -fun roebuck_N : N; -fun roentgen_N : N; -fun roentgenium_N : N; -fun roentgenogram_N : N; -fun roentgenographic_A : A; -fun roentgenography_N : N; -fun rofecoxib_N : N; -fun rogation_N : N; -fun rogue_N : N; -fun rogue_elephant_N : N; -fun roguery_N : N; -fun roguish_A : A; -fun roguishly_Adv : Adv; -fun roguishness_N : N; -fun roil_V : V; -fun roil_V2 : V2; -fun roisterer_N : N; -fun role_N : N; -fun role_1_N : N; -fun role_2_N : N; -fun roleplaying_N : N; -fun roll_N : N; -fun roll_V : V; -fun roll_V2 : V2; -fun roll_call_N : N; -fun roll_on_N : N; -fun roll_on_N : N; -fun rollback_N : N; -fun rolled_A : A; -fun rolled_into_one_A : A; -fun roller_N : N; -fun roller_skate_N : N; -fun roller_skater_N : N; -fun rollerblader_N : N; -fun rollerblading_N : N; -fun rollicking_A : A; -fun rollickingly_Adv : Adv; -fun rolling_N : N; -fun rolling_mill_N : N; -fun rolling_pin_N : N; -fun rolling_stock_N : N; -fun rollmops_N : N; -fun rollover_N : N; -fun roly_poly_N : N; -fun roly_poly_N : N; -fun romaic_A : A; -fun romaic_N : N; -fun roman_A : A; -fun roman_N : N; -fun romance_A : A; -fun romance_N : N; -fun romance_V : V; -fun romance_V2 : V2; -fun romanesque_N : N; -fun romanian_A : A; -fun romanian_N : N; -fun romantic_A : A; -fun romantic_N : N; -fun romantically_Adv : Adv; -fun romanticism_N : N; -fun romanticist_N : N; -fun romanticize_V : V; -fun romanticize_V2 : V2; -fun romany_A : A; -fun romany_N : N; -fun romish_A : A; -fun romp_N : N; -fun romp_V : V; -fun romp_V2 : V2; -fun romper_N : N; -fun rondeau_N : N; -fun rondel_N : N; -fun rondelet_N : N; -fun rondo_N : N; -fun roneo_N : N; -fun roneo_V2 : V2; -fun rontgen_N : N; -fun rood_N : N; -fun rood_tree_N : N; -fun roof_N : N; -fun roof_V2 : V2; -fun roof_garden_N : N; -fun roof_tree_N : N; -fun roofed_A : A; -fun roofer_N : N; -fun roofing_N : N; -fun roofless_A : A; -fun rooftop_N : N; -fun rooibos_N : N; -fun rook_N : N; -fun rook_V2 : V2; -fun rookery_N : N; -fun rookie_N : N; -fun room_N : N; -fun room_V : V; -fun room_mate_N : N; -fun roomed_A : A; -fun roomer_N : N; -fun roomette_N : N; -fun roomful_N : N; -fun roomily_Adv : Adv; -fun roommate_N : N; -fun roomy_A : A; -fun roost_N : N; -fun roost_V : V; -fun rooster_N : N; -fun root_N : N; -fun root_V : V; -fun root_V2 : V2; -fun rootage_N : N; -fun rootbound_A : A; -fun rooting_N : N; -fun rootle_V : V; -fun rootless_A : A; -fun rootlet_N : N; -fun roots_N : N; -fun rootstock_N : N; -fun rope_N : N; -fun rope_V2 : V2; -fun rope_a_dope_N : N; -fun rope_dancer_N : N; -fun rope_ladder_N : N; -fun rope_yard_N : N; -fun rope_yarn_N : N; -fun ropemaker_N : N; -fun roper_N : N; -fun ropewalk_N : N; -fun ropewalker_N : N; -fun ropeway_N : N; -fun ropey_A : A; -fun roping_N : N; -fun ropy_A : A; -fun roquefort_N : N; -fun roridula_N : N; -fun rorqual_N : N; -fun rosaceous_A : A; -fun rosary_N : N; -fun rose_A : A; -fun rose_N : N; -fun rose_V : V; -fun rose_V2 : V2; -fun rose_bed_N : N; -fun rose_colored_A : A; -fun rose_leaf_N : N; -fun rose_lilac_A : A; -fun rose_mauve_A : A; -fun rose_of_jericho_PN : PN; -fun rose_of_sharon_PN : PN; -fun rose_purple_A : A; -fun rose_red_A : A; -fun rose_red_A : A; -fun rose_root_N : N; -fun rose_tinted_A : A; -fun rose_water_N : N; -fun roseate_A : A; -fun rosebay_N : N; -fun rosebud_N : N; -fun rosefish_N : N; -fun roselle_N : N; -fun rosemaling_N : N; -fun rosemary_N : N; -fun rosette_N : N; -fun rosewood_N : N; -fun rosilla_N : N; -fun rosin_N : N; -fun rosin_V2 : V2; -fun rosinweed_N : N; -fun rosita_N : N; -fun roster_N : N; -fun rostrate_A : A; -fun rostrum_N : N; -fun rosy_A : A; -fun rot_N : N; -fun rot_V : V; -fun rot_V2 : V2; -fun rot_resistant_A : A; -fun rota_N : N; -fun rotarian_N : N; -fun rotary_A : A; -fun rotary_N : N; -fun rotatable_A : A; -fun rotate_V : V; -fun rotate_V2 : V2; -fun rotated_A : A; -fun rotation_N : N; -fun rotational_A : A; -fun rotationally_Adv : Adv; -fun rotatory_A : A; -fun rotavirus_N : N; -fun rote_N : N; -fun rotenone_N : N; -fun rotgut_N : N; -fun rotifer_N : N; -fun rotisserie_N : N; -fun rotl_N : N; -fun rotogravure_N : N; -fun rotor_N : N; -fun rotten_A : A; -fun rottenness_N : N; -fun rottenstone_N : N; -fun rotter_N : N; -fun rotund_A : A; -fun rotunda_N : N; -fun rotundity_N : N; -fun rouble_N : N; -fun roue_N : N; -fun rouge_N : N; -fun rouge_V : V; -fun rouge_V2 : V2; -fun rouged_A : A; -fun rough_A : A; -fun rough_Adv : Adv; -fun rough_N : N; -fun rough_V2 : V2; -fun rough_and_ready_A : A; -fun rough_and_tumble_A : A; -fun rough_and_tumble_A : A; -fun rough_and_tumble_N : N; -fun rough_dry_V2 : V2; -fun rough_haired_A : A; -fun rough_hewn_A : A; -fun rough_house_V : V; -fun rough_house_V2 : V2; -fun rough_spoken_A : A; -fun rough_spoken_A : A; -fun roughage_N : N; -fun roughcast_N : N; -fun roughcast_V2 : V2; -fun roughdried_A : A; -fun roughen_V : V; -fun roughen_V2 : V2; -fun roughhewn_A : A; -fun roughish_A : A; -fun roughly_Adv : Adv; -fun roughneck_N : N; -fun roughness_N : N; -fun roughrider_N : N; -fun roughshod_A : A; -fun roulade_N : N; -fun rouleau_N : N; -fun roulette_N : N; -fun round_A : A; -fun round_Adv : Adv; -fun round_N : N; -fun round_V : V; -fun round_V2 : V2; -fun round_arm_A : A; -fun round_arm_A : A; -fun round_arm_Adv : Adv; -fun round_arm_Adv : Adv; -fun round_backed_A : A; -fun round_bottomed_A : A; -fun round_eyed_A : A; -fun round_fruited_A : A; -fun round_hand_N : N; -fun round_shot_N : N; -fun round_shouldered_A : A; -fun round_the_clock_A : A; -fun round_the_clock_Adv : Adv; -fun roundabout_A : A; -fun roundabout_N : N; -fun rounded_A : A; -fun roundedness_N : N; -fun roundel_N : N; -fun roundelay_N : N; -fun rounder_N : N; -fun rounders_N : N; -fun roundhead_N : N; -fun roundhouse_N : N; -fun rounding_N : N; -fun roundish_A : A; -fun roundly_Adv : Adv; -fun roundness_N : N; -fun roundsman_N : N; -fun roundup_N : N; -fun rouse_V : V; -fun rouse_V2 : V2; -fun rousing_A : A; -fun roust_V2 : V2; -fun rout_N : N; -fun rout_V2 : V2; -fun route_N : N; -fun route_V2 : V2; -fun routemarch_N : N; -fun router_N : N; -fun routine_A : A; -fun routine_N : N; -fun routinely_Adv : Adv; -fun roux_N : N; -fun rove_V : V; -fun rove_V2 : V2; -fun rover_N : N; -fun row_N : N; -fun row_V : V; -fun row_V2 : V2; -fun rowan_N : N; -fun rowan_berry_N : N; -fun rowan_tree_N : N; -fun rowanberry_N : N; -fun rowboat_N : N; -fun rowdily_Adv : Adv; -fun rowdiness_N : N; -fun rowdy_A : A; -fun rowdy_N : N; -fun rowdyism_N : N; -fun rowel_N : N; -fun rower_N : N; -fun rowing_N : N; -fun rowing_boat_N : N; -fun rowing_club_N : N; -fun rowlock_N : N; -fun royal_A : A; -fun royal_N : N; -fun royalism_N : N; -fun royalist_N : N; -fun royally_Adv : Adv; -fun royalty_N : N; -fun rpm_N : N; -fun rspca_N : N; -fun rub_N : N; -fun rub_V : V; -fun rub_V2 : V2; -fun rub_a_dub_N : N; -fun rub_a_dub_N : N; -fun rub_down_N : N; -fun rub_up_N : N; -fun rubato_N : N; -fun rubber_A : A; -fun rubber_N : N; -fun rubber_V2 : V2; -fun rubber_necking_V : V; -fun rubber_stamp_V2 : V2; -fun rubberize_V2 : V2; -fun rubberneck_N : N; -fun rubberneck_V : V; -fun rubbery_A : A; -fun rubbing_N : N; -fun rubbish_N : N; -fun rubbish_V2 : V2; -fun rubbishing_N : N; -fun rubbishy_A : A; -fun rubble_N : N; -fun rubdown_N : N; -fun rubefacient_N : N; -fun rubel_N : N; -fun rubicelle_N : N; -fun rubicon_N : N; -fun rubicund_A : A; -fun rubidium_N : N; -fun ruble_N : N; -fun rubric_N : N; -fun ruby_A : A; -fun ruby_N : N; -fun ruck_N : N; -fun ruck_V : V; -fun ruck_V2 : V2; -fun rucksack_N : N; -fun ruckus_N : N; -fun rudapithecus_N : N; -fun rudd_N : N; -fun rudder_N : N; -fun rudder_like_A : A; -fun rudderfish_N : N; -fun rudderless_A : A; -fun rudderpost_N : N; -fun ruddiness_N : N; -fun ruddle_N : N; -fun ruddle_V2 : V2; -fun ruddy_A : A; -fun rude_A : A; -fun rudeness_N : N; -fun rudiment_N : N; -fun rudimentary_A : A; -fun rue_N : N; -fun rue_V2 : V2; -fun rueful_A : A; -fun ruefully_Adv : Adv; -fun ruff_N : N; -fun ruff_V : V; -fun ruff_V2 : V2; -fun ruffian_N : N; -fun ruffianism_N : N; -fun ruffianly_A : A; -fun ruffle_N : N; -fun ruffle_V : V; -fun ruffle_V2 : V2; -fun rug_N : N; -fun ruga_N : N; -fun rugby_N : N; -fun rugged_A : A; -fun ruggedization_N : N; -fun ruggedly_Adv : Adv; -fun ruggedness_N : N; -fun rugger_N : N; -fun rugose_A : A; -fun rugulah_N : N; -fun ruin_N : N; -fun ruin_V2 : V2; -fun ruin_VS : VS; -fun ruination_N : N; -fun ruinous_A : A; -fun ruinously_Adv : Adv; -fun rule_N : N; -fun rule_V : V; -fun rule_V2 : V2; -fun rule_VS : VS; -fun ruled_A : A; -fun ruler_N : N; -fun rulership_N : N; -fun ruling_A : A; -fun ruling_N : N; -fun ruly_A : A; -fun rum_N : N; -fun rum_runner_N : N; -fun rumba_N : N; -fun rumble_N : N; -fun rumble_V : V; -fun rumble_V2 : V2; -fun rumbling_N : N; -fun rumbustious_A : A; -fun rumen_N : N; -fun ruminant_A : A; -fun ruminant_N : N; -fun ruminate_V : V; -fun rumination_N : N; -fun ruminative_A : A; -fun rummage_N : N; -fun rummage_V : V; -fun rummage_V2 : V2; -fun rummer_N : N; -fun rummy_A : A; -fun rummy_N : N; -fun rumor_N : N; -fun rumor_V2 : V2; -fun rumor_V2V : V2V; -fun rumor_VS : VS; -fun rumour_N : N; -fun rumour_V2 : V2; -fun rumour_monger_N : N; -fun rump_N : N; -fun rump_steak_N : N; -fun rumple_V2 : V2; -fun rumpus_N : N; -fun rumrunner_N : N; -fun run_N : N; -fun run_V : V; -fun run_V2 : V2; -fun run_VS : VS; -fun run_down_A : A; -fun run_of_the_mill_A : A; -fun run_of_the_mill_A : A; -fun run_off_N : N; -fun run_on_A : A; -fun run_through_N : N; -fun run_through_N : N; -fun run_time_N : N; -fun run_up_N : N; -fun run_up_N : N; -fun runaway_A : A; -fun runaway_N : N; -fun runcinate_A : A; -fun rundle_N : N; -fun rundown_A : A; -fun rundown_N : N; -fun rune_N : N; -fun rung_N : N; -fun rung_V2V : V2V; -fun runic_A : A; -fun runnel_N : N; -fun runner_N : N; -fun runner_up_N : N; -fun runner_up_N : N; -fun running_A : A; -fun running_N : N; -fun running_board_N : N; -fun runny_A : A; -fun runoff_N : N; -fun runproof_A : A; -fun runt_N : N; -fun runup_N : N; -fun runway_N : N; -fun rupee_N : N; -fun rupestral_A : A; -fun rupiah_N : N; -fun rupture_N : N; -fun rupture_V : V; -fun rupture_V2 : V2; -fun rupturewort_N : N; -fun rural_A : A; -fun ruralism_N : N; -fun ruralist_N : N; -fun rurality_N : N; -fun rurally_Adv : Adv; -fun ruritanian_A : A; -fun ruse_N : N; -fun rush_A : A; -fun rush_N : N; -fun rush_V : V; -fun rush_V2 : V2; -fun rush_V2V : V2V; -fun rush_VS : VS; -fun rusher_N : N; -fun rushlight_N : N; -fun rushlike_A : A; -fun rushy_A : A; -fun rusk_N : N; -fun russet_A : A; -fun russet_N : N; -fun russian_A : A; -fun russian_N : N; -fun rust_A : A; -fun rust_N : N; -fun rust_V : V; -fun rust_V2 : V2; -fun rust_colored_A : A; -fun rust_free_A : A; -fun rust_red_A : A; -fun rust_resistant_A : A; -fun rusted_A : A; -fun rustic_A : A; -fun rustic_N : N; -fun rusticate_V : V; -fun rusticate_V2 : V2; -fun rustication_N : N; -fun rusticity_N : N; -fun rustiness_N : N; -fun rustle_N : N; -fun rustle_V : V; -fun rustle_V2 : V2; -fun rustler_N : N; -fun rustless_A : A; -fun rustling_N : N; -fun rustproof_A : A; -fun rusty_A : A; -fun rusty_brown_A : A; -fun rut_N : N; -fun rut_V2 : V2; -fun rutabaga_N : N; -fun ruthenium_N : N; -fun rutherford_N : N; -fun rutherfordium_N : N; -fun ruthless_A : A; -fun ruthlessly_Adv : Adv; -fun ruthlessness_N : N; -fun rutile_N : N; -fun rutted_A : A; -fun rwandan_A : A; -fun rwandan_N : N; -fun rya_N : N; -fun rydberg_N : N; -fun rye_N : N; -fun rye_bread_N : N; -fun s_shaped_A : A; -fun sabahan_A : A; -fun sabahan_N : N; -fun sabbat_N : N; -fun sabbatarian_A : A; -fun sabbatarian_N : N; -fun sabbath_N : N; -fun sabbatia_N : N; -fun sabbatical_A : A; -fun sabbatical_N : N; -fun saber_N : N; -fun saber_toothed_A : A; -fun sabicu_N : N; -fun sabin_N : N; -fun sable_A : A; -fun sable_N : N; -fun sabot_N : N; -fun sabotage_N : N; -fun sabotage_V2 : V2; -fun saboteur_N : N; -fun sabra_N : N; -fun sabre_N : N; -fun sabre_V2 : V2; -fun sabre_rattling_N : N; -fun sabre_toothed_A : A; -fun sac_N : N; -fun saccade_N : N; -fun saccadic_A : A; -fun saccharin_N : N; -fun saccharine_A : A; -fun saccharinity_N : N; -fun sacculated_A : A; -fun saccule_N : N; -fun sacerdotal_A : A; -fun sacerdotalism_N : N; -fun sachem_N : N; -fun sachet_N : N; -fun sack_N : N; -fun sack_V2 : V2; -fun sack_race_N : N; -fun sackbut_N : N; -fun sackcloth_N : N; -fun sacking_N : N; -fun sacral_A : A; -fun sacrament_N : N; -fun sacramental_A : A; -fun sacred_A : A; -fun sacredness_N : N; -fun sacrifice_N : N; -fun sacrifice_V : V; -fun sacrifice_V2 : V2; -fun sacrificeable_A : A; -fun sacrificer_N : N; -fun sacrificial_A : A; -fun sacrilege_N : N; -fun sacrilegious_A : A; -fun sacrilegiously_Adv : Adv; -fun sacrilegiousness_N : N; -fun sacristan_N : N; -fun sacristy_N : N; -fun sacrosanct_A : A; -fun sacrum_N : N; -fun sad_A : A; -fun sad_faced_A : A; -fun sadden_V : V; -fun sadden_V2 : V2; -fun saddle_N : N; -fun saddle_V : V; -fun saddle_V2 : V2; -fun saddle_shaped_A : A; -fun saddle_sore_A : A; -fun saddle_sore_A : A; -fun saddleback_N : N; -fun saddlebag_N : N; -fun saddlebill_N : N; -fun saddled_A : A; -fun saddler_N : N; -fun saddlery_N : N; -fun sadhe_N : N; -fun sadhu_N : N; -fun sadism_N : N; -fun sadist_N : N; -fun sadistic_A : A; -fun sadly_Adv : Adv; -fun sadness_N : N; -fun sado_masochist_N : N; -fun sadomasochism_N : N; -fun sadomasochist_N : N; -fun sadomasochistic_A : A; -fun sae_N : N; -fun safari_N : N; -fun safe_A : A; -fun safe_N : N; -fun safe_and_sound_A : A; -fun safe_conduct_N : N; -fun safe_conduct_N : N; -fun safe_deposit_A : A; -fun safe_deposit_N : N; -fun safe_deposit_N : N; -fun safebreaker_N : N; -fun safecracker_N : N; -fun safeguard_N : N; -fun safeguard_V2 : V2; -fun safehold_N : N; -fun safekeeping_N : N; -fun safely_Adv : Adv; -fun safeness_N : N; -fun safety_N : N; -fun safety_belt_N : N; -fun safety_bolt_N : N; -fun safety_catch_N : N; -fun safety_curtain_N : N; -fun safety_factor_N : N; -fun safety_lamp_N : N; -fun safety_lock_N : N; -fun safety_match_N : N; -fun safety_pin_N : N; -fun safety_razor_N : N; -fun safety_related_A : A; -fun safety_valve_N : N; -fun safflower_N : N; -fun saffron_N : N; -fun safranine_N : N; -fun sag_N : N; -fun sag_V : V; -fun saga_N : N; -fun sagacious_A : A; -fun sagacity_N : N; -fun sage_A : A; -fun sage_N : N; -fun sage_green_A : A; -fun sage_green_N : N; -fun sagebrush_N : N; -fun sagitta_N : N; -fun sagittal_A : A; -fun sagittate_A : A; -fun sagittate_leaf_N : N; -fun sago_N : N; -fun saguaro_N : N; -fun sahib_N : N; -fun said_A : A; -fun saiga_N : N; -fun sail_N : N; -fun sail_V : V; -fun sail_V2 : V2; -fun sailboat_N : N; -fun sailcloth_N : N; -fun sailfish_N : N; -fun sailing_N : N; -fun sailing_boat_N : N; -fun sailing_master_N : N; -fun sailing_race_N : N; -fun sailing_ship_N : N; -fun sailing_vessel_N : N; -fun sailmaker_N : N; -fun sailor_N : N; -fun sailor's_choice_N : N; -fun sainfoin_N : N; -fun saint_N : N; -fun saint's_day_N : N; -fun sainted_A : A; -fun sainthood_N : N; -fun saintlike_A : A; -fun saintliness_N : N; -fun saintly_A : A; -fun sake_N : N; -fun sake_1_N : N; -fun sake_2_N : N; -fun saki_N : N; -fun sal_volatile_N : N; -fun salaam_N : N; -fun salaam_V : V; -fun salaam_V2 : V2; -fun salability_N : N; -fun salable_A : A; -fun salacious_A : A; -fun salaciousness_N : N; -fun salacity_N : N; -fun salad_N : N; -fun salad_dressing_N : N; -fun salad_oil_N : N; -fun salai_N : N; -fun salal_N : N; -fun salamander_N : N; -fun salamandriform_A : A; -fun salami_N : N; -fun salaried_A : A; -fun salary_N : N; -fun salat_N : N; -fun sale_N : N; -fun saleable_A : A; -fun saleroom_N : N; -fun salesclerk_N : N; -fun salesgirl_N : N; -fun salesman_N : N; -fun salesmanship_N : N; -fun salesperson_N : N; -fun saleswoman_N : N; -fun salicylate_N : N; -fun salience_N : N; -fun salient_A : A; -fun salient_N : N; -fun saliferous_A : A; -fun saline_A : A; -fun saline_N : N; -fun salinity_N : N; -fun salinometer_N : N; -fun saliva_N : N; -fun salivary_A : A; -fun salivate_V : V; -fun salivation_N : N; -fun sallet_N : N; -fun sallow_A : A; -fun sallow_N : N; -fun sallow_V : V; -fun sallow_V2 : V2; -fun sallowness_N : N; -fun sally_N : N; -fun sally_V : V; -fun salmagundi_N : N; -fun salmi_N : N; -fun salmon_N : N; -fun salmonberry_N : N; -fun salmonella_N : N; -fun salmonellosis_N : N; -fun salmonid_N : N; -fun salol_N : N; -fun salon_N : N; -fun saloon_N : N; -fun salp_N : N; -fun salpiglossis_N : N; -fun salpingectomy_N : N; -fun salpingitis_N : N; -fun salpinx_N : N; -fun salsa_N : N; -fun salsify_N : N; -fun salsilla_N : N; -fun salt_A : A; -fun salt_N : N; -fun salt_V2 : V2; -fun salt_cellar_N : N; -fun salt_lick_N : N; -fun saltation_N : N; -fun saltbox_N : N; -fun saltbush_N : N; -fun saltcellar_N : N; -fun salted_A : A; -fun salter_N : N; -fun saltine_N : N; -fun saltiness_N : N; -fun salting_N : N; -fun saltish_A : A; -fun saltlike_A : A; -fun saltpan_N : N; -fun saltpetre_N : N; -fun saltshaker_N : N; -fun saltwater_N : N; -fun saltworks_N : N; -fun saltwort_N : N; -fun salty_A : A; -fun salubrious_A : A; -fun salubrity_N : N; -fun salutary_A : A; -fun salutation_N : N; -fun salutatorian_N : N; -fun salute_N : N; -fun salute_V : V; -fun salute_V2 : V2; -fun salvadorean_A : A; -fun salvadorean_N : N; -fun salvage_N : N; -fun salvage_V2 : V2; -fun salvageable_A : A; -fun salvager_N : N; -fun salvation_N : N; -fun salve_N : N; -fun salve_V2 : V2; -fun salver_N : N; -fun salverform_A : A; -fun salvia_N : N; -fun salvific_A : A; -fun salvinorin_N : N; -fun salvo_N : N; -fun salwar_N : N; -fun samara_N : N; -fun samaritan_N : N; -fun samarium_N : N; -fun samarskite_N : N; -fun samba_N : N; -fun sambar_N : N; -fun sambuca_N : N; -fun same_A : A; -fun same_Adv : Adv; -fun samekh_N : N; -fun sameness_N : N; -fun samisen_N : N; -fun samite_N : N; -fun samizdat_N : N; -fun samoan_A : A; -fun samoan_N : N; -fun samosa_N : N; -fun samovar_N : N; -fun sampan_N : N; -fun sample_N : N; -fun sample_V2 : V2; -fun sampler_N : N; -fun sampling_N : N; -fun samsara_N : N; -fun samurai_N : N; -fun san_marinese_A : A; -fun san_marinese_N : N; -fun sanatorium_N : N; -fun sanctification_N : N; -fun sanctify_V2 : V2; -fun sanctimonious_A : A; -fun sanctimoniously_Adv : Adv; -fun sanctimoniousness_N : N; -fun sanction_N : N; -fun sanction_V2 : V2; -fun sanctionative_A : A; -fun sanctity_N : N; -fun sanctuary_N : N; -fun sanctum_N : N; -fun sand_N : N; -fun sand_V2 : V2; -fun sand_bar_N : N; -fun sandal_N : N; -fun sandaled_A : A; -fun sandalled_A : A; -fun sandalwood_N : N; -fun sandarac_N : N; -fun sandbag_N : N; -fun sandbagger_N : N; -fun sandbank_N : N; -fun sandbar_N : N; -fun sandblast_N : N; -fun sandblast_V2 : V2; -fun sandblaster_N : N; -fun sandbox_N : N; -fun sandboy_N : N; -fun sandbur_N : N; -fun sanderling_N : N; -fun sandfish_N : N; -fun sandfly_N : N; -fun sandglass_N : N; -fun sandgrouse_N : N; -fun sandhi_N : N; -fun sandiness_N : N; -fun sandlot_N : N; -fun sandman_N : N; -fun sandpaper_N : N; -fun sandpaper_V : V; -fun sandpaper_V2 : V2; -fun sandpapery_A : A; -fun sandpiper_N : N; -fun sandpit_N : N; -fun sandstone_N : N; -fun sandstorm_N : N; -fun sandwich_N : N; -fun sandwich_V : V; -fun sandwich_V2 : V2; -fun sandwich_board_N : N; -fun sandwichman_N : N; -fun sandwort_N : N; -fun sandy_A : A; -fun sane_A : A; -fun sanely_Adv : Adv; -fun sang_froid_N : N; -fun sangapenum_N : N; -fun sangaree_N : N; -fun sango_N : N; -fun sangoma_N : N; -fun sanguinary_A : A; -fun sanguine_A : A; -fun sanguine_N : N; -fun sanguinity_N : N; -fun sanicle_N : N; -fun sanitariness_N : N; -fun sanitary_A : A; -fun sanitation_N : N; -fun sanitize_V2 : V2; -fun sanitized_A : A; -fun sanity_N : N; -fun sannup_N : N; -fun sannyasi_N : N; -fun sansevieria_N : N; -fun sanskrit_N : N; -fun santa_claus_N : N; -fun santims_N : N; -fun sap_N : N; -fun sap_V : V; -fun sap_V2 : V2; -fun saphead_N : N; -fun sapidity_N : N; -fun sapience_N : N; -fun sapiens_A : A; -fun sapient_A : A; -fun sapiential_A : A; -fun sapless_A : A; -fun sapling_N : N; -fun sapodilla_N : N; -fun saponaceous_A : A; -fun saponification_N : N; -fun saponified_A : A; -fun saponin_N : N; -fun sapote_N : N; -fun sapper_N : N; -fun sapphic_A : A; -fun sapphire_A : A; -fun sapphire_N : N; -fun sapphirine_A : A; -fun sapphirine_N : N; -fun sappy_A : A; -fun sapremia_N : N; -fun saprobe_N : N; -fun saprobic_A : A; -fun saprolite_N : N; -fun sapropel_N : N; -fun saprophagous_A : A; -fun saprophyte_N : N; -fun saprophytic_A : A; -fun sapsago_N : N; -fun sapsucker_N : N; -fun sapwood_N : N; -fun saquinavir_N : N; -fun saraband_N : N; -fun saracen_N : N; -fun saran_N : N; -fun sarawakian_A : A; -fun sarawakian_N : N; -fun sarcasm_N : N; -fun sarcastic_A : A; -fun sarcastically_Adv : Adv; -fun sarcenet_N : N; -fun sarcodinian_N : N; -fun sarcoidosis_N : N; -fun sarcolemma_N : N; -fun sarcolemmal_A : A; -fun sarcolemmic_A : A; -fun sarcoma_N : N; -fun sarcomere_N : N; -fun sarcophagus_N : N; -fun sarcoplasm_N : N; -fun sarcosine_N : N; -fun sarcosomal_A : A; -fun sarcosome_N : N; -fun sarcosporidian_N : N; -fun sard_N : N; -fun sardine_N : N; -fun sardonic_A : A; -fun sardonically_Adv : Adv; -fun sardonyx_N : N; -fun sari_N : N; -fun sarin_N : N; -fun sarong_N : N; -fun sarsaparilla_N : N; -fun sartorial_A : A; -fun sartorius_N : N; -fun sash_N : N; -fun sash_cord_N : N; -fun sash_line_N : N; -fun sashay_N : N; -fun sashay_V : V; -fun sashay_V2 : V2; -fun sashimi_N : N; -fun saskatoon_N : N; -fun sass_N : N; -fun sassaby_N : N; -fun sassafras_N : N; -fun sassenach_N : N; -fun satan_N : N; -fun satang_N : N; -fun satanic_A : A; -fun satanophobia_N : N; -fun satchel_N : N; -fun sate_V2 : V2; -fun sateen_N : N; -fun satellite_A : A; -fun satellite_N : N; -fun satellite_V2 : V2; -fun satiable_A : A; -fun satiate_A : A; -fun satiate_V2 : V2; -fun satiation_N : N; -fun satiety_N : N; -fun satin_A : A; -fun satin_N : N; -fun satinet_N : N; -fun satinleaf_N : N; -fun satinwood_N : N; -fun satiny_A : A; -fun satire_N : N; -fun satirical_A : A; -fun satirically_Adv : Adv; -fun satirist_N : N; -fun satirize_V2 : V2; -fun satisfaction_N : N; -fun satisfactorily_Adv : Adv; -fun satisfactoriness_N : N; -fun satisfactory_A : A; -fun satisfied_A : A; -fun satisfier_N : N; -fun satisfy_V : V; -fun satisfy_V2 : V2; -fun satisfying_A : A; -fun satori_N : N; -fun satrap_N : N; -fun satsuma_N : N; -fun saturate_V2 : V2; -fun saturated_A : A; -fun saturation_N : N; -fun saturday_N : N; -fun saturnalia_N : N; -fun saturniid_N : N; -fun saturnine_A : A; -fun satyr_N : N; -fun satyriasis_N : N; -fun satyric_A : A; -fun sauce_N : N; -fun sauce_V2 : V2; -fun sauce_louis_PN : PN; -fun sauce_boat_N : N; -fun saucepan_N : N; -fun saucepot_N : N; -fun saucer_N : N; -fun saucer_eyed_A : A; -fun saucer_eyed_A : A; -fun saucer_shaped_A : A; -fun saucily_Adv : Adv; -fun sauciness_N : N; -fun saucy_A : A; -fun saudi_arabian_A : A; -fun saudi_arabian_N : N; -fun sauerbraten_N : N; -fun sauerkraut_N : N; -fun sauna_N : N; -fun saunter_N : N; -fun saunter_V : V; -fun saunter_V2 : V2; -fun saunterer_N : N; -fun saurian_A : A; -fun saurian_N : N; -fun saurischian_N : N; -fun sauropod_N : N; -fun saury_N : N; -fun sausage_N : N; -fun sausage_dog_N : N; -fun sausage_meat_N : N; -fun sausage_roll_N : N; -fun saute_A : A; -fun saute_N : N; -fun saute_V2 : V2; -fun savage_A : A; -fun savage_N : N; -fun savage_V2 : V2; -fun savagely_Adv : Adv; -fun savageness_N : N; -fun savagery_N : N; -fun savanna_N : N; -fun savannah_N : N; -fun savant_N : N; -fun savarin_N : N; -fun save_N : N; -fun save_V : V; -fun save_V2 : V2; -fun save_all_N : N; -fun saved_A : A; -fun saveloy_N : N; -fun saver_N : N; -fun saving_A : A; -fun saving_N : N; -fun savings_N : N; -fun savings_bank_N : N; -fun savior_N : N; -fun saviour_N : N; -fun savoir_faire_N : N; -fun savoir_faire_N : N; -fun savor_V2 : V2; -fun savore_V2 : V2; -fun savory_A : A; -fun savory_N : N; -fun savour_N : N; -fun savour_V : V; -fun savour_V2 : V2; -fun savoury_A : A; -fun savoury_N : N; -fun savoy_N : N; -fun savvy_N : N; -fun savvy_V : V; -fun saw_N : N; -fun saw_V : V; -fun saw_V2 : V2; -fun saw_like_A : A; -fun saw_pit_N : N; -fun sawdust_N : N; -fun sawed_off_A : A; -fun sawfish_N : N; -fun sawfly_N : N; -fun sawhorse_N : N; -fun sawm_N : N; -fun sawmill_N : N; -fun sawpit_N : N; -fun sawtooth_N : N; -fun sawtoothed_edged_A : A; -fun sawwort_N : N; -fun sawyer_N : N; -fun sax_N : N; -fun saxhorn_N : N; -fun saxicolous_A : A; -fun saxifrage_N : N; -fun saxitoxin_N : N; -fun saxon_A : A; -fun saxon_N : N; -fun saxophone_N : N; -fun saxophonist_N : N; -fun say_N : N; -fun say_V : V; -fun say_V2 : V2; -fun say_VA : VA; -fun say_VS : VS; -fun say_VV : VV; -fun say_so_N : N; -fun saying_N : N; -fun scab_N : N; -fun scabbard_N : N; -fun scabby_A : A; -fun scabicide_N : N; -fun scabies_N : N; -fun scabious_N : N; -fun scablands_N : N; -fun scabrous_A : A; -fun scad_N : N; -fun scaffold_N : N; -fun scaffolding_N : N; -fun scalability_N : N; -fun scalable_A : A; -fun scalage_N : N; -fun scalar_A : A; -fun scalar_N : N; -fun scalawag_N : N; -fun scald_N : N; -fun scald_V2 : V2; -fun scale_N : N; -fun scale_V : V; -fun scale_V2 : V2; -fun scaled_A : A; -fun scaleless_A : A; -fun scalelike_A : A; -fun scalene_A : A; -fun scalenus_N : N; -fun scaler_N : N; -fun scalic_A : A; -fun scaliness_N : N; -fun scaling_N : N; -fun scaling_ladder_N : N; -fun scallop_N : N; -fun scallop_V2 : V2; -fun scallop_shell_N : N; -fun scallopine_N : N; -fun scallywag_N : N; -fun scalp_N : N; -fun scalp_V2 : V2; -fun scalpel_N : N; -fun scalper_N : N; -fun scaly_A : A; -fun scaly_tailed_A : A; -fun scam_N : N; -fun scam_V2 : V2; -fun scammony_N : N; -fun scamp_N : N; -fun scamp_V2 : V2; -fun scamper_N : N; -fun scamper_V : V; -fun scamper_V2 : V2; -fun scampi_N : N; -fun scan_N : N; -fun scan_V : V; -fun scan_V2 : V2; -fun scandal_N : N; -fun scandalization_N : N; -fun scandalize_V2 : V2; -fun scandalmonger_N : N; -fun scandalmongering_A : A; -fun scandalmongering_N : N; -fun scandalous_A : A; -fun scandalously_Adv : Adv; -fun scandalousness_N : N; -fun scandent_A : A; -fun scandinavian_A : A; -fun scandinavian_N : N; -fun scandium_N : N; -fun scanner_N : N; -fun scanning_N : N; -fun scansion_N : N; -fun scant_A : A; -fun scant_V2 : V2; -fun scantily_Adv : Adv; -fun scantiness_N : N; -fun scantling_N : N; -fun scanty_A : A; -fun scape_N : N; -fun scapegoat_N : N; -fun scapegrace_N : N; -fun scaphocephaly_N : N; -fun scaphopod_N : N; -fun scapose_A : A; -fun scapula_N : N; -fun scapular_A : A; -fun scapular_N : N; -fun scapulohumeral_A : A; -fun scar_N : N; -fun scar_V : V; -fun scar_V2 : V2; -fun scarab_N : N; -fun scarce_A : A; -fun scarcity_N : N; -fun scare_N : N; -fun scare_V : V; -fun scare_V2 : V2; -fun scarecrow_N : N; -fun scarecrowish_A : A; -fun scaremonger_N : N; -fun scarf_N : N; -fun scarf_pin_N : N; -fun scarify_V2 : V2; -fun scarlet_A : A; -fun scarlet_N : N; -fun scarlet_crimson_A : A; -fun scarlet_pink_A : A; -fun scarp_N : N; -fun scarper_V : V; -fun scarred_A : A; -fun scary_A : A; -fun scat_N : N; -fun scathing_A : A; -fun scathingly_Adv : Adv; -fun scatological_A : A; -fun scatology_N : N; -fun scatophagy_N : N; -fun scatter_N : N; -fun scatter_V : V; -fun scatter_V2 : V2; -fun scatterbrain_N : N; -fun scatterbrained_A : A; -fun scattered_A : A; -fun scattering_N : N; -fun scattershot_A : A; -fun scatty_A : A; -fun scaup_N : N; -fun scauper_N : N; -fun scavenge_V : V; -fun scavenger_N : N; -fun scenario_N : N; -fun scenarist_N : N; -fun scene_N : N; -fun scene_painter_N : N; -fun scene_shifter_N : N; -fun scene_stealer_N : N; -fun scenery_N : N; -fun sceneshifter_N : N; -fun scenic_A : A; -fun scenically_Adv : Adv; -fun scent_N : N; -fun scent_V2 : V2; -fun scented_A : A; -fun scentless_A : A; -fun scepter_N : N; -fun sceptered_A : A; -fun sceptic_N : N; -fun sceptical_A : A; -fun sceptically_Adv : Adv; -fun scepticism_N : N; -fun sceptre_N : N; -fun sceptred_A : A; -fun schedule_N : N; -fun schedule_V : V; -fun schedule_V2 : V2; -fun schedule_VV : VV; -fun scheduled_A : A; -fun scheduler_N : N; -fun scheduling_N : N; -fun scheelite_N : N; -fun schema_N : N; -fun schematic_A : A; -fun schematic_N : N; -fun schematically_Adv : Adv; -fun schematization_N : N; -fun scheme_N : N; -fun scheme_V : V; -fun scheme_V2 : V2; -fun schemer_N : N; -fun schemozzle_N : N; -fun scherzo_N : N; -fun schilling_N : N; -fun schipperke_N : N; -fun schism_N : N; -fun schismatic_A : A; -fun schismatically_Adv : Adv; -fun schist_N : N; -fun schistosome_N : N; -fun schistosomiasis_N : N; -fun schizocarp_N : N; -fun schizogony_N : N; -fun schizoid_A : A; -fun schizopetalon_N : N; -fun schizophrenia_N : N; -fun schizophrenic_A : A; -fun schizophrenic_N : N; -fun schizothymia_N : N; -fun schlemiel_N : N; -fun schlep_N : N; -fun schlep_V2 : V2; -fun schlepper_N : N; -fun schlimazel_N : N; -fun schlock_N : N; -fun schlockmeister_N : N; -fun schmaltz_N : N; -fun schmaltzy_A : A; -fun schmalz_N : N; -fun schmalzy_A : A; -fun schmeer_N : N; -fun schmooze_V : V; -fun schmuck_N : N; -fun schnapps_N : N; -fun schnauzer_N : N; -fun schnitzel_N : N; -fun schnook_N : N; -fun schnorkel_N : N; -fun schnorrer_N : N; -fun scholar_N : N; -fun scholarly_A : A; -fun scholarship_N : N; -fun scholastic_A : A; -fun scholastically_Adv : Adv; -fun scholasticism_N : N; -fun scholiast_N : N; -fun scholium_N : N; -fun school_N : N; -fun school_V2 : V2; -fun school_board_N : N; -fun schoolbag_N : N; -fun schoolbook_N : N; -fun schoolboy_N : N; -fun schoolchild_N : N; -fun schooldays_N : N; -fun schoolfellow_N : N; -fun schoolfriend_N : N; -fun schoolgirl_N : N; -fun schoolhouse_N : N; -fun schooling_N : N; -fun schoolman_N : N; -fun schoolmarm_N : N; -fun schoolmaster_N : N; -fun schoolmate_N : N; -fun schoolmistress_N : N; -fun schoolroom_N : N; -fun schoolteacher_N : N; -fun schooltime_N : N; -fun schoolwide_A : A; -fun schoolyard_N : N; -fun schooner_N : N; -fun schorl_N : N; -fun schottische_N : N; -fun schrod_N : N; -fun schwa_N : N; -fun sci_fi_N : N; -fun sciatic_A : A; -fun sciatica_N : N; -fun science_N : N; -fun scienter_Adv : Adv; -fun scientific_A : A; -fun scientifically_Adv : Adv; -fun scientist_N : N; -fun scilla_N : N; -fun scimitar_N : N; -fun scintilla_N : N; -fun scintillate_V : V; -fun scintillating_A : A; -fun scintillation_N : N; -fun sciolism_N : N; -fun scion_N : N; -fun scission_N : N; -fun scissor_tailed_A : A; -fun scissors_N : N; -fun scissortail_N : N; -fun sclaff_N : N; -fun sclera_N : N; -fun scleredema_N : N; -fun sclerite_N : N; -fun scleritis_N : N; -fun scleroderma_N : N; -fun sclerometer_N : N; -fun scleroprotein_N : N; -fun sclerosis_N : N; -fun sclerotic_A : A; -fun sclerotinia_N : N; -fun sclerotium_N : N; -fun sclerotomy_N : N; -fun scoff_N : N; -fun scoff_V : V; -fun scoff_V2 : V2; -fun scoffer_N : N; -fun scoffingly_Adv : Adv; -fun scofflaw_N : N; -fun scold_N : N; -fun scold_V : V; -fun scold_V2 : V2; -fun scolding_N : N; -fun scolion_N : N; -fun scoliosis_N : N; -fun scollop_N : N; -fun scollop_V2 : V2; -fun scolopendrium_N : N; -fun scombroid_N : N; -fun sconce_N : N; -fun scone_N : N; -fun scoop_N : N; -fun scoop_V : V; -fun scoop_V2 : V2; -fun scoopful_N : N; -fun scoot_V : V; -fun scoot_V2 : V2; -fun scooter_N : N; -fun scopal_A : A; -fun scope_N : N; -fun scopolamine_N : N; -fun scorbutic_A : A; -fun scorch_N : N; -fun scorch_V : V; -fun scorch_V2 : V2; -fun scorched_A : A; -fun scorcher_N : N; -fun scorching_A : A; -fun scorching_Adv : Adv; -fun score_N : N; -fun score_V : V; -fun score_V2 : V2; -fun scoreboard_N : N; -fun scorebook_N : N; -fun scorecard_N : N; -fun scorekeeper_N : N; -fun scoreless_A : A; -fun scorer_N : N; -fun scorn_N : N; -fun scorn_V2 : V2; -fun scornful_A : A; -fun scorpaenid_N : N; -fun scorpaenoid_N : N; -fun scorpion_N : N; -fun scorpionfish_N : N; -fun scorpionweed_N : N; -fun scorzonera_N : N; -fun scot_N : N; -fun scot_free_Adv : Adv; -fun scotch_A : A; -fun scotch_N : N; -fun scotch_V2 : V2; -fun scotchman_N : N; -fun scotchwoman_N : N; -fun scoter_N : N; -fun scotoma_N : N; -fun scotomatous_A : A; -fun scots_A : A; -fun scotsman_N : N; -fun scotswoman_N : N; -fun scottish_A : A; -fun scoundrel_N : N; -fun scoundrelly_A : A; -fun scour_N : N; -fun scour_V : V; -fun scour_V2 : V2; -fun scourer_N : N; -fun scourge_N : N; -fun scourge_V2 : V2; -fun scouring_N : N; -fun scours_N : N; -fun scout_N : N; -fun scout_V : V; -fun scout_V2 : V2; -fun scouting_N : N; -fun scoutmaster_N : N; -fun scow_N : N; -fun scowl_N : N; -fun scowl_V : V; -fun scowl_V2 : V2; -fun scrabble_N : N; -fun scrabble_V : V; -fun scrabbly_A : A; -fun scrag_N : N; -fun scrag_V2 : V2; -fun scrag_end_N : N; -fun scraggly_A : A; -fun scraggy_A : A; -fun scram_V : V; -fun scram_V2 : V2; -fun scramble_N : N; -fun scramble_V : V; -fun scramble_V2 : V2; -fun scramble_V2V : V2V; -fun scramble_VV : VV; -fun scrambled_A : A; -fun scrambler_N : N; -fun scrap_N : N; -fun scrap_V : V; -fun scrap_V2 : V2; -fun scrap_iron_N : N; -fun scrapbook_N : N; -fun scrape_N : N; -fun scrape_V : V; -fun scrape_V2 : V2; -fun scraper_N : N; -fun scrapheap_N : N; -fun scrapie_N : N; -fun scraping_N : N; -fun scrappily_Adv : Adv; -fun scrappiness_N : N; -fun scrapple_N : N; -fun scrappy_A : A; -fun scratch_N : N; -fun scratch_V : V; -fun scratch_V2 : V2; -fun scratch_pad_N : N; -fun scratch_race_N : N; -fun scratcher_N : N; -fun scratchpad_N : N; -fun scratchy_A : A; -fun scrawk_V : V; -fun scrawl_N : N; -fun scrawl_V : V; -fun scrawl_V2 : V2; -fun scrawler_N : N; -fun scrawniness_N : N; -fun scrawny_A : A; -fun screaky_A : A; -fun scream_N : N; -fun scream_V : V; -fun scream_V2 : V2; -fun scream_VS : VS; -fun screamer_N : N; -fun screaming_A : A; -fun screamingly_Adv : Adv; -fun scree_N : N; -fun screech_N : N; -fun screech_V : V; -fun screech_V2 : V2; -fun screech_owl_N : N; -fun screed_N : N; -fun screen_N : N; -fun screen_V : V; -fun screen_V2 : V2; -fun screener_N : N; -fun screening_N : N; -fun screenplay_N : N; -fun screenwriter_N : N; -fun screw_N : N; -fun screw_V : V; -fun screw_V2 : V2; -fun screw_loose_A : A; -fun screw_topped_A : A; -fun screw_topped_A : A; -fun screwball_A : A; -fun screwball_N : N; -fun screwballer_N : N; -fun screwdriver_N : N; -fun screwtop_N : N; -fun screwup_N : N; -fun screwy_A : A; -fun scribble_N : N; -fun scribble_V : V; -fun scribble_V2 : V2; -fun scribbler_N : N; -fun scribbling_block_N : N; -fun scribe_N : N; -fun scriber_N : N; -fun scrim_N : N; -fun scrimmage_N : N; -fun scrimmage_V : V; -fun scrimmage_V2 : V2; -fun scrimp_V : V; -fun scrimp_V2 : V2; -fun scrimshank_V : V; -fun scrimshanker_N : N; -fun scrimshaw_N : N; -fun scrimy_A : A; -fun scrip_N : N; -fun script_N : N; -fun scripted_A : A; -fun scriptorium_N : N; -fun scriptural_A : A; -fun scripture_N : N; -fun scriptwriter_N : N; -fun scrivened_A : A; -fun scrivener_N : N; -fun scrod_N : N; -fun scrofula_N : N; -fun scrofulous_A : A; -fun scroll_N : N; -fun scrooge_N : N; -fun scrotal_A : A; -fun scrotum_N : N; -fun scrounge_V : V; -fun scrounge_V2 : V2; -fun scrounger_N : N; -fun scrub_A : A; -fun scrub_N : N; -fun scrub_V : V; -fun scrub_V2 : V2; -fun scrubbed_A : A; -fun scrubber_N : N; -fun scrubbing_brush_N : N; -fun scrubbird_N : N; -fun scrubby_A : A; -fun scrubland_N : N; -fun scruff_N : N; -fun scruffy_A : A; -fun scrum_N : N; -fun scrummage_N : N; -fun scrumptious_A : A; -fun scrumpy_N : N; -fun scrunch_N : N; -fun scrunch_V2 : V2; -fun scruple_N : N; -fun scruple_V : V; -fun scrupulous_A : A; -fun scrupulously_Adv : Adv; -fun scrupulousness_N : N; -fun scrutineer_N : N; -fun scrutinize_V2 : V2; -fun scrutinizer_N : N; -fun scrutiny_N : N; -fun scud_N : N; -fun scud_V : V; -fun scud_V2 : V2; -fun scuff_N : N; -fun scuff_V : V; -fun scuff_V2 : V2; -fun scuffer_N : N; -fun scuffle_N : N; -fun scuffle_V : V; -fun scull_N : N; -fun scull_V : V; -fun scull_V2 : V2; -fun sculler_N : N; -fun scullery_N : N; -fun sculling_N : N; -fun scullion_N : N; -fun sculpin_N : N; -fun sculpt_V : V; -fun sculpt_V2 : V2; -fun sculptor_N : N; -fun sculptress_N : N; -fun sculptural_A : A; -fun sculpture_N : N; -fun sculpture_V : V; -fun sculpture_V2 : V2; -fun scultpure_V : V; -fun scultpure_V2 : V2; -fun scum_N : N; -fun scumble_N : N; -fun scummy_A : A; -fun scunner_N : N; -fun scup_N : N; -fun scupper_N : N; -fun scupper_V2 : V2; -fun scuppernong_N : N; -fun scurf_N : N; -fun scurfy_A : A; -fun scurrility_N : N; -fun scurrilous_A : A; -fun scurrilously_Adv : Adv; -fun scurry_N : N; -fun scurry_V : V; -fun scurry_V2 : V2; -fun scurvy_A : A; -fun scurvy_N : N; -fun scut_N : N; -fun scutcheon_N : N; -fun scute_N : N; -fun scutter_V : V; -fun scutter_V2 : V2; -fun scuttle_N : N; -fun scuttle_V : V; -fun scuttle_V2 : V2; -fun scylla_N : N; -fun scyphozoan_N : N; -fun scyphus_N : N; -fun scythe_N : N; -fun scythe_V2 : V2; -fun sea_N : N; -fun sea_anemone_N : N; -fun sea_animal_N : N; -fun sea_bathing_N : N; -fun sea_boat_N : N; -fun sea_bream_N : N; -fun sea_breeze_N : N; -fun sea_coal_N : N; -fun sea_cow_N : N; -fun sea_dog_N : N; -fun sea_duty_N : N; -fun sea_fish_N : N; -fun sea_girt_A : A; -fun sea_god_N : N; -fun sea_green_A : A; -fun sea_green_A : A; -fun sea_green_N : N; -fun sea_horse_N : N; -fun sea_level_N : N; -fun sea_lion_N : N; -fun sea_power_N : N; -fun sea_rocket_N : N; -fun sea_rover_N : N; -fun sea_snake_N : N; -fun sea_urchin_N : N; -fun sea_wall_N : N; -fun sea_water_N : N; -fun seabag_N : N; -fun seabed_N : N; -fun seabird_N : N; -fun seaboard_N : N; -fun seaborgium_N : N; -fun seaborne_A : A; -fun seafarer_N : N; -fun seafaring_A : A; -fun seafaring_N : N; -fun seafood_N : N; -fun seafood_newburg_PN : PN; -fun seafront_N : N; -fun seagirt_A : A; -fun seagoing_A : A; -fun seagrass_N : N; -fun seagull_N : N; -fun seahorse_N : N; -fun seakale_N : N; -fun seal_N : N; -fun seal_V : V; -fun seal_V2 : V2; -fun seal_VS : VS; -fun seal_ring_N : N; -fun sealant_N : N; -fun sealed_A : A; -fun sealer_N : N; -fun sealing_wax_N : N; -fun sealskin_N : N; -fun sealyham_N : N; -fun seam_N : N; -fun seam_V2 : V2; -fun seaman_N : N; -fun seamanlike_A : A; -fun seamanship_N : N; -fun seamed_A : A; -fun seamless_A : A; -fun seamount_N : N; -fun seamstress_N : N; -fun seamy_A : A; -fun seance_N : N; -fun seaplane_N : N; -fun seaport_N : N; -fun seaquake_N : N; -fun sear_A : A; -fun sear_V2 : V2; -fun search_N : N; -fun search_V : V; -fun search_V2 : V2; -fun search_party_N : N; -fun search_warrant_N : N; -fun searcher_N : N; -fun searching_A : A; -fun searchingly_Adv : Adv; -fun searchlight_N : N; -fun seared_A : A; -fun searing_A : A; -fun searing_iron_N : N; -fun seascape_N : N; -fun seashell_N : N; -fun seashore_N : N; -fun seasick_A : A; -fun seasickness_N : N; -fun seaside_N : N; -fun seasnail_N : N; -fun season_N : N; -fun season_V : V; -fun season_V2 : V2; -fun season_ticket_N : N; -fun seasonable_A : A; -fun seasonableness_N : N; -fun seasonably_Adv : Adv; -fun seasonal_A : A; -fun seasonally_Adv : Adv; -fun seasoned_A : A; -fun seasoner_N : N; -fun seasoning_N : N; -fun seat_N : N; -fun seat_V2 : V2; -fun seat_belt_N : N; -fun seated_A : A; -fun seating_N : N; -fun seating_room_N : N; -fun seaward_A : A; -fun seaward_Adv : Adv; -fun seaward_N : N; -fun seawards_Adv : Adv; -fun seawater_N : N; -fun seaway_N : N; -fun seaweed_N : N; -fun seaworthiness_N : N; -fun seaworthy_A : A; -fun seborrhea_N : N; -fun sebum_N : N; -fun sec_A : A; -fun sec_N : N; -fun secant_N : N; -fun secateurs_N : N; -fun secede_V : V; -fun secession_N : N; -fun secessionism_N : N; -fun secessionist_N : N; -fun seckel_N : N; -fun seclude_V2 : V2; -fun secluded_A : A; -fun seclusion_N : N; -fun second_A : A; -fun second_Adv : Adv; -fun second_N : N; -fun second_V2 : V2; -fun second_best_A : A; -fun second_best_A : A; -fun second_best_Adv : Adv; -fun second_best_Adv : Adv; -fun second_best_N : N; -fun second_class_A : A; -fun second_class_A : A; -fun second_class_Adv : Adv; -fun second_class_N : N; -fun second_guess_V2 : V2; -fun second_hand_A : A; -fun second_hand_Adv : Adv; -fun second_hand_N : N; -fun second_in_command_N : N; -fun second_rate_A : A; -fun second_rater_N : N; -fun second_rater_N : N; -fun second_sighted_A : A; -fun second_string_A : A; -fun secondarily_Adv : Adv; -fun secondary_A : A; -fun secondary_N : N; -fun seconder_N : N; -fun secondhand_A : A; -fun secondhand_Adv : Adv; -fun secondment_N : N; -fun secondo_N : N; -fun secrecy_N : N; -fun secret_A : A; -fun secret_N : N; -fun secretarial_A : A; -fun secretariat_N : N; -fun secretary_N : N; -fun secretary_general_N : N; -fun secretaryship_N : N; -fun secretase_N : N; -fun secrete_V2 : V2; -fun secretin_N : N; -fun secretion_N : N; -fun secretive_A : A; -fun secretively_Adv : Adv; -fun secretiveness_N : N; -fun secretly_Adv : Adv; -fun secretory_A : A; -fun sect_N : N; -fun sectarian_A : A; -fun sectarian_N : N; -fun sectarianism_N : N; -fun section_N : N; -fun sectional_A : A; -fun sectional_N : N; -fun sectionalism_N : N; -fun sector_N : N; -fun sectorial_A : A; -fun secular_A : A; -fun secularism_N : N; -fun secularist_N : N; -fun secularization_N : N; -fun secularize_V2 : V2; -fun secundigravida_N : N; -fun secure_A : A; -fun secure_V2 : V2; -fun securely_Adv : Adv; -fun secureness_N : N; -fun security_N : N; -fun sedan_N : N; -fun sedan_chair_N : N; -fun sedate_A : A; -fun sedate_V2 : V2; -fun sedately_Adv : Adv; -fun sedateness_N : N; -fun sedation_N : N; -fun sedative_A : A; -fun sedative_N : N; -fun sedative_hypnotic_N : N; -fun sedentary_A : A; -fun sedge_N : N; -fun sedgy_A : A; -fun sediment_N : N; -fun sedimentary_A : A; -fun sedition_N : N; -fun seditious_A : A; -fun seduce_V2 : V2; -fun seducer_N : N; -fun seduction_N : N; -fun seductive_A : A; -fun seductively_Adv : Adv; -fun seductress_N : N; -fun sedulity_N : N; -fun sedulous_A : A; -fun sedulously_Adv : Adv; -fun sedum_N : N; -fun see_N : N; -fun see_V : V; -fun see_V2 : V2; -fun see_V2V : V2V; -fun see_VA : VA; -fun see_VS : VS; -fun see_through_A : A; -fun seed_N : N; -fun seed_V : V; -fun seed_V2 : V2; -fun seed_corn_N : N; -fun seedbed_N : N; -fun seedcake_N : N; -fun seeded_A : A; -fun seeder_N : N; -fun seedily_Adv : Adv; -fun seediness_N : N; -fun seedless_A : A; -fun seedling_N : N; -fun seedsman_N : N; -fun seedtime_N : N; -fun seedy_A : A; -fun seeing_A : A; -fun seek_N : N; -fun seek_V2 : V2; -fun seek_VS : VS; -fun seek_VV : VV; -fun seeker_N : N; -fun seeking_N : N; -fun seem_V : V; -fun seem_V2 : V2; -fun seem_VA : VA; -fun seem_VS : VS; -fun seem_VV : VV; -fun seeming_A : A; -fun seemliness_N : N; -fun seemly_A : A; -fun seep_V : V; -fun seep_V2 : V2; -fun seepage_N : N; -fun seer_N : N; -fun seersucker_N : N; -fun seesaw_N : N; -fun seesaw_V : V; -fun seethe_V : V; -fun seethe_V2 : V2; -fun seething_A : A; -fun segment_N : N; -fun segment_V : V; -fun segment_V2 : V2; -fun segmental_A : A; -fun segmentation_N : N; -fun segno_N : N; -fun segregate_N : N; -fun segregate_V2 : V2; -fun segregated_A : A; -fun segregation_N : N; -fun segregationism_N : N; -fun segregator_N : N; -fun segue_N : N; -fun seiche_N : N; -fun seidel_N : N; -fun seigneury_N : N; -fun seignior_N : N; -fun seigniorage_N : N; -fun seigniory_N : N; -fun seine_N : N; -fun seine_V : V; -fun seine_V2 : V2; -fun seismic_A : A; -fun seismogram_N : N; -fun seismograph_N : N; -fun seismography_N : N; -fun seismological_A : A; -fun seismologist_N : N; -fun seismology_N : N; -fun seize_V : V; -fun seize_V2 : V2; -fun seizing_N : N; -fun seizure_N : N; -fun seldom_Adv : Adv; -fun select_A : A; -fun select_V : V; -fun select_V2 : V2; -fun select_V2V : V2V; -fun select_VV : VV; -fun selected_A : A; -fun selection_N : N; -fun selective_A : A; -fun selectively_Adv : Adv; -fun selectivity_N : N; -fun selectman_N : N; -fun selector_N : N; -fun selectwoman_N : N; -fun selenium_N : N; -fun selenology_N : N; -fun self_A : A; -fun self_N : N; -fun self_abasement_N : N; -fun self_abnegation_N : N; -fun self_absorbed_A : A; -fun self_absorbed_A : A; -fun self_absorption_N : N; -fun self_accusation_N : N; -fun self_acting_A : A; -fun self_acting_A : A; -fun self_activating_A : A; -fun self_addressed_A : A; -fun self_addressed_A : A; -fun self_aggrandizement_N : N; -fun self_aggrandizing_A : A; -fun self_analysis_N : N; -fun self_appointed_A : A; -fun self_appointed_A : A; -fun self_assertion_N : N; -fun self_assertion_N : N; -fun self_assertive_A : A; -fun self_assurance_N : N; -fun self_assured_A : A; -fun self_assured_A : A; -fun self_awareness_N : N; -fun self_balancing_A : A; -fun self_centred_A : A; -fun self_collected_A : A; -fun self_coloured_A : A; -fun self_command_N : N; -fun self_communion_N : N; -fun self_complacency_N : N; -fun self_confessed_A : A; -fun self_confessed_A : A; -fun self_confidence_N : N; -fun self_confident_A : A; -fun self_conscious_A : A; -fun self_conscious_A : A; -fun self_consciously_Adv : Adv; -fun self_consciousness_N : N; -fun self_consciousness_N : N; -fun self_consistent_A : A; -fun self_constituted_A : A; -fun self_contained_A : A; -fun self_contained_A : A; -fun self_contradiction_N : N; -fun self_control_N : N; -fun self_control_N : N; -fun self_criticism_N : N; -fun self_deception_N : N; -fun self_defeating_A : A; -fun self_defence_N : N; -fun self_defense_N : N; -fun self_denial_N : N; -fun self_denial_N : N; -fun self_denying_A : A; -fun self_denying_A : A; -fun self_deprecating_A : A; -fun self_depreciation_N : N; -fun self_destruct_V : V; -fun self_destruction_N : N; -fun self_destructive_A : A; -fun self_determination_N : N; -fun self_determination_N : N; -fun self_discipline_N : N; -fun self_disciplined_A : A; -fun self_discovery_N : N; -fun self_disgust_N : N; -fun self_educated_A : A; -fun self_educated_A : A; -fun self_education_N : N; -fun self_effacing_A : A; -fun self_employed_A : A; -fun self_enclosed_A : A; -fun self_esteem_N : N; -fun self_esteem_N : N; -fun self_evident_A : A; -fun self_evidently_Adv : Adv; -fun self_examination_N : N; -fun self_explanatory_A : A; -fun self_explanatory_A : A; -fun self_expression_N : N; -fun self_feeder_N : N; -fun self_fertilization_N : N; -fun self_fertilized_A : A; -fun self_flagellation_N : N; -fun self_forgetful_A : A; -fun self_fulfillment_N : N; -fun self_generated_A : A; -fun self_government_N : N; -fun self_gratification_N : N; -fun self_heal_N : N; -fun self_help_N : N; -fun self_help_N : N; -fun self_hypnosis_N : N; -fun self_importance_N : N; -fun self_important_A : A; -fun self_imposed_A : A; -fun self_imposed_A : A; -fun self_improvement_N : N; -fun self_incrimination_N : N; -fun self_induced_A : A; -fun self_induction_N : N; -fun self_indulgence_N : N; -fun self_indulgent_A : A; -fun self_indulgent_A : A; -fun self_indulgently_Adv : Adv; -fun self_insurance_N : N; -fun self_insure_V : V; -fun self_interest_N : N; -fun self_knowledge_N : N; -fun self_limited_A : A; -fun self_locking_A : A; -fun self_locking_A : A; -fun self_love_N : N; -fun self_luminous_A : A; -fun self_made_A : A; -fun self_made_A : A; -fun self_opinionated_A : A; -fun self_organization_N : N; -fun self_pity_N : N; -fun self_pity_N : N; -fun self_pollinating_A : A; -fun self_pollination_N : N; -fun self_portrait_N : N; -fun self_possessed_A : A; -fun self_possession_N : N; -fun self_preservation_N : N; -fun self_preservation_N : N; -fun self_proclaimed_A : A; -fun self_propelled_A : A; -fun self_punishment_N : N; -fun self_raising_A : A; -fun self_reliance_N : N; -fun self_reliant_A : A; -fun self_renewal_N : N; -fun self_renewing_A : A; -fun self_reproach_N : N; -fun self_respect_N : N; -fun self_respecting_A : A; -fun self_restraint_N : N; -fun self_righteous_A : A; -fun self_rule_N : N; -fun self_sacrifice_N : N; -fun self_sacrificing_A : A; -fun self_same_A : A; -fun self_sealing_A : A; -fun self_sealing_A : A; -fun self_seeded_A : A; -fun self_seeker_N : N; -fun self_seeking_A : A; -fun self_seeking_N : N; -fun self_service_A : A; -fun self_service_N : N; -fun self_service_N : N; -fun self_serving_A : A; -fun self_sown_A : A; -fun self_starter_N : N; -fun self_starter_N : N; -fun self_stimulation_N : N; -fun self_styled_A : A; -fun self_styled_A : A; -fun self_sufficiency_N : N; -fun self_sufficient_A : A; -fun self_sufficient_A : A; -fun self_sufficing_A : A; -fun self_supporting_A : A; -fun self_supporting_A : A; -fun self_sustained_A : A; -fun self_torture_N : N; -fun self_whispered_A : A; -fun self_will_N : N; -fun self_willed_A : A; -fun self_winding_A : A; -fun self_winding_A : A; -fun selfconsciously_Adv : Adv; -fun selfish_A : A; -fun selfishness_N : N; -fun selflessness_N : N; -fun selfsameness_N : N; -fun sell_N : N; -fun sell_V : V; -fun sell_V2 : V2; -fun sell_VA : VA; -fun sell_VS : VS; -fun seller_N : N; -fun selling_N : N; -fun selloff_N : N; -fun sellout_N : N; -fun selsyn_N : N; -fun seltzer_N : N; -fun selvage_N : N; -fun selvedge_N : N; -fun semantic_A : A; -fun semantically_Adv : Adv; -fun semanticist_N : N; -fun semantics_N : N; -fun semaphore_N : N; -fun semaphore_V : V; -fun semaphore_V2 : V2; -fun semblance_N : N; -fun semen_N : N; -fun semester_N : N; -fun semestral_A : A; -fun semi_abstraction_N : N; -fun semi_climber_N : N; -fun semi_climbing_A : A; -fun semi_dry_A : A; -fun semi_erect_A : A; -fun semi_evergreen_A : A; -fun semi_processed_A : A; -fun semi_prostrate_A : A; -fun semi_tuberous_A : A; -fun semi_upright_A : A; -fun semi_wild_A : A; -fun semiabstract_A : A; -fun semiannual_A : A; -fun semiannually_Adv : Adv; -fun semiaquatic_A : A; -fun semiarid_A : A; -fun semiautobiographical_A : A; -fun semiautomatic_A : A; -fun semibreve_N : N; -fun semicentennial_A : A; -fun semicentennial_N : N; -fun semicircle_N : N; -fun semicircular_A : A; -fun semicolon_N : N; -fun semicoma_N : N; -fun semicomatose_A : A; -fun semiconducting_A : A; -fun semiconductor_N : N; -fun semiconscious_A : A; -fun semidark_A : A; -fun semidarkness_N : N; -fun semidesert_N : N; -fun semidetached_A : A; -fun semidiameter_N : N; -fun semiempirical_A : A; -fun semifinal_N : N; -fun semifinalist_N : N; -fun semifluidity_N : N; -fun semiformal_A : A; -fun semigloss_N : N; -fun semihard_A : A; -fun semiliquid_A : A; -fun semiliterate_A : A; -fun semimonthly_A : A; -fun semimonthly_Adv : Adv; -fun semimonthly_N : N; -fun seminal_A : A; -fun seminar_N : N; -fun seminarian_N : N; -fun seminarist_N : N; -fun seminary_N : N; -fun seminiferous_A : A; -fun seminoma_N : N; -fun seminude_A : A; -fun semiofficial_A : A; -fun semiopaque_A : A; -fun semiotic_A : A; -fun semiotics_N : N; -fun semiparasitic_A : A; -fun semipermeable_A : A; -fun semipolitical_A : A; -fun semiprecious_A : A; -fun semiprivate_A : A; -fun semiprofessional_N : N; -fun semipublic_A : A; -fun semiquaver_N : N; -fun semirigid_A : A; -fun semiskilled_A : A; -fun semisolid_A : A; -fun semite_A : A; -fun semite_N : N; -fun semiterrestrial_A : A; -fun semitic_A : A; -fun semitone_N : N; -fun semitrailer_N : N; -fun semitrance_N : N; -fun semitropical_A : A; -fun semivowel_N : N; -fun semiweekly_A : A; -fun semiweekly_Adv : Adv; -fun semiweekly_N : N; -fun semolina_N : N; -fun sempstress_N : N; -fun sen_N : N; -fun senate_N : N; -fun senator_N : N; -fun senatorial_A : A; -fun senatorship_N : N; -fun send_V : V; -fun send_V2 : V2; -fun send_V2V : V2V; -fun send_VS : VS; -fun send_away_V2 : V2; -fun send_up_N : N; -fun sendee_N : N; -fun sender_N : N; -fun sending_N : N; -fun sendoff_N : N; -fun sene_N : N; -fun senega_N : N; -fun senegalese_A : A; -fun senegalese_N : N; -fun senescence_N : N; -fun senescent_A : A; -fun seneschal_N : N; -fun senile_A : A; -fun senility_N : N; -fun senior_A : A; -fun senior_N : N; -fun seniority_N : N; -fun seniti_N : N; -fun senna_N : N; -fun sennit_N : N; -fun senor_N : N; -fun senora_N : N; -fun senorita_N : N; -fun sensate_A : A; -fun sensation_N : N; -fun sensational_A : A; -fun sensationalism_N : N; -fun sensationalist_N : N; -fun sensationally_Adv : Adv; -fun sense_N : N; -fun sense_V2 : V2; -fun sense_VS : VS; -fun sense_organ_N : N; -fun sensed_A : A; -fun senseless_A : A; -fun senselessly_Adv : Adv; -fun senselessness_N : N; -fun sensibility_N : N; -fun sensible_A : A; -fun sensibleness_N : N; -fun sensing_N : N; -fun sensitive_A : A; -fun sensitively_Adv : Adv; -fun sensitivity_N : N; -fun sensitization_N : N; -fun sensitize_V2 : V2; -fun sensitizer_N : N; -fun sensitizing_A : A; -fun sensitizing_N : N; -fun sensitometer_N : N; -fun sensorimotor_A : A; -fun sensorineural_A : A; -fun sensorium_N : N; -fun sensory_A : A; -fun sensual_A : A; -fun sensualism_N : N; -fun sensualist_N : N; -fun sensuality_N : N; -fun sensually_Adv : Adv; -fun sensuous_A : A; -fun sensuously_Adv : Adv; -fun sensuousness_N : N; -fun sent_A : A; -fun sent_N : N; -fun sente_N : N; -fun sentence_N : N; -fun sentence_V : V; -fun sentence_V2 : V2; -fun sentential_A : A; -fun sententious_A : A; -fun sentience_N : N; -fun sentient_A : A; -fun sentiment_N : N; -fun sentimental_A : A; -fun sentimentalism_N : N; -fun sentimentalist_N : N; -fun sentimentality_N : N; -fun sentimentalization_N : N; -fun sentimentalize_V : V; -fun sentimentalize_V2 : V2; -fun sentimentally_Adv : Adv; -fun sentinel_N : N; -fun sentry_N : N; -fun sentry_box_N : N; -fun sentry_go_N : N; -fun sepal_N : N; -fun sepaloid_A : A; -fun separability_N : N; -fun separable_A : A; -fun separably_Adv : Adv; -fun separate_A : A; -fun separate_N : N; -fun separate_V : V; -fun separate_V2 : V2; -fun separated_A : A; -fun separateness_N : N; -fun separation_N : N; -fun separationism_N : N; -fun separatism_N : N; -fun separatist_N : N; -fun separative_A : A; -fun separator_N : N; -fun sepia_N : N; -fun sepsis_N : N; -fun septal_A : A; -fun septation_N : N; -fun septectomy_N : N; -fun september_N : N; -fun septet_N : N; -fun septic_A : A; -fun septicaemia_N : N; -fun septicemia_N : N; -fun septicemic_A : A; -fun septillion_N : N; -fun septrional_A : A; -fun septuagenarian_N : N; -fun septuagint_N : N; -fun septum_N : N; -fun septuple_A : A; -fun sepulchral_A : A; -fun sepulchre_N : N; -fun sepulture_N : N; -fun sequel_N : N; -fun sequela_N : N; -fun sequella_N : N; -fun sequence_N : N; -fun sequencer_N : N; -fun sequent_A : A; -fun sequential_A : A; -fun sequester_V2 : V2; -fun sequestered_A : A; -fun sequestrate_V2 : V2; -fun sequestration_N : N; -fun sequin_N : N; -fun sequoia_N : N; -fun seraglio_N : N; -fun serape_N : N; -fun seraph_N : N; -fun seraphic_A : A; -fun serbo_croat_N : N; -fun sere_A : A; -fun serenade_N : N; -fun serenade_V2 : V2; -fun serendipitous_A : A; -fun serendipity_N : N; -fun serene_A : A; -fun serenely_Adv : Adv; -fun sereness_N : N; -fun serenity_N : N; -fun serf_N : N; -fun serfdom_N : N; -fun serflike_A : A; -fun serge_N : N; -fun sergeant_N : N; -fun sergeant_major_N : N; -fun serger_N : N; -fun serial_A : A; -fun serial_N : N; -fun serialism_N : N; -fun serialization_N : N; -fun serialize_V2 : V2; -fun serially_Adv : Adv; -fun seriatim_Adv : Adv; -fun sericultural_A : A; -fun sericulture_N : N; -fun sericulturist_N : N; -fun series_N : N; -fun serif_N : N; -fun serigraphy_N : N; -fun serin_N : N; -fun serine_N : N; -fun seriocomedy_N : N; -fun seriocomic_A : A; -fun serious_A : A; -fun seriously_Adv : Adv; -fun seriousness_N : N; -fun serjeant_N : N; -fun serjeant_at_arms_N : N; -fun serjeant_at_law_N : N; -fun sermon_N : N; -fun sermonize_V : V; -fun sermonize_V2 : V2; -fun serologic_A : A; -fun serologist_N : N; -fun serology_N : N; -fun serotine_N : N; -fun serotonin_N : N; -fun serous_A : A; -fun serow_N : N; -fun serpent_N : N; -fun serpentine_A : A; -fun serrate_A : A; -fun serrated_A : A; -fun serration_N : N; -fun serratus_N : N; -fun serried_A : A; -fun serrulate_A : A; -fun sertraline_N : N; -fun sertularian_N : N; -fun serum_N : N; -fun serval_N : N; -fun servant_N : N; -fun serve_N : N; -fun serve_V : V; -fun serve_V2 : V2; -fun serve_VS : VS; -fun serve_VV : VV; -fun server_N : N; -fun service_N : N; -fun service_V2 : V2; -fun serviceability_N : N; -fun serviceable_A : A; -fun serviceman_N : N; -fun services_N : N; -fun servicing_N : N; -fun serviette_N : N; -fun servile_A : A; -fun servility_N : N; -fun serving_N : N; -fun servitor_N : N; -fun servitude_N : N; -fun servo_N : N; -fun servomechanical_A : A; -fun sesame_N : N; -fun sesbania_N : N; -fun sesotho_N : N; -fun sesquicentennial_N : N; -fun sesquipedalian_A : A; -fun sesquipedalian_N : N; -fun sesquipedality_N : N; -fun sessile_A : A; -fun session_N : N; -fun sestet_N : N; -fun set_A : A; -fun set_N : N; -fun set_V : V; -fun set_V2 : V2; -fun set_VS : VS; -fun set_VV : VV; -fun set_about_V2 : V2; -fun set_back_N : N; -fun set_in_stone_A : A; -fun set_off_V2 : V2; -fun set_square_N : N; -fun set_to_N : N; -fun set_to_N : N; -fun set_up_N : N; -fun seta_N : N; -fun setback_N : N; -fun setscrew_N : N; -fun setswana_N : N; -fun sett_N : N; -fun settee_N : N; -fun setter_N : N; -fun setting_N : N; -fun settle_N : N; -fun settle_V : V; -fun settle_V2 : V2; -fun settle_VA : VA; -fun settle_VS : VS; -fun settled_A : A; -fun settlement_N : N; -fun settler_N : N; -fun settling_N : N; -fun settlor_N : N; -fun setup_N : N; -fun seven_A : A; -fun seven_N : N; -fun seven_membered_A : A; -fun seven_sided_A : A; -fun seven_spot_N : N; -fun seven_up_N : N; -fun sevenfold_A : A; -fun sevenfold_Adv : Adv; -fun seventeen_A : A; -fun seventeen_N : N; -fun seventeenth_A : A; -fun seventeenth_N : N; -fun seventh_A : A; -fun seventh_N : N; -fun seventhly_Adv : Adv; -fun seventies_N : N; -fun seventieth_A : A; -fun seventieth_N : N; -fun seventy_A : A; -fun seventy_N : N; -fun seventy_eight_A : A; -fun seventy_eight_N : N; -fun seventy_fifth_A : A; -fun seventy_five_A : A; -fun seventy_four_A : A; -fun seventy_nine_A : A; -fun seventy_one_A : A; -fun seventy_seven_A : A; -fun seventy_six_A : A; -fun seventy_three_A : A; -fun seventy_two_A : A; -fun sever_V : V; -fun sever_V2 : V2; -fun several_A : A; -fun severally_Adv : Adv; -fun severalty_N : N; -fun severance_N : N; -fun severe_A : A; -fun severed_A : A; -fun severity_N : N; -fun sew_V : V; -fun sew_V2 : V2; -fun sewage_N : N; -fun sewage_farm_N : N; -fun sewage_works_N : N; -fun sewed_A : A; -fun sewer_N : N; -fun sewer_gas_N : N; -fun sewer_rat_N : N; -fun sewerage_N : N; -fun sewing_N : N; -fun sewing_machine_N : N; -fun sex_N : N; -fun sex_V2 : V2; -fun sex_limited_A : A; -fun sex_linked_A : A; -fun sex_starved_A : A; -fun sex_starved_A : A; -fun sexagenarian_A : A; -fun sexagenarian_N : N; -fun sexagesimal_A : A; -fun sexcapade_N : N; -fun sexed_A : A; -fun sexism_N : N; -fun sexist_A : A; -fun sexist_N : N; -fun sexless_A : A; -fun sexploitation_N : N; -fun sext_N : N; -fun sextant_N : N; -fun sextet_N : N; -fun sextette_N : N; -fun sextillion_N : N; -fun sexton_N : N; -fun sextuple_A : A; -fun sexual_A : A; -fun sexuality_N : N; -fun sexually_Adv : Adv; -fun sexy_A : A; -fun seychellois_A : A; -fun seychellois_N : N; -fun sforzando_N : N; -fun sgraffito_N : N; -fun shabbily_Adv : Adv; -fun shabbiness_N : N; -fun shabby_A : A; -fun shabby_genteel_A : A; -fun shabby_genteel_A : A; -fun shack_N : N; -fun shack_V : V; -fun shackle_N : N; -fun shackle_V2 : V2; -fun shad_N : N; -fun shaddock_N : N; -fun shade_N : N; -fun shade_V : V; -fun shade_V2 : V2; -fun shade_tree_N : N; -fun shaded_A : A; -fun shadiness_N : N; -fun shading_N : N; -fun shadow_N : N; -fun shadow_V2 : V2; -fun shadow_boxing_N : N; -fun shadowboxing_N : N; -fun shadowing_N : N; -fun shadowy_A : A; -fun shady_A : A; -fun shaft_N : N; -fun shag_N : N; -fun shag_V : V; -fun shag_V2 : V2; -fun shagbark_N : N; -fun shagged_A : A; -fun shaggily_Adv : Adv; -fun shagginess_N : N; -fun shagging_N : N; -fun shaggy_A : A; -fun shaggymane_N : N; -fun shah_N : N; -fun shahadah_N : N; -fun shaheed_N : N; -fun shaitan_N : N; -fun shakable_A : A; -fun shake_N : N; -fun shake_V : V; -fun shake_V2 : V2; -fun shake_up_N : N; -fun shakedown_A : A; -fun shakedown_N : N; -fun shakeout_N : N; -fun shaker_N : N; -fun shakespearian_A : A; -fun shakily_Adv : Adv; -fun shakiness_N : N; -fun shaking_N : N; -fun shaky_A : A; -fun shale_N : N; -fun shale_oil_N : N; -fun shallot_N : N; -fun shallow_A : A; -fun shallow_N : N; -fun shallow_V : V; -fun shallow_draft_A : A; -fun shallowly_Adv : Adv; -fun shallowness_N : N; -fun shallu_N : N; -fun sham_A : A; -fun sham_N : N; -fun sham_V : V; -fun sham_V2 : V2; -fun shaman_N : N; -fun shamanism_N : N; -fun shamanist_A : A; -fun shamble_N : N; -fun shamble_V : V; -fun shamble_V2 : V2; -fun shambles_N : N; -fun shambolic_A : A; -fun shambolically_Adv : Adv; -fun shame_N : N; -fun shame_V2 : V2; -fun shame_making_A : A; -fun shamefaced_A : A; -fun shamefacedly_Adv : Adv; -fun shamefacedness_N : N; -fun shameful_A : A; -fun shamefulness_N : N; -fun shameless_A : A; -fun shamelessness_N : N; -fun shammy_N : N; -fun shampoo_N : N; -fun shampoo_V2 : V2; -fun shamrock_N : N; -fun shandy_N : N; -fun shandygaff_N : N; -fun shanghai_V2 : V2; -fun shanghaier_N : N; -fun shank_N : N; -fun shanny_N : N; -fun shantung_N : N; -fun shanty_N : N; -fun shantytown_N : N; -fun shape_N : N; -fun shape_V : V; -fun shape_V2 : V2; -fun shape_VV : VV; -fun shape_up_N : N; -fun shaped_A : A; -fun shapeless_A : A; -fun shapelessly_Adv : Adv; -fun shapelessness_N : N; -fun shapely_A : A; -fun shaper_N : N; -fun shaping_N : N; -fun shard_N : N; -fun share_N : N; -fun share_V : V; -fun share_V2 : V2; -fun share_out_N : N; -fun sharecropper_N : N; -fun shared_A : A; -fun shareholder_N : N; -fun shareholding_N : N; -fun shareware_N : N; -fun shariah_N : N; -fun sharing_A : A; -fun sharing_N : N; -fun shark_N : N; -fun shark_V : V; -fun sharkskin_N : N; -fun sharksucker_N : N; -fun sharp_A : A; -fun sharp_Adv : Adv; -fun sharp_N : N; -fun sharp_cornered_A : A; -fun sharp_eared_A : A; -fun sharp_eyed_A : A; -fun sharp_limbed_A : A; -fun sharp_nosed_A : A; -fun sharp_pointed_A : A; -fun sharp_set_A : A; -fun sharp_sighted_A : A; -fun sharp_toothed_A : A; -fun sharp_witted_A : A; -fun sharpen_V : V; -fun sharpen_V2 : V2; -fun sharpened_A : A; -fun sharpener_N : N; -fun sharper_N : N; -fun sharpie_N : N; -fun sharply_Adv : Adv; -fun sharpness_N : N; -fun sharpshooter_N : N; -fun shatter_V : V; -fun shatter_V2 : V2; -fun shattered_A : A; -fun shattering_A : A; -fun shatterproof_A : A; -fun shave_N : N; -fun shave_V : V; -fun shave_V2 : V2; -fun shaven_A : A; -fun shaver_N : N; -fun shavian_A : A; -fun shavian_N : N; -fun shaving_brush_N : N; -fun shawl_N : N; -fun shawm_N : N; -fun she_Pron : Pron; -fun she_devil_N : N; -fun she_goat_N : N; -fun she_oak_N : N; -fun sheaf_N : N; -fun shear_N : N; -fun shear_V2 : V2; -fun sheared_A : A; -fun shearer_N : N; -fun shearing_N : N; -fun shears_N : N; -fun shearwater_N : N; -fun sheath_N : N; -fun sheath_knife_N : N; -fun sheathe_V2 : V2; -fun sheathed_A : A; -fun sheathing_N : N; -fun shebang_N : N; -fun shebeen_N : N; -fun shed_N : N; -fun shed_V : V; -fun shed_V2 : V2; -fun shedder_N : N; -fun shedding_N : N; -fun sheen_N : N; -fun sheep_N : N; -fun sheep_tick_N : N; -fun sheepdog_N : N; -fun sheepfold_N : N; -fun sheepherder_N : N; -fun sheepish_A : A; -fun sheepishly_Adv : Adv; -fun sheepishness_N : N; -fun sheeplike_A : A; -fun sheepman_N : N; -fun sheeprun_N : N; -fun sheepshank_N : N; -fun sheepshead_N : N; -fun sheepshearing_N : N; -fun sheepskin_N : N; -fun sheepwalk_N : N; -fun sheer_A : A; -fun sheer_Adv : Adv; -fun sheer_V : V; -fun sheet_N : N; -fun sheet_anchor_N : N; -fun sheet_lightning_N : N; -fun sheeting_N : N; -fun sheetlike_A : A; -fun shegetz_N : N; -fun sheik_N : N; -fun sheika_N : N; -fun sheikdom_N : N; -fun sheikh_N : N; -fun sheikhdom_N : N; -fun shekel_N : N; -fun sheldrake_N : N; -fun shelduck_N : N; -fun shelf_N : N; -fun shelfful_N : N; -fun shelflike_A : A; -fun shell_N : N; -fun shell_V : V; -fun shell_V2 : V2; -fun shell_shock_N : N; -fun shellac_N : N; -fun shellac_V2 : V2; -fun shelled_A : A; -fun sheller_N : N; -fun shellfire_N : N; -fun shellfish_N : N; -fun shellflower_N : N; -fun shellproof_A : A; -fun shelter_N : N; -fun shelter_V : V; -fun shelter_V2 : V2; -fun sheltered_A : A; -fun shelve_V : V; -fun shelve_V2 : V2; -fun shelver_N : N; -fun shepherd_N : N; -fun shepherd_V2 : V2; -fun shepherdess_N : N; -fun sheraton_N : N; -fun sherbert_N : N; -fun sherbet_N : N; -fun sheriff_N : N; -fun sherry_N : N; -fun shew_V : V; -fun shew_V2 : V2; -fun shibboleth_N : N; -fun shield_N : N; -fun shield_V2 : V2; -fun shielded_A : A; -fun shielding_N : N; -fun shift_N : N; -fun shift_V : V; -fun shift_V2 : V2; -fun shiftily_Adv : Adv; -fun shiftiness_N : N; -fun shifting_A : A; -fun shiftless_A : A; -fun shiftlessness_N : N; -fun shifty_A : A; -fun shigella_N : N; -fun shigellosis_N : N; -fun shiitake_N : N; -fun shiksa_N : N; -fun shill_N : N; -fun shillelagh_N : N; -fun shilling_N : N; -fun shillyshally_N : N; -fun shillyshally_V : V; -fun shim_N : N; -fun shimmer_N : N; -fun shimmer_V : V; -fun shimmery_A : A; -fun shimmy_N : N; -fun shin_N : N; -fun shin_V : V; -fun shinbone_N : N; -fun shindig_N : N; -fun shindy_N : N; -fun shine_N : N; -fun shine_V : V; -fun shine_V2 : V2; -fun shiner_N : N; -fun shingle_N : N; -fun shingle_V2 : V2; -fun shingler_N : N; -fun shingles_N : N; -fun shingling_N : N; -fun shingly_A : A; -fun shinguard_N : N; -fun shininess_N : N; -fun shining_A : A; -fun shining_N : N; -fun shinny_N : N; -fun shinplaster_N : N; -fun shiny_A : A; -fun ship_N : N; -fun ship_V : V; -fun ship_V2 : V2; -fun ship's_chandler_N : N; -fun ship_breaker_N : N; -fun ship_breaker_N : N; -fun ship_canal_N : N; -fun shipboard_A : A; -fun shipbroker_N : N; -fun shipbuilder_N : N; -fun shipbuilding_N : N; -fun shipload_N : N; -fun shipmate_N : N; -fun shipment_N : N; -fun shipowner_N : N; -fun shipper_N : N; -fun shipping_N : N; -fun shipping_agent_N : N; -fun shipping_office_N : N; -fun shipshape_A : A; -fun shipshape_Adv : Adv; -fun shipside_N : N; -fun shipway_N : N; -fun shipworm_N : N; -fun shipwreck_N : N; -fun shipwreck_V : V; -fun shipwright_N : N; -fun shipyard_N : N; -fun shire_N : N; -fun shirk_V : V; -fun shirk_V2 : V2; -fun shirker_N : N; -fun shirking_N : N; -fun shirring_N : N; -fun shirt_N : N; -fun shirt_front_N : N; -fun shirtdress_N : N; -fun shirtfront_N : N; -fun shirting_N : N; -fun shirtmaker_N : N; -fun shirtsleeve_N : N; -fun shirtsleeves_N : N; -fun shirttail_N : N; -fun shirtwaist_N : N; -fun shirtwaister_N : N; -fun shirty_A : A; -fun shish_kebab_N : N; -fun shit_N : N; -fun shit_V : V; -fun shitless_A : A; -fun shittah_N : N; -fun shittimwood_N : N; -fun shiv_N : N; -fun shiva_N : N; -fun shivaree_N : N; -fun shiver_N : N; -fun shiver_V : V; -fun shiver_V2 : V2; -fun shivery_A : A; -fun shmegegge_N : N; -fun shmooze_N : N; -fun shoal_N : N; -fun shoal_V : V; -fun shock_Adv : Adv; -fun shock_N : N; -fun shock_V2 : V2; -fun shock_absorbent_A : A; -fun shock_brigade_N : N; -fun shock_headed_A : A; -fun shock_headed_A : A; -fun shock_worker_N : N; -fun shockable_A : A; -fun shocker_N : N; -fun shocking_A : A; -fun shockingly_Adv : Adv; -fun shod_A : A; -fun shoddily_Adv : Adv; -fun shoddiness_N : N; -fun shoddy_A : A; -fun shoddy_N : N; -fun shoe_N : N; -fun shoe_V2 : V2; -fun shoe_leather_N : N; -fun shoebill_N : N; -fun shoeblack_N : N; -fun shoebox_N : N; -fun shoeful_N : N; -fun shoehorn_N : N; -fun shoehorn_V2 : V2; -fun shoelace_N : N; -fun shoemaker_N : N; -fun shoemaking_N : N; -fun shoeshine_N : N; -fun shoestring_N : N; -fun shoetree_N : N; -fun shofar_N : N; -fun shogi_N : N; -fun shogun_N : N; -fun shoji_N : N; -fun shoo_V : V; -fun shoo_V2 : V2; -fun shoofly_N : N; -fun shook_N : N; -fun shoot_N : N; -fun shoot_V : V; -fun shoot_V2 : V2; -fun shoot_'em_up_N : N; -fun shoot_down_N : N; -fun shooter_N : N; -fun shooting_N : N; -fun shooting_box_N : N; -fun shooting_brake_N : N; -fun shooting_gallery_N : N; -fun shooting_range_N : N; -fun shooting_stick_N : N; -fun shop_N : N; -fun shop_V : V; -fun shop_assistant_N : N; -fun shop_bell_N : N; -fun shop_boy_N : N; -fun shop_front_N : N; -fun shop_girl_N : N; -fun shop_steward_N : N; -fun shopaholic_N : N; -fun shopfront_N : N; -fun shopkeeper_N : N; -fun shoplift_V : V; -fun shoplift_V2 : V2; -fun shoplifter_N : N; -fun shoplifting_N : N; -fun shopper_N : N; -fun shopping_N : N; -fun shopsoiled_A : A; -fun shopwalker_N : N; -fun shopwindow_N : N; -fun shopworn_A : A; -fun shore_N : N; -fun shore_V2 : V2; -fun shorebird_N : N; -fun shoreline_N : N; -fun shoring_N : N; -fun shorn_V2 : V2; -fun short_A : A; -fun short_Adv : Adv; -fun short_N : N; -fun short_V : V; -fun short_V2 : V2; -fun short_and_sweet_A : A; -fun short_beaked_A : A; -fun short_bodied_A : A; -fun short_change_V2 : V2; -fun short_circuit_N : N; -fun short_circuit_V : V; -fun short_circuit_V2 : V2; -fun short_dated_A : A; -fun short_dated_A : A; -fun short_eared_A : A; -fun short_haired_A : A; -fun short_handed_A : A; -fun short_handed_A : A; -fun short_handled_A : A; -fun short_lived_A : A; -fun short_order_A : A; -fun short_range_A : A; -fun short_range_A : A; -fun short_run_A : A; -fun short_sighted_A : A; -fun short_snouted_A : A; -fun short_spurred_A : A; -fun short_stalked_A : A; -fun short_stemmed_A : A; -fun short_tailed_A : A; -fun short_tempered_A : A; -fun short_term_A : A; -fun short_winded_A : A; -fun shortage_N : N; -fun shortbread_N : N; -fun shortcake_N : N; -fun shortcoming_N : N; -fun shortcut_N : N; -fun shorten_V : V; -fun shorten_V2 : V2; -fun shortener_N : N; -fun shortening_N : N; -fun shortfall_N : N; -fun shortgrass_N : N; -fun shorthand_A : A; -fun shorthand_N : N; -fun shorthorn_N : N; -fun shortia_N : N; -fun shortish_A : A; -fun shortlist_N : N; -fun shortlist_V2 : V2; -fun shortly_Adv : Adv; -fun shortness_N : N; -fun shortstop_N : N; -fun shot_N : N; -fun shot_put_N : N; -fun shot_tower_N : N; -fun shotgun_N : N; -fun should_VV : VV; -fun shoulder_N : N; -fun shoulder_V2 : V2; -fun shoulder_blade_N : N; -fun shoulder_flash_N : N; -fun shoulder_strap_N : N; -fun shoulder_to_shoulder_Adv : Adv; -fun shouldered_A : A; -fun shout_N : N; -fun shout_V : V; -fun shout_V2 : V2; -fun shouted_A : A; -fun shouting_N : N; -fun shove_N : N; -fun shove_V : V; -fun shove_V2 : V2; -fun shove_ha'penny_N : N; -fun shovel_N : N; -fun shovel_V2 : V2; -fun shovel_board_N : N; -fun shoveler_N : N; -fun shovelful_N : N; -fun shovelhead_N : N; -fun show_N : N; -fun show_V : V; -fun show_V2 : V2; -fun show_V2V : V2V; -fun show_VS : VS; -fun show_business_N : N; -fun show_off_N : N; -fun show_stopper_N : N; -fun show_up_V : V; -fun show_window_N : N; -fun showbiz_N : N; -fun showboat_N : N; -fun showcase_N : N; -fun showdown_N : N; -fun shower_N : N; -fun shower_V : V; -fun shower_V2 : V2; -fun shower_bath_N : N; -fun showerhead_N : N; -fun showery_A : A; -fun showgirl_N : N; -fun showily_Adv : Adv; -fun showiness_N : N; -fun showing_N : N; -fun showjumping_N : N; -fun showman_N : N; -fun showmanship_N : N; -fun showplace_N : N; -fun showroom_N : N; -fun showy_A : A; -fun shrapnel_N : N; -fun shred_N : N; -fun shred_V2 : V2; -fun shredder_N : N; -fun shrew_N : N; -fun shrew_mouse_N : N; -fun shrew_sized_A : A; -fun shrewd_A : A; -fun shrewdness_N : N; -fun shrewish_A : A; -fun shrewishly_Adv : Adv; -fun shrewishness_N : N; -fun shriek_N : N; -fun shriek_V : V; -fun shriek_V2 : V2; -fun shrieked_A : A; -fun shrift_N : N; -fun shrike_N : N; -fun shrill_A : A; -fun shrill_V : V; -fun shrill_V2 : V2; -fun shrilling_N : N; -fun shrillness_N : N; -fun shrilly_Adv : Adv; -fun shrimp_N : N; -fun shrimp_V : V; -fun shrimp_newburg_PN : PN; -fun shrimper_N : N; -fun shrimpfish_N : N; -fun shrine_N : N; -fun shrine_V2 : V2; -fun shrink_N : N; -fun shrink_V : V; -fun shrink_V2 : V2; -fun shrink_wrap_N : N; -fun shrinkable_A : A; -fun shrinkage_N : N; -fun shrinking_N : N; -fun shrive_V2 : V2; -fun shrivel_V : V; -fun shrivel_V2 : V2; -fun shriveled_A : A; -fun shroud_N : N; -fun shroud_V2 : V2; -fun shrove_tuesday_N : N; -fun shrub_N : N; -fun shrubbery_N : N; -fun shrubby_A : A; -fun shrubby_st_john's_wort_PN : PN; -fun shrublet_N : N; -fun shrug_N : N; -fun shrug_V2 : V2; -fun shrug_VS : VS; -fun shtik_N : N; -fun shtikl_N : N; -fun shuck_N : N; -fun shuck_V2 : V2; -fun shucks_N : N; -fun shudder_N : N; -fun shudder_V : V; -fun shuddering_A : A; -fun shudderingly_Adv : Adv; -fun shuffle_N : N; -fun shuffle_V : V; -fun shuffle_V2 : V2; -fun shuffleboard_N : N; -fun shuffler_N : N; -fun shufti_N : N; -fun shun_V2 : V2; -fun shunt_N : N; -fun shunt_V : V; -fun shunt_V2 : V2; -fun shunter_N : N; -fun shush_V : V; -fun shush_V2 : V2; -fun shut_A : A; -fun shut_V : V; -fun shut_V2 : V2; -fun shut_up_V2 : V2; -fun shutdown_N : N; -fun shuteye_N : N; -fun shutout_N : N; -fun shutter_N : N; -fun shutter_V2 : V2; -fun shutterbug_N : N; -fun shuttered_A : A; -fun shutting_N : N; -fun shuttle_N : N; -fun shuttle_V : V; -fun shuttle_V2 : V2; -fun shuttlecock_N : N; -fun shy_A : A; -fun shy_N : N; -fun shy_V : V; -fun shy_V2 : V2; -fun shyly_Adv : Adv; -fun shyness_N : N; -fun shyster_N : N; -fun sial_N : N; -fun sialadenitis_N : N; -fun sialolith_N : N; -fun siamang_N : N; -fun siamese_A : A; -fun siamese_N : N; -fun siberian_A : A; -fun sibilant_A : A; -fun sibilant_N : N; -fun sibilation_N : N; -fun sibling_N : N; -fun sibyl_N : N; -fun sibylline_A : A; -fun sic_Adv : Adv; -fun sicilian_A : A; -fun sicilian_N : N; -fun sick_A : A; -fun sick_N : N; -fun sick_V2 : V2; -fun sick_benefit_N : N; -fun sick_berth_N : N; -fun sick_headache_N : N; -fun sick_leave_N : N; -fun sick_list_N : N; -fun sick_parade_N : N; -fun sick_pay_N : N; -fun sick_room_N : N; -fun sickbay_N : N; -fun sickbed_N : N; -fun sicken_V : V; -fun sicken_V2 : V2; -fun sickening_A : A; -fun sickish_A : A; -fun sickle_N : N; -fun sicklepod_N : N; -fun sickly_A : A; -fun sickness_N : N; -fun sickroom_N : N; -fun side_A : A; -fun side_N : N; -fun side_V : V; -fun side_by_side_A : A; -fun side_chapel_N : N; -fun side_dish_N : N; -fun side_drum_N : N; -fun side_face_Adv : Adv; -fun side_glance_N : N; -fun side_glance_N : N; -fun side_road_N : N; -fun side_saddle_Adv : Adv; -fun side_saddle_N : N; -fun side_slip_N : N; -fun side_slip_V : V; -fun side_splitting_A : A; -fun side_stroke_N : N; -fun side_to_side_A : A; -fun side_view_N : N; -fun side_wheeler_N : N; -fun sidearm_A : A; -fun sidearm_Adv : Adv; -fun sidebar_N : N; -fun sideboard_N : N; -fun sideburn_N : N; -fun sidecar_N : N; -fun sided_A : A; -fun sidelight_N : N; -fun sideline_N : N; -fun sideline_V : V; -fun sideline_V2 : V2; -fun sidelong_A : A; -fun sidelong_Adv : Adv; -fun sidereal_A : A; -fun siderite_N : N; -fun sideroblast_N : N; -fun siderocyte_N : N; -fun sideropenia_N : N; -fun siderosis_N : N; -fun sidesaddle_Adv : Adv; -fun sidesaddle_N : N; -fun sideshow_N : N; -fun sidesman_N : N; -fun sidestep_N : N; -fun sidestep_V : V; -fun sidestep_V2 : V2; -fun sidestroke_N : N; -fun sideswipe_N : N; -fun sidetrack_N : N; -fun sidetrack_V2 : V2; -fun sidewalk_N : N; -fun sidewall_N : N; -fun sideward_Adv : Adv; -fun sidewards_Adv : Adv; -fun sideway_Adv : Adv; -fun sideways_Adv : Adv; -fun sidewinder_N : N; -fun siding_N : N; -fun sidle_V : V; -fun sidle_V2 : V2; -fun siege_N : N; -fun sienna_N : N; -fun sierra_N : N; -fun sierra_leonian_A : A; -fun sierra_leonian_N : N; -fun siesta_N : N; -fun sieve_N : N; -fun sieve_V2 : V2; -fun sift_V : V; -fun sift_V2 : V2; -fun sifter_N : N; -fun sigeh_N : N; -fun sigh_N : N; -fun sigh_V : V; -fun sigh_V2 : V2; -fun sigh_VS : VS; -fun sight_N : N; -fun sight_V2 : V2; -fun sighted_A : A; -fun sighting_N : N; -fun sightless_A : A; -fun sightreader_N : N; -fun sights_N : N; -fun sightseeing_N : N; -fun sightseer_N : N; -fun sigma_N : N; -fun sigmoid_A : A; -fun sigmoidectomy_N : N; -fun sigmoidoscope_N : N; -fun sigmoidoscopy_N : N; -fun sign_N : N; -fun sign_V : V; -fun sign_V2 : V2; -fun sign_V2V : V2V; -fun sign_on_V2 : V2; -fun sign_painter_N : N; -fun sign_up_V : V; -fun sign_up_V2 : V2; -fun signage_N : N; -fun signal_A : A; -fun signal_N : N; -fun signal_V : V; -fun signal_V2 : V2; -fun signal_VS : VS; -fun signal_box_N : N; -fun signale_V2 : V2; -fun signale_VS : VS; -fun signaler_N : N; -fun signalization_N : N; -fun signalize_V2 : V2; -fun signaller_N : N; -fun signally_Adv : Adv; -fun signalman_N : N; -fun signatory_N : N; -fun signature_N : N; -fun signboard_N : N; -fun signed_A : A; -fun signer_N : N; -fun signet_N : N; -fun signet_ring_N : N; -fun significance_N : N; -fun significant_A : A; -fun significantly_Adv : Adv; -fun signification_N : N; -fun significative_A : A; -fun signify_V : V; -fun signify_V2 : V2; -fun signor_N : N; -fun signora_N : N; -fun signore_N : N; -fun signorina_N : N; -fun signpost_N : N; -fun signpost_V2 : V2; -fun sikh_N : N; -fun silage_N : N; -fun sild_N : N; -fun sildenafil_N : N; -fun silence_N : N; -fun silence_V2 : V2; -fun silenced_A : A; -fun silencer_N : N; -fun silene_N : N; -fun silent_A : A; -fun silenus_N : N; -fun silesia_N : N; -fun silex_N : N; -fun silhouette_N : N; -fun silhouette_V2 : V2; -fun silica_N : N; -fun silicate_N : N; -fun siliceous_A : A; -fun silicide_N : N; -fun silicle_N : N; -fun silicon_N : N; -fun silicone_N : N; -fun silicosis_N : N; -fun silique_N : N; -fun silk_N : N; -fun silk_lined_A : A; -fun silken_A : A; -fun silkily_Adv : Adv; -fun silkiness_N : N; -fun silks_N : N; -fun silkscreen_N : N; -fun silkworm_N : N; -fun silky_A : A; -fun silky_haired_A : A; -fun silky_leaved_A : A; -fun sill_N : N; -fun sillabub_N : N; -fun silliness_N : N; -fun silly_A : A; -fun silly_N : N; -fun silo_N : N; -fun siloxane_N : N; -fun silt_N : N; -fun silt_V : V; -fun silt_V2 : V2; -fun siltstone_N : N; -fun silty_A : A; -fun silurid_N : N; -fun silva_N : N; -fun silvan_A : A; -fun silver_A : A; -fun silver_N : N; -fun silver_V : V; -fun silver_V2 : V2; -fun silver_blue_A : A; -fun silver_bodied_A : A; -fun silver_colored_A : A; -fun silver_fish_N : N; -fun silver_green_A : A; -fun silver_grey_A : A; -fun silver_haired_A : A; -fun silver_leaved_A : A; -fun silver_scaled_A : A; -fun silver_white_A : A; -fun silverback_N : N; -fun silverberry_N : N; -fun silverfish_N : N; -fun silvern_A : A; -fun silverpoint_N : N; -fun silverrod_N : N; -fun silverside_N : N; -fun silversides_N : N; -fun silversmith_N : N; -fun silverspot_N : N; -fun silversword_N : N; -fun silvervine_N : N; -fun silverware_N : N; -fun silverweed_N : N; -fun silverwork_N : N; -fun silvery_A : A; -fun silvex_N : N; -fun silviculture_N : N; -fun sima_N : N; -fun simazine_N : N; -fun simian_A : A; -fun simian_N : N; -fun similar_A : A; -fun similarity_N : N; -fun similarly_Adv : Adv; -fun simile_N : N; -fun similitude_N : N; -fun simmer_N : N; -fun simmer_V : V; -fun simmer_V2 : V2; -fun simnel_N : N; -fun simony_N : N; -fun simoom_N : N; -fun simoon_N : N; -fun simper_N : N; -fun simper_V : V; -fun simper_V2 : V2; -fun simperer_N : N; -fun simperingly_Adv : Adv; -fun simple_A : A; -fun simple_N : N; -fun simple_hearted_A : A; -fun simple_minded_A : A; -fun simple_minded_A : A; -fun simpleton_N : N; -fun simplex_A : A; -fun simplicity_N : N; -fun simplification_N : N; -fun simplified_A : A; -fun simplify_V : V; -fun simplify_V2 : V2; -fun simplistic_A : A; -fun simply_Adv : Adv; -fun simulacrum_N : N; -fun simulate_V2 : V2; -fun simulated_A : A; -fun simulation_N : N; -fun simulator_N : N; -fun simulcast_N : N; -fun simultaneity_N : N; -fun simultaneous_A : A; -fun simultaneously_Adv : Adv; -fun simultaneousness_N : N; -fun simvastatin_N : N; -fun sin_N : N; -fun sin_V : V; -fun since_Adv : Adv; -fun since_Prep : Prep; -fun since_Subj : Subj; -fun sincere_A : A; -fun sincerely_Adv : Adv; -fun sincerity_N : N; -fun sinciput_N : N; -fun sine_N : N; -fun sine_die_Adv : Adv; -fun sine_qua_non_N : N; -fun sinecure_N : N; -fun sinew_N : N; -fun sinewy_A : A; -fun sinful_A : A; -fun sinfulness_N : N; -fun sing_V : V; -fun sing_V2 : V2; -fun singable_A : A; -fun singalong_N : N; -fun singaporean_A : A; -fun singaporean_N : N; -fun singe_N : N; -fun singe_V : V; -fun singe_V2 : V2; -fun singer_N : N; -fun singhalese_A : A; -fun singing_N : N; -fun single_A : A; -fun single_N : N; -fun single_V2 : V2; -fun single_barreled_A : A; -fun single_bedded_A : A; -fun single_breasted_A : A; -fun single_breasted_A : A; -fun single_celled_A : A; -fun single_handed_A : A; -fun single_handed_A : A; -fun single_handed_Adv : Adv; -fun single_handed_Adv : Adv; -fun single_lane_A : A; -fun single_leaf_N : N; -fun single_minded_A : A; -fun single_minded_A : A; -fun single_mindedly_Adv : Adv; -fun single_mindedness_N : N; -fun single_seeded_A : A; -fun single_shelled_A : A; -fun single_spaced_A : A; -fun single_spacing_N : N; -fun single_spacing_N : N; -fun single_stranded_A : A; -fun singleness_N : N; -fun singles_N : N; -fun singlestick_N : N; -fun singlet_N : N; -fun singleton_N : N; -fun singly_Adv : Adv; -fun singsong_N : N; -fun singular_A : A; -fun singular_N : N; -fun singularity_N : N; -fun singularize_V2 : V2; -fun singularly_Adv : Adv; -fun sinhala_N : N; -fun sinhalese_A : A; -fun sinhalese_N : N; -fun sinister_A : A; -fun sinistral_A : A; -fun sinistrorse_A : A; -fun sink_N : N; -fun sink_V : V; -fun sink_V2 : V2; -fun sinkable_A : A; -fun sinker_N : N; -fun sinkhole_N : N; -fun sinking_N : N; -fun sinking_fund_N : N; -fun sinless_A : A; -fun sinlessness_N : N; -fun sinner_N : N; -fun sinning_A : A; -fun sinologist_N : N; -fun sinology_N : N; -fun sinopis_N : N; -fun sintered_A : A; -fun sinuate_A : A; -fun sinuosity_N : N; -fun sinuous_A : A; -fun sinuously_Adv : Adv; -fun sinus_N : N; -fun sinusitis_N : N; -fun sinusoid_N : N; -fun sinusoidal_A : A; -fun sinusoidally_Adv : Adv; -fun sioux_N : N; -fun sip_N : N; -fun sip_V : V; -fun sip_V2 : V2; -fun siphon_N : N; -fun siphon_V : V; -fun siphon_V2 : V2; -fun siphonophore_N : N; -fun sipper_N : N; -fun sir_N : N; -fun sir_roger_de_coverley_N : N; -fun sirdar_N : N; -fun sire_N : N; -fun sire_V2 : V2; -fun siren_N : N; -fun siris_N : N; -fun sirloin_N : N; -fun sirocco_N : N; -fun sirrah_N : N; -fun sirup_N : N; -fun sisal_N : N; -fun siskin_N : N; -fun sissified_A : A; -fun sissoo_N : N; -fun sissy_N : N; -fun sister_N : N; -fun sister_in_law_N : N; -fun sister_in_law_N : N; -fun sisterhood_N : N; -fun sisterly_A : A; -fun siswati_N : N; -fun sit_V : V; -fun sit_V2 : V2; -fun sit_VA : VA; -fun sit_down_N : N; -fun sit_down_V : V; -fun sit_in_N : N; -fun sit_in_N : N; -fun sit_up_N : N; -fun sitar_N : N; -fun site_N : N; -fun site_V : V; -fun sitter_N : N; -fun sitting_A : A; -fun sitting_N : N; -fun sitting_room_N : N; -fun situate_V2 : V2; -fun situated_A : A; -fun situation_N : N; -fun six_A : A; -fun six_N : N; -fun six_footer_N : N; -fun six_footer_N : N; -fun six_membered_A : A; -fun six_pack_N : N; -fun six_pointed_A : A; -fun six_shooter_N : N; -fun six_sided_A : A; -fun six_spot_N : N; -fun sixfold_A : A; -fun sixfold_Adv : Adv; -fun sixpence_N : N; -fun sixpenny_A : A; -fun sixteen_A : A; -fun sixteen_N : N; -fun sixteenth_A : A; -fun sixteenth_N : N; -fun sixth_A : A; -fun sixth_N : N; -fun sixth_former_N : N; -fun sixth_former_N : N; -fun sixthly_Adv : Adv; -fun sixties_N : N; -fun sixtieth_A : A; -fun sixtieth_N : N; -fun sixty_A : A; -fun sixty_N : N; -fun sixty_eight_A : A; -fun sixty_fifth_A : A; -fun sixty_five_A : A; -fun sixty_four_A : A; -fun sixty_fourth_A : A; -fun sixty_nine_A : A; -fun sixty_one_A : A; -fun sixty_seven_A : A; -fun sixty_six_A : A; -fun sixty_three_A : A; -fun sixty_two_A : A; -fun sizable_A : A; -fun size_A : A; -fun size_N : N; -fun size_V2 : V2; -fun sizeable_A : A; -fun sized_A : A; -fun sizzle_N : N; -fun sizzle_V : V; -fun sizzle_V2 : V2; -fun sizzling_A : A; -fun skank_N : N; -fun skate_N : N; -fun skate_V : V; -fun skateboard_N : N; -fun skateboarder_N : N; -fun skateboarding_N : N; -fun skater_N : N; -fun skating_N : N; -fun skating_rink_N : N; -fun skedaddle_N : N; -fun skedaddle_V : V; -fun skedaddle_V2 : V2; -fun skeet_N : N; -fun skeg_N : N; -fun skein_N : N; -fun skeletal_A : A; -fun skeleton_N : N; -fun skep_N : N; -fun skepful_N : N; -fun skeptic_N : N; -fun skeptical_A : A; -fun skepticism_N : N; -fun sketch_N : N; -fun sketch_V : V; -fun sketch_V2 : V2; -fun sketch_block_N : N; -fun sketch_book_N : N; -fun sketch_map_N : N; -fun sketchbook_N : N; -fun sketcher_N : N; -fun sketchily_Adv : Adv; -fun sketchiness_N : N; -fun sketchy_A : A; -fun skew_A : A; -fun skew_V2 : V2; -fun skew_eyed_A : A; -fun skew_eyed_A : A; -fun skewer_N : N; -fun skewer_V2 : V2; -fun ski_N : N; -fun ski_V : V; -fun ski_bob_N : N; -fun ski_jump_N : N; -fun ski_lift_N : N; -fun ski_plane_N : N; -fun ski_plane_N : N; -fun skibob_N : N; -fun skid_N : N; -fun skid_V : V; -fun skid_V2 : V2; -fun skidder_N : N; -fun skidpan_N : N; -fun skier_N : N; -fun skiff_N : N; -fun skiffle_N : N; -fun skiffle_group_N : N; -fun skiing_N : N; -fun skilful_A : A; -fun skill_N : N; -fun skilled_A : A; -fun skillet_N : N; -fun skillfully_Adv : Adv; -fun skillfulness_N : N; -fun skilly_N : N; -fun skim_A : A; -fun skim_N : N; -fun skim_V : V; -fun skim_V2 : V2; -fun skimmed_milk_N : N; -fun skimmer_N : N; -fun skimming_N : N; -fun skimp_V : V; -fun skimp_V2 : V2; -fun skimpily_Adv : Adv; -fun skimpy_A : A; -fun skin_N : N; -fun skin_V : V; -fun skin_V2 : V2; -fun skin_deep_A : A; -fun skin_deep_A : A; -fun skin_diver_N : N; -fun skin_diving_N : N; -fun skin_graft_N : N; -fun skin_tight_A : A; -fun skinflint_N : N; -fun skinful_N : N; -fun skinhead_N : N; -fun skinheads_N : N; -fun skink_N : N; -fun skinless_A : A; -fun skinned_A : A; -fun skinner_N : N; -fun skinniness_N : N; -fun skinny_A : A; -fun skinny_N : N; -fun skinny_dip_N : N; -fun skinny_dipper_N : N; -fun skint_A : A; -fun skintight_A : A; -fun skip_N : N; -fun skip_V : V; -fun skip_V2 : V2; -fun skipjack_N : N; -fun skipper_N : N; -fun skipper_V2 : V2; -fun skipping_rope_N : N; -fun skirl_N : N; -fun skirmish_N : N; -fun skirmish_V : V; -fun skirmisher_N : N; -fun skirret_N : N; -fun skirt_N : N; -fun skirt_V : V; -fun skirt_V2 : V2; -fun skirting_board_N : N; -fun skit_N : N; -fun skitter_V : V; -fun skitter_V2 : V2; -fun skittish_A : A; -fun skittishly_Adv : Adv; -fun skittishness_N : N; -fun skittle_N : N; -fun skittle_V2 : V2; -fun skittle_pin_N : N; -fun skittles_N : N; -fun skivvy_N : N; -fun skua_N : N; -fun skulk_V : V; -fun skulk_V2 : V2; -fun skulker_N : N; -fun skull_N : N; -fun skullcap_N : N; -fun skullduggery_N : N; -fun skulled_A : A; -fun skunk_N : N; -fun skunkweed_N : N; -fun sky_N : N; -fun sky_V2 : V2; -fun sky_blue_A : A; -fun sky_blue_N : N; -fun sky_high_Adv : Adv; -fun sky_high_Adv : Adv; -fun skybox_N : N; -fun skycap_N : N; -fun skydiver_N : N; -fun skydiving_N : N; -fun skyhook_N : N; -fun skylark_N : N; -fun skylark_V : V; -fun skylight_N : N; -fun skyline_N : N; -fun skyrocket_N : N; -fun skyrocket_V : V; -fun skyrocket_V2 : V2; -fun skysail_N : N; -fun skyscraper_N : N; -fun skywalk_N : N; -fun skyward_A : A; -fun skyward_Adv : Adv; -fun skywards_A : A; -fun skywards_Adv : Adv; -fun skywriting_N : N; -fun slab_N : N; -fun slack_A : A; -fun slack_N : N; -fun slack_V : V; -fun slacken_V : V; -fun slacken_V2 : V2; -fun slacker_N : N; -fun slackness_N : N; -fun slacks_N : N; -fun slag_N : N; -fun slag_heap_N : N; -fun slagheap_N : N; -fun slain_A : A; -fun slain_N : N; -fun slake_V2 : V2; -fun slalom_N : N; -fun slam_N : N; -fun slam_V : V; -fun slam_V2 : V2; -fun slam_bang_A : A; -fun slam_bang_Adv : Adv; -fun slam_dunk_V2 : V2; -fun slammer_N : N; -fun slander_N : N; -fun slander_V2 : V2; -fun slanderer_N : N; -fun slanderous_A : A; -fun slanderously_Adv : Adv; -fun slang_N : N; -fun slang_V2 : V2; -fun slangily_Adv : Adv; -fun slanginess_N : N; -fun slanguage_N : N; -fun slangy_A : A; -fun slant_N : N; -fun slant_V : V; -fun slant_V2 : V2; -fun slantingly_Adv : Adv; -fun slantwise_Adv : Adv; -fun slap_Adv : Adv; -fun slap_N : N; -fun slap_V2 : V2; -fun slap_bang_Adv : Adv; -fun slap_bang_Adv : Adv; -fun slap_happy_A : A; -fun slap_up_A : A; -fun slapdash_A : A; -fun slapdash_Adv : Adv; -fun slapper_N : N; -fun slapshot_N : N; -fun slapstick_A : A; -fun slapstick_N : N; -fun slash_N : N; -fun slash_V : V; -fun slash_V2 : V2; -fun slashed_A : A; -fun slasher_N : N; -fun slashing_A : A; -fun slat_N : N; -fun slate_N : N; -fun slate_V2 : V2; -fun slate_V2V : V2V; -fun slate_black_A : A; -fun slate_club_N : N; -fun slate_grey_A : A; -fun slate_pencil_N : N; -fun slating_N : N; -fun slatted_A : A; -fun slattern_N : N; -fun slatternliness_N : N; -fun slatternly_A : A; -fun slaty_A : A; -fun slaughter_N : N; -fun slaughter_V2 : V2; -fun slaughterer_N : N; -fun slaughterhouse_N : N; -fun slav_A : A; -fun slav_N : N; -fun slave_N : N; -fun slave_V : V; -fun slave_driver_N : N; -fun slave_trade_N : N; -fun slave_traffic_N : N; -fun slaveholder_N : N; -fun slaveholding_A : A; -fun slavelike_A : A; -fun slaver_N : N; -fun slaver_V : V; -fun slavery_N : N; -fun slavey_N : N; -fun slavish_A : A; -fun slavishly_Adv : Adv; -fun slavonic_A : A; -fun slaw_N : N; -fun slay_V2 : V2; -fun slayer_N : N; -fun sleaziness_N : N; -fun sleazy_A : A; -fun sled_N : N; -fun sledder_N : N; -fun sledding_N : N; -fun sledge_N : N; -fun sledge_V : V; -fun sledge_V2 : V2; -fun sledgehammer_N : N; -fun sleek_A : A; -fun sleek_V2 : V2; -fun sleekly_Adv : Adv; -fun sleekness_N : N; -fun sleep_N : N; -fun sleep_V : V; -fun sleep_V2 : V2; -fun sleep_learning_N : N; -fun sleeper_N : N; -fun sleepily_Adv : Adv; -fun sleepiness_N : N; -fun sleeping_N : N; -fun sleeping_bag_N : N; -fun sleeping_car_N : N; -fun sleeping_draught_N : N; -fun sleeping_pill_N : N; -fun sleeping_sickness_N : N; -fun sleepless_A : A; -fun sleeplessly_Adv : Adv; -fun sleeplessness_N : N; -fun sleepover_N : N; -fun sleepwalk_V : V; -fun sleepwalk_V2 : V2; -fun sleepwalker_N : N; -fun sleepwalking_N : N; -fun sleepy_A : A; -fun sleepy_head_N : N; -fun sleepyhead_N : N; -fun sleet_N : N; -fun sleet_V : V; -fun sleety_A : A; -fun sleeve_N : N; -fun sleeved_A : A; -fun sleeveless_A : A; -fun sleigh_N : N; -fun sleigh_V : V; -fun sleigh_V2 : V2; -fun sleigh_bell_N : N; -fun sleight_N : N; -fun slender_A : A; -fun slender_waisted_A : A; -fun slender_winged_A : A; -fun slenderize_V : V; -fun slenderize_V2 : V2; -fun slenderly_Adv : Adv; -fun slenderness_N : N; -fun sleuth_N : N; -fun sleuth_hound_N : N; -fun slew_V : V; -fun slew_V2 : V2; -fun slice_N : N; -fun slice_V : V; -fun slice_V2 : V2; -fun sliced_A : A; -fun slicer_N : N; -fun slicing_N : N; -fun slick_A : A; -fun slick_Adv : Adv; -fun slick_N : N; -fun slicked_up_A : A; -fun slicker_N : N; -fun slickness_N : N; -fun slide_N : N; -fun slide_V : V; -fun slide_V2 : V2; -fun slide_rule_N : N; -fun slider_N : N; -fun sliding_A : A; -fun slight_A : A; -fun slight_N : N; -fun slight_V2 : V2; -fun slightingly_Adv : Adv; -fun slightly_Adv : Adv; -fun slightness_N : N; -fun slim_A : A; -fun slim_V : V; -fun slim_V2 : V2; -fun slim_bodied_A : A; -fun slime_N : N; -fun slimed_A : A; -fun sliminess_N : N; -fun slimness_N : N; -fun slimy_A : A; -fun sling_N : N; -fun sling_V : V; -fun sling_V2 : V2; -fun slingback_N : N; -fun slinger_N : N; -fun slinging_N : N; -fun slingshot_N : N; -fun slink_V : V; -fun slink_V2 : V2; -fun slip_N : N; -fun slip_V : V; -fun slip_V2 : V2; -fun slip_carriage_N : N; -fun slip_coach_N : N; -fun slip_on_N : N; -fun slip_road_N : N; -fun slip_up_N : N; -fun slipcover_N : N; -fun slipknot_N : N; -fun slipon_N : N; -fun slipover_N : N; -fun slippage_N : N; -fun slipper_N : N; -fun slipper_shaped_A : A; -fun slippered_A : A; -fun slipperiness_N : N; -fun slippery_A : A; -fun slipping_A : A; -fun slippy_A : A; -fun slipshod_A : A; -fun slipstream_N : N; -fun slipway_N : N; -fun slit_N : N; -fun slit_V2 : V2; -fun slither_V : V; -fun slither_V2 : V2; -fun slithery_A : A; -fun sliver_N : N; -fun sliver_V : V; -fun sliver_V2 : V2; -fun slivovitz_N : N; -fun slob_N : N; -fun slobber_N : N; -fun slobber_V : V; -fun slobber_V2 : V2; -fun sloe_N : N; -fun sloe_gin_N : N; -fun slog_V : V; -fun slog_V2 : V2; -fun slogan_N : N; -fun sloganeer_N : N; -fun sloganeering_N : N; -fun slogger_N : N; -fun sloop_N : N; -fun slop_N : N; -fun slop_V : V; -fun slop_V2 : V2; -fun slop_basin_N : N; -fun slop_pail_N : N; -fun slop_shop_N : N; -fun slope_N : N; -fun slope_V : V; -fun slope_V2 : V2; -fun sloping_A : A; -fun slopingly_Adv : Adv; -fun sloppily_Adv : Adv; -fun sloppiness_N : N; -fun sloppy_A : A; -fun slops_N : N; -fun slopseller_N : N; -fun slopshop_N : N; -fun slosh_V : V; -fun slosh_V2 : V2; -fun sloshed_A : A; -fun slot_N : N; -fun slot_V2 : V2; -fun slot_machine_N : N; -fun sloth_N : N; -fun slothful_A : A; -fun slouch_N : N; -fun slouch_V : V; -fun slouch_V2 : V2; -fun slouch_hat_N : N; -fun sloucher_N : N; -fun slouchily_Adv : Adv; -fun slouchingly_Adv : Adv; -fun slouchy_A : A; -fun slough_N : N; -fun slough_V : V; -fun slough_V2 : V2; -fun slovak_N : N; -fun sloven_N : N; -fun slovenian_A : A; -fun slovenian_N : N; -fun slovenliness_N : N; -fun slovenly_A : A; -fun slow_A : A; -fun slow_Adv : Adv; -fun slow_V : V; -fun slow_V2 : V2; -fun slow_moving_A : A; -fun slow_worm_N : N; -fun slowcoach_N : N; -fun slowdown_N : N; -fun slower_Adv : Adv; -fun slowest_Adv : Adv; -fun slowgoing_A : A; -fun slowly_Adv : Adv; -fun slowness_N : N; -fun slub_N : N; -fun sludge_N : N; -fun slug_N : N; -fun slug_V : V; -fun slug_V2 : V2; -fun sluggard_N : N; -fun slugger_N : N; -fun sluggish_A : A; -fun sluggishly_Adv : Adv; -fun sluggishness_N : N; -fun sluice_N : N; -fun sluice_V : V; -fun sluice_V2 : V2; -fun sluice_valve_N : N; -fun sluicegate_N : N; -fun sluicing_A : A; -fun slum_N : N; -fun slum_V : V; -fun slumber_N : N; -fun slumber_V : V; -fun slumber_V2 : V2; -fun slumberer_N : N; -fun slumberous_A : A; -fun slumgullion_N : N; -fun slummy_A : A; -fun slump_N : N; -fun slump_V : V; -fun slump_V2 : V2; -fun slur_N : N; -fun slur_V : V; -fun slur_V2 : V2; -fun slurred_A : A; -fun slurry_N : N; -fun slush_N : N; -fun slushy_A : A; -fun slut_N : N; -fun sluttish_A : A; -fun sly_A : A; -fun slyness_N : N; -fun smack_Adv : Adv; -fun smack_N : N; -fun smack_V : V; -fun smack_V2 : V2; -fun smacker_N : N; -fun smacking_N : N; -fun small_A : A; -fun small_Adv : Adv; -fun small_N : N; -fun small_capitalization_A : A; -fun small_eared_A : A; -fun small_fruited_A : A; -fun small_minded_A : A; -fun small_scale_A : A; -fun small_seeded_A : A; -fun small_toothed_A : A; -fun small_winged_A : A; -fun smaller_A : A; -fun smallholder_N : N; -fun smallholding_N : N; -fun smallish_A : A; -fun smallmouth_N : N; -fun smallness_N : N; -fun smallpox_N : N; -fun smalltime_A : A; -fun smaltite_N : N; -fun smarmy_A : A; -fun smart_A : A; -fun smart_N : N; -fun smart_V : V; -fun smarta_N : N; -fun smarten_V : V; -fun smarten_V2 : V2; -fun smartly_Adv : Adv; -fun smartness_N : N; -fun smash_Adv : Adv; -fun smash_N : N; -fun smash_V : V; -fun smash_V2 : V2; -fun smash_up_N : N; -fun smasher_N : N; -fun smashing_A : A; -fun smashing_N : N; -fun smattering_N : N; -fun smear_N : N; -fun smear_V : V; -fun smear_V2 : V2; -fun smear_word_N : N; -fun smegma_N : N; -fun smell_N : N; -fun smell_V : V; -fun smell_V2 : V2; -fun smell_VA : VA; -fun smelling_bottle_N : N; -fun smelly_A : A; -fun smelt_N : N; -fun smelt_V2 : V2; -fun smelter_N : N; -fun smew_N : N; -fun smilax_N : N; -fun smile_N : N; -fun smile_V : V; -fun smile_V2 : V2; -fun smiler_N : N; -fun smiley_N : N; -fun smilingly_Adv : Adv; -fun smilo_N : N; -fun smirch_N : N; -fun smirch_V2 : V2; -fun smirk_N : N; -fun smirk_V : V; -fun smirk_V2 : V2; -fun smirker_N : N; -fun smite_V : V; -fun smite_V2 : V2; -fun smith_N : N; -fun smithereens_N : N; -fun smithy_N : N; -fun smitten_A : A; -fun smock_N : N; -fun smocking_N : N; -fun smog_N : N; -fun smoggy_A : A; -fun smoke_N : N; -fun smoke_V : V; -fun smoke_V2 : V2; -fun smoke_bomb_N : N; -fun smoke_cured_A : A; -fun smoke_dried_A : A; -fun smoke_filled_A : A; -fun smoke_free_A : A; -fun smoke_screen_N : N; -fun smoked_A : A; -fun smokehouse_N : N; -fun smokeless_A : A; -fun smoker_N : N; -fun smokestack_N : N; -fun smoking_A : A; -fun smoking_N : N; -fun smoking_car_N : N; -fun smoking_carriage_N : N; -fun smoking_compartment_N : N; -fun smoking_mixture_N : N; -fun smoking_room_N : N; -fun smoky_A : A; -fun smolder_V : V; -fun smoldering_A : A; -fun smolderingly_Adv : Adv; -fun smooth_A : A; -fun smooth_N : N; -fun smooth_V : V; -fun smooth_V2 : V2; -fun smooth_bodied_A : A; -fun smooth_bore_A : A; -fun smooth_faced_A : A; -fun smooth_haired_A : A; -fun smooth_shelled_A : A; -fun smooth_skinned_A : A; -fun smooth_spoken_A : A; -fun smooth_tongued_A : A; -fun smoothbark_N : N; -fun smoothbore_N : N; -fun smoothed_A : A; -fun smoothhound_N : N; -fun smoothie_N : N; -fun smoothing_iron_N : N; -fun smoothing_plane_N : N; -fun smoothly_Adv : Adv; -fun smoothness_N : N; -fun smorgasbord_N : N; -fun smother_N : N; -fun smother_V2 : V2; -fun smothered_A : A; -fun smothering_A : A; -fun smoulder_N : N; -fun smoulder_V : V; -fun smudge_N : N; -fun smudge_V : V; -fun smudge_V2 : V2; -fun smudgy_A : A; -fun smug_A : A; -fun smuggle_V2 : V2; -fun smuggler_N : N; -fun smuggling_N : N; -fun smugly_Adv : Adv; -fun smugness_N : N; -fun smut_N : N; -fun smut_V2 : V2; -fun smuttily_Adv : Adv; -fun smuttiness_N : N; -fun smutty_A : A; -fun snack_N : N; -fun snack_V : V; -fun snack_bar_N : N; -fun snack_counter_N : N; -fun snaffle_N : N; -fun snaffle_V2 : V2; -fun snaffle_bit_N : N; -fun snafu_N : N; -fun snag_N : N; -fun snag_V : V; -fun snag_V2 : V2; -fun snail_N : N; -fun snail_V : V; -fun snail_V2 : V2; -fun snailfish_N : N; -fun snailflower_N : N; -fun snake_N : N; -fun snake_V : V; -fun snake_charmer_N : N; -fun snake_haired_A : A; -fun snakebird_N : N; -fun snakebite_N : N; -fun snakeblenny_N : N; -fun snakefly_N : N; -fun snakewood_N : N; -fun snaky_A : A; -fun snap_N : N; -fun snap_V : V; -fun snap_V2 : V2; -fun snap_VS : VS; -fun snap_fastener_N : N; -fun snapdragon_N : N; -fun snapper_N : N; -fun snappish_A : A; -fun snappishly_Adv : Adv; -fun snappishness_N : N; -fun snappy_A : A; -fun snapshot_N : N; -fun snare_N : N; -fun snare_V2 : V2; -fun snare_drum_N : N; -fun snarer_N : N; -fun snarl_N : N; -fun snarl_V : V; -fun snarl_V2 : V2; -fun snarl_up_N : N; -fun snatch_N : N; -fun snatch_V : V; -fun snatch_V2 : V2; -fun snatch_away_V2 : V2; -fun snatcher_N : N; -fun snazzy_A : A; -fun sneak_N : N; -fun sneak_V : V; -fun sneak_V2 : V2; -fun sneak_thief_N : N; -fun sneaking_A : A; -fun sneakingly_Adv : Adv; -fun sneaky_A : A; -fun sneer_N : N; -fun sneer_V : V; -fun sneer_V2 : V2; -fun sneerer_N : N; -fun sneeringly_Adv : Adv; -fun sneeze_N : N; -fun sneeze_V : V; -fun sneeze_V2 : V2; -fun sneezer_N : N; -fun sneezeweed_N : N; -fun sneezy_A : A; -fun snick_N : N; -fun snick_V : V; -fun snick_V2 : V2; -fun snicker_N : N; -fun snicker_V : V; -fun snicker_V2 : V2; -fun snide_A : A; -fun sniff_N : N; -fun sniff_V : V; -fun sniff_V2 : V2; -fun sniff_VS : VS; -fun sniffer_N : N; -fun sniffle_V : V; -fun sniffler_N : N; -fun sniffly_A : A; -fun sniffy_A : A; -fun snifter_N : N; -fun snigger_N : N; -fun snigger_V : V; -fun snigger_V2 : V2; -fun snip_N : N; -fun snip_V : V; -fun snip_V2 : V2; -fun snipe_N : N; -fun snipe_V : V; -fun snipe_V2 : V2; -fun snipefish_N : N; -fun sniper_N : N; -fun snippet_N : N; -fun snipping_N : N; -fun snips_N : N; -fun snit_N : N; -fun snitch_V : V; -fun snitch_V2 : V2; -fun snivel_N : N; -fun snivel_V : V; -fun snivel_V2 : V2; -fun sniveller_N : N; -fun snob_N : N; -fun snobbery_N : N; -fun snobbish_A : A; -fun snobbishly_Adv : Adv; -fun snobbishness_N : N; -fun snog_V : V; -fun snogging_N : N; -fun snood_N : N; -fun snook_N : N; -fun snooker_N : N; -fun snoop_N : N; -fun snoop_V : V; -fun snooper_N : N; -fun snootily_Adv : Adv; -fun snootiness_N : N; -fun snooty_A : A; -fun snooze_N : N; -fun snooze_V : V; -fun snooze_V2 : V2; -fun snore_N : N; -fun snore_V : V; -fun snore_V2 : V2; -fun snorer_N : N; -fun snorkel_N : N; -fun snorkeling_N : N; -fun snort_N : N; -fun snort_V : V; -fun snort_V2 : V2; -fun snort_VS : VS; -fun snorter_N : N; -fun snorty_A : A; -fun snot_N : N; -fun snot_nosed_A : A; -fun snotty_A : A; -fun snout_N : N; -fun snow_N : N; -fun snow_V : V; -fun snow_V2 : V2; -fun snow_blind_A : A; -fun snow_capped_A : A; -fun snow_clad_A : A; -fun snow_clad_A : A; -fun snow_covered_A : A; -fun snow_in_summer_N : N; -fun snow_line_N : N; -fun snow_on_the_mountain_N : N; -fun snow_white_A : A; -fun snow_white_A : A; -fun snowball_N : N; -fun snowball_V : V; -fun snowball_V2 : V2; -fun snowbank_N : N; -fun snowbell_N : N; -fun snowberry_N : N; -fun snowblind_A : A; -fun snowblindness_N : N; -fun snowboard_N : N; -fun snowboarder_N : N; -fun snowboarding_N : N; -fun snowbound_A : A; -fun snowcap_N : N; -fun snowcapped_A : A; -fun snowdrift_N : N; -fun snowdrop_N : N; -fun snowfall_N : N; -fun snowfield_N : N; -fun snowflake_N : N; -fun snowman_N : N; -fun snowmobile_N : N; -fun snowplough_N : N; -fun snowplow_N : N; -fun snowshoe_N : N; -fun snowstorm_N : N; -fun snowsuit_N : N; -fun snowy_A : A; -fun snub_A : A; -fun snub_N : N; -fun snub_V2 : V2; -fun snub_nosed_A : A; -fun snuff_A : A; -fun snuff_N : N; -fun snuff_V : V; -fun snuff_V2 : V2; -fun snuff_color_N : N; -fun snuff_colour_A : A; -fun snuff_colour_N : N; -fun snuff_coloured_A : A; -fun snuffbox_N : N; -fun snuffer_N : N; -fun snuffers_N : N; -fun snuffle_N : N; -fun snuffle_V : V; -fun snuffle_V2 : V2; -fun snuffler_N : N; -fun snug_A : A; -fun snug_N : N; -fun snuggery_N : N; -fun snuggle_V : V; -fun snuggle_V2 : V2; -fun snugly_Adv : Adv; -fun snugness_N : N; -fun so_AdA : AdA; -fun so_Adv : Adv; -fun so_N : N; -fun so_Subj : Subj; -fun so_and_so_N : N; -fun so_called_A : A; -fun so_far_Adv : Adv; -fun so_so_A : A; -fun so_so_Adv : Adv; -fun soak_N : N; -fun soak_V : V; -fun soak_V2 : V2; -fun soaker_N : N; -fun soaking_Adv : Adv; -fun soap_N : N; -fun soap_V2 : V2; -fun soap_bubble_N : N; -fun soap_opera_N : N; -fun soapberry_N : N; -fun soapbox_N : N; -fun soapfish_N : N; -fun soapiness_N : N; -fun soapstone_N : N; -fun soapsuds_N : N; -fun soapweed_N : N; -fun soapwort_N : N; -fun soapy_A : A; -fun soar_N : N; -fun soar_V : V; -fun soar_V2 : V2; -fun soaring_A : A; -fun sob_N : N; -fun sob_V : V; -fun sob_V2 : V2; -fun sob_stuff_N : N; -fun sobbingly_Adv : Adv; -fun sober_A : A; -fun sober_V : V; -fun sober_V2 : V2; -fun sober_sides_N : N; -fun sobering_A : A; -fun soberness_N : N; -fun sobersided_A : A; -fun sobersides_N : N; -fun sobralia_N : N; -fun sobriety_N : N; -fun sobriquet_N : N; -fun soc_N : N; -fun socage_N : N; -fun soccer_N : N; -fun sociability_N : N; -fun sociable_A : A; -fun sociable_N : N; -fun sociably_Adv : Adv; -fun social_A : A; -fun social_N : N; -fun social_work_N : N; -fun socialism_N : N; -fun socialist_A : A; -fun socialist_N : N; -fun socialistic_A : A; -fun socialite_N : N; -fun sociality_N : N; -fun socialization_N : N; -fun socialize_V2 : V2; -fun socialized_A : A; -fun socializer_N : N; -fun socially_Adv : Adv; -fun society_N : N; -fun sociobiologic_A : A; -fun sociobiologically_Adv : Adv; -fun sociobiologist_N : N; -fun sociobiology_N : N; -fun sociocultural_A : A; -fun socioeconomic_A : A; -fun socioeconomically_Adv : Adv; -fun sociolinguist_N : N; -fun sociolinguistic_A : A; -fun sociolinguistically_Adv : Adv; -fun sociolinguistics_N : N; -fun sociological_A : A; -fun sociologically_Adv : Adv; -fun sociologist_N : N; -fun sociology_N : N; -fun sociometry_N : N; -fun sociopath_N : N; -fun sociopathic_A : A; -fun sock_Adv : Adv; -fun sock_N : N; -fun sock_V2 : V2; -fun socket_N : N; -fun sockeye_N : N; -fun socle_N : N; -fun socratic_A : A; -fun sod_N : N; -fun sod_V : V; -fun soda_N : N; -fun soda_biscuit_N : N; -fun soda_cracker_N : N; -fun soda_fountain_N : N; -fun soda_water_N : N; -fun sodalist_N : N; -fun sodalite_N : N; -fun sodden_A : A; -fun sodding_A : A; -fun sodium_N : N; -fun sodoku_N : N; -fun sodom_N : N; -fun sodomite_N : N; -fun sodomy_N : N; -fun sofa_N : N; -fun soffit_N : N; -fun soft_A : A; -fun soft_boiled_A : A; -fun soft_boiled_A : A; -fun soft_finned_A : A; -fun soft_footed_A : A; -fun soft_footed_A : A; -fun soft_haired_A : A; -fun soft_headed_A : A; -fun soft_hearted_A : A; -fun soft_nosed_A : A; -fun soft_pedal_V : V; -fun soft_pedal_V2 : V2; -fun soft_shoe_N : N; -fun soft_soap_V2 : V2; -fun soft_solder_N : N; -fun soft_solder_V2 : V2; -fun soft_spoken_A : A; -fun soft_spoken_A : A; -fun soft_witted_A : A; -fun softball_N : N; -fun soften_V : V; -fun soften_V2 : V2; -fun softened_A : A; -fun softener_N : N; -fun softening_N : N; -fun softhearted_A : A; -fun softheartedness_N : N; -fun softie_N : N; -fun softish_A : A; -fun softland_V : V; -fun softly_Adv : Adv; -fun softness_N : N; -fun software_N : N; -fun softwood_N : N; -fun softy_N : N; -fun sogginess_N : N; -fun soggy_A : A; -fun soh_N : N; -fun soigne_A : A; -fun soignee_A : A; -fun soil_N : N; -fun soil_V : V; -fun soil_V2 : V2; -fun soil_building_A : A; -fun soil_pipe_N : N; -fun soiling_N : N; -fun soiree_N : N; -fun soixante_neuf_N : N; -fun sojourn_N : N; -fun sojourn_V : V; -fun sojourner_N : N; -fun sol_N : N; -fun sol_fa_N : N; -fun solace_N : N; -fun solace_V2 : V2; -fun solan_N : N; -fun solanaceous_A : A; -fun solar_A : A; -fun solar_plexus_N : N; -fun solarium_N : N; -fun solarization_N : N; -fun sold_A : A; -fun sold_out_A : A; -fun solder_N : N; -fun solder_V2 : V2; -fun solderer_N : N; -fun soldering_iron_N : N; -fun soldier_N : N; -fun soldier_V : V; -fun soldierfish_N : N; -fun soldiering_N : N; -fun soldierly_A : A; -fun soldiery_N : N; -fun sole_A : A; -fun sole_N : N; -fun sole_V2 : V2; -fun solecism_N : N; -fun soled_A : A; -fun soleless_A : A; -fun solemn_A : A; -fun solemnity_N : N; -fun solemnization_N : N; -fun solemnize_V2 : V2; -fun solemnly_Adv : Adv; -fun solemnness_N : N; -fun solenogaster_N : N; -fun solenoid_N : N; -fun soleus_N : N; -fun solfege_N : N; -fun solferino_N : N; -fun solicit_V : V; -fun solicit_V2 : V2; -fun solicitation_N : N; -fun solicitor_N : N; -fun solicitor_general_N : N; -fun solicitorship_N : N; -fun solicitous_A : A; -fun solicitously_Adv : Adv; -fun solicitude_N : N; -fun solid_A : A; -fun solid_N : N; -fun solid_colored_A : A; -fun solid_hoofed_A : A; -fun solid_state_A : A; -fun solid_state_A : A; -fun solidarity_N : N; -fun solidification_N : N; -fun solidify_V : V; -fun solidify_V2 : V2; -fun solidity_N : N; -fun solidly_Adv : Adv; -fun solidness_N : N; -fun solidus_N : N; -fun soliloquize_V : V; -fun soliloquy_N : N; -fun solipsism_N : N; -fun solitaire_N : N; -fun solitarily_Adv : Adv; -fun solitary_A : A; -fun soliton_N : N; -fun solitude_N : N; -fun solleret_N : N; -fun solmization_N : N; -fun solo_A : A; -fun solo_N : N; -fun soloist_N : N; -fun solstice_N : N; -fun solubility_N : N; -fun soluble_A : A; -fun solute_N : N; -fun solution_N : N; -fun solvability_N : N; -fun solvable_A : A; -fun solvate_N : N; -fun solvation_N : N; -fun solve_V2 : V2; -fun solved_A : A; -fun solvency_N : N; -fun solvent_A : A; -fun solvent_N : N; -fun som_N : N; -fun soma_N : N; -fun somali_A : A; -fun somali_N : N; -fun somalian_A : A; -fun somalian_N : N; -fun soman_N : N; -fun somatic_A : A; -fun somatogenic_A : A; -fun somatosense_N : N; -fun somatosensory_A : A; -fun somatotropin_N : N; -fun somber_A : A; -fun somberly_Adv : Adv; -fun sombre_A : A; -fun sombreness_N : N; -fun sombrero_N : N; -fun some_A : A; -fun some_Quant : Quant; -fun somebody_NP : NP; -fun someday_Adv : Adv; -fun somehow_AdV : AdV; -fun somehow_Adv : Adv; -fun someone_NP : NP; -fun someplace_Adv : Adv; -fun somersault_N : N; -fun somersault_V : V; -fun somersault_V2 : V2; -fun somesthesia_N : N; -fun something_NP : NP; -fun sometime_Adv : Adv; -fun sometimes_Adv : Adv; -fun someway_Adv : Adv; -fun somewhat_Adv : Adv; -fun somewhere_Adv : Adv; -fun somewhere_N : N; -fun sommelier_N : N; -fun somnambulism_N : N; -fun somnambulist_N : N; -fun somniloquist_N : N; -fun somnolence_N : N; -fun somnolent_A : A; -fun son_N : N; -fun son_in_law_N : N; -fun son_in_law_N : N; -fun sonant_N : N; -fun sonar_N : N; -fun sonata_N : N; -fun sonatina_N : N; -fun sone_N : N; -fun song_N : N; -fun songbird_N : N; -fun songbook_N : N; -fun songster_N : N; -fun songstress_N : N; -fun songwriter_N : N; -fun sonic_A : A; -fun sonnet_N : N; -fun sonneteer_N : N; -fun sonny_N : N; -fun sonogram_N : N; -fun sonograph_N : N; -fun sonography_N : N; -fun sonority_N : N; -fun sonorous_A : A; -fun sonorously_Adv : Adv; -fun sonsy_A : A; -fun soon_Adv : Adv; -fun sooner_Adv : Adv; -fun soonest_Adv : Adv; -fun soot_N : N; -fun soot_V2 : V2; -fun soot_black_A : A; -fun sooth_N : N; -fun soothe_V2 : V2; -fun soothing_A : A; -fun soothingly_Adv : Adv; -fun soothsayer_N : N; -fun sooty_A : A; -fun sop_N : N; -fun sop_V2 : V2; -fun sophism_N : N; -fun sophist_N : N; -fun sophistic_A : A; -fun sophisticate_N : N; -fun sophisticated_A : A; -fun sophistication_N : N; -fun sophistry_N : N; -fun sophomore_A : A; -fun sophomore_N : N; -fun soporific_A : A; -fun soporific_N : N; -fun sopping_A : A; -fun sopping_Adv : Adv; -fun soppy_A : A; -fun sopranino_A : A; -fun soprano_A : A; -fun soprano_N : N; -fun sorb_N : N; -fun sorbate_N : N; -fun sorbent_N : N; -fun sorbet_N : N; -fun sorcerer_N : N; -fun sorceress_N : N; -fun sorcery_N : N; -fun sordid_A : A; -fun sordidly_Adv : Adv; -fun sordidness_N : N; -fun sore_A : A; -fun sore_N : N; -fun sore_eyed_A : A; -fun sorehead_N : N; -fun sorely_Adv : Adv; -fun soreness_N : N; -fun sorghum_N : N; -fun sorgo_N : N; -fun sorority_N : N; -fun sorption_N : N; -fun sorrel_A : A; -fun sorrel_N : N; -fun sorrow_N : N; -fun sorrow_V : V; -fun sorrowful_A : A; -fun sorrowfully_Adv : Adv; -fun sorry_A : A; -fun sort_N : N; -fun sort_V : V; -fun sort_V2 : V2; -fun sort_out_V2 : V2; -fun sorted_A : A; -fun sorter_N : N; -fun sortie_N : N; -fun sorting_N : N; -fun sorus_N : N; -fun sos_N : N; -fun sot_N : N; -fun soteriological_A : A; -fun soteriology_N : N; -fun sotho_A : A; -fun sotho_N : N; -fun sottish_A : A; -fun sottishly_Adv : Adv; -fun sottishness_N : N; -fun sotto_voce_Adv : Adv; -fun sou_N : N; -fun sou'_east_Adv : Adv; -fun sou'_east_N : N; -fun sou'_sou'_east_Adv : Adv; -fun sou'_sou'_east_N : N; -fun sou'_sou'_west_Adv : Adv; -fun sou'_sou'_west_N : N; -fun sou'_west_Adv : Adv; -fun sou'_west_N : N; -fun sou'_wester_N : N; -fun sou'wester_N : N; -fun souari_N : N; -fun soubrette_N : N; -fun soubriquet_N : N; -fun souchong_N : N; -fun souffle_N : N; -fun souffle_like_A : A; -fun sough_V : V; -fun sough_V2 : V2; -fun soughingly_Adv : Adv; -fun sought_A : A; -fun souk_N : N; -fun soul_N : N; -fun soul_destroying_A : A; -fun soul_destroying_A : A; -fun soul_searching_N : N; -fun soul_stirring_A : A; -fun soulful_A : A; -fun soulfully_Adv : Adv; -fun soulless_A : A; -fun soullessly_Adv : Adv; -fun sound_A : A; -fun sound_Adv : Adv; -fun sound_N : N; -fun sound_V : V; -fun sound_V2 : V2; -fun sound_VA : VA; -fun sound_VS : VS; -fun sound_film_N : N; -fun sound_recording_N : N; -fun sound_wave_N : N; -fun soundbox_N : N; -fun sounder_N : N; -fun sounding_A : A; -fun sounding_N : N; -fun sounding_board_N : N; -fun soundless_A : A; -fun soundly_Adv : Adv; -fun soundman_N : N; -fun soundness_N : N; -fun soundproof_A : A; -fun soundproof_V2 : V2; -fun soundtrack_N : N; -fun soup_N : N; -fun soup_V2 : V2; -fun soup_kitchen_N : N; -fun soup_strainer_N : N; -fun soupcon_N : N; -fun soupspoon_N : N; -fun soupy_A : A; -fun sour_A : A; -fun sour_N : N; -fun sour_V : V; -fun sour_V2 : V2; -fun sourball_N : N; -fun source_N : N; -fun sourdine_N : N; -fun sourdough_N : N; -fun soured_A : A; -fun souring_N : N; -fun sourly_Adv : Adv; -fun sourness_N : N; -fun sourpuss_N : N; -fun soursop_N : N; -fun souse_N : N; -fun souse_V2 : V2; -fun soused_A : A; -fun soutache_N : N; -fun soutane_N : N; -fun south_A : A; -fun south_Adv : Adv; -fun south_N : N; -fun south_central_A : A; -fun south_polar_A : A; -fun south_southeast_Adv : Adv; -fun south_southeast_Adv : Adv; -fun south_southeast_N : N; -fun south_southwest_Adv : Adv; -fun south_southwest_Adv : Adv; -fun south_southwest_N : N; -fun southbound_A : A; -fun southeast_A : A; -fun southeast_Adv : Adv; -fun southeast_N : N; -fun southeaster_N : N; -fun southeasterly_A : A; -fun southeastern_A : A; -fun southeastward_A : A; -fun southeastward_Adv : Adv; -fun southerly_A : A; -fun southerly_Adv : Adv; -fun southern_A : A; -fun southerner_N : N; -fun southernism_N : N; -fun southernmost_A : A; -fun southernness_N : N; -fun southernwood_N : N; -fun southland_N : N; -fun southpaw_N : N; -fun southward_Adv : Adv; -fun southwards_Adv : Adv; -fun southwest_A : A; -fun southwest_Adv : Adv; -fun southwest_N : N; -fun southwester_N : N; -fun southwesterly_A : A; -fun southwestern_A : A; -fun southwestward_A : A; -fun southwestward_Adv : Adv; -fun souvenir_N : N; -fun souvlaki_N : N; -fun sovereign_A : A; -fun sovereign_N : N; -fun sovereignty_N : N; -fun soviet_A : A; -fun soviet_N : N; -fun sovietize_V2 : V2; -fun sow_N : N; -fun sow_V : V; -fun sow_V2 : V2; -fun sowbane_N : N; -fun sowbelly_N : N; -fun sowbread_N : N; -fun sower_N : N; -fun soy_N : N; -fun soya_N : N; -fun sozzled_A : A; -fun spa_N : N; -fun space_N : N; -fun space_V2 : V2; -fun space_bar_N : N; -fun space_capsule_N : N; -fun space_heater_N : N; -fun space_helmet_N : N; -fun space_rocket_N : N; -fun space_time_N : N; -fun space_time_N : N; -fun space_vehicle_N : N; -fun spacecraft_N : N; -fun spaced_A : A; -fun spaced_out_A : A; -fun spaceflight_N : N; -fun spaceship_N : N; -fun spacesuit_N : N; -fun spacewalker_N : N; -fun spaceward_Adv : Adv; -fun spacing_N : N; -fun spacious_A : A; -fun spaciousness_N : N; -fun spackle_N : N; -fun spade_N : N; -fun spade_V2 : V2; -fun spade_shaped_A : A; -fun spadefish_N : N; -fun spadefoot_N : N; -fun spadeful_N : N; -fun spadework_N : N; -fun spadix_N : N; -fun spaghetti_N : N; -fun spaghetti_western_PN : PN; -fun spaghettini_N : N; -fun spall_N : N; -fun spallation_N : N; -fun spam_N : N; -fun spammer_N : N; -fun span_N : N; -fun span_V2 : V2; -fun spandex_N : N; -fun spandrel_N : N; -fun spangle_N : N; -fun spangle_V2 : V2; -fun spaniard_N : N; -fun spaniel_N : N; -fun spanish_A : A; -fun spanish_N : N; -fun spank_N : N; -fun spank_V : V; -fun spank_V2 : V2; -fun spanker_N : N; -fun spanking_A : A; -fun spanking_N : N; -fun spanner_N : N; -fun spar_N : N; -fun spar_V : V; -fun spare_A : A; -fun spare_N : N; -fun spare_V : V; -fun spare_V2 : V2; -fun spare_rib_N : N; -fun sparely_Adv : Adv; -fun spareness_N : N; -fun sparer_N : N; -fun sparerib_N : N; -fun spareribs_N : N; -fun sparid_N : N; -fun sparing_A : A; -fun spark_N : N; -fun spark_V : V; -fun spark_V2 : V2; -fun spark_plug_N : N; -fun sparking_plug_N : N; -fun sparkle_N : N; -fun sparkle_V : V; -fun sparkler_N : N; -fun sparkling_A : A; -fun sparling_N : N; -fun sparring_N : N; -fun sparring_match_N : N; -fun sparring_partner_N : N; -fun sparrow_N : N; -fun sparrow_sized_A : A; -fun sparse_A : A; -fun sparsely_Adv : Adv; -fun sparseness_N : N; -fun sparsity_N : N; -fun spartan_A : A; -fun spartan_N : N; -fun spasm_N : N; -fun spasmodic_A : A; -fun spasmodically_Adv : Adv; -fun spasmolysis_N : N; -fun spastic_A : A; -fun spastic_N : N; -fun spasticity_N : N; -fun spat_N : N; -fun spat_V : V; -fun spat_V2 : V2; -fun spatchcock_N : N; -fun spatchcock_V2 : V2; -fun spate_N : N; -fun spathe_N : N; -fun spathiphyllum_N : N; -fun spatial_A : A; -fun spatially_Adv : Adv; -fun spatiotemporal_A : A; -fun spatter_N : N; -fun spatter_V : V; -fun spatter_V2 : V2; -fun spatterdock_N : N; -fun spatula_N : N; -fun spatulate_A : A; -fun spavin_N : N; -fun spavined_A : A; -fun spawn_N : N; -fun spawn_V : V; -fun spawn_V2 : V2; -fun spawner_N : N; -fun spay_V2 : V2; -fun spayed_A : A; -fun spaying_N : N; -fun speak_V : V; -fun speak_V2 : V2; -fun speakable_A : A; -fun speakeasy_N : N; -fun speaker_N : N; -fun speakerphone_N : N; -fun speakership_N : N; -fun speaking_A : A; -fun speaking_N : N; -fun speaking_trumpet_N : N; -fun speaking_tube_N : N; -fun spear_N : N; -fun spear_V2 : V2; -fun spearfish_N : N; -fun spearhead_N : N; -fun spearhead_V2 : V2; -fun spearmint_N : N; -fun spec_N : N; -fun special_A : A; -fun special_N : N; -fun specialism_N : N; -fun specialist_N : N; -fun specialistic_A : A; -fun speciality_N : N; -fun specialization_N : N; -fun specialize_V : V; -fun specialize_V2 : V2; -fun specialized_A : A; -fun specially_Adv : Adv; -fun specialty_N : N; -fun speciation_N : N; -fun specie_N : N; -fun species_N : N; -fun specifiable_A : A; -fun specific_A : A; -fun specific_N : N; -fun specifically_Adv : Adv; -fun specification_N : N; -fun specificity_N : N; -fun specified_A : A; -fun specifier_N : N; -fun specify_V : V; -fun specify_V2 : V2; -fun specify_VS : VS; -fun specimen_N : N; -fun specious_A : A; -fun speciously_Adv : Adv; -fun speciousness_N : N; -fun speck_N : N; -fun specked_A : A; -fun speckle_N : N; -fun speckled_A : A; -fun speckless_A : A; -fun spectacle_N : N; -fun spectacled_A : A; -fun spectacles_N : N; -fun spectacular_A : A; -fun spectacular_N : N; -fun spectacularly_Adv : Adv; -fun spectator_N : N; -fun spectinomycin_N : N; -fun spectral_A : A; -fun spectre_N : N; -fun spectrogram_N : N; -fun spectrograph_N : N; -fun spectrographic_A : A; -fun spectrographically_Adv : Adv; -fun spectrometric_A : A; -fun spectrophotometer_N : N; -fun spectroscope_N : N; -fun spectroscopic_A : A; -fun spectroscopy_N : N; -fun spectrum_N : N; -fun speculate_V : V; -fun speculate_VS : VS; -fun speculation_N : N; -fun speculative_A : A; -fun speculatively_Adv : Adv; -fun speculativeness_N : N; -fun speculator_N : N; -fun speculum_N : N; -fun speech_N : N; -fun speech_day_N : N; -fun speech_endowed_A : A; -fun speechify_V : V; -fun speechless_A : A; -fun speechlessly_Adv : Adv; -fun speechlessness_N : N; -fun speechwriter_N : N; -fun speed_N : N; -fun speed_V : V; -fun speed_V2 : V2; -fun speed_cop_N : N; -fun speed_indicator_N : N; -fun speed_limit_N : N; -fun speed_reading_N : N; -fun speed_up_N : N; -fun speedboat_N : N; -fun speeder_N : N; -fun speedily_Adv : Adv; -fun speeding_N : N; -fun speedometer_N : N; -fun speedskater_N : N; -fun speedway_N : N; -fun speedwell_N : N; -fun speedy_A : A; -fun spelaeologist_N : N; -fun spelaeology_N : N; -fun speleologist_N : N; -fun speleology_N : N; -fun spell_N : N; -fun spell_V : V; -fun spell_V2 : V2; -fun spell_checker_N : N; -fun spellbind_V2 : V2; -fun spellbinder_N : N; -fun spellbound_A : A; -fun speller_N : N; -fun spelling_N : N; -fun spelt_N : N; -fun spelter_N : N; -fun spend_V : V; -fun spend_V2 : V2; -fun spend_V2V : V2V; -fun spend_VS : VS; -fun spender_N : N; -fun spending_N : N; -fun spendthrift_N : N; -fun spent_A : A; -fun sperm_N : N; -fun sperm_filled_A : A; -fun sperm_whale_N : N; -fun spermaceti_N : N; -fun spermatid_N : N; -fun spermatocele_N : N; -fun spermatocyte_N : N; -fun spermatogenesis_N : N; -fun spermatophyte_N : N; -fun spermatozoon_N : N; -fun spermicidal_A : A; -fun spermicide_N : N; -fun spermous_A : A; -fun spew_V : V; -fun spew_V2 : V2; -fun sphagnum_N : N; -fun sphenion_N : N; -fun sphere_N : N; -fun spherical_A : A; -fun spherically_Adv : Adv; -fun sphericity_N : N; -fun spherocyte_N : N; -fun spheroid_N : N; -fun spherometer_N : N; -fun spherule_N : N; -fun sphincter_N : N; -fun sphingine_A : A; -fun sphinx_N : N; -fun sphygmomanometer_N : N; -fun spic_N : N; -fun spicate_A : A; -fun spiccato_N : N; -fun spice_N : N; -fun spice_V2 : V2; -fun spice_scented_A : A; -fun spicebush_N : N; -fun spicemill_N : N; -fun spicily_Adv : Adv; -fun spiciness_N : N; -fun spick_A : A; -fun spicule_N : N; -fun spicy_A : A; -fun spider_N : N; -fun spider_shaped_A : A; -fun spiderflower_N : N; -fun spiderwort_N : N; -fun spidery_A : A; -fun spiegeleisen_N : N; -fun spiel_N : N; -fun spiel_V : V; -fun spiel_V2 : V2; -fun spiff_N : N; -fun spiffing_A : A; -fun spigot_N : N; -fun spike_N : N; -fun spike_V2 : V2; -fun spiked_A : A; -fun spikelike_A : A; -fun spikemoss_N : N; -fun spikenard_N : N; -fun spiky_A : A; -fun spill_N : N; -fun spill_V : V; -fun spill_V2 : V2; -fun spillage_N : N; -fun spillover_N : N; -fun spillway_N : N; -fun spin_N : N; -fun spin_V : V; -fun spin_V2 : V2; -fun spin_drier_N : N; -fun spin_dry_V2 : V2; -fun spin_off_N : N; -fun spinach_N : N; -fun spinal_A : A; -fun spinally_Adv : Adv; -fun spindle_N : N; -fun spindle_berry_N : N; -fun spindle_legged_A : A; -fun spindle_legged_A : A; -fun spindle_shanked_A : A; -fun spindle_shanks_N : N; -fun spindle_tree_N : N; -fun spindlelegs_N : N; -fun spindly_A : A; -fun spindrift_N : N; -fun spine_N : N; -fun spine_tipped_A : A; -fun spinel_N : N; -fun spineless_A : A; -fun spinelessness_N : N; -fun spinet_N : N; -fun spinnability_N : N; -fun spinnable_A : A; -fun spinnaker_N : N; -fun spinnbarkeit_N : N; -fun spinner_N : N; -fun spinney_N : N; -fun spinning_N : N; -fun spinning_wheel_N : N; -fun spinose_A : A; -fun spinous_A : A; -fun spinster_N : N; -fun spinsterhood_N : N; -fun spiny_A : A; -fun spiny_backed_A : A; -fun spiny_edged_A : A; -fun spiny_finned_A : A; -fun spiny_leaved_A : A; -fun spiny_stemmed_A : A; -fun spiracle_N : N; -fun spiral_A : A; -fun spiral_N : N; -fun spiral_V : V; -fun spiral_shelled_A : A; -fun spirally_Adv : Adv; -fun spire_N : N; -fun spirea_N : N; -fun spirillum_N : N; -fun spirit_N : N; -fun spirit_V2 : V2; -fun spirit_lamp_N : N; -fun spirit_level_N : N; -fun spirit_rapper_N : N; -fun spirit_stove_N : N; -fun spirited_A : A; -fun spiritedly_Adv : Adv; -fun spiritless_A : A; -fun spiritual_A : A; -fun spiritual_N : N; -fun spiritualism_N : N; -fun spiritualist_N : N; -fun spiritualistic_A : A; -fun spirituality_N : N; -fun spiritualization_N : N; -fun spiritualize_V2 : V2; -fun spiritually_Adv : Adv; -fun spiritualty_N : N; -fun spirituous_A : A; -fun spirochete_N : N; -fun spirogram_N : N; -fun spirograph_N : N; -fun spirogyra_N : N; -fun spirometer_N : N; -fun spirometry_N : N; -fun spironolactone_N : N; -fun spirt_N : N; -fun spirt_V : V; -fun spirula_N : N; -fun spit_N : N; -fun spit_V : V; -fun spit_V2 : V2; -fun spitball_N : N; -fun spite_N : N; -fun spite_V2 : V2; -fun spiteful_A : A; -fun spitefully_Adv : Adv; -fun spitefulness_N : N; -fun spitfire_N : N; -fun spitter_N : N; -fun spitting_N : N; -fun spittle_N : N; -fun spittoon_N : N; -fun spitz_N : N; -fun spiv_N : N; -fun splash_N : N; -fun splash_V : V; -fun splash_V2 : V2; -fun splashboard_N : N; -fun splashdown_N : N; -fun splashed_A : A; -fun splasher_N : N; -fun splashy_A : A; -fun splat_N : N; -fun splay_A : A; -fun splay_N : N; -fun splay_V : V; -fun splay_V2 : V2; -fun splayfoot_N : N; -fun splayfooted_A : A; -fun spleen_N : N; -fun spleenwort_N : N; -fun splendid_A : A; -fun splendiferous_A : A; -fun splendour_N : N; -fun splenectomy_N : N; -fun splenetic_A : A; -fun splenic_A : A; -fun splenitis_N : N; -fun splenius_N : N; -fun splenomegaly_N : N; -fun splice_N : N; -fun splice_V2 : V2; -fun splicer_N : N; -fun spline_N : N; -fun splint_N : N; -fun splinter_N : N; -fun splinter_V : V; -fun splinter_V2 : V2; -fun splinter_proof_A : A; -fun splintery_A : A; -fun split_A : A; -fun split_N : N; -fun split_V : V; -fun split_V2 : V2; -fun split_pea_N : N; -fun splitsville_N : N; -fun splitter_N : N; -fun splodge_N : N; -fun sploosh_V : V; -fun sploosh_V2 : V2; -fun splosh_V2 : V2; -fun splotch_N : N; -fun splurge_N : N; -fun splurge_V : V; -fun splutter_N : N; -fun splutter_V : V; -fun splutter_V2 : V2; -fun spode_N : N; -fun spodumene_N : N; -fun spoil_N : N; -fun spoil_V : V; -fun spoil_V2 : V2; -fun spoilage_N : N; -fun spoiled_A : A; -fun spoiler_N : N; -fun spoilsport_N : N; -fun spoke_N : N; -fun spoken_A : A; -fun spokeshave_N : N; -fun spokesman_N : N; -fun spokesperson_N : N; -fun spokeswoman_N : N; -fun spoliation_N : N; -fun spondaic_A : A; -fun spondee_N : N; -fun spondylarthritis_N : N; -fun spondylitis_N : N; -fun spondylolisthesis_N : N; -fun sponge_N : N; -fun sponge_V : V; -fun sponge_V2 : V2; -fun sponge_cake_N : N; -fun spongefly_N : N; -fun sponger_N : N; -fun sponginess_N : N; -fun spongioblast_N : N; -fun spongy_A : A; -fun sponsor_N : N; -fun sponsor_V2 : V2; -fun sponsorship_N : N; -fun spontaneity_N : N; -fun spontaneous_A : A; -fun spontaneously_Adv : Adv; -fun spontaneousness_N : N; -fun spoof_N : N; -fun spoof_V2 : V2; -fun spook_N : N; -fun spook_V2 : V2; -fun spooky_A : A; -fun spool_N : N; -fun spoon_N : N; -fun spoon_V : V; -fun spoon_V2 : V2; -fun spoon_shaped_A : A; -fun spoonbill_N : N; -fun spoonerism_N : N; -fun spoonfeed_V2 : V2; -fun spoonfeeding_N : N; -fun spoonful_N : N; -fun spoor_N : N; -fun sporadic_A : A; -fun sporadically_Adv : Adv; -fun sporangiophore_N : N; -fun sporangium_N : N; -fun spore_N : N; -fun spore_bearing_A : A; -fun sporocarp_N : N; -fun sporogenous_A : A; -fun sporophore_N : N; -fun sporophyll_N : N; -fun sporophyte_N : N; -fun sporotrichosis_N : N; -fun sporozoan_N : N; -fun sporozoite_N : N; -fun sporran_N : N; -fun sport_N : N; -fun sport_V : V; -fun sport_V2 : V2; -fun sporting_A : A; -fun sportingly_Adv : Adv; -fun sportive_A : A; -fun sportively_Adv : Adv; -fun sportiveness_N : N; -fun sports_car_N : N; -fun sports_coat_N : N; -fun sports_editor_N : N; -fun sports_jacket_N : N; -fun sportscast_N : N; -fun sportsman_N : N; -fun sportsmanlike_A : A; -fun sportsmanship_N : N; -fun sportswear_N : N; -fun sporty_A : A; -fun spot_N : N; -fun spot_V : V; -fun spot_V2 : V2; -fun spot_VS : VS; -fun spot_welder_N : N; -fun spotless_A : A; -fun spotlessly_Adv : Adv; -fun spotlessness_N : N; -fun spotlight_N : N; -fun spotlight_V2 : V2; -fun spotted_A : A; -fun spotter_N : N; -fun spotty_A : A; -fun spousal_A : A; -fun spouse_N : N; -fun spout_N : N; -fun spout_V : V; -fun spout_V2 : V2; -fun spouter_N : N; -fun sprachgefuhl_N : N; -fun sprag_N : N; -fun sprain_N : N; -fun sprain_V2 : V2; -fun sprat_N : N; -fun sprawl_N : N; -fun sprawl_V : V; -fun sprawl_V2 : V2; -fun sprawler_N : N; -fun sprawling_A : A; -fun sprawly_A : A; -fun spray_N : N; -fun spray_V2 : V2; -fun spray_dried_A : A; -fun spray_gun_N : N; -fun sprayer_N : N; -fun spraying_N : N; -fun spraypaint_V : V; -fun spraypaint_V2 : V2; -fun spread_A : A; -fun spread_N : N; -fun spread_V : V; -fun spread_V2 : V2; -fun spread_V2V : V2V; -fun spread_VS : VS; -fun spread_eagle_A : A; -fun spread_over_N : N; -fun spreadeagle_N : N; -fun spreadeagle_V2 : V2; -fun spreader_N : N; -fun spreadsheet_N : N; -fun sprechgesang_N : N; -fun spree_N : N; -fun sprig_N : N; -fun sprigged_A : A; -fun sprightliness_N : N; -fun sprightly_A : A; -fun spring_N : N; -fun spring_V : V; -fun spring_V2 : V2; -fun spring_balance_N : N; -fun spring_clean_N : N; -fun spring_clean_V2 : V2; -fun spring_cleaning_N : N; -fun spring_cleaning_N : N; -fun spring_flowering_A : A; -fun spring_gun_N : N; -fun spring_loaded_A : A; -fun spring_mattress_N : N; -fun spring_up_V : V; -fun springboard_N : N; -fun springbok_N : N; -fun springer_N : N; -fun springless_A : A; -fun springlike_A : A; -fun springtide_N : N; -fun springtime_N : N; -fun springy_A : A; -fun sprinkle_N : N; -fun sprinkle_V2 : V2; -fun sprinkler_N : N; -fun sprinkling_N : N; -fun sprint_N : N; -fun sprint_V : V; -fun sprinter_N : N; -fun sprit_N : N; -fun sprite_N : N; -fun sprites_N : N; -fun spritsail_N : N; -fun spritz_N : N; -fun spritzer_N : N; -fun sprocket_N : N; -fun sprocket_wheel_N : N; -fun sprog_N : N; -fun sprout_N : N; -fun sprout_V : V; -fun sprout_V2 : V2; -fun sprouted_A : A; -fun spruce_A : A; -fun spruce_N : N; -fun spruce_V : V; -fun spruce_V2 : V2; -fun spruceness_N : N; -fun sprue_N : N; -fun spry_A : A; -fun spud_N : N; -fun spue_V : V; -fun spue_V2 : V2; -fun spume_N : N; -fun spunk_N : N; -fun spunky_A : A; -fun spur_N : N; -fun spur_V : V; -fun spur_V2 : V2; -fun spur_of_the_moment_A : A; -fun spurge_N : N; -fun spurious_A : A; -fun spuriously_Adv : Adv; -fun spuriousness_N : N; -fun spurn_V2 : V2; -fun spurner_N : N; -fun spurre_V2V : V2V; -fun spurt_N : N; -fun spurt_V : V; -fun spurt_V2 : V2; -fun sputnik_N : N; -fun sputter_N : N; -fun sputter_V : V; -fun sputter_V2 : V2; -fun sputum_N : N; -fun spy_N : N; -fun spy_V : V; -fun spy_V2 : V2; -fun spy_hole_N : N; -fun spyglass_N : N; -fun spying_N : N; -fun spymaster_N : N; -fun spyware_N : N; -fun squab_A : A; -fun squab_N : N; -fun squabble_N : N; -fun squabble_V : V; -fun squabbler_N : N; -fun squad_N : N; -fun squadron_N : N; -fun squalid_A : A; -fun squall_N : N; -fun squall_V : V; -fun squall_V2 : V2; -fun squally_A : A; -fun squalor_N : N; -fun squama_N : N; -fun squamule_N : N; -fun squamulose_A : A; -fun squander_V2 : V2; -fun squandered_A : A; -fun squandering_N : N; -fun squandermania_N : N; -fun square_A : A; -fun square_Adv : Adv; -fun square_N : N; -fun square_V : V; -fun square_V2 : V2; -fun square_bashing_N : N; -fun square_bashing_N : N; -fun square_built_A : A; -fun square_built_A : A; -fun square_jawed_A : A; -fun square_rigged_A : A; -fun square_rigged_A : A; -fun square_rigger_N : N; -fun square_shaped_A : A; -fun square_shouldered_A : A; -fun square_tailed_A : A; -fun square_toed_A : A; -fun square_toed_A : A; -fun square_toes_N : N; -fun squared_A : A; -fun squarely_Adv : Adv; -fun squareness_N : N; -fun squaretail_N : N; -fun squarish_A : A; -fun squash_N : N; -fun squash_V : V; -fun squash_V2 : V2; -fun squashed_A : A; -fun squashy_A : A; -fun squat_A : A; -fun squat_N : N; -fun squat_V : V; -fun squat_down_V : V; -fun squatness_N : N; -fun squatter_N : N; -fun squaw_N : N; -fun squawbush_N : N; -fun squawk_N : N; -fun squawk_V : V; -fun squawk_V2 : V2; -fun squawker_N : N; -fun squeak_N : N; -fun squeak_V : V; -fun squeak_V2 : V2; -fun squeaker_N : N; -fun squeaky_A : A; -fun squeal_N : N; -fun squeal_V : V; -fun squeal_V2 : V2; -fun squealer_N : N; -fun squeamish_A : A; -fun squeamishly_Adv : Adv; -fun squeamishness_N : N; -fun squeegee_N : N; -fun squeegee_V2 : V2; -fun squeeze_N : N; -fun squeeze_V : V; -fun squeeze_V2 : V2; -fun squeezer_N : N; -fun squelch_N : N; -fun squelch_V : V; -fun squelch_V2 : V2; -fun squib_N : N; -fun squid_N : N; -fun squiffy_A : A; -fun squiggle_N : N; -fun squiggly_A : A; -fun squill_N : N; -fun squilla_N : N; -fun squinch_N : N; -fun squinched_A : A; -fun squint_N : N; -fun squint_V : V; -fun squint_eyed_A : A; -fun squint_eyed_A : A; -fun squinter_N : N; -fun squinty_A : A; -fun squire_N : N; -fun squire_V2 : V2; -fun squirearchy_N : N; -fun squirm_N : N; -fun squirm_V : V; -fun squirrel_N : N; -fun squirrel_sized_A : A; -fun squirrelfish_N : N; -fun squirt_N : N; -fun squirt_V : V; -fun squirt_V2 : V2; -fun squish_N : N; -fun sri_lankan_A : A; -fun sri_lankan_N : N; -fun srn_N : N; -fun ss_N : N; -fun stab_N : N; -fun stab_V : V; -fun stab_V2 : V2; -fun stabb_V2 : V2; -fun stabber_N : N; -fun stabbing_A : A; -fun stabile_A : A; -fun stabile_N : N; -fun stability_N : N; -fun stabilization_N : N; -fun stabilize_V : V; -fun stabilize_V2 : V2; -fun stabilized_A : A; -fun stabilizer_N : N; -fun stabilizing_A : A; -fun stable_A : A; -fun stable_N : N; -fun stable_V2 : V2; -fun stable_companion_N : N; -fun stableboy_N : N; -fun stableman_N : N; -fun stablemate_N : N; -fun stabling_N : N; -fun stably_Adv : Adv; -fun staccato_A : A; -fun staccato_Adv : Adv; -fun stachyose_N : N; -fun stack_N : N; -fun stack_V2 : V2; -fun stacked_A : A; -fun stacker_N : N; -fun stacks_N : N; -fun stacte_N : N; -fun staddle_N : N; -fun stadium_N : N; -fun staff_N : N; -fun staff_V2 : V2; -fun staff_office_N : N; -fun stag_N : N; -fun stag_party_N : N; -fun stage_N : N; -fun stage_V : V; -fun stage_V2 : V2; -fun stage_struck_A : A; -fun stage_struck_A : A; -fun stage_whisper_N : N; -fun stagecoach_N : N; -fun stagecraft_N : N; -fun staged_A : A; -fun stagehand_N : N; -fun stager_N : N; -fun stagflation_N : N; -fun stagflationary_A : A; -fun stagger_N : N; -fun stagger_V : V; -fun stagger_V2 : V2; -fun staggerbush_N : N; -fun staggerer_N : N; -fun staggeringly_Adv : Adv; -fun staggers_N : N; -fun staghound_N : N; -fun stagily_Adv : Adv; -fun staginess_N : N; -fun staging_N : N; -fun stagnancy_N : N; -fun stagnant_A : A; -fun stagnate_V : V; -fun stagnation_N : N; -fun stagy_A : A; -fun staid_A : A; -fun staidness_N : N; -fun stain_N : N; -fun stain_V : V; -fun stain_V2 : V2; -fun stainability_N : N; -fun stainable_A : A; -fun stained_A : A; -fun stainer_N : N; -fun staining_N : N; -fun stainless_A : A; -fun stair_N : N; -fun stair_carpet_N : N; -fun stair_carpet_N : N; -fun stair_rod_N : N; -fun stair_rod_N : N; -fun staircase_N : N; -fun stairhead_N : N; -fun stairs_N : N; -fun stairway_N : N; -fun stairwell_N : N; -fun stake_N : N; -fun stake_V2 : V2; -fun stake_holder_N : N; -fun stakeholder_N : N; -fun stakeout_N : N; -fun stalactite_N : N; -fun stalagmite_N : N; -fun stale_A : A; -fun stale_V : V; -fun stalemate_N : N; -fun stalemate_V2 : V2; -fun staleness_N : N; -fun stalk_N : N; -fun stalk_V : V; -fun stalk_V2 : V2; -fun stalker_N : N; -fun stalking_horse_N : N; -fun stalking_horse_N : N; -fun stall_N : N; -fun stall_V : V; -fun stall_V2 : V2; -fun stall_fed_A : A; -fun stall_fed_A : A; -fun stallion_N : N; -fun stalwart_A : A; -fun stalwart_N : N; -fun stamen_N : N; -fun stamina_N : N; -fun stammel_N : N; -fun stammer_N : N; -fun stammer_V : V; -fun stammer_V2 : V2; -fun stammerer_N : N; -fun stammeringly_Adv : Adv; -fun stamp_N : N; -fun stamp_V : V; -fun stamp_V2 : V2; -fun stamp_album_N : N; -fun stamp_collector_N : N; -fun stamp_dealer_N : N; -fun stamp_down_V2 : V2; -fun stamp_duty_N : N; -fun stampede_N : N; -fun stampede_V : V; -fun stampede_V2 : V2; -fun stamper_N : N; -fun stamping_ground_N : N; -fun stance_N : N; -fun stanch_V2 : V2; -fun stanchion_N : N; -fun stand_N : N; -fun stand_V : V; -fun stand_V2 : V2; -fun stand_VS : VS; -fun stand_VV : VV; -fun stand_alone_A : A; -fun stand_in_N : N; -fun stand_in_N : N; -fun stand_to_N : N; -fun stand_up_A : A; -fun stand_up_A : A; -fun stand_up_V : V; -fun standard_A : A; -fun standard_N : N; -fun standard_bearer_N : N; -fun standard_bearer_N : N; -fun standardization_N : N; -fun standardize_V2 : V2; -fun standardized_A : A; -fun standardizer_N : N; -fun standby_A : A; -fun standby_N : N; -fun standdown_N : N; -fun standee_N : N; -fun stander_N : N; -fun standing_A : A; -fun standing_N : N; -fun standoffish_A : A; -fun standoffishly_Adv : Adv; -fun standoffishness_N : N; -fun standpipe_N : N; -fun standpoint_N : N; -fun standstill_N : N; -fun stanhope_N : N; -fun stanhopea_N : N; -fun stannic_A : A; -fun stannite_N : N; -fun stanza_N : N; -fun stapedectomy_N : N; -fun stapelia_N : N; -fun stapes_N : N; -fun staphylococcal_A : A; -fun staphylococcal_enterotoxin_b_PN : PN; -fun staphylococcus_N : N; -fun staple_A : A; -fun staple_N : N; -fun staple_V2 : V2; -fun stapler_N : N; -fun stapling_machine_N : N; -fun star_N : N; -fun star_V : V; -fun star_V2 : V2; -fun star_duckweed_N : N; -fun star_of_bethlehem_N : N; -fun star_thistle_N : N; -fun starboard_A : A; -fun starboard_N : N; -fun starboard_V2 : V2; -fun starch_N : N; -fun starch_V2 : V2; -fun starches_N : N; -fun starchless_A : A; -fun starchlike_A : A; -fun starchy_A : A; -fun stardom_N : N; -fun stardust_N : N; -fun stare_N : N; -fun stare_V : V; -fun stare_V2 : V2; -fun starer_N : N; -fun starets_N : N; -fun starfish_N : N; -fun starflower_N : N; -fun stargazer_N : N; -fun stargazing_N : N; -fun staring_A : A; -fun staring_Adv : Adv; -fun stark_A : A; -fun stark_Adv : Adv; -fun starkers_A : A; -fun starkly_Adv : Adv; -fun starkness_N : N; -fun starless_A : A; -fun starlet_N : N; -fun starlight_N : N; -fun starlike_A : A; -fun starling_N : N; -fun starlit_A : A; -fun starry_A : A; -fun starry_eyed_A : A; -fun starry_eyed_A : A; -fun starship_N : N; -fun start_N : N; -fun start_V : V; -fun start_V2 : V2; -fun start_VS : VS; -fun start_VV : VV; -fun starter_N : N; -fun starting_A : A; -fun starting_gate_N : N; -fun starting_point_N : N; -fun starting_post_N : N; -fun startle_N : N; -fun startle_V2 : V2; -fun startled_A : A; -fun startling_A : A; -fun startlingly_Adv : Adv; -fun startup_N : N; -fun starvation_N : N; -fun starve_V : V; -fun starve_V2 : V2; -fun starved_A : A; -fun starveling_N : N; -fun stash_V2 : V2; -fun stasis_N : N; -fun statant_A : A; -fun state_N : N; -fun state_V2 : V2; -fun state_VS : VS; -fun state_of_the_art_A : A; -fun state_supported_A : A; -fun statecraft_N : N; -fun stated_A : A; -fun statehouse_N : N; -fun stateless_A : A; -fun stateliness_N : N; -fun stately_A : A; -fun statement_N : N; -fun stater_N : N; -fun stateroom_N : N; -fun statesman_N : N; -fun statesmanlike_A : A; -fun statesmanship_N : N; -fun stateswoman_N : N; -fun statewide_A : A; -fun static_A : A; -fun static_N : N; -fun statically_Adv : Adv; -fun statics_N : N; -fun station_N : N; -fun station_V2 : V2; -fun station_waggon_N : N; -fun stationariness_N : N; -fun stationary_A : A; -fun stationer_N : N; -fun stationery_N : N; -fun stationmaster_N : N; -fun statistic_N : N; -fun statistical_A : A; -fun statistically_Adv : Adv; -fun statistician_N : N; -fun statistics_N : N; -fun stative_A : A; -fun stator_N : N; -fun statuary_A : A; -fun statuary_N : N; -fun statue_N : N; -fun statuesque_A : A; -fun statuette_N : N; -fun stature_N : N; -fun status_N : N; -fun status_quo_N : N; -fun statute_N : N; -fun statute_book_N : N; -fun statutorily_Adv : Adv; -fun statutory_A : A; -fun staunch_A : A; -fun staunch_V2 : V2; -fun staunchly_Adv : Adv; -fun staunchness_N : N; -fun staurikosaur_N : N; -fun stave_N : N; -fun stave_V : V; -fun stave_V2 : V2; -fun stay_N : N; -fun stay_V : V; -fun stay_V2 : V2; -fun stay_VA : VA; -fun stay_VS : VS; -fun stay_at_home_A : A; -fun stay_at_home_N : N; -fun stay_at_home_N : N; -fun stayer_N : N; -fun staysail_N : N; -fun stead_N : N; -fun steadfast_A : A; -fun steadfastness_N : N; -fun steadied_A : A; -fun steadily_Adv : Adv; -fun steadiness_N : N; -fun steady_A : A; -fun steady_Adv : Adv; -fun steady_N : N; -fun steady_V : V; -fun steady_V2 : V2; -fun steadying_A : A; -fun steak_N : N; -fun steakhouse_N : N; -fun steal_N : N; -fun steal_V : V; -fun steal_V2 : V2; -fun stealth_N : N; -fun stealthily_Adv : Adv; -fun stealthy_A : A; -fun steam_N : N; -fun steam_V : V; -fun steam_V2 : V2; -fun steam_boiler_N : N; -fun steam_coal_N : N; -fun steam_engine_N : N; -fun steam_heat_N : N; -fun steam_heat_V2 : V2; -fun steam_powered_A : A; -fun steamboat_N : N; -fun steamed_A : A; -fun steamer_N : N; -fun steamfitter_N : N; -fun steaming_A : A; -fun steamroller_N : N; -fun steamroller_V2 : V2; -fun steamship_N : N; -fun steamy_A : A; -fun stearic_A : A; -fun stearin_N : N; -fun steatopygia_N : N; -fun steatorrhea_N : N; -fun steed_N : N; -fun steel_N : N; -fun steel_V2 : V2; -fun steel_clad_A : A; -fun steel_plated_A : A; -fun steelmaker_N : N; -fun steelworks_N : N; -fun steely_A : A; -fun steelyard_N : N; -fun steenbok_N : N; -fun steep_A : A; -fun steep_N : N; -fun steep_V : V; -fun steep_V2 : V2; -fun steep_sided_A : A; -fun steepen_V : V; -fun steepen_V2 : V2; -fun steeper_N : N; -fun steepish_A : A; -fun steeple_N : N; -fun steeplechase_N : N; -fun steeplechaser_N : N; -fun steeplejack_N : N; -fun steeply_Adv : Adv; -fun steepness_N : N; -fun steer_N : N; -fun steer_V : V; -fun steer_V2 : V2; -fun steerable_A : A; -fun steerage_N : N; -fun steerageway_N : N; -fun steering_N : N; -fun steering_gear_N : N; -fun steering_wheel_N : N; -fun steersman_N : N; -fun stegosaur_N : N; -fun stele_N : N; -fun stelis_N : N; -fun stellar_A : A; -fun stem_N : N; -fun stem_V : V; -fun stem_V2 : V2; -fun stem_winder_N : N; -fun stemless_A : A; -fun stemma_N : N; -fun stemmatic_A : A; -fun stemmatology_N : N; -fun stemmed_A : A; -fun stemmer_N : N; -fun stemmer_V2 : V2; -fun stench_N : N; -fun stencil_N : N; -fun stencil_V : V; -fun stencil_V2 : V2; -fun stenograph_N : N; -fun stenographer_N : N; -fun stenographic_A : A; -fun stenography_N : N; -fun stenopterygius_N : N; -fun stenosed_A : A; -fun stenosis_N : N; -fun stent_N : N; -fun stentor_N : N; -fun stentorian_A : A; -fun step_N : N; -fun step_V : V; -fun step_V2 : V2; -fun stepbrother_N : N; -fun stepchild_N : N; -fun stepdaughter_N : N; -fun stepfather_N : N; -fun stephanion_N : N; -fun stephanotis_N : N; -fun stepladder_N : N; -fun stepmother_N : N; -fun stepparent_N : N; -fun steppe_N : N; -fun stepper_N : N; -fun stepping_stone_N : N; -fun steprelationship_N : N; -fun steps_N : N; -fun stepsister_N : N; -fun stepson_N : N; -fun stepwise_Adv : Adv; -fun steradian_N : N; -fun sterculia_N : N; -fun stereo_N : N; -fun stereophonic_A : A; -fun stereoscope_N : N; -fun stereoscopic_A : A; -fun stereotype_N : N; -fun stereotype_V2 : V2; -fun stereotyped_A : A; -fun stereotypically_Adv : Adv; -fun sterile_A : A; -fun sterility_N : N; -fun sterilization_N : N; -fun sterilize_V : V; -fun sterilize_V2 : V2; -fun sterilized_A : A; -fun sterling_A : A; -fun sterling_N : N; -fun stern_A : A; -fun stern_N : N; -fun sternal_A : A; -fun sternly_Adv : Adv; -fun sternness_N : N; -fun sternocleidomastoid_N : N; -fun sternpost_N : N; -fun sternum_N : N; -fun sternutator_N : N; -fun sternutatory_A : A; -fun sternwheeler_N : N; -fun steroid_N : N; -fun steroidal_A : A; -fun sterol_N : N; -fun stertorous_A : A; -fun stertorously_Adv : Adv; -fun stethoscope_N : N; -fun stetson_N : N; -fun stevedore_N : N; -fun stevia_N : N; -fun stew_N : N; -fun stew_V : V; -fun stew_V2 : V2; -fun steward_N : N; -fun stewardess_N : N; -fun stewardship_N : N; -fun stewed_A : A; -fun stewing_N : N; -fun sthene_N : N; -fun stibnite_N : N; -fun stick_N : N; -fun stick_V : V; -fun stick_V2 : V2; -fun stick_in_the_mud_A : A; -fun stick_in_the_mud_N : N; -fun stick_on_A : A; -fun stick_on_A : A; -fun stick_up_N : N; -fun stickball_N : N; -fun sticker_N : N; -fun stickily_Adv : Adv; -fun stickiness_N : N; -fun sticking_plaster_N : N; -fun stickleback_N : N; -fun stickler_N : N; -fun stickpin_N : N; -fun sticktight_N : N; -fun stickweed_N : N; -fun sticky_A : A; -fun stiff_A : A; -fun stiff_Adv : Adv; -fun stiff_N : N; -fun stiff_backed_A : A; -fun stiff_branched_A : A; -fun stiff_haired_A : A; -fun stiff_necked_A : A; -fun stiff_necked_A : A; -fun stiff_tailed_A : A; -fun stiffen_V : V; -fun stiffen_V2 : V2; -fun stiffener_N : N; -fun stiffening_N : N; -fun stiffly_Adv : Adv; -fun stiffness_N : N; -fun stifle_N : N; -fun stifle_V : V; -fun stifle_V2 : V2; -fun stifler_N : N; -fun stigma_N : N; -fun stigmata_N : N; -fun stigmatic_A : A; -fun stigmatic_N : N; -fun stigmatism_N : N; -fun stigmatization_N : N; -fun stigmatize_V2 : V2; -fun stile_N : N; -fun stiletto_N : N; -fun still_A : A; -fun still_Adv : Adv; -fun still_N : N; -fun still_V2 : V2; -fun still_life_N : N; -fun still_room_N : N; -fun stillbirth_N : N; -fun stillborn_A : A; -fun stillness_N : N; -fun stillroom_N : N; -fun stilly_A : A; -fun stilt_N : N; -fun stilted_A : A; -fun stiltedly_Adv : Adv; -fun stilton_N : N; -fun stimulant_A : A; -fun stimulant_N : N; -fun stimulate_V2 : V2; -fun stimulated_A : A; -fun stimulating_A : A; -fun stimulation_N : N; -fun stimulative_A : A; -fun stimulus_N : N; -fun sting_N : N; -fun sting_V : V; -fun sting_V2 : V2; -fun stinger_N : N; -fun stingily_Adv : Adv; -fun stinginess_N : N; -fun stingless_A : A; -fun stingray_N : N; -fun stingy_A : A; -fun stink_N : N; -fun stink_V : V; -fun stink_V2 : V2; -fun stinker_N : N; -fun stinkhorn_N : N; -fun stint_N : N; -fun stint_V : V; -fun stint_V2 : V2; -fun stinter_N : N; -fun stipe_N : N; -fun stipend_N : N; -fun stipendiary_A : A; -fun stipendiary_N : N; -fun stipple_V2 : V2; -fun stippler_N : N; -fun stipulate_V : V; -fun stipulate_V2 : V2; -fun stipulate_VS : VS; -fun stipulation_N : N; -fun stipule_N : N; -fun stir_N : N; -fun stir_V : V; -fun stir_V2 : V2; -fun stirk_N : N; -fun stirred_A : A; -fun stirrer_N : N; -fun stirring_A : A; -fun stirring_N : N; -fun stirringly_Adv : Adv; -fun stirrup_N : N; -fun stirrup_cup_N : N; -fun stirrup_shaped_A : A; -fun stitch_N : N; -fun stitch_V : V; -fun stitch_V2 : V2; -fun stitcher_N : N; -fun stitchwort_N : N; -fun stoat_N : N; -fun stob_N : N; -fun stochastic_A : A; -fun stochastically_Adv : Adv; -fun stock_A : A; -fun stock_N : N; -fun stock_V2 : V2; -fun stock_cube_N : N; -fun stock_farmer_N : N; -fun stock_in_trade_N : N; -fun stock_in_trade_N : N; -fun stock_list_N : N; -fun stock_still_Adv : Adv; -fun stockade_N : N; -fun stockade_V2 : V2; -fun stockbreeder_N : N; -fun stockbroker_N : N; -fun stockcar_N : N; -fun stocked_A : A; -fun stocker_N : N; -fun stockfish_N : N; -fun stockholder_N : N; -fun stockholding_N : N; -fun stockily_Adv : Adv; -fun stockinet_N : N; -fun stockinette_N : N; -fun stocking_N : N; -fun stockinged_A : A; -fun stockist_N : N; -fun stockjobber_N : N; -fun stockman_N : N; -fun stockpile_N : N; -fun stockpile_V2 : V2; -fun stockpiling_N : N; -fun stockpot_N : N; -fun stockroom_N : N; -fun stocks_N : N; -fun stocktake_N : N; -fun stocktaker_N : N; -fun stocktaking_N : N; -fun stocky_A : A; -fun stockyard_N : N; -fun stodge_N : N; -fun stodginess_N : N; -fun stodgy_A : A; -fun stoep_N : N; -fun stogy_N : N; -fun stoic_A : A; -fun stoic_N : N; -fun stoical_A : A; -fun stoically_Adv : Adv; -fun stoichiometric_A : A; -fun stoichiometry_N : N; -fun stoicism_N : N; -fun stoke_V : V; -fun stoke_V2 : V2; -fun stokehold_N : N; -fun stokehole_N : N; -fun stoker_N : N; -fun stole_N : N; -fun stolen_A : A; -fun stolid_A : A; -fun stolidity_N : N; -fun stolidly_Adv : Adv; -fun stolidness_N : N; -fun stolon_N : N; -fun stoloniferous_A : A; -fun stoma_N : N; -fun stomach_N : N; -fun stomach_V2 : V2; -fun stomach_ache_N : N; -fun stomach_pump_N : N; -fun stomachache_N : N; -fun stomacher_N : N; -fun stomatal_A : A; -fun stomatitis_N : N; -fun stomatopod_N : N; -fun stomatous_A : A; -fun stomp_N : N; -fun stomp_V : V; -fun stomp_V2 : V2; -fun stone_A : A; -fun stone_N : N; -fun stone_V2 : V2; -fun stone_blind_A : A; -fun stone_blind_A : A; -fun stone_cold_A : A; -fun stone_cold_A : A; -fun stone_dead_A : A; -fun stone_dead_A : A; -fun stone_deaf_A : A; -fun stone_fruit_N : N; -fun stone_pit_N : N; -fun stone_sober_A : A; -fun stonebreaker_N : N; -fun stonechat_N : N; -fun stonecress_N : N; -fun stonecrop_N : N; -fun stonecutter_N : N; -fun stoned_A : A; -fun stonefish_N : N; -fun stonefly_N : N; -fun stoneless_A : A; -fun stonemason_N : N; -fun stoner_N : N; -fun stonewall_V2 : V2; -fun stonewaller_N : N; -fun stonewalling_N : N; -fun stoneware_N : N; -fun stonework_N : N; -fun stonewort_N : N; -fun stonily_Adv : Adv; -fun stoning_N : N; -fun stony_A : A; -fun stony_broke_A : A; -fun stood_V2V : V2V; -fun stooge_N : N; -fun stooge_V : V; -fun stool_N : N; -fun stoop_N : N; -fun stoop_V : V; -fun stoop_V2 : V2; -fun stooper_N : N; -fun stop_N : N; -fun stop_V : V; -fun stop_V2 : V2; -fun stop_VV : VV; -fun stopcock_N : N; -fun stopgap_N : N; -fun stoplight_N : N; -fun stopover_N : N; -fun stoppable_A : A; -fun stoppage_N : N; -fun stopped_A : A; -fun stopper_N : N; -fun stoppered_A : A; -fun stopping_N : N; -fun stopwatch_N : N; -fun storage_N : N; -fun storax_N : N; -fun store_N : N; -fun store_V2 : V2; -fun stored_program_A : A; -fun storehouse_N : N; -fun storeroom_N : N; -fun storey_N : N; -fun storeyed_A : A; -fun storied_A : A; -fun stork_N : N; -fun storksbill_N : N; -fun storm_N : N; -fun storm_V : V; -fun storm_V2 : V2; -fun storm_beaten_A : A; -fun storm_beaten_A : A; -fun storm_bound_A : A; -fun storm_centre_N : N; -fun storm_cloud_N : N; -fun storm_cone_N : N; -fun storm_lantern_N : N; -fun storm_signal_N : N; -fun storm_tossed_A : A; -fun storm_trooper_N : N; -fun stormbound_A : A; -fun stormily_Adv : Adv; -fun storminess_N : N; -fun stormproof_A : A; -fun stormy_A : A; -fun story_N : N; -fun storybook_N : N; -fun storyline_N : N; -fun storyteller_N : N; -fun stotinka_N : N; -fun stoup_N : N; -fun stout_A : A; -fun stout_N : N; -fun stout_billed_A : A; -fun stout_stemmed_A : A; -fun stouthearted_A : A; -fun stoutheartedness_N : N; -fun stoutly_Adv : Adv; -fun stoutness_N : N; -fun stove_N : N; -fun stovepipe_N : N; -fun stovepiped_A : A; -fun stovepiping_N : N; -fun stover_N : N; -fun stow_V2 : V2; -fun stowage_N : N; -fun stowaway_N : N; -fun strabismus_N : N; -fun strabotomy_N : N; -fun straddle_N : N; -fun straddle_V : V; -fun straddle_V2 : V2; -fun strafe_N : N; -fun strafe_V2 : V2; -fun strafer_N : N; -fun straggle_N : N; -fun straggle_V : V; -fun straggler_N : N; -fun straggly_A : A; -fun straight_A : A; -fun straight_Adv : Adv; -fun straight_N : N; -fun straight_arm_N : N; -fun straight_backed_A : A; -fun straight_billed_A : A; -fun straight_grained_A : A; -fun straight_legged_A : A; -fun straightarrow_A : A; -fun straightaway_N : N; -fun straightedge_N : N; -fun straighten_V : V; -fun straighten_V2 : V2; -fun straightener_N : N; -fun straightforward_A : A; -fun straightness_N : N; -fun straightway_Adv : Adv; -fun strain_N : N; -fun strain_V : V; -fun strain_V2 : V2; -fun strained_A : A; -fun strainer_N : N; -fun strait_A : A; -fun strait_N : N; -fun strait_laced_A : A; -fun straiten_V2 : V2; -fun straitjacket_N : N; -fun strand_N : N; -fun strand_V : V; -fun strand_V2 : V2; -fun strange_A : A; -fun strangeness_N : N; -fun stranger_N : N; -fun strangle_V2 : V2; -fun stranglehold_N : N; -fun strangler_N : N; -fun strangulation_N : N; -fun strap_N : N; -fun strap_V2 : V2; -fun straphanger_N : N; -fun strapless_A : A; -fun strapless_N : N; -fun straplike_A : A; -fun strappado_N : N; -fun strapping_A : A; -fun strapping_N : N; -fun stratagem_N : N; -fun strategic_A : A; -fun strategical_A : A; -fun strategically_Adv : Adv; -fun strategics_N : N; -fun strategist_N : N; -fun strategy_N : N; -fun stratification_N : N; -fun stratified_A : A; -fun stratify_V : V; -fun stratify_V2 : V2; -fun stratigraphy_N : N; -fun stratosphere_N : N; -fun stratum_N : N; -fun stratus_N : N; -fun straw_A : A; -fun straw_N : N; -fun straw_V2 : V2; -fun straw_colored_A : A; -fun straw_coloured_A : A; -fun strawberry_N : N; -fun strawboard_N : N; -fun strawflower_N : N; -fun strawworm_N : N; -fun stray_A : A; -fun stray_N : N; -fun stray_V : V; -fun stray_V2 : V2; -fun straying_A : A; -fun streak_N : N; -fun streak_V : V; -fun streak_V2 : V2; -fun streaked_A : A; -fun streaker_N : N; -fun streaky_A : A; -fun stream_N : N; -fun stream_V : V; -fun stream_V2 : V2; -fun streambed_N : N; -fun streamer_N : N; -fun streaming_A : A; -fun streamlet_N : N; -fun streamline_V : V; -fun streamline_V2 : V2; -fun streamlined_A : A; -fun streamliner_N : N; -fun street_N : N; -fun street_girl_N : N; -fun street_urchin_N : N; -fun streetcar_N : N; -fun streetlight_N : N; -fun streetwalker_N : N; -fun streetwise_A : A; -fun strength_N : N; -fun strengthen_V : V; -fun strengthen_V2 : V2; -fun strengthener_N : N; -fun strengthening_N : N; -fun strenuous_A : A; -fun strenuously_Adv : Adv; -fun strenuousness_N : N; -fun streptobacillus_N : N; -fun streptocarpus_N : N; -fun streptococcal_A : A; -fun streptococcus_N : N; -fun streptodornase_N : N; -fun streptokinase_N : N; -fun streptolysin_N : N; -fun streptomyces_N : N; -fun streptomycin_N : N; -fun streptothricin_N : N; -fun stress_N : N; -fun stress_V2 : V2; -fun stress_VS : VS; -fun stress_mark_N : N; -fun stressed_A : A; -fun stressor_N : N; -fun stretch_A : A; -fun stretch_N : N; -fun stretch_V : V; -fun stretch_V2 : V2; -fun stretchable_A : A; -fun stretched_A : A; -fun stretcher_N : N; -fun stretcher_bearer_N : N; -fun stretcher_bearer_N : N; -fun stretcher_party_N : N; -fun stretching_N : N; -fun streusel_N : N; -fun strew_V2 : V2; -fun stria_N : N; -fun striate_A : A; -fun striated_A : A; -fun stricken_A : A; -fun strickle_N : N; -fun strict_A : A; -fun strictly_Adv : Adv; -fun strictness_N : N; -fun stricture_N : N; -fun stride_N : N; -fun stride_V : V; -fun stride_V2 : V2; -fun strident_A : A; -fun stridently_Adv : Adv; -fun strider_N : N; -fun stridor_N : N; -fun stridulate_V : V; -fun stridulation_N : N; -fun strife_N : N; -fun strike_N : N; -fun strike_V : V; -fun strike_V2 : V2; -fun strike_leader_N : N; -fun strike_pay_N : N; -fun strikebound_A : A; -fun strikebreaker_N : N; -fun strikebreaking_N : N; -fun strikeout_N : N; -fun striker_N : N; -fun striking_A : A; -fun strikingly_Adv : Adv; -fun string_N : N; -fun string_V : V; -fun string_V2 : V2; -fun stringency_N : N; -fun stringent_A : A; -fun stringer_N : N; -fun stringy_A : A; -fun stringybark_N : N; -fun strip_N : N; -fun strip_V : V; -fun strip_V2 : V2; -fun strip_lighting_N : N; -fun strip_mined_A : A; -fun strip_poker_N : N; -fun strip_show_N : N; -fun stripe_N : N; -fun striped_A : A; -fun striper_N : N; -fun striping_N : N; -fun stripling_N : N; -fun stripped_A : A; -fun stripper_N : N; -fun striptease_N : N; -fun stripy_A : A; -fun strive_V : V; -fun strive_VV : VV; -fun striver_N : N; -fun striving_N : N; -fun stroboscope_N : N; -fun stroke_N : N; -fun stroke_V2 : V2; -fun stroll_N : N; -fun stroll_V : V; -fun stroll_V2 : V2; -fun stroller_N : N; -fun stroma_N : N; -fun strong_A : A; -fun strong_arm_A : A; -fun strong_boned_A : A; -fun strong_boned_A : A; -fun strong_flavored_A : A; -fun strong_minded_A : A; -fun strong_minded_A : A; -fun strong_smelling_A : A; -fun strongbox_N : N; -fun stronghold_N : N; -fun strongly_Adv : Adv; -fun strongman_N : N; -fun strongroom_N : N; -fun strontianite_N : N; -fun strontium_N : N; -fun strop_N : N; -fun strop_V2 : V2; -fun strophanthin_N : N; -fun strophanthus_N : N; -fun strophe_N : N; -fun stroppy_A : A; -fun struck_A : A; -fun structural_A : A; -fun structuralism_N : N; -fun structurally_Adv : Adv; -fun structure_N : N; -fun structure_V2 : V2; -fun structured_A : A; -fun strudel_N : N; -fun struggle_N : N; -fun struggle_V : V; -fun struggle_VS : VS; -fun struggle_VV : VV; -fun struggler_N : N; -fun struggling_A : A; -fun strum_N : N; -fun strum_V : V; -fun strum_V2 : V2; -fun strumpet_N : N; -fun strung_A : A; -fun strut_N : N; -fun strut_V : V; -fun strut_V2 : V2; -fun struthiomimus_N : N; -fun strychnine_N : N; -fun stub_N : N; -fun stub_V2 : V2; -fun stubble_N : N; -fun stubbly_A : A; -fun stubborn_A : A; -fun stubbornly_Adv : Adv; -fun stubbornness_N : N; -fun stubby_A : A; -fun stucco_N : N; -fun stucco_V2 : V2; -fun stuck_A : A; -fun stuck_V2 : V2; -fun stuck_up_A : A; -fun stud_N : N; -fun stud_V2 : V2; -fun stud_farm_N : N; -fun stud_mare_N : N; -fun studbook_N : N; -fun studded_A : A; -fun student_N : N; -fun studentship_N : N; -fun studied_A : A; -fun studio_N : N; -fun studious_A : A; -fun studiously_Adv : Adv; -fun studiousness_N : N; -fun study_N : N; -fun study_V : V; -fun study_V2 : V2; -fun stuff_N : N; -fun stuff_V2 : V2; -fun stuffed_A : A; -fun stuffer_N : N; -fun stuffily_Adv : Adv; -fun stuffiness_N : N; -fun stuffing_N : N; -fun stuffy_A : A; -fun stultification_N : N; -fun stultify_V2 : V2; -fun stumble_N : N; -fun stumble_V : V; -fun stumble_V2 : V2; -fun stumblebum_N : N; -fun stumbler_N : N; -fun stumbling_block_N : N; -fun stump_N : N; -fun stump_V : V; -fun stump_V2 : V2; -fun stumper_N : N; -fun stumping_N : N; -fun stumpy_A : A; -fun stun_V2 : V2; -fun stunne_V2V : V2V; -fun stunner_N : N; -fun stunning_A : A; -fun stunt_N : N; -fun stunt_V2 : V2; -fun stupa_N : N; -fun stupefaction_N : N; -fun stupefy_V2 : V2; -fun stupefying_A : A; -fun stupendous_A : A; -fun stupendously_Adv : Adv; -fun stupid_A : A; -fun stupid_N : N; -fun stupidity_N : N; -fun stupidly_Adv : Adv; -fun stupify_V2 : V2; -fun stupifying_A : A; -fun stupor_N : N; -fun sturdily_Adv : Adv; -fun sturdiness_N : N; -fun sturdy_A : A; -fun sturgeon_N : N; -fun stutter_N : N; -fun stutter_V : V; -fun stutter_V2 : V2; -fun stutterer_N : N; -fun stutteringly_Adv : Adv; -fun sty_N : N; -fun stye_N : N; -fun stygian_A : A; -fun style_N : N; -fun style_V2 : V2; -fun styleless_A : A; -fun stylet_N : N; -fun stylish_A : A; -fun stylishly_Adv : Adv; -fun stylishness_N : N; -fun stylist_N : N; -fun stylistic_A : A; -fun stylistically_Adv : Adv; -fun stylite_N : N; -fun stylization_N : N; -fun stylize_V2 : V2; -fun stylopodium_N : N; -fun stylus_N : N; -fun stymie_N : N; -fun stymie_V2 : V2; -fun stymy_V2 : V2; -fun styptic_A : A; -fun styptic_N : N; -fun styracosaur_N : N; -fun styrax_N : N; -fun styrene_N : N; -fun suasion_N : N; -fun suave_A : A; -fun suavely_Adv : Adv; -fun suavity_N : N; -fun sub_N : N; -fun sub_V : V; -fun sub_V2 : V2; -fun sub_saharan_A : A; -fun sub_assembly_N : N; -fun sub_interval_N : N; -fun sub_judice_A : A; -fun sub_rosa_A : A; -fun sub_rosa_Adv : Adv; -fun sub_test_N : N; -fun sub_underwrite_V2 : V2; -fun subacid_A : A; -fun subacute_A : A; -fun subaltern_N : N; -fun subaqueous_A : A; -fun subarctic_A : A; -fun subartesian_A : A; -fun subatomic_A : A; -fun subbase_N : N; -fun subbing_N : N; -fun subclass_N : N; -fun subclavian_A : A; -fun subclinical_A : A; -fun subcommittee_N : N; -fun subcompact_N : N; -fun subconscious_A : A; -fun subconscious_N : N; -fun subconsciously_Adv : Adv; -fun subconsciousness_N : N; -fun subcontinent_N : N; -fun subcontract_N : N; -fun subcontract_V : V; -fun subcontract_V2 : V2; -fun subcontractor_N : N; -fun subcortical_A : A; -fun subculture_N : N; -fun subcutaneous_A : A; -fun subcutaneously_Adv : Adv; -fun subdeacon_N : N; -fun subdirectory_N : N; -fun subdivide_V : V; -fun subdivide_V2 : V2; -fun subdivider_N : N; -fun subdivision_N : N; -fun subdominant_N : N; -fun subduable_A : A; -fun subduction_N : N; -fun subdue_V2 : V2; -fun subdued_A : A; -fun subduer_N : N; -fun subdural_A : A; -fun subedit_V2 : V2; -fun subeditor_N : N; -fun subfamily_N : N; -fun subfigure_N : N; -fun subfusc_A : A; -fun subgenus_N : N; -fun subgenus_azalea_PN : PN; -fun subgenus_calliopsis_PN : PN; -fun subgross_A : A; -fun subgroup_N : N; -fun subheading_N : N; -fun subhuman_A : A; -fun subjacent_A : A; -fun subject_A : A; -fun subject_A2 : A2; -fun subject_N : N; -fun subject_V2 : V2; -fun subject_to_Prep : Prep; -fun subjection_N : N; -fun subjective_A : A; -fun subjectively_Adv : Adv; -fun subjectivism_N : N; -fun subjectivist_N : N; -fun subjectivity_N : N; -fun subjoin_V2 : V2; -fun subjugate_V2 : V2; -fun subjugated_A : A; -fun subjugation_N : N; -fun subjugator_N : N; -fun subjunctive_A : A; -fun subjunctive_N : N; -fun subkingdom_N : N; -fun sublease_N : N; -fun sublease_V : V; -fun sublease_V2 : V2; -fun sublet_V : V; -fun sublet_V2 : V2; -fun sublieutenant_N : N; -fun sublimate_A : A; -fun sublimate_N : N; -fun sublimate_V2 : V2; -fun sublimation_N : N; -fun sublime_A : A; -fun sublime_N : N; -fun sublimed_A : A; -fun sublimely_Adv : Adv; -fun subliminal_A : A; -fun sublimity_N : N; -fun sublingual_A : A; -fun subliterary_A : A; -fun sublittoral_A : A; -fun sublunar_A : A; -fun subluxation_N : N; -fun submarine_A : A; -fun submarine_N : N; -fun submariner_N : N; -fun submediant_N : N; -fun submerge_V : V; -fun submerge_V2 : V2; -fun submerged_A : A; -fun submergence_N : N; -fun submersible_A : A; -fun submersible_N : N; -fun submersion_N : N; -fun submission_N : N; -fun submissive_A : A; -fun submissiveness_N : N; -fun submit_V : V; -fun submit_V2 : V2; -fun submitter_N : N; -fun submucosa_N : N; -fun subnormal_A : A; -fun subnormal_N : N; -fun subnormality_N : N; -fun suboceanic_A : A; -fun suborbital_A : A; -fun suborder_N : N; -fun suborder_ceratosaura_PN : PN; -fun suborder_pachycephalosaurus_PN : PN; -fun subordinate_A : A; -fun subordinate_N : N; -fun subordinate_V2 : V2; -fun subordinateness_N : N; -fun subordinating_A : A; -fun subordination_N : N; -fun subordinative_A : A; -fun suborn_V2 : V2; -fun subornation_N : N; -fun subpart_N : N; -fun subphylum_N : N; -fun subpoena_N : N; -fun subpoena_V2 : V2; -fun subpopulation_N : N; -fun subrogation_N : N; -fun subscribe_V : V; -fun subscribe_V2 : V2; -fun subscribed_A : A; -fun subscriber_N : N; -fun subscript_A : A; -fun subscript_N : N; -fun subscription_N : N; -fun subsection_N : N; -fun subsequent_A : A; -fun subsequently_Adv : Adv; -fun subserve_V2 : V2; -fun subservience_N : N; -fun subservient_A : A; -fun subset_N : N; -fun subshrub_N : N; -fun subside_V : V; -fun subsidence_N : N; -fun subsidiary_A : A; -fun subsidiary_N : N; -fun subsidization_N : N; -fun subsidize_V2 : V2; -fun subsidized_A : A; -fun subsidizer_N : N; -fun subsidy_N : N; -fun subsist_V : V; -fun subsistence_N : N; -fun subsoil_N : N; -fun subsonic_A : A; -fun subspace_N : N; -fun subspecies_N : N; -fun substance_N : N; -fun substandard_A : A; -fun substantial_A : A; -fun substantiality_N : N; -fun substantially_Adv : Adv; -fun substantiate_V2 : V2; -fun substantiation_N : N; -fun substantival_A : A; -fun substantive_A : A; -fun substantive_N : N; -fun substation_N : N; -fun substitutable_A : A; -fun substitute_N : N; -fun substitute_V : V; -fun substitute_V2 : V2; -fun substitution_N : N; -fun substrate_N : N; -fun substratum_N : N; -fun substring_N : N; -fun substructure_N : N; -fun subsume_V2 : V2; -fun subsumption_N : N; -fun subsurface_A : A; -fun subsystem_N : N; -fun subtend_V2 : V2; -fun subterfuge_N : N; -fun subterminal_A : A; -fun subterranean_A : A; -fun subthalamus_N : N; -fun subtilin_N : N; -fun subtitle_N : N; -fun subtitle_VS : VS; -fun subtle_A : A; -fun subtlety_N : N; -fun subtly_Adv : Adv; -fun subtonic_N : N; -fun subtopia_N : N; -fun subtotal_N : N; -fun subtract_V2 : V2; -fun subtracter_N : N; -fun subtraction_N : N; -fun subtractive_A : A; -fun subtrahend_N : N; -fun subtreasury_N : N; -fun subtropical_A : A; -fun subtropics_N : N; -fun suburb_N : N; -fun suburban_A : A; -fun suburbanite_N : N; -fun suburbanized_A : A; -fun suburbia_N : N; -fun subvention_N : N; -fun subversion_N : N; -fun subversive_A : A; -fun subversive_N : N; -fun subvert_V2 : V2; -fun subvocalizer_N : N; -fun subway_N : N; -fun subwoofer_N : N; -fun succedaneum_N : N; -fun succeed_V : V; -fun succeed_V2 : V2; -fun succeeding_A : A; -fun success_N : N; -fun successful_A : A; -fun successfully_Adv : Adv; -fun succession_N : N; -fun successive_A : A; -fun successively_Adv : Adv; -fun successor_N : N; -fun succinct_A : A; -fun succinctly_Adv : Adv; -fun succinctness_N : N; -fun succinic_A : A; -fun succinylcholine_N : N; -fun succor_V2 : V2; -fun succorer_N : N; -fun succotash_N : N; -fun succour_N : N; -fun succour_V2 : V2; -fun succubus_N : N; -fun succulence_N : N; -fun succulent_A : A; -fun succulent_N : N; -fun succumb_V : V; -fun succussion_N : N; -fun such_A : A; -fun such_Adv : Adv; -fun such_Predet : Predet; -fun such_as_Prep : Prep; -fun suchlike_A : A; -fun suck_N : N; -fun suck_V : V; -fun suck_V2 : V2; -fun sucker_N : N; -fun sucking_N : N; -fun sucking_pig_N : N; -fun suckle_V2 : V2; -fun suckling_N : N; -fun sucralfate_N : N; -fun sucre_N : N; -fun sucrose_N : N; -fun suction_N : N; -fun suctorial_A : A; -fun sudanese_A : A; -fun sudanese_N : N; -fun sudatorium_N : N; -fun sudden_A : A; -fun sudden_N : N; -fun suddenly_Adv : Adv; -fun suddenness_N : N; -fun sudoku_N : N; -fun sudorific_N : N; -fun sudra_N : N; -fun suds_N : N; -fun sue_V : V; -fun sue_V2 : V2; -fun sue_V2V : V2V; -fun suede_N : N; -fun suer_N : N; -fun suet_N : N; -fun suety_A : A; -fun suffer_V : V; -fun suffer_V2 : V2; -fun sufferable_A : A; -fun sufferance_N : N; -fun sufferer_N : N; -fun suffering_A : A; -fun suffering_N : N; -fun suffice_V : V; -fun suffice_V2 : V2; -fun suffice_V2V : V2V; -fun sufficiency_N : N; -fun sufficient_A : A; -fun sufficiently_Adv : Adv; -fun suffix_N : N; -fun suffixation_N : N; -fun suffocate_V : V; -fun suffocate_V2 : V2; -fun suffocation_N : N; -fun suffragan_N : N; -fun suffrage_N : N; -fun suffragette_N : N; -fun suffragism_N : N; -fun suffragist_N : N; -fun suffrutescent_A : A; -fun suffuse_V2 : V2; -fun suffusion_N : N; -fun suffusive_A : A; -fun sugar_N : N; -fun sugar_V2 : V2; -fun sugar_beet_N : N; -fun sugar_bush_N : N; -fun sugar_candy_N : N; -fun sugar_cane_N : N; -fun sugar_coated_A : A; -fun sugar_daddy_N : N; -fun sugar_loaf_N : N; -fun sugar_refinery_N : N; -fun sugarberry_N : N; -fun sugarcane_N : N; -fun sugared_A : A; -fun sugariness_N : N; -fun sugarless_A : A; -fun sugarloaf_N : N; -fun sugarlump_N : N; -fun sugarplum_N : N; -fun sugary_A : A; -fun suggest_V : V; -fun suggest_V2 : V2; -fun suggest_VS : VS; -fun suggester_N : N; -fun suggestibility_N : N; -fun suggestible_A : A; -fun suggestion_N : N; -fun suggestive_A : A; -fun suggestively_Adv : Adv; -fun sui_generis_A : A; -fun suicidal_A : A; -fun suicide_N : N; -fun suit_N : N; -fun suit_V : V; -fun suit_V2 : V2; -fun suitability_N : N; -fun suitable_A : A; -fun suitableness_N : N; -fun suitcase_N : N; -fun suite_N : N; -fun suited_A : A; -fun suiting_N : N; -fun suitor_N : N; -fun sukiyaki_N : N; -fun suksdorfia_N : N; -fun sulcate_A : A; -fun sulcus_N : N; -fun sulfacetamide_N : N; -fun sulfadiazine_N : N; -fun sulfamethazine_N : N; -fun sulfamethoxazole_N : N; -fun sulfanilamide_N : N; -fun sulfapyridine_N : N; -fun sulfate_N : N; -fun sulfide_N : N; -fun sulfisoxazole_N : N; -fun sulfonate_N : N; -fun sulfonylurea_N : N; -fun sulfur_N : N; -fun sulfur_yellow_A : A; -fun sulfurous_A : A; -fun sulindac_N : N; -fun sulk_N : N; -fun sulk_V : V; -fun sulkily_Adv : Adv; -fun sulkiness_N : N; -fun sulky_A : A; -fun sulky_N : N; -fun sullen_A : A; -fun sullenness_N : N; -fun sully_V2 : V2; -fun sulpha_N : N; -fun sulphate_N : N; -fun sulphide_N : N; -fun sulphur_N : N; -fun sulphuretted_A : A; -fun sulphuric_A : A; -fun sulphurous_A : A; -fun sultan_N : N; -fun sultana_N : N; -fun sultanate_N : N; -fun sultrily_Adv : Adv; -fun sultriness_N : N; -fun sultry_A : A; -fun sum_N : N; -fun sum_V : V; -fun sum_V2 : V2; -fun sumac_N : N; -fun sumach_N : N; -fun sumatran_A : A; -fun sumatran_N : N; -fun summa_cum_laude_A : A; -fun summa_cum_laude_Adv : Adv; -fun summarily_Adv : Adv; -fun summarization_N : N; -fun summarize_V2 : V2; -fun summary_A : A; -fun summary_N : N; -fun summation_N : N; -fun summational_A : A; -fun summer_N : N; -fun summer_V : V; -fun summer_flowering_A : A; -fun summercaters_N : N; -fun summerhouse_N : N; -fun summertime_N : N; -fun summery_A : A; -fun summing_up_N : N; -fun summit_N : N; -fun summon_V2 : V2; -fun summons_N : N; -fun summons_V2 : V2; -fun sumo_N : N; -fun sump_N : N; -fun sumpsimus_N : N; -fun sumpter_N : N; -fun sumptuary_A : A; -fun sumptuous_A : A; -fun sumptuously_Adv : Adv; -fun sumptuousness_N : N; -fun sun_N : N; -fun sun_V2 : V2; -fun sun_drenched_A : A; -fun sun_drenched_A : A; -fun sun_dried_A : A; -fun sun_dried_A : A; -fun sun_god_N : N; -fun sun_helmet_N : N; -fun sun_lounge_N : N; -fun sun_loving_A : A; -fun sun_parlour_N : N; -fun sun_porch_N : N; -fun sun_up_N : N; -fun sun_visor_N : N; -fun sun_worship_N : N; -fun sunbaked_A : A; -fun sunbathe_N : N; -fun sunbathe_V : V; -fun sunbathe_V2 : V2; -fun sunbather_N : N; -fun sunbeam_N : N; -fun sunblind_N : N; -fun sunbonnet_N : N; -fun sunburn_N : N; -fun sunburned_A : A; -fun sunburnt_A : A; -fun sunburst_N : N; -fun sundae_N : N; -fun sunday_N : N; -fun sunder_N : N; -fun sunder_V2 : V2; -fun sundew_N : N; -fun sundial_N : N; -fun sundown_N : N; -fun sundowner_N : N; -fun sundress_N : N; -fun sundries_N : N; -fun sundrops_N : N; -fun sundry_A : A; -fun sunfish_N : N; -fun sunflower_N : N; -fun sunglass_N : N; -fun sunglasses_N : N; -fun sunhat_N : N; -fun sunlamp_N : N; -fun sunless_A : A; -fun sunlight_N : N; -fun sunlit_A : A; -fun sunnily_Adv : Adv; -fun sunniness_N : N; -fun sunny_A : A; -fun sunny_side_up_A : A; -fun sunray_A : A; -fun sunray_N : N; -fun sunrise_A : A; -fun sunrise_N : N; -fun sunroof_N : N; -fun sunscreen_N : N; -fun sunset_A : A; -fun sunset_N : N; -fun sunshade_N : N; -fun sunshine_N : N; -fun sunshine_roof_N : N; -fun sunspot_N : N; -fun sunstone_N : N; -fun sunstroke_N : N; -fun sunsuit_N : N; -fun suntan_N : N; -fun suntrap_N : N; -fun sup_N : N; -fun sup_V : V; -fun sup_V2 : V2; -fun super_A : A; -fun super_N : N; -fun superabundance_N : N; -fun superabundant_A : A; -fun superannuate_V2 : V2; -fun superannuated_A : A; -fun superannuation_N : N; -fun superb_A : A; -fun superbug_N : N; -fun supercargo_N : N; -fun supercede_V2 : V2; -fun supercharged_A : A; -fun supercharger_N : N; -fun supercilious_A : A; -fun superciliousness_N : N; -fun superclass_N : N; -fun superclass_myriapoda_PN : PN; -fun supercomputer_N : N; -fun superconductivity_N : N; -fun supercritical_A : A; -fun superego_N : N; -fun supererogation_N : N; -fun superfamily_N : N; -fun superfatted_A : A; -fun superfecta_N : N; -fun superfecundation_N : N; -fun superfetation_N : N; -fun superficial_A : A; -fun superficiality_N : N; -fun superficially_Adv : Adv; -fun superficies_N : N; -fun superfine_A : A; -fun superfluity_N : N; -fun superfluous_A : A; -fun superfluously_Adv : Adv; -fun supergiant_N : N; -fun supergrass_N : N; -fun superhighway_N : N; -fun superhuman_A : A; -fun superimpose_V2 : V2; -fun superincumbent_A : A; -fun superinfection_N : N; -fun superintend_V : V; -fun superintend_V2 : V2; -fun superintendence_N : N; -fun superintendent_N : N; -fun superior_A : A; -fun superior_N : N; -fun superiority_N : N; -fun superjacent_A : A; -fun superlative_A : A; -fun superlative_N : N; -fun superlatively_Adv : Adv; -fun superman_N : N; -fun supermarket_N : N; -fun supermarketer_N : N; -fun supermodel_N : N; -fun supermom_N : N; -fun supernal_A : A; -fun supernatant_A : A; -fun supernatant_N : N; -fun supernatural_A : A; -fun supernatural_N : N; -fun supernaturalism_N : N; -fun supernaturalist_A : A; -fun supernormal_A : A; -fun supernova_N : N; -fun supernumerary_N : N; -fun superorder_N : N; -fun superordinate_A : A; -fun superoxide_N : N; -fun superphylum_N : N; -fun superposition_N : N; -fun supersaturated_A : A; -fun superscript_A : A; -fun superscript_N : N; -fun superscription_N : N; -fun supersede_V2 : V2; -fun supersedure_N : N; -fun supersession_N : N; -fun supersonic_A : A; -fun superstition_N : N; -fun superstitious_A : A; -fun superstitiously_Adv : Adv; -fun superstrate_N : N; -fun superstring_N : N; -fun superstructure_N : N; -fun supersymmetry_N : N; -fun supertanker_N : N; -fun supertax_N : N; -fun supertitle_N : N; -fun supertonic_N : N; -fun supertwister_N : N; -fun supervene_V : V; -fun supervention_N : N; -fun supervise_V : V; -fun supervise_V2 : V2; -fun supervised_A : A; -fun supervision_N : N; -fun supervisor_N : N; -fun supervisory_A : A; -fun supination_N : N; -fun supinator_N : N; -fun supine_A : A; -fun supinely_Adv : Adv; -fun supper_N : N; -fun supperless_A : A; -fun supping_N : N; -fun supplant_V2 : V2; -fun supplanter_N : N; -fun supplanting_N : N; -fun supple_A : A; -fun supplejack_N : N; -fun supplement_N : N; -fun supplement_V2 : V2; -fun supplementary_A : A; -fun supplementation_N : N; -fun suppleness_N : N; -fun suppliant_A : A; -fun suppliant_N : N; -fun supplicant_N : N; -fun supplicate_V : V; -fun supplicate_V2 : V2; -fun supplicate_VS : VS; -fun supplication_N : N; -fun supplier_N : N; -fun supply_N : N; -fun supply_V2 : V2; -fun support_N : N; -fun support_V2 : V2; -fun supportable_A : A; -fun supported_A : A; -fun supporter_N : N; -fun supportive_A : A; -fun suppose_V2 : V2; -fun suppose_VS : VS; -fun suppose_VV : VV; -fun supposed_A : A; -fun supposition_N : N; -fun suppository_N : N; -fun suppress_V2 : V2; -fun suppressant_N : N; -fun suppressed_A : A; -fun suppression_N : N; -fun suppressive_A : A; -fun suppressor_N : N; -fun suppurate_V : V; -fun suppuration_N : N; -fun suppurative_A : A; -fun supra_Adv : Adv; -fun suprainfection_N : N; -fun supranational_A : A; -fun supraorbital_A : A; -fun suprasegmental_A : A; -fun supremacism_N : N; -fun supremacist_N : N; -fun supremacy_N : N; -fun suprematism_N : N; -fun suprematist_N : N; -fun supreme_A : A; -fun supremely_Adv : Adv; -fun supremo_N : N; -fun sura_N : N; -fun surbase_N : N; -fun surcharge_N : N; -fun surcharge_V2 : V2; -fun surcoat_N : N; -fun surd_N : N; -fun sure_A : A; -fun sure_Adv : Adv; -fun sure_as_shooting_A : A; -fun sure_enough_Adv : Adv; -fun sure_fire_A : A; -fun sure_footed_A : A; -fun sure_handed_A : A; -fun surefooted_A : A; -fun surely_Adv : Adv; -fun sureness_N : N; -fun surety_N : N; -fun surf_N : N; -fun surface_A : A; -fun surface_N : N; -fun surface_V : V; -fun surface_V2 : V2; -fun surface_V2V : V2V; -fun surface_VS : VS; -fun surface_active_A : A; -fun surface_to_air_A : A; -fun surface_to_air_A : A; -fun surfacing_N : N; -fun surfbird_N : N; -fun surfboard_N : N; -fun surfboat_N : N; -fun surfeit_N : N; -fun surfeit_V2 : V2; -fun surfer_N : N; -fun surficial_A : A; -fun surfing_N : N; -fun surfperch_N : N; -fun surfriding_N : N; -fun surge_N : N; -fun surge_V : V; -fun surge_V2 : V2; -fun surgeon_N : N; -fun surgeonfish_N : N; -fun surgery_N : N; -fun surgical_A : A; -fun surgically_Adv : Adv; -fun suricate_N : N; -fun surlily_Adv : Adv; -fun surliness_N : N; -fun surly_A : A; -fun surmise_N : N; -fun surmise_V : V; -fun surmise_V2 : V2; -fun surmount_V2 : V2; -fun surmountable_A : A; -fun surmounted_A : A; -fun surname_N : N; -fun surpass_V2 : V2; -fun surpassing_A : A; -fun surpassingly_Adv : Adv; -fun surplice_N : N; -fun surpliced_A : A; -fun surplus_N : N; -fun surprise_N : N; -fun surprise_V2 : V2; -fun surprise_V2V : V2V; -fun surprised_A : A; -fun surprisedly_Adv : Adv; -fun surpriser_N : N; -fun surprising_A : A; -fun surprisingly_Adv : Adv; -fun surrealism_N : N; -fun surrealist_N : N; -fun surrealistic_A : A; -fun surrebutter_N : N; -fun surrejoinder_N : N; -fun surrender_N : N; -fun surrender_V : V; -fun surrender_V2 : V2; -fun surrenderer_N : N; -fun surreptitious_A : A; -fun surreptitiously_Adv : Adv; -fun surrey_N : N; -fun surrogate_A : A; -fun surrogate_N : N; -fun surround_N : N; -fun surround_V2 : V2; -fun surrounded_A : A; -fun surrounding_A : A; -fun surtax_N : N; -fun surtax_V2 : V2; -fun surtout_N : N; -fun surveillance_N : N; -fun survey_N : N; -fun survey_V2 : V2; -fun surveying_N : N; -fun surveyor_N : N; -fun survival_N : N; -fun survivalist_N : N; -fun survive_V : V; -fun survive_V2 : V2; -fun survive_VS : VS; -fun surviving_A : A; -fun survivor_N : N; -fun susceptibility_N : N; -fun susceptible_A : A; -fun sushi_N : N; -fun suslik_N : N; -fun suspect_A : A; -fun suspect_N : N; -fun suspect_V2 : V2; -fun suspect_VS : VS; -fun suspected_A : A; -fun suspend_V : V; -fun suspend_V2 : V2; -fun suspended_A : A; -fun suspender_N : N; -fun suspense_N : N; -fun suspension_N : N; -fun suspensive_A : A; -fun suspensory_N : N; -fun suspicion_N : N; -fun suspicious_A : A; -fun suspiciously_Adv : Adv; -fun suss_V2 : V2; -fun sustain_V2 : V2; -fun sustainability_N : N; -fun sustainable_A : A; -fun sustained_A : A; -fun sustenance_N : N; -fun sustentacular_A : A; -fun susurration_N : N; -fun sutler_N : N; -fun sutra_N : N; -fun suttee_N : N; -fun suture_N : N; -fun suturing_N : N; -fun suzerain_N : N; -fun suzerainty_N : N; -fun svelte_A : A; -fun svoboda_N : N; -fun swab_N : N; -fun swab_V2 : V2; -fun swabbing_N : N; -fun swad_N : N; -fun swaddle_V2 : V2; -fun swag_N : N; -fun swagger_A : A; -fun swagger_N : N; -fun swagger_V : V; -fun swagger_V2 : V2; -fun swaggerer_N : N; -fun swaggering_A : A; -fun swagman_N : N; -fun swahili_N : N; -fun swain_N : N; -fun swale_N : N; -fun swallow_N : N; -fun swallow_V : V; -fun swallow_V2 : V2; -fun swallow_tailed_A : A; -fun swallow_tailed_A : A; -fun swami_N : N; -fun swamp_N : N; -fun swamp_V2 : V2; -fun swampy_A : A; -fun swan_N : N; -fun swan_V : V; -fun swan's_down_N : N; -fun swan_song_N : N; -fun swank_A : A; -fun swank_N : N; -fun swank_V : V; -fun swanky_A : A; -fun swap_N : N; -fun swap_V : V; -fun swap_V2 : V2; -fun sward_N : N; -fun swarm_N : N; -fun swarm_V : V; -fun swarm_V2 : V2; -fun swarthy_A : A; -fun swash_N : N; -fun swashbuckler_N : N; -fun swashbuckling_A : A; -fun swashbuckling_N : N; -fun swastika_N : N; -fun swat_N : N; -fun swat_V2 : V2; -fun swatch_N : N; -fun swath_N : N; -fun swathe_N : N; -fun swathe_V2 : V2; -fun swathing_N : N; -fun swatter_N : N; -fun sway_N : N; -fun sway_V : V; -fun sway_V2 : V2; -fun sway_VS : VS; -fun swazi_A : A; -fun swazi_N : N; -fun swear_V : V; -fun swear_V2 : V2; -fun swear_V2V : V2V; -fun swear_VV : VV; -fun swearer_N : N; -fun swearing_N : N; -fun swearword_N : N; -fun sweat_N : N; -fun sweat_V : V; -fun sweat_V2 : V2; -fun sweatband_N : N; -fun sweatbox_N : N; -fun sweater_N : N; -fun sweatshirt_N : N; -fun sweatshop_N : N; -fun sweaty_A : A; -fun swede_A : A; -fun swede_N : N; -fun swedish_A : A; -fun swedish_N : N; -fun sweep_N : N; -fun sweep_V : V; -fun sweep_V2 : V2; -fun sweeper_N : N; -fun sweeping_A : A; -fun sweeping_N : N; -fun sweepingly_Adv : Adv; -fun sweepstakes_N : N; -fun sweet_A : A; -fun sweet_N : N; -fun sweet_william_PN : PN; -fun sweet_breathed_A : A; -fun sweet_faced_A : A; -fun sweet_scented_A : A; -fun sweet_talk_V2 : V2; -fun sweetbread_N : N; -fun sweetbriar_N : N; -fun sweetbrier_N : N; -fun sweeten_V : V; -fun sweeten_V2 : V2; -fun sweetening_N : N; -fun sweetheart_A : A; -fun sweetheart_N : N; -fun sweetie_N : N; -fun sweetish_A : A; -fun sweetleaf_N : N; -fun sweetly_Adv : Adv; -fun sweetmeat_N : N; -fun sweetness_N : N; -fun sweetsop_N : N; -fun swell_A : A; -fun swell_N : N; -fun swell_V : V; -fun swell_V2 : V2; -fun swelling_N : N; -fun swelter_V : V; -fun sweltering_A : A; -fun swept_A : A; -fun sweptback_A : A; -fun sweptwing_A : A; -fun swerve_N : N; -fun swerve_V : V; -fun swerve_V2 : V2; -fun swift_A : A; -fun swift_N : N; -fun swift_footed_A : A; -fun swiftlet_N : N; -fun swiftly_Adv : Adv; -fun swiftness_N : N; -fun swig_N : N; -fun swig_V : V; -fun swig_V2 : V2; -fun swill_N : N; -fun swill_V : V; -fun swill_V2 : V2; -fun swim_N : N; -fun swim_V : V; -fun swim_V2 : V2; -fun swimmer_N : N; -fun swimmeret_N : N; -fun swimming_N : N; -fun swimming_bath_N : N; -fun swimming_costume_N : N; -fun swimming_pool_N : N; -fun swimmingly_Adv : Adv; -fun swimsuit_N : N; -fun swindle_N : N; -fun swindle_V : V; -fun swindle_V2 : V2; -fun swindler_N : N; -fun swine_N : N; -fun swineherd_N : N; -fun swing_N : N; -fun swing_V : V; -fun swing_V2 : V2; -fun swinge_V2 : V2; -fun swingeing_A : A; -fun swinger_N : N; -fun swinging_A : A; -fun swinish_A : A; -fun swipe_N : N; -fun swipe_V2 : V2; -fun swirl_N : N; -fun swirl_V : V; -fun swirl_V2 : V2; -fun swish_A : A; -fun swish_N : N; -fun swish_V : V; -fun swish_V2 : V2; -fun swishy_A : A; -fun swiss_A : A; -fun swiss_N : N; -fun switch_N : N; -fun switch_V : V; -fun switch_V2 : V2; -fun switch_hitter_N : N; -fun switchblade_N : N; -fun switchboard_N : N; -fun switcher_N : N; -fun switcheroo_N : N; -fun switchman_N : N; -fun swivel_N : N; -fun swivel_V : V; -fun swivel_V2 : V2; -fun swivet_N : N; -fun swiz_N : N; -fun swizzle_N : N; -fun swizzle_stick_N : N; -fun swob_N : N; -fun swob_V2 : V2; -fun swollen_headed_A : A; -fun swoon_N : N; -fun swoon_V : V; -fun swoop_N : N; -fun swoop_V : V; -fun swoop_V2 : V2; -fun swoosh_N : N; -fun swoosh_V : V; -fun swoosh_V2 : V2; -fun swop_N : N; -fun swop_V : V; -fun swop_V2 : V2; -fun sword_N : N; -fun sword_cane_N : N; -fun sword_cut_N : N; -fun sword_cut_N : N; -fun sword_dance_N : N; -fun sword_of_damocles_PN : PN; -fun swordfish_N : N; -fun swordplay_N : N; -fun swordsman_N : N; -fun swordsmanship_N : N; -fun swordstick_N : N; -fun swordtail_N : N; -fun sworn_A : A; -fun swot_N : N; -fun swot_V : V; -fun swot_V2 : V2; -fun sybarite_N : N; -fun sybaritic_A : A; -fun sycamore_N : N; -fun syconium_N : N; -fun sycophancy_N : N; -fun sycophant_N : N; -fun sycophantic_A : A; -fun syllabary_N : N; -fun syllabic_A : A; -fun syllabically_Adv : Adv; -fun syllabicate_V2 : V2; -fun syllabication_N : N; -fun syllabicity_N : N; -fun syllabification_N : N; -fun syllabify_V2 : V2; -fun syllabize_V2 : V2; -fun syllable_N : N; -fun syllabled_A : A; -fun syllabub_N : N; -fun syllabus_N : N; -fun syllepsis_N : N; -fun syllogism_N : N; -fun syllogist_N : N; -fun syllogistic_A : A; -fun sylph_N : N; -fun sylph_like_A : A; -fun sylvan_A : A; -fun sylvan_N : N; -fun sylvanite_N : N; -fun sylvite_N : N; -fun symbiosis_N : N; -fun symbiotic_A : A; -fun symbiotically_Adv : Adv; -fun symbol_N : N; -fun symbolatry_N : N; -fun symbolic_A : A; -fun symbolical_A : A; -fun symbolically_Adv : Adv; -fun symbolism_N : N; -fun symbolist_N : N; -fun symbolization_N : N; -fun symbolize_V2 : V2; -fun symbolizing_N : N; -fun symbology_N : N; -fun symmetric_A : A; -fun symmetrical_A : A; -fun symmetrically_Adv : Adv; -fun symmetry_N : N; -fun sympathectomy_N : N; -fun sympathetic_A : A; -fun sympathetically_Adv : Adv; -fun sympathize_V : V; -fun sympathizer_N : N; -fun sympathy_N : N; -fun sympatric_A : A; -fun sympatry_N : N; -fun symphonic_A : A; -fun symphonist_N : N; -fun symphony_N : N; -fun symphysion_N : N; -fun symphysis_N : N; -fun symploce_N : N; -fun symposiast_N : N; -fun symposium_N : N; -fun symptom_N : N; -fun symptomatic_A : A; -fun symptomatically_Adv : Adv; -fun symptomless_A : A; -fun synagogue_N : N; -fun synapse_N : N; -fun synapsid_N : N; -fun synapsis_N : N; -fun synaptic_A : A; -fun syncarpous_A : A; -fun syncategorem_N : N; -fun syncategorematic_A : A; -fun synchrocyclotron_N : N; -fun synchroflash_N : N; -fun synchromesh_N : N; -fun synchronic_A : A; -fun synchronism_N : N; -fun synchronization_N : N; -fun synchronize_V : V; -fun synchronize_V2 : V2; -fun synchronized_A : A; -fun synchronous_A : A; -fun synchronously_Adv : Adv; -fun synchrony_N : N; -fun synchroscope_N : N; -fun synchrotron_N : N; -fun synclinal_A : A; -fun syncopate_V2 : V2; -fun syncopated_A : A; -fun syncopation_N : N; -fun syncopator_N : N; -fun syncope_N : N; -fun syncretic_A : A; -fun syncretism_N : N; -fun syncytium_N : N; -fun syndactyly_N : N; -fun syndciate_V2 : V2; -fun syndetic_A : A; -fun syndic_N : N; -fun syndicalism_N : N; -fun syndicalist_N : N; -fun syndicate_N : N; -fun syndicate_V2 : V2; -fun syndication_N : N; -fun syndicator_N : N; -fun syndrome_N : N; -fun synecdoche_N : N; -fun synecdochic_A : A; -fun synechia_N : N; -fun syneresis_N : N; -fun synergetic_A : A; -fun synergism_N : N; -fun synergist_N : N; -fun synergistic_A : A; -fun synergistically_Adv : Adv; -fun synergy_N : N; -fun synesthesia_N : N; -fun synesthetic_A : A; -fun synizesis_N : N; -fun synod_N : N; -fun synoicous_A : A; -fun synonym_N : N; -fun synonymist_N : N; -fun synonymous_A : A; -fun synonymously_Adv : Adv; -fun synonymy_N : N; -fun synopsis_N : N; -fun synoptic_A : A; -fun synoptically_Adv : Adv; -fun synovia_N : N; -fun synovial_A : A; -fun synovitis_N : N; -fun synsemantic_A : A; -fun synset_N : N; -fun syntactic_A : A; -fun syntactically_Adv : Adv; -fun syntagma_N : N; -fun syntagmatic_A : A; -fun syntax_N : N; -fun synthesis_N : N; -fun synthesist_N : N; -fun synthesize_V2 : V2; -fun synthesizer_N : N; -fun synthetic_A : A; -fun synthetic_N : N; -fun synthetically_Adv : Adv; -fun synthetism_N : N; -fun syphilis_N : N; -fun syphilitic_A : A; -fun syphilitic_N : N; -fun syphon_N : N; -fun syphon_V : V; -fun syphon_V2 : V2; -fun syrian_A : A; -fun syrian_N : N; -fun syringa_N : N; -fun syringe_N : N; -fun syringe_V2 : V2; -fun syrinx_N : N; -fun syrup_N : N; -fun syrupy_A : A; -fun system_N : N; -fun systematic_A : A; -fun systematically_Adv : Adv; -fun systematics_N : N; -fun systematism_N : N; -fun systematization_N : N; -fun systematize_V2 : V2; -fun systemic_A : A; -fun systole_N : N; -fun systolic_A : A; -fun syzygy_N : N; -fun t_junction_N : N; -fun t_shirt_N : N; -fun t_square_N : N; -fun tab_N : N; -fun tabard_N : N; -fun tabasco_N : N; -fun tabbouleh_N : N; -fun tabby_A : A; -fun tabby_N : N; -fun tabby_cat_N : N; -fun tabernacle_N : N; -fun tabes_N : N; -fun tabi_N : N; -fun tablature_N : N; -fun table_N : N; -fun table_V2 : V2; -fun table_d'hote_A : A; -fun table_d'hote_Adv : Adv; -fun table_knife_N : N; -fun table_lifting_N : N; -fun table_linen_N : N; -fun table_rapping_N : N; -fun table_talk_N : N; -fun table_turning_N : N; -fun tableau_N : N; -fun tableau_vivant_N : N; -fun tablecloth_N : N; -fun tablefork_N : N; -fun tableland_N : N; -fun tablemat_N : N; -fun tablemate_N : N; -fun tablespoon_N : N; -fun tablespoonful_N : N; -fun tablet_N : N; -fun tabletop_N : N; -fun tableware_N : N; -fun tabloid_N : N; -fun taboo_A : A; -fun taboo_N : N; -fun taboo_V2 : V2; -fun tabor_N : N; -fun taboret_N : N; -fun tabular_A : A; -fun tabulate_V2 : V2; -fun tabulation_N : N; -fun tabulator_N : N; -fun tabun_N : N; -fun tachistoscope_N : N; -fun tachogram_N : N; -fun tachograph_N : N; -fun tachometer_N : N; -fun tachycardia_N : N; -fun tachylite_N : N; -fun tachymeter_N : N; -fun tacit_A : A; -fun tacitly_Adv : Adv; -fun taciturn_A : A; -fun taciturnity_N : N; -fun tack_N : N; -fun tack_V : V; -fun tack_V2 : V2; -fun tacker_N : N; -fun tackle_N : N; -fun tackle_V : V; -fun tackle_V2 : V2; -fun tackler_N : N; -fun tacky_A : A; -fun taco_N : N; -fun taconite_N : N; -fun tact_N : N; -fun tactful_A : A; -fun tactfully_Adv : Adv; -fun tactic_N : N; -fun tactical_A : A; -fun tactically_Adv : Adv; -fun tactician_N : N; -fun tactics_N : N; -fun tactile_A : A; -fun tactless_A : A; -fun tactlessly_Adv : Adv; -fun tactlessness_N : N; -fun tactual_A : A; -fun tactually_Adv : Adv; -fun tad_N : N; -fun tadalafil_N : N; -fun tadpole_N : N; -fun tadpole_shaped_A : A; -fun tael_N : N; -fun taenia_N : N; -fun taffeta_N : N; -fun taffrail_N : N; -fun taffy_N : N; -fun tag_N : N; -fun tag_V : V; -fun tag_V2 : V2; -fun tag_VS : VS; -fun tagalong_N : N; -fun tagasaste_N : N; -fun tagger_N : N; -fun tagliatelle_N : N; -fun taguan_N : N; -fun tahini_N : N; -fun tahitian_A : A; -fun tahitian_N : N; -fun tail_N : N; -fun tail_V : V; -fun tail_V2 : V2; -fun tail_coat_N : N; -fun tail_end_N : N; -fun tail_light_N : N; -fun tail_shaped_A : A; -fun tailback_N : N; -fun tailboard_N : N; -fun tailed_A : A; -fun tailgate_N : N; -fun tailgater_N : N; -fun tailless_A : A; -fun taillight_N : N; -fun tailor_N : N; -fun tailor_V2 : V2; -fun tailor_made_A : A; -fun tailor_made_N : N; -fun tailorbird_N : N; -fun tailored_A : A; -fun tailoring_N : N; -fun tailpiece_N : N; -fun tailpipe_N : N; -fun tailplane_N : N; -fun tailrace_N : N; -fun tailspin_N : N; -fun tailstock_N : N; -fun tailwind_N : N; -fun taint_N : N; -fun taint_V : V; -fun taint_V2 : V2; -fun taintless_A : A; -fun taipan_N : N; -fun taiwanese_A : A; -fun taiwanese_N : N; -fun taka_N : N; -fun take_N : N; -fun take_V : V; -fun take_V2 : V2; -fun take_VA : VA; -fun take_VS : VS; -fun take_home_A : A; -fun take_home_A : A; -fun take_in_N : N; -fun take_off_N : N; -fun take_on_V2 : V2; -fun take_over_V2 : V2; -fun take_shape_V : V; -fun take_up_N : N; -fun take_up_N : N; -fun takeaway_A : A; -fun takeaway_N : N; -fun takedown_N : N; -fun taken_A : A; -fun takeoff_N : N; -fun takeout_A : A; -fun takeout_N : N; -fun takeover_N : N; -fun taker_N : N; -fun takin_N : N; -fun taking_A : A; -fun tala_N : N; -fun talapoin_N : N; -fun talaria_N : N; -fun talc_N : N; -fun talc_V2 : V2; -fun talcum_N : N; -fun tale_N : N; -fun tale_bearer_N : N; -fun tale_teller_N : N; -fun talent_N : N; -fun talented_A : A; -fun talentlessness_N : N; -fun talipot_N : N; -fun talisman_N : N; -fun talismanic_A : A; -fun talk_N : N; -fun talk_V : V; -fun talk_V2 : V2; -fun talk_VA : VA; -fun talkative_A : A; -fun talker_N : N; -fun talkie_N : N; -fun talking_point_N : N; -fun talking_to_N : N; -fun tall_A : A; -fun tall_N : N; -fun tallboy_N : N; -fun tallgrass_N : N; -fun tallish_A : A; -fun tallness_N : N; -fun tallow_N : N; -fun tally_N : N; -fun tally_V : V; -fun tally_V2 : V2; -fun tally_clerk_N : N; -fun tally_up_V2 : V2; -fun tallyman_N : N; -fun talmud_N : N; -fun talon_N : N; -fun talus_N : N; -fun tam_N : N; -fun tam_o'_shanter_N : N; -fun tamable_A : A; -fun tamale_N : N; -fun tamandua_N : N; -fun tamarau_N : N; -fun tamarin_N : N; -fun tamarind_N : N; -fun tamarisk_N : N; -fun tambala_N : N; -fun tambour_N : N; -fun tambourine_N : N; -fun tame_A : A; -fun tame_V2 : V2; -fun tamed_A : A; -fun tamely_Adv : Adv; -fun tameness_N : N; -fun tamer_N : N; -fun tamil_A : A; -fun tamil_N : N; -fun tammany_N : N; -fun tammy_N : N; -fun tamp_N : N; -fun tamp_V2 : V2; -fun tamper_V : V; -fun tampion_N : N; -fun tampon_N : N; -fun tamponade_N : N; -fun tan_A : A; -fun tan_N : N; -fun tan_V : V; -fun tan_V2 : V2; -fun tanager_N : N; -fun tanbark_N : N; -fun tandem_Adv : Adv; -fun tandem_N : N; -fun tandoor_N : N; -fun tanekaha_N : N; -fun tang_N : N; -fun tanga_N : N; -fun tangelo_N : N; -fun tangency_N : N; -fun tangent_N : N; -fun tangential_A : A; -fun tangentially_Adv : Adv; -fun tangerine_A : A; -fun tangerine_N : N; -fun tangibility_N : N; -fun tangible_A : A; -fun tangibly_Adv : Adv; -fun tangle_N : N; -fun tangle_V : V; -fun tangle_V2 : V2; -fun tanglebush_N : N; -fun tangled_A : A; -fun tango_N : N; -fun tango_V : V; -fun tangram_N : N; -fun tangy_A : A; -fun tank_N : N; -fun tank_V : V; -fun tank_car_N : N; -fun tanka_N : N; -fun tankage_N : N; -fun tankard_N : N; -fun tanker_N : N; -fun tanned_A : A; -fun tanner_N : N; -fun tannery_N : N; -fun tannic_A : A; -fun tannin_N : N; -fun tanning_N : N; -fun tannish_A : A; -fun tannoy_N : N; -fun tansy_N : N; -fun tansy_scented_A : A; -fun tantalite_N : N; -fun tantalize_V2 : V2; -fun tantalizer_N : N; -fun tantalizing_A : A; -fun tantalizingly_Adv : Adv; -fun tantalum_N : N; -fun tantamount_A : A; -fun tantra_N : N; -fun tantrum_N : N; -fun tanzanian_A : A; -fun tanzanian_N : N; -fun taoiseach_N : N; -fun tap_N : N; -fun tap_V : V; -fun tap_V2 : V2; -fun tap_dancing_N : N; -fun tapa_N : N; -fun tape_N : N; -fun tape_V : V; -fun tape_V2 : V2; -fun tape_measure_N : N; -fun tape_recorder_N : N; -fun taped_A : A; -fun tapenade_N : N; -fun taper_N : N; -fun taper_V : V; -fun taper_V2 : V2; -fun tapered_A : A; -fun tapering_N : N; -fun tapestried_A : A; -fun tapestry_N : N; -fun tapeworm_N : N; -fun taphephobia_N : N; -fun tapioca_N : N; -fun tapir_N : N; -fun tapotement_N : N; -fun tapped_A : A; -fun tapper_N : N; -fun tappet_N : N; -fun tapping_N : N; -fun taproom_N : N; -fun taproot_N : N; -fun taps_N : N; -fun tapster_N : N; -fun tar_N : N; -fun tar_V2 : V2; -fun tar_macadam_N : N; -fun taradiddle_N : N; -fun tarantella_N : N; -fun tarantelle_N : N; -fun tarantism_N : N; -fun tarantula_N : N; -fun tarboosh_N : N; -fun tardigrade_N : N; -fun tardily_Adv : Adv; -fun tardiness_N : N; -fun tardive_A : A; -fun tardy_A : A; -fun tare_N : N; -fun target_N : N; -fun target_V2 : V2; -fun target_V2V : V2V; -fun target_VS : VS; -fun target_hunting_A : A; -fun tariff_N : N; -fun tarmac_N : N; -fun tarmac_V2 : V2; -fun tarmacadam_N : N; -fun tarn_N : N; -fun tarnish_N : N; -fun tarnish_V : V; -fun tarnish_V2 : V2; -fun taro_N : N; -fun tarpan_N : N; -fun tarpaulin_N : N; -fun tarpon_N : N; -fun tarradiddle_N : N; -fun tarragon_N : N; -fun tarred_and_feathered_A : A; -fun tarriance_N : N; -fun tarry_A : A; -fun tarry_V : V; -fun tarsal_A : A; -fun tarsal_N : N; -fun tarsier_N : N; -fun tarsitis_N : N; -fun tarsus_N : N; -fun tart_A : A; -fun tart_N : N; -fun tart_V2 : V2; -fun tartan_N : N; -fun tartar_N : N; -fun tartaric_A : A; -fun tartlet_N : N; -fun tartly_Adv : Adv; -fun tartness_N : N; -fun tartrate_N : N; -fun tarweed_N : N; -fun tarwood_N : N; -fun task_N : N; -fun task_V2 : V2; -fun task_force_N : N; -fun taskmaster_N : N; -fun taskmistress_N : N; -fun tassel_N : N; -fun tassel_V2 : V2; -fun tassel_shaped_A : A; -fun tasseled_A : A; -fun tasselled_A : A; -fun tasset_N : N; -fun taste_N : N; -fun taste_V : V; -fun taste_V2 : V2; -fun tastebud_N : N; -fun tasteful_A : A; -fun tastefully_Adv : Adv; -fun tastefulness_N : N; -fun tasteless_A : A; -fun tastelessly_Adv : Adv; -fun tastelessness_N : N; -fun taster_N : N; -fun tastily_Adv : Adv; -fun tasting_N : N; -fun tasty_A : A; -fun tat_N : N; -fun tat_V : V; -fun tat_V2 : V2; -fun tatouay_N : N; -fun tatter_N : N; -fun tatterdemalion_N : N; -fun tattered_A : A; -fun tattily_Adv : Adv; -fun tatting_N : N; -fun tattle_N : N; -fun tattle_V : V; -fun tattle_V2 : V2; -fun tattler_N : N; -fun tattletale_N : N; -fun tattoo_N : N; -fun tattoo_V : V; -fun tattoo_V2 : V2; -fun tatty_A : A; -fun tau_N : N; -fun taunt_N : N; -fun taunt_V2 : V2; -fun tauntingly_Adv : Adv; -fun tauon_N : N; -fun taupe_N : N; -fun taurine_A : A; -fun taurine_N : N; -fun taut_A : A; -fun tautly_Adv : Adv; -fun tautness_N : N; -fun tautog_N : N; -fun tautological_A : A; -fun tautology_N : N; -fun tavern_N : N; -fun taw_N : N; -fun tawdrily_Adv : Adv; -fun tawdriness_N : N; -fun tawdry_A : A; -fun tawniness_N : N; -fun tawny_A : A; -fun tawny_colored_A : A; -fun tawse_N : N; -fun tax_N : N; -fun tax_V2 : V2; -fun tax_collector_N : N; -fun tax_exempt_A : A; -fun tax_free_A : A; -fun tax_increase_N : N; -fun taxability_N : N; -fun taxable_A : A; -fun taxation_N : N; -fun taxer_N : N; -fun taxi_N : N; -fun taxi_V : V; -fun taxi_V2 : V2; -fun taxicab_N : N; -fun taxidermist_N : N; -fun taxidermy_N : N; -fun taxidriver_N : N; -fun taximeter_N : N; -fun taxis_N : N; -fun taxiway_N : N; -fun taxonomic_A : A; -fun taxonomically_Adv : Adv; -fun taxonomist_N : N; -fun taxonomy_N : N; -fun taxpayer_N : N; -fun taxpaying_A : A; -fun tayra_N : N; -fun tb_N : N; -fun te_deum_N : N; -fun tea_N : N; -fun tea_bag_N : N; -fun tea_break_N : N; -fun tea_caddy_N : N; -fun tea_chest_N : N; -fun tea_cloth_N : N; -fun tea_cosy_N : N; -fun tea_garden_N : N; -fun tea_kettle_N : N; -fun tea_leaf_N : N; -fun tea_party_N : N; -fun tea_scented_A : A; -fun tea_service_N : N; -fun tea_set_N : N; -fun tea_strainer_N : N; -fun tea_strainer_N : N; -fun tea_table_N : N; -fun tea_time_N : N; -fun tea_towel_N : N; -fun tea_tray_N : N; -fun tea_trolley_N : N; -fun tea_urn_N : N; -fun tea_wagon_N : N; -fun teaberry_N : N; -fun teacake_N : N; -fun teach_V : V; -fun teach_V2 : V2; -fun teach_V2V : V2V; -fun teach_VS : VS; -fun teach_in_N : N; -fun teach_in_N : N; -fun teachable_A : A; -fun teacher_N : N; -fun teachership_N : N; -fun teaching_N : N; -fun teacup_N : N; -fun teahouse_N : N; -fun teak_N : N; -fun teakettle_N : N; -fun teal_N : N; -fun team_N : N; -fun team_V : V; -fun team_up_V : V; -fun teammate_N : N; -fun teamster_N : N; -fun teamwork_N : N; -fun teapot_N : N; -fun tear_N : N; -fun tear_V : V; -fun tear_V2 : V2; -fun tear_drop_N : N; -fun tear_gas_N : N; -fun tearaway_A : A; -fun tearaway_N : N; -fun teardrop_N : N; -fun tearful_A : A; -fun tearfully_Adv : Adv; -fun tearing_A : A; -fun tearing_N : N; -fun tearjerker_N : N; -fun tearless_A : A; -fun tearoom_N : N; -fun teary_A : A; -fun tease_N : N; -fun tease_V2 : V2; -fun teased_A : A; -fun teasel_N : N; -fun teaser_N : N; -fun teashop_N : N; -fun teasing_A : A; -fun teasing_N : N; -fun teasingly_Adv : Adv; -fun teaspoon_N : N; -fun teaspoonful_N : N; -fun teat_N : N; -fun teazel_N : N; -fun teazle_N : N; -fun tebibit_N : N; -fun tec_N : N; -fun tech_N : N; -fun techie_N : N; -fun technetium_N : N; -fun technical_A : A; -fun technical_N : N; -fun technical_grade_A : A; -fun technicality_N : N; -fun technically_Adv : Adv; -fun technician_N : N; -fun technicolor_N : N; -fun technique_N : N; -fun techno_N : N; -fun technobabble_N : N; -fun technocracy_N : N; -fun technocrat_N : N; -fun technological_A : A; -fun technologically_Adv : Adv; -fun technologist_N : N; -fun technology_N : N; -fun technophile_N : N; -fun technophilia_N : N; -fun technophilic_A : A; -fun technophobe_N : N; -fun technophobia_N : N; -fun technophobic_A : A; -fun techy_A : A; -fun tectonic_A : A; -fun tectonics_N : N; -fun ted_N : N; -fun teddy_N : N; -fun teddy_boy_N : N; -fun tedious_A : A; -fun tediousness_N : N; -fun tedium_N : N; -fun tee_N : N; -fun tee_V : V; -fun tee_V2 : V2; -fun tee_shirt_N : N; -fun teem_V : V; -fun teeming_A : A; -fun teenage_A : A; -fun teenager_N : N; -fun teens_N : N; -fun teeny_A : A; -fun teeoff_N : N; -fun teeter_V : V; -fun teethe_V : V; -fun teething_N : N; -fun teetotal_A : A; -fun teetotaler_N : N; -fun teetotaling_N : N; -fun teetotaller_N : N; -fun teetotum_N : N; -fun teff_N : N; -fun teg_N : N; -fun tegular_A : A; -fun tegument_N : N; -fun teju_N : N; -fun tektite_N : N; -fun telecast_N : N; -fun telecast_V2 : V2; -fun telecaster_N : N; -fun telecommunication_N : N; -fun telecommuting_N : N; -fun teleconference_N : N; -fun telefilm_N : N; -fun telegnosis_N : N; -fun telegnostic_A : A; -fun telegram_N : N; -fun telegraph_N : N; -fun telegraph_V : V; -fun telegraph_V2 : V2; -fun telegraph_line_N : N; -fun telegraph_pole_N : N; -fun telegraph_post_N : N; -fun telegraph_wire_N : N; -fun telegrapher_N : N; -fun telegraphese_N : N; -fun telegraphic_A : A; -fun telegraphically_Adv : Adv; -fun telegraphist_N : N; -fun telegraphy_N : N; -fun telekinesis_N : N; -fun telemark_N : N; -fun telemarketing_N : N; -fun telemeter_N : N; -fun telemetered_A : A; -fun telemetry_N : N; -fun telencephalon_N : N; -fun teleological_A : A; -fun teleologist_N : N; -fun teleology_N : N; -fun telepathic_A : A; -fun telepathist_N : N; -fun telepathy_N : N; -fun telephone_N : N; -fun telephone_V : V; -fun telephone_V2 : V2; -fun telephonic_A : A; -fun telephonist_N : N; -fun telephony_N : N; -fun telephoto_N : N; -fun telephotograph_N : N; -fun telephotography_N : N; -fun teleportation_N : N; -fun teleprinter_N : N; -fun teleprompter_N : N; -fun telerobotics_N : N; -fun telescope_N : N; -fun telescope_V : V; -fun telescope_V2 : V2; -fun telescoped_A : A; -fun telescopic_A : A; -fun telescopically_Adv : Adv; -fun telescopy_N : N; -fun telethermometer_N : N; -fun teletypewriter_N : N; -fun televangelism_N : N; -fun televangelist_N : N; -fun televise_V2 : V2; -fun television_N : N; -fun telex_N : N; -fun telex_V2 : V2; -fun telfer_N : N; -fun teliospore_N : N; -fun tell_V : V; -fun tell_V2 : V2; -fun tell_V2V : V2V; -fun tell_VS : VS; -fun tell_VV : VV; -fun teller_N : N; -fun telling_A : A; -fun telling_N : N; -fun tellingly_Adv : Adv; -fun telltale_N : N; -fun tellurian_A : A; -fun tellurian_N : N; -fun telluric_A : A; -fun telluride_N : N; -fun tellurium_N : N; -fun telly_N : N; -fun telocentric_A : A; -fun telomerase_N : N; -fun telomere_N : N; -fun telophase_N : N; -fun telpher_N : N; -fun telpherage_N : N; -fun temazepam_N : N; -fun temerity_N : N; -fun temp_N : N; -fun temper_N : N; -fun temper_V : V; -fun temper_V2 : V2; -fun tempera_N : N; -fun temperament_N : N; -fun temperamental_A : A; -fun temperamentally_Adv : Adv; -fun temperance_N : N; -fun temperate_A : A; -fun temperately_Adv : Adv; -fun temperateness_N : N; -fun temperature_N : N; -fun tempered_A : A; -fun tempering_A : A; -fun tempest_N : N; -fun tempest_swept_A : A; -fun tempest_tossed_A : A; -fun tempestuous_A : A; -fun tempestuousness_N : N; -fun template_N : N; -fun temple_N : N; -fun templet_N : N; -fun tempo_N : N; -fun temporal_A : A; -fun temporality_N : N; -fun temporally_Adv : Adv; -fun temporalty_N : N; -fun temporarily_Adv : Adv; -fun temporariness_N : N; -fun temporary_A : A; -fun temporize_V : V; -fun temporizer_N : N; -fun tempt_V2 : V2; -fun tempt_V2V : V2V; -fun temptable_A : A; -fun temptation_N : N; -fun tempter_N : N; -fun temptingly_Adv : Adv; -fun temptress_N : N; -fun tempura_N : N; -fun ten_A : A; -fun ten_N : N; -fun ten_membered_A : A; -fun ten_sided_A : A; -fun ten_spot_N : N; -fun ten_thousand_A : A; -fun tenability_N : N; -fun tenable_A : A; -fun tenacious_A : A; -fun tenaciousness_N : N; -fun tenacity_N : N; -fun tenancy_N : N; -fun tenant_N : N; -fun tenant_V2 : V2; -fun tenantry_N : N; -fun tench_N : N; -fun tend_V : V; -fun tend_V2 : V2; -fun tend_VV : VV; -fun tendency_N : N; -fun tendentious_A : A; -fun tendentiously_Adv : Adv; -fun tendentiousness_N : N; -fun tender_A : A; -fun tender_N : N; -fun tender_V : V; -fun tender_V2 : V2; -fun tender_V2V : V2V; -fun tenderfoot_N : N; -fun tendergreen_N : N; -fun tenderhearted_A : A; -fun tenderization_N : N; -fun tenderized_A : A; -fun tenderizer_N : N; -fun tenderloin_N : N; -fun tenderly_Adv : Adv; -fun tenderness_N : N; -fun tendinitis_N : N; -fun tendinous_A : A; -fun tendon_N : N; -fun tendril_N : N; -fun tendril_climbing_A : A; -fun tenebrous_A : A; -fun tenement_N : N; -fun tenement_house_N : N; -fun tenesmus_N : N; -fun tenet_N : N; -fun tenfold_A : A; -fun tenfold_Adv : Adv; -fun tenge_N : N; -fun tenner_N : N; -fun tennis_N : N; -fun tennis_court_N : N; -fun tennis_elbow_N : N; -fun tenon_N : N; -fun tenor_A : A; -fun tenor_N : N; -fun tenoroon_N : N; -fun tenosynovitis_N : N; -fun tenpence_N : N; -fun tenpin_N : N; -fun tenpins_N : N; -fun tenrec_N : N; -fun tense_A : A; -fun tense_N : N; -fun tense_V : V; -fun tense_V2 : V2; -fun tensed_A : A; -fun tensely_Adv : Adv; -fun tenseness_N : N; -fun tensile_A : A; -fun tensimeter_N : N; -fun tensiometer_N : N; -fun tension_N : N; -fun tensional_A : A; -fun tensionless_A : A; -fun tensity_N : N; -fun tensor_N : N; -fun tent_N : N; -fun tent_fly_N : N; -fun tent_peg_N : N; -fun tentacle_N : N; -fun tentacled_A : A; -fun tentacular_A : A; -fun tentative_A : A; -fun tentatively_Adv : Adv; -fun tenter_N : N; -fun tenterhook_N : N; -fun tenth_A : A; -fun tenth_N : N; -fun tenthly_Adv : Adv; -fun tentmaker_N : N; -fun tentorium_N : N; -fun tenuity_N : N; -fun tenuous_A : A; -fun tenuously_Adv : Adv; -fun tenure_N : N; -fun tenured_A : A; -fun tepal_N : N; -fun tepee_N : N; -fun tepid_A : A; -fun tepidity_N : N; -fun tepidness_N : N; -fun tequila_N : N; -fun terabit_N : N; -fun terabyte_N : N; -fun teraflop_N : N; -fun terahertz_N : N; -fun teratogen_N : N; -fun teratogenesis_N : N; -fun teratogenic_A : A; -fun teratology_N : N; -fun teratoma_N : N; -fun terazosin_N : N; -fun terbinafine_N : N; -fun terbium_N : N; -fun terce_N : N; -fun tercentenary_N : N; -fun tercentennial_N : N; -fun terebinth_N : N; -fun teredo_N : N; -fun teres_N : N; -fun terete_A : A; -fun tergiversate_V : V; -fun tergiversation_N : N; -fun teriyaki_N : N; -fun term_N : N; -fun term_V2 : V2; -fun term_VS : VS; -fun termagant_N : N; -fun termer_N : N; -fun terminable_A : A; -fun terminal_A : A; -fun terminal_N : N; -fun terminally_Adv : Adv; -fun terminate_V : V; -fun terminate_V2 : V2; -fun terminated_A : A; -fun termination_N : N; -fun terminative_A : A; -fun terminological_A : A; -fun terminology_N : N; -fun terminus_N : N; -fun termite_N : N; -fun tern_N : N; -fun ternary_A : A; -fun ternate_A : A; -fun terpene_N : N; -fun terpsichorean_A : A; -fun terra_cotta_N : N; -fun terra_firma_N : N; -fun terra_incognita_N : N; -fun terrace_N : N; -fun terrace_V2 : V2; -fun terrain_N : N; -fun terrapin_N : N; -fun terrarium_N : N; -fun terreplein_N : N; -fun terrestrial_A : A; -fun terrestrially_Adv : Adv; -fun terrible_A : A; -fun terribly_Adv : Adv; -fun terrier_N : N; -fun terrific_A : A; -fun terrifically_Adv : Adv; -fun terrify_V2 : V2; -fun terrine_N : N; -fun territorial_A : A; -fun territorial_N : N; -fun territoriality_N : N; -fun territorialization_N : N; -fun territorially_Adv : Adv; -fun territory_N : N; -fun terror_N : N; -fun terror_stricken_A : A; -fun terror_stricken_A : A; -fun terror_struck_A : A; -fun terrorism_N : N; -fun terrorist_N : N; -fun terrorization_N : N; -fun terrorize_V2 : V2; -fun terry_N : N; -fun terse_A : A; -fun terseness_N : N; -fun tertian_A : A; -fun tertiary_A : A; -fun tertigravida_N : N; -fun terylene_N : N; -fun tesla_N : N; -fun tessella_N : N; -fun tessellated_A : A; -fun tessellation_N : N; -fun tessera_N : N; -fun tesseract_N : N; -fun test_N : N; -fun test_V2 : V2; -fun test_drive_N : N; -fun test_drive_V2 : V2; -fun test_tube_N : N; -fun testa_N : N; -fun testacean_N : N; -fun testaceous_A : A; -fun testament_N : N; -fun testamentary_A : A; -fun testate_A : A; -fun testate_N : N; -fun testator_N : N; -fun testatrix_N : N; -fun testbed_N : N; -fun testcross_N : N; -fun tested_A : A; -fun testee_N : N; -fun tester_N : N; -fun testicle_N : N; -fun testicular_A : A; -fun testifier_N : N; -fun testify_V : V; -fun testify_V2 : V2; -fun testify_VS : VS; -fun testily_Adv : Adv; -fun testimonial_A : A; -fun testimonial_N : N; -fun testimony_N : N; -fun testiness_N : N; -fun testing_N : N; -fun testis_N : N; -fun testosterone_N : N; -fun testudo_N : N; -fun testy_A : A; -fun tetanic_A : A; -fun tetanus_N : N; -fun tetany_N : N; -fun tetartanopia_N : N; -fun tetchily_Adv : Adv; -fun tetchiness_N : N; -fun tetchy_A : A; -fun tete_a_tete_A : A; -fun tete_a_tete_Adv : Adv; -fun tete_a_tete_N : N; -fun tete_a_tete_N : N; -fun teth_N : N; -fun tether_N : N; -fun tether_V2 : V2; -fun tetherball_N : N; -fun tethered_A : A; -fun tetra_N : N; -fun tetracaine_N : N; -fun tetrachlorethylene_N : N; -fun tetrachloride_N : N; -fun tetracycline_N : N; -fun tetrafluoroethylene_N : N; -fun tetragonal_A : A; -fun tetragram_N : N; -fun tetrahalide_N : N; -fun tetrahedron_N : N; -fun tetrahydrocannabinol_N : N; -fun tetrahymena_N : N; -fun tetralogy_N : N; -fun tetralogy_of_fallot_PN : PN; -fun tetramerous_A : A; -fun tetrameter_N : N; -fun tetrametric_A : A; -fun tetrapod_N : N; -fun tetrasaccharide_N : N; -fun tetraskelion_N : N; -fun tetrasporangium_N : N; -fun tetraspore_N : N; -fun tetravalent_A : A; -fun tetri_N : N; -fun tetrode_N : N; -fun tetrodotoxin_N : N; -fun tetrose_N : N; -fun tetroxide_N : N; -fun tetryl_N : N; -fun teuton_N : N; -fun teutonic_A : A; -fun texan_A : A; -fun texan_N : N; -fun text_N : N; -fun text_matching_N : N; -fun textbook_N : N; -fun textile_A : A; -fun textile_N : N; -fun textual_A : A; -fun texture_N : N; -fun textured_A : A; -fun thai_A : A; -fun thai_N : N; -fun thalamocortical_A : A; -fun thalamus_N : N; -fun thalassemia_N : N; -fun thalassic_A : A; -fun thalidomide_N : N; -fun thallium_N : N; -fun thalloid_A : A; -fun thallophyte_N : N; -fun thallophytic_A : A; -fun thallus_N : N; -fun thalweg_N : N; -fun than_Prep : Prep; -fun thanatology_N : N; -fun thanatophobia_N : N; -fun thanatopsis_N : N; -fun thane_N : N; -fun thaneship_N : N; -fun thank_V2 : V2; -fun thank_offering_N : N; -fun thankful_A : A; -fun thankfully_Adv : Adv; -fun thankfulness_N : N; -fun thankless_A : A; -fun thanks_N : N; -fun thanksgiving_N : N; -fun that_Prep : Prep; -fun that_Quant : Quant; -fun that_much_Adv : Adv; -fun thatch_N : N; -fun thatch_V2 : V2; -fun thatcher_N : N; -fun thaumatolatry_N : N; -fun thaw_N : N; -fun thaw_V : V; -fun thaw_V2 : V2; -fun thawed_A : A; -fun the_city_PN : PN; -fun the_irish_famine_PN : PN; -fun theanthropism_N : N; -fun theater_N : N; -fun theatre_N : N; -fun theatregoer_N : N; -fun theatrical_A : A; -fun theatrical_N : N; -fun theatrically_Adv : Adv; -fun thebe_N : N; -fun theca_N : N; -fun thecodont_N : N; -fun theft_N : N; -fun theism_N : N; -fun theist_A : A; -fun theist_N : N; -fun theistic_A : A; -fun theistical_A : A; -fun thelarche_N : N; -fun thematic_A : A; -fun thematically_Adv : Adv; -fun theme_N : N; -fun then_A : A; -fun then_Adv : Adv; -fun then_N : N; -fun then_Prep : Prep; -fun thenal_A : A; -fun thenar_N : N; -fun thence_Adv : Adv; -fun thenceforth_Adv : Adv; -fun thenceforward_Adv : Adv; -fun theocracy_N : N; -fun theocratic_A : A; -fun theodicy_N : N; -fun theodolite_N : N; -fun theogony_N : N; -fun theologian_N : N; -fun theological_A : A; -fun theologically_Adv : Adv; -fun theology_N : N; -fun theophany_N : N; -fun theophylline_N : N; -fun theorem_N : N; -fun theoretic_A : A; -fun theoretical_A : A; -fun theoretically_Adv : Adv; -fun theoretician_N : N; -fun theorist_N : N; -fun theorization_N : N; -fun theorize_V : V; -fun theorize_VS : VS; -fun theory_N : N; -fun theory_based_A : A; -fun theosophical_A : A; -fun theosophism_N : N; -fun theosophist_N : N; -fun theosophy_N : N; -fun theoterrorism_N : N; -fun therapeutic_A : A; -fun therapeutical_A : A; -fun therapeutically_Adv : Adv; -fun therapeutics_N : N; -fun therapist_N : N; -fun therapsid_N : N; -fun therapy_N : N; -fun there_Adv : Adv; -fun there_N : N; -fun thereabout_Adv : Adv; -fun thereabouts_Adv : Adv; -fun thereafter_Adv : Adv; -fun thereby_Adv : Adv; -fun therefor_Adv : Adv; -fun therefore_Adv : Adv; -fun therefrom_Adv : Adv; -fun therein_Adv : Adv; -fun thereinafter_Adv : Adv; -fun theremin_N : N; -fun thereness_N : N; -fun thereof_Adv : Adv; -fun thereon_Adv : Adv; -fun thereto_Adv : Adv; -fun theretofore_Adv : Adv; -fun thereunder_Adv : Adv; -fun thereupon_Adv : Adv; -fun therewith_Adv : Adv; -fun therewithal_Adv : Adv; -fun therm_N : N; -fun thermal_A : A; -fun thermal_N : N; -fun thermalgesia_N : N; -fun thermally_Adv : Adv; -fun thermion_N : N; -fun thermionic_A : A; -fun thermionics_N : N; -fun thermistor_N : N; -fun thermoacidophile_N : N; -fun thermocautery_N : N; -fun thermochemistry_N : N; -fun thermocoagulation_N : N; -fun thermocouple_N : N; -fun thermodynamic_A : A; -fun thermodynamically_Adv : Adv; -fun thermodynamics_N : N; -fun thermoelectric_A : A; -fun thermoelectricity_N : N; -fun thermogram_N : N; -fun thermograph_N : N; -fun thermography_N : N; -fun thermogravimetry_N : N; -fun thermohydrometer_N : N; -fun thermohydrometric_A : A; -fun thermojunction_N : N; -fun thermolabile_A : A; -fun thermometer_N : N; -fun thermometric_A : A; -fun thermometry_N : N; -fun thermonuclear_A : A; -fun thermopile_N : N; -fun thermoplastic_A : A; -fun thermoplastic_N : N; -fun thermoreceptor_N : N; -fun thermos_N : N; -fun thermosetting_A : A; -fun thermosphere_N : N; -fun thermostat_N : N; -fun thermostatic_A : A; -fun thermostatically_Adv : Adv; -fun thermostatics_N : N; -fun thermotherapy_N : N; -fun thermotropism_N : N; -fun theropod_N : N; -fun thesaurus_N : N; -fun thesis_N : N; -fun thespian_A : A; -fun thespian_N : N; -fun theta_N : N; -fun theurgy_N : N; -fun they_Pron : Pron; -fun thiabendazole_N : N; -fun thiazide_N : N; -fun thiazine_N : N; -fun thick_A : A; -fun thick_Adv : Adv; -fun thick_N : N; -fun thick_billed_A : A; -fun thick_bodied_A : A; -fun thick_branched_A : A; -fun thick_haired_A : A; -fun thick_headed_A : A; -fun thick_lipped_A : A; -fun thick_set_A : A; -fun thick_skinned_A : A; -fun thick_skinned_A : A; -fun thick_stemmed_A : A; -fun thicken_V : V; -fun thicken_V2 : V2; -fun thickened_A : A; -fun thickening_A : A; -fun thickening_N : N; -fun thicket_N : N; -fun thicket_forming_A : A; -fun thickhead_N : N; -fun thickly_Adv : Adv; -fun thickness_N : N; -fun thickset_A : A; -fun thickspread_A : A; -fun thief_N : N; -fun thieve_V : V; -fun thieve_V2 : V2; -fun thievery_N : N; -fun thieving_A : A; -fun thievish_A : A; -fun thievishly_Adv : Adv; -fun thievishness_N : N; -fun thigh_N : N; -fun thighbone_N : N; -fun thill_N : N; -fun thimble_N : N; -fun thimble_shaped_A : A; -fun thimbleful_N : N; -fun thimbleweed_N : N; -fun thimerosal_N : N; -fun thin_A : A; -fun thin_Adv : Adv; -fun thin_V : V; -fun thin_V2 : V2; -fun thin_shelled_A : A; -fun thin_skinned_A : A; -fun thine_A : A; -fun thing_N : N; -fun thingmabob_N : N; -fun thingmajig_N : N; -fun things_N : N; -fun thingumabob_N : N; -fun thingumajig_N : N; -fun thingummy_N : N; -fun think_N : N; -fun think_V : V; -fun think_V2 : V2; -fun think_VA : VA; -fun think_VS : VS; -fun think_tank_N : N; -fun thinkable_A : A; -fun thinker_N : N; -fun thinking_A : A; -fun thinking_N : N; -fun thinly_Adv : Adv; -fun thinness_N : N; -fun thiobacillus_N : N; -fun thiobacteria_N : N; -fun thiocyanate_N : N; -fun thioguanine_N : N; -fun thiopental_N : N; -fun thioridazine_N : N; -fun thiotepa_N : N; -fun thiothixene_N : N; -fun thiouracil_N : N; -fun third_A : A; -fun third_Adv : Adv; -fun third_N : N; -fun third_rate_A : A; -fun third_rate_A : A; -fun third_rater_N : N; -fun third_rater_N : N; -fun thirdhand_A : A; -fun thirdhand_Adv : Adv; -fun thirst_N : N; -fun thirst_V2 : V2; -fun thirstily_Adv : Adv; -fun thirsty_A : A; -fun thirteen_A : A; -fun thirteen_N : N; -fun thirteenth_A : A; -fun thirteenth_N : N; -fun thirties_N : N; -fun thirtieth_A : A; -fun thirtieth_N : N; -fun thirty_A : A; -fun thirty_N : N; -fun thirty_eight_A : A; -fun thirty_eighth_A : A; -fun thirty_fifth_A : A; -fun thirty_first_A : A; -fun thirty_five_A : A; -fun thirty_four_A : A; -fun thirty_fourth_A : A; -fun thirty_nine_A : A; -fun thirty_ninth_A : A; -fun thirty_one_A : A; -fun thirty_second_A : A; -fun thirty_seven_A : A; -fun thirty_seventh_A : A; -fun thirty_six_A : A; -fun thirty_sixth_A : A; -fun thirty_third_A : A; -fun thirty_three_A : A; -fun thirty_two_A : A; -fun this_Quant : Quant; -fun thistle_N : N; -fun thistledown_N : N; -fun thistlelike_A : A; -fun thither_Adv : Adv; -fun tho'_Adv : Adv; -fun thole_N : N; -fun tholepin_N : N; -fun thong_N : N; -fun thoracocentesis_N : N; -fun thoracotomy_N : N; -fun thorax_N : N; -fun thoriated_A : A; -fun thorite_N : N; -fun thorium_N : N; -fun thorium_228_N : N; -fun thorn_N : N; -fun thorn_tipped_A : A; -fun thornbill_N : N; -fun thornless_A : A; -fun thorny_A : A; -fun thorough_A : A; -fun thoroughbred_A : A; -fun thoroughbred_N : N; -fun thoroughfare_N : N; -fun thoroughgoing_A : A; -fun thoroughly_Adv : Adv; -fun thoroughness_N : N; -fun thortveitite_N : N; -fun though_Adv : Adv; -fun though_Prep : Prep; -fun thought_N : N; -fun thought_reader_N : N; -fun thoughtful_A : A; -fun thoughtfully_Adv : Adv; -fun thoughtfulness_N : N; -fun thoughtless_A : A; -fun thoughtlessly_Adv : Adv; -fun thoughtlessness_N : N; -fun thousand_A : A; -fun thousand_N : N; -fun thousand_fold_Adv : Adv; -fun thousandfold_A : A; -fun thousandfold_Adv : Adv; -fun thousandth_A : A; -fun thousandth_N : N; -fun thraldom_N : N; -fun thrall_N : N; -fun thrash_N : N; -fun thrash_V : V; -fun thrash_V2 : V2; -fun thrasher_N : N; -fun thrashing_N : N; -fun thread_N : N; -fun thread_V2 : V2; -fun threadbare_A : A; -fun threaded_A : A; -fun threadfin_N : N; -fun threadfish_N : N; -fun threadlike_A : A; -fun threat_N : N; -fun threaten_V : V; -fun threaten_V2 : V2; -fun threaten_VS : VS; -fun threaten_VV : VV; -fun threatened_A : A; -fun threateningly_Adv : Adv; -fun three_A : A; -fun three_N : N; -fun three_d_N : N; -fun three_cornered_A : A; -fun three_cornered_A : A; -fun three_d_A : A; -fun three_d_N : N; -fun three_decker_N : N; -fun three_decker_N : N; -fun three_dimensional_A : A; -fun three_dimensional_A : A; -fun three_dimensionality_N : N; -fun three_figure_A : A; -fun three_figure_A : A; -fun three_fourths_N : N; -fun three_funnelled_A : A; -fun three_hitter_N : N; -fun three_hundred_A : A; -fun three_hundredth_A : A; -fun three_lane_A : A; -fun three_lane_A : A; -fun three_legged_A : A; -fun three_legged_A : A; -fun three_lipped_A : A; -fun three_lobed_A : A; -fun three_membered_A : A; -fun three_needled_A : A; -fun three_petaled_A : A; -fun three_piece_A : A; -fun three_piece_A : A; -fun three_ply_A : A; -fun three_ply_A : A; -fun three_pronged_A : A; -fun three_quarter_A : A; -fun three_quarter_N : N; -fun three_score_A : A; -fun three_score_N : N; -fun three_seeded_A : A; -fun three_storey_A : A; -fun three_storeyed_A : A; -fun three_wheel_A : A; -fun three_wheeled_A : A; -fun three_year_old_A : A; -fun threefold_A : A; -fun threefold_Adv : Adv; -fun threepence_N : N; -fun threepenny_A : A; -fun threescore_N : N; -fun threesome_N : N; -fun threnody_N : N; -fun threonine_N : N; -fun thresh_V : V; -fun thresh_V2 : V2; -fun thresher_N : N; -fun threshing_N : N; -fun threshing_floor_N : N; -fun threshing_machine_N : N; -fun threshold_N : N; -fun thrice_Adv : Adv; -fun thrift_N : N; -fun thriftily_Adv : Adv; -fun thriftless_A : A; -fun thriftlessly_Adv : Adv; -fun thriftlessness_N : N; -fun thriftshop_N : N; -fun thrifty_A : A; -fun thrill_N : N; -fun thrill_V : V; -fun thrill_V2 : V2; -fun thrilled_A : A; -fun thriller_N : N; -fun thrillful_A : A; -fun thrilling_A : A; -fun thrips_N : N; -fun thrive_V : V; -fun throat_N : N; -fun throated_A : A; -fun throatwort_N : N; -fun throaty_A : A; -fun throb_N : N; -fun throb_V : V; -fun throbbing_A : A; -fun throbbing_N : N; -fun throe_N : N; -fun throes_N : N; -fun thrombasthenia_N : N; -fun thrombectomy_N : N; -fun thrombin_N : N; -fun thrombocytopenia_N : N; -fun thrombocytosis_N : N; -fun thromboembolism_N : N; -fun thrombolysis_N : N; -fun thrombolytic_N : N; -fun thrombophlebitis_N : N; -fun thromboplastin_N : N; -fun thrombosed_A : A; -fun thrombosis_N : N; -fun thrombus_N : N; -fun throne_N : N; -fun throng_N : N; -fun throng_V : V; -fun throng_V2 : V2; -fun thronged_A : A; -fun throstle_N : N; -fun throttle_N : N; -fun throttle_V : V; -fun throttle_V2 : V2; -fun throttle_valve_N : N; -fun through_A : A; -fun through_Adv : Adv; -fun through_Prep : Prep; -fun throughout_Adv : Adv; -fun throughout_Prep : Prep; -fun throughput_N : N; -fun throughway_N : N; -fun throw_N : N; -fun throw_V : V; -fun throw_V2 : V2; -fun throw_VS : VS; -fun throw_in_N : N; -fun throw_in_N : N; -fun throw_up_V : V; -fun throw_weight_N : N; -fun throwaway_A : A; -fun throwaway_N : N; -fun throwback_N : N; -fun thrower_N : N; -fun thrown_A : A; -fun throwster_N : N; -fun thrum_N : N; -fun thrum_V : V; -fun thrum_V2 : V2; -fun thrush_N : N; -fun thrust_N : N; -fun thrust_V : V; -fun thrust_V2 : V2; -fun thruster_N : N; -fun thud_N : N; -fun thud_V : V; -fun thud_V2 : V2; -fun thug_N : N; -fun thuggee_N : N; -fun thuggery_N : N; -fun thulium_N : N; -fun thumb_N : N; -fun thumb_V2 : V2; -fun thumbed_A : A; -fun thumbhole_N : N; -fun thumbnail_N : N; -fun thumbnut_N : N; -fun thumbprint_N : N; -fun thumbscrew_N : N; -fun thumbstall_N : N; -fun thumbtack_N : N; -fun thumbtack_V2 : V2; -fun thump_N : N; -fun thump_V : V; -fun thump_V2 : V2; -fun thumping_A : A; -fun thunder_N : N; -fun thunder_V : V; -fun thunder_V2 : V2; -fun thunderbird_N : N; -fun thunderbolt_N : N; -fun thunderclap_N : N; -fun thunderer_N : N; -fun thunderhead_N : N; -fun thundering_A : A; -fun thunderous_A : A; -fun thundershower_N : N; -fun thunderstorm_N : N; -fun thunderstruck_A : A; -fun thundery_A : A; -fun thunk_N : N; -fun thunk_V : V; -fun thunk_V2 : V2; -fun thurible_N : N; -fun thurifer_N : N; -fun thursday_N : N; -fun thus_Adv : Adv; -fun thwack_N : N; -fun thwack_V2 : V2; -fun thwart_N : N; -fun thwart_V2 : V2; -fun thy_A : A; -fun thylacine_N : N; -fun thyme_N : N; -fun thymine_N : N; -fun thymol_N : N; -fun thymosin_N : N; -fun thyroglobulin_N : N; -fun thyroid_A : A; -fun thyroid_N : N; -fun thyroidectomy_N : N; -fun thyroiditis_N : N; -fun thyronine_N : N; -fun thyroprotein_N : N; -fun thyrotoxic_A : A; -fun thyrotropin_N : N; -fun thyroxine_N : N; -fun thyrse_N : N; -fun thyrsopteris_N : N; -fun thysanopter_N : N; -fun ti_N : N; -fun tiara_N : N; -fun tibetan_A : A; -fun tibetan_N : N; -fun tibia_N : N; -fun tibial_A : A; -fun tibialis_N : N; -fun tic_N : N; -fun tick_N : N; -fun tick_V : V; -fun tick_V2 : V2; -fun tick_tock_N : N; -fun ticker_N : N; -fun ticker_tape_N : N; -fun ticket_N : N; -fun ticket_V2 : V2; -fun ticket_collector_N : N; -fun ticket_of_leave_N : N; -fun ticking_N : N; -fun tickle_N : N; -fun tickle_V : V; -fun tickle_V2 : V2; -fun tickler_N : N; -fun tickling_A : A; -fun ticklish_A : A; -fun ticktack_N : N; -fun ticktacktoe_N : N; -fun ticktock_N : N; -fun tidal_A : A; -fun tidbit_N : N; -fun tiddler_N : N; -fun tiddley_A : A; -fun tiddlywinks_N : N; -fun tide_N : N; -fun tide_V2 : V2; -fun tideland_N : N; -fun tidemark_N : N; -fun tidewater_N : N; -fun tideway_N : N; -fun tidily_Adv : Adv; -fun tidiness_N : N; -fun tidy_A : A; -fun tidy_N : N; -fun tidy_V : V; -fun tidy_V2 : V2; -fun tidytips_N : N; -fun tie_N : N; -fun tie_V : V; -fun tie_V2 : V2; -fun tie_on_A : A; -fun tie_on_A : A; -fun tie_up_N : N; -fun tiebreaker_N : N; -fun tied_A : A; -fun tied_up_A : A; -fun tier_N : N; -fun tiercel_N : N; -fun tiered_A : A; -fun tiff_N : N; -fun tiger_N : N; -fun tiger_lily_N : N; -fun tiger_striped_A : A; -fun tigerish_A : A; -fun tight_A : A; -fun tight_Adv : Adv; -fun tight_fitting_A : A; -fun tight_knit_A : A; -fun tight_laced_A : A; -fun tight_lipped_A : A; -fun tight_wad_N : N; -fun tighten_V : V; -fun tighten_V2 : V2; -fun tightening_N : N; -fun tightly_Adv : Adv; -fun tightness_N : N; -fun tightrope_N : N; -fun tights_N : N; -fun tiglon_N : N; -fun tigress_N : N; -fun tike_N : N; -fun til_Prep : Prep; -fun tilde_N : N; -fun tile_N : N; -fun tile_V2 : V2; -fun tiled_A : A; -fun tilefish_N : N; -fun tiler_N : N; -fun tiling_N : N; -fun till_N : N; -fun till_Prep : Prep; -fun till_V2 : V2; -fun tillage_N : N; -fun tilled_A : A; -fun tiller_N : N; -fun tilling_N : N; -fun tilt_N : N; -fun tilt_V : V; -fun tilt_V2 : V2; -fun tilter_N : N; -fun tilth_N : N; -fun tiltyard_N : N; -fun timbale_N : N; -fun timber_N : N; -fun timber_framed_A : A; -fun timbered_A : A; -fun timberman_N : N; -fun timbre_N : N; -fun timbrel_N : N; -fun time_N : N; -fun time_V2 : V2; -fun time_ball_N : N; -fun time_ball_N : N; -fun time_bomb_N : N; -fun time_consuming_A : A; -fun time_expired_A : A; -fun time_exposure_N : N; -fun time_fuse_N : N; -fun time_fuse_N : N; -fun time_honored_A : A; -fun time_honoured_A : A; -fun time_lag_N : N; -fun time_limit_N : N; -fun time_out_N : N; -fun time_release_A : A; -fun time_sheet_N : N; -fun time_signal_N : N; -fun time_switch_N : N; -fun time_switch_N : N; -fun timecard_N : N; -fun timed_A : A; -fun timekeeper_N : N; -fun timekeeping_N : N; -fun timeless_A : A; -fun timeline_N : N; -fun timeliness_N : N; -fun timely_A : A; -fun timepiece_N : N; -fun timer_N : N; -fun times_N : N; -fun timesaving_A : A; -fun timeserver_N : N; -fun timeserving_A : A; -fun timetable_N : N; -fun timework_N : N; -fun timid_A : A; -fun timid_N : N; -fun timidity_N : N; -fun timidness_N : N; -fun timing_N : N; -fun timolol_N : N; -fun timorous_A : A; -fun timorously_Adv : Adv; -fun timothy_N : N; -fun timpanist_N : N; -fun timucu_N : N; -fun tin_N : N; -fun tin_V2 : V2; -fun tin_opener_N : N; -fun tin_pan_alley_N : N; -fun tin_plate_N : N; -fun tinamou_N : N; -fun tincture_N : N; -fun tincture_V2 : V2; -fun tinder_N : N; -fun tinderbox_N : N; -fun tine_N : N; -fun tinea_N : N; -fun tined_A : A; -fun tineid_N : N; -fun tineoid_N : N; -fun tinfoil_N : N; -fun ting_N : N; -fun ting_V : V; -fun ting_V2 : V2; -fun tinge_N : N; -fun tinge_V2 : V2; -fun tingle_N : N; -fun tingle_V : V; -fun tinker_N : N; -fun tinker_V : V; -fun tinkerer_N : N; -fun tinkle_N : N; -fun tinkle_V : V; -fun tinkle_V2 : V2; -fun tinkling_A : A; -fun tinning_N : N; -fun tinnitus_N : N; -fun tinny_A : A; -fun tinpot_A : A; -fun tinsel_N : N; -fun tinsel_V2 : V2; -fun tinselly_A : A; -fun tinsmith_N : N; -fun tint_N : N; -fun tint_V2 : V2; -fun tintack_N : N; -fun tinter_N : N; -fun tinting_N : N; -fun tintinnabulation_N : N; -fun tinware_N : N; -fun tiny_A : A; -fun tip_N : N; -fun tip_V : V; -fun tip_V2 : V2; -fun tip_and_run_A : A; -fun tip_off_N : N; -fun tip_off_N : N; -fun tip_top_A : A; -fun tip_top_Adv : Adv; -fun tip_top_Adv : Adv; -fun tip_up_A : A; -fun tip_up_A : A; -fun tipped_A : A; -fun tipper_N : N; -fun tippet_N : N; -fun tipple_N : N; -fun tipple_V : V; -fun tipple_V2 : V2; -fun tippler_N : N; -fun tipstaff_N : N; -fun tipster_N : N; -fun tipsy_A : A; -fun tiptoe_A : A; -fun tiptoe_Adv : Adv; -fun tiptoe_N : N; -fun tiptoe_V : V; -fun tiptoe_V2 : V2; -fun tiptop_N : N; -fun tipu_N : N; -fun tirade_N : N; -fun tiramisu_N : N; -fun tire_N : N; -fun tire_V : V; -fun tire_V2 : V2; -fun tired_A : A; -fun tiredly_Adv : Adv; -fun tiredness_N : N; -fun tireless_A : A; -fun tiresome_A : A; -fun tiring_Adv : Adv; -fun tiro_N : N; -fun tisane_N : N; -fun tisk_V2 : V2; -fun tissue_N : N; -fun tit_N : N; -fun titan_N : N; -fun titanic_A : A; -fun titanium_N : N; -fun titanosaur_N : N; -fun titbit_N : N; -fun titer_N : N; -fun titfer_N : N; -fun tithe_N : N; -fun tithe_barn_N : N; -fun tither_N : N; -fun titi_N : N; -fun titillate_V2 : V2; -fun titillating_A : A; -fun titillation_N : N; -fun titivate_V : V; -fun titivate_V2 : V2; -fun titivation_N : N; -fun titlark_N : N; -fun title_N : N; -fun title_VS : VS; -fun title_deed_N : N; -fun title_page_N : N; -fun title_role_N : N; -fun titled_A : A; -fun titmouse_N : N; -fun titration_N : N; -fun titrator_N : N; -fun titter_N : N; -fun titter_V : V; -fun titter_V2 : V2; -fun titterer_N : N; -fun tittivate_V : V; -fun tittivate_V2 : V2; -fun tittle_N : N; -fun tittle_tattle_N : N; -fun tittle_tattle_V : V; -fun titular_A : A; -fun tiyin_N : N; -fun tizzy_N : N; -fun tnt_N : N; -fun to_Adv : Adv; -fun to_Prep : Prep; -fun to_a_t_Adv : Adv; -fun to_a_man_Adv : Adv; -fun to_advantage_Adv : Adv; -fun to_be_sure_Adv : Adv; -fun to_do_N : N; -fun to_order_Adv : Adv; -fun to_that_effect_Adv : Adv; -fun to_the_hilt_Adv : Adv; -fun toad_N : N; -fun toad_in_the_hole_N : N; -fun toad_in_the_hole_N : N; -fun toadfish_N : N; -fun toadflax_N : N; -fun toadstool_N : N; -fun toady_N : N; -fun toady_V : V; -fun toast_N : N; -fun toast_V : V; -fun toast_V2 : V2; -fun toasted_A : A; -fun toaster_N : N; -fun toasting_N : N; -fun toasting_fork_N : N; -fun toastmaster_N : N; -fun toastrack_N : N; -fun tobacco_N : N; -fun tobacconist_N : N; -fun tobagonian_A : A; -fun tobagonian_N : N; -fun toboggan_N : N; -fun toboggan_V : V; -fun tobogganing_N : N; -fun tobogganist_N : N; -fun tobramycin_N : N; -fun toby_N : N; -fun toby_jug_N : N; -fun tocainide_N : N; -fun toccata_N : N; -fun tocsin_N : N; -fun tod_A : A; -fun tod_N : N; -fun today_Adv : Adv; -fun today_N : N; -fun toddle_V : V; -fun toddle_V2 : V2; -fun toddler_N : N; -fun toddy_N : N; -fun tody_N : N; -fun toe_N : N; -fun toe_V2 : V2; -fun toe_in_N : N; -fun toe_to_toe_Adv : Adv; -fun toea_N : N; -fun toecap_N : N; -fun toed_A : A; -fun toehold_N : N; -fun toeless_A : A; -fun toenail_N : N; -fun toetoe_N : N; -fun toff_N : N; -fun toffee_N : N; -fun toffee_nosed_A : A; -fun tog_V2 : V2; -fun toga_N : N; -fun together_A : A; -fun together_Adv : Adv; -fun togetherness_N : N; -fun togged_A : A; -fun toggle_N : N; -fun togolese_A : A; -fun togolese_N : N; -fun togs_N : N; -fun toil_N : N; -fun toil_V : V; -fun toil_V2 : V2; -fun toil_V2V : V2V; -fun toil_VV : VV; -fun toiler_N : N; -fun toilet_N : N; -fun toilet_paper_N : N; -fun toilet_powder_N : N; -fun toilet_roll_N : N; -fun toilet_table_N : N; -fun toiletry_N : N; -fun toilsome_A : A; -fun tokamak_N : N; -fun tokay_N : N; -fun toke_N : N; -fun token_N : N; -fun tolazamide_N : N; -fun tolazoline_N : N; -fun tolbutamide_N : N; -fun tole_N : N; -fun tolerable_A : A; -fun tolerance_N : N; -fun tolerant_A : A; -fun tolerantly_Adv : Adv; -fun tolerate_V2 : V2; -fun toleration_N : N; -fun toll_N : N; -fun toll_V : V; -fun toll_V2 : V2; -fun toll_free_A : A; -fun tollbar_N : N; -fun tollbooth_N : N; -fun toller_N : N; -fun tollgate_N : N; -fun tollhouse_N : N; -fun tollkeeper_N : N; -fun tolu_N : N; -fun toluene_N : N; -fun tom_N : N; -fun tomahawk_N : N; -fun tomahawk_V2 : V2; -fun tomalley_N : N; -fun tomatillo_N : N; -fun tomato_N : N; -fun tomb_N : N; -fun tombac_N : N; -fun tombola_N : N; -fun tomboy_N : N; -fun tombstone_N : N; -fun tomcat_N : N; -fun tome_N : N; -fun tomentose_A : A; -fun tomentum_N : N; -fun tomfool_N : N; -fun tomfoolery_N : N; -fun tommy_gun_N : N; -fun tommy_rot_N : N; -fun tomograph_N : N; -fun tomorrow_Adv : Adv; -fun tomorrow_N : N; -fun tomtate_N : N; -fun tomtit_N : N; -fun tomtom_N : N; -fun ton_N : N; -fun ton_V : V; -fun tonal_A : A; -fun tonality_N : N; -fun tone_N : N; -fun tone_V : V; -fun tone_V2 : V2; -fun tone_deaf_A : A; -fun tone_deaf_A : A; -fun tone_poem_N : N; -fun toned_A : A; -fun toneless_A : A; -fun tonelessly_Adv : Adv; -fun toner_N : N; -fun tongan_A : A; -fun tongan_N : N; -fun tongs_N : N; -fun tongue_N : N; -fun tongue_in_cheek_A : A; -fun tongue_in_cheek_Adv : Adv; -fun tongue_tied_A : A; -fun tongue_twister_N : N; -fun tongued_A : A; -fun tonguefish_N : N; -fun tongueflower_N : N; -fun tongueless_A : A; -fun tonguelike_A : A; -fun tonic_A : A; -fun tonic_N : N; -fun tonic_sol_fa_N : N; -fun tonicity_N : N; -fun tonight_Adv : Adv; -fun tonight_N : N; -fun tonnage_N : N; -fun tonne_N : N; -fun tonometer_N : N; -fun tonometry_N : N; -fun tons_N : N; -fun tonsil_N : N; -fun tonsillectomy_N : N; -fun tonsillitis_N : N; -fun tonsorial_A : A; -fun tonsure_N : N; -fun tonsure_V2 : V2; -fun tonsured_A : A; -fun tontine_N : N; -fun too_Adv : Adv; -fun tool_N : N; -fun tool_V2 : V2; -fun toolbox_N : N; -fun toolmaker_N : N; -fun toolshed_N : N; -fun toot_N : N; -fun toot_V : V; -fun toot_V2 : V2; -fun tooth_N : N; -fun tooth_and_nail_Adv : Adv; -fun toothache_N : N; -fun toothbrush_N : N; -fun toothed_A : A; -fun toothless_A : A; -fun toothlike_A : A; -fun toothpaste_N : N; -fun toothpick_N : N; -fun toothpowder_N : N; -fun toothsome_A : A; -fun toothy_A : A; -fun tootle_N : N; -fun tootle_V : V; -fun tootle_V2 : V2; -fun top_A : A; -fun top_N : N; -fun top_V2 : V2; -fun top_boot_N : N; -fun top_down_A : A; -fun top_dress_V2 : V2; -fun top_dressing_N : N; -fun top_flight_A : A; -fun top_flight_A : A; -fun top_heavy_A : A; -fun top_heavy_A : A; -fun top_hole_A : A; -fun top_ranking_A : A; -fun top_secret_A : A; -fun top_up_N : N; -fun topaz_N : N; -fun topcoat_N : N; -fun tope_V : V; -fun tope_V2 : V2; -fun toper_N : N; -fun topgallant_A : A; -fun topgallant_N : N; -fun tophus_N : N; -fun topi_N : N; -fun topiary_N : N; -fun topic_N : N; -fun topical_A : A; -fun topicality_N : N; -fun topicalization_N : N; -fun topknot_N : N; -fun topless_A : A; -fun topmast_N : N; -fun topminnow_N : N; -fun topmost_A : A; -fun topnotch_A : A; -fun topognosia_N : N; -fun topographical_A : A; -fun topographically_Adv : Adv; -fun topography_N : N; -fun topolatry_N : N; -fun topological_A : A; -fun topologically_Adv : Adv; -fun topology_N : N; -fun toponymy_N : N; -fun topos_N : N; -fun topped_A : A; -fun topper_N : N; -fun topping_A : A; -fun topping_N : N; -fun topple_V : V; -fun topple_V2 : V2; -fun topsail_N : N; -fun topside_N : N; -fun topsoil_N : N; -fun topspin_N : N; -fun topsy_turvy_A : A; -fun topsy_turvy_Adv : Adv; -fun topsy_turvydom_N : N; -fun toque_N : N; -fun tor_N : N; -fun torch_N : N; -fun torch_V2 : V2; -fun torch_race_N : N; -fun torch_singer_N : N; -fun torchbearer_N : N; -fun torchlight_N : N; -fun toreador_N : N; -fun torero_N : N; -fun torment_N : N; -fun torment_V2 : V2; -fun tormenter_N : N; -fun tormentor_N : N; -fun torn_A : A; -fun tornado_N : N; -fun toroid_N : N; -fun toroidal_A : A; -fun torpedo_N : N; -fun torpedo_V2 : V2; -fun torpedo_boat_N : N; -fun torpedo_tube_N : N; -fun torpid_A : A; -fun torpidity_N : N; -fun torpidness_N : N; -fun torpor_N : N; -fun torque_N : N; -fun torr_N : N; -fun torrent_N : N; -fun torrential_A : A; -fun torrid_A : A; -fun torridity_N : N; -fun torsion_N : N; -fun torso_N : N; -fun tort_N : N; -fun tort_feasor_N : N; -fun torte_N : N; -fun tortellini_N : N; -fun torticollis_N : N; -fun tortilla_N : N; -fun tortious_A : A; -fun tortoise_N : N; -fun tortoiseshell_N : N; -fun tortricid_N : N; -fun tortuosity_N : N; -fun tortuous_A : A; -fun tortuously_Adv : Adv; -fun torture_N : N; -fun torture_V2 : V2; -fun torturer_N : N; -fun torulose_A : A; -fun torus_N : N; -fun tory_N : N; -fun tosh_N : N; -fun toss_N : N; -fun toss_V : V; -fun toss_V2 : V2; -fun toss_up_N : N; -fun tosser_N : N; -fun tossup_N : N; -fun tostada_N : N; -fun tot_N : N; -fun tot_V : V; -fun tot_V2 : V2; -fun total_A : A; -fun total_N : N; -fun total_V : V; -fun total_V2 : V2; -fun totaled_A : A; -fun totalitarian_A : A; -fun totalitarian_N : N; -fun totalitarianism_N : N; -fun totality_N : N; -fun totalizator_N : N; -fun totara_N : N; -fun tote_N : N; -fun tote_V2 : V2; -fun totem_N : N; -fun totem_pole_N : N; -fun totemic_A : A; -fun totemism_N : N; -fun totemist_N : N; -fun totipotency_N : N; -fun totipotent_A : A; -fun totter_V : V; -fun totter_V2 : V2; -fun tottering_A : A; -fun tottery_A : A; -fun toucan_N : N; -fun toucanet_N : N; -fun touch_N : N; -fun touch_V : V; -fun touch_V2 : V2; -fun touch_and_go_A : A; -fun touch_type_V : V; -fun touch_typist_N : N; -fun touchable_A : A; -fun touchback_N : N; -fun touchdown_N : N; -fun touched_A : A; -fun toucher_N : N; -fun touchily_Adv : Adv; -fun touchiness_N : N; -fun touching_A : A; -fun touchline_N : N; -fun touchstone_N : N; -fun touchy_A : A; -fun touchy_feely_A : A; -fun tough_A : A; -fun tough_N : N; -fun tough_minded_A : A; -fun tough_skinned_A : A; -fun toughen_V : V; -fun toughen_V2 : V2; -fun toughie_N : N; -fun toughly_Adv : Adv; -fun toughness_N : N; -fun toupee_N : N; -fun toupeed_A : A; -fun tour_N : N; -fun tour_V : V; -fun tour_V2 : V2; -fun tour_de_force_N : N; -fun touraco_N : N; -fun touring_A : A; -fun touring_N : N; -fun tourism_N : N; -fun tourist_N : N; -fun touristed_A : A; -fun tourmaline_N : N; -fun tournament_N : N; -fun tournedos_N : N; -fun tourney_N : N; -fun tourniquet_N : N; -fun tourtiere_N : N; -fun tousle_V2 : V2; -fun tout_N : N; -fun tout_V : V; -fun tout_V2 : V2; -fun tout_ensemble_Adv : Adv; -fun tout_ensemble_N : N; -fun tovarich_N : N; -fun tow_N : N; -fun tow_V2 : V2; -fun toward_Prep : Prep; -fun towards_Prep : Prep; -fun towel_N : N; -fun towel_V : V; -fun towel_V2 : V2; -fun towel_horse_N : N; -fun towel_rack_N : N; -fun towel_rail_N : N; -fun toweling_N : N; -fun towelling_N : N; -fun tower_N : N; -fun tower_V : V; -fun tower_block_N : N; -fun towering_A : A; -fun towhead_N : N; -fun towhee_N : N; -fun towing_line_N : N; -fun towing_path_N : N; -fun towing_rope_N : N; -fun towline_N : N; -fun town_N : N; -fun town_crier_N : N; -fun town_gas_N : N; -fun townee_N : N; -fun townie_N : N; -fun township_N : N; -fun townsman_N : N; -fun towpath_N : N; -fun towrope_N : N; -fun toxaemia_N : N; -fun toxemia_N : N; -fun toxic_A : A; -fun toxicity_N : N; -fun toxicognath_N : N; -fun toxicological_A : A; -fun toxicologist_N : N; -fun toxicology_N : N; -fun toxin_N : N; -fun toxoplasmosis_N : N; -fun toy_N : N; -fun toy_V : V; -fun toy_manchester_PN : PN; -fun toyon_N : N; -fun toyshop_N : N; -fun tra_la_N : N; -fun trabeated_A : A; -fun trabecula_N : N; -fun trabecular_A : A; -fun trace_N : N; -fun trace_V : V; -fun trace_V2 : V2; -fun traceable_A : A; -fun tracer_N : N; -fun tracery_N : N; -fun trachea_N : N; -fun tracheal_A : A; -fun tracheid_N : N; -fun tracheitis_N : N; -fun tracheobronchitis_N : N; -fun tracheostomy_N : N; -fun trachodon_N : N; -fun trachoma_N : N; -fun tracing_N : N; -fun tracing_paper_N : N; -fun track_N : N; -fun track_V : V; -fun track_V2 : V2; -fun trackball_N : N; -fun tracked_A : A; -fun tracker_N : N; -fun trackless_A : A; -fun tract_N : N; -fun tractability_N : N; -fun tractable_A : A; -fun traction_N : N; -fun traction_engine_N : N; -fun tractive_A : A; -fun tractor_N : N; -fun trad_N : N; -fun trade_N : N; -fun trade_V : V; -fun trade_V2 : V2; -fun trade_in_N : N; -fun trade_in_N : N; -fun trade_last_N : N; -fun trade_union_N : N; -fun trade_unionism_N : N; -fun trade_unionist_N : N; -fun trade_wind_N : N; -fun tradecraft_N : N; -fun trademark_N : N; -fun trademark_V2 : V2; -fun trademarked_A : A; -fun tradeoff_N : N; -fun trader_N : N; -fun trades_union_N : N; -fun tradesman_N : N; -fun tradespeople_N : N; -fun trading_N : N; -fun tradition_N : N; -fun traditional_A : A; -fun traditionalism_N : N; -fun traditionalist_N : N; -fun traditionalistic_A : A; -fun traditionally_Adv : Adv; -fun traduce_V2 : V2; -fun traducer_N : N; -fun traffic_N : N; -fun traffic_V : V; -fun trafficator_N : N; -fun trafficker_N : N; -fun tragacanth_N : N; -fun tragedian_N : N; -fun tragedienne_N : N; -fun tragedy_N : N; -fun tragic_A : A; -fun tragically_Adv : Adv; -fun tragicomedy_N : N; -fun tragicomic_A : A; -fun tragopan_N : N; -fun tragus_N : N; -fun trail_N : N; -fun trail_V : V; -fun trail_V2 : V2; -fun trailblazer_N : N; -fun trailer_N : N; -fun trailing_N : N; -fun train_N : N; -fun train_V : V; -fun train_V2 : V2; -fun train_V2V : V2V; -fun trainband_N : N; -fun trainbandsman_N : N; -fun trainbearer_N : N; -fun trained_A : A; -fun trainee_N : N; -fun traineeship_N : N; -fun trainer_N : N; -fun training_N : N; -fun training_college_N : N; -fun training_ship_N : N; -fun trainload_N : N; -fun trainman_N : N; -fun traipse_V : V; -fun traipse_V2 : V2; -fun trait_N : N; -fun traitor_N : N; -fun traitorous_A : A; -fun traitress_N : N; -fun trajectory_N : N; -fun tram_N : N; -fun tram_V2 : V2; -fun tram_car_N : N; -fun tramcar_N : N; -fun tramline_N : N; -fun trammel_N : N; -fun trammel_V2 : V2; -fun tramontane_A : A; -fun tramontane_N : N; -fun tramp_N : N; -fun tramp_V : V; -fun tramp_V2 : V2; -fun tramp_steamer_N : N; -fun trample_N : N; -fun trample_V : V; -fun trample_V2 : V2; -fun trampler_N : N; -fun trampoline_N : N; -fun tramway_N : N; -fun trance_N : N; -fun trancelike_A : A; -fun tranche_N : N; -fun trandolapril_N : N; -fun tranquil_A : A; -fun tranquility_N : N; -fun tranquilize_V2 : V2; -fun tranquilizer_N : N; -fun tranquillity_N : N; -fun tranquillize_V2 : V2; -fun tranquillizer_N : N; -fun tranquilly_Adv : Adv; -fun transact_V2 : V2; -fun transactinide_A : A; -fun transactinide_N : N; -fun transaction_N : N; -fun transactor_N : N; -fun transalpine_A : A; -fun transalpine_N : N; -fun transaminase_N : N; -fun transamination_N : N; -fun transatlantic_A : A; -fun transcend_V2 : V2; -fun transcendence_N : N; -fun transcendency_N : N; -fun transcendent_A : A; -fun transcendental_A : A; -fun transcendentalism_N : N; -fun transcendentalist_N : N; -fun transcendentally_Adv : Adv; -fun transcontinental_A : A; -fun transcribe_V2 : V2; -fun transcriber_N : N; -fun transcript_N : N; -fun transcriptase_N : N; -fun transcription_N : N; -fun transcultural_A : A; -fun transdermal_A : A; -fun transducer_N : N; -fun transduction_N : N; -fun transept_N : N; -fun transeunt_A : A; -fun transfer_N : N; -fun transfer_V : V; -fun transfer_V2 : V2; -fun transfer_rna_PN : PN; -fun transferability_N : N; -fun transferable_A : A; -fun transferase_N : N; -fun transferee_N : N; -fun transference_N : N; -fun transferer_N : N; -fun transferor_N : N; -fun transferrin_N : N; -fun transfiguration_N : N; -fun transfigure_V2 : V2; -fun transfix_V2 : V2; -fun transform_V : V; -fun transform_V2 : V2; -fun transformable_A : A; -fun transformation_N : N; -fun transformed_A : A; -fun transformer_N : N; -fun transfuse_V2 : V2; -fun transfusion_N : N; -fun transgender_A : A; -fun transgene_N : N; -fun transgress_V : V; -fun transgress_V2 : V2; -fun transgression_N : N; -fun transgressor_N : N; -fun transience_N : N; -fun transiency_N : N; -fun transient_A : A; -fun transient_N : N; -fun transiently_Adv : Adv; -fun transistor_N : N; -fun transistorized_A : A; -fun transit_N : N; -fun transition_N : N; -fun transitional_A : A; -fun transitionally_Adv : Adv; -fun transitive_A : A; -fun transitively_Adv : Adv; -fun transitivity_N : N; -fun transitorily_Adv : Adv; -fun transitory_A : A; -fun translatable_A : A; -fun translate_V : V; -fun translate_V2 : V2; -fun translation_N : N; -fun translational_A : A; -fun translator_N : N; -fun transliterate_V2 : V2; -fun transliteration_N : N; -fun translocation_N : N; -fun translucence_N : N; -fun translucency_N : N; -fun translucent_A : A; -fun translunar_A : A; -fun transmigrante_N : N; -fun transmigration_N : N; -fun transmission_N : N; -fun transmit_V2 : V2; -fun transmittance_N : N; -fun transmitter_N : N; -fun transmogrification_N : N; -fun transmogrify_V2 : V2; -fun transmundane_A : A; -fun transmutable_A : A; -fun transmutation_N : N; -fun transmute_V : V; -fun transmute_V2 : V2; -fun transoceanic_A : A; -fun transom_N : N; -fun transom_window_N : N; -fun transparence_N : N; -fun transparency_N : N; -fun transparent_A : A; -fun transparently_Adv : Adv; -fun transpiration_N : N; -fun transpire_V : V; -fun transpire_V2 : V2; -fun transpiring_A : A; -fun transplacental_A : A; -fun transplant_N : N; -fun transplant_V : V; -fun transplant_V2 : V2; -fun transplantable_A : A; -fun transplantation_N : N; -fun transplanter_N : N; -fun transpolar_A : A; -fun transponder_N : N; -fun transport_N : N; -fun transport_V2 : V2; -fun transportable_A : A; -fun transportation_N : N; -fun transporter_N : N; -fun transposable_A : A; -fun transpose_N : N; -fun transpose_V2 : V2; -fun transposition_N : N; -fun transposon_N : N; -fun transsexual_A : A; -fun transsexual_N : N; -fun transsexualism_N : N; -fun transship_V2 : V2; -fun transshipment_N : N; -fun transubstantiation_N : N; -fun transudate_N : N; -fun transuranic_A : A; -fun transverse_A : A; -fun transversely_Adv : Adv; -fun transvestic_A : A; -fun transvestism_N : N; -fun transvestite_N : N; -fun tranylcypromine_N : N; -fun trap_N : N; -fun trap_V : V; -fun trap_V2 : V2; -fun trap_door_N : N; -fun trap_shooting_N : N; -fun trapeze_N : N; -fun trapezium_N : N; -fun trapezius_N : N; -fun trapezohedron_N : N; -fun trapezoid_N : N; -fun trapezoidal_A : A; -fun trapper_N : N; -fun trappist_N : N; -fun trapshooter_N : N; -fun trash_N : N; -fun trash_V2 : V2; -fun trashy_A : A; -fun trauma_N : N; -fun traumatic_A : A; -fun traumatology_N : N; -fun traumatophobia_N : N; -fun travail_N : N; -fun trave_N : N; -fun travel_N : N; -fun travel_V : V; -fun travel_V2 : V2; -fun travel_soiled_A : A; -fun travel_soiled_A : A; -fun travel_stained_A : A; -fun travel_worn_A : A; -fun travel_worn_A : A; -fun traveled_A : A; -fun traveler_N : N; -fun travelled_A : A; -fun traveller_N : N; -fun travelling_N : N; -fun travelogue_N : N; -fun traversable_A : A; -fun traversal_N : N; -fun traverse_N : N; -fun traverse_V2 : V2; -fun traverser_N : N; -fun travesty_N : N; -fun travesty_V2 : V2; -fun trawl_N : N; -fun trawl_V : V; -fun trawl_V2 : V2; -fun trawl_net_N : N; -fun trawler_N : N; -fun tray_N : N; -fun tray_cloth_N : N; -fun trazodone_N : N; -fun treacherous_A : A; -fun treachery_N : N; -fun treacle_N : N; -fun treacly_A : A; -fun tread_N : N; -fun tread_V : V; -fun tread_V2 : V2; -fun treadle_N : N; -fun treadle_V : V; -fun treadmill_N : N; -fun treas_N : N; -fun treason_N : N; -fun treasonable_A : A; -fun treasonous_A : A; -fun treasure_N : N; -fun treasure_V2 : V2; -fun treasure_house_N : N; -fun treasure_trove_N : N; -fun treasurer_N : N; -fun treasurership_N : N; -fun treasury_N : N; -fun treat_N : N; -fun treat_V : V; -fun treat_V2 : V2; -fun treated_A : A; -fun treatise_N : N; -fun treatment_N : N; -fun treaty_N : N; -fun treble_A : A; -fun treble_N : N; -fun treble_V : V; -fun treble_V2 : V2; -fun tree_N : N; -fun tree_V2 : V2; -fun tree_fern_N : N; -fun treehopper_N : N; -fun treeless_A : A; -fun treelet_N : N; -fun treenail_N : N; -fun trefoil_N : N; -fun trek_N : N; -fun trek_V : V; -fun trek_V2 : V2; -fun trekker_N : N; -fun trellis_N : N; -fun trellis_V2 : V2; -fun tremble_N : N; -fun tremble_V : V; -fun trembles_N : N; -fun tremendous_A : A; -fun tremolite_N : N; -fun tremolo_N : N; -fun tremor_N : N; -fun tremulous_A : A; -fun tremulously_Adv : Adv; -fun trench_N : N; -fun trench_V2 : V2; -fun trenchancy_N : N; -fun trenchant_A : A; -fun trenchantly_Adv : Adv; -fun trencher_N : N; -fun trencherman_N : N; -fun trend_N : N; -fun trend_V : V; -fun trend_setter_N : N; -fun trend_setter_N : N; -fun trend_setting_N : N; -fun trendsetting_A : A; -fun trendy_A : A; -fun trepan_N : N; -fun trepan_V2 : V2; -fun trepang_N : N; -fun trephination_N : N; -fun trephine_N : N; -fun trephine_V2 : V2; -fun trepidation_N : N; -fun treponema_N : N; -fun trespass_N : N; -fun trespass_V : V; -fun trespasser_N : N; -fun tress_N : N; -fun trestle_N : N; -fun trestle_bridge_N : N; -fun trestle_table_N : N; -fun trestlework_N : N; -fun trews_N : N; -fun trey_N : N; -fun tri_chad_N : N; -fun tri_iodothyronine_N : N; -fun triad_N : N; -fun triage_N : N; -fun trial_N : N; -fun trial_and_error_A : A; -fun triamcinolone_N : N; -fun triangle_N : N; -fun triangular_A : A; -fun triangularity_N : N; -fun triangulate_A : A; -fun triangulation_N : N; -fun triazine_N : N; -fun triazolam_N : N; -fun tribadism_N : N; -fun tribadistic_A : A; -fun tribal_A : A; -fun tribalism_N : N; -fun tribalization_N : N; -fun tribe_N : N; -fun tribesman_N : N; -fun tribologist_N : N; -fun tribology_N : N; -fun tribromoethanol_N : N; -fun tribulation_N : N; -fun tribunal_N : N; -fun tribune_N : N; -fun tribuneship_N : N; -fun tributary_A : A; -fun tributary_N : N; -fun tribute_N : N; -fun tributyrin_N : N; -fun trice_N : N; -fun trice_V2 : V2; -fun tricentenary_A : A; -fun triceps_N : N; -fun triceratops_N : N; -fun trichina_N : N; -fun trichinosis_N : N; -fun trichion_N : N; -fun trichloride_N : N; -fun trichlormethiazide_N : N; -fun trichloroethylene_N : N; -fun trichodesmium_N : N; -fun trichomonad_N : N; -fun trichomoniasis_N : N; -fun trichotillomania_N : N; -fun trichotomy_N : N; -fun trichroism_N : N; -fun trichromatic_A : A; -fun trichuriasis_N : N; -fun trick_N : N; -fun trick_V2 : V2; -fun tricked_out_A : A; -fun trickery_N : N; -fun trickiness_N : N; -fun trickle_N : N; -fun trickle_V : V; -fun trickle_V2 : V2; -fun trickster_N : N; -fun tricksy_A : A; -fun tricky_A : A; -fun triclinic_A : A; -fun triclinium_N : N; -fun tricolor_N : N; -fun tricolour_N : N; -fun tricorn_N : N; -fun tricot_N : N; -fun tricuspid_A : A; -fun tricycle_N : N; -fun tricyclic_N : N; -fun trident_N : N; -fun tridymite_N : N; -fun tried_A : A; -fun triennial_A : A; -fun triennial_N : N; -fun trier_N : N; -fun trifid_A : A; -fun trifle_N : N; -fun trifle_V : V; -fun trifle_V2 : V2; -fun trifler_N : N; -fun trifling_A : A; -fun trifoliate_A : A; -fun trifurcation_N : N; -fun trigeminal_N : N; -fun trigger_N : N; -fun trigger_V2 : V2; -fun trigger_happy_A : A; -fun trigger_happy_A : A; -fun triggerfish_N : N; -fun triglyceride_N : N; -fun trigon_N : N; -fun trigonometric_A : A; -fun trigonometrician_N : N; -fun trigonometry_N : N; -fun trigram_N : N; -fun trihydroxy_A : A; -fun triiodothyronine_N : N; -fun trilateral_A : A; -fun trilby_N : N; -fun trilingual_A : A; -fun trill_N : N; -fun trill_V : V; -fun trill_V2 : V2; -fun trillion_A : A; -fun trillion_N : N; -fun trillionth_A : A; -fun trillionth_N : N; -fun trillium_N : N; -fun trilobate_A : A; -fun trilobite_N : N; -fun trilogy_N : N; -fun trim_A : A; -fun trim_N : N; -fun trim_V : V; -fun trim_V2 : V2; -fun trimaran_N : N; -fun trimer_N : N; -fun trimester_N : N; -fun trimipramine_N : N; -fun trimly_Adv : Adv; -fun trimmed_A : A; -fun trimmer_N : N; -fun trimming_N : N; -fun trimotored_A : A; -fun trinidadian_A : A; -fun trinidadian_N : N; -fun trinitrotoluene_N : N; -fun trinity_N : N; -fun trinket_N : N; -fun trinketry_N : N; -fun trinucleate_A : A; -fun trio_N : N; -fun triode_N : N; -fun triolein_N : N; -fun triose_N : N; -fun trioxide_N : N; -fun trip_N : N; -fun trip_V : V; -fun trip_V2 : V2; -fun tripalmitin_N : N; -fun tripartite_A : A; -fun tripe_N : N; -fun triphammer_N : N; -fun triphosphopyridine_N : N; -fun tripinnate_A : A; -fun tripinnatifid_A : A; -fun triple_A : A; -fun triple_N : N; -fun triple_V : V; -fun triple_V2 : V2; -fun triple_crown_A : A; -fun triple_spacing_N : N; -fun triplet_N : N; -fun tripletail_N : N; -fun triplex_A : A; -fun triplicate_A : A; -fun triplicate_N : N; -fun triplicate_V2 : V2; -fun triplicity_N : N; -fun tripling_N : N; -fun triploid_A : A; -fun tripod_N : N; -fun tripos_N : N; -fun tripper_N : N; -fun tripping_A : A; -fun triptych_N : N; -fun triquetral_N : N; -fun trireme_N : N; -fun trisaccharide_N : N; -fun trisect_V2 : V2; -fun triskaidekaphobia_N : N; -fun triskaidekaphobic_A : A; -fun triskelion_N : N; -fun trismus_N : N; -fun trisomy_N : N; -fun tristearin_N : N; -fun trisyllable_N : N; -fun tritanopia_N : N; -fun tritanopic_A : A; -fun trite_A : A; -fun tritely_Adv : Adv; -fun triteness_N : N; -fun tritheism_N : N; -fun tritheist_N : N; -fun tritium_N : N; -fun triton_N : N; -fun triumph_N : N; -fun triumph_V : V; -fun triumphal_A : A; -fun triumphant_A : A; -fun triumphantly_Adv : Adv; -fun triumvir_N : N; -fun triumvirate_N : N; -fun triune_A : A; -fun trivalent_A : A; -fun trivet_N : N; -fun trivial_A : A; -fun triviality_N : N; -fun trivialize_V2 : V2; -fun trivially_Adv : Adv; -fun trivium_N : N; -fun trochaic_A : A; -fun trochanter_N : N; -fun trochee_N : N; -fun trochlear_N : N; -fun troglodyte_N : N; -fun trogon_N : N; -fun troika_N : N; -fun trojan_A : A; -fun trojan_N : N; -fun troll_N : N; -fun troll_V : V; -fun troll_V2 : V2; -fun trolley_N : N; -fun trolley_V2 : V2; -fun trolley_car_N : N; -fun trolleybus_N : N; -fun trollop_N : N; -fun trombiculiasis_N : N; -fun trombiculid_N : N; -fun trombidiid_N : N; -fun trombone_N : N; -fun trombonist_N : N; -fun trompillo_N : N; -fun troop_N : N; -fun troop_V : V; -fun troop_V2 : V2; -fun troop_carrier_N : N; -fun trooper_N : N; -fun troopship_N : N; -fun trope_N : N; -fun trophic_A : A; -fun trophobiosis_N : N; -fun trophoblast_N : N; -fun trophoblastic_A : A; -fun trophotropic_A : A; -fun trophotropism_N : N; -fun trophozoite_N : N; -fun trophy_N : N; -fun tropic_N : N; -fun tropical_A : A; -fun tropically_Adv : Adv; -fun tropism_N : N; -fun troponym_N : N; -fun troponymy_N : N; -fun tropopause_N : N; -fun troposphere_N : N; -fun trot_N : N; -fun trot_V : V; -fun trot_V2 : V2; -fun troth_N : N; -fun trotter_N : N; -fun trou_de_loup_N : N; -fun troubadour_N : N; -fun trouble_N : N; -fun trouble_V : V; -fun trouble_V2 : V2; -fun trouble_free_A : A; -fun troubled_A : A; -fun troublemaker_N : N; -fun troubleshooter_N : N; -fun troublesome_A : A; -fun troublesomeness_N : N; -fun troublous_A : A; -fun trough_N : N; -fun trough_V : V; -fun trounce_V2 : V2; -fun trouncing_N : N; -fun troupe_N : N; -fun trouper_N : N; -fun trouser_N : N; -fun trousseau_N : N; -fun trout_N : N; -fun trove_N : N; -fun trowel_N : N; -fun troy_N : N; -fun truancy_N : N; -fun truant_A : A; -fun truant_N : N; -fun truce_N : N; -fun truck_N : N; -fun truckage_N : N; -fun truckle_N : N; -fun truckle_V : V; -fun truckle_bed_N : N; -fun truckling_N : N; -fun truculence_N : N; -fun truculency_N : N; -fun truculent_A : A; -fun truculently_Adv : Adv; -fun trudge_N : N; -fun trudge_V : V; -fun trudge_V2 : V2; -fun trudger_N : N; -fun true_A : A; -fun true_Adv : Adv; -fun true_N : N; -fun true_V2 : V2; -fun true_blue_A : A; -fun true_blue_A : A; -fun true_blue_N : N; -fun true_false_A : A; -fun true_hearted_A : A; -fun true_to_A : A; -fun true_to_life_A : A; -fun truelove_N : N; -fun trueness_N : N; -fun truffle_N : N; -fun truism_N : N; -fun truly_Adv : Adv; -fun trump_N : N; -fun trump_V : V; -fun trump_V2 : V2; -fun trumped_up_A : A; -fun trumpery_A : A; -fun trumpet_N : N; -fun trumpet_V : V; -fun trumpet_V2 : V2; -fun trumpet_like_A : A; -fun trumpet_shaped_A : A; -fun trumpeter_N : N; -fun trumpetfish_N : N; -fun trumpetwood_N : N; -fun truncate_A : A; -fun truncate_V2 : V2; -fun truncation_N : N; -fun truncheon_N : N; -fun truncheon_V2 : V2; -fun trundle_N : N; -fun trundle_V : V; -fun trundle_V2 : V2; -fun trunk_N : N; -fun trunk_call_N : N; -fun trunk_line_N : N; -fun trunk_road_N : N; -fun trunking_N : N; -fun truss_N : N; -fun truss_V2 : V2; -fun trussed_A : A; -fun trust_N : N; -fun trust_V : V; -fun trust_V2 : V2; -fun trust_V2V : V2V; -fun trust_VS : VS; -fun trustbuster_N : N; -fun trustee_N : N; -fun trusteeship_N : N; -fun trustful_A : A; -fun trustfully_Adv : Adv; -fun trusting_A : A; -fun trustworthiness_N : N; -fun trustworthy_A : A; -fun trusty_A : A; -fun trusty_N : N; -fun truth_N : N; -fun truthful_A : A; -fun truthfully_Adv : Adv; -fun truthfulness_N : N; -fun try_N : N; -fun try_V : V; -fun try_V2 : V2; -fun try_VS : VS; -fun try_VV : VV; -fun try_on_N : N; -fun try_out_N : N; -fun trying_A : A; -fun trypsin_N : N; -fun trypsinogen_N : N; -fun tryptophan_N : N; -fun tryst_N : N; -fun tsar_N : N; -fun tsarina_N : N; -fun tsetse_N : N; -fun tsetse_fly_N : N; -fun tsoris_N : N; -fun tsunami_N : N; -fun tsuris_N : N; -fun tswana_A : A; -fun tswana_N : N; -fun tuatara_N : N; -fun tub_N : N; -fun tub_thumper_N : N; -fun tub_thumper_N : N; -fun tuba_N : N; -fun tubal_A : A; -fun tubby_A : A; -fun tube_N : N; -fun tube_nosed_A : A; -fun tube_well_N : N; -fun tubed_A : A; -fun tubeless_A : A; -fun tubeless_N : N; -fun tuber_N : N; -fun tubercle_N : N; -fun tubercular_A : A; -fun tuberculate_A : A; -fun tuberculin_N : N; -fun tuberculoid_A : A; -fun tuberculosis_N : N; -fun tuberculous_A : A; -fun tuberose_N : N; -fun tuberosity_N : N; -fun tuberous_A : A; -fun tubful_N : N; -fun tubing_N : N; -fun tubocurarine_N : N; -fun tubular_A : A; -fun tubule_N : N; -fun tuc_N : N; -fun tuck_N : N; -fun tuck_V : V; -fun tuck_V2 : V2; -fun tuck_in_N : N; -fun tuck_shop_N : N; -fun tucked_A : A; -fun tucker_N : N; -fun tucker_bag_N : N; -fun tudung_N : N; -fun tuesday_N : N; -fun tufa_N : N; -fun tuff_N : N; -fun tuft_N : N; -fun tufted_A : A; -fun tug_N : N; -fun tug_V : V; -fun tug_V2 : V2; -fun tug_of_war_N : N; -fun tugboat_N : N; -fun tugrik_N : N; -fun tuille_N : N; -fun tuition_N : N; -fun tularemia_N : N; -fun tulip_N : N; -fun tulipwood_N : N; -fun tulle_N : N; -fun tumble_N : N; -fun tumble_V : V; -fun tumble_V2 : V2; -fun tumble_down_A : A; -fun tumble_dryer_N : N; -fun tumblebug_N : N; -fun tumbler_N : N; -fun tumbleweed_N : N; -fun tumbrel_N : N; -fun tumbril_N : N; -fun tumefaction_N : N; -fun tumescence_N : N; -fun tumescent_A : A; -fun tumid_A : A; -fun tumidity_N : N; -fun tummy_N : N; -fun tumor_N : N; -fun tumour_N : N; -fun tumult_N : N; -fun tumultuous_A : A; -fun tumultuously_Adv : Adv; -fun tumulus_N : N; -fun tun_N : N; -fun tuna_N : N; -fun tunaburger_N : N; -fun tundra_N : N; -fun tune_N : N; -fun tune_V : V; -fun tune_V2 : V2; -fun tune_up_N : N; -fun tuneful_A : A; -fun tunefulness_N : N; -fun tuneless_A : A; -fun tunelessly_Adv : Adv; -fun tuner_N : N; -fun tung_oil_N : N; -fun tungstate_N : N; -fun tungsten_N : N; -fun tunic_N : N; -fun tunicate_N : N; -fun tuning_N : N; -fun tuning_fork_N : N; -fun tunisian_A : A; -fun tunisian_N : N; -fun tunnel_N : N; -fun tunnel_V : V; -fun tunnel_V2 : V2; -fun tunny_N : N; -fun tup_N : N; -fun tupelo_N : N; -fun tupik_N : N; -fun tuppence_N : N; -fun tuppenny_A : A; -fun turban_N : N; -fun turbaned_A : A; -fun turbid_A : A; -fun turbidity_N : N; -fun turbidness_N : N; -fun turbinate_A : A; -fun turbine_N : N; -fun turbogenerator_N : N; -fun turbojet_N : N; -fun turboprop_N : N; -fun turbot_N : N; -fun turbulence_N : N; -fun turbulent_A : A; -fun turbulently_Adv : Adv; -fun turd_N : N; -fun tureen_N : N; -fun turf_N : N; -fun turf_V2 : V2; -fun turgid_A : A; -fun turgidity_N : N; -fun turgidly_Adv : Adv; -fun turgor_N : N; -fun turk_N : N; -fun turkey_N : N; -fun turkey_sized_A : A; -fun turkish_A : A; -fun turkish_N : N; -fun turmeric_N : N; -fun turmoil_N : N; -fun turn_N : N; -fun turn_V : V; -fun turn_V2 : V2; -fun turn_VA : VA; -fun turn_VS : VS; -fun turn_off_N : N; -fun turn_on_N : N; -fun turn_on_N : N; -fun turn_out_N : N; -fun turn_round_N : N; -fun turn_up_N : N; -fun turnaround_N : N; -fun turnbuckle_N : N; -fun turncoat_N : N; -fun turncock_N : N; -fun turned_A : A; -fun turned_out_A : A; -fun turner_N : N; -fun turnery_N : N; -fun turning_N : N; -fun turning_point_N : N; -fun turnip_N : N; -fun turnip_shaped_A : A; -fun turnkey_N : N; -fun turnoff_N : N; -fun turnout_N : N; -fun turnover_N : N; -fun turnpike_N : N; -fun turnspit_N : N; -fun turnstile_N : N; -fun turnstone_N : N; -fun turntable_N : N; -fun turnverein_N : N; -fun turpentine_N : N; -fun turpitude_N : N; -fun turps_N : N; -fun turquoise_N : N; -fun turreae_N : N; -fun turret_N : N; -fun turtle_N : N; -fun turtledove_N : N; -fun turtleneck_A : A; -fun turtleneck_N : N; -fun turtlenecked_A : A; -fun turtler_N : N; -fun tushery_N : N; -fun tusk_N : N; -fun tusked_A : A; -fun tusker_N : N; -fun tussah_N : N; -fun tussle_N : N; -fun tussle_V : V; -fun tussock_N : N; -fun tut_V2 : V2; -fun tutee_N : N; -fun tutelage_N : N; -fun tutelary_A : A; -fun tutor_N : N; -fun tutor_V2 : V2; -fun tutorial_A : A; -fun tutorial_N : N; -fun tutorially_Adv : Adv; -fun tutorship_N : N; -fun tutti_frutti_N : N; -fun tutti_frutti_N : N; -fun tutu_N : N; -fun tuxedo_N : N; -fun tuxedoed_A : A; -fun tv_N : N; -fun twaddle_N : N; -fun twaddle_V : V; -fun twaddler_N : N; -fun twain_N : N; -fun twang_N : N; -fun twang_V : V; -fun twang_V2 : V2; -fun twayblade_N : N; -fun tweak_N : N; -fun tweak_V2 : V2; -fun twee_A : A; -fun tweed_N : N; -fun tweediness_N : N; -fun tweedy_A : A; -fun tween_Adv : Adv; -fun tween_decks_Adv : Adv; -fun tweet_N : N; -fun tweet_V : V; -fun tweeter_N : N; -fun twelfth_A : A; -fun twelfth_N : N; -fun twelfth_night_N : N; -fun twelve_A : A; -fun twelve_N : N; -fun twelve_sided_A : A; -fun twelvemonth_N : N; -fun twenties_N : N; -fun twentieth_A : A; -fun twentieth_N : N; -fun twenty_A : A; -fun twenty_N : N; -fun twenty_eight_A : A; -fun twenty_eight_N : N; -fun twenty_eighth_A : A; -fun twenty_fifth_A : A; -fun twenty_first_A : A; -fun twenty_five_A : A; -fun twenty_five_N : N; -fun twenty_four_A : A; -fun twenty_four_N : N; -fun twenty_fourth_A : A; -fun twenty_nine_A : A; -fun twenty_nine_N : N; -fun twenty_ninth_A : A; -fun twenty_one_A : A; -fun twenty_one_N : N; -fun twenty_second_A : A; -fun twenty_seven_A : A; -fun twenty_seven_N : N; -fun twenty_seventh_A : A; -fun twenty_six_A : A; -fun twenty_six_N : N; -fun twenty_sixth_A : A; -fun twenty_third_A : A; -fun twenty_three_A : A; -fun twenty_three_N : N; -fun twenty_twenty_N : N; -fun twenty_two_A : A; -fun twenty_two_N : N; -fun twerp_N : N; -fun twice_Adv : Adv; -fun twiddle_N : N; -fun twiddle_V : V; -fun twiddle_V2 : V2; -fun twiddler_N : N; -fun twiddly_A : A; -fun twig_N : N; -fun twig_V : V; -fun twig_V2 : V2; -fun twiggy_A : A; -fun twilight_N : N; -fun twilit_A : A; -fun twill_N : N; -fun twilled_A : A; -fun twin_N : N; -fun twin_V2 : V2; -fun twin_bedded_A : A; -fun twinberry_N : N; -fun twine_N : N; -fun twine_V : V; -fun twine_V2 : V2; -fun twiner_N : N; -fun twinflower_N : N; -fun twinge_N : N; -fun twinjet_N : N; -fun twinkle_N : N; -fun twinkle_V : V; -fun twinkler_N : N; -fun twinkling_A : A; -fun twinkling_N : N; -fun twinned_A : A; -fun twins_N : N; -fun twirl_N : N; -fun twirl_V : V; -fun twirl_V2 : V2; -fun twirlingly_Adv : Adv; -fun twist_N : N; -fun twist_V : V; -fun twist_V2 : V2; -fun twister_N : N; -fun twisty_A : A; -fun twit_N : N; -fun twit_V2 : V2; -fun twitch_N : N; -fun twitch_V : V; -fun twitch_V2 : V2; -fun twitter_N : N; -fun twitter_V : V; -fun twitter_V2 : V2; -fun twitterer_N : N; -fun twixt_Prep : Prep; -fun two_A : A; -fun two_N : N; -fun two_a_penny_A : A; -fun two_by_four_N : N; -fun two_dimensional_A : A; -fun two_dimensionality_N : N; -fun two_eared_A : A; -fun two_edged_A : A; -fun two_faced_A : A; -fun two_funnelled_A : A; -fun two_handed_A : A; -fun two_handed_A : A; -fun two_hitter_N : N; -fun two_humped_A : A; -fun two_hundred_A : A; -fun two_hundredth_A : A; -fun two_lane_A : A; -fun two_leaved_A : A; -fun two_lobed_A : A; -fun two_needled_A : A; -fun two_piece_A : A; -fun two_piece_N : N; -fun two_piece_N : N; -fun two_ply_A : A; -fun two_ply_A : A; -fun two_pronged_A : A; -fun two_seater_N : N; -fun two_step_N : N; -fun two_step_N : N; -fun two_thirds_N : N; -fun two_timer_N : N; -fun two_timing_A : A; -fun two_toed_A : A; -fun two_way_A : A; -fun two_way_A : A; -fun two_wheel_A : A; -fun two_year_old_A : A; -fun twofer_N : N; -fun twofold_A : A; -fun twofold_Adv : Adv; -fun twopence_N : N; -fun twopenny_A : A; -fun twopenny_halfpenny_A : A; -fun tycoon_N : N; -fun tying_N : N; -fun tyiyn_N : N; -fun tyke_N : N; -fun tympanic_A : A; -fun tympanist_N : N; -fun tympanites_N : N; -fun tympanitic_A : A; -fun tympanitis_N : N; -fun tympanoplasty_N : N; -fun tympanum_N : N; -fun type_N : N; -fun type_V : V; -fun type_V2 : V2; -fun type_ii_diabetes_PN : PN; -fun type_i_diabetes_PN : PN; -fun typecast_V2 : V2; -fun typeface_N : N; -fun typescript_N : N; -fun typesetter_N : N; -fun typewriter_N : N; -fun typewritten_A : A; -fun typhoid_N : N; -fun typhoon_N : N; -fun typhus_N : N; -fun typical_A : A; -fun typicality_N : N; -fun typically_Adv : Adv; -fun typification_N : N; -fun typify_V2 : V2; -fun typing_N : N; -fun typist_N : N; -fun typographer_N : N; -fun typographic_A : A; -fun typographically_Adv : Adv; -fun typography_N : N; -fun typology_N : N; -fun tyramine_N : N; -fun tyrannical_A : A; -fun tyrannicide_N : N; -fun tyrannid_N : N; -fun tyrannize_V : V; -fun tyrannize_V2 : V2; -fun tyrannosaur_N : N; -fun tyrannous_A : A; -fun tyranny_N : N; -fun tyrant_N : N; -fun tyre_N : N; -fun tyro_N : N; -fun tyrocidine_N : N; -fun tyrolean_N : N; -fun tyrosine_N : N; -fun tyrosinemia_N : N; -fun tyrothricin_N : N; -fun tzar_N : N; -fun tzarina_N : N; -fun u_A : A; -fun u_boat_N : N; -fun u_turn_N : N; -fun u_turn_N : N; -fun uakari_N : N; -fun ubiety_N : N; -fun ubiquinone_N : N; -fun ubiquitous_A : A; -fun ubiquity_N : N; -fun udder_N : N; -fun ufo_N : N; -fun ugandan_A : A; -fun ugandan_N : N; -fun uglify_V2 : V2; -fun ugliness_N : N; -fun ugly_A : A; -fun ukase_N : N; -fun uke_N : N; -fun ukulele_N : N; -fun ulalgia_N : N; -fun ulatrophia_N : N; -fun ulcer_N : N; -fun ulcerate_V : V; -fun ulcerate_V2 : V2; -fun ulceration_N : N; -fun ulcerative_A : A; -fun ulcerous_A : A; -fun ulema_N : N; -fun ulemorrhagia_N : N; -fun ulitis_N : N; -fun ullage_N : N; -fun ulna_N : N; -fun ulnar_A : A; -fun ulster_N : N; -fun ulterior_A : A; -fun ulteriority_N : N; -fun ulteriorly_Adv : Adv; -fun ultima_N : N; -fun ultimacy_N : N; -fun ultimate_A : A; -fun ultimate_N : N; -fun ultimately_Adv : Adv; -fun ultimatum_N : N; -fun ultimo_A : A; -fun ultra_vires_A : A; -fun ultra_vires_Adv : Adv; -fun ultracentrifugation_N : N; -fun ultracentrifuge_N : N; -fun ultraconservative_A : A; -fun ultramarine_A : A; -fun ultramarine_N : N; -fun ultramicroscope_N : N; -fun ultramicroscopic_A : A; -fun ultramodern_A : A; -fun ultramontane_A : A; -fun ultramontane_N : N; -fun ultramontanism_N : N; -fun ultrasonic_A : A; -fun ultrasonically_Adv : Adv; -fun ultrasound_N : N; -fun ultraviolet_A : A; -fun ultraviolet_N : N; -fun ululate_V : V; -fun ululate_V2 : V2; -fun ululation_N : N; -fun umbel_N : N; -fun umbellate_A : A; -fun umbellifer_N : N; -fun umbelliferous_A : A; -fun umbelliform_A : A; -fun umber_A : A; -fun umber_N : N; -fun umbilical_A : A; -fun umbilicate_A : A; -fun umbo_N : N; -fun umbra_N : N; -fun umbrage_N : N; -fun umbrella_A : A; -fun umbrella_N : N; -fun umbrella_shaped_A : A; -fun umbrellalike_A : A; -fun umbrellawort_N : N; -fun umlaut_N : N; -fun umpirage_N : N; -fun umpire_N : N; -fun umpire_V : V; -fun umpire_V2 : V2; -fun umpteen_A : A; -fun umpteenth_A : A; -fun un_N : N; -fun un_american_A : A; -fun un_come_at_able_A : A; -fun un_come_at_able_A : A; -fun un_get_at_able_A : A; -fun unabashed_A : A; -fun unabashedly_Adv : Adv; -fun unabated_A : A; -fun unable_A : A; -fun unabridged_A : A; -fun unabused_A : A; -fun unaccented_A : A; -fun unacceptability_N : N; -fun unacceptable_A : A; -fun unacceptably_Adv : Adv; -fun unaccommodating_A : A; -fun unaccompanied_A : A; -fun unaccountable_A : A; -fun unaccountably_Adv : Adv; -fun unaccounted_A : A; -fun unaccredited_A : A; -fun unaccustomed_A : A; -fun unachievable_A : A; -fun unacknowledged_A : A; -fun unacquainted_A : A; -fun unacquisitive_A : A; -fun unactable_A : A; -fun unadaptability_N : N; -fun unadaptable_A : A; -fun unadapted_A : A; -fun unaddicted_A : A; -fun unaddressed_A : A; -fun unadjustable_A : A; -fun unadjusted_A : A; -fun unadoptable_A : A; -fun unadorned_A : A; -fun unadulterated_A : A; -fun unadventurous_A : A; -fun unadvised_A : A; -fun unadvisedly_Adv : Adv; -fun unaerated_A : A; -fun unaffected_A : A; -fun unaffectedness_N : N; -fun unaffecting_A : A; -fun unaffiliated_A : A; -fun unaffixed_A : A; -fun unafraid_A : A; -fun unaged_A : A; -fun unaggressive_A : A; -fun unagitated_A : A; -fun unaided_A : A; -fun unairworthy_A : A; -fun unalarming_A : A; -fun unalert_A : A; -fun unalienable_A : A; -fun unaligned_A : A; -fun unalike_A : A; -fun unalloyed_A : A; -fun unalterability_N : N; -fun unalterable_A : A; -fun unalterably_Adv : Adv; -fun unaltered_A : A; -fun unambiguity_N : N; -fun unambiguous_A : A; -fun unambiguously_Adv : Adv; -fun unambitious_A : A; -fun unambitiously_Adv : Adv; -fun unamended_A : A; -fun unanalyzable_A : A; -fun unanalyzed_A : A; -fun unangry_A : A; -fun unanimated_A : A; -fun unanimity_N : N; -fun unanimous_A : A; -fun unanimously_Adv : Adv; -fun unannounced_A : A; -fun unanswerable_A : A; -fun unanswered_A : A; -fun unanticipated_A : A; -fun unapologetic_A : A; -fun unappareled_A : A; -fun unapparent_A : A; -fun unappealable_A : A; -fun unappealing_A : A; -fun unappealingly_Adv : Adv; -fun unappendaged_A : A; -fun unappetizing_A : A; -fun unappetizingness_N : N; -fun unappreciated_A : A; -fun unappreciative_A : A; -fun unapprehensive_A : A; -fun unapproachability_N : N; -fun unapproachable_A : A; -fun unarguable_A : A; -fun unarguably_Adv : Adv; -fun unargumentative_A : A; -fun unarmed_A : A; -fun unarmored_A : A; -fun unarticulated_A : A; -fun unary_A : A; -fun unascertainable_A : A; -fun unashamed_A : A; -fun unashamedly_Adv : Adv; -fun unasked_A : A; -fun unassailable_A : A; -fun unassertive_A : A; -fun unassertively_Adv : Adv; -fun unassertiveness_N : N; -fun unassigned_A : A; -fun unassisted_A : A; -fun unassuming_A : A; -fun unassumingly_Adv : Adv; -fun unassured_A : A; -fun unasterisked_A : A; -fun unattached_A : A; -fun unattainable_A : A; -fun unattainableness_N : N; -fun unattainably_Adv : Adv; -fun unattended_A : A; -fun unattractive_A : A; -fun unattractively_Adv : Adv; -fun unattractiveness_N : N; -fun unattributable_A : A; -fun unauthorized_A : A; -fun unavailable_A : A; -fun unavailing_A : A; -fun unavenged_A : A; -fun unavoidable_A : A; -fun unavowed_A : A; -fun unawakened_A : A; -fun unaware_A : A; -fun unawares_Adv : Adv; -fun unawed_A : A; -fun unbacked_A : A; -fun unbaffled_A : A; -fun unbalance_V2 : V2; -fun unbalanced_A : A; -fun unbalconied_A : A; -fun unbanded_A : A; -fun unbaptized_A : A; -fun unbar_V2 : V2; -fun unbarred_A : A; -fun unbarreled_A : A; -fun unbearable_A : A; -fun unbearably_Adv : Adv; -fun unbeatable_A : A; -fun unbeaten_A : A; -fun unbecoming_A : A; -fun unbecomingness_N : N; -fun unbefitting_A : A; -fun unbeholden_A : A; -fun unbeknown_A : A; -fun unbeknown_Adv : Adv; -fun unbeknownst_A : A; -fun unbeknownst_Adv : Adv; -fun unbelief_N : N; -fun unbelievable_A : A; -fun unbelievably_Adv : Adv; -fun unbeliever_N : N; -fun unbelieving_A : A; -fun unbeloved_A : A; -fun unbelted_A : A; -fun unbend_V : V; -fun unbend_V2 : V2; -fun unbending_A : A; -fun unbeneficed_A : A; -fun unbent_A : A; -fun unbiased_A : A; -fun unbiassed_A : A; -fun unbidden_A : A; -fun unbigoted_A : A; -fun unbind_V2 : V2; -fun unbitter_A : A; -fun unbleached_A : A; -fun unblemished_A : A; -fun unblended_A : A; -fun unblessed_A : A; -fun unblinking_A : A; -fun unblinkingly_Adv : Adv; -fun unblock_V2 : V2; -fun unblushing_A : A; -fun unblushingly_Adv : Adv; -fun unbodied_A : A; -fun unbolt_V : V; -fun unbolt_V2 : V2; -fun unbooked_A : A; -fun unbordered_A : A; -fun unborn_A : A; -fun unbosom_V2 : V2; -fun unbound_A : A; -fun unbounded_A : A; -fun unbowed_A : A; -fun unbraced_A : A; -fun unbrainwashed_A : A; -fun unbranched_A : A; -fun unbranded_A : A; -fun unbreakable_A : A; -fun unbreakableness_N : N; -fun unbridgeable_A : A; -fun unbridled_A : A; -fun unbroken_A : A; -fun unbrushed_A : A; -fun unbuckle_V2 : V2; -fun unburden_V2 : V2; -fun unburdened_A : A; -fun unburied_A : A; -fun unburnished_A : A; -fun unbutton_V2 : V2; -fun unbuttoned_A : A; -fun uncalled_for_A : A; -fun uncalled_for_A : A; -fun uncamphorated_A : A; -fun uncannily_Adv : Adv; -fun uncanny_A : A; -fun uncapped_A : A; -fun uncared_for_A : A; -fun uncared_for_A : A; -fun uncarpeted_A : A; -fun uncarved_A : A; -fun uncastrated_A : A; -fun uncategorized_A : A; -fun uncaulked_A : A; -fun unceasing_A : A; -fun uncensored_A : A; -fun unceremonious_A : A; -fun unceremoniously_Adv : Adv; -fun unceremoniousness_N : N; -fun uncertain_A : A; -fun uncertainly_Adv : Adv; -fun uncertainty_N : N; -fun uncertified_A : A; -fun unchain_V2 : V2; -fun unchained_A : A; -fun unchallengeable_A : A; -fun unchallenged_A : A; -fun unchangeable_A : A; -fun unchanged_A : A; -fun unchanging_A : A; -fun uncharacteristic_A : A; -fun uncharacteristically_Adv : Adv; -fun uncharged_A : A; -fun uncharitable_A : A; -fun uncharted_A : A; -fun unchartered_A : A; -fun unchaste_A : A; -fun uncheckable_A : A; -fun unchecked_A : A; -fun uncheerfulness_N : N; -fun unchivalrously_Adv : Adv; -fun unchristian_A : A; -fun unchristianly_A : A; -fun uncial_A : A; -fun uncial_N : N; -fun uncivil_A : A; -fun uncivilized_A : A; -fun uncivilly_Adv : Adv; -fun unclaimed_A : A; -fun unclamp_V2 : V2; -fun unclasp_V2 : V2; -fun unclassifiable_A : A; -fun unclassified_A : A; -fun uncle_N : N; -fun unclean_A : A; -fun uncleanliness_N : N; -fun uncleanly_A : A; -fun unclear_A : A; -fun uncleared_A : A; -fun unclearly_Adv : Adv; -fun unclearness_N : N; -fun unclip_V2 : V2; -fun unclipped_A : A; -fun unclogged_A : A; -fun unclothed_A : A; -fun unclouded_A : A; -fun uncluttered_A : A; -fun unco_A : A; -fun unco_Adv : Adv; -fun unco_operative_A : A; -fun unco_ordinated_A : A; -fun uncoated_A : A; -fun uncoerced_A : A; -fun uncoil_V : V; -fun uncoil_V2 : V2; -fun uncoiled_A : A; -fun uncollected_A : A; -fun uncolored_A : A; -fun uncoloured_A : A; -fun uncombable_A : A; -fun uncombed_A : A; -fun uncombined_A : A; -fun uncomfortable_A : A; -fun uncomfortably_Adv : Adv; -fun uncommercial_A : A; -fun uncommercialized_A : A; -fun uncommitted_A : A; -fun uncommon_A : A; -fun uncommonly_Adv : Adv; -fun uncommonness_N : N; -fun uncommunicative_A : A; -fun uncommunicativeness_N : N; -fun uncompartmented_A : A; -fun uncompassionate_A : A; -fun uncompensated_A : A; -fun uncompetitive_A : A; -fun uncomplaining_A : A; -fun uncomplainingly_Adv : Adv; -fun uncompleted_A : A; -fun uncomplicated_A : A; -fun uncomplimentary_A : A; -fun uncompounded_A : A; -fun uncomprehended_A : A; -fun uncomprehending_A : A; -fun uncompromising_A : A; -fun uncompromisingly_Adv : Adv; -fun unconcealed_A : A; -fun unconcern_N : N; -fun unconcerned_A : A; -fun unconcernedly_Adv : Adv; -fun unconditional_A : A; -fun unconditionally_Adv : Adv; -fun unconditioned_A : A; -fun unconfessed_A : A; -fun unconfessed_N : N; -fun unconfined_A : A; -fun unconfirmed_A : A; -fun unconformable_A : A; -fun uncongenial_A : A; -fun uncongeniality_N : N; -fun unconnected_A : A; -fun unconnectedness_N : N; -fun unconquerable_A : A; -fun unconquered_A : A; -fun unconscientious_A : A; -fun unconscientiousness_N : N; -fun unconscionable_A : A; -fun unconscious_A : A; -fun unconscious_N : N; -fun unconsciously_Adv : Adv; -fun unconsciousness_N : N; -fun unconsidered_A : A; -fun unconsolidated_A : A; -fun unconstipated_A : A; -fun unconstitutional_A : A; -fun unconstitutionally_Adv : Adv; -fun unconstrained_A : A; -fun unconstricted_A : A; -fun unconstructive_A : A; -fun unconsumed_A : A; -fun unconsummated_A : A; -fun uncontaminated_A : A; -fun uncontested_A : A; -fun uncontrollable_A : A; -fun uncontrollably_Adv : Adv; -fun uncontrolled_A : A; -fun uncontroversial_A : A; -fun uncontroversially_Adv : Adv; -fun unconventional_A : A; -fun unconventionality_N : N; -fun unconventionally_Adv : Adv; -fun unconverted_A : A; -fun unconvinced_A : A; -fun unconvincing_A : A; -fun unconvincingly_Adv : Adv; -fun uncooked_A : A; -fun uncool_A : A; -fun uncooperative_A : A; -fun uncoordinated_A : A; -fun uncordial_A : A; -fun uncork_V2 : V2; -fun uncorrected_A : A; -fun uncorrelated_A : A; -fun uncorroborated_A : A; -fun uncorrupted_A : A; -fun uncouple_V2 : V2; -fun uncoupled_A : A; -fun uncousinly_A : A; -fun uncouth_A : A; -fun uncouthly_Adv : Adv; -fun uncouthness_N : N; -fun uncover_V2 : V2; -fun uncrannied_A : A; -fun uncreative_A : A; -fun uncreativeness_N : N; -fun uncritical_A : A; -fun uncritically_Adv : Adv; -fun uncropped_A : A; -fun uncross_V2 : V2; -fun uncrossed_A : A; -fun uncrowded_A : A; -fun uncrowned_A : A; -fun uncrystallized_A : A; -fun unction_N : N; -fun unctuous_A : A; -fun unctuously_Adv : Adv; -fun uncultivable_A : A; -fun uncultivated_A : A; -fun uncultured_A : A; -fun uncured_A : A; -fun uncurl_V : V; -fun uncurl_V2 : V2; -fun uncurled_A : A; -fun uncurved_A : A; -fun uncus_N : N; -fun uncut_A : A; -fun undamaged_A : A; -fun undatable_A : A; -fun undated_A : A; -fun undaunted_A : A; -fun undecagon_N : N; -fun undeceive_V2 : V2; -fun undecided_A : A; -fun undeciphered_A : A; -fun undeclared_A : A; -fun undedicated_A : A; -fun undefeated_A : A; -fun undefended_A : A; -fun undeferential_A : A; -fun undefinable_A : A; -fun undefined_A : A; -fun undelineated_A : A; -fun undemanding_A : A; -fun undemocratic_A : A; -fun undemocratically_Adv : Adv; -fun undemonstrative_A : A; -fun undeniable_A : A; -fun undeniably_Adv : Adv; -fun undenominational_A : A; -fun undependability_N : N; -fun undependable_A : A; -fun undepicted_A : A; -fun under_A : A; -fun under_Adv : Adv; -fun under_Prep : Prep; -fun under_arms_Adv : Adv; -fun under_attack_A : A; -fun under_the_circumstances_Adv : Adv; -fun under_the_counter_A : A; -fun under_the_counter_A : A; -fun under_way_Adv : Adv; -fun under_wraps_A : A; -fun underachievement_N : N; -fun underachiever_N : N; -fun underact_V : V; -fun underact_V2 : V2; -fun underage_A : A; -fun underarm_A : A; -fun underarm_Adv : Adv; -fun underbelly_N : N; -fun underbid_V2 : V2; -fun underboss_N : N; -fun underbred_A : A; -fun underbrush_N : N; -fun undercarriage_N : N; -fun undercharge_N : N; -fun undercharge_V2 : V2; -fun underclass_A : A; -fun underclothing_N : N; -fun undercoat_N : N; -fun undercoated_A : A; -fun undercover_A : A; -fun undercurrent_N : N; -fun undercut_N : N; -fun undercut_V2 : V2; -fun underdeveloped_A : A; -fun underdevelopment_N : N; -fun underdog_N : N; -fun underdone_A : A; -fun underdressed_A : A; -fun undereducated_A : A; -fun underemployed_A : A; -fun underestimate_N : N; -fun underestimate_V2 : V2; -fun underestimation_N : N; -fun underevaluation_N : N; -fun underexpose_V2 : V2; -fun underexposure_N : N; -fun underfed_A : A; -fun underfelt_N : N; -fun underfloor_A : A; -fun underfoot_Adv : Adv; -fun underfund_V2 : V2; -fun undergarment_N : N; -fun undergo_V2 : V2; -fun undergraduate_N : N; -fun underground_A : A; -fun underground_Adv : Adv; -fun underground_N : N; -fun undergrowth_N : N; -fun underhand_A : A; -fun underhand_Adv : Adv; -fun underhanded_A : A; -fun underhandedly_Adv : Adv; -fun underhung_A : A; -fun underivative_A : A; -fun underived_A : A; -fun underlay_N : N; -fun underlie_V2 : V2; -fun underline_N : N; -fun underline_V2 : V2; -fun underling_N : N; -fun underlip_N : N; -fun underlying_A : A; -fun undermanned_A : A; -fun undermentioned_A : A; -fun undermine_V2 : V2; -fun underneath_Adv : Adv; -fun underneath_Prep : Prep; -fun undernourished_A : A; -fun undernourishment_N : N; -fun underpants_N : N; -fun underpart_N : N; -fun underpass_N : N; -fun underpay_V2 : V2; -fun underpayment_N : N; -fun underperform_V2 : V2; -fun underperformer_N : N; -fun underpin_V2 : V2; -fun underpopulated_A : A; -fun underprivileged_A : A; -fun underproduction_N : N; -fun underquote_V2 : V2; -fun underrate_V2 : V2; -fun underscore_N : N; -fun underscore_V2 : V2; -fun undersea_A : A; -fun underseal_N : N; -fun undersealed_A : A; -fun undersecretary_N : N; -fun undersell_V2 : V2; -fun underseller_N : N; -fun undersexed_A : A; -fun undershoot_V2 : V2; -fun undershrub_N : N; -fun underside_N : N; -fun undersign_V2 : V2; -fun undersize_A : A; -fun undersized_A : A; -fun underskirt_N : N; -fun underslung_A : A; -fun underspend_V : V; -fun underspend_V2 : V2; -fun underspent_A : A; -fun understaffed_A : A; -fun understand_V : V; -fun understand_V2 : V2; -fun understand_V2V : V2V; -fun understand_VS : VS; -fun understandable_A : A; -fun understanding_A : A; -fun understanding_N : N; -fun understandingly_Adv : Adv; -fun understate_V2 : V2; -fun understated_A : A; -fun understatement_N : N; -fun understock_V2 : V2; -fun understood_A : A; -fun understudy_N : N; -fun understudy_V2 : V2; -fun undersurface_N : N; -fun undertake_V2 : V2; -fun undertaker_N : N; -fun undertaking_N : N; -fun undertide_N : N; -fun undertone_N : N; -fun undertow_N : N; -fun undervaluation_N : N; -fun undervalue_V2 : V2; -fun underwater_A : A; -fun underwear_N : N; -fun underweight_A : A; -fun underwhelm_V2 : V2; -fun underwing_N : N; -fun underworld_N : N; -fun underwrite_V : V; -fun underwrite_V2 : V2; -fun underwriter_N : N; -fun undescended_A : A; -fun undescriptive_A : A; -fun undeserved_A : A; -fun undeservedly_Adv : Adv; -fun undeserving_A : A; -fun undesigned_A : A; -fun undesirability_N : N; -fun undesirable_A : A; -fun undesirable_N : N; -fun undesirably_Adv : Adv; -fun undesired_A : A; -fun undesirous_A : A; -fun undestroyable_A : A; -fun undetectable_A : A; -fun undetected_A : A; -fun undetermined_A : A; -fun undeterred_A : A; -fun undeveloped_A : A; -fun undeviating_A : A; -fun undiagnosable_A : A; -fun undiagnosed_A : A; -fun undies_N : N; -fun undifferentiated_A : A; -fun undigested_A : A; -fun undignified_A : A; -fun undiluted_A : A; -fun undiminished_A : A; -fun undimmed_A : A; -fun undine_N : N; -fun undiplomatic_A : A; -fun undiplomatically_Adv : Adv; -fun undiscerning_A : A; -fun undischarged_A : A; -fun undisciplined_A : A; -fun undisclosed_A : A; -fun undiscovered_A : A; -fun undiscriminating_A : A; -fun undisguised_A : A; -fun undismayed_A : A; -fun undisputed_A : A; -fun undissolved_A : A; -fun undistinguishable_A : A; -fun undistinguished_A : A; -fun undistorted_A : A; -fun undistributed_A : A; -fun undisturbed_A : A; -fun undiversified_A : A; -fun undividable_A : A; -fun undivided_A : A; -fun undo_V2 : V2; -fun undock_V : V; -fun undock_V2 : V2; -fun undocumented_A : A; -fun undoer_N : N; -fun undogmatic_A : A; -fun undoing_N : N; -fun undomestic_A : A; -fun undomesticated_A : A; -fun undone_A : A; -fun undoubted_A : A; -fun undoubtedly_Adv : Adv; -fun undrained_A : A; -fun undramatic_A : A; -fun undramatically_Adv : Adv; -fun undraped_A : A; -fun undrawn_A : A; -fun undreamed_A : A; -fun undreamed_of_A : A; -fun undreamt_A : A; -fun undress_N : N; -fun undress_V : V; -fun undress_V2 : V2; -fun undressed_A : A; -fun undried_A : A; -fun undrinkable_A : A; -fun undue_A : A; -fun undulate_A : A; -fun undulate_V : V; -fun undulation_N : N; -fun undulatory_A : A; -fun unduly_Adv : Adv; -fun undutifulness_N : N; -fun undying_A : A; -fun undynamic_A : A; -fun uneager_A : A; -fun unearned_A : A; -fun unearth_V2 : V2; -fun unearthly_A : A; -fun unease_N : N; -fun uneasiness_N : N; -fun uneasy_A : A; -fun uneatable_A : A; -fun uneaten_A : A; -fun uneconomic_A : A; -fun uneconomical_A : A; -fun unedifying_A : A; -fun unedited_A : A; -fun uneducated_A : A; -fun uneffective_A : A; -fun unelaborated_A : A; -fun unemotional_A : A; -fun unemotionality_N : N; -fun unemotionally_Adv : Adv; -fun unemphatic_A : A; -fun unemployable_A : A; -fun unemployed_A : A; -fun unemployment_N : N; -fun unenclosed_A : A; -fun unencouraging_A : A; -fun unencumbered_A : A; -fun unended_A : A; -fun unending_A : A; -fun unendowed_A : A; -fun unendurable_A : A; -fun unenforceable_A : A; -fun unenforced_A : A; -fun unengaged_A : A; -fun unenlightened_A : A; -fun unenlightening_A : A; -fun unenlightenment_N : N; -fun unenlivened_A : A; -fun unenterprising_A : A; -fun unenthusiastic_A : A; -fun unenthusiastically_Adv : Adv; -fun unentitled_A : A; -fun unenviable_A : A; -fun unequal_A : A; -fun unequalized_A : A; -fun unequalled_A : A; -fun unequipped_A : A; -fun unequivocal_A : A; -fun unerect_A : A; -fun unerring_A : A; -fun unerringly_Adv : Adv; -fun unestablished_A : A; -fun unethical_A : A; -fun unethically_Adv : Adv; -fun uneven_A : A; -fun unevenly_Adv : Adv; -fun unevenness_N : N; -fun uneventful_A : A; -fun uneventfully_Adv : Adv; -fun unexacting_A : A; -fun unexampled_A : A; -fun unexceeded_A : A; -fun unexcelled_A : A; -fun unexceptionable_A : A; -fun unexceptional_A : A; -fun unexchangeability_N : N; -fun unexchangeable_A : A; -fun unexcitable_A : A; -fun unexcited_A : A; -fun unexciting_A : A; -fun unexcitingly_Adv : Adv; -fun unexclusive_A : A; -fun unexcused_A : A; -fun unexhausted_A : A; -fun unexpansive_A : A; -fun unexpected_A : A; -fun unexpectedly_Adv : Adv; -fun unexpectedness_N : N; -fun unexpendable_A : A; -fun unexpired_A : A; -fun unexplained_A : A; -fun unexploited_A : A; -fun unexplored_A : A; -fun unexportable_A : A; -fun unexposed_A : A; -fun unexpressed_A : A; -fun unexpurgated_A : A; -fun unextended_A : A; -fun unfaceted_A : A; -fun unfailing_A : A; -fun unfailingly_Adv : Adv; -fun unfair_A : A; -fun unfairly_Adv : Adv; -fun unfairness_N : N; -fun unfaithful_A : A; -fun unfaithfully_Adv : Adv; -fun unfaithfulness_N : N; -fun unfaltering_A : A; -fun unfamiliar_A : A; -fun unfamiliarity_N : N; -fun unfashionable_A : A; -fun unfashionably_Adv : Adv; -fun unfasten_V : V; -fun unfasten_V2 : V2; -fun unfastened_A : A; -fun unfastidious_A : A; -fun unfathomable_A : A; -fun unfathomed_A : A; -fun unfattened_A : A; -fun unfavorable_A : A; -fun unfavorableness_N : N; -fun unfavorably_Adv : Adv; -fun unfavourable_A : A; -fun unfaze_V2 : V2; -fun unfeathered_A : A; -fun unfed_A : A; -fun unfeeling_A : A; -fun unfeelingly_Adv : Adv; -fun unfeelingness_N : N; -fun unfeigned_A : A; -fun unfeminine_A : A; -fun unfenced_A : A; -fun unfermented_A : A; -fun unfertilized_A : A; -fun unfettered_A : A; -fun unfilled_A : A; -fun unfilmed_A : A; -fun unfinished_A : A; -fun unfirm_A : A; -fun unfit_A : A; -fun unfit_V2 : V2; -fun unfitness_N : N; -fun unfix_V2 : V2; -fun unfixed_A : A; -fun unflagging_A : A; -fun unflappable_A : A; -fun unflattering_A : A; -fun unflavored_A : A; -fun unfledged_A : A; -fun unflinching_A : A; -fun unflurried_A : A; -fun unfocused_A : A; -fun unfold_V : V; -fun unfold_V2 : V2; -fun unfolding_N : N; -fun unforbearing_A : A; -fun unforced_A : A; -fun unforeseeable_A : A; -fun unforeseen_A : A; -fun unforested_A : A; -fun unforethoughtful_A : A; -fun unforfeitable_A : A; -fun unforgettable_A : A; -fun unforgivable_A : A; -fun unforgiving_A : A; -fun unforgivingly_Adv : Adv; -fun unformed_A : A; -fun unforthcoming_A : A; -fun unfortunate_A : A; -fun unfortunate_N : N; -fun unfortunately_Adv : Adv; -fun unfounded_A : A; -fun unframed_A : A; -fun unfree_A : A; -fun unfrequented_A : A; -fun unfretted_A : A; -fun unfriendliness_N : N; -fun unfriendly_A : A; -fun unfrightened_A : A; -fun unfrock_V2 : V2; -fun unfrosted_A : A; -fun unfrozen_A : A; -fun unfruitful_A : A; -fun unfueled_A : A; -fun unfulfilled_A : A; -fun unfunctional_A : A; -fun unfunded_A : A; -fun unfunny_A : A; -fun unfurl_V : V; -fun unfurl_V2 : V2; -fun unfurnished_A : A; -fun unfurrowed_A : A; -fun ungainly_A : A; -fun ungeared_A : A; -fun ungenerous_A : A; -fun ungentle_A : A; -fun ungentlemanly_A : A; -fun unglazed_A : A; -fun unglue_V2 : V2; -fun ungodliness_N : N; -fun ungodly_A : A; -fun ungovernable_A : A; -fun ungraceful_A : A; -fun ungracious_A : A; -fun ungraciously_Adv : Adv; -fun ungraciousness_N : N; -fun ungraded_A : A; -fun ungrammatical_A : A; -fun ungrammatically_Adv : Adv; -fun ungrasped_A : A; -fun ungrateful_A : A; -fun ungratefully_Adv : Adv; -fun ungratefulness_N : N; -fun ungregarious_A : A; -fun ungroomed_A : A; -fun ungrudging_A : A; -fun ungrudgingly_Adv : Adv; -fun ungual_A : A; -fun unguaranteed_A : A; -fun unguarded_A : A; -fun unguent_N : N; -fun unguiculate_A : A; -fun unguiculate_N : N; -fun unguided_A : A; -fun ungulate_A : A; -fun ungulate_N : N; -fun ungummed_A : A; -fun ungusseted_A : A; -fun unhallowed_A : A; -fun unhampered_A : A; -fun unhand_V2 : V2; -fun unhappily_Adv : Adv; -fun unhappiness_N : N; -fun unhappy_A : A; -fun unharmed_A : A; -fun unhatched_A : A; -fun unheaded_A : A; -fun unhealed_A : A; -fun unhealthful_A : A; -fun unhealthfulness_N : N; -fun unhealthy_A : A; -fun unheard_A : A; -fun unheard_of_A : A; -fun unheard_of_A : A; -fun unhearing_A : A; -fun unheated_A : A; -fun unheeded_A : A; -fun unhelpful_A : A; -fun unhelpfully_Adv : Adv; -fun unhelpfulness_N : N; -fun unheralded_A : A; -fun unhesitating_A : A; -fun unhesitatingly_Adv : Adv; -fun unhewn_A : A; -fun unhindered_A : A; -fun unhinge_V2 : V2; -fun unhitch_V : V; -fun unhitch_V2 : V2; -fun unholiness_N : N; -fun unholy_A : A; -fun unhomogenized_A : A; -fun unhook_V2 : V2; -fun unhoped_A : A; -fun unhoped_for_A : A; -fun unhorse_V2 : V2; -fun unhurried_A : A; -fun unhurriedly_Adv : Adv; -fun unhurt_A : A; -fun unhygienic_A : A; -fun unhygienically_Adv : Adv; -fun unicameral_A : A; -fun unicellular_A : A; -fun unicorn_N : N; -fun unicuspid_A : A; -fun unicycle_N : N; -fun unicyclist_N : N; -fun unidentifiable_A : A; -fun unidentified_A : A; -fun unidimensional_A : A; -fun unidirectional_A : A; -fun unifacial_A : A; -fun unification_N : N; -fun unifilar_A : A; -fun unifoliate_A : A; -fun uniform_A : A; -fun uniform_N : N; -fun uniformed_A : A; -fun uniformity_N : N; -fun uniformly_Adv : Adv; -fun unify_V2 : V2; -fun unilateral_A : A; -fun unilateralism_N : N; -fun unilateralist_A : A; -fun unilateralist_N : N; -fun unilaterally_Adv : Adv; -fun unimaginable_A : A; -fun unimaginably_Adv : Adv; -fun unimaginative_A : A; -fun unimaginatively_Adv : Adv; -fun unimodal_A : A; -fun unimpaired_A : A; -fun unimpassioned_A : A; -fun unimpeachable_A : A; -fun unimpeded_A : A; -fun unimportance_N : N; -fun unimportant_A : A; -fun unimposing_A : A; -fun unimpressed_A : A; -fun unimpressionable_A : A; -fun unimpressive_A : A; -fun unimpressively_Adv : Adv; -fun unimproved_A : A; -fun unincorporated_A : A; -fun unindustrialized_A : A; -fun uninebriated_A : A; -fun uninfected_A : A; -fun uninflected_A : A; -fun uninfluenced_A : A; -fun uninfluential_A : A; -fun uninformative_A : A; -fun uninformatively_Adv : Adv; -fun uninformed_A : A; -fun uninhabitable_A : A; -fun uninhabited_A : A; -fun uninhibited_A : A; -fun uninitiate_A : A; -fun uninitiate_N : N; -fun uninitiated_A : A; -fun uninjectable_A : A; -fun uninjured_A : A; -fun uninominal_A : A; -fun uninquiring_A : A; -fun uninspired_A : A; -fun uninspiring_A : A; -fun uninstructed_A : A; -fun uninstructive_A : A; -fun uninsurability_N : N; -fun uninsurable_A : A; -fun uninsured_A : A; -fun unintelligent_A : A; -fun unintelligently_Adv : Adv; -fun unintelligibility_N : N; -fun unintelligible_A : A; -fun unintelligibly_Adv : Adv; -fun unintended_A : A; -fun unintentional_A : A; -fun unintentionally_Adv : Adv; -fun uninterested_A : A; -fun uninteresting_A : A; -fun uninterestingly_Adv : Adv; -fun uninterestingness_N : N; -fun uninterrupted_A : A; -fun uninterruptedly_Adv : Adv; -fun unintrusive_A : A; -fun uninucleate_A : A; -fun uninvited_A : A; -fun uninvitedly_Adv : Adv; -fun uninviting_A : A; -fun uninvolved_A : A; -fun union_A : A; -fun union_N : N; -fun unionism_N : N; -fun unionist_N : N; -fun unionization_N : N; -fun uniovular_A : A; -fun uniparous_A : A; -fun unipolar_A : A; -fun unique_A : A; -fun uniquely_Adv : Adv; -fun uniqueness_N : N; -fun unironed_A : A; -fun unisex_A : A; -fun unisexual_A : A; -fun unison_N : N; -fun unit_N : N; -fun unit_V2V : V2V; -fun unitarian_A : A; -fun unitarian_N : N; -fun unitarianism_N : N; -fun unitary_A : A; -fun unite_V : V; -fun unite_V2 : V2; -fun united_A : A; -fun unitization_N : N; -fun unity_N : N; -fun univalent_A : A; -fun univalve_A : A; -fun universal_A : A; -fun universal_N : N; -fun universalism_N : N; -fun universalistic_A : A; -fun universality_N : N; -fun universally_Adv : Adv; -fun universe_N : N; -fun university_N : N; -fun unjointed_A : A; -fun unjust_A : A; -fun unjustifiable_A : A; -fun unjustifiably_Adv : Adv; -fun unjustified_A : A; -fun unjustly_Adv : Adv; -fun unkempt_A : A; -fun unkind_A : A; -fun unkindled_A : A; -fun unkindly_A : A; -fun unkindly_Adv : Adv; -fun unkindness_N : N; -fun unkissed_A : A; -fun unknowable_A : A; -fun unknowing_A : A; -fun unknowingness_N : N; -fun unknown_A : A; -fun unknown_N : N; -fun unlabeled_A : A; -fun unlabelled_A : A; -fun unlace_V2 : V2; -fun unlaced_A : A; -fun unladylike_A : A; -fun unlamented_A : A; -fun unlatch_V2 : V2; -fun unlatched_A : A; -fun unlaureled_A : A; -fun unlawful_A : A; -fun unlawfully_Adv : Adv; -fun unlawfulness_N : N; -fun unleaded_A : A; -fun unlearn_V2 : V2; -fun unlearned_A : A; -fun unleash_V2 : V2; -fun unleavened_A : A; -fun unless_Prep : Prep; -fun unlettered_A : A; -fun unlicensed_A : A; -fun unlighted_A : A; -fun unlikable_A : A; -fun unlike_A : A; -fun unlike_Prep : Prep; -fun unlikelihood_N : N; -fun unlikely_A : A; -fun unlikeness_N : N; -fun unlimited_A : A; -fun unlined_A : A; -fun unlisted_A : A; -fun unlit_A : A; -fun unliterary_A : A; -fun unlivable_A : A; -fun unliveried_A : A; -fun unload_V : V; -fun unload_V2 : V2; -fun unloaded_A : A; -fun unloading_N : N; -fun unlobed_A : A; -fun unlocated_A : A; -fun unlock_V : V; -fun unlock_V2 : V2; -fun unlooked_for_A : A; -fun unloose_V2 : V2; -fun unlovable_A : A; -fun unloved_A : A; -fun unlovely_A : A; -fun unloving_A : A; -fun unlubricated_A : A; -fun unlucky_A : A; -fun unmade_A : A; -fun unmake_V2 : V2; -fun unmalicious_A : A; -fun unmalleability_N : N; -fun unmalleable_A : A; -fun unmalted_A : A; -fun unman_V2 : V2; -fun unmanageable_A : A; -fun unmanageably_Adv : Adv; -fun unmanfully_Adv : Adv; -fun unmanly_A : A; -fun unmanned_A : A; -fun unmannered_A : A; -fun unmannerly_A : A; -fun unmarked_A : A; -fun unmarketable_A : A; -fun unmarried_A : A; -fun unmask_V : V; -fun unmask_V2 : V2; -fun unmatchable_A : A; -fun unmatched_A : A; -fun unmated_A : A; -fun unmeasured_A : A; -fun unmechanical_A : A; -fun unmechanized_A : A; -fun unmedicinal_A : A; -fun unmelodious_A : A; -fun unmelodiously_Adv : Adv; -fun unmelted_A : A; -fun unmemorable_A : A; -fun unmemorably_Adv : Adv; -fun unmentionable_A : A; -fun unmercenary_A : A; -fun unmerciful_A : A; -fun unmerited_A : A; -fun unmeritorious_A : A; -fun unmethodical_A : A; -fun unmilitary_A : A; -fun unmindful_A : A; -fun unmindfully_Adv : Adv; -fun unmindfulness_N : N; -fun unmined_A : A; -fun unmingled_A : A; -fun unmistakable_A : A; -fun unmistakably_Adv : Adv; -fun unmitigable_A : A; -fun unmitigated_A : A; -fun unmixed_A : A; -fun unmoderated_A : A; -fun unmodernized_A : A; -fun unmodifiable_A : A; -fun unmodified_A : A; -fun unmodulated_A : A; -fun unmolested_A : A; -fun unmotivated_A : A; -fun unmotorized_A : A; -fun unmourned_A : A; -fun unmovable_A : A; -fun unmoved_A : A; -fun unmoving_A : A; -fun unmown_A : A; -fun unmusical_A : A; -fun unmusically_Adv : Adv; -fun unmyelinated_A : A; -fun unnamed_A : A; -fun unnatural_A : A; -fun unnaturalized_A : A; -fun unnaturally_Adv : Adv; -fun unnaturalness_N : N; -fun unnavigable_A : A; -fun unnecessarily_Adv : Adv; -fun unnecessary_A : A; -fun unneighborliness_N : N; -fun unneighborly_A : A; -fun unnerve_V2 : V2; -fun unnerved_A : A; -fun unneurotic_A : A; -fun unnotched_A : A; -fun unnoticeable_A : A; -fun unnoticeableness_N : N; -fun unnoticed_A : A; -fun unnourished_A : A; -fun unnumbered_A : A; -fun unobjectionable_A : A; -fun unobjective_A : A; -fun unobligated_A : A; -fun unobservable_A : A; -fun unobservant_A : A; -fun unobserved_A : A; -fun unobstructed_A : A; -fun unobtainable_A : A; -fun unobtrusive_A : A; -fun unobtrusively_Adv : Adv; -fun unobtrusiveness_N : N; -fun unobvious_A : A; -fun unoccupied_A : A; -fun unoffending_A : A; -fun unofficial_A : A; -fun unofficially_Adv : Adv; -fun unoiled_A : A; -fun unopen_A : A; -fun unopened_A : A; -fun unopposable_A : A; -fun unopposed_A : A; -fun unorganized_A : A; -fun unoriented_A : A; -fun unoriginal_A : A; -fun unoriginality_N : N; -fun unoriginally_Adv : Adv; -fun unorthodox_A : A; -fun unorthodoxy_N : N; -fun unostentatious_A : A; -fun unowned_A : A; -fun unpack_V : V; -fun unpack_V2 : V2; -fun unpackaged_A : A; -fun unpaid_A : A; -fun unpaintable_A : A; -fun unpainted_A : A; -fun unpalatability_N : N; -fun unpalatable_A : A; -fun unpalatably_Adv : Adv; -fun unparallel_A : A; -fun unparalleled_A : A; -fun unpardonable_A : A; -fun unparented_A : A; -fun unparliamentary_A : A; -fun unpartitioned_A : A; -fun unpasteurized_A : A; -fun unpatented_A : A; -fun unpatriotic_A : A; -fun unpatriotically_Adv : Adv; -fun unpatronized_A : A; -fun unpaved_A : A; -fun unpeaceable_A : A; -fun unpeaceful_A : A; -fun unpeg_V2 : V2; -fun unpeopled_A : A; -fun unperceived_A : A; -fun unperceptive_A : A; -fun unperceptiveness_N : N; -fun unperformed_A : A; -fun unpermed_A : A; -fun unpermissive_A : A; -fun unpermissiveness_N : N; -fun unperplexed_A : A; -fun unpersuadable_A : A; -fun unpersuaded_A : A; -fun unpersuasive_A : A; -fun unpersuasiveness_N : N; -fun unperturbed_A : A; -fun unpick_V : V; -fun unpick_V2 : V2; -fun unpierced_A : A; -fun unpigmented_A : A; -fun unpillared_A : A; -fun unpin_V2 : V2; -fun unplaced_A : A; -fun unplanned_A : A; -fun unplanted_A : A; -fun unplayable_A : A; -fun unplayful_A : A; -fun unpleasant_A : A; -fun unpleasantly_Adv : Adv; -fun unpleasantness_N : N; -fun unpleasingness_N : N; -fun unplowed_A : A; -fun unplug_V : V; -fun unplug_V2 : V2; -fun unplumbed_A : A; -fun unpointedness_N : N; -fun unpolished_A : A; -fun unpolluted_A : A; -fun unpompous_A : A; -fun unpopular_A : A; -fun unpopularity_N : N; -fun unportable_A : A; -fun unposed_A : A; -fun unpotted_A : A; -fun unpowered_A : A; -fun unpracticed_A : A; -fun unpractised_A : A; -fun unprecedented_A : A; -fun unprecedentedly_Adv : Adv; -fun unpredictability_N : N; -fun unpredictable_A : A; -fun unpredicted_A : A; -fun unpredictive_A : A; -fun unprejudiced_A : A; -fun unpremeditated_A : A; -fun unprepared_A : A; -fun unprepossessing_A : A; -fun unpresidential_A : A; -fun unpressed_A : A; -fun unpretentious_A : A; -fun unpretentiously_Adv : Adv; -fun unpretentiousness_N : N; -fun unpreventable_A : A; -fun unpriestly_A : A; -fun unprincipled_A : A; -fun unprintable_A : A; -fun unprocessed_A : A; -fun unproductive_A : A; -fun unproductively_Adv : Adv; -fun unproductiveness_N : N; -fun unprofessional_A : A; -fun unprofitable_A : A; -fun unprofitableness_N : N; -fun unpromising_A : A; -fun unprompted_A : A; -fun unpronounceable_A : A; -fun unprophetic_A : A; -fun unpropitious_A : A; -fun unprotected_A : A; -fun unprotective_A : A; -fun unprovable_A : A; -fun unproved_A : A; -fun unproven_A : A; -fun unprovided_A : A; -fun unprovided_for_A : A; -fun unprovocative_A : A; -fun unprovoked_A : A; -fun unpublishable_A : A; -fun unpublished_A : A; -fun unpunctual_A : A; -fun unpunished_A : A; -fun unpurified_A : A; -fun unputdownable_A : A; -fun unqualified_A : A; -fun unqualifiedly_Adv : Adv; -fun unquestionable_A : A; -fun unquestionably_Adv : Adv; -fun unquestioned_A : A; -fun unquestioning_A : A; -fun unquestioningly_Adv : Adv; -fun unquiet_A : A; -fun unquietly_Adv : Adv; -fun unquotable_A : A; -fun unquote_Adv : Adv; -fun unratable_A : A; -fun unratified_A : A; -fun unravel_V : V; -fun unravel_V2 : V2; -fun unreached_A : A; -fun unreactive_A : A; -fun unread_A : A; -fun unreadable_A : A; -fun unready_A : A; -fun unreal_A : A; -fun unrealistic_A : A; -fun unrealistically_Adv : Adv; -fun unreality_N : N; -fun unrealized_A : A; -fun unreasonable_A : A; -fun unreasonably_Adv : Adv; -fun unreasoning_A : A; -fun unreassuring_A : A; -fun unreceptive_A : A; -fun unreciprocated_A : A; -fun unrecognizable_A : A; -fun unrecognizably_Adv : Adv; -fun unrecognized_A : A; -fun unreconciled_A : A; -fun unreconstructed_A : A; -fun unrecorded_A : A; -fun unrecoverable_A : A; -fun unredeemable_A : A; -fun unreduced_A : A; -fun unrefined_A : A; -fun unreflected_A : A; -fun unreflective_A : A; -fun unreformable_A : A; -fun unreformed_A : A; -fun unrefreshed_A : A; -fun unregenerate_A : A; -fun unregistered_A : A; -fun unregretful_A : A; -fun unregulated_A : A; -fun unrehearsed_A : A; -fun unrelated_A : A; -fun unrelatedness_N : N; -fun unrelaxed_A : A; -fun unreleased_A : A; -fun unrelenting_A : A; -fun unreliable_A : A; -fun unrelieved_A : A; -fun unremarkable_A : A; -fun unremedied_A : A; -fun unremitting_A : A; -fun unremunerative_A : A; -fun unrenewable_A : A; -fun unrentable_A : A; -fun unrepaired_A : A; -fun unrepeatable_A : A; -fun unrepentant_A : A; -fun unreportable_A : A; -fun unreported_A : A; -fun unrepresentative_A : A; -fun unrepressed_A : A; -fun unreproducible_A : A; -fun unrequested_A : A; -fun unrequited_A : A; -fun unresentful_A : A; -fun unreserved_A : A; -fun unreservedly_Adv : Adv; -fun unresisting_A : A; -fun unresolvable_A : A; -fun unresolved_A : A; -fun unrespectability_N : N; -fun unrespectable_A : A; -fun unresponsive_A : A; -fun unresponsiveness_N : N; -fun unrest_N : N; -fun unrestrained_A : A; -fun unrestrainedly_Adv : Adv; -fun unrestraint_N : N; -fun unrestricted_A : A; -fun unrestrictive_A : A; -fun unretentive_A : A; -fun unreverberant_A : A; -fun unrevised_A : A; -fun unrevived_A : A; -fun unrewarded_A : A; -fun unrewarding_A : A; -fun unrhetorical_A : A; -fun unrhymed_A : A; -fun unrhythmical_A : A; -fun unrifled_A : A; -fun unrigged_A : A; -fun unrighteous_A : A; -fun unrighteously_Adv : Adv; -fun unrighteousness_N : N; -fun unripe_A : A; -fun unripened_A : A; -fun unrivalled_A : A; -fun unroll_V : V; -fun unroll_V2 : V2; -fun unromantic_A : A; -fun unromantically_Adv : Adv; -fun unroofed_A : A; -fun unrouged_A : A; -fun unruffled_A : A; -fun unruliness_N : N; -fun unruly_A : A; -fun unsaddle_V2 : V2; -fun unsaddled_A : A; -fun unsafe_A : A; -fun unsaid_A : A; -fun unsalable_A : A; -fun unsaleable_A : A; -fun unsalted_A : A; -fun unsanctioned_A : A; -fun unsanitariness_N : N; -fun unsanitary_A : A; -fun unsaponified_A : A; -fun unsarcastic_A : A; -fun unsated_A : A; -fun unsatisfactorily_Adv : Adv; -fun unsatisfactoriness_N : N; -fun unsatisfactory_A : A; -fun unsatisfiable_A : A; -fun unsatisfied_A : A; -fun unsatisfying_A : A; -fun unsaturated_A : A; -fun unsavory_A : A; -fun unsavoury_A : A; -fun unsay_V2 : V2; -fun unscalable_A : A; -fun unscathed_A : A; -fun unscheduled_A : A; -fun unscholarly_A : A; -fun unschooled_A : A; -fun unscientific_A : A; -fun unscientifically_Adv : Adv; -fun unscramble_V2 : V2; -fun unscrew_V : V; -fun unscrew_V2 : V2; -fun unscripted_A : A; -fun unscrupulous_A : A; -fun unscrupulously_Adv : Adv; -fun unscrupulousness_N : N; -fun unseal_V2 : V2; -fun unsealed_A : A; -fun unseamanlike_A : A; -fun unseamed_A : A; -fun unseasonable_A : A; -fun unseasonableness_N : N; -fun unseasonably_Adv : Adv; -fun unseasoned_A : A; -fun unseat_V2 : V2; -fun unseaworthy_A : A; -fun unsecured_A : A; -fun unseductive_A : A; -fun unseeded_A : A; -fun unseeing_A : A; -fun unseemliness_N : N; -fun unseemly_A : A; -fun unseen_A : A; -fun unseen_N : N; -fun unseeyn_A : A; -fun unsegmented_A : A; -fun unselected_A : A; -fun unselective_A : A; -fun unselfconscious_A : A; -fun unselfconsciously_Adv : Adv; -fun unselfconsciousness_N : N; -fun unselfish_A : A; -fun unselfishly_Adv : Adv; -fun unselfishness_N : N; -fun unsensational_A : A; -fun unsent_A : A; -fun unsentimentally_Adv : Adv; -fun unserviceable_A : A; -fun unservile_A : A; -fun unsettle_V2 : V2; -fun unsettled_A : A; -fun unsex_V2 : V2; -fun unsexed_A : A; -fun unsexy_A : A; -fun unshackle_V2 : V2; -fun unshaded_A : A; -fun unshadowed_A : A; -fun unshakable_A : A; -fun unshaped_A : A; -fun unshapely_A : A; -fun unshared_A : A; -fun unsharpened_A : A; -fun unshaved_A : A; -fun unshaven_A : A; -fun unsheared_A : A; -fun unsheathe_V2 : V2; -fun unsheathed_A : A; -fun unshelled_A : A; -fun unshielded_A : A; -fun unshockable_A : A; -fun unshod_A : A; -fun unshrinkable_A : A; -fun unshrinking_A : A; -fun unshuttered_A : A; -fun unsighted_A : A; -fun unsightliness_N : N; -fun unsightly_A : A; -fun unsigned_A : A; -fun unsilenced_A : A; -fun unsinkable_A : A; -fun unsized_A : A; -fun unskilled_A : A; -fun unskillfulness_N : N; -fun unsleeping_A : A; -fun unsmiling_A : A; -fun unsmilingly_Adv : Adv; -fun unsmoothed_A : A; -fun unsnarling_N : N; -fun unsociability_N : N; -fun unsociable_A : A; -fun unsociably_Adv : Adv; -fun unsocial_A : A; -fun unsoiled_A : A; -fun unsold_A : A; -fun unsoldierly_A : A; -fun unsolicited_A : A; -fun unsolvability_N : N; -fun unsolved_A : A; -fun unsophisticated_A : A; -fun unsorted_A : A; -fun unsound_A : A; -fun unsoundable_A : A; -fun unsoundness_N : N; -fun unsoured_A : A; -fun unspaced_A : A; -fun unsparing_A : A; -fun unspeakable_A : A; -fun unspecialized_A : A; -fun unspecific_A : A; -fun unspecifically_Adv : Adv; -fun unspecified_A : A; -fun unspectacular_A : A; -fun unspent_A : A; -fun unspoiled_A : A; -fun unspoilt_A : A; -fun unspoken_A : A; -fun unsporting_A : A; -fun unsportingly_Adv : Adv; -fun unsportsmanlike_A : A; -fun unspotted_A : A; -fun unstable_A : A; -fun unstaged_A : A; -fun unstained_A : A; -fun unstaple_V2 : V2; -fun unstartling_A : A; -fun unstated_A : A; -fun unstatesmanlike_A : A; -fun unsteadily_Adv : Adv; -fun unsteadiness_N : N; -fun unsteady_A : A; -fun unsterilized_A : A; -fun unstilted_A : A; -fun unstimulating_A : A; -fun unstintingly_Adv : Adv; -fun unstirred_A : A; -fun unstitch_V2 : V2; -fun unstoppable_A : A; -fun unstoppered_A : A; -fun unstrained_A : A; -fun unstratified_A : A; -fun unstressed_A : A; -fun unstructured_A : A; -fun unstrung_A : A; -fun unstuck_A : A; -fun unstudied_A : A; -fun unstudious_A : A; -fun unsubdued_A : A; -fun unsubtle_A : A; -fun unsuccessful_A : A; -fun unsuccessfully_Adv : Adv; -fun unsugared_A : A; -fun unsuitability_N : N; -fun unsuitable_A : A; -fun unsuited_A : A; -fun unsullied_A : A; -fun unsung_A : A; -fun unsupervised_A : A; -fun unsupportable_A : A; -fun unsupported_A : A; -fun unsupportive_A : A; -fun unsuppressed_A : A; -fun unsure_A : A; -fun unsurmountable_A : A; -fun unsurpassable_A : A; -fun unsurpassed_A : A; -fun unsurprised_A : A; -fun unsurprising_A : A; -fun unsusceptibility_N : N; -fun unsusceptible_A : A; -fun unsuspected_A : A; -fun unsuspecting_A : A; -fun unsuspectingly_Adv : Adv; -fun unsuspicious_A : A; -fun unswayed_A : A; -fun unsweet_A : A; -fun unsweetened_A : A; -fun unswept_A : A; -fun unswerving_A : A; -fun unswervingly_Adv : Adv; -fun unsworn_A : A; -fun unsyllabic_A : A; -fun unsyllabled_A : A; -fun unsymmetric_A : A; -fun unsympathetic_A : A; -fun unsympathetically_Adv : Adv; -fun unsympathizing_A : A; -fun unsystematic_A : A; -fun unsystematically_Adv : Adv; -fun untainted_A : A; -fun untalented_A : A; -fun untamed_A : A; -fun untangled_A : A; -fun untanned_A : A; -fun untapped_A : A; -fun untarnished_A : A; -fun untaxed_A : A; -fun untempered_A : A; -fun untenable_A : A; -fun untenanted_A : A; -fun untended_A : A; -fun untested_A : A; -fun untethered_A : A; -fun unthawed_A : A; -fun untheatrical_A : A; -fun unthematic_A : A; -fun unthinkable_A : A; -fun unthinking_A : A; -fun unthought_of_A : A; -fun unthoughtfulness_N : N; -fun untidily_Adv : Adv; -fun untidiness_N : N; -fun untidy_A : A; -fun untie_V : V; -fun untie_V2 : V2; -fun untied_A : A; -fun until_Prep : Prep; -fun untilled_A : A; -fun untimbered_A : A; -fun untimely_A : A; -fun untipped_A : A; -fun untired_A : A; -fun untiring_A : A; -fun untitled_A : A; -fun untoasted_A : A; -fun untold_A : A; -fun untouchable_A : A; -fun untouchable_N : N; -fun untouched_A : A; -fun untoward_A : A; -fun untraceable_A : A; -fun untrained_A : A; -fun untrammeled_A : A; -fun untrammelled_A : A; -fun untranslatable_A : A; -fun untraveled_A : A; -fun untraversable_A : A; -fun untraversed_A : A; -fun untreated_A : A; -fun untried_A : A; -fun untrimmed_A : A; -fun untroubled_A : A; -fun untrue_A : A; -fun untruly_Adv : Adv; -fun untrustworthiness_N : N; -fun untrustworthy_A : A; -fun untruth_N : N; -fun untruthful_A : A; -fun untruthfulness_N : N; -fun untucked_A : A; -fun untufted_A : A; -fun unturned_A : A; -fun untutored_A : A; -fun untwisted_A : A; -fun untying_N : N; -fun untypical_A : A; -fun ununbium_N : N; -fun ununderstood_A : A; -fun ununhexium_N : N; -fun ununpentium_N : N; -fun ununquadium_N : N; -fun ununtrium_N : N; -fun unused_A : A; -fun unusual_A : A; -fun unusually_Adv : Adv; -fun unusualness_N : N; -fun unutterable_A : A; -fun unvaccinated_A : A; -fun unvaried_A : A; -fun unvariedness_N : N; -fun unvarnished_A : A; -fun unvarying_A : A; -fun unveil_V : V; -fun unveil_V2 : V2; -fun unveiled_A : A; -fun unveiling_N : N; -fun unvented_A : A; -fun unventilated_A : A; -fun unverified_A : A; -fun unversed_A : A; -fun unvigilant_A : A; -fun unvindictive_A : A; -fun unvitrified_A : A; -fun unvoiced_A : A; -fun unvulcanized_A : A; -fun unwanted_A : A; -fun unwarily_Adv : Adv; -fun unwariness_N : N; -fun unwarrantably_Adv : Adv; -fun unwarranted_A : A; -fun unwary_A : A; -fun unwashed_A : A; -fun unwavering_A : A; -fun unwaxed_A : A; -fun unweaned_A : A; -fun unwearable_A : A; -fun unwearied_A : A; -fun unweathered_A : A; -fun unwebbed_A : A; -fun unwed_A : A; -fun unwelcome_A : A; -fun unwell_A : A; -fun unwholesome_A : A; -fun unwholesomeness_N : N; -fun unwieldiness_N : N; -fun unwieldy_A : A; -fun unwilled_A : A; -fun unwilling_A : A; -fun unwillingly_Adv : Adv; -fun unwillingness_N : N; -fun unwind_V : V; -fun unwind_V2 : V2; -fun unwise_A : A; -fun unwitnessed_A : A; -fun unwitting_A : A; -fun unwittingly_Adv : Adv; -fun unwomanly_A : A; -fun unwonted_A : A; -fun unwontedly_Adv : Adv; -fun unwooded_A : A; -fun unworkable_A : A; -fun unworkmanlike_A : A; -fun unworldly_A : A; -fun unworn_A : A; -fun unworried_A : A; -fun unworthily_Adv : Adv; -fun unworthiness_N : N; -fun unworthy_A : A; -fun unwounded_A : A; -fun unwoven_A : A; -fun unwrap_V : V; -fun unwrap_V2 : V2; -fun unwrapped_A : A; -fun unwrinkled_A : A; -fun unwritten_A : A; -fun unyielding_A : A; -fun unzip_V2 : V2; -fun up_A : A; -fun up_Adv : Adv; -fun up_Prep : Prep; -fun up_V : V; -fun up_V2 : V2; -fun up_and_coming_A : A; -fun up_and_down_Adv : Adv; -fun up_beat_N : N; -fun up_bow_N : N; -fun up_country_Adv : Adv; -fun up_here_Adv : Adv; -fun up_in_the_air_A : A; -fun up_market_A : A; -fun up_tick_N : N; -fun up_to_A : A; -fun up_to_date_A : A; -fun up_to_date_A : A; -fun up_to_now_Adv : Adv; -fun up_to_the_minute_A : A; -fun up_to_the_minute_A : A; -fun upbeat_N : N; -fun upbound_A : A; -fun upbraid_V2 : V2; -fun upbraider_N : N; -fun upbraiding_N : N; -fun upbringing_N : N; -fun upcast_N : N; -fun upcountry_A : A; -fun upcountry_Adv : Adv; -fun upcurved_A : A; -fun update_N : N; -fun update_V2 : V2; -fun updating_N : N; -fun updraft_N : N; -fun upended_A : A; -fun upfield_A : A; -fun upfront_A : A; -fun upgrade_N : N; -fun upgrade_V2 : V2; -fun upheaval_N : N; -fun uphill_A : A; -fun uphill_Adv : Adv; -fun uphill_N : N; -fun uphold_V2 : V2; -fun upholder_N : N; -fun upholster_V2 : V2; -fun upholsterer_N : N; -fun upholstery_N : N; -fun upkeep_N : N; -fun upland_A : A; -fun upland_N : N; -fun uplift_N : N; -fun uplift_V2 : V2; -fun uplifted_A : A; -fun uplifting_N : N; -fun uplink_N : N; -fun upmarket_A : A; -fun upmost_A : A; -fun upon_Prep : Prep; -fun upper_A : A; -fun upper_N : N; -fun upper_class_A : A; -fun upper_lower_class_A : A; -fun upper_middle_class_A : A; -fun uppercase_A : A; -fun uppercut_N : N; -fun uppermost_A : A; -fun uppermost_Adv : Adv; -fun uppish_A : A; -fun uppishness_N : N; -fun uppity_A : A; -fun uppityness_N : N; -fun upraised_A : A; -fun upright_A : A; -fun upright_N : N; -fun uprightly_Adv : Adv; -fun uprightness_N : N; -fun uprising_N : N; -fun upriver_Adv : Adv; -fun uproar_N : N; -fun uproarious_A : A; -fun uproot_V2 : V2; -fun upscale_A : A; -fun upset_A : A; -fun upset_N : N; -fun upset_V : V; -fun upset_V2 : V2; -fun upsetter_N : N; -fun upshot_N : N; -fun upside_down_Adv : Adv; -fun upsilon_N : N; -fun upstage_A : A; -fun upstage_Adv : Adv; -fun upstage_N : N; -fun upstage_V2 : V2; -fun upstager_N : N; -fun upstairs_A : A; -fun upstairs_Adv : Adv; -fun upstairs_N : N; -fun upstanding_A : A; -fun upstart_A : A; -fun upstart_N : N; -fun upstate_Adv : Adv; -fun upstream_A : A; -fun upstream_Adv : Adv; -fun upstroke_N : N; -fun upsurge_N : N; -fun uptake_N : N; -fun uptick_N : N; -fun uptight_A : A; -fun uptime_N : N; -fun uptown_A : A; -fun uptown_Adv : Adv; -fun uptown_N : N; -fun upturn_N : N; -fun upturned_A : A; -fun upward_A : A; -fun upward_Adv : Adv; -fun upwards_Adv : Adv; -fun upwind_A : A; -fun upwind_Adv : Adv; -fun uracil_N : N; -fun uraninite_N : N; -fun uranium_N : N; -fun uranoplasty_N : N; -fun uranyl_N : N; -fun urate_N : N; -fun uratemia_N : N; -fun uraturia_N : N; -fun urban_A : A; -fun urbane_A : A; -fun urbanely_Adv : Adv; -fun urbanity_N : N; -fun urbanization_N : N; -fun urbanize_V2 : V2; -fun urbanized_A : A; -fun urceolate_A : A; -fun urceole_N : N; -fun urchin_N : N; -fun urdu_A : A; -fun urdu_N : N; -fun urea_N : N; -fun urease_N : N; -fun uremia_N : N; -fun ureter_N : N; -fun ureteritis_N : N; -fun ureterocele_N : N; -fun ureterostenosis_N : N; -fun urethane_N : N; -fun urethra_N : N; -fun urethral_A : A; -fun urethritis_N : N; -fun urethrocele_N : N; -fun urge_N : N; -fun urge_V2 : V2; -fun urge_V2V : V2V; -fun urge_VS : VS; -fun urgency_N : N; -fun urgent_A : A; -fun urgently_Adv : Adv; -fun urging_N : N; -fun urial_N : N; -fun uric_A : A; -fun uricaciduria_N : N; -fun uricosuric_A : A; -fun urinal_N : N; -fun urinalysis_N : N; -fun urinary_A : A; -fun urinate_V : V; -fun urine_N : N; -fun urn_N : N; -fun urn_shaped_A : A; -fun urobilin_N : N; -fun urobilinogen_N : N; -fun urocele_N : N; -fun urochesia_N : N; -fun urochord_N : N; -fun urodele_N : N; -fun urodynia_N : N; -fun urogenital_A : A; -fun urolith_N : N; -fun urologist_N : N; -fun urology_N : N; -fun uropathy_N : N; -fun uropygium_N : N; -fun ursine_A : A; -fun ursinia_N : N; -fun urtication_N : N; -fun uruguayan_A : A; -fun uruguayan_N : N; -fun usable_A : A; -fun usaf_N : N; -fun usage_N : N; -fun usance_N : N; -fun use_N : N; -fun use_V : V; -fun use_V2 : V2; -fun use_VV : VV; -fun useable_A : A; -fun used_A : A; -fun used_car_N : N; -fun used_to_A : A; -fun useful_A : A; -fun usefully_Adv : Adv; -fun usefulness_N : N; -fun useless_A : A; -fun uselessly_Adv : Adv; -fun uselessness_N : N; -fun user_N : N; -fun user_friendly_A : A; -fun usher_N : N; -fun usher_V2 : V2; -fun usherette_N : N; -fun usn_N : N; -fun uss_N : N; -fun ussr_N : N; -fun usual_A : A; -fun usualness_N : N; -fun usufruct_N : N; -fun usufructuary_A : A; -fun usufructuary_N : N; -fun usurer_N : N; -fun usurious_A : A; -fun usurp_V2 : V2; -fun usurpation_N : N; -fun usurper_N : N; -fun usury_N : N; -fun utahraptor_N : N; -fun utensil_N : N; -fun uterine_A : A; -fun uterus_N : N; -fun utilitarian_A : A; -fun utilitarian_N : N; -fun utilitarianism_N : N; -fun utility_A : A; -fun utility_N : N; -fun utilizable_A : A; -fun utilization_N : N; -fun utilize_V2 : V2; -fun utilized_A : A; -fun utilizer_N : N; -fun utmost_A : A; -fun utmost_N : N; -fun utopia_N : N; -fun utopian_A : A; -fun utricle_N : N; -fun utter_A : A; -fun utter_V2 : V2; -fun utterance_N : N; -fun utterer_N : N; -fun uttermost_A : A; -fun uttermost_N : N; -fun uvea_N : N; -fun uveal_A : A; -fun uveitis_N : N; -fun uvula_N : N; -fun uvular_A : A; -fun uvulitis_N : N; -fun uxor_N : N; -fun uxoricide_N : N; -fun uxorious_A : A; -fun uxoriously_Adv : Adv; -fun uxoriousness_N : N; -fun v_and_a_N : N; -fun v_shaped_A : A; -fun vac_N : N; -fun vacancy_N : N; -fun vacant_A : A; -fun vacantly_Adv : Adv; -fun vacate_V : V; -fun vacate_V2 : V2; -fun vacation_N : N; -fun vacation_V : V; -fun vacationer_N : N; -fun vacationing_N : N; -fun vacationist_N : N; -fun vaccinate_V2 : V2; -fun vaccination_N : N; -fun vaccine_N : N; -fun vaccinee_N : N; -fun vaccinia_N : N; -fun vacillant_A : A; -fun vacillate_V : V; -fun vacillation_N : N; -fun vacuity_N : N; -fun vacuolate_A : A; -fun vacuole_N : N; -fun vacuolization_N : N; -fun vacuous_A : A; -fun vacuously_Adv : Adv; -fun vacuousness_N : N; -fun vacuum_N : N; -fun vacuum_V2 : V2; -fun vade_mecum_N : N; -fun vagabond_A : A; -fun vagabond_N : N; -fun vagal_A : A; -fun vagary_N : N; -fun vagile_A : A; -fun vagina_N : N; -fun vaginal_A : A; -fun vaginismus_N : N; -fun vaginitis_N : N; -fun vagrancy_N : N; -fun vagrant_A : A; -fun vagrant_N : N; -fun vague_A : A; -fun vaguely_Adv : Adv; -fun vagueness_N : N; -fun vagus_N : N; -fun vain_A : A; -fun vainglorious_A : A; -fun vainglory_N : N; -fun vainly_Adv : Adv; -fun vaisya_N : N; -fun valance_N : N; -fun valdecoxib_N : N; -fun vale_N : N; -fun valediction_N : N; -fun valedictorian_N : N; -fun valedictory_A : A; -fun valence_N : N; -fun valency_N : N; -fun valent_A : A; -fun valentine_N : N; -fun valerian_N : N; -fun valet_N : N; -fun valet_V2 : V2; -fun valetudinarian_A : A; -fun valetudinarian_N : N; -fun valgus_N : N; -fun valiant_A : A; -fun valiantly_Adv : Adv; -fun valid_A : A; -fun validate_V2 : V2; -fun validated_A : A; -fun validation_N : N; -fun validity_N : N; -fun validly_Adv : Adv; -fun valine_N : N; -fun valise_N : N; -fun valley_N : N; -fun valorous_A : A; -fun valour_N : N; -fun valsartan_N : N; -fun valuable_A : A; -fun valuable_N : N; -fun valuation_N : N; -fun value_N : N; -fun value_V : V; -fun value_V2 : V2; -fun value_added_A : A; -fun valued_A : A; -fun valueless_A : A; -fun valuelessness_N : N; -fun valuer_N : N; -fun values_N : N; -fun valve_N : N; -fun valved_A : A; -fun valvotomy_N : N; -fun valvular_A : A; -fun valvule_N : N; -fun valvulitis_N : N; -fun vambrace_N : N; -fun vamoose_V : V; -fun vamp_N : N; -fun vamp_V : V; -fun vamp_V2 : V2; -fun vampire_N : N; -fun vampirism_N : N; -fun van_N : N; -fun van_gogh_PN : PN; -fun van_de_velde_PN : PN; -fun van_der_waal's_forces_PN : PN; -fun van_der_waals_PN : PN; -fun vanadate_N : N; -fun vanadinite_N : N; -fun vanadium_N : N; -fun vancomycin_N : N; -fun vanda_N : N; -fun vandal_N : N; -fun vandalism_N : N; -fun vane_N : N; -fun vanguard_N : N; -fun vanilla_A : A; -fun vanilla_N : N; -fun vanilla_scented_A : A; -fun vanillin_N : N; -fun vanish_V : V; -fun vanished_A : A; -fun vanisher_N : N; -fun vanishing_N : N; -fun vanishingly_Adv : Adv; -fun vanity_N : N; -fun vanquish_V2 : V2; -fun vantage_N : N; -fun vantage_point_N : N; -fun vapid_A : A; -fun vapidity_N : N; -fun vapidly_Adv : Adv; -fun vapidness_N : N; -fun vapor_N : N; -fun vaporific_A : A; -fun vaporization_N : N; -fun vaporize_V : V; -fun vaporize_V2 : V2; -fun vaporizer_N : N; -fun vaporous_A : A; -fun vapour_N : N; -fun vapour_bath_N : N; -fun vaquero_N : N; -fun vaquita_N : N; -fun vara_N : N; -fun vardenafil_N : N; -fun variability_N : N; -fun variable_A : A; -fun variable_N : N; -fun variableness_N : N; -fun variably_Adv : Adv; -fun variance_N : N; -fun variant_A : A; -fun variant_N : N; -fun variation_N : N; -fun varicelliform_A : A; -fun varicocele_N : N; -fun varicolored_A : A; -fun varicoloured_A : A; -fun varicose_A : A; -fun varicosis_N : N; -fun varicosity_N : N; -fun varied_A : A; -fun varied_lorikeet_PN : PN; -fun variedness_N : N; -fun variegated_A : A; -fun variegation_N : N; -fun varietal_N : N; -fun variety_N : N; -fun variform_A : A; -fun variolar_A : A; -fun variolation_N : N; -fun variometer_N : N; -fun variorum_A : A; -fun variorum_N : N; -fun various_A : A; -fun variously_Adv : Adv; -fun varix_N : N; -fun varlet_N : N; -fun varmint_N : N; -fun varna_N : N; -fun varnish_N : N; -fun varnish_V2 : V2; -fun varnisher_N : N; -fun varsity_N : N; -fun varus_N : N; -fun vary_V : V; -fun vary_V2 : V2; -fun varying_A : A; -fun vascular_A : A; -fun vascularity_N : N; -fun vascularization_N : N; -fun vasculitis_N : N; -fun vase_N : N; -fun vase_shaped_A : A; -fun vasectomy_N : N; -fun vaseline_N : N; -fun vasoconstriction_N : N; -fun vasoconstrictor_N : N; -fun vasodilation_N : N; -fun vasodilator_N : N; -fun vasomotor_A : A; -fun vasopressin_N : N; -fun vasopressor_N : N; -fun vasotomy_N : N; -fun vasovasostomy_N : N; -fun vasovesiculitis_N : N; -fun vassal_N : N; -fun vassalage_N : N; -fun vast_A : A; -fun vastly_Adv : Adv; -fun vastness_N : N; -fun vat_N : N; -fun vatican_N : N; -fun vaudeville_N : N; -fun vaudevillian_N : N; -fun vault_N : N; -fun vault_V : V; -fun vault_V2 : V2; -fun vaulted_A : A; -fun vaulter_N : N; -fun vaulting_N : N; -fun vaulting_horse_N : N; -fun vaunt_N : N; -fun vaunt_V : V; -fun vaunt_V2 : V2; -fun vaunter_N : N; -fun vauntingly_Adv : Adv; -fun vc_N : N; -fun vd_N : N; -fun veal_N : N; -fun vector_N : N; -fun vedalia_N : N; -fun veer_V : V; -fun veery_N : N; -fun vegan_N : N; -fun vegetable_A : A; -fun vegetable_N : N; -fun vegetal_A : A; -fun vegetarian_N : N; -fun vegetarianism_N : N; -fun vegetate_V : V; -fun vegetation_N : N; -fun vegetative_A : A; -fun vehemence_N : N; -fun vehement_A : A; -fun vehemently_Adv : Adv; -fun vehicle_N : N; -fun vehicular_A : A; -fun veil_N : N; -fun veil_V2 : V2; -fun veiled_A : A; -fun veiling_N : N; -fun vein_N : N; -fun vein_V2 : V2; -fun veinal_A : A; -fun veined_A : A; -fun velar_A : A; -fun velar_N : N; -fun veld_N : N; -fun velleity_N : N; -fun vellum_N : N; -fun velocipede_N : N; -fun velociraptor_N : N; -fun velocity_N : N; -fun velodrome_N : N; -fun velour_N : N; -fun veloute_N : N; -fun velvet_A : A; -fun velvet_N : N; -fun velveteen_N : N; -fun velvetleaf_N : N; -fun velvety_A : A; -fun velvety_furred_A : A; -fun velvety_plumaged_A : A; -fun velvety_skinned_A : A; -fun venal_A : A; -fun venality_N : N; -fun venation_N : N; -fun vend_V2 : V2; -fun vendee_N : N; -fun vender_N : N; -fun vendetta_N : N; -fun vending_N : N; -fun vendor_N : N; -fun veneer_N : N; -fun veneer_V2 : V2; -fun veneering_N : N; -fun venerability_N : N; -fun venerable_A : A; -fun venerate_V2 : V2; -fun veneration_N : N; -fun venerator_N : N; -fun venereal_A : A; -fun venesection_N : N; -fun venetian_A : A; -fun venezuelan_A : A; -fun venezuelan_N : N; -fun vengeance_N : N; -fun vengeful_A : A; -fun venial_A : A; -fun venipuncture_N : N; -fun venison_N : N; -fun venogram_N : N; -fun venography_N : N; -fun venom_N : N; -fun venomed_A : A; -fun venomous_A : A; -fun venous_A : A; -fun vent_N : N; -fun vent_V2 : V2; -fun vent_hole_N : N; -fun vented_A : A; -fun venter_N : N; -fun ventilate_V2 : V2; -fun ventilated_A : A; -fun ventilation_N : N; -fun ventilator_N : N; -fun ventilatory_A : A; -fun ventral_A : A; -fun ventrally_Adv : Adv; -fun ventricle_N : N; -fun ventricose_A : A; -fun ventricular_A : A; -fun ventriloquism_N : N; -fun ventriloquist_N : N; -fun venture_N : N; -fun venture_V : V; -fun venture_V2 : V2; -fun venture_VS : VS; -fun venturer_N : N; -fun venturesome_A : A; -fun venturi_N : N; -fun venturous_A : A; -fun venue_N : N; -fun venule_N : N; -fun veracious_A : A; -fun veracity_N : N; -fun veranda_N : N; -fun verandah_N : N; -fun verapamil_N : N; -fun verb_N : N; -fun verbal_A : A; -fun verbalization_N : N; -fun verbalize_V2 : V2; -fun verbally_Adv : Adv; -fun verbatim_A : A; -fun verbatim_Adv : Adv; -fun verbena_N : N; -fun verbiage_N : N; -fun verbolatry_N : N; -fun verbose_A : A; -fun verbosely_Adv : Adv; -fun verboseness_N : N; -fun verbosity_N : N; -fun verdancy_N : N; -fun verdant_A : A; -fun verdict_N : N; -fun verdigris_N : N; -fun verdin_N : N; -fun verdure_N : N; -fun verey_A : A; -fun verge_N : N; -fun verge_V : V; -fun verger_N : N; -fun veridical_A : A; -fun verifiable_A : A; -fun verification_N : N; -fun verified_A : A; -fun verify_V2 : V2; -fun verily_Adv : Adv; -fun verisimilar_A : A; -fun verisimilitude_N : N; -fun veritable_A : A; -fun verity_N : N; -fun vermicelli_N : N; -fun vermicide_N : N; -fun vermicular_A : A; -fun vermiculate_A : A; -fun vermiculation_N : N; -fun vermiculite_N : N; -fun vermiform_A : A; -fun vermifuge_N : N; -fun vermilion_A : A; -fun vermilion_N : N; -fun vermin_N : N; -fun verminous_A : A; -fun vermis_N : N; -fun vermouth_N : N; -fun vernacular_A : A; -fun vernacular_N : N; -fun vernal_A : A; -fun vernation_N : N; -fun vernix_N : N; -fun veronica_N : N; -fun verruca_N : N; -fun verrucose_A : A; -fun versatile_A : A; -fun versatility_N : N; -fun verse_N : N; -fun versed_A : A; -fun versicle_N : N; -fun versification_N : N; -fun versifier_N : N; -fun versify_V : V; -fun versify_V2 : V2; -fun version_N : N; -fun verso_N : N; -fun verst_N : N; -fun versus_Prep : Prep; -fun vertebra_N : N; -fun vertebral_A : A; -fun vertebrate_A : A; -fun vertebrate_N : N; -fun vertex_N : N; -fun vertical_A : A; -fun vertical_N : N; -fun verticality_N : N; -fun vertically_Adv : Adv; -fun verticil_N : N; -fun verticillate_A : A; -fun verticilliosis_N : N; -fun verticillium_N : N; -fun vertiginous_A : A; -fun vertigo_N : N; -fun verve_N : N; -fun vervet_N : N; -fun very_A : A; -fun very_AdA : AdA; -fun very_Adv : Adv; -fun very_well_Adv : Adv; -fun vesical_A : A; -fun vesicant_N : N; -fun vesicatory_A : A; -fun vesicle_N : N; -fun vesicular_A : A; -fun vesiculation_N : N; -fun vesiculitis_N : N; -fun vesiculovirus_N : N; -fun vesper_N : N; -fun vespers_N : N; -fun vespid_N : N; -fun vessel_N : N; -fun vest_N : N; -fun vest_V : V; -fun vest_V2 : V2; -fun vestal_A : A; -fun vestal_N : N; -fun vested_A : A; -fun vestiary_A : A; -fun vestibular_A : A; -fun vestibule_N : N; -fun vestige_N : N; -fun vestigial_A : A; -fun vestiture_N : N; -fun vestment_N : N; -fun vestmental_A : A; -fun vestmented_A : A; -fun vestry_N : N; -fun vestryman_N : N; -fun vestrywoman_N : N; -fun vesture_N : N; -fun vesture_V2 : V2; -fun vesuvianite_N : N; -fun vet_N : N; -fun vet_V2 : V2; -fun vetch_N : N; -fun vetchling_N : N; -fun veteran_N : N; -fun veterinarian_N : N; -fun veterinary_A : A; -fun veto_N : N; -fun veto_V : V; -fun veto_V2 : V2; -fun vex_V2 : V2; -fun vex_V2V : V2V; -fun vexation_N : N; -fun vexatious_A : A; -fun vexatiously_Adv : Adv; -fun vexed_A : A; -fun via_Prep : Prep; -fun via_media_N : N; -fun viability_N : N; -fun viable_A : A; -fun viaduct_N : N; -fun vial_N : N; -fun viand_N : N; -fun viatical_A : A; -fun viatication_N : N; -fun vibist_N : N; -fun vibrant_A : A; -fun vibraphone_N : N; -fun vibrate_V : V; -fun vibrate_V2 : V2; -fun vibration_N : N; -fun vibrational_A : A; -fun vibrato_N : N; -fun vibrator_N : N; -fun vibratory_A : A; -fun vibrio_N : N; -fun vibrionic_A : A; -fun vicar_N : N; -fun vicar_general_N : N; -fun vicarage_N : N; -fun vicarial_A : A; -fun vicariate_N : N; -fun vicarious_A : A; -fun vicariously_Adv : Adv; -fun vice_N : N; -fun vice_presidency_N : N; -fun vice_presidential_A : A; -fun vice_regent_N : N; -fun vice_versa_Adv : Adv; -fun vicegerent_N : N; -fun vicenary_A : A; -fun vicennial_A : A; -fun viceregal_A : A; -fun vicereine_N : N; -fun viceroy_N : N; -fun viceroyalty_N : N; -fun viceroyship_N : N; -fun vichyssoise_N : N; -fun vicinal_A : A; -fun vicinity_N : N; -fun vicious_A : A; -fun viciously_Adv : Adv; -fun viciousness_N : N; -fun vicissitude_N : N; -fun victim_N : N; -fun victimization_N : N; -fun victimize_V2 : V2; -fun victimizer_N : N; -fun victor_N : N; -fun victoria_N : N; -fun victorian_A : A; -fun victorian_N : N; -fun victoriana_N : N; -fun victorious_A : A; -fun victoriously_Adv : Adv; -fun victory_N : N; -fun victual_N : N; -fun victual_V : V; -fun victual_V2 : V2; -fun victualer_N : N; -fun victualler_N : N; -fun vicuna_N : N; -fun videlicet_Adv : Adv; -fun video_N : N; -fun videocassette_N : N; -fun videodisk_N : N; -fun videotape_N : N; -fun videotape_V2 : V2; -fun vie_V : V; -fun vietnamese_A : A; -fun vietnamese_N : N; -fun view_N : N; -fun view_V2 : V2; -fun viewable_A : A; -fun viewer_N : N; -fun viewfinder_N : N; -fun viewgraph_N : N; -fun viewless_A : A; -fun viewpoint_N : N; -fun vigesimal_A : A; -fun vigil_N : N; -fun vigilance_N : N; -fun vigilant_A : A; -fun vigilante_N : N; -fun vigilantism_N : N; -fun vigilantly_Adv : Adv; -fun vignette_N : N; -fun vigor_N : N; -fun vigorous_A : A; -fun vigorously_Adv : Adv; -fun vigour_N : N; -fun viking_N : N; -fun vile_A : A; -fun vilely_Adv : Adv; -fun vileness_N : N; -fun vilification_N : N; -fun vilify_V2 : V2; -fun villa_N : N; -fun village_N : N; -fun villager_N : N; -fun villain_N : N; -fun villainess_N : N; -fun villainous_A : A; -fun villainy_N : N; -fun villein_N : N; -fun villeinage_N : N; -fun villus_N : N; -fun vim_N : N; -fun vinaceous_A : A; -fun vinaigrette_N : N; -fun vinblastine_N : N; -fun vincristine_N : N; -fun vindicate_V2 : V2; -fun vindication_N : N; -fun vindictive_A : A; -fun vindictiveness_N : N; -fun vine_N : N; -fun vinegar_N : N; -fun vinegariness_N : N; -fun vinegarroon_N : N; -fun vinegary_A : A; -fun vinery_N : N; -fun vineyard_N : N; -fun vinifera_N : N; -fun vinification_N : N; -fun vino_N : N; -fun vinous_A : A; -fun vintage_N : N; -fun vintager_N : N; -fun vintner_N : N; -fun vinyl_N : N; -fun viol_N : N; -fun viola_N : N; -fun violable_A : A; -fun violate_V2 : V2; -fun violation_N : N; -fun violator_N : N; -fun violence_N : N; -fun violent_A : A; -fun violently_Adv : Adv; -fun violet_N : N; -fun violet_black_A : A; -fun violet_colored_A : A; -fun violet_purple_A : A; -fun violet_scented_A : A; -fun violet_streaked_A : A; -fun violet_tinged_A : A; -fun violin_N : N; -fun violinist_N : N; -fun violist_N : N; -fun viomycin_N : N; -fun vip_N : N; -fun viper_N : N; -fun virago_N : N; -fun viral_A : A; -fun viremia_N : N; -fun vireo_N : N; -fun virga_N : N; -fun virgin_A : A; -fun virgin_N : N; -fun virginal_A : A; -fun virginal_N : N; -fun virginia_N : N; -fun virginity_N : N; -fun virgule_N : N; -fun viricidal_A : A; -fun viricide_N : N; -fun virile_A : A; -fun virilism_N : N; -fun virility_N : N; -fun virino_N : N; -fun virion_N : N; -fun viroid_N : N; -fun virological_A : A; -fun virologist_N : N; -fun virology_N : N; -fun virtu_N : N; -fun virtual_A : A; -fun virtually_Adv : Adv; -fun virtue_N : N; -fun virtuosity_N : N; -fun virtuoso_N : N; -fun virtuous_A : A; -fun virulence_N : N; -fun virulent_A : A; -fun virulently_Adv : Adv; -fun virus_N : N; -fun vis_a_vis_Adv : Adv; -fun vis_a_vis_Adv : Adv; -fun visa_N : N; -fun visa_V2 : V2; -fun visage_N : N; -fun visaged_A : A; -fun viscacha_N : N; -fun viscera_N : N; -fun visceral_A : A; -fun viscerally_Adv : Adv; -fun viscid_A : A; -fun viscoelastic_A : A; -fun viscometer_N : N; -fun viscometric_A : A; -fun viscometry_N : N; -fun viscosity_N : N; -fun viscount_N : N; -fun viscountcy_N : N; -fun viscountess_N : N; -fun viscounty_N : N; -fun viscous_A : A; -fun vise_N : N; -fun viselike_A : A; -fun visibility_N : N; -fun visible_A : A; -fun visibly_Adv : Adv; -fun vision_N : N; -fun visionary_A : A; -fun visionary_N : N; -fun visit_N : N; -fun visit_V : V; -fun visit_V2 : V2; -fun visitant_N : N; -fun visitation_N : N; -fun visiting_N : N; -fun visitor_N : N; -fun visor_N : N; -fun visored_A : A; -fun vista_N : N; -fun visual_A : A; -fun visualization_N : N; -fun visualize_V2 : V2; -fun visualizer_N : N; -fun visually_Adv : Adv; -fun vital_A : A; -fun vitalism_N : N; -fun vitalist_N : N; -fun vitality_N : N; -fun vitalization_N : N; -fun vitalize_V2 : V2; -fun vitally_Adv : Adv; -fun vitalness_N : N; -fun vitamin_N : N; -fun vitamin_a_PN : PN; -fun vitamin_a1_PN : PN; -fun vitamin_a2_PN : PN; -fun vitamin_b1_PN : PN; -fun vitamin_b12_PN : PN; -fun vitamin_b2_PN : PN; -fun vitamin_b6_PN : PN; -fun vitamin_bc_PN : PN; -fun vitamin_c_PN : PN; -fun vitamin_d_PN : PN; -fun vitamin_e_PN : PN; -fun vitamin_k_PN : PN; -fun vitamin_k1_PN : PN; -fun vitamin_k3_PN : PN; -fun vitamin_p_PN : PN; -fun vitiate_V2 : V2; -fun vitiation_N : N; -fun viticulture_N : N; -fun viticulturist_N : N; -fun vitiliginous_A : A; -fun vitiligo_N : N; -fun vitrectomy_N : N; -fun vitreous_A : A; -fun vitrification_N : N; -fun vitrify_V : V; -fun vitrify_V2 : V2; -fun vitriol_N : N; -fun vitriolic_A : A; -fun vituperate_V2 : V2; -fun vituperation_N : N; -fun vituperative_A : A; -fun viva_N : N; -fun viva_voce_A : A; -fun viva_voce_A : A; -fun viva_voce_Adv : Adv; -fun viva_voce_N : N; -fun vivace_A : A; -fun vivace_Adv : Adv; -fun vivacious_A : A; -fun vivaciously_Adv : Adv; -fun vivacity_N : N; -fun vivarium_N : N; -fun viverrine_N : N; -fun vivid_A : A; -fun vividly_Adv : Adv; -fun vividness_N : N; -fun vivification_N : N; -fun viviparous_A : A; -fun vivisect_V2 : V2; -fun vivisection_N : N; -fun vivisectionist_N : N; -fun vixen_N : N; -fun vixenish_A : A; -fun vizier_N : N; -fun viziership_N : N; -fun vizsla_N : N; -fun vocable_N : N; -fun vocabulary_N : N; -fun vocal_A : A; -fun vocalic_A : A; -fun vocalist_N : N; -fun vocalize_V2 : V2; -fun vocally_Adv : Adv; -fun vocation_N : N; -fun vocational_A : A; -fun vocationally_Adv : Adv; -fun vocative_A : A; -fun vocative_N : N; -fun vociferate_V : V; -fun vociferate_V2 : V2; -fun vociferation_N : N; -fun vociferator_N : N; -fun vociferous_A : A; -fun vociferously_Adv : Adv; -fun vodka_N : N; -fun vogue_N : N; -fun voice_N : N; -fun voice_V2 : V2; -fun voiced_A : A; -fun voiceless_A : A; -fun voicelessness_N : N; -fun voiceprint_N : N; -fun voicer_N : N; -fun voicing_N : N; -fun void_A : A; -fun void_N : N; -fun void_V2 : V2; -fun voider_N : N; -fun voile_N : N; -fun vol_N : N; -fun vol_au_vent_N : N; -fun volant_A : A; -fun volatile_A : A; -fun volatile_N : N; -fun volatility_N : N; -fun volcanic_A : A; -fun volcanically_Adv : Adv; -fun volcanism_N : N; -fun volcano_N : N; -fun volcanology_N : N; -fun vole_N : N; -fun volition_N : N; -fun volitional_A : A; -fun volley_N : N; -fun volley_V : V; -fun volley_V2 : V2; -fun volleyball_N : N; -fun volt_N : N; -fun volt_ampere_N : N; -fun voltage_N : N; -fun voltaic_A : A; -fun volte_face_N : N; -fun voltmeter_N : N; -fun volubility_N : N; -fun voluble_A : A; -fun volume_N : N; -fun volumed_A : A; -fun volumeter_N : N; -fun volumetric_A : A; -fun volumetrically_Adv : Adv; -fun voluminous_A : A; -fun voluntarily_Adv : Adv; -fun voluntary_A : A; -fun voluntary_N : N; -fun volunteer_N : N; -fun volunteer_V : V; -fun volunteer_V2 : V2; -fun volunteer_V2V : V2V; -fun volunteer_VS : VS; -fun voluptuary_N : N; -fun voluptuous_A : A; -fun voluptuously_Adv : Adv; -fun voluptuousness_N : N; -fun volute_N : N; -fun voluted_A : A; -fun volution_N : N; -fun volva_N : N; -fun volvulus_N : N; -fun vomer_N : N; -fun vomit_N : N; -fun vomit_V : V; -fun vomit_V2 : V2; -fun vomiter_N : N; -fun vomitory_N : N; -fun von_neumann_PN : PN; -fun von_neumann_machine_PN : PN; -fun von_sternberg_PN : PN; -fun von_willebrand's_disease_PN : PN; -fun voodoo_N : N; -fun voodooism_N : N; -fun voracious_A : A; -fun voraciously_Adv : Adv; -fun voracity_N : N; -fun vortex_N : N; -fun vorticella_N : N; -fun votary_N : N; -fun vote_N : N; -fun vote_V : V; -fun vote_V2 : V2; -fun vote_VS : VS; -fun vote_VV : VV; -fun voteless_A : A; -fun voter_N : N; -fun votive_A : A; -fun vouch_V : V; -fun vouchee_N : N; -fun voucher_N : N; -fun vouchsafe_V2 : V2; -fun vouge_N : N; -fun voussoir_N : N; -fun vow_N : N; -fun vow_V2 : V2; -fun vow_VS : VS; -fun vow_VV : VV; -fun vowel_N : N; -fun vowellike_A : A; -fun vower_N : N; -fun vox_N : N; -fun vox_populi_N : N; -fun voyage_N : N; -fun voyage_V : V; -fun voyage_V2 : V2; -fun voyager_N : N; -fun voyeur_N : N; -fun voyeurism_N : N; -fun voyeuristic_A : A; -fun voyeuristically_Adv : Adv; -fun vp_N : N; -fun vroom_N : N; -fun vroom_V : V; -fun vroom_V2 : V2; -fun vs_Prep : Prep; -fun vulcanite_N : N; -fun vulcanization_N : N; -fun vulcanize_V2 : V2; -fun vulcanizer_N : N; -fun vulgar_A : A; -fun vulgarian_N : N; -fun vulgarism_N : N; -fun vulgarity_N : N; -fun vulgarization_N : N; -fun vulgarize_V2 : V2; -fun vulgarizer_N : N; -fun vulgate_N : N; -fun vulnerability_N : N; -fun vulnerable_A : A; -fun vulnerably_Adv : Adv; -fun vulpine_A : A; -fun vulture_N : N; -fun vulva_N : N; -fun vulvar_A : A; -fun vulvectomy_N : N; -fun vulvitis_N : N; -fun vulvovaginitis_N : N; -fun wad_N : N; -fun wad_V2 : V2; -fun wad_VS : VS; -fun wadding_N : N; -fun waddle_N : N; -fun waddle_V : V; -fun waddle_V2 : V2; -fun waddler_N : N; -fun wade_V : V; -fun wade_V2 : V2; -fun wader_N : N; -fun waders_N : N; -fun wadi_N : N; -fun wading_N : N; -fun wafer_N : N; -fun wafer_like_A : A; -fun wafer_thin_A : A; -fun wafer_thin_Adv : Adv; -fun waffle_N : N; -fun waffle_V : V; -fun waffle_V2 : V2; -fun waffler_N : N; -fun waft_N : N; -fun waft_V : V; -fun waft_V2 : V2; -fun wag_N : N; -fun wag_V : V; -fun wag_V2 : V2; -fun wage_N : N; -fun wage_V2 : V2; -fun wage_claim_N : N; -fun wage_earner_N : N; -fun wage_earning_A : A; -fun wage_freeze_N : N; -fun wager_N : N; -fun wager_V : V; -fun wager_V2 : V2; -fun wages_N : N; -fun waggery_N : N; -fun waggish_A : A; -fun waggishly_Adv : Adv; -fun waggishness_N : N; -fun waggle_V : V; -fun waggle_V2 : V2; -fun waggon_N : N; -fun waggoner_N : N; -fun wagon_N : N; -fun wagon_lit_N : N; -fun wagoner_N : N; -fun wagonwright_N : N; -fun wagtail_N : N; -fun wahoo_N : N; -fun waif_N : N; -fun wail_N : N; -fun wail_V : V; -fun wail_V2 : V2; -fun wailer_N : N; -fun wailing_N : N; -fun wain_N : N; -fun wainscot_N : N; -fun wainscoted_A : A; -fun wainscoting_N : N; -fun waist_N : N; -fun waist_deep_A : A; -fun waist_deep_Adv : Adv; -fun waist_deep_Adv : Adv; -fun waist_high_A : A; -fun waist_high_Adv : Adv; -fun waist_length_A : A; -fun waistband_N : N; -fun waistcoat_N : N; -fun waistline_N : N; -fun wait_N : N; -fun wait_V : V; -fun wait_V2 : V2; -fun wait_VV : VV; -fun waiter_N : N; -fun waiting_A : A; -fun waiting_list_N : N; -fun waiting_room_N : N; -fun waitress_N : N; -fun waive_V2 : V2; -fun waiver_N : N; -fun waiver_V : V; -fun wake_N : N; -fun wake_V : V; -fun wake_V2 : V2; -fun wakeful_A : A; -fun wakefulness_N : N; -fun waken_V : V; -fun waken_V2 : V2; -fun waker_N : N; -fun waking_A : A; -fun waking_N : N; -fun wale_N : N; -fun walk_N : N; -fun walk_V : V; -fun walk_V2 : V2; -fun walk_in_A : A; -fun walk_in_N : N; -fun walk_on_N : N; -fun walk_through_N : N; -fun walk_through_V : V; -fun walk_through_V2 : V2; -fun walk_to_A : A; -fun walk_up_A : A; -fun walk_up_N : N; -fun walkabout_N : N; -fun walkaway_N : N; -fun walker_N : N; -fun walkie_talkie_N : N; -fun walkie_talkie_N : N; -fun walking_N : N; -fun walkout_N : N; -fun walkover_N : N; -fun wall_N : N; -fun wall_V2 : V2; -fun wall_eyed_A : A; -fun wall_painting_N : N; -fun wallaby_N : N; -fun wallah_N : N; -fun wallboard_N : N; -fun wallet_N : N; -fun walleye_N : N; -fun walleyed_A : A; -fun wallflower_N : N; -fun wallop_N : N; -fun wallop_V2 : V2; -fun walloper_N : N; -fun walloping_A : A; -fun wallow_N : N; -fun wallow_V : V; -fun wallpaper_N : N; -fun wallpaperer_N : N; -fun wally_N : N; -fun walnut_N : N; -fun walrus_N : N; -fun waltz_N : N; -fun waltz_V : V; -fun waltz_V2 : V2; -fun waltzer_N : N; -fun wampum_N : N; -fun wan_A : A; -fun wand_N : N; -fun wander_V : V; -fun wander_V2 : V2; -fun wanderer_N : N; -fun wandering_N : N; -fun wanderlust_N : N; -fun wandflower_N : N; -fun wane_N : N; -fun wane_V : V; -fun wangle_N : N; -fun wangle_V2 : V2; -fun waning_A : A; -fun waning_N : N; -fun wank_N : N; -fun wank_V : V; -fun wanly_Adv : Adv; -fun wanness_N : N; -fun want_N : N; -fun want_V : V; -fun want_V2 : V2; -fun want_V2V : V2V; -fun want_VS : VS; -fun want_VV : VV; -fun want_ad_N : N; -fun wanted_A : A; -fun wanter_N : N; -fun wanton_A : A; -fun wanton_N : N; -fun wanton_V : V; -fun wantonly_Adv : Adv; -fun wantonness_N : N; -fun wapiti_N : N; -fun war_N : N; -fun war_V : V; -fun war_baby_N : N; -fun war_bride_N : N; -fun war_cloud_N : N; -fun war_cry_N : N; -fun war_dance_N : N; -fun war_god_N : N; -fun war_torn_A : A; -fun war_torn_A : A; -fun war_widow_N : N; -fun waratah_N : N; -fun warble_N : N; -fun warble_V : V; -fun warble_V2 : V2; -fun warbler_N : N; -fun ward_N : N; -fun ward_V2 : V2; -fun warden_N : N; -fun wardenship_N : N; -fun warder_N : N; -fun wardership_N : N; -fun wardress_N : N; -fun wardrobe_N : N; -fun wardroom_N : N; -fun ware_N : N; -fun ware_V2 : V2; -fun warehouse_N : N; -fun warehouser_N : N; -fun warehousing_N : N; -fun warfare_N : N; -fun warfarin_N : N; -fun warhead_N : N; -fun warhorse_N : N; -fun warily_Adv : Adv; -fun wariness_N : N; -fun warlike_A : A; -fun warlock_N : N; -fun warlord_N : N; -fun warm_A : A; -fun warm_V : V; -fun warm_V2 : V2; -fun warm_blooded_A : A; -fun warm_blooded_A : A; -fun warm_hearted_A : A; -fun warm_toned_A : A; -fun warm_up_N : N; -fun warmed_A : A; -fun warmer_N : N; -fun warmhearted_A : A; -fun warmheartedness_N : N; -fun warming_A : A; -fun warming_pan_N : N; -fun warmly_Adv : Adv; -fun warmonger_N : N; -fun warmongering_N : N; -fun warmth_N : N; -fun warn_V : V; -fun warn_V2 : V2; -fun warn_VS : VS; -fun warner_N : N; -fun warning_A : A; -fun warning_N : N; -fun warp_N : N; -fun warp_V : V; -fun warp_V2 : V2; -fun warpaint_N : N; -fun warpath_N : N; -fun warped_A : A; -fun warplane_N : N; -fun warrant_N : N; -fun warrant_V2 : V2; -fun warrant_VS : VS; -fun warrantee_N : N; -fun warrantor_N : N; -fun warranty_N : N; -fun warren_N : N; -fun warrener_N : N; -fun warrigal_N : N; -fun warrior_N : N; -fun warship_N : N; -fun wart_N : N; -fun warthog_N : N; -fun wartime_N : N; -fun wary_A : A; -fun wasabi_N : N; -fun wash_N : N; -fun wash_V : V; -fun wash_V2 : V2; -fun wash_and_wear_A : A; -fun wash_and_wear_N : N; -fun wash_drawing_N : N; -fun wash_hand_basin_N : N; -fun wash_hand_stand_N : N; -fun wash_house_N : N; -fun wash_leather_N : N; -fun washable_A : A; -fun washbasin_N : N; -fun washboard_N : N; -fun washbowl_N : N; -fun washcloth_N : N; -fun washday_N : N; -fun washed_A : A; -fun washer_N : N; -fun washerman_N : N; -fun washerwoman_N : N; -fun washhouse_N : N; -fun washing_N : N; -fun washing_day_N : N; -fun washing_machine_N : N; -fun washing_up_N : N; -fun washing_up_N : N; -fun washout_N : N; -fun washroom_N : N; -fun washstand_N : N; -fun washtub_N : N; -fun washup_N : N; -fun washwoman_N : N; -fun washy_A : A; -fun wasp_N : N; -fun wasp_waisted_A : A; -fun waspish_A : A; -fun wassail_N : N; -fun wassailer_N : N; -fun wastage_N : N; -fun waste_A : A; -fun waste_N : N; -fun waste_V : V; -fun waste_V2 : V2; -fun waste_paper_basket_N : N; -fun waste_pipe_N : N; -fun wastebasket_N : N; -fun wastebin_N : N; -fun wasteful_A : A; -fun wastefully_Adv : Adv; -fun wasteland_N : N; -fun waster_N : N; -fun wastrel_N : N; -fun watch_N : N; -fun watch_V : V; -fun watch_V2 : V2; -fun watch_V2V : V2V; -fun watch_VS : VS; -fun watch_chain_N : N; -fun watch_glass_N : N; -fun watch_guard_N : N; -fun watch_key_N : N; -fun watchband_N : N; -fun watchdog_N : N; -fun watcher_N : N; -fun watchful_A : A; -fun watchfulness_N : N; -fun watchmaker_N : N; -fun watchman_N : N; -fun watchtower_N : N; -fun watchword_N : N; -fun water_N : N; -fun water_V : V; -fun water_V2 : V2; -fun water_biscuit_N : N; -fun water_blister_N : N; -fun water_bottle_N : N; -fun water_buffalo_N : N; -fun water_butt_N : N; -fun water_cart_N : N; -fun water_closet_N : N; -fun water_cooled_A : A; -fun water_finder_N : N; -fun water_glass_N : N; -fun water_hole_N : N; -fun water_ice_N : N; -fun water_insoluble_A : A; -fun water_jacket_N : N; -fun water_level_N : N; -fun water_lily_N : N; -fun water_line_N : N; -fun water_loving_A : A; -fun water_main_N : N; -fun water_mint_N : N; -fun water_nymph_N : N; -fun water_polo_N : N; -fun water_power_N : N; -fun water_rat_N : N; -fun water_rate_N : N; -fun water_rate_N : N; -fun water_repellent_A : A; -fun water_shield_N : N; -fun water_skiing_N : N; -fun water_skiing_N : N; -fun water_skin_N : N; -fun water_softener_N : N; -fun water_soluble_A : A; -fun water_spaniel_N : N; -fun water_supply_N : N; -fun water_tower_N : N; -fun water_vole_N : N; -fun water_waggon_N : N; -fun water_wagon_N : N; -fun water_washed_A : A; -fun water_wheel_N : N; -fun water_worn_A : A; -fun waterbird_N : N; -fun waterborne_A : A; -fun waterbuck_N : N; -fun watercannon_N : N; -fun waterchute_N : N; -fun watercolor_N : N; -fun watercolorist_N : N; -fun watercolour_N : N; -fun watercolourist_N : N; -fun watercourse_N : N; -fun watercraft_N : N; -fun watercress_N : N; -fun waterdog_N : N; -fun waterer_N : N; -fun waterfall_N : N; -fun waterfowl_N : N; -fun waterfront_N : N; -fun waterhen_N : N; -fun waterhyacinth_N : N; -fun wateriness_N : N; -fun watering_N : N; -fun watering_can_N : N; -fun watering_cart_N : N; -fun waterleaf_N : N; -fun waterless_A : A; -fun waterline_N : N; -fun waterlogged_A : A; -fun waterloo_N : N; -fun waterman_N : N; -fun watermark_N : N; -fun watermeal_N : N; -fun watermelon_N : N; -fun watermill_N : N; -fun waterpower_N : N; -fun waterproof_A : A; -fun waterproof_N : N; -fun waterproof_V2 : V2; -fun waterproofing_N : N; -fun watershed_N : N; -fun waterside_N : N; -fun waterskin_N : N; -fun waterspout_N : N; -fun watertable_N : N; -fun watertight_A : A; -fun waterway_N : N; -fun waterweed_N : N; -fun waterwheel_N : N; -fun waterworks_N : N; -fun waterworn_A : A; -fun watery_A : A; -fun watt_N : N; -fun watt_hour_N : N; -fun wattage_N : N; -fun wattle_N : N; -fun wattmeter_N : N; -fun wave_N : N; -fun wave_V : V; -fun wave_V2 : V2; -fun waveguide_N : N; -fun wavelength_N : N; -fun waver_N : N; -fun waver_V : V; -fun waverer_N : N; -fun waviness_N : N; -fun wavy_A : A; -fun waw_N : N; -fun wax_N : N; -fun wax_V : V; -fun wax_V2 : V2; -fun wax_chandler_N : N; -fun wax_chandler_N : N; -fun wax_paper_N : N; -fun waxed_A : A; -fun waxen_A : A; -fun waxflower_N : N; -fun waxiness_N : N; -fun waxing_A : A; -fun waxing_N : N; -fun waxmallow_N : N; -fun waxwing_N : N; -fun waxwork_N : N; -fun waxy_A : A; -fun waxycap_N : N; -fun way_Adv : Adv; -fun way_N : N; -fun way_out_A : A; -fun waybill_N : N; -fun wayfarer_N : N; -fun wayfaring_A : A; -fun wayfaring_N : N; -fun waylay_V2 : V2; -fun ways_N : N; -fun wayside_N : N; -fun wayward_A : A; -fun wc_N : N; -fun we_Pron : Pron; -fun weak_A : A; -fun weak_kneed_A : A; -fun weak_kneed_A : A; -fun weak_stemmed_A : A; -fun weaken_V : V; -fun weaken_V2 : V2; -fun weakened_A : A; -fun weakener_N : N; -fun weakening_A : A; -fun weakening_N : N; -fun weakfish_N : N; -fun weakling_N : N; -fun weakly_A : A; -fun weakly_Adv : Adv; -fun weakness_N : N; -fun weal_N : N; -fun weald_N : N; -fun wealth_N : N; -fun wealthily_Adv : Adv; -fun wealthy_A : A; -fun wean_V2 : V2; -fun weaned_A : A; -fun weaning_N : N; -fun weapon_N : N; -fun weaponless_A : A; -fun weaponry_N : N; -fun weapons_grade_A : A; -fun wear_N : N; -fun wear_V : V; -fun wear_V2 : V2; -fun wearable_A : A; -fun wearer_N : N; -fun wearily_Adv : Adv; -fun weariness_N : N; -fun wearing_A : A; -fun wearisome_A : A; -fun weary_A : A; -fun weary_V : V; -fun weary_V2 : V2; -fun weasel_N : N; -fun weasel_out_V2 : V2; -fun weather_N : N; -fun weather_V : V; -fun weather_V2 : V2; -fun weather_beaten_A : A; -fun weather_beaten_A : A; -fun weather_bound_A : A; -fun weather_bound_A : A; -fun weather_bureau_N : N; -fun weather_chart_N : N; -fun weather_glass_N : N; -fun weather_map_N : N; -fun weather_ship_N : N; -fun weather_station_N : N; -fun weather_stripped_A : A; -fun weather_vane_N : N; -fun weatherboarding_N : N; -fun weathercock_N : N; -fun weatherglass_N : N; -fun weatherliness_N : N; -fun weatherly_A : A; -fun weatherman_N : N; -fun weatherproof_A : A; -fun weathervane_N : N; -fun weave_N : N; -fun weave_V : V; -fun weave_V2 : V2; -fun weaver_N : N; -fun weaverbird_N : N; -fun weaving_N : N; -fun web_N : N; -fun web_footed_A : A; -fun web_footed_A : A; -fun web_toed_A : A; -fun webbed_A : A; -fun webbing_N : N; -fun webcam_N : N; -fun weber_N : N; -fun webfoot_N : N; -fun webmaster_N : N; -fun webworm_N : N; -fun wed_A : A; -fun wed_V : V; -fun wed_V2 : V2; -fun wedding_N : N; -fun wedding_cake_N : N; -fun wedding_ring_N : N; -fun wedge_N : N; -fun wedge_V : V; -fun wedge_V2 : V2; -fun wedge_shaped_A : A; -fun wedgie_N : N; -fun wedlock_N : N; -fun wednesday_N : N; -fun wee_A : A; -fun wee_N : N; -fun wee_V : V; -fun wee_wee_N : N; -fun weed_N : N; -fun weed_V : V; -fun weed_V2 : V2; -fun weeder_N : N; -fun weedkiller_N : N; -fun weedless_A : A; -fun weeds_N : N; -fun weedy_A : A; -fun week_N : N; -fun week_after_week_Adv : Adv; -fun week_by_week_Adv : Adv; -fun week_from_monday_PN : PN; -fun weekday_N : N; -fun weekend_N : N; -fun weekend_V : V; -fun weekender_N : N; -fun weeklong_A : A; -fun weekly_A : A; -fun weekly_Adv : Adv; -fun weekly_N : N; -fun weeknight_N : N; -fun weeny_A : A; -fun weep_V : V; -fun weep_V2 : V2; -fun weeper_N : N; -fun weepiness_N : N; -fun weeping_A : A; -fun weepy_A : A; -fun weevil_N : N; -fun weft_N : N; -fun weigela_N : N; -fun weigh_V : V; -fun weigh_V2 : V2; -fun weighbridge_N : N; -fun weigher_N : N; -fun weighing_machine_N : N; -fun weight_N : N; -fun weight_V2 : V2; -fun weighted_A : A; -fun weightily_Adv : Adv; -fun weightiness_N : N; -fun weightless_A : A; -fun weightlessness_N : N; -fun weightlift_N : N; -fun weightlifter_N : N; -fun weightlifting_N : N; -fun weighty_A : A; -fun weir_N : N; -fun weird_A : A; -fun weirdie_N : N; -fun weirdly_Adv : Adv; -fun weirdness_N : N; -fun weka_N : N; -fun welcher_N : N; -fun welcome_A : A; -fun welcome_N : N; -fun welcome_V2 : V2; -fun welcoming_A : A; -fun weld_N : N; -fun weld_V : V; -fun weld_V2 : V2; -fun welder_N : N; -fun welding_N : N; -fun weldment_N : N; -fun welfare_N : N; -fun welfarist_A : A; -fun welkin_N : N; -fun well_A : A; -fun well_Adv : Adv; -fun well_N : N; -fun well_V : V; -fun well_adjusted_A : A; -fun well_adjusted_A : A; -fun well_advised_A : A; -fun well_advised_A : A; -fun well_appointed_A : A; -fun well_appointed_A : A; -fun well_balanced_A : A; -fun well_balanced_A : A; -fun well_behaved_A : A; -fun well_behaved_A : A; -fun well_being_N : N; -fun well_born_A : A; -fun well_bound_A : A; -fun well_branched_A : A; -fun well_bred_A : A; -fun well_bred_A : A; -fun well_conducted_A : A; -fun well_conducted_A : A; -fun well_connected_A : A; -fun well_connected_A : A; -fun well_defined_A : A; -fun well_disposed_A : A; -fun well_doer_N : N; -fun well_doing_N : N; -fun well_done_A : A; -fun well_favoured_A : A; -fun well_fed_A : A; -fun well_found_A : A; -fun well_founded_A : A; -fun well_groomed_A : A; -fun well_groomed_A : A; -fun well_grounded_A : A; -fun well_heeled_A : A; -fun well_informed_A : A; -fun well_intentioned_A : A; -fun well_intentioned_A : A; -fun well_knit_A : A; -fun well_knit_A : A; -fun well_known_A : A; -fun well_known_A : A; -fun well_lined_A : A; -fun well_lined_A : A; -fun well_made_A : A; -fun well_marked_A : A; -fun well_marked_A : A; -fun well_meaning_A : A; -fun well_meaning_A : A; -fun well_meant_A : A; -fun well_mined_A : A; -fun well_nigh_Adv : Adv; -fun well_off_A : A; -fun well_ordered_A : A; -fun well_preserved_A : A; -fun well_proportioned_A : A; -fun well_qualified_A : A; -fun well_read_A : A; -fun well_read_A : A; -fun well_rounded_A : A; -fun well_set_A : A; -fun well_shaven_A : A; -fun well_spoken_A : A; -fun well_spoken_A : A; -fun well_thought_out_A : A; -fun well_timed_A : A; -fun well_to_do_A : A; -fun well_tried_A : A; -fun well_turned_A : A; -fun well_turned_A : A; -fun well_water_N : N; -fun well_wisher_N : N; -fun well_wishing_A : A; -fun well_wishing_N : N; -fun well_worn_A : A; -fun well_worn_A : A; -fun wellbeing_N : N; -fun wellborn_A : A; -fun wellerism_N : N; -fun wellhead_N : N; -fun wellington_N : N; -fun welsh_A : A; -fun welsh_N : N; -fun welsh_V : V; -fun welsher_N : N; -fun welshman_N : N; -fun welt_N : N; -fun welter_A : A; -fun welter_N : N; -fun welter_V : V; -fun welterweight_N : N; -fun welwitschia_N : N; -fun wen_N : N; -fun wench_N : N; -fun wench_V : V; -fun wencher_N : N; -fun wend_V2 : V2; -fun werewolf_N : N; -fun wesleyan_A : A; -fun wesleyan_N : N; -fun west_A : A; -fun west_Adv : Adv; -fun west_N : N; -fun west_central_A : A; -fun west_country_A : A; -fun west_end_A : A; -fun westbound_A : A; -fun westerly_A : A; -fun westerly_Adv : Adv; -fun western_A : A; -fun western_N : N; -fun westerner_N : N; -fun westernization_N : N; -fun westernize_V2 : V2; -fun westernmost_A : A; -fun westside_A : A; -fun westward_A : A; -fun westward_Adv : Adv; -fun westwards_Adv : Adv; -fun wet_A : A; -fun wet_N : N; -fun wet_V2 : V2; -fun wet_nurse_N : N; -fun wether_N : N; -fun wetland_N : N; -fun wetness_N : N; -fun wetter_N : N; -fun wetting_N : N; -fun whack_N : N; -fun whack_V2 : V2; -fun whacked_A : A; -fun whacker_N : N; -fun whacking_A : A; -fun whacking_Adv : Adv; -fun whacking_N : N; -fun whale_N : N; -fun whale_V : V; -fun whaleboat_N : N; -fun whalebone_N : N; -fun whaler_N : N; -fun whaling_gun_N : N; -fun whammy_N : N; -fun whang_Adv : Adv; -fun whang_N : N; -fun whang_V2 : V2; -fun wharf_N : N; -fun wharfage_N : N; -fun what_A : A; -fun what_for_N : N; -fun whate'er_A : A; -fun whatever_A : A; -fun whatnot_N : N; -fun whatsoe'er_A : A; -fun whatsoever_A : A; -fun wheat_N : N; -fun wheatear_N : N; -fun wheaten_A : A; -fun wheatfield_N : N; -fun wheatflake_N : N; -fun wheatgrass_N : N; -fun wheatworm_N : N; -fun wheedle_V2 : V2; -fun wheedler_N : N; -fun wheel_N : N; -fun wheel_V : V; -fun wheel_V2 : V2; -fun wheel_like_A : A; -fun wheelbarrow_N : N; -fun wheelbase_N : N; -fun wheelchair_N : N; -fun wheeled_A : A; -fun wheeler_N : N; -fun wheelhouse_N : N; -fun wheeling_N : N; -fun wheelless_A : A; -fun wheelwork_N : N; -fun wheelwright_N : N; -fun wheeze_N : N; -fun wheeze_V : V; -fun wheeze_V2 : V2; -fun wheezily_Adv : Adv; -fun wheeziness_N : N; -fun wheezy_A : A; -fun whelk_N : N; -fun whelk_V : V; -fun whelp_N : N; -fun whelp_V : V; -fun when_Adv : Adv; -fun when_Subj : Subj; -fun whence_Adv : Adv; -fun whencesoever_A : A; -fun whenever_Adv : Adv; -fun where_Adv : Adv; -fun whereabouts_Adv : Adv; -fun whereabouts_N : N; -fun whereas_Prep : Prep; -fun whereat_Adv : Adv; -fun whereby_Adv : Adv; -fun wherefore_Adv : Adv; -fun wherein_Adv : Adv; -fun whereof_Adv : Adv; -fun whereon_Adv : Adv; -fun wheresoever_Adv : Adv; -fun whereto_Adv : Adv; -fun whereunto_Adv : Adv; -fun whereupon_Adv : Adv; -fun wherever_Adv : Adv; -fun wherewith_Adv : Adv; -fun wherewithal_Adv : Adv; -fun wherewithal_N : N; -fun wherry_N : N; -fun whet_V2 : V2; -fun whether_Prep : Prep; -fun whetstone_N : N; -fun whey_N : N; -fun which_A : A; -fun whichever_A : A; -fun whichsoever_A : A; -fun whiff_N : N; -fun whiffer_N : N; -fun whiffletree_N : N; -fun whig_N : N; -fun while_N : N; -fun while_Subj : Subj; -fun while_V2 : V2; -fun whilst_Subj : Subj; -fun whim_N : N; -fun whimper_N : N; -fun whimper_V : V; -fun whimper_V2 : V2; -fun whimsey_N : N; -fun whimsical_A : A; -fun whimsicality_N : N; -fun whimsy_N : N; -fun whin_N : N; -fun whinchat_N : N; -fun whine_N : N; -fun whine_V : V; -fun whine_V2 : V2; -fun whiner_N : N; -fun whinny_N : N; -fun whinny_V : V; -fun whinstone_N : N; -fun whip_N : N; -fun whip_V : V; -fun whip_V2 : V2; -fun whip_round_N : N; -fun whip_round_N : N; -fun whip_scorpion_N : N; -fun whip_snake_N : N; -fun whipcord_N : N; -fun whiplash_N : N; -fun whipper_in_N : N; -fun whipper_in_N : N; -fun whippersnapper_N : N; -fun whippet_N : N; -fun whipping_N : N; -fun whipping_boy_N : N; -fun whipping_post_N : N; -fun whipping_top_N : N; -fun whippoorwill_N : N; -fun whippy_A : A; -fun whipsaw_V2 : V2; -fun whipstitch_N : N; -fun whiptail_N : N; -fun whir_N : N; -fun whir_V : V; -fun whir_V2 : V2; -fun whirl_N : N; -fun whirl_V : V; -fun whirl_V2 : V2; -fun whirler_N : N; -fun whirligig_N : N; -fun whirlpool_N : N; -fun whirlwind_N : N; -fun whirr_N : N; -fun whirr_V : V; -fun whirring_A : A; -fun whish_V : V; -fun whish_V2 : V2; -fun whisk_N : N; -fun whisk_V : V; -fun whisk_V2 : V2; -fun whisker_N : N; -fun whiskered_A : A; -fun whiskey_N : N; -fun whisky_N : N; -fun whisper_N : N; -fun whisper_V : V; -fun whisper_V2 : V2; -fun whispered_A : A; -fun whisperer_N : N; -fun whispering_N : N; -fun whispering_gallery_N : N; -fun whist_N : N; -fun whist_drive_N : N; -fun whistle_N : N; -fun whistle_V : V; -fun whistle_V2 : V2; -fun whistle_stop_N : N; -fun whistler_N : N; -fun whistling_N : N; -fun whit_N : N; -fun white_A : A; -fun white_N : N; -fun white_blotched_A : A; -fun white_bread_A : A; -fun white_collar_A : A; -fun white_collar_A : A; -fun white_edged_A : A; -fun white_flowered_A : A; -fun white_hot_A : A; -fun white_hot_A : A; -fun white_lipped_A : A; -fun white_lipped_A : A; -fun white_livered_A : A; -fun white_pink_A : A; -fun white_ribbed_A : A; -fun white_seeded_A : A; -fun white_shoe_A : A; -fun white_streaked_A : A; -fun white_tie_A : A; -fun whitebait_N : N; -fun whitecap_N : N; -fun whitecup_N : N; -fun whiteface_N : N; -fun whitefish_N : N; -fun whitefly_N : N; -fun whitehead_N : N; -fun whitelash_N : N; -fun whiten_V : V; -fun whiten_V2 : V2; -fun whiteness_N : N; -fun whitening_N : N; -fun whiteout_N : N; -fun whitethorn_N : N; -fun whitewash_N : N; -fun whitewash_V2 : V2; -fun whitewashed_A : A; -fun whitey_N : N; -fun whither_Adv : Adv; -fun whithersoever_Adv : Adv; -fun whiting_N : N; -fun whitish_A : A; -fun whitlow_N : N; -fun whitlowwort_N : N; -fun whitsun_N : N; -fun whitsuntide_N : N; -fun whittle_V : V; -fun whittle_V2 : V2; -fun whittler_N : N; -fun whiz_N : N; -fun whiz_V : V; -fun whiz_V2 : V2; -fun whizbang_N : N; -fun whizz_kid_N : N; -fun who_N : N; -fun whodunit_N : N; -fun whole_A : A; -fun whole_N : N; -fun whole_wheat_N : N; -fun wholehearted_A : A; -fun wholeheartedly_Adv : Adv; -fun wholeheartedness_N : N; -fun wholemeal_N : N; -fun wholeness_N : N; -fun wholesale_A : A; -fun wholesale_Adv : Adv; -fun wholesale_N : N; -fun wholesale_V2 : V2; -fun wholesaler_N : N; -fun wholesome_A : A; -fun wholesomely_Adv : Adv; -fun wholesomeness_N : N; -fun wholly_Adv : Adv; -fun whoop_N : N; -fun whoop_V : V; -fun whoop_V2 : V2; -fun whoopee_N : N; -fun whooper_N : N; -fun whooping_cough_N : N; -fun whoosh_V : V; -fun whoosh_V2 : V2; -fun whop_V2 : V2; -fun whopper_N : N; -fun whopping_A : A; -fun whopping_Adv : Adv; -fun whore_N : N; -fun whorehouse_N : N; -fun whoremaster_N : N; -fun whoremonger_N : N; -fun whorl_N : N; -fun whorled_A : A; -fun whump_V : V; -fun whump_V2 : V2; -fun why_Adv : Adv; -fun why_N : N; -fun whydah_N : N; -fun wi_N : N; -fun wick_N : N; -fun wicked_A : A; -fun wickedly_Adv : Adv; -fun wickedness_N : N; -fun wicker_N : N; -fun wickerwork_N : N; -fun wicket_N : N; -fun wicket_door_N : N; -fun wicket_gate_N : N; -fun wicket_keeper_N : N; -fun wicket_keeper_N : N; -fun wickiup_N : N; -fun wide_A : A; -fun wide_Adv : Adv; -fun wide_awake_A : A; -fun wide_eyed_A : A; -fun wide_open_A : A; -fun wide_ranging_A : A; -fun wide_screen_A : A; -fun widely_Adv : Adv; -fun widen_V : V; -fun widen_V2 : V2; -fun wideness_N : N; -fun widening_N : N; -fun widespread_A : A; -fun widgeon_N : N; -fun widow_N : N; -fun widow_V2 : V2; -fun widowed_A : A; -fun widower_N : N; -fun widowhood_N : N; -fun width_N : N; -fun wield_V2 : V2; -fun wieldy_A : A; -fun wiesenboden_N : N; -fun wife_N : N; -fun wifelike_A : A; -fun wifely_A : A; -fun wig_N : N; -fun wigged_A : A; -fun wigging_N : N; -fun wiggle_N : N; -fun wiggle_V : V; -fun wiggle_V2 : V2; -fun wiggler_N : N; -fun wiggliness_N : N; -fun wiggly_A : A; -fun wight_N : N; -fun wigless_A : A; -fun wigmaker_N : N; -fun wigwam_N : N; -fun wild_A : A; -fun wild_Adv : Adv; -fun wild_N : N; -fun wild_china_tree_PN : PN; -fun wild_eyed_A : A; -fun wildcat_A : A; -fun wildcat_N : N; -fun wildcatter_N : N; -fun wildebeest_N : N; -fun wilderness_N : N; -fun wildfire_N : N; -fun wildflower_N : N; -fun wildfowl_N : N; -fun wilding_N : N; -fun wildlife_N : N; -fun wildly_Adv : Adv; -fun wildness_N : N; -fun wile_N : N; -fun wilful_A : A; -fun wilfulness_N : N; -fun will_N : N; -fun will_V : V; -fun will_V2 : V2; -fun will_o'_the_wisp_N : N; -fun will_o'_the_wisp_N : N; -fun willed_A : A; -fun willet_N : N; -fun willful_A : A; -fun willfully_Adv : Adv; -fun willies_N : N; -fun willing_A : A; -fun willing_and_able_A : A; -fun willingly_Adv : Adv; -fun willingness_N : N; -fun willow_N : N; -fun willow_pattern_N : N; -fun willow_tree_N : N; -fun willowherb_N : N; -fun willowware_N : N; -fun willowy_A : A; -fun willpower_N : N; -fun willy_nilly_Adv : Adv; -fun willy_nilly_Adv : Adv; -fun wilt_N : N; -fun wilt_V : V; -fun wilt_V2 : V2; -fun wilton_N : N; -fun wily_A : A; -fun wimp_N : N; -fun wimpish_A : A; -fun wimple_N : N; -fun win_N : N; -fun win_V : V; -fun win_V2 : V2; -fun wince_N : N; -fun wince_V : V; -fun wince_V2 : V2; -fun wincey_N : N; -fun winceyette_N : N; -fun winch_N : N; -fun winch_V2 : V2; -fun wind_N : N; -fun wind_V : V; -fun wind_V2 : V2; -fun wind_gauge_N : N; -fun wind_tunnel_N : N; -fun windage_N : N; -fun windbag_N : N; -fun windblown_A : A; -fun windbreak_N : N; -fun windbreaker_N : N; -fun windburn_N : N; -fun windburned_A : A; -fun windcheater_N : N; -fun winder_N : N; -fun windfall_N : N; -fun windflower_N : N; -fun windily_Adv : Adv; -fun windiness_N : N; -fun winding_sheet_N : N; -fun windjammer_N : N; -fun windlass_N : N; -fun windless_A : A; -fun windmill_N : N; -fun window_N : N; -fun window_box_N : N; -fun window_dressing_N : N; -fun window_washing_N : N; -fun windowpane_N : N; -fun windowsill_N : N; -fun windpipe_N : N; -fun windscreen_N : N; -fun windscreen_wiper_N : N; -fun windshield_N : N; -fun windsock_N : N; -fun windstorm_N : N; -fun windswept_A : A; -fun windup_A : A; -fun windward_A : A; -fun windward_Adv : Adv; -fun windward_N : N; -fun windy_A : A; -fun wine_N : N; -fun wine_V2 : V2; -fun wine_red_A : A; -fun wineberry_N : N; -fun wineglass_N : N; -fun winemaking_N : N; -fun winepress_N : N; -fun winery_N : N; -fun wineskin_N : N; -fun wing_N : N; -fun wing_V : V; -fun wing_V2 : V2; -fun wing_commander_N : N; -fun wing_nut_N : N; -fun wing_screw_N : N; -fun wingback_N : N; -fun winged_A : A; -fun winger_N : N; -fun wingless_A : A; -fun winglike_A : A; -fun wingman_N : N; -fun wings_N : N; -fun wingspan_N : N; -fun wingspread_N : N; -fun wingstem_N : N; -fun wink_N : N; -fun wink_V : V; -fun wink_V2 : V2; -fun winker_N : N; -fun winkle_N : N; -fun winkle_V2 : V2; -fun winless_A : A; -fun winner_N : N; -fun winning_N : N; -fun winning_post_N : N; -fun winnings_N : N; -fun winnow_N : N; -fun winnow_V2 : V2; -fun winsome_A : A; -fun winsomely_Adv : Adv; -fun winsomeness_N : N; -fun winter_N : N; -fun winter_V : V; -fun winter_blooming_A : A; -fun wintergreen_N : N; -fun wintery_A : A; -fun wintry_A : A; -fun winy_A : A; -fun wipe_N : N; -fun wipe_V : V; -fun wipe_V2 : V2; -fun wipeout_N : N; -fun wiper_N : N; -fun wire_N : N; -fun wire_V : V; -fun wire_V2 : V2; -fun wire_haired_A : A; -fun wire_haired_A : A; -fun wire_puller_N : N; -fun wired_A : A; -fun wirehair_N : N; -fun wireless_A : A; -fun wireless_N : N; -fun wireless_V2 : V2; -fun wireman_N : N; -fun wirepuller_N : N; -fun wirer_N : N; -fun wiretap_N : N; -fun wirework_N : N; -fun wireworm_N : N; -fun wiriness_N : N; -fun wiring_N : N; -fun wiry_A : A; -fun wiry_stemmed_A : A; -fun wisdom_N : N; -fun wisdom_tooth_N : N; -fun wise_A : A; -fun wise_N : N; -fun wiseacre_N : N; -fun wisecrack_N : N; -fun wisecrack_V : V; -fun wisely_Adv : Adv; -fun wisent_N : N; -fun wish_N : N; -fun wish_V : V; -fun wish_V2 : V2; -fun wish_V2V : V2V; -fun wish_VS : VS; -fun wish_VV : VV; -fun wish_wash_N : N; -fun wishbone_N : N; -fun wishful_A : A; -fun wishfully_Adv : Adv; -fun wishfulness_N : N; -fun wishing_cap_N : N; -fun wishy_washy_A : A; -fun wisp_N : N; -fun wisplike_A : A; -fun wispy_A : A; -fun wisteria_N : N; -fun wistful_A : A; -fun wistfully_Adv : Adv; -fun wistfulness_N : N; -fun wit_N : N; -fun witch_N : N; -fun witch_doctor_N : N; -fun witch_elm_N : N; -fun witch_hazel_N : N; -fun witch_hunt_N : N; -fun witch_hunt_N : N; -fun witch_hunter_N : N; -fun witchcraft_N : N; -fun witchery_N : N; -fun witchgrass_N : N; -fun witching_A : A; -fun witching_N : N; -fun witchlike_A : A; -fun with_Prep : Prep; -fun withal_Adv : Adv; -fun withdraw_V : V; -fun withdraw_V2 : V2; -fun withdrawal_N : N; -fun withdrawer_N : N; -fun withe_N : N; -fun wither_V : V; -fun wither_V2 : V2; -fun witheringly_Adv : Adv; -fun withers_N : N; -fun withhold_V2 : V2; -fun withholder_N : N; -fun withholding_N : N; -fun within_Prep : Prep; -fun without_Prep : Prep; -fun without_a_stitch_A : A; -fun withstand_V2 : V2; -fun withstander_N : N; -fun withy_N : N; -fun witless_A : A; -fun witness_N : N; -fun witness_V : V; -fun witness_V2 : V2; -fun witness_box_N : N; -fun witness_stand_N : N; -fun wits_N : N; -fun witticism_N : N; -fun wittily_Adv : Adv; -fun witting_A : A; -fun wittingly_Adv : Adv; -fun wittol_N : N; -fun witty_A : A; -fun wive_V : V; -fun wive_V2 : V2; -fun wizard_A : A; -fun wizard_N : N; -fun wizardry_N : N; -fun wizened_A : A; -fun wk_N : N; -fun woad_N : N; -fun wobble_N : N; -fun wobble_V : V; -fun wobble_V2 : V2; -fun wobbler_N : N; -fun wobbling_A : A; -fun wobbly_A : A; -fun woe_N : N; -fun woebegone_A : A; -fun woeful_A : A; -fun wog_N : N; -fun wok_N : N; -fun wold_N : N; -fun wolf_N : N; -fun wolf_V2 : V2; -fun wolf's_bane_N : N; -fun wolf_cub_N : N; -fun wolf_sized_A : A; -fun wolffish_N : N; -fun wolfhound_N : N; -fun wolfish_A : A; -fun wolfishly_Adv : Adv; -fun wolflike_A : A; -fun wolfram_N : N; -fun wolframite_N : N; -fun wolfsbane_N : N; -fun wollastonite_N : N; -fun wolverine_N : N; -fun woman_N : N; -fun womanhood_N : N; -fun womanish_A : A; -fun womanize_V : V; -fun womanizer_N : N; -fun womankind_N : N; -fun womanlike_A : A; -fun womanliness_N : N; -fun womanly_A : A; -fun womb_N : N; -fun wombat_N : N; -fun won_A : A; -fun wonder_N : N; -fun wonder_V : V; -fun wonder_V2 : V2; -fun wonder_VS : VS; -fun wonder_struck_A : A; -fun wonder_struck_A : A; -fun wonderer_N : N; -fun wonderful_A : A; -fun wonderfully_Adv : Adv; -fun wonderingly_Adv : Adv; -fun wonderland_N : N; -fun wonderment_N : N; -fun wonderworking_A : A; -fun wondrous_A : A; -fun wondrous_Adv : Adv; -fun wonky_A : A; -fun wont_A : A; -fun wont_N : N; -fun wonted_A : A; -fun woo_V2 : V2; -fun wood_N : N; -fun wood_block_N : N; -fun wood_fired_A : A; -fun wood_frog_N : N; -fun wood_pulp_N : N; -fun woodbine_N : N; -fun woodborer_N : N; -fun woodcarver_N : N; -fun woodcarving_N : N; -fun woodcock_N : N; -fun woodcraft_N : N; -fun woodcut_N : N; -fun woodcutter_N : N; -fun wooded_A : A; -fun wooden_A : A; -fun woodenheaded_A : A; -fun woodenness_N : N; -fun woodenware_N : N; -fun woodhewer_N : N; -fun woodiness_N : N; -fun woodland_N : N; -fun woodlouse_N : N; -fun woodman_N : N; -fun woodpecker_N : N; -fun woodpile_N : N; -fun woodruff_N : N; -fun woodscrew_N : N; -fun woodshed_N : N; -fun woodsia_N : N; -fun woodsman_N : N; -fun woodsy_A : A; -fun woodwaxen_N : N; -fun woodwind_N : N; -fun woodwork_N : N; -fun woodworker_N : N; -fun woodworm_N : N; -fun woody_A : A; -fun woody_stemmed_A : A; -fun wooer_N : N; -fun woof_N : N; -fun woof_V : V; -fun woofer_N : N; -fun wool_N : N; -fun woolen_A : A; -fun woolgathering_A : A; -fun woolgathering_N : N; -fun woollen_A : A; -fun woolly_A : A; -fun woolly_stemmed_A : A; -fun wooly_A : A; -fun wooly_N : N; -fun wop_N : N; -fun word_N : N; -fun word_V2 : V2; -fun word_division_N : N; -fun word_painter_N : N; -fun word_painter_N : N; -fun word_perfect_A : A; -fun word_picture_N : N; -fun word_splitting_N : N; -fun wordbook_N : N; -fun wordily_Adv : Adv; -fun wordiness_N : N; -fun wording_N : N; -fun wordless_A : A; -fun wordmonger_N : N; -fun wordnet_N : N; -fun words_N : N; -fun wordsmith_N : N; -fun wordy_A : A; -fun work_N : N; -fun work_V : V; -fun work_V2 : V2; -fun work_VV : VV; -fun work_clothing_N : N; -fun work_in_N : N; -fun work_in_N : N; -fun work_out_N : N; -fun work_shirt_N : N; -fun work_study_N : N; -fun workable_A : A; -fun workaday_A : A; -fun workaholic_N : N; -fun workaholism_N : N; -fun workbag_N : N; -fun workbasket_N : N; -fun workbench_N : N; -fun workboard_N : N; -fun workbook_N : N; -fun workbox_N : N; -fun workday_N : N; -fun worker_N : N; -fun workhorse_N : N; -fun workhouse_N : N; -fun working_A : A; -fun working_N : N; -fun working_class_A : A; -fun working_out_N : N; -fun workload_N : N; -fun workman_N : N; -fun workmanlike_A : A; -fun workmanship_N : N; -fun workmate_N : N; -fun workpiece_N : N; -fun workplace_N : N; -fun workroom_N : N; -fun works_N : N; -fun worksheet_N : N; -fun workshop_N : N; -fun workshy_A : A; -fun workspace_N : N; -fun workstation_N : N; -fun worktable_N : N; -fun workwear_N : N; -fun workweek_N : N; -fun world_N : N; -fun world_weariness_N : N; -fun world_weary_A : A; -fun worldliness_N : N; -fun worldling_N : N; -fun worldly_A : A; -fun worldly_wise_A : A; -fun worldwide_A : A; -fun worm_N : N; -fun worm_V2 : V2; -fun worm_eaten_A : A; -fun worm_gear_N : N; -fun wormcast_N : N; -fun wormhole_N : N; -fun wormwood_N : N; -fun wormy_A : A; -fun worn_A : A; -fun worried_A : A; -fun worriedly_Adv : Adv; -fun worrier_N : N; -fun worrisome_A : A; -fun worry_N : N; -fun worry_V : V; -fun worry_V2 : V2; -fun worry_VS : VS; -fun worrying_A : A; -fun worrying_N : N; -fun worryingly_Adv : Adv; -fun worse_A : A; -fun worse_Adv : Adv; -fun worse_N : N; -fun worsen_V : V; -fun worsen_V2 : V2; -fun worsened_A : A; -fun worsening_A : A; -fun worsening_N : N; -fun worship_N : N; -fun worship_V : V; -fun worship_V2 : V2; -fun worshiper_N : N; -fun worshipful_A : A; -fun worshipper_N : N; -fun worst_A : A; -fun worst_Adv : Adv; -fun worst_N : N; -fun worst_V2 : V2; -fun worsted_N : N; -fun wort_N : N; -fun worth_A : A; -fun worth_N : N; -fun worth_Prep : Prep; -fun worthily_Adv : Adv; -fun worthiness_N : N; -fun worthless_A : A; -fun worthlessly_Adv : Adv; -fun worthlessness_N : N; -fun worthwhile_A : A; -fun worthwhileness_N : N; -fun worthy_A : A; -fun worthy_N : N; -fun would_be_A : A; -fun wound_A : A; -fun wound_N : N; -fun wound_V2 : V2; -fun wounded_N : N; -fun woven_A : A; -fun wow_N : N; -fun wow_V2 : V2; -fun wpb_N : N; -fun wpm_N : N; -fun wrac_N : N; -fun wrack_N : N; -fun wrack_V2 : V2; -fun wraf_N : N; -fun wraith_N : N; -fun wrangle_N : N; -fun wrangle_V : V; -fun wrangler_N : N; -fun wrap_N : N; -fun wrap_V : V; -fun wrap_V2 : V2; -fun wraparound_N : N; -fun wrapped_A : A; -fun wrapper_N : N; -fun wrapping_N : N; -fun wrasse_N : N; -fun wrath_N : N; -fun wrathful_A : A; -fun wrathfully_Adv : Adv; -fun wreak_V2 : V2; -fun wreath_N : N; -fun wreathe_V : V; -fun wreathe_V2 : V2; -fun wreck_N : N; -fun wreck_V2 : V2; -fun wreckage_N : N; -fun wrecked_A : A; -fun wrecker_N : N; -fun wren_N : N; -fun wren_tit_N : N; -fun wrench_N : N; -fun wrench_V2 : V2; -fun wrest_V2 : V2; -fun wrester_N : N; -fun wrestle_N : N; -fun wrestle_V : V; -fun wrestle_V2 : V2; -fun wrestler_N : N; -fun wrestling_N : N; -fun wretch_N : N; -fun wretched_A : A; -fun wretchedly_Adv : Adv; -fun wretchedness_N : N; -fun wrick_N : N; -fun wrick_V2 : V2; -fun wriggle_N : N; -fun wriggle_V : V; -fun wriggle_V2 : V2; -fun wriggler_N : N; -fun wright_N : N; -fun wring_N : N; -fun wring_V2 : V2; -fun wringer_N : N; -fun wrinkle_N : N; -fun wrinkle_V : V; -fun wrinkle_V2 : V2; -fun wrinkled_A : A; -fun wrinkly_A : A; -fun wrist_N : N; -fun wristband_N : N; -fun wristlet_N : N; -fun wristwatch_N : N; -fun writ_N : N; -fun writ_large_A : A; -fun write_V : V; -fun write_V2 : V2; -fun write_VS : VS; -fun write_VV : VV; -fun write_in_N : N; -fun write_off_N : N; -fun write_off_N : N; -fun write_up_N : N; -fun writer_N : N; -fun writhe_V : V; -fun writing_N : N; -fun writing_desk_N : N; -fun writing_ink_N : N; -fun writing_paper_N : N; -fun written_A : A; -fun wrns_N : N; -fun wrong_A : A; -fun wrong_Adv : Adv; -fun wrong_N : N; -fun wrong_V2 : V2; -fun wrong_headed_A : A; -fun wrong_side_out_A : A; -fun wrongdoer_N : N; -fun wrongdoing_N : N; -fun wrongful_A : A; -fun wrongfully_Adv : Adv; -fun wrongheaded_A : A; -fun wrongheadedly_Adv : Adv; -fun wrongly_Adv : Adv; -fun wrongness_N : N; -fun wroth_A : A; -fun wry_A : A; -fun wryly_Adv : Adv; -fun wrymouth_N : N; -fun wryneck_N : N; -fun wt_N : N; -fun wulfenite_N : N; -fun wurtzite_N : N; -fun wyvern_N : N; -fun x_axis_N : N; -fun x_ray_N : N; -fun x_ray_V2 : V2; -fun xanthate_N : N; -fun xanthelasma_N : N; -fun xanthine_N : N; -fun xanthoma_N : N; -fun xanthomatosis_N : N; -fun xanthomonad_N : N; -fun xanthophyll_N : N; -fun xanthopsia_N : N; -fun xanthosis_N : N; -fun xenogeneic_A : A; -fun xenolith_N : N; -fun xenon_N : N; -fun xenophobia_N : N; -fun xenophobic_A : A; -fun xenotime_N : N; -fun xenotransplant_N : N; -fun xeranthemum_N : N; -fun xeric_A : A; -fun xeroderma_N : N; -fun xerographic_A : A; -fun xerography_N : N; -fun xerophthalmia_N : N; -fun xerophytic_A : A; -fun xeroradiography_N : N; -fun xerostomia_N : N; -fun xerox_N : N; -fun xerox_V2 : V2; -fun xi_N : N; -fun xmas_N : N; -fun xylem_N : N; -fun xylene_N : N; -fun xylophone_N : N; -fun xylophonist_N : N; -fun xylosma_N : N; -fun y_axis_N : N; -fun yacca_N : N; -fun yacht_N : N; -fun yacht_V : V; -fun yacht_V2 : V2; -fun yacht_club_N : N; -fun yachting_N : N; -fun yachtsman_N : N; -fun yagi_N : N; -fun yahoo_N : N; -fun yak_N : N; -fun yak_V : V; -fun yakuza_N : N; -fun yam_N : N; -fun yammer_V : V; -fun yammer_V2 : V2; -fun yang_N : N; -fun yank_N : N; -fun yank_V2 : V2; -fun yankee_N : N; -fun yanker_N : N; -fun yap_N : N; -fun yap_V : V; -fun yap_V2 : V2; -fun yard_N : N; -fun yard_measure_N : N; -fun yardage_N : N; -fun yardarm_N : N; -fun yarder_N : N; -fun yardgrass_N : N; -fun yardie_N : N; -fun yardman_N : N; -fun yardmaster_N : N; -fun yardstick_N : N; -fun yarmulke_N : N; -fun yarn_N : N; -fun yarn_V : V; -fun yarn_spinning_A : A; -fun yarrow_N : N; -fun yashmak_N : N; -fun yataghan_N : N; -fun yautia_N : N; -fun yaw_N : N; -fun yaw_V : V; -fun yawl_N : N; -fun yawn_N : N; -fun yawn_V : V; -fun yawn_V2 : V2; -fun yawner_N : N; -fun yawning_A : A; -fun yaws_N : N; -fun yea_Adv : Adv; -fun yea_N : N; -fun yeah_Adv : Adv; -fun year_N : N; -fun year_end_A : A; -fun year_end_N : N; -fun year_round_A : A; -fun yearbook_N : N; -fun yearling_N : N; -fun yearlong_A : A; -fun yearly_A : A; -fun yearly_Adv : Adv; -fun yearn_V : V; -fun yearning_N : N; -fun yearningly_Adv : Adv; -fun yeast_N : N; -fun yeasty_A : A; -fun yell_N : N; -fun yell_V : V; -fun yell_V2 : V2; -fun yelling_N : N; -fun yellow_A : A; -fun yellow_N : N; -fun yellow_V : V; -fun yellow_V2 : V2; -fun yellow_banded_A : A; -fun yellow_beige_A : A; -fun yellow_bellied_A : A; -fun yellow_flag_N : N; -fun yellow_green_A : A; -fun yellow_grey_A : A; -fun yellow_marked_A : A; -fun yellow_orange_A : A; -fun yellow_spotted_A : A; -fun yellow_striped_A : A; -fun yellow_tinged_A : A; -fun yellow_tipped_A : A; -fun yellow_white_A : A; -fun yellowcake_N : N; -fun yellowfin_N : N; -fun yellowhammer_N : N; -fun yellowish_A : A; -fun yellowlegs_N : N; -fun yellowness_N : N; -fun yellowtail_N : N; -fun yellowthroat_N : N; -fun yellowwood_N : N; -fun yelp_V : V; -fun yelp_V2 : V2; -fun yemeni_A : A; -fun yemeni_N : N; -fun yen_N : N; -fun yen_V : V; -fun yen_V2 : V2; -fun yenta_N : N; -fun yeoman_N : N; -fun yeomanry_N : N; -fun yes_N : N; -fun yeshiva_N : N; -fun yesterday_Adv : Adv; -fun yesterday_N : N; -fun yet_Adv : Adv; -fun yeti_N : N; -fun yew_N : N; -fun yew_tree_N : N; -fun yha_N : N; -fun yiddish_N : N; -fun yield_N : N; -fun yield_V : V; -fun yield_V2 : V2; -fun yield_VA : VA; -fun yielding_A : A; -fun yin_N : N; -fun yip_N : N; -fun yip_V : V; -fun yips_N : N; -fun ylem_N : N; -fun ymca_N : N; -fun yo_yo_N : N; -fun yo_yo_N : N; -fun yob_N : N; -fun yobibit_N : N; -fun yobo_N : N; -fun yodel_N : N; -fun yodel_V : V; -fun yodel_V2 : V2; -fun yodeling_N : N; -fun yodeller_N : N; -fun yodh_N : N; -fun yoga_N : N; -fun yoghourt_N : N; -fun yoghurt_N : N; -fun yogi_N : N; -fun yogistic_A : A; -fun yogurt_N : N; -fun yoke_N : N; -fun yoke_V : V; -fun yoke_V2 : V2; -fun yokel_N : N; -fun yokel_like_A : A; -fun yolk_N : N; -fun yon_A : A; -fun yon_Adv : Adv; -fun yonder_A : A; -fun yonder_Adv : Adv; -fun yore_N : N; -fun yottabit_N : N; -fun yottabyte_N : N; -fun youPl_Pron : Pron; -fun youSg_Pron : Pron; -fun young_A : A; -fun young_N : N; -fun young_begetting_A : A; -fun younger_A : A; -fun youngish_A : A; -fun youngness_N : N; -fun youngster_N : N; -fun youth_N : N; -fun youthful_A : A; -fun youthfully_Adv : Adv; -fun youthfulness_N : N; -fun yowl_V : V; -fun yr_N : N; -fun ytterbium_N : N; -fun yttrium_N : N; -fun yuan_N : N; -fun yucca_N : N; -fun yugoslav_A : A; -fun yugoslav_N : N; -fun yugoslavian_A : A; -fun yugoslavian_N : N; -fun yule_N : N; -fun yule_log_N : N; -fun yuletide_N : N; -fun yuppie_N : N; -fun yurt_N : N; -fun ywca_N : N; -fun z_axis_N : N; -fun zabaglione_N : N; -fun zaire_N : N; -fun zairean_A : A; -fun zairean_N : N; -fun zakat_N : N; -fun zambian_A : A; -fun zambian_N : N; -fun zamia_N : N; -fun zany_A : A; -fun zany_N : N; -fun zap_N : N; -fun zap_V2 : V2; -fun zapper_N : N; -fun zarf_N : N; -fun zayin_N : N; -fun zeal_N : N; -fun zealander_A : A; -fun zealander_N : N; -fun zealot_N : N; -fun zealotry_N : N; -fun zealous_A : A; -fun zealously_Adv : Adv; -fun zeaxanthin_N : N; -fun zebibit_N : N; -fun zebra_N : N; -fun zebrawood_N : N; -fun zebu_N : N; -fun zee_N : N; -fun zen_N : N; -fun zenith_N : N; -fun zenithal_A : A; -fun zeolite_N : N; -fun zephyr_N : N; -fun zeppelin_N : N; -fun zero_A : A; -fun zero_N : N; -fun zero_V : V; -fun zeroth_A : A; -fun zest_N : N; -fun zest_V2 : V2; -fun zestful_A : A; -fun zestfully_Adv : Adv; -fun zeta_N : N; -fun zettabit_N : N; -fun zettabyte_N : N; -fun zeugma_N : N; -fun zidovudine_N : N; -fun ziggurat_N : N; -fun zigzag_A : A; -fun zigzag_Adv : Adv; -fun zigzag_N : N; -fun zigzag_V : V; -fun zigzag_V2 : V2; -fun zill_N : N; -fun zillion_A : A; -fun zimbabwean_A : A; -fun zimbabwean_N : N; -fun zinc_N : N; -fun zinfandel_N : N; -fun zing_N : N; -fun zing_V : V; -fun zing_V2 : V2; -fun zinger_N : N; -fun zinkenite_N : N; -fun zinnia_N : N; -fun zinnwaldite_N : N; -fun zion_N : N; -fun zionism_N : N; -fun zionist_A : A; -fun zionist_N : N; -fun zip_N : N; -fun zip_V2 : V2; -fun zip_code_N : N; -fun zip_fastener_N : N; -fun zipper_N : N; -fun zircon_N : N; -fun zirconium_N : N; -fun zither_N : N; -fun ziti_N : N; -fun zizz_N : N; -fun zloty_N : N; -fun zoanthropy_N : N; -fun zodiac_N : N; -fun zodiacal_A : A; -fun zoic_A : A; -fun zombi_N : N; -fun zombie_N : N; -fun zonal_A : A; -fun zone_N : N; -fun zone_V2 : V2; -fun zoning_N : N; -fun zonule_N : N; -fun zoo_N : N; -fun zooid_N : N; -fun zoolatry_N : N; -fun zoological_A : A; -fun zoologist_N : N; -fun zoology_N : N; -fun zoom_N : N; -fun zoom_V : V; -fun zoom_V2 : V2; -fun zoomastigote_N : N; -fun zoomorphism_N : N; -fun zoonosis_N : N; -fun zoonotic_A : A; -fun zoophilia_N : N; -fun zoophobia_N : N; -fun zoophyte_N : N; -fun zooplankton_N : N; -fun zoopsia_N : N; -fun zoospore_N : N; -fun zoot_suit_N : N; -fun zoril_N : N; -fun zoysia_N : N; -fun zucchini_N : N; -fun zwieback_N : N; -fun zydeco_N : N; -fun zygodactyl_A : A; -fun zygoma_N : N; -fun zygomatic_A : A; -fun zygomorphic_A : A; -fun zygospore_N : N; -fun zygote_N : N; -fun zygotene_N : N; -fun zygotic_A : A; -fun zymase_N : N; -fun zymoid_A : A; -fun zymology_N : N; -fun zymosis_N : N; -fun zymotic_A : A; -} From 325ffb79a94248d02ebb470431095d69509a0f0c Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Wed, 28 Nov 2018 14:03:15 +0100 Subject: [PATCH 165/172] update the travis configuration as well --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 166b6815d..4dc3f3eb4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,8 +20,8 @@ before_install: - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then alias gf='gf.exe' && alias runghc='runghc.exe' ; fi script: - - runghc Make.hs build prelude all --verbose + - runghc Setup.hs build prelude all --verbose - rm -rf dist - - mkdir dist-bash ; bash Make.sh --dest=dist-bash --verbose + - mkdir dist-bash ; bash Setup.sh --dest=dist-bash --verbose - rm -rf dist ; mkdir dist-bat - - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then cmd //c Make.bat --dest=dist-bat --verbose ; fi + - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then cmd //c Setup.bat --dest=dist-bat --verbose ; fi From 726d5972d6a21987c226b4f72bf5f294765f1b79 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Wed, 28 Nov 2018 14:40:47 +0100 Subject: [PATCH 166/172] Update LICENSE --- LICENSE | 206 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 206 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000..a985b740c --- /dev/null +++ b/LICENSE @@ -0,0 +1,206 @@ +The GF Resource Grammar Library is under GNU LESSER GENERAL PUBLIC LICENSE and BSD. +However the user has the right to choose any license for any application grammar derived from the resource grammar by using the grammar API. + +The Resource Grammar Library also includes large coverage lexicons for some languages. +Since these lexicons are derived from external sources they might be under different licenses. +Look at the source file for every lexicon for details. + +The rest of this document contains copies of the LGPL and BSD licenses +which are applicable to the different components of the Resource Grammar Library as described above. + + + + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. + + + + BSD LICENSE + +Copyright (c) 1998, Grammatical Framework +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + * Neither the name of the nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +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 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. From 0b9974e8f920ce659addf5e5a49152f226253fb2 Mon Sep 17 00:00:00 2001 From: Aarne Ranta Date: Wed, 28 Nov 2018 20:01:05 +0100 Subject: [PATCH 167/172] corrected LangEng.labels --- src/english/LangEng.labels | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/english/LangEng.labels b/src/english/LangEng.labels index b748812ce..9edd5616e 100644 --- a/src/english/LangEng.labels +++ b/src/english/LangEng.labels @@ -1,11 +1,12 @@ -* {"not"} PART neg head -* {"has","had","have","will","would","do","does","did"} AUX aux head -CompAP {"is","are","am","was","been","be"} VERB cop head -CompCN {"is","are","am","was","been","be"} VERB cop head -CompAP {"is","are","am","was","been","be"} VERB cop head -CompAdv {"is","are","am","was","been","be"} VERB cop head +UseV {"not","don't","doesn't","didn't","haven't","hasn't","hadn't","wouldn't","won't"} PART neg head +UseV {"has","had","have","will","would","do","does","did"} AUX aux head +UseComp {"not","don't","doesn't","didn't","haven't","hasn't","hadn't","wouldn't","won't"} PART neg head +UseComp {"has","had","have","will","would","do","does","did"} AUX aux head UseComp {"is","are","am","was","been","be"} VERB cop head -CompCN {"a","an"} DET det head ComplVV {"to"} PART mark xcomp +ComplVS {"that"} PART mark xcomp +ComplVS {"not","don't","doesn't","didn't","haven't","hasn't","hadn't","wouldn't","won't"} PART neg head +ComplVS {"has","had","have","will","would","do","does","did"} AUX aux head + From 2ace715d091858fb19800c68124da8d867cfdcf5 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Wed, 28 Nov 2018 23:04:28 +0100 Subject: [PATCH 168/172] Update footer in template --- doc/synopsis/template.html | 50 ++++++++++++++++++++++++-------------- 1 file changed, 32 insertions(+), 18 deletions(-) diff --git a/doc/synopsis/template.html b/doc/synopsis/template.html index a6713505d..fbbac0a2e 100644 --- a/doc/synopsis/template.html +++ b/doc/synopsis/template.html @@ -69,45 +69,59 @@ $endif$